diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index abea008..bb5f223 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,13 +31,15 @@ jobs: - name: Build release run: | . $HOME/.cargo/env - cargo build --release + cargo build -p s2binlib_binding --release - name: Upload Linux artifact uses: actions/upload-artifact@v4 with: name: s2binlib-linux-x86_64 - path: target/release/libs2binlib.a + path: | + target/release/libs2binlib.so + target/release/libs2binlib.a build-windows: name: Build Windows @@ -50,14 +52,16 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Build release - run: cargo build --release + run: cargo build -p s2binlib_binding --release - name: Upload Windows artifacts uses: actions/upload-artifact@v4 with: name: s2binlib-windows-x86_64 path: | + target/release/s2binlib.dll target/release/s2binlib.lib + target/release/s2binlib.pdb create-release-package: name: Create Release Package @@ -100,8 +104,12 @@ jobs: mkdir -p release/windows mkdir -p release/include cp artifacts/s2binlib-linux-x86_64/libs2binlib.a release/linux/ + cp artifacts/s2binlib-linux-x86_64/libs2binlib.so release/linux/ cp artifacts/s2binlib-windows-x86_64/s2binlib.lib release/windows/ - cp s2binlib.h release/include/ + cp artifacts/s2binlib-windows-x86_64/s2binlib.dll release/windows/ + cp artifacts/s2binlib-windows-x86_64/s2binlib.pdb release/windows/ + cp headers/s2binlib001.h release/include/ + cp headers/s2binlib_static.h release/include/ - name: Create release archives run: | @@ -142,7 +150,8 @@ jobs: s2binlib-${{ steps.gitversion.outputs.semVer }}-linux-x86_64.tar.gz s2binlib-${{ steps.gitversion.outputs.semVer }}-windows-x86_64.tar.gz s2binlib-${{ steps.gitversion.outputs.semVer }}-all-platforms.tar.gz - s2binlib.h + headers/s2binlib001.h + headers/s2binlib_static.h draft: false prerelease: false env: diff --git a/Cargo.lock b/Cargo.lock index 30af786..b0b8fa0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17,6 +17,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + [[package]] name = "anstream" version = "0.6.21" @@ -155,6 +161,12 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + [[package]] name = "flate2" version = "1.1.3" @@ -165,6 +177,23 @@ dependencies = [ "miniz_oxide", ] +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "hashbrown" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + [[package]] name = "heck" version = "0.5.0" @@ -362,6 +391,7 @@ version = "0.1.0" dependencies = [ "anyhow", "cpp_demangle", + "hashbrown", "iced-x86", "libc", "msvc-demangler", diff --git a/README.md b/README.md index 341a4f2..17cfdee 100644 --- a/README.md +++ b/README.md @@ -65,29 +65,79 @@ This is useful for debugging integration issues with the C API. On windows, if you are seeing linking error like `"__imp_NtReadFile"`, you also need to link `kernel32.dll` and `ntdll.dll`. -## Example +## C API -Example code: +S2BinLib provides two C API styles: -```cpp +### 1. Global Singleton API (Recommended for simple use cases, static linking) + +The global singleton API (`s2binlib.h`) provides a thread-safe, easy-to-use interface with all functions prefixed with `s2binlib_`: + +```c #include int main() { - - // Initialize the lib, the game type is csgo for cs2 + // Initialize the global instance (game type is "csgo" for CS2) s2binlib_initialize("/home/csgo/cs2server/game", "csgo"); - // If you are using metamod, relocate these modules because its modified + // If you are using metamod, relocate these modules because they're modified GET_V_IFACE_ANY(GetServerFactory, g_pSource2Server, ISource2Server, SOURCE2SERVER_INTERFACE_VERSION); GET_V_IFACE_CURRENT(GetEngineFactory, g_pEngineServer2, IVEngineServer2, SOURCE2ENGINETOSERVER_INTERFACE_VERSION); s2binlib_set_module_base_from_pointer("server", g_pSource2Server); s2binlib_set_module_base_from_pointer("engine2", g_pEngineServer2); - // pattern scan + // Pattern scan void* result; s2binlib_pattern_scan("server", "01 02 03 AA BB CC ? ? DD", &result); - // free after use, this will only release the file bytes in memory, dumped xref and other information will still be cached + // Find a vtable + void* vtable_addr; + s2binlib_find_vtable("server", "CBaseEntity", &vtable_addr); + + // Free after use, this will only release the file bytes in memory + // Dumped xref and other information will still be cached s2binlib_unload_all_binaries(); + // Clean up the global instance + s2binlib_destroy(); +} +``` + +**Features:** +- Thread-safe global singleton +- Simple API with no manual instance management +- All functions use snake_case naming with `s2binlib_` prefix +- Return values: 0 for success, negative for errors (-1: not initialized, -2: invalid parameter, -3: operation failed, -4: not found, -99: mutex error) + +### 2. Object-Oriented API (For version control) + +The object-oriented API (`s2binlib001.h`) allows multiple instances with explicit lifecycle control: + +```cpp +#include + +int main() { + // Create instance manually + void* s2binlib_ptr = s2binlib001_create(); + S2BinLib001* s2binlib = (S2BinLib001*)s2binlib_ptr; + + // Initialize through vtable + s2binlib->Initialize("/home/csgo/cs2server/game", "csgo"); + + // Use vtable methods + void* result; + s2binlib->PatternScan("server", "01 02 03 AA BB CC ? ? DD", &result); + + // Destroy instance + s2binlib->Destroy(); } +``` + +### 3. Dynamic Loading +Or use the `CreateInterface` function for dynamic loading: + +```cpp +// windows example +S2CreateInterfaceFn createInterface = (S2CreateInterfaceFn)GetProcAddress(hDll, "S2BinLib_CreateInterface"); +auto s2binlib = createInterface(S2BINLIB_INTERFACE_NAME); +``` \ No newline at end of file diff --git a/dump/linux/networkvars.txt b/dump/linux/networkvars.txt index c6d1a03..8d4c033 100644 --- a/dump/linux/networkvars.txt +++ b/dump/linux/networkvars.txt @@ -1,78 +1,78 @@ CAttributeContainer::NetworkVar_m_Item [31] - StateChanged: [ 28 -> 157FF80 ] + StateChanged: [ 28 -> 157FF00 ] CBaseAnimGraph::NetworkVar_m_RagdollPose [4] - StateChanged: [ 1 -> 114E660 ] + StateChanged: [ 1 -> 114E5E0 ] CBaseAnimGraphController::NetworkVar_m_animGraphNetworkedVars [63] - StateChanged: [ 60 -> 112B140 ] + StateChanged: [ 60 -> 112B0C0 ] CBaseModelEntity::NetworkVar_m_Collision [4] - StateChanged: [ 1 -> 114E8E0 ] + StateChanged: [ 1 -> 114E860 ] CBaseModelEntity::NetworkVar_m_Glow [4] - StateChanged: [ 1 -> 114E7A0 ] + StateChanged: [ 1 -> 114E720 ] CBasePlayerPawn::NetworkVar_m_skybox3d [4] - StateChanged: [ 1 -> 1313740 ] + StateChanged: [ 1 -> 13136C0 ] CBodyComponentBaseAnimGraph::NetworkVar_m_animationController [35] - StateChanged: [ 28 -> 112D240 ] + StateChanged: [ 28 -> 112D1C0 ] CBodyComponentPoint::NetworkVar_m_sceneNode [29] StateChanged: [ 26 -> 940820 ] CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance [30] StateChanged: [ 26 -> 9407E0 ] CC4::NetworkVar_m_entitySpottedState [4] - StateChanged: [ 1 -> 1038860 ] + StateChanged: [ 1 -> 10387E0 ] CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_agentItem [31] - StateChanged: [ 28 -> FDC6C0 ] + StateChanged: [ 28 -> FDC640 ] CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_glovesItem [31] - StateChanged: [ 28 -> FDC580 ] + StateChanged: [ 28 -> FDC500 ] CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_weaponItem [31] - StateChanged: [ 28 -> FDC440 ] + StateChanged: [ 28 -> FDC3C0 ] CCSGameRules::NetworkVar_m_RetakeRules [7] StateChanged: [ 4 -> F3CBC0 ] CCSPlayerController_ActionTrackingServices::NetworkVar_m_matchStats [5] - StateChanged: [ 1 -> 10F85C0 ] + StateChanged: [ 1 -> 10F8540 ] CCSPlayerPawn::NetworkVar_m_EconGloves [31] StateChanged: [ 28 -> 9B8A00 ] CCSPlayerPawn::NetworkVar_m_entitySpottedState [4] StateChanged: [ 1 -> 9B88C0 ] CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisMatch [4] - StateChanged: [ 1 -> 1074AA0 ] + StateChanged: [ 1 -> 1074A20 ] CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisRound [4] - StateChanged: [ 1 -> 1074A40 ] + StateChanged: [ 1 -> 10749C0 ] CChicken::NetworkVar_m_AttributeManager [10] StateChanged: [ 2 -> AEA1E0 ] CCollisionProperty::NetworkVar_m_collisionAttribute [4] - StateChanged: [ 1 -> 1338680 ] + StateChanged: [ 1 -> 1338600 ] CEconEntity::NetworkVar_m_AttributeManager [10] - StateChanged: [ 2 -> 15939A0 ] + StateChanged: [ 2 -> 1593920 ] CEconItemView::NetworkVar_m_AttributeList [4] - StateChanged: [ 1 -> 15E4FE0 ] + StateChanged: [ 1 -> 15E4FA0 ] CEconItemView::NetworkVar_m_NetworkedDynamicAttributes [4] - StateChanged: [ 1 -> 15E5080 ] + StateChanged: [ 1 -> 15E5040 ] CEnvWind::NetworkVar_m_EnvWindShared [4] - StateChanged: [ 1 -> 135D780 ] + StateChanged: [ 1 -> 135D700 ] CEnvWindController::NetworkVar_m_EnvWindShared [4] StateChanged: [ 1 -> B7D040 ] CFogController::NetworkVar_m_fog [4] StateChanged: [ 1 -> B95400 ] CGameSceneNode::NetworkVar_m_hParent [4] - StateChanged: [ 1 -> 11F0740 ] + StateChanged: [ 1 -> 11F06C0 ] CHostage::NetworkVar_m_entitySpottedState [4] StateChanged: [ 1 -> AFE8A0 ] CHostage::NetworkVar_m_reuseTimer [4] StateChanged: [ 1 -> AFE760 ] CPlantedC4::NetworkVar_m_AttributeManager [10] - StateChanged: [ 2 -> 1038AE0 ] + StateChanged: [ 2 -> 1038A60 ] CPlantedC4::NetworkVar_m_entitySpottedState [4] - StateChanged: [ 1 -> 10389A0 ] + StateChanged: [ 1 -> 1038920 ] CPlayer_CameraServices::NetworkVar_m_PlayerFog [4] - StateChanged: [ 1 -> 1267980 ] + StateChanged: [ 1 -> 1267900 ] CPlayer_CameraServices::NetworkVar_m_audio [4] - StateChanged: [ 1 -> 12679C0 ] + StateChanged: [ 1 -> 1267940 ] CShatterGlassShardPhysics::NetworkVar_m_ShardDesc [5] StateChanged: [ 1 -> BC8100 ] CSkeletonInstance::NetworkVar_m_modelState [4] - StateChanged: [ 0 -> 129BA40 ] + StateChanged: [ 0 -> 129B9C0 ] CSkyCamera::NetworkVar_m_skyboxData [4] - StateChanged: [ 1 -> 15025E0 ] + StateChanged: [ 1 -> 1502560 ] CTriggerFan::NetworkVar_m_RampTimer [4] StateChanged: [ 1 -> BB0820 ] sky3dparams_t::NetworkVar_fog [4] - StateChanged: [ 1 -> 12E8D20 ] + StateChanged: [ 1 -> 12E8CA0 ] diff --git a/dump/linux/strings/client.txt b/dump/linux/strings/client.txt index 835f6d0..ec47b22 100644 --- a/dump/linux/strings/client.txt +++ b/dump/linux/strings/client.txt @@ -747,7 +747,7 @@ $hRh --FD- -0123456789 -2&Z --4e6 +-4p6 -5X5 -;-C-I-M-a-e-q- -`H`CeIkHq7v4}4v4u7 ?t)A @@ -1512,6 +1511,7 @@ $p?b @+8b @@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@/home/saml/dev/steam/thirdpartycode/nonredist/libyuv/libyuv/source/scale_uv.cc +@@XR( @i-kuX @l?O#m? A!;I2 diff --git a/dump/linux/vtable_diff/client/C_BaseEntity.txt b/dump/linux/vtable_diff/client/C_BaseEntity.txt index f50fef3..e777328 100644 --- a/dump/linux/vtable_diff/client/C_BaseEntity.txt +++ b/dump/linux/vtable_diff/client/C_BaseEntity.txt @@ -3,15 +3,15 @@ Virtual Function Count: 219 Children Count: 282 ============================================= func_0 [ DIFF 190 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CMapInfo", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointTemplate", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "48 8B 05 69 E8 1A 03 48 85 C0 74 04 C3 0F 1F 00" + "48 8B 05 69 F7 1A 03 48 85 C0 74 04 C3 0F 1F 00" func_1 [ DIFF 282 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupEndpoint", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] "55 48 89 E5 41 57 41 56 41 55 49 89 FD 41 54 53" func_2 [ DIFF 282 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupEndpoint", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 0F F8 FF" func_3 [ DIFF 178 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 8F 91 9D" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 CF A0 9D" func_4 [ DIFF 112 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CCSPlayerController", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 C8 6F C2 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 88 6F C2 01 01 C3 CC CC CC CC CC CC CC CC" func_5 [ DIFF 193 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoWorldLayer", "CPointOffScreenIndicatorUi", "CPointTemplate", "CPulseGameBlackboard", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GlobalLight", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 F4 53" func_6 [ DIFF 177 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CRagdollManager", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -23,9 +23,9 @@ func_8 [ DIFF 0 ] [] func_9 [ DIFF 134 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CCSPlayerController", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EnvCubemapFog", "C_EnvParticleGlow", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWindController", "C_EnvWindVolume", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 56 41 55 41 54 49 89 FC 53 89 F3" func_10 [ DIFF 0 ] [] - "E9 5B B6 1F 01 CC CC CC CC CC CC CC CC CC CC CC" + "E9 9B BA 1F 01 CC CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 225 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterMultiple", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CLogicRelay", "CPathSimple", "CPointOffScreenIndicatorUi", "CPointOrient", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_MapPreviewCameraPath", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "55 48 89 E5 41 54 53 48 89 FB E8 61 D1 1F 01 8B" + "55 48 89 E5 41 54 53 48 89 FB E8 A1 D5 1F 01 8B" func_12 [ DIFF 224 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoOffscreenPanoramaTexture", "CInfoWorldLayer", "CMapInfo", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GlobalLight", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 FC 53" func_13 [ DIFF 182 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -45,9 +45,9 @@ func_19 [ DIFF 177 ] ["CBaseAnimGraph", "CBaseP func_20 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CPulseGameBlackboard", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 55 41 54 49 89 F4 53 48 89 FB 48" func_21 [ DIFF 1 ] ["C_TextureBasedAnimatable"] - "E9 1B 70 81 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 1B 7B 81 00 CC CC CC CC CC CC CC CC CC CC CC" func_22 [ DIFF 178 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 1F AE 86" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 1F A3 86" func_23 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 49" func_24 [ DIFF 109 ] ["CBombTarget", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CMapInfo", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPulseGameBlackboard", "CServerOnlyModelEntity", "CTriggerFan", "C_AK47", "C_BaseButton", "C_BaseCSGrenade", "C_BaseDoor", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_C4", "C_CSGameRulesProxy", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_Flashbang", "C_FootstepControl", "C_GameRulesProxy", "C_HEGrenade", "C_Hostage", "C_IncendiaryGrenade", "C_InfoInstructorHintHostageRescueZone", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_ParticleSystem", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointEntity", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] @@ -63,7 +63,7 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 4C 8D 35 AB D8 4C 03 41 55 49" + "55 48 89 E5 41 56 4C 8D 35 AB E7 4C 03 41 55 49" func_31 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_32 [ DIFF 0 ] [] @@ -85,23 +85,23 @@ func_39 [ DIFF 0 ] [] func_40 [ DIFF 0 ] [] "48 8B 77 08 48 85 F6 75 07 C3 66 0F 1F 44 00 00" func_41 [ DIFF 282 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupEndpoint", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] - "48 8D 05 19 B9 B0 02 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 59 BD B0 02 C3 CC CC CC CC CC CC CC CC" func_42 [ DIFF 264 ] ["CBaseFilter", "CBasePlayerController", "CBombTarget", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseGrenade", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupEndpoint", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_43 [ DIFF 282 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupEndpoint", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] - "48 8D 3D A9 BE 0C 03 E9 A4 D2 7C 01 CC CC CC CC" + "48 8D 3D E9 CD 0C 03 E9 A4 E1 7C 01 CC CC CC CC" func_44 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_45 [ DIFF 249 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCitadelSoundOpvarSetOBB", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 8B 47 10 48 8B 50 08 48 8B 82 10 01 00 00 48" func_46 [ DIFF 180 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "48 8D 05 A9 EC B2 02 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 E9 F0 B2 02 C3 CC CC CC CC CC CC CC CC" func_47 [ DIFF 176 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 B8 1B 11 1F 49 FF FF FF FF 55 31 D2 48 89 E5" func_48 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_49 [ DIFF 50 ] ["C_AK47", "C_BaseCSGrenade", "C_BasePlayerWeapon", "C_C4", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "8B 8F A0 06 00 00 83 F9 FF 74 65 4C 8B 05 DE 15" + "8B 8F A0 06 00 00 83 F9 FF 74 65 4C 8B 05 DE 19" func_50 [ DIFF 62 ] ["CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_Beam", "C_C4", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_FuncLadder", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_Sprite", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_51 [ DIFF 176 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -193,7 +193,7 @@ func_93 [ DIFF 0 ] [] func_94 [ DIFF 1 ] ["C_BaseButton"] "48 8B 47 10 55 48 89 E5 41 54 53 48 89 FB 44 8B" func_95 [ DIFF 3 ] ["CBombTarget", "C_Hostage", "C_PlantedC4"] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 DF 05 87" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 DF FA 86" func_96 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_97 [ DIFF 0 ] [] @@ -213,7 +213,7 @@ func_103 [ DIFF 79 ] ["C_AK47", "C_BaseCSGrenad func_104 [ DIFF 190 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoOffscreenPanoramaTexture", "CInfoWorldLayer", "CPointOffScreenIndicatorUi", "CRagdollManager", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_EnvWind", "C_EnvWindController", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointValueRemapper", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 41 56 41 55 41 89 F5 41 54 53 48 8B" func_105 [ DIFF 67 ] ["CBasePlayerController", "CCSPlayerController", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_PointCommentaryNode", "C_SmokeGrenade", "C_Sprite", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 4D 86" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 42 86" func_106 [ DIFF 14 ] ["CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CMapInfo", "CPointChildModifier", "C_InfoInstructorHintHostageRescueZone", "C_ModelPointEntity", "C_PlayerSprayDecal", "C_PointEntity", "C_PointWorldText", "C_SceneEntity"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_107 [ DIFF 0 ] [] @@ -247,15 +247,15 @@ func_120 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseP func_121 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 F8 48 C7 07 00 00 00 00 C3 CC CC CC CC CC" func_122 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 8D B9 32 03 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 8D C8 32 03 01 C3 CC CC CC CC CC CC CC CC" func_123 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 8D B9 32 03 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 8D C8 32 03 01 C3 CC CC CC CC CC CC CC CC" func_124 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_125 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_126 [ DIFF 65 ] ["CBasePlayerController", "CCSPlayerController", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CS2WeaponModuleBase", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_Hostage", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_MolotovGrenade", "C_NametagModule", "C_PlantedC4", "C_SmokeGrenade", "C_StattrakModule", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "8B 97 A0 06 00 00 83 FA FF 74 55 48 8B 35 9E 39" + "8B 97 A0 06 00 00 83 FA FF 74 55 48 8B 35 9E 3D" func_127 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_128 [ DIFF 0 ] [] @@ -271,7 +271,7 @@ func_132 [ DIFF 50 ] ["C_AK47", "C_BaseCSGrenad func_133 [ DIFF 67 ] ["CBasePlayerController", "CCSPlayerController", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_Hostage", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_MolotovGrenade", "C_NametagModule", "C_PlantedC4", "C_SmokeGrenade", "C_StattrakModule", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_134 [ DIFF 10 ] ["C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_ClientRagdoll", "C_EconWearableGib", "C_Hostage", "C_PhysPropClientside"] - "55 48 8D 05 80 59 03 03 66 0F EF C0 31 C9 48 89" + "55 48 8D 05 C0 68 03 03 66 0F EF C0 31 C9 48 89" func_135 [ DIFF 0 ] [] "0F B6 87 EC 04 00 00 D0 E8 83 E0 01 83 F0 01 C3" func_136 [ DIFF 15 ] ["CBasePlayerController", "CCSPlayerController", "C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvLightProbeVolume", "C_FuncConveyor"] @@ -293,11 +293,11 @@ func_143 [ DIFF 5 ] ["CEnvSoundscapeTriggerabl func_144 [ DIFF 59 ] ["CGrenadeTracer", "CInfoOffscreenPanoramaTexture", "CPointOffScreenIndicatorUi", "CSpriteOriented", "C_BaseCSGrenadeProjectile", "C_C4", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_MapPreviewCameraPath", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_Chicken", "C_ClientRagdoll", "C_DecoyProjectile", "C_DynamicLight", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EntityFlame", "C_EnvParticleGlow", "C_EnvWind", "C_EnvWindController", "C_FireCrackerBlast", "C_Fish", "C_FlashbangProjectile", "C_GlobalLight", "C_GradientFog", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_Inferno", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_MolotovProjectile", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysPropClientside", "C_PlantedC4", "C_PlayerVisibility", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointValueRemapper", "C_Precipitation", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_TintController", "C_VoteController"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_145 [ DIFF 9 ] ["CBasePlayerController", "CCSPlayerController", "C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] - "55 48 89 E5 53 48 89 FB 48 83 EC 48 E8 8F 79 15" + "55 48 89 E5 53 48 89 FB 48 83 EC 48 E8 CF 7D 15" func_146 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_147 [ DIFF 1 ] ["CGrenadeTracer"] - "F3 0F 10 86 98 00 00 00 0F 2F 05 15 A0 54 FF 77" + "F3 0F 10 86 98 00 00 00 0F 2F 05 15 95 54 FF 77" func_148 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_149 [ DIFF 1 ] ["C_ClientRagdoll"] @@ -305,7 +305,7 @@ func_149 [ DIFF 1 ] ["C_ClientRagdoll"] func_150 [ DIFF 176 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 41 54 49 89 F4 53 8B 8F DC 04 00 00" func_151 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "48 8B BF 70 07 00 00 48 85 FF 74 0C E9 4F 28 83" + "48 8B BF 70 07 00 00 48 85 FF 74 0C E9 4F 33 83" func_152 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 8B 87 70 07 00 00 48 85 C0 74 44 44 8B 88 90" func_153 [ DIFF 0 ] [] @@ -367,7 +367,7 @@ func_180 [ DIFF 0 ] [] func_181 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 38 80 BF A6 06" func_182 [ DIFF 0 ] [] - "8B 8F B0 06 00 00 83 F9 FF 74 45 48 8B 35 5E 78" + "8B 8F B0 06 00 00 83 F9 FF 74 45 48 8B 35 5E 7C" func_183 [ DIFF 0 ] [] "48 8B 07 FF A0 B0 05 00 00 CC CC CC CC CC CC CC" func_184 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] @@ -383,11 +383,11 @@ func_188 [ DIFF 0 ] [] func_189 [ DIFF 9 ] ["CBasePlayerController", "CCSPlayerController", "C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] "0F B6 97 A6 06 00 00 84 D2 0F 94 C0 80 FA 05 0F" func_190 [ DIFF 181 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_MapPreviewCameraPath", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "55 48 89 E5 41 54 53 48 89 FB 31 FF E8 BF 26 E2" + "55 48 89 E5 41 54 53 48 89 FB 31 FF E8 BF 24 E2" func_191 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_192 [ DIFF 176 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "8B 32 E9 49 BD 86 FF CC CC CC CC CC CC CC CC CC" + "8B 32 E9 49 B2 86 FF CC CC CC CC CC CC CC CC CC" func_193 [ DIFF 3 ] ["C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_EnvDecal"] "48 8B BF B0 04 00 00 48 85 FF 74 0C 40 0F B6 F6" func_194 [ DIFF 0 ] [] @@ -413,7 +413,7 @@ func_203 [ DIFF 0 ] [] func_204 [ DIFF 4 ] ["C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn"] "55 48 89 E5 48 83 EC 20 E8 43 21 06 00 F3 0F 7E" func_205 [ DIFF 0 ] [] - "55 48 89 E5 E8 17 FF 86 FF 5D C3 CC CC CC CC CC" + "55 48 89 E5 E8 17 F4 86 FF 5D C3 CC CC CC CC CC" func_206 [ DIFF 114 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 54 49 89 D4 53 48 8D 45 E8 48 89" func_207 [ DIFF 3 ] ["C_EnvDecal", "C_FireCrackerBlast", "C_Inferno"] diff --git a/dump/linux/vtable_diff/client/C_BaseModelEntity.txt b/dump/linux/vtable_diff/client/C_BaseModelEntity.txt index 8418f6a..116cefe 100644 --- a/dump/linux/vtable_diff/client/C_BaseModelEntity.txt +++ b/dump/linux/vtable_diff/client/C_BaseModelEntity.txt @@ -3,19 +3,19 @@ Virtual Function Count: 245 Children Count: 175 ============================================= func_0 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PointWorldText", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "48 8B 05 D9 EE 1A 03 48 85 C0 74 04 C3 0F 1F 00" + "48 8B 05 D9 FD 1A 03 48 85 C0 74 04 C3 0F 1F 00" func_1 [ DIFF 175 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_2 [ DIFF 175 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF F7 FF" func_3 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF B9 A3" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF AE A3" func_4 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 C8 6F C2 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 88 6F C2 01 01 C3 CC CC CC CC CC CC CC CC" func_5 [ DIFF 120 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CFuncWater", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EnvParticleGlow", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointClientUIDialog", "C_PointCommentaryNode", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "E9 EB 15 A8 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 EB 0C A8 FF CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 FF D1 25" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 FF D3 25" func_7 [ DIFF 148 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EnvParticleGlow", "C_EnvSky", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncLadder", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 41 54 49 89 F4 53 48 89 FB 48 83 EC" func_8 [ DIFF 0 ] [] @@ -23,21 +23,21 @@ func_8 [ DIFF 0 ] [] func_9 [ DIFF 120 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EnvParticleGlow", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TextureBasedAnimatable", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 56 41 55 41 54 49 89 FC 53 89 F3" func_10 [ DIFF 0 ] [] - "E9 5B B6 1F 01 CC CC CC CC CC CC CC CC CC CC CC" + "E9 9B BA 1F 01 CC CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 154 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 53" func_12 [ DIFF 154 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncMonitor", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "55 48 89 E5 53 48 89 FB 48 81 C7 40 0C 00 00 48" func_13 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "55 48 89 E5 41 54 49 89 FC 53 89 D3 E8 DF A7 25" + "55 48 89 E5 41 54 49 89 FC 53 89 D3 E8 DF A9 25" func_14 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_15 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_16 [ DIFF 114 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EnvParticleGlow", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TextureBasedAnimatable", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF 63 1D" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF 65 1D" func_17 [ DIFF 15 ] ["CBaseProp", "CFuncRetakeBarrier", "C_BasePropDoor", "C_BreakableProp", "C_Chicken", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_FuncLadder", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PropDoorRotating", "C_ShatterGlassShardPhysics"] - "E9 1B 57 A6 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 1B 4E A6 FF CC CC CC CC CC CC CC CC CC CC CC" func_18 [ DIFF 124 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CHostageRescueZone", "CHostageRescueZoneShim", "CTriggerFan", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 57 49 89 F7 41 56 49 89 D6 41 55" func_19 [ DIFF 0 ] [] @@ -45,7 +45,7 @@ func_19 [ DIFF 0 ] [] func_20 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 55 41 54 49 89 F4 53 48 89 FB 48" func_21 [ DIFF 1 ] ["C_TextureBasedAnimatable"] - "E9 1B 70 81 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 1B 7B 81 00 CC CC CC CC CC CC CC CC CC CC CC" func_22 [ DIFF 12 ] ["C_BarnLight", "C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_ClientRagdoll", "C_OmniLight", "C_PointCommentaryNode", "C_RectLight"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 3F 22 19" func_23 [ DIFF 0 ] [] @@ -63,7 +63,7 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 4C 8D 35 AB D8 4C 03 41 55 49" + "55 48 89 E5 41 56 4C 8D 35 AB E7 4C 03 41 55 49" func_31 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_32 [ DIFF 0 ] [] @@ -85,23 +85,23 @@ func_39 [ DIFF 0 ] [] func_40 [ DIFF 0 ] [] "48 8B 77 08 48 85 F6 75 07 C3 66 0F 1F 44 00 00" func_41 [ DIFF 175 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "48 8D 05 F9 4F CE 02 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 39 56 CE 02 C3 CC CC CC CC CC CC CC CC" func_42 [ DIFF 160 ] ["CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseGrenade", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_43 [ DIFF 175 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "48 8D 3D F9 D4 0C 03 E9 D4 D2 7C 01 CC CC CC CC" + "48 8D 3D 39 E4 0C 03 E9 D4 E1 7C 01 CC CC CC CC" func_44 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_45 [ DIFF 172 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 8B 47 10 48 8B 50 08 48 8B 82 10 01 00 00 48" func_46 [ DIFF 114 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "48 8D 05 69 53 CE 02 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 A9 59 CE 02 C3 CC CC CC CC CC CC CC CC" func_47 [ DIFF 1 ] ["C_TriggerBuoyancy"] "55 48 89 E5 41 57 41 56 41 55 4C 8D 6D B0 41 54" func_48 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_49 [ DIFF 50 ] ["C_AK47", "C_BaseCSGrenade", "C_BasePlayerWeapon", "C_C4", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "8B 8F A0 06 00 00 83 F9 FF 74 65 4C 8B 05 DE 15" + "8B 8F A0 06 00 00 83 F9 FF 74 65 4C 8B 05 DE 19" func_50 [ DIFF 62 ] ["CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_Beam", "C_C4", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_FuncLadder", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_Sprite", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_51 [ DIFF 0 ] [] @@ -193,7 +193,7 @@ func_93 [ DIFF 0 ] [] func_94 [ DIFF 1 ] ["C_BaseButton"] "48 8B 47 10 55 48 89 E5 41 54 53 48 89 FB 44 8B" func_95 [ DIFF 3 ] ["CBombTarget", "C_Hostage", "C_PlantedC4"] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 DF 05 87" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 DF FA 86" func_96 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_97 [ DIFF 0 ] [] @@ -213,7 +213,7 @@ func_103 [ DIFF 77 ] ["C_AK47", "C_BaseCSGrenad func_104 [ DIFF 131 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CPointOffScreenIndicatorUi", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncMoveLinear", "C_FuncMover", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 55 41 54 53 48 89 FB 48 83 EC 08" func_105 [ DIFF 65 ] ["CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_PointCommentaryNode", "C_SmokeGrenade", "C_Sprite", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 4D 86" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 42 86" func_106 [ DIFF 3 ] ["C_ModelPointEntity", "C_PlayerSprayDecal", "C_PointWorldText"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_107 [ DIFF 0 ] [] @@ -231,7 +231,7 @@ func_112 [ DIFF 0 ] [] func_113 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 83 EC 08 80 BF CD" func_114 [ DIFF 0 ] [] - "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 AE 34" + "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 AE 2B" func_115 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_116 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] @@ -247,15 +247,15 @@ func_120 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseP func_121 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 F8 48 C7 07 00 00 00 00 C3 CC CC CC CC CC" func_122 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 8D B9 32 03 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 8D C8 32 03 01 C3 CC CC CC CC CC CC CC CC" func_123 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 8D B9 32 03 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 8D C8 32 03 01 C3 CC CC CC CC CC CC CC CC" func_124 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_125 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_126 [ DIFF 63 ] ["C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CS2WeaponModuleBase", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_Hostage", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_MolotovGrenade", "C_NametagModule", "C_PlantedC4", "C_SmokeGrenade", "C_StattrakModule", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "8B 97 A0 06 00 00 83 FA FF 74 55 48 8B 35 9E 39" + "8B 97 A0 06 00 00 83 FA FF 74 55 48 8B 35 9E 3D" func_127 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_128 [ DIFF 0 ] [] @@ -271,7 +271,7 @@ func_132 [ DIFF 50 ] ["C_AK47", "C_BaseCSGrenad func_133 [ DIFF 65 ] ["C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_Hostage", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_MolotovGrenade", "C_NametagModule", "C_PlantedC4", "C_SmokeGrenade", "C_StattrakModule", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_134 [ DIFF 10 ] ["C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_ClientRagdoll", "C_EconWearableGib", "C_Hostage", "C_PhysPropClientside"] - "55 48 8D 05 80 59 03 03 66 0F EF C0 31 C9 48 89" + "55 48 8D 05 C0 68 03 03 66 0F EF C0 31 C9 48 89" func_135 [ DIFF 0 ] [] "0F B6 87 EC 04 00 00 D0 E8 83 E0 01 83 F0 01 C3" func_136 [ DIFF 8 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_FuncConveyor"] @@ -293,11 +293,11 @@ func_143 [ DIFF 0 ] [] func_144 [ DIFF 43 ] ["CGrenadeTracer", "CPointOffScreenIndicatorUi", "CSpriteOriented", "C_BaseCSGrenadeProjectile", "C_C4", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_Chicken", "C_ClientRagdoll", "C_DecoyProjectile", "C_DynamicLight", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvParticleGlow", "C_FireCrackerBlast", "C_Fish", "C_FlashbangProjectile", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_Inferno", "C_MapPreviewParticleSystem", "C_MolotovProjectile", "C_ParticleSystem", "C_PhysPropClientside", "C_PlantedC4", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_Precipitation", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_145 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] - "55 48 89 E5 53 48 89 FB 48 83 EC 48 E8 8F 79 15" + "55 48 89 E5 53 48 89 FB 48 83 EC 48 E8 CF 7D 15" func_146 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_147 [ DIFF 1 ] ["CGrenadeTracer"] - "F3 0F 10 86 98 00 00 00 0F 2F 05 15 A0 54 FF 77" + "F3 0F 10 86 98 00 00 00 0F 2F 05 15 95 54 FF 77" func_148 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_149 [ DIFF 1 ] ["C_ClientRagdoll"] @@ -305,7 +305,7 @@ func_149 [ DIFF 1 ] ["C_ClientRagdoll"] func_150 [ DIFF 8 ] ["C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_HostageCarriableProp", "C_PointClientUIHUD", "C_PointCommentaryNode", "C_RagdollProp", "C_RagdollPropAttached", "C_TextureBasedAnimatable"] "55 48 89 E5 41 57 41 56 45 31 F6 41 55 41 54 49" func_151 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "48 8B BF 70 07 00 00 48 85 FF 74 0C E9 4F 28 83" + "48 8B BF 70 07 00 00 48 85 FF 74 0C E9 4F 33 83" func_152 [ DIFF 110 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 8B 87 70 07 00 00 48 85 C0 74 44 44 8B 88 90" func_153 [ DIFF 0 ] [] @@ -367,7 +367,7 @@ func_180 [ DIFF 0 ] [] func_181 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 38 80 BF A6 06" func_182 [ DIFF 0 ] [] - "8B 8F B0 06 00 00 83 F9 FF 74 45 48 8B 35 5E 78" + "8B 8F B0 06 00 00 83 F9 FF 74 45 48 8B 35 5E 7C" func_183 [ DIFF 0 ] [] "48 8B 07 FF A0 B0 05 00 00 CC CC CC CC CC CC CC" func_184 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] @@ -387,7 +387,7 @@ func_190 [ DIFF 68 ] ["C_AK47", "C_BaseCSGrenad func_191 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_192 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF 2E 1D" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF 30 1D" func_193 [ DIFF 3 ] ["C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_EnvDecal"] "48 8B BF B0 04 00 00 48 85 FF 74 0C 40 0F B6 F6" func_194 [ DIFF 0 ] [] @@ -413,7 +413,7 @@ func_203 [ DIFF 0 ] [] func_204 [ DIFF 4 ] ["C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn"] "55 48 89 E5 48 83 EC 20 E8 43 21 06 00 F3 0F 7E" func_205 [ DIFF 0 ] [] - "55 48 89 E5 E8 17 FF 86 FF 5D C3 CC CC CC CC CC" + "55 48 89 E5 E8 17 F4 86 FF 5D C3 CC CC CC CC CC" func_206 [ DIFF 114 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EconWearableGib", "C_EntityDissolve", "C_EnvDecal", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "55 48 89 E5 41 54 49 89 D4 53 48 8D 45 E8 48 89" func_207 [ DIFF 3 ] ["C_EnvDecal", "C_FireCrackerBlast", "C_Inferno"] @@ -459,7 +459,7 @@ func_226 [ DIFF 4 ] ["C_CSGO_PreviewPlayer", " func_227 [ DIFF 17 ] ["CFuncRetakeBarrier", "C_BasePropDoor", "C_BreakableProp", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn", "C_Chicken", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PropDoorRotating", "C_ShatterGlassShardPhysics"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_228 [ DIFF 17 ] ["CFuncRetakeBarrier", "C_BasePropDoor", "C_BreakableProp", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn", "C_Chicken", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PropDoorRotating", "C_ShatterGlassShardPhysics"] - "C6 05 81 D4 F0 02 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 81 DA F0 02 01 C3 CC CC CC CC CC CC CC CC" func_229 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_230 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/client/C_CSWeaponBase.txt b/dump/linux/vtable_diff/client/C_CSWeaponBase.txt index 06514fb..8978de2 100644 --- a/dump/linux/vtable_diff/client/C_CSWeaponBase.txt +++ b/dump/linux/vtable_diff/client/C_CSWeaponBase.txt @@ -3,27 +3,27 @@ Virtual Function Count: 435 Children Count: 48 ============================================= func_0 [ DIFF 0 ] [] - "55 48 89 E5 53 48 83 EC 08 48 8B 1D 50 D6 1A 03" + "55 48 89 E5 53 48 83 EC 08 48 8B 1D 50 E5 1A 03" func_1 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "55 48 8D 05 B0 D7 C2 02 48 89 E5 41 55 41 54 45" + "55 48 8D 05 F0 DD C2 02 48 89 E5 41 55 41 54 45" func_2 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 3F FC FF" func_3 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 18 E8 5F C8 E6" func_4 [ DIFF 0 ] [] - "55 48 8D 15 58 7B AC FF 48 89 E5 41 56 41 55 49" + "55 48 8D 15 58 72 AC FF 48 89 E5 41 56 41 55 49" func_5 [ DIFF 10 ] ["C_BaseCSGrenade", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponElite", "C_WeaponTaser"] "55 48 89 E5 41 57 49 BF BF B9 6B 28 FF FF FF FF" func_6 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5F 41 27" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5F 43 27" func_7 [ DIFF 36 ] ["C_AK47", "C_C4", "C_CSWeaponBaseGun", "C_DEagle", "C_Knife", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] "55 48 89 E5 41 57 49 BF BF B9 6B 28 FF FF FF FF" func_8 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 41 89 F4 53 48 89 FB 48" func_9 [ DIFF 0 ] [] - "55 48 89 E5 41 54 41 89 F4 53 48 89 FB E8 CE 41" + "55 48 89 E5 41 54 41 89 F4 53 48 89 FB E8 8E 45" func_10 [ DIFF 0 ] [] - "E9 5B B6 1F 01 CC CC CC CC CC CC CC CC CC CC CC" + "E9 9B BA 1F 01 CC CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 3 ] ["C_C4", "C_Item_Healthshot", "C_WeaponBaseItem"] "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 20 E8 9D" func_12 [ DIFF 1 ] ["C_C4"] @@ -37,15 +37,15 @@ func_15 [ DIFF 0 ] [] func_16 [ DIFF 0 ] [] "55 48 89 E5 41 54 41 89 F4 53 48 89 FB 48 8B BF" func_17 [ DIFF 0 ] [] - "E9 1B 57 A6 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 1B 4E A6 FF CC CC CC CC CC CC CC CC CC CC CC" func_18 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 49" func_19 [ DIFF 0 ] [] "55 48 89 E5 41 54 49 89 F4 53 48 89 FB 48 8B BF" func_20 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 89 FB E8 A1 84 1F 00 C6" + "55 48 89 E5 41 54 53 48 89 FB E8 A1 86 1F 00 C6" func_21 [ DIFF 0 ] [] - "E9 1B 70 81 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 1B 7B 81 00 CC CC CC CC CC CC CC CC CC CC CC" func_22 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 3F 22 19" func_23 [ DIFF 0 ] [] @@ -63,7 +63,7 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 4C 8D 35 AB D8 4C 03 41 55 49" + "55 48 89 E5 41 56 4C 8D 35 AB E7 4C 03 41 55 49" func_31 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_32 [ DIFF 0 ] [] @@ -85,23 +85,23 @@ func_39 [ DIFF 0 ] [] func_40 [ DIFF 0 ] [] "48 8B 77 08 48 85 F6 75 07 C3 66 0F 1F 44 00 00" func_41 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "48 8D 05 09 A2 DF 02 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 49 A8 DF 02 C3 CC CC CC CC CC CC CC CC" func_42 [ DIFF 11 ] ["C_BaseCSGrenade", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponElite", "C_WeaponTaser"] - "E9 8B BD 12 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 8B BF 12 00 CC CC CC CC CC CC CC CC CC CC CC" func_43 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "48 8D 3D 09 79 DF 02 E9 44 16 4D 01 0F 1F 40 00" + "48 8D 3D 49 7F DF 02 E9 44 1C 4D 01 0F 1F 40 00" func_44 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_45 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "48 8B 47 10 48 8B 50 08 48 8B 82 10 01 00 00 48" func_46 [ DIFF 44 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] - "48 8D 05 39 B5 DF 02 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 79 BB DF 02 C3 CC CC CC CC CC CC CC CC" func_47 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 4C 8D 6D B0 41 54" func_48 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_49 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 1F 44 20" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 1F 46 20" func_50 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 8B 87 EC 04 00 00 48 89 FB" func_51 [ DIFF 0 ] [] @@ -149,7 +149,7 @@ func_71 [ DIFF 0 ] [] func_72 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 8D 7D B8 48 83 EC 58" func_73 [ DIFF 0 ] [] - "48 8D 05 C1 CA AE 02 48 8B 00 8B 40 04 39 87 38" + "48 8D 05 01 CF AE 02 48 8B 00 8B 40 04 39 87 38" func_74 [ DIFF 0 ] [] "48 8B 87 30 12 00 00 48 85 C0 74 04 48 8B 40 08" func_75 [ DIFF 0 ] [] @@ -193,7 +193,7 @@ func_93 [ DIFF 0 ] [] func_94 [ DIFF 0 ] [] "48 8B 47 10 55 48 89 E5 41 54 53 48 89 FB 44 8B" func_95 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 DF 05 87" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 DF FA 86" func_96 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_97 [ DIFF 0 ] [] @@ -203,17 +203,17 @@ func_98 [ DIFF 0 ] [] func_99 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_100 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5F D4 2F" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5F D6 2F" func_101 [ DIFF 7 ] ["C_BaseCSGrenade", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_MolotovGrenade", "C_SmokeGrenade"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5F FA 12" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 7F FC 12" func_102 [ DIFF 1 ] ["C_C4"] "55 48 8D 15 98 42 FD FF 48 89 E5 41 54 53 48 89" func_103 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 48 8B 87 A8 2A 00 00 48 89" func_104 [ DIFF 1 ] ["C_C4"] - "55 48 89 E5 41 54 41 89 F4 53 48 89 FB E8 3E C3" + "55 48 89 E5 41 54 41 89 F4 53 48 89 FB E8 3E C5" func_105 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 9F 3E 8F" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF 3C 8F" func_106 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_107 [ DIFF 0 ] [] @@ -231,7 +231,7 @@ func_112 [ DIFF 0 ] [] func_113 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 83 EC 08 80 BF CD" func_114 [ DIFF 0 ] [] - "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 AE 34" + "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 AE 2B" func_115 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_116 [ DIFF 0 ] [] @@ -249,13 +249,13 @@ func_121 [ DIFF 0 ] [] func_122 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_123 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 EF B4 A3" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 EF AB A3" func_124 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_125 [ DIFF 0 ] [] - "55 48 89 E5 E8 07 92 53 00 5D 0F B6 80 90 18 00" + "55 48 89 E5 E8 07 9B 53 00 5D 0F B6 80 90 18 00" func_126 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 CF 69 1F" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 CF 6B 1F" func_127 [ DIFF 0 ] [] "55 48 89 E5 41 56 49 89 D6 41 55 41 54 49 89 F4" func_128 [ DIFF 0 ] [] @@ -269,9 +269,9 @@ func_131 [ DIFF 0 ] [] func_132 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 54 53 48 89 FB E8 6D" func_133 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 8F 9C B2" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 8F 93 B2" func_134 [ DIFF 0 ] [] - "55 48 8D 05 80 59 03 03 66 0F EF C0 31 C9 48 89" + "55 48 8D 05 C0 68 03 03 66 0F EF C0 31 C9 48 89" func_135 [ DIFF 0 ] [] "0F B6 87 EC 04 00 00 D0 E8 83 E0 01 83 F0 01 C3" func_136 [ DIFF 0 ] [] @@ -293,11 +293,11 @@ func_143 [ DIFF 0 ] [] func_144 [ DIFF 1 ] ["C_C4"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_145 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 48 E8 8F 79 15" + "55 48 89 E5 53 48 89 FB 48 83 EC 48 E8 CF 7D 15" func_146 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_147 [ DIFF 0 ] [] - "F3 0F 10 86 98 00 00 00 0F 2F 05 15 A0 54 FF 77" + "F3 0F 10 86 98 00 00 00 0F 2F 05 15 95 54 FF 77" func_148 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_149 [ DIFF 0 ] [] @@ -307,7 +307,7 @@ func_150 [ DIFF 0 ] [] func_151 [ DIFF 0 ] [] "55 48 89 E5 41 54 49 89 F4 53 48 89 FB 48 8B BF" func_152 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 7F A8 1E" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 7F AA 1E" func_153 [ DIFF 0 ] [] "8B 87 80 07 00 00 C3 CC CC CC CC CC CC CC CC CC" func_154 [ DIFF 0 ] [] @@ -345,13 +345,13 @@ func_169 [ DIFF 0 ] [] func_170 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 F4 53" func_171 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 20 E8 53 23 B9 FF F3 0F 7E" + "55 48 89 E5 48 83 EC 20 E8 53 1A B9 FF F3 0F 7E" func_172 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 20 E8 53 13 B9 FF F3 0F 7E" + "55 48 89 E5 48 83 EC 20 E8 53 0A B9 FF F3 0F 7E" func_173 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 20 E8 73 13 B9 FF F3 0F 7E" + "55 48 89 E5 48 83 EC 20 E8 73 0A B9 FF F3 0F 7E" func_174 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 20 E8 73 23 B9 FF F3 0F 7E" + "55 48 89 E5 48 83 EC 20 E8 73 1A B9 FF F3 0F 7E" func_175 [ DIFF 0 ] [] "55 48 89 E5 48 83 EC 20 E8 43 21 06 00 F3 0F 7E" func_176 [ DIFF 0 ] [] @@ -367,7 +367,7 @@ func_180 [ DIFF 0 ] [] func_181 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 38 80 BF A6 06" func_182 [ DIFF 0 ] [] - "8B 8F B0 06 00 00 83 F9 FF 74 45 48 8B 35 5E 78" + "8B 8F B0 06 00 00 83 F9 FF 74 45 48 8B 35 5E 7C" func_183 [ DIFF 0 ] [] "48 8B 07 FF A0 B0 05 00 00 CC CC CC CC CC CC CC" func_184 [ DIFF 0 ] [] @@ -387,7 +387,7 @@ func_190 [ DIFF 0 ] [] func_191 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_192 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF 2E 1D" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF 30 1D" func_193 [ DIFF 0 ] [] "48 8B BF B0 04 00 00 48 85 FF 74 0C 40 0F B6 F6" func_194 [ DIFF 0 ] [] @@ -395,7 +395,7 @@ func_194 [ DIFF 0 ] [] func_195 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_196 [ DIFF 0 ] [] - "48 8D 05 5B 42 9A FF C3 CC CC CC CC CC CC CC CC" + "48 8D 05 5B 39 9A FF C3 CC CC CC CC CC CC CC CC" func_197 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_198 [ DIFF 0 ] [] @@ -413,7 +413,7 @@ func_203 [ DIFF 0 ] [] func_204 [ DIFF 0 ] [] "55 48 89 E5 48 83 EC 20 E8 43 21 06 00 F3 0F 7E" func_205 [ DIFF 0 ] [] - "55 48 89 E5 E8 17 FF 86 FF 5D C3 CC CC CC CC CC" + "55 48 89 E5 E8 17 F4 86 FF 5D C3 CC CC CC CC CC" func_206 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 49 89 FD 41 54 49" func_207 [ DIFF 0 ] [] @@ -459,7 +459,7 @@ func_226 [ DIFF 0 ] [] func_227 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_228 [ DIFF 0 ] [] - "C6 05 81 D4 F0 02 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 81 DA F0 02 01 C3 CC CC CC CC CC CC CC CC" func_229 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_230 [ DIFF 0 ] [] @@ -473,7 +473,7 @@ func_233 [ DIFF 0 ] [] func_234 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_235 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 18 E8 EF D9 13" + "55 48 89 E5 53 48 89 FB 48 83 EC 18 E8 EF DB 13" func_236 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 54 10" func_237 [ DIFF 0 ] [] @@ -497,13 +497,13 @@ func_245 [ DIFF 0 ] [] func_246 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_247 [ DIFF 0 ] [] - "48 89 F8 48 89 F7 48 89 C6 E9 72 01 C1 FF CC CC" + "48 89 F8 48 89 F7 48 89 C6 E9 72 F8 C0 FF CC CC" func_248 [ DIFF 0 ] [] "48 89 F8 C3 CC CC CC CC CC CC CC CC CC CC CC CC" func_249 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_250 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 89 FB E8 81 83 14 00 48" + "55 48 89 E5 41 54 53 48 89 FB E8 81 85 14 00 48" func_251 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_252 [ DIFF 0 ] [] @@ -535,7 +535,7 @@ func_264 [ DIFF 0 ] [] func_265 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 49 89 F4 53 48 89 FB 48" func_266 [ DIFF 0 ] [] - "0F B6 05 A9 AB EF 02 84 C0 74 0D 48 8B 05 A6 AB" + "0F B6 05 A9 B1 EF 02 84 C0 74 0D 48 8B 05 A6 B1" func_267 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_268 [ DIFF 0 ] [] @@ -553,7 +553,7 @@ func_273 [ DIFF 0 ] [] func_274 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_275 [ DIFF 0 ] [] - "55 48 89 E5 E8 07 92 53 00 5D 48 89 C7 E9 DE 19" + "55 48 89 E5 E8 07 9B 53 00 5D 48 89 C7 E9 DE 22" func_276 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_277 [ DIFF 0 ] [] @@ -563,7 +563,7 @@ func_278 [ DIFF 0 ] [] func_279 [ DIFF 0 ] [] "80 BF B0 2A 00 00 00 0F 84 C3 00 00 00 55 48 89" func_280 [ DIFF 0 ] [] - "55 48 89 E5 41 54 4C 8D 25 72 D9 67 FF 53 48 89" + "55 48 89 E5 41 54 4C 8D 25 72 CE 67 FF 53 48 89" func_281 [ DIFF 0 ] [] "55 48 89 E5 41 54 49 89 FC 53 48 8B 7E 28 48 89" func_282 [ DIFF 0 ] [] @@ -591,7 +591,7 @@ func_292 [ DIFF 0 ] [] func_293 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 48 8B 07 48 89 FB FF 90 28" func_294 [ DIFF 0 ] [] - "55 48 8D 15 18 AC 66 FF 48 89 E5 41 55 41 54 53" + "55 48 8D 15 98 A8 66 FF 48 89 E5 41 55 41 54 53" func_295 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_296 [ DIFF 0 ] [] @@ -611,13 +611,13 @@ func_302 [ DIFF 0 ] [] func_303 [ DIFF 0 ] [] "48 8D 87 58 13 00 00 C3 0F 1F 84 00 00 00 00 00" func_304 [ DIFF 0 ] [] - "8B 8F A0 06 00 00 83 F9 FF 74 45 48 8B 35 FE DF" + "8B 8F A0 06 00 00 83 F9 FF 74 45 48 8B 35 FE E5" func_305 [ DIFF 0 ] [] "48 8D 87 C0 24 00 00 C3 0F 1F 84 00 00 00 00 00" func_306 [ DIFF 0 ] [] "39 B7 38 27 00 00 74 06 89 B7 38 27 00 00 39 97" func_307 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 FF D2 BE" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 9F D1 BE" func_308 [ DIFF 0 ] [] "8B 87 40 27 00 00 C3 CC CC CC CC CC CC CC CC CC" func_309 [ DIFF 0 ] [] @@ -641,11 +641,11 @@ func_317 [ DIFF 0 ] [] func_318 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_319 [ DIFF 3 ] ["C_Item_Healthshot", "C_Knife", "C_WeaponBaseItem"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 2F 11 13" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 4F 13 13" func_320 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_321 [ DIFF 0 ] [] - "55 48 89 E5 E8 57 11 13 00 5D 48 85 C0 0F 95 C0" + "55 48 89 E5 E8 77 13 13 00 5D 48 85 C0 0F 95 C0" func_322 [ DIFF 43 ] ["C_AK47", "C_BaseCSGrenade", "C_CSWeaponBaseGun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 70 80 BF" func_323 [ DIFF 0 ] [] @@ -663,7 +663,7 @@ func_328 [ DIFF 7 ] ["C_BaseCSGrenade", "C_Dec func_329 [ DIFF 0 ] [] "55 48 8D 0D C8 FC FF FF 48 89 E5 53 48 89 FB 48" func_330 [ DIFF 0 ] [] - "48 8B 87 00 05 00 00 48 8D 15 A4 41 A7 FF 48 8B" + "48 8B 87 00 05 00 00 48 8D 15 AF 41 A7 FF 48 8B" func_331 [ DIFF 0 ] [] "48 8B 87 00 05 00 00 48 85 C0 74 2B F6 80 4F 04" func_332 [ DIFF 0 ] [] @@ -713,7 +713,7 @@ func_353 [ DIFF 0 ] [] func_354 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_355 [ DIFF 0 ] [] - "8B 8F A0 06 00 00 83 F9 FF 74 55 48 8B 35 7E BC" + "8B 8F A0 06 00 00 83 F9 FF 74 55 48 8B 35 7E C2" func_356 [ DIFF 1 ] ["C_WeaponTaser"] "66 0F EF C0 C3 CC CC CC CC CC CC CC CC CC CC CC" func_357 [ DIFF 3 ] ["C_C4", "C_IncendiaryGrenade", "C_MolotovGrenade"] @@ -771,9 +771,9 @@ func_382 [ DIFF 0 ] [] func_383 [ DIFF 0 ] [] "48 8B 87 00 05 00 00 0F B6 80 F0 07 00 00 C3 CC" func_384 [ DIFF 0 ] [] - "48 8B 97 00 05 00 00 48 8D 0D 14 3C A1 FF 48 63" + "48 8B 97 00 05 00 00 48 8D 0D 1F 33 A1 FF 48 63" func_385 [ DIFF 0 ] [] - "48 8B 97 00 05 00 00 48 8D 0D 14 3D A1 FF 48 63" + "48 8B 97 00 05 00 00 48 8D 0D 1F 34 A1 FF 48 63" func_386 [ DIFF 0 ] [] "48 8B 87 00 05 00 00 F3 0F 10 80 58 08 00 00 C3" func_387 [ DIFF 0 ] [] @@ -783,13 +783,13 @@ func_388 [ DIFF 0 ] [] func_389 [ DIFF 1 ] ["C_WeaponTaser"] "48 8B 87 00 05 00 00 8B 80 40 04 00 00 C3 CC CC" func_390 [ DIFF 0 ] [] - "F3 0F 10 05 E4 E9 98 FF C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 E4 E0 98 FF C3 CC CC CC CC CC CC CC" func_391 [ DIFF 0 ] [] "83 FE 01 74 1B 83 FE 02 74 06 31 C0 C3 0F 1F 00" func_392 [ DIFF 0 ] [] "83 FE 01 74 3B 83 FE 02 74 1E 66 0F EF C0 85 F6" func_393 [ DIFF 0 ] [] - "55 48 89 E5 E8 A7 89 99 00 48 89 C7 E8 8F 1E A4" + "55 48 89 E5 E8 27 8D 99 00 48 89 C7 E8 4F 22 A4" func_394 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_395 [ DIFF 0 ] [] @@ -803,7 +803,7 @@ func_398 [ DIFF 0 ] [] func_399 [ DIFF 1 ] ["C_WeaponCZ75a"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_400 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] - "55 48 89 E5 53 48 89 FB 48 83 EC 18 E8 4F 20 97" + "55 48 89 E5 53 48 89 FB 48 83 EC 18 E8 CF 23 97" func_401 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_402 [ DIFF 8 ] ["C_BaseCSGrenade", "C_C4", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_MolotovGrenade", "C_SmokeGrenade"] @@ -827,9 +827,9 @@ func_410 [ DIFF 47 ] ["C_AK47", "C_BaseCSGrenad func_411 [ DIFF 43 ] ["C_AK47", "C_BaseCSGrenade", "C_CSWeaponBaseGun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_412 [ DIFF 43 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] - "55 48 89 E5 41 54 53 48 89 FB E8 71 3A 10 00 48" + "55 48 89 E5 41 54 53 48 89 FB E8 91 3C 10 00 48" func_413 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] - "55 48 89 E5 41 54 53 48 89 FB E8 E1 10 13 00 48" + "55 48 89 E5 41 54 53 48 89 FB E8 01 13 13 00 48" func_414 [ DIFF 8 ] ["C_BaseCSGrenade", "C_C4", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_MolotovGrenade", "C_SmokeGrenade"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_415 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] @@ -843,17 +843,17 @@ func_418 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBase func_419 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_420 [ DIFF 43 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 8F 96 11" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF 98 11" func_421 [ DIFF 46 ] ["C_AK47", "C_BaseCSGrenade", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "55 48 8D 15 18 FF FF FF 48 89 E5 41 54 53 48 89" func_422 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 10 E8 5D" + "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 10 E8 7D" func_423 [ DIFF 8 ] ["C_BaseCSGrenade", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_MolotovGrenade", "C_SmokeGrenade"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 48 8B 07 FF" func_424 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 49 89 F6 41 55 49 89 D5" func_425 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 10 E8 4D" + "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 10 E8 6D" func_426 [ DIFF 2 ] ["C_Item_Healthshot", "C_WeaponBaseItem"] "55 48 89 E5 41 54 49 89 F4 53 80 BE B1 02 00 00" func_427 [ DIFF 1 ] ["C_WeaponCZ75a"] diff --git a/dump/linux/vtable_diff/engine2/CEngineClient.txt b/dump/linux/vtable_diff/engine2/CEngineClient.txt index a4f7500..015397f 100644 --- a/dump/linux/vtable_diff/engine2/CEngineClient.txt +++ b/dump/linux/vtable_diff/engine2/CEngineClient.txt @@ -9,9 +9,9 @@ func_1 [ DIFF 0 ] [] func_2 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] - "48 83 3D 90 8A 45 00 00 74 09 80 3D D7 C0 45 00" + "48 83 3D 30 8D 45 00 00 74 09 80 3D 77 C3 45 00" func_4 [ DIFF 0 ] [] - "48 8B 3D 09 22 45 00 48 85 FF 74 34 55 48 89 E5" + "48 8B 3D C9 24 45 00 48 85 FF 74 34 55 48 89 E5" func_5 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] @@ -25,183 +25,183 @@ func_9 [ DIFF 0 ] [] func_10 [ DIFF 0 ] [] "B8 02 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 0 ] [] - "48 8B 05 D9 06 2F 00 48 85 C0 74 24 0F B6 80 A5" + "48 8B 05 89 29 2F 00 48 85 C0 74 24 0F B6 80 A5" func_12 [ DIFF 0 ] [] - "F3 0F 10 05 98 1E BE FF C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 68 3D BE FF C3 CC CC CC CC CC CC CC" func_13 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 4C 8D 75 C8 41 55 4C 89" func_14 [ DIFF 0 ] [] "48 89 F7 89 D6 48 89 CA 48 85 C9 74 23 80 39 00" func_15 [ DIFF 0 ] [] - "8B 05 AE 07 2F 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 5E 2A 2F 00 C3 CC CC CC CC CC CC CC CC CC" func_16 [ DIFF 0 ] [] "55 66 0F 6E C1 BF 1C 00 00 00 48 89 E5 41 56 66" func_17 [ DIFF 0 ] [] "48 85 F6 0F 84 D7 00 00 00 55 BF 38 00 00 00 48" func_18 [ DIFF 0 ] [] - "E9 4B 5D E8 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 8B 81 E8 FF CC CC CC CC CC CC CC CC CC CC CC" func_19 [ DIFF 0 ] [] "55 B8 FF FF FF FF 48 89 E5 41 57 41 56 41 55 41" func_20 [ DIFF 0 ] [] - "48 8B 05 99 0C 2F 00 48 8D 15 4D 79 BE FF 48 85" + "48 8B 05 39 2F 2F 00 48 8D 15 19 98 BE FF 48 85" func_21 [ DIFF 0 ] [] "89 F0 C1 E0 1F C3 CC CC CC CC CC CC CC CC CC CC" func_22 [ DIFF 0 ] [] - "48 8B 05 19 0C 2F 00 48 85 C0 74 34 40 84 F6 74" + "48 8B 05 B9 2E 2F 00 48 85 C0 74 34 40 84 F6 74" func_23 [ DIFF 0 ] [] - "48 8B 05 C9 0B 2F 00 31 D2 48 85 C0 74 0A 85 F6" + "48 8B 05 69 2E 2F 00 31 D2 48 85 C0 74 0A 85 F6" func_24 [ DIFF 0 ] [] - "48 8D 05 71 3B 2F 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 11 5E 2F 00 C3 CC CC CC CC CC CC CC CC" func_25 [ DIFF 0 ] [] - "48 89 F7 89 D6 E9 16 49 EB FF 31 C0 66 0F 7E 8D" + "48 89 F7 89 D6 E9 96 6E EB FF 31 C0 66 0F 7E 8D" func_26 [ DIFF 0 ] [] - "8B 05 02 24 2F 00 85 C0 7E 16 48 8B 05 EF 23 2F" + "8B 05 B2 46 2F 00 85 C0 7E 16 48 8B 05 9F 46 2F" func_27 [ DIFF 0 ] [] - "55 66 0F 6E CA 48 89 E5 41 57 41 56 4C 8D 3D 0D" + "55 66 0F 6E CA 48 89 E5 41 57 41 56 4C 8D 3D 4D" func_28 [ DIFF 0 ] [] - "48 89 F7 0F B6 F2 89 CA E9 83 48 EB FF CC CC CC" + "48 89 F7 0F B6 F2 89 CA E9 03 6E EB FF CC CC CC" func_29 [ DIFF 0 ] [] "55 66 0F EF C0 48 89 F7 48 89 E5 53 48 83 EC 28" func_30 [ DIFF 0 ] [] - "8B 05 F2 2C 2F 00 85 C0 0F 88 DA FF FF FF 48 8B" + "8B 05 A2 4F 2F 00 85 C0 0F 88 DA FF FF FF 48 8B" func_31 [ DIFF 0 ] [] - "48 8B 05 49 E2 2E 00 31 C9 48 85 C0 74 52 85 F6" + "48 8B 05 89 0A 2F 00 31 C9 48 85 C0 74 52 85 F6" func_32 [ DIFF 0 ] [] - "48 8B 05 D9 09 2F 00 BA FF FF FF FF 48 85 C0 74" + "48 8B 05 89 2C 2F 00 BA FF FF FF FF 48 85 C0 74" func_33 [ DIFF 0 ] [] - "48 8B 15 79 00 2F 00 B8 FF FF FF FF 48 85 D2 74" + "48 8B 15 89 26 2F 00 B8 FF FF FF FF 48 85 D2 74" func_34 [ DIFF 0 ] [] - "48 8B 05 49 00 2F 00 BA FF FF FF FF 48 85 C0 74" + "48 8B 05 59 26 2F 00 BA FF FF FF FF 48 85 C0 74" func_35 [ DIFF 0 ] [] - "48 8B 3D 99 09 2F 00 F3 0F 10 05 B5 31 BE FF 48" + "48 8B 3D 49 2C 2F 00 F3 0F 10 05 85 50 BE FF 48" func_36 [ DIFF 0 ] [] - "48 8B 05 29 09 2F 00 48 85 C0 74 0C 8B 80 BC 03" + "48 8B 05 D9 2B 2F 00 48 85 C0 74 0C 8B 80 BC 03" func_37 [ DIFF 0 ] [] - "48 8B 15 09 09 2F 00 B8 01 00 00 00 48 85 D2 74" + "48 8B 15 B9 2B 2F 00 B8 01 00 00 00 48 85 D2 74" func_38 [ DIFF 0 ] [] - "48 8B 05 C9 08 2F 00 31 D2 48 85 C0 74 13 80 B8" + "48 8B 05 79 2B 2F 00 31 D2 48 85 C0 74 13 80 B8" func_39 [ DIFF 0 ] [] - "48 8B 15 99 08 2F 00 31 C0 48 85 D2 74 0A 83 BA" + "48 8B 15 49 2B 2F 00 31 C0 48 85 D2 74 0A 83 BA" func_40 [ DIFF 0 ] [] - "48 8B 05 C9 FF 2E 00 48 85 C0 74 0F 48 63 F6 48" + "48 8B 05 D9 25 2F 00 48 85 C0 74 0F 48 63 F6 48" func_41 [ DIFF 0 ] [] - "48 83 3D F8 07 2F 00 00 74 16 48 8B 3D 5F 0F 2F" + "48 83 3D A8 2A 2F 00 00 74 16 48 8B 3D 0F 32 2F" func_42 [ DIFF 0 ] [] - "48 83 3D 98 07 2F 00 00 74 3E 48 8B 3D FF 0E 2F" + "48 83 3D 48 2A 2F 00 00 74 3E 48 8B 3D AF 31 2F" func_43 [ DIFF 0 ] [] - "48 83 3D 48 07 2F 00 00 74 16 48 8B 3D EF 21 2F" + "48 83 3D F8 29 2F 00 00 74 16 48 8B 3D 9F 44 2F" func_44 [ DIFF 0 ] [] - "48 83 3D 08 07 2F 00 00 74 16 48 8B 3D 6F 0E 2F" + "48 83 3D B8 29 2F 00 00 74 16 48 8B 3D 1F 31 2F" func_45 [ DIFF 0 ] [] - "8B 05 B2 29 2F 00 85 C0 78 1E 48 8B 15 37 29 2F" + "8B 05 62 4C 2F 00 85 C0 78 1E 48 8B 15 E7 4B 2F" func_46 [ DIFF 0 ] [] - "0F B6 05 A1 7C 33 00 C3 48 8B 04 25 00 00 00 00" + "0F B6 05 51 9F 33 00 C3 48 8B 04 25 00 00 00 00" func_47 [ DIFF 0 ] [] - "48 8D 05 01 7C 33 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 B1 9E 33 00 C3 CC CC CC CC CC CC CC CC" func_48 [ DIFF 0 ] [] - "48 8B 3D 39 0A 2F 00 48 85 FF 74 14 B8 FF FF FF" + "48 8B 3D E9 2C 2F 00 48 85 FF 74 14 B8 FF FF FF" func_49 [ DIFF 0 ] [] "55 8D 46 FC 48 89 E5 41 57 41 56 41 55 41 89 CD" func_50 [ DIFF 0 ] [] - "48 8B 05 09 0A 2F 00 48 85 C0 74 07 40 88 B0 9C" + "48 8B 05 B9 2C 2F 00 48 85 C0 74 07 40 88 B0 9C" func_51 [ DIFF 0 ] [] "40 88 77 24 C3 CC CC CC CC CC CC CC CC CC CC CC" func_52 [ DIFF 0 ] [] - "48 8B 3D C1 11 31 00 48 8D 15 32 B0 E9 FF 48 8B" + "48 8B 3D C1 12 31 00 48 8D 15 92 AE E9 FF 48 8B" func_53 [ DIFF 0 ] [] - "48 8B 05 69 58 2F 00 48 8D 15 92 1F F7 FF 48 8D" + "48 8B 05 79 7E 2F 00 48 8D 15 E2 42 F7 FF 48 8D" func_54 [ DIFF 0 ] [] - "55 48 89 E5 41 57 41 56 4C 8D 3D 21 1F F7 FF 41" + "55 48 89 E5 41 57 41 56 4C 8D 3D 71 42 F7 FF 41" func_55 [ DIFF 0 ] [] - "48 8B 05 69 57 2F 00 48 8D 15 72 1E F7 FF 48 8D" + "48 8B 05 E9 D0 2E 00 48 8D 15 32 95 F6 FF 48 8D" func_56 [ DIFF 0 ] [] - "48 8B 05 99 5C 2F 00 48 8D 15 F2 1E F7 FF 48 8B" + "48 8B 05 F9 E7 2E 00 48 8D 15 92 A7 F6 FF 48 8B" func_57 [ DIFF 0 ] [] - "48 8B 05 19 57 2F 00 48 8D 15 12 1F F7 FF 48 8D" + "48 8B 05 99 D0 2E 00 48 8D 15 D2 95 F6 FF 48 8D" func_58 [ DIFF 0 ] [] "B8 FF FF FF FF C3 CC CC CC CC CC CC CC CC CC CC" func_59 [ DIFF 0 ] [] - "48 8B 3D 91 09 2F 00 55 48 89 E5 41 54 49 89 D4" + "48 8B 3D 41 2C 2F 00 55 48 89 E5 41 54 49 89 D4" func_60 [ DIFF 0 ] [] - "48 8B 3D 41 07 2F 00 48 8D 15 B2 03 EA FF 48 8B" + "48 8B 3D F1 29 2F 00 48 8D 15 A2 23 EA FF 48 8B" func_61 [ DIFF 0 ] [] "55 BF 1C 00 00 00 48 89 E5 53 48 83 EC 08 E8 AD" func_62 [ DIFF 0 ] [] - "55 48 89 E5 53 48 83 EC 08 0F B6 05 78 50 2F 00" + "55 48 89 E5 53 48 83 EC 08 0F B6 05 28 6B 2F 00" func_63 [ DIFF 0 ] [] - "55 48 89 E5 53 48 83 EC 08 0F B6 05 98 4F 2F 00" + "55 48 89 E5 53 48 83 EC 08 0F B6 05 48 6A 2F 00" func_64 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_65 [ DIFF 0 ] [] - "48 8B 3D C9 23 2F 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D 79 46 2F 00 48 85 FF 74 0C 48 8B 07 FF" func_66 [ DIFF 0 ] [] - "48 8D 05 99 36 2F 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 49 59 2F 00 C3 CC CC CC CC CC CC CC CC" func_67 [ DIFF 0 ] [] - "48 8B 05 79 0C 2F 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 29 2F 2F 00 C3 CC CC CC CC CC CC CC CC" func_68 [ DIFF 0 ] [] - "48 8D 05 F9 AF 33 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 A9 D2 33 00 C3 CC CC CC CC CC CC CC CC" func_69 [ DIFF 0 ] [] - "48 8B 3D 69 17 2F 00 48 8B 07 FF 60 70 CC CC CC" + "48 8B 3D 09 3A 2F 00 48 8B 07 FF 60 70 CC CC CC" func_70 [ DIFF 0 ] [] - "48 8B 3D A9 17 2F 00 55 48 89 E5 48 8B 07 FF 90" + "48 8B 3D 49 3A 2F 00 55 48 89 E5 48 8B 07 FF 90" func_71 [ DIFF 0 ] [] - "48 8B 3D A9 1F 2F 00 48 8B 07 FF 60 30 CC CC CC" + "48 8B 3D 59 42 2F 00 48 8B 07 FF 60 30 CC CC CC" func_72 [ DIFF 0 ] [] - "48 8B 3D 59 0C 2F 00 48 8B 07 FF 60 20 CC CC CC" + "48 8B 3D 09 2F 2F 00 48 8B 07 FF 60 20 CC CC CC" func_73 [ DIFF 0 ] [] - "48 8B 3D 49 0C 2F 00 48 8B 07 FF 60 18 CC CC CC" + "48 8B 3D F9 2E 2F 00 48 8B 07 FF 60 18 CC CC CC" func_74 [ DIFF 0 ] [] - "48 8B 3D 29 0C 2F 00 48 8B 07 FF A0 98 00 00 00" + "48 8B 3D D9 2E 2F 00 48 8B 07 FF A0 98 00 00 00" func_75 [ DIFF 0 ] [] - "48 8B 3D 19 0C 2F 00 48 8B 07 FF 60 38 CC CC CC" + "48 8B 3D C9 2E 2F 00 48 8B 07 FF 60 38 CC CC CC" func_76 [ DIFF 0 ] [] - "48 8B 3D C9 17 2F 00 55 48 89 E5 48 8B 07 FF 50" + "48 8B 3D 69 3A 2F 00 55 48 89 E5 48 8B 07 FF 50" func_77 [ DIFF 0 ] [] - "48 83 3D 98 06 2F 00 00 75 06 C3 0F 1F 44 00 00" + "48 83 3D 48 29 2F 00 00 75 06 C3 0F 1F 44 00 00" func_78 [ DIFF 0 ] [] - "48 83 3D 68 06 2F 00 00 75 06 C3 0F 1F 44 00 00" + "48 83 3D 18 29 2F 00 00 75 06 C3 0F 1F 44 00 00" func_79 [ DIFF 0 ] [] - "48 83 3D 38 06 2F 00 00 74 16 48 8B 3D 9F 0D 2F" + "48 83 3D E8 28 2F 00 00 74 16 48 8B 3D 4F 30 2F" func_80 [ DIFF 0 ] [] - "48 83 3D D8 05 2F 00 00 75 06 C3 0F 1F 44 00 00" + "48 83 3D 88 28 2F 00 00 75 06 C3 0F 1F 44 00 00" func_81 [ DIFF 0 ] [] - "48 83 3D A8 05 2F 00 00 75 06 C3 0F 1F 44 00 00" + "48 83 3D 58 28 2F 00 00 75 06 C3 0F 1F 44 00 00" func_82 [ DIFF 0 ] [] - "48 83 3D 88 05 2F 00 00 75 06 C3 0F 1F 44 00 00" + "48 83 3D 38 28 2F 00 00 75 06 C3 0F 1F 44 00 00" func_83 [ DIFF 0 ] [] - "48 83 3D 08 06 2F 00 00 75 06 C3 0F 1F 44 00 00" + "48 83 3D B8 28 2F 00 00 75 06 C3 0F 1F 44 00 00" func_84 [ DIFF 0 ] [] - "48 8B 15 49 05 2F 00 31 C0 48 85 D2 74 0B 0F B6" + "48 8B 15 F9 27 2F 00 31 C0 48 85 D2 74 0B 0F B6" func_85 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 89 F3 48 83 EC 08" func_86 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 89 F5 41 54 53 89 D3 48 83" func_87 [ DIFF 0 ] [] - "8B 05 D2 2C 2E 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 92 4F 2E 00 C3 CC CC CC CC CC CC CC CC CC" func_88 [ DIFF 0 ] [] - "31 C0 80 3D C7 2F 2F 00 00 75 06 8B 05 C7 48 34" + "31 C0 80 3D 67 52 2F 00 00 75 06 8B 05 E7 6A 34" func_89 [ DIFF 0 ] [] - "48 8B 05 11 07 2F 00 48 8D 15 C4 61 BF FF 48 85" + "48 8B 05 B1 29 2F 00 48 8D 15 85 80 BF FF 48 85" func_90 [ DIFF 0 ] [] - "48 8B 05 E9 06 2F 00 48 8D 15 A4 61 BF FF 48 85" + "48 8B 05 89 29 2F 00 48 8D 15 65 80 BF FF 48 85" func_91 [ DIFF 0 ] [] - "48 8B 15 49 11 2F 00 31 C0 48 85 D2 74 06 8B 82" + "48 8B 15 E9 33 2F 00 31 C0 48 85 D2 74 06 8B 82" func_92 [ DIFF 0 ] [] - "8B 05 FA 02 2F 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 AA 25 2F 00 C3 CC CC CC CC CC CC CC CC CC" func_93 [ DIFF 0 ] [] - "48 8B 3D E1 07 2F 00 48 8B 07 FF A0 E0 00 00 00" + "48 8B 3D 91 2A 2F 00 48 8B 07 FF A0 E0 00 00 00" func_94 [ DIFF 0 ] [] - "48 89 35 09 3B 34 00 C3 CC CC CC CC CC CC CC CC" + "48 89 35 39 5D 34 00 C3 CC CC CC CC CC CC CC CC" func_95 [ DIFF 0 ] [] - "48 8B 05 F9 3A 34 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 29 5D 34 00 C3 CC CC CC CC CC CC CC CC" func_96 [ DIFF 0 ] [] - "48 8B 05 49 F5 2E 00 48 8D 15 52 F9 F6 FF 48 8B" + "48 8B 05 D9 26 2F 00 48 8D 15 22 28 F7 FF 48 8B" func_97 [ DIFF 0 ] [] - "48 8B 05 B9 5C 2F 00 48 8D 3D B2 5C 2F 00 48 8B" + "48 8B 05 69 7F 2F 00 48 8D 3D 62 7F 2F 00 48 8B" func_98 [ DIFF 0 ] [] - "48 8B 05 C9 F4 2E 00 55 48 89 E5 41 54 53 89 CB" + "48 8B 05 59 26 2F 00 55 48 89 E5 41 54 53 89 CB" func_99 [ DIFF 0 ] [] - "48 8B 05 39 F4 2E 00 48 8D 15 B2 F9 F6 FF 48 8B" + "48 8B 05 C9 25 2F 00 48 8D 15 82 28 F7 FF 48 8B" func_100 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 49 89 D5 41 54 53 48 89" func_101 [ DIFF 0 ] [] @@ -209,157 +209,157 @@ func_101 [ DIFF 0 ] [] func_102 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_103 [ DIFF 0 ] [] - "F3 0F 10 05 74 21 C0 FF C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 94 1E C0 FF C3 CC CC CC CC CC CC CC" func_104 [ DIFF 0 ] [] - "48 8B 3D 11 5A 33 00 48 8B 07 FF A0 40 01 00 00" + "48 8B 3D 71 E5 32 00 48 8B 07 FF A0 40 01 00 00" func_105 [ DIFF 0 ] [] - "48 8B 3D 01 5A 33 00 48 8B 07 FF A0 48 01 00 00" + "48 8B 3D 61 E5 32 00 48 8B 07 FF A0 48 01 00 00" func_106 [ DIFF 0 ] [] - "48 8B 3D F1 59 33 00 48 8B 07 FF A0 50 01 00 00" + "48 8B 3D 51 E5 32 00 48 8B 07 FF A0 50 01 00 00" func_107 [ DIFF 0 ] [] - "48 8B 3D D9 59 33 00 48 8D 15 C2 88 F6 FF 48 8B" + "48 8B 3D 39 E5 32 00 48 8D 15 82 11 F6 FF 48 8B" func_108 [ DIFF 0 ] [] - "48 8B 05 59 07 2F 00 48 85 C0 74 08 F3 0F 11 80" + "48 8B 05 B9 92 2E 00 48 85 C0 74 08 F3 0F 11 80" func_109 [ DIFF 0 ] [] - "48 89 35 71 3A 34 00 C3 CC CC CC CC CC CC CC CC" + "48 89 35 41 C7 33 00 C3 CC CC CC CC CC CC CC CC" func_110 [ DIFF 0 ] [] - "48 8B 05 61 3A 34 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 31 C7 33 00 C3 CC CC CC CC CC CC CC CC" func_111 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_112 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_113 [ DIFF 0 ] [] - "8B 05 A2 01 2F 00 55 48 89 E5 85 C0 78 42 48 8B" + "8B 05 22 96 2E 00 55 48 89 E5 85 C0 78 42 48 8B" func_114 [ DIFF 0 ] [] - "8B 05 72 F5 2E 00 85 C0 0F 88 52 01 00 00 55 0F" + "8B 05 32 6F 2E 00 85 C0 0F 88 52 01 00 00 55 0F" func_115 [ DIFF 0 ] [] - "48 8B 3D 41 07 2F 00 48 8D 15 B2 03 EA FF 48 8B" + "48 8B 3D F1 29 2F 00 48 8D 15 A2 23 EA FF 48 8B" func_116 [ DIFF 0 ] [] - "48 8B 05 29 DF 2E 00 48 85 C0 0F 84 D0 00 00 00" + "48 8B 05 A9 73 2E 00 48 85 C0 0F 84 D0 00 00 00" func_117 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 81 EC" func_118 [ DIFF 0 ] [] - "55 48 89 E5 E8 B7 D8 C3 FF 84 C0 74 1B 5D 48 8D" + "55 48 89 E5 E8 F7 69 C3 FF 84 C0 74 1B 5D 48 8D" func_119 [ DIFF 0 ] [] - "48 8B 3D F1 0F 2F 00 48 8D 15 22 62 E9 FF 48 8B" + "48 8B 3D 91 32 2F 00 48 8D 15 22 82 E9 FF 48 8B" func_120 [ DIFF 0 ] [] - "48 8B 05 F9 10 2F 00 48 85 C0 74 1C 48 8B B8 C0" + "48 8B 05 99 33 2F 00 48 85 C0 74 1C 48 8B B8 C0" func_121 [ DIFF 0 ] [] - "48 83 3D C8 10 2F 00 00 74 2E 48 8B 3D 2F 18 2F" + "48 83 3D 68 33 2F 00 00 74 2E 48 8B 3D CF 3A 2F" func_122 [ DIFF 0 ] [] - "48 8B 3D B1 FA 2E 00 48 8D 15 E2 4C E9 FF 48 8B" + "48 8B 3D 71 23 2F 00 48 8D 15 02 73 E9 FF 48 8B" func_123 [ DIFF 0 ] [] - "48 89 F7 48 89 D6 E9 75 F5 C3 FF CC CC CC CC CC" + "48 89 F7 48 89 D6 E9 F5 1A C4 FF CC CC CC CC CC" func_124 [ DIFF 0 ] [] - "48 8B 3D 51 FA 2E 00 48 8D 0D 82 4C E9 FF 48 8B" + "48 8B 3D 11 23 2F 00 48 8D 0D A2 72 E9 FF 48 8B" func_125 [ DIFF 0 ] [] - "48 8D 3D 69 2E 2F 00 48 39 3D 92 02 2F 00 74 08" + "48 8D 3D 29 57 2F 00 48 39 3D 52 2B 2F 00 74 08" func_126 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 48 8D BD 90 FE FF FF 41" func_127 [ DIFF 0 ] [] - "8B 05 8E 31 34 00 85 C0 7E 06 31 C0 C3 0F 1F 00" + "8B 05 CE 59 34 00 85 C0 7E 06 31 C0 C3 0F 1F 00" func_128 [ DIFF 0 ] [] - "8B 05 5A 31 34 00 85 C0 7E 06 31 C0 C3 0F 1F 00" + "8B 05 9A 59 34 00 85 C0 7E 06 31 C0 C3 0F 1F 00" func_129 [ DIFF 0 ] [] - "48 8B 3D D9 0E 2F 00 48 8D 15 82 C5 F2 FF 48 8B" + "48 8B 3D 79 31 2F 00 48 8D 15 62 E5 F2 FF 48 8B" func_130 [ DIFF 0 ] [] - "48 8B 3D A9 0E 2F 00 48 8D 15 62 C5 F2 FF 48 8B" + "48 8B 3D 49 31 2F 00 48 8D 15 42 E5 F2 FF 48 8B" func_131 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 31 DB 48" func_132 [ DIFF 0 ] [] - "48 8B 3D 39 F9 2E 00 48 85 FF 74 0C E9 8F 48 FD" + "48 8B 3D C9 22 2F 00 48 85 FF 74 0C E9 DF 70 FD" func_133 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC" func_134 [ DIFF 0 ] [] - "48 8B 15 39 0F 2F 00 31 C9 48 85 D2 74 37 0F B7" + "48 8B 15 D9 31 2F 00 31 C9 48 85 D2 74 37 0F B7" func_135 [ DIFF 0 ] [] "55 31 C0 48 89 E5 41 56 41 55 41 54 53 48 83 EC" func_136 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC" func_137 [ DIFF 0 ] [] - "48 8B 3D 89 F8 2E 00 48 85 FF 75 04 C3 0F 1F 00" + "48 8B 3D 89 22 2F 00 48 85 FF 75 04 C3 0F 1F 00" func_138 [ DIFF 0 ] [] - "48 8B 3D A9 F8 2E 00 48 85 FF 74 0C E9 2F 4C FD" + "48 8B 3D A9 22 2F 00 48 85 FF 74 0C E9 EF 74 FD" func_139 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 89 F5 41 54 49 89 D4" func_140 [ DIFF 0 ] [] - "48 8B 3D A1 61 2F 00 48 8B 07 FF 60 18 CC CC CC" + "48 8B 3D 41 84 2F 00 48 8B 07 FF 60 18 CC CC CC" func_141 [ DIFF 0 ] [] - "48 8B 3D 91 61 2F 00 48 8B 07 FF 60 38 CC CC CC" + "48 8B 3D 31 84 2F 00 48 8B 07 FF 60 38 CC CC CC" func_142 [ DIFF 0 ] [] - "48 8B 3D 81 61 2F 00 48 8B 07 FF 60 28 CC CC CC" + "48 8B 3D 21 84 2F 00 48 8B 07 FF 60 28 CC CC CC" func_143 [ DIFF 0 ] [] - "48 8B 3D 71 61 2F 00 48 8B 07 FF 60 70 CC CC CC" + "48 8B 3D 11 84 2F 00 48 8B 07 FF 60 70 CC CC CC" func_144 [ DIFF 0 ] [] - "48 8B 3D 61 61 2F 00 48 8B 07 FF A0 98 00 00 00" + "48 8B 3D 01 84 2F 00 48 8B 07 FF A0 98 00 00 00" func_145 [ DIFF 0 ] [] - "48 8B 3D D9 0D 2F 00 48 8D 15 42 C4 F2 FF 48 8B" + "48 8B 3D 79 30 2F 00 48 8D 15 22 E4 F2 FF 48 8B" func_146 [ DIFF 0 ] [] - "48 8B 15 49 0E 2F 00 31 C0 48 85 D2 74 07 48 8B" + "48 8B 15 E9 30 2F 00 31 C0 48 85 D2 74 07 48 8B" func_147 [ DIFF 0 ] [] - "48 8B 3D 79 EC 2E 00 48 85 FF 74 3C 55 48 8D 35" + "48 8B 3D 79 16 2F 00 48 85 FF 74 3C 55 48 8D 35" func_148 [ DIFF 0 ] [] - "48 8B 3D 69 EA 2E 00 48 85 FF 74 14 48 89 F2 48" + "48 8B 3D 69 14 2F 00 48 85 FF 74 14 48 89 F2 48" func_149 [ DIFF 0 ] [] - "0F B6 05 A9 25 2F 00 C3 CC CC CC CC CC CC CC CC" + "0F B6 05 49 48 2F 00 C3 CC CC CC CC CC CC CC CC" func_150 [ DIFF 0 ] [] - "48 8B 3D D9 E8 2E 00 48 85 FF 74 14 55 48 8D 35" + "48 8B 3D D9 12 2F 00 48 85 FF 74 14 55 48 8D 35" func_151 [ DIFF 0 ] [] - "48 8B 3D A9 E8 2E 00 48 85 FF 74 4C 55 48 89 E5" + "48 8B 3D A9 12 2F 00 48 85 FF 74 4C 55 48 89 E5" func_152 [ DIFF 0 ] [] - "48 8B 3D 49 E8 2E 00 48 85 FF 74 44 55 48 8D 35" + "48 8B 3D 49 12 2F 00 48 85 FF 74 44 55 48 8D 35" func_153 [ DIFF 0 ] [] - "48 8B 3D B9 E7 2E 00 48 85 FF 74 5C 55 48 8D 35" + "48 8B 3D B9 11 2F 00 48 85 FF 74 5C 55 48 8D 35" func_154 [ DIFF 0 ] [] - "48 83 3D 18 E7 2E 00 00 0F 84 D2 00 00 00 48 83" + "48 83 3D 18 11 2F 00 00 0F 84 D2 00 00 00 48 83" func_155 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 C6 05 E0 09" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 C6 05 E0 33" func_156 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 0F B6 05 B2 46 33 00 48 8D" + "55 48 89 E5 41 54 53 0F B6 05 B2 70 33 00 48 8D" func_157 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 0F B6 05 B2 45 33 00 84 C0" + "55 48 89 E5 41 54 53 0F B6 05 F2 6D 33 00 84 C0" func_158 [ DIFF 0 ] [] "48 89 F7 48 89 D6 48 89 CA 4C 89 C1 45 0F B6 C1" func_159 [ DIFF 0 ] [] - "48 8B 3D D1 0C 2F 00 48 85 FF 74 24 55 48 8B 07" + "48 8B 3D 71 2F 2F 00 48 85 FF 74 24 55 48 8B 07" func_160 [ DIFF 0 ] [] - "48 8B 3D 91 0C 2F 00 48 85 FF 74 14 55 48 8B 07" + "48 8B 3D 31 2F 2F 00 48 85 FF 74 14 55 48 8B 07" func_161 [ DIFF 0 ] [] - "55 48 89 E5 53 48 83 EC 08 0F B6 05 E8 09 2F 00" + "55 48 89 E5 53 48 83 EC 08 0F B6 05 28 32 2F 00" func_162 [ DIFF 0 ] [] - "48 8B 3D 61 0C 2F 00 48 85 FF 74 24 55 48 8B 07" + "48 8B 3D 01 2F 2F 00 48 85 FF 74 24 55 48 8B 07" func_163 [ DIFF 0 ] [] - "48 8B 3D 21 0C 2F 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D C1 2E 2F 00 48 85 FF 74 0C 48 8B 07 FF" func_164 [ DIFF 0 ] [] - "48 8B 3D 01 0C 2F 00 48 85 FF 74 14 48 8B 07 40" + "48 8B 3D A1 2E 2F 00 48 85 FF 74 14 48 8B 07 40" func_165 [ DIFF 0 ] [] - "48 8B 3D 29 EC 2E 00 83 FE 01 77 3C 48 85 FF 74" + "48 8B 3D 29 16 2F 00 83 FE 01 77 3C 48 85 FF 74" func_166 [ DIFF 0 ] [] - "48 8B 3D 39 EA 2E 00 48 85 FF 74 4C 55 48 89 E5" + "48 8B 3D 39 14 2F 00 48 85 FF 74 4C 55 48 89 E5" func_167 [ DIFF 0 ] [] - "55 48 89 E5 53 89 F3 48 83 EC 08 E8 60 D1 C3 FF" + "55 48 89 E5 53 89 F3 48 83 EC 08 E8 60 F6 C3 FF" func_168 [ DIFF 0 ] [] - "48 8B 3D C9 EB 2E 00 83 FE 01 77 3C 48 85 FF 74" + "48 8B 3D C9 15 2F 00 83 FE 01 77 3C 48 85 FF 74" func_169 [ DIFF 0 ] [] - "48 8B 3D B9 E9 2E 00 48 85 FF 74 1C 83 FE 01 77" + "48 8B 3D B9 13 2F 00 48 85 FF 74 1C 83 FE 01 77" func_170 [ DIFF 0 ] [] "85 F6 74 0C 31 C0 C3 66 0F 1F 84 00 00 00 00 00" func_171 [ DIFF 0 ] [] "55 31 D2 48 89 E5 41 54 49 89 F4 BE 18 73 01 00" func_172 [ DIFF 0 ] [] - "48 8B 3D E9 E7 2E 00 48 85 FF 74 1C 55 48 8D 35" + "48 8B 3D E9 11 2F 00 48 85 FF 74 1C 55 48 8D 35" func_173 [ DIFF 0 ] [] - "48 8B 3D 49 E7 2E 00 48 85 FF 74 14 40 0F B6 D6" + "48 8B 3D 49 11 2F 00 48 85 FF 74 14 40 0F B6 D6" func_174 [ DIFF 0 ] [] - "48 8B 3D 39 0C 2F 00 48 8B 07 FF 60 40 CC CC CC" + "48 8B 3D E9 2E 2F 00 48 8B 07 FF 60 40 CC CC CC" func_175 [ DIFF 0 ] [] - "48 8B 3D 39 2B 2F 00 55 48 89 E5 48 8B 07 FF 50" + "48 8B 3D D9 4D 2F 00 55 48 89 E5 48 8B 07 FF 50" func_176 [ DIFF 0 ] [] - "F2 0F 10 05 A0 3B BE FF C3 CC CC CC CC CC CC CC" + "F2 0F 10 05 60 5A BE FF C3 CC CC CC CC CC CC CC" func_177 [ DIFF 0 ] [] - "48 8B 05 49 5C 2F 00 48 8D 50 08 48 85 C0 48 0F" + "48 8B 05 E9 7E 2F 00 48 8D 50 08 48 85 C0 48 0F" func_178 [ DIFF 0 ] [] - "48 63 15 39 5E 2F 00 48 89 D0 48 69 D2 67 66 66" + "48 63 15 D9 80 2F 00 48 89 D0 48 69 D2 67 66 66" func_179 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 89 F3 48 83 EC 18" func_180 [ DIFF 0 ] [] @@ -371,17 +371,17 @@ func_182 [ DIFF 0 ] [] func_183 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 89 D5 41 54 49" func_184 [ DIFF 0 ] [] - "C6 05 C9 5F 2E 00 00 C3 CC CC CC CC CC CC CC CC" + "C6 05 89 82 2E 00 00 C3 CC CC CC CC CC CC CC CC" func_185 [ DIFF 0 ] [] - "4C 8B 05 E9 9A 2E 00 4D 85 C0 0F 84 F0 06 00 00" + "4C 8B 05 49 AD 2E 00 4D 85 C0 0F 84 F0 06 00 00" func_186 [ DIFF 0 ] [] - "48 8B 3D 69 EB 2E 00 48 85 FF 0F 84 E0 00 00 00" + "48 8B 3D 69 15 2F 00 48 85 FF 0F 84 E0 00 00 00" func_187 [ DIFF 0 ] [] - "48 8B 3D 89 E9 2E 00 48 85 FF 74 24 83 FE 06 0F" + "48 8B 3D 89 13 2F 00 48 85 FF 74 24 83 FE 06 0F" func_188 [ DIFF 0 ] [] - "48 8B 3D A9 E5 2E 00 48 85 FF 74 54 55 48 8D 35" + "48 8B 3D A9 0F 2F 00 48 85 FF 74 54 55 48 8D 35" func_189 [ DIFF 0 ] [] - "48 8B 3D 69 E2 2E 00 48 85 FF 74 0C E9 CF 3E FF" + "48 8B 3D A9 0A 2F 00 48 85 FF 74 0C E9 4F 6B FF" ============================================= Bases: diff --git a/dump/linux/vtable_diff/engine2/CEngineServer.txt b/dump/linux/vtable_diff/engine2/CEngineServer.txt index 270cc9a..4b9e41f 100644 --- a/dump/linux/vtable_diff/engine2/CEngineServer.txt +++ b/dump/linux/vtable_diff/engine2/CEngineServer.txt @@ -9,9 +9,9 @@ func_1 [ DIFF 0 ] [] func_2 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] - "48 83 3D 90 8A 45 00 00 74 09 80 3D D7 C0 45 00" + "48 83 3D 30 8D 45 00 00 74 09 80 3D 77 C3 45 00" func_4 [ DIFF 0 ] [] - "48 8B 3D 09 22 45 00 48 85 FF 74 34 55 48 89 E5" + "48 8B 3D C9 24 45 00 48 85 FF 74 34 55 48 89 E5" func_5 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] @@ -25,223 +25,223 @@ func_9 [ DIFF 0 ] [] func_10 [ DIFF 0 ] [] "B8 02 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 0 ] [] - "48 8B 15 49 EE 2B 00 B8 01 00 00 00 48 85 D2 74" + "48 8B 15 A9 20 2C 00 B8 01 00 00 00 48 85 D2 74" func_12 [ DIFF 0 ] [] - "48 8B 3D 29 EE 2B 00 48 85 FF 74 24 48 8B 07 48" + "48 8B 3D 89 20 2C 00 48 85 FF 74 24 48 8B 07 48" func_13 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 4C 8D 75 C8 41 55 4C 89" func_14 [ DIFF 0 ] [] "48 89 F7 89 D6 48 89 CA 48 85 C9 74 23 80 39 00" func_15 [ DIFF 0 ] [] - "8B 05 FE E8 2B 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 5E 1B 2C 00 C3 CC CC CC CC CC CC CC CC CC" func_16 [ DIFF 0 ] [] "55 66 0F 6E C1 BF 1C 00 00 00 48 89 E5 41 56 66" func_17 [ DIFF 0 ] [] "48 85 F6 0F 84 D7 00 00 00 55 BF 38 00 00 00 48" func_18 [ DIFF 0 ] [] - "E9 4B 5D E8 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 8B 81 E8 FF CC CC CC CC CC CC CC CC CC CC CC" func_19 [ DIFF 0 ] [] - "55 48 89 E5 41 54 4C 8B 25 33 B9 2B 00 53 BB FF" + "55 48 89 E5 41 54 4C 8B 25 B3 F7 2B 00 53 BB FF" func_20 [ DIFF 0 ] [] - "48 8B 15 09 E0 2B 00 48 8D 05 0D 49 BB FF 48 85" + "48 8B 15 49 12 2C 00 48 8D 05 79 77 BB FF 48 85" func_21 [ DIFF 0 ] [] "89 F0 C1 E0 1F C3 CC CC CC CC CC CC CC CC CC CC" func_22 [ DIFF 0 ] [] - "48 8B 15 A9 DF 2B 00 48 85 D2 74 14 B8 00 00 00" + "48 8B 15 E9 11 2C 00 48 85 D2 74 14 B8 00 00 00" func_23 [ DIFF 0 ] [] - "48 8B 05 69 DF 2B 00 31 D2 48 85 C0 74 0A 85 F6" + "48 8B 05 A9 11 2C 00 31 D2 48 85 C0 74 0A 85 F6" func_24 [ DIFF 0 ] [] - "48 8D 05 71 3B 2F 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 11 5E 2F 00 C3 CC CC CC CC CC CC CC CC" func_25 [ DIFF 0 ] [] - "48 89 F7 89 D6 E9 F6 16 E8 FF 48 8D 35 F7 2B BE" + "48 89 F7 89 D6 E9 B6 52 E8 FF 31 C0 66 0F 7E 8D" func_26 [ DIFF 0 ] [] - "8B 05 42 F5 2B 00 85 C0 7E 16 48 8B 05 2F F5 2B" + "8B 05 82 27 2C 00 85 C0 7E 16 48 8B 05 6F 27 2C" func_27 [ DIFF 0 ] [] - "55 66 0F 6E CA 48 89 E5 41 57 41 56 4C 8D 3D 5D" + "55 66 0F 6E CA 48 89 E5 41 57 41 56 4C 8D 3D 6D" func_28 [ DIFF 0 ] [] - "48 89 F7 0F B6 F2 89 CA E9 83 48 EB FF CC CC CC" + "48 89 F7 0F B6 F2 89 CA E9 03 6E EB FF CC CC CC" func_29 [ DIFF 0 ] [] "55 66 0F EF C0 48 89 F7 48 89 E5 53 48 83 EC 28" func_30 [ DIFF 0 ] [] - "8B 05 F2 2C 2F 00 85 C0 0F 88 DA FF FF FF 48 8B" + "8B 05 A2 4F 2F 00 85 C0 0F 88 DA FF FF FF 48 8B" func_31 [ DIFF 0 ] [] - "55 48 89 E5 41 56 41 55 41 54 4C 8B 25 5F C9 2B" + "55 48 89 E5 41 56 41 55 41 54 4C 8B 25 5F 07 2C" func_32 [ DIFF 0 ] [] - "48 83 3D 48 C7 2B 00 00 B8 01 00 00 00 74 49 55" + "48 83 3D 48 05 2C 00 00 B8 01 00 00 00 74 49 55" func_33 [ DIFF 0 ] [] - "0F B6 05 11 16 2C 00 84 C0 74 0D 0F B6 05 FE 15" + "0F B6 05 11 54 2C 00 84 C0 74 0D 0F B6 05 FE 53" func_34 [ DIFF 0 ] [] - "48 83 3D 18 F1 2B 00 00 75 0D 48 83 3D 16 F1 2B" + "48 83 3D 78 23 2C 00 00 75 0D 48 83 3D 76 23 2C" func_35 [ DIFF 0 ] [] - "55 48 89 E5 53 48 83 EC 08 48 8B 1D 50 ED 2B 00" + "55 48 89 E5 53 48 83 EC 08 48 8B 1D B0 1F 2C 00" func_36 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC" func_37 [ DIFF 0 ] [] - "48 8B 15 79 E5 2B 00 31 C0 48 85 D2 74 37 48 8B" + "48 8B 15 B9 17 2C 00 31 C0 48 85 D2 74 37 48 8B" func_38 [ DIFF 0 ] [] - "48 8B 05 29 EC 2B 00 BA FF FF FF FF 48 85 C0 74" + "48 8B 05 89 1E 2C 00 BA FF FF FF FF 48 85 C0 74" func_39 [ DIFF 0 ] [] - "48 8B 15 69 CB 2B 00 48 8D 05 F4 17 BC FF 48 85" + "48 8B 15 A9 08 2C 00 48 8D 05 55 51 BC FF 48 85" func_40 [ DIFF 0 ] [] - "48 8B 05 E9 E9 2B 00 48 85 C0 74 26 85 F6 78 20" + "48 8B 05 49 1C 2C 00 48 85 C0 74 26 85 F6 78 20" func_41 [ DIFF 0 ] [] - "48 8B 05 59 C1 2B 00 48 85 C0 74 70 85 F6 78 6C" + "48 8B 05 19 0A 2C 00 48 85 C0 74 70 85 F6 78 6C" func_42 [ DIFF 0 ] [] - "48 8B 05 A9 E9 2B 00 BA FF FF FF FF 48 85 C0 74" + "48 8B 05 09 1C 2C 00 BA FF FF FF FF 48 85 C0 74" func_43 [ DIFF 0 ] [] - "48 8B 3D 79 C1 2B 00 48 85 FF 74 0C 40 0F B6 F6" + "48 8B 3D 79 FF 2B 00 48 85 FF 74 0C 40 0F B6 F6" func_44 [ DIFF 0 ] [] - "55 48 8D 15 C8 0C E5 FF 48 89 E5 41 55 41 54 49" + "55 48 8D 15 88 48 E5 FF 48 89 E5 41 55 41 54 49" func_45 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 54 53 48 63 DE 48 81" func_46 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 54 53 48 83 EC 10 4C" func_47 [ DIFF 0 ] [] - "48 8B 05 59 C4 2B 00 48 85 C0 74 44 85 F6 78 30" + "48 8B 05 59 02 2C 00 48 85 C0 74 44 85 F6 78 30" func_48 [ DIFF 0 ] [] - "48 8B 3D 21 DB 2B 00 48 8D 15 92 79 E4 FF 48 8B" + "48 8B 3D 81 0D 2C 00 48 8D 15 52 A9 E4 FF 48 8B" func_49 [ DIFF 0 ] [] - "48 8B 05 79 EC 2B 00 49 89 F1 48 85 C0 74 06 83" + "48 8B 05 D9 1E 2C 00 49 89 F1 48 85 C0 74 06 83" func_50 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 83 EC 08 4C 8B 25" func_51 [ DIFF 0 ] [] - "48 8B 3D B1 AE 2B 00 55 48 8D 15 21 4C E4 FF 48" + "48 8B 3D 31 ED 2B 00 55 48 8D 15 01 88 E4 FF 48" func_52 [ DIFF 0 ] [] - "48 8B 3D 09 BF 2B 00 48 85 FF 74 0C 31 D2 E9 0D" + "48 8B 3D 89 FD 2B 00 48 85 FF 74 0C 31 D2 E9 2D" func_53 [ DIFF 0 ] [] - "48 8B 0D F9 C3 2B 00 48 85 C9 74 54 85 F6 78 08" + "48 8B 0D F9 01 2C 00 48 85 C9 74 54 85 F6 78 08" func_54 [ DIFF 0 ] [] - "80 3D 31 DB 2B 00 01 75 47 55 48 89 E5 53 48 89" + "80 3D 31 19 2C 00 01 75 47 55 48 89 E5 53 48 89" func_55 [ DIFF 0 ] [] - "0F B6 05 41 03 2C 00 C3 CC CC CC CC CC CC CC CC" + "0F B6 05 A1 35 2C 00 C3 CC CC CC CC CC CC CC CC" func_56 [ DIFF 0 ] [] - "48 8B 05 29 E6 2B 00 48 85 C0 74 44 85 F6 78 40" + "48 8B 05 69 18 2C 00 48 85 C0 74 44 85 F6 78 40" func_57 [ DIFF 0 ] [] - "48 8B 05 C9 E5 2B 00 BA FF FF FF FF 48 85 C0 74" + "48 8B 05 09 18 2C 00 BA FF FF FF FF 48 85 C0 74" func_58 [ DIFF 0 ] [] - "48 8B 05 F9 BF 2B 00 48 85 C0 0F 84 A0 00 00 00" + "48 8B 05 79 FE 2B 00 48 85 C0 0F 84 A0 00 00 00" func_59 [ DIFF 0 ] [] - "48 8B 3D 99 EB 2B 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D F9 1D 2C 00 48 85 FF 74 0C 48 8B 07 FF" func_60 [ DIFF 0 ] [] - "48 8B 3D 79 EB 2B 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D D9 1D 2C 00 48 85 FF 74 0C 48 8B 07 FF" func_61 [ DIFF 0 ] [] - "48 8B 3D 59 EB 2B 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D B9 1D 2C 00 48 85 FF 74 0C 48 8B 07 FF" func_62 [ DIFF 0 ] [] - "48 8B 15 99 EA 2B 00 31 C9 48 85 D2 74 37 0F B7" + "48 8B 15 F9 1C 2C 00 31 C9 48 85 D2 74 37 0F B7" func_63 [ DIFF 0 ] [] - "48 8B 3D 79 C4 2B 00 48 85 FF 74 0C E9 6F ED FD" + "48 8B 3D 79 02 2C 00 48 85 FF 74 0C E9 4F 08 FE" func_64 [ DIFF 0 ] [] - "48 8B 3D 39 EB 2B 00 48 85 FF 74 3C 48 8B 07 48" + "48 8B 3D 99 1D 2C 00 48 85 FF 74 3C 48 8B 07 48" func_65 [ DIFF 0 ] [] - "48 8B 3D D9 EA 2B 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D 39 1D 2C 00 48 85 FF 74 0C 48 8B 07 FF" func_66 [ DIFF 0 ] [] - "55 48 89 E5 41 57 41 56 4C 8D 35 A1 5A F9 FF 41" + "55 48 89 E5 41 57 41 56 4C 8D 35 61 97 F9 FF 41" func_67 [ DIFF 0 ] [] - "48 8B 05 B9 EB 2B 00 48 85 C0 74 08 F3 0F 11 80" + "48 8B 05 19 1E 2C 00 48 85 C0 74 08 F3 0F 11 80" func_68 [ DIFF 0 ] [] - "8B 05 EA E6 2B 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 4A 19 2C 00 C3 CC CC CC CC CC CC CC CC CC" func_69 [ DIFF 0 ] [] - "48 8B 05 A9 E4 2B 00 48 85 C0 74 64 85 F6 78 60" + "48 8B 05 E9 16 2C 00 48 85 C0 74 64 85 F6 78 60" func_70 [ DIFF 0 ] [] - "48 89 35 51 16 31 00 C3 CC CC CC CC CC CC CC CC" + "48 89 35 01 4A 31 00 C3 CC CC CC CC CC CC CC CC" func_71 [ DIFF 0 ] [] - "48 8B 05 41 16 31 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 F1 49 31 00 C3 CC CC CC CC CC CC CC CC" func_72 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 81 EC" func_73 [ DIFF 0 ] [] - "40 88 35 F9 08 2C 00 40 84 F6 75 04 C3 0F 1F 00" + "40 88 35 79 47 2C 00 40 84 F6 75 04 C3 0F 1F 00" func_74 [ DIFF 0 ] [] - "48 8B 0D 09 E5 2B 00 89 F2 48 85 C9 0F 94 C0 C1" + "48 8B 0D 49 17 2C 00 89 F2 48 85 C9 0F 94 C0 C1" func_75 [ DIFF 0 ] [] - "48 8B 05 F9 E2 2B 00 48 8D 50 58 48 85 C0 48 0F" + "48 8B 05 39 15 2C 00 48 8D 50 58 48 85 C0 48 0F" func_76 [ DIFF 0 ] [] - "48 8B 05 89 C3 2B 00 48 85 C0 0F 84 90 00 00 00" + "48 8B 05 89 01 2C 00 48 85 C0 0F 84 90 00 00 00" func_77 [ DIFF 0 ] [] - "48 8D 05 49 23 31 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 A9 5E 31 00 C3 CC CC CC CC CC CC CC CC" func_78 [ DIFF 0 ] [] - "48 89 35 69 18 31 00 C3 CC CC CC CC CC CC CC CC" + "48 89 35 29 4A 31 00 C3 CC CC CC CC CC CC CC CC" func_79 [ DIFF 0 ] [] - "48 8B 05 59 18 31 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 19 4A 31 00 C3 CC CC CC CC CC CC CC CC" func_80 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 54 45 31 E4 53 48 8B" func_81 [ DIFF 0 ] [] - "48 8B 05 A9 E3 2B 00 48 85 C0 74 5C 85 F6 78 58" + "48 8B 05 E9 15 2C 00 48 85 C0 74 5C 85 F6 78 58" func_82 [ DIFF 0 ] [] - "48 8B 05 C9 E7 2B 00 48 85 C0 0F 84 88 00 00 00" + "48 8B 05 09 1A 2C 00 48 85 C0 0F 84 88 00 00 00" func_83 [ DIFF 0 ] [] - "48 8B 3D B9 EA 2B 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D 19 1D 2C 00 48 85 FF 74 0C 48 8B 07 FF" func_84 [ DIFF 0 ] [] - "83 3D A1 5C 30 00 01 48 8D 05 A7 5C 30 00 74 08" + "83 3D A1 9A 30 00 01 48 8D 05 A7 9A 30 00 74 08" func_85 [ DIFF 0 ] [] - "31 C0 80 3D C7 2F 2F 00 00 75 06 8B 05 C7 48 34" + "31 C0 80 3D 67 52 2F 00 00 75 06 8B 05 E7 6A 34" func_86 [ DIFF 0 ] [] - "48 8B 05 29 DF 2B 00 48 85 C0 74 44 85 F6 78 40" + "48 8B 05 69 11 2C 00 48 85 C0 74 44 85 F6 78 40" func_87 [ DIFF 0 ] [] - "48 63 C6 89 D6 48 8B 15 D4 E2 2B 00 48 85 D2 74" + "48 63 C6 89 D6 48 8B 15 14 15 2C 00 48 85 D2 74" func_88 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 41 89 F4 53" func_89 [ DIFF 0 ] [] - "48 8B 05 89 E6 2B 00 48 85 C0 74 3C 48 8B B8 B8" + "48 8B 05 C9 18 2C 00 48 85 C0 74 3C 48 8B B8 B8" func_90 [ DIFF 0 ] [] - "48 8B 05 A9 E1 2B 00 48 85 C0 74 4C 31 FF 85 D2" + "48 8B 05 E9 13 2C 00 48 85 C0 74 4C 31 FF 85 D2" func_91 [ DIFF 0 ] [] - "89 F0 89 CE 48 8B 0D 45 E1 2B 00 48 85 C9 0F 84" + "89 F0 89 CE 48 8B 0D 85 13 2C 00 48 85 C9 0F 84" func_92 [ DIFF 0 ] [] - "89 F0 89 CE 48 8B 0D 95 E0 2B 00 48 85 C9 74 78" + "89 F0 89 CE 48 8B 0D D5 12 2C 00 48 85 C9 74 78" func_93 [ DIFF 0 ] [] - "48 8B 3D B9 EC 2B 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D 19 1F 2C 00 48 85 FF 74 0C 48 8B 07 FF" func_94 [ DIFF 0 ] [] - "48 8B 3D 99 EC 2B 00 48 85 FF 74 4C 48 8B 07 48" + "48 8B 3D F9 1E 2C 00 48 85 FF 74 4C 48 8B 07 48" func_95 [ DIFF 0 ] [] - "48 8B 3D C9 B8 2B 00 48 85 FF 74 0C E9 BF A4 FE" + "48 8B 3D 49 F7 2B 00 48 85 FF 74 0C E9 6F C3 FE" func_96 [ DIFF 0 ] [] - "48 8B 05 C9 DE 2B 00 48 85 C0 74 6C 85 F6 78 68" + "48 8B 05 09 11 2C 00 48 85 C0 74 6C 85 F6 78 68" func_97 [ DIFF 0 ] [] "48 89 F0 48 C1 E8 30 3C 0F 0F 86 F2 00 00 00 41" func_98 [ DIFF 0 ] [] - "48 63 C6 48 89 D6 85 C0 78 2E 48 8B 15 CF DC 2B" + "48 63 C6 48 89 D6 85 C0 78 2E 48 8B 15 0F 0F 2C" func_99 [ DIFF 0 ] [] - "85 F6 78 3C 48 8B 05 95 DC 2B 00 39 B0 80 02 00" + "85 F6 78 3C 48 8B 05 D5 0E 2C 00 39 B0 80 02 00" func_100 [ DIFF 0 ] [] - "55 48 89 E5 41 54 4C 8B 25 43 DC 2B 00 53 41 8B" + "55 48 89 E5 41 54 4C 8B 25 83 0E 2C 00 53 41 8B" func_101 [ DIFF 0 ] [] - "85 F6 78 2C 48 8B 05 E5 DB 2B 00 39 B0 80 02 00" + "85 F6 78 2C 48 8B 05 25 0E 2C 00 39 B0 80 02 00" func_102 [ DIFF 0 ] [] - "48 8B 05 F9 DE 2B 00 48 85 C0 74 06 83 78 38 02" + "48 8B 05 39 11 2C 00 48 85 C0 74 06 83 78 38 02" func_103 [ DIFF 0 ] [] - "48 63 C6 89 D6 85 C0 78 2F 48 8B 15 50 DB 2B 00" + "48 63 C6 89 D6 85 C0 78 2F 48 8B 15 90 0D 2C 00" func_104 [ DIFF 0 ] [] - "85 F6 78 2C 48 8B 05 15 DB 2B 00 39 B0 80 02 00" + "85 F6 78 2C 48 8B 05 55 0D 2C 00 39 B0 80 02 00" func_105 [ DIFF 0 ] [] - "55 48 89 E5 41 54 4C 8B 25 D3 DA 2B 00 53 31 DB" + "55 48 89 E5 41 54 4C 8B 25 13 0D 2C 00 53 31 DB" func_106 [ DIFF 0 ] [] - "48 8B 05 C9 C2 2B 00 48 85 C0 74 64 85 F6 78 48" + "48 8B 05 C9 00 2C 00 48 85 C0 74 64 85 F6 78 48" func_107 [ DIFF 0 ] [] - "48 8B 05 49 C2 2B 00 48 85 C0 74 44 85 F6 78 30" + "48 8B 05 49 00 2C 00 48 85 C0 74 44 85 F6 78 30" func_108 [ DIFF 0 ] [] "55 66 0F 6E C9 66 0F 6E C6 48 89 E5 53 66 41 0F" func_109 [ DIFF 0 ] [] - "0F B6 05 89 1B 31 00 C3 CC CC CC CC CC CC CC CC" + "0F B6 05 49 4D 31 00 C3 CC CC CC CC CC CC CC CC" func_110 [ DIFF 0 ] [] - "48 8B 3D A9 B8 2B 00 0F B6 C9 0F B6 D2 E9 5E FD" + "48 8B 3D 29 F7 2B 00 0F B6 C9 0F B6 D2 E9 8E AD" func_111 [ DIFF 0 ] [] - "48 8B 05 69 DA 2B 00 31 D2 48 85 C0 74 3B 48 8B" + "48 8B 05 A9 0C 2C 00 31 D2 48 85 C0 74 3B 48 8B" func_112 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 83 EC 08 48 8B 1D" func_113 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 83 EC 10 48 8B 1D 7E B8" + "55 48 89 E5 41 54 53 48 83 EC 10 48 8B 1D FE F6" func_114 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 83 EC 08 4C 8B 25" func_115 [ DIFF 0 ] [] - "48 8B 05 09 D7 2B 00 48 85 C0 74 34 48 8B 80 08" + "48 8B 05 99 09 2C 00 48 85 C0 74 34 48 8B 80 08" func_116 [ DIFF 0 ] [] - "48 8B 15 19 DA 2B 00 48 8D 05 A4 26 BC FF 48 85" + "48 8B 15 59 0C 2C 00 48 8D 05 05 55 BC FF 48 85" func_117 [ DIFF 0 ] [] - "48 8B 3D 19 D9 2B 00 48 85 FF 74 24 48 8B 07 48" + "48 8B 3D 59 0B 2C 00 48 85 FF 74 24 48 8B 07 48" func_118 [ DIFF 0 ] [] - "48 8B 05 C9 D8 2B 00 31 D2 48 85 C0 74 04 85 F6" + "48 8B 05 09 0B 2C 00 31 D2 48 85 C0 74 04 85 F6" func_119 [ DIFF 0 ] [] - "48 8B 3D D9 D9 2B 00 48 85 FF 74 2C 48 8B 07 48" + "48 8B 3D 19 0C 2C 00 48 85 FF 74 2C 48 8B 07 48" ============================================= Bases: diff --git a/dump/linux/vtable_diff/engine2/CEngineServiceMgr.txt b/dump/linux/vtable_diff/engine2/CEngineServiceMgr.txt index 23f843b..5b399f7 100644 --- a/dump/linux/vtable_diff/engine2/CEngineServiceMgr.txt +++ b/dump/linux/vtable_diff/engine2/CEngineServiceMgr.txt @@ -35,25 +35,25 @@ func_14 [ DIFF 0 ] [] func_15 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 45 89 CE 41 55 41 89 CD" func_16 [ DIFF 0 ] [] - "8B 87 A8 00 00 00 48 8D 15 E5 FD D5 FF 85 C0 78" + "8B 87 A8 00 00 00 48 8D 15 A6 FC D5 FF 85 C0 78" func_17 [ DIFF 0 ] [] "55 48 89 F2 48 89 E5 53 48 89 FB 48 8D B3 10 01" func_18 [ DIFF 0 ] [] - "48 8B 05 D9 C9 45 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 79 CC 45 00 C3 CC CC CC CC CC CC CC CC" func_19 [ DIFF 0 ] [] - "48 8B 05 D1 C9 45 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 71 CC 45 00 C3 CC CC CC CC CC CC CC CC" func_20 [ DIFF 0 ] [] - "48 8B 05 C9 C9 45 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 69 CC 45 00 C3 CC CC CC CC CC CC CC CC" func_21 [ DIFF 0 ] [] - "48 8B 3D 91 94 45 00 48 8B 35 AA C9 45 00 48 8B" + "48 8B 3D 31 97 45 00 48 8B 35 4A CC 45 00 48 8B" func_22 [ DIFF 0 ] [] "55 48 8B 07 48 8D 15 D5 FF FF FF 48 89 E5 48 8B" func_23 [ DIFF 0 ] [] "55 48 8B 07 48 8D 15 95 FF FF FF 48 89 E5 48 8B" func_24 [ DIFF 0 ] [] - "48 8B 3D F1 93 45 00 55 48 89 E5 41 54 49 89 F4" + "48 8B 3D 91 96 45 00 55 48 89 E5 41 54 49 89 F4" func_25 [ DIFF 0 ] [] - "48 8B 3D D9 A5 45 00 48 85 FF 74 0C E9 7F 7F DA" + "48 8B 3D 79 A8 45 00 48 85 FF 74 0C E9 DF 7E DA" func_26 [ DIFF 0 ] [] "48 83 BF C0 00 00 00 00 0F 95 C0 C3 CC CC CC CC" func_27 [ DIFF 0 ] [] @@ -75,7 +75,7 @@ func_34 [ DIFF 0 ] [] func_35 [ DIFF 0 ] [] "8B 87 A8 00 00 00 31 D2 85 C0 78 0F 48 8B 57 38" func_36 [ DIFF 0 ] [] - "48 8B 05 59 32 45 00 48 85 C0 0F 84 E0 00 00 00" + "48 8B 05 19 35 45 00 48 85 C0 0F 84 E0 00 00 00" func_37 [ DIFF 0 ] [] "F3 0F 6F 06 0F 11 87 DC 01 00 00 F3 0F 6F 46 10" func_38 [ DIFF 0 ] [] @@ -83,11 +83,11 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "8B 87 18 02 00 00 C3 CC CC CC CC CC CC CC CC CC" func_40 [ DIFF 0 ] [] - "48 8B 87 20 02 00 00 48 63 F6 48 8D 15 11 53 D5" + "48 8B 87 20 02 00 00 48 63 F6 48 8D 15 F2 51 D5" func_41 [ DIFF 0 ] [] "8B 87 18 02 00 00 85 C0 7E 71 55 48 89 E5 41 56" func_42 [ DIFF 0 ] [] - "48 8B 87 B0 00 00 00 48 8D 15 F4 52 D5 FF 48 85" + "48 8B 87 B0 00 00 00 48 8D 15 D5 51 D5 FF 48 85" func_43 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 48 89 FB 48 8D 7D E8 48 83" func_44 [ DIFF 0 ] [] @@ -103,11 +103,11 @@ func_48 [ DIFF 0 ] [] func_49 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 8B BF 60 02" func_50 [ DIFF 0 ] [] - "55 48 89 E5 41 57 41 56 4C 8D 35 81 AC 45 00 41" + "55 48 89 E5 41 57 41 56 4C 8D 35 21 AF 45 00 41" func_51 [ DIFF 0 ] [] - "48 89 F7 E9 D8 85 DA FF CC CC CC CC CC CC CC CC" + "48 89 F7 E9 38 85 DA FF CC CC CC CC CC CC CC CC" func_52 [ DIFF 0 ] [] - "48 89 F7 48 89 D6 E9 25 78 DA FF CC CC CC CC CC" + "48 89 F7 48 89 D6 E9 85 77 DA FF CC CC CC CC CC" func_53 [ DIFF 0 ] [] "55 48 89 F7 48 89 E5 48 81 EC D0 00 00 00 48 89" func_54 [ DIFF 0 ] [] @@ -115,15 +115,15 @@ func_54 [ DIFF 0 ] [] func_55 [ DIFF 0 ] [] "55 BA 02 00 00 00 48 89 E5 53 48 89 FB 48 83 EC" func_56 [ DIFF 0 ] [] - "55 48 8D 15 E8 F6 FF FF 48 89 E5 41 55 41 54 49" + "55 48 8D 15 D8 F6 FF FF 48 89 E5 41 55 41 54 49" func_57 [ DIFF 0 ] [] - "48 8B 3D 89 C8 45 00 48 85 FF 74 0C 48 8B 07 FF" + "48 8B 3D 29 CB 45 00 48 85 FF 74 0C 48 8B 07 FF" func_58 [ DIFF 0 ] [] - "48 89 F7 89 D6 E9 36 EC 01 00 31 C0 66 0F 7E 8D" + "48 89 F7 89 D6 E9 16 EC 01 00 31 C0 66 0F 7E 8D" func_59 [ DIFF 0 ] [] - "8B 05 F2 CB 45 00 85 C0 7E 16 48 8B 05 DF CB 45" + "8B 05 92 CE 45 00 85 C0 7E 16 48 8B 05 7F CE 45" func_60 [ DIFF 0 ] [] - "55 66 0F 6E CA 48 89 E5 41 57 41 56 4C 8D 3D 2D" + "55 66 0F 6E CA 48 89 E5 41 57 41 56 4C 8D 3D CD" func_61 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 48 89 F3 8B B7 C8 00 00 00" diff --git a/dump/linux/vtable_diff/engine2/CEntityResourceManifest.txt b/dump/linux/vtable_diff/engine2/CEntityResourceManifest.txt index 9c3b8cb..142357d 100644 --- a/dump/linux/vtable_diff/engine2/CEntityResourceManifest.txt +++ b/dump/linux/vtable_diff/engine2/CEntityResourceManifest.txt @@ -13,7 +13,7 @@ func_3 [ DIFF 0 ] [] func_4 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 4C 8D B7 D0 00 00 00 41" func_5 [ DIFF 0 ] [] - "8B 16 55 48 81 C7 D0 00 00 00 48 89 E5 E8 BE 63" + "8B 16 55 48 81 C7 D0 00 00 00 48 89 E5 E8 7E 66" func_6 [ DIFF 1 ] ["CEmptyEntityResourceManifest"] "48 B8 00 00 00 00 C8 00 00 C0 55 48 89 E5 41 54" func_7 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/engine2/CNetworkServerService.txt b/dump/linux/vtable_diff/engine2/CNetworkServerService.txt index 7cc9c82..5542d01 100644 --- a/dump/linux/vtable_diff/engine2/CNetworkServerService.txt +++ b/dump/linux/vtable_diff/engine2/CNetworkServerService.txt @@ -11,7 +11,7 @@ func_2 [ DIFF 0 ] [] func_3 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 89 FB 48 83 EC 18" func_4 [ DIFF 0 ] [] - "55 48 8D 15 C8 DE F4 FF 48 89 E5 53 48 89 FB 48" + "55 48 8D 15 E8 DE F4 FF 48 89 E5 53 48 89 FB 48" func_5 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] @@ -41,13 +41,13 @@ func_17 [ DIFF 0 ] [] func_18 [ DIFF 0 ] [] "48 89 77 28 C3 CC CC CC CC CC CC CC CC CC CC CC" func_19 [ DIFF 0 ] [] - "48 89 F8 48 89 F7 48 89 C6 E9 C2 BE 32 00 CC CC" + "48 89 F8 48 89 F7 48 89 C6 E9 82 C1 32 00 CC CC" func_20 [ DIFF 0 ] [] "0F B7 47 32 C3 CC CC CC CC CC CC CC CC CC CC CC" func_21 [ DIFF 0 ] [] "66 89 77 32 C3 CC CC CC CC CC CC CC CC CC CC CC" func_22 [ DIFF 0 ] [] - "55 48 8D 05 18 F0 38 00 48 89 E5 41 55 41 54 49" + "55 48 8D 05 D8 F2 38 00 48 89 E5 41 55 41 54 49" func_23 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 3F FD FF" func_24 [ DIFF 0 ] [] @@ -83,7 +83,7 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "48 83 BF 60 01 00 00 00 0F 95 C0 C3 CC CC CC CC" func_40 [ DIFF 0 ] [] - "55 48 89 E5 53 48 83 EC 08 48 83 3D 2F 4D 3C 00" + "55 48 89 E5 53 48 83 EC 08 48 83 3D EF 4F 3C 00" func_41 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC" func_42 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/engine2/CServerSideClient.txt b/dump/linux/vtable_diff/engine2/CServerSideClient.txt index 17c9049..4e9e7f7 100644 --- a/dump/linux/vtable_diff/engine2/CServerSideClient.txt +++ b/dump/linux/vtable_diff/engine2/CServerSideClient.txt @@ -5,13 +5,13 @@ Children Count: 1 func_0 [ DIFF 0 ] [] "48 39 77 58 74 0A C3 66 0F 1F 84 00 00 00 00 00" func_1 [ DIFF 1 ] ["CHLTVClient"] - "55 48 8D 05 70 F4 27 00 48 89 E5 41 54 53 48 89" + "55 48 8D 05 E8 13 28 00 48 89 E5 41 54 53 48 89" func_2 [ DIFF 1 ] ["CHLTVClient"] - "55 48 8D 05 F0 E2 27 00 48 89 E5 41 54 53 48 89" + "55 48 8D 05 C8 00 28 00 48 89 E5 41 54 53 48 89" func_3 [ DIFF 1 ] ["CHLTVClient"] "55 45 0F B6 C9 48 89 E5 41 57 41 56 49 89 FE 41" func_4 [ DIFF 1 ] ["CHLTVClient"] - "80 3D 59 F2 2E 00 00 55 48 89 E5 41 54 49 89 F4" + "80 3D 59 07 2F 00 00 55 48 89 E5 41 54 49 89 F4" func_5 [ DIFF 1 ] ["CHLTVClient"] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_6 [ DIFF 0 ] [] @@ -21,17 +21,17 @@ func_7 [ DIFF 1 ] ["CHLTVClient"] func_8 [ DIFF 1 ] ["CHLTVClient"] "8B 47 64 85 C0 75 09 C3 0F 1F 84 00 00 00 00 00" func_9 [ DIFF 1 ] ["CHLTVClient"] - "55 45 31 C0 31 F6 B9 FF FF FF FF 48 8D 15 64 30" + "55 45 31 C0 31 F6 B9 FF FF FF FF 48 8D 15 A7 77" func_10 [ DIFF 0 ] [] "55 48 89 E5 41 55 49 89 D5 41 54 49 89 F4 53 48" func_11 [ DIFF 1 ] ["CHLTVClient"] "55 66 0F 6E C6 48 89 E5 41 54 66 41 0F 7E C4 53" func_12 [ DIFF 1 ] ["CHLTVClient"] - "F3 0F 10 0D 64 5D BA FF 0F 28 D1 F3 0F 5F D0 F3" + "F3 0F 10 0D 04 89 BA FF 0F 28 D1 F3 0F 5F D0 F3" func_13 [ DIFF 0 ] [] "48 8B 7F 58 48 85 FF 74 07 48 8B 07 FF 60 28 90" func_14 [ DIFF 1 ] ["CHLTVClient"] - "55 48 89 E5 41 54 49 89 FC 53 31 DB E8 4F 3C FF" + "55 48 89 E5 41 54 49 89 FC 53 31 DB E8 DF 27 FF" func_15 [ DIFF 1 ] ["CHLTVClient"] "55 48 89 E5 41 57 41 56 4C 8D BD B0 FD FF FF 41" func_16 [ DIFF 1 ] ["CHLTVClient"] @@ -57,7 +57,7 @@ func_25 [ DIFF 0 ] [] func_26 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 48 8B 56 48" func_27 [ DIFF 1 ] ["CHLTVClient"] - "55 48 8D 05 F8 19 2A 00 48 89 E5 41 57 41 56 41" + "55 48 8D 05 98 B4 29 00 48 89 E5 41 57 41 56 41" func_28 [ DIFF 0 ] [] "8B 46 70 83 F8 07 74 58 55 48 89 E5 83 F8 02 7E" func_29 [ DIFF 1 ] ["CHLTVClient"] @@ -77,7 +77,7 @@ func_35 [ DIFF 1 ] ["CHLTVClient"] func_36 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 F4 BE" func_37 [ DIFF 1 ] ["CHLTVClient"] - "48 8B 05 B9 08 2F 00 55 48 89 F2 48 8B 4F 58 48" + "48 8B 05 49 32 2F 00 55 48 89 F2 48 8B 4F 58 48" func_38 [ DIFF 1 ] ["CHLTVClient"] "83 7F 64 06 0F 85 66 01 00 00 55 48 89 E5 41 57" func_39 [ DIFF 1 ] ["CHLTVClient"] @@ -89,17 +89,17 @@ func_41 [ DIFF 1 ] ["CHLTVClient"] func_42 [ DIFF 1 ] ["CHLTVClient"] "48 8B 47 50 48 C7 80 A8 03 00 00 00 00 00 00 B8" func_43 [ DIFF 1 ] ["CHLTVClient"] - "55 48 8D 15 A8 13 02 00 48 89 E5 41 55 41 54 49" + "55 48 8D 15 08 14 02 00 48 89 E5 41 55 41 54 49" func_44 [ DIFF 1 ] ["CHLTVClient"] - "83 7F 64 01 0F 8E B6 00 00 00 55 48 8D 15 3E 15" + "83 7F 64 01 0F 8E B6 00 00 00 55 48 8D 15 9E 15" func_45 [ DIFF 0 ] [] - "55 48 8D 15 A8 31 FC FF 48 89 E5 41 55 41 54 53" + "55 48 8D 15 B8 2E FC FF 48 89 E5 41 55 41 54 53" func_46 [ DIFF 1 ] ["CHLTVClient"] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 FC 53" func_47 [ DIFF 1 ] ["CHLTVClient"] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_48 [ DIFF 1 ] ["CHLTVClient"] - "55 48 8B 46 48 48 89 F9 48 8B 3D A1 F9 2E 00 48" + "55 48 8B 46 48 48 89 F9 48 8B 3D 91 18 2F 00 48" func_49 [ DIFF 0 ] [] "48 85 F6 0F 84 77 0D 00 00 55 48 89 E5 41 56 41" func_50 [ DIFF 1 ] ["CHLTVClient"] @@ -117,11 +117,11 @@ func_55 [ DIFF 0 ] [] func_56 [ DIFF 0 ] [] "48 8D 87 90 01 00 00 C3 CC CC CC CC CC CC CC CC" func_57 [ DIFF 1 ] ["CHLTVClient"] - "55 48 8D 35 81 86 BA FF 31 D2 48 89 E5 53 48 89" + "55 48 8D 35 44 8E BA FF 31 D2 48 89 E5 53 48 89" func_58 [ DIFF 0 ] [] - "55 48 8D 35 72 15 BB FF BA 88 13 00 00 48 89 E5" + "55 48 8D 35 3C 1D BB FF BA 88 13 00 00 48 89 E5" func_59 [ DIFF 1 ] ["CHLTVClient"] - "48 81 C7 20 0E 00 00 BA 01 00 00 00 E9 8F 9B F7" + "48 81 C7 20 0E 00 00 BA 01 00 00 00 E9 FF B1 F7" func_60 [ DIFF 1 ] ["CHLTVClient"] "55 48 89 E5 41 55 41 54 53 48 83 EC 78 4C 8B 67" func_61 [ DIFF 1 ] ["CHLTVClient"] @@ -129,7 +129,7 @@ func_61 [ DIFF 1 ] ["CHLTVClient"] func_62 [ DIFF 1 ] ["CHLTVClient"] "55 48 89 E5 41 56 41 55 41 54 53 48 89 FB 48 83" func_63 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 4C 8D 25 F2 5D BA FF 48 89" + "55 48 89 E5 41 54 53 4C 8D 25 F2 80 BA FF 48 89" func_64 [ DIFF 0 ] [] "48 85 F6 0F 84 FF 00 00 00 55 48 89 E5 41 56 41" func_65 [ DIFF 0 ] [] @@ -137,11 +137,11 @@ func_65 [ DIFF 0 ] [] func_66 [ DIFF 0 ] [] "48 8B 87 90 00 00 00 C3 CC CC CC CC CC CC CC CC" func_67 [ DIFF 0 ] [] - "55 48 89 E5 41 55 41 54 4C 8D 25 61 44 FC FF 53" + "55 48 89 E5 41 55 41 54 4C 8D 25 41 58 FC FF 53" func_68 [ DIFF 1 ] ["CHLTVClient"] - "48 8B 05 49 C1 53 00 48 8D 8F D8 0B 00 00 48 8B" + "48 8B 05 D9 F3 53 00 48 8D 8F D8 0B 00 00 48 8B" func_69 [ DIFF 1 ] ["CHLTVClient"] - "48 89 F8 48 8B 3D 96 09 2F 00 48 89 F2 8B 70 48" + "48 89 F8 48 8B 3D 46 33 2F 00 48 89 F2 8B 70 48" func_70 [ DIFF 1 ] ["CHLTVClient"] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 FC 53" func_71 [ DIFF 1 ] ["CHLTVClient"] @@ -149,15 +149,15 @@ func_71 [ DIFF 1 ] ["CHLTVClient"] func_72 [ DIFF 1 ] ["CHLTVClient"] "8B 87 44 0F 00 00 C3 CC CC CC CC CC CC CC CC CC" func_73 [ DIFF 1 ] ["CHLTVClient"] - "55 48 89 E5 53 48 83 EC 18 48 8B 05 30 81 2A 00" + "55 48 89 E5 53 48 83 EC 18 48 8B 05 E0 44 2A 00" func_74 [ DIFF 1 ] ["CHLTVClient"] - "55 48 89 E5 41 54 4C 8B 25 1B B5 53 00 53 48 89" + "55 48 89 E5 41 54 4C 8B 25 0B 67 53 00 53 48 89" func_75 [ DIFF 1 ] ["CHLTVClient"] - "48 81 C7 88 0F 00 00 E9 A4 FD FF FF CC CC CC CC" + "48 81 C7 88 0F 00 00 E9 24 CB 00 00 CC CC CC CC" func_76 [ DIFF 1 ] ["CHLTVClient"] "55 48 89 E5 41 56 41 55 41 54 53 48 89 FB 48 83" func_77 [ DIFF 1 ] ["CHLTVClient"] - "48 83 7F 58 00 C6 47 62 01 74 05 E9 10 4D BF FF" + "48 83 7F 58 00 C6 47 62 01 74 05 E9 C0 07 BF FF" func_78 [ DIFF 1 ] ["CHLTVClient"] "C6 47 62 00 C3 CC CC CC CC CC CC CC CC CC CC CC" func_79 [ DIFF 1 ] ["CHLTVClient"] diff --git a/dump/linux/vtable_diff/server/CBaseEntity.txt b/dump/linux/vtable_diff/server/CBaseEntity.txt index 730848d..f8e3475 100644 --- a/dump/linux/vtable_diff/server/CBaseEntity.txt +++ b/dump/linux/vtable_diff/server/CBaseEntity.txt @@ -3,33 +3,33 @@ Virtual Function Count: 244 Children Count: 487 ============================================= func_0 [ DIFF 326 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDMStart", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvEntityMaker", "CEnvExplosion", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerStart", "CInfoSpawnGroupLandmark", "CInfoTarget", "CInfoTeleportDestination", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicProximity", "CLogicRelay", "CLogicScript", "CMapInfo", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathTrack", "CPhysBox", "CPhysExplosion", "CPhysImpact", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointProximitySensor", "CPointPush", "CPointServerCommand", "CPointTemplate", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollMagnet", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "48 8B 05 49 23 39 01 48 85 C0 74 04 C3 0F 1F 00" + "48 8B 05 C9 22 39 01 48 85 C0 74 04 C3 0F 1F 00" func_1 [ DIFF 487 ] ["CAI_ChangeHintGroup", "CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDMStart", "CBaseDoor", "CBaseFilter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSGameRulesProxy", "CCSMinimapBoundary", "CCSObserverPawn", "CCSPetPlacement", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnableMotionFixup", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvDecal", "CEnvDetailController", "CEnvEntityIgniter", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFilterAttributeInt", "CFilterClass", "CFilterContext", "CFilterEnemy", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncPropRespawnZone", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTimescale", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameRulesProxy", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHandleDummy", "CHandleTest", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLadderDismount", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLandmark", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoTargetServerOnly", "CInfoTeleportDestination", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAchievement", "CLogicActiveAutosave", "CLogicAuto", "CLogicAutosave", "CLogicBranch", "CLogicBranchList", "CLogicCase", "CLogicCollisionPair", "CLogicCompare", "CLogicDistanceAutosave", "CLogicDistanceCheck", "CLogicEventListener", "CLogicGameEvent", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicPlayerProxy", "CLogicProximity", "CLogicRelay", "CLogicScript", "CLogicalEntity", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysExplosion", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPhysicsWire", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointEntityFinder", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointOrient", "CPointPrefab", "CPointProximitySensor", "CPointPulse", "CPointPush", "CPointServerCommand", "CPointTeleport", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollMagnet", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyEntity", "CServerOnlyModelEntity", "CServerOnlyPointEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundAreaEntityBase", "CSoundAreaEntityOrientedBox", "CSoundAreaEntitySphere", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSoundStackSave", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTeam", "CTestEffect", "CTestPulseIO", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "FilterDamageType", "FilterHealth", "SpawnPoint"] - "48 8D 05 89 4B A2 00 55 48 89 E5 41 54 53 48 89" + "48 8D 05 C9 4B A2 00 55 48 89 E5 41 54 53 48 89" func_2 [ DIFF 487 ] ["CAI_ChangeHintGroup", "CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDMStart", "CBaseDoor", "CBaseFilter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSGameRulesProxy", "CCSMinimapBoundary", "CCSObserverPawn", "CCSPetPlacement", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnableMotionFixup", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvDecal", "CEnvDetailController", "CEnvEntityIgniter", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFilterAttributeInt", "CFilterClass", "CFilterContext", "CFilterEnemy", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncPropRespawnZone", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTimescale", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameRulesProxy", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHandleDummy", "CHandleTest", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLadderDismount", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLandmark", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoTargetServerOnly", "CInfoTeleportDestination", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAchievement", "CLogicActiveAutosave", "CLogicAuto", "CLogicAutosave", "CLogicBranch", "CLogicBranchList", "CLogicCase", "CLogicCollisionPair", "CLogicCompare", "CLogicDistanceAutosave", "CLogicDistanceCheck", "CLogicEventListener", "CLogicGameEvent", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicPlayerProxy", "CLogicProximity", "CLogicRelay", "CLogicScript", "CLogicalEntity", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysExplosion", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPhysicsWire", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointEntityFinder", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointOrient", "CPointPrefab", "CPointProximitySensor", "CPointPulse", "CPointPush", "CPointServerCommand", "CPointTeleport", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollMagnet", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyEntity", "CServerOnlyModelEntity", "CServerOnlyPointEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundAreaEntityBase", "CSoundAreaEntityOrientedBox", "CSoundAreaEntitySphere", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSoundStackSave", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTeam", "CTestEffect", "CTestPulseIO", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "FilterDamageType", "FilterHealth", "SpawnPoint"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 BF FD FF" func_3 [ DIFF 257 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 CF A8 DB" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 8F A8 DB" func_4 [ DIFF 109 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 F8 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 B8 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_5 [ DIFF 293 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCubemapFog", "CEnvDecal", "CEnvEntityIgniter", "CEnvExplosion", "CEnvGlobal", "CEnvLaser", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWindController", "CEnvWindVolume", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoPlayerStart", "CInfoWorldLayer", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessage", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointGiveAmmo", "CPointPulse", "CPointTemplate", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTrainAI", "CTestEffect", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 F4 53" func_6 [ DIFF 256 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 9F C9 5F" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF C9 5F" func_7 [ DIFF 388 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicBranchList", "CLogicCase", "CLogicEventListener", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicScript", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBox", "CPhysExplosion", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysMagnet", "CPhysMotor", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointCamera", "CPointCameraVFOV", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointGiveAmmo", "CPointHurt", "CPointPrefab", "CPointPulse", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "SpawnPoint"] "55 48 89 E5 41 55 41 54 49 89 F4 53 48 89 FB 48" func_8 [ DIFF 0 ] [] "48 8B 07 48 8D 15 46 FE FF FF 48 8B 40 48 48 39" func_9 [ DIFF 112 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 D4 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 94 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_10 [ DIFF 0 ] [] - "C6 05 D4 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 94 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_11 [ DIFF 357 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvDecal", "CEnvEntityMaker", "CEnvExplosion", "CEnvLaser", "CEnvLightProbeVolume", "CEnvParticleGlow", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWindController", "CEnvWindVolume", "CFilterMultiple", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoInstructorHintHostageRescueZone", "CInfoOffscreenPanoramaTexture", "CInfoSpawnGroupLoadUnload", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAuto", "CLogicBranchList", "CLogicCollisionPair", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNavigation", "CLogicPlayerProxy", "CLogicRelay", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CNavLinkAreaEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysExplosion", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntityFinder", "CPointOrient", "CPointProximitySensor", "CPointPush", "CPointTeleport", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetOBBWindEntity", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTrainAI", "CTeam", "CTextureBasedAnimatable", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "55 48 89 E5 41 56 41 55 41 54 41 89 F4 53 48 89" func_12 [ DIFF 312 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvLightProbeVolume", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGenericConstraint", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoOffscreenPanoramaTexture", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicBranch", "CLogicNavigation", "CMapInfo", "CMapSharedEnvironment", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CNavLinkAreaEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBallSocket", "CPhysBox", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointTemplate", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTeam", "CTextureBasedAnimatable", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 FC 48" func_13 [ DIFF 255 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "55 48 89 E5 41 54 41 89 D4 53 48 89 FB E8 5E CB" + "55 48 89 E5 41 54 41 89 D4 53 48 89 FB E8 9E CB" func_14 [ DIFF 1 ] ["CPointPrefab"] "48 8B BF D0 07 00 00 48 85 FF 74 0C E9 9F 33 1D" func_15 [ DIFF 3 ] ["CCSPointScriptEntity", "CPointPrefab", "CWorld"] @@ -45,13 +45,13 @@ func_19 [ DIFF 268 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPointPrefab", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundStackSave", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "55 48 89 E5 41 56 41 55 41 54 49 89 F4 53 48 89" func_21 [ DIFF 10 ] ["CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CTextureBasedAnimatable"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 2F EE 7C" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF ED 7C" func_22 [ DIFF 279 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGenericConstraint", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBallSocket", "CPhysBox", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysLength", "CPhysMagnet", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollConstraint", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundEventPathCornerEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointEntity", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 9F B0 83" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 1F B1 83" func_23 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 49" func_24 [ DIFF 322 ] ["CAI_ChangeHintGroup", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBaseButton", "CBaseCSGrenade", "CBaseDMStart", "CBaseDoor", "CBaseFilter", "CBaseMoveBehavior", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBuyZone", "CC4", "CCSGameRulesProxy", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryViewPosition", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDynamicNavConnectionsVolume", "CEnvBeam", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CFilterAttributeInt", "CFilterClass", "CFilterContext", "CFilterEnemy", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFlashbang", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncElectrifiedVolume", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncRotating", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackTrain", "CGameRulesProxy", "CGenericConstraint", "CHEGrenade", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLandmark", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoTargetServerOnly", "CInfoTeleportDestination", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAchievement", "CLogicActiveAutosave", "CLogicAuto", "CLogicAutosave", "CLogicBranch", "CLogicBranchList", "CLogicCase", "CLogicCollisionPair", "CLogicCompare", "CLogicDistanceAutosave", "CLogicDistanceCheck", "CLogicEventListener", "CLogicGameEvent", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNavigation", "CLogicPlayerProxy", "CLogicProximity", "CLogicRelay", "CLogicScript", "CLogicalEntity", "CMapInfo", "CMapSharedEnvironment", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysExplosion", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointEntity", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointPrefab", "CPointProximitySensor", "CPointPush", "CPointServerCommand", "CPointTeleport", "CPointTemplate", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollMagnet", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyEntity", "CServerOnlyModelEntity", "CServerOnlyPointEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSmokeGrenade", "CSoundStackSave", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTestPulseIO", "CTimerEntity", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "FilterDamageType", "FilterHealth", "SpawnPoint"] - "55 48 89 E5 41 54 53 E8 C4 2D 85 FF 49 89 C4 B8" + "55 48 89 E5 41 54 53 E8 44 2E 85 FF 49 89 C4 B8" func_25 [ DIFF 3 ] ["CBasePlayerController", "CCSPlayerController", "CWorld"] "B8 FF FF FF FF C3 CC CC CC CC CC CC CC CC CC CC" func_26 [ DIFF 0 ] [] @@ -63,7 +63,7 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "40 88 B7 20 03 00 00 C3 CC CC CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 4C 8D 35 23 8D 5B 01 41 55 49" + "55 48 89 E5 41 56 4C 8D 35 A3 8C 5B 01 41 55 49" func_31 [ DIFF 0 ] [] "8B 87 18 03 00 00 D1 E8 83 E0 01 C3 CC CC CC CC" func_32 [ DIFF 0 ] [] @@ -85,11 +85,11 @@ func_39 [ DIFF 0 ] [] func_40 [ DIFF 0 ] [] "48 8B 77 08 48 85 F6 75 07 C3 66 0F 1F 44 00 00" func_41 [ DIFF 487 ] ["CAI_ChangeHintGroup", "CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDMStart", "CBaseDoor", "CBaseFilter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSGameRulesProxy", "CCSMinimapBoundary", "CCSObserverPawn", "CCSPetPlacement", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnableMotionFixup", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvDecal", "CEnvDetailController", "CEnvEntityIgniter", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFilterAttributeInt", "CFilterClass", "CFilterContext", "CFilterEnemy", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncPropRespawnZone", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTimescale", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameRulesProxy", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHandleDummy", "CHandleTest", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLadderDismount", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLandmark", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoTargetServerOnly", "CInfoTeleportDestination", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAchievement", "CLogicActiveAutosave", "CLogicAuto", "CLogicAutosave", "CLogicBranch", "CLogicBranchList", "CLogicCase", "CLogicCollisionPair", "CLogicCompare", "CLogicDistanceAutosave", "CLogicDistanceCheck", "CLogicEventListener", "CLogicGameEvent", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicPlayerProxy", "CLogicProximity", "CLogicRelay", "CLogicScript", "CLogicalEntity", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysExplosion", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPhysicsWire", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointEntityFinder", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointOrient", "CPointPrefab", "CPointProximitySensor", "CPointPulse", "CPointPush", "CPointServerCommand", "CPointTeleport", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollMagnet", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyEntity", "CServerOnlyModelEntity", "CServerOnlyPointEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundAreaEntityBase", "CSoundAreaEntityOrientedBox", "CSoundAreaEntitySphere", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSoundStackSave", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTeam", "CTestEffect", "CTestPulseIO", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "FilterDamageType", "FilterHealth", "SpawnPoint"] - "48 8D 05 09 90 C4 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 49 90 C4 00 C3 CC CC CC CC CC CC CC CC" func_42 [ DIFF 468 ] ["CAI_ChangeHintGroup", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseDMStart", "CBaseDoor", "CBaseFilter", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerWeapon", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBuyZone", "CC4", "CCSGameRulesProxy", "CCSMinimapBoundary", "CCSObserverPawn", "CCSPetPlacement", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnableMotionFixup", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvDecal", "CEnvDetailController", "CEnvEntityIgniter", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFilterAttributeInt", "CFilterClass", "CFilterContext", "CFilterEnemy", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncPropRespawnZone", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTimescale", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameRulesProxy", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHandleDummy", "CHandleTest", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLadderDismount", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLandmark", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoTargetServerOnly", "CInfoTeleportDestination", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAchievement", "CLogicActiveAutosave", "CLogicAuto", "CLogicAutosave", "CLogicBranch", "CLogicBranchList", "CLogicCase", "CLogicCollisionPair", "CLogicCompare", "CLogicDistanceAutosave", "CLogicDistanceCheck", "CLogicEventListener", "CLogicGameEvent", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicPlayerProxy", "CLogicProximity", "CLogicRelay", "CLogicScript", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CMolotovGrenade", "CMolotovProjectile", "CMoverPathNode", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysExplosion", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPhysicsWire", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointEntityFinder", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointOrient", "CPointPrefab", "CPointProximitySensor", "CPointPulse", "CPointPush", "CPointServerCommand", "CPointTeleport", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollMagnet", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundAreaEntityBase", "CSoundAreaEntityOrientedBox", "CSoundAreaEntitySphere", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSoundStackSave", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTeam", "CTestEffect", "CTestPulseIO", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "FilterDamageType", "FilterHealth", "SpawnPoint"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_43 [ DIFF 487 ] ["CAI_ChangeHintGroup", "CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDMStart", "CBaseDoor", "CBaseFilter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSGameRulesProxy", "CCSMinimapBoundary", "CCSObserverPawn", "CCSPetPlacement", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnableMotionFixup", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvDecal", "CEnvDetailController", "CEnvEntityIgniter", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFilterAttributeInt", "CFilterClass", "CFilterContext", "CFilterEnemy", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncPropRespawnZone", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTimescale", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameRulesProxy", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHandleDummy", "CHandleTest", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLadderDismount", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLandmark", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoTargetServerOnly", "CInfoTeleportDestination", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAchievement", "CLogicActiveAutosave", "CLogicAuto", "CLogicAutosave", "CLogicBranch", "CLogicBranchList", "CLogicCase", "CLogicCollisionPair", "CLogicCompare", "CLogicDistanceAutosave", "CLogicDistanceCheck", "CLogicEventListener", "CLogicGameEvent", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicPlayerProxy", "CLogicProximity", "CLogicRelay", "CLogicScript", "CLogicalEntity", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysExplosion", "CPhysFixed", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPhysicsWire", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointEntityFinder", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointOrient", "CPointPrefab", "CPointProximitySensor", "CPointPulse", "CPointPush", "CPointServerCommand", "CPointTeleport", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollMagnet", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyEntity", "CServerOnlyModelEntity", "CServerOnlyPointEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundAreaEntityBase", "CSoundAreaEntityOrientedBox", "CSoundAreaEntitySphere", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSoundStackSave", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTeam", "CTestEffect", "CTestPulseIO", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "FilterDamageType", "FilterHealth", "SpawnPoint"] - "48 8D 3D 89 3B 22 01 E9 24 2F BB 00 CC CC CC CC" + "48 8D 3D 49 3B 22 01 E9 E4 2E BB 00 CC CC CC CC" func_44 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_45 [ DIFF 383 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDMStart", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSGameRulesProxy", "CCSMinimapBoundary", "CCSObserverPawn", "CCSPetPlacement", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvDecal", "CEnvDetailController", "CEnvEntityMaker", "CEnvExplosion", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameRulesProxy", "CGameText", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHandleTest", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLadderDismount", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerStart", "CInfoSpawnGroupLandmark", "CInfoTarget", "CInfoTeleportDestination", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicProximity", "CLogicScript", "CMapInfo", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBox", "CPhysExplosion", "CPhysImpact", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointOrient", "CPointProximitySensor", "CPointPush", "CPointServerCommand", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollMagnet", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundAreaEntityBase", "CSoundAreaEntityOrientedBox", "CSoundAreaEntitySphere", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTeam", "CTextureBasedAnimatable", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] @@ -133,9 +133,9 @@ func_63 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "48 89 F8 48 C7 07 00 00 00 00 C3 CC CC CC CC CC" func_65 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 3D 4C 50 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 BD 4B 50 01 01 C3 CC CC CC CC CC CC CC CC" func_66 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 3D 4C 50 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 BD 4B 50 01 01 C3 CC CC CC CC CC CC CC CC" func_67 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_68 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] @@ -249,7 +249,7 @@ func_121 [ DIFF 0 ] [] func_122 [ DIFF 0 ] [] "0F B6 87 7A 06 00 00 83 E0 01 C3 CC CC CC CC CC" func_123 [ DIFF 17 ] ["CBreakableProp", "CChicken", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CFuncRetakeBarrier", "COrnamentProp", "CPathCorner", "CPathCornerCrash", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CShatterGlassShardPhysics"] - "48 8D 05 69 22 E0 00 48 8D 15 F2 EA C4 FF 48 8B" + "48 8D 05 69 22 E0 00 48 8D 15 72 EB C4 FF 48 8B" func_124 [ DIFF 0 ] [] "48 8B 07 48 8D 0D 26 5C FF FF 48 8B 90 E8 02 00" func_125 [ DIFF 0 ] [] @@ -277,7 +277,7 @@ func_135 [ DIFF 2 ] ["CBaseDMStart", "CMultiSo func_136 [ DIFF 61 ] ["CBaseButton", "CBaseDoor", "CBasePlatTrain", "CBaseToggle", "CBaseTrigger", "CBombTarget", "CBuyZone", "CChangeLevel", "CColorCorrectionVolume", "CDynamicNavConnectionsVolume", "CFogTrigger", "CFootstepControl", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncPlat", "CFuncPlatRot", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrain", "CGunTarget", "CHostageRescueZone", "CHostageRescueZoneShim", "CMomentaryRotButton", "CPathCorner", "CPathCornerCrash", "CPhysicalButton", "CPostProcessingVolume", "CPrecipitation", "CRotButton", "CRotDoor", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave"] "66 0F EF C0 C3 CC CC CC CC CC CC CC CC CC CC CC" func_137 [ DIFF 3 ] ["CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase"] - "55 48 8D 05 B8 85 19 01 66 0F EF C0 66 0F EF DB" + "55 48 8D 05 78 85 19 01 66 0F EF C0 66 0F EF DB" func_138 [ DIFF 0 ] [] "0F B6 87 04 07 00 00 D0 E8 83 E0 01 83 F0 01 C3" func_139 [ DIFF 2 ] ["CFuncTankTrain", "CFuncTrackTrain"] @@ -333,7 +333,7 @@ func_163 [ DIFF 11 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "CMoverPathNode", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] @@ -413,7 +413,7 @@ func_203 [ DIFF 255 ] ["CAI_ExpresserHost", "CBasePlayerPawn", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase"] "55 48 89 E5 53 48 89 FB 48 83 EC 38 80 BF DC 05" func_205 [ DIFF 2 ] ["CBaseMoveBehavior", "CFuncMover"] - "55 48 89 E5 48 83 EC 10 E8 43 A1 85 FF 66 0F D6" + "55 48 89 E5 48 83 EC 10 E8 C3 A1 85 FF 66 0F D6" func_206 [ DIFF 0 ] [] "8B 8F DC 06 00 00 83 F9 FF 74 45 48 8B 35 EE 7A" func_207 [ DIFF 0 ] [] @@ -489,7 +489,7 @@ func_241 [ DIFF 0 ] [] func_242 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_243 [ DIFF 1 ] ["CPulseGameBlackboard"] - "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 DD" + "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 5D" ============================================= Bases: diff --git a/dump/linux/vtable_diff/server/CBaseModelEntity.txt b/dump/linux/vtable_diff/server/CBaseModelEntity.txt index f1c3a2e..a431337 100644 --- a/dump/linux/vtable_diff/server/CBaseModelEntity.txt +++ b/dump/linux/vtable_diff/server/CBaseModelEntity.txt @@ -3,17 +3,17 @@ Virtual Function Count: 272 Children Count: 254 ============================================= func_0 [ DIFF 160 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseTrigger", "CBombTarget", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnvParticleGlow", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFootstepControl", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CParticleSystem", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "48 8B 05 F9 BE 38 01 48 85 C0 74 04 C3 0F 1F 00" + "48 8B 05 79 BE 38 01 48 85 C0 74 04 C3 0F 1F 00" func_1 [ DIFF 254 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "55 48 8D 05 C0 03 BA 00 48 89 E5 41 56 41 55 41" + "55 48 8D 05 00 04 BA 00 48 89 E5 41 56 41 55 41" func_2 [ DIFF 254 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 FF FC FF" func_3 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 BF 0B 9F" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 3F 0C 9F" func_4 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 F8 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 B8 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_5 [ DIFF 221 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGamePlayerEquip", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointClientUIDialog", "CPointCommentaryNode", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "E9 7B 5E A3 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 FB 5E A3 FF CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 11 ] ["CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CHostage", "CHostageAlias_info_hostage_spawn", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CSimpleMarkupVolumeTagged", "CWorld"] "E9 4B 83 20 00 CC CC CC CC CC CC CC CC CC CC CC" func_7 [ DIFF 246 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] @@ -21,9 +21,9 @@ func_7 [ DIFF 246 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 D4 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 94 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_10 [ DIFF 0 ] [] - "C6 05 D4 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 94 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_11 [ DIFF 198 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnvBeam", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncConveyor", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncWater", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotDoor", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 53" func_12 [ DIFF 189 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnvBeam", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFootstepControl", "CFuncElectrifiedVolume", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncRetakeBarrier", "CFuncTankTrain", "CFuncTrackTrain", "CFuncWater", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotDoor", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] @@ -37,7 +37,7 @@ func_15 [ DIFF 1 ] ["CWorld"] func_16 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_17 [ DIFF 32 ] ["CAI_ExpresserHost", "CBasePlayerPawn", "CBaseProp", "CBreakableProp", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CChicken", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncRetakeBarrier", "CFuncTankTrain", "CFuncTrackTrain", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "COrnamentProp", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptTriggerPush", "CShatterGlassShardPhysics", "CTriggerPush"] - "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 DE 3A" + "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 5E 3B" func_18 [ DIFF 178 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnvBeam", "CEnvExplosion", "CEnvLaser", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFootstepControl", "CFuncBrush", "CFuncElectrifiedVolume", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncRetakeBarrier", "CFuncRotating", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackTrain", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COrnamentProp", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRotButton", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "55 48 89 E5 41 57 41 89 CF 41 56 41 55 41 54 53" func_19 [ DIFF 6 ] ["CAI_ExpresserHost", "CBasePlayerPawn", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CShatterGlassShardPhysics"] @@ -45,13 +45,13 @@ func_19 [ DIFF 6 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "55 48 89 E5 41 56 41 55 41 54 49 89 F4 53 48 89" func_21 [ DIFF 4 ] ["CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CTextureBasedAnimatable"] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 2F EE 7C" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF ED 7C" func_22 [ DIFF 91 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CCommentaryViewPosition", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CEconEntity", "CEconWearable", "CFlashbang", "CFlashbangProjectile", "CFuncElectrifiedVolume", "CFuncTrain", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRotDoor", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTriggerPhysics", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 40 E8 BD" func_23 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 49" func_24 [ DIFF 169 ] ["CAI_ExpresserHost", "CAK47", "CBaseButton", "CBaseCSGrenade", "CBaseDoor", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseTrigger", "CBeam", "CBombTarget", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CDEagle", "CDecoyGrenade", "CDynamicNavConnectionsVolume", "CEnvBeam", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CFlashbang", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncElectrifiedVolume", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncRotating", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackTrain", "CHEGrenade", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CModelPointEntity", "CMolotovGrenade", "CMomentaryRotButton", "CParticleSystem", "CPhysBox", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CScriptItem", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSmokeGrenade", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "55 48 89 E5 41 54 53 E8 C4 2D 85 FF 49 89 C4 B8" + "55 48 89 E5 41 54 53 E8 44 2E 85 FF 49 89 C4 B8" func_25 [ DIFF 1 ] ["CWorld"] "B8 FF FF FF FF C3 CC CC CC CC CC CC CC CC CC CC" func_26 [ DIFF 0 ] [] @@ -63,7 +63,7 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "40 88 B7 20 03 00 00 C3 CC CC CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 4C 8D 35 23 8D 5B 01 41 55 49" + "55 48 89 E5 41 56 4C 8D 35 A3 8C 5B 01 41 55 49" func_31 [ DIFF 0 ] [] "8B 87 18 03 00 00 D1 E8 83 E0 01 C3 CC CC CC CC" func_32 [ DIFF 0 ] [] @@ -85,11 +85,11 @@ func_39 [ DIFF 0 ] [] func_40 [ DIFF 0 ] [] "48 8B 77 08 48 85 F6 75 07 C3 66 0F 1F 44 00 00" func_41 [ DIFF 254 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "48 8D 05 F9 65 DE 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 39 66 DE 00 C3 CC CC CC CC CC CC CC CC" func_42 [ DIFF 240 ] ["CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseDoor", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerWeapon", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_43 [ DIFF 254 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "48 8D 3D F9 2D 22 01 E9 34 2F BB 00 CC CC CC CC" + "48 8D 3D B9 2D 22 01 E9 F4 2E BB 00 CC CC CC CC" func_44 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_45 [ DIFF 221 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncWater", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CScriptItem", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] @@ -133,9 +133,9 @@ func_63 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "48 89 F8 48 C7 07 00 00 00 00 C3 CC CC CC CC CC" func_65 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 3D 4C 50 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 BD 4B 50 01 01 C3 CC CC CC CC CC CC CC CC" func_66 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 3D 4C 50 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 BD 4B 50 01 01 C3 CC CC CC CC CC CC CC CC" func_67 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_68 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] @@ -249,7 +249,7 @@ func_121 [ DIFF 0 ] [] func_122 [ DIFF 0 ] [] "0F B6 87 7A 06 00 00 83 E0 01 C3 CC CC CC CC CC" func_123 [ DIFF 15 ] ["CBreakableProp", "CChicken", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CFuncRetakeBarrier", "COrnamentProp", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CShatterGlassShardPhysics"] - "48 8D 05 69 22 E0 00 48 8D 15 F2 EA C4 FF 48 8B" + "48 8D 05 69 22 E0 00 48 8D 15 72 EB C4 FF 48 8B" func_124 [ DIFF 0 ] [] "48 8B 07 48 8D 0D 26 5C FF FF 48 8B 90 E8 02 00" func_125 [ DIFF 0 ] [] @@ -277,7 +277,7 @@ func_135 [ DIFF 0 ] [] func_136 [ DIFF 59 ] ["CBaseButton", "CBaseDoor", "CBasePlatTrain", "CBaseToggle", "CBaseTrigger", "CBombTarget", "CBuyZone", "CChangeLevel", "CColorCorrectionVolume", "CDynamicNavConnectionsVolume", "CFogTrigger", "CFootstepControl", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncPlat", "CFuncPlatRot", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrain", "CGunTarget", "CHostageRescueZone", "CHostageRescueZoneShim", "CMomentaryRotButton", "CPhysicalButton", "CPostProcessingVolume", "CPrecipitation", "CRotButton", "CRotDoor", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave"] "66 0F EF C0 C3 CC CC CC CC CC CC CC CC CC CC CC" func_137 [ DIFF 3 ] ["CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase"] - "55 48 8D 05 B8 85 19 01 66 0F EF C0 66 0F EF DB" + "55 48 8D 05 78 85 19 01 66 0F EF C0 66 0F EF DB" func_138 [ DIFF 0 ] [] "0F B6 87 04 07 00 00 D0 E8 83 E0 01 83 F0 01 C3" func_139 [ DIFF 2 ] ["CFuncTankTrain", "CFuncTrackTrain"] @@ -333,7 +333,7 @@ func_163 [ DIFF 9 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] @@ -413,7 +413,7 @@ func_203 [ DIFF 0 ] [] func_204 [ DIFF 5 ] ["CAI_ExpresserHost", "CBasePlayerPawn", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase"] "55 48 89 E5 53 48 89 FB 48 83 EC 38 80 BF DC 05" func_205 [ DIFF 1 ] ["CFuncMover"] - "55 48 89 E5 48 83 EC 10 E8 43 A1 85 FF 66 0F D6" + "55 48 89 E5 48 83 EC 10 E8 C3 A1 85 FF 66 0F D6" func_206 [ DIFF 0 ] [] "8B 8F DC 06 00 00 83 F9 FF 74 45 48 8B 35 EE 7A" func_207 [ DIFF 0 ] [] @@ -489,7 +489,7 @@ func_241 [ DIFF 0 ] [] func_242 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_243 [ DIFF 0 ] [] - "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 DD" + "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 5D" func_244 [ DIFF 5 ] ["CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CShatterGlassShardPhysics"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_245 [ DIFF 107 ] ["CAI_ExpresserHost", "CAI_ExpresserHost", "CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] @@ -541,7 +541,7 @@ func_267 [ DIFF 0 ] [] func_268 [ DIFF 0 ] [] "55 48 89 E5 41 54 41 89 F4 53 48 89 FB F6 87 7B" func_269 [ DIFF 0 ] [] - "BE 00 00 00 08 E9 86 49 A2 FF CC CC CC CC CC CC" + "BE 00 00 00 08 E9 06 4A A2 FF CC CC CC CC CC CC" func_270 [ DIFF 0 ] [] "B8 FF FF FF FF C3 CC CC CC CC CC CC CC CC CC CC" func_271 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CCSGameRules.txt b/dump/linux/vtable_diff/server/CCSGameRules.txt index 74a8f26..713ec07 100644 --- a/dump/linux/vtable_diff/server/CCSGameRules.txt +++ b/dump/linux/vtable_diff/server/CCSGameRules.txt @@ -3,11 +3,11 @@ Virtual Function Count: 129 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "48 8D 3D 99 C7 FC 00 E9 D4 A4 93 00 CC CC CC CC" + "48 8D 3D 59 C7 FC 00 E9 94 A4 93 00 CC CC CC CC" func_1 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] - "48 8D 05 99 45 1A 01 48 8D B7 C0 00 00 00 48 8B" + "48 8D 05 19 45 1A 01 48 8D B7 C0 00 00 00 48 8B" func_3 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_4 [ DIFF 0 ] [] @@ -27,27 +27,27 @@ func_10 [ DIFF 0 ] [] func_11 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_12 [ DIFF 0 ] [] - "48 8D 05 79 45 1A 01 48 8D B7 C0 00 00 00 48 8B" + "48 8D 05 F9 44 1A 01 48 8D B7 C0 00 00 00 48 8B" func_13 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_14 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_15 [ DIFF 0 ] [] - "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 3E BB" + "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 BE BA" func_16 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_17 [ DIFF 0 ] [] - "55 48 8D 3D 35 C4 8F FF 48 8D 05 E9 84 95 FF 48" + "55 48 8D 3D 40 C4 8F FF 48 8D 05 F9 84 95 FF 48" func_18 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_19 [ DIFF 0 ] [] - "55 48 8D 05 78 37 DD 00 48 89 E5 41 55 41 54 53" + "55 48 8D 05 B8 37 DD 00 48 89 E5 41 55 41 54 53" func_20 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 1F FB FF" func_21 [ DIFF 0 ] [] "E9 BB F2 F4 FF CC CC CC CC CC CC CC CC CC CC CC" func_22 [ DIFF 0 ] [] - "48 81 C7 28 11 00 00 E9 A4 24 08 00 CC CC CC CC" + "48 81 C7 28 11 00 00 E9 24 24 08 00 CC CC CC CC" func_23 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 49 89 F6 41 55 41 54 53" func_24 [ DIFF 0 ] [] @@ -63,13 +63,13 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "81 E6 00 80 04 00 0F 95 C0 C3 CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 41 55 4C 8D 35 B4 EF 90 FF 41" + "55 48 89 E5 41 56 41 55 4C 8D 35 BF EF 90 FF 41" func_31 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 0F C1 46" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 8F C0 46" func_32 [ DIFF 0 ] [] "B8 5A 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_33 [ DIFF 0 ] [] - "48 8D 05 B9 06 16 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 39 06 16 01 C3 CC CC CC CC CC CC CC CC" func_34 [ DIFF 0 ] [] "F3 0F 10 05 64 7F 8B FF C3 CC CC CC CC CC CC CC" func_35 [ DIFF 0 ] [] @@ -77,7 +77,7 @@ func_35 [ DIFF 0 ] [] func_36 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_37 [ DIFF 0 ] [] - "E9 BB F7 FF FF CC 48 8D 3D 9F 8A 8E FF E8 AE D4" + "E9 BB F7 FF FF CC 48 8D 3D AA 8A 8E FF E8 AE D4" func_38 [ DIFF 0 ] [] "8B 87 0C 01 00 00 83 E8 04 83 F8 01 0F 97 C0 C3" func_39 [ DIFF 0 ] [] @@ -103,17 +103,17 @@ func_48 [ DIFF 0 ] [] func_49 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_50 [ DIFF 0 ] [] - "55 48 8D 05 E0 BC 8D FF 48 8D 35 81 11 F5 00 48" + "55 48 8D 05 70 BD 8D FF 48 8D 35 C1 11 F5 00 48" func_51 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_52 [ DIFF 0 ] [] "55 48 8D 15 F8 AD FF FF 48 89 E5 53 89 F3 48 83" func_53 [ DIFF 0 ] [] - "48 8D 05 F9 37 1B 01 8B 00 C3 CC CC CC CC CC CC" + "48 8D 05 79 37 1B 01 8B 00 C3 CC CC CC CC CC CC" func_54 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_55 [ DIFF 0 ] [] - "48 8D 05 D9 F8 1A 01 66 0F 6E C6 66 0F 6F 0D 3D" + "48 8D 05 59 F8 1A 01 66 0F 6E C6 66 0F 6F 0D 3D" func_56 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_57 [ DIFF 0 ] [] @@ -147,13 +147,13 @@ func_70 [ DIFF 0 ] [] func_71 [ DIFF 0 ] [] "31 C0 F6 86 43 06 00 00 40 0F 95 C0 83 C0 03 C3" func_72 [ DIFF 0 ] [] - "48 8D 05 91 F7 B4 00 F3 0F 10 05 D1 A8 3D FF 48" + "48 8D 05 D1 F7 B4 00 F3 0F 10 05 51 A9 3D FF 48" func_73 [ DIFF 0 ] [] - "55 48 89 F7 48 89 E5 48 83 EC 20 E8 70 A4 72 FF" + "55 48 89 F7 48 89 E5 48 83 EC 20 E8 F0 A4 72 FF" func_74 [ DIFF 0 ] [] - "55 48 89 F7 48 89 E5 48 83 EC 20 E8 B0 94 72 FF" + "55 48 89 F7 48 89 E5 48 83 EC 20 E8 30 95 72 FF" func_75 [ DIFF 0 ] [] - "55 48 89 E5 41 54 45 31 E4 53 E8 A1 6A 3C 00 90" + "55 48 89 E5 41 54 45 31 E4 53 E8 21 6A 3C 00 90" func_76 [ DIFF 0 ] [] "48 85 F6 0F 84 A7 00 00 00 55 48 89 E5 41 55 41" func_77 [ DIFF 0 ] [] @@ -171,9 +171,9 @@ func_82 [ DIFF 0 ] [] func_83 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_84 [ DIFF 0 ] [] - "55 48 89 E5 41 57 41 56 4C 8D 3D 09 10 DC 00 41" + "55 48 89 E5 41 57 41 56 4C 8D 3D C9 0F DC 00 41" func_85 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 7F 62 46" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 FF 61 46" func_86 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_87 [ DIFF 0 ] [] @@ -183,21 +183,21 @@ func_88 [ DIFF 0 ] [] func_89 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_90 [ DIFF 0 ] [] - "55 48 8D 35 F0 D1 38 FF 48 89 E5 53 48 89 D3 48" + "55 48 8D 35 70 D2 38 FF 48 89 E5 53 48 89 D3 48" func_91 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_92 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_93 [ DIFF 0 ] [] - "55 48 8D 3D D8 93 15 01 BE FF FF FF FF 48 89 E5" + "55 48 8D 3D 58 93 15 01 BE FF FF FF FF 48 89 E5" func_94 [ DIFF 0 ] [] - "55 48 89 E5 41 56 41 55 4C 8D 2D D9 F2 15 01 41" + "55 48 89 E5 41 56 41 55 4C 8D 2D 59 F2 15 01 41" func_95 [ DIFF 0 ] [] "55 48 89 E5 53 89 F3 48 83 EC 08 48 8D 05 9E 01" func_96 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_97 [ DIFF 0 ] [] - "48 89 F7 48 85 F6 74 18 48 8D 15 61 73 97 00 31" + "48 89 F7 48 85 F6 74 18 48 8D 15 A1 73 97 00 31" func_98 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_99 [ DIFF 0 ] [] @@ -207,7 +207,7 @@ func_100 [ DIFF 0 ] [] func_101 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 4C 8D 6D D8 53 48 89 FB" func_102 [ DIFF 0 ] [] - "55 48 89 E5 41 57 41 56 4C 8D 3D 40 C3 8E FF 41" + "55 48 89 E5 41 57 41 56 4C 8D 3D 4B C3 8E FF 41" func_103 [ DIFF 0 ] [] "40 38 B7 BC 00 00 00 0F 84 03 03 00 00 55 66 0F" func_104 [ DIFF 0 ] [] @@ -219,7 +219,7 @@ func_106 [ DIFF 0 ] [] func_107 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 18 48 8B 07 48" func_108 [ DIFF 0 ] [] - "55 48 8B 0D E0 66 BB 00 48 89 E5 41 54 53 48 8B" + "55 48 8B 0D 20 67 BB 00 48 89 E5 41 54 53 48 8B" func_109 [ DIFF 0 ] [] "89 F0 85 D2 75 06 03 87 B4 00 00 00 C3 CC CC CC" func_110 [ DIFF 0 ] [] @@ -243,7 +243,7 @@ func_118 [ DIFF 0 ] [] func_119 [ DIFF 0 ] [] "0F B6 87 00 01 00 00 C3 CC CC CC CC CC CC CC CC" func_120 [ DIFF 0 ] [] - "55 48 89 E5 41 55 41 54 4C 8D 25 41 DD 14 01 53" + "55 48 89 E5 41 55 41 54 4C 8D 25 C1 DC 14 01 53" func_121 [ DIFF 0 ] [] "55 BE FF FF FF FF 48 89 E5 41 57 41 56 41 55 41" func_122 [ DIFF 0 ] [] @@ -251,13 +251,13 @@ func_122 [ DIFF 0 ] [] func_123 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC" func_124 [ DIFF 0 ] [] - "55 BE FF FF FF FF 48 89 E5 41 54 4C 8D 25 FE 71" + "55 BE FF FF FF FF 48 89 E5 41 54 4C 8D 25 7E 71" func_125 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 49 89 F4 53 48 89 FB 48" func_126 [ DIFF 0 ] [] - "80 3D 19 6D 15 01 00 74 07 C3 66 0F 1F 44 00 00" + "80 3D 99 6C 15 01 00 74 07 C3 66 0F 1F 44 00 00" func_127 [ DIFF 0 ] [] - "55 48 8D 3D 58 AD 11 01 48 89 E5 41 57 41 56 41" + "55 48 8D 3D 98 AC 11 01 48 89 E5 41 57 41 56 41" func_128 [ DIFF 0 ] [] "55 31 C0 48 89 E5 41 57 41 56 41 55 41 54 41 89" diff --git a/dump/linux/vtable_diff/server/CCSPlayerController.txt b/dump/linux/vtable_diff/server/CCSPlayerController.txt index e37c870..490cd34 100644 --- a/dump/linux/vtable_diff/server/CCSPlayerController.txt +++ b/dump/linux/vtable_diff/server/CCSPlayerController.txt @@ -5,31 +5,31 @@ Children Count: 0 func_0 [ DIFF 0 ] [] "48 8B 05 B9 D4 F6 00 48 85 C0 74 04 C3 0F 1F 00" func_1 [ DIFF 0 ] [] - "55 48 8D 05 E0 8C D2 00 48 89 E5 41 54 53 4C 8B" + "55 48 8D 05 20 8D D2 00 48 89 E5 41 54 53 4C 8B" func_2 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5F FE FF" func_3 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 EF 0A 9F" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 0B 9F" func_4 [ DIFF 0 ] [] - "55 31 F6 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DD" + "55 31 F6 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5D" func_5 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 49 89 F4 53" func_6 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 9F C9 5F" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF C9 5F" func_7 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 49 89 F4 53 48 89 FB 48" func_8 [ DIFF 0 ] [] "48 8B 07 48 8D 15 46 FE FF FF 48 8B 40 48 48 39" func_9 [ DIFF 0 ] [] - "C6 05 D4 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 94 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_10 [ DIFF 0 ] [] - "C6 05 D4 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 94 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_11 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 89 F5 41 54 53 48 89 FB 48" func_12 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 7F D8 0C" func_13 [ DIFF 0 ] [] - "55 48 89 E5 41 54 41 89 D4 53 48 89 FB E8 5E CB" + "55 48 89 E5 41 54 41 89 D4 53 48 89 FB E8 9E CB" func_14 [ DIFF 0 ] [] "48 8B BF D0 07 00 00 48 85 FF 74 0C E9 9F 33 1D" func_15 [ DIFF 0 ] [] @@ -45,7 +45,7 @@ func_19 [ DIFF 0 ] [] func_20 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 54 49 89 F4 53 48 89" func_21 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 2F EE 7C" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF ED 7C" func_22 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 48 89 FB E8 C1 B8 17 00 48" func_23 [ DIFF 0 ] [] @@ -63,7 +63,7 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "40 88 B7 20 03 00 00 C3 CC CC CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 4C 8D 35 23 8D 5B 01 41 55 49" + "55 48 89 E5 41 56 4C 8D 35 A3 8C 5B 01 41 55 49" func_31 [ DIFF 0 ] [] "8B 87 18 03 00 00 D1 E8 83 E0 01 C3 CC CC CC CC" func_32 [ DIFF 0 ] [] @@ -85,11 +85,11 @@ func_39 [ DIFF 0 ] [] func_40 [ DIFF 0 ] [] "48 8B 77 08 48 85 F6 75 07 C3 66 0F 1F 44 00 00" func_41 [ DIFF 0 ] [] - "48 8D 05 99 2A E9 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 D9 2A E9 00 C3 CC CC CC CC CC CC CC CC" func_42 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 54 53 48 89 FB 48 83" func_43 [ DIFF 0 ] [] - "48 8D 3D C9 0E E9 00 E9 84 C3 7E 00 CC CC CC CC" + "48 8D 3D 09 0F E9 00 E9 C4 C3 7E 00 CC CC CC CC" func_44 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_45 [ DIFF 0 ] [] @@ -133,9 +133,9 @@ func_63 [ DIFF 0 ] [] func_64 [ DIFF 0 ] [] "48 89 F8 48 C7 07 00 00 00 00 C3 CC CC CC CC CC" func_65 [ DIFF 0 ] [] - "C6 05 3D 4C 50 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 BD 4B 50 01 01 C3 CC CC CC CC CC CC CC CC" func_66 [ DIFF 0 ] [] - "C6 05 3D 4C 50 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 BD 4B 50 01 01 C3 CC CC CC CC CC CC CC CC" func_67 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_68 [ DIFF 0 ] [] @@ -199,7 +199,7 @@ func_96 [ DIFF 0 ] [] func_97 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_98 [ DIFF 0 ] [] - "BE 04 00 00 00 E9 06 00 A1 FF CC CC CC CC CC CC" + "BE 04 00 00 00 E9 86 00 A1 FF CC CC CC CC CC CC" func_99 [ DIFF 0 ] [] "B8 04 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_100 [ DIFF 0 ] [] @@ -249,7 +249,7 @@ func_121 [ DIFF 0 ] [] func_122 [ DIFF 0 ] [] "0F B6 87 7A 06 00 00 83 E0 01 C3 CC CC CC CC CC" func_123 [ DIFF 0 ] [] - "48 8D 05 69 22 E0 00 48 8D 15 F2 EA C4 FF 48 8B" + "48 8D 05 69 22 E0 00 48 8D 15 72 EB C4 FF 48 8B" func_124 [ DIFF 0 ] [] "48 8B 07 48 8D 0D 26 5C FF FF 48 8B 90 E8 02 00" func_125 [ DIFF 0 ] [] @@ -277,7 +277,7 @@ func_135 [ DIFF 0 ] [] func_136 [ DIFF 0 ] [] "66 0F EF C0 C3 CC CC CC CC CC CC CC CC CC CC CC" func_137 [ DIFF 0 ] [] - "55 48 8D 05 B8 85 19 01 66 0F EF C0 66 0F EF DB" + "55 48 8D 05 78 85 19 01 66 0F EF C0 66 0F EF DB" func_138 [ DIFF 0 ] [] "0F B6 87 04 07 00 00 D0 E8 83 E0 01 83 F0 01 C3" func_139 [ DIFF 0 ] [] @@ -333,7 +333,7 @@ func_163 [ DIFF 0 ] [] func_164 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_165 [ DIFF 0 ] [] - "F3 0F 10 86 98 00 00 00 0F 2F 05 69 51 3B FF 77" + "F3 0F 10 86 98 00 00 00 0F 2F 05 E9 51 3B FF 77" func_166 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_167 [ DIFF 0 ] [] @@ -413,7 +413,7 @@ func_203 [ DIFF 0 ] [] func_204 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 38 80 BF DC 05" func_205 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 10 E8 43 A1 85 FF 66 0F D6" + "55 48 89 E5 48 83 EC 10 E8 C3 A1 85 FF 66 0F D6" func_206 [ DIFF 0 ] [] "8B 8F DC 06 00 00 83 F9 FF 74 45 48 8B 35 EE 7A" func_207 [ DIFF 0 ] [] @@ -489,7 +489,7 @@ func_241 [ DIFF 0 ] [] func_242 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_243 [ DIFF 0 ] [] - "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 DD" + "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 5D" func_244 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_245 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CCSPlayer_ItemServices.txt b/dump/linux/vtable_diff/server/CCSPlayer_ItemServices.txt index 4d2fdff..972bcf5 100644 --- a/dump/linux/vtable_diff/server/CCSPlayer_ItemServices.txt +++ b/dump/linux/vtable_diff/server/CCSPlayer_ItemServices.txt @@ -3,13 +3,13 @@ Virtual Function Count: 24 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "48 8D 3D 99 07 E9 00 E9 54 C3 7E 00 CC CC CC CC" + "48 8D 3D D9 07 E9 00 E9 94 C3 7E 00 CC CC CC CC" func_1 [ DIFF 0 ] [] - "48 8D 05 09 0E E9 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 49 0E E9 00 C3 CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] - "48 8D 05 99 AD D4 00 48 89 07 E9 D1 F3 1D 00 CC" + "48 8D 05 D9 AD D4 00 48 89 07 E9 D1 F3 1D 00 CC" func_3 [ DIFF 0 ] [] - "55 48 8D 05 88 AD D4 00 48 89 E5 53 48 89 FB 48" + "55 48 8D 05 C8 AD D4 00 48 89 E5 53 48 89 FB 48" func_4 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_5 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CCSPlayer_MovementServices.txt b/dump/linux/vtable_diff/server/CCSPlayer_MovementServices.txt index 6c2d3f5..a750bd9 100644 --- a/dump/linux/vtable_diff/server/CCSPlayer_MovementServices.txt +++ b/dump/linux/vtable_diff/server/CCSPlayer_MovementServices.txt @@ -3,13 +3,13 @@ Virtual Function Count: 55 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "48 8D 3D F9 12 E6 00 E9 B4 95 7B 00 CC CC CC CC" + "48 8D 3D 39 13 E6 00 E9 F4 95 7B 00 CC CC CC CC" func_1 [ DIFF 0 ] [] - "48 8D 05 D9 35 E6 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 19 36 E6 00 C3 CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] - "55 48 8D 05 A8 E0 CE 00 48 89 E5 41 54 53 4C 8B" + "55 48 8D 05 E8 E0 CE 00 48 89 E5 41 54 53 4C 8B" func_3 [ DIFF 0 ] [] - "55 48 8D 05 28 E0 CE 00 48 89 E5 41 55 41 54 53" + "55 48 8D 05 68 E0 CE 00 48 89 E5 41 55 41 54 53" func_4 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_5 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CCSPlayer_WeaponServices.txt b/dump/linux/vtable_diff/server/CCSPlayer_WeaponServices.txt index 71d3597..14be4b0 100644 --- a/dump/linux/vtable_diff/server/CCSPlayer_WeaponServices.txt +++ b/dump/linux/vtable_diff/server/CCSPlayer_WeaponServices.txt @@ -3,11 +3,11 @@ Virtual Function Count: 39 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "48 8D 3D A9 95 E2 00 E9 24 E4 77 00 CC CC CC CC" + "48 8D 3D E9 95 E2 00 E9 64 E4 77 00 CC CC CC CC" func_1 [ DIFF 0 ] [] - "48 8D 05 D9 A1 E2 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 19 A2 E2 00 C3 CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] - "55 48 8D 05 00 E9 CA 00 F3 0F 7E 05 70 F7 CA 00" + "55 48 8D 05 40 E9 CA 00 F3 0F 7E 05 B0 F7 CA 00" func_3 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 5F FD FF" func_4 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CCSWeaponBase.txt b/dump/linux/vtable_diff/server/CCSWeaponBase.txt index 961f8ed..2d0a12d 100644 --- a/dump/linux/vtable_diff/server/CCSWeaponBase.txt +++ b/dump/linux/vtable_diff/server/CCSWeaponBase.txt @@ -3,31 +3,31 @@ Virtual Function Count: 458 Children Count: 48 ============================================= func_0 [ DIFF 0 ] [] - "48 8B 05 79 CD 38 01 48 85 C0 74 04 C3 0F 1F 00" + "48 8B 05 F9 CC 38 01 48 85 C0 74 04 C3 0F 1F 00" func_1 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "55 48 8D 05 88 26 D8 00 48 89 E5 53 48 89 FB 48" + "55 48 8D 05 C8 26 D8 00 48 89 E5 53 48 89 FB 48" func_2 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF FE FF" func_3 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 89 FB E8 91 0B 9F FF 48" + "55 48 89 E5 41 54 53 48 89 FB E8 11 0C 9F FF 48" func_4 [ DIFF 0 ] [] - "55 48 8D 15 68 70 82 FF 48 89 E5 41 56 41 55 49" + "55 48 8D 15 E8 70 82 FF 48 89 E5 41 56 41 55 49" func_5 [ DIFF 11 ] ["CBaseCSGrenade", "CC4", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponElite", "CWeaponTaser"] "55 48 89 E5 41 57 49 BF BF B9 6B 28 FF FF FF FF" func_6 [ DIFF 0 ] [] "E9 4B 83 20 00 CC CC CC CC CC CC CC CC CC CC CC" func_7 [ DIFF 36 ] ["CAK47", "CC4", "CCSWeaponBaseGun", "CDEagle", "CKnife", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer"] - "55 48 89 E5 41 56 41 55 4C 8D 2D 2F A0 7F FF 41" + "55 48 89 E5 41 56 41 55 4C 8D 2D BA A0 7F FF 41" func_8 [ DIFF 0 ] [] "48 8B 07 48 8D 15 46 FE FF FF 48 8B 40 48 48 39" func_9 [ DIFF 0 ] [] - "E9 2B 52 80 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 6B 52 80 00 CC CC CC CC CC CC CC CC CC CC CC" func_10 [ DIFF 0 ] [] - "C6 05 D4 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 94 4F 85 00 01 C3 CC CC CC CC CC CC CC CC" func_11 [ DIFF 3 ] ["CC4", "CItem_Healthshot", "CWeaponBaseItem"] "55 48 89 E5 41 56 41 55 41 54 53 48 89 FB 48 83" func_12 [ DIFF 0 ] [] - "E9 1B 30 58 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 5B 30 58 00 CC CC CC CC CC CC CC CC CC CC CC" func_13 [ DIFF 0 ] [] "E9 5B 81 20 00 CC CC CC CC CC CC CC CC CC CC CC" func_14 [ DIFF 0 ] [] @@ -37,7 +37,7 @@ func_15 [ DIFF 0 ] [] func_16 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_17 [ DIFF 0 ] [] - "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 DE 3A" + "55 48 89 E5 41 54 49 89 F4 53 48 89 FB E8 5E 3B" func_18 [ DIFF 0 ] [] "55 48 89 E5 41 57 49 89 FF 41 56 41 55 4C 8D 2D" func_19 [ DIFF 0 ] [] @@ -45,7 +45,7 @@ func_19 [ DIFF 0 ] [] func_20 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 48 89 FB E8 11 1E 1C 00 C6" func_21 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 2F EE 7C" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF ED 7C" func_22 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 53 48 89 FB 48 83 EC 08" func_23 [ DIFF 0 ] [] @@ -63,7 +63,7 @@ func_28 [ DIFF 0 ] [] func_29 [ DIFF 0 ] [] "40 88 B7 20 03 00 00 C3 CC CC CC CC CC CC CC CC" func_30 [ DIFF 0 ] [] - "55 48 89 E5 41 56 4C 8D 35 23 8D 5B 01 41 55 49" + "55 48 89 E5 41 56 4C 8D 35 A3 8C 5B 01 41 55 49" func_31 [ DIFF 0 ] [] "8B 87 18 03 00 00 D1 E8 83 E0 01 C3 CC CC CC CC" func_32 [ DIFF 0 ] [] @@ -85,11 +85,11 @@ func_39 [ DIFF 0 ] [] func_40 [ DIFF 0 ] [] "48 8B 77 08 48 85 F6 75 07 C3 66 0F 1F 44 00 00" func_41 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "48 8D 05 C9 67 EF 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 09 68 EF 00 C3 CC CC CC CC CC CC CC CC" func_42 [ DIFF 11 ] ["CBaseCSGrenade", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponElite", "CWeaponTaser"] "E9 AB 7C 12 00 CC CC CC CC CC CC CC CC CC CC CC" func_43 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "48 8D 3D 99 3C EF 00 E9 94 42 85 00 0F 1F 40 00" + "48 8D 3D D9 3C EF 00 E9 D4 42 85 00 0F 1F 40 00" func_44 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_45 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] @@ -135,11 +135,11 @@ func_64 [ DIFF 0 ] [] func_65 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_66 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 40 E8 AD" + "55 48 89 E5 41 54 53 48 89 FB 48 83 EC 40 E8 2D" func_67 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_68 [ DIFF 0 ] [] - "55 48 89 E5 E8 37 87 7D 00 5D 0F B6 80 A8 05 00" + "55 48 89 E5 E8 B7 86 7D 00 5D 0F B6 80 A8 05 00" func_69 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_70 [ DIFF 0 ] [] @@ -249,7 +249,7 @@ func_121 [ DIFF 0 ] [] func_122 [ DIFF 0 ] [] "0F B6 87 7A 06 00 00 83 E0 01 C3 CC CC CC CC CC" func_123 [ DIFF 0 ] [] - "48 8D 05 69 22 E0 00 48 8D 15 F2 EA C4 FF 48 8B" + "48 8D 05 69 22 E0 00 48 8D 15 72 EB C4 FF 48 8B" func_124 [ DIFF 0 ] [] "48 8B 07 48 8D 0D 26 5C FF FF 48 8B 90 E8 02 00" func_125 [ DIFF 0 ] [] @@ -277,7 +277,7 @@ func_135 [ DIFF 0 ] [] func_136 [ DIFF 0 ] [] "66 0F EF C0 C3 CC CC CC CC CC CC CC CC CC CC CC" func_137 [ DIFF 0 ] [] - "55 48 8D 05 B8 85 19 01 66 0F EF C0 66 0F EF DB" + "55 48 8D 05 78 85 19 01 66 0F EF C0 66 0F EF DB" func_138 [ DIFF 0 ] [] "0F B6 87 04 07 00 00 D0 E8 83 E0 01 83 F0 01 C3" func_139 [ DIFF 0 ] [] @@ -333,7 +333,7 @@ func_163 [ DIFF 0 ] [] func_164 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_165 [ DIFF 0 ] [] - "F3 0F 10 86 98 00 00 00 0F 2F 05 69 51 3B FF 77" + "F3 0F 10 86 98 00 00 00 0F 2F 05 E9 51 3B FF 77" func_166 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_167 [ DIFF 0 ] [] @@ -387,11 +387,11 @@ func_190 [ DIFF 0 ] [] func_191 [ DIFF 0 ] [] "55 48 89 E5 48 83 EC 20 E8 23 1F 1D 00 F3 0F 7E" func_192 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 20 E8 63 D5 B4 FF F3 0F 7E" + "55 48 89 E5 48 83 EC 20 E8 E3 D5 B4 FF F3 0F 7E" func_193 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 20 E8 83 D5 B4 FF F3 0F 7E" + "55 48 89 E5 48 83 EC 20 E8 03 D6 B4 FF F3 0F 7E" func_194 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 20 E8 C3 D5 B4 FF F3 0F 7E" + "55 48 89 E5 48 83 EC 20 E8 43 D6 B4 FF F3 0F 7E" func_195 [ DIFF 0 ] [] "48 8B 07 FF A0 F8 05 00 00 CC CC CC CC CC CC CC" func_196 [ DIFF 0 ] [] @@ -413,7 +413,7 @@ func_203 [ DIFF 0 ] [] func_204 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 38 80 BF DC 05" func_205 [ DIFF 0 ] [] - "55 48 89 E5 48 83 EC 10 E8 43 A1 85 FF 66 0F D6" + "55 48 89 E5 48 83 EC 10 E8 C3 A1 85 FF 66 0F D6" func_206 [ DIFF 0 ] [] "8B 8F DC 06 00 00 83 F9 FF 74 45 48 8B 35 EE 7A" func_207 [ DIFF 0 ] [] @@ -461,7 +461,7 @@ func_227 [ DIFF 0 ] [] func_228 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_229 [ DIFF 0 ] [] - "48 8D 05 65 ED 80 FF C3 CC CC CC CC CC CC CC CC" + "48 8D 05 E5 ED 80 FF C3 CC CC CC CC CC CC CC CC" func_230 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_231 [ DIFF 0 ] [] @@ -489,7 +489,7 @@ func_241 [ DIFF 0 ] [] func_242 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_243 [ DIFF 0 ] [] - "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 DD" + "55 BF B8 01 00 00 48 89 E5 53 48 83 EC 08 E8 5D" func_244 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_245 [ DIFF 0 ] [] @@ -541,7 +541,7 @@ func_267 [ DIFF 0 ] [] func_268 [ DIFF 0 ] [] "55 48 89 E5 41 54 41 89 F4 53 48 89 FB F6 87 7B" func_269 [ DIFF 0 ] [] - "BE 00 00 00 08 E9 86 49 A2 FF CC CC CC CC CC CC" + "BE 00 00 00 08 E9 06 4A A2 FF CC CC CC CC CC CC" func_270 [ DIFF 0 ] [] "B8 FF FF FF FF C3 CC CC CC CC CC CC CC CC CC CC" func_271 [ DIFF 0 ] [] @@ -555,7 +555,7 @@ func_274 [ DIFF 0 ] [] func_275 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_276 [ DIFF 0 ] [] - "48 89 F8 48 89 F7 48 89 C6 E9 82 FB BB FF CC CC" + "48 89 F8 48 89 F7 48 89 C6 E9 02 FC BB FF CC CC" func_277 [ DIFF 0 ] [] "48 89 F8 C3 CC CC CC CC CC CC CC CC CC CC CC CC" func_278 [ DIFF 0 ] [] @@ -571,7 +571,7 @@ func_282 [ DIFF 0 ] [] func_283 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_284 [ DIFF 0 ] [] - "55 BF 20 00 00 00 48 89 E5 E8 62 97 7C FF 48 8D" + "55 BF 20 00 00 00 48 89 E5 E8 E2 97 7C FF 48 8D" func_285 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 89 F7 48 83 EC 08 E8" func_286 [ DIFF 0 ] [] @@ -613,7 +613,7 @@ func_303 [ DIFF 0 ] [] func_304 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_305 [ DIFF 0 ] [] - "55 48 89 E5 E8 37 87 7D 00 5D 48 89 C7 E9 BE E2" + "55 48 89 E5 E8 B7 86 7D 00 5D 48 89 C7 E9 3E E2" func_306 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_307 [ DIFF 0 ] [] @@ -713,7 +713,7 @@ func_353 [ DIFF 7 ] ["CBaseCSGrenade", "CDecoy func_354 [ DIFF 0 ] [] "55 48 8D 0D 88 FB FF FF 48 89 E5 53 48 89 FB 48" func_355 [ DIFF 0 ] [] - "48 8B 87 00 06 00 00 48 8D 15 00 28 EC FF 48 8B" + "48 8B 87 00 06 00 00 48 8D 15 0B 28 EC FF 48 8B" func_356 [ DIFF 0 ] [] "48 8B 87 00 06 00 00 48 85 C0 74 2B F6 80 4F 04" func_357 [ DIFF 0 ] [] @@ -725,7 +725,7 @@ func_359 [ DIFF 0 ] [] func_360 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 8B 06 83 F8" func_361 [ DIFF 41 ] ["CAK47", "CBaseCSGrenade", "CCSWeaponBaseGun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer"] - "48 8B 07 55 48 8D 15 55 1F 98 FF 48 89 E5 48 8B" + "48 8B 07 55 48 8D 15 D5 1F 98 FF 48 89 E5 48 8B" func_362 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 89 FB" func_363 [ DIFF 0 ] [] @@ -745,7 +745,7 @@ func_369 [ DIFF 0 ] [] func_370 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_371 [ DIFF 0 ] [] - "55 48 8B 07 48 8D 15 F5 1E 98 FF 48 89 E5 48 8B" + "55 48 8B 07 48 8D 15 75 1F 98 FF 48 89 E5 48 8B" func_372 [ DIFF 0 ] [] "55 48 89 E5 41 55 41 54 41 89 F4 53 48 89 FB 48" func_373 [ DIFF 0 ] [] @@ -827,9 +827,9 @@ func_410 [ DIFF 0 ] [] func_411 [ DIFF 0 ] [] "48 8B 87 00 06 00 00 0F B6 80 F0 07 00 00 C3 CC" func_412 [ DIFF 0 ] [] - "48 8B 97 00 06 00 00 48 8D 0D 60 33 86 FF 48 63" + "48 8B 97 00 06 00 00 48 8D 0D EB 33 86 FF 48 63" func_413 [ DIFF 0 ] [] - "48 8B 97 00 06 00 00 48 8D 0D 60 34 86 FF 48 63" + "48 8B 97 00 06 00 00 48 8D 0D EB 34 86 FF 48 63" func_414 [ DIFF 0 ] [] "48 8B 87 00 06 00 00 F3 0F 10 80 58 08 00 00 C3" func_415 [ DIFF 0 ] [] @@ -839,13 +839,13 @@ func_416 [ DIFF 0 ] [] func_417 [ DIFF 1 ] ["CWeaponTaser"] "48 8B 87 00 06 00 00 8B 80 40 04 00 00 C3 CC CC" func_418 [ DIFF 0 ] [] - "F3 0F 10 05 24 F1 7F FF C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 A4 F1 7F FF C3 CC CC CC CC CC CC CC" func_419 [ DIFF 0 ] [] "83 FE 01 74 1B 83 FE 02 74 06 31 C0 C3 0F 1F 00" func_420 [ DIFF 0 ] [] "83 FE 01 74 3B 83 FE 02 74 1E 66 0F EF C0 85 F6" func_421 [ DIFF 0 ] [] - "55 48 89 E5 E8 07 2B 59 00 48 89 C7 E8 4F 32 5F" + "55 48 89 E5 E8 07 2B 59 00 48 89 C7 E8 8F 32 5F" func_422 [ DIFF 0 ] [] "48 8B 87 00 06 00 00 8B 80 D4 07 00 00 C3 CC CC" func_423 [ DIFF 33 ] ["CAK47", "CCSWeaponBaseGun", "CDEagle", "CWeaponAWP", "CWeaponAug", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer"] diff --git a/dump/linux/vtable_diff/server/CGameEntitySystem.txt b/dump/linux/vtable_diff/server/CGameEntitySystem.txt index cbe9cfb..1711e79 100644 --- a/dump/linux/vtable_diff/server/CGameEntitySystem.txt +++ b/dump/linux/vtable_diff/server/CGameEntitySystem.txt @@ -23,13 +23,13 @@ func_8 [ DIFF 0 ] [] func_9 [ DIFF 0 ] [] "40 38 72 58 74 5A 55 48 89 E5 41 57 41 56 41 55" func_10 [ DIFF 0 ] [] - "55 48 8D 05 68 9E BA 00 48 89 E5 41 56 49 89 FE" + "55 48 8D 05 A8 9E BA 00 48 89 E5 41 56 49 89 FE" func_11 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F FE FF" func_12 [ DIFF 0 ] [] - "89 F7 E9 99 83 D5 FF CC CC CC CC CC CC CC CC CC" + "89 F7 E9 19 84 D5 FF CC CC CC CC CC CC CC CC CC" func_13 [ DIFF 0 ] [] - "E9 6B D4 75 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 AB D4 75 00 CC CC CC CC CC CC CC CC CC CC CC" func_14 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC" func_15 [ DIFF 0 ] [] @@ -39,7 +39,7 @@ func_16 [ DIFF 0 ] [] func_17 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 49 89 FD 41 54 49 89 F4" func_18 [ DIFF 0 ] [] - "48 8D 05 89 91 E5 00 48 8B 38 E9 31 67 A7 FF CC" + "48 8D 05 89 91 E5 00 48 8B 38 E9 B1 67 A7 FF CC" func_19 [ DIFF 0 ] [] "48 63 C6 55 48 8D 0C 40 48 89 E5 41 57 48 C1 E1" func_20 [ DIFF 0 ] [] @@ -51,7 +51,7 @@ func_22 [ DIFF 0 ] [] func_23 [ DIFF 0 ] [] "55 48 89 E5 41 55 49 89 FD 41 54 49 89 D4 53 89" func_24 [ DIFF 0 ] [] - "55 48 89 E5 41 54 49 89 D4 53 89 F3 E8 0F 8A 74" + "55 48 89 E5 41 54 49 89 D4 53 89 F3 E8 4F 8A 74" ============================================= Bases: diff --git a/dump/linux/vtable_diff/server/CGameEvent.txt b/dump/linux/vtable_diff/server/CGameEvent.txt index c882086..4bb3224 100644 --- a/dump/linux/vtable_diff/server/CGameEvent.txt +++ b/dump/linux/vtable_diff/server/CGameEvent.txt @@ -3,11 +3,11 @@ Virtual Function Count: 35 Children Count: 23 ============================================= func_0 [ DIFF 23 ] ["CAvatarOverrideMgr", "CBaseDoor", "CCSChickenManager", "CCSFatDemoRecorder", "CCSGOSteamWorksGameStatsServer", "CCSGameStats", "CCSHLTVDirector", "CCSPlayerController", "CCSPointPulseSystem", "CChicken", "CColorCorrectionSystem", "CEnvWindControllerSystem", "CFishPool", "CHLTVDirector", "CLogicEventListener", "CLogicGameEventListener", "CPostProcessingVolume", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRotDoor", "CSmokeGrenadeProjectile", "CSteamWorksGameStatsServer", "CSteamWorksGameStatsUploader"] - "55 48 8D 05 F0 7E BF 00 48 89 E5 53 48 89 FB 48" + "55 48 8D 05 30 7F BF 00 48 89 E5 53 48 89 FB 48" func_1 [ DIFF 23 ] ["CAvatarOverrideMgr", "CBaseDoor", "CCSChickenManager", "CCSFatDemoRecorder", "CCSGOSteamWorksGameStatsServer", "CCSGameStats", "CCSHLTVDirector", "CCSPlayerController", "CCSPointPulseSystem", "CChicken", "CColorCorrectionSystem", "CEnvWindControllerSystem", "CFishPool", "CHLTVDirector", "CLogicEventListener", "CLogicGameEventListener", "CPostProcessingVolume", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRotDoor", "CSmokeGrenadeProjectile", "CSteamWorksGameStatsServer", "CSteamWorksGameStatsUploader"] - "55 48 8D 05 C0 7E BF 00 48 89 E5 53 48 89 FB 48" + "55 48 8D 05 00 7F BF 00 48 89 E5 53 48 89 FB 48" func_2 [ DIFF 23 ] ["CAvatarOverrideMgr", "CBaseDoor", "CCSChickenManager", "CCSFatDemoRecorder", "CCSGOSteamWorksGameStatsServer", "CCSGameStats", "CCSHLTVDirector", "CCSPlayerController", "CCSPointPulseSystem", "CChicken", "CColorCorrectionSystem", "CEnvWindControllerSystem", "CFishPool", "CHLTVDirector", "CLogicEventListener", "CLogicGameEventListener", "CPostProcessingVolume", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRotDoor", "CSmokeGrenadeProjectile", "CSteamWorksGameStatsServer", "CSteamWorksGameStatsUploader"] - "F6 47 17 40 75 1A 48 8D 05 91 4D 66 FF F7 47 14" + "F6 47 17 40 75 1A 48 8D 05 1C 4E 66 FF F7 47 14" func_3 [ DIFF 23 ] ["CAvatarOverrideMgr", "CBaseDoor", "CCSChickenManager", "CCSFatDemoRecorder", "CCSGOSteamWorksGameStatsServer", "CCSGameStats", "CCSHLTVDirector", "CCSPlayerController", "CCSPointPulseSystem", "CChicken", "CColorCorrectionSystem", "CEnvWindControllerSystem", "CFishPool", "CHLTVDirector", "CLogicEventListener", "CLogicGameEventListener", "CPostProcessingVolume", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRotDoor", "CSmokeGrenadeProjectile", "CSteamWorksGameStatsServer", "CSteamWorksGameStatsUploader"] "48 8B 47 08 8B 40 0C C3 CC CC CC CC CC CC CC CC" func_4 [ DIFF 23 ] ["CAvatarOverrideMgr", "CBaseDoor", "CCSChickenManager", "CCSFatDemoRecorder", "CCSGOSteamWorksGameStatsServer", "CCSGameStats", "CCSHLTVDirector", "CCSPlayerController", "CCSPointPulseSystem", "CChicken", "CColorCorrectionSystem", "CEnvWindControllerSystem", "CFishPool", "CHLTVDirector", "CLogicEventListener", "CLogicGameEventListener", "CPostProcessingVolume", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRotDoor", "CSmokeGrenadeProjectile", "CSteamWorksGameStatsServer", "CSteamWorksGameStatsUploader"] diff --git a/dump/linux/vtable_diff/server/CGameEventManager.txt b/dump/linux/vtable_diff/server/CGameEventManager.txt index 39e5caf..010a116 100644 --- a/dump/linux/vtable_diff/server/CGameEventManager.txt +++ b/dump/linux/vtable_diff/server/CGameEventManager.txt @@ -3,7 +3,7 @@ Virtual Function Count: 17 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "55 48 8D 05 A8 4E BB 00 48 89 E5 41 57 41 56 41" + "55 48 8D 05 E8 4E BB 00 48 89 E5 41 57 41 56 41" func_1 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 3F FB FF" func_2 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CLoadingSpawnGroup.txt b/dump/linux/vtable_diff/server/CLoadingSpawnGroup.txt index 92c6599..21122fe 100644 --- a/dump/linux/vtable_diff/server/CLoadingSpawnGroup.txt +++ b/dump/linux/vtable_diff/server/CLoadingSpawnGroup.txt @@ -15,13 +15,13 @@ func_4 [ DIFF 0 ] [] func_5 [ DIFF 0 ] [] "48 8B BF 58 12 00 00 48 85 FF 74 14 55 48 89 E5" func_6 [ DIFF 0 ] [] - "48 8B 87 58 12 00 00 48 8D 15 F0 8F 66 FF 48 85" + "48 8B 87 58 12 00 00 48 8D 15 7B 90 66 FF 48 85" func_7 [ DIFF 0 ] [] - "48 8B 87 60 12 00 00 48 8D 15 D0 8F 66 FF 48 85" + "48 8B 87 60 12 00 00 48 8D 15 5B 90 66 FF 48 85" func_8 [ DIFF 0 ] [] "48 8D 47 28 C3 CC CC CC CC CC CC CC CC CC CC CC" func_9 [ DIFF 0 ] [] - "55 48 8D 05 28 81 5C FF 48 89 E5 41 57 4C 8D 7D" + "55 48 8D 05 A8 81 5C FF 48 89 E5 41 57 4C 8D 7D" func_10 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 49 89 FD 41 54 53" func_11 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CLoopModeGame.txt b/dump/linux/vtable_diff/server/CLoopModeGame.txt index d935bcf..66d699d 100644 --- a/dump/linux/vtable_diff/server/CLoopModeGame.txt +++ b/dump/linux/vtable_diff/server/CLoopModeGame.txt @@ -15,7 +15,7 @@ func_4 [ DIFF 0 ] [] func_5 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] - "55 48 8D 3D 94 F5 63 FF 48 8D 05 91 C1 6B FF 48" + "55 48 8D 3D 14 F6 63 FF 48 8D 05 21 C2 6B FF 48" func_7 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_8 [ DIFF 0 ] [] @@ -35,7 +35,7 @@ func_14 [ DIFF 0 ] [] func_15 [ DIFF 0 ] [] "55 48 89 E5 41 56 41 55 41 54 49 89 D4 53 80 7F" func_16 [ DIFF 0 ] [] - "55 48 8D 05 98 D3 BE 00 48 89 E5 41 57 41 56 41" + "55 48 8D 05 D8 D3 BE 00 48 89 E5 41 57 41 56 41" func_17 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 7F FB FF" diff --git a/dump/linux/vtable_diff/server/CRecipientFilter.txt b/dump/linux/vtable_diff/server/CRecipientFilter.txt index 40cfa98..a108f5a 100644 --- a/dump/linux/vtable_diff/server/CRecipientFilter.txt +++ b/dump/linux/vtable_diff/server/CRecipientFilter.txt @@ -5,7 +5,7 @@ Children Count: 10 func_0 [ DIFF 10 ] ["CBroadcastRecipientFilter", "CHLTVRecipientFilter", "CPASAttenuationFilter", "CPASFilter", "CPVSFilter", "CReliableBroadcastRecipientFilter", "CReliableSingleUserRecipientFilter", "CSingleUserPlusObserversFilter", "CSingleUserRecipientFilter", "CTeamRecipientFilter"] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_1 [ DIFF 10 ] ["CBroadcastRecipientFilter", "CHLTVRecipientFilter", "CPASAttenuationFilter", "CPASFilter", "CPVSFilter", "CReliableBroadcastRecipientFilter", "CReliableSingleUserRecipientFilter", "CSingleUserPlusObserversFilter", "CSingleUserRecipientFilter", "CTeamRecipientFilter"] - "BE 18 00 00 00 E9 86 5C 66 FF CC CC CC CC CC CC" + "BE 18 00 00 00 E9 06 5D 66 FF CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] "0F B6 47 14 C3 CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CSource2GameClients.txt b/dump/linux/vtable_diff/server/CSource2GameClients.txt index 4a24594..803f2dd 100644 --- a/dump/linux/vtable_diff/server/CSource2GameClients.txt +++ b/dump/linux/vtable_diff/server/CSource2GameClients.txt @@ -5,7 +5,7 @@ Children Count: 0 func_0 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 8D 7D E8 48 83 EC 28" func_1 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 2F 34 41" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 34 41" func_2 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] @@ -33,7 +33,7 @@ func_13 [ DIFF 0 ] [] func_14 [ DIFF 0 ] [] "55 48 89 E5 41 57 49 89 CF 41 56 4D 89 C6 41 55" func_15 [ DIFF 0 ] [] - "55 48 8D 15 D8 3E B8 FF 48 89 E5 41 57 41 56 41" + "55 48 8D 15 58 3F B8 FF 48 89 E5 41 57 41 56 41" func_16 [ DIFF 0 ] [] "55 89 F7 48 89 E5 41 57 41 56 41 55 41 54 53 48" func_17 [ DIFF 0 ] [] @@ -73,7 +73,7 @@ func_33 [ DIFF 0 ] [] func_34 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 45 89 CC 53" func_35 [ DIFF 0 ] [] - "55 48 89 E5 E8 A7 1C 5D FF 5D 48 85 C0 48 8D 50" + "55 48 89 E5 E8 27 1D 5D FF 5D 48 85 C0 48 8D 50" func_36 [ DIFF 0 ] [] "55 89 F7 48 89 E5 E8 C5 5B F0 FF 48 85 C0 74 10" func_37 [ DIFF 0 ] [] @@ -89,7 +89,7 @@ func_41 [ DIFF 0 ] [] func_42 [ DIFF 0 ] [] "8B 4E 18 83 F9 76 7F 38 83 F9 74 7F 4B 83 F9 48" func_43 [ DIFF 0 ] [] - "55 48 89 F7 48 89 E5 E8 44 CE 5B FF 5D 83 F0 01" + "55 48 89 F7 48 89 E5 E8 C4 CE 5B FF 5D 83 F0 01" ============================================= Bases: diff --git a/dump/linux/vtable_diff/server/CSource2GameEntities.txt b/dump/linux/vtable_diff/server/CSource2GameEntities.txt index 8940f63..d586a3c 100644 --- a/dump/linux/vtable_diff/server/CSource2GameEntities.txt +++ b/dump/linux/vtable_diff/server/CSource2GameEntities.txt @@ -5,7 +5,7 @@ Children Count: 0 func_0 [ DIFF 0 ] [] "55 48 89 E5 53 48 89 FB 48 8D 7D E8 48 83 EC 28" func_1 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 DF 33 41" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 1F 34 41" func_2 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] @@ -25,9 +25,9 @@ func_9 [ DIFF 0 ] [] func_10 [ DIFF 0 ] [] "B8 02 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 0 ] [] - "55 48 8D 05 D8 2C A6 00 48 89 E5 53 48 89 FB 48" + "55 48 8D 05 18 2D A6 00 48 89 E5 53 48 89 FB 48" func_12 [ DIFF 0 ] [] - "55 48 8D 05 28 2C A6 00 48 89 E5 53 48 89 FB 48" + "55 48 8D 05 68 2C A6 00 48 89 E5 53 48 89 FB 48" func_13 [ DIFF 0 ] [] "55 48 89 E5 41 57 49 89 FF 41 56 48 8D 3D DE 32" func_14 [ DIFF 0 ] [] diff --git a/dump/linux/vtable_diff/server/CSource2Server.txt b/dump/linux/vtable_diff/server/CSource2Server.txt index a1aa302..1f814fc 100644 --- a/dump/linux/vtable_diff/server/CSource2Server.txt +++ b/dump/linux/vtable_diff/server/CSource2Server.txt @@ -3,9 +3,9 @@ Virtual Function Count: 98 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "55 31 C0 48 89 E5 41 54 49 89 FC 53 48 8D 3D DD" + "55 31 C0 48 89 E5 41 54 49 89 FC 53 48 8D 3D 6D" func_1 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 6F 31 35" + "55 48 89 E5 53 48 89 FB 48 83 EC 08 E8 AF 31 35" func_2 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] @@ -27,11 +27,11 @@ func_10 [ DIFF 0 ] [] func_11 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_12 [ DIFF 0 ] [] - "48 8B 05 B1 CD BB 00 48 8D 15 C2 CD BB 00 31 C9" + "48 8B 05 F1 CD BB 00 48 8D 15 02 CE BB 00 31 C9" func_13 [ DIFF 0 ] [] "55 48 89 E5 53 48 83 EC 08 48 8D 1D D8 66 D7 00" func_14 [ DIFF 0 ] [] - "55 48 8D 05 E8 BB 90 00 31 D2 48 89 E5 41 55 41" + "55 48 8D 05 28 BC 90 00 31 D2 48 89 E5 41 55 41" func_15 [ DIFF 0 ] [] "55 48 89 E5 41 54 53 89 F3 48 83 EC 10 E8 0E 61" func_16 [ DIFF 0 ] [] @@ -39,9 +39,9 @@ func_16 [ DIFF 0 ] [] func_17 [ DIFF 0 ] [] "48 8D 05 F9 84 D3 00 48 8B 00 48 8B B8 60 21 00" func_18 [ DIFF 0 ] [] - "48 8D 05 51 89 78 01 48 83 38 00 0F 84 3F 05 00" + "48 8D 05 D1 88 78 01 48 83 38 00 0F 84 3F 05 00" func_19 [ DIFF 0 ] [] - "55 48 8D 05 CF E6 43 FF 48 89 E5 41 57 4C 8D 7D" + "55 48 8D 05 4F E7 43 FF 48 89 E5 41 57 4C 8D 7D" func_20 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_21 [ DIFF 0 ] [] @@ -71,13 +71,13 @@ func_32 [ DIFF 0 ] [] func_33 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_34 [ DIFF 0 ] [] - "48 89 F7 E9 C8 BA 25 00 CC CC CC CC CC CC CC CC" + "48 89 F7 E9 08 BB 25 00 CC CC CC CC CC CC CC CC" func_35 [ DIFF 0 ] [] - "48 89 F7 E9 08 BC 25 00 CC CC CC CC CC CC CC CC" + "48 89 F7 E9 48 BC 25 00 CC CC CC CC CC CC CC CC" func_36 [ DIFF 0 ] [] "89 F7 48 89 D6 48 89 CA 4C 89 C1 E9 10 35 F6 FF" func_37 [ DIFF 0 ] [] - "48 8D 05 79 D7 C0 00 48 8B 00 C3 CC CC CC CC CC" + "48 8D 05 B9 D7 C0 00 48 8B 00 C3 CC CC CC CC CC" func_38 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_39 [ DIFF 0 ] [] @@ -93,7 +93,7 @@ func_43 [ DIFF 0 ] [] func_44 [ DIFF 0 ] [] "48 8B 3D 99 EF D3 00 48 85 FF 74 16 48 8B 07 48" func_45 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 83 EC 20 8B 3D 4B 58 B3" + "55 48 89 E5 41 54 53 48 83 EC 20 8B 3D 8B 58 B3" func_46 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_47 [ DIFF 0 ] [] @@ -131,19 +131,19 @@ func_62 [ DIFF 0 ] [] func_63 [ DIFF 0 ] [] "55 48 89 E5 41 55 49 89 F5 41 54 53 48 89 D3 48" func_64 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 EF FF 86" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 6F 00 87" func_65 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 BF FF 86" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 3F 00 87" func_66 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 2F FF 86" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 AF FF 86" func_67 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 FF FE 86" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 7F FF 86" func_68 [ DIFF 0 ] [] "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC" func_69 [ DIFF 0 ] [] - "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 8F FF 86" + "55 48 89 E5 53 48 89 F3 48 83 EC 08 E8 0F 00 87" func_70 [ DIFF 0 ] [] - "55 48 89 E5 41 54 49 89 D4 53 48 89 F3 E8 5E FF" + "55 48 89 E5 41 54 49 89 D4 53 48 89 F3 E8 DE FF" func_71 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_72 [ DIFF 0 ] [] @@ -153,7 +153,7 @@ func_73 [ DIFF 0 ] [] func_74 [ DIFF 0 ] [] "48 8D 05 71 A8 DD 00 55 31 D2 48 89 E5 48 8B 38" func_75 [ DIFF 0 ] [] - "48 8D 05 B1 BC DD 00 31 D2 48 8B 38 E9 1F F9 59" + "48 8D 05 B1 BC DD 00 31 D2 48 8B 38 E9 5F F9 59" func_76 [ DIFF 0 ] [] "55 48 89 E5 41 54 49 89 D4 31 D2 53 48 83 EC 10" func_77 [ DIFF 0 ] [] @@ -167,15 +167,15 @@ func_80 [ DIFF 0 ] [] func_81 [ DIFF 0 ] [] "55 89 F7 48 89 E5 E8 55 34 F0 FF 48 85 C0 74 19" func_82 [ DIFF 0 ] [] - "55 48 8D 35 B3 14 47 FF 48 89 E5 41 57 41 56 41" + "55 48 8D 35 3E 15 47 FF 48 89 E5 41 57 41 56 41" func_83 [ DIFF 0 ] [] "89 F7 48 89 D6 89 CA E9 F4 73 DC FF CC CC CC CC" func_84 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_85 [ DIFF 0 ] [] - "55 89 F7 48 89 E5 53 89 D3 48 83 EC 08 E8 1E D8" + "55 89 F7 48 89 E5 53 89 D3 48 83 EC 08 E8 9E D7" func_86 [ DIFF 0 ] [] - "48 8D 05 F9 9B 78 01 48 8B 38 48 85 FF 0F 84 4D" + "48 8D 05 79 9B 78 01 48 8B 38 48 85 FF 0F 84 4D" func_87 [ DIFF 0 ] [] "31 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_88 [ DIFF 0 ] [] @@ -191,13 +191,13 @@ func_92 [ DIFF 0 ] [] func_93 [ DIFF 0 ] [] "C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC" func_94 [ DIFF 0 ] [] - "48 89 F7 89 D6 89 CA E9 44 C6 90 FF CC CC CC CC" + "48 89 F7 89 D6 89 CA E9 C4 C6 90 FF CC CC CC CC" func_95 [ DIFF 0 ] [] "55 48 89 F7 48 89 D6 48 89 E5 41 54 4C 8D 65 E8" func_96 [ DIFF 0 ] [] "55 48 89 F7 48 89 E5 41 54 4C 8D 65 E8 53 48 83" func_97 [ DIFF 0 ] [] - "55 48 89 E5 41 54 53 48 83 EC 20 8B 3D 7F 5A B3" + "55 48 89 E5 41 54 53 48 83 EC 20 8B 3D BF 5A B3" ============================================= Bases: diff --git a/dump/linux/vtables/client.json b/dump/linux/vtables/client.json index 2f55374..537d865 100644 --- a/dump/linux/vtables/client.json +++ b/dump/linux/vtables/client.json @@ -1,7 +1,7 @@ [ { "type_name": ".2.0", - "vtable_address": 65584712, + "vtable_address": 65588616, "methods": [], "bases": [], "model": { @@ -12,7 +12,7 @@ }, { "type_name": "0 1000", - "vtable_address": 64453360, + "vtable_address": 64457264, "methods": [], "bases": [], "model": { @@ -23,23 +23,23 @@ }, { "type_name": "AccountActivity", - "vtable_address": 63533056, + "vtable_address": 63536960, "methods": [ 15637040, 15691600, - 29643894, + 29647734, 15165456, 15793584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821216, 14847392, 15286128, 12011504, 15010976, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834592, 14800480 @@ -75,7 +75,7 @@ }, { "type_name": "AmmoTypeInfo_t", - "vtable_address": 63353824, + "vtable_address": 63357728, "methods": [ 14313792, 14348016, @@ -91,7 +91,7 @@ }, { "type_name": "Amount of angular slack the animation has when aligning to the navlink. 0 indicates that it must be strictly aligned.", - "vtable_address": 63281936, + "vtable_address": 63285840, "methods": [], "bases": [], "model": { @@ -102,11 +102,11 @@ }, { "type_name": "AnimGraphUtils::CTraceFilterAnimGraphSlope", - "vtable_address": 63321376, + "vtable_address": 63325280, "methods": [ 13216320, 13223936, - 19383616 + 19386432 ], "bases": [ { @@ -183,7 +183,7 @@ }, { "type_name": "Animation Cycle", - "vtable_address": 65201808, + "vtable_address": 65205712, "methods": [], "bases": [], "model": { @@ -194,7 +194,7 @@ }, { "type_name": "AssetBrowse( jpg, png, psd, tga )", - "vtable_address": 65204016, + "vtable_address": 65207920, "methods": [], "bases": [], "model": { @@ -205,9 +205,9 @@ }, { "type_name": "BaseModUI::CUIGameData", - "vtable_address": 64373680, + "vtable_address": 64377584, "methods": [ - 23511264 + 23514016 ], "bases": [ { @@ -229,18 +229,18 @@ }, { "type_name": "Body group to set when this damage level is broken.", - "vtable_address": 63442096, + "vtable_address": 63446000, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10910009 + "offset_to_top": 10910020 } } }, { "type_name": "CAimTargetManager", - "vtable_address": 63319368, + "vtable_address": 63323272, "methods": [ 12204192, 12204208, @@ -336,10 +336,10 @@ }, { "type_name": "CAmmoDef", - "vtable_address": 64013160, + "vtable_address": 64017064, "methods": [ 13055520, - 18506704, + 18509008, 13055536 ], "bases": [ @@ -362,19 +362,19 @@ }, { "type_name": "CAmmoDefTyped", - "vtable_address": 63684312, + "vtable_address": 63688216, "methods": [ 13055520, - 18506704, + 18509008, 13055536, 16918464, 16919520, - 18506768, - 18506768, + 18509072, + 18509072, 16917232, 16908688, 16908704, - 18506720, + 18509024, 16972768, 16913440 ], @@ -409,7 +409,7 @@ }, { "type_name": "CAnimEventListenerBase", - "vtable_address": 65363072, + "vtable_address": 65366976, "methods": [], "bases": [], "model": { @@ -420,7 +420,7 @@ }, { "type_name": "CAnimEventListenerBase", - "vtable_address": 65363200, + "vtable_address": 65367104, "methods": [], "bases": [], "model": { @@ -431,7 +431,7 @@ }, { "type_name": "CAnimGraphControllerBase", - "vtable_address": 63403208, + "vtable_address": 63407112, "methods": [], "bases": [], "model": { @@ -442,9 +442,9 @@ }, { "type_name": "CAnimGraphControllerBase", - "vtable_address": 64013280, + "vtable_address": 64017184, "methods": [ - 18518416 + 18520720 ], "bases": [], "model": { @@ -455,7 +455,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 63320792, + "vtable_address": 63324696, "methods": [ 12204192, 12204208, @@ -562,7 +562,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 63321320, + "vtable_address": 63325224, "methods": [ 12446976, 13405456 @@ -607,7 +607,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 63321352, + "vtable_address": 63325256, "methods": [ 13254000 ], @@ -651,7 +651,7 @@ }, { "type_name": "CAnimGraphNetworkedVariables", - "vtable_address": 63321416, + "vtable_address": 63325320, "methods": [ 13418208, 13421808, @@ -738,23 +738,23 @@ }, { "type_name": "CAnimGraphNetworkedVariables", - "vtable_address": 63496200, + "vtable_address": 63500104, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65525448 + "offset_to_top": 65529352 } } }, { "type_name": "CAnimGraphSaveRestoreOps", - "vtable_address": 64013432, + "vtable_address": 64017336, "methods": [ - 18565648, - 18760304, - 18506784, - 18507760, + 18567952, + 18763120, + 18509088, + 18510064, 12233776, 12233792 ], @@ -789,11 +789,11 @@ }, { "type_name": "CAnimGraphTraceFilter", - "vtable_address": 63319328, + "vtable_address": 63323232, "methods": [ 13217680, 13223920, - 19383616 + 19386432 ], "bases": [ { @@ -870,7 +870,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 63321944, + "vtable_address": 63325848, "methods": [ 13279616, 13219280, @@ -917,7 +917,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 63321984, + "vtable_address": 63325888, "methods": [ 13219296, 13223904 @@ -963,7 +963,7 @@ }, { "type_name": "CAnimPose", - "vtable_address": 63319264, + "vtable_address": 63323168, "methods": [ 13298288, 13298560 @@ -988,11 +988,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 64010176, + "vtable_address": 64014080, "methods": [ - 18566592, - 18568112, - 18533968 + 18568896, + 18570416, + 18536272 ], "bases": [ { @@ -1014,11 +1014,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 64010056, + "vtable_address": 64013960, "methods": [ - 18566352, - 18567824, - 18534976 + 18568656, + 18570128, + 18537280 ], "bases": [ { @@ -1040,11 +1040,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 64010136, + "vtable_address": 64014040, "methods": [ - 18566512, - 18568016, - 18534304 + 18568816, + 18570320, + 18536608 ], "bases": [ { @@ -1066,11 +1066,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 64010096, + "vtable_address": 64014000, "methods": [ - 18566432, - 18567920, - 18534640 + 18568736, + 18570224, + 18536944 ], "bases": [ { @@ -1092,11 +1092,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 64010216, + "vtable_address": 64014120, "methods": [ - 18566672, - 18568208, - 18533632 + 18568976, + 18570512, + 18535936 ], "bases": [ { @@ -1118,11 +1118,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 64008984, + "vtable_address": 64012888, "methods": [ - 18566752, - 18568304, - 18537600 + 18569056, + 18570608, + 18539904 ], "bases": [ { @@ -1144,27 +1144,27 @@ }, { "type_name": "CAnimationBucket", - "vtable_address": 64775128, - "methods": [ - 32855520, - 32855648, - 32860928, - 32861648, - 32862368, - 32859600, - 32863088, - 32863760, - 32864480, - 32865200, - 32857264, - 32858016, - 32858768, - 32860288, - 32855792, - 32855216, - 32855312, - 32855440, - 32855264 + "vtable_address": 64779032, + "methods": [ + 32859360, + 32859488, + 32864768, + 32865488, + 32866208, + 32863440, + 32866928, + 32867600, + 32868320, + 32869040, + 32861104, + 32861856, + 32862608, + 32864128, + 32859632, + 32859056, + 32859152, + 32859280, + 32859104 ], "bases": [], "model": { @@ -1175,11 +1175,11 @@ }, { "type_name": "CAsyncCaptionResourceManager", - "vtable_address": 64230160, + "vtable_address": 64234064, "methods": [ - 22233392, + 22236208, 12204208, - 22257088, + 22259904, 12204240, 12204256, 12204272, @@ -1222,7 +1222,7 @@ 12204864, 12204880, 12204896, - 22253904, + 22256720, 12204928, 12204944, 12204960, @@ -1233,12 +1233,12 @@ 12205040, 12205056, 12205072, - 22233360, + 22236176, 12205104, - 22233344, - 22239216, - 22239344, - 22233328 + 22236160, + 22242032, + 22242160, + 22236144 ], "bases": [ { @@ -1271,7 +1271,7 @@ }, { "type_name": "CAsyncDataCache", - "vtable_address": 63500464, + "vtable_address": 63504368, "methods": [], "bases": [], "model": { @@ -1282,7 +1282,7 @@ }, { "type_name": "CAsyncDataCache", - "vtable_address": 63500624, + "vtable_address": 63504528, "methods": [], "bases": [], "model": { @@ -1293,7 +1293,7 @@ }, { "type_name": "CAsyncDataCache", - "vtable_address": 63500784, + "vtable_address": 63504688, "methods": [], "bases": [], "model": { @@ -1304,12 +1304,12 @@ }, { "type_name": "CAttributeDictSaveDataOps", - "vtable_address": 64847000, + "vtable_address": 64850904, "methods": [ - 39979952, - 39980912, - 39978608, - 39986032, + 39983856, + 39984816, + 39982512, + 39989936, 12233776, 12233792 ], @@ -1344,14 +1344,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 64587200, + "vtable_address": 64591104, "methods": [ - 27281248, - 27283888, - 27281344, - 27281360, - 27290528, - 27281376 + 27284416, + 27287056, + 27284512, + 27284528, + 27293696, + 27284544 ], "bases": [ { @@ -1373,14 +1373,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 63754664, + "vtable_address": 63758568, "methods": [ - 17287424, - 17288848, - 17288768, - 17288784, - 17290160, - 17288800 + 17289728, + 17291152, + 17291072, + 17291088, + 17292464, + 17291104 ], "bases": [ { @@ -1402,14 +1402,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue, Vec3D >", - "vtable_address": 64566248, + "vtable_address": 64570152, "methods": [ - 27283520, - 27283872, - 27283536, - 27283552, - 27283568, - 27283584 + 27286688, + 27287040, + 27286704, + 27286720, + 27286736, + 27286752 ], "bases": [ { @@ -1431,14 +1431,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 63776848, + "vtable_address": 63780752, "methods": [ - 17287792, - 17288864, - 17288128, - 17288144, - 17288192, - 17288208 + 17290096, + 17291168, + 17290432, + 17290448, + 17290496, + 17290512 ], "bases": [ { @@ -1460,7 +1460,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 63705496, + "vtable_address": 63709400, "methods": [ 17047328, 17047840, @@ -1489,7 +1489,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 63691680, + "vtable_address": 63695584, "methods": [ 16908112, 16909120, @@ -1518,14 +1518,14 @@ }, { "type_name": "CAttributeIterator_HasAttribute", - "vtable_address": 63707000, + "vtable_address": 63710904, "methods": [ 17120384, 17121472, - 17126384, - 17126320, - 17126256, - 17126192, + 17126480, + 17126416, + 17126352, + 17126288, 17119600 ], "bases": [ @@ -1559,12 +1559,12 @@ }, { "type_name": "CAttributeList", - "vtable_address": 64592144, + "vtable_address": 64596048, "methods": [ - 28027264, - 28024160, - 28024176, - 28024192 + 28030528, + 28027424, + 28027440, + 28027456 ], "bases": [], "model": { @@ -1575,20 +1575,20 @@ }, { "type_name": "CAttributeManager", - "vtable_address": 64570912, - "methods": [ - 27284144, - 27278992, - 27278560, - 27278576, - 27278592, - 27309936, - 27310064, - 27313024, - 27329792, - 27279024, - 27553632, - 27554144 + "vtable_address": 64574816, + "methods": [ + 27287312, + 27282160, + 27281728, + 27281744, + 27281760, + 27313104, + 27313232, + 27316192, + 27332960, + 27282192, + 27556864, + 27557376 ], "bases": [], "model": { @@ -1599,23 +1599,23 @@ }, { "type_name": "CAttribute_String", - "vtable_address": 63547616, + "vtable_address": 63551520, "methods": [ 15648016, 15714320, - 29643894, + 29647734, 15180416, 15812480, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14851376, 15330816, 12011504, 14910944, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837504, 14801936 @@ -1651,11 +1651,11 @@ }, { "type_name": "CAudioEventTagListener", - "vtable_address": 64013528, + "vtable_address": 64017432, "methods": [ - 18566832, - 18568528, - 18777248 + 18569136, + 18570832, + 18780064 ], "bases": [ { @@ -1677,7 +1677,7 @@ }, { "type_name": "CAutoGameSystem", - "vtable_address": 63107976, + "vtable_address": 63111880, "methods": [ 12204192, 12204208, @@ -1759,33 +1759,33 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 63354024, + "vtable_address": 63357928, "methods": [ 14381312, - 18929920, - 18931312, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 18932480, - 18933680, - 18665760, + 18932736, + 18934128, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 18935296, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -1794,23 +1794,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18609472, + 40000032, + 18611776, 14313408, 14313920, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -1827,13 +1827,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -1841,79 +1841,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -1938,12 +1938,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -1951,24 +1951,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -1980,66 +1980,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -2103,15 +2103,15 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 63356272, + "vtable_address": 63360176, "methods": [ - 18931296, - 18931360, - 18933072, - 18741840, - 18742112, + 18934112, + 18934176, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -2175,9 +2175,9 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 63356344, + "vtable_address": 63360248, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -2241,7 +2241,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 63402680, + "vtable_address": 63406584, "methods": [], "bases": [], "model": { @@ -2252,7 +2252,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 65648320, + "vtable_address": 65652224, "methods": [], "bases": [], "model": { @@ -2263,7 +2263,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 65865504, + "vtable_address": 65869408, "methods": [], "bases": [], "model": { @@ -2274,7 +2274,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 65928576, + "vtable_address": 65932480, "methods": [], "bases": [], "model": { @@ -2285,7 +2285,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 65941792, + "vtable_address": 65945696, "methods": [], "bases": [], "model": { @@ -2296,7 +2296,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 65994432, + "vtable_address": 65998336, "methods": [], "bases": [], "model": { @@ -2307,12 +2307,12 @@ }, { "type_name": "CBaseAnimGraph::NetworkVar_m_RagdollPose", - "vtable_address": 64010008, + "vtable_address": 64013912, "methods": [ 13163120, - 18519584, + 18521888, 13162384, - 18506032 + 18508336 ], "bases": [ { @@ -2334,7 +2334,7 @@ }, { "type_name": "CBaseAnimGraphAnimGraphController", - "vtable_address": 63353872, + "vtable_address": 63357776, "methods": [ 14313808, 14336752, @@ -2351,8 +2351,8 @@ 14312864, 14312880, 14312896, - 18506768, - 18623504 + 18509072, + 18625808 ], "bases": [ { @@ -2374,7 +2374,7 @@ }, { "type_name": "CBaseAnimGraphAnimGraphController", - "vtable_address": 63402968, + "vtable_address": 63406872, "methods": [], "bases": [], "model": { @@ -2385,44 +2385,44 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 64014400, + "vtable_address": 64018304, "methods": [ 14313936, - 18517088, - 18632880, - 18576784, - 18791520, - 18635456, - 18632928, - 18505904, - 18849616, + 18519392, + 18635184, + 18579088, + 18794336, + 18637760, + 18635232, + 18508208, + 18852432, 13216016, - 18507520, - 18760624, - 18573120, + 18509824, + 18763440, + 18575424, 13216080, - 18640864, - 18631008, + 18643168, + 18633312, 13216096, - 18507440, - 18630288, - 18639056, - 18636848, - 18507488, - 18507328, - 18507408, - 20196208, - 18794448, - 18506000, - 18630080, - 18639616, - 18505920, - 18505936, - 18505952, - 18507472, - 18793072, + 18509744, + 18632592, + 18641360, + 18639152, + 18509792, + 18509632, + 18509712, + 20199024, + 18797264, + 18508304, + 18632384, + 18641920, + 18508224, + 18508240, + 18508256, + 18509776, + 18795888, 16906336, - 18778816 + 18781632 ], "bases": [ { @@ -2465,9 +2465,9 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 64014704, + "vtable_address": 64018608, "methods": [ - 18531008 + 18533312 ], "bases": [ { @@ -2510,7 +2510,7 @@ }, { "type_name": "CBaseAnimGraphController::NetworkVar_m_animGraphNetworkedVars", - "vtable_address": 64008456, + "vtable_address": 64012360, "methods": [ 13418208, 13421808, @@ -2572,9 +2572,9 @@ 13217584, 13217632, 13238112, - 18519712, + 18522016, 13216048, - 18505968, + 18508272, 13216336 ], "bases": [ @@ -2608,63 +2608,63 @@ }, { "type_name": "CBaseAnimatingCamera", - "vtable_address": 64173008, - "methods": [ - 21357792, - 21357808, - 21360480, - 21324944, - 21363968, - 21357088, - 21342272, - 21328320, - 21324560, - 21324576, - 21324592, - 21324608, - 21324624, - 21324640, - 21345712, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 21324720, - 21324736, - 21324752, - 21324768, - 21324784, - 21324464, - 21324800, - 21324816, - 21324480, - 21324496, - 21324512, - 21387680, - 21324528, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160, - 21325168, - 21363184 + "vtable_address": 64176912, + "methods": [ + 21360608, + 21360624, + 21363296, + 21327760, + 21366784, + 21359904, + 21345088, + 21331136, + 21327376, + 21327392, + 21327408, + 21327424, + 21327440, + 21327456, + 21348528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 21327536, + 21327552, + 21327568, + 21327584, + 21327600, + 21327280, + 21327616, + 21327632, + 21327296, + 21327312, + 21327328, + 21390496, + 21327344, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976, + 21327984, + 21366000 ], "bases": [ { @@ -2697,61 +2697,61 @@ }, { "type_name": "CBaseCamera", - "vtable_address": 64172568, - "methods": [ - 21357568, - 21357744, - 21360480, - 21324944, - 21361488, - 21357088, - 21342272, - 21324544, - 21324560, - 21324576, - 21324592, - 21324608, - 21324624, - 21324640, - 21345712, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 21324720, - 21324736, - 21324752, - 21324768, - 21324784, - 21324464, - 21324800, - 21324816, - 21324480, - 21324496, - 21324512, - 21387680, - 21324528, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160 + "vtable_address": 64176472, + "methods": [ + 21360384, + 21360560, + 21363296, + 21327760, + 21364304, + 21359904, + 21345088, + 21327360, + 21327376, + 21327392, + 21327408, + 21327424, + 21327440, + 21327456, + 21348528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 21327536, + 21327552, + 21327568, + 21327584, + 21327600, + 21327280, + 21327616, + 21327632, + 21327296, + 21327312, + 21327328, + 21390496, + 21327344, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976 ], "bases": [ { @@ -2773,7 +2773,7 @@ }, { "type_name": "CBaseCameraManager", - "vtable_address": 64174872, + "vtable_address": 64178776, "methods": [], "bases": [ { @@ -2816,7 +2816,7 @@ }, { "type_name": "CBaseCameraManager", - "vtable_address": 64175304, + "vtable_address": 64179208, "methods": [], "bases": [ { @@ -2859,23 +2859,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 63323376, + "vtable_address": 63327280, "methods": [ 13234976, 13260064, - 29643894, + 29647734, 13234960, 15809504, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867760, 13224192, 15271040, 12011504, 14985792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833664, 14796976 @@ -2922,23 +2922,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 63323848, + "vtable_address": 63327752, "methods": [ 13235072, 13260144, - 29643894, + 29647734, 13235056, 15809632, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868624, 13224208, 15271504, 12011504, 15029312, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833696, 14796992 @@ -2985,23 +2985,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 64176024, + "vtable_address": 64179928, "methods": [ - 21334752, - 21353744, - 29643894, + 21337568, + 21356560, + 29647734, 16235088, 16699568, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16012064, 15994464, 16331056, 12011504, 16194528, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016064, 15987056 @@ -3048,23 +3048,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 63318792, + "vtable_address": 63322696, "methods": [ 13238800, 13258400, - 29643894, + 29647734, 13238784, 16709632, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 13224320, 16433872, 12011504, 16120544, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022048, 15993568 @@ -3111,62 +3111,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65193056, - "methods": [ - 61838672, - 61876912, - 39223120, - 61269824, - 61269856, - 61269888, - 61284128, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61284160, - 61269504, - 61269520, - 61505520, - 61636320, - 61328896, - 61415552, - 61270016, - 61270032, - 61615248, - 61643856, - 61588736, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581488, - 61683328, - 61443120, - 61620864, - 61623168, - 61566480, - 62050624, - 61329216, - 61329888, - 61330240, - 61697488, - 61642704, - 61269744, - 61291184, - 61716960, - 61603248, - 61603104, - 61270112, - 61270128, - 61627376, - 61731312, - 61269808 + "vtable_address": 65196960, + "methods": [ + 61842576, + 61880816, + 39226960, + 61273728, + 61273760, + 61273792, + 61288032, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61288064, + 61273408, + 61273424, + 61509424, + 61640224, + 61332800, + 61419456, + 61273920, + 61273936, + 61619152, + 61647760, + 61592640, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585392, + 61687232, + 61447024, + 61624768, + 61627072, + 61570384, + 62054528, + 61333120, + 61333792, + 61334144, + 61701392, + 61646608, + 61273648, + 61295088, + 61720864, + 61607152, + 61607008, + 61274016, + 61274032, + 61631280, + 61735216, + 61273712 ], "bases": [ { @@ -3199,62 +3199,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65172672, - "methods": [ - 61837200, - 61837744, - 39223120, - 61269824, - 61269856, - 61269888, - 61271808, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61271840, - 61269504, - 61269520, - 61299088, - 61637088, - 61299344, - 61417664, - 61270016, - 61270032, - 61616688, - 61644720, - 61589600, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582256, - 61684864, - 61463312, - 61497360, - 61462832, - 61513376, - 62016128, - 61299664, - 61300336, - 61300688, - 61697488, - 61559152, - 61269744, - 61290880, - 61716960, - 61605168, - 61605024, - 61270112, - 61270128, - 61628144, - 61734672, - 61269808 + "vtable_address": 65176576, + "methods": [ + 61841104, + 61841648, + 39226960, + 61273728, + 61273760, + 61273792, + 61275712, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61275744, + 61273408, + 61273424, + 61302992, + 61640992, + 61303248, + 61421568, + 61273920, + 61273936, + 61620592, + 61648624, + 61593504, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586160, + 61688768, + 61467216, + 61501264, + 61466736, + 61517280, + 62020032, + 61303568, + 61304240, + 61304592, + 61701392, + 61563056, + 61273648, + 61294784, + 61720864, + 61609072, + 61608928, + 61274016, + 61274032, + 61632048, + 61738576, + 61273712 ], "bases": [ { @@ -3287,62 +3287,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65091440, - "methods": [ - 61828432, - 61917808, - 39223120, - 61269824, - 61269856, - 61269888, - 61281088, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61281120, - 61269504, - 61269520, - 61366576, - 61638112, - 61366832, - 61411328, - 61270016, - 61270032, - 61610352, - 61645872, - 61590752, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583280, - 61686912, - 61461952, - 61492256, - 61461472, - 61514016, - 62039360, - 61367152, - 61367824, - 61368176, - 61697488, - 61559344, - 61269744, - 61290576, - 61716960, - 61607472, - 61607328, - 61270112, - 61270128, - 61629168, - 61719888, - 61269808 + "vtable_address": 65095344, + "methods": [ + 61832336, + 61921712, + 39226960, + 61273728, + 61273760, + 61273792, + 61284992, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61285024, + 61273408, + 61273424, + 61370480, + 61642016, + 61370736, + 61415232, + 61273920, + 61273936, + 61614256, + 61649776, + 61594656, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587184, + 61690816, + 61465856, + 61496160, + 61465376, + 61517920, + 62043264, + 61371056, + 61371728, + 61372080, + 61701392, + 61563248, + 61273648, + 61294480, + 61720864, + 61611376, + 61611232, + 61274016, + 61274032, + 61633072, + 61723792, + 61273712 ], "bases": [ { @@ -3375,62 +3375,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialInputContainer_t>", - "vtable_address": 65145616, - "methods": [ - 61833056, - 61918368, - 39223120, - 61269824, - 61269856, - 61269888, - 61276464, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61276496, - 61269504, - 61269520, - 61335600, - 61635296, - 61335840, - 61414592, - 61270016, - 61270032, - 61614096, - 61642416, - 61587584, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580464, - 61681280, - 61455024, - 61433632, - 61433280, - 61483664, - 62026688, - 61336160, - 61336832, - 61337184, - 61697488, - 61276512, - 61269744, - 61507568, - 61716960, - 61600944, - 61600800, - 61270112, - 61270128, - 61624336, - 61728624, - 61269808 + "vtable_address": 65149520, + "methods": [ + 61836960, + 61922272, + 39226960, + 61273728, + 61273760, + 61273792, + 61280368, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61280400, + 61273408, + 61273424, + 61339504, + 61639200, + 61339744, + 61418496, + 61273920, + 61273936, + 61618000, + 61646320, + 61591488, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584368, + 61685184, + 61458928, + 61437536, + 61437184, + 61487568, + 62030592, + 61340064, + 61340736, + 61341088, + 61701392, + 61280416, + 61273648, + 61511472, + 61720864, + 61604848, + 61604704, + 61274016, + 61274032, + 61628240, + 61732528, + 61273712 ], "bases": [ { @@ -3463,62 +3463,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65088632, - "methods": [ - 61827888, - 61917248, - 39223120, - 61269824, - 61269856, - 61269888, - 61281232, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61281264, - 61269504, - 61269520, - 61368304, - 61638240, - 61368544, - 61411136, - 61270016, - 61270032, - 61610496, - 61646016, - 61590896, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583408, - 61687168, - 61448576, - 61424208, - 61423856, - 61485136, - 62040064, - 61368864, - 61369536, - 61369888, - 61697488, - 61281280, - 61269744, - 61504128, - 61716960, - 61607760, - 61607616, - 61270112, - 61270128, - 61629296, - 61720224, - 61269808 + "vtable_address": 65092536, + "methods": [ + 61831792, + 61921152, + 39226960, + 61273728, + 61273760, + 61273792, + 61285136, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61285168, + 61273408, + 61273424, + 61372208, + 61642144, + 61372448, + 61415040, + 61273920, + 61273936, + 61614400, + 61649920, + 61594800, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587312, + 61691072, + 61452480, + 61428112, + 61427760, + 61489040, + 62043968, + 61372768, + 61373440, + 61373792, + 61701392, + 61285184, + 61273648, + 61508032, + 61720864, + 61611664, + 61611520, + 61274016, + 61274032, + 61633200, + 61724128, + 61273712 ], "bases": [ { @@ -3551,62 +3551,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65100544, - "methods": [ - 61828976, - 61829488, - 39223120, - 61269824, - 61269856, - 61269888, - 61280160, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61280192, - 61269504, - 61269520, - 61380400, - 61634144, - 61380640, - 61715520, - 61270016, - 61270032, - 61611504, - 61639584, - 61586288, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577120, - 61678976, - 61450816, - 61427360, - 61427008, - 61484400, - 62035840, - 61380960, - 61381632, - 61381984, - 61697488, - 61286304, - 61269744, - 61280208, - 61716960, - 61597584, - 61597440, - 61270112, - 61270128, - 61622528, - 61722576, - 61269808 + "vtable_address": 65104448, + "methods": [ + 61832880, + 61833392, + 39226960, + 61273728, + 61273760, + 61273792, + 61284064, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61284096, + 61273408, + 61273424, + 61384304, + 61638048, + 61384544, + 61719424, + 61273920, + 61273936, + 61615408, + 61643488, + 61590192, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581024, + 61682880, + 61454720, + 61431264, + 61430912, + 61488304, + 62039744, + 61384864, + 61385536, + 61385888, + 61701392, + 61290208, + 61273648, + 61284112, + 61720864, + 61601488, + 61601344, + 61274016, + 61274032, + 61626432, + 61726480, + 61273712 ], "bases": [ { @@ -3639,62 +3639,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65110728, - "methods": [ - 61830016, - 61830528, - 39223120, - 61269824, - 61269856, - 61269888, - 61277216, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61277248, - 61269504, - 61269520, - 61342560, - 61640560, - 61342800, - 61413824, - 61270016, - 61270032, - 61612080, - 61647168, - 61592048, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584432, - 61689216, - 61454240, - 61432576, - 61432224, - 61484032, - 62028800, - 61343120, - 61343792, - 61344144, - 61697488, - 61286176, - 61269744, - 61277264, - 61716960, - 61618128, - 61617984, - 61270112, - 61270128, - 61632352, - 61723920, - 61269808 + "vtable_address": 65114632, + "methods": [ + 61833920, + 61834432, + 39226960, + 61273728, + 61273760, + 61273792, + 61281120, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61281152, + 61273408, + 61273424, + 61346464, + 61644464, + 61346704, + 61417728, + 61273920, + 61273936, + 61615984, + 61651072, + 61595952, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588336, + 61693120, + 61458144, + 61436480, + 61436128, + 61487936, + 62032704, + 61347024, + 61347696, + 61348048, + 61701392, + 61290080, + 61273648, + 61281168, + 61720864, + 61622032, + 61621888, + 61274016, + 61274032, + 61636256, + 61727824, + 61273712 ], "bases": [ { @@ -3727,62 +3727,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65147848, - "methods": [ - 61833600, - 61834112, - 39223120, - 61269824, - 61269856, - 61269888, - 61275952, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61275984, - 61269504, - 61269520, - 61332160, - 61634912, - 61332400, - 61415168, - 61270016, - 61270032, - 61613664, - 61641984, - 61587152, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580080, - 61680512, - 61455824, - 61434688, - 61434336, - 61483296, - 62025280, - 61332720, - 61333392, - 61333744, - 61697488, - 61286048, - 61269744, - 61276000, - 61716960, - 61600080, - 61599936, - 61270112, - 61270128, - 61623952, - 61727616, - 61269808 + "vtable_address": 65151752, + "methods": [ + 61837504, + 61838016, + 39226960, + 61273728, + 61273760, + 61273792, + 61279856, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61279888, + 61273408, + 61273424, + 61336064, + 61638816, + 61336304, + 61419072, + 61273920, + 61273936, + 61617568, + 61645888, + 61591056, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61583984, + 61684416, + 61459728, + 61438592, + 61438240, + 61487200, + 62029184, + 61336624, + 61337296, + 61337648, + 61701392, + 61289952, + 61273648, + 61279904, + 61720864, + 61603984, + 61603840, + 61274016, + 61274032, + 61627856, + 61731520, + 61273712 ], "bases": [ { @@ -3815,62 +3815,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65060336, - "methods": [ - 61826176, - 61826688, - 39223120, - 61269824, - 61269856, - 61269888, - 61280800, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61280832, - 61269504, - 61269520, - 61363136, - 61637856, - 61363376, - 61411712, - 61270016, - 61270032, - 61610064, - 61645584, - 61590464, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583024, - 61686400, - 61449376, - 61425264, - 61424912, - 61484768, - 62037952, - 61363696, - 61364368, - 61364720, - 61697488, - 61286432, - 61269744, - 61280848, - 61716960, - 61606896, - 61606752, - 61270112, - 61270128, - 61628912, - 61719216, - 61269808 + "vtable_address": 65064240, + "methods": [ + 61830080, + 61830592, + 39226960, + 61273728, + 61273760, + 61273792, + 61284704, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61284736, + 61273408, + 61273424, + 61367040, + 61641760, + 61367280, + 61415616, + 61273920, + 61273936, + 61613968, + 61649488, + 61594368, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586928, + 61690304, + 61453280, + 61429168, + 61428816, + 61488672, + 62041856, + 61367600, + 61368272, + 61368624, + 61701392, + 61290336, + 61273648, + 61284752, + 61720864, + 61610800, + 61610656, + 61274016, + 61274032, + 61632816, + 61723120, + 61273712 ], "bases": [ { @@ -3903,62 +3903,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65055192, - "methods": [ - 61825232, - 61825744, - 39223120, - 61269824, - 61269856, - 61269888, - 61283264, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61283296, - 61269504, - 61269520, - 61385632, - 61634528, - 61385872, - 61716240, - 61270016, - 61270032, - 61609632, - 61640016, - 61586720, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577504, - 61679744, - 61445104, - 61418976, - 61418624, - 61485504, - 62044992, - 61386192, - 61386864, - 61387216, - 61697488, - 61286560, - 61269744, - 61283312, - 61716960, - 61598448, - 61598304, - 61270112, - 61270128, - 61622912, - 61718208, - 61269808 + "vtable_address": 65059096, + "methods": [ + 61829136, + 61829648, + 39226960, + 61273728, + 61273760, + 61273792, + 61287168, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287200, + 61273408, + 61273424, + 61389536, + 61638432, + 61389776, + 61720144, + 61273920, + 61273936, + 61613536, + 61643920, + 61590624, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581408, + 61683648, + 61449008, + 61422880, + 61422528, + 61489408, + 62048896, + 61390096, + 61390768, + 61391120, + 61701392, + 61290464, + 61273648, + 61287216, + 61720864, + 61602352, + 61602208, + 61274016, + 61274032, + 61626816, + 61722112, + 61273712 ], "bases": [ { @@ -3991,62 +3991,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65164376, - "methods": [ - 61835328, - 61835840, - 39223120, - 61269824, - 61269856, - 61269888, - 61273872, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, + "vtable_address": 65168280, + "methods": [ + 61839232, + 61839744, + 39226960, + 61273728, + 61273760, + 61273792, + 61277776, + 61273824, + 61273840, 61273904, - 61269504, - 61269520, - 61315680, - 61569824, - 61315920, - 61693392, - 61270016, - 61270032, - 61615536, - 61579808, - 61561328, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61559024, - 61648608, - 61457264, - 61436784, - 61436432, - 61482928, - 62021056, - 61316240, - 61316912, - 61712272, - 61697488, - 61285920, - 61269744, + 39226736, + 39226752, + 39226768, + 61273376, + 61277808, + 61273408, + 61273424, + 61319584, + 61573728, + 61319824, + 61697296, 61273920, - 61716960, - 61567504, - 61567360, - 61270112, - 61270128, - 61567648, - 61731984, - 61269808 + 61273936, + 61619440, + 61583712, + 61565232, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61562928, + 61652512, + 61461168, + 61440688, + 61440336, + 61486832, + 62024960, + 61320144, + 61320816, + 61716176, + 61701392, + 61289824, + 61273648, + 61277824, + 61720864, + 61571408, + 61571264, + 61274016, + 61274032, + 61571552, + 61735888, + 61273712 ], "bases": [ { @@ -4079,62 +4079,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, int, CUtlVectorMemory_Growable >, int, (unsigned long)0> >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65154384, - "methods": [ - 61834640, - 61844736, - 39223120, - 61269824, - 61269856, - 61269888, - 61275616, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61275312, - 61269504, - 61269520, - 61322512, - 61636448, - 61322768, - 61415360, - 61270016, - 61270032, - 61615392, - 61644000, - 61588880, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581616, - 61683584, - 61518256, - 62205984, - 62206992, - 62207584, - 62023872, - 61323088, - 61323760, - 61324112, - 61697488, - 61557568, - 61269744, - 61275328, - 61716960, - 61603536, - 61603392, - 61270112, - 61270128, - 61627504, - 61731648, - 61269808 + "vtable_address": 65158288, + "methods": [ + 61838544, + 61848640, + 39226960, + 61273728, + 61273760, + 61273792, + 61279520, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61279216, + 61273408, + 61273424, + 61326416, + 61640352, + 61326672, + 61419264, + 61273920, + 61273936, + 61619296, + 61647904, + 61592784, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585520, + 61687488, + 61522160, + 62209888, + 62210896, + 62211488, + 62027776, + 61326992, + 61327664, + 61328016, + 61701392, + 61561472, + 61273648, + 61279232, + 61720864, + 61607440, + 61607296, + 61274016, + 61274032, + 61631408, + 61735552, + 61273712 ], "bases": [ { @@ -4167,62 +4167,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompMatPropertyMutator_t>", - "vtable_address": 65115840, - "methods": [ - 61832400, - 61839216, - 39223120, - 61269824, - 61269856, - 61269888, - 61279568, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61279264, - 61269504, - 61269520, - 61354560, - 61641584, - 61354816, - 61412288, - 61270016, - 61270032, - 61613232, - 61648320, - 61593200, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585456, - 61691264, - 61519264, - 62167744, - 62168768, - 62169392, - 62033728, - 61355136, - 61355808, - 61356160, - 61697488, - 61558608, - 61269744, - 61279280, - 61716960, - 61620432, - 61620288, - 61270112, - 61270128, - 61633376, - 61726608, - 61269808 + "vtable_address": 65119744, + "methods": [ + 61836304, + 61843120, + 39226960, + 61273728, + 61273760, + 61273792, + 61283472, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61283168, + 61273408, + 61273424, + 61358464, + 61645488, + 61358720, + 61416192, + 61273920, + 61273936, + 61617136, + 61652224, + 61597104, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589360, + 61695168, + 61523168, + 62171648, + 62172672, + 62173296, + 62037632, + 61359040, + 61359712, + 61360064, + 61701392, + 61562512, + 61273648, + 61283184, + 61720864, + 61624336, + 61624192, + 61274016, + 61274032, + 61637280, + 61730512, + 61273712 ], "bases": [ { @@ -4255,62 +4255,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompMatPropertyMutator_t>", - "vtable_address": 65138576, - "methods": [ - 61926704, - 61945536, - 39223120, - 61269824, - 61269856, - 61269888, - 61277200, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61276896, - 61269504, - 61269520, - 61340832, - 61640432, - 61341088, - 61414016, - 61270016, - 61270032, - 61611936, - 61647024, - 61591904, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584304, - 61688960, - 61534496, - 62189232, - 62200528, - 62201312, - 62028096, - 61341408, - 61342080, - 61342432, - 61697488, - 61558816, - 61269744, - 61276912, - 61716960, - 61617840, - 61617696, - 61270112, - 61270128, - 61632224, - 61723584, - 61269808 + "vtable_address": 65142480, + "methods": [ + 61930608, + 61949440, + 39226960, + 61273728, + 61273760, + 61273792, + 61281104, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61280800, + 61273408, + 61273424, + 61344736, + 61644336, + 61344992, + 61417920, + 61273920, + 61273936, + 61615840, + 61650928, + 61595808, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588208, + 61692864, + 61538400, + 62193136, + 62204432, + 62205216, + 62032000, + 61345312, + 61345984, + 61346336, + 61701392, + 61562720, + 61273648, + 61280816, + 61720864, + 61621744, + 61621600, + 61274016, + 61274032, + 61636128, + 61727488, + 61273712 ], "bases": [ { @@ -4343,62 +4343,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompMatPropertyMutator_t>", - "vtable_address": 65128680, - "methods": [ - 61926160, - 61936016, - 39223120, - 61269824, - 61269856, - 61269888, - 61278384, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61277888, - 61269504, - 61269520, - 61347712, - 61641072, - 61347952, - 61413056, - 61270016, - 61270032, - 61612656, - 61647744, - 61592624, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584944, - 61690240, - 62005392, - 62199824, - 62199088, - 62199440, - 62030912, - 61348272, - 61348944, - 61349296, - 61697488, - 61277904, - 61269744, - 61277968, - 61716960, - 61619280, - 61619136, - 61270112, - 61270128, - 61632864, - 61725264, - 61269808 + "vtable_address": 65132584, + "methods": [ + 61930064, + 61939920, + 39226960, + 61273728, + 61273760, + 61273792, + 61282288, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61281792, + 61273408, + 61273424, + 61351616, + 61644976, + 61351856, + 61416960, + 61273920, + 61273936, + 61616560, + 61651648, + 61596528, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588848, + 61694144, + 62009296, + 62203728, + 62202992, + 62203344, + 62034816, + 61352176, + 61352848, + 61353200, + 61701392, + 61281808, + 61273648, + 61281872, + 61720864, + 61623184, + 61623040, + 61274016, + 61274032, + 61636768, + 61729168, + 61273712 ], "bases": [ { @@ -4431,62 +4431,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65161800, - "methods": [ - 61928960, - 61936576, - 39223120, - 61269824, - 61269856, - 61269888, - 61274560, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61274064, - 61269504, - 61269520, - 61317344, - 61635680, - 61317584, - 61416512, - 61270016, - 61270032, - 61614528, - 61643136, - 61588016, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580848, - 61682048, - 62004688, - 62198384, - 62198032, - 62197648, - 62021760, - 61317904, - 61318576, - 61318928, - 61697488, - 61274080, - 61269744, - 61274144, - 61716960, - 61601808, - 61601664, - 61270112, - 61270128, - 61626736, - 61729632, - 61269808 + "vtable_address": 65165704, + "methods": [ + 61932864, + 61940480, + 39226960, + 61273728, + 61273760, + 61273792, + 61278464, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61277968, + 61273408, + 61273424, + 61321248, + 61639584, + 61321488, + 61420416, + 61273920, + 61273936, + 61618432, + 61647040, + 61591920, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584752, + 61685952, + 62008592, + 62202288, + 62201936, + 62201552, + 62025664, + 61321808, + 61322480, + 61322832, + 61701392, + 61277984, + 61273648, + 61278048, + 61720864, + 61605712, + 61605568, + 61274016, + 61274032, + 61630640, + 61733536, + 61273712 ], "bases": [ { @@ -4519,62 +4519,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65184408, - "methods": [ - 61930416, - 61947840, - 39223120, - 61269824, - 61269856, - 61269888, - 61271792, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61271488, - 61269504, - 61269520, - 61297360, - 61636960, - 61297616, - 61417856, - 61270016, - 61270032, - 61616544, - 61644576, - 61589456, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582128, - 61684608, - 61797008, - 62249616, - 62259712, - 62260304, - 62015424, - 61297936, - 61298608, - 61298960, - 61697488, - 61558192, - 61269744, - 61271504, - 61716960, - 61604880, - 61604736, - 61270112, - 61270128, - 61628016, - 61734336, - 61269808 + "vtable_address": 65188312, + "methods": [ + 61934320, + 61951744, + 39226960, + 61273728, + 61273760, + 61273792, + 61275696, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61275392, + 61273408, + 61273424, + 61301264, + 61640864, + 61301520, + 61421760, + 61273920, + 61273936, + 61620448, + 61648480, + 61593360, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586032, + 61688512, + 61800912, + 62253520, + 62263616, + 62264208, + 62019328, + 61301840, + 61302512, + 61302864, + 61701392, + 61562096, + 61273648, + 61275408, + 61720864, + 61608784, + 61608640, + 61274016, + 61274032, + 61631920, + 61738240, + 61273712 ], "bases": [ { @@ -4607,62 +4607,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65159328, - "methods": [ - 61928416, - 61946720, - 39223120, - 61269824, - 61269856, - 61269888, - 61274912, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61274608, - 61269504, - 61269520, - 61319056, - 61635936, - 61319312, - 61416128, - 61270016, - 61270032, - 61614816, - 61643424, - 61588304, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581104, - 61682560, - 61787168, - 62247072, - 62261024, - 62241264, - 62022464, - 61319632, - 61320304, - 61320656, - 61697488, - 61557984, - 61269744, - 61274624, - 61716960, - 61602384, - 61602240, - 61270112, - 61270128, - 61626992, - 61730304, - 61269808 + "vtable_address": 65163232, + "methods": [ + 61932320, + 61950624, + 39226960, + 61273728, + 61273760, + 61273792, + 61278816, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61278512, + 61273408, + 61273424, + 61322960, + 61639840, + 61323216, + 61420032, + 61273920, + 61273936, + 61618720, + 61647328, + 61592208, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585008, + 61686464, + 61791072, + 62250976, + 62264928, + 62245168, + 62026368, + 61323536, + 61324208, + 61324560, + 61701392, + 61561888, + 61273648, + 61278528, + 61720864, + 61606288, + 61606144, + 61274016, + 61274032, + 61630896, + 61734208, + 61273712 ], "bases": [ { @@ -4695,62 +4695,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialInputContainer_t>", - "vtable_address": 65150656, - "methods": [ - 61927232, - 61946032, - 39223120, - 61269824, - 61269856, - 61269888, - 61276416, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61276112, - 61269504, - 61269520, - 61333872, - 61635168, - 61334128, - 61414784, - 61270016, - 61270032, - 61613952, - 61642272, - 61587440, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580336, - 61681024, - 61745808, - 62052736, - 62053744, - 62054336, - 62025984, - 61334448, - 61335120, - 61335472, - 61697488, - 61557360, - 61269744, - 61276128, - 61716960, - 61600656, - 61600512, - 61270112, - 61270128, - 61624208, - 61728288, - 61269808 + "vtable_address": 65154560, + "methods": [ + 61931136, + 61949936, + 39226960, + 61273728, + 61273760, + 61273792, + 61280320, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61280016, + 61273408, + 61273424, + 61337776, + 61639072, + 61338032, + 61418688, + 61273920, + 61273936, + 61617856, + 61646176, + 61591344, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584240, + 61684928, + 61749712, + 62056640, + 62057648, + 62058240, + 62029888, + 61338352, + 61339024, + 61339376, + 61701392, + 61561264, + 61273648, + 61280032, + 61720864, + 61604560, + 61604416, + 61274016, + 61274032, + 61628112, + 61732192, + 61273712 ], "bases": [ { @@ -4783,62 +4783,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65156856, - "methods": [ - 61927904, - 61957008, - 39223120, - 61269824, - 61269856, - 61269888, - 61275264, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61274960, - 61269504, - 61269520, - 61320784, - 61636192, - 61321040, - 61415744, - 61270016, - 61270032, - 61615104, - 61643712, - 61588592, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581360, - 61683072, - 61530448, - 62211136, - 62212224, - 62212928, - 62023168, - 61321360, - 61322032, - 61322384, - 61697488, - 61557776, - 61269744, - 61274976, - 61716960, - 61602960, - 61602816, - 61270112, - 61270128, - 61627248, - 61730976, - 61269808 + "vtable_address": 65160760, + "methods": [ + 61931808, + 61960912, + 39226960, + 61273728, + 61273760, + 61273792, + 61279168, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61278864, + 61273408, + 61273424, + 61324688, + 61640096, + 61324944, + 61419648, + 61273920, + 61273936, + 61619008, + 61647616, + 61592496, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585264, + 61686976, + 61534352, + 62215040, + 62216128, + 62216832, + 62027072, + 61325264, + 61325936, + 61326288, + 61701392, + 61561680, + 61273648, + 61278880, + 61720864, + 61606864, + 61606720, + 61274016, + 61274032, + 61631152, + 61734880, + 61273712 ], "bases": [ { @@ -4871,62 +4871,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65186880, - "methods": [ - 61932064, - 61949504, - 39223120, - 61269824, - 61269856, - 61269888, - 61271440, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61271136, - 61269504, - 61269520, - 61295632, - 61636704, - 61295888, - 61418240, - 61270016, - 61270032, - 61616256, - 61644288, - 61589168, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581872, - 61684096, - 62012736, - 62229936, - 62230944, - 62231536, - 62014720, - 61296208, - 61296880, - 61297232, - 61697488, - 61558400, - 61269744, - 61271152, - 61716960, - 61604304, - 61604160, - 61270112, - 61270128, - 61627760, - 61733664, - 61269808 + "vtable_address": 65190784, + "methods": [ + 61935968, + 61953408, + 39226960, + 61273728, + 61273760, + 61273792, + 61275344, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61275040, + 61273408, + 61273424, + 61299536, + 61640608, + 61299792, + 61422144, + 61273920, + 61273936, + 61620160, + 61648192, + 61593072, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585776, + 61688000, + 62016640, + 62233840, + 62234848, + 62235440, + 62018624, + 61300112, + 61300784, + 61301136, + 61701392, + 61562304, + 61273648, + 61275056, + 61720864, + 61608208, + 61608064, + 61274016, + 61274032, + 61631664, + 61737568, + 61273712 ], "bases": [ { @@ -4959,62 +4959,62 @@ }, { "type_name": "CBaseConcreteToolAttr >, CompositeMaterial_t>", - "vtable_address": 65170096, - "methods": [ - 61929504, - 61947280, - 39223120, - 61269824, - 61269856, - 61269888, - 61273616, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61273312, - 61269504, - 61269520, - 61310688, - 61633760, - 61310944, - 61714800, - 61270016, - 61270032, - 61615824, - 61639152, - 61585856, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576736, - 61678208, - 61517264, - 62219696, - 62223728, - 62224320, - 62019648, - 61311264, - 61311936, - 61312288, - 61697488, - 61556640, - 61269744, - 61273328, - 61716960, - 61596720, - 61596576, - 61270112, - 61270128, - 61622144, - 61732656, - 61269808 + "vtable_address": 65174000, + "methods": [ + 61933408, + 61951184, + 39226960, + 61273728, + 61273760, + 61273792, + 61277520, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61277216, + 61273408, + 61273424, + 61314592, + 61637664, + 61314848, + 61718704, + 61273920, + 61273936, + 61619728, + 61643056, + 61589760, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580640, + 61682112, + 61521168, + 62223600, + 62227632, + 62228224, + 62023552, + 61315168, + 61315840, + 61316192, + 61701392, + 61560544, + 61273648, + 61277232, + 61720864, + 61600624, + 61600480, + 61274016, + 61274032, + 61626048, + 61736560, + 61273712 ], "bases": [ { @@ -5047,62 +5047,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65135768, - "methods": [ - 61822608, - 61863744, - 39223120, - 61269824, - 61269856, - 61269888, - 61277344, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61277376, - 61269504, - 61269520, - 61344272, - 61640688, - 61344512, - 61413632, - 61270016, - 61270032, - 61612224, - 61647312, - 61592192, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584560, - 61689472, - 61453568, - 61431536, - 61431184, - 61485872, - 62029504, - 61344832, - 61345504, - 61345856, - 61697488, - 61277392, - 61269744, - 61277456, - 61716960, - 61618416, - 61618272, - 61270112, - 61270128, - 61632480, - 61724256, - 61269808 + "vtable_address": 65139672, + "methods": [ + 61826512, + 61867648, + 39226960, + 61273728, + 61273760, + 61273792, + 61281248, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61281280, + 61273408, + 61273424, + 61348176, + 61644592, + 61348416, + 61417536, + 61273920, + 61273936, + 61616128, + 61651216, + 61596096, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588464, + 61693376, + 61457472, + 61435440, + 61435088, + 61489776, + 62033408, + 61348736, + 61349408, + 61349760, + 61701392, + 61281296, + 61273648, + 61281360, + 61720864, + 61622320, + 61622176, + 61274016, + 61274032, + 61636384, + 61728160, + 61273712 ], "bases": [ { @@ -5135,62 +5135,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65084168, - "methods": [ - 61817888, - 61862112, - 39223120, - 61269824, - 61269856, - 61269888, - 61281600, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61281632, - 61269504, - 61269520, - 61371744, - 61638496, - 61371984, - 61410752, - 61270016, - 61270032, - 61610784, - 61646304, - 61591184, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583664, - 61687680, - 61447904, - 61423168, - 61422816, - 61486224, - 62041472, - 61372304, - 61372976, - 61373328, - 61697488, - 61281648, - 61269744, - 61281712, - 61716960, - 61608336, - 61608192, - 61270112, - 61270128, - 61629552, - 61720896, - 61269808 + "vtable_address": 65088072, + "methods": [ + 61821792, + 61866016, + 39226960, + 61273728, + 61273760, + 61273792, + 61285504, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61285536, + 61273408, + 61273424, + 61375648, + 61642400, + 61375888, + 61414656, + 61273920, + 61273936, + 61614688, + 61650208, + 61595088, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587568, + 61691584, + 61451808, + 61427072, + 61426720, + 61490128, + 62045376, + 61376208, + 61376880, + 61377232, + 61701392, + 61285552, + 61273648, + 61285616, + 61720864, + 61612240, + 61612096, + 61274016, + 61274032, + 61633456, + 61724800, + 61273712 ], "bases": [ { @@ -5223,62 +5223,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65190800, - "methods": [ - 61935184, - 61956128, - 39223120, - 61269824, - 61269856, - 61269888, - 61284416, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61284384, - 61269504, - 61269520, - 61505248, - 61640304, - 61358016, - 61414208, - 61270016, - 61270032, - 61611792, - 61646880, - 61591760, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584176, - 61688704, - 61755136, - 61550800, - 61515280, - 61533312, - 62052032, - 61358336, - 61359008, - 61359360, - 61697488, - 61603680, - 61269744, - 61284400, - 61716960, - 61617552, - 61617408, - 61270112, - 61270128, - 61632096, - 61723248, - 61269808 + "vtable_address": 65194704, + "methods": [ + 61939088, + 61960032, + 39226960, + 61273728, + 61273760, + 61273792, + 61288320, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61288288, + 61273408, + 61273424, + 61509152, + 61644208, + 61361920, + 61418112, + 61273920, + 61273936, + 61615696, + 61650784, + 61595664, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588080, + 61692608, + 61759040, + 61554704, + 61519184, + 61537216, + 62055936, + 61362240, + 61362912, + 61363264, + 61701392, + 61607584, + 61273648, + 61288304, + 61720864, + 61621456, + 61621312, + 61274016, + 61274032, + 61636000, + 61727152, + 61273712 ], "bases": [ { @@ -5311,62 +5311,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65098312, - "methods": [ - 61819424, - 61894000, - 39223120, - 61269824, - 61269856, - 61269888, - 61280320, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61280352, - 61269504, - 61269520, - 61382112, - 61634272, - 61382368, - 61715760, - 61270016, - 61270032, - 61611648, - 61639728, - 61586432, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577248, - 61679232, - 61501232, - 61493968, - 61488368, - 61510256, - 62036544, - 61382688, - 61383360, - 61383712, - 61697488, - 61555408, - 61269744, - 61280368, - 61716960, - 61597872, - 61597728, - 61270112, - 61270128, - 61622656, - 61722912, - 61269808 + "vtable_address": 65102216, + "methods": [ + 61823328, + 61897904, + 39226960, + 61273728, + 61273760, + 61273792, + 61284224, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61284256, + 61273408, + 61273424, + 61386016, + 61638176, + 61386272, + 61719664, + 61273920, + 61273936, + 61615552, + 61643632, + 61590336, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581152, + 61683136, + 61505136, + 61497872, + 61492272, + 61514160, + 62040448, + 61386592, + 61387264, + 61387616, + 61701392, + 61559312, + 61273648, + 61284272, + 61720864, + 61601776, + 61601632, + 61274016, + 61274032, + 61626560, + 61726816, + 61273712 ], "bases": [ { @@ -5399,62 +5399,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65108496, - "methods": [ - 61821584, - 61894544, - 39223120, - 61269824, - 61269856, - 61269888, - 61279616, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61279648, - 61269504, - 61269520, - 61356288, - 61641712, - 61356544, - 61412096, - 61270016, - 61270032, - 61613376, - 61648464, - 61593344, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585584, - 61691520, - 61501984, - 61494816, - 61488816, - 61509632, - 62034432, - 61356864, - 61357536, - 61357888, - 61697488, - 61556288, - 61269744, - 61279664, - 61716960, - 61620720, - 61620576, - 61270112, - 61270128, - 61633504, - 61726944, - 61269808 + "vtable_address": 65112400, + "methods": [ + 61825488, + 61898448, + 39226960, + 61273728, + 61273760, + 61273792, + 61283520, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61283552, + 61273408, + 61273424, + 61360192, + 61645616, + 61360448, + 61416000, + 61273920, + 61273936, + 61617280, + 61652368, + 61597248, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589488, + 61695424, + 61505888, + 61498720, + 61492720, + 61513536, + 62038336, + 61360768, + 61361440, + 61361792, + 61701392, + 61560192, + 61273648, + 61283568, + 61720864, + 61624624, + 61624480, + 61274016, + 61274032, + 61637408, + 61730848, + 61273712 ], "bases": [ { @@ -5487,62 +5487,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65189672, - "methods": [ - 61935632, - 61956592, - 39223120, - 61269824, - 61269856, - 61269888, - 61284656, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61284560, - 61269504, - 61269520, - 61359488, - 61640944, - 61359728, - 61413248, - 61270016, - 61270032, - 61612512, - 61647600, - 61592480, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584816, - 61689984, - 61765376, - 62191232, - 62192256, - 62191888, - 62014016, - 61360048, - 61360720, - 61361072, - 61697488, - 61284576, - 61269744, - 61284640, - 61716960, - 61618992, - 61618848, - 61270112, - 61270128, - 61632736, - 61724928, - 61269808 + "vtable_address": 65193576, + "methods": [ + 61939536, + 61960496, + 39226960, + 61273728, + 61273760, + 61273792, + 61288560, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61288464, + 61273408, + 61273424, + 61363392, + 61644848, + 61363632, + 61417152, + 61273920, + 61273936, + 61616416, + 61651504, + 61596384, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588720, + 61693888, + 61769280, + 62195136, + 62196160, + 62195792, + 62017920, + 61363952, + 61364624, + 61364976, + 61701392, + 61288480, + 61273648, + 61288544, + 61720864, + 61622896, + 61622752, + 61274016, + 61274032, + 61636640, + 61728832, + 61273712 ], "bases": [ { @@ -5575,62 +5575,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65196968, - "methods": [ - 61933600, - 61954432, - 39223120, - 61269824, - 61269856, - 61269888, - 61283984, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61283888, - 61269504, - 61269520, - 61324240, - 61635552, - 61324480, - 61416704, - 61270016, - 61270032, - 61614384, - 61642992, - 61587872, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580720, - 61681792, - 61764224, - 62192576, - 62193232, - 62193552, - 62048512, - 61324800, - 61325472, - 61325824, - 61697488, - 61283904, - 61269744, - 61283968, - 61716960, - 61601520, - 61601376, - 61270112, - 61270128, - 61626608, - 61729296, - 61269808 + "vtable_address": 65200872, + "methods": [ + 61937504, + 61958336, + 39226960, + 61273728, + 61273760, + 61273792, + 61287888, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287792, + 61273408, + 61273424, + 61328144, + 61639456, + 61328384, + 61420608, + 61273920, + 61273936, + 61618288, + 61646896, + 61591776, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584624, + 61685696, + 61768128, + 62196480, + 62197136, + 62197456, + 62052416, + 61328704, + 61329376, + 61329728, + 61701392, + 61287808, + 61273648, + 61287872, + 61720864, + 61605424, + 61605280, + 61274016, + 61274032, + 61630512, + 61733200, + 61273712 ], "bases": [ { @@ -5663,62 +5663,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65199224, - "methods": [ - 61932832, - 61953600, - 39223120, - 61269824, - 61269856, - 61269888, - 61283680, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61283648, - 61269504, - 61269520, - 61506608, - 61636832, - 61309136, - 61418048, - 61270016, - 61270032, - 61616400, - 61644432, - 61589312, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582000, - 61684352, - 61796304, - 62254368, - 62255504, - 62255888, - 62047104, - 61309456, - 61310128, - 61310480, - 61697488, - 61599264, - 61269744, - 61283664, - 61716960, - 61604592, - 61604448, - 61270112, - 61270128, - 61627888, - 61734000, - 61269808 + "vtable_address": 65203128, + "methods": [ + 61936736, + 61957504, + 39226960, + 61273728, + 61273760, + 61273792, + 61287584, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287552, + 61273408, + 61273424, + 61510512, + 61640736, + 61313040, + 61421952, + 61273920, + 61273936, + 61620304, + 61648336, + 61593216, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585904, + 61688256, + 61800208, + 62258272, + 62259408, + 62259792, + 62051008, + 61313360, + 61314032, + 61314384, + 61701392, + 61603168, + 61273648, + 61287568, + 61720864, + 61608496, + 61608352, + 61274016, + 61274032, + 61631792, + 61737904, + 61273712 ], "bases": [ { @@ -5751,62 +5751,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65143384, - "methods": [ - 61823632, - 61895632, - 39223120, - 61269824, - 61269856, - 61269888, - 61276672, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61276704, - 61269504, - 61269520, - 61337312, - 61635424, - 61337568, - 61414400, - 61270016, - 61270032, - 61614240, - 61642560, - 61587728, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580592, - 61681536, - 61502736, - 61496512, - 61489264, - 61509008, - 62027392, - 61337888, - 61338560, - 61338912, - 61697488, - 61555584, - 61269744, - 61276720, - 61716960, - 61601232, - 61601088, - 61270112, - 61270128, - 61624464, - 61728960, - 61269808 + "vtable_address": 65147288, + "methods": [ + 61827536, + 61899536, + 39226960, + 61273728, + 61273760, + 61273792, + 61280576, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61280608, + 61273408, + 61273424, + 61341216, + 61639328, + 61341472, + 61418304, + 61273920, + 61273936, + 61618144, + 61646464, + 61591632, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584496, + 61685440, + 61506640, + 61500416, + 61493168, + 61512912, + 62031296, + 61341792, + 61342464, + 61342816, + 61701392, + 61559488, + 61273648, + 61280624, + 61720864, + 61605136, + 61604992, + 61274016, + 61274032, + 61628368, + 61732864, + 61273712 ], "bases": [ { @@ -5839,62 +5839,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65195840, - "methods": [ - 61933984, - 61954848, - 39223120, - 61269824, - 61269856, - 61269888, - 61284048, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61284016, - 61269504, - 61269520, - 61506064, - 61635808, - 61325952, - 61416320, - 61270016, - 61270032, - 61614672, - 61643280, - 61588160, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580976, - 61682304, - 61785152, - 62236080, - 62237216, - 62237600, - 62049216, - 61326272, - 61326944, - 61327296, - 61697488, - 61599072, - 61269744, - 61284032, - 61716960, - 61602096, - 61601952, - 61270112, - 61270128, - 61626864, - 61729968, - 61269808 + "vtable_address": 65199744, + "methods": [ + 61937888, + 61958752, + 39226960, + 61273728, + 61273760, + 61273792, + 61287952, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287920, + 61273408, + 61273424, + 61509968, + 61639712, + 61329856, + 61420224, + 61273920, + 61273936, + 61618576, + 61647184, + 61592064, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584880, + 61686208, + 61789056, + 62239984, + 62241120, + 62241504, + 62053120, + 61330176, + 61330848, + 61331200, + 61701392, + 61602976, + 61273648, + 61287936, + 61720864, + 61606000, + 61605856, + 61274016, + 61274032, + 61630768, + 61733872, + 61273712 ], "bases": [ { @@ -5927,62 +5927,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65068256, - "methods": [ - 61815472, - 61892368, - 39223120, - 61269824, - 61269856, - 61269888, - 61282688, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61282720, - 61269504, - 61269520, - 61376880, - 61638880, - 61377136, - 61410176, - 61270016, - 61270032, - 61611216, - 61646736, - 61591616, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584048, - 61688448, - 61498976, - 61490560, - 61487024, - 61512128, - 62043584, - 61377456, - 61378128, - 61378480, - 61697488, - 61555760, - 61269744, - 61282736, - 61716960, - 61609200, - 61609056, - 61270112, - 61270128, - 61629936, - 61721904, - 61269808 + "vtable_address": 65072160, + "methods": [ + 61819376, + 61896272, + 39226960, + 61273728, + 61273760, + 61273792, + 61286592, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61286624, + 61273408, + 61273424, + 61380784, + 61642784, + 61381040, + 61414080, + 61273920, + 61273936, + 61615120, + 61650640, + 61595520, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587952, + 61692352, + 61502880, + 61494464, + 61490928, + 61516032, + 62047488, + 61381360, + 61382032, + 61382384, + 61701392, + 61559664, + 61273648, + 61286640, + 61720864, + 61613104, + 61612960, + 61274016, + 61274032, + 61633840, + 61725808, + 61273712 ], "bases": [ { @@ -6015,62 +6015,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65120616, - "methods": [ - 61925408, - 62002800, - 39223120, - 61269824, - 61269856, - 61269888, - 61279216, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61279088, - 61269504, - 61269520, - 61352848, - 61641456, - 61353088, - 61412480, - 61270016, - 61270032, - 61613088, - 61648176, - 61593056, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585328, - 61691008, - 61741856, - 61409200, - 61409856, - 61464192, - 62033024, - 61353408, - 61354080, - 61354432, - 61697488, - 61279104, - 61269744, - 61279168, - 61716960, - 61620144, - 61620000, - 61270112, - 61270128, - 61633248, - 61726272, - 61269808 + "vtable_address": 65124520, + "methods": [ + 61929312, + 62006704, + 39226960, + 61273728, + 61273760, + 61273792, + 61283120, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61282992, + 61273408, + 61273424, + 61356752, + 61645360, + 61356992, + 61416384, + 61273920, + 61273936, + 61616992, + 61652080, + 61596960, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589232, + 61694912, + 61745760, + 61413104, + 61413760, + 61468096, + 62036928, + 61357312, + 61357984, + 61358336, + 61701392, + 61283008, + 61273648, + 61283072, + 61720864, + 61624048, + 61623904, + 61274016, + 61274032, + 61637152, + 61730176, + 61273712 ], "bases": [ { @@ -6103,62 +6103,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65191928, - "methods": [ - 61934800, - 61955712, - 39223120, - 61269824, - 61269856, - 61269888, - 61284352, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61284256, - 61269504, - 61269520, - 61339040, - 61635040, - 61339280, - 61414976, - 61270016, - 61270032, - 61613808, - 61642128, - 61587296, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580208, - 61680768, - 61743680, - 61408224, - 61408880, - 61464560, - 62051328, - 61339600, - 61340272, - 61340624, - 61697488, - 61284272, - 61269744, - 61284336, - 61716960, - 61600368, - 61600224, - 61270112, - 61270128, - 61624080, - 61727952, - 61269808 + "vtable_address": 65195832, + "methods": [ + 61938704, + 61959616, + 39226960, + 61273728, + 61273760, + 61273792, + 61288256, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61288160, + 61273408, + 61273424, + 61342944, + 61638944, + 61343184, + 61418880, + 61273920, + 61273936, + 61617712, + 61646032, + 61591200, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584112, + 61684672, + 61747584, + 61412128, + 61412784, + 61468464, + 62055232, + 61343504, + 61344176, + 61344528, + 61701392, + 61288176, + 61273648, + 61288240, + 61720864, + 61604272, + 61604128, + 61274016, + 61274032, + 61627984, + 61731856, + 61273712 ], "bases": [ { @@ -6191,62 +6191,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65094248, - "methods": [ - 61818912, - 61893456, - 39223120, - 61269824, - 61269856, - 61269888, - 61280928, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61280960, - 61269504, - 61269520, - 61364848, - 61637984, - 61365104, - 61411520, - 61270016, - 61270032, - 61610208, - 61645728, - 61590608, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583152, - 61686656, - 61500480, - 61493120, - 61487920, - 61510880, - 62038656, - 61365424, - 61366096, - 61366448, - 61697488, - 61556112, - 61269744, - 61280976, - 61716960, - 61607184, - 61607040, - 61270112, - 61270128, - 61629040, - 61719552, - 61269808 + "vtable_address": 65098152, + "methods": [ + 61822816, + 61897360, + 39226960, + 61273728, + 61273760, + 61273792, + 61284832, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61284864, + 61273408, + 61273424, + 61368752, + 61641888, + 61369008, + 61415424, + 61273920, + 61273936, + 61614112, + 61649632, + 61594512, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587056, + 61690560, + 61504384, + 61497024, + 61491824, + 61514784, + 62042560, + 61369328, + 61370000, + 61370352, + 61701392, + 61560016, + 61273648, + 61284880, + 61720864, + 61611088, + 61610944, + 61274016, + 61274032, + 61632944, + 61723456, + 61273712 ], "bases": [ { @@ -6279,62 +6279,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65052960, - "methods": [ - 61813312, - 61891824, - 39223120, - 61269824, - 61269856, - 61269888, - 61283424, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61283456, - 61269504, - 61269520, - 61387344, - 61634656, - 61387600, - 61716480, - 61270016, - 61270032, - 61609776, - 61640160, - 61586864, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577632, - 61680000, - 61498224, - 61489712, - 61486576, - 61512752, - 62045696, - 61387920, - 61388592, - 61388944, - 61697488, - 61555232, - 61269744, - 61283472, - 61716960, - 61598736, - 61598592, - 61270112, - 61270128, - 61623040, - 61718544, - 61269808 + "vtable_address": 65056864, + "methods": [ + 61817216, + 61895728, + 39226960, + 61273728, + 61273760, + 61273792, + 61287328, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287360, + 61273408, + 61273424, + 61391248, + 61638560, + 61391504, + 61720384, + 61273920, + 61273936, + 61613680, + 61644064, + 61590768, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581536, + 61683904, + 61502128, + 61493616, + 61490480, + 61516656, + 62049600, + 61391824, + 61392496, + 61392848, + 61701392, + 61559136, + 61273648, + 61287376, + 61720864, + 61602640, + 61602496, + 61274016, + 61274032, + 61626944, + 61722448, + 61273712 ], "bases": [ { @@ -6367,62 +6367,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65194712, - "methods": [ - 61934368, - 61955264, - 39223120, - 61269824, - 61269856, - 61269888, - 61284112, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61284080, - 61269504, - 61269520, - 61505792, - 61636064, - 61327424, - 61415936, - 61270016, - 61270032, - 61614960, - 61643568, - 61588448, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581232, - 61682816, - 61736768, - 61548720, - 61507152, - 61532400, - 62049920, - 61327744, - 61328416, - 61328768, - 61697488, - 61598880, - 61269744, - 61284096, - 61716960, - 61602672, - 61602528, - 61270112, - 61270128, - 61627120, - 61730640, - 61269808 + "vtable_address": 65198616, + "methods": [ + 61938272, + 61959168, + 39226960, + 61273728, + 61273760, + 61273792, + 61288016, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287984, + 61273408, + 61273424, + 61509696, + 61639968, + 61331328, + 61419840, + 61273920, + 61273936, + 61618864, + 61647472, + 61592352, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585136, + 61686720, + 61740672, + 61552624, + 61511056, + 61536304, + 62053824, + 61331648, + 61332320, + 61332672, + 61701392, + 61602784, + 61273648, + 61288000, + 61720864, + 61606576, + 61606432, + 61274016, + 61274032, + 61631024, + 61734544, + 61273712 ], "bases": [ { @@ -6455,62 +6455,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65086400, - "methods": [ - 61818400, - 61892912, - 39223120, - 61269824, - 61269856, - 61269888, - 61281440, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61281472, - 61269504, - 61269520, - 61370016, - 61638368, - 61370272, - 61410944, - 61270016, - 61270032, - 61610640, - 61646160, - 61591040, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583536, - 61687424, - 61499728, - 61491408, - 61487472, - 61511504, - 62040768, - 61370592, - 61371264, - 61371616, - 61697488, - 61555936, - 61269744, - 61281488, - 61716960, - 61608048, - 61607904, - 61270112, - 61270128, - 61629424, - 61720560, - 61269808 + "vtable_address": 65090304, + "methods": [ + 61822304, + 61896816, + 39226960, + 61273728, + 61273760, + 61273792, + 61285344, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61285376, + 61273408, + 61273424, + 61373920, + 61642272, + 61374176, + 61414848, + 61273920, + 61273936, + 61614544, + 61650064, + 61594944, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587440, + 61691328, + 61503632, + 61495312, + 61491376, + 61515408, + 62044672, + 61374496, + 61375168, + 61375520, + 61701392, + 61559840, + 61273648, + 61285392, + 61720864, + 61611952, + 61611808, + 61274016, + 61274032, + 61633328, + 61724464, + 61273712 ], "bases": [ { @@ -6543,62 +6543,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65200352, - "methods": [ - 62009872, - 62011888, - 39223120, - 61269824, - 61269856, - 61269888, - 61283584, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61283600, - 61269504, - 61269520, - 61506880, - 61636576, - 61307664, - 61418432, - 61270016, - 61270032, - 61616112, - 61644144, - 61589024, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581744, - 61683840, - 62010256, - 62221328, - 62222464, - 62222848, - 62046400, - 61307984, - 61308656, - 61309008, - 61697488, - 61599456, - 61269744, - 61283616, - 61716960, - 61604016, - 61603872, - 61270112, - 61270128, - 61627632, - 61733328, - 61269808 + "vtable_address": 65204256, + "methods": [ + 62013776, + 62015792, + 39226960, + 61273728, + 61273760, + 61273792, + 61287488, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287504, + 61273408, + 61273424, + 61510784, + 61640480, + 61311568, + 61422336, + 61273920, + 61273936, + 61620016, + 61648048, + 61592928, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585648, + 61687744, + 62014160, + 62225232, + 62226368, + 62226752, + 62050304, + 61311888, + 61312560, + 61312912, + 61701392, + 61603360, + 61273648, + 61287520, + 61720864, + 61607920, + 61607776, + 61274016, + 61274032, + 61631536, + 61737232, + 61273712 ], "bases": [ { @@ -6631,62 +6631,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65198096, - "methods": [ - 61933216, - 61954016, - 39223120, - 61269824, - 61269856, - 61269888, - 61283744, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61283712, - 61269504, - 61269520, - 61506336, - 61633632, - 61314128, - 61714560, - 61270016, - 61270032, - 61615680, - 61639008, - 61585712, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576608, - 61677952, - 61444208, - 62174304, - 62175440, - 62175824, - 62047808, - 61314448, - 61315120, - 61315472, - 61697488, - 61596096, - 61269744, - 61283728, - 61716960, - 61596432, - 61596288, - 61270112, - 61270128, - 61622016, - 61732320, - 61269808 + "vtable_address": 65202000, + "methods": [ + 61937120, + 61957920, + 39226960, + 61273728, + 61273760, + 61273792, + 61287648, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61287616, + 61273408, + 61273424, + 61510240, + 61637536, + 61318032, + 61718464, + 61273920, + 61273936, + 61619584, + 61642912, + 61589616, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580512, + 61681856, + 61448112, + 62178208, + 62179344, + 62179728, + 62051712, + 61318352, + 61319024, + 61319376, + 61701392, + 61600000, + 61273648, + 61287632, + 61720864, + 61600336, + 61600192, + 61274016, + 61274032, + 61625920, + 61736224, + 61273712 ], "bases": [ { @@ -6719,62 +6719,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65179368, - "methods": [ - 61838176, - 61897712, - 39223120, - 61269824, - 61269856, - 61269888, - 61272272, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61272304, - 61269504, - 61269520, - 61302528, - 61637344, - 61302768, - 61417280, - 61270016, - 61270032, - 61616976, - 61645008, - 61589888, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582512, - 61685376, - 61460112, - 61440992, - 61440640, - 61482192, - 62017536, - 61303088, - 61303760, - 61304112, - 61697488, - 61272320, - 61269744, - 61272400, - 61716960, - 61605744, - 61605600, - 61270112, - 61270128, - 61628400, - 61735344, - 61269808 + "vtable_address": 65183272, + "methods": [ + 61842080, + 61901616, + 39226960, + 61273728, + 61273760, + 61273792, + 61276176, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61276208, + 61273408, + 61273424, + 61306432, + 61641248, + 61306672, + 61421184, + 61273920, + 61273936, + 61620880, + 61648912, + 61593792, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586416, + 61689280, + 61464016, + 61444896, + 61444544, + 61486096, + 62021440, + 61306992, + 61307664, + 61308016, + 61701392, + 61276224, + 61273648, + 61276304, + 61720864, + 61609648, + 61609504, + 61274016, + 61274032, + 61632304, + 61739248, + 61273712 ], "bases": [ { @@ -6807,62 +6807,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65166712, - "methods": [ - 61836176, - 61836672, - 39223120, - 61269824, - 61269856, - 61269888, - 61273632, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61273664, - 61269504, - 61269520, - 61312416, - 61633888, - 61312656, - 61715040, - 61270016, - 61270032, - 61615968, - 61639296, - 61586000, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576864, - 61678464, - 61458048, - 61437840, - 61437488, - 61482560, - 62020352, - 61312976, - 61313648, - 61314000, - 61697488, - 61273680, - 61269744, + "vtable_address": 65170616, + "methods": [ + 61840080, + 61840576, + 39226960, + 61273728, 61273760, - 61716960, - 61597008, - 61596864, - 61270112, - 61270128, - 61622272, - 61732992, - 61269808 + 61273792, + 61277536, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61277568, + 61273408, + 61273424, + 61316320, + 61637792, + 61316560, + 61718944, + 61273920, + 61273936, + 61619872, + 61643200, + 61589904, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580768, + 61682368, + 61461952, + 61441744, + 61441392, + 61486464, + 62024256, + 61316880, + 61317552, + 61317904, + 61701392, + 61277584, + 61273648, + 61277664, + 61720864, + 61600912, + 61600768, + 61274016, + 61274032, + 61626176, + 61736896, + 61273712 ], "bases": [ { @@ -6895,62 +6895,62 @@ }, { "type_name": "CBaseConcreteToolAttr, CompMatPropertyMutator_t>", - "vtable_address": 65133536, - "methods": [ - 61822096, - 61863200, - 39223120, - 61269824, - 61269856, - 61269888, - 61277696, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61277728, - 61269504, - 61269520, - 61345984, - 61640816, - 61346240, - 61413440, - 61270016, - 61270032, - 61612368, - 61647456, - 61592336, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584688, - 61689728, - 61504432, - 61495664, - 61503664, - 61514656, - 62030208, - 61346560, - 61347232, - 61347584, - 61697488, - 61556464, - 61269744, - 61277744, - 61716960, - 61618704, - 61618560, - 61270112, - 61270128, - 61632608, - 61724592, - 61269808 + "vtable_address": 65137440, + "methods": [ + 61826000, + 61867104, + 39226960, + 61273728, + 61273760, + 61273792, + 61281600, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61281632, + 61273408, + 61273424, + 61349888, + 61644720, + 61350144, + 61417344, + 61273920, + 61273936, + 61616272, + 61651360, + 61596240, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588592, + 61693632, + 61508336, + 61499568, + 61507568, + 61518560, + 62034112, + 61350464, + 61351136, + 61351488, + 61701392, + 61560368, + 61273648, + 61281648, + 61720864, + 61622608, + 61622464, + 61274016, + 61274032, + 61636512, + 61728496, + 61273712 ], "bases": [ { @@ -6983,62 +6983,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65103928, - "methods": [ - 61819936, - 61862656, - 39223120, - 61269824, - 61269856, - 61269888, - 61279808, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61279840, - 61269504, - 61269520, - 61378688, - 61634016, - 61378928, - 61715280, - 61270016, - 61270032, - 61611360, - 61639440, - 61586144, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576992, - 61678720, - 61451600, - 61428416, - 61428064, - 61480432, - 62035136, - 61379248, - 61379920, - 61380272, - 61697488, - 61279856, - 61269744, - 61279920, - 61716960, - 61597296, - 61597152, - 61270112, - 61270128, - 61622400, - 61722240, - 61269808 + "vtable_address": 65107832, + "methods": [ + 61823840, + 61866560, + 39226960, + 61273728, + 61273760, + 61273792, + 61283712, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61283744, + 61273408, + 61273424, + 61382592, + 61637920, + 61382832, + 61719184, + 61273920, + 61273936, + 61615264, + 61643344, + 61590048, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580896, + 61682624, + 61455504, + 61432320, + 61431968, + 61484336, + 62039040, + 61383152, + 61383824, + 61384176, + 61701392, + 61283760, + 61273648, + 61283824, + 61720864, + 61601200, + 61601056, + 61274016, + 61274032, + 61626304, + 61726144, + 61273712 ], "bases": [ { @@ -7071,62 +7071,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65106264, + "vtable_address": 65110168, "methods": [ - 61820448, - 61820960, - 39223120, - 61269824, - 61269856, - 61269888, - 61278400, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61278432, - 61269504, - 61269520, - 61349424, - 61641200, - 61349664, - 61412864, - 61270016, - 61270032, - 61612800, - 61647888, - 61592768, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585072, - 61690496, - 61452912, - 61430496, - 61430144, - 61479728, - 62031616, - 61349984, - 61350656, - 61351008, - 61697488, - 61278448, - 61269744, - 61278512, - 61716960, - 61619568, - 61619424, - 61270112, - 61270128, - 61632992, - 61725600, - 61269808 + 61824352, + 61824864, + 39226960, + 61273728, + 61273760, + 61273792, + 61282304, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61282336, + 61273408, + 61273424, + 61353328, + 61645104, + 61353568, + 61416768, + 61273920, + 61273936, + 61616704, + 61651792, + 61596672, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588976, + 61694400, + 61456816, + 61434400, + 61434048, + 61483632, + 62035520, + 61353888, + 61354560, + 61354912, + 61701392, + 61282352, + 61273648, + 61282416, + 61720864, + 61623472, + 61623328, + 61274016, + 61274032, + 61636896, + 61729504, + 61273712 ], "bases": [ { @@ -7159,62 +7159,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65181600, - "methods": [ - 61824656, - 61864832, - 39223120, - 61269824, - 61269856, - 61269888, - 61271920, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61271952, - 61269504, - 61269520, - 61300816, - 61637216, - 61301056, - 61417472, - 61270016, - 61270032, - 61616832, - 61644864, - 61589744, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582384, - 61685120, - 61460816, - 61442048, - 61441696, - 61478320, - 62016832, - 61301376, - 61302048, - 61302400, - 61697488, - 61271968, - 61269744, - 61272032, - 61716960, - 61605456, - 61605312, - 61270112, - 61270128, - 61628272, - 61735008, - 61269808 + "vtable_address": 65185504, + "methods": [ + 61828560, + 61868736, + 39226960, + 61273728, + 61273760, + 61273792, + 61275824, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61275856, + 61273408, + 61273424, + 61304720, + 61641120, + 61304960, + 61421376, + 61273920, + 61273936, + 61620736, + 61648768, + 61593648, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586288, + 61689024, + 61464720, + 61445952, + 61445600, + 61482224, + 62020736, + 61305280, + 61305952, + 61306304, + 61701392, + 61275872, + 61273648, + 61275936, + 61720864, + 61609360, + 61609216, + 61274016, + 61274032, + 61632176, + 61738912, + 61273712 ], "bases": [ { @@ -7247,62 +7247,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65141152, - "methods": [ - 61823120, - 61895088, - 39223120, - 61269824, - 61269856, - 61269888, - 61275632, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61275664, - 61269504, - 61269520, - 61330448, - 61634784, - 61330688, - 61716720, - 61270016, - 61270032, - 61613520, - 61641840, - 61587008, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61579952, - 61680256, - 61456608, - 61435744, - 61435392, - 61479376, - 62024576, - 61331008, - 61331680, - 61332032, - 61697488, - 61275680, - 61269744, - 61275744, - 61716960, - 61599792, - 61599648, - 61270112, - 61270128, - 61623824, - 61727280, - 61269808 + "vtable_address": 65145056, + "methods": [ + 61827024, + 61898992, + 39226960, + 61273728, + 61273760, + 61273792, + 61279536, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61279568, + 61273408, + 61273424, + 61334352, + 61638688, + 61334592, + 61720624, + 61273920, + 61273936, + 61617424, + 61645744, + 61590912, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61583856, + 61684160, + 61460512, + 61439648, + 61439296, + 61483280, + 62028480, + 61334912, + 61335584, + 61335936, + 61701392, + 61279584, + 61273648, + 61279648, + 61720864, + 61603696, + 61603552, + 61274016, + 61274032, + 61627728, + 61731184, + 61273712 ], "bases": [ { @@ -7335,62 +7335,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65062568, - "methods": [ - 61814336, - 61814848, - 39223120, - 61269824, - 61269856, - 61269888, - 61282336, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61282368, - 61269504, - 61269520, - 61375168, - 61638752, - 61375408, - 61410368, - 61270016, - 61270032, - 61611072, - 61646592, - 61591472, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583920, - 61688192, - 61446544, - 61421072, - 61420720, - 61481488, - 62042880, - 61375728, - 61376400, - 61376752, - 61697488, - 61282384, - 61269744, - 61282448, - 61716960, - 61608912, - 61608768, - 61270112, - 61270128, - 61629808, - 61721568, - 61269808 + "vtable_address": 65066472, + "methods": [ + 61818240, + 61818752, + 39226960, + 61273728, + 61273760, + 61273792, + 61286240, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61286272, + 61273408, + 61273424, + 61379072, + 61642656, + 61379312, + 61414272, + 61273920, + 61273936, + 61614976, + 61650496, + 61595376, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587824, + 61692096, + 61450448, + 61424976, + 61424624, + 61485392, + 62046784, + 61379632, + 61380304, + 61380656, + 61701392, + 61286288, + 61273648, + 61286352, + 61720864, + 61612816, + 61612672, + 61274016, + 61274032, + 61633712, + 61725472, + 61273712 ], "bases": [ { @@ -7423,62 +7423,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65058000, - "methods": [ - 61813824, - 61861568, - 39223120, - 61269824, - 61269856, - 61269888, - 61282912, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61282944, - 61269504, - 61269520, - 61383920, - 61634400, - 61384160, - 61716000, - 61270016, - 61270032, - 61609344, - 61639872, - 61586576, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577376, - 61679488, - 61445888, - 61420032, - 61419680, - 61481840, - 62044288, - 61384480, - 61385152, - 61385504, - 61697488, - 61282960, - 61269744, - 61283024, - 61716960, - 61598160, - 61598016, - 61270112, - 61270128, - 61622784, - 61717872, - 61269808 + "vtable_address": 65061904, + "methods": [ + 61817728, + 61865472, + 39226960, + 61273728, + 61273760, + 61273792, + 61286816, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61286848, + 61273408, + 61273424, + 61387824, + 61638304, + 61388064, + 61719904, + 61273920, + 61273936, + 61613248, + 61643776, + 61590480, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581280, + 61683392, + 61449792, + 61423936, + 61423584, + 61485744, + 62048192, + 61388384, + 61389056, + 61389408, + 61701392, + 61286864, + 61273648, + 61286928, + 61720864, + 61602064, + 61601920, + 61274016, + 61274032, + 61626688, + 61721776, + 61273712 ], "bases": [ { @@ -7511,62 +7511,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65177136, - "methods": [ - 61824144, - 61864288, - 39223120, - 61269824, - 61269856, - 61269888, - 61272512, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61272544, - 61269504, - 61269520, - 61304240, - 61637472, - 61304480, - 61417088, - 61270016, - 61270032, - 61617120, - 61645152, - 61590032, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582640, - 61685632, - 61459408, - 61439952, - 61439584, - 61478672, - 62018240, - 61304800, - 61305472, - 61305824, - 61697488, - 61272560, - 61269744, - 61272624, - 61716960, - 61606032, - 61605888, - 61270112, - 61270128, - 61628528, - 61735680, - 61269808 + "vtable_address": 65181040, + "methods": [ + 61828048, + 61868192, + 39226960, + 61273728, + 61273760, + 61273792, + 61276416, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61276448, + 61273408, + 61273424, + 61308144, + 61641376, + 61308384, + 61420992, + 61273920, + 61273936, + 61621024, + 61649056, + 61593936, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586544, + 61689536, + 61463312, + 61443856, + 61443488, + 61482576, + 62022144, + 61308704, + 61309376, + 61309728, + 61701392, + 61276464, + 61273648, + 61276528, + 61720864, + 61609936, + 61609792, + 61274016, + 61274032, + 61632432, + 61739584, + 61273712 ], "bases": [ { @@ -7599,62 +7599,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65075600, - "methods": [ - 61815984, - 61816496, - 39223120, - 61269824, - 61269856, - 61269888, - 61281952, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61281984, - 61269504, - 61269520, - 61373456, - 61638624, - 61373696, - 61410560, - 61270016, - 61270032, - 61610928, - 61646448, - 61591328, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583792, - 61687936, - 61447200, - 61422128, - 61421760, - 61481136, - 62042176, - 61374016, - 61374688, - 61375040, - 61697488, - 61282000, - 61269744, - 61282064, - 61716960, - 61608624, - 61608480, - 61270112, - 61270128, - 61629680, - 61721232, - 61269808 + "vtable_address": 65079504, + "methods": [ + 61819888, + 61820400, + 39226960, + 61273728, + 61273760, + 61273792, + 61285856, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61285888, + 61273408, + 61273424, + 61377360, + 61642528, + 61377600, + 61414464, + 61273920, + 61273936, + 61614832, + 61650352, + 61595232, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587696, + 61691840, + 61451104, + 61426032, + 61425664, + 61485040, + 62046080, + 61377920, + 61378592, + 61378944, + 61701392, + 61285904, + 61273648, + 61285968, + 61720864, + 61612528, + 61612384, + 61274016, + 61274032, + 61633584, + 61725136, + 61273712 ], "bases": [ { @@ -7687,62 +7687,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65124144, - "methods": [ - 61925792, - 61998432, - 39223120, - 61269824, - 61269856, - 61269888, - 61278720, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61278752, - 61269504, - 61269520, - 61351136, - 61641328, - 61351376, - 61412672, - 61270016, - 61270032, - 61612944, - 61648032, - 61592912, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585200, - 61690752, - 61452256, - 61429456, - 61429104, - 61480080, - 62032320, - 61351696, - 61352368, - 61352720, - 61697488, - 61278768, - 61269744, - 61278832, - 61716960, - 61619856, - 61619712, - 61270112, - 61270128, - 61633120, - 61725936, - 61269808 + "vtable_address": 65128048, + "methods": [ + 61929696, + 62002336, + 39226960, + 61273728, + 61273760, + 61273792, + 61282624, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61282656, + 61273408, + 61273424, + 61355040, + 61645232, + 61355280, + 61416576, + 61273920, + 61273936, + 61616848, + 61651936, + 61596816, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589104, + 61694656, + 61456160, + 61433360, + 61433008, + 61483984, + 62036224, + 61355600, + 61356272, + 61356624, + 61701392, + 61282672, + 61273648, + 61282736, + 61720864, + 61623760, + 61623616, + 61274016, + 61274032, + 61637024, + 61729840, + 61273712 ], "bases": [ { @@ -7775,62 +7775,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65174904, - "methods": [ - 61930048, - 61998816, - 39223120, - 61269824, - 61269856, - 61269888, - 61272896, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61272928, - 61269504, - 61269520, - 61305952, - 61637600, - 61306192, - 61416896, - 61270016, - 61270032, - 61617264, - 61645296, - 61590176, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582768, - 61685888, - 61458752, - 61438896, - 61438544, - 61479024, - 62018944, - 61306512, - 61307184, - 61307536, - 61697488, - 61272944, - 61269744, - 61273008, - 61716960, - 61606320, - 61606176, - 61270112, - 61270128, - 61628656, - 61736016, - 61269808 + "vtable_address": 65178808, + "methods": [ + 61933952, + 62002720, + 39226960, + 61273728, + 61273760, + 61273792, + 61276800, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61276832, + 61273408, + 61273424, + 61309856, + 61641504, + 61310096, + 61420800, + 61273920, + 61273936, + 61621168, + 61649200, + 61594080, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586672, + 61689792, + 61462656, + 61442800, + 61442448, + 61482928, + 62022848, + 61310416, + 61311088, + 61311440, + 61701392, + 61276848, + 61273648, + 61276912, + 61720864, + 61610224, + 61610080, + 61274016, + 61274032, + 61632560, + 61739920, + 61273712 ], "bases": [ { @@ -7863,62 +7863,62 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 65071064, - "methods": [ - 61924320, - 61924688, - 39223120, - 61269824, - 61269856, - 61269888, - 61280480, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 39222928, - 61269472, - 61280512, - 61269504, - 61269520, - 61361424, - 61637728, - 61361664, - 61411904, - 61270016, - 61270032, - 61609920, - 61645440, - 61590320, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582896, - 61686144, - 61450160, - 61426320, - 61425968, - 61480784, - 62037248, - 61361984, - 61362656, - 61363008, - 61697488, - 61280528, - 61269744, - 61280592, - 61716960, - 61606608, - 61606464, - 61270112, - 61270128, - 61628784, - 61718880, - 61269808 + "vtable_address": 65074968, + "methods": [ + 61928224, + 61928592, + 39226960, + 61273728, + 61273760, + 61273792, + 61284384, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 39226768, + 61273376, + 61284416, + 61273408, + 61273424, + 61365328, + 61641632, + 61365568, + 61415808, + 61273920, + 61273936, + 61613824, + 61649344, + 61594224, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586800, + 61690048, + 61454064, + 61430224, + 61429872, + 61484688, + 62041152, + 61365888, + 61366560, + 61366912, + 61701392, + 61284432, + 61273648, + 61284496, + 61720864, + 61610512, + 61610368, + 61274016, + 61274032, + 61632688, + 61722784, + 61273712 ], "bases": [ { @@ -7951,68 +7951,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65193504, - "methods": [ - 61875792, - 61877472, - 39223120, - 61269824, - 61269856, - 61269888, - 61284128, - 61269920, - 61269936, - 61270000, - 61284144, - 39222912, - 39222928, - 61269472, - 61284160, - 61269504, - 61269520, - 61505520, - 61636320, - 61328896, - 61415552, - 61270016, - 61270032, - 61615248, - 61643856, - 61588736, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581488, - 61683328, - 61443120, - 61620864, - 61623168, - 61566480, - 62050624, - 61329216, - 61329888, - 61330240, - 61697488, - 61642704, - 61269744, - 61291184, - 61716960, - 61603248, - 61603104, - 61270112, - 61270128, - 61627376, - 61731312, - 61269808, - 61566176, - 61515712, - 62288960, - 61571744, - 61284176, - 61284208 + "vtable_address": 65197408, + "methods": [ + 61879696, + 61881376, + 39226960, + 61273728, + 61273760, + 61273792, + 61288032, + 61273824, + 61273840, + 61273904, + 61288048, + 39226752, + 39226768, + 61273376, + 61288064, + 61273408, + 61273424, + 61509424, + 61640224, + 61332800, + 61419456, + 61273920, + 61273936, + 61619152, + 61647760, + 61592640, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585392, + 61687232, + 61447024, + 61624768, + 61627072, + 61570384, + 62054528, + 61333120, + 61333792, + 61334144, + 61701392, + 61646608, + 61273648, + 61295088, + 61720864, + 61607152, + 61607008, + 61274016, + 61274032, + 61631280, + 61735216, + 61273712, + 61570080, + 61519616, + 62292864, + 61575648, + 61288080, + 61288112 ], "bases": [ { @@ -8077,16 +8077,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65194000, + "vtable_address": 65197904, "methods": [ - 61290096, - 61503488, - 62289648, - 61284192, - 61284224, - 61516464, - 61565888, - 61571488 + 61294000, + 61507392, + 62293552, + 61288096, + 61288128, + 61520368, + 61569792, + 61575392 ], "bases": [ { @@ -8151,68 +8151,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65173120, - "methods": [ - 61837792, - 61837824, - 39223120, - 61269824, - 61269856, - 61269888, - 61271808, - 61269920, - 61269936, - 61270000, - 61271824, - 39222912, - 39222928, - 61269472, - 61271840, - 61269504, - 61269520, - 61299088, - 61637088, - 61299344, - 61417664, - 61270016, - 61270032, - 61616688, - 61644720, - 61589600, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582256, - 61684864, - 61463312, - 61497360, - 61462832, - 61513376, - 62016128, - 61299664, - 61300336, - 61300688, - 61697488, - 61559152, - 61269744, - 61290880, - 61716960, - 61605168, - 61605024, - 61270112, - 61270128, - 61628144, - 61734672, - 61269808, - 61553216, - 61674720, - 62300704, - 61403168, - 61271856, - 61271888 + "vtable_address": 65177024, + "methods": [ + 61841696, + 61841728, + 39226960, + 61273728, + 61273760, + 61273792, + 61275712, + 61273824, + 61273840, + 61273904, + 61275728, + 39226752, + 39226768, + 61273376, + 61275744, + 61273408, + 61273424, + 61302992, + 61640992, + 61303248, + 61421568, + 61273920, + 61273936, + 61620592, + 61648624, + 61593504, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586160, + 61688768, + 61467216, + 61501264, + 61466736, + 61517280, + 62020032, + 61303568, + 61304240, + 61304592, + 61701392, + 61563056, + 61273648, + 61294784, + 61720864, + 61609072, + 61608928, + 61274016, + 61274032, + 61632048, + 61738576, + 61273712, + 61557120, + 61678624, + 62304608, + 61407072, + 61275760, + 61275792 ], "bases": [ { @@ -8277,16 +8277,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65173616, + "vtable_address": 65177520, "methods": [ - 61289776, - 61286704, - 62301392, - 61271872, - 61271904, - 61674032, - 61553008, - 61403808 + 61293680, + 61290608, + 62305296, + 61275776, + 61275808, + 61677936, + 61556912, + 61407712 ], "bases": [ { @@ -8351,68 +8351,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65091888, - "methods": [ - 61913888, - 61920656, - 39223120, - 61269824, - 61269856, - 61269888, - 61281088, - 61269920, - 61269936, - 61270000, - 61281104, - 39222912, - 39222928, - 61269472, - 61281120, - 61269504, - 61269520, - 61366576, - 61638112, - 61366832, - 61411328, - 61270016, - 61270032, - 61610352, - 61645872, - 61590752, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583280, - 61686912, - 61461952, - 61492256, - 61461472, - 61514016, - 62039360, - 61367152, - 61367824, - 61368176, - 61697488, - 61559344, - 61269744, - 61290576, - 61716960, - 61607472, - 61607328, - 61270112, - 61270128, - 61629168, - 61719888, - 61269808, - 61553616, - 61676048, - 62299392, - 61393152, - 61281136, - 61281168 + "vtable_address": 65095792, + "methods": [ + 61917792, + 61924560, + 39226960, + 61273728, + 61273760, + 61273792, + 61284992, + 61273824, + 61273840, + 61273904, + 61285008, + 39226752, + 39226768, + 61273376, + 61285024, + 61273408, + 61273424, + 61370480, + 61642016, + 61370736, + 61415232, + 61273920, + 61273936, + 61614256, + 61649776, + 61594656, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587184, + 61690816, + 61465856, + 61496160, + 61465376, + 61517920, + 62043264, + 61371056, + 61371728, + 61372080, + 61701392, + 61563248, + 61273648, + 61294480, + 61720864, + 61611376, + 61611232, + 61274016, + 61274032, + 61633072, + 61723792, + 61273712, + 61557520, + 61679952, + 62303296, + 61397056, + 61285040, + 61285072 ], "bases": [ { @@ -8477,16 +8477,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65092384, + "vtable_address": 65096288, "methods": [ - 61289936, - 61287056, - 62300080, - 61281152, - 61281184, - 61675360, - 61553408, - 61393792 + 61293840, + 61290960, + 62303984, + 61285056, + 61285088, + 61679264, + 61557312, + 61397696 ], "bases": [ { @@ -8551,68 +8551,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialInputContainer_t>", - "vtable_address": 65146064, - "methods": [ - 61915568, - 61922384, - 39223120, - 61269824, - 61269856, - 61269888, - 61276464, - 61269920, - 61269936, - 61270000, - 61276480, - 39222912, - 39222928, - 61269472, - 61276496, - 61269504, - 61269520, - 61335600, - 61635296, - 61335840, - 61414592, - 61270016, - 61270032, - 61614096, - 61642416, - 61587584, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580464, - 61681280, - 61455024, - 61433632, - 61433280, - 61483664, - 62026688, - 61336160, - 61336832, - 61337184, - 61697488, - 61276512, - 61269744, - 61507568, - 61716960, - 61600944, - 61600800, - 61270112, - 61270128, - 61624336, - 61728624, - 61269808, - 61290256, - 61473584, - 62271072, - 61571232, - 61276576, - 61276608 + "vtable_address": 65149968, + "methods": [ + 61919472, + 61926288, + 39226960, + 61273728, + 61273760, + 61273792, + 61280368, + 61273824, + 61273840, + 61273904, + 61280384, + 39226752, + 39226768, + 61273376, + 61280400, + 61273408, + 61273424, + 61339504, + 61639200, + 61339744, + 61418496, + 61273920, + 61273936, + 61618000, + 61646320, + 61591488, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584368, + 61685184, + 61458928, + 61437536, + 61437184, + 61487568, + 62030592, + 61340064, + 61340736, + 61341088, + 61701392, + 61280416, + 61273648, + 61511472, + 61720864, + 61604848, + 61604704, + 61274016, + 61274032, + 61628240, + 61732528, + 61273712, + 61294160, + 61477488, + 62274976, + 61575136, + 61280480, + 61280512 ], "bases": [ { @@ -8677,16 +8677,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialInputContainer_t>", - "vtable_address": 65146560, + "vtable_address": 65150464, "methods": [ - 61289616, - 61286880, - 62271168, - 61276592, - 61276624, - 61473872, - 61290336, - 61570976 + 61293520, + 61290784, + 62275072, + 61280496, + 61280528, + 61477776, + 61294240, + 61574880 ], "bases": [ { @@ -8751,68 +8751,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65089080, - "methods": [ - 61912208, - 61918928, - 39223120, - 61269824, - 61269856, - 61269888, - 61281232, - 61269920, - 61269936, - 61270000, - 61281248, - 39222912, - 39222928, - 61269472, - 61281264, - 61269504, - 61269520, - 61368304, - 61638240, - 61368544, - 61411136, - 61270016, - 61270032, - 61610496, - 61646016, - 61590896, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583408, - 61687168, - 61448576, - 61424208, - 61423856, - 61485136, - 62040064, - 61368864, - 61369536, - 61369888, - 61697488, - 61281280, - 61269744, - 61504128, - 61716960, - 61607760, - 61607616, - 61270112, - 61270128, - 61629296, - 61720224, - 61269808, - 61290416, - 61474176, - 62270352, - 61575328, - 61281344, - 61281376 + "vtable_address": 65092984, + "methods": [ + 61916112, + 61922832, + 39226960, + 61273728, + 61273760, + 61273792, + 61285136, + 61273824, + 61273840, + 61273904, + 61285152, + 39226752, + 39226768, + 61273376, + 61285168, + 61273408, + 61273424, + 61372208, + 61642144, + 61372448, + 61415040, + 61273920, + 61273936, + 61614400, + 61649920, + 61594800, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587312, + 61691072, + 61452480, + 61428112, + 61427760, + 61489040, + 62043968, + 61372768, + 61373440, + 61373792, + 61701392, + 61285184, + 61273648, + 61508032, + 61720864, + 61611664, + 61611520, + 61274016, + 61274032, + 61633200, + 61724128, + 61273712, + 61294320, + 61478080, + 62274256, + 61579232, + 61285248, + 61285280 ], "bases": [ { @@ -8877,16 +8877,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65089576, + "vtable_address": 65093480, "methods": [ - 61289616, - 61286880, - 62270448, - 61281360, - 61281392, - 61474464, - 61290496, - 61575072 + 61293520, + 61290784, + 62274352, + 61285264, + 61285296, + 61478368, + 61294400, + 61578976 ], "bases": [ { @@ -8951,68 +8951,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65100992, - "methods": [ - 61829536, - 61829568, - 39223120, - 61269824, - 61269856, - 61269888, - 61280160, - 61269920, - 61269936, - 61270000, - 61280176, - 39222912, - 39222928, - 61269472, - 61280192, - 61269504, - 61269520, - 61380400, - 61634144, - 61380640, - 61715520, - 61270016, - 61270032, - 61611504, - 61639584, - 61586288, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577120, - 61678976, - 61450816, - 61427360, - 61427008, - 61484400, - 62035840, - 61380960, - 61381632, - 61381984, - 61697488, - 61286304, - 61269744, - 61280208, - 61716960, - 61597584, - 61597440, - 61270112, - 61270128, - 61622528, - 61722576, - 61269808, - 61285280, - 61476544, - 62266192, - 61569568, - 61280224, - 61280256 + "vtable_address": 65104896, + "methods": [ + 61833440, + 61833472, + 39226960, + 61273728, + 61273760, + 61273792, + 61284064, + 61273824, + 61273840, + 61273904, + 61284080, + 39226752, + 39226768, + 61273376, + 61284096, + 61273408, + 61273424, + 61384304, + 61638048, + 61384544, + 61719424, + 61273920, + 61273936, + 61615408, + 61643488, + 61590192, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581024, + 61682880, + 61454720, + 61431264, + 61430912, + 61488304, + 62039744, + 61384864, + 61385536, + 61385888, + 61701392, + 61290208, + 61273648, + 61284112, + 61720864, + 61601488, + 61601344, + 61274016, + 61274032, + 61626432, + 61726480, + 61273712, + 61289184, + 61480448, + 62270096, + 61573472, + 61284128, + 61284160 ], "bases": [ { @@ -9077,16 +9077,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65101488, + "vtable_address": 65105392, "methods": [ - 61285760, - 61559744, - 62266288, - 61280240, - 61280272, - 61476832, - 61285360, - 61569312 + 61289664, + 61563648, + 62270192, + 61284144, + 61284176, + 61480736, + 61289264, + 61573216 ], "bases": [ { @@ -9151,68 +9151,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65111176, - "methods": [ - 61830576, - 61830608, - 39223120, - 61269824, - 61269856, - 61269888, - 61277216, - 61269920, - 61269936, - 61270000, - 61277232, - 39222912, - 39222928, - 61269472, - 61277248, - 61269504, - 61269520, - 61342560, - 61640560, - 61342800, - 61413824, - 61270016, - 61270032, - 61612080, - 61647168, - 61592048, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584432, - 61689216, - 61454240, - 61432576, - 61432224, - 61484032, - 62028800, - 61343120, - 61343792, - 61344144, - 61697488, - 61286176, - 61269744, - 61277264, - 61716960, - 61618128, - 61617984, - 61270112, - 61270128, - 61632352, - 61723920, - 61269808, - 61285120, - 61475952, - 62266384, - 61578528, - 61277280, - 61277312 + "vtable_address": 65115080, + "methods": [ + 61834480, + 61834512, + 39226960, + 61273728, + 61273760, + 61273792, + 61281120, + 61273824, + 61273840, + 61273904, + 61281136, + 39226752, + 39226768, + 61273376, + 61281152, + 61273408, + 61273424, + 61346464, + 61644464, + 61346704, + 61417728, + 61273920, + 61273936, + 61615984, + 61651072, + 61595952, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588336, + 61693120, + 61458144, + 61436480, + 61436128, + 61487936, + 62032704, + 61347024, + 61347696, + 61348048, + 61701392, + 61290080, + 61273648, + 61281168, + 61720864, + 61622032, + 61621888, + 61274016, + 61274032, + 61636256, + 61727824, + 61273712, + 61289024, + 61479856, + 62270288, + 61582432, + 61281184, + 61281216 ], "bases": [ { @@ -9277,16 +9277,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65111672, + "vtable_address": 65115576, "methods": [ - 61285760, - 61559744, - 62266480, - 61277296, - 61277328, - 61476240, - 61285200, - 61578272 + 61289664, + 61563648, + 62270384, + 61281200, + 61281232, + 61480144, + 61289104, + 61582176 ], "bases": [ { @@ -9351,142 +9351,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65148296, - "methods": [ - 61834160, - 61834192, - 39223120, - 61269824, - 61269856, - 61269888, - 61275952, - 61269920, - 61269936, - 61270000, - 61275968, - 39222912, - 39222928, - 61269472, - 61275984, - 61269504, - 61269520, - 61332160, - 61634912, - 61332400, - 61415168, - 61270016, - 61270032, - 61613664, - 61641984, - 61587152, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580080, - 61680512, - 61455824, - 61434688, - 61434336, - 61483296, - 62025280, - 61332720, - 61333392, - 61333744, - 61697488, - 61286048, - 61269744, - 61276000, - 61716960, - 61600080, - 61599936, - 61270112, - 61270128, - 61623952, - 61727616, - 61269808, - 61284960, - 61475360, - 62266576, - 61570720, - 61276016, - 61276048 - ], - "bases": [ - { - "type_name": "CBaseConcreteToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - }, - { - "type_name": "IToolAttr_TypedValue", - "details": { - "Itanium": { - "offset": 728, - "flags": 2, - "bases": [ - { - "type_name": "IToolAttr_Value", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65148792, + "vtable_address": 65152200, "methods": [ - 61285760, - 61559744, - 62266672, - 61276032, - 61276064, - 61475648, - 61285040, - 61570464 + 61838064, + 61838096, + 39226960, + 61273728, + 61273760, + 61273792, + 61279856, + 61273824, + 61273840, + 61273904, + 61279872, + 39226752, + 39226768, + 61273376, + 61279888, + 61273408, + 61273424, + 61336064, + 61638816, + 61336304, + 61419072, + 61273920, + 61273936, + 61617568, + 61645888, + 61591056, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61583984, + 61684416, + 61459728, + 61438592, + 61438240, + 61487200, + 62029184, + 61336624, + 61337296, + 61337648, + 61701392, + 61289952, + 61273648, + 61279904, + 61720864, + 61603984, + 61603840, + 61274016, + 61274032, + 61627856, + 61731520, + 61273712, + 61288864, + 61479264, + 62270480, + 61574624, + 61279920, + 61279952 ], "bases": [ { @@ -9543,132 +9469,6 @@ } } ], - "model": { - "Itanium": { - "offset_to_top": -728 - } - } - }, - { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65060784, - "methods": [ - 61826736, - 61826768, - 39223120, - 61269824, - 61269856, - 61269888, - 61280800, - 61269920, - 61269936, - 61270000, - 61280816, - 39222912, - 39222928, - 61269472, - 61280832, - 61269504, - 61269520, - 61363136, - 61637856, - 61363376, - 61411712, - 61270016, - 61270032, - 61610064, - 61645584, - 61590464, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583024, - 61686400, - 61449376, - 61425264, - 61424912, - 61484768, - 62037952, - 61363696, - 61364368, - 61364720, - 61697488, - 61286432, - 61269744, - 61280848, - 61716960, - 61606896, - 61606752, - 61270112, - 61270128, - 61628912, - 61719216, - 61269808, - 61285440, - 61477136, - 62266000, - 61574304, - 61280864, - 61280896 - ], - "bases": [ - { - "type_name": "CBaseConcreteToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - }, - { - "type_name": "IToolAttr_TypedValue", - "details": { - "Itanium": { - "offset": 728, - "flags": 2, - "bases": [ - { - "type_name": "IToolAttr_Value", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ], "model": { "Itanium": { "offset_to_top": 0 @@ -9676,21 +9476,21 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65061280, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65152696, "methods": [ - 61285760, - 61559744, - 62266096, - 61280880, - 61280912, - 61477424, - 61285520, - 61574048 + 61289664, + 61563648, + 62270576, + 61279936, + 61279968, + 61479552, + 61288944, + 61574368 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -9750,73 +9550,73 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65055640, - "methods": [ - 61825792, - 61825824, - 39223120, - 61269824, - 61269856, - 61269888, - 61283264, - 61269920, - 61269936, - 61270000, - 61283280, - 39222912, - 39222928, - 61269472, - 61283296, - 61269504, - 61269520, - 61385632, - 61634528, - 61385872, - 61716240, - 61270016, - 61270032, - 61609632, - 61640016, - 61586720, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577504, - 61679744, - 61445104, - 61418976, - 61418624, - 61485504, - 62044992, - 61386192, - 61386864, - 61387216, - 61697488, - 61286560, - 61269744, - 61283312, - 61716960, - 61598448, - 61598304, - 61270112, - 61270128, - 61622912, - 61718208, - 61269808, - 61285600, - 61477728, - 62265808, - 61569056, - 61283328, - 61283360 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65064688, + "methods": [ + 61830640, + 61830672, + 39226960, + 61273728, + 61273760, + 61273792, + 61284704, + 61273824, + 61273840, + 61273904, + 61284720, + 39226752, + 39226768, + 61273376, + 61284736, + 61273408, + 61273424, + 61367040, + 61641760, + 61367280, + 61415616, + 61273920, + 61273936, + 61613968, + 61649488, + 61594368, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586928, + 61690304, + 61453280, + 61429168, + 61428816, + 61488672, + 62041856, + 61367600, + 61368272, + 61368624, + 61701392, + 61290336, + 61273648, + 61284752, + 61720864, + 61610800, + 61610656, + 61274016, + 61274032, + 61632816, + 61723120, + 61273712, + 61289344, + 61481040, + 62269904, + 61578208, + 61284768, + 61284800 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -9876,21 +9676,21 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65056136, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65065184, "methods": [ - 61285760, - 61559744, - 62265904, - 61283344, - 61283376, - 61478016, - 61285680, - 61568800 + 61289664, + 61563648, + 62270000, + 61284784, + 61284816, + 61481328, + 61289424, + 61577952 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -9950,73 +9750,73 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65164824, - "methods": [ - 61835888, - 61835920, - 39223120, - 61269824, - 61269856, - 61269888, - 61273872, - 61269920, - 61269936, - 61270000, - 61273888, - 39222912, - 39222928, - 61269472, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65059544, + "methods": [ + 61829696, + 61829728, + 39226960, + 61273728, + 61273760, + 61273792, + 61287168, + 61273824, + 61273840, 61273904, - 61269504, - 61269520, - 61315680, - 61569824, - 61315920, - 61693392, - 61270016, - 61270032, - 61615536, - 61579808, - 61561328, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61559024, - 61648608, - 61457264, - 61436784, - 61436432, - 61482928, - 62021056, - 61316240, - 61316912, - 61712272, - 61697488, - 61285920, - 61269744, + 61287184, + 39226752, + 39226768, + 61273376, + 61287200, + 61273408, + 61273424, + 61389536, + 61638432, + 61389776, + 61720144, 61273920, - 61716960, - 61567504, - 61567360, - 61270112, - 61270128, - 61567648, - 61731984, - 61269808, - 61284800, - 61474768, - 62266768, - 61557104, 61273936, - 61273968 + 61613536, + 61643920, + 61590624, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581408, + 61683648, + 61449008, + 61422880, + 61422528, + 61489408, + 62048896, + 61390096, + 61390768, + 61391120, + 61701392, + 61290464, + 61273648, + 61287216, + 61720864, + 61602352, + 61602208, + 61274016, + 61274032, + 61626816, + 61722112, + 61273712, + 61289504, + 61481632, + 62269712, + 61572960, + 61287232, + 61287264 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -10076,21 +9876,21 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65165320, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65060040, "methods": [ - 61285760, - 61559744, - 62266864, - 61273952, - 61273984, - 61475056, - 61284880, - 61556848 + 61289664, + 61563648, + 62269808, + 61287248, + 61287280, + 61481920, + 61289584, + 61572704 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -10150,73 +9950,73 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65136216, - "methods": [ - 61856816, - 61871328, - 39223120, - 61269824, - 61269856, - 61269888, - 61277344, - 61269920, - 61269936, - 61270000, - 61277360, - 39222912, - 39222928, - 61269472, - 61277376, - 61269504, - 61269520, - 61344272, - 61640688, - 61344512, - 61413632, - 61270016, - 61270032, - 61612224, - 61647312, - 61592192, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584560, - 61689472, - 61453568, - 61431536, - 61431184, - 61485872, - 62029504, - 61344832, - 61345504, - 61345856, - 61697488, - 61277392, - 61269744, - 61277456, - 61716960, - 61618416, - 61618272, - 61270112, - 61270128, - 61632480, - 61724256, - 61269808, - 61277472, - 61464928, - 62273072, - 61579552, - 61277600, - 61277632 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65168728, + "methods": [ + 61839792, + 61839824, + 39226960, + 61273728, + 61273760, + 61273792, + 61277776, + 61273824, + 61273840, + 61273904, + 61277792, + 39226752, + 39226768, + 61273376, + 61277808, + 61273408, + 61273424, + 61319584, + 61573728, + 61319824, + 61697296, + 61273920, + 61273936, + 61619440, + 61583712, + 61565232, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61562928, + 61652512, + 61461168, + 61440688, + 61440336, + 61486832, + 62024960, + 61320144, + 61320816, + 61716176, + 61701392, + 61289824, + 61273648, + 61277824, + 61720864, + 61571408, + 61571264, + 61274016, + 61274032, + 61571552, + 61735888, + 61273712, + 61288704, + 61478672, + 62270672, + 61561008, + 61277840, + 61277872 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -10248,10 +10048,10 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { - "offset": 720, + "offset": 728, "flags": 2, "bases": [ { @@ -10275,18 +10075,144 @@ } } }, + { + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65169224, + "methods": [ + 61289664, + 61563648, + 62270768, + 61277856, + 61277888, + 61478960, + 61288784, + 61560752 + ], + "bases": [ + { + "type_name": "CBaseConcreteToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + }, + { + "type_name": "IToolAttr_TypedValue", + "details": { + "Itanium": { + "offset": 728, + "flags": 2, + "bases": [ + { + "type_name": "IToolAttr_Value", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": -728 + } + } + }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65136712, + "vtable_address": 65140120, "methods": [ - 61291488, - 61288048, - 62273168, - 61277616, - 61277648, - 61465200, - 61277536, - 61579296 + 61860720, + 61875232, + 39226960, + 61273728, + 61273760, + 61273792, + 61281248, + 61273824, + 61273840, + 61273904, + 61281264, + 39226752, + 39226768, + 61273376, + 61281280, + 61273408, + 61273424, + 61348176, + 61644592, + 61348416, + 61417536, + 61273920, + 61273936, + 61616128, + 61651216, + 61596096, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588464, + 61693376, + 61457472, + 61435440, + 61435088, + 61489776, + 62033408, + 61348736, + 61349408, + 61349760, + 61701392, + 61281296, + 61273648, + 61281360, + 61720864, + 61622320, + 61622176, + 61274016, + 61274032, + 61636384, + 61728160, + 61273712, + 61281376, + 61468832, + 62276976, + 61583456, + 61281504, + 61281536 ], "bases": [ { @@ -10345,78 +10271,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65084616, - "methods": [ - 61852064, - 61866864, - 39223120, - 61269824, - 61269856, - 61269888, - 61281600, - 61269920, - 61269936, - 61270000, - 61281616, - 39222912, - 39222928, - 61269472, - 61281632, - 61269504, - 61269520, - 61371744, - 61638496, - 61371984, - 61410752, - 61270016, - 61270032, - 61610784, - 61646304, - 61591184, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583664, - 61687680, - 61447904, - 61423168, - 61422816, - 61486224, - 62041472, - 61372304, - 61372976, - 61373328, - 61697488, - 61281648, - 61269744, - 61281712, - 61716960, - 61608336, - 61608192, - 61270112, - 61270128, - 61629552, - 61720896, - 61269808, - 61281728, - 61465488, - 62272400, - 61575840, - 61281856, - 61281888 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65140616, + "methods": [ + 61295392, + 61291952, + 62277072, + 61281520, + 61281552, + 61469104, + 61281440, + 61583200 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -10471,22 +10345,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65085112, + "vtable_address": 65088520, "methods": [ - 61291488, - 61288048, - 62272496, - 61281872, - 61281904, - 61465760, - 61281792, - 61575584 + 61855968, + 61870768, + 39226960, + 61273728, + 61273760, + 61273792, + 61285504, + 61273824, + 61273840, + 61273904, + 61285520, + 39226752, + 39226768, + 61273376, + 61285536, + 61273408, + 61273424, + 61375648, + 61642400, + 61375888, + 61414656, + 61273920, + 61273936, + 61614688, + 61650208, + 61595088, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587568, + 61691584, + 61451808, + 61427072, + 61426720, + 61490128, + 62045376, + 61376208, + 61376880, + 61377232, + 61701392, + 61285552, + 61273648, + 61285616, + 61720864, + 61612240, + 61612096, + 61274016, + 61274032, + 61633456, + 61724800, + 61273712, + 61285632, + 61469392, + 62276304, + 61579744, + 61285760, + 61285792 ], "bases": [ { @@ -10545,78 +10471,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65098760, - "methods": [ - 61884960, - 61904176, - 39223120, - 61269824, - 61269856, - 61269888, - 61280320, - 61269920, - 61269936, - 61270000, - 61280336, - 39222912, - 39222928, - 61269472, - 61280352, - 61269504, - 61269520, - 61382112, - 61634272, - 61382368, - 61715760, - 61270016, - 61270032, - 61611648, - 61639728, - 61586432, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577248, - 61679232, - 61501232, - 61493968, - 61488368, - 61510256, - 62036544, - 61382688, - 61383360, - 61383712, - 61697488, - 61555408, - 61269744, - 61280368, - 61716960, - 61597872, - 61597728, - 61270112, - 61270128, - 61622656, - 61722912, - 61269808, - 61544976, - 61664160, - 62294816, - 61395712, - 61280384, - 61280416 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65089016, + "methods": [ + 61295392, + 61291952, + 62276400, + 61285776, + 61285808, + 61469664, + 61285696, + 61579488 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -10648,7 +10522,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -10671,22 +10545,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65099256, + "vtable_address": 65102664, "methods": [ - 61289056, - 61288320, - 62295392, - 61280400, - 61280432, - 61663472, - 61544768, - 61396304 + 61888864, + 61908080, + 39226960, + 61273728, + 61273760, + 61273792, + 61284224, + 61273824, + 61273840, + 61273904, + 61284240, + 39226752, + 39226768, + 61273376, + 61284256, + 61273408, + 61273424, + 61386016, + 61638176, + 61386272, + 61719664, + 61273920, + 61273936, + 61615552, + 61643632, + 61590336, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581152, + 61683136, + 61505136, + 61497872, + 61492272, + 61514160, + 62040448, + 61386592, + 61387264, + 61387616, + 61701392, + 61559312, + 61273648, + 61284272, + 61720864, + 61601776, + 61601632, + 61274016, + 61274032, + 61626560, + 61726816, + 61273712, + 61548880, + 61668064, + 62298720, + 61399616, + 61284288, + 61284320 ], "bases": [ { @@ -10745,78 +10671,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65108944, - "methods": [ - 61886544, - 61905664, - 39223120, - 61269824, - 61269856, - 61269888, - 61279616, - 61269920, - 61269936, - 61270000, - 61279632, - 39222912, - 39222928, - 61269472, - 61279648, - 61269504, - 61269520, - 61356288, - 61641712, - 61356544, - 61412096, - 61270016, - 61270032, - 61613376, - 61648464, - 61593344, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585584, - 61691520, - 61501984, - 61494816, - 61488816, - 61509632, - 62034432, - 61356864, - 61357536, - 61357888, - 61697488, - 61556288, - 61269744, - 61279664, - 61716960, - 61620720, - 61620576, - 61270112, - 61270128, - 61633504, - 61726944, - 61269808, - 61550336, - 61672064, - 62295952, - 61396912, - 61279680, - 61279712 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65103160, + "methods": [ + 61292960, + 61292224, + 62299296, + 61284304, + 61284336, + 61667376, + 61548672, + 61400208 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -10848,7 +10722,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -10871,22 +10745,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65109440, + "vtable_address": 65112848, "methods": [ - 61288944, - 61288240, - 62296528, - 61279696, - 61279728, - 61671376, - 61550128, - 61397504 + 61890448, + 61909568, + 39226960, + 61273728, + 61273760, + 61273792, + 61283520, + 61273824, + 61273840, + 61273904, + 61283536, + 39226752, + 39226768, + 61273376, + 61283552, + 61273408, + 61273424, + 61360192, + 61645616, + 61360448, + 61416000, + 61273920, + 61273936, + 61617280, + 61652368, + 61597248, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589488, + 61695424, + 61505888, + 61498720, + 61492720, + 61513536, + 62038336, + 61360768, + 61361440, + 61361792, + 61701392, + 61560192, + 61273648, + 61283568, + 61720864, + 61624624, + 61624480, + 61274016, + 61274032, + 61637408, + 61730848, + 61273712, + 61554240, + 61675968, + 62299856, + 61400816, + 61283584, + 61283616 ], "bases": [ { @@ -10945,78 +10871,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65143832, - "methods": [ - 61890240, - 61909136, - 39223120, - 61269824, - 61269856, - 61269888, - 61276672, - 61269920, - 61269936, - 61270000, - 61276688, - 39222912, - 39222928, - 61269472, - 61276704, - 61269504, - 61269520, - 61337312, - 61635424, - 61337568, - 61414400, - 61270016, - 61270032, - 61614240, - 61642560, - 61587728, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580592, - 61681536, - 61502736, - 61496512, - 61489264, - 61509008, - 62027392, - 61337888, - 61338560, - 61338912, - 61697488, - 61555584, - 61269744, - 61276720, - 61716960, - 61601232, - 61601088, - 61270112, - 61270128, - 61624464, - 61728960, - 61269808, - 61545392, - 61666752, - 62297088, - 61399728, - 61276736, - 61276768 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65113344, + "methods": [ + 61292848, + 61292144, + 62300432, + 61283600, + 61283632, + 61675280, + 61554032, + 61401408 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -11048,7 +10922,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -11071,22 +10945,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65144328, + "vtable_address": 65147736, "methods": [ - 61288832, - 61288160, - 62297664, - 61276752, - 61276784, - 61666064, - 61545184, - 61400320 + 61894144, + 61913040, + 39226960, + 61273728, + 61273760, + 61273792, + 61280576, + 61273824, + 61273840, + 61273904, + 61280592, + 39226752, + 39226768, + 61273376, + 61280608, + 61273408, + 61273424, + 61341216, + 61639328, + 61341472, + 61418304, + 61273920, + 61273936, + 61618144, + 61646464, + 61591632, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584496, + 61685440, + 61506640, + 61500416, + 61493168, + 61512912, + 62031296, + 61341792, + 61342464, + 61342816, + 61701392, + 61559488, + 61273648, + 61280624, + 61720864, + 61605136, + 61604992, + 61274016, + 61274032, + 61628368, + 61732864, + 61273712, + 61549296, + 61670656, + 62300992, + 61403632, + 61280640, + 61280672 ], "bases": [ { @@ -11145,78 +11071,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65068704, - "methods": [ - 61880208, - 61899712, - 39223120, - 61269824, - 61269856, - 61269888, - 61282688, - 61269920, - 61269936, - 61270000, - 61282704, - 39222912, - 39222928, - 61269472, - 61282720, - 61269504, - 61269520, - 61376880, - 61638880, - 61377136, - 61410176, - 61270016, - 61270032, - 61611216, - 61646736, - 61591616, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584048, - 61688448, - 61498976, - 61490560, - 61487024, - 61512128, - 62043584, - 61377456, - 61378128, - 61378480, - 61697488, - 61555760, - 61269744, - 61282736, - 61716960, - 61609200, - 61609056, - 61270112, - 61270128, - 61629936, - 61721904, - 61269808, - 61548512, - 61670736, - 62293680, - 61390752, - 61282752, - 61282784 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65148232, + "methods": [ + 61292736, + 61292064, + 62301568, + 61280656, + 61280688, + 61669968, + 61549088, + 61404224 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -11248,7 +11122,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -11271,22 +11145,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65069200, + "vtable_address": 65072608, "methods": [ - 61289392, - 61288560, - 62294256, - 61282768, - 61282800, - 61670048, - 61548304, - 61391344 + 61884112, + 61903616, + 39226960, + 61273728, + 61273760, + 61273792, + 61286592, + 61273824, + 61273840, + 61273904, + 61286608, + 39226752, + 39226768, + 61273376, + 61286624, + 61273408, + 61273424, + 61380784, + 61642784, + 61381040, + 61414080, + 61273920, + 61273936, + 61615120, + 61650640, + 61595520, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587952, + 61692352, + 61502880, + 61494464, + 61490928, + 61516032, + 62047488, + 61381360, + 61382032, + 61382384, + 61701392, + 61559664, + 61273648, + 61286640, + 61720864, + 61613104, + 61612960, + 61274016, + 61274032, + 61633840, + 61725808, + 61273712, + 61552416, + 61674640, + 62297584, + 61394656, + 61286656, + 61286688 ], "bases": [ { @@ -11345,78 +11271,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65094696, - "methods": [ - 61883376, - 61902688, - 39223120, - 61269824, - 61269856, - 61269888, - 61280928, - 61269920, - 61269936, - 61270000, - 61280944, - 39222912, - 39222928, - 61269472, - 61280960, - 61269504, - 61269520, - 61364848, - 61637984, - 61365104, - 61411520, - 61270016, - 61270032, - 61610208, - 61645728, - 61590608, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583152, - 61686656, - 61500480, - 61493120, - 61487920, - 61510880, - 62038656, - 61365424, - 61366096, - 61366448, - 61697488, - 61556112, - 61269744, - 61280976, - 61716960, - 61607184, - 61607040, - 61270112, - 61270128, - 61629040, - 61719552, - 61269808, - 61547680, - 61668080, - 62291408, - 61394512, - 61280992, - 61281024 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65073104, + "methods": [ + 61293296, + 61292464, + 62298160, + 61286672, + 61286704, + 61673952, + 61552208, + 61395248 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -11448,7 +11322,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -11471,22 +11345,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65095192, + "vtable_address": 65098600, "methods": [ - 61289168, - 61288400, - 62291984, - 61281008, - 61281040, - 61667392, - 61547472, - 61395104 + 61887280, + 61906592, + 39226960, + 61273728, + 61273760, + 61273792, + 61284832, + 61273824, + 61273840, + 61273904, + 61284848, + 39226752, + 39226768, + 61273376, + 61284864, + 61273408, + 61273424, + 61368752, + 61641888, + 61369008, + 61415424, + 61273920, + 61273936, + 61614112, + 61649632, + 61594512, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587056, + 61690560, + 61504384, + 61497024, + 61491824, + 61514784, + 62042560, + 61369328, + 61370000, + 61370352, + 61701392, + 61560016, + 61273648, + 61284880, + 61720864, + 61611088, + 61610944, + 61274016, + 61274032, + 61632944, + 61723456, + 61273712, + 61551584, + 61671984, + 62295312, + 61398416, + 61284896, + 61284928 ], "bases": [ { @@ -11545,78 +11471,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65053408, - "methods": [ - 61878624, - 61898224, - 39223120, - 61269824, - 61269856, - 61269888, - 61283424, - 61269920, - 61269936, - 61270000, - 61283440, - 39222912, - 39222928, - 61269472, - 61283456, - 61269504, - 61269520, - 61387344, - 61634656, - 61387600, - 61716480, - 61270016, - 61270032, - 61609776, - 61640160, - 61586864, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577632, - 61680000, - 61498224, - 61489712, - 61486576, - 61512752, - 62045696, - 61387920, - 61388592, - 61388944, - 61697488, - 61555232, - 61269744, - 61283472, - 61716960, - 61598736, - 61598592, - 61270112, - 61270128, - 61623040, - 61718544, - 61269808, - 61544560, - 61662832, - 62290272, - 61389552, - 61283488, - 61283520 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65099096, + "methods": [ + 61293072, + 61292304, + 62295888, + 61284912, + 61284944, + 61671296, + 61551376, + 61399008 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -11648,7 +11522,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -11671,22 +11545,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65053904, + "vtable_address": 65057312, "methods": [ - 61289504, - 61288640, - 62290848, - 61283504, - 61283536, - 61662144, - 61544352, - 61390144 + 61882528, + 61902128, + 39226960, + 61273728, + 61273760, + 61273792, + 61287328, + 61273824, + 61273840, + 61273904, + 61287344, + 39226752, + 39226768, + 61273376, + 61287360, + 61273408, + 61273424, + 61391248, + 61638560, + 61391504, + 61720384, + 61273920, + 61273936, + 61613680, + 61644064, + 61590768, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581536, + 61683904, + 61502128, + 61493616, + 61490480, + 61516656, + 62049600, + 61391824, + 61392496, + 61392848, + 61701392, + 61559136, + 61273648, + 61287376, + 61720864, + 61602640, + 61602496, + 61274016, + 61274032, + 61626944, + 61722448, + 61273712, + 61548464, + 61666736, + 62294176, + 61393456, + 61287392, + 61287424 ], "bases": [ { @@ -11745,78 +11671,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65086848, - "methods": [ - 61881792, - 61901200, - 39223120, - 61269824, - 61269856, - 61269888, - 61281440, - 61269920, - 61269936, - 61270000, - 61281456, - 39222912, - 39222928, - 61269472, - 61281472, - 61269504, - 61269520, - 61370016, - 61638368, - 61370272, - 61410944, - 61270016, - 61270032, - 61610640, - 61646160, - 61591040, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583536, - 61687424, - 61499728, - 61491408, - 61487472, - 61511504, - 62040768, - 61370592, - 61371264, - 61371616, - 61697488, - 61555936, - 61269744, - 61281488, - 61716960, - 61608048, - 61607904, - 61270112, - 61270128, - 61629424, - 61720560, - 61269808, - 61548096, - 61669408, - 62292544, - 61391952, - 61281504, - 61281536 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65057808, + "methods": [ + 61293408, + 61292544, + 62294752, + 61287408, + 61287440, + 61666048, + 61548256, + 61394048 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -11848,7 +11722,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -11871,22 +11745,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65087344, + "vtable_address": 65090752, "methods": [ - 61289280, - 61288480, - 62293120, - 61281520, - 61281552, - 61668720, - 61547888, - 61392544 + 61885696, + 61905104, + 39226960, + 61273728, + 61273760, + 61273792, + 61285344, + 61273824, + 61273840, + 61273904, + 61285360, + 39226752, + 39226768, + 61273376, + 61285376, + 61273408, + 61273424, + 61373920, + 61642272, + 61374176, + 61414848, + 61273920, + 61273936, + 61614544, + 61650064, + 61594944, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587440, + 61691328, + 61503632, + 61495312, + 61491376, + 61515408, + 62044672, + 61374496, + 61375168, + 61375520, + 61701392, + 61559840, + 61273648, + 61285392, + 61720864, + 61611952, + 61611808, + 61274016, + 61274032, + 61633328, + 61724464, + 61273712, + 61552000, + 61673312, + 62296448, + 61395856, + 61285408, + 61285440 ], "bases": [ { @@ -11945,78 +11871,26 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65179816, - "methods": [ - 61896176, - 61910624, - 39223120, - 61269824, - 61269856, - 61269888, - 61272272, - 61269920, - 61269936, - 61270000, - 61272288, - 39222912, - 39222928, - 61269472, - 61272304, - 61269504, - 61269520, - 61302528, - 61637344, - 61302768, - 61417280, - 61270016, - 61270032, - 61616976, - 61645008, - 61589888, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582512, - 61685376, - 61460112, - 61440992, - 61440640, - 61482192, - 62017536, - 61303088, - 61303760, - 61304112, - 61697488, - 61272320, - 61269744, - 61272400, - 61716960, - 61605744, - 61605600, - 61270112, - 61270128, - 61628400, - 61735344, - 61269808, - 61291824, - 61472400, - 62285984, - 62141456, - 61272416, - 61272448 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65091248, + "methods": [ + 61293184, + 61292384, + 62297024, + 61285424, + 61285456, + 61672624, + 61551792, + 61396448 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -12048,10 +11922,10 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { - "offset": 736, + "offset": 720, "flags": 2, "bases": [ { @@ -12071,22 +11945,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65180312, + "vtable_address": 65183720, "methods": [ - 61292272, - 61292144, - 62286080, - 61272432, - 61272464, - 61472688, - 61291904, - 62141712 + 61900080, + 61914528, + 39226960, + 61273728, + 61273760, + 61273792, + 61276176, + 61273824, + 61273840, + 61273904, + 61276192, + 39226752, + 39226768, + 61273376, + 61276208, + 61273408, + 61273424, + 61306432, + 61641248, + 61306672, + 61421184, + 61273920, + 61273936, + 61620880, + 61648912, + 61593792, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586416, + 61689280, + 61464016, + 61444896, + 61444544, + 61486096, + 62021440, + 61306992, + 61307664, + 61308016, + 61701392, + 61276224, + 61273648, + 61276304, + 61720864, + 61609648, + 61609504, + 61274016, + 61274032, + 61632304, + 61739248, + 61273712, + 61295728, + 61476304, + 62289888, + 62145360, + 61276320, + 61276352 ], "bases": [ { @@ -12145,78 +12071,26 @@ ], "model": { "Itanium": { - "offset_to_top": -736 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65167160, - "methods": [ - 61836720, - 61836752, - 39223120, - 61269824, - 61269856, - 61269888, - 61273632, - 61269920, - 61269936, - 61270000, - 61273648, - 39222912, - 39222928, - 61269472, - 61273664, - 61269504, - 61269520, - 61312416, - 61633888, - 61312656, - 61715040, - 61270016, - 61270032, - 61615968, - 61639296, - 61586000, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576864, - 61678464, - 61458048, - 61437840, - 61437488, - 61482560, - 62020352, - 61312976, - 61313648, - 61314000, - 61697488, - 61273680, - 61269744, - 61273760, - 61716960, - 61597008, - 61596864, - 61270112, - 61270128, - 61622272, - 61732992, - 61269808, - 61291984, - 61472992, - 62285344, - 62141968, - 61273776, - 61273808 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65184216, + "methods": [ + 61296176, + 61296048, + 62289984, + 61276336, + 61276368, + 61476592, + 61295808, + 62145616 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -12271,22 +12145,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -736 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65167656, + "vtable_address": 65171064, "methods": [ - 61292272, - 61292144, - 62285440, + 61840624, + 61840656, + 39226960, + 61273728, + 61273760, 61273792, + 61277536, 61273824, - 61473280, - 61292064, - 62142224 + 61273840, + 61273904, + 61277552, + 39226752, + 39226768, + 61273376, + 61277568, + 61273408, + 61273424, + 61316320, + 61637792, + 61316560, + 61718944, + 61273920, + 61273936, + 61619872, + 61643200, + 61589904, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580768, + 61682368, + 61461952, + 61441744, + 61441392, + 61486464, + 62024256, + 61316880, + 61317552, + 61317904, + 61701392, + 61277584, + 61273648, + 61277664, + 61720864, + 61600912, + 61600768, + 61274016, + 61274032, + 61626176, + 61736896, + 61273712, + 61295888, + 61476896, + 62289248, + 62145872, + 61277680, + 61277712 ], "bases": [ { @@ -12345,78 +12271,26 @@ ], "model": { "Itanium": { - "offset_to_top": -736 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue, CompMatPropertyMutator_t>", - "vtable_address": 65133984, - "methods": [ - 61855232, - 61869840, - 39223120, - 61269824, - 61269856, - 61269888, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65171560, + "methods": [ + 61296176, + 61296048, + 62289344, 61277696, - 61269920, - 61269936, - 61270000, - 61277712, - 39222912, - 39222928, - 61269472, 61277728, - 61269504, - 61269520, - 61345984, - 61640816, - 61346240, - 61413440, - 61270016, - 61270032, - 61612368, - 61647456, - 61592336, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584688, - 61689728, - 61504432, - 61495664, - 61503664, - 61514656, - 62030208, - 61346560, - 61347232, - 61347584, - 61697488, - 61556464, - 61269744, - 61277744, - 61716960, - 61618704, - 61618560, - 61270112, - 61270128, - 61632608, - 61724592, - 61269808, - 61554032, - 61673392, - 62298224, - 61398112, - 61277760, - 61277792 + 61477184, + 61295968, + 62146128 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr, CompMatPropertyMutator_t>", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -12448,10 +12322,10 @@ } }, { - "type_name": "IToolAttr_TypedValue >", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { - "offset": 728, + "offset": 736, "flags": 2, "bases": [ { @@ -12471,22 +12345,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -736 } } }, { "type_name": "CBaseConcreteToolAttrValue, CompMatPropertyMutator_t>", - "vtable_address": 65134480, + "vtable_address": 65137888, "methods": [ - 61291712, - 61287936, - 62298816, - 61277776, - 61277808, - 61672704, - 61553808, - 61398704 + 61859136, + 61873744, + 39226960, + 61273728, + 61273760, + 61273792, + 61281600, + 61273824, + 61273840, + 61273904, + 61281616, + 39226752, + 39226768, + 61273376, + 61281632, + 61273408, + 61273424, + 61349888, + 61644720, + 61350144, + 61417344, + 61273920, + 61273936, + 61616272, + 61651360, + 61596240, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588592, + 61693632, + 61508336, + 61499568, + 61507568, + 61518560, + 62034112, + 61350464, + 61351136, + 61351488, + 61701392, + 61560368, + 61273648, + 61281648, + 61720864, + 61622608, + 61622464, + 61274016, + 61274032, + 61636512, + 61728496, + 61273712, + 61557936, + 61677296, + 62302128, + 61402016, + 61281664, + 61281696 ], "bases": [ { @@ -12545,78 +12471,26 @@ ], "model": { "Itanium": { - "offset_to_top": -728 + "offset_to_top": 0 } } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65104376, - "methods": [ - 61853648, - 61868352, - 39223120, - 61269824, - 61269856, - 61269888, - 61279808, - 61269920, - 61269936, - 61270000, - 61279824, - 39222912, - 39222928, - 61269472, - 61279840, - 61269504, - 61269520, - 61378688, - 61634016, - 61378928, - 61715280, - 61270016, - 61270032, - 61611360, - 61639440, - 61586144, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576992, - 61678720, - 61451600, - 61428416, - 61428064, - 61480432, - 62035136, - 61379248, - 61379920, - 61380272, - 61697488, - 61279856, - 61269744, - 61279920, - 61716960, - 61597296, - 61597152, - 61270112, - 61270128, - 61622400, - 61722240, - 61269808, - 61279936, - 61469504, - 62264416, - 61568544, - 61280064, - 61280096 + "type_name": "CBaseConcreteToolAttrValue, CompMatPropertyMutator_t>", + "vtable_address": 65138384, + "methods": [ + 61295616, + 61291840, + 62302720, + 61281680, + 61281712, + 61676608, + 61557712, + 61402608 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr, CompMatPropertyMutator_t>", "details": { "Itanium": { "offset": 0, @@ -12648,10 +12522,10 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue >", "details": { "Itanium": { - "offset": 720, + "offset": 728, "flags": 2, "bases": [ { @@ -12671,22 +12545,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -728 } } }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65104872, + "vtable_address": 65108280, "methods": [ - 61287648, - 61284704, - 62264512, - 61280080, - 61280112, - 61469792, - 61280000, - 61568288 + 61857552, + 61872256, + 39226960, + 61273728, + 61273760, + 61273792, + 61283712, + 61273824, + 61273840, + 61273904, + 61283728, + 39226752, + 39226768, + 61273376, + 61283744, + 61273408, + 61273424, + 61382592, + 61637920, + 61382832, + 61719184, + 61273920, + 61273936, + 61615264, + 61643344, + 61590048, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580896, + 61682624, + 61455504, + 61432320, + 61431968, + 61484336, + 62039040, + 61383152, + 61383824, + 61384176, + 61701392, + 61283760, + 61273648, + 61283824, + 61720864, + 61601200, + 61601056, + 61274016, + 61274032, + 61626304, + 61726144, + 61273712, + 61283840, + 61473408, + 62268320, + 61572448, + 61283968, + 61284000 ], "bases": [ { @@ -12743,132 +12669,6 @@ } } ], - "model": { - "Itanium": { - "offset_to_top": -720 - } - } - }, - { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65106712, - "methods": [ - 61821008, - 61821040, - 39223120, - 61269824, - 61269856, - 61269888, - 61278400, - 61269920, - 61269936, - 61270000, - 61278416, - 39222912, - 39222928, - 61269472, - 61278432, - 61269504, - 61269520, - 61349424, - 61641200, - 61349664, - 61412864, - 61270016, - 61270032, - 61612800, - 61647888, - 61592768, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585072, - 61690496, - 61452912, - 61430496, - 61430144, - 61479728, - 62031616, - 61349984, - 61350656, - 61351008, - 61697488, - 61278448, - 61269744, - 61278512, - 61716960, - 61619568, - 61619424, - 61270112, - 61270128, - 61632992, - 61725600, - 61269808, - 61278528, - 61468368, - 62264608, - 61578016, - 61278656, - 61278688 - ], - "bases": [ - { - "type_name": "CBaseConcreteToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - }, - { - "type_name": "IToolAttr_TypedValue", - "details": { - "Itanium": { - "offset": 720, - "flags": 2, - "bases": [ - { - "type_name": "IToolAttr_Value", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ], "model": { "Itanium": { "offset_to_top": 0 @@ -12876,21 +12676,21 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65107208, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65108776, "methods": [ - 61287648, - 61284704, - 62264704, - 61278672, - 61278704, - 61468656, - 61278592, - 61577760 + 61291552, + 61288608, + 62268416, + 61283984, + 61284016, + 61473696, + 61283904, + 61572192 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -12950,73 +12750,73 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65182048, - "methods": [ - 61859984, - 61874304, - 39223120, - 61269824, - 61269856, - 61269888, - 61271920, - 61269920, - 61269936, - 61270000, - 61271936, - 39222912, - 39222928, - 61269472, - 61271952, - 61269504, - 61269520, - 61300816, - 61637216, - 61301056, - 61417472, - 61270016, - 61270032, - 61616832, - 61644864, - 61589744, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582384, - 61685120, - 61460816, - 61442048, - 61441696, - 61478320, - 62016832, - 61301376, - 61302048, - 61302400, - 61697488, - 61271968, - 61269744, - 61272032, - 61716960, - 61605456, - 61605312, - 61270112, - 61270128, - 61628272, - 61735008, - 61269808, - 61272048, - 61466048, - 62264992, - 61572256, - 61272176, - 61272208 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65110616, + "methods": [ + 61824912, + 61824944, + 39226960, + 61273728, + 61273760, + 61273792, + 61282304, + 61273824, + 61273840, + 61273904, + 61282320, + 39226752, + 39226768, + 61273376, + 61282336, + 61273408, + 61273424, + 61353328, + 61645104, + 61353568, + 61416768, + 61273920, + 61273936, + 61616704, + 61651792, + 61596672, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588976, + 61694400, + 61456816, + 61434400, + 61434048, + 61483632, + 62035520, + 61353888, + 61354560, + 61354912, + 61701392, + 61282352, + 61273648, + 61282416, + 61720864, + 61623472, + 61623328, + 61274016, + 61274032, + 61636896, + 61729504, + 61273712, + 61282432, + 61472272, + 62268512, + 61581920, + 61282560, + 61282592 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -13076,21 +12876,21 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65182544, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65111112, "methods": [ - 61287648, - 61284704, - 62265088, - 61272192, - 61272224, - 61466336, - 61272112, - 61572000 + 61291552, + 61288608, + 62268608, + 61282576, + 61282608, + 61472560, + 61282496, + 61581664 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -13150,73 +12950,73 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65141600, - "methods": [ - 61888128, - 61907152, - 39223120, - 61269824, - 61269856, - 61269888, - 61275632, - 61269920, - 61269936, - 61270000, - 61275648, - 39222912, - 39222928, - 61269472, - 61275664, - 61269504, - 61269520, - 61330448, - 61634784, - 61330688, - 61716720, - 61270016, - 61270032, - 61613520, - 61641840, - 61587008, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61579952, - 61680256, - 61456608, - 61435744, - 61435392, - 61479376, - 62024576, - 61331008, - 61331680, - 61332032, - 61697488, - 61275680, - 61269744, - 61275744, - 61716960, - 61599792, - 61599648, - 61270112, - 61270128, - 61623824, - 61727280, - 61269808, - 61275760, - 61467792, - 62264800, - 61570208, - 61275888, - 61275920 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65185952, + "methods": [ + 61863888, + 61878208, + 39226960, + 61273728, + 61273760, + 61273792, + 61275824, + 61273824, + 61273840, + 61273904, + 61275840, + 39226752, + 39226768, + 61273376, + 61275856, + 61273408, + 61273424, + 61304720, + 61641120, + 61304960, + 61421376, + 61273920, + 61273936, + 61620736, + 61648768, + 61593648, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586288, + 61689024, + 61464720, + 61445952, + 61445600, + 61482224, + 62020736, + 61305280, + 61305952, + 61306304, + 61701392, + 61275872, + 61273648, + 61275936, + 61720864, + 61609360, + 61609216, + 61274016, + 61274032, + 61632176, + 61738912, + 61273712, + 61275952, + 61469952, + 62268896, + 61576160, + 61276080, + 61276112 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -13276,21 +13076,21 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65142096, + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65186448, "methods": [ - 61287648, - 61284704, - 62264896, - 61275904, - 61275936, - 61468080, - 61275824, - 61569952 + 61291552, + 61288608, + 62268992, + 61276096, + 61276128, + 61470240, + 61276016, + 61575904 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -13350,73 +13150,73 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65063016, - "methods": [ - 61814896, - 61814928, - 39223120, - 61269824, - 61269856, - 61269888, - 61282336, - 61269920, - 61269936, - 61270000, - 61282352, - 39222912, - 39222928, - 61269472, - 61282368, - 61269504, - 61269520, - 61375168, - 61638752, - 61375408, - 61410368, - 61270016, - 61270032, - 61611072, - 61646592, - 61591472, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583920, - 61688192, - 61446544, - 61421072, - 61420720, - 61481488, - 62042880, - 61375728, - 61376400, - 61376752, - 61697488, - 61282384, - 61269744, - 61282448, - 61716960, - 61608912, - 61608768, - 61270112, - 61270128, - 61629808, - 61721568, - 61269808, - 61282464, - 61471248, - 62264224, - 61573792, - 61282592, - 61282624 + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65145504, + "methods": [ + 61892032, + 61911056, + 39226960, + 61273728, + 61273760, + 61273792, + 61279536, + 61273824, + 61273840, + 61273904, + 61279552, + 39226752, + 39226768, + 61273376, + 61279568, + 61273408, + 61273424, + 61334352, + 61638688, + 61334592, + 61720624, + 61273920, + 61273936, + 61617424, + 61645744, + 61590912, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61583856, + 61684160, + 61460512, + 61439648, + 61439296, + 61483280, + 62028480, + 61334912, + 61335584, + 61335936, + 61701392, + 61279584, + 61273648, + 61279648, + 61720864, + 61603696, + 61603552, + 61274016, + 61274032, + 61627728, + 61731184, + 61273712, + 61279664, + 61471696, + 62268704, + 61574112, + 61279792, + 61279824 ], "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -13475,18 +13275,218 @@ } } }, + { + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65146000, + "methods": [ + 61291552, + 61288608, + 62268800, + 61279808, + 61279840, + 61471984, + 61279728, + 61573856 + ], + "bases": [ + { + "type_name": "CBaseConcreteToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + }, + { + "type_name": "IToolAttr_TypedValue", + "details": { + "Itanium": { + "offset": 720, + "flags": 2, + "bases": [ + { + "type_name": "IToolAttr_Value", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": -720 + } + } + }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65063512, + "vtable_address": 65066920, "methods": [ - 61287648, - 61284704, - 62264320, - 61282608, - 61282640, - 61471536, - 61282528, - 61573536 + 61818800, + 61818832, + 39226960, + 61273728, + 61273760, + 61273792, + 61286240, + 61273824, + 61273840, + 61273904, + 61286256, + 39226752, + 39226768, + 61273376, + 61286272, + 61273408, + 61273424, + 61379072, + 61642656, + 61379312, + 61414272, + 61273920, + 61273936, + 61614976, + 61650496, + 61595376, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587824, + 61692096, + 61450448, + 61424976, + 61424624, + 61485392, + 62046784, + 61379632, + 61380304, + 61380656, + 61701392, + 61286288, + 61273648, + 61286352, + 61720864, + 61612816, + 61612672, + 61274016, + 61274032, + 61633712, + 61725472, + 61273712, + 61286368, + 61475152, + 62268128, + 61577696, + 61286496, + 61286528 + ], + "bases": [ + { + "type_name": "CBaseConcreteToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + }, + { + "type_name": "IToolAttr_TypedValue", + "details": { + "Itanium": { + "offset": 720, + "flags": 2, + "bases": [ + { + "type_name": "IToolAttr_Value", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "CBaseConcreteToolAttrValue", + "vtable_address": 65067416, + "methods": [ + 61291552, + 61288608, + 62268224, + 61286512, + 61286544, + 61475440, + 61286432, + 61577440 ], "bases": [ { @@ -13551,68 +13551,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65058448, - "methods": [ - 61850480, - 61865376, - 39223120, - 61269824, - 61269856, - 61269888, - 61282912, - 61269920, - 61269936, - 61270000, - 61282928, - 39222912, - 39222928, - 61269472, - 61282944, - 61269504, - 61269520, - 61383920, - 61634400, - 61384160, - 61716000, - 61270016, - 61270032, - 61609344, - 61639872, - 61586576, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577376, - 61679488, - 61445888, - 61420032, - 61419680, - 61481840, - 62044288, - 61384480, - 61385152, - 61385504, - 61697488, - 61282960, - 61269744, - 61283024, - 61716960, - 61598160, - 61598016, - 61270112, - 61270128, - 61622784, - 61717872, - 61269808, - 61283040, - 61471824, - 62264032, - 61568032, - 61283168, - 61283200 + "vtable_address": 65062352, + "methods": [ + 61854384, + 61869280, + 39226960, + 61273728, + 61273760, + 61273792, + 61286816, + 61273824, + 61273840, + 61273904, + 61286832, + 39226752, + 39226768, + 61273376, + 61286848, + 61273408, + 61273424, + 61387824, + 61638304, + 61388064, + 61719904, + 61273920, + 61273936, + 61613248, + 61643776, + 61590480, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581280, + 61683392, + 61449792, + 61423936, + 61423584, + 61485744, + 62048192, + 61388384, + 61389056, + 61389408, + 61701392, + 61286864, + 61273648, + 61286928, + 61720864, + 61602064, + 61601920, + 61274016, + 61274032, + 61626688, + 61721776, + 61273712, + 61286944, + 61475728, + 62267936, + 61571936, + 61287072, + 61287104 ], "bases": [ { @@ -13677,16 +13677,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65058944, + "vtable_address": 65062848, "methods": [ - 61287648, - 61284704, - 62264128, - 61283184, - 61283216, - 61472112, - 61283104, - 61567776 + 61291552, + 61288608, + 62268032, + 61287088, + 61287120, + 61476016, + 61287008, + 61571680 ], "bases": [ { @@ -13751,68 +13751,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65177584, - "methods": [ - 61858400, - 61872816, - 39223120, - 61269824, - 61269856, - 61269888, - 61272512, - 61269920, - 61269936, - 61270000, - 61272528, - 39222912, - 39222928, - 61269472, - 61272544, - 61269504, - 61269520, - 61304240, - 61637472, - 61304480, - 61417088, - 61270016, - 61270032, - 61617120, - 61645152, - 61590032, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582640, - 61685632, - 61459408, - 61439952, - 61439584, - 61478672, - 62018240, - 61304800, - 61305472, - 61305824, - 61697488, - 61272560, - 61269744, - 61272624, - 61716960, - 61606032, - 61605888, - 61270112, - 61270128, - 61628528, - 61735680, - 61269808, - 61272640, - 61466624, - 62304000, - 61573280, - 61272800, - 61272832 + "vtable_address": 65181488, + "methods": [ + 61862304, + 61876720, + 39226960, + 61273728, + 61273760, + 61273792, + 61276416, + 61273824, + 61273840, + 61273904, + 61276432, + 39226752, + 39226768, + 61273376, + 61276448, + 61273408, + 61273424, + 61308144, + 61641376, + 61308384, + 61420992, + 61273920, + 61273936, + 61621024, + 61649056, + 61593936, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586544, + 61689536, + 61463312, + 61443856, + 61443488, + 61482576, + 62022144, + 61308704, + 61309376, + 61309728, + 61701392, + 61276464, + 61273648, + 61276528, + 61720864, + 61609936, + 61609792, + 61274016, + 61274032, + 61632432, + 61739584, + 61273712, + 61276544, + 61470528, + 62307904, + 61577184, + 61276704, + 61276736 ], "bases": [ { @@ -13877,16 +13877,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65178080, + "vtable_address": 65181984, "methods": [ - 61291600, - 61287840, - 62303424, - 61272816, - 61272848, - 61466928, - 61272720, - 61573024 + 61295504, + 61291744, + 62307328, + 61276720, + 61276752, + 61470832, + 61276624, + 61576928 ], "bases": [ { @@ -13951,68 +13951,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65076048, + "vtable_address": 65079952, "methods": [ - 61816544, - 61816576, - 39223120, - 61269824, - 61269856, - 61269888, - 61281952, - 61269920, - 61269936, - 61270000, - 61281968, - 39222912, - 39222928, - 61269472, - 61281984, - 61269504, - 61269520, - 61373456, - 61638624, - 61373696, - 61410560, - 61270016, - 61270032, - 61610928, - 61646448, - 61591328, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583792, - 61687936, - 61447200, - 61422128, - 61421760, - 61481136, - 62042176, - 61374016, - 61374688, - 61375040, - 61697488, - 61282000, - 61269744, - 61282064, - 61716960, - 61608624, - 61608480, - 61270112, - 61270128, - 61629680, - 61721232, - 61269808, - 61282080, - 61470640, - 62302592, - 61576352, - 61282240, - 61282272 + 61820448, + 61820480, + 39226960, + 61273728, + 61273760, + 61273792, + 61285856, + 61273824, + 61273840, + 61273904, + 61285872, + 39226752, + 39226768, + 61273376, + 61285888, + 61273408, + 61273424, + 61377360, + 61642528, + 61377600, + 61414464, + 61273920, + 61273936, + 61614832, + 61650352, + 61595232, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587696, + 61691840, + 61451104, + 61426032, + 61425664, + 61485040, + 62046080, + 61377920, + 61378592, + 61378944, + 61701392, + 61285904, + 61273648, + 61285968, + 61720864, + 61612528, + 61612384, + 61274016, + 61274032, + 61633584, + 61725136, + 61273712, + 61285984, + 61474544, + 62306496, + 61580256, + 61286144, + 61286176 ], "bases": [ { @@ -14077,16 +14077,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65076544, + "vtable_address": 65080448, "methods": [ - 61291600, - 61287840, - 62302016, - 61282256, - 61282288, - 61470944, - 61282160, - 61576096 + 61295504, + 61291744, + 62305920, + 61286160, + 61286192, + 61474848, + 61286064, + 61580000 ], "bases": [ { @@ -14151,68 +14151,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65124592, - "methods": [ - 61996128, - 61999200, - 39223120, - 61269824, - 61269856, - 61269888, - 61278720, - 61269920, - 61269936, - 61270000, - 61278736, - 39222912, - 39222928, - 61269472, - 61278752, - 61269504, - 61269520, - 61351136, - 61641328, - 61351376, - 61412672, - 61270016, - 61270032, - 61612944, - 61648032, - 61592912, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585200, - 61690752, - 61452256, - 61429456, - 61429104, - 61480080, - 62032320, - 61351696, - 61352368, - 61352720, - 61697488, - 61278768, - 61269744, - 61278832, - 61716960, - 61619856, - 61619712, - 61270112, - 61270128, - 61633120, - 61725936, - 61269808, - 61278848, - 61468944, - 62268304, - 61579040, - 61278976, - 61279008 + "vtable_address": 65128496, + "methods": [ + 62000032, + 62003104, + 39226960, + 61273728, + 61273760, + 61273792, + 61282624, + 61273824, + 61273840, + 61273904, + 61282640, + 39226752, + 39226768, + 61273376, + 61282656, + 61273408, + 61273424, + 61355040, + 61645232, + 61355280, + 61416576, + 61273920, + 61273936, + 61616848, + 61651936, + 61596816, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589104, + 61694656, + 61456160, + 61433360, + 61433008, + 61483984, + 62036224, + 61355600, + 61356272, + 61356624, + 61701392, + 61282672, + 61273648, + 61282736, + 61720864, + 61623760, + 61623616, + 61274016, + 61274032, + 61637024, + 61729840, + 61273712, + 61282752, + 61472848, + 62272208, + 61582944, + 61282880, + 61282912 ], "bases": [ { @@ -14277,16 +14277,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65125088, + "vtable_address": 65128992, "methods": [ - 61288720, - 61287760, - 62268400, - 61278992, - 61279024, - 61469216, - 61278912, - 61578784 + 61292624, + 61291664, + 62272304, + 61282896, + 61282928, + 61473120, + 61282816, + 61582688 ], "bases": [ { @@ -14351,68 +14351,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65175352, - "methods": [ - 61997280, - 62000400, - 39223120, - 61269824, - 61269856, - 61269888, - 61272896, - 61269920, - 61269936, - 61270000, - 61272912, - 39222912, - 39222928, - 61269472, - 61272928, - 61269504, - 61269520, - 61305952, - 61637600, - 61306192, - 61416896, - 61270016, - 61270032, - 61617264, - 61645296, - 61590176, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582768, - 61685888, - 61458752, - 61438896, - 61438544, - 61479024, - 62018944, - 61306512, - 61307184, - 61307536, - 61697488, - 61272944, - 61269744, - 61273008, - 61716960, - 61606320, - 61606176, - 61270112, - 61270128, - 61628656, - 61736016, - 61269808, - 61273024, - 61467232, - 62268992, - 61572768, - 61273152, - 61273184 + "vtable_address": 65179256, + "methods": [ + 62001184, + 62004304, + 39226960, + 61273728, + 61273760, + 61273792, + 61276800, + 61273824, + 61273840, + 61273904, + 61276816, + 39226752, + 39226768, + 61273376, + 61276832, + 61273408, + 61273424, + 61309856, + 61641504, + 61310096, + 61420800, + 61273920, + 61273936, + 61621168, + 61649200, + 61594080, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586672, + 61689792, + 61462656, + 61442800, + 61442448, + 61482928, + 62022848, + 61310416, + 61311088, + 61311440, + 61701392, + 61276848, + 61273648, + 61276912, + 61720864, + 61610224, + 61610080, + 61274016, + 61274032, + 61632560, + 61739920, + 61273712, + 61276928, + 61471136, + 62272896, + 61576672, + 61277056, + 61277088 ], "bases": [ { @@ -14477,16 +14477,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65175848, + "vtable_address": 65179752, "methods": [ - 61288720, - 61287760, - 62269088, - 61273168, - 61273200, - 61467504, - 61273088, - 61572512 + 61292624, + 61291664, + 62272992, + 61277072, + 61277104, + 61471408, + 61276992, + 61576416 ], "bases": [ { @@ -14551,68 +14551,68 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65071512, - "methods": [ - 61924736, - 61924768, - 39223120, - 61269824, - 61269856, - 61269888, - 61280480, - 61269920, - 61269936, - 61270000, - 61280496, - 39222912, - 39222928, - 61269472, - 61280512, - 61269504, - 61269520, - 61361424, - 61637728, - 61361664, - 61411904, - 61270016, - 61270032, - 61609920, - 61645440, - 61590320, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582896, - 61686144, - 61450160, - 61426320, - 61425968, - 61480784, - 62037248, - 61361984, - 61362656, - 61363008, - 61697488, - 61280528, - 61269744, - 61280592, - 61716960, - 61606608, - 61606464, - 61270112, - 61270128, - 61628784, - 61718880, - 61269808, - 61280608, - 61470080, - 62267616, - 61574816, - 61280736, - 61280768 + "vtable_address": 65075416, + "methods": [ + 61928640, + 61928672, + 39226960, + 61273728, + 61273760, + 61273792, + 61284384, + 61273824, + 61273840, + 61273904, + 61284400, + 39226752, + 39226768, + 61273376, + 61284416, + 61273408, + 61273424, + 61365328, + 61641632, + 61365568, + 61415808, + 61273920, + 61273936, + 61613824, + 61649344, + 61594224, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586800, + 61690048, + 61454064, + 61430224, + 61429872, + 61484688, + 62041152, + 61365888, + 61366560, + 61366912, + 61701392, + 61284432, + 61273648, + 61284496, + 61720864, + 61610512, + 61610368, + 61274016, + 61274032, + 61632688, + 61722784, + 61273712, + 61284512, + 61473984, + 62271520, + 61578720, + 61284640, + 61284672 ], "bases": [ { @@ -14677,16 +14677,16 @@ }, { "type_name": "CBaseConcreteToolAttrValue", - "vtable_address": 65072008, + "vtable_address": 65075912, "methods": [ - 61288720, - 61287760, - 62267712, - 61280752, - 61280784, - 61470352, - 61280672, - 61574560 + 61292624, + 61291664, + 62271616, + 61284656, + 61284688, + 61474256, + 61284576, + 61578464 ], "bases": [ { @@ -14751,7 +14751,7 @@ }, { "type_name": "CBaseCubemap", - "vtable_address": 63170640, + "vtable_address": 63174544, "methods": [ 12799168, 12799344, @@ -14783,10 +14783,10 @@ }, { "type_name": "CBaseDynamicIOSignature", - "vtable_address": 64846784, + "vtable_address": 64850688, "methods": [ - 39919280, - 39920192 + 39923184, + 39924096 ], "bases": [], "model": { @@ -14797,33 +14797,33 @@ }, { "type_name": "CBaseFilter", - "vtable_address": 64043920, + "vtable_address": 64047824, "methods": [ 14367152, - 18969312, - 18982928, + 18972128, + 18985744, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -14832,23 +14832,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940688, - 18952544, - 18949696, + 40000032, + 18943504, + 18955360, + 18952512, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -14865,13 +14865,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -14879,42 +14879,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -14925,33 +14925,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -14979,9 +14979,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -14989,24 +14989,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -15018,8 +15018,8 @@ 12572832, 12572912, 12235344, - 18940704, - 18978736 + 18943520, + 18981552 ], "bases": [ { @@ -15063,7 +15063,7 @@ }, { "type_name": "CBaseFilter", - "vtable_address": 65758688, + "vtable_address": 65762592, "methods": [], "bases": [], "model": { @@ -15074,28 +15074,28 @@ }, { "type_name": "CBaseGameStats", - "vtable_address": 64075856, + "vtable_address": 64079760, "methods": [ - 19362256, - 19362272, - 19362288, - 19362304, - 19362320, - 19362192, - 19362192, - 19579248, - 19362192, - 19362512, - 19579264, - 19362192, - 19362336, - 19362192, - 19362352, - 19362368, - 19362384, - 19362480, - 19362496, - 19362400 + 19365072, + 19365088, + 19365104, + 19365120, + 19365136, + 19365008, + 19365008, + 19582064, + 19365008, + 19365328, + 19582080, + 19365008, + 19365152, + 19365008, + 19365168, + 19365184, + 19365200, + 19365296, + 19365312, + 19365216 ], "bases": [], "model": { @@ -15106,12 +15106,12 @@ }, { "type_name": "CBaseGameStats_Driver", - "vtable_address": 64076032, + "vtable_address": 64079936, "methods": [ - 19591200, + 19594016, 12204208, - 19591776, - 19390256, + 19594592, + 19393072, 12204256, 12204272, 12204288, @@ -15120,7 +15120,7 @@ 12204336, 12204352, 12204368, - 19592192, + 19595008, 12204400, 12204416, 12204432, @@ -15129,7 +15129,7 @@ 12204480, 12204496, 12204512, - 19392320, + 19395136, 12204544, 12204560, 12204576, @@ -15139,7 +15139,7 @@ 12204640, 12204656, 12204672, - 19367152, + 19369968, 12204704, 12204720, 12204736, @@ -15155,8 +15155,8 @@ 12204896, 12204912, 12204928, - 19579312, - 19390208, + 19582128, + 19393024, 12204976, 12204992, 12205008, @@ -15164,12 +15164,12 @@ 12205040, 12205056, 12205072, - 19362448, + 19365264, 12205104, - 19362432, - 19376832, - 19395296, - 19362416 + 19365248, + 19379648, + 19398112, + 19365232 ], "bases": [ { @@ -15202,7 +15202,7 @@ }, { "type_name": "CBaseGameSystemFactory", - "vtable_address": 63318696, + "vtable_address": 63322600, "methods": [], "bases": [ { @@ -15224,12 +15224,12 @@ }, { "type_name": "CBaseHudWeaponSelection", - "vtable_address": 64227024, + "vtable_address": 64230928, "methods": [ 12204192, 12204208, 12204224, - 22060576, + 22063392, 12204256, 12204272, 12204288, @@ -15282,9 +15282,9 @@ 12205040, 12205056, 12205072, - 22048336, + 22051152, 12205104, - 22048320 + 22051136 ], "bases": [ { @@ -15317,7 +15317,7 @@ }, { "type_name": "CBaseLesson", - "vtable_address": 64133456, + "vtable_address": 64137360, "methods": [], "bases": [ { @@ -15350,7 +15350,7 @@ }, { "type_name": "CBaseLightProbeVolume", - "vtable_address": 63182976, + "vtable_address": 63186880, "methods": [ 12926560, 12927136, @@ -15382,7 +15382,7 @@ }, { "type_name": "CBasePanelSceneObject", - "vtable_address": 63120840, + "vtable_address": 63124744, "methods": [ 12244464, 12253456, @@ -15409,34 +15409,34 @@ }, { "type_name": "CBasePlayerController", - "vtable_address": 64015928, + "vtable_address": 64019832, "methods": [ 14367152, - 18537168, - 18537552, - 18931648, - 18517696, + 18539472, + 18539856, + 18934464, + 18520000, 12884208, - 21124256, - 18514912, - 21132352, - 18771072, - 21132336, - 18932736, - 18934176, - 21133440, + 21127072, + 18517216, + 21135168, + 18773888, + 21135152, + 18935552, + 18936992, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 18933376, - 20572352, - 20572208, - 17951232, + 18936192, + 20575168, + 20575024, + 17953536, 12233856, 12233872, 12233888, @@ -15444,23 +15444,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18507920, - 18937040, - 18514528, + 40000032, + 18510224, + 18939856, + 18516832, 12234080, - 18594416, - 18507904, + 18596720, + 18510208, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -15477,13 +15477,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -15491,39 +15491,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 18935520, - 18522400, + 20586576, + 20583008, + 20903888, + 20574880, + 18938336, + 18524704, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -15537,38 +15537,38 @@ 12572608, 12234736, 12234752, - 18507936, - 20572336, - 20825088, - 20711520, + 18510240, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 18519168, + 20610960, + 20575008, + 18521472, 12611264, 12572672, - 18517824, + 18520128, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 18574176, + 20575008, + 18576480, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, 12234896, - 17951312, + 17953616, 12234928, 12234944, 12234960, @@ -15591,34 +15591,34 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, 12235168, 12235184, 12235440, - 18507888, - 17951216, + 18510192, + 17953520, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 18517744, + 21708544, + 18520048, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -15630,28 +15630,28 @@ 12572832, 12572912, 12235344, - 18508336, - 18506768, - 18522624, - 18522528, - 17951152, - 17951168, - 17951184, - 17951200, - 18506208, - 18507968, - 18562944, - 18507952, - 18508336, - 17951328, - 18519344, - 18506224, - 18506240, - 18559472, - 18559584, - 18559824, - 18506256, - 18558832 + 18510640, + 18509072, + 18524928, + 18524832, + 17953456, + 17953472, + 17953488, + 17953504, + 18508512, + 18510272, + 18565248, + 18510256, + 18510640, + 17953632, + 18521648, + 18508528, + 18508544, + 18561776, + 18561888, + 18562128, + 18508560, + 18561136 ], "bases": [ { @@ -15684,15 +15684,15 @@ }, { "type_name": "CBasePlayerVData", - "vtable_address": 64018480, + "vtable_address": 64022384, "methods": [ - 18536544, - 18536704, - 18514544, - 18695744, - 18740656, - 18506064, - 18518208 + 18538848, + 18539008, + 18516848, + 18698592, + 18743472, + 18508368, + 18520512 ], "bases": [ { @@ -15725,17 +15725,17 @@ }, { "type_name": "CBasePlayerWeaponVData", - "vtable_address": 64120144, + "vtable_address": 64124048, "methods": [ - 17297520, - 17317728, - 20150336, - 20402112, - 20415488, - 20136976, - 20193376, - 20136992, - 20137008 + 17299824, + 17320032, + 20153152, + 20404928, + 20418304, + 20139792, + 20196192, + 20139808, + 20139824 ], "bases": [ { @@ -15768,7 +15768,7 @@ }, { "type_name": "CBasePlayerWeaponVData", - "vtable_address": 64122504, + "vtable_address": 64126408, "methods": [], "bases": [], "model": { @@ -15779,33 +15779,33 @@ }, { "type_name": "CBaseProp", - "vtable_address": 63362584, + "vtable_address": 63366488, "methods": [ 14381312, 14316976, 14317072, - 18931456, - 18604336, - 18703216, - 18551600, - 18704176, - 21132352, - 18750864, - 21132336, - 18932480, - 18933680, - 18665760, + 18934272, + 18606640, + 18706064, + 18553904, + 18707024, + 21135168, + 18753680, + 21135152, + 18935296, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 18787392, - 18517184, - 18561584, + 18525056, + 18708192, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -15814,23 +15814,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18703040, + 40000032, + 18705888, 14313408, 14313904, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -15847,13 +15847,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -15861,79 +15861,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -15958,12 +15958,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -15971,24 +15971,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -16000,66 +16000,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, + 18780672, 14313344, 13131120 ], @@ -16136,15 +16136,15 @@ }, { "type_name": "CBaseProp", - "vtable_address": 63364848, + "vtable_address": 63368752, "methods": [ 14317024, 14317152, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -16219,9 +16219,9 @@ }, { "type_name": "CBaseProp", - "vtable_address": 63364920, + "vtable_address": 63368824, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -16296,7 +16296,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 63679640, + "vtable_address": 63683544, "methods": [ 12204192, 12204208, @@ -16409,7 +16409,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 63680208, + "vtable_address": 63684112, "methods": [ 16798256, 16798288, @@ -16467,7 +16467,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 63680256, + "vtable_address": 63684160, "methods": [], "bases": [ { @@ -16520,21 +16520,21 @@ }, { "type_name": "CBasePulseGraphInstance", - "vtable_address": 64828792, + "vtable_address": 64832696, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66084992 + "offset_to_top": 66088896 } } }, { "type_name": "CBaseRopePhysics", - "vtable_address": 64113504, + "vtable_address": 64117408, "methods": [ - 20205248, - 20148704 + 20208064, + 20151520 ], "bases": [ { @@ -16556,13 +16556,13 @@ }, { "type_name": "CBaseSerializerMatchToMetaReplayCompatHelper", - "vtable_address": 64178504, + "vtable_address": 64182408, "methods": [ - 21483104, - 21482640, - 21361920, - 21333232, - 21483264 + 21485920, + 21485456, + 21364736, + 21336048, + 21486080 ], "bases": [ { @@ -16584,7 +16584,7 @@ }, { "type_name": "CBaseTempEntity", - "vtable_address": 63752568, + "vtable_address": 63756472, "methods": [], "bases": [ { @@ -16606,7 +16606,7 @@ }, { "type_name": "CBaseToolAttr", - "vtable_address": 65052512, + "vtable_address": 65056416, "methods": [], "bases": [ { @@ -16628,15 +16628,15 @@ }, { "type_name": "CBaseTypesafeVDataFileManager", - "vtable_address": 64030656, + "vtable_address": 64034560, "methods": [ 13055520, - 39221248, + 39225088, 13055536, - 19181424, - 18937168, - 19335488, - 18949040 + 19184240, + 18939984, + 19338304, + 18951856 ], "bases": [ { @@ -16669,23 +16669,23 @@ }, { "type_name": "CBaseUserCmdPB", - "vtable_address": 63499264, + "vtable_address": 63503168, "methods": [ 14589248, 14589984, - 29643894, + 29647734, 14584144, 14594704, 14578944, - 29646054, - 29642886, + 29649894, + 29646726, 14595408, 14579616, 14586352, 12011504, 14581376, - 29642796, - 29643062, + 29646636, + 29646902, 14579216, 14579520, 14578976 @@ -16721,13 +16721,13 @@ }, { "type_name": "CBaseVDataFileManager", - "vtable_address": 64823424, + "vtable_address": 64827328, "methods": [ 13055520, - 39221248, + 39225088, 13055536, - 39221264, - 18937168 + 39225104, + 18939984 ], "bases": [ { @@ -16749,7 +16749,7 @@ }, { "type_name": "CBaseVModuleMetadataProvider", - "vtable_address": 63088256, + "vtable_address": 63092160, "methods": [], "bases": [], "model": { @@ -16760,7 +16760,7 @@ }, { "type_name": "CBaseVModuleMetadataProvider", - "vtable_address": 64945080, + "vtable_address": 64948984, "methods": [], "bases": [], "model": { @@ -16771,7 +16771,7 @@ }, { "type_name": "CBaseWorldPanel", - "vtable_address": 63120888, + "vtable_address": 63124792, "methods": [ 12236160, 12236176, @@ -16786,7 +16786,7 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 63337112, + "vtable_address": 63341016, "methods": [ 13831296, 13831360, @@ -16858,23 +16858,23 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 63337176, + "vtable_address": 63341080, "methods": [ 13831328, 13831424, - 29643894, + 29647734, 13831088, 16695920, 15986000, - 29646054, - 29642886, + 29649894, + 29646726, 16067088, 13830176, 16311008, 12011504, 16149152, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014880, 15985984 @@ -16942,23 +16942,23 @@ }, { "type_name": "CBidirMsg_PredictionEvent", - "vtable_address": 63624496, + "vtable_address": 63628400, "methods": [ 16572128, 16619632, - 29643894, + 29647734, 13831088, 16695920, 15986000, - 29646054, - 29642886, + 29649894, + 29646726, 16067088, 13830176, 16311008, 12011504, 16149152, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014880, 15985984 @@ -16994,23 +16994,23 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent", - "vtable_address": 63624176, + "vtable_address": 63628080, "methods": [ 16571872, 16605936, - 29643894, + 29647734, 16228880, 16680640, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024656, 15998240, 16309696, 12011504, 16125536, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014816, 15985952 @@ -17046,23 +17046,23 @@ }, { "type_name": "CBidirMsg_RebroadcastSource", - "vtable_address": 63624336, + "vtable_address": 63628240, "methods": [ 16572000, 16606064, - 29643894, + 29647734, 16229024, 16680704, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024768, 15998224, 16310528, 12011504, 16078144, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014848, 15985968 @@ -17098,11 +17098,11 @@ }, { "type_name": "CBloomRenderer", - "vtable_address": 64623984, + "vtable_address": 64627888, "methods": [ - 28712960, - 28333040, - 28334288, + 28716672, + 28336432, + 28337680, 12236576 ], "bases": [ @@ -17125,7 +17125,7 @@ }, { "type_name": "CBodyComponent", - "vtable_address": 63152592, + "vtable_address": 63156496, "methods": [ 12449168, 12447248, @@ -17153,7 +17153,7 @@ }, { "type_name": "CBodyComponentBaseAnimGraph", - "vtable_address": 63401832, + "vtable_address": 63405736, "methods": [], "bases": [], "model": { @@ -17164,13 +17164,13 @@ }, { "type_name": "CBodyComponentBaseAnimGraph", - "vtable_address": 64014280, + "vtable_address": 64018184, "methods": [ 14313952, - 18507424, - 18567088, - 18506016, - 18507344 + 18509728, + 18569392, + 18508320, + 18509648 ], "bases": [ { @@ -17214,44 +17214,44 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 64009680, + "vtable_address": 64013584, "methods": [ 14313936, - 18517088, - 18632880, - 18576784, - 18791520, - 18635456, - 18632928, - 18505904, - 18849616, + 18519392, + 18635184, + 18579088, + 18794336, + 18637760, + 18635232, + 18508208, + 18852432, 13216016, - 18507520, - 18760624, - 18573120, + 18509824, + 18763440, + 18575424, 13216080, - 18640864, - 18631008, + 18643168, + 18633312, 13216096, - 18507440, - 18630288, - 18639056, - 18636848, - 18507488, - 18507328, - 18507408, - 20196208, - 18794448, - 18506000, - 18630080, - 18639616, - 18519648, - 18505936, - 18515600, - 18507472, - 18793072, + 18509744, + 18632592, + 18641360, + 18639152, + 18509792, + 18509632, + 18509712, + 20199024, + 18797264, + 18508304, + 18632384, + 18641920, + 18521952, + 18508240, + 18517904, + 18509776, + 18795888, 16906336, - 18778816 + 18781632 ], "bases": [ { @@ -17305,9 +17305,9 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 64009984, + "vtable_address": 64013888, "methods": [ - 18531008 + 18533312 ], "bases": [ { @@ -17361,24 +17361,24 @@ }, { "type_name": "CBodyComponentBaseModelEntity", - "vtable_address": 63401576, + "vtable_address": 63405480, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65488592 + "offset_to_top": 65492496 } } }, { "type_name": "CBodyComponentBaseModelEntity", - "vtable_address": 64014728, + "vtable_address": 64018632, "methods": [ 14314000, - 18507584, - 18567456, - 18505824, - 18507392 + 18509888, + 18569760, + 18508128, + 18509696 ], "bases": [ { @@ -17422,10 +17422,10 @@ }, { "type_name": "CBodyComponentPoint", - "vtable_address": 63152832, + "vtable_address": 63156736, "methods": [ 12449264, - 18624176, + 18626480, 12521424, 12447168, 12447232 @@ -17461,33 +17461,33 @@ }, { "type_name": "CBodyComponentPoint::NetworkVar_m_sceneNode", - "vtable_address": 63151392, + "vtable_address": 63155296, "methods": [ - 19360816, + 19363632, 12449664, 12449680, 12447008, - 19479664, - 19593872, - 19459792, - 19576096, - 19562032, + 19482480, + 19596688, + 19462608, + 19578912, + 19564848, 12447024, 12447040, - 19692544, - 19362192, - 19362192, - 19362208, - 19463504, + 19695360, + 19365008, + 19365008, + 19365024, + 19466320, 12447056, - 19684736, - 19562288, - 19576800, - 19578080, - 19561120, - 19555248, - 19575600, - 19459760, + 19687552, + 19565104, + 19579616, + 19580896, + 19563936, + 19558064, + 19578416, + 19462576, 12447072, 12449728, 12452000, @@ -17514,13 +17514,13 @@ }, { "type_name": "CBodyComponentSkeletonInstance", - "vtable_address": 63152712, + "vtable_address": 63156616, "methods": [ 12449216, - 18624192, + 18626496, 12521056, 12447152, - 18507392 + 18509696 ], "bases": [ { @@ -17553,7 +17553,7 @@ }, { "type_name": "CBodyComponentSkeletonInstance", - "vtable_address": 65488736, + "vtable_address": 65492640, "methods": [], "bases": [], "model": { @@ -17564,39 +17564,39 @@ }, { "type_name": "CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", - "vtable_address": 63151648, + "vtable_address": 63155552, "methods": [ - 20137104, + 20139920, 12449504, 12449536, - 20137184, - 20478912, - 20478976, - 20479152, - 20480336, - 20481360, + 20140000, + 20481728, + 20481792, + 20481968, + 20483152, + 20484176, 12447120, 12447136, - 20483488, - 20483232, - 20482896, - 20482800, - 20482144, - 20137216, - 20493856, - 20480496, - 20481056, - 19578080, - 20479040, - 20488416, - 20487296, - 20481824, - 20207488, + 20486304, + 20486048, + 20485712, + 20485616, + 20484960, + 20140032, + 20496672, + 20483312, + 20483872, + 19580896, + 20481856, + 20491232, + 20490112, + 20484640, + 20210304, 12449632, 12454944, 12447104, 12449616, - 20351552 + 20354368 ], "bases": [ { @@ -17639,9 +17639,9 @@ }, { "type_name": "CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", - "vtable_address": 63151912, + "vtable_address": 63155816, "methods": [ - 20353184 + 20356000 ], "bases": [ { @@ -17684,7 +17684,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 63322112, + "vtable_address": 63326016, "methods": [ 12204192, 12204208, @@ -17791,7 +17791,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 63322640, + "vtable_address": 63326544, "methods": [ 12446976, 13643520 @@ -17836,7 +17836,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 63322672, + "vtable_address": 63326576, "methods": [ 13463472 ], @@ -17880,32 +17880,32 @@ }, { "type_name": "CBombTarget", - "vtable_address": 63734856, + "vtable_address": 63738760, "methods": [ 14368000, - 17233616, - 17233712, - 18931408, - 39987824, - 18645760, - 18645648, + 17235920, + 17236016, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -17915,23 +17915,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217056, - 17218384, - 17218416, + 40000032, + 17219360, + 17220688, + 17220720, 12234080, - 17232112, - 18666928, - 18799200, + 17234416, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -17948,13 +17948,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -17962,41 +17962,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 17222208, + 20574768, + 17224512, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -18008,33 +18008,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, - 17231888, - 17217072, + 17234192, + 17219376, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -18062,9 +18062,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -18072,24 +18072,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -18101,32 +18101,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -18135,8 +18135,8 @@ 12580032, 12574496, 12574512, - 17230272, - 17218544 + 17232576, + 17220848 ], "bases": [ { @@ -18233,15 +18233,15 @@ }, { "type_name": "CBombTarget", - "vtable_address": 63736912, + "vtable_address": 63740816, "methods": [ - 17233664, - 17233792, - 18933072, - 18741840, - 18742112, + 17235968, + 17236096, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -18338,9 +18338,9 @@ }, { "type_name": "CBombTarget", - "vtable_address": 63736984, + "vtable_address": 63740888, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -18437,7 +18437,7 @@ }, { "type_name": "CBombTargetShim", - "vtable_address": 63732704, + "vtable_address": 63736608, "methods": [ 14368000 ], @@ -18525,7 +18525,7 @@ }, { "type_name": "CBombTargetShim", - "vtable_address": 63734760, + "vtable_address": 63738664, "methods": [], "bases": [ { @@ -18611,9 +18611,9 @@ }, { "type_name": "CBombTargetShim", - "vtable_address": 63734832, + "vtable_address": 63738736, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -18699,9 +18699,9 @@ }, { "type_name": "CBoneBindSpacePosRenderAttribCallback", - "vtable_address": 63787816, + "vtable_address": 63791720, "methods": [ - 17626208 + 17628512 ], "bases": [ { @@ -18723,14 +18723,14 @@ }, { "type_name": "CBoneSetup", - "vtable_address": 64775296, + "vtable_address": 64779200, "methods": [ - 32852096, - 32852256, - 32852112, - 32852160, - 32856544, - 32852176 + 32855936, + 32856096, + 32855952, + 32856000, + 32860384, + 32856016 ], "bases": [ { @@ -18752,9 +18752,9 @@ }, { "type_name": "CBoneUpVectorRenderAttribCallback", - "vtable_address": 63787792, + "vtable_address": 63791696, "methods": [ - 17630992 + 17633296 ], "bases": [ { @@ -18776,14 +18776,14 @@ }, { "type_name": "CBroadcastRecipientFilter", - "vtable_address": 63162240, + "vtable_address": 63166144, "methods": [ 12572400, 12577440, - 20081616, - 20081600, - 20081632, - 20081648 + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -18816,11 +18816,11 @@ }, { "type_name": "CBufferReadbackRenderer", - "vtable_address": 64624584, + "vtable_address": 64628488, "methods": [ - 28332176, - 28332912, - 28334096, + 28335568, + 28336304, + 28337488, 12236576 ], "bases": [ @@ -18843,7 +18843,7 @@ }, { "type_name": "CBuildCubemapsGameSystem", - "vtable_address": 63170800, + "vtable_address": 63174704, "methods": [ 12710256, 12204208, @@ -18939,10 +18939,10 @@ }, { "type_name": "CBuildNumberRenderCallback", - "vtable_address": 64626048, + "vtable_address": 64629952, "methods": [ - 28345728, - 28388592 + 28349120, + 28391984 ], "bases": [ { @@ -18964,15 +18964,15 @@ }, { "type_name": "CBuildShardModelJob", - "vtable_address": 64189744, + "vtable_address": 64193648, "methods": [ - 21581216, - 21581360, + 21584032, + 21584176, 13239264, 13223984, 13214592, 13224496, - 21678272, + 21681088, 13214624 ], "bases": [ @@ -19027,12 +19027,12 @@ }, { "type_name": "CBulletWhizTimer", - "vtable_address": 64235496, + "vtable_address": 64239400, "methods": [ 12204192, 12204208, 12204224, - 22298432, + 22301248, 12204256, 12204272, 12204288, @@ -19085,12 +19085,12 @@ 12205040, 12205056, 12205072, - 22308656, + 22311472, 12205104, - 22308512, - 22304800, - 22304816, - 22298416 + 22311328, + 22307616, + 22307632, + 22301232 ], "bases": [ { @@ -19123,7 +19123,7 @@ }, { "type_name": "CBuoyancyHelper", - "vtable_address": 63166552, + "vtable_address": 63170456, "methods": [ 12572384, 12574608, @@ -19154,23 +19154,23 @@ }, { "type_name": "CCLCMsg_BaselineAck", - "vtable_address": 63613936, + "vtable_address": 63617840, "methods": [ 16564048, 16603760, - 29643894, + 29647734, 16218816, 16679344, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023152, 15998928, 16274624, 12011504, 16091968, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012768, 15984928 @@ -19206,23 +19206,23 @@ }, { "type_name": "CCLCMsg_ClientInfo", - "vtable_address": 63613296, + "vtable_address": 63617200, "methods": [ 16563600, 16615792, - 29643894, + 29647734, 16218192, 16689600, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16007344, 15998976, 16271648, 12011504, 16128320, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012640, 15984864 @@ -19258,23 +19258,23 @@ }, { "type_name": "CCLCMsg_CmdKeyValues", - "vtable_address": 63615216, + "vtable_address": 63619120, "methods": [ 16565136, 16616432, - 29643894, + 29647734, 16220016, 16690704, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15998800, 16278992, 12011504, 16084688, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013024, 15985056 @@ -19310,23 +19310,23 @@ }, { "type_name": "CCLCMsg_Diagnostic", - "vtable_address": 63616496, + "vtable_address": 63620400, "methods": [ 16670848, 16671632, - 29643894, + 29647734, 16221344, 16725200, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16061664, 15998768, 16459168, 12011504, 16045952, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013280, 15985184 @@ -19362,23 +19362,23 @@ }, { "type_name": "CCLCMsg_HltvFixupOperatorTick", - "vtable_address": 63625616, + "vtable_address": 63629520, "methods": [ 16573152, 16643808, - 29643894, + 29647734, 16230176, 16696864, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16040464, 15998160, 16314992, 12011504, 16169568, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015104, 15986112 @@ -19414,23 +19414,23 @@ }, { "type_name": "CCLCMsg_HltvReplay", - "vtable_address": 63625296, + "vtable_address": 63629200, "methods": [ 16572880, 16606320, - 29643894, + 29647734, 12044944, 16680832, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025056, 12044928, 16313904, 12011504, 16121920, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015040, 15986080 @@ -19466,7 +19466,7 @@ }, { "type_name": "CCLCMsg_HltvReplay_t", - "vtable_address": 63090376, + "vtable_address": 63094280, "methods": [ 12045152, 12045216, @@ -19538,23 +19538,23 @@ }, { "type_name": "CCLCMsg_HltvReplay_t", - "vtable_address": 63090440, + "vtable_address": 63094344, "methods": [ 12045184, 12045280, - 29643894, + 29647734, 12044944, 16680832, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025056, 12044928, 16313904, 12011504, 16121920, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015040, 15986080 @@ -19622,23 +19622,23 @@ }, { "type_name": "CCLCMsg_ListenEvents", - "vtable_address": 63614096, + "vtable_address": 63618000, "methods": [ 16564176, 16616112, - 29643894, + 29647734, 16218976, 16679408, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15998992, 15998912, 16275200, 12011504, 16052064, - 29642796, - 29643062, + 29646636, + 29646902, 15994224, 16012800, 15984944 @@ -19674,23 +19674,23 @@ }, { "type_name": "CCLCMsg_LoadingProgress", - "vtable_address": 63614416, + "vtable_address": 63618320, "methods": [ 16564480, 16603888, - 29643894, + 29647734, 16219280, 16679440, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023232, 15998880, 16276464, 12011504, 16077472, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012864, 15984976 @@ -19726,23 +19726,23 @@ }, { "type_name": "CCLCMsg_Move", - "vtable_address": 63613456, + "vtable_address": 63617360, "methods": [ 16563744, 16615952, - 29643894, + 29647734, 16218336, 16689856, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16011856, 15998960, 16272432, 12011504, 16116576, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012672, 15984880 @@ -19778,23 +19778,23 @@ }, { "type_name": "CCLCMsg_RconServerDetails", - "vtable_address": 63615376, + "vtable_address": 63619280, "methods": [ 16565280, 16616592, - 29643894, + 29647734, 16220176, 16690912, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15998784, 16279392, 12011504, 16084880, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013056, 15985072 @@ -19830,23 +19830,23 @@ }, { "type_name": "CCLCMsg_RequestPause", - "vtable_address": 63615056, + "vtable_address": 63618960, "methods": [ 16565008, 16604272, - 29643894, + 29647734, 16219856, 16679584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023328, 15998816, 16278304, 12011504, 16092320, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012992, 15985040 @@ -19882,23 +19882,23 @@ }, { "type_name": "CCLCMsg_RespondCvarValue", - "vtable_address": 63614256, + "vtable_address": 63618160, "methods": [ 16564320, 16628544, - 29643894, + 29647734, 16219136, 16690352, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16032416, 15998896, 16275728, 12011504, 16136000, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012832, 15984960 @@ -19934,23 +19934,23 @@ }, { "type_name": "CCLCMsg_ServerStatus", - "vtable_address": 63614896, + "vtable_address": 63618800, "methods": [ 16564880, 16604144, - 29643894, + 29647734, 16219728, 16679536, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999472, 15998832, 16277824, 12011504, 16055728, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012960, 15985024 @@ -19986,23 +19986,23 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect", - "vtable_address": 63614576, + "vtable_address": 63618480, "methods": [ 16564608, 16616272, - 29643894, + 29647734, 16219440, 16690496, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15998864, 16276944, 12011504, 16075536, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012896, 15984992 @@ -20038,23 +20038,23 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect", - "vtable_address": 63614736, + "vtable_address": 63618640, "methods": [ 16564752, 16604016, - 29643894, + 29647734, 16219584, 16679488, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023280, 15998848, 16277344, 12011504, 16077696, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012928, 15985008 @@ -20090,23 +20090,23 @@ }, { "type_name": "CCLCMsg_VoiceData", - "vtable_address": 63613776, + "vtable_address": 63617680, "methods": [ 16647792, 16664208, - 29643894, + 29647734, 16218688, 16728512, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039008, 15998944, 16274016, 12011504, 16085536, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012736, 15984912 @@ -20142,14 +20142,14 @@ }, { "type_name": "CCLCMsg_VoiceData_t", - "vtable_address": 64147120, + "vtable_address": 64151024, "methods": [ - 21141088, - 21141152, - 21135872, - 21135888, - 21135904, - 21141280 + 21143904, + 21143968, + 21138688, + 21138704, + 21138720, + 21144096 ], "bases": [ { @@ -20214,23 +20214,23 @@ }, { "type_name": "CCLCMsg_VoiceData_t", - "vtable_address": 64147184, + "vtable_address": 64151088, "methods": [ - 21141120, - 21141216, - 29643894, + 21143936, + 21144032, + 29647734, 16218688, 16728512, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039008, 15998944, 16274016, 12011504, 16085536, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012736, 15984912 @@ -20298,11 +20298,11 @@ }, { "type_name": "CCMAA2ComputeRenderer", - "vtable_address": 64624536, + "vtable_address": 64628440, "methods": [ - 28444192, - 28332928, - 28334048, + 28447584, + 28336320, + 28337440, 12236576 ], "bases": [ @@ -20325,25 +20325,25 @@ }, { "type_name": "CCS2ChickenGraphController", - "vtable_address": 63976968, - "methods": [ - 17865968, - 17878448, - 17877952, - 17906944, - 17865136, - 17900496, - 17901760, - 17936880, - 17908288, - 17877344, + "vtable_address": 63980872, + "methods": [ + 17868272, + 17880752, + 17880256, + 17909248, + 17867440, + 17902800, + 17904064, + 17939184, + 17910592, + 17879648, 14312832, 14312848, 14312864, 14312880, - 17865120, - 18506768, - 17868160 + 17867424, + 18509072, + 17870464 ], "bases": [ { @@ -20365,25 +20365,25 @@ }, { "type_name": "CCS2WeaponGraphController", - "vtable_address": 63999688, - "methods": [ - 18355904, - 18364704, - 18366016, - 18452688, - 18355024, - 18447536, - 18450576, - 18463056, - 18455328, - 18363232, + "vtable_address": 64003592, + "methods": [ + 18358208, + 18367008, + 18368320, + 18454992, + 18357328, + 18449840, + 18452880, + 18465360, + 18457632, + 18365536, 14312832, 14312848, 14312864, 14312880, - 18355008, - 18506768, - 18248880 + 18357312, + 18509072, + 18251184 ], "bases": [ { @@ -20405,13 +20405,13 @@ }, { "type_name": "CCSAddonManager", - "vtable_address": 64359544, + "vtable_address": 64363448, "methods": [ - 23434464, + 23437216, 12204208, - 23290016, - 23275520, - 23289184, + 23292768, + 23278272, + 23291936, 12204272, 12204288, 12204304, @@ -20419,8 +20419,8 @@ 12204336, 12204352, 12204368, - 23275568, - 23352752, + 23278320, + 23355504, 12204416, 12204432, 12204448, @@ -20434,7 +20434,7 @@ 12204576, 12204592, 12204608, - 23290240, + 23292992, 12204640, 12204656, 12204672, @@ -20463,12 +20463,12 @@ 12205040, 12205056, 12205072, - 23275456, + 23278208, 12205104, - 23275440, - 23289552, - 23289280, - 23275424 + 23278192, + 23292304, + 23292032, + 23278176 ], "bases": [ { @@ -20501,15 +20501,15 @@ }, { "type_name": "CCSAmmoDef", - "vtable_address": 63684432, + "vtable_address": 63688336, "methods": [ 13055520, - 18506704, + 18509008, 13055536, 16917968, 16918208, 16974064, - 18506768, + 18509072, 16917232, 16908688, 16908704, @@ -20559,60 +20559,60 @@ }, { "type_name": "CCSCameraManager", - "vtable_address": 64347992, + "vtable_address": 64351896, "methods": [ - 22933440, - 22933504, - 21325440, - 21380928, - 21343808, - 22917712, - 21343696, - 21325472, - 21325472, - 21325696, - 21372640, - 21373072, - 21368800, - 21330704, - 21344192, - 21325632, - 21325488, - 21325504, - 21325520, - 21325552, - 21325568, - 21325600, - 21380064, - 21380352, - 21347120, - 21369808, - 21370160, - 21349120, - 21378944, - 21346640, - 21346400, - 21379168, - 21379392, - 21346880, - 21345920, - 21346160, - 21325664, - 21325680, - 21325680, - 21344144, - 21386992, - 21325728, - 21324928, - 21398240, - 21325456, - 23212880, - 21328320, + 22936256, + 22936320, + 21328256, + 21383744, + 21346624, + 22920528, + 21346512, + 21328288, + 21328288, + 21328512, + 21375456, + 21375888, + 21371616, + 21333520, + 21347008, + 21328448, + 21328304, 21328320, - 21540320, - 21348608, - 21325760, - 21360320 + 21328336, + 21328368, + 21328384, + 21328416, + 21382880, + 21383168, + 21349936, + 21372624, + 21372976, + 21351936, + 21381760, + 21349456, + 21349216, + 21381984, + 21382208, + 21349696, + 21348736, + 21348976, + 21328480, + 21328496, + 21328496, + 21346960, + 21389808, + 21328544, + 21327744, + 21401056, + 21328272, + 23215696, + 21331136, + 21331136, + 21543136, + 21351424, + 21328576, + 21363136 ], "bases": [ { @@ -20666,11 +20666,11 @@ }, { "type_name": "CCSCameraManager", - "vtable_address": 64348424, + "vtable_address": 64352328, "methods": [ - 22945840, - 22945984, - 21358656 + 22948656, + 22948800, + 21361472 ], "bases": [ { @@ -20724,17 +20724,17 @@ }, { "type_name": "CCSClientGameStats", - "vtable_address": 64348632, + "vtable_address": 64352536, "methods": [ 12204192, - 23105040, - 22933568, + 23107792, + 22936384, 12204240, 12204256, 12204272, 12204288, 12204304, - 22917744, + 22920560, 12204336, 12204352, 12204368, @@ -20753,7 +20753,7 @@ 12204576, 12204592, 12204608, - 22966624, + 22969440, 12204640, 12204656, 12204672, @@ -20782,17 +20782,17 @@ 12205040, 12205056, 12205072, - 22917056, + 22919872, 12205104, - 22917040, - 22952560, - 22956720, - 22917024, - 23019168, - 22936064, - 22917088, - 22917312, - 23019296 + 22919856, + 22955376, + 22959536, + 22919840, + 23021984, + 22938880, + 22919904, + 22920128, + 23022112 ], "bases": [ { @@ -20856,11 +20856,11 @@ }, { "type_name": "CCSClientGameStats", - "vtable_address": 64349184, + "vtable_address": 64353088, "methods": [ - 22952752, - 22956928, - 23019952 + 22955568, + 22959744, + 23022768 ], "bases": [ { @@ -20924,10 +20924,10 @@ }, { "type_name": "CCSClientGameStats", - "vtable_address": 64349224, + "vtable_address": 64353128, "methods": [ - 22917200, - 22917328 + 22920016, + 22920144 ], "bases": [ { @@ -20991,7 +20991,7 @@ }, { "type_name": "CCSDemoController", - "vtable_address": 64350128, + "vtable_address": 64354032, "methods": [ 12204192, 12204208, @@ -21013,14 +21013,14 @@ 12204464, 12204480, 12204496, - 22917008, - 22936112, + 22919824, + 22938928, 12204544, 12204560, 12204576, 12204592, 12204608, - 23206128, + 23208944, 12204640, 12204656, 12204672, @@ -21049,13 +21049,13 @@ 12205040, 12205056, 12205072, - 22917392, + 22920208, 12205104, - 22917376, - 23081296, - 23081872, - 22917360, - 23026304 + 22920192, + 23084080, + 23084656, + 22920176, + 23029120 ], "bases": [ { @@ -21098,12 +21098,12 @@ }, { "type_name": "CCSDemoController", - "vtable_address": 64350648, + "vtable_address": 64354552, "methods": [ - 22916880, - 22916896, - 22916912, - 23025824 + 22919696, + 22919712, + 22919728, + 23028640 ], "bases": [ { @@ -21146,13 +21146,13 @@ }, { "type_name": "CCSFatDemoRecorder", - "vtable_address": 64187816, + "vtable_address": 64191720, "methods": [ 12204192, - 21558064, + 21560880, 12204224, - 21700800, - 21580432, + 21703616, + 21583248, 12204272, 12204288, 12204304, @@ -21204,13 +21204,13 @@ 12205040, 12205056, 12205072, - 21558144, + 21560960, 12205104, - 21558128, - 21564560, - 21577696, - 21558112, - 21557776 + 21560944, + 21567376, + 21580512, + 21560928, + 21560592 ], "bases": [ { @@ -21264,11 +21264,11 @@ }, { "type_name": "CCSFatDemoRecorder", - "vtable_address": 64188336, + "vtable_address": 64192240, "methods": [ - 21578048, - 21577872, - 21568032 + 21580864, + 21580688, + 21570848 ], "bases": [ { @@ -21322,11 +21322,11 @@ }, { "type_name": "CCSGCClientSystem", - "vtable_address": 64571816, + "vtable_address": 64575720, "methods": [ - 27279200, - 27981888, - 27982288, + 27282368, + 27985152, + 27985552, 12204240, 12204256, 12204272, @@ -21369,8 +21369,8 @@ 12204864, 12204880, 12204896, - 27982256, - 27982272, + 27985520, + 27985536, 12204944, 12204960, 12204976, @@ -21380,27 +21380,27 @@ 12205040, 12205056, 12205072, - 27279120, + 27282288, 12205104, - 27279104, - 27284640, - 27308528, - 27279088, - 27982352, - 28024976, - 28024800, - 28024800, - 28024800, - 28029232, - 27352768, - 27280656, - 27279216, - 27279216, - 27279216, - 27295584, - 27295760, - 27316688, - 27284928 + 27282272, + 27287808, + 27311696, + 27282256, + 27985616, + 28028240, + 28028064, + 28028064, + 28028064, + 28032496, + 27355968, + 27283824, + 27282384, + 27282384, + 27282384, + 27298752, + 27298928, + 27319856, + 27288096 ], "bases": [ { @@ -21464,13 +21464,13 @@ }, { "type_name": "CCSGCClientSystem", - "vtable_address": 64572448, + "vtable_address": 64576352, "methods": [ - 27308656, - 27308784, - 28032208, - 28032224, - 28032240 + 27311824, + 27311952, + 28035472, + 28035488, + 28035504 ], "bases": [ { @@ -21534,13 +21534,13 @@ }, { "type_name": "CCSGCClientSystem", - "vtable_address": 64572504, + "vtable_address": 64576408, "methods": [ - 27302016, - 27302032, - 27302048, - 27309616, - 27309440 + 27305184, + 27305200, + 27305216, + 27312784, + 27312608 ], "bases": [ { @@ -21604,35 +21604,35 @@ }, { "type_name": "CCSGOCompassPanel", - "vtable_address": 64462584, + "vtable_address": 64466488, "methods": [ 12043984, - 59816784, - 24701040, - 24701056, - 59817120, - 59817136, - 59817120, + 59820688, + 24704048, + 24704064, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -21645,12 +21645,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -21665,34 +21665,34 @@ 12233520, 12233296, 12233760, - 59835792, - 24701024, - 24705088, - 24705216, + 59839696, + 24704032, + 24708096, + 24708224, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24703792, - 24738000 + 24706800, + 24741008 ], "bases": [ { @@ -21757,21 +21757,21 @@ }, { "type_name": "CCSGOCompassPanel", - "vtable_address": 64463296, + "vtable_address": 64467200, "methods": [ - 24705152, - 24705296, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 21705264, - 21705280, - 24718832, - 21705312, - 24721856, - 21705344 + 24708160, + 24708304, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 21708080, + 21708096, + 24721840, + 21708128, + 24724864, + 21708160 ], "bases": [ { @@ -21836,35 +21836,35 @@ }, { "type_name": "CCSGODelayLoadPanel", - "vtable_address": 64394056, + "vtable_address": 64397960, "methods": [ 12043984, - 59816784, - 23622288, - 23622304, - 59817120, - 59817136, - 59817120, + 59820688, + 23625040, + 23625056, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -21877,12 +21877,12 @@ 12399392, 12233312, 12233168, - 23788032, - 59825616, - 59825216, - 59836080, + 23790784, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -21897,30 +21897,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23622272, - 23627728, - 23638720, + 59839696, + 23625024, + 23630480, + 23641472, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -21966,11 +21966,11 @@ }, { "type_name": "CCSGODialogVariableHandlers", - "vtable_address": 64394848, + "vtable_address": 64398752, "methods": [ - 23621200, + 23623952, 12204208, - 23622368, + 23625120, 12204240, 12204256, 12204272, @@ -22024,12 +22024,12 @@ 12205040, 12205056, 12205072, - 23634800, + 23637552, 12205104, - 23633888, - 23627872, - 23627888, - 23622352 + 23636640, + 23630624, + 23630640, + 23625104 ], "bases": [ { @@ -22062,21 +22062,21 @@ }, { "type_name": "CCSGOHudElement", - "vtable_address": 64196536, - "methods": [ - 21709632, - 21717696, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 21705264, - 21705280, - 21705328, - 21705312, - 21724544, - 21705344 + "vtable_address": 64200440, + "methods": [ + 21712448, + 21720512, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 21708080, + 21708096, + 21708144, + 21708128, + 21727360, + 21708160 ], "bases": [ { @@ -22109,40 +22109,40 @@ }, { "type_name": "CCSGOInput", - "vtable_address": 64349288, - "methods": [ - 22953184, - 22953456, - 23212976, - 23213616, - 23220544, - 23214160, - 21550128, - 21424272, - 23220464, - 21370512, - 22917776, - 22958688, - 22969056, - 22917792, - 22962256, - 22966736, - 22917776, - 21472448, - 21363424, - 23221248, - 22933744, - 21324368, - 23214816, - 22957920, - 22957824, - 21328624, - 21328656, - 21324384, - 21324400, - 21324416, - 23100768, - 23020192 + "vtable_address": 64353192, + "methods": [ + 22956000, + 22956272, + 23215792, + 23216432, + 23223360, + 23216976, + 21552944, + 21427088, + 23223280, + 21373328, + 22920592, + 22961504, + 22971872, + 22920608, + 22965072, + 22969552, + 22920592, + 21475264, + 21366240, + 23224064, + 22936560, + 21327184, + 23217632, + 22960736, + 22960640, + 21331440, + 21331472, + 21327200, + 21327216, + 21327232, + 23103552, + 23023008 ], "bases": [ { @@ -22184,9 +22184,9 @@ }, { "type_name": "CCSGOInput", - "vtable_address": 64349560, + "vtable_address": 64353464, "methods": [ - 23100816 + 23103600 ], "bases": [ { @@ -22228,9 +22228,9 @@ }, { "type_name": "CCSGOInput", - "vtable_address": 64349584, + "vtable_address": 64353488, "methods": [ - 23020560 + 23023376 ], "bases": [ { @@ -22272,35 +22272,35 @@ }, { "type_name": "CCSGOMoneyPanel", - "vtable_address": 64477136, + "vtable_address": 64481040, "methods": [ 12043984, - 59816784, - 24884400, - 24884416, - 59817120, - 59817136, - 59817120, + 59820688, + 24887408, + 24887424, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -22313,12 +22313,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -22333,30 +22333,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24884384, - 24887328, - 24888336, + 59839696, + 24887392, + 24890336, + 24891344, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -22391,35 +22391,35 @@ }, { "type_name": "CCSGOPerfTestsJsMultipleContexts", - "vtable_address": 64409256, + "vtable_address": 64413160, "methods": [ 12043984, - 59816784, - 23898288, - 23898304, - 59817120, - 59817136, - 59817120, + 59820688, + 23901040, + 23901056, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -22432,12 +22432,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -22452,30 +22452,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23898272, - 23901728, - 23901744, + 59839696, + 23901024, + 23904480, + 23904496, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -22510,35 +22510,35 @@ }, { "type_name": "CCSGOPerfTestsJsSingleContext", - "vtable_address": 64409952, + "vtable_address": 64413856, "methods": [ 12043984, - 59816784, - 23898352, - 23898368, - 59817120, - 59817136, - 59817120, + 59820688, + 23901104, + 23901120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -22551,12 +22551,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -22571,30 +22571,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23898336, - 23901792, - 23901808, + 59839696, + 23901088, + 23904544, + 23904560, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -22629,35 +22629,35 @@ }, { "type_name": "CCSGOPerfTestsTypeSafety", - "vtable_address": 64410648, + "vtable_address": 64414552, "methods": [ 12043984, - 59816784, - 23898416, - 23898432, - 59817120, - 59817136, - 59817120, + 59820688, + 23901168, + 23901184, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -22670,12 +22670,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -22690,30 +22690,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23898400, - 23901856, - 23901872, + 59839696, + 23901152, + 23904608, + 23904624, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -22748,10 +22748,10 @@ }, { "type_name": "CCSGOPlayerAnimGraphState", - "vtable_address": 64001024, + "vtable_address": 64004928, "methods": [ - 18356032, - 18355376 + 18358336, + 18357680 ], "bases": [], "model": { @@ -22762,11 +22762,11 @@ }, { "type_name": "CCSGOPlayerVisPostProcessLayerRenderer", - "vtable_address": 64625448, + "vtable_address": 64629352, "methods": [ - 28391216, - 28332352, - 28334000, + 28394608, + 28335744, + 28337392, 12236576 ], "bases": [ @@ -22789,53 +22789,53 @@ }, { "type_name": "CCSGORetakeBombSiteAnimLabel", - "vtable_address": 64480416, + "vtable_address": 64484320, "methods": [ 12043984, - 59816784, - 24884992, - 24885008, - 60419360, - 59817136, - 59817120, - 60376032, - 60377600, - 60427728, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60424192, - 60424624, - 59819120, - 59817872, - 59826592, - 60414000, + 59820688, + 24888000, + 24888016, + 60423264, + 59821040, + 59821024, + 60379936, + 60381504, + 60431632, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60428096, + 60428528, + 59823024, + 59821776, + 59830496, + 60417904, 12233184, - 59817888, - 59817904, - 59816800, - 60411984, - 59823152, + 59821792, + 59821808, + 59820704, + 60415888, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60399264, + 60403168, 12233648, 12233632, 12233264, - 24884288, + 24887296, 12399392, 12233312, - 60399888, - 60418784, - 59825616, - 59825216, - 59836080, + 60403792, + 60422688, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -22850,38 +22850,38 @@ 12233520, 12233296, 12233760, - 59835792, - 24884976, - 24892352, - 24892384, - 60366464, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59839696, + 24887984, + 24895360, + 24895392, + 60370368, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 60427504, - 24892336, - 60370064, + 60431408, + 24895344, + 60373968, 12233360, 12233536, 12233552, 12233568, 12233584, - 60426240, + 60430144, 12233728, 12233744, - 60413088, - 60413136, - 24072672, - 24884304, - 24894384, - 60374320 + 60416992, + 60417040, + 24075424, + 24887312, + 24897392, + 60378224 ], "bases": [ { @@ -22935,9 +22935,9 @@ }, { "type_name": "CCSGORetakeBombSiteAnimLabel", - "vtable_address": 64481160, + "vtable_address": 64485064, "methods": [ - 60374560 + 60378464 ], "bases": [ { @@ -22991,35 +22991,35 @@ }, { "type_name": "CCSGORetakePanel", - "vtable_address": 64481184, + "vtable_address": 64485088, "methods": [ 12043984, - 59816784, - 24884928, - 24884944, - 59817120, - 59817136, - 59817120, + 59820688, + 24887936, + 24887952, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -23032,12 +23032,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -23052,35 +23052,35 @@ 12233520, 12233296, 12233760, - 59835792, - 24884912, - 24887392, - 24888528, + 59839696, + 24887920, + 24890400, + 24891536, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24888864, - 24927440, - 24885152 + 24891872, + 24930448, + 24888160 ], "bases": [ { @@ -23145,21 +23145,21 @@ }, { "type_name": "CCSGORetakePanel", - "vtable_address": 64481904, + "vtable_address": 64485808, "methods": [ - 24887456, - 24888608, - 21705296, - 21705200, - 21705216, - 24907360, - 21705248, - 21705264, - 21705280, - 24908896, - 21705312, - 24915744, - 21705344 + 24890464, + 24891616, + 21708112, + 21708016, + 21708032, + 24910368, + 21708064, + 21708080, + 21708096, + 24911904, + 21708128, + 24918752, + 21708160 ], "bases": [ { @@ -23224,35 +23224,35 @@ }, { "type_name": "CCSGOStatsProgressGraph", - "vtable_address": 64509704, + "vtable_address": 64513608, "methods": [ 12043984, - 59816784, - 25283968, - 25283984, - 25286240, - 59817136, - 59817120, + 59820688, + 25286976, + 25286992, + 25289248, + 59821040, + 59821024, 12233600, - 25322416, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 25325424, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 25285296, + 59821792, + 59821808, + 59820704, + 59832432, + 25288304, 12233664, 12233696, 12233680, @@ -23265,12 +23265,12 @@ 12399392, 12233312, 12233168, - 25427264, - 59825616, - 59825216, - 59836080, + 25430272, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -23280,40 +23280,40 @@ 12233472, 12233488, 12233504, - 25305184, - 25290736, + 25308192, + 25293744, 12233520, 12233296, 12233760, - 59835792, - 25283952, - 25290032, - 25289824, + 59839696, + 25286960, + 25293040, + 25292832, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25424800, - 25323744, - 25283856 + 25427808, + 25326752, + 25286864 ], "bases": [ { @@ -23357,7 +23357,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 63721592, + "vtable_address": 63725496, "methods": [ 12204192, 12204208, @@ -23415,11 +23415,11 @@ 12205040, 12205056, 12205072, - 17125888, + 17125984, 12205104, 17120320, - 17214512, - 17214912, + 17216816, + 17217216, 17120304, 14001504, 14148288, @@ -23483,7 +23483,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 63722264, + "vtable_address": 63726168, "methods": [ 14001712, 14148976, @@ -23544,11 +23544,11 @@ }, { "type_name": "CCSGO_3dPanelRenderer", - "vtable_address": 64439456, + "vtable_address": 64443360, "methods": [ - 24268112, - 24271936, - 24268128, + 24270864, + 24274688, + 24270880, 12233136 ], "bases": [ @@ -23593,35 +23593,35 @@ }, { "type_name": "CCSGO_AudioSettingsScreen", - "vtable_address": 64388312, + "vtable_address": 64392216, "methods": [ 12043984, - 59816784, - 23621152, - 23621168, - 59817120, - 59817136, - 59817120, + 59820688, + 23623904, + 23623920, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -23634,12 +23634,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -23654,30 +23654,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23621136, - 23624448, - 23624624, + 59839696, + 23623888, + 23627200, + 23627376, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -23712,35 +23712,35 @@ }, { "type_name": "CCSGO_AvatarHealthBar", - "vtable_address": 64484744, + "vtable_address": 64488648, "methods": [ 12043984, - 59816784, - 24884592, - 24884608, - 59817120, - 59817136, - 59817120, + 59820688, + 24887600, + 24887616, + 59821024, + 59821040, + 59821024, 12233600, - 24885440, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 24888448, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 24907776, + 59821792, + 59821808, + 59820704, + 59832432, + 24910784, 12233664, 12233696, 12233680, @@ -23753,12 +23753,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -23773,30 +23773,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24884576, - 24887344, - 24888384, + 59839696, + 24887584, + 24890352, + 24891392, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -23831,40 +23831,40 @@ }, { "type_name": "CCSGO_AvatarImage", - "vtable_address": 64389008, + "vtable_address": 64392912, "methods": [ 12043984, - 59816784, - 23621248, - 23621264, - 23759392, - 59817136, - 59817120, + 59820688, + 23624000, + 23624016, + 23762144, + 59821040, + 59821024, 12233600, - 23756864, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 23759616, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 23717888, + 59821792, + 59821808, + 59820704, + 59832432, + 23720640, 12233664, 12233696, 12233680, 12233712, - 23757312, + 23760064, 12233648, 12233632, 12233264, @@ -23872,12 +23872,12 @@ 12399392, 12233312, 12233168, - 23801568, - 59825616, - 59825216, - 59836080, + 23804320, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -23887,38 +23887,38 @@ 12233472, 12233488, 12233504, - 23759824, - 23638656, + 23762576, + 23641408, 12233520, 12233296, 12233760, - 59835792, - 23621232, - 23658352, - 23658592, + 59839696, + 23623984, + 23661104, + 23661344, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23758544 + 23761296 ], "bases": [ { @@ -23951,35 +23951,35 @@ }, { "type_name": "CCSGO_BackbufferImagePanel", - "vtable_address": 64389712, + "vtable_address": 64393616, "methods": [ 12043984, - 59816784, - 23621344, - 23621360, - 60674208, - 59817136, - 59817120, + 59820688, + 23624096, + 23624112, + 60678112, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -23992,12 +23992,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -24012,33 +24012,33 @@ 12233520, 12233296, 12233760, - 59835792, - 23621328, - 23637968, - 23638048, + 59839696, + 23624080, + 23640720, + 23640800, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23621312 + 23624064 ], "bases": [ { @@ -24082,11 +24082,11 @@ }, { "type_name": "CCSGO_BackbufferImageRenderer", - "vtable_address": 64390416, + "vtable_address": 64394320, "methods": [ - 23642784, - 23656688, - 23763872, + 23645536, + 23659440, + 23766624, 12233136 ], "bases": [ @@ -24131,35 +24131,35 @@ }, { "type_name": "CCSGO_BlurTarget", - "vtable_address": 64390464, + "vtable_address": 64394368, "methods": [ 12043984, - 59816784, - 23621424, - 23621440, - 23806624, - 59817136, - 59817120, + 59820688, + 23624176, + 23624192, + 23809376, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -24172,12 +24172,12 @@ 12399392, 12233312, 12233168, - 23784848, - 59825616, - 59825216, - 59836080, + 23787600, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -24192,30 +24192,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23621408, - 23636576, - 23636800, + 59839696, + 23624160, + 23639328, + 23639552, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -24250,35 +24250,35 @@ }, { "type_name": "CCSGO_BuyMenu", - "vtable_address": 64391160, + "vtable_address": 64395064, "methods": [ 12043984, - 59816784, - 23621584, - 23621600, - 59817120, - 59817136, - 59817120, + 59820688, + 23624336, + 23624352, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 23713888, - 23731216, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 23716640, + 23733968, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -24291,54 +24291,54 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, 12233424, 12233440, 12233456, - 23731056, - 23845040, + 23733808, + 23847792, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 23621568, - 23638144, - 23638464, + 59839696, + 23624320, + 23640896, + 23641216, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23837712, - 23660768 + 23840464, + 23663520 ], "bases": [ { @@ -24402,9 +24402,9 @@ }, { "type_name": "CCSGO_BuyMenu", - "vtable_address": 64391872, + "vtable_address": 64395776, "methods": [ - 23838560 + 23841312 ], "bases": [ { @@ -24468,11 +24468,11 @@ }, { "type_name": "CCSGO_BuyMenu", - "vtable_address": 64391896, + "vtable_address": 64395800, "methods": [ - 23638448, - 23638512, - 23642112 + 23641200, + 23641264, + 23644864 ], "bases": [ { @@ -24536,35 +24536,35 @@ }, { "type_name": "CCSGO_Chat", - "vtable_address": 64391936, + "vtable_address": 64395840, "methods": [ 12043984, - 59816784, - 23621968, - 23621984, - 59817120, - 59817136, - 59817120, + 59820688, + 23624720, + 23624736, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -24577,12 +24577,12 @@ 12399392, 12233312, 12233168, - 23786032, - 59825616, - 59825216, - 59836080, + 23788784, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -24597,33 +24597,33 @@ 12233520, 12233296, 12233760, - 59835792, - 23621952, - 23624464, - 23638560, + 59839696, + 23624704, + 23627216, + 23641312, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23770880 + 23773632 ], "bases": [ { @@ -24666,9 +24666,9 @@ }, { "type_name": "CCSGO_Chat", - "vtable_address": 64392640, + "vtable_address": 64396544, "methods": [ - 23778160 + 23780912 ], "bases": [ { @@ -24711,35 +24711,35 @@ }, { "type_name": "CCSGO_CountdownTimer", - "vtable_address": 64427488, + "vtable_address": 64431392, "methods": [ 12043984, - 59816784, - 24073168, - 24073184, - 59817120, - 59817136, - 59817120, + 59820688, + 24075920, + 24075936, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 24156656, + 59821792, + 59821808, + 59820704, + 59832432, + 24159408, 12233664, 12233696, 12233680, @@ -24752,12 +24752,12 @@ 12399392, 12233312, 12233168, - 24185376, - 59825616, - 59825216, - 59836080, + 24188128, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -24772,30 +24772,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24073152, - 24084288, - 24084432, + 59839696, + 24075904, + 24087040, + 24087184, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -24830,35 +24830,35 @@ }, { "type_name": "CCSGO_Crosshair", - "vtable_address": 64393360, + "vtable_address": 64397264, "methods": [ 12043984, - 59816784, - 23622032, - 23622048, - 23792432, - 59817136, - 59817120, + 59820688, + 23624784, + 23624800, + 23795184, + 59821040, + 59821024, 12233600, - 23622208, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 23624960, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 23631216, + 59821792, + 59821808, + 59820704, + 59832432, + 23633968, 12233664, 12233696, 12233680, @@ -24871,12 +24871,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -24891,30 +24891,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23622016, - 23624608, - 23624832, + 59839696, + 23624768, + 23627360, + 23627584, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -24949,35 +24949,35 @@ }, { "type_name": "CCSGO_EndOfMatch", - "vtable_address": 64395360, + "vtable_address": 64399264, "methods": [ 12043984, - 59816784, - 23621648, - 23621664, - 59817120, - 59817136, - 59817120, + 59820688, + 23624400, + 23624416, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -24990,12 +24990,12 @@ 12399392, 12233312, 12233168, - 23791408, - 59825616, - 59825216, - 59836080, + 23794160, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -25010,34 +25010,34 @@ 12233520, 12233296, 12233760, - 59835792, - 23621632, - 23813168, - 23813472, + 59839696, + 23624384, + 23815920, + 23816224, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23745040, - 23780016 + 23747792, + 23782768 ], "bases": [ { @@ -25101,11 +25101,11 @@ }, { "type_name": "CCSGO_EndOfMatch", - "vtable_address": 64396072, + "vtable_address": 64399976, "methods": [ - 23813456, - 23813520, - 23745600 + 23816208, + 23816272, + 23748352 ], "bases": [ { @@ -25169,9 +25169,9 @@ }, { "type_name": "CCSGO_EndOfMatch", - "vtable_address": 64396112, + "vtable_address": 64400016, "methods": [ - 23716864 + 23719616 ], "bases": [ { @@ -25235,35 +25235,35 @@ }, { "type_name": "CCSGO_EndOfMatchCharactersPanel", - "vtable_address": 64396832, + "vtable_address": 64400736, "methods": [ 12043984, - 59816784, - 23621840, - 23621856, - 59817120, - 59817136, - 59817120, + 59820688, + 23624592, + 23624608, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -25276,12 +25276,12 @@ 12399392, 12233312, 12233168, - 23627568, - 59825616, - 59825216, - 59836080, + 23630320, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -25296,30 +25296,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23621824, - 23624592, - 23624784, + 59839696, + 23624576, + 23627344, + 23627536, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -25354,35 +25354,35 @@ }, { "type_name": "CCSGO_EndOfMatchSkillgroupPanel", - "vtable_address": 64396136, + "vtable_address": 64400040, "methods": [ 12043984, - 59816784, - 23621776, - 23621792, - 59817120, - 59817136, - 59817120, + 59820688, + 23624528, + 23624544, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -25395,12 +25395,12 @@ 12399392, 12233312, 12233168, - 23816256, - 59825616, - 59825216, - 59836080, + 23819008, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -25415,30 +25415,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23621760, - 23628576, - 23637456, + 59839696, + 23624512, + 23631328, + 23640208, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -25473,35 +25473,35 @@ }, { "type_name": "CCSGO_EndOfMatchVotingPanel", - "vtable_address": 64398224, + "vtable_address": 64402128, "methods": [ 12043984, - 59816784, - 23621904, - 23621920, - 59817120, - 59817136, - 59817120, + 59820688, + 23624656, + 23624672, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -25514,12 +25514,12 @@ 12399392, 12233312, 12233168, - 23821168, - 59825616, - 59825216, - 59836080, + 23823920, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -25534,30 +25534,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23621888, - 23628656, - 23637552, + 59839696, + 23624640, + 23631408, + 23640304, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -25592,35 +25592,35 @@ }, { "type_name": "CCSGO_EndOfMatchXpPanel", - "vtable_address": 64397528, + "vtable_address": 64401432, "methods": [ 12043984, - 59816784, - 23621712, - 23621728, - 59817120, - 59817136, - 59817120, + 59820688, + 23624464, + 23624480, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -25633,12 +25633,12 @@ 12399392, 12233312, 12233168, - 23820064, - 59825616, - 59825216, - 59836080, + 23822816, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -25653,30 +25653,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23621696, - 23624544, - 23624672, + 59839696, + 23624448, + 23627296, + 23627424, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -25711,35 +25711,35 @@ }, { "type_name": "CCSGO_FrameTimeSlider", - "vtable_address": 64505440, + "vtable_address": 64509344, "methods": [ 12043984, - 59816784, - 25205248, - 25205264, - 59817120, - 59817136, - 59817120, + 59820688, + 25208256, + 25208272, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 25209904, - 59828528, - 25222560, + 59821792, + 59821808, + 25212912, + 59832432, + 25225568, 12233664, 12233696, 12233680, @@ -25752,12 +25752,12 @@ 12399392, 12233312, 12233168, - 25262736, - 59825616, - 59825216, - 59836080, + 25265744, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -25772,40 +25772,40 @@ 12233520, 12233296, 12233760, - 59835792, - 25205232, - 25215520, - 25215824, + 59839696, + 25208240, + 25218528, + 25218832, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25273152, - 25275088, - 25275120, - 25217488, - 25218912, - 25273216, - 25219584, - 25205200 + 25276160, + 25278096, + 25278128, + 25220496, + 25221920, + 25276224, + 25222592, + 25208208 ], "bases": [ { @@ -25870,9 +25870,9 @@ }, { "type_name": "CCSGO_FrameTimeSlider", - "vtable_address": 64506200, + "vtable_address": 64510104, "methods": [ - 25205216 + 25208224 ], "bases": [ { @@ -25937,53 +25937,53 @@ }, { "type_name": "CCSGO_GameTimeLabel", - "vtable_address": 64522144, + "vtable_address": 64526048, "methods": [ 12043984, - 59816784, - 25442016, - 25442032, - 60419360, - 59817136, - 59817120, - 60376032, - 60377600, - 60427728, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60424192, - 60424624, - 59819120, - 59817872, - 59826592, - 60414000, + 59820688, + 25445024, + 25445040, + 60423264, + 59821040, + 59821024, + 60379936, + 60381504, + 60431632, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60428096, + 60428528, + 59823024, + 59821776, + 59830496, + 60417904, 12233184, - 59817888, - 59817904, - 59816800, - 60411984, - 26319872, + 59821792, + 59821808, + 59820704, + 60415888, + 26322880, 12233664, 12233696, 12233680, 12233712, - 60399264, + 60403168, 12233648, 12233632, 12233264, - 24884288, + 24887296, 12399392, 12233312, - 60399888, - 26319584, - 59825616, - 59825216, - 59836080, + 60403792, + 26322592, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -25998,38 +25998,38 @@ 12233520, 12233296, 12233760, - 59835792, - 25442000, - 25663744, - 25664032, - 60366464, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59839696, + 25445008, + 25666752, + 25667040, + 60370368, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 60427504, - 24892336, - 60370064, + 60431408, + 24895344, + 60373968, 12233360, 12233536, 12233552, 12233568, 12233584, - 60426240, + 60430144, 12233728, 12233744, - 60413088, - 60413136, - 24072672, - 24884304, - 24894384, - 60374320 + 60416992, + 60417040, + 24075424, + 24887312, + 24897392, + 60378224 ], "bases": [ { @@ -26083,9 +26083,9 @@ }, { "type_name": "CCSGO_GameTimeLabel", - "vtable_address": 64522888, + "vtable_address": 64526792, "methods": [ - 60374560 + 60378464 ], "bases": [ { @@ -26139,35 +26139,35 @@ }, { "type_name": "CCSGO_GlobalPopups", - "vtable_address": 64398920, + "vtable_address": 64402824, "methods": [ 12043984, - 59816784, - 23622576, - 23622592, - 59817120, - 59817136, - 59817120, + 59820688, + 23625328, + 23625344, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -26180,12 +26180,12 @@ 12399392, 12233312, 12400240, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -26200,30 +26200,30 @@ 12400256, 12233296, 12233760, - 59835792, - 23622560, - 23628912, - 23628960, + 59839696, + 23625312, + 23631664, + 23631712, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12406176, @@ -26292,10 +26292,10 @@ }, { "type_name": "CCSGO_GlobalPopups", - "vtable_address": 64399632, + "vtable_address": 64403536, "methods": [ - 23635136, - 23635456, + 23637888, + 23638208, 12400224 ], "bases": [ @@ -26361,35 +26361,35 @@ }, { "type_name": "CCSGO_Hud", - "vtable_address": 64457528, + "vtable_address": 64461432, "methods": [ 12043984, - 59816784, - 24700352, - 24700368, - 59817120, - 59817136, - 59817120, + 59820688, + 24703360, + 24703376, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -26402,12 +26402,12 @@ 12399392, 12233312, 12400240, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -26422,36 +26422,36 @@ 12400256, 12233296, 12233760, - 59835792, - 24700336, - 24838496, - 24839520, + 59839696, + 24703344, + 24841504, + 24842528, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12406176, 12400208, - 24747328, - 24723840 + 24750336, + 24726848 ], "bases": [ { @@ -26526,10 +26526,10 @@ }, { "type_name": "CCSGO_Hud", - "vtable_address": 64458256, + "vtable_address": 64462160, "methods": [ - 24839504, - 24839568, + 24842512, + 24842576, 12400224 ], "bases": [ @@ -26605,12 +26605,12 @@ }, { "type_name": "CCSGO_Hud", - "vtable_address": 64458296, + "vtable_address": 64462200, "methods": [ - 22916880, - 24724208, - 22916912, - 24747344 + 22919696, + 24727216, + 22919728, + 24750352 ], "bases": [ { @@ -26685,35 +26685,35 @@ }, { "type_name": "CCSGO_HudAutoDisconnect", - "vtable_address": 64459144, + "vtable_address": 64463048, "methods": [ 12043984, - 59816784, - 24700816, - 24700832, - 59817120, - 59817136, - 59817120, + 59820688, + 24703824, + 24703840, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -26726,12 +26726,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -26746,35 +26746,35 @@ 12233520, 12233296, 12233760, - 59835792, - 24700800, - 24705360, - 24705488, + 59839696, + 24703808, + 24708368, + 24708496, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24745104, - 24703600, - 24722224 + 24748112, + 24706608, + 24725232 ], "bases": [ { @@ -26839,21 +26839,21 @@ }, { "type_name": "CCSGO_HudAutoDisconnect", - "vtable_address": 64459864, + "vtable_address": 64463768, "methods": [ - 24705424, - 24705568, - 21705296, - 21705200, - 21705216, - 21705232, - 24745760, - 21705264, - 21705280, - 24715008, - 21705312, - 24744000, - 21705344 + 24708432, + 24708576, + 21708112, + 21708016, + 21708032, + 21708048, + 24748768, + 21708080, + 21708096, + 24718016, + 21708128, + 24747008, + 21708160 ], "bases": [ { @@ -26918,35 +26918,35 @@ }, { "type_name": "CCSGO_HudBlurTarget", - "vtable_address": 64459984, + "vtable_address": 64463888, "methods": [ 12043984, - 59816784, - 24700448, - 24700464, - 23806624, - 59817136, - 59817120, + 59820688, + 24703456, + 24703472, + 23809376, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -26959,12 +26959,12 @@ 12399392, 12233312, 12233168, - 23784848, - 59825616, - 59825216, - 59836080, + 23787600, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -26979,33 +26979,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24700432, - 24714656, - 24714400, + 59839696, + 24703440, + 24717664, + 24717408, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24713072 + 24716080 ], "bases": [ { @@ -27081,21 +27081,21 @@ }, { "type_name": "CCSGO_HudBlurTarget", - "vtable_address": 64460688, - "methods": [ - 24713792, - 24714576, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 24713232, - 21705280, - 21705328, - 21705312, - 21724544, - 21705344 + "vtable_address": 64464592, + "methods": [ + 24716800, + 24717584, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 24716240, + 21708096, + 21708144, + 21708128, + 21727360, + 21708160 ], "bases": [ { @@ -27171,35 +27171,35 @@ }, { "type_name": "CCSGO_HudChat", - "vtable_address": 64461648, + "vtable_address": 64465552, "methods": [ 12043984, - 59816784, - 24700592, - 24700608, - 59817120, - 59817136, - 59817120, + 59820688, + 24703600, + 24703616, + 59821024, + 59821040, + 59821024, 12233600, - 24725264, - 24792336, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 24706288, - 59819120, - 59817872, - 59826592, - 59843248, + 24728272, + 24795344, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 24709296, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -27212,12 +27212,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -27232,41 +27232,41 @@ 12233520, 12233296, 12233760, - 59835792, - 24700576, - 24714896, - 24718352, + 59839696, + 24703584, + 24717904, + 24721360, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24700944, - 24700976, - 24727136, - 24706160, - 24758736, - 24878912, - 24701008, - 24720112, - 24700640 + 24703952, + 24703984, + 24730144, + 24709168, + 24761744, + 24881920, + 24704016, + 24723120, + 24703648 ], "bases": [ { @@ -27341,21 +27341,21 @@ }, { "type_name": "CCSGO_HudChat", - "vtable_address": 64462416, - "methods": [ - 24718608, - 24718480, - 21705296, - 24710784, - 24711824, - 21705232, - 21705248, - 21705264, - 21705280, - 24758784, - 21705312, - 24720960, - 24713472 + "vtable_address": 64466320, + "methods": [ + 24721616, + 24721488, + 21708112, + 24713792, + 24714832, + 21708048, + 21708064, + 21708080, + 21708096, + 24761792, + 21708128, + 24723968, + 24716480 ], "bases": [ { @@ -27430,12 +27430,12 @@ }, { "type_name": "CCSGO_HudChat", - "vtable_address": 64462536, + "vtable_address": 64466440, "methods": [ - 24720224, - 24710800, - 24879152, - 24700656 + 24723232, + 24713808, + 24882160, + 24703664 ], "bases": [ { @@ -27510,35 +27510,35 @@ }, { "type_name": "CCSGO_HudDMBonusPanel", - "vtable_address": 64467576, + "vtable_address": 64471480, "methods": [ 12043984, - 59816784, - 24701360, - 24701376, - 59817120, - 59817136, - 59817120, + 59820688, + 24704368, + 24704384, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -27551,12 +27551,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -27571,36 +27571,36 @@ 12233520, 12233296, 12233760, - 59835792, - 24701344, - 24705776, - 24705840, + 59839696, + 24704352, + 24708784, + 24708848, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24817648, - 24778016, - 24778272, - 24776736 + 24820656, + 24781024, + 24781280, + 24779744 ], "bases": [ { @@ -27665,21 +27665,21 @@ }, { "type_name": "CCSGO_HudDMBonusPanel", - "vtable_address": 64468304, + "vtable_address": 64472208, "methods": [ - 24710944, - 24711984, - 24777264, - 24778400, - 21705216, - 24778144, - 21705248, - 21705264, - 24817888, - 21705328, - 21705312, - 21724544, - 21705344 + 24713952, + 24714992, + 24780272, + 24781408, + 21708032, + 24781152, + 21708064, + 21708080, + 24820896, + 21708144, + 21708128, + 21727360, + 21708160 ], "bases": [ { @@ -27744,35 +27744,35 @@ }, { "type_name": "CCSGO_HudDamageIndicator", - "vtable_address": 64463488, + "vtable_address": 64467392, "methods": [ 12043984, - 59816784, - 24701104, - 24701120, - 59817120, - 59817136, - 59817120, + 59820688, + 24704112, + 24704128, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -27785,12 +27785,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -27805,37 +27805,37 @@ 12233520, 12233296, 12233760, - 59835792, - 24701088, - 24704944, - 24705008, + 59839696, + 24704096, + 24707952, + 24708016, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24763008, - 24763008, - 24719136, - 24738176, - 24763024 + 24766016, + 24766016, + 24722144, + 24741184, + 24766032 ], "bases": [ { @@ -27900,21 +27900,21 @@ }, { "type_name": "CCSGO_HudDamageIndicator", - "vtable_address": 64464224, + "vtable_address": 64468128, "methods": [ - 24710816, - 24711856, - 21705296, - 24763072, - 24763088, - 21705232, - 24719632, - 21705264, - 21705280, - 24763104, - 21705312, - 24738384, - 21705344 + 24713824, + 24714864, + 21708112, + 24766080, + 24766096, + 21708048, + 24722640, + 21708080, + 21708096, + 24766112, + 21708128, + 24741392, + 21708160 ], "bases": [ { @@ -27979,35 +27979,35 @@ }, { "type_name": "CCSGO_HudDeathNotice", - "vtable_address": 64465160, + "vtable_address": 64469064, "methods": [ 12043984, - 59816784, - 24701232, - 24701248, - 59817120, - 59817136, - 59817120, + 59820688, + 24704240, + 24704256, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -28020,12 +28020,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -28040,38 +28040,38 @@ 12233520, 12233296, 12233760, - 59835792, - 24701216, - 24707360, - 24717840, + 59839696, + 24704224, + 24710368, + 24720848, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24716896, - 24764864, - 24765008, - 24728272, - 24707456, - 24861968 + 24719904, + 24767872, + 24768016, + 24731280, + 24710464, + 24864976 ], "bases": [ { @@ -28136,21 +28136,21 @@ }, { "type_name": "CCSGO_HudDeathNotice", - "vtable_address": 64465904, - "methods": [ - 24718064, - 24717952, - 24862848, - 24764992, - 24765072, - 21705232, - 24717824, - 21705264, - 21705280, - 24716448, - 21705312, - 24722032, - 21705344 + "vtable_address": 64469808, + "methods": [ + 24721072, + 24720960, + 24865856, + 24768000, + 24768080, + 21708048, + 24720832, + 21708080, + 21708096, + 24719456, + 21708128, + 24725040, + 21708160 ], "bases": [ { @@ -28215,35 +28215,35 @@ }, { "type_name": "CCSGO_HudDeathPanel", - "vtable_address": 64466024, + "vtable_address": 64469928, "methods": [ 12043984, - 59816784, - 24700528, - 24700544, - 59817120, - 59817136, - 59817120, + 59820688, + 24703536, + 24703552, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -28256,12 +28256,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -28276,37 +28276,37 @@ 12233520, 12233296, 12233760, - 59835792, - 24700512, - 24705632, - 24705696, + 59839696, + 24703520, + 24708640, + 24708704, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24768304, - 24768656, - 24725200, - 24734848, - 24814528 + 24771312, + 24771664, + 24728208, + 24737856, + 24817536 ], "bases": [ { @@ -28371,21 +28371,21 @@ }, { "type_name": "CCSGO_HudDeathPanel", - "vtable_address": 64466760, - "methods": [ - 24710880, - 24711920, - 24814832, - 24768528, - 24768544, - 21705232, - 24725232, - 21705264, - 21705280, - 21705328, - 21705312, - 24721120, - 21705344 + "vtable_address": 64470664, + "methods": [ + 24713888, + 24714928, + 24817840, + 24771536, + 24771552, + 21708048, + 24728240, + 21708080, + 21708096, + 21708144, + 21708128, + 24724128, + 21708160 ], "bases": [ { @@ -28450,35 +28450,35 @@ }, { "type_name": "CCSGO_HudDemoController", - "vtable_address": 64458416, + "vtable_address": 64462320, "methods": [ 12043984, - 59816784, - 24700720, - 24700736, - 59817120, - 59817136, - 59817120, + 59820688, + 24703728, + 24703744, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -28491,12 +28491,12 @@ 12399392, 12233312, 12233168, - 24841312, - 59825616, - 59825216, - 59836080, + 24844320, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -28511,33 +28511,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24700704, - 24715136, - 24716768, + 59839696, + 24703712, + 24718144, + 24719776, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24704368 + 24707376 ], "bases": [ { @@ -28580,9 +28580,9 @@ }, { "type_name": "CCSGO_HudDemoController", - "vtable_address": 64459120, + "vtable_address": 64463024, "methods": [ - 24734576 + 24737584 ], "bases": [ { @@ -28625,35 +28625,35 @@ }, { "type_name": "CCSGO_HudDemoPlayback", - "vtable_address": 64466880, + "vtable_address": 64470784, "methods": [ 12043984, - 59816784, - 24701296, - 24701312, - 59817120, - 59817136, - 59817120, + 59820688, + 24704304, + 24704320, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 24706432, - 24706320, - 59819120, - 59817872, - 59826592, - 24711072, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 24709440, + 24709328, + 59823024, + 59821776, + 59830496, + 24714080, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -28666,12 +28666,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -28686,30 +28686,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24701280, - 24714592, - 24714816, + 59839696, + 24704288, + 24717600, + 24717824, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -28744,35 +28744,35 @@ }, { "type_name": "CCSGO_HudGameIcons", - "vtable_address": 64468424, + "vtable_address": 64472328, "methods": [ 12043984, - 59816784, - 24701488, - 24701504, - 59817120, - 59817136, - 59817120, + 59820688, + 24704496, + 24704512, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -28785,12 +28785,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -28798,45 +28798,45 @@ 12233440, 12233456, 12233472, - 24779488, + 24782496, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 24701472, - 24721296, - 24721488, + 59839696, + 24704480, + 24724304, + 24724496, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24779504, - 24779504, - 24780816, - 24703728, - 24739184, - 24744608 + 24782512, + 24782512, + 24783824, + 24706736, + 24742192, + 24747616 ], "bases": [ { @@ -28901,21 +28901,21 @@ }, { "type_name": "CCSGO_HudGameIcons", - "vtable_address": 64469168, - "methods": [ - 24721392, - 24721744, - 24745088, - 24779552, - 24779600, - 21705232, - 24781152, - 21705264, - 21705280, - 24716256, - 21705312, - 24723632, - 21705344 + "vtable_address": 64473072, + "methods": [ + 24724400, + 24724752, + 24748096, + 24782560, + 24782608, + 21708048, + 24784160, + 21708080, + 21708096, + 24719264, + 21708128, + 24726640, + 21708160 ], "bases": [ { @@ -28980,35 +28980,35 @@ }, { "type_name": "CCSGO_HudHealthAmmoCenter", - "vtable_address": 64469288, + "vtable_address": 64473192, "methods": [ 12043984, - 59816784, - 24701552, - 24701568, - 59817120, - 59817136, - 59817120, + 59820688, + 24704560, + 24704576, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -29021,12 +29021,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -29034,42 +29034,42 @@ 12233440, 12233456, 12233472, - 24754608, + 24757616, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 24701536, - 24705920, - 24705984, + 59839696, + 24704544, + 24708928, + 24708992, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24884160, - 24722560, - 24744336 + 24887168, + 24725568, + 24747344 ], "bases": [ { @@ -29134,21 +29134,21 @@ }, { "type_name": "CCSGO_HudHealthAmmoCenter", - "vtable_address": 64470008, + "vtable_address": 64473912, "methods": [ - 24711008, - 24712048, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 24884192, - 21705280, - 24721600, - 21705312, - 24738400, - 21705344 + 24714016, + 24715056, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 24887200, + 21708096, + 24724608, + 21708128, + 24741408, + 21708160 ], "bases": [ { @@ -29213,35 +29213,35 @@ }, { "type_name": "CCSGO_HudHealthBars", - "vtable_address": 64464344, + "vtable_address": 64468248, "methods": [ 12043984, - 59816784, - 24701168, - 24701184, - 59817120, - 59817136, - 59817120, + 59820688, + 24704176, + 24704192, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -29254,12 +29254,12 @@ 12399392, 12233312, 12233168, - 24704352, - 59825616, - 59825216, - 59836080, + 24707360, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -29274,30 +29274,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24701152, - 24712976, - 24713360, + 59839696, + 24704160, + 24715984, + 24716368, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -29364,21 +29364,21 @@ }, { "type_name": "CCSGO_HudHealthBars", - "vtable_address": 64465040, + "vtable_address": 64468944, "methods": [ - 24712880, - 24713248, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 21705264, - 21705280, - 21705328, - 21705312, - 21724544, - 21705344 + 24715888, + 24716256, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 21708080, + 21708096, + 21708144, + 21708128, + 21727360, + 21708160 ], "bases": [ { @@ -29443,35 +29443,35 @@ }, { "type_name": "CCSGO_HudHintText", - "vtable_address": 64470272, + "vtable_address": 64474176, "methods": [ 12043984, - 59816784, - 24701424, - 24701440, - 59817120, - 59817136, - 59817120, + 59820688, + 24704432, + 24704448, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 24709808, + 59821792, + 59821808, + 59820704, + 59832432, + 24712816, 12233664, 12233696, 12233680, @@ -29484,12 +29484,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -29504,30 +29504,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24701408, - 24704288, - 24711280, + 59839696, + 24704416, + 24707296, + 24714288, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -29562,35 +29562,35 @@ }, { "type_name": "CCSGO_HudInstructor", - "vtable_address": 64470968, + "vtable_address": 64474872, "methods": [ 12043984, - 59816784, - 24701616, - 24701632, - 59817120, - 59817136, - 59817120, + 59820688, + 24704624, + 24704640, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -29603,12 +29603,12 @@ 12399392, 12233312, 12233168, - 24837664, - 59825616, - 59825216, - 59836080, + 24840672, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -29623,30 +29623,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24701600, - 24714304, - 24713680, + 59839696, + 24704608, + 24717312, + 24716688, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -29681,35 +29681,35 @@ }, { "type_name": "CCSGO_HudMatchAlerts", - "vtable_address": 64476288, + "vtable_address": 64480192, "methods": [ 12043984, - 59816784, - 24884336, - 24884352, - 59817120, - 59817136, - 59817120, + 59820688, + 24887344, + 24887360, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -29722,12 +29722,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -29742,36 +29742,36 @@ 12233520, 12233296, 12233760, - 59835792, - 24884320, - 24887808, - 24905104, + 59839696, + 24887328, + 24890816, + 24908112, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25069456, - 24944720, - 24921312, - 24945664 + 25072464, + 24947728, + 24924320, + 24948672 ], "bases": [ { @@ -29836,21 +29836,21 @@ }, { "type_name": "CCSGO_HudMatchAlerts", - "vtable_address": 64477016, + "vtable_address": 64480920, "methods": [ - 24905200, - 24905280, - 24947120, - 21705200, - 21705216, - 21705232, - 21705248, - 25070960, - 21705280, - 24944784, - 21705312, - 24914512, - 21705344 + 24908208, + 24908288, + 24950128, + 21708016, + 21708032, + 21708048, + 21708064, + 25073968, + 21708096, + 24947792, + 21708128, + 24917520, + 21708160 ], "bases": [ { @@ -29915,35 +29915,35 @@ }, { "type_name": "CCSGO_HudNotice", - "vtable_address": 64485440, + "vtable_address": 64489344, "methods": [ 12043984, - 59816784, - 24885472, - 24885488, - 59817120, - 59817136, - 59817120, + 59820688, + 24888480, + 24888496, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -29956,12 +29956,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -29976,30 +29976,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24885456, - 24887360, - 24888432, + 59839696, + 24888464, + 24890368, + 24891440, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -30034,35 +30034,35 @@ }, { "type_name": "CCSGO_HudProgressBar", - "vtable_address": 64477832, + "vtable_address": 64481736, "methods": [ 12043984, - 59816784, - 24884464, - 24884480, - 59817120, - 59817136, - 59817120, + 59820688, + 24887472, + 24887488, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -30075,12 +30075,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -30088,41 +30088,41 @@ 12233440, 12233456, 12233472, - 24950560, + 24953568, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 24884448, - 24901600, - 24908432, + 59839696, + 24887456, + 24904608, + 24911440, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24919168, - 25032208 + 24922176, + 25035216 ], "bases": [ { @@ -30187,21 +30187,21 @@ }, { "type_name": "CCSGO_HudProgressBar", - "vtable_address": 64478544, - "methods": [ - 24908656, - 24908544, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 25034464, - 21705280, - 21705328, - 21705312, - 24914672, - 21705344 + "vtable_address": 64482448, + "methods": [ + 24911664, + 24911552, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 25037472, + 21708096, + 21708144, + 21708128, + 24917680, + 21708160 ], "bases": [ { @@ -30266,35 +30266,35 @@ }, { "type_name": "CCSGO_HudRadar", - "vtable_address": 64478664, + "vtable_address": 64482568, "methods": [ 12043984, - 59816784, - 24884528, - 24884544, - 59817120, - 59817136, - 59817120, + 59820688, + 24887536, + 24887552, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -30307,12 +30307,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -30327,40 +30327,40 @@ 12233520, 12233296, 12233760, - 59835792, - 24884512, - 24914992, - 24915472, + 59839696, + 24887520, + 24918000, + 24918480, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24961808, - 24884704, - 25107008, - 24955504, - 25071664, - 24955664, - 25157216, - 25007040 + 24964816, + 24887712, + 25110016, + 24958512, + 25074672, + 24958672, + 25160224, + 25010048 ], "bases": [ { @@ -30425,21 +30425,21 @@ }, { "type_name": "CCSGO_HudRadar", - "vtable_address": 64479424, + "vtable_address": 64483328, "methods": [ - 24915456, - 24915520, - 25160128, - 24961904, - 24909072, - 24955552, - 21705248, - 21705264, - 25107456, - 24955760, - 21705312, - 25072144, - 21705344 + 24918464, + 24918528, + 25163136, + 24964912, + 24912080, + 24958560, + 21708064, + 21708080, + 25110464, + 24958768, + 21708128, + 25075152, + 21708160 ], "bases": [ { @@ -30504,35 +30504,35 @@ }, { "type_name": "CCSGO_HudRadio", - "vtable_address": 64479544, + "vtable_address": 64483448, "methods": [ 12043984, - 59816784, - 24884864, - 24884880, - 59817120, - 59817136, - 59817120, + 59820688, + 24887872, + 24887888, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -30545,12 +30545,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -30565,36 +30565,36 @@ 12233520, 12233296, 12233760, - 59835792, - 24884848, - 24903120, - 24903424, + 59839696, + 24887856, + 24906128, + 24906432, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24927152, - 24929344, - 24912224, - 24966784 + 24930160, + 24932352, + 24915232, + 24969792 ], "bases": [ { @@ -30669,21 +30669,21 @@ }, { "type_name": "CCSGO_HudRadio", - "vtable_address": 64480272, - "methods": [ - 24903408, - 24903472, - 21705296, - 21705200, - 21705216, - 21705232, - 24926880, - 21705264, - 21705280, - 24926720, - 21705312, - 24912448, - 21705344 + "vtable_address": 64484176, + "methods": [ + 24906416, + 24906480, + 21708112, + 21708016, + 21708032, + 21708048, + 24929888, + 21708080, + 21708096, + 24929728, + 21708128, + 24915456, + 21708160 ], "bases": [ { @@ -30758,9 +30758,9 @@ }, { "type_name": "CCSGO_HudRadio", - "vtable_address": 64480392, + "vtable_address": 64484296, "methods": [ - 24935696 + 24938704 ], "bases": [ { @@ -30835,35 +30835,35 @@ }, { "type_name": "CCSGO_HudReticle", - "vtable_address": 64482024, + "vtable_address": 64485928, "methods": [ 12043984, - 59816784, - 24885248, - 24885264, - 59817120, - 59817136, - 59817120, + 59820688, + 24888256, + 24888272, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -30876,12 +30876,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -30896,38 +30896,38 @@ 12233520, 12233296, 12233760, - 59835792, - 24885232, - 24905664, - 24906320, + 59839696, + 24888240, + 24908672, + 24909328, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24908208, - 24907440, - 25117744, - 24918752, - 24911280, - 24943264 + 24911216, + 24910448, + 25120752, + 24921760, + 24914288, + 24946272 ], "bases": [ { @@ -30992,21 +30992,21 @@ }, { "type_name": "CCSGO_HudReticle", - "vtable_address": 64482768, + "vtable_address": 64486672, "methods": [ - 24906304, - 24906368, - 24942432, - 24908416, - 24907600, - 21705232, - 21705248, - 25118160, - 21705280, - 24911600, - 21705312, - 24918960, - 21705344 + 24909312, + 24909376, + 24945440, + 24911424, + 24910608, + 21708048, + 21708064, + 25121168, + 21708096, + 24914608, + 21708128, + 24921968, + 21708160 ], "bases": [ { @@ -31071,35 +31071,35 @@ }, { "type_name": "CCSGO_HudRosettaSelector", - "vtable_address": 64482944, + "vtable_address": 64486848, "methods": [ 12043984, - 59816784, - 24885328, - 24885344, - 59817120, - 59817136, - 59817120, + 59820688, + 24888336, + 24888352, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -31112,12 +31112,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -31132,38 +31132,38 @@ 12233520, 12233296, 12233760, - 59835792, - 24885312, - 24902048, - 24902560, + 59839696, + 24888320, + 24905056, + 24905568, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25014960, - 24982096, - 24982096, - 24912336, - 24982112, - 24884832 + 25017968, + 24985104, + 24985104, + 24915344, + 24985120, + 24887840 ], "bases": [ { @@ -31228,21 +31228,21 @@ }, { "type_name": "CCSGO_HudRosettaSelector", - "vtable_address": 64483688, + "vtable_address": 64487592, "methods": [ - 24902544, - 24902608, - 21705296, - 24982192, - 24982208, - 24899920, - 25014992, - 21705264, - 21705280, - 24982224, - 21705312, - 24912544, - 21705344 + 24905552, + 24905616, + 21708112, + 24985200, + 24985216, + 24902928, + 25018000, + 21708080, + 21708096, + 24985232, + 21708128, + 24915552, + 21708160 ], "bases": [ { @@ -31307,35 +31307,35 @@ }, { "type_name": "CCSGO_HudTeamCounter", - "vtable_address": 64483880, + "vtable_address": 64487784, "methods": [ 12043984, - 59816784, - 24884656, - 24884672, - 59817120, - 59817136, - 59817120, + 59820688, + 24887664, + 24887680, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -31348,12 +31348,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -31361,45 +31361,45 @@ 12233440, 12233456, 12233472, - 24892496, + 24895504, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 24884640, - 24903696, - 24904000, + 59839696, + 24887648, + 24906704, + 24907008, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25156768, - 25057728, - 24905376, - 24921472, - 24888928, - 24992256 + 25159776, + 25060736, + 24908384, + 24924480, + 24891936, + 24995264 ], "bases": [ { @@ -31464,21 +31464,21 @@ }, { "type_name": "CCSGO_HudTeamCounter", - "vtable_address": 64484624, + "vtable_address": 64488528, "methods": [ - 24903984, - 24904048, - 24993200, - 25058304, - 24905648, - 21705232, - 21705248, - 25156832, - 21705280, - 24903632, - 21705312, - 24914832, - 21705344 + 24906992, + 24907056, + 24996208, + 25061312, + 24908656, + 21708048, + 21708064, + 25159840, + 21708096, + 24906640, + 21708128, + 24917840, + 21708160 ], "bases": [ { @@ -31543,40 +31543,40 @@ }, { "type_name": "CCSGO_HudVoiceStatus", - "vtable_address": 64486888, + "vtable_address": 64490792, "methods": [ 12043984, - 59816784, - 24885600, - 24885616, - 59817120, - 59817136, - 59817120, + 59820688, + 24888608, + 24888624, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 24913952, + 24916960, 12233648, 12233632, 12233264, @@ -31584,12 +31584,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -31604,39 +31604,39 @@ 12233520, 12233296, 12233760, - 59835792, - 24885584, - 25119408, - 25120368, + 59839696, + 24888592, + 25122416, + 25123376, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25166480, - 24995728, - 24995904, - 24911168, - 24924752, - 24892272, - 25181072 + 25169488, + 24998736, + 24998912, + 24914176, + 24927760, + 24895280, + 25184080 ], "bases": [ { @@ -31701,21 +31701,21 @@ }, { "type_name": "CCSGO_HudVoiceStatus", - "vtable_address": 64487640, + "vtable_address": 64491544, "methods": [ - 25120352, - 25120416, - 25181728, - 24995936, - 24995920, - 21705232, - 21705248, - 25166512, - 21705280, - 24908960, - 21705312, - 24916384, - 24901536 + 25123360, + 25123424, + 25184736, + 24998944, + 24998928, + 21708048, + 21708064, + 25169520, + 21708096, + 24911968, + 21708128, + 24919392, + 24904544 ], "bases": [ { @@ -31780,35 +31780,35 @@ }, { "type_name": "CCSGO_HudVote", - "vtable_address": 64488120, + "vtable_address": 64492024, "methods": [ 12043984, - 59816784, - 24885664, - 24885680, - 59817120, - 59817136, - 59817120, + 59820688, + 24888672, + 24888688, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -31821,12 +31821,12 @@ 12399392, 12233312, 12233168, - 25077152, - 59825616, - 59825216, - 59836080, + 25080160, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -31841,34 +31841,34 @@ 12233520, 12233296, 12233760, - 59835792, - 24885648, - 24887600, - 24888752, + 59839696, + 24888656, + 24890608, + 24891760, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25049344, - 24941616 + 25052352, + 24944624 ], "bases": [ { @@ -31954,21 +31954,21 @@ }, { "type_name": "CCSGO_HudVote", - "vtable_address": 64488832, - "methods": [ - 24887792, - 24900016, - 25050272, - 21705200, - 21705216, - 21705232, - 21705248, - 21705264, - 21705280, - 21705328, - 21705312, - 21724544, - 21705344 + "vtable_address": 64492736, + "methods": [ + 24890800, + 24903024, + 25053280, + 21708016, + 21708032, + 21708048, + 21708064, + 21708080, + 21708096, + 21708144, + 21708128, + 21727360, + 21708160 ], "bases": [ { @@ -32054,22 +32054,22 @@ }, { "type_name": "CCSGO_HudVote", - "vtable_address": 64488952, + "vtable_address": 64492856, "methods": [ - 24924384, - 23620864, - 23620880, - 23620896, - 24884240, - 23620912, - 24884256, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 24927392, + 23623616, + 23623632, + 23623648, + 24887248, + 23623664, + 24887264, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -32155,35 +32155,35 @@ }, { "type_name": "CCSGO_HudWeaponSelection", - "vtable_address": 64490640, + "vtable_address": 64494544, "methods": [ 12043984, - 59816784, - 24886112, - 24886128, - 59817120, - 59817136, - 59817120, + 59820688, + 24889120, + 24889136, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 24893312, - 59823152, + 59821792, + 59821808, + 59820704, + 24896320, + 59827056, 12233664, 12233696, 12233680, @@ -32196,12 +32196,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -32209,45 +32209,45 @@ 12233440, 12233456, 12233472, - 24940144, + 24943152, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 24886096, - 24910880, - 24910944, + 59839696, + 24889104, + 24913888, + 24913952, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25130080, - 24940208, - 24888992, - 24927792, - 25138800, - 24889120 + 25133088, + 24943216, + 24892000, + 24930800, + 25141808, + 24892128 ], "bases": [ { @@ -32323,21 +32323,21 @@ }, { "type_name": "CCSGO_HudWeaponSelection", - "vtable_address": 64491384, + "vtable_address": 64495288, "methods": [ - 24911024, - 24911088, - 24922480, - 25129888, - 24940320, - 21705232, - 21705248, - 25139904, - 21705280, - 24910032, - 21705312, - 24922704, - 21705344 + 24914032, + 24914096, + 24925488, + 25132896, + 24943328, + 21708048, + 21708064, + 25142912, + 21708096, + 24913040, + 21708128, + 24925712, + 21708160 ], "bases": [ { @@ -32413,35 +32413,35 @@ }, { "type_name": "CCSGO_HudWeaponSelectionDebug", - "vtable_address": 64489248, + "vtable_address": 64493152, "methods": [ 12043984, - 59816784, - 24886032, - 24886048, - 59817120, - 59817136, - 59817120, + 59820688, + 24889040, + 24889056, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -32454,12 +32454,12 @@ 12399392, 12233312, 12233168, - 25081760, - 59825616, - 59825216, - 59836080, + 25084768, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -32467,37 +32467,37 @@ 12233440, 12233456, 12233472, - 24940128, + 24943136, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 24886016, - 24910816, - 24910832, + 59839696, + 24889024, + 24913824, + 24913840, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -32543,35 +32543,35 @@ }, { "type_name": "CCSGO_HudWinPanel", - "vtable_address": 64491576, + "vtable_address": 64495480, "methods": [ 12043984, - 59816784, - 24886272, - 24886288, - 59817120, - 59817136, - 59817120, + 59820688, + 24889280, + 24889296, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -32584,12 +32584,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -32604,38 +32604,38 @@ 12233520, 12233296, 12233760, - 59835792, - 24886256, - 24887520, - 24888672, + 59839696, + 24889264, + 24890528, + 24891680, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25003456, - 25003136, - 25002112, - 24922928, - 24888848, - 25065280 + 25006464, + 25006144, + 25005120, + 24925936, + 24891856, + 25068288 ], "bases": [ { @@ -32700,21 +32700,21 @@ }, { "type_name": "CCSGO_HudWinPanel", - "vtable_address": 64492320, + "vtable_address": 64496224, "methods": [ - 24899952, - 24900064, - 25066768, - 25003792, - 25003296, - 21705232, - 25002000, - 21705264, - 21705280, - 24899936, - 21705312, - 24915568, - 21705344 + 24902960, + 24903072, + 25069776, + 25006800, + 25006304, + 21708048, + 25005008, + 21708080, + 21708096, + 24902944, + 21708128, + 24918576, + 21708160 ], "bases": [ { @@ -32779,35 +32779,35 @@ }, { "type_name": "CCSGO_IntroMovie", - "vtable_address": 64399672, + "vtable_address": 64403576, "methods": [ 12043984, - 59816784, - 23622720, - 23622736, - 23631872, - 59817136, - 59817120, + 59820688, + 23625472, + 23625488, + 23634624, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -32820,12 +32820,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -32840,30 +32840,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23622704, - 23624560, - 23624720, + 59839696, + 23625456, + 23627312, + 23627472, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -32898,35 +32898,35 @@ }, { "type_name": "CCSGO_InventoryItemList", - "vtable_address": 64400368, + "vtable_address": 64404272, "methods": [ 12043984, - 59816784, - 23622832, - 23622848, - 59817120, - 60140368, - 60135600, - 60138208, - 60141232, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 23625584, + 23625600, + 59821024, + 60144272, + 60139504, + 60142112, + 60145136, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23893920, - 59823152, + 59821792, + 59821808, + 59820704, + 23896672, + 59827056, 12233664, 12233696, 12233680, @@ -32939,12 +32939,12 @@ 12399392, 12233312, 12233168, - 23822352, - 59825616, - 59825216, - 59836080, + 23825104, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -32954,35 +32954,35 @@ 12233472, 12233488, 12233504, - 60131760, - 60135600, + 60135664, + 60139504, 12233520, 12233296, 12233760, - 59835792, - 23622816, - 23636304, - 23640064, + 59839696, + 23625568, + 23639056, + 23642816, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -33028,35 +33028,35 @@ }, { "type_name": "CCSGO_InventoryRadial", - "vtable_address": 64401064, + "vtable_address": 64404968, "methods": [ 12043984, - 59816784, - 23622976, - 23622992, - 59817120, - 59817136, - 59817120, + 59820688, + 23625728, + 23625744, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23903440, - 59823152, + 59821792, + 59821808, + 59820704, + 23906192, + 59827056, 12233664, 12233696, 12233680, @@ -33069,12 +33069,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -33089,56 +33089,56 @@ 12233520, 12233296, 12233760, - 59835792, - 23622960, - 23657744, - 23658256, + 59839696, + 23625712, + 23660496, + 23661008, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23897536, - 23962240, - 23622944, - 23629312, - 24071424, - 23925600, - 23964304, - 23928816, - 23854688, - 23904288, - 23935472, - 23899488, - 23937088, - 23963792, - 23905248, - 23894400, - 23894992, - 23899504, - 23750576, - 23895104, - 23896384, - 23894304, - 23822944, - 23623040 + 23900288, + 23964992, + 23625696, + 23632064, + 24074176, + 23928352, + 23967056, + 23931568, + 23857440, + 23907040, + 23938224, + 23902240, + 23939840, + 23966544, + 23908000, + 23897152, + 23897744, + 23902256, + 23753328, + 23897856, + 23899136, + 23897056, + 23825696, + 23625792 ], "bases": [ { @@ -33235,21 +33235,21 @@ }, { "type_name": "CCSGO_InventoryRadial", - "vtable_address": 64401952, - "methods": [ - 23658240, - 23658304, - 21705296, - 23909136, - 21705216, - 21705232, - 21705248, - 23962752, - 21705280, - 21705328, - 21705312, - 24071872, - 21705344 + "vtable_address": 64405856, + "methods": [ + 23660992, + 23661056, + 21708112, + 23911888, + 21708032, + 21708048, + 21708064, + 23965504, + 21708096, + 21708144, + 21708128, + 24074624, + 21708160 ], "bases": [ { @@ -33346,22 +33346,22 @@ }, { "type_name": "CCSGO_InventoryRadial", - "vtable_address": 64402072, + "vtable_address": 64405976, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23963840, - 23620912, - 23914752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23966592, + 23623664, + 23917504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -33458,35 +33458,35 @@ }, { "type_name": "CCSGO_LoadingScreen", - "vtable_address": 64405832, + "vtable_address": 64409736, "methods": [ 12043984, - 59816784, - 23897360, - 23897376, - 23980144, - 59817136, - 59817120, + 59820688, + 23900112, + 23900128, + 23982896, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -33499,12 +33499,12 @@ 12399392, 12233312, 12400240, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -33519,38 +33519,38 @@ 12400256, 12233296, 12233760, - 59835792, - 23897344, - 23900496, - 23912576, + 59839696, + 23900096, + 23903248, + 23915328, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12406176, 12400208, - 23941344, - 23979344, - 23900208, - 23897472 + 23944096, + 23982096, + 23902960, + 23900224 ], "bases": [ { @@ -33625,10 +33625,10 @@ }, { "type_name": "CCSGO_LoadingScreen", - "vtable_address": 64406576, + "vtable_address": 64410480, "methods": [ - 23912672, - 23912768, + 23915424, + 23915520, 12400224 ], "bases": [ @@ -33704,12 +33704,12 @@ }, { "type_name": "CCSGO_LoadingScreen", - "vtable_address": 64406616, + "vtable_address": 64410520, "methods": [ - 23979472, - 23917520, - 23910896, - 23942896 + 23982224, + 23920272, + 23913648, + 23945648 ], "bases": [ { @@ -33784,11 +33784,11 @@ }, { "type_name": "CCSGO_MagPreviewRenderer", - "vtable_address": 64444048, + "vtable_address": 64447952, "methods": [ - 24268800, - 24271952, - 24510960, + 24271552, + 24274704, + 24513904, 12233136 ], "bases": [ @@ -33833,35 +33833,35 @@ }, { "type_name": "CCSGO_MainMenu", - "vtable_address": 64406664, + "vtable_address": 64410568, "methods": [ 12043984, - 59816784, - 23897568, - 23897584, - 59817120, - 59817136, - 59817120, + 59820688, + 23900320, + 23900336, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -33874,12 +33874,12 @@ 12399392, 12233312, 12400240, - 23988736, - 59825616, - 59825216, - 59836080, + 23991488, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -33894,35 +33894,35 @@ 12400256, 12233296, 12233760, - 59835792, - 23897552, - 23917680, - 23917952, + 59839696, + 23900304, + 23920432, + 23920704, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12406176, - 23928544, - 24019696 + 23931296, + 24022448 ], "bases": [ { @@ -33997,11 +33997,11 @@ }, { "type_name": "CCSGO_MainMenu", - "vtable_address": 64407384, + "vtable_address": 64411288, "methods": [ - 23917936, - 23918000, - 23923888 + 23920688, + 23920752, + 23926640 ], "bases": [ { @@ -34076,12 +34076,12 @@ }, { "type_name": "CCSGO_MainMenu", - "vtable_address": 64407424, + "vtable_address": 64411328, "methods": [ - 22916880, - 22916896, - 22916912, - 24021344 + 22919696, + 22919712, + 22919728, + 24024096 ], "bases": [ { @@ -34156,35 +34156,35 @@ }, { "type_name": "CCSGO_MapOverview", - "vtable_address": 64407472, + "vtable_address": 64411376, "methods": [ 12043984, - 59816784, - 23897904, - 23897920, - 59817120, - 59817136, - 59817120, + 59820688, + 23900656, + 23900672, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 23983488, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 23902992, - 23903216, - 59819120, - 59817872, - 59826592, - 23902784, + 23986240, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 23905744, + 23905968, + 59823024, + 59821776, + 59830496, + 23905536, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -34197,12 +34197,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -34217,40 +34217,40 @@ 12233520, 12233296, 12233760, - 59835792, - 23897888, - 23914896, - 23915664, + 59839696, + 23900640, + 23917648, + 23918416, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23953968, - 23897536, - 24001568, - 23949264, - 23916688, - 23949472, - 24043040, - 23966368 + 23956720, + 23900288, + 24004320, + 23952016, + 23919440, + 23952224, + 24045792, + 23969120 ], "bases": [ { @@ -34315,21 +34315,21 @@ }, { "type_name": "CCSGO_MapOverview", - "vtable_address": 64408232, + "vtable_address": 64412136, "methods": [ - 23915648, - 23915712, - 24047712, - 23954064, - 23909120, - 23949360, - 24001856, - 21705264, - 21705280, - 23949600, - 21705312, - 23915760, - 21705344 + 23918400, + 23918464, + 24050464, + 23956816, + 23911872, + 23952112, + 24004608, + 21708080, + 21708096, + 23952352, + 21708128, + 23918512, + 21708160 ], "bases": [ { @@ -34394,35 +34394,35 @@ }, { "type_name": "CCSGO_MiniProfileBackground", - "vtable_address": 64425272, + "vtable_address": 64429176, "methods": [ 12043984, - 59816784, - 24072960, - 24072976, - 60446000, - 59817136, - 59817120, - 60439792, - 60476576, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 24075712, + 24075728, + 60449904, + 59821040, + 59821024, + 60443696, + 60480480, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60494848, - 59823152, + 59821792, + 59821808, + 59820704, + 60498752, + 59827056, 12233664, 12233696, 12233680, @@ -34435,12 +34435,12 @@ 12399392, 12233312, 12233168, - 24162752, - 59825616, - 59825216, - 59836080, + 24165504, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -34450,35 +34450,35 @@ 12233472, 12233488, 12233504, - 60480944, - 60479536, + 60484848, + 60483440, 12233520, 12233296, 12233760, - 59835792, - 24072944, - 24077440, - 24077456, + 59839696, + 24075696, + 24080192, + 24080208, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -34524,35 +34524,35 @@ }, { "type_name": "CCSGO_OutOfAmmo", - "vtable_address": 64408424, + "vtable_address": 64412328, "methods": [ 12043984, - 59816784, - 23898144, - 23898160, - 59817120, - 59817136, - 59817120, + 59820688, + 23900896, + 23900912, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -34565,12 +34565,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -34585,34 +34585,34 @@ 12233520, 12233296, 12233760, - 59835792, - 23898128, - 23902048, - 23902176, + 59839696, + 23900880, + 23904800, + 23904928, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24071200, - 23898192 + 24073952, + 23900944 ], "bases": [ { @@ -34677,21 +34677,21 @@ }, { "type_name": "CCSGO_OutOfAmmo", - "vtable_address": 64409136, - "methods": [ - 23902112, - 23902256, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 23916768, - 21705280, - 21705328, - 21705312, - 24071648, - 21705344 + "vtable_address": 64413040, + "methods": [ + 23904864, + 23905008, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 23919520, + 21708096, + 21708144, + 21708128, + 24074400, + 21708160 ], "bases": [ { @@ -34756,35 +34756,35 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 64446928, + "vtable_address": 64450832, "methods": [ 12043984, - 59816784, - 24269152, - 24269168, - 24298816, - 24282400, - 24282288, + 59820688, + 24271904, + 24271920, + 24301568, + 24285152, + 24285040, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 24384512, - 24287824, - 59819120, - 59817872, - 24275712, - 24458912, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 24387232, + 24290576, + 59823024, + 59821776, + 24278464, + 24461840, 12233184, - 59817888, - 59817904, - 59816800, - 24293152, - 24308192, + 59821792, + 59821808, + 59820704, + 24295904, + 24310944, 12233664, 12233696, 12233680, @@ -34794,15 +34794,15 @@ 12233632, 12233264, 12233280, - 24369424, + 24372144, 12233312, 12233168, - 24549456, - 59825616, - 59825216, - 59836080, + 24552400, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -34812,64 +34812,64 @@ 12233472, 12233488, 12233504, - 24282192, - 24282192, - 24269248, + 24284944, + 24284944, + 24272000, 12233296, 12233760, - 59835792, - 24269136, - 24545072, - 24545456, + 59839696, + 24271888, + 24548016, + 24548400, 12233152, - 59826304, - 59826016, - 24274912, - 24275024, - 24274688, - 24274800, - 59821696, - 59821104, + 59830208, + 59829920, + 24277664, + 24277776, + 24277440, + 24277552, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24267728, - 24577792, - 24267616, - 24690272, - 24267648, - 24298672, - 24504432, - 24366384, - 24267664, - 24268448, - 24277184, - 24553568, - 24552640, - 24277024, - 24274480, - 24325488, - 24274240, - 24282720, - 24282688, - 24373696, - 24267680, - 24284432, - 24267712, - 24310080, - 24296960, - 24590544, - 24269232 + 24270480, + 24580672, + 24270368, + 24693280, + 24270400, + 24301424, + 24507376, + 24369104, + 24270416, + 24271200, + 24279936, + 24556512, + 24555584, + 24279776, + 24277232, + 24328240, + 24276992, + 24285472, + 24285440, + 24376416, + 24270432, + 24287184, + 24270464, + 24312832, + 24299712, + 24593552, + 24271984 ], "bases": [ { @@ -34976,11 +34976,11 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 64447840, + "vtable_address": 64451744, "methods": [ - 24545424, - 24545552, - 24293040 + 24548368, + 24548496, + 24295792 ], "bases": [ { @@ -35087,10 +35087,10 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 64447880, + "vtable_address": 64451784, "methods": [ - 24578944, - 24267632 + 24581824, + 24270384 ], "bases": [ { @@ -35197,12 +35197,12 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 64447912, + "vtable_address": 64451816, "methods": [ - 24545440, - 24545504, - 24267360, - 24292304 + 24548384, + 24548448, + 24270112, + 24295056 ], "bases": [ { @@ -35309,35 +35309,35 @@ }, { "type_name": "CCSGO_PopupManager", - "vtable_address": 64412736, + "vtable_address": 64416640, "methods": [ 12043984, - 59816784, - 23897664, - 23897680, - 59817120, - 59817136, - 59817120, + 59820688, + 23900416, + 23900432, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402992, - 59828528, - 59823152, + 59832432, + 59827056, 12233664, 12233696, 12432176, @@ -35350,12 +35350,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -35370,30 +35370,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23897648, - 23904096, - 23904112, + 59839696, + 23900400, + 23906848, + 23906864, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12431312 @@ -35440,35 +35440,35 @@ }, { "type_name": "CCSGO_Popup_CustomLayout", - "vtable_address": 64540608, + "vtable_address": 64544512, "methods": [ 12043984, - 59816784, - 26406336, - 26406352, - 59817120, - 59817136, - 59817120, + 59820688, + 26409344, + 26409360, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, - 26435584, + 59832432, + 26438592, 12233664, 12233696, 12233680, @@ -35481,12 +35481,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -35501,34 +35501,34 @@ 12233520, 12233296, 12233760, - 59835792, - 26406320, - 26466400, - 26458992, + 59839696, + 26409328, + 26469408, + 26462000, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 26582928, - 26471120, + 26585936, + 26474128, 12418384, 12410704, 12399824 @@ -35586,34 +35586,34 @@ }, { "type_name": "CCSGO_Popup_Generic", - "vtable_address": 64498032, + "vtable_address": 64501936, "methods": [ 12043984, - 59816784, - 25204144, - 25204160, - 59817120, - 59817136, - 59817120, + 59820688, + 25207152, + 25207168, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -35627,12 +35627,12 @@ 12399392, 12233312, 12233168, - 25251888, - 59825616, - 59825216, - 59836080, + 25254896, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -35647,38 +35647,38 @@ 12233520, 12233296, 12233760, - 59835792, - 25204128, - 25210384, - 25214448, + 59839696, + 25207136, + 25213392, + 25217456, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25214896, - 25213152, + 25217904, + 25216160, 12418384, 12410704, 12399824, - 25215024 + 25218032 ], "bases": [ { @@ -35722,34 +35722,34 @@ }, { "type_name": "CCSGO_Popup_Generic_Command", - "vtable_address": 64498776, + "vtable_address": 64502680, "methods": [ 12043984, - 59816784, - 25204144, - 25204160, - 59817120, - 59817136, - 59817120, + 59820688, + 25207152, + 25207168, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -35763,12 +35763,12 @@ 12399392, 12233312, 12233168, - 25251888, - 59825616, - 59825216, - 59836080, + 25254896, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -35783,38 +35783,38 @@ 12233520, 12233296, 12233760, - 59835792, - 25204128, - 25214352, - 25214544, + 59839696, + 25207136, + 25217360, + 25217552, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25214896, - 25213152, - 25207664, + 25217904, + 25216160, + 25210672, 12410704, 12399824, - 25215024 + 25218032 ], "bases": [ { @@ -35869,11 +35869,11 @@ }, { "type_name": "CCSGO_PreviewCaptureRenderer", - "vtable_address": 64449200, + "vtable_address": 64453104, "methods": [ - 24269632, - 24271968, - 24269648, + 24272384, + 24274720, + 24272400, 12233136 ], "bases": [ @@ -35918,35 +35918,35 @@ }, { "type_name": "CCSGO_QuickBuyRadial", - "vtable_address": 64413440, + "vtable_address": 64417344, "methods": [ 12043984, - 59816784, - 23898736, - 23898752, - 59817120, - 59817136, - 59817120, + 59820688, + 23901488, + 23901504, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23969680, - 59823152, + 59821792, + 59821808, + 59820704, + 23972432, + 59827056, 12233664, 12233696, 12233680, @@ -35959,12 +35959,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -35979,56 +35979,56 @@ 12233520, 12233296, 12233760, - 59835792, - 23898720, - 23912112, - 23917008, + 59839696, + 23901472, + 23914864, + 23919760, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23909568, - 23962240, - 23908272, - 23960432, - 24071424, - 23925600, - 23964304, - 23928816, - 23854688, - 23904288, - 23936688, - 23899488, - 23937088, - 23963792, - 23905248, - 23897536, - 23969296, - 23899504, - 23750576, - 23895104, - 23896384, - 23983024, - 24003360, - 24021360 + 23912320, + 23964992, + 23911024, + 23963184, + 24074176, + 23928352, + 23967056, + 23931568, + 23857440, + 23907040, + 23939440, + 23902240, + 23939840, + 23966544, + 23908000, + 23900288, + 23972048, + 23902256, + 23753328, + 23897856, + 23899136, + 23985776, + 24006112, + 24024112 ], "bases": [ { @@ -36136,21 +36136,21 @@ }, { "type_name": "CCSGO_QuickBuyRadial", - "vtable_address": 64414328, + "vtable_address": 64418232, "methods": [ - 23917360, - 23917184, - 21705296, - 23910016, - 21705216, - 21705232, - 21705248, - 23962752, - 21705280, - 21705328, - 21705312, - 24071872, - 21705344 + 23920112, + 23919936, + 21708112, + 23912768, + 21708032, + 21708048, + 21708064, + 23965504, + 21708096, + 21708144, + 21708128, + 24074624, + 21708160 ], "bases": [ { @@ -36258,22 +36258,22 @@ }, { "type_name": "CCSGO_QuickBuyRadial", - "vtable_address": 64414448, + "vtable_address": 64418352, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23963840, - 23620912, - 23914752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23966592, + 23623664, + 23917504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -36381,35 +36381,35 @@ }, { "type_name": "CCSGO_QuickGrenadesRadial", - "vtable_address": 64414576, + "vtable_address": 64418480, "methods": [ 12043984, - 59816784, - 23898848, - 23898864, - 59817120, - 59817136, - 59817120, + 59820688, + 23901600, + 23901616, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23903440, - 59823152, + 59821792, + 59821808, + 59820704, + 23906192, + 59827056, 12233664, 12233696, 12233680, @@ -36422,12 +36422,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -36442,56 +36442,56 @@ 12233520, 12233296, 12233760, - 59835792, - 23898832, - 23913072, - 23913296, + 59839696, + 23901584, + 23915824, + 23916048, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23897536, - 23962240, - 23898960, - 23960496, - 24071424, - 23925600, - 23964304, - 23928816, - 23854688, - 23906304, - 23935472, - 23899488, - 23937088, - 23963792, - 23905248, - 23894400, - 23894992, - 23899504, - 23750576, - 23895104, - 23896384, - 23894304, - 23822944, - 24022576 + 23900288, + 23964992, + 23901712, + 23963248, + 24074176, + 23928352, + 23967056, + 23931568, + 23857440, + 23909056, + 23938224, + 23902240, + 23939840, + 23966544, + 23908000, + 23897152, + 23897744, + 23902256, + 23753328, + 23897856, + 23899136, + 23897056, + 23825696, + 24025328 ], "bases": [ { @@ -36599,21 +36599,21 @@ }, { "type_name": "CCSGO_QuickGrenadesRadial", - "vtable_address": 64415464, - "methods": [ - 23913184, - 23913424, - 21705296, - 23909136, - 21705216, - 21705232, - 21705248, - 23962752, - 21705280, - 21705328, - 21705312, - 24071872, - 21705344 + "vtable_address": 64419368, + "methods": [ + 23915936, + 23916176, + 21708112, + 23911888, + 21708032, + 21708048, + 21708064, + 23965504, + 21708096, + 21708144, + 21708128, + 24074624, + 21708160 ], "bases": [ { @@ -36721,22 +36721,22 @@ }, { "type_name": "CCSGO_QuickGrenadesRadial", - "vtable_address": 64415584, + "vtable_address": 64419488, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23963840, - 23620912, - 23914752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23966592, + 23623664, + 23917504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -36844,35 +36844,35 @@ }, { "type_name": "CCSGO_QuickInventory", - "vtable_address": 64415712, + "vtable_address": 64419616, "methods": [ 12043984, - 59816784, - 23898992, - 23899008, - 59817120, - 59817136, - 59817120, + 59820688, + 23901744, + 23901760, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23903440, - 59823152, + 59821792, + 59821808, + 59820704, + 23906192, + 59827056, 12233664, 12233696, 12233680, @@ -36885,12 +36885,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -36905,56 +36905,56 @@ 12233520, 12233296, 12233760, - 59835792, - 23898976, - 23921888, - 23922864, + 59839696, + 23901728, + 23924640, + 23925616, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24025760, - 23962240, - 23899152, - 23960528, - 24071424, - 23925600, - 23964304, - 23928816, - 23854688, - 23908672, - 23935472, - 23899488, - 23937088, - 23963792, - 23905248, - 23897536, - 23894992, - 23899504, - 23750576, - 23895104, - 23896384, - 23894304, - 23822944, - 24036336 + 24028512, + 23964992, + 23901904, + 23963280, + 24074176, + 23928352, + 23967056, + 23931568, + 23857440, + 23911424, + 23938224, + 23902240, + 23939840, + 23966544, + 23908000, + 23900288, + 23897744, + 23902256, + 23753328, + 23897856, + 23899136, + 23897056, + 23825696, + 24039088 ], "bases": [ { @@ -37062,21 +37062,21 @@ }, { "type_name": "CCSGO_QuickInventory", - "vtable_address": 64416600, + "vtable_address": 64420504, "methods": [ - 23922848, - 23922912, - 21705296, - 24025840, - 21705216, - 21705232, - 21705248, - 23962752, - 21705280, - 21705328, - 21705312, - 24071872, - 21705344 + 23925600, + 23925664, + 21708112, + 24028592, + 21708032, + 21708048, + 21708064, + 23965504, + 21708096, + 21708144, + 21708128, + 24074624, + 21708160 ], "bases": [ { @@ -37184,22 +37184,22 @@ }, { "type_name": "CCSGO_QuickInventory", - "vtable_address": 64416720, + "vtable_address": 64420624, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23963840, - 23620912, - 23914752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23966592, + 23623664, + 23917504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -37307,35 +37307,35 @@ }, { "type_name": "CCSGO_QuickUtilityItemRadial", - "vtable_address": 64416848, + "vtable_address": 64420752, "methods": [ 12043984, - 59816784, - 23899184, - 23899200, - 59817120, - 59817136, - 59817120, + 59820688, + 23901936, + 23901952, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23903440, - 59823152, + 59821792, + 59821808, + 59820704, + 23906192, + 59827056, 12233664, 12233696, 12233680, @@ -37348,12 +37348,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -37368,56 +37368,56 @@ 12233520, 12233296, 12233760, - 59835792, - 23899168, - 23904160, - 23904208, + 59839696, + 23901920, + 23906912, + 23906960, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23897536, - 23962240, - 23899296, - 23960560, - 24071424, - 23925600, - 23964304, - 23928816, - 23854688, - 23904288, - 23935472, - 23899488, - 23937088, - 23963792, - 23905248, - 23894400, - 23894992, - 23899504, - 23750576, - 23895104, - 23896384, - 23894304, - 23822944, - 24021808 + 23900288, + 23964992, + 23902048, + 23963312, + 24074176, + 23928352, + 23967056, + 23931568, + 23857440, + 23907040, + 23938224, + 23902240, + 23939840, + 23966544, + 23908000, + 23897152, + 23897744, + 23902256, + 23753328, + 23897856, + 23899136, + 23897056, + 23825696, + 24024560 ], "bases": [ { @@ -37525,21 +37525,21 @@ }, { "type_name": "CCSGO_QuickUtilityItemRadial", - "vtable_address": 64417736, - "methods": [ - 23909488, - 23910816, - 21705296, - 23909136, - 21705216, - 21705232, - 21705248, - 23962752, - 21705280, - 21705328, - 21705312, - 24071872, - 21705344 + "vtable_address": 64421640, + "methods": [ + 23912240, + 23913568, + 21708112, + 23911888, + 21708032, + 21708048, + 21708064, + 23965504, + 21708096, + 21708144, + 21708128, + 24074624, + 21708160 ], "bases": [ { @@ -37647,22 +37647,22 @@ }, { "type_name": "CCSGO_QuickUtilityItemRadial", - "vtable_address": 64417856, + "vtable_address": 64421760, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23963840, - 23620912, - 23914752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23966592, + 23623664, + 23917504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -37770,35 +37770,35 @@ }, { "type_name": "CCSGO_RadialMenuBase", - "vtable_address": 64419944, + "vtable_address": 64423848, "methods": [ 12043984, - 59816784, - 23898608, - 23898624, - 59817120, - 59817136, - 59817120, + 59820688, + 23901360, + 23901376, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23903440, - 59823152, + 59821792, + 59821808, + 59820704, + 23906192, + 59827056, 12233664, 12233696, 12233680, @@ -37811,12 +37811,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -37831,54 +37831,54 @@ 12233520, 12233296, 12233760, - 59835792, - 23898592, - 23926064, - 23926544, + 59839696, + 23901344, + 23928816, + 23929296, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23897536, - 23962240, - 23622944, - 23629312, - 24071424, - 23925600, - 23964304, - 23928816, - 23898656, - 23904288, - 23935472, - 23899488, - 23937088, - 23963792, - 23905248, - 23898672, - 23937648, - 23899504, - 23898688, - 23960624, - 23915840, - 23982960 + 23900288, + 23964992, + 23625696, + 23632064, + 24074176, + 23928352, + 23967056, + 23931568, + 23901408, + 23907040, + 23938224, + 23902240, + 23939840, + 23966544, + 23908000, + 23901424, + 23940400, + 23902256, + 23901440, + 23963376, + 23918592, + 23985712 ], "bases": [ { @@ -37964,21 +37964,21 @@ }, { "type_name": "CCSGO_RadialMenuBase", - "vtable_address": 64420816, - "methods": [ - 23926528, - 23926592, - 21705296, - 23909136, - 21705216, - 21705232, - 21705248, - 23962752, - 21705280, - 21705328, - 21705312, - 24071872, - 21705344 + "vtable_address": 64424720, + "methods": [ + 23929280, + 23929344, + 21708112, + 23911888, + 21708032, + 21708048, + 21708064, + 23965504, + 21708096, + 21708144, + 21708128, + 24074624, + 21708160 ], "bases": [ { @@ -38064,22 +38064,22 @@ }, { "type_name": "CCSGO_RadialMenuBase", - "vtable_address": 64420936, + "vtable_address": 64424840, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23963840, - 23620912, - 23914752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23966592, + 23623664, + 23917504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -38165,35 +38165,35 @@ }, { "type_name": "CCSGO_RadialRadio", - "vtable_address": 64417984, + "vtable_address": 64421888, "methods": [ 12043984, - 59816784, - 23899328, - 23899344, - 59817120, - 59817136, - 59817120, + 59820688, + 23902080, + 23902096, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 23984640, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 23987392, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23903440, - 59823152, + 59821792, + 59821808, + 59820704, + 23906192, + 59827056, 12233664, 12233696, 12233680, @@ -38206,12 +38206,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -38226,54 +38226,54 @@ 12233520, 12233296, 12233760, - 59835792, - 23899312, - 23926640, - 23927200, + 59839696, + 23902064, + 23929392, + 23929952, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24040800, - 23962768, - 23899408, - 23960592, - 24072096, - 23925600, - 23964848, - 23985488, - 24002160, - 23904288, - 23935472, - 23899488, - 23937088, - 23963792, - 23905248, - 23916336, - 23986032, - 23899504, - 23912992, - 23961296, - 23984512, - 23984080 + 24043552, + 23965520, + 23902160, + 23963344, + 24074848, + 23928352, + 23967600, + 23988240, + 24004912, + 23907040, + 23938224, + 23902240, + 23939840, + 23966544, + 23908000, + 23919088, + 23988784, + 23902256, + 23915744, + 23964048, + 23987264, + 23986832 ], "bases": [ { @@ -38370,21 +38370,21 @@ }, { "type_name": "CCSGO_RadialRadio", - "vtable_address": 64418856, - "methods": [ - 23927184, - 23927248, - 21705296, - 24042512, - 21705216, - 21705232, - 21705248, - 23962784, - 21705280, - 21705328, - 21705312, - 24072384, - 21705344 + "vtable_address": 64422760, + "methods": [ + 23929936, + 23930000, + 21708112, + 24045264, + 21708032, + 21708048, + 21708064, + 23965536, + 21708096, + 21708144, + 21708128, + 24075136, + 21708160 ], "bases": [ { @@ -38481,22 +38481,22 @@ }, { "type_name": "CCSGO_RadialRadio", - "vtable_address": 64418976, + "vtable_address": 64422880, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23963840, - 23620912, - 23914752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23966592, + 23623664, + 23917504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -38593,35 +38593,35 @@ }, { "type_name": "CCSGO_RadialSelector", - "vtable_address": 64419104, + "vtable_address": 64423008, "methods": [ 12043984, - 59816784, - 23899440, - 23899456, - 59817120, - 59817136, - 59817120, + 59820688, + 23902192, + 23902208, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 23902320, - 59823152, + 59821792, + 59821808, + 59820704, + 23905072, + 59827056, 12233664, 12233696, 12233680, @@ -38634,12 +38634,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -38654,34 +38654,34 @@ 12233520, 12233296, 12233760, - 59835792, - 23899424, - 23912288, - 23912528, + 59839696, + 23902176, + 23915040, + 23915280, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23975104, - 23976208 + 23977856, + 23978960 ], "bases": [ { @@ -38735,22 +38735,22 @@ }, { "type_name": "CCSGO_RadialSelector", - "vtable_address": 64419816, + "vtable_address": 64423720, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 23976176, - 23620912, - 23976752, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 23978928, + 23623664, + 23979504, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -38804,35 +38804,35 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 64423264, + "vtable_address": 64427168, "methods": [ 12043984, - 59816784, - 24072736, - 24072752, - 59817120, - 59817136, - 59817120, + 59820688, + 24075488, + 24075504, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 24075968, - 59823152, + 59821792, + 59821808, + 59820704, + 24078720, + 59827056, 12233664, 12233696, 12233680, @@ -38845,12 +38845,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -38865,41 +38865,41 @@ 12233520, 12233296, 12233760, - 59835792, - 24072720, - 24086096, - 24086656, + 59839696, + 24075472, + 24088848, + 24089408, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24248272, - 24080576, - 24248688, - 24079888, - 24122112, - 24157952, - 24097088, - 24080176, - 24079456 + 24251024, + 24083328, + 24251440, + 24082640, + 24124864, + 24160704, + 24099840, + 24082928, + 24082208 ], "bases": [ { @@ -38995,21 +38995,21 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 64424032, - "methods": [ - 24086640, - 24086704, - 24089408, - 24082576, - 21705216, - 21705232, - 21705248, - 24249248, - 21705280, - 21705328, - 21705312, - 24248384, - 21705344 + "vtable_address": 64427936, + "methods": [ + 24089392, + 24089456, + 24092160, + 24085328, + 21708032, + 21708048, + 21708064, + 24252000, + 21708096, + 21708144, + 21708128, + 24251136, + 21708160 ], "bases": [ { @@ -39105,9 +39105,9 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 64424152, + "vtable_address": 64428056, "methods": [ - 24084656 + 24087408 ], "bases": [ { @@ -39203,22 +39203,22 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 64424176, + "vtable_address": 64428080, "methods": [ - 23620848, - 23620864, - 23620880, - 23620896, - 24123008, - 23620912, - 24158080, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 23623600, + 23623616, + 23623632, + 23623648, + 24125760, + 23623664, + 24160832, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -39314,35 +39314,35 @@ }, { "type_name": "CCSGO_Scoreboard", - "vtable_address": 64424304, + "vtable_address": 64428208, "methods": [ 12043984, - 59816784, - 24072896, - 24072912, - 59817120, - 59817136, - 59817120, + 59820688, + 24075648, + 24075664, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -39355,12 +39355,12 @@ 12399392, 12233312, 12233168, - 24161824, - 59825616, - 59825216, - 59836080, + 24164576, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -39375,33 +39375,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24072880, - 24085008, - 24088400, + 59839696, + 24075632, + 24087760, + 24091152, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24128560 + 24131312 ], "bases": [ { @@ -39455,11 +39455,11 @@ }, { "type_name": "CCSGO_Scoreboard", - "vtable_address": 64425008, + "vtable_address": 64428912, "methods": [ - 24088752, - 24088576, - 24129984 + 24091504, + 24091328, + 24132736 ], "bases": [ { @@ -39513,40 +39513,40 @@ }, { "type_name": "CCSGO_SettingsAnnotationsDropDown", - "vtable_address": 64499520, + "vtable_address": 64503424, "methods": [ 12043984, - 59816784, - 25204624, - 25204640, - 59817120, - 59817136, - 59817120, + 59820688, + 25207632, + 25207648, + 59821024, + 59821040, + 59821024, 12233600, - 60180928, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60189648, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60184832, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60193552, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60175296, - 59817904, - 25208544, - 59828528, - 60181408, + 60179200, + 59821808, + 25211552, + 59832432, + 60185312, 12233664, 12233696, 12233680, - 25283072, - 60189968, + 25286080, + 60193872, 12233648, 12233632, 12233264, @@ -39554,12 +39554,12 @@ 12399392, 12233312, 12233168, - 25253936, - 59825616, - 59825216, - 59836080, + 25256944, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -39573,38 +39573,38 @@ 12399424, 12233520, 12233296, - 60181840, - 59835792, - 25204608, - 25208384, - 25213472, + 60185744, + 59839696, + 25207616, + 25211392, + 25216480, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60186880, - 25229280, - 25204432, - 25204448, - 25204464 + 60190784, + 25232288, + 25207440, + 25207456, + 25207472 ], "bases": [ { @@ -39659,39 +39659,39 @@ }, { "type_name": "CCSGO_SettingsEnum", - "vtable_address": 64500256, + "vtable_address": 64504160, "methods": [ 12043984, - 59816784, - 25204256, - 25204272, - 59817120, - 59817136, - 59817120, + 59820688, + 25207264, + 25207280, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 25218240, + 59821792, + 59821808, + 59820704, + 59832432, + 25221248, 12233664, 12233696, 12233680, - 25212800, + 25215808, 12250768, 12233648, 12233632, @@ -39700,12 +39700,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -39720,34 +39720,34 @@ 12233520, 12233296, 12233760, - 59835792, - 25204240, - 25207744, - 25213904, + 59839696, + 25207248, + 25210752, + 25216912, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25217808, - 25204304 + 25220816, + 25207312 ], "bases": [ { @@ -39790,9 +39790,9 @@ }, { "type_name": "CCSGO_SettingsEnum", - "vtable_address": 64500968, + "vtable_address": 64504872, "methods": [ - 25204320 + 25207328 ], "bases": [ { @@ -39835,40 +39835,40 @@ }, { "type_name": "CCSGO_SettingsEnumDropDown", - "vtable_address": 64500992, + "vtable_address": 64504896, "methods": [ 12043984, - 59816784, - 25204496, - 25204512, - 59817120, - 59817136, - 59817120, + 59820688, + 25207504, + 25207520, + 59821024, + 59821040, + 59821024, 12233600, - 60180928, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60189648, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60184832, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60193552, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60175296, - 59817904, - 25208544, - 59828528, - 25216576, + 60179200, + 59821808, + 25211552, + 59832432, + 25219584, 12233664, 12233696, 12233680, - 25283072, - 60189968, + 25286080, + 60193872, 12233648, 12233632, 12233264, @@ -39876,12 +39876,12 @@ 12399392, 12233312, 12233168, - 25254016, - 59825616, - 59825216, - 59836080, + 25257024, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -39895,39 +39895,39 @@ 12399424, 12233520, 12233296, - 60181840, - 59835792, - 25204480, - 25208448, - 25213808, + 60185744, + 59839696, + 25207488, + 25211456, + 25216816, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60186880, - 25229280, - 25217184, - 25208032, - 25215984, - 25204576 + 60190784, + 25232288, + 25220192, + 25211040, + 25218992, + 25207584 ], "bases": [ { @@ -39992,9 +39992,9 @@ }, { "type_name": "CCSGO_SettingsEnumDropDown", - "vtable_address": 64501736, + "vtable_address": 64505640, "methods": [ - 25204592 + 25207600 ], "bases": [ { @@ -40059,40 +40059,40 @@ }, { "type_name": "CCSGO_SettingsEnumDropDownBase", - "vtable_address": 64501760, + "vtable_address": 64505664, "methods": [ 12043984, - 59816784, - 25204368, - 25204384, - 59817120, - 59817136, - 59817120, + 59820688, + 25207376, + 25207392, + 59821024, + 59821040, + 59821024, 12233600, - 60180928, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60189648, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60184832, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60193552, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60175296, - 59817904, - 25208544, - 59828528, - 60181408, + 60179200, + 59821808, + 25211552, + 59832432, + 60185312, 12233664, 12233696, 12233680, - 25283072, - 60189968, + 25286080, + 60193872, 12233648, 12233632, 12233264, @@ -40100,12 +40100,12 @@ 12399392, 12233312, 12233168, - 25253872, - 59825616, - 59825216, - 59836080, + 25256880, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -40119,38 +40119,38 @@ 12399424, 12233520, 12233296, - 60181840, - 59835792, - 25204336, - 25208256, - 25208272, + 60185744, + 59839696, + 25207344, + 25211264, + 25211280, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60186880, - 25229280, - 25204432, - 25204448, - 25204464 + 60190784, + 25232288, + 25207440, + 25207456, + 25207472 ], "bases": [ { @@ -40194,40 +40194,40 @@ }, { "type_name": "CCSGO_SettingsEnumDropDownBind", - "vtable_address": 64502496, + "vtable_address": 64506400, "methods": [ 12043984, - 59816784, - 25204720, - 25204736, - 59817120, - 59817136, - 59817120, + 59820688, + 25207728, + 25207744, + 59821024, + 59821040, + 59821024, 12233600, - 60180928, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60189648, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60184832, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60193552, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60175296, - 59817904, - 60174672, - 59828528, - 25207824, + 60179200, + 59821808, + 60178576, + 59832432, + 25210832, 12233664, 12233696, 12233680, - 25283136, - 60189968, + 25286144, + 60193872, 12233648, 12233632, 12233264, @@ -40235,12 +40235,12 @@ 12399392, 12233312, 12233168, - 60202592, - 59825616, - 59825216, - 59836080, + 60206496, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -40254,35 +40254,35 @@ 12399424, 12233520, 12233296, - 60181840, - 59835792, - 25204704, - 25208320, - 25208336, + 60185744, + 59839696, + 25207712, + 25211328, + 25211344, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60186880, - 25223280 + 60190784, + 25226288 ], "bases": [ { @@ -40326,35 +40326,35 @@ }, { "type_name": "CCSGO_SettingsKeyBinder", - "vtable_address": 64503208, + "vtable_address": 64507112, "methods": [ 12043984, - 59816784, - 25204800, - 25204816, - 59817120, - 59817136, - 59817120, + 59820688, + 25207808, + 25207824, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 25234016, - 59817904, - 59816800, - 59828528, - 25232800, + 25237024, + 59821808, + 59820704, + 59832432, + 25235808, 12233664, 12233696, 12233680, @@ -40367,12 +40367,12 @@ 12399392, 12233312, 12233168, - 25254736, - 59825616, - 59825216, - 59836080, + 25257744, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -40387,30 +40387,30 @@ 12233520, 12233296, 12233760, - 59835792, - 25204784, - 25218640, - 25218864, + 59839696, + 25207792, + 25221648, + 25221872, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -40445,39 +40445,39 @@ }, { "type_name": "CCSGO_SteamInputAction", - "vtable_address": 64492496, + "vtable_address": 64496400, "methods": [ 12043984, - 59816784, - 24885888, - 24885904, - 59817120, - 59817136, - 59817120, + 59820688, + 24888896, + 24888912, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 24909200, - 59823152, + 59821792, + 59821808, + 59820704, + 24912208, + 59827056, 12233664, 12233696, 12233680, - 25132768, + 25135776, 12250768, 12233648, 12233632, @@ -40486,12 +40486,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -40506,30 +40506,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24885872, - 24902768, - 24916592, + 59839696, + 24888880, + 24905776, + 24919600, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -40564,13 +40564,13 @@ }, { "type_name": "CCSGO_SteamInputAction::CCallbackInternal_OnSteamDeviceConnected", - "vtable_address": 64489136, + "vtable_address": 64493040, "methods": [ - 25132400, + 25135408, 14599568, 14597328, - 24893120, - 24893152 + 24896128, + 24896160 ], "bases": [ { @@ -40603,13 +40603,13 @@ }, { "type_name": "CCSGO_SteamInputAction::CCallbackInternal_OnSteamDeviceDisconnected", - "vtable_address": 64489192, + "vtable_address": 64493096, "methods": [ - 24911728, + 24914736, 14599568, 14597328, - 24893216, - 24893248 + 24896224, + 24896256 ], "bases": [ { @@ -40642,13 +40642,13 @@ }, { "type_name": "CCSGO_SteamInputAction::CCallbackInternal_OnSteamInputConfigurationLoaded", - "vtable_address": 64489080, + "vtable_address": 64492984, "methods": [ - 25132544, - 24886752, - 24886768, - 24892608, - 24892640 + 25135552, + 24889760, + 24889776, + 24895616, + 24895648 ], "bases": [ { @@ -40681,39 +40681,39 @@ }, { "type_name": "CCSGO_SteamInputActionLabel", - "vtable_address": 64493248, + "vtable_address": 64497152, "methods": [ 12043984, - 59816784, - 24886400, - 24886416, - 59817120, - 59817136, - 59817120, + 59820688, + 24889408, + 24889424, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 24893648, - 59823152, + 59821792, + 59821808, + 59820704, + 24896656, + 59827056, 12233664, 12233696, 12233680, - 25004384, + 25007392, 12250768, 12233648, 12233632, @@ -40722,12 +40722,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -40742,30 +40742,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24886384, - 24892800, - 24908752, + 59839696, + 24889392, + 24895808, + 24911760, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -40800,13 +40800,13 @@ }, { "type_name": "CCSGO_SteamInputActionLabel::CCallbackInternal_OnSteamInputConfigurationLoaded", - "vtable_address": 64493192, + "vtable_address": 64497096, "methods": [ - 25004240, - 24886752, - 24886768, - 24892704, - 24892736 + 25007248, + 24889760, + 24889776, + 24895712, + 24895744 ], "bases": [ { @@ -40839,35 +40839,35 @@ }, { "type_name": "CCSGO_SteamInputGlyph", - "vtable_address": 64493944, + "vtable_address": 64497848, "methods": [ 12043984, - 59816784, - 24886336, - 24886352, - 59817120, - 59817136, - 59817120, + 59820688, + 24889344, + 24889360, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 25012176, - 59823152, + 59821792, + 59821808, + 59820704, + 25015184, + 59827056, 12233664, 12233696, 12233680, @@ -40880,12 +40880,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -40900,30 +40900,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24886320, - 24893024, - 24903008, + 59839696, + 24889328, + 24896032, + 24906016, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -40958,13 +40958,13 @@ }, { "type_name": "CCSGO_SteamInputGlyph::CCallbackInternal_OnSteamInputConfigurationLoaded", - "vtable_address": 64492440, + "vtable_address": 64496344, "methods": [ - 25013280, - 24886752, - 24886768, - 24892928, - 24892960 + 25016288, + 24889760, + 24889776, + 24895936, + 24895968 ], "bases": [ { @@ -40997,35 +40997,35 @@ }, { "type_name": "CCSGO_TeamIntroMenu", - "vtable_address": 64425968, + "vtable_address": 64429872, "methods": [ 12043984, - 59816784, - 24073040, - 24073056, - 59817120, - 59817136, - 59817120, + 59820688, + 24075792, + 24075808, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -41038,12 +41038,12 @@ 12399392, 12233312, 12233168, - 24164752, - 59825616, - 59825216, - 59836080, + 24167504, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -41058,34 +41058,34 @@ 12233520, 12233296, 12233760, - 59835792, - 24073024, - 24085184, - 24090768, + 59839696, + 24075776, + 24087936, + 24093520, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24123024, - 24076256 + 24125776, + 24079008 ], "bases": [ { @@ -41149,11 +41149,11 @@ }, { "type_name": "CCSGO_TeamIntroMenu", - "vtable_address": 64426680, + "vtable_address": 64430584, "methods": [ - 24091152, - 24090960, - 24123760 + 24093904, + 24093712, + 24126512 ], "bases": [ { @@ -41217,9 +41217,9 @@ }, { "type_name": "CCSGO_TeamIntroMenu", - "vtable_address": 64426720, + "vtable_address": 64430624, "methods": [ - 24104288 + 24107040 ], "bases": [ { @@ -41283,35 +41283,35 @@ }, { "type_name": "CCSGO_TeamSelectMenu", - "vtable_address": 64426744, + "vtable_address": 64430648, "methods": [ 12043984, - 59816784, - 24073104, - 24073120, - 59817120, - 59817136, - 59817120, + 59820688, + 24075856, + 24075872, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -41324,12 +41324,12 @@ 12399392, 12233312, 12233168, - 24167472, - 59825616, - 59825216, - 59836080, + 24170224, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -41344,33 +41344,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24073088, - 24085712, - 24085984, + 59839696, + 24075840, + 24088464, + 24088736, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24179984 + 24182736 ], "bases": [ { @@ -41424,11 +41424,11 @@ }, { "type_name": "CCSGO_TeamSelectMenu", - "vtable_address": 64427448, + "vtable_address": 64431352, "methods": [ - 24085968, - 24086032, - 24181632 + 24088720, + 24088784, + 24184384 ], "bases": [ { @@ -41482,35 +41482,35 @@ }, { "type_name": "CCSGO_TimeSlider", - "vtable_address": 64506224, + "vtable_address": 64510128, "methods": [ 12043984, - 59816784, - 25205328, - 25205344, - 59817120, - 59817136, - 59817120, + 59820688, + 25208336, + 25208352, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 25209904, - 59828528, - 25222912, + 59821792, + 59821808, + 25212912, + 59832432, + 25225920, 12233664, 12233696, 12233680, @@ -41523,12 +41523,12 @@ 12399392, 12233312, 12233168, - 25262736, - 59825616, - 59825216, - 59836080, + 25265744, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -41543,40 +41543,40 @@ 12233520, 12233296, 12233760, - 59835792, - 25205312, - 25215376, - 25215664, + 59839696, + 25208320, + 25218384, + 25218672, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25273184, - 25275104, - 25275728, - 25224336, - 25218912, - 25273216, - 25219584, - 25205200 + 25276192, + 25278112, + 25278736, + 25227344, + 25221920, + 25276224, + 25222592, + 25208208 ], "bases": [ { @@ -41641,9 +41641,9 @@ }, { "type_name": "CCSGO_TimeSlider", - "vtable_address": 64506984, + "vtable_address": 64510888, "methods": [ - 25205216 + 25208224 ], "bases": [ { @@ -41708,35 +41708,35 @@ }, { "type_name": "CCSGO_TooltipPanel", - "vtable_address": 64428184, + "vtable_address": 64432088, "methods": [ 12043984, - 59816784, - 24073408, - 24073424, - 59817120, - 59817136, - 59817120, + 59820688, + 24076160, + 24076176, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 24205376, - 59823152, + 59821792, + 59821808, + 59820704, + 24208128, + 59827056, 12233664, 12233696, 12233680, @@ -41749,12 +41749,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -41769,30 +41769,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24073392, - 24075264, - 24075824, + 59839696, + 24076144, + 24078016, + 24078576, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -41827,35 +41827,35 @@ }, { "type_name": "CCSGO_UI_Spinner", - "vtable_address": 64429592, + "vtable_address": 64433496, "methods": [ 12043984, - 59816784, - 24073616, - 24073632, - 59817120, - 59817136, - 59817120, + 59820688, + 24076368, + 24076384, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 24079552, - 24079296, - 59819120, - 59817872, - 59826592, - 24134608, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 24082304, + 24082048, + 59823024, + 59821776, + 59830496, + 24137360, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 24077856, + 59821792, + 59821808, + 59820704, + 59832432, + 24080608, 12233664, 12233696, 12233680, @@ -41868,12 +41868,12 @@ 12399392, 12233312, 12233168, - 24188992, - 59825616, - 59825216, - 59836080, + 24191744, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -41888,33 +41888,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24073600, - 24075232, - 24075728, + 59839696, + 24076352, + 24077984, + 24078480, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24073712 + 24076464 ], "bases": [ { @@ -41947,35 +41947,35 @@ }, { "type_name": "CCSGO_UI_TooltipManager", - "vtable_address": 64430296, + "vtable_address": 64434200, "methods": [ 12043984, - 59816784, - 24073744, - 24073760, - 59817120, - 59817136, - 59817120, + 59820688, + 24076496, + 24076512, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -41988,12 +41988,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -42008,33 +42008,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24073728, - 24078272, - 24078288, + 59839696, + 24076480, + 24081024, + 24081040, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28216128 + 28219392 ], "bases": [ { @@ -42078,35 +42078,35 @@ }, { "type_name": "CCSGO_VideoSettingsScreen", - "vtable_address": 64431728, + "vtable_address": 64435632, "methods": [ 12043984, - 59816784, - 24073824, - 24073840, - 59817120, - 59817136, - 59817120, + 59820688, + 24076576, + 24076592, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 24080496, - 24080432, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 24083248, + 24083184, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -42119,12 +42119,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -42139,30 +42139,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24073808, - 24083488, - 24083696, + 59839696, + 24076560, + 24086240, + 24086448, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -42197,35 +42197,35 @@ }, { "type_name": "CCSGO_VoiceNotice", - "vtable_address": 64486136, + "vtable_address": 64490040, "methods": [ 12043984, - 59816784, - 24885536, - 24885552, - 59817120, - 59817136, - 59817120, + 59820688, + 24888544, + 24888560, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -42238,12 +42238,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -42258,30 +42258,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24885520, - 24887376, - 24888480, + 59839696, + 24888528, + 24890384, + 24891488, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -42316,35 +42316,35 @@ }, { "type_name": "CCSGO_WeaponSelectionView", - "vtable_address": 64489944, + "vtable_address": 64493848, "methods": [ 12043984, - 59816784, - 24885968, - 24885984, - 59817120, - 59817136, - 59817120, + 59820688, + 24888976, + 24888992, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -42357,12 +42357,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -42370,37 +42370,37 @@ 12233440, 12233456, 12233472, - 24940128, + 24943136, 12233504, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 24885936, - 24910368, - 24910768, + 59839696, + 24888944, + 24913376, + 24913776, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -42435,7 +42435,7 @@ }, { "type_name": "CCSGO_WingmanIntroCharacterPosition", - "vtable_address": 65614944, + "vtable_address": 65618848, "methods": [], "bases": [], "model": { @@ -42446,7 +42446,7 @@ }, { "type_name": "CCSGO_WingmanIntroCharacterPosition", - "vtable_address": 65615136, + "vtable_address": 65619040, "methods": [], "bases": [], "model": { @@ -42457,33 +42457,33 @@ }, { "type_name": "CCSGO_WingmanIntroCounterTerroristPosition", - "vtable_address": 63719816, + "vtable_address": 63723720, "methods": [ 14367152, - 17129904, - 17130848, + 17130000, + 17130944, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 17216080, - 21132352, - 21132672, - 21132336, - 21128672, - 17216704, - 21133440, + 21127072, + 17218384, + 21135168, + 21135488, + 21135152, + 21131488, + 17219008, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -42492,23 +42492,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17120288, - 17216800, + 17219104, 17121360, 12234080, - 17138320, - 20571856, + 17138416, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -42525,13 +42525,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -42539,39 +42539,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -42585,33 +42585,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17163920, - 21812224, + 17163840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -42639,9 +42639,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -42649,24 +42649,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -42744,33 +42744,33 @@ }, { "type_name": "CCSGO_WingmanIntroTerroristPosition", - "vtable_address": 63718040, + "vtable_address": 63721944, "methods": [ 14367152, - 17129760, - 17130688, + 17129856, + 17130784, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 17216080, - 21132352, - 21132672, - 21132336, - 21128672, - 17216704, - 21133440, + 21127072, + 17218384, + 21135168, + 21135488, + 21135152, + 21131488, + 17219008, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -42779,23 +42779,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17120272, - 17216800, + 17219104, 17121376, 12234080, - 17138192, - 20571856, + 17138288, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -42812,13 +42812,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -42826,39 +42826,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -42872,33 +42872,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17163920, - 21812224, + 17163840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -42926,9 +42926,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -42936,24 +42936,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -43031,11 +43031,11 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 63689184, + "vtable_address": 63693088, "methods": [ 16912160, 16912032, - 19368272, + 19371088, 16911552, 16911840, 16908240, @@ -43044,46 +43044,46 @@ 16911712, 16908336, 16908368, - 19359264, + 19362080, 16929152, 16927936, - 20151424, - 20137280, + 20154240, + 20140096, 16912528, - 19359296, + 19362112, 16906976, 16907056, 16907072, 16911568, 16912960, - 20151152, - 19359408, + 20153968, + 19362224, 16911584, - 20137248, - 19398192, - 19359456, + 20140064, + 19401008, + 19362272, 16971040, - 20496320, + 20499136, 16907088, - 19359488, + 19362304, 16907168, 16907648, 16907616, - 19359344, - 19359360, + 19362160, + 19362176, 16906992, 16912688, - 19359376, - 19367792, - 19359360, - 19359392, + 19362192, + 19370608, + 19362176, + 19362208, 16921904, 16921728, 16907200, 16907232, 16907024, - 19837424, - 19368320 + 19840240, + 19371136 ], "bases": [ { @@ -43236,11 +43236,11 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 63689608, + "vtable_address": 63693512, "methods": [ 16912224, 16912096, - 19395424, + 19398240, 16916048, 16911936, 16908256, @@ -43252,21 +43252,21 @@ 16907184, 16921664, 16915952, - 19390944, - 19390960, - 19390976, + 19393760, + 19393776, + 19393792, 16907008, 16925872, - 19390992, - 19393024, - 19391024, - 19391008, + 19393808, + 19395840, + 19393840, + 19393824, 16922640, 16921792, 16907216, 16907248, 16907040, - 19837488 + 19840304 ], "bases": [ { @@ -43419,7 +43419,7 @@ }, { "type_name": "CCSGameModeRules", - "vtable_address": 63687752, + "vtable_address": 63691656, "methods": [ 16909376, 16920800, @@ -43434,7 +43434,7 @@ }, { "type_name": "CCSGameModeRules", - "vtable_address": 65599872, + "vtable_address": 65603776, "methods": [], "bases": [], "model": { @@ -43445,7 +43445,7 @@ }, { "type_name": "CCSGameModeRules_ArmsRace", - "vtable_address": 63687832, + "vtable_address": 63691736, "methods": [ 16909344, 16923328, @@ -43471,7 +43471,7 @@ }, { "type_name": "CCSGameModeRules_Deathmatch", - "vtable_address": 63687872, + "vtable_address": 63691776, "methods": [ 16909328, 16921440, @@ -43497,7 +43497,7 @@ }, { "type_name": "CCSGameModeRules_Noop", - "vtable_address": 63687792, + "vtable_address": 63691696, "methods": [ 16909360, 16920864, @@ -43523,7 +43523,7 @@ }, { "type_name": "CCSGameRules*", - "vtable_address": 63695056, + "vtable_address": 63698960, "methods": [], "bases": [], "model": { @@ -43534,10 +43534,10 @@ }, { "type_name": "CCSHitboxSystem", - "vtable_address": 63977120, + "vtable_address": 63981024, "methods": [ - 17924192, - 17879808 + 17926496, + 17882112 ], "bases": [ { @@ -43559,12 +43559,12 @@ }, { "type_name": "CCSHudWeaponSelection", - "vtable_address": 64606384, + "vtable_address": 64610288, "methods": [ 12204192, 12204208, 12204224, - 22060576, + 22063392, 12204256, 12204272, 12204288, @@ -43617,48 +43617,48 @@ 12205040, 12205056, 12205072, - 28177792, + 28181056, 12205104, - 28173168, - 28174896, - 28174912, - 28173152, - 28173216, - 22059968, - 22048400, - 28178096, - 28195328, - 28192960, - 28181232, - 28173184, - 28195696, - 22071120, - 22072992, - 22048448, - 28181648, - 28181136, - 22077072, - 22078752, - 28173232, - 28173264, - 28173296, - 28194128, - 28193616, - 28193728, - 28194384, - 22095296, - 28194640, - 22071456, - 22059280, - 22048432, - 28174800, - 28195344, - 28195360, - 28195376, - 28195392, - 28195408, - 28173200, - 28177872 + 28176432, + 28178160, + 28178176, + 28176416, + 28176480, + 22062784, + 22051216, + 28181360, + 28198592, + 28196224, + 28184496, + 28176448, + 28198960, + 22073936, + 22075808, + 22051264, + 28184912, + 28184400, + 22079888, + 22081568, + 28176496, + 28176528, + 28176560, + 28197392, + 28196880, + 28196992, + 28197648, + 22098112, + 28197904, + 22074272, + 22062096, + 22051248, + 28178064, + 28198608, + 28198624, + 28198640, + 28198656, + 28198672, + 28176464, + 28181136 ], "bases": [ { @@ -43702,10 +43702,10 @@ }, { "type_name": "CCSIconScene", - "vtable_address": 64436912, + "vtable_address": 64440816, "methods": [ - 24373872, - 24374592 + 24376592, + 24377312 ], "bases": [], "model": { @@ -43716,21 +43716,21 @@ }, { "type_name": "CCSInventoryManager", - "vtable_address": 63973536, + "vtable_address": 63977440, "methods": [ - 17853984, - 17854208, - 17854400, - 17847456, + 17856288, + 17856512, + 17856704, + 17849760, 12204256, 12204272, 12204288, - 17795072, - 27311120, + 17797376, + 27314288, 12204336, 12204352, 12204368, - 27293152, + 27296320, 12204400, 12204416, 12204432, @@ -43774,30 +43774,30 @@ 12205040, 12205056, 12205072, - 17793840, + 17796144, 12205104, - 17793104, - 17863856, - 17864304, - 17791232, - 27540336, - 27324608, - 27280064, - 17791184, - 17843664, - 17794080, - 27601824, - 17791248, - 27280384, - 27280240, - 27713088, - 28022144, - 27372368, - 27607680, - 17791296, - 17829168, - 17791264, - 17791440 + 17795408, + 17866160, + 17866608, + 17793536, + 27543568, + 27327776, + 27283232, + 17793488, + 17845968, + 17796384, + 27605056, + 17793552, + 27283552, + 27283408, + 27716352, + 28025408, + 27375568, + 27610912, + 17793600, + 17831472, + 17793568, + 17793744 ], "bases": [ { @@ -43841,11 +43841,11 @@ }, { "type_name": "CCSItemIconGeneratorGameSystem", - "vtable_address": 64436304, + "vtable_address": 64440208, "methods": [ - 24647744, + 24650752, 12204208, - 24407488, + 24410208, 12204240, 12204256, 12204272, @@ -43855,7 +43855,7 @@ 12204336, 12204352, 12204368, - 24267936, + 24270688, 12204400, 12204416, 12204432, @@ -43864,13 +43864,13 @@ 12204480, 12204496, 12204512, - 24267952, + 24270704, 12204544, 12204560, 12204576, 12204592, 12204608, - 24682192, + 24685200, 12204640, 12204656, 12204672, @@ -43888,7 +43888,7 @@ 12204864, 12204880, 12204896, - 24699872, + 24702880, 12204928, 12204944, 12204960, @@ -43899,15 +43899,15 @@ 12205040, 12205056, 12205072, - 24267904, + 24270656, 12205104, - 24267888, - 24405776, - 24406320, - 24267872, - 24522848, - 24322176, - 24447504 + 24270640, + 24408496, + 24409040, + 24270624, + 24525792, + 24324928, + 24450432 ], "bases": [ { @@ -43960,11 +43960,11 @@ }, { "type_name": "CCSItemIconGeneratorGameSystem", - "vtable_address": 64436840, + "vtable_address": 64440744, "methods": [ - 24447600, + 24450528, 13820288, - 22916864 + 22919680 ], "bases": [ { @@ -44017,10 +44017,10 @@ }, { "type_name": "CCSItemIconGeneratorGameSystem", - "vtable_address": 64436880, + "vtable_address": 64440784, "methods": [ - 24522912, - 24322400 + 24525856, + 24325152 ], "bases": [ { @@ -44073,7 +44073,7 @@ }, { "type_name": "CCSMinimapCreatorGameSystem", - "vtable_address": 63703120, + "vtable_address": 63707024, "methods": [ 12204192, 12204208, @@ -44169,13 +44169,13 @@ }, { "type_name": "CCSModeManager", - "vtable_address": 64344776, + "vtable_address": 64348680, "methods": [ - 22945888, - 23096576, - 22957712, - 22917424, - 22917440 + 22948704, + 23099360, + 22960528, + 22920240, + 22920256 ], "bases": [ { @@ -44197,51 +44197,51 @@ }, { "type_name": "CCSObserver_CameraServices", - "vtable_address": 63977152, - "methods": [ - 17865984, - 17865296, - 17865248, + "vtable_address": 63981056, + "methods": [ + 17868288, + 17867600, + 17867552, + 17869776, + 17869808, + 19896256, + 17953072, + 17867104, + 17867120, + 17867136, + 19971488, + 19879408, + 17867456, + 19879408, + 17867216, + 17867232, + 17867248, + 17867264, + 19890608, + 19966640, + 19904224, + 19973104, + 19971504, + 19994432, + 17867376, + 17868480, + 17877312, + 17878960, + 17879232, + 17953088, + 17877408, + 17900656, + 19915968, + 17884864, + 19879488, + 19879232, + 17877136, 17867472, + 17867536, + 19879184, + 19879216, 17867504, - 19893440, - 17950768, - 17864800, - 17864816, - 17864832, - 19968672, - 19876592, - 17865152, - 19876592, - 17864912, - 17864928, - 17864944, - 17864960, - 19887792, - 19963824, - 19901408, - 19970288, - 19968688, - 19991616, - 17865072, - 17866176, - 17875008, - 17876656, - 17876928, - 17950784, - 17875104, - 17898352, - 19913152, - 17882560, - 19876672, - 19876416, - 17874832, - 17865168, - 17865232, - 19876368, - 19876400, - 17865200, - 17865216 + 17867520 ], "bases": [ { @@ -44285,55 +44285,55 @@ }, { "type_name": "CCSObserver_MovementServices", - "vtable_address": 63977512, - "methods": [ - 17866000, - 17865472, - 17865424, - 17872432, - 17872512, - 19876592, - 19876608, - 19879840, - 17864816, - 19879744, - 17864848, - 17864864, - 17864880, - 19973680, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17866976, - 17866416, - 17865312, - 17866400, - 17889856, - 17865328, - 19880000, - 17866224, - 17866432, - 17866544, - 19876688, - 19876704, - 17866592, - 17865344, - 17865360, - 19880176, - 19880144, - 17865408, - 17865376, - 19876720, - 19908352, - 17865392 + "vtable_address": 63981416, + "methods": [ + 17868304, + 17867776, + 17867728, + 17874736, + 17874816, + 19879408, + 19879424, + 19882656, + 17867120, + 19882560, + 17867152, + 17867168, + 17867184, + 19976496, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17869280, + 17868720, + 17867616, + 17868704, + 17892160, + 17867632, + 19882816, + 17868528, + 17868736, + 17868848, + 19879504, + 19879520, + 17868896, + 17867648, + 17867664, + 19882992, + 19882960, + 17867712, + 17867680, + 19879536, + 19911168, + 17867696 ], "bases": [ { @@ -44366,60 +44366,60 @@ }, { "type_name": "CCSObserver_ObserverServices", - "vtable_address": 63977936, + "vtable_address": 63981840, "methods": [ - 17866016, - 17865504, - 20081056, - 17869824, - 17869712, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, + 17868320, + 17867808, + 20083872, 17872128, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17950144, - 17879392, - 20089088, + 17872016, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17874432, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17952448, + 17881696, + 20091904, 13876656, - 20089712, - 20085120, - 17945424, - 17945392, - 20081120, - 17945568, - 17873184, - 17883008, - 17944368, - 17948416, - 17945376, - 17948688, - 17903296, - 20081664, - 17948880, - 17891760, - 17891712, - 20125744, - 17950096, - 20091888, - 17898656, - 20090544, - 17867008 + 20092528, + 20087936, + 17947728, + 17947696, + 20083936, + 17947872, + 17875488, + 17885312, + 17946672, + 17950720, + 17947680, + 17950992, + 17905600, + 20084480, + 17951184, + 17894064, + 17894016, + 20128560, + 17952400, + 20094704, + 17900960, + 20093360, + 17869312 ], "bases": [ { @@ -44452,36 +44452,36 @@ }, { "type_name": "CCSObserver_UseServices", - "vtable_address": 63978432, - "methods": [ - 17866032, - 17865520, - 20081152, + "vtable_address": 63982336, + "methods": [ + 17868336, + 17867824, + 20083968, + 17869536, + 17869552, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, 17867232, 17867248, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17950736, - 20084800, - 17438976 + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17953040, + 20087616, + 17441280 ], "bases": [ { @@ -44514,11 +44514,11 @@ }, { "type_name": "CCSPanoramaPrewarmSystem", - "vtable_address": 64346640, + "vtable_address": 64350544, "methods": [ - 23012032, + 23014848, 12204208, - 22917552, + 22920368, 12204240, 12204256, 12204272, @@ -44572,13 +44572,13 @@ 12205040, 12205056, 12205072, - 22917520, + 22920336, 12205104, - 22917504, - 22935072, - 22935104, - 22917488, - 23011840 + 22920320, + 22937888, + 22937920, + 22920304, + 23014656 ], "bases": [ { @@ -44621,9 +44621,9 @@ }, { "type_name": "CCSPanoramaPrewarmSystem", - "vtable_address": 64347160, + "vtable_address": 64351064, "methods": [ - 23011920 + 23014736 ], "bases": [ { @@ -44666,51 +44666,51 @@ }, { "type_name": "CCSPlayerBase_CameraServices", - "vtable_address": 63981256, - "methods": [ - 17952736, - 17896480, - 17896464, + "vtable_address": 63985160, + "methods": [ + 17955040, + 17898784, + 17898768, + 17869776, + 17899056, + 19896256, + 17953072, + 17867104, + 17867120, + 17867136, + 19971488, + 19879408, + 17867456, + 19879408, + 17867216, + 17867232, + 17867248, + 17867264, + 19890608, + 19966640, + 19904224, + 19973104, + 19971504, + 19994432, + 17867376, + 18103664, + 17877312, + 17867488, + 19900608, + 17953088, + 17877408, + 17900656, + 19915968, + 17884864, + 19879488, + 19879232, + 17877136, 17867472, - 17896752, - 19893440, - 17950768, - 17864800, - 17864816, - 17864832, - 19968672, - 19876592, - 17865152, - 19876592, - 17864912, - 17864928, - 17864944, - 17864960, - 19887792, - 19963824, - 19901408, - 19970288, - 19968688, - 19991616, - 17865072, - 18101360, - 17875008, - 17865184, - 19897792, - 17950784, - 17875104, - 17898352, - 19913152, - 17882560, - 19876672, - 19876416, - 17874832, - 17865168, - 17865232, - 19876368, - 19876400, - 17865200, - 17865216 + 17867536, + 19879184, + 19879216, + 17867504, + 17867520 ], "bases": [ { @@ -44743,7 +44743,7 @@ }, { "type_name": "CCSPlayerBase_CameraServices", - "vtable_address": 65668608, + "vtable_address": 65672512, "methods": [], "bases": [], "model": { @@ -44754,34 +44754,34 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 63983704, + "vtable_address": 63987608, "methods": [ 14367152, - 17955840, - 17956224, - 18931648, - 18517696, + 17958144, + 17958528, + 18934464, + 18520000, 12884208, - 21124256, - 18114576, - 21132352, - 18114752, - 21132336, - 18932736, - 18114592, - 21133440, + 21127072, + 18116880, + 21135168, + 18117056, + 21135152, + 18935552, + 18116896, + 21136256, 12233808, 12233824, - 18114688, + 18116992, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 18933376, - 20572352, - 20572208, - 17951232, + 18936192, + 20575168, + 20575024, + 17953536, 12233856, 12233872, 12233888, @@ -44789,23 +44789,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17951456, - 18119968, - 17952800, + 40000032, + 17953760, + 18122272, + 17955104, 12234080, - 17977072, - 17951440, + 17979376, + 17953744, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -44822,13 +44822,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -44836,39 +44836,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 18935520, - 18522400, + 20586576, + 20583008, + 20903888, + 20574880, + 18938336, + 18524704, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -44882,38 +44882,38 @@ 12572608, 12234736, 12234752, - 18507936, - 20572336, - 20825088, - 18119232, + 18510240, + 20575152, + 20827904, + 18121536, 12234768, - 20608144, - 20572192, - 18117008, + 20610960, + 20575008, + 18119312, 12611264, 12572672, - 18517824, + 18520128, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 18574176, + 20575008, + 18576480, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, 12234896, - 17951312, + 17953616, 12234928, 12234944, 12234960, @@ -44936,34 +44936,34 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, 12235168, 12235184, 12235440, - 18507888, - 17951216, + 18510192, + 17953520, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 18119072, + 21708544, + 18121376, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -44975,29 +44975,29 @@ 12572832, 12572912, 12235344, - 18113984, - 18114464, - 18117072, - 18522528, - 17951152, - 17951168, - 17951184, - 17951200, - 17954144, - 17968032, - 17964752, - 17962544, - 18508336, - 17951328, - 18119152, - 17961328, - 18117088, - 18119632, - 18559584, - 18559824, - 17972608, - 17970720, - 17951616 + 18116288, + 18116768, + 18119376, + 18524832, + 17953456, + 17953472, + 17953488, + 17953504, + 17956448, + 17970336, + 17967056, + 17964848, + 18510640, + 17953632, + 18121456, + 17963632, + 18119392, + 18121936, + 18561888, + 18562128, + 17974912, + 17973024, + 17953920 ], "bases": [ { @@ -45062,11 +45062,11 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 63985656, + "vtable_address": 63989560, "methods": [ - 17956208, - 17959920, - 17959008 + 17958512, + 17962224, + 17961312 ], "bases": [ { @@ -45131,14 +45131,14 @@ }, { "type_name": "CCSPlayerControllerGameSystem", - "vtable_address": 63982480, + "vtable_address": 63986384, "methods": [ 12204192, 12204208, 12204224, - 17951536, + 17953840, 12204256, - 17954464, + 17956768, 12204288, 12204304, 12204320, @@ -45189,12 +45189,12 @@ 12205040, 12205056, 12205072, - 17951504, + 17953808, 12205104, - 17951488, - 17961008, - 17960544, - 17951472 + 17953792, + 17963312, + 17962848, + 17953776 ], "bases": [ { @@ -45227,23 +45227,23 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices", - "vtable_address": 64000368, - "methods": [ - 18355936, - 18355296, - 20081360, - 18362496, - 18362912, - 18490880, - 18355168, - 18355184, - 18355200, - 18355216, - 18355392, - 18355248, - 18355264, - 18355280, - 18356608 + "vtable_address": 64004272, + "methods": [ + 18358240, + 18357600, + 20084176, + 18364800, + 18365216, + 18493184, + 18357472, + 18357488, + 18357504, + 18357520, + 18357696, + 18357552, + 18357568, + 18357584, + 18358912 ], "bases": [ { @@ -45265,12 +45265,12 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices::NetworkVar_m_matchStats", - "vtable_address": 64000312, + "vtable_address": 64004216, "methods": [ 17121344, - 18356960, + 18359264, 17121264, - 18356464, + 18358768, 17121200 ], "bases": [ @@ -45304,23 +45304,23 @@ }, { "type_name": "CCSPlayerController_DamageServices", - "vtable_address": 64000560, - "methods": [ - 18355968, - 18355312, - 20081360, - 18361696, - 18362080, - 18355152, - 18355168, - 18355184, - 18355200, - 18355216, - 18355232, - 18355248, - 18355264, - 18355280, - 18356608 + "vtable_address": 64004464, + "methods": [ + 18358272, + 18357616, + 20084176, + 18364000, + 18364384, + 18357456, + 18357472, + 18357488, + 18357504, + 18357520, + 18357536, + 18357552, + 18357568, + 18357584, + 18358912 ], "bases": [ { @@ -45342,23 +45342,23 @@ }, { "type_name": "CCSPlayerController_InGameMoneyServices", - "vtable_address": 64000696, - "methods": [ - 18355984, - 18355344, - 20081360, - 18360880, - 18361584, - 18355152, - 18355168, - 18355184, - 18355200, - 18355216, - 18355232, - 18355248, - 18355264, - 18355280, - 18356608 + "vtable_address": 64004600, + "methods": [ + 18358288, + 18357648, + 20084176, + 18363184, + 18363888, + 18357456, + 18357472, + 18357488, + 18357504, + 18357520, + 18357536, + 18357552, + 18357568, + 18357584, + 18358912 ], "bases": [ { @@ -45380,23 +45380,23 @@ }, { "type_name": "CCSPlayerController_InventoryServices", - "vtable_address": 64000888, - "methods": [ - 18356016, - 18355360, - 20081360, - 18503536, - 18504032, - 18355152, - 18355168, - 18355392, - 18355200, - 18355216, - 18355232, - 18355248, - 18355264, - 18355280, - 18356608 + "vtable_address": 64004792, + "methods": [ + 18358320, + 18357664, + 20084176, + 18505840, + 18506336, + 18357456, + 18357472, + 18357696, + 18357504, + 18357520, + 18357536, + 18357552, + 18357568, + 18357584, + 18358912 ], "bases": [ { @@ -45418,33 +45418,33 @@ }, { "type_name": "CCSPlayerInventory", - "vtable_address": 63974192, - "methods": [ - 17854592, - 17854912, - 17854768, - 27672160, - 27280544, - 17792672, - 17792688, - 17794896, - 17794800, - 17796976, - 17791136, + "vtable_address": 63978096, + "methods": [ + 17856896, + 17857216, + 17857072, + 27675424, + 27283712, + 17794976, + 17794992, + 17797200, + 17797104, + 17799280, + 17793440, + 17795776, + 17793504, + 17793760, + 27486496, + 17801920, + 27680512, + 17845104, + 27283744, + 17794080, + 17793456, + 17857440, + 17857712, 17793472, - 17791200, - 17791456, - 27483296, - 17799616, - 27677248, - 17842800, - 27280576, - 17791776, - 17791152, - 17855136, - 17855408, - 17791168, - 27293280 + 27296448 ], "bases": [ { @@ -45477,34 +45477,34 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices", - "vtable_address": 63978872, - "methods": [ - 17866080, - 17865584, - 17865600, - 17909392, - 17909744, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17866208 + "vtable_address": 63982776, + "methods": [ + 17868384, + 17867888, + 17867904, + 17911696, + 17912048, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17868512 ], "bases": [ { @@ -45526,12 +45526,12 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisMatch", - "vtable_address": 63978776, + "vtable_address": 63982680, "methods": [ - 17866064, - 17868032, - 17865552, - 17867376 + 17868368, + 17870336, + 17867856, + 17869680 ], "bases": [ { @@ -45553,12 +45553,12 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisRound", - "vtable_address": 63978824, + "vtable_address": 63982728, "methods": [ - 17866064, - 17868096, - 17865552, - 17867392 + 17868368, + 17870400, + 17867856, + 17869696 ], "bases": [ { @@ -45580,34 +45580,34 @@ }, { "type_name": "CCSPlayer_BulletServices", - "vtable_address": 63981616, - "methods": [ - 17952752, - 17951344, - 20081424, - 17968208, - 17968624, - 17864768, - 17951632, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17952864 + "vtable_address": 63985520, + "methods": [ + 17955056, + 17953648, + 20084240, + 17970512, + 17970928, + 17867072, + 17953936, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17955168 ], "bases": [ { @@ -45629,7 +45629,7 @@ }, { "type_name": "CCSPlayer_BulletServices", - "vtable_address": 63989032, + "vtable_address": 63992936, "methods": [], "bases": [], "model": { @@ -45640,34 +45640,34 @@ }, { "type_name": "CCSPlayer_BuyServices", - "vtable_address": 63981896, - "methods": [ - 17952784, - 17951360, - 20081424, - 17964944, - 17965296, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17952864 + "vtable_address": 63985800, + "methods": [ + 17955088, + 17953664, + 20084240, + 17967248, + 17967600, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17955168 ], "bases": [ { @@ -45689,51 +45689,51 @@ }, { "type_name": "CCSPlayer_CameraServices", - "vtable_address": 63982120, - "methods": [ - 17952720, - 17951424, - 17951376, - 17968672, - 17969696, - 17961856, - 17950768, - 17864800, - 17864816, - 17864832, - 19968672, - 19876592, - 17865152, - 19876592, - 17864912, - 17864928, - 17864944, - 17864960, - 19887792, - 19963824, - 19901408, - 19970288, - 19968688, - 19991616, - 17865072, - 18101392, - 17875008, - 17865184, - 19897792, - 17950784, - 17983344, - 17898352, - 19913152, - 17882560, - 17967200, - 19876416, - 17874832, - 17865168, - 17865232, - 19876368, - 19876400, - 17865200, - 17966416 + "vtable_address": 63986024, + "methods": [ + 17955024, + 17953728, + 17953680, + 17970976, + 17972000, + 17964160, + 17953072, + 17867104, + 17867120, + 17867136, + 19971488, + 19879408, + 17867456, + 19879408, + 17867216, + 17867232, + 17867248, + 17867264, + 19890608, + 19966640, + 19904224, + 19973104, + 19971504, + 19994432, + 17867376, + 18103696, + 17877312, + 17867488, + 19900608, + 17953088, + 17985648, + 17900656, + 19915968, + 17884864, + 17969504, + 19879232, + 17877136, + 17867472, + 17867536, + 19879184, + 19879216, + 17867504, + 17968720 ], "bases": [ { @@ -45777,34 +45777,34 @@ }, { "type_name": "CCSPlayer_DamageReactServices", - "vtable_address": 63985696, - "methods": [ - 17952816, - 17951648, - 20081424, - 17962640, - 17962800, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17952864 + "vtable_address": 63989600, + "methods": [ + 17955120, + 17953952, + 20084240, + 17964944, + 17965104, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17955168 ], "bases": [ { @@ -45826,34 +45826,34 @@ }, { "type_name": "CCSPlayer_GlowServices", - "vtable_address": 64267952, - "methods": [ - 22441616, - 22438704, - 20081424, - 22458768, - 22459088, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 22443600 + "vtable_address": 64271856, + "methods": [ + 22444432, + 22441520, + 20084240, + 22461584, + 22461904, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 22446416 ], "bases": [ { @@ -45875,34 +45875,34 @@ }, { "type_name": "CCSPlayer_HostageServices", - "vtable_address": 63985920, - "methods": [ - 17952832, - 17951664, - 20081424, - 17962720, - 17962912, - 17864768, - 17966336, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 17952864 + "vtable_address": 63989824, + "methods": [ + 17955136, + 17953968, + 20084240, + 17965024, + 17965216, + 17867072, + 17968640, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 17955168 ], "bases": [ { @@ -45924,34 +45924,34 @@ }, { "type_name": "CCSPlayer_ItemServices", - "vtable_address": 63986144, - "methods": [ - 17952848, - 17951728, - 17951680, - 17954288, - 17954304, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 18119984 + "vtable_address": 63990048, + "methods": [ + 17955152, + 17954032, + 17953984, + 17956592, + 17956608, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 18122288 ], "bases": [ { @@ -45984,77 +45984,77 @@ }, { "type_name": "CCSPlayer_ItemServices", - "vtable_address": 63986608, + "vtable_address": 63990512, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 17960464 + "offset_to_top": 17962768 } } }, { "type_name": "CCSPlayer_MovementServices", - "vtable_address": 63992536, - "methods": [ - 18121504, - 18120096, - 18120080, - 18250912, - 18251040, - 19876592, - 18349728, - 19879840, - 17864816, - 19981248, - 19981344, - 19982352, - 18120016, - 19982864, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 19985344, - 17865056, - 17865072, - 18353504, - 18349904, - 18128048, - 18349888, - 18347712, - 17865328, - 18353296, - 18120688, - 18349920, - 18350464, - 18350896, - 18128464, - 18352128, - 18130240, - 18120880, - 19880176, - 18352784, - 19982560, - 18125168, - 19876720, - 19908352, - 18134176, - 18128512, - 19982048, - 18120032, - 18353424, - 18352800, - 19986064, - 19876736, - 18121136, - 18120944, - 18130752, - 18120048 + "vtable_address": 63996440, + "methods": [ + 18123808, + 18122400, + 18122384, + 18253216, + 18253344, + 19879408, + 18352032, + 19882656, + 17867120, + 19984064, + 19984160, + 19985168, + 18122320, + 19985680, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 19988160, + 17867360, + 17867376, + 18355808, + 18352208, + 18130352, + 18352192, + 18350016, + 17867632, + 18355600, + 18122992, + 18352224, + 18352768, + 18353200, + 18130768, + 18354432, + 18132544, + 18123184, + 19882992, + 18355088, + 19985376, + 18127472, + 19879536, + 19911168, + 18136480, + 18130816, + 19984864, + 18122336, + 18355728, + 18355104, + 19988880, + 19879552, + 18123440, + 18123248, + 18133056, + 18122352 ], "bases": [ { @@ -46098,7 +46098,7 @@ }, { "type_name": "CCSPlayer_MovementServices", - "vtable_address": 63998088, + "vtable_address": 64001992, "methods": [], "bases": [], "model": { @@ -46109,34 +46109,34 @@ }, { "type_name": "CCSPlayer_PingServices", - "vtable_address": 63994784, - "methods": [ - 18121552, - 18120208, - 20081424, - 18126784, - 18126672, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 18120864 + "vtable_address": 63998688, + "methods": [ + 18123856, + 18122512, + 20084240, + 18129088, + 18128976, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 18123168 ], "bases": [ { @@ -46158,36 +46158,36 @@ }, { "type_name": "CCSPlayer_UseServices", - "vtable_address": 63996776, - "methods": [ - 18121584, - 18120240, - 20081152, - 18122480, - 18122496, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 18221904, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 18354944, - 18354640, - 17438976 + "vtable_address": 64000680, + "methods": [ + 18123888, + 18122544, + 20083968, + 18124784, + 18124800, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 18224208, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 18357248, + 18356944, + 17441280 ], "bases": [ { @@ -46220,35 +46220,35 @@ }, { "type_name": "CCSPlayer_WaterServices", - "vtable_address": 63997016, + "vtable_address": 64000920, "methods": [ - 18121600, - 18120272, - 18120256, - 18122560, + 18123904, 18122576, - 17864768, - 17864784, - 17864800, - 17864816, - 18121392, - 18120176, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 18354976, - 18122768 + 18122560, + 18124864, + 18124880, + 17867072, + 17867088, + 17867104, + 17867120, + 18123696, + 18122480, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 18357280, + 18125072 ], "bases": [ { @@ -46281,7 +46281,7 @@ }, { "type_name": "CCSPlayer_WaterServices", - "vtable_address": 63997288, + "vtable_address": 64001192, "methods": [], "bases": [], "model": { @@ -46292,50 +46292,50 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 63999904, - "methods": [ - 18355920, - 18355136, - 18355120, - 18502672, - 18503376, - 18394800, - 18356064, - 20081680, - 17864816, - 20081664, - 18392400, - 18356128, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 18503504, - 18355040, - 18362960, - 20081312, - 18356208, - 18360960, - 18382784, - 18380544, - 18355056, - 18355072, - 18503424, - 18355088, - 18355104, - 18359664, - 20083024, - 18368192, - 18394560 + "vtable_address": 64003808, + "methods": [ + 18358224, + 18357440, + 18357424, + 18504976, + 18505680, + 18397104, + 18358368, + 20084496, + 17867120, + 20084480, + 18394704, + 18358432, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 18505808, + 18357344, + 18365264, + 20084128, + 18358512, + 18363264, + 18385088, + 18382848, + 18357360, + 18357376, + 18505728, + 18357392, + 18357408, + 18361968, + 20085840, + 18370496, + 18396864 ], "bases": [ { @@ -46388,9 +46388,9 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 64000256, + "vtable_address": 64004160, "methods": [ - 18366064 + 18368368 ], "bases": [ { @@ -46443,10 +46443,10 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 64000280, + "vtable_address": 64004184, "methods": [ 12446976, - 18394320 + 18396624 ], "bases": [ { @@ -46499,7 +46499,7 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 64003432, + "vtable_address": 64007336, "methods": [], "bases": [], "model": { @@ -46510,21 +46510,21 @@ }, { "type_name": "CCSPortraitWorldSystem", - "vtable_address": 64437040, + "vtable_address": 64440944, "methods": [ 12204192, 12204208, 12204224, - 24270320, - 24270448, + 24273072, + 24273200, 12204272, 12204288, 12204304, - 24377888, + 24380608, 12204336, 12204352, 12204368, - 24370752, + 24373472, 12204400, 12204416, 12204432, @@ -46538,8 +46538,8 @@ 12204560, 12204576, 12204592, - 24278688, - 24278832, + 24281440, + 24281584, 12204640, 12204656, 12204672, @@ -46557,7 +46557,7 @@ 12204864, 12204880, 12204896, - 24270576, + 24273328, 12204928, 12204944, 12204960, @@ -46568,12 +46568,12 @@ 12205040, 12205056, 12205072, - 24268000, + 24270752, 12205104, - 24267984, - 24271840, - 24271872, - 24267968 + 24270736, + 24274592, + 24274624, + 24270720 ], "bases": [ { @@ -46606,23 +46606,23 @@ }, { "type_name": "CCSPredictionEvent_AddAimPunch", - "vtable_address": 63530496, + "vtable_address": 63534400, "methods": [ 15634608, 15748464, - 29643894, + 29647734, 15156112, 15974784, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15979744, 14852112, 15278928, 12011504, 14935616, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834080, 14797328 @@ -46658,23 +46658,23 @@ }, { "type_name": "CCSPredictionEvent_DamageTag", - "vtable_address": 63530336, + "vtable_address": 63534240, "methods": [ 15634480, 15690832, - 29643894, + 29647734, 15155952, 15793104, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810384, 14852128, 15278512, 12011504, 14883376, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834048, 14797312 @@ -46710,13 +46710,13 @@ }, { "type_name": "CCSReplayObserverHandler", - "vtable_address": 63983088, + "vtable_address": 63986992, "methods": [ 12204192, 12204208, 12204224, 12204240, - 17967632, + 17969936, 12204272, 12204288, 12204304, @@ -46768,13 +46768,13 @@ 12205040, 12205056, 12205072, - 17951584, + 17953888, 12205104, - 17951568, - 17954400, - 17954416, - 17951552, - 17965968 + 17953872, + 17956704, + 17956720, + 17953856, + 17968272 ], "bases": [ { @@ -46807,11 +46807,11 @@ }, { "type_name": "CCSSteamVideo", - "vtable_address": 64358680, + "vtable_address": 64362584, "methods": [ - 23418416, + 23421168, 12204208, - 23284960, + 23287712, 12204240, 12204256, 12204272, @@ -46836,7 +46836,7 @@ 12204576, 12204592, 12204608, - 23328496, + 23331248, 12204640, 12204656, 12204672, @@ -46865,14 +46865,14 @@ 12205040, 12205056, 12205072, - 23275328, + 23278080, 12205104, - 23275312, - 23287616, - 23294240, - 23275296, - 23407104, - 23283072 + 23278064, + 23290368, + 23296992, + 23278048, + 23409856, + 23285824 ], "bases": [ { @@ -46936,11 +46936,11 @@ }, { "type_name": "CCSSteamVideo", - "vtable_address": 64359208, + "vtable_address": 64363112, "methods": [ - 23288208, - 23294848, - 23407232 + 23290960, + 23297600, + 23409984 ], "bases": [ { @@ -47004,12 +47004,12 @@ }, { "type_name": "CCSSteamVideo", - "vtable_address": 64359248, + "vtable_address": 64363152, "methods": [ - 22916880, - 22916896, - 22916912, - 23297840 + 22919696, + 22919712, + 22919728, + 23300592 ], "bases": [ { @@ -47073,10 +47073,10 @@ }, { "type_name": "CCSTraceFilterSimple", - "vtable_address": 63990320, + "vtable_address": 63994224, "methods": [ - 18120128, - 18120624, + 18122432, + 18122928, 12447216 ], "bases": [ @@ -47121,23 +47121,23 @@ }, { "type_name": "CCSUsrMsgPreMatchSayText", - "vtable_address": 63572736, + "vtable_address": 63576640, "methods": [ 15667952, 15718960, - 29643894, + 29647734, 15206416, 15821008, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14864240, 14849968, 15408128, 12011504, 14967232, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842528, 14805888 @@ -47173,23 +47173,23 @@ }, { "type_name": "CCSUsrMsg_AchievementEvent", - "vtable_address": 63564576, + "vtable_address": 63568480, "methods": [ 15661936, 15701840, - 29643894, + 29647734, 15198960, 15799776, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814464, 14850208, 15385232, 12011504, 14981312, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840896, 14805072 @@ -47225,23 +47225,23 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney", - "vtable_address": 63563776, + "vtable_address": 63567680, "methods": [ 15661296, 15701200, - 29643894, + 29647734, 12103072, 15799488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814208, 12084288, 15382880, 12011504, 14919648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840736, 14804992 @@ -47277,23 +47277,23 @@ }, { "type_name": "CCSUsrMsg_AmmoDenied", - "vtable_address": 63567936, + "vtable_address": 63571840, "methods": [ 15664432, 15703120, - 29643894, + 29647734, 15201904, 15800480, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815520, 14850112, 15395328, 12011504, 14919872, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841568, 14805408 @@ -47329,23 +47329,23 @@ }, { "type_name": "CCSUsrMsg_BarTime", - "vtable_address": 63567776, + "vtable_address": 63571680, "methods": [ 15664288, 15718480, - 29643894, + 29647734, 15201760, 15820096, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14850128, 15394928, 12011504, 14912000, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841536, 14805392 @@ -47381,23 +47381,23 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed", - "vtable_address": 63566016, + "vtable_address": 63569920, "methods": [ 15662864, 15702608, - 29643894, + 29647734, 12097472, 15800160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814976, 12084096, 15389344, 12011504, 14946656, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841184, 14805216 @@ -47433,10 +47433,10 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed_t", - "vtable_address": 64474720, + "vtable_address": 64478624, "methods": [ - 24891552, - 24891616, + 24894560, + 24894624, 12080864, 12080880, 12080896, @@ -47516,23 +47516,23 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed_t", - "vtable_address": 64474784, + "vtable_address": 64478688, "methods": [ - 24891584, - 24891680, - 29643894, + 24894592, + 24894688, + 29647734, 12097472, 15800160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814976, 12084096, 15389344, 12011504, 14946656, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841184, 14805216 @@ -47611,23 +47611,23 @@ }, { "type_name": "CCSUsrMsg_ClientInfo", - "vtable_address": 63572416, + "vtable_address": 63576320, "methods": [ 15667824, 15705424, - 29643894, + 29647734, 15206128, 15801536, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817136, 14849984, 15407040, 12011504, 14921440, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842464, 14805856 @@ -47663,23 +47663,23 @@ }, { "type_name": "CCSUsrMsg_CloseCaption", - "vtable_address": 63560896, + "vtable_address": 63564800, "methods": [ 15658656, 15717040, - 29643894, + 29647734, 15195552, 15817520, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862544, 14850304, 15374384, 12011504, 15004896, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840160, 14804704 @@ -47715,23 +47715,23 @@ }, { "type_name": "CCSUsrMsg_CloseCaptionDirect", - "vtable_address": 63561056, + "vtable_address": 63564960, "methods": [ 15658800, 15700432, - 29643894, + 29647734, 15195696, 15799024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827504, 14850288, 15375008, 12011504, 14963968, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840192, 14804720 @@ -47767,23 +47767,23 @@ }, { "type_name": "CCSUsrMsg_CounterStrafe", - "vtable_address": 63572896, + "vtable_address": 63576800, "methods": [ 15668096, 15705552, - 29643894, + 29647734, 15206544, 15801584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817184, 14849952, 15408672, 12011504, 14947360, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842560, 14805904 @@ -47819,23 +47819,23 @@ }, { "type_name": "CCSUsrMsg_CurrentRoundOdds", - "vtable_address": 63571136, + "vtable_address": 63575040, "methods": [ 15666816, 15704656, - 29643894, + 29647734, 12088080, 15801248, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816896, 12083792, 15403744, 12011504, 14920320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842208, 14805728 @@ -47871,23 +47871,23 @@ }, { "type_name": "CCSUsrMsg_CurrentTimescale", - "vtable_address": 63564416, + "vtable_address": 63568320, "methods": [ 15661808, 15701712, - 29643894, + 29647734, 15198816, 15799728, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810704, 14850224, 15384912, 12011504, 14883936, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840864, 14805056 @@ -47923,23 +47923,23 @@ }, { "type_name": "CCSUsrMsg_Damage", - "vtable_address": 63561856, + "vtable_address": 63565760, "methods": [ 15659504, 15748816, - 29643894, + 29647734, 12103552, 15974256, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15977936, 12084304, 15377104, 12011504, 14959456, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840352, 14804800 @@ -47975,23 +47975,23 @@ }, { "type_name": "CCSUsrMsg_DamagePrediction", - "vtable_address": 63573056, + "vtable_address": 63576960, "methods": [ 15668224, 15747168, - 29643894, + 29647734, 15206672, 15974896, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15979888, 14849936, 15409248, 12011504, 15069888, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842592, 14805920 @@ -48027,10 +48027,10 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 64456856, + "vtable_address": 64460760, "methods": [ - 24703408, - 24703472, + 24706416, + 24706480, 12082544, 12082560, 12082576, @@ -48110,23 +48110,23 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 64456920, + "vtable_address": 64460824, "methods": [ - 24703440, - 24703536, - 29643894, + 24706448, + 24706544, + 29647734, 12103552, 15974256, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15977936, 12084304, 15377104, 12011504, 14959456, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840352, 14804800 @@ -48205,23 +48205,23 @@ }, { "type_name": "CCSUsrMsg_DeepStats", - "vtable_address": 63571296, + "vtable_address": 63575200, "methods": [ 15751696, 15754336, - 29643894, + 29647734, 12087600, 15860208, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14874768, 12083776, 15404224, 12011504, 14854512, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842240, 14805744 @@ -48257,10 +48257,10 @@ }, { "type_name": "CCSUsrMsg_DeepStats_t", - "vtable_address": 64333640, + "vtable_address": 64337544, "methods": [ - 22924752, - 22924816, + 22927568, + 22927632, 12083104, 12083120, 12083136, @@ -48340,23 +48340,23 @@ }, { "type_name": "CCSUsrMsg_DeepStats_t", - "vtable_address": 64333704, + "vtable_address": 64337608, "methods": [ - 22924784, - 22924880, - 29643894, + 22927600, + 22927696, + 29647734, 12087600, 15860208, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14874768, 12083776, 15404224, 12011504, 14854512, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842240, 14805744 @@ -48435,23 +48435,23 @@ }, { "type_name": "CCSUsrMsg_DesiredTimescale", - "vtable_address": 63564256, + "vtable_address": 63568160, "methods": [ 15661680, 15701584, - 29643894, + 29647734, 15198672, 15799664, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814368, 14850240, 15384320, 12011504, 14956032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840832, 14805040 @@ -48487,23 +48487,23 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby", - "vtable_address": 63572256, + "vtable_address": 63576160, "methods": [ 15667696, 15705296, - 29643894, + 29647734, 12092784, 15801488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817088, 12083952, 15406560, 12011504, 14921216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842432, 14805840 @@ -48539,10 +48539,10 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby2_t", - "vtable_address": 64332296, + "vtable_address": 64336200, "methods": [ - 22926288, - 22926352, + 22929104, + 22929168, 12079520, 12079536, 12079552, @@ -48622,23 +48622,23 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby2_t", - "vtable_address": 64332360, + "vtable_address": 64336264, "methods": [ - 22926320, - 22926416, - 29643894, + 22929136, + 22929232, + 29647734, 12092784, 15801488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817088, 12083952, 15406560, 12011504, 14921216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842432, 14805840 @@ -48717,10 +48717,10 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby_t", - "vtable_address": 64332072, + "vtable_address": 64335976, "methods": [ - 22926480, - 22926544, + 22929296, + 22929360, 12079632, 12079648, 12079664, @@ -48800,23 +48800,23 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby_t", - "vtable_address": 64332136, + "vtable_address": 64336040, "methods": [ - 22926512, - 22926608, - 29643894, + 22929328, + 22929424, + 29647734, 12092784, 15801488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817088, 12083952, 15406560, 12011504, 14921216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842432, 14805840 @@ -48895,23 +48895,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData", - "vtable_address": 63569856, + "vtable_address": 63573760, "methods": [ 15666016, 15742528, - 29643894, + 29647734, 12089952, 15862160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14864096, 12083856, 15531344, 12011504, 14931392, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841952, 14805600 @@ -48947,23 +48947,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_Accolade", - "vtable_address": 63569536, + "vtable_address": 63573440, "methods": [ 15665888, 15703888, - 29643894, + 29647734, 15203424, 15800848, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816048, 14848128, 15400048, 12011504, 14958336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841888, 14805568 @@ -48999,23 +48999,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData", - "vtable_address": 63569696, + "vtable_address": 63573600, "methods": [ 15751904, 15753056, - 29643894, + 29647734, 15203648, 15861888, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863712, 14848144, 15528352, 12011504, 15136608, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841920, 14805584 @@ -49051,10 +49051,10 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 64333416, + "vtable_address": 64337320, "methods": [ - 22924944, - 22925008, + 22927760, + 22927824, 12078848, 12078864, 12078880, @@ -49134,23 +49134,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 64333480, + "vtable_address": 64337384, "methods": [ - 22924976, - 22925072, - 29643894, + 22927792, + 22927888, + 29647734, 12089952, 15862160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14864096, 12083856, 15531344, 12011504, 14931392, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841952, 14805600 @@ -49229,23 +49229,23 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight", - "vtable_address": 63563616, + "vtable_address": 63567520, "methods": [ 15661168, 15701072, - 29643894, + 29647734, 12091824, 15799440, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814144, 12083920, 15382304, 12011504, 14930592, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840704, 14804976 @@ -49281,23 +49281,23 @@ }, { "type_name": "CCSUsrMsg_Fade", - "vtable_address": 63560576, + "vtable_address": 63564480, "methods": [ 15658368, 15748640, - 29643894, + 29647734, 15195280, 15982368, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15982880, 14850336, 15373232, 12011504, 14998336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840096, 14804672 @@ -49333,23 +49333,23 @@ }, { "type_name": "CCSUsrMsg_GameTitle", - "vtable_address": 63571776, + "vtable_address": 63575680, "methods": [ 15667312, 15704912, - 29643894, + 29647734, 15205568, 15801344, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816944, 14850032, 15405120, 12011504, 14920544, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842336, 14805792 @@ -49385,23 +49385,23 @@ }, { "type_name": "CCSUsrMsg_Geiger", - "vtable_address": 63559776, + "vtable_address": 63563680, "methods": [ 15657616, 15699920, - 29643894, + 29647734, 15194528, 15798800, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813312, 14850416, 15370352, 12011504, 14919200, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839936, 14804592 @@ -49437,23 +49437,23 @@ }, { "type_name": "CCSUsrMsg_HintText", - "vtable_address": 63562176, + "vtable_address": 63566080, "methods": [ 15659824, 15717520, - 29643894, + 29647734, 12087120, 15818672, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 12083760, 15378336, 12011504, 14911648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840416, 14804832 @@ -49489,10 +49489,10 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 64457080, + "vtable_address": 64460984, "methods": [ - 24703216, - 24703280, + 24706224, + 24706288, 12082992, 12083008, 12083024, @@ -49572,23 +49572,23 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 64457144, + "vtable_address": 64461048, "methods": [ - 24703248, - 24703344, - 29643894, + 24706256, + 24706352, + 29647734, 12087120, 15818672, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 12083760, 15378336, 12011504, 14911648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840416, 14804832 @@ -49667,23 +49667,23 @@ }, { "type_name": "CCSUsrMsg_HudMsg", - "vtable_address": 63560256, + "vtable_address": 63564160, "methods": [ 15658016, 15748992, - 29643894, + 29647734, 15194976, 15982144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15982480, 14850368, 15371712, 12011504, 15070912, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840032, 14804640 @@ -49719,23 +49719,23 @@ }, { "type_name": "CCSUsrMsg_HudText", - "vtable_address": 63560096, + "vtable_address": 63564000, "methods": [ 15657872, 15716880, - 29643894, + 29647734, 15194832, 15817264, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14850384, 15371312, 12011504, 14911296, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840000, 14804624 @@ -49771,23 +49771,23 @@ }, { "type_name": "CCSUsrMsg_ItemDrop", - "vtable_address": 63568416, + "vtable_address": 63572320, "methods": [ 15664848, 15703248, - 29643894, + 29647734, 15202384, 15800528, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815568, 14850064, 15396608, 12011504, 14930848, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841664, 14805456 @@ -49823,23 +49823,23 @@ }, { "type_name": "CCSUsrMsg_ItemPickup", - "vtable_address": 63567456, + "vtable_address": 63571360, "methods": [ 15664000, 15718160, - 29643894, + 29647734, 15201456, 15819552, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14850160, 15393984, 12011504, 14911824, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841472, 14805360 @@ -49875,23 +49875,23 @@ }, { "type_name": "CCSUsrMsg_KeyHintText", - "vtable_address": 63562336, + "vtable_address": 63566240, "methods": [ 15659968, 15717680, - 29643894, + 29647734, 12086656, 15799152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 12083744, 15378736, 12011504, 14879920, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14840448, 14804848 @@ -49927,10 +49927,10 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 64457304, + "vtable_address": 64461208, "methods": [ - 24703024, - 24703088, + 24706032, + 24706096, 12082880, 12082896, 12082912, @@ -50010,23 +50010,23 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 64457368, + "vtable_address": 64461272, "methods": [ - 24703056, - 24703152, - 29643894, + 24706064, + 24706160, + 29647734, 12086656, 15799152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 12083744, 15378736, 12011504, 14879920, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14840448, 14804848 @@ -50105,23 +50105,23 @@ }, { "type_name": "CCSUsrMsg_KillCam", - "vtable_address": 63564096, + "vtable_address": 63568000, "methods": [ 15661552, 15701456, - 29643894, + 29647734, 12101200, 15799600, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814256, 12084224, 15383808, 12011504, 14980800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840800, 14805024 @@ -50157,10 +50157,10 @@ }, { "type_name": "CCSUsrMsg_KillCam_t", - "vtable_address": 64330280, + "vtable_address": 64334184, "methods": [ - 22923792, - 22923856, + 22926608, + 22926672, 12081760, 12081776, 12081792, @@ -50240,23 +50240,23 @@ }, { "type_name": "CCSUsrMsg_KillCam_t", - "vtable_address": 64330344, + "vtable_address": 64334248, "methods": [ - 22923824, - 22923920, - 29643894, + 22926640, + 22926736, + 29647734, 12101200, 15799600, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814256, 12084224, 15383808, 12011504, 14980800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840800, 14805024 @@ -50335,23 +50335,23 @@ }, { "type_name": "CCSUsrMsg_MarkAchievement", - "vtable_address": 63568096, + "vtable_address": 63572000, "methods": [ 15664560, 15718640, - 29643894, + 29647734, 15202064, 15820352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14850096, 15395808, 12011504, 14912176, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841600, 14805424 @@ -50387,23 +50387,23 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions", - "vtable_address": 63564736, + "vtable_address": 63568640, "methods": [ 15662064, 15701968, - 29643894, + 29647734, 12090416, 15799840, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814576, 12083872, 15385744, 12011504, 14996032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840928, 14805088 @@ -50439,10 +50439,10 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 64333192, + "vtable_address": 64337096, "methods": [ - 22923408, - 22923472, + 22926224, + 22926288, 12078960, 12078976, 12078992, @@ -50522,23 +50522,23 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 64333256, + "vtable_address": 64337160, "methods": [ - 22923440, - 22923536, - 29643894, + 22926256, + 22926352, + 29647734, 12090416, 15799840, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814576, 12083872, 15385744, 12011504, 14996032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840928, 14805088 @@ -50617,23 +50617,23 @@ }, { "type_name": "CCSUsrMsg_MatchStatsUpdate", - "vtable_address": 63568256, + "vtable_address": 63572160, "methods": [ 15664704, 15718800, - 29643894, + 29647734, 15202224, 15820608, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14850080, 15396208, 12011504, 14912352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841632, 14805440 @@ -50669,23 +50669,23 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature", - "vtable_address": 63565536, + "vtable_address": 63569440, "methods": [ 15758880, 15760512, - 29643894, + 29647734, 12092304, 15814400, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14869936, 12083936, 15387840, 12011504, 14854320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841088, 14805168 @@ -50721,10 +50721,10 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature_t", - "vtable_address": 64332520, + "vtable_address": 64336424, "methods": [ - 22925136, - 22925200, + 22927952, + 22928016, 12079408, 12079424, 12079440, @@ -50804,23 +50804,23 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature_t", - "vtable_address": 64332584, + "vtable_address": 64336488, "methods": [ - 22925168, - 22925264, - 29643894, + 22927984, + 22928080, + 29647734, 12092304, 15814400, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14869936, 12083936, 15387840, 12011504, 14854320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841088, 14805168 @@ -50899,23 +50899,23 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate", - "vtable_address": 63565056, + "vtable_address": 63568960, "methods": [ 15662320, 15742176, - 29643894, + 29647734, 12099808, 15834848, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14888448, 12084176, 15529312, 12011504, 15002176, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840992, 14805120 @@ -50951,23 +50951,23 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_Stat", - "vtable_address": 63564896, + "vtable_address": 63568800, "methods": [ 15662192, 15702096, - 29643894, + 29647734, 15199232, 15799904, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814704, 14848032, 15386288, 12011504, 14945952, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840960, 14805104 @@ -51003,10 +51003,10 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_t", - "vtable_address": 64330728, + "vtable_address": 64334632, "methods": [ - 22923600, - 22923664, + 22926416, + 22926480, 12081424, 12081440, 12081456, @@ -51086,23 +51086,23 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_t", - "vtable_address": 64330792, + "vtable_address": 64334696, "methods": [ - 22923632, - 22923728, - 29643894, + 22926448, + 22926544, + 29647734, 12099808, 15834848, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14888448, 12084176, 15529312, 12011504, 15002176, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840992, 14805120 @@ -51181,23 +51181,23 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport", - "vtable_address": 63570976, + "vtable_address": 63574880, "methods": [ 15666688, 15704528, - 29643894, + 29647734, 12085728, 15801184, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816672, 12083712, 15403008, 12011504, 15099872, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842176, 14805712 @@ -51233,10 +51233,10 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 64476064, + "vtable_address": 64479968, "methods": [ - 24891744, - 24891808, + 24894752, + 24894816, 12082432, 12082448, 12082464, @@ -51316,23 +51316,23 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 64476128, + "vtable_address": 64480032, "methods": [ - 24891776, - 24891872, - 29643894, + 24894784, + 24894880, + 29647734, 12085728, 15801184, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816672, 12083712, 15403008, 12011504, 15099872, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842176, 14805712 @@ -51411,23 +51411,23 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate", - "vtable_address": 63562656, + "vtable_address": 63566560, "methods": [ 15660240, 15741824, - 29643894, + 29647734, 12104016, 15836144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14909392, 12084320, 15527216, 12011504, 14886432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840512, 14804880 @@ -51463,23 +51463,23 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate", - "vtable_address": 63562496, + "vtable_address": 63566400, "methods": [ 15660112, 15700688, - 29643894, + 29647734, 15197072, 15799216, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813680, 14848016, 15379136, 12011504, 15099040, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840480, 14804864 @@ -51515,10 +51515,10 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_t", - "vtable_address": 64405608, + "vtable_address": 64409512, "methods": [ - 23902592, - 23902656, + 23905344, + 23905408, 12082656, 12082672, 12082688, @@ -51598,23 +51598,23 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_t", - "vtable_address": 64405672, + "vtable_address": 64409576, "methods": [ - 23902624, - 23902720, - 29643894, + 23905376, + 23905472, + 29647734, 12104016, 15836144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14909392, 12084320, 15527216, 12011504, 14886432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840512, 14804880 @@ -51693,23 +51693,23 @@ }, { "type_name": "CCSUsrMsg_QuestProgress", - "vtable_address": 63565216, + "vtable_address": 63569120, "methods": [ 15662480, 15702224, - 29643894, + 29647734, 12100736, 15799968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827600, 12084208, 15386864, 12011504, 14999424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841024, 14805136 @@ -51745,10 +51745,10 @@ }, { "type_name": "CCSUsrMsg_QuestProgress_t", - "vtable_address": 64330504, + "vtable_address": 64334408, "methods": [ - 22925328, - 22925392, + 22928144, + 22928208, 12081648, 12081664, 12081680, @@ -51828,23 +51828,23 @@ }, { "type_name": "CCSUsrMsg_QuestProgress_t", - "vtable_address": 64330568, + "vtable_address": 64334472, "methods": [ - 22925360, - 22925456, - 29643894, + 22928176, + 22928272, + 29647734, 12100736, 15799968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827600, 12084208, 15386864, 12011504, 14999424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841024, 14805136 @@ -51923,23 +51923,23 @@ }, { "type_name": "CCSUsrMsg_RadioText", - "vtable_address": 63562016, + "vtable_address": 63565920, "methods": [ 15659664, 15728560, - 29643894, + 29647734, 12102608, 15818384, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877600, 12084272, 15377680, 12011504, 15025280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840384, 14804816 @@ -51975,10 +51975,10 @@ }, { "type_name": "CCSUsrMsg_RadioText_t", - "vtable_address": 64605336, + "vtable_address": 64609240, "methods": [ - 28173888, - 28173952, + 28177152, + 28177216, 12082208, 12082224, 12082240, @@ -52058,23 +52058,23 @@ }, { "type_name": "CCSUsrMsg_RadioText_t", - "vtable_address": 64605400, + "vtable_address": 64609304, "methods": [ - 28173920, - 28174016, - 29643894, + 28177184, + 28177280, + 29647734, 12102608, 15818384, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877600, 12084272, 15377680, 12011504, 15025280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840384, 14804816 @@ -52153,23 +52153,23 @@ }, { "type_name": "CCSUsrMsg_RawAudio", - "vtable_address": 63561376, + "vtable_address": 63565280, "methods": [ 15659072, 15717360, - 29643894, + 29647734, 12095136, 15818080, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862688, 12084016, 15375936, 12011504, 15001056, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840256, 14804752 @@ -52205,10 +52205,10 @@ }, { "type_name": "CCSUsrMsg_RawAudio_t", - "vtable_address": 64605560, + "vtable_address": 64609464, "methods": [ - 28174080, - 28174144, + 28177344, + 28177408, 12080192, 12080208, 12080224, @@ -52288,23 +52288,23 @@ }, { "type_name": "CCSUsrMsg_RawAudio_t", - "vtable_address": 64605624, + "vtable_address": 64609528, "methods": [ - 28174112, - 28174208, - 29643894, + 28177376, + 28177472, + 29647734, 12095136, 15818080, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862688, 12084016, 15375936, 12011504, 15001056, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840256, 14804752 @@ -52383,23 +52383,23 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema", - "vtable_address": 63573216, + "vtable_address": 63577120, "methods": [ 15668448, 15719120, - 29643894, + 29647734, 12084800, 15821312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14870960, 12083680, 15410160, 12011504, 14969280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842624, 14805936 @@ -52435,10 +52435,10 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema_t", - "vtable_address": 64535688, + "vtable_address": 64539592, "methods": [ - 26420912, - 26420976, + 26423920, + 26423984, 12080416, 12080432, 12080448, @@ -52518,23 +52518,23 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema_t", - "vtable_address": 64535752, + "vtable_address": 64539656, "methods": [ - 26420944, - 26421040, - 29643894, + 26423952, + 26424048, + 29647734, 12084800, 15821312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14870960, 12083680, 15410160, 12011504, 14969280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842624, 14805936 @@ -52613,23 +52613,23 @@ }, { "type_name": "CCSUsrMsg_ReloadEffect", - "vtable_address": 63563136, + "vtable_address": 63567040, "methods": [ 15660768, 15700816, - 29643894, + 29647734, 15197696, 15799296, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813920, 14850256, 15380592, 12011504, 14995488, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840608, 14804928 @@ -52665,23 +52665,23 @@ }, { "type_name": "CCSUsrMsg_ReportHit", - "vtable_address": 63563936, + "vtable_address": 63567840, "methods": [ 15661424, 15701328, - 29643894, + 29647734, 12100272, 15799536, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810464, 12084192, 15383360, 12011504, 14883616, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840768, 14805008 @@ -52717,23 +52717,23 @@ }, { "type_name": "CCSUsrMsg_RequestState", - "vtable_address": 63571936, + "vtable_address": 63575840, "methods": [ 15667440, 15705040, - 29643894, + 29647734, 15205712, 15801392, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816992, 14850016, 15405600, 12011504, 14920768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842368, 14805808 @@ -52769,23 +52769,23 @@ }, { "type_name": "CCSUsrMsg_ResetHud", - "vtable_address": 63571616, + "vtable_address": 63575520, "methods": [ 15667184, 15704784, - 29643894, + 29647734, 15205424, 15801296, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810352, 14850048, 15404640, 12011504, 14886144, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842304, 14805776 @@ -52821,23 +52821,23 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames", - "vtable_address": 63568576, + "vtable_address": 63572480, "methods": [ 15664976, 15728880, - 29643894, + 29647734, 12097952, 15820864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863536, 12084112, 15397184, 12011504, 15022336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841696, 14805472 @@ -52873,10 +52873,10 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 64519992, + "vtable_address": 64523896, "methods": [ - 25473616, - 25473776, + 25476624, + 25476784, 12080976, 12080992, 12081008, @@ -52956,23 +52956,23 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 64520056, + "vtable_address": 64523960, "methods": [ - 25473648, - 25473840, - 29643894, + 25476656, + 25476848, + 29647734, 12097952, 15820864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863536, 12084112, 15397184, 12011504, 15022336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841696, 14805472 @@ -53051,23 +53051,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData", - "vtable_address": 63570816, + "vtable_address": 63574720, "methods": [ 15750928, 15752672, - 29643894, + 29647734, 12088560, 15863216, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14909232, 12083808, 15532784, 12011504, 14855648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842144, 14805696 @@ -53103,23 +53103,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_InitialConditions", - "vtable_address": 63570656, + "vtable_address": 63574560, "methods": [ 15666560, 15704400, - 29643894, + 29647734, 15204576, 15801120, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816560, 14848208, 15402496, 12011504, 14982848, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842112, 14805680 @@ -53155,23 +53155,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent", - "vtable_address": 63570496, + "vtable_address": 63574400, "methods": [ 15760912, 15762416, - 29643894, + 29647734, 15204432, 15862864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14908624, 14848224, 15531920, 12011504, 15049216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842080, 14805664 @@ -53207,23 +53207,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Damage", - "vtable_address": 63570336, + "vtable_address": 63574240, "methods": [ 15666432, 15704272, - 29643894, + 29647734, 15204256, 15801040, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816352, 14848192, 15401824, 12011504, 15065120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842048, 14805648 @@ -53259,23 +53259,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Objective", - "vtable_address": 63570176, + "vtable_address": 63574080, "methods": [ 15666304, 15704144, - 29643894, + 29647734, 15204112, 15800992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816304, 14848176, 15401344, 12011504, 14920096, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842016, 14805632 @@ -53311,23 +53311,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Victim", - "vtable_address": 63570016, + "vtable_address": 63573920, "methods": [ 15666176, 15704016, - 29643894, + 29647734, 15203968, 15800912, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816144, 14848160, 15400656, 12011504, 15052416, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841984, 14805616 @@ -53363,10 +53363,10 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_t", - "vtable_address": 64475840, + "vtable_address": 64479744, "methods": [ - 24890592, - 24890656, + 24893600, + 24893664, 12083328, 12083344, 12083360, @@ -53446,23 +53446,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_t", - "vtable_address": 64475904, + "vtable_address": 64479808, "methods": [ - 24890624, - 24890720, - 29643894, + 24893632, + 24893728, + 29647734, 12088560, 15863216, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14909232, 12083808, 15532784, 12011504, 14855648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842144, 14805696 @@ -53541,23 +53541,23 @@ }, { "type_name": "CCSUsrMsg_Rumble", - "vtable_address": 63560736, + "vtable_address": 63564640, "methods": [ 15658528, 15700304, - 29643894, + 29647734, 15195424, 15798960, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813488, 14850320, 15373872, 12011504, 14980288, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840128, 14804688 @@ -53593,23 +53593,23 @@ }, { "type_name": "CCSUsrMsg_SSUI", - "vtable_address": 63568736, + "vtable_address": 63572640, "methods": [ 15665136, 15703376, - 29643894, + 29647734, 12089024, 15800592, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810560, 12083824, 15397792, 12011504, 14885904, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841728, 14805488 @@ -53645,23 +53645,23 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData", - "vtable_address": 63565376, + "vtable_address": 63569280, "methods": [ 15765008, 15765424, - 29643894, + 29647734, 12090880, 15839968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14898256, 12083888, 15387424, 12011504, 14854224, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841056, 14805152 @@ -53697,10 +53697,10 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData_t", - "vtable_address": 64332968, + "vtable_address": 64336872, "methods": [ - 22925712, - 22925776, + 22928528, + 22928592, 12079072, 12079088, 12079104, @@ -53780,23 +53780,23 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData_t", - "vtable_address": 64333032, + "vtable_address": 64336936, "methods": [ - 22925744, - 22925840, - 29643894, + 22928560, + 22928656, + 29647734, 12090880, 15839968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14898256, 12083888, 15387424, 12011504, 14854224, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841056, 14805152 @@ -53875,23 +53875,23 @@ }, { "type_name": "CCSUsrMsg_SendAudio", - "vtable_address": 63561216, + "vtable_address": 63565120, "methods": [ 15658928, 15717200, - 29643894, + 29647734, 12102128, 15817824, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 12084256, 15375536, 12011504, 14911472, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840224, 14804736 @@ -53927,23 +53927,23 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient", - "vtable_address": 63566816, + "vtable_address": 63570720, "methods": [ 15663584, 15702864, - 29643894, + 29647734, 12101664, 15800352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815136, 12084240, 15392240, 12011504, 15064096, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841344, 14805296 @@ -53979,10 +53979,10 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 64251192, + "vtable_address": 64255096, "methods": [ - 22445872, - 22445936, + 22448688, + 22448752, 12081984, 12082000, 12082016, @@ -54062,23 +54062,23 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 64251256, + "vtable_address": 64255160, "methods": [ - 22445904, - 22446000, - 29643894, + 22448720, + 22448816, + 29647734, 12101664, 15800352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815136, 12084240, 15392240, 12011504, 15064096, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841344, 14805296 @@ -54157,23 +54157,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops", - "vtable_address": 63562816, + "vtable_address": 63566720, "methods": [ 15660400, 15742000, - 29643894, + 29647734, 12098880, 15854912, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14860992, 12084144, 15527888, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14840544, 14804896 @@ -54209,10 +54209,10 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 64331176, + "vtable_address": 64335080, "methods": [ - 22924560, - 22924624, + 22927376, + 22927440, 12081200, 12081216, 12081232, @@ -54292,23 +54292,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 64331240, + "vtable_address": 64335144, "methods": [ - 22924592, - 22924688, - 29643894, + 22927408, + 22927504, + 29647734, 12098880, 15854912, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14860992, 12084144, 15527888, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14840544, 14804896 @@ -54387,23 +54387,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound", - "vtable_address": 63562976, + "vtable_address": 63566880, "methods": [ 15660560, 15754112, - 29643894, + 29647734, 12098416, 15854704, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861104, 12084128, 15380000, 12011504, 14925728, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840576, 14804912 @@ -54439,10 +54439,10 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound_t", - "vtable_address": 64331400, + "vtable_address": 64335304, "methods": [ - 22924176, - 22924240, + 22926992, + 22927056, 12081088, 12081104, 12081120, @@ -54522,23 +54522,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound_t", - "vtable_address": 64331464, + "vtable_address": 64335368, "methods": [ - 22924208, - 22924304, - 29643894, + 22927024, + 22927120, + 29647734, 12098416, 15854704, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861104, 12084128, 15380000, 12011504, 14925728, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840576, 14804912 @@ -54617,23 +54617,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout", - "vtable_address": 63573536, + "vtable_address": 63577440, "methods": [ 15668800, 15742704, - 29643894, + 29647734, 12084336, 15855024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14895440, 12083664, 15534176, 12011504, 14931680, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842688, 14805968 @@ -54669,23 +54669,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_LoadoutItem", - "vtable_address": 63573376, + "vtable_address": 63577280, "methods": [ 15668592, 15754560, - 29643894, + 29647734, 15206960, 15854800, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861232, 14848256, 15410736, 12011504, 14959872, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842656, 14805952 @@ -54721,10 +54721,10 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 64333864, + "vtable_address": 64337768, "methods": [ - 22923984, - 22924048, + 22926800, + 22926864, 12079856, 12079872, 12079888, @@ -54804,23 +54804,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 64333928, + "vtable_address": 64337832, "methods": [ - 22924016, - 22924112, - 29643894, + 22926832, + 22926928, + 29647734, 12084336, 15855024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14895440, 12083664, 15534176, 12011504, 14931680, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842688, 14805968 @@ -54899,23 +54899,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll", - "vtable_address": 63572576, + "vtable_address": 63576480, "methods": [ 15767488, 15770848, - 29643894, + 29647734, 12099344, 15865312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15040160, 12084160, 15407520, 12011504, 14926016, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842496, 14805872 @@ -54951,10 +54951,10 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 64330952, + "vtable_address": 64334856, "methods": [ - 22925904, - 22925968, + 22928720, + 22928784, 12081312, 12081328, 12081344, @@ -55034,23 +55034,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 64331016, + "vtable_address": 64334920, "methods": [ - 22925936, - 22926032, - 29643894, + 22928752, + 22928848, + 29647734, 12099344, 15865312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15040160, 12084160, 15407520, 12011504, 14926016, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842496, 14805872 @@ -55129,23 +55129,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate", - "vtable_address": 63567136, + "vtable_address": 63571040, "methods": [ 15663840, 15742352, - 29643894, + 29647734, 12094208, 15832816, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14904208, 12083984, 15530016, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14841408, 14805328 @@ -55181,23 +55181,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_RankUpdate", - "vtable_address": 63566976, + "vtable_address": 63570880, "methods": [ 15663712, 15702992, - 29643894, + 29647734, 15201024, 15800416, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815344, 14848048, 15392912, 12011504, 15056800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841376, 14805312 @@ -55233,10 +55233,10 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_t", - "vtable_address": 64331624, + "vtable_address": 64335528, "methods": [ - 22926096, - 22926160, + 22928912, + 22928976, 12079968, 12079984, 12080000, @@ -55316,23 +55316,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_t", - "vtable_address": 64331688, + "vtable_address": 64335592, "methods": [ - 22926128, - 22926224, - 29643894, + 22928944, + 22929040, + 29647734, 12094208, 15832816, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14904208, 12083984, 15530016, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14841408, 14805328 @@ -55411,23 +55411,23 @@ }, { "type_name": "CCSUsrMsg_Shake", - "vtable_address": 63560416, + "vtable_address": 63564320, "methods": [ 15658240, 15700176, - 29643894, + 29647734, 15195136, 15798896, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813408, 14850352, 15372640, 12011504, 14955680, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840064, 14804656 @@ -55463,23 +55463,23 @@ }, { "type_name": "CCSUsrMsg_ShootInfo", - "vtable_address": 63571456, + "vtable_address": 63575360, "methods": [ 15666944, 15746656, - 29643894, + 29647734, 12085264, 15983072, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15983264, 12083696, 15533360, 12011504, 14966880, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842272, 14805760 @@ -55515,23 +55515,23 @@ }, { "type_name": "CCSUsrMsg_ShowMenu", - "vtable_address": 63567616, + "vtable_address": 63571520, "methods": [ 15664144, 15718320, - 29643894, + 29647734, 15201600, 15819808, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863408, 14850144, 15394384, 12011504, 14986912, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841504, 14805376 @@ -55567,23 +55567,23 @@ }, { "type_name": "CCSUsrMsg_StopSpectatorMode", - "vtable_address": 63572096, + "vtable_address": 63576000, "methods": [ 15667568, 15705168, - 29643894, + 29647734, 15205856, 15801440, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817040, 14850000, 15406080, 12011504, 14920992, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842400, 14805824 @@ -55619,23 +55619,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats", - "vtable_address": 63569376, + "vtable_address": 63573280, "methods": [ 15665648, 15744976, - 29643894, + 29647734, 12094672, 15840048, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14830432, 12084000, 15530480, 12011504, 15006560, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841856, 14805552 @@ -55671,23 +55671,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Damage", - "vtable_address": 63569216, + "vtable_address": 63573120, "methods": [ 15665520, 15703760, - 29643894, + 29647734, 15203120, 15800784, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815872, 14848112, 15399424, 12011504, 15048352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841824, 14805536 @@ -55723,23 +55723,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Fact", - "vtable_address": 63568896, + "vtable_address": 63572800, "methods": [ 15665264, 15703504, - 29643894, + 29647734, 15202816, 15800656, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815632, 14848080, 15398368, 12011504, 14996640, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841760, 14805504 @@ -55775,23 +55775,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Placement", - "vtable_address": 63569056, + "vtable_address": 63572960, "methods": [ 15665392, 15703632, - 29643894, + 29647734, 15202976, 15800720, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815760, 14848096, 15398912, 12011504, 14982336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841792, 14805520 @@ -55827,23 +55827,23 @@ }, { "type_name": "CCSUsrMsg_Train", - "vtable_address": 63559936, + "vtable_address": 63563840, "methods": [ 15657744, 15700048, - 29643894, + 29647734, 15194672, 15798848, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813360, 14850400, 15370832, 12011504, 14919424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839968, 14804608 @@ -55879,23 +55879,23 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar", - "vtable_address": 63563456, + "vtable_address": 63567360, "methods": [ 15661040, 15700944, - 29643894, + 29647734, 12089488, 15799360, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814032, 12083840, 15381792, 12011504, 14968800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840672, 14804960 @@ -55931,10 +55931,10 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar_t", - "vtable_address": 64251416, + "vtable_address": 64255320, "methods": [ - 22446064, - 22446128, + 22448880, + 22448944, 12083552, 12083568, 12083584, @@ -56014,23 +56014,23 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar_t", - "vtable_address": 64251480, + "vtable_address": 64255384, "methods": [ - 22446096, - 22446192, - 29643894, + 22448912, + 22449008, + 29647734, 12089488, 15799360, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814032, 12083840, 15381792, 12011504, 14968800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840672, 14804960 @@ -56109,23 +56109,23 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu", - "vtable_address": 63559616, + "vtable_address": 63563520, "methods": [ 15657440, 15733472, - 29643894, + 29647734, 12086192, 15849728, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14956400, 12083728, 15525904, 12011504, 14949776, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839904, 14804576 @@ -56161,23 +56161,23 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu_Keys", - "vtable_address": 63559456, + "vtable_address": 63563360, "methods": [ 15657280, 15728400, - 29643894, + 29647734, 15194208, 15817136, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867760, 14847984, 15369888, 12011504, 14941152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839872, 14804560 @@ -56213,23 +56213,23 @@ }, { "type_name": "CCSUsrMsg_VoiceMask", - "vtable_address": 63561696, + "vtable_address": 63565600, "methods": [ 15659344, 15741648, - 29643894, + 29647734, 15196272, 15833760, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14888256, 14850272, 15526560, 12011504, 14886256, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840320, 14804784 @@ -56265,23 +56265,23 @@ }, { "type_name": "CCSUsrMsg_VoiceMask_PlayerMask", - "vtable_address": 63561536, + "vtable_address": 63565440, "methods": [ 15659216, 15700560, - 29643894, + 29647734, 15196096, 15799088, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813600, 14848000, 15376528, 12011504, 14945600, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840288, 14804768 @@ -56317,23 +56317,23 @@ }, { "type_name": "CCSUsrMsg_VoteFailed", - "vtable_address": 63566496, + "vtable_address": 63570400, "methods": [ 15663312, 15702736, - 29643894, + 29647734, 12096064, 15800224, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815056, 12084048, 15391264, 12011504, 14947008, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841280, 14805264 @@ -56369,10 +56369,10 @@ }, { "type_name": "CCSUsrMsg_VoteFailed_t", - "vtable_address": 64475392, + "vtable_address": 64479296, "methods": [ - 24890976, - 24891040, + 24893984, + 24894048, 12080528, 12080544, 12080560, @@ -56452,23 +56452,23 @@ }, { "type_name": "CCSUsrMsg_VoteFailed_t", - "vtable_address": 64475456, + "vtable_address": 64479360, "methods": [ - 24891008, - 24891104, - 29643894, + 24894016, + 24894112, + 29647734, 12096064, 15800224, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815056, 12084048, 15391264, 12011504, 14947008, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841280, 14805264 @@ -56547,23 +56547,23 @@ }, { "type_name": "CCSUsrMsg_VotePass", - "vtable_address": 63566336, + "vtable_address": 63570240, "methods": [ 15663152, 15728720, - 29643894, + 29647734, 12096544, 15819408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863232, 12084064, 15390656, 12011504, 15021760, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841248, 14805248 @@ -56599,10 +56599,10 @@ }, { "type_name": "CCSUsrMsg_VotePass_t", - "vtable_address": 64475168, + "vtable_address": 64479072, "methods": [ - 24891168, - 24891232, + 24894176, + 24894240, 12080640, 12080656, 12080672, @@ -56682,23 +56682,23 @@ }, { "type_name": "CCSUsrMsg_VotePass_t", - "vtable_address": 64475232, + "vtable_address": 64479136, "methods": [ - 24891200, - 24891296, - 29643894, + 24894208, + 24894304, + 29647734, 12096544, 15819408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863232, 12084064, 15390656, 12011504, 15021760, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841248, 14805248 @@ -56777,23 +56777,23 @@ }, { "type_name": "CCSUsrMsg_VoteSetup", - "vtable_address": 63566656, + "vtable_address": 63570560, "methods": [ 15663440, 15718000, - 29643894, + 29647734, 12095600, 15800288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 12084032, 15391840, 12011504, 14879920, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14841312, 14805280 @@ -56829,10 +56829,10 @@ }, { "type_name": "CCSUsrMsg_VoteSetup_t", - "vtable_address": 64475616, + "vtable_address": 64479520, "methods": [ - 24890784, - 24890848, + 24893792, + 24893856, 12080304, 12080320, 12080336, @@ -56912,23 +56912,23 @@ }, { "type_name": "CCSUsrMsg_VoteSetup_t", - "vtable_address": 64475680, + "vtable_address": 64479584, "methods": [ - 24890816, - 24890912, - 29643894, + 24893824, + 24893920, + 29647734, 12095600, 15800288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 12084032, 15391840, 12011504, 14879920, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14841312, 14805280 @@ -57007,23 +57007,23 @@ }, { "type_name": "CCSUsrMsg_VoteStart", - "vtable_address": 63566176, + "vtable_address": 63570080, "methods": [ 15662992, 15731632, - 29643894, + 29647734, 12097008, 15819232, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862960, 12084080, 15389920, 12011504, 15116032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841216, 14805232 @@ -57059,10 +57059,10 @@ }, { "type_name": "CCSUsrMsg_VoteStart_t", - "vtable_address": 64474944, + "vtable_address": 64478848, "methods": [ - 24891360, - 24891424, + 24894368, + 24894432, 12080752, 12080768, 12080784, @@ -57142,23 +57142,23 @@ }, { "type_name": "CCSUsrMsg_VoteStart_t", - "vtable_address": 64475008, + "vtable_address": 64478912, "methods": [ - 24891392, - 24891488, - 29643894, + 24894400, + 24894496, + 29647734, 12097008, 15819232, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862960, 12084080, 15389920, 12011504, 15116032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841216, 14805232 @@ -57237,23 +57237,23 @@ }, { "type_name": "CCSUsrMsg_WeaponSound", - "vtable_address": 63563296, + "vtable_address": 63567200, "methods": [ 15660896, 15717840, - 29643894, + 29647734, 12091360, 15818928, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862816, 12083904, 15381136, 12011504, 15028160, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840640, 14804944 @@ -57289,10 +57289,10 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 64332744, + "vtable_address": 64336648, "methods": [ - 22924368, - 22924432, + 22927184, + 22927248, 12079184, 12079200, 12079216, @@ -57372,23 +57372,23 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 64332808, + "vtable_address": 64336712, "methods": [ - 22924400, - 22924496, - 29643894, + 22927216, + 22927312, + 29647734, 12091360, 15818928, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862816, 12083904, 15381136, 12011504, 15028160, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840640, 14804944 @@ -57467,23 +57467,23 @@ }, { "type_name": "CCSUsrMsg_XRankGet", - "vtable_address": 63565696, + "vtable_address": 63569600, "methods": [ 15662608, 15702352, - 29643894, + 29647734, 15199888, 15800032, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814784, 14850192, 15388256, 12011504, 14946304, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841120, 14805184 @@ -57519,23 +57519,23 @@ }, { "type_name": "CCSUsrMsg_XRankUpd", - "vtable_address": 63565856, + "vtable_address": 63569760, "methods": [ 15662736, 15702480, - 29643894, + 29647734, 15200032, 15800096, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814864, 14850176, 15388832, 12011504, 14981824, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841152, 14805200 @@ -57571,23 +57571,23 @@ }, { "type_name": "CCSUsrMsg_XpUpdate", - "vtable_address": 63567296, + "vtable_address": 63571200, "methods": [ 15778688, 15780848, - 29643894, + 29647734, 12093728, 15836064, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14900432, 12083968, 15393568, 12011504, 14854416, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841440, 14805344 @@ -57623,10 +57623,10 @@ }, { "type_name": "CCSUsrMsg_XpUpdate_t", - "vtable_address": 64331848, + "vtable_address": 64335752, "methods": [ - 22925520, - 22925584, + 22928336, + 22928400, 12079744, 12079760, 12079776, @@ -57706,23 +57706,23 @@ }, { "type_name": "CCSUsrMsg_XpUpdate_t", - "vtable_address": 64331912, + "vtable_address": 64335816, "methods": [ - 22925552, - 22925648, - 29643894, + 22928368, + 22928464, + 29647734, 12093728, 15836064, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14900432, 12083968, 15393568, 12011504, 14854416, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841440, 14805344 @@ -57801,14 +57801,14 @@ }, { "type_name": "CCSVoiceStatusHelper", - "vtable_address": 64359296, + "vtable_address": 64363200, "methods": [ - 23276112, - 23276960, - 23275392, - 23275360, - 23275376, - 23352208 + 23278864, + 23279712, + 23278144, + 23278112, + 23278128, + 23354960 ], "bases": [ { @@ -57830,17 +57830,17 @@ }, { "type_name": "CCSWeaponBaseVData", - "vtable_address": 63797888, + "vtable_address": 63801792, "methods": [ - 17461040, - 17461872, - 17440864, - 17583904, - 17684288, - 17438736, - 17450736, - 17438752, - 17438768 + 17463344, + 17464176, + 17443168, + 17586208, + 17686592, + 17441040, + 17453040, + 17441056, + 17441072 ], "bases": [ { @@ -57884,11 +57884,11 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 63757936, + "vtable_address": 63761840, "methods": [ - 17361344, + 17363648, 12204208, - 17361408, + 17363712, 12204240, 12204256, 12204272, @@ -57942,13 +57942,13 @@ 12205040, 12205056, 12205072, - 17297088, + 17299392, 12205104, - 17296640, - 17361696, - 17361824, - 17286944, - 17389616 + 17298944, + 17364000, + 17364128, + 17289248, + 17391920 ], "bases": [ { @@ -57991,9 +57991,9 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 63758456, + "vtable_address": 63762360, "methods": [ - 17391536 + 17393840 ], "bases": [ { @@ -58036,10 +58036,10 @@ }, { "type_name": "CCS_PortraitWorld", - "vtable_address": 64437616, + "vtable_address": 64441520, "methods": [ - 24367728, - 24369376 + 24370448, + 24372096 ], "bases": [], "model": { @@ -58050,33 +58050,33 @@ }, { "type_name": "CCS_PortraitWorldCallbackHandler", - "vtable_address": 64437688, + "vtable_address": 64441592, "methods": [ 14367152, - 24272704, - 24272720, + 24275456, + 24275472, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -58085,23 +58085,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 24268064, - 24677776, - 24272672, + 40000032, + 24270816, + 24680784, + 24275424, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -58118,13 +58118,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -58132,39 +58132,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -58178,33 +58178,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -58232,9 +58232,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -58242,24 +58242,24 @@ 12235184, 12235440, 12572688, - 24267392, + 24270144, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -58303,7 +58303,7 @@ }, { "type_name": "CCS_PortraitWorldSpawnerAsync", - "vtable_address": 64436176, + "vtable_address": 64440080, "methods": [ 12254496, 13220752 @@ -58339,21 +58339,21 @@ }, { "type_name": "CCStrike15BasePanel", - "vtable_address": 64374704, + "vtable_address": 64378608, "methods": [ - 23553296, - 23538944, - 23539232, - 23538768, - 23538784, - 23538800, - 23538816, - 23538832, - 23538848, - 23538864, - 23538880, - 23538960, - 23546464 + 23556048, + 23541696, + 23541984, + 23541520, + 23541536, + 23541552, + 23541568, + 23541584, + 23541600, + 23541616, + 23541632, + 23541712, + 23549216 ], "bases": [ { @@ -58375,57 +58375,57 @@ }, { "type_name": "CCStrike15ItemDefinition", - "vtable_address": 63974408, + "vtable_address": 63978312, "methods": [ 17046624, - 17790224, - 17285152, - 17790240, - 17790592, - 27280848, + 17792528, + 17287456, + 17792544, + 17792896, + 27284016, 17119568, - 27280896, - 17790544, + 27284064, + 17792848, 17119552, - 17790352, - 17790272, - 27280784, - 17790384, - 17790416, - 17790288, - 17790656, - 17790320, - 17790608, - 17790624, - 27765424, - 17797696, - 17797984, - 17856736, - 17863536, - 17791936, - 27621824, - 27623168, - 27623744, - 17790256, - 17790304, - 17790336, - 17790368, - 17790448, - 17790496, - 17790512, - 27394064, - 27389312, - 27389840, - 27389568, - 27388416, - 27280816, - 27280832, - 17790528, - 17790560, - 17790576, - 17790640, - 27280800, - 17790672 + 17792656, + 17792576, + 27283952, + 17792688, + 17792720, + 17792592, + 17792960, + 17792624, + 17792912, + 17792928, + 27768688, + 17800000, + 17800288, + 17859040, + 17865840, + 17794240, + 27625088, + 27626432, + 27627008, + 17792560, + 17792608, + 17792640, + 17792672, + 17792752, + 17792800, + 17792816, + 27397264, + 27392512, + 27393040, + 27392768, + 27391616, + 27283984, + 27284000, + 17792832, + 17792864, + 17792880, + 17792944, + 27283968, + 17792976 ], "bases": [ { @@ -58458,71 +58458,71 @@ }, { "type_name": "CCStrike15ItemSchema", - "vtable_address": 63974816, - "methods": [ - 27441984, - 27906384, - 17790912, - 17790896, - 17792656, - 17790688, - 17790928, - 17790944, - 17790960, - 17790976, - 17790992, - 17791008, - 17791024, - 17791040, - 27296896, - 27280944, - 27302080, - 17790880, - 17790736, - 27314144, - 27310192, - 17790752, - 27333472, - 27333024, - 27365408, - 27333248, - 27313376, - 17792640, - 17790720, - 27303024, - 17823200, - 17792624, - 17793904, - 17848624, - 17790704, - 27681536, - 27321152, - 27879440, - 27801632, - 27820464, - 27811392, - 27290240, - 27324752, - 27310880, - 27310656, - 17790848, - 27302688, - 17798880, - 17798288, - 17790768, - 17790784, - 17790800, - 17790864, - 17799456, - 17792576, - 17793968, - 27535328, - 27635040, - 27315856, - 27683104, - 27841392, - 27280928, - 17863840 + "vtable_address": 63978720, + "methods": [ + 27445184, + 27909648, + 17793216, + 17793200, + 17794960, + 17792992, + 17793232, + 17793248, + 17793264, + 17793280, + 17793296, + 17793312, + 17793328, + 17793344, + 27300064, + 27284112, + 27305248, + 17793184, + 17793040, + 27317312, + 27313360, + 17793056, + 27336672, + 27336224, + 27368608, + 27336448, + 27316544, + 17794944, + 17793024, + 27306192, + 17825504, + 17794928, + 17796208, + 17850928, + 17793008, + 27684800, + 27324320, + 27882704, + 27804896, + 27823728, + 27814656, + 27293408, + 27327920, + 27314048, + 27313824, + 17793152, + 27305856, + 17801184, + 17800592, + 17793072, + 17793088, + 17793104, + 17793168, + 17801760, + 17794880, + 17796272, + 27538560, + 27638304, + 27319024, + 27686368, + 27844656, + 27284096, + 17866144 ], "bases": [ { @@ -58555,15 +58555,15 @@ }, { "type_name": "CCStrike15ItemSystem", - "vtable_address": 64592496, + "vtable_address": 64596400, "methods": [ - 22047392, - 28024304, - 28024320, - 28024336, - 28024432, - 28025856, - 27278976 + 22050208, + 28027568, + 28027584, + 28027600, + 28027696, + 28029120, + 27282144 ], "bases": [ { @@ -58596,11 +58596,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64185680, + "vtable_address": 64189584, "methods": [ - 21560576, - 21564224, - 21560624 + 21563392, + 21567040, + 21563440 ], "bases": [ { @@ -58622,11 +58622,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64360624, + "vtable_address": 64364528, "methods": [ - 23276272, - 23282688, - 23276320 + 23279024, + 23285440, + 23279072 ], "bases": [ { @@ -58648,11 +58648,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64592344, + "vtable_address": 64596248, "methods": [ - 28025712, - 28030176, - 28025760 + 28028976, + 28033440, + 28029024 ], "bases": [ { @@ -58674,11 +58674,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64539928, + "vtable_address": 64543832, "methods": [ - 26409968, - 26436800, - 26410016 + 26412976, + 26439808, + 26413024 ], "bases": [ { @@ -58700,7 +58700,7 @@ }, { "type_name": "CCallResult, LeaderboardFindResult_t>", - "vtable_address": 63500944, + "vtable_address": 63504848, "methods": [ 14597216, 14599088, @@ -58726,7 +58726,7 @@ }, { "type_name": "CCallResult, LeaderboardScoresDownloaded_t>", - "vtable_address": 63500984, + "vtable_address": 63504888, "methods": [ 14597152, 14599024, @@ -58752,11 +58752,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 63751912, + "vtable_address": 63755816, "methods": [ - 17217904, - 17221664, - 17217952 + 17220208, + 17223968, + 17220256 ], "bases": [ { @@ -58778,11 +58778,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 63751872, + "vtable_address": 63755776, "methods": [ - 17217968, - 17221728, - 17218016 + 17220272, + 17224032, + 17220320 ], "bases": [ { @@ -58804,11 +58804,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64359472, + "vtable_address": 64363376, "methods": [ - 23276432, - 23282752, - 23276480 + 23279184, + 23285504, + 23279232 ], "bases": [ { @@ -58830,11 +58830,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64520216, + "vtable_address": 64524120, "methods": [ - 25453104, - 25484848, - 25453152 + 25456112, + 25487856, + 25456160 ], "bases": [ { @@ -58856,11 +58856,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64523904, + "vtable_address": 64527808, "methods": [ - 25452288, - 25484592, - 25452336 + 25455296, + 25487600, + 25455344 ], "bases": [ { @@ -58882,11 +58882,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64523824, + "vtable_address": 64527728, "methods": [ - 25452416, - 25484720, - 25452464 + 25455424, + 25487728, + 25455472 ], "bases": [ { @@ -58908,11 +58908,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64523864, + "vtable_address": 64527768, "methods": [ - 25452352, - 25484656, - 25452400 + 25455360, + 25487664, + 25455408 ], "bases": [ { @@ -58934,11 +58934,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64521600, + "vtable_address": 64525504, "methods": [ - 25452800, - 25484784, - 25452848 + 25455808, + 25487792, + 25455856 ], "bases": [ { @@ -58960,11 +58960,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64536136, + "vtable_address": 64540040, "methods": [ - 26411056, - 26437120, - 26411104 + 26414064, + 26440128, + 26414112 ], "bases": [ { @@ -58986,11 +58986,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64536176, + "vtable_address": 64540080, "methods": [ - 26410992, - 26437056, - 26411040 + 26414000, + 26440064, + 26414048 ], "bases": [ { @@ -59012,11 +59012,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64538312, + "vtable_address": 64542216, "methods": [ - 26410512, - 26436992, - 26410560 + 26413520, + 26440000, + 26413568 ], "bases": [ { @@ -59038,11 +59038,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64539824, + "vtable_address": 64543728, "methods": [ - 26410048, - 26436864, - 26410096 + 26413056, + 26439872, + 26413104 ], "bases": [ { @@ -59064,11 +59064,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64539328, + "vtable_address": 64543232, "methods": [ - 26410224, - 26436928, - 26410272 + 26413232, + 26439936, + 26413280 ], "bases": [ { @@ -59090,11 +59090,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64541448, + "vtable_address": 64545352, "methods": [ - 26409776, - 26436736, - 26409824 + 26412784, + 26439744, + 26412832 ], "bases": [ { @@ -59116,11 +59116,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64541776, + "vtable_address": 64545680, "methods": [ - 26409616, - 26436672, - 26409664 + 26412624, + 26439680, + 26412672 ], "bases": [ { @@ -59142,11 +59142,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 64991368, + "vtable_address": 64995272, "methods": [ - 60258800, - 60264352, - 60258848 + 60262704, + 60268256, + 60262752 ], "bases": [ { @@ -59168,13 +59168,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64571616, + "vtable_address": 64575520, "methods": [ - 27283200, - 24074560, - 24074576, - 27284416, - 27284448 + 27286368, + 24077312, + 24077328, + 27287584, + 27287616 ], "bases": [ { @@ -59207,13 +59207,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64486832, + "vtable_address": 64490736, "methods": [ - 24886976, + 24889984, 14599504, 14597376, - 24892512, - 24892544 + 24895520, + 24895552 ], "bases": [ { @@ -59246,13 +59246,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64630840, + "vtable_address": 64634744, "methods": [ - 28956576, + 28960416, 14599568, 14597328, - 28956736, - 28956768 + 28960576, + 28960608 ], "bases": [ { @@ -59285,13 +59285,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64630896, + "vtable_address": 64634800, "methods": [ - 28956544, + 28960384, 16917552, 16908512, - 28956832, - 28956864 + 28960672, + 28960704 ], "bases": [ { @@ -59324,13 +59324,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64630784, + "vtable_address": 64634688, "methods": [ - 28956608, - 26409552, - 26409568, - 28956640, - 28956672 + 28960448, + 26412560, + 26412576, + 28960480, + 28960512 ], "bases": [ { @@ -59363,13 +59363,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64359416, + "vtable_address": 64363320, "methods": [ - 23276496, - 23285952, - 23276528, - 23281696, - 23281728 + 23279248, + 23288704, + 23279280, + 23284448, + 23284480 ], "bases": [ { @@ -59402,13 +59402,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64592440, + "vtable_address": 64596344, "methods": [ - 28025680, + 28028944, 16917552, 16908512, - 28028976, - 28029008 + 28032240, + 28032272 ], "bases": [ { @@ -59441,7 +59441,7 @@ }, { "type_name": "CCallback", - "vtable_address": 63688520, + "vtable_address": 63692424, "methods": [ 16908480, 16917552, @@ -59480,7 +59480,7 @@ }, { "type_name": "CCallback", - "vtable_address": 63500352, + "vtable_address": 63504256, "methods": [ 14597344, 14599504, @@ -59519,7 +59519,7 @@ }, { "type_name": "CCallback", - "vtable_address": 63500408, + "vtable_address": 63504312, "methods": [ 14597296, 14599568, @@ -59558,13 +59558,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64630952, + "vtable_address": 64634856, "methods": [ - 28956512, - 26458000, - 26410400, - 28956928, - 28956960 + 28960352, + 26461008, + 26413408, + 28960768, + 28960800 ], "bases": [ { @@ -59597,13 +59597,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64631008, + "vtable_address": 64634912, "methods": [ - 28956480, - 26458000, - 26410400, - 28957024, - 28957056 + 28960320, + 26461008, + 26413408, + 28960864, + 28960896 ], "bases": [ { @@ -59636,13 +59636,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64521544, + "vtable_address": 64525448, "methods": [ - 25452864, - 24074560, - 24074576, - 25482544, - 25482576 + 25455872, + 24077312, + 24077328, + 25485552, + 25485584 ], "bases": [ { @@ -59675,13 +59675,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64521488, + "vtable_address": 64525392, "methods": [ - 25452896, + 25455904, 14599504, 14597376, - 25482448, - 25482480 + 25485456, + 25485488 ], "bases": [ { @@ -59714,13 +59714,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64536024, + "vtable_address": 64539928, "methods": [ - 26411152, - 24886752, - 24886768, - 26426880, - 26426912 + 26414160, + 24889760, + 24889776, + 26429888, + 26429920 ], "bases": [ { @@ -59753,13 +59753,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64536080, + "vtable_address": 64539984, "methods": [ - 26411120, - 26409552, - 26409568, - 26426976, - 26427008 + 26414128, + 26412560, + 26412576, + 26429984, + 26430016 ], "bases": [ { @@ -59792,13 +59792,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64535968, + "vtable_address": 64539872, "methods": [ - 26411184, + 26414192, 16917552, 16908512, - 26426784, - 26426816 + 26429792, + 26429824 ], "bases": [ { @@ -59831,13 +59831,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64535912, + "vtable_address": 64539816, "methods": [ - 26411216, + 26414224, 14599504, 14597376, - 26426592, - 26426624 + 26429600, + 26429632 ], "bases": [ { @@ -59870,13 +59870,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64538608, + "vtable_address": 64542512, "methods": [ - 26410416, - 24074560, - 24074576, - 26427264, - 26427296 + 26413424, + 24077312, + 24077328, + 26430272, + 26430304 ], "bases": [ { @@ -59909,13 +59909,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64538664, + "vtable_address": 64542568, "methods": [ - 26410368, - 26458000, - 26410400, - 26427360, - 26427392 + 26413376, + 26461008, + 26413408, + 26430368, + 26430400 ], "bases": [ { @@ -59948,13 +59948,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64536584, + "vtable_address": 64540488, "methods": [ - 26410896, + 26413904, 14599504, 14597376, - 26426688, - 26426720 + 26429696, + 26429728 ], "bases": [ { @@ -59987,13 +59987,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64536640, + "vtable_address": 64540544, "methods": [ - 26410864, - 23285952, - 23276528, - 26427456, - 26427488 + 26413872, + 23288704, + 23279280, + 26430464, + 26430496 ], "bases": [ { @@ -60026,13 +60026,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64541488, + "vtable_address": 64545392, "methods": [ - 26409744, - 23285952, - 23276528, - 26427552, - 26427584 + 26412752, + 23288704, + 23279280, + 26430560, + 26430592 ], "bases": [ { @@ -60065,13 +60065,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64541544, + "vtable_address": 64545448, "methods": [ - 26409712, - 26409552, - 26409568, - 26427072, - 26427104 + 26412720, + 26412560, + 26412576, + 26430080, + 26430112 ], "bases": [ { @@ -60104,13 +60104,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64541816, + "vtable_address": 64545720, "methods": [ - 26409584, - 23285952, - 23276528, - 26427648, - 26427680 + 26412592, + 23288704, + 23279280, + 26430656, + 26430688 ], "bases": [ { @@ -60143,13 +60143,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64541872, + "vtable_address": 64545776, "methods": [ - 26409520, - 26409552, - 26409568, - 26427168, - 26427200 + 26412528, + 26412560, + 26412576, + 26430176, + 26430208 ], "bases": [ { @@ -60182,13 +60182,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64946688, + "vtable_address": 64950592, "methods": [ - 59396640, - 26409552, - 26409568, - 59396672, - 59396704 + 59400544, + 26412560, + 26412576, + 59400576, + 59400608 ], "bases": [ { @@ -60221,13 +60221,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64946800, + "vtable_address": 64950704, "methods": [ - 59396576, + 59400480, 14599568, 14597328, - 59396864, - 59396896 + 59400768, + 59400800 ], "bases": [ { @@ -60260,13 +60260,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64946856, + "vtable_address": 64950760, "methods": [ - 59396544, + 59400448, 16917552, 16908512, - 59396960, - 59396992 + 59400864, + 59400896 ], "bases": [ { @@ -60299,13 +60299,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64946744, + "vtable_address": 64950648, "methods": [ - 59396608, - 26409552, - 26409568, - 59396768, - 59396800 + 59400512, + 26412560, + 26412576, + 59400672, + 59400704 ], "bases": [ { @@ -60338,13 +60338,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990696, + "vtable_address": 64994600, "methods": [ - 60259216, + 60263120, 14599568, 14597328, - 60261536, - 60261568 + 60265440, + 60265472 ], "bases": [ { @@ -60377,13 +60377,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990584, + "vtable_address": 64994488, "methods": [ - 60259280, + 60263184, 14599504, 14597376, - 60260864, - 60260896 + 60264768, + 60264800 ], "bases": [ { @@ -60416,13 +60416,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990304, + "vtable_address": 64994208, "methods": [ - 60259424, - 26409552, - 26409568, - 60260288, - 60260320 + 60263328, + 26412560, + 26412576, + 60264192, + 60264224 ], "bases": [ { @@ -60455,13 +60455,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990976, + "vtable_address": 64994880, "methods": [ - 60259056, - 24074560, - 24074576, - 60260672, - 60260704 + 60262960, + 24077312, + 24077328, + 60264576, + 60264608 ], "bases": [ { @@ -60494,13 +60494,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990472, + "vtable_address": 64994376, "methods": [ - 60259344, - 24074560, - 24074576, - 60260576, - 60260608 + 60263248, + 24077312, + 24077328, + 60264480, + 60264512 ], "bases": [ { @@ -60533,13 +60533,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64991312, + "vtable_address": 64995216, "methods": [ - 60258864, - 26409552, - 26409568, - 60260384, - 60260416 + 60262768, + 26412560, + 26412576, + 60264288, + 60264320 ], "bases": [ { @@ -60572,13 +60572,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990752, + "vtable_address": 64994656, "methods": [ - 60259184, - 26458000, - 26410400, - 60259808, - 60259840 + 60263088, + 26461008, + 26413408, + 60263712, + 60263744 ], "bases": [ { @@ -60611,13 +60611,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990864, + "vtable_address": 64994768, "methods": [ - 60259120, + 60263024, 14599504, 14597376, - 60261056, - 60261088 + 60264960, + 60264992 ], "bases": [ { @@ -60650,13 +60650,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990920, + "vtable_address": 64994824, "methods": [ - 60259088, + 60262992, 14599504, 14597376, - 60261152, - 60261184 + 60265056, + 60265088 ], "bases": [ { @@ -60689,13 +60689,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990080, + "vtable_address": 64993984, "methods": [ - 60259536, - 26458000, - 26410400, - 60259712, - 60259744 + 60263440, + 26461008, + 26413408, + 60263616, + 60263648 ], "bases": [ { @@ -60728,13 +60728,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990192, + "vtable_address": 64994096, "methods": [ - 60259488, - 60266848, - 60259520, - 60260000, - 60260032 + 60263392, + 60270752, + 60263424, + 60263904, + 60263936 ], "bases": [ { @@ -60767,13 +60767,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64991032, + "vtable_address": 64994936, "methods": [ - 60259024, - 24886752, - 24886768, - 60260192, - 60260224 + 60262928, + 24889760, + 24889776, + 60264096, + 60264128 ], "bases": [ { @@ -60806,13 +60806,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990528, + "vtable_address": 64994432, "methods": [ - 60259312, + 60263216, 14599504, 14597376, - 60260768, - 60260800 + 60264672, + 60264704 ], "bases": [ { @@ -60845,13 +60845,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990640, + "vtable_address": 64994544, "methods": [ - 60259248, + 60263152, 14599504, 14597376, - 60260960, - 60260992 + 60264864, + 60264896 ], "bases": [ { @@ -60884,13 +60884,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64991088, + "vtable_address": 64994992, "methods": [ - 60258992, + 60262896, 14599568, 14597328, - 60261632, - 60261664 + 60265536, + 60265568 ], "bases": [ { @@ -60923,13 +60923,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64991200, + "vtable_address": 64995104, "methods": [ - 60258928, + 60262832, 14599504, 14597376, - 60261344, - 60261376 + 60265248, + 60265280 ], "bases": [ { @@ -60962,13 +60962,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990248, + "vtable_address": 64994152, "methods": [ - 60259456, - 24886752, - 24886768, - 60260096, - 60260128 + 60263360, + 24889760, + 24889776, + 60264000, + 60264032 ], "bases": [ { @@ -61001,13 +61001,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64991144, + "vtable_address": 64995048, "methods": [ - 60258960, + 60262864, 14599504, 14597376, - 60261248, - 60261280 + 60265152, + 60265184 ], "bases": [ { @@ -61040,13 +61040,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990416, + "vtable_address": 64994320, "methods": [ - 60259376, - 60266912, - 60259408, - 60260480, - 60260512 + 60263280, + 60270816, + 60263312, + 60264384, + 60264416 ], "bases": [ { @@ -61079,13 +61079,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64991256, + "vtable_address": 64995160, "methods": [ - 60258896, + 60262800, 14599504, 14597376, - 60261440, - 60261472 + 60265344, + 60265376 ], "bases": [ { @@ -61118,13 +61118,13 @@ }, { "type_name": "CCallback", - "vtable_address": 64990808, + "vtable_address": 64994712, "methods": [ - 60259152, - 26458000, - 26410400, - 60259904, - 60259936 + 60263056, + 26461008, + 26413408, + 60263808, + 60263840 ], "bases": [ { @@ -61157,7 +61157,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 63499768, + "vtable_address": 63503672, "methods": [], "bases": [], "model": { @@ -61168,7 +61168,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 63499808, + "vtable_address": 63503712, "methods": [], "bases": [], "model": { @@ -61179,7 +61179,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 63500016, + "vtable_address": 63503920, "methods": [], "bases": [], "model": { @@ -61190,7 +61190,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 63500056, + "vtable_address": 63503960, "methods": [], "bases": [], "model": { @@ -61201,7 +61201,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 63683416, + "vtable_address": 63687320, "methods": [], "bases": [], "model": { @@ -61212,7 +61212,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 63731040, + "vtable_address": 63734944, "methods": [], "bases": [], "model": { @@ -61223,7 +61223,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 63731080, + "vtable_address": 63734984, "methods": [], "bases": [], "model": { @@ -61234,7 +61234,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64182832, + "vtable_address": 64186736, "methods": [], "bases": [], "model": { @@ -61245,7 +61245,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64199472, + "vtable_address": 64203376, "methods": [], "bases": [], "model": { @@ -61256,7 +61256,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64356832, + "vtable_address": 64360736, "methods": [], "bases": [], "model": { @@ -61267,7 +61267,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64356920, + "vtable_address": 64360824, "methods": [], "bases": [], "model": { @@ -61278,7 +61278,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64357472, + "vtable_address": 64361376, "methods": [], "bases": [], "model": { @@ -61289,7 +61289,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64422504, + "vtable_address": 64426408, "methods": [], "bases": [], "model": { @@ -61300,7 +61300,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64473424, + "vtable_address": 64477328, "methods": [], "bases": [], "model": { @@ -61311,7 +61311,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64516016, + "vtable_address": 64519920, "methods": [], "bases": [], "model": { @@ -61322,7 +61322,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64516920, + "vtable_address": 64520824, "methods": [], "bases": [], "model": { @@ -61333,7 +61333,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64517784, + "vtable_address": 64521688, "methods": [], "bases": [], "model": { @@ -61344,7 +61344,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64517824, + "vtable_address": 64521728, "methods": [], "bases": [], "model": { @@ -61355,7 +61355,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64517864, + "vtable_address": 64521768, "methods": [], "bases": [], "model": { @@ -61366,7 +61366,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64531512, + "vtable_address": 64535416, "methods": [], "bases": [], "model": { @@ -61377,7 +61377,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64531800, + "vtable_address": 64535704, "methods": [], "bases": [], "model": { @@ -61388,7 +61388,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64531840, + "vtable_address": 64535744, "methods": [], "bases": [], "model": { @@ -61399,7 +61399,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64532040, + "vtable_address": 64535944, "methods": [], "bases": [], "model": { @@ -61410,7 +61410,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64533112, + "vtable_address": 64537016, "methods": [], "bases": [], "model": { @@ -61421,7 +61421,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64533616, + "vtable_address": 64537520, "methods": [], "bases": [], "model": { @@ -61432,7 +61432,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64533824, + "vtable_address": 64537728, "methods": [], "bases": [], "model": { @@ -61443,7 +61443,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64533888, + "vtable_address": 64537792, "methods": [], "bases": [], "model": { @@ -61454,7 +61454,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64534312, + "vtable_address": 64538216, "methods": [], "bases": [], "model": { @@ -61465,7 +61465,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64534496, + "vtable_address": 64538400, "methods": [], "bases": [], "model": { @@ -61476,7 +61476,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64591472, + "vtable_address": 64595376, "methods": [], "bases": [], "model": { @@ -61487,7 +61487,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64986984, + "vtable_address": 64990888, "methods": [], "bases": [], "model": { @@ -61498,7 +61498,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64987096, + "vtable_address": 64991000, "methods": [], "bases": [], "model": { @@ -61509,7 +61509,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 64987544, + "vtable_address": 64991448, "methods": [], "bases": [], "model": { @@ -61520,7 +61520,7 @@ }, { "type_name": "CCallbackImpl<12>", - "vtable_address": 63500296, + "vtable_address": 63504200, "methods": [], "bases": [ { @@ -61542,7 +61542,7 @@ }, { "type_name": "CCallbackImpl<16>", - "vtable_address": 64359360, + "vtable_address": 64363264, "methods": [], "bases": [ { @@ -61564,7 +61564,7 @@ }, { "type_name": "CCallbackImpl<1>", - "vtable_address": 63684184, + "vtable_address": 63688088, "methods": [], "bases": [ { @@ -61586,7 +61586,7 @@ }, { "type_name": "CCallbackImpl<1>", - "vtable_address": 64199432, + "vtable_address": 64203336, "methods": [], "bases": [ { @@ -61608,7 +61608,7 @@ }, { "type_name": "CCallbackImpl<20>", - "vtable_address": 64425104, + "vtable_address": 64429008, "methods": [], "bases": [ { @@ -61630,7 +61630,7 @@ }, { "type_name": "CCallbackImpl<24>", - "vtable_address": 64536528, + "vtable_address": 64540432, "methods": [], "bases": [ { @@ -61652,7 +61652,7 @@ }, { "type_name": "CCallbackImpl<264>", - "vtable_address": 64199512, + "vtable_address": 64203416, "methods": [], "bases": [ { @@ -61674,7 +61674,7 @@ }, { "type_name": "CCallbackImpl<264>", - "vtable_address": 64208824, + "vtable_address": 64212728, "methods": [], "bases": [ { @@ -61696,7 +61696,7 @@ }, { "type_name": "CCallbackImpl<32>", - "vtable_address": 64474000, + "vtable_address": 64477904, "methods": [], "bases": [ { @@ -61718,7 +61718,7 @@ }, { "type_name": "CCallbackImpl<32>", - "vtable_address": 64474360, + "vtable_address": 64478264, "methods": [], "bases": [ { @@ -61740,7 +61740,7 @@ }, { "type_name": "CCallbackImpl<32>", - "vtable_address": 64474424, + "vtable_address": 64478328, "methods": [], "bases": [ { @@ -61762,7 +61762,7 @@ }, { "type_name": "CCallbackImpl<32>", - "vtable_address": 64482888, + "vtable_address": 64486792, "methods": [], "bases": [ { @@ -61784,7 +61784,7 @@ }, { "type_name": "CCallbackImpl<36>", - "vtable_address": 64990360, + "vtable_address": 64994264, "methods": [], "bases": [ { @@ -61806,7 +61806,7 @@ }, { "type_name": "CCallbackImpl<4>", - "vtable_address": 64535632, + "vtable_address": 64539536, "methods": [], "bases": [ { @@ -61828,7 +61828,7 @@ }, { "type_name": "CCallbackImpl<52>", - "vtable_address": 64990136, + "vtable_address": 64994040, "methods": [], "bases": [ { @@ -61850,7 +61850,7 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 63500240, + "vtable_address": 63504144, "methods": [], "bases": [ { @@ -61872,7 +61872,7 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 64474040, + "vtable_address": 64477944, "methods": [], "bases": [ { @@ -61894,7 +61894,7 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 64474080, + "vtable_address": 64477984, "methods": [], "bases": [ { @@ -61916,13 +61916,13 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 64425160, + "vtable_address": 64429064, "methods": [ - 24074592, - 24074560, - 24074576, - 24077248, - 24077280 + 24077344, + 24077312, + 24077328, + 24080000, + 24080032 ], "bases": [ { @@ -61966,13 +61966,13 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 64425216, + "vtable_address": 64429120, "methods": [ - 24074528, - 24074560, - 24074576, - 24077344, - 24077376 + 24077280, + 24077312, + 24077328, + 24080096, + 24080128 ], "bases": [ { @@ -62016,13 +62016,13 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 64425048, + "vtable_address": 64428952, "methods": [ - 24074624, + 24077376, 14599504, 14597376, - 24077152, - 24077184 + 24079904, + 24079936 ], "bases": [ { @@ -62066,13 +62066,13 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 64344680, + "vtable_address": 64348584, "methods": [ - 22920608, + 22923424, 16917552, 16908512, - 22923312, - 22923344 + 22926128, + 22926160 ], "bases": [ { @@ -62116,7 +62116,7 @@ }, { "type_name": "CCamPathfindGameSystem", - "vtable_address": 63976360, + "vtable_address": 63980264, "methods": [ 12204192, 12204208, @@ -62126,7 +62126,7 @@ 12204272, 12204288, 12204304, - 17865104, + 17867408, 12204336, 12204352, 12204368, @@ -62155,7 +62155,7 @@ 12204736, 12204752, 12204768, - 17930512, + 17932816, 12204800, 12204816, 12204832, @@ -62174,12 +62174,12 @@ 12205040, 12205056, 12205072, - 17868608, + 17870912, 12205104, - 17868464, - 17871120, - 17870896, - 17865088 + 17870768, + 17873424, + 17873200, + 17867392 ], "bases": [ { @@ -62212,21 +62212,21 @@ }, { "type_name": "CCameraManagerGameSystem", - "vtable_address": 64175416, + "vtable_address": 64179320, "methods": [ 12204192, 12204208, 12204224, - 21341136, - 21361648, - 21345776, + 21343952, + 21364464, + 21348592, 12204288, 12204304, - 21330656, + 21333472, 12204336, 12204352, 12204368, - 21351040, + 21353856, 12204400, 12204416, 12204432, @@ -62270,12 +62270,12 @@ 12205040, 12205056, 12205072, - 21326016, + 21328832, 12205104, - 21326000, - 21331616, - 21331632, - 21325984 + 21328816, + 21334432, + 21334448, + 21328800 ], "bases": [ { @@ -62308,7 +62308,7 @@ }, { "type_name": "CCharacterDecalSystem", - "vtable_address": 63322816, + "vtable_address": 63326720, "methods": [ 12204192, 12204208, @@ -62426,7 +62426,7 @@ }, { "type_name": "CCharacterDecalSystem", - "vtable_address": 63323336, + "vtable_address": 63327240, "methods": [ 13255488, 13256080, @@ -62484,7 +62484,7 @@ }, { "type_name": "CChickenGameSystem", - "vtable_address": 64364600, + "vtable_address": 64368504, "methods": [ 12204192, 12204208, @@ -62507,7 +62507,7 @@ 12204480, 12204496, 12204512, - 23443776, + 23446528, 12204544, 12204560, 12204576, @@ -62542,12 +62542,12 @@ 12205040, 12205056, 12205072, - 23439072, + 23441824, 12205104, - 23438896, - 23440176, - 23439712, - 23436352 + 23441648, + 23442928, + 23442464, + 23439104 ], "bases": [ { @@ -62580,23 +62580,23 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Request", - "vtable_address": 63631376, + "vtable_address": 63635280, "methods": [ 16578192, 16621712, - 29643894, + 29647734, 16236336, 16700656, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16009456, 15997792, 16335184, 12011504, 16100288, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016256, 15987280 @@ -62632,23 +62632,23 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Response", - "vtable_address": 63631536, + "vtable_address": 63635440, "methods": [ 16578336, 16621872, - 29643894, + 29647734, 16236496, 16700912, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15997776, 16335776, 12011504, 16076240, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016288, 15987296 @@ -62684,11 +62684,11 @@ }, { "type_name": "CChoreoActor", - "vtable_address": 64823608, + "vtable_address": 64827512, "methods": [ - 39230160, - 39230176, - 39230192 + 39234000, + 39234016, + 39234032 ], "bases": [ { @@ -62710,11 +62710,11 @@ }, { "type_name": "CChoreoChannel", - "vtable_address": 64823672, + "vtable_address": 64827576, "methods": [ - 39230160, - 39230848, - 39230832 + 39234000, + 39234688, + 39234672 ], "bases": [ { @@ -62736,19 +62736,19 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 64823888, + "vtable_address": 64827792, "methods": [ - 39231536, - 39230176, - 39230832, - 39235392, - 39236432, - 39231696, - 39231728, - 39231776, - 39231808, - 39231824, - 39231840 + 39235376, + 39234016, + 39234672, + 39239232, + 39240272, + 39235536, + 39235568, + 39235616, + 39235648, + 39235664, + 39235680 ], "bases": [ { @@ -62780,14 +62780,14 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 64823992, + "vtable_address": 64827896, "methods": [ - 39232064, - 39232096, - 39232224, - 39232032, - 39232016, - 39231936 + 39235904, + 39235936, + 39236064, + 39235872, + 39235856, + 39235776 ], "bases": [ { @@ -62819,7 +62819,7 @@ }, { "type_name": "CChoreoObjectBase", - "vtable_address": 64823592, + "vtable_address": 64827496, "methods": [], "bases": [], "model": { @@ -62830,7 +62830,7 @@ }, { "type_name": "CChoreoObjectBase", - "vtable_address": 64823656, + "vtable_address": 64827560, "methods": [], "bases": [], "model": { @@ -62841,16 +62841,16 @@ }, { "type_name": "CChoreoScene", - "vtable_address": 64824824, + "vtable_address": 64828728, "methods": [ - 39238832, - 39238864, - 39238928, - 39238880, - 39238896, - 39238912, - 39246144, - 39246736 + 39242672, + 39242704, + 39242768, + 39242720, + 39242736, + 39242752, + 39249984, + 39250576 ], "bases": [ { @@ -62872,33 +62872,33 @@ }, { "type_name": "CCitadelSoundOpvarSetOBB", - "vtable_address": 64217528, + "vtable_address": 64221432, "methods": [ 14367152, - 22050128, - 22050160, + 22052944, + 22052976, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22050288, - 21132352, - 21132672, - 21132336, - 22170016, - 22074592, - 21133440, + 21127072, + 22053104, + 21135168, + 21135488, + 21135152, + 22172832, + 22077408, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -62907,23 +62907,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22046192, - 22232576, - 22050496, + 40000032, + 22049008, + 22235392, + 22053312, 12234080, - 22098080, - 20571856, + 22100896, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -62940,13 +62940,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -62954,39 +62954,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -63000,33 +63000,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -63054,9 +63054,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -63064,24 +63064,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -63125,12 +63125,12 @@ }, { "type_name": "CClassAutoAllocatePtrSaveRestoreOps", - "vtable_address": 64022096, + "vtable_address": 64026000, "methods": [ - 18505712, - 18531088, - 18509664, - 18544176, + 18508016, + 18533392, + 18511968, + 18546480, 12233776, 12233792 ], @@ -63165,15 +63165,15 @@ }, { "type_name": "CClientAlphaProperty", - "vtable_address": 64181288, + "vtable_address": 64185192, "methods": [ 14419664, - 21328336, - 21338128, - 21328432, - 21328416, - 21328352, - 21328384 + 21331152, + 21340944, + 21331248, + 21331232, + 21331168, + 21331200 ], "bases": [ { @@ -63195,10 +63195,10 @@ }, { "type_name": "CClientAlphaPropertyMgr", - "vtable_address": 64181360, + "vtable_address": 64185264, "methods": [ - 21338496, - 21340400 + 21341312, + 21343216 ], "bases": [ { @@ -63220,16 +63220,16 @@ }, { "type_name": "CClientGameBlackboardView", - "vtable_address": 63677552, + "vtable_address": 63681456, "methods": [ 16800064, 16800080, - 39284096, - 39284080, - 39284464, - 39288256, - 39284288, - 39286272, + 39287936, + 39287920, + 39288304, + 39292096, + 39288128, + 39290112, 16798192 ], "bases": [ @@ -63263,23 +63263,23 @@ }, { "type_name": "CClientHeaderOverwatchEvidence", - "vtable_address": 63543136, + "vtable_address": 63547040, "methods": [ 15644352, 15694800, - 29643894, + 29647734, 15175920, 15795648, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824368, 14851632, 15321520, 12011504, 14944544, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836608, 14801488 @@ -63315,38 +63315,38 @@ }, { "type_name": "CClientInput", - "vtable_address": 64181640, - "methods": [ - 21354512, - 21354848, - 21472768, - 21338624, - 21348208, - 21548496, - 21550128, - 21424272, - 21423984, - 21370512, - 21324256, - 21324272, - 21324288, - 21324304, - 21324320, - 21324336, - 21328576, - 21472448, - 21363424, - 21359440, - 21324352, - 21324368, - 21391952, - 21328592, - 21328608, - 21328624, - 21328656, - 21324384, - 21324400, - 21324416 + "vtable_address": 64185544, + "methods": [ + 21357328, + 21357664, + 21475584, + 21341440, + 21351024, + 21551312, + 21552944, + 21427088, + 21426800, + 21373328, + 21327072, + 21327088, + 21327104, + 21327120, + 21327136, + 21327152, + 21331392, + 21475264, + 21366240, + 21362256, + 21327168, + 21327184, + 21394768, + 21331408, + 21331424, + 21331440, + 21331472, + 21327200, + 21327216, + 21327232 ], "bases": [], "model": { @@ -63357,24 +63357,24 @@ }, { "type_name": "CClientModeGameSystem", - "vtable_address": 64185720, + "vtable_address": 64189624, "methods": [ 12204192, 12204208, 12204224, - 21581520, - 21575184, + 21584336, + 21578000, 12204272, 12204288, 12204304, - 21567744, + 21570560, 12204336, 12204352, 12204368, - 21577456, + 21580272, 12204400, 12204416, - 21564800, + 21567616, 12204448, 12204464, 12204480, @@ -63415,12 +63415,12 @@ 12205040, 12205056, 12205072, - 21557936, + 21560752, 12205104, - 21557920, - 21562208, - 21562224, - 21557904 + 21560736, + 21565024, + 21565040, + 21560720 ], "bases": [ { @@ -63453,23 +63453,23 @@ }, { "type_name": "CClientMsg_ClientUIEvent", - "vtable_address": 63528736, + "vtable_address": 63532640, "methods": [ 15633232, 15726000, - 29643894, + 29647734, 12239824, 15809760, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14857888, 12239792, 15272048, 12011504, 15053728, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833728, 14797008 @@ -63505,7 +63505,7 @@ }, { "type_name": "CClientMsg_ClientUIEvent_t", - "vtable_address": 63117824, + "vtable_address": 63121728, "methods": [ 12240032, 12240096, @@ -63588,23 +63588,23 @@ }, { "type_name": "CClientMsg_ClientUIEvent_t", - "vtable_address": 63117888, + "vtable_address": 63121792, "methods": [ 12240064, 12240160, - 29643894, + 29647734, 12239824, 15809760, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14857888, 12239792, 15272048, 12011504, 15053728, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833728, 14797008 @@ -63683,23 +63683,23 @@ }, { "type_name": "CClientMsg_CustomGameEvent", - "vtable_address": 63528416, + "vtable_address": 63532320, "methods": [ 15632912, 15725680, - 29643894, + 29647734, 13234960, 15809504, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867760, 13224192, 15271040, 12011504, 14985792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833664, 14796976 @@ -63735,23 +63735,23 @@ }, { "type_name": "CClientMsg_CustomGameEventBounce", - "vtable_address": 63528576, + "vtable_address": 63532480, "methods": [ 15633072, 15725840, - 29643894, + 29647734, 13235056, 15809632, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868624, 13224208, 15271504, 12011504, 15029312, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833696, 14796992 @@ -63787,23 +63787,23 @@ }, { "type_name": "CClientMsg_DevPaletteVisibilityChangedEvent", - "vtable_address": 63528896, + "vtable_address": 63532800, "methods": [ 15633392, 15690064, - 29643894, + 29647734, 15154384, 15792784, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810352, 14852256, 15272784, 12011504, 14885680, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833760, 14797024 @@ -63839,23 +63839,23 @@ }, { "type_name": "CClientMsg_ListenForResponseFound", - "vtable_address": 63529376, + "vtable_address": 63533280, "methods": [ 15633776, 15690448, - 29643894, + 29647734, 15154816, 15792944, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811808, 14852208, 15274096, 12011504, 14917856, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833856, 14797072 @@ -63891,14 +63891,14 @@ }, { "type_name": "CClientMsg_ListenForResponseFound_t", - "vtable_address": 64011256, + "vtable_address": 64015160, "methods": [ - 18518640, - 18518704, - 18510576, - 18510592, - 18510608, - 18518832 + 18520944, + 18521008, + 18512880, + 18512896, + 18512912, + 18521136 ], "bases": [ { @@ -63974,23 +63974,23 @@ }, { "type_name": "CClientMsg_ListenForResponseFound_t", - "vtable_address": 64011320, + "vtable_address": 64015224, "methods": [ - 18518672, - 18518768, - 29643894, + 18520976, + 18521072, + 29647734, 15154816, 15792944, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811808, 14852208, 15274096, 12011504, 14917856, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833856, 14797072 @@ -64069,23 +64069,23 @@ }, { "type_name": "CClientMsg_RotateAnchor", - "vtable_address": 63529216, + "vtable_address": 63533120, "methods": [ 15633648, 15690320, - 29643894, + 29647734, 15154672, 15792896, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810704, 14852224, 15273776, 12011504, 14883152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833824, 14797056 @@ -64121,23 +64121,23 @@ }, { "type_name": "CClientMsg_WorldUIControllerHasPanelChangedEvent", - "vtable_address": 63529056, + "vtable_address": 63532960, "methods": [ 15633520, 15690192, - 29643894, + 29647734, 15154528, 15792832, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820576, 14852240, 15273264, 12011504, 14960352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833792, 14797040 @@ -64173,7 +64173,7 @@ }, { "type_name": "CClientPulseGameSystem", - "vtable_address": 63680304, + "vtable_address": 63684208, "methods": [ 12204192, 12204208, @@ -64308,7 +64308,7 @@ }, { "type_name": "CClientPulseGameSystem", - "vtable_address": 63680880, + "vtable_address": 63684784, "methods": [ 16798256, 16798288, @@ -64377,7 +64377,7 @@ }, { "type_name": "CClientPulseGameSystem", - "vtable_address": 63680928, + "vtable_address": 63684832, "methods": [ 16810832, 16823888, @@ -64446,13 +64446,13 @@ }, { "type_name": "CClientThinkList", - "vtable_address": 64180776, + "vtable_address": 64184680, "methods": [ - 21328256, + 21331072, 12204208, - 21328288, - 21328304, - 21328320, + 21331104, + 21331120, + 21331136, 12204272, 12204288, 12204304, @@ -64465,17 +64465,17 @@ 12204416, 12204432, 12204448, - 21328320, + 21331136, 12204480, 12204496, 12204512, - 21328320, + 21331136, 12204544, 12204560, 12204576, 12204592, 12204608, - 21328320, + 21331136, 12204640, 12204656, 12204672, @@ -64504,12 +64504,12 @@ 12205040, 12205056, 12205072, - 21324224, + 21327040, 12205104, - 21324208, - 21435280, - 21435376, - 21324192 + 21327024, + 21438096, + 21438192, + 21327008 ], "bases": [ { @@ -64531,19 +64531,19 @@ }, { "type_name": "CClientToolsInfo", - "vtable_address": 64180488, + "vtable_address": 64184392, "methods": [ - 21348256, - 21348448, - 21329328, - 21338672, - 21338656, - 21329344, - 21339568, - 21329360, - 21333744, - 21329376, - 21329392 + 21351072, + 21351264, + 21332144, + 21341488, + 21341472, + 21332160, + 21342384, + 21332176, + 21336560, + 21332192, + 21332208 ], "bases": [ { @@ -64642,7 +64642,7 @@ }, { "type_name": "CClientUI", - "vtable_address": 63121032, + "vtable_address": 63124936, "methods": [ 12251152, 12251072, @@ -64778,7 +64778,7 @@ }, { "type_name": "CClientUIDialogManager", - "vtable_address": 63118144, + "vtable_address": 63122048, "methods": [ 12204192, 12204208, @@ -64874,35 +64874,35 @@ }, { "type_name": "CClientUIDialogPanel", - "vtable_address": 63144648, + "vtable_address": 63148552, "methods": [ 12043984, - 59816784, + 59820688, 12399520, 12399536, - 59817120, - 59817136, - 59817120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -64916,11 +64916,11 @@ 12233312, 12233168, 12433744, - 59825616, - 59825216, - 59836080, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -64935,30 +64935,30 @@ 12233520, 12233296, 12233760, - 59835792, + 59839696, 12399504, 12407936, 12405248, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12235872, @@ -64995,23 +64995,23 @@ }, { "type_name": "CCloud_Delete_Request", - "vtable_address": 63632816, + "vtable_address": 63636720, "methods": [ 16579328, 16622192, - 29643894, + 29647734, 16237728, 16701552, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16009552, 15997664, 16339584, 12011504, 16088640, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016544, 15987584 @@ -65047,23 +65047,23 @@ }, { "type_name": "CCloud_Delete_Response", - "vtable_address": 63632976, + "vtable_address": 63636880, "methods": [ 16051472, 16051488, - 29643894, + 29647734, 16237856, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16016576, 15987600 @@ -65110,23 +65110,23 @@ }, { "type_name": "CCloud_EnumerateUserFiles_Request", - "vtable_address": 63632496, + "vtable_address": 63636400, "methods": [ 16579040, 16608112, - 29643894, + 29647734, 16237408, 16681984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999760, 15997696, 16338768, 12011504, 16124512, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016480, 15987552 @@ -65162,23 +65162,23 @@ }, { "type_name": "CCloud_EnumerateUserFiles_Response", - "vtable_address": 63632656, + "vtable_address": 63636560, "methods": [ 16579168, 16636576, - 29643894, + 29647734, 16237584, 16722400, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16140640, 15997680, 16471696, 12011504, 16083008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016512, 15987568 @@ -65214,23 +65214,23 @@ }, { "type_name": "CCloud_GetFileDetails_Request", - "vtable_address": 63632016, + "vtable_address": 63635920, "methods": [ 16578752, 16607984, - 29643894, + 29647734, 16236960, 16681920, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025632, 15997728, 16337056, 12011504, 16094432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016384, 15987504 @@ -65266,23 +65266,23 @@ }, { "type_name": "CCloud_GetFileDetails_Response", - "vtable_address": 63632336, + "vtable_address": 63636240, "methods": [ 16646960, 16665040, - 29643894, + 29647734, 16237248, 16701472, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16034672, 15997712, 16338352, 12011504, 16044272, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016448, 15987536 @@ -65318,23 +65318,23 @@ }, { "type_name": "CCloud_GetUploadServerInfo_Request", - "vtable_address": 63631696, + "vtable_address": 63635600, "methods": [ 16578480, 16607856, - 29643894, + 29647734, 16236640, 16681872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999712, 15997760, 16336176, 12011504, 16073536, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016320, 15987472 @@ -65370,23 +65370,23 @@ }, { "type_name": "CCloud_GetUploadServerInfo_Response", - "vtable_address": 63631856, + "vtable_address": 63635760, "methods": [ 16578608, 16622032, - 29643894, + 29647734, 16236800, 16701120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15997744, 16336656, 12011504, 16076416, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016352, 15987488 @@ -65422,23 +65422,23 @@ }, { "type_name": "CCloud_UserFile", - "vtable_address": 63632176, + "vtable_address": 63636080, "methods": [ 16578880, 16629504, - 29643894, + 29647734, 16237120, 16701328, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16034432, 15994880, 16337632, 12011504, 16154432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016416, 15987520 @@ -65474,20 +65474,20 @@ }, { "type_name": "CCoJob", - "vtable_address": 64631080, - "methods": [ - 23275152, - 28980528, - 23275168, - 23275184, - 23275200, - 28977168, - 23275216, - 28982352, - 28982832, - 28977104, - 23275232, - 28977136 + "vtable_address": 64634984, + "methods": [ + 23277904, + 28984368, + 23277920, + 23277936, + 23277952, + 28981008, + 23277968, + 28986192, + 28986672, + 28980944, + 23277984, + 28980976 ], "bases": [], "model": { @@ -65498,13 +65498,13 @@ }, { "type_name": "CCollisionProperty", - "vtable_address": 64186936, + "vtable_address": 64190840, "methods": [ 13131520, - 21558048, - 21557424, - 18505728, - 21557440 + 21560864, + 21560240, + 18508032, + 21560256 ], "bases": [], "model": { @@ -65515,12 +65515,12 @@ }, { "type_name": "CCollisionProperty::NetworkVar_m_collisionAttribute", - "vtable_address": 64183792, + "vtable_address": 64187696, "methods": [ 13131504, - 21564736, - 21557408, - 21557456 + 21567552, + 21560224, + 21560272 ], "bases": [ { @@ -65542,7 +65542,7 @@ }, { "type_name": "CColorCorrectionMgr", - "vtable_address": 64184560, + "vtable_address": 64188464, "methods": [ 12204192, 12204208, @@ -65600,12 +65600,12 @@ 12205040, 12205056, 12205072, - 21557552, + 21560368, 12205104, - 21557536, - 21571440, - 21571344, - 21557520 + 21560352, + 21574256, + 21574160, + 21560336 ], "bases": [ { @@ -65627,23 +65627,23 @@ }, { "type_name": "CCommunity_GamePersonalDataCategoryInfo", - "vtable_address": 63592256, + "vtable_address": 63596160, "methods": [ 15683264, 15731808, - 29643894, + 29647734, 15227360, 15830928, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867872, 14848880, 15461504, 12011504, 14983824, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846432, 14809952 @@ -65679,23 +65679,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Request", - "vtable_address": 63592416, + "vtable_address": 63596320, "methods": [ 15683424, 15709136, - 29643894, + 29647734, 15227504, 15803952, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829456, 14848976, 15462016, 12011504, 14916512, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846464, 14809968 @@ -65731,23 +65731,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Response", - "vtable_address": 63592576, + "vtable_address": 63596480, "methods": [ 15683552, 15734624, - 29643894, + 29647734, 15227680, 15855888, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14904496, 14848960, 15477840, 12011504, 14924688, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846496, 14809984 @@ -65783,23 +65783,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Request", - "vtable_address": 63592736, + "vtable_address": 63596640, "methods": [ 15683728, 15731120, - 29643894, + 29647734, 15227840, 15831072, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868032, 14848944, 15462496, 12011504, 15023520, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846528, 14810000 @@ -65835,23 +65835,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Response", - "vtable_address": 63592896, + "vtable_address": 63596800, "methods": [ 15683888, 15731984, - 29643894, + 29647734, 15228080, 15831232, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14878624, 14848928, 15463104, 12011504, 15027488, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846560, 14810016 @@ -65887,23 +65887,23 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Request", - "vtable_address": 63593056, + "vtable_address": 63596960, "methods": [ 15684048, 15709264, - 29643894, + 29647734, 15228240, 15804000, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829504, 14848912, 15463760, 12011504, 14949120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846592, 14810032 @@ -65939,53 +65939,53 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Response", - "vtable_address": 63593216, + "vtable_address": 63597120, "methods": [ 15684176, 15709392, - 29643894, + 29647734, 15228384, 15804064, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829584, 14848896, 15464336, 12011504, 14916736, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846624, 14810048, - 29644624, + 29648464, 15616448, - 29644624, + 29648464, 15616320, - 29644624, + 29648464, 15616048, - 29644624, + 29648464, 15615776, - 29644624, + 29648464, 15960032, - 29644624, + 29648464, 15615680, - 29644624, + 29648464, 15615408, - 29644624, + 29648464, 15615280, - 29644624, + 29648464, 15959456, - 29644624, + 29648464, 15615152, - 29644624, + 29648464, 15615008, - 29644624, + 29648464, 15614864, - 29644624, + 29648464, 15614704, - 29644624, + 29648464, 15614576 ], "bases": [ @@ -66019,7 +66019,7 @@ }, { "type_name": "CCompetitiveCvarManager", - "vtable_address": 63688576, + "vtable_address": 63692480, "methods": [ 16919776, 12204208, @@ -66115,17 +66115,17 @@ }, { "type_name": "CComponentPredictionCopyDataOps", - "vtable_address": 64021680, - "methods": [ - 18581712, - 18887280, - 18886224, - 18514256, - 18509856, - 18509872, - 18514080, - 18509888, - 18513600, + "vtable_address": 64025584, + "methods": [ + 18584016, + 18890096, + 18889040, + 18516560, + 18512160, + 18512176, + 18516384, + 18512192, + 18515904, 13215968 ], "bases": [ @@ -66159,17 +66159,17 @@ }, { "type_name": "CComponentPredictionCopyDataOps", - "vtable_address": 64022000, - "methods": [ - 18580480, - 18878944, - 18877888, - 18514176, - 18509728, - 18509744, - 18513984, - 18509760, - 18513648, + "vtable_address": 64025904, + "methods": [ + 18582784, + 18881760, + 18880704, + 18516480, + 18512032, + 18512048, + 18516288, + 18512064, + 18515952, 13215968 ], "bases": [ @@ -66203,17 +66203,17 @@ }, { "type_name": "CComponentPredictionCopyDataOps", - "vtable_address": 64142792, - "methods": [ - 20634480, - 21103264, - 21101952, - 20578448, - 20574704, - 20574720, - 20578336, - 20574736, - 20576016, + "vtable_address": 64146696, + "methods": [ + 20637296, + 21106080, + 21104768, + 20581264, + 20577520, + 20577536, + 20581152, + 20577552, + 20578832, 13215968 ], "bases": [ @@ -66247,7 +66247,7 @@ }, { "type_name": "CCompositeMaterialDebugWindow", - "vtable_address": 64187184, + "vtable_address": 64191088, "methods": [ 12204192, 12204208, @@ -66257,11 +66257,11 @@ 12204272, 12204288, 12204304, - 18940480, + 18943296, 12204336, 12204352, 12204368, - 18940496, + 18943312, 12204400, 12204416, 12204432, @@ -66270,7 +66270,7 @@ 12204480, 12204496, 12204512, - 19015392, + 19018208, 12204544, 12204560, 12204576, @@ -66287,7 +66287,7 @@ 12204752, 12204768, 12204784, - 18940544, + 18943360, 12204816, 12204832, 12204848, @@ -66305,15 +66305,15 @@ 12205040, 12205056, 12205072, - 21568752, + 21571568, 12205104, - 21558096, - 21576704, - 21577120, - 21558080, - 21655808, - 21558064, - 21558064 + 21560912, + 21579520, + 21579936, + 21560896, + 21658624, + 21560880, + 21560880 ], "bases": [ { @@ -66357,37 +66357,37 @@ }, { "type_name": "CCompositeMaterialEditorDoc", - "vtable_address": 65040976, + "vtable_address": 65044880, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66178144 + "offset_to_top": 66182048 } } }, { "type_name": "CCompositeMaterialEditorDoc", - "vtable_address": 65189456, - "methods": [ - 62244480, - 62241984, - 61269328, - 61269360, - 61269376, - 61269392, - 61269344, - 61269408, - 61269424, - 61269440, - 61269312, - 61269456, - 61770848, - 61774064, - 61286688, - 62158240, - 62228528, - 61271088 + "vtable_address": 65193360, + "methods": [ + 62248384, + 62245888, + 61273232, + 61273264, + 61273280, + 61273296, + 61273248, + 61273312, + 61273328, + 61273344, + 61273216, + 61273360, + 61774752, + 61777968, + 61290592, + 62162144, + 62232432, + 61274992 ], "bases": [ { @@ -66420,7 +66420,7 @@ }, { "type_name": "CCompositeMaterialGameSystem", - "vtable_address": 63108584, + "vtable_address": 63112488, "methods": [ 12205440, 12204208, @@ -66527,7 +66527,7 @@ }, { "type_name": "CCompositeMaterialGameSystem", - "vtable_address": 63109104, + "vtable_address": 63113008, "methods": [ 12206512 ], @@ -66572,32 +66572,32 @@ }, { "type_name": "CCompositeMaterialKitTypeManager", - "vtable_address": 65040256, - "methods": [ - 61096032, - 61095760, - 61095776, - 61095792, - 61095808, - 61095824, - 61095840, - 61095856, - 61095872, - 61095888, - 61095904, - 61099536, - 61098688, - 61095920, - 61095936, - 61095952, - 61096048, - 61113712, - 61095968, - 61095984, - 61158960, - 61096080, - 61096144, - 61096064 + "vtable_address": 65044160, + "methods": [ + 61099936, + 61099664, + 61099680, + 61099696, + 61099712, + 61099728, + 61099744, + 61099760, + 61099776, + 61099792, + 61099808, + 61103440, + 61102592, + 61099824, + 61099840, + 61099856, + 61099952, + 61117616, + 61099872, + 61099888, + 61162864, + 61099984, + 61100048, + 61099968 ], "bases": [ { @@ -66630,23 +66630,23 @@ }, { "type_name": "CCompositeMaterialManager", - "vtable_address": 65040464, - "methods": [ - 61204016, - 61098352, - 61101136, - 61127104, - 61260160, - 61158320, - 61096016, - 61101984, - 61222480, - 61229344, - 61137840, - 61224496, - 61102352, - 61230176, - 61137840 + "vtable_address": 65044368, + "methods": [ + 61207920, + 61102256, + 61105040, + 61131008, + 61264064, + 61162224, + 61099920, + 61105888, + 61226384, + 61233248, + 61141744, + 61228400, + 61106256, + 61234080, + 61141744 ], "bases": [ { @@ -66668,15 +66668,15 @@ }, { "type_name": "CCompositeMaterialOwner", - "vtable_address": 65040792, + "vtable_address": 65044696, "methods": [ - 61266352, - 61266880, - 61264576, - 61264528, - 61264544, + 61270256, + 61270784, + 61268480, + 61268432, + 61268448, 12235456, - 61096000 + 61099904 ], "bases": [], "model": { @@ -66687,7 +66687,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 64773992, + "vtable_address": 64777896, "methods": [], "bases": [ { @@ -66709,7 +66709,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 64772312, + "vtable_address": 64776216, "methods": [], "bases": [ { @@ -66731,7 +66731,7 @@ }, { "type_name": "CCompressedAnim >", - "vtable_address": 64774352, + "vtable_address": 64778256, "methods": [], "bases": [ { @@ -66753,7 +66753,7 @@ }, { "type_name": "CCompressedAnim >", - "vtable_address": 64771592, + "vtable_address": 64775496, "methods": [], "bases": [ { @@ -66775,7 +66775,7 @@ }, { "type_name": "CCompressedAnim >", - "vtable_address": 64774712, + "vtable_address": 64778616, "methods": [], "bases": [ { @@ -66797,7 +66797,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 64773632, + "vtable_address": 64777536, "methods": [], "bases": [ { @@ -66819,7 +66819,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 64771232, + "vtable_address": 64775136, "methods": [], "bases": [ { @@ -66841,7 +66841,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 64772792, + "vtable_address": 64776696, "methods": [], "bases": [ { @@ -66863,21 +66863,21 @@ }, { "type_name": "CCompressedAnimQuaternion", - "vtable_address": 64772552, - "methods": [ - 32781632, - 32781648, - 32781664, - 32788864, - 32791552, - 32789696, - 32787840, - 32793360, - 32812944, - 32821120, - 32781680, - 32796736, - 32787920 + "vtable_address": 64776456, + "methods": [ + 32785472, + 32785488, + 32785504, + 32792704, + 32795392, + 32793536, + 32791680, + 32797200, + 32816784, + 32824960, + 32785520, + 32800576, + 32791760 ], "bases": [ { @@ -66910,21 +66910,21 @@ }, { "type_name": "CCompressedAnimVector3", - "vtable_address": 64771952, - "methods": [ - 32781424, - 32781440, - 32781456, - 32788944, - 32791488, - 32789568, - 32787968, - 32793808, - 32814224, - 32822336, - 32801072, - 32831280, - 32788080 + "vtable_address": 64775856, + "methods": [ + 32785264, + 32785280, + 32785296, + 32792784, + 32795328, + 32793408, + 32791808, + 32797648, + 32818064, + 32826176, + 32804912, + 32835120, + 32791920 ], "bases": [ { @@ -66957,21 +66957,21 @@ }, { "type_name": "CCompressedDeltaVector3", - "vtable_address": 64772072, - "methods": [ - 32781472, - 32781488, - 32781504, - 32794816, - 32791488, - 32789568, - 32787968, - 32793920, - 32813904, - 32822032, - 32799120, - 32829824, - 32788080 + "vtable_address": 64775976, + "methods": [ + 32785312, + 32785328, + 32785344, + 32798656, + 32795328, + 32793408, + 32791808, + 32797760, + 32817744, + 32825872, + 32802960, + 32833664, + 32791920 ], "bases": [ { @@ -67004,21 +67004,21 @@ }, { "type_name": "CCompressedFullBool", - "vtable_address": 64773872, + "vtable_address": 64777776, "methods": [ - 32782096, - 32782112, - 32782128, - 32784128, - 32791680, - 32793056, - 32784544, - 32792720, - 32810064, - 32818384, - 32784608, - 32805248, - 32784624 + 32785936, + 32785952, + 32785968, + 32787968, + 32795520, + 32796896, + 32788384, + 32796560, + 32813904, + 32822224, + 32788448, + 32809088, + 32788464 ], "bases": [ { @@ -67062,21 +67062,21 @@ }, { "type_name": "CCompressedFullChar", - "vtable_address": 64773272, + "vtable_address": 64777176, "methods": [ - 32781904, - 32781920, - 32781936, - 32785888, - 32791616, - 32789920, - 32785312, - 32794256, - 32816464, - 32824464, - 32786432, - 32825600, - 32785392 + 32785744, + 32785760, + 32785776, + 32789728, + 32795456, + 32793760, + 32789152, + 32798096, + 32820304, + 32828304, + 32790272, + 32829440, + 32789232 ], "bases": [ { @@ -67120,21 +67120,21 @@ }, { "type_name": "CCompressedFullColor32", - "vtable_address": 64774232, + "vtable_address": 64778136, "methods": [ - 32782192, - 32782208, - 32782224, - 32783520, - 32791744, - 32790416, - 32783744, - 32792944, - 32810704, - 32818992, - 32783808, - 32807168, - 32783824 + 32786032, + 32786048, + 32786064, + 32787360, + 32795584, + 32794256, + 32787584, + 32796784, + 32814544, + 32822832, + 32787648, + 32811008, + 32787664 ], "bases": [ { @@ -67178,21 +67178,21 @@ }, { "type_name": "CCompressedFullFloat", - "vtable_address": 64771472, - "methods": [ - 32781280, - 32781296, - 32781312, - 32788752, - 32791424, - 32788160, - 32788288, - 32792048, - 32809424, - 32817776, - 32788352, - 32795136, - 32788416 + "vtable_address": 64775376, + "methods": [ + 32785120, + 32785136, + 32785152, + 32792592, + 32795264, + 32792000, + 32792128, + 32795888, + 32813264, + 32821616, + 32792192, + 32798976, + 32792256 ], "bases": [ { @@ -67236,21 +67236,21 @@ }, { "type_name": "CCompressedFullInt", - "vtable_address": 64773512, + "vtable_address": 64777416, "methods": [ - 32782000, - 32782016, - 32782032, - 32785088, - 32791616, - 32789920, - 32785312, - 32794704, - 32815184, - 32823248, - 32785376, - 32840192, - 32785392 + 32785840, + 32785856, + 32785872, + 32788928, + 32795456, + 32793760, + 32789152, + 32798544, + 32819024, + 32827088, + 32789216, + 32844032, + 32789232 ], "bases": [ { @@ -67294,21 +67294,21 @@ }, { "type_name": "CCompressedFullQuaternion", - "vtable_address": 64772672, - "methods": [ - 32781696, - 32781712, - 32781728, - 32788576, - 32791552, - 32789696, - 32787840, - 32793472, - 32812624, - 32820816, - 32781744, - 32800448, - 32787920 + "vtable_address": 64776576, + "methods": [ + 32785536, + 32785552, + 32785568, + 32792416, + 32795392, + 32793536, + 32791680, + 32797312, + 32816464, + 32824656, + 32785584, + 32804288, + 32791760 ], "bases": [ { @@ -67341,21 +67341,21 @@ }, { "type_name": "CCompressedFullShort", - "vtable_address": 64773392, + "vtable_address": 64777296, "methods": [ - 32781952, - 32781968, - 32781984, - 32785408, - 32791616, - 32789920, - 32785312, - 32794368, - 32815824, - 32823856, + 32785792, + 32785808, 32785824, - 32840704, - 32785392 + 32789248, + 32795456, + 32793760, + 32789152, + 32798208, + 32819664, + 32827696, + 32789664, + 32844544, + 32789232 ], "bases": [ { @@ -67399,21 +67399,21 @@ }, { "type_name": "CCompressedFullVector2D", - "vtable_address": 64774592, - "methods": [ - 32782288, - 32782304, - 32782320, - 32783152, - 32791808, - 32790720, - 32783232, - 32792272, - 32811344, - 32819600, - 32783296, - 32806528, - 32783360 + "vtable_address": 64778496, + "methods": [ + 32786128, + 32786144, + 32786160, + 32786992, + 32795648, + 32794560, + 32787072, + 32796112, + 32815184, + 32823440, + 32787136, + 32810368, + 32787200 ], "bases": [ { @@ -67457,21 +67457,21 @@ }, { "type_name": "CCompressedFullVector3", - "vtable_address": 64772192, - "methods": [ - 32781520, - 32781536, - 32781552, - 32788640, - 32791488, - 32789568, - 32787968, - 32794032, - 32813584, - 32821728, - 32781568, - 32817152, - 32788080 + "vtable_address": 64776096, + "methods": [ + 32785360, + 32785376, + 32785392, + 32792480, + 32795328, + 32793408, + 32791808, + 32797872, + 32817424, + 32825568, + 32785408, + 32820992, + 32791920 ], "bases": [ { @@ -67504,21 +67504,21 @@ }, { "type_name": "CCompressedFullVector4D", - "vtable_address": 64774952, - "methods": [ - 32782384, - 32782400, - 32782416, - 32782688, - 32791872, - 32790848, - 32782784, - 32792496, - 32811984, - 32820208, - 32782864, - 32805888, - 32782960 + "vtable_address": 64778856, + "methods": [ + 32786224, + 32786240, + 32786256, + 32786528, + 32795712, + 32794688, + 32786624, + 32796336, + 32815824, + 32824048, + 32786704, + 32809728, + 32786800 ], "bases": [ { @@ -67562,7 +67562,7 @@ }, { "type_name": "CCompressedList, Vec4D >", - "vtable_address": 64771216, + "vtable_address": 64775120, "methods": [], "bases": [ { @@ -67595,21 +67595,21 @@ }, { "type_name": "CCompressedStaticBool", - "vtable_address": 64773752, + "vtable_address": 64777656, "methods": [ - 32782048, - 32782064, - 32782080, - 32784640, - 32791680, - 32793056, - 32784544, - 32792608, - 32810384, - 32818688, - 32784992, - 32802304, - 32784624 + 32785888, + 32785904, + 32785920, + 32788480, + 32795520, + 32796896, + 32788384, + 32796448, + 32814224, + 32822528, + 32788832, + 32806144, + 32788464 ], "bases": [ { @@ -67653,21 +67653,21 @@ }, { "type_name": "CCompressedStaticChar", - "vtable_address": 64773032, - "methods": [ - 32781808, - 32781824, - 32781840, - 32786976, - 32791616, - 32789920, - 32785312, - 32794144, - 32816784, - 32824768, - 32787488, - 32825088, - 32785392 + "vtable_address": 64776936, + "methods": [ + 32785648, + 32785664, + 32785680, + 32790816, + 32795456, + 32793760, + 32789152, + 32797984, + 32820624, + 32828608, + 32791328, + 32828928, + 32789232 ], "bases": [ { @@ -67711,21 +67711,21 @@ }, { "type_name": "CCompressedStaticColor32", - "vtable_address": 64774112, + "vtable_address": 64778016, "methods": [ - 32782144, - 32782160, - 32782176, - 32783840, - 32791744, - 32790416, - 32783744, - 32792832, - 32811024, - 32819296, - 32784032, - 32804064, - 32783824 + 32785984, + 32786000, + 32786016, + 32787680, + 32795584, + 32794256, + 32787584, + 32796672, + 32814864, + 32823136, + 32787872, + 32807904, + 32787664 ], "bases": [ { @@ -67769,21 +67769,21 @@ }, { "type_name": "CCompressedStaticFloat", - "vtable_address": 64771352, + "vtable_address": 64775256, "methods": [ - 32781232, - 32781248, - 32781264, - 32788816, - 32791424, - 32788160, - 32788288, - 32791936, - 32809744, - 32818080, - 32788432, - 32804640, - 32788416 + 32785072, + 32785088, + 32785104, + 32792656, + 32795264, + 32792000, + 32792128, + 32795776, + 32813584, + 32821920, + 32792272, + 32808480, + 32792256 ], "bases": [ { @@ -67827,21 +67827,21 @@ }, { "type_name": "CCompressedStaticFullVector3", - "vtable_address": 64771832, - "methods": [ - 32781376, - 32781392, - 32781408, - 32788704, - 32791488, - 32789568, - 32787968, - 32793696, - 32814544, - 32822640, - 32789056, - 32808832, - 32788080 + "vtable_address": 64775736, + "methods": [ + 32785216, + 32785232, + 32785248, + 32792544, + 32795328, + 32793408, + 32791808, + 32797536, + 32818384, + 32826480, + 32792896, + 32812672, + 32791920 ], "bases": [ { @@ -67874,21 +67874,21 @@ }, { "type_name": "CCompressedStaticInt", - "vtable_address": 64772912, - "methods": [ - 32781760, - 32781776, - 32781792, - 32787552, - 32791616, - 32789920, - 32785312, - 32794480, - 32815504, - 32823552, - 32787744, - 32826272, - 32785392 + "vtable_address": 64776816, + "methods": [ + 32785600, + 32785616, + 32785632, + 32791392, + 32795456, + 32793760, + 32789152, + 32798320, + 32819344, + 32827392, + 32791584, + 32830112, + 32789232 ], "bases": [ { @@ -67932,21 +67932,21 @@ }, { "type_name": "CCompressedStaticQuaternion", - "vtable_address": 64772432, - "methods": [ - 32781584, - 32781600, - 32781616, - 32788912, - 32791552, - 32789696, - 32787840, - 32793248, - 32813264, - 32821424, - 32795760, - 32807808, - 32787920 + "vtable_address": 64776336, + "methods": [ + 32785424, + 32785440, + 32785456, + 32792752, + 32795392, + 32793536, + 32791680, + 32797088, + 32817104, + 32825264, + 32799600, + 32811648, + 32791760 ], "bases": [ { @@ -67979,21 +67979,21 @@ }, { "type_name": "CCompressedStaticShort", - "vtable_address": 64773152, - "methods": [ - 32781856, - 32781872, - 32781888, - 32786496, - 32791616, - 32789920, - 32785312, - 32794592, - 32816144, - 32824160, - 32786896, - 32841152, - 32785392 + "vtable_address": 64777056, + "methods": [ + 32785696, + 32785712, + 32785728, + 32790336, + 32795456, + 32793760, + 32789152, + 32798432, + 32819984, + 32828000, + 32790736, + 32844992, + 32789232 ], "bases": [ { @@ -68037,21 +68037,21 @@ }, { "type_name": "CCompressedStaticVector2D", - "vtable_address": 64774472, + "vtable_address": 64778376, "methods": [ - 32782240, - 32782256, - 32782272, - 32783376, - 32791808, - 32790720, - 32783232, - 32792160, - 32811664, - 32819904, - 32783424, - 32803488, - 32783360 + 32786080, + 32786096, + 32786112, + 32787216, + 32795648, + 32794560, + 32787072, + 32796000, + 32815504, + 32823744, + 32787264, + 32807328, + 32787200 ], "bases": [ { @@ -68095,21 +68095,21 @@ }, { "type_name": "CCompressedStaticVector3", - "vtable_address": 64771712, - "methods": [ - 32781328, - 32781344, - 32781360, - 32789008, - 32791488, - 32789568, - 32787968, - 32793584, - 32814864, - 32822944, - 32797856, - 32832640, - 32788080 + "vtable_address": 64775616, + "methods": [ + 32785168, + 32785184, + 32785200, + 32792848, + 32795328, + 32793408, + 32791808, + 32797424, + 32818704, + 32826784, + 32801696, + 32836480, + 32791920 ], "bases": [ { @@ -68142,21 +68142,21 @@ }, { "type_name": "CCompressedStaticVector4D", - "vtable_address": 64774832, - "methods": [ - 32782336, - 32782352, - 32782368, - 32782976, - 32791872, - 32790848, - 32782784, - 32792384, - 32812304, - 32820512, - 32783040, - 32802880, - 32782960 + "vtable_address": 64778736, + "methods": [ + 32786176, + 32786192, + 32786208, + 32786816, + 32795712, + 32794688, + 32786624, + 32796224, + 32816144, + 32824352, + 32786880, + 32806720, + 32786800 ], "bases": [ { @@ -68200,11 +68200,11 @@ }, { "type_name": "CComputeShaderRenderer", - "vtable_address": 64624488, + "vtable_address": 64628392, "methods": [ - 28336544, - 28341344, - 28341696, + 28339936, + 28344736, + 28345088, 12236576 ], "bases": [ @@ -68227,7 +68227,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 63320640, + "vtable_address": 63324544, "methods": [ 13222416, 13222448 @@ -68283,7 +68283,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 63320672, + "vtable_address": 63324576, "methods": [ 13222512 ], @@ -68338,10 +68338,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64180592, + "vtable_address": 64184496, "methods": [ - 21329168, - 21329200 + 21331984, + 21332016 ], "bases": [ { @@ -68394,9 +68394,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64180624, + "vtable_address": 64184528, "methods": [ - 21329264 + 21332080 ], "bases": [ { @@ -68449,10 +68449,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64570856, + "vtable_address": 64574760, "methods": [ - 27283296, - 27283328 + 27286464, + 27286496 ], "bases": [ { @@ -68505,9 +68505,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64570888, + "vtable_address": 64574792, "methods": [ - 27283392 + 27286560 ], "bases": [ { @@ -68560,10 +68560,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64076688, + "vtable_address": 64080592, "methods": [ - 19364048, - 19364080 + 19366864, + 19366896 ], "bases": [ { @@ -68616,9 +68616,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64076720, + "vtable_address": 64080624, "methods": [ - 19364144 + 19366960 ], "bases": [ { @@ -68671,7 +68671,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 63338896, + "vtable_address": 63342800, "methods": [ 13826960, 13826992 @@ -68727,7 +68727,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 63338928, + "vtable_address": 63342832, "methods": [ 13827056 ], @@ -68782,10 +68782,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64158224, + "vtable_address": 64162128, "methods": [ - 21135072, - 21135104 + 21137888, + 21137920 ], "bases": [ { @@ -68838,9 +68838,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 64158256, + "vtable_address": 64162160, "methods": [ - 21135168 + 21137984 ], "bases": [ { @@ -68893,68 +68893,68 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65194080, - "methods": [ - 61876352, - 61878048, - 39223120, - 61269824, - 61269856, - 61269888, - 61284128, - 61269920, - 61269936, - 61270000, - 61284144, - 39222912, - 39222928, - 61269472, - 61284160, - 61269504, - 61269520, - 61505520, - 61636320, - 61328896, - 61415552, - 61270016, - 61270032, - 61615248, - 61643856, - 61588736, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581488, - 61683328, - 61443120, - 61620864, - 61623168, - 61566480, - 62050624, - 61329216, - 61329888, - 61330240, - 61697488, - 61642704, - 61269744, - 61291184, - 61716960, - 61603248, - 61603104, - 61270112, - 61270128, - 61627376, - 61731312, - 61269808, - 61566176, - 61515712, - 62288960, - 61571744, - 61284176, - 61284208 + "vtable_address": 65197984, + "methods": [ + 61880256, + 61881952, + 39226960, + 61273728, + 61273760, + 61273792, + 61288032, + 61273824, + 61273840, + 61273904, + 61288048, + 39226752, + 39226768, + 61273376, + 61288064, + 61273408, + 61273424, + 61509424, + 61640224, + 61332800, + 61419456, + 61273920, + 61273936, + 61619152, + 61647760, + 61592640, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585392, + 61687232, + 61447024, + 61624768, + 61627072, + 61570384, + 62054528, + 61333120, + 61333792, + 61334144, + 61701392, + 61646608, + 61273648, + 61295088, + 61720864, + 61607152, + 61607008, + 61274016, + 61274032, + 61631280, + 61735216, + 61273712, + 61570080, + 61519616, + 62292864, + 61575648, + 61288080, + 61288112 ], "bases": [ { @@ -69030,16 +69030,16 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65194576, + "vtable_address": 65198480, "methods": [ - 61290096, - 61503488, - 62289648, - 61284192, - 61284224, - 61516464, - 61565888, - 61571488 + 61294000, + 61507392, + 62293552, + 61288096, + 61288128, + 61520368, + 61569792, + 61575392 ], "bases": [ { @@ -69115,68 +69115,68 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65111752, + "vtable_address": 65115656, "methods": [ - 61830672, - 61830704, - 39223120, - 61269824, - 61269856, - 61269888, - 61277216, - 61269920, - 61269936, - 61270000, - 61277232, - 39222912, - 39222928, - 61269472, - 61277248, - 61269504, - 61269520, - 61342560, - 61640560, - 61342800, - 61413824, - 61270016, - 61270032, - 61612080, - 61647168, - 61592048, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584432, - 61689216, - 61454240, - 61432576, - 61432224, - 61484032, - 62028800, - 61343120, - 61343792, - 61344144, - 61697488, - 61286176, - 61269744, - 61277264, - 61716960, - 61618128, - 61617984, - 61270112, - 61270128, - 61632352, - 61723920, - 61269808, - 61285120, - 61475952, - 62266384, - 61578528, - 61277280, - 61277312 + 61834576, + 61834608, + 39226960, + 61273728, + 61273760, + 61273792, + 61281120, + 61273824, + 61273840, + 61273904, + 61281136, + 39226752, + 39226768, + 61273376, + 61281152, + 61273408, + 61273424, + 61346464, + 61644464, + 61346704, + 61417728, + 61273920, + 61273936, + 61615984, + 61651072, + 61595952, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588336, + 61693120, + 61458144, + 61436480, + 61436128, + 61487936, + 62032704, + 61347024, + 61347696, + 61348048, + 61701392, + 61290080, + 61273648, + 61281168, + 61720864, + 61622032, + 61621888, + 61274016, + 61274032, + 61636256, + 61727824, + 61273712, + 61289024, + 61479856, + 62270288, + 61582432, + 61281184, + 61281216 ], "bases": [ { @@ -69252,16 +69252,16 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65112248, + "vtable_address": 65116152, "methods": [ - 61285760, - 61559744, - 62266480, - 61277296, - 61277328, - 61476240, - 61285200, - 61578272 + 61289664, + 61563648, + 62270384, + 61281200, + 61281232, + 61480144, + 61289104, + 61582176 ], "bases": [ { @@ -69337,74 +69337,74 @@ }, { "type_name": "CConcreteToolAttr >, int, CUtlVectorMemory_Growable >, int, (unsigned long)0> >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65154832, - "methods": [ - 61845440, - 61847936, - 39223120, - 61269824, - 61269856, - 61269888, - 61275280, - 61269920, - 61269936, - 61270000, - 39222896, - 61275296, - 39222928, - 61269472, - 61275312, - 61269504, - 61269520, - 61322512, - 61636448, - 61322768, - 61415360, - 61270016, - 61270032, - 61615392, - 61644000, - 61588880, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581616, - 61683584, - 61518256, - 62205984, - 62206992, - 62207584, - 62023872, - 61323088, - 61323760, - 61324112, - 61697488, - 61557568, - 61269744, - 61275328, - 61716960, - 61603536, - 61603392, - 61270112, - 61270128, - 61627504, - 61731648, - 61269808, - 61275344, - 61542304, - 61712448, - 62210048, - 61665440, - 61697568, - 62282096, - 61275376, - 61563504, - 62208304, - 61275520, - 61275552 + "vtable_address": 65158736, + "methods": [ + 61849344, + 61851840, + 39226960, + 61273728, + 61273760, + 61273792, + 61279184, + 61273824, + 61273840, + 61273904, + 39226736, + 61279200, + 39226768, + 61273376, + 61279216, + 61273408, + 61273424, + 61326416, + 61640352, + 61326672, + 61419264, + 61273920, + 61273936, + 61619296, + 61647904, + 61592784, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585520, + 61687488, + 61522160, + 62209888, + 62210896, + 62211488, + 62027776, + 61326992, + 61327664, + 61328016, + 61701392, + 61561472, + 61273648, + 61279232, + 61720864, + 61607440, + 61607296, + 61274016, + 61274032, + 61631408, + 61735552, + 61273712, + 61279248, + 61546208, + 61716352, + 62213952, + 61669344, + 61701472, + 62286000, + 61279280, + 61567408, + 62212208, + 61279424, + 61279456 ], "bases": [ { @@ -69458,20 +69458,20 @@ }, { "type_name": "CConcreteToolAttr >, int, CUtlVectorMemory_Growable >, int, (unsigned long)0> >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65155376, - "methods": [ - 61542112, - 61714544, - 62211120, - 61664800, - 61698208, - 62282848, - 61275360, - 61275536, - 61275568, - 61563312, - 62209328, - 61275456 + "vtable_address": 65159280, + "methods": [ + 61546016, + 61718448, + 62215024, + 61668704, + 61702112, + 62286752, + 61279264, + 61279440, + 61279472, + 61567216, + 62213232, + 61279360 ], "bases": [ { @@ -69525,13 +69525,13 @@ }, { "type_name": "CConcreteToolAttr >, int, CUtlVectorMemory_Growable >, int, (unsigned long)0> >, CompositeMaterialAssemblyProcedure_t, void>::CArrayElementAccess", - "vtable_address": 65194656, + "vtable_address": 65198560, "methods": [ - 61560096, - 61443968, - 61443920, - 61594192, - 61704976 + 61564000, + 61447872, + 61447824, + 61598096, + 61708880 ], "bases": [ { @@ -69553,74 +69553,74 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>", - "vtable_address": 65116288, + "vtable_address": 65120192, "methods": [ - 61839888, - 61842288, - 39223120, - 61269824, - 61269856, - 61269888, - 61279232, - 61269920, - 61269936, - 61270000, - 39222896, - 61279248, - 39222928, - 61269472, - 61279264, - 61269504, - 61269520, - 61354560, - 61641584, - 61354816, - 61412288, - 61270016, - 61270032, - 61613232, - 61648320, - 61593200, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585456, - 61691264, - 61519264, - 62167744, - 62168768, - 62169392, - 62033728, - 61355136, - 61355808, - 61356160, - 61697488, - 61558608, - 61269744, - 61279280, - 61716960, - 61620432, - 61620288, - 61270112, - 61270128, - 61633376, - 61726608, - 61269808, - 61279296, - 61543840, - 61700096, - 61546368, - 61677328, - 61652096, - 62276080, - 61279328, - 61565344, - 61554240, - 61279472, - 61279504 + 61843792, + 61846192, + 39226960, + 61273728, + 61273760, + 61273792, + 61283136, + 61273824, + 61273840, + 61273904, + 39226736, + 61283152, + 39226768, + 61273376, + 61283168, + 61273408, + 61273424, + 61358464, + 61645488, + 61358720, + 61416192, + 61273920, + 61273936, + 61617136, + 61652224, + 61597104, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589360, + 61695168, + 61523168, + 62171648, + 62172672, + 62173296, + 62037632, + 61359040, + 61359712, + 61360064, + 61701392, + 61562512, + 61273648, + 61283184, + 61720864, + 61624336, + 61624192, + 61274016, + 61274032, + 61637280, + 61730512, + 61273712, + 61283200, + 61547744, + 61704000, + 61550272, + 61681232, + 61656000, + 62279984, + 61283232, + 61569248, + 61558144, + 61283376, + 61283408 ], "bases": [ { @@ -69674,20 +69674,20 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>", - "vtable_address": 65116832, - "methods": [ - 61543648, - 61701952, - 61547456, - 61676688, - 61651584, - 62276832, - 61279312, - 61279488, - 61279520, - 61565152, - 61555216, - 61279408 + "vtable_address": 65120736, + "methods": [ + 61547552, + 61705856, + 61551360, + 61680592, + 61655488, + 62280736, + 61283216, + 61283392, + 61283424, + 61569056, + 61559120, + 61283312 ], "bases": [ { @@ -69741,13 +69741,13 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>::CArrayElementAccess", - "vtable_address": 65189616, + "vtable_address": 65193520, "methods": [ - 61565680, - 61442880, - 61442832, - 61595552, - 61704160 + 61569584, + 61446784, + 61446736, + 61599456, + 61708064 ], "bases": [ { @@ -69769,74 +69769,74 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>", - "vtable_address": 65139024, - "methods": [ - 61961104, - 61976688, - 39223120, - 61269824, - 61269856, - 61269888, - 61276864, - 61269920, - 61269936, - 61270000, - 39222896, - 61276880, - 39222928, - 61269472, - 61276896, - 61269504, - 61269520, - 61340832, - 61640432, - 61341088, - 61414016, - 61270016, - 61270032, - 61611936, - 61647024, - 61591904, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584304, - 61688960, - 61534496, - 62189232, - 62200528, - 62201312, - 62028096, - 61341408, - 61342080, - 61342432, - 61697488, - 61558816, - 61269744, - 61276912, - 61716960, - 61617840, - 61617696, - 61270112, - 61270128, - 61632224, - 61723584, - 61269808, - 61276928, - 61543456, - 61698224, - 62204352, - 61526032, - 61659216, - 62273744, - 61276960, - 61564608, - 62203216, - 61277104, - 61277136 + "vtable_address": 65142928, + "methods": [ + 61965008, + 61980592, + 39226960, + 61273728, + 61273760, + 61273792, + 61280768, + 61273824, + 61273840, + 61273904, + 39226736, + 61280784, + 39226768, + 61273376, + 61280800, + 61273408, + 61273424, + 61344736, + 61644336, + 61344992, + 61417920, + 61273920, + 61273936, + 61615840, + 61650928, + 61595808, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588208, + 61692864, + 61538400, + 62193136, + 62204432, + 62205216, + 62032000, + 61345312, + 61345984, + 61346336, + 61701392, + 61562720, + 61273648, + 61280816, + 61720864, + 61621744, + 61621600, + 61274016, + 61274032, + 61636128, + 61727488, + 61273712, + 61280832, + 61547360, + 61702128, + 62208256, + 61529936, + 61663120, + 62277648, + 61280864, + 61568512, + 62207120, + 61281008, + 61281040 ], "bases": [ { @@ -69890,20 +69890,20 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>", - "vtable_address": 65139568, - "methods": [ - 61543264, - 61700080, - 62205328, - 61526688, - 61660048, - 62274320, - 61276944, - 61277120, - 61277152, - 61564416, - 62204336, - 61277040 + "vtable_address": 65143472, + "methods": [ + 61547168, + 61703984, + 62209232, + 61530592, + 61663952, + 62278224, + 61280848, + 61281024, + 61281056, + 61568320, + 62208240, + 61280944 ], "bases": [ { @@ -69957,13 +69957,13 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>::CArrayElementAccess", - "vtable_address": 65191872, + "vtable_address": 65195776, "methods": [ - 61561120, - 61442976, - 61442928, - 61595824, - 61704432 + 61565024, + 61446880, + 61446832, + 61599728, + 61708336 ], "bases": [ { @@ -69985,74 +69985,74 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>", - "vtable_address": 65129128, + "vtable_address": 65133032, "methods": [ - 61937136, - 61941888, - 39223120, - 61269824, - 61269856, - 61269888, - 61277856, - 61269920, - 61269936, - 61270000, - 39222896, - 61277872, - 39222928, - 61269472, - 61277888, - 61269504, - 61269520, - 61347712, - 61641072, - 61347952, - 61413056, - 61270016, - 61270032, - 61612656, - 61647744, - 61592624, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584944, - 61690240, - 62005392, - 62199824, - 62199088, - 62199440, - 62030912, - 61348272, - 61348944, - 61349296, - 61697488, - 61277904, - 61269744, - 61277968, - 61716960, - 61619280, - 61619136, - 61270112, - 61270128, - 61632864, - 61725264, - 61269808, - 61277984, - 61278016, - 61761728, - 62193920, - 61767424, - 62305872, - 62274912, - 61278144, - 61564976, - 62194528, - 61278288, - 61278320 + 61941040, + 61945792, + 39226960, + 61273728, + 61273760, + 61273792, + 61281760, + 61273824, + 61273840, + 61273904, + 39226736, + 61281776, + 39226768, + 61273376, + 61281792, + 61273408, + 61273424, + 61351616, + 61644976, + 61351856, + 61416960, + 61273920, + 61273936, + 61616560, + 61651648, + 61596528, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588848, + 61694144, + 62009296, + 62203728, + 62202992, + 62203344, + 62034816, + 61352176, + 61352848, + 61353200, + 61701392, + 61281808, + 61273648, + 61281872, + 61720864, + 61623184, + 61623040, + 61274016, + 61274032, + 61636768, + 61729168, + 61273712, + 61281888, + 61281920, + 61765632, + 62197824, + 61771328, + 62309776, + 62278816, + 61282048, + 61568880, + 62198432, + 61282192, + 61282224 ], "bases": [ { @@ -70106,20 +70106,20 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>", - "vtable_address": 65129672, + "vtable_address": 65133576, "methods": [ - 61278080, - 61763584, - 62194512, - 61767872, - 62306192, - 62275488, - 61278000, - 61278304, - 61278336, - 61564784, - 62195712, - 61278224 + 61281984, + 61767488, + 62198416, + 61771776, + 62310096, + 62279392, + 61281904, + 61282208, + 61282240, + 61568688, + 62199616, + 61282128 ], "bases": [ { @@ -70173,13 +70173,13 @@ }, { "type_name": "CConcreteToolAttr >, CompMatPropertyMutator_t, void>::CArrayElementAccess", - "vtable_address": 65190744, + "vtable_address": 65194648, "methods": [ - 61284432, - 61284512, - 61284528, - 61287232, - 61287456 + 61288336, + 61288416, + 61288432, + 61291136, + 61291360 ], "bases": [ { @@ -70201,74 +70201,74 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65162248, - "methods": [ - 61937728, - 61941280, - 39223120, - 61269824, - 61269856, - 61269888, + "vtable_address": 65166152, + "methods": [ + 61941632, + 61945184, + 39226960, + 61273728, + 61273760, + 61273792, + 61277936, + 61273824, + 61273840, + 61273904, + 39226736, + 61277952, + 39226768, + 61273376, + 61277968, + 61273408, + 61273424, + 61321248, + 61639584, + 61321488, + 61420416, + 61273920, + 61273936, + 61618432, + 61647040, + 61591920, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584752, + 61685952, + 62008592, + 62202288, + 62201936, + 62201552, + 62025664, + 61321808, + 61322480, + 61322832, + 61701392, + 61277984, + 61273648, + 61278048, + 61720864, + 61605712, + 61605568, + 61274016, 61274032, - 61269920, - 61269936, - 61270000, - 39222896, - 61274048, - 39222928, - 61269472, - 61274064, - 61269504, - 61269520, - 61317344, - 61635680, - 61317584, - 61416512, - 61270016, - 61270032, - 61614528, - 61643136, - 61588016, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580848, - 61682048, - 62004688, - 62198384, - 62198032, - 62197648, - 62021760, - 61317904, - 61318576, - 61318928, - 61697488, - 61274080, - 61269744, - 61274144, - 61716960, - 61601808, - 61601664, - 61270112, - 61270128, - 61626736, - 61729632, - 61269808, - 61274160, - 61274192, - 61759856, - 62195728, - 61766528, - 62306512, - 62278592, - 61274320, - 61562400, - 62196336, - 61274464, - 61274496 + 61630640, + 61733536, + 61273712, + 61278064, + 61278096, + 61763760, + 62199632, + 61770432, + 62310416, + 62282496, + 61278224, + 61566304, + 62200240, + 61278368, + 61278400 ], "bases": [ { @@ -70322,20 +70322,20 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65162792, - "methods": [ - 61274256, - 61761712, - 62196320, - 61766976, - 62306832, - 62279168, - 61274176, - 61274480, - 61274512, - 61562208, - 62197520, - 61274400 + "vtable_address": 65166696, + "methods": [ + 61278160, + 61765616, + 62200224, + 61770880, + 62310736, + 62283072, + 61278080, + 61278384, + 61278416, + 61566112, + 62201424, + 61278304 ], "bases": [ { @@ -70389,13 +70389,13 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>::CArrayElementAccess", - "vtable_address": 65198040, + "vtable_address": 65201944, "methods": [ - 61283760, - 61283840, - 61283856, - 61287344, - 61287552 + 61287664, + 61287744, + 61287760, + 61291248, + 61291456 ], "bases": [ { @@ -70417,74 +70417,74 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialEditorPoint_t, void>", - "vtable_address": 65184856, - "methods": [ - 61963760, - 61979184, - 39223120, - 61269824, - 61269856, - 61269888, - 61271456, - 61269920, - 61269936, - 61270000, - 39222896, - 61271472, - 39222928, - 61269472, - 61271488, - 61269504, - 61269520, - 61297360, - 61636960, - 61297616, - 61417856, - 61270016, - 61270032, - 61616544, - 61644576, - 61589456, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582128, - 61684608, - 61797008, - 62249616, - 62259712, - 62260304, - 62015424, - 61297936, - 61298608, - 61298960, - 61697488, - 61558192, - 61269744, - 61271504, - 61716960, - 61604880, - 61604736, - 61270112, - 61270128, - 61628016, - 61734336, - 61269808, - 61271520, - 61543072, - 61706336, - 62256768, - 61768320, - 61793744, - 62287792, - 61271552, - 61564240, - 62258064, - 61271696, - 61271728 + "vtable_address": 65188760, + "methods": [ + 61967664, + 61983088, + 39226960, + 61273728, + 61273760, + 61273792, + 61275360, + 61273824, + 61273840, + 61273904, + 39226736, + 61275376, + 39226768, + 61273376, + 61275392, + 61273408, + 61273424, + 61301264, + 61640864, + 61301520, + 61421760, + 61273920, + 61273936, + 61620448, + 61648480, + 61593360, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586032, + 61688512, + 61800912, + 62253520, + 62263616, + 62264208, + 62019328, + 61301840, + 61302512, + 61302864, + 61701392, + 61562096, + 61273648, + 61275408, + 61720864, + 61608784, + 61608640, + 61274016, + 61274032, + 61631920, + 61738240, + 61273712, + 61275424, + 61546976, + 61710240, + 62260672, + 61772224, + 61797648, + 62291696, + 61275456, + 61568144, + 62261968, + 61275600, + 61275632 ], "bases": [ { @@ -70538,20 +70538,20 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialEditorPoint_t, void>", - "vtable_address": 65185400, + "vtable_address": 65189304, "methods": [ - 61542880, - 61708288, - 62258048, - 61770208, - 61795024, - 62288368, - 61271536, - 61271712, - 61271744, - 61564048, - 62259696, - 61271632 + 61546784, + 61712192, + 62261952, + 61774112, + 61798928, + 62292272, + 61275440, + 61275616, + 61275648, + 61567952, + 62263600, + 61275536 ], "bases": [ { @@ -70605,13 +70605,13 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialEditorPoint_t, void>::CArrayElementAccess", - "vtable_address": 65200296, + "vtable_address": 65204200, "methods": [ - 61560912, - 61445056, - 61445008, - 61595280, - 61706064 + 61564816, + 61448960, + 61448912, + 61599184, + 61709968 ], "bases": [ { @@ -70633,74 +70633,74 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65159776, - "methods": [ - 61962576, - 61977968, - 39223120, - 61269824, - 61269856, - 61269888, - 61274576, - 61269920, - 61269936, - 61270000, - 39222896, - 61274592, - 39222928, - 61269472, - 61274608, - 61269504, - 61269520, - 61319056, - 61635936, - 61319312, - 61416128, - 61270016, - 61270032, - 61614816, - 61643424, - 61588304, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581104, - 61682560, - 61787168, - 62247072, - 62261024, - 62241264, - 62022464, - 61319632, - 61320304, - 61320656, - 61697488, - 61557984, - 61269744, - 61274624, - 61716960, - 61602384, - 61602240, - 61270112, - 61270128, - 61626992, - 61730304, - 61269808, - 61274640, - 61541536, - 61710288, - 62238480, - 61785904, - 61783472, - 62279760, - 61274672, - 61562768, - 62239712, - 61274816, - 61274848 + "vtable_address": 65163680, + "methods": [ + 61966480, + 61981872, + 39226960, + 61273728, + 61273760, + 61273792, + 61278480, + 61273824, + 61273840, + 61273904, + 39226736, + 61278496, + 39226768, + 61273376, + 61278512, + 61273408, + 61273424, + 61322960, + 61639840, + 61323216, + 61420032, + 61273920, + 61273936, + 61618720, + 61647328, + 61592208, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585008, + 61686464, + 61791072, + 62250976, + 62264928, + 62245168, + 62026368, + 61323536, + 61324208, + 61324560, + 61701392, + 61561888, + 61273648, + 61278528, + 61720864, + 61606288, + 61606144, + 61274016, + 61274032, + 61630896, + 61734208, + 61273712, + 61278544, + 61545440, + 61714192, + 62242384, + 61789808, + 61787376, + 62283664, + 61278576, + 61566672, + 62243616, + 61278720, + 61278752 ], "bases": [ { @@ -70754,20 +70754,20 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65160320, - "methods": [ - 61541344, - 61712256, - 62239696, - 61786528, - 61785136, - 62280336, - 61274656, - 61274832, - 61274864, - 61562576, - 62241248, - 61274752 + "vtable_address": 65164224, + "methods": [ + 61545248, + 61716160, + 62243600, + 61790432, + 61789040, + 62284240, + 61278560, + 61278736, + 61278768, + 61566480, + 62245152, + 61278656 ], "bases": [ { @@ -70821,13 +70821,13 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>::CArrayElementAccess", - "vtable_address": 65196912, + "vtable_address": 65200816, "methods": [ - 61560496, - 61444160, - 61444112, - 61594736, - 61705520 + 61564400, + 61448064, + 61448016, + 61598640, + 61709424 ], "bases": [ { @@ -70849,74 +70849,74 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialInputContainer_t, void>", - "vtable_address": 65151104, - "methods": [ - 61961760, - 61977360, - 39223120, - 61269824, - 61269856, - 61269888, - 61276080, - 61269920, - 61269936, - 61270000, - 39222896, - 61276096, - 39222928, - 61269472, - 61276112, - 61269504, - 61269520, - 61333872, - 61635168, - 61334128, - 61414784, - 61270016, - 61270032, - 61613952, - 61642272, - 61587440, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580336, - 61681024, - 61745808, - 62052736, - 62053744, - 62054336, - 62025984, - 61334448, - 61335120, - 61335472, - 61697488, - 61557360, - 61269744, - 61276128, - 61716960, - 61600656, - 61600512, - 61270112, - 61270128, - 61624208, - 61728288, - 61269808, - 61276144, - 61541152, - 61630064, - 62056208, - 61744544, - 61742720, - 62277424, - 61276176, - 61562032, - 62057584, - 61276320, - 61276352 + "vtable_address": 65155008, + "methods": [ + 61965664, + 61981264, + 39226960, + 61273728, + 61273760, + 61273792, + 61279984, + 61273824, + 61273840, + 61273904, + 39226736, + 61280000, + 39226768, + 61273376, + 61280016, + 61273408, + 61273424, + 61337776, + 61639072, + 61338032, + 61418688, + 61273920, + 61273936, + 61617856, + 61646176, + 61591344, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584240, + 61684928, + 61749712, + 62056640, + 62057648, + 62058240, + 62029888, + 61338352, + 61339024, + 61339376, + 61701392, + 61561264, + 61273648, + 61280032, + 61720864, + 61604560, + 61604416, + 61274016, + 61274032, + 61628112, + 61732192, + 61273712, + 61280048, + 61545056, + 61633968, + 62060112, + 61748448, + 61746624, + 62281328, + 61280080, + 61565936, + 62061488, + 61280224, + 61280256 ], "bases": [ { @@ -70970,20 +70970,20 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialInputContainer_t, void>", - "vtable_address": 65151648, - "methods": [ - 61540960, - 61632080, - 62057568, - 61745168, - 61743664, - 62278000, - 61276160, - 61276336, - 61276368, - 61561840, - 62058976, - 61276256 + "vtable_address": 65155552, + "methods": [ + 61544864, + 61635984, + 62061472, + 61749072, + 61747568, + 62281904, + 61280064, + 61280240, + 61280272, + 61565744, + 62062880, + 61280160 ], "bases": [ { @@ -71037,13 +71037,13 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialInputContainer_t, void>::CArrayElementAccess", - "vtable_address": 65193000, + "vtable_address": 65196904, "methods": [ - 61559888, - 61443072, - 61443024, - 61593920, - 61704704 + 61563792, + 61446976, + 61446928, + 61597824, + 61708608 ], "bases": [ { @@ -71065,74 +71065,74 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65157304, - "methods": [ - 61992336, - 61994208, - 39223120, - 61269824, - 61269856, - 61269888, - 61274928, - 61269920, - 61269936, - 61270000, - 39222896, - 61274944, - 39222928, - 61269472, - 61274960, - 61269504, - 61269520, - 61320784, - 61636192, - 61321040, - 61415744, - 61270016, - 61270032, - 61615104, - 61643712, - 61588592, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581360, - 61683072, - 61530448, - 62211136, - 62212224, - 62212928, - 62023168, - 61321360, - 61322032, - 61322384, - 61697488, - 61557776, - 61269744, - 61274976, - 61716960, - 61602960, - 61602816, - 61270112, - 61270128, - 61627248, - 61730976, - 61269808, - 61274992, - 61541920, - 61701968, - 62214512, - 62172448, - 61528976, - 62280928, - 61275024, - 61563136, - 62215536, - 61275168, - 61275200 + "vtable_address": 65161208, + "methods": [ + 61996240, + 61998112, + 39226960, + 61273728, + 61273760, + 61273792, + 61278832, + 61273824, + 61273840, + 61273904, + 39226736, + 61278848, + 39226768, + 61273376, + 61278864, + 61273408, + 61273424, + 61324688, + 61640096, + 61324944, + 61419648, + 61273920, + 61273936, + 61619008, + 61647616, + 61592496, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585264, + 61686976, + 61534352, + 62215040, + 62216128, + 62216832, + 62027072, + 61325264, + 61325936, + 61326288, + 61701392, + 61561680, + 61273648, + 61278880, + 61720864, + 61606864, + 61606720, + 61274016, + 61274032, + 61631152, + 61734880, + 61273712, + 61278896, + 61545824, + 61705872, + 62218416, + 62176352, + 61532880, + 62284832, + 61278928, + 61567040, + 62219440, + 61279072, + 61279104 ], "bases": [ { @@ -71186,20 +71186,20 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>", - "vtable_address": 65157848, - "methods": [ - 61541728, - 61703872, - 62215520, - 62172928, - 61529680, - 62281504, - 61275008, - 61275184, - 61275216, - 61562944, - 62216816, - 61275104 + "vtable_address": 65161752, + "methods": [ + 61545632, + 61707776, + 62219424, + 62176832, + 61533584, + 62285408, + 61278912, + 61279088, + 61279120, + 61566848, + 62220720, + 61279008 ], "bases": [ { @@ -71253,13 +71253,13 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialAssemblyProcedure_t, void>::CArrayElementAccess", - "vtable_address": 65195784, + "vtable_address": 65199688, "methods": [ - 61560304, - 61444064, - 61444016, - 61594464, - 61705248 + 61564208, + 61447968, + 61447920, + 61598368, + 61709152 ], "bases": [ { @@ -71281,74 +71281,74 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialEditorPoint_t, void>", - "vtable_address": 65187328, - "methods": [ - 61965536, - 61980976, - 39223120, - 61269824, - 61269856, - 61269888, - 61271104, - 61269920, - 61269936, - 61270000, - 39222896, - 61271120, - 39222928, - 61269472, - 61271136, - 61269504, - 61269520, - 61295632, - 61636704, - 61295888, - 61418240, - 61270016, - 61270032, - 61616256, - 61644288, - 61589168, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581872, - 61684096, - 62012736, - 62229936, - 62230944, - 62231536, - 62014720, - 61296208, - 61296880, - 61297232, - 61697488, - 61558400, - 61269744, - 61271152, - 61716960, - 61604304, - 61604160, - 61270112, - 61270128, - 61627760, - 61733664, - 61269808, - 61271168, - 61542688, - 61624592, - 62232848, - 61691776, - 62007216, - 62286624, - 61271200, - 61563872, - 62234208, - 61271344, - 61271376 + "vtable_address": 65191232, + "methods": [ + 61969440, + 61984880, + 39226960, + 61273728, + 61273760, + 61273792, + 61275008, + 61273824, + 61273840, + 61273904, + 39226736, + 61275024, + 39226768, + 61273376, + 61275040, + 61273408, + 61273424, + 61299536, + 61640608, + 61299792, + 61422144, + 61273920, + 61273936, + 61620160, + 61648192, + 61593072, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585776, + 61688000, + 62016640, + 62233840, + 62234848, + 62235440, + 62018624, + 61300112, + 61300784, + 61301136, + 61701392, + 61562304, + 61273648, + 61275056, + 61720864, + 61608208, + 61608064, + 61274016, + 61274032, + 61631664, + 61737568, + 61273712, + 61275072, + 61546592, + 61628496, + 62236752, + 61695680, + 62011120, + 62290528, + 61275104, + 61567776, + 62238112, + 61275248, + 61275280 ], "bases": [ { @@ -71402,20 +71402,20 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialEditorPoint_t, void>", - "vtable_address": 65187872, - "methods": [ - 61542496, - 61626592, - 62234192, - 61692752, - 62008544, - 62287200, - 61271184, - 61271360, - 61271392, - 61563680, - 62235712, - 61271280 + "vtable_address": 65191776, + "methods": [ + 61546400, + 61630496, + 62238096, + 61696656, + 62012448, + 62291104, + 61275088, + 61275264, + 61275296, + 61567584, + 62239616, + 61275184 ], "bases": [ { @@ -71469,13 +71469,13 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterialEditorPoint_t, void>::CArrayElementAccess", - "vtable_address": 65201424, + "vtable_address": 65205328, "methods": [ - 61560704, - 61442784, - 61442736, - 61595008, - 61703888 + 61564608, + 61446688, + 61446640, + 61598912, + 61707792 ], "bases": [ { @@ -71497,74 +71497,74 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterial_t, void>", - "vtable_address": 65170544, - "methods": [ - 61963168, - 61978576, - 39223120, - 61269824, - 61269856, - 61269888, - 61273280, - 61269920, - 61269936, - 61270000, - 39222896, - 61273296, - 39222928, - 61269472, - 61273312, - 61269504, - 61269520, - 61310688, - 61633760, - 61310944, - 61714800, - 61270016, - 61270032, - 61615824, - 61639152, - 61585856, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576736, - 61678208, - 61517264, - 62219696, - 62223728, - 62224320, - 62019648, - 61311264, - 61311936, - 61312288, - 61697488, - 61556640, - 61269744, - 61273328, - 61716960, - 61596720, - 61596576, - 61270112, - 61270128, - 61622144, - 61732656, - 61269808, - 61273344, - 61540768, - 61708304, - 62178240, - 61661520, - 62176704, - 62283520, + "vtable_address": 65174448, + "methods": [ + 61967072, + 61982480, + 39226960, + 61273728, + 61273760, + 61273792, + 61277184, + 61273824, + 61273840, + 61273904, + 39226736, + 61277200, + 39226768, 61273376, - 61561664, - 62179552, - 61273520, - 61273552 + 61277216, + 61273408, + 61273424, + 61314592, + 61637664, + 61314848, + 61718704, + 61273920, + 61273936, + 61619728, + 61643056, + 61589760, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580640, + 61682112, + 61521168, + 62223600, + 62227632, + 62228224, + 62023552, + 61315168, + 61315840, + 61316192, + 61701392, + 61560544, + 61273648, + 61277232, + 61720864, + 61600624, + 61600480, + 61274016, + 61274032, + 61626048, + 61736560, + 61273712, + 61277248, + 61544672, + 61712208, + 62182144, + 61665424, + 62180608, + 62287424, + 61277280, + 61565568, + 62183456, + 61277424, + 61277456 ], "bases": [ { @@ -71618,20 +71618,20 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterial_t, void>", - "vtable_address": 65171088, - "methods": [ - 61540576, - 61710272, - 62179536, - 61660880, - 62178224, - 62284096, - 61273360, - 61273536, - 61273568, - 61561472, - 62180752, - 61273456 + "vtable_address": 65174992, + "methods": [ + 61544480, + 61714176, + 62183440, + 61664784, + 62182128, + 62288000, + 61277264, + 61277440, + 61277472, + 61565376, + 62184656, + 61277360 ], "bases": [ { @@ -71685,13 +71685,13 @@ }, { "type_name": "CConcreteToolAttr >, CompositeMaterial_t, void>::CArrayElementAccess", - "vtable_address": 65199168, + "vtable_address": 65203072, "methods": [ - 61559536, - 61444960, - 61444912, - 61593648, - 61705792 + 61563440, + 61448864, + 61448816, + 61597552, + 61709696 ], "bases": [ { @@ -71713,71 +71713,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65191248, - "methods": [ - 61952736, - 61960192, - 39223120, - 61269824, - 61269856, - 61269888, - 61284368, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61658848, - 61269472, - 61284384, - 61269504, - 61269520, - 61505248, - 61640304, - 61358016, - 61414208, - 61757392, - 61270032, - 61611792, - 61646880, - 61591760, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584176, - 61688704, - 61755136, - 61550800, - 61515280, - 61533312, - 62052032, - 61358336, - 61359008, - 61757424, - 61757888, - 61603680, - 61269744, - 61284400, - 61716960, - 61617552, - 61617408, - 61270112, - 61270128, - 61632096, - 61723248, - 61269808, - 62097664, - 61756480, - 61757184, - 61756832, - 61695648, - 61695888, - 61697168, - 61758480, - 61546000 + "vtable_address": 65195152, + "methods": [ + 61956640, + 61964096, + 39226960, + 61273728, + 61273760, + 61273792, + 61288272, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61662752, + 61273376, + 61288288, + 61273408, + 61273424, + 61509152, + 61644208, + 61361920, + 61418112, + 61761296, + 61273936, + 61615696, + 61650784, + 61595664, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588080, + 61692608, + 61759040, + 61554704, + 61519184, + 61537216, + 62055936, + 61362240, + 61362912, + 61761328, + 61761792, + 61607584, + 61273648, + 61288304, + 61720864, + 61621456, + 61621312, + 61274016, + 61274032, + 61636000, + 61727152, + 61273712, + 62101568, + 61760384, + 61761088, + 61760736, + 61699552, + 61699792, + 61701072, + 61762384, + 61549904 ], "bases": [ { @@ -71831,19 +71831,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65191768, + "vtable_address": 65195672, "methods": [ - 62097744, - 61756336, - 61756624, - 61756944, - 39223040, - 61695728, - 61695968, - 61697248, - 61545856, - 39225728, - 61758272 + 62101648, + 61760240, + 61760528, + 61760848, + 39226880, + 61699632, + 61699872, + 61701152, + 61549760, + 39229568, + 61762176 ], "bases": [ { @@ -71897,71 +71897,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65190120, - "methods": [ - 61953200, - 61960672, - 39223120, - 61269824, - 61269856, - 61269888, - 61284544, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61389360, - 61269472, - 61284560, - 61269504, - 61269520, - 61359488, - 61640944, - 61359728, - 61413248, - 61779248, - 61270032, - 61612512, - 61647600, - 61592480, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584816, - 61689984, - 61765376, - 62191232, - 62192256, - 62191888, - 62014016, - 61360048, - 61360720, - 61780656, - 61780944, - 61284576, - 61269744, - 61284640, - 61716960, - 61618992, - 61618848, - 61270112, - 61270128, - 61632736, - 61724928, - 61269808, - 62115424, - 61780224, - 61782336, - 61781104, - 61779088, - 61779168, - 61779760, - 61781728, - 61552640 + "vtable_address": 65194024, + "methods": [ + 61957104, + 61964576, + 39226960, + 61273728, + 61273760, + 61273792, + 61288448, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61393264, + 61273376, + 61288464, + 61273408, + 61273424, + 61363392, + 61644848, + 61363632, + 61417152, + 61783152, + 61273936, + 61616416, + 61651504, + 61596384, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588720, + 61693888, + 61769280, + 62195136, + 62196160, + 62195792, + 62017920, + 61363952, + 61364624, + 61784560, + 61784848, + 61288480, + 61273648, + 61288544, + 61720864, + 61622896, + 61622752, + 61274016, + 61274032, + 61636640, + 61728832, + 61273712, + 62119328, + 61784128, + 61786240, + 61785008, + 61782992, + 61783072, + 61783664, + 61785632, + 61556544 ], "bases": [ { @@ -72015,19 +72015,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65190640, + "vtable_address": 65194544, "methods": [ - 62115504, - 61780368, - 61781216, - 61782544, - 39223040, - 61779104, - 61779184, - 61779776, - 61552496, - 39225728, - 61781920 + 62119408, + 61784272, + 61785120, + 61786448, + 39226880, + 61783008, + 61783088, + 61783680, + 61556400, + 39229568, + 61785824 ], "bases": [ { @@ -72081,71 +72081,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65197416, - "methods": [ - 61951088, - 61958432, - 39223120, - 61269824, - 61269856, - 61269888, - 61283872, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61389072, - 61269472, - 61283888, - 61269504, - 61269520, - 61324240, - 61635552, - 61324480, - 61416704, - 61779280, - 61270032, - 61614384, - 61642992, - 61587872, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580720, - 61681792, - 61764224, - 62192576, - 62193232, - 62193552, - 62048512, - 61324800, - 61325472, - 61779312, - 61779600, - 61283904, - 61269744, - 61283968, - 61716960, - 61601520, - 61601376, - 61270112, - 61270128, - 61626608, - 61729296, - 61269808, - 62115616, - 61778176, - 61778880, - 61778528, - 61779136, - 61779216, - 61779792, - 61780032, - 61552896 + "vtable_address": 65201320, + "methods": [ + 61954992, + 61962336, + 39226960, + 61273728, + 61273760, + 61273792, + 61287776, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61392976, + 61273376, + 61287792, + 61273408, + 61273424, + 61328144, + 61639456, + 61328384, + 61420608, + 61783184, + 61273936, + 61618288, + 61646896, + 61591776, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584624, + 61685696, + 61768128, + 62196480, + 62197136, + 62197456, + 62052416, + 61328704, + 61329376, + 61783216, + 61783504, + 61287808, + 61273648, + 61287872, + 61720864, + 61605424, + 61605280, + 61274016, + 61274032, + 61630512, + 61733200, + 61273712, + 62119520, + 61782080, + 61782784, + 61782432, + 61783040, + 61783120, + 61783696, + 61783936, + 61556800 ], "bases": [ { @@ -72199,19 +72199,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65197936, + "vtable_address": 65201840, "methods": [ - 62115696, - 61778032, - 61778320, - 61778640, - 39223040, - 61779152, - 61779232, - 61779808, - 61552752, - 39225728, - 61779824 + 62119600, + 61781936, + 61782224, + 61782544, + 39226880, + 61783056, + 61783136, + 61783712, + 61556656, + 39229568, + 61783728 ], "bases": [ { @@ -72265,71 +72265,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65199672, - "methods": [ - 61950288, - 61957568, - 39223120, - 61269824, - 61269856, - 61269888, - 61283632, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61658464, - 61269472, - 61283648, - 61269504, - 61269520, - 61506608, - 61636832, - 61309136, - 61418048, - 61799136, - 61270032, - 61616400, - 61644432, - 61589312, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582000, - 61684352, - 61796304, - 62254368, - 62255504, - 62255888, - 62047104, - 61309456, - 61310128, - 61799168, - 61799648, - 61599264, - 61269744, - 61283664, - 61716960, - 61604592, - 61604448, - 61270112, - 61270128, - 61627888, - 61734000, - 61269808, - 62066928, - 61798224, - 61798928, - 61798576, - 61694688, - 61694928, - 61696528, - 61800240, - 61550688 + "vtable_address": 65203576, + "methods": [ + 61954192, + 61961472, + 39226960, + 61273728, + 61273760, + 61273792, + 61287536, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61662368, + 61273376, + 61287552, + 61273408, + 61273424, + 61510512, + 61640736, + 61313040, + 61421952, + 61803040, + 61273936, + 61620304, + 61648336, + 61593216, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585904, + 61688256, + 61800208, + 62258272, + 62259408, + 62259792, + 62051008, + 61313360, + 61314032, + 61803072, + 61803552, + 61603168, + 61273648, + 61287568, + 61720864, + 61608496, + 61608352, + 61274016, + 61274032, + 61631792, + 61737904, + 61273712, + 62070832, + 61802128, + 61802832, + 61802480, + 61698592, + 61698832, + 61700432, + 61804144, + 61554592 ], "bases": [ { @@ -72383,19 +72383,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65200192, + "vtable_address": 65204096, "methods": [ - 62067008, - 61798080, - 61798368, - 61798688, - 39223040, - 61694768, - 61695008, - 61696608, - 61550544, - 39225728, - 61800032 + 62070912, + 61801984, + 61802272, + 61802592, + 39226880, + 61698672, + 61698912, + 61700512, + 61554448, + 39229568, + 61803936 ], "bases": [ { @@ -72449,71 +72449,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65196288, - "methods": [ - 61951488, - 61958864, - 39223120, - 61269824, - 61269856, - 61269888, - 61284000, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61657696, - 61269472, - 61284016, - 61269504, - 61269520, - 61506064, - 61635808, - 61325952, - 61416320, - 61790528, - 61270032, - 61614672, - 61643280, - 61588160, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580976, - 61682304, - 61785152, - 62236080, - 62237216, - 62237600, - 62049216, - 61326272, - 61326944, - 61790560, - 61791040, - 61599072, - 61269744, - 61284032, - 61716960, - 61602096, - 61601952, - 61270112, - 61270128, - 61626864, - 61729968, - 61269808, - 62123808, - 61789616, - 61790320, - 61789968, - 61695168, - 61695408, - 61696848, - 61791632, - 61550016 + "vtable_address": 65200192, + "methods": [ + 61955392, + 61962768, + 39226960, + 61273728, + 61273760, + 61273792, + 61287904, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61661600, + 61273376, + 61287920, + 61273408, + 61273424, + 61509968, + 61639712, + 61329856, + 61420224, + 61794432, + 61273936, + 61618576, + 61647184, + 61592064, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584880, + 61686208, + 61789056, + 62239984, + 62241120, + 62241504, + 62053120, + 61330176, + 61330848, + 61794464, + 61794944, + 61602976, + 61273648, + 61287936, + 61720864, + 61606000, + 61605856, + 61274016, + 61274032, + 61630768, + 61733872, + 61273712, + 62127712, + 61793520, + 61794224, + 61793872, + 61699072, + 61699312, + 61700752, + 61795536, + 61553920 ], "bases": [ { @@ -72567,19 +72567,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65196808, + "vtable_address": 65200712, "methods": [ - 62123888, - 61789472, - 61789760, - 61790080, - 39223040, - 61695248, - 61695488, - 61696928, - 61549872, - 39225728, - 61791424 + 62127792, + 61793376, + 61793664, + 61793984, + 39226880, + 61699152, + 61699392, + 61700832, + 61553776, + 39229568, + 61795328 ], "bases": [ { @@ -72633,71 +72633,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65121064, - "methods": [ - 62001600, - 62003216, - 39223120, - 61269824, - 61269856, - 61269888, - 61279072, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61361200, - 61269472, - 61279088, - 61269504, - 61269520, - 61352848, - 61641456, - 61353088, - 61412480, - 61750032, - 61270032, - 61613088, - 61648176, - 61593056, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585328, - 61691008, - 61741856, - 61409200, - 61409856, - 61464192, - 62033024, - 61353408, - 61354080, - 61752656, - 61752944, - 61279104, - 61269744, - 61279168, - 61716960, - 61620144, - 61620000, - 61270112, - 61270128, - 61633248, - 61726272, - 61269808, - 62092432, - 61752368, - 61754336, - 61753216, - 61751616, - 61751696, - 61751760, - 61753728, - 61552128 + "vtable_address": 65124968, + "methods": [ + 62005504, + 62007120, + 39226960, + 61273728, + 61273760, + 61273792, + 61282976, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61365104, + 61273376, + 61282992, + 61273408, + 61273424, + 61356752, + 61645360, + 61356992, + 61416384, + 61753936, + 61273936, + 61616992, + 61652080, + 61596960, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589232, + 61694912, + 61745760, + 61413104, + 61413760, + 61468096, + 62036928, + 61357312, + 61357984, + 61756560, + 61756848, + 61283008, + 61273648, + 61283072, + 61720864, + 61624048, + 61623904, + 61274016, + 61274032, + 61637152, + 61730176, + 61273712, + 62096336, + 61756272, + 61758240, + 61757120, + 61755520, + 61755600, + 61755664, + 61757632, + 61556032 ], "bases": [ { @@ -72751,19 +72751,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65121584, + "vtable_address": 65125488, "methods": [ - 62092512, - 61752512, - 61753328, - 61754544, - 39223040, - 61751632, - 61751712, - 61751776, - 61551984, - 39225728, - 61753920 + 62096416, + 61756416, + 61757232, + 61758448, + 39226880, + 61755536, + 61755616, + 61755680, + 61555888, + 39229568, + 61757824 ], "bases": [ { @@ -72817,71 +72817,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65192376, - "methods": [ - 61952336, - 61959760, - 39223120, - 61269824, - 61269856, - 61269888, - 61284240, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61389216, - 61269472, - 61284256, - 61269504, - 61269520, - 61339040, - 61635040, - 61339280, - 61414976, - 61750064, - 61270032, - 61613808, - 61642128, - 61587296, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580208, - 61680768, - 61743680, - 61408224, - 61408880, - 61464560, - 62051328, - 61339600, - 61340272, - 61750096, - 61750384, - 61284272, - 61269744, - 61284336, - 61716960, - 61600368, - 61600224, - 61270112, - 61270128, - 61624080, - 61727952, - 61269808, - 62092624, - 61750688, - 61751072, - 61751488, - 61751648, - 61751728, - 61751792, - 61752032, - 61552384 + "vtable_address": 65196280, + "methods": [ + 61956240, + 61963664, + 39226960, + 61273728, + 61273760, + 61273792, + 61288144, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61393120, + 61273376, + 61288160, + 61273408, + 61273424, + 61342944, + 61638944, + 61343184, + 61418880, + 61753968, + 61273936, + 61617712, + 61646032, + 61591200, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584112, + 61684672, + 61747584, + 61412128, + 61412784, + 61468464, + 62055232, + 61343504, + 61344176, + 61754000, + 61754288, + 61288176, + 61273648, + 61288240, + 61720864, + 61604272, + 61604128, + 61274016, + 61274032, + 61627984, + 61731856, + 61273712, + 62096528, + 61754592, + 61754976, + 61755392, + 61755552, + 61755632, + 61755696, + 61755936, + 61556288 ], "bases": [ { @@ -72935,19 +72935,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65192896, + "vtable_address": 65196800, "methods": [ - 62092704, - 61750544, - 61751280, - 61750832, - 39223040, - 61751664, - 61751744, - 61751808, - 61552240, - 39225728, - 61751824 + 62096608, + 61754448, + 61755184, + 61754736, + 39226880, + 61755568, + 61755648, + 61755712, + 61556144, + 39229568, + 61755728 ], "bases": [ { @@ -73001,71 +73001,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65195160, - "methods": [ - 61951888, - 61959296, - 39223120, - 61269824, - 61269856, - 61269888, - 61284064, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61657312, - 61269472, - 61284080, - 61269504, - 61269520, - 61505792, - 61636064, - 61327424, - 61415936, - 61739200, - 61270032, - 61614960, - 61643568, - 61588448, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581232, - 61682816, - 61736768, - 61548720, - 61507152, - 61532400, - 62049920, - 61327744, - 61328416, - 61739232, - 61739696, - 61598880, - 61269744, - 61284096, - 61716960, - 61602672, - 61602528, - 61270112, - 61270128, - 61627120, - 61730640, - 61269808, - 62071680, - 61738288, - 61738992, - 61738640, - 61696128, - 61696368, - 61697008, - 61740272, - 61546256 + "vtable_address": 65199064, + "methods": [ + 61955792, + 61963200, + 39226960, + 61273728, + 61273760, + 61273792, + 61287968, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61661216, + 61273376, + 61287984, + 61273408, + 61273424, + 61509696, + 61639968, + 61331328, + 61419840, + 61743104, + 61273936, + 61618864, + 61647472, + 61592352, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585136, + 61686720, + 61740672, + 61552624, + 61511056, + 61536304, + 62053824, + 61331648, + 61332320, + 61743136, + 61743600, + 61602784, + 61273648, + 61288000, + 61720864, + 61606576, + 61606432, + 61274016, + 61274032, + 61631024, + 61734544, + 61273712, + 62075584, + 61742192, + 61742896, + 61742544, + 61700032, + 61700272, + 61700912, + 61744176, + 61550160 ], "bases": [ { @@ -73119,19 +73119,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65195680, + "vtable_address": 65199584, "methods": [ - 62071760, - 61738144, - 61738432, - 61738752, - 39223040, - 61696208, - 61696448, - 61697088, - 61546112, - 39225728, - 61740064 + 62075664, + 61742048, + 61742336, + 61742656, + 39226880, + 61700112, + 61700352, + 61700992, + 61550016, + 39229568, + 61743968 ], "bases": [ { @@ -73185,71 +73185,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65200800, - "methods": [ - 62011488, - 62012304, - 39223120, - 61269824, - 61269856, - 61269888, - 61284672, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61658080, - 61269472, - 61283600, - 61269504, - 61269520, - 61506880, - 61636576, - 61307664, - 61418432, - 61805312, - 61270032, - 61616112, - 61644144, - 61589024, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581744, - 61683840, - 62010256, - 62221328, - 62222464, - 62222848, - 62046400, - 61307984, - 61308656, - 61805344, - 61805824, - 61599456, - 61269744, - 61283616, - 61716960, - 61604016, - 61603872, - 61270112, - 61270128, - 61627632, - 61733328, - 61269808, - 62130176, - 61804400, - 61805104, - 61804752, - 61693728, - 61693968, - 61697328, - 61806416, - 61545744 + "vtable_address": 65204704, + "methods": [ + 62015392, + 62016208, + 39226960, + 61273728, + 61273760, + 61273792, + 61288576, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61661984, + 61273376, + 61287504, + 61273408, + 61273424, + 61510784, + 61640480, + 61311568, + 61422336, + 61809216, + 61273936, + 61620016, + 61648048, + 61592928, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585648, + 61687744, + 62014160, + 62225232, + 62226368, + 62226752, + 62050304, + 61311888, + 61312560, + 61809248, + 61809728, + 61603360, + 61273648, + 61287520, + 61720864, + 61607920, + 61607776, + 61274016, + 61274032, + 61631536, + 61737232, + 61273712, + 62134080, + 61808304, + 61809008, + 61808656, + 61697632, + 61697872, + 61701232, + 61810320, + 61549648 ], "bases": [ { @@ -73303,19 +73303,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65201320, + "vtable_address": 65205224, "methods": [ - 62130256, - 61804256, - 61804544, - 61804864, - 39223040, - 61693808, - 61694048, - 61697408, - 61545600, - 39225728, - 61806208 + 62134160, + 61808160, + 61808448, + 61808768, + 39226880, + 61697712, + 61697952, + 61701312, + 61549504, + 39229568, + 61810112 ], "bases": [ { @@ -73369,71 +73369,71 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65198544, - "methods": [ - 61950688, - 61958000, - 39223120, - 61269824, - 61269856, - 61269888, - 61283696, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61656928, - 61269472, - 61283712, - 61269504, - 61269520, - 61506336, - 61633632, - 61314128, - 61714560, - 61802224, - 61270032, - 61615680, - 61639008, - 61585712, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576608, - 61677952, - 61444208, - 62174304, - 62175440, - 62175824, - 62047808, - 61314448, - 61315120, - 61802256, - 61802736, - 61596096, - 61269744, - 61283728, - 61716960, - 61596432, - 61596288, - 61270112, - 61270128, - 61622016, - 61732320, - 61269808, - 62125888, - 61801312, - 61802016, - 61801664, - 61694208, - 61694448, - 61696688, - 61803328, - 61534384 + "vtable_address": 65202448, + "methods": [ + 61954592, + 61961904, + 39226960, + 61273728, + 61273760, + 61273792, + 61287600, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61660832, + 61273376, + 61287616, + 61273408, + 61273424, + 61510240, + 61637536, + 61318032, + 61718464, + 61806128, + 61273936, + 61619584, + 61642912, + 61589616, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580512, + 61681856, + 61448112, + 62178208, + 62179344, + 62179728, + 62051712, + 61318352, + 61319024, + 61806160, + 61806640, + 61600000, + 61273648, + 61287632, + 61720864, + 61600336, + 61600192, + 61274016, + 61274032, + 61625920, + 61736224, + 61273712, + 62129792, + 61805216, + 61805920, + 61805568, + 61698112, + 61698352, + 61700592, + 61807232, + 61538288 ], "bases": [ { @@ -73487,19 +73487,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 65199064, + "vtable_address": 65202968, "methods": [ - 62125968, - 61801168, - 61801456, - 61801776, - 39223040, - 61694288, - 61694528, - 61696768, - 61534240, - 39225728, - 61803120 + 62129872, + 61805072, + 61805360, + 61805680, + 39226880, + 61698192, + 61698432, + 61700672, + 61538144, + 39229568, + 61807024 ], "bases": [ { @@ -73553,68 +73553,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65173752, - "methods": [ - 61837888, - 61837920, - 39223120, - 61269824, - 61269856, - 61269888, - 61271808, - 61269920, - 61269936, - 61270000, - 61271824, - 39222912, - 39222928, - 61269472, - 61271840, - 61269504, - 61269520, - 61299088, - 61637088, - 61299344, - 61417664, - 61270016, - 61270032, - 61616688, - 61644720, - 61589600, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582256, - 61684864, - 61463312, - 61497360, - 61462832, - 61513376, - 62016128, - 61299664, - 61300336, - 61300688, - 61697488, - 61559152, - 61269744, - 61290880, - 61716960, - 61605168, - 61605024, - 61270112, - 61270128, - 61628144, - 61734672, - 61269808, - 61553216, - 61674720, - 62300704, - 61403168, - 61271856, - 61271888 + "vtable_address": 65177656, + "methods": [ + 61841792, + 61841824, + 39226960, + 61273728, + 61273760, + 61273792, + 61275712, + 61273824, + 61273840, + 61273904, + 61275728, + 39226752, + 39226768, + 61273376, + 61275744, + 61273408, + 61273424, + 61302992, + 61640992, + 61303248, + 61421568, + 61273920, + 61273936, + 61620592, + 61648624, + 61593504, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586160, + 61688768, + 61467216, + 61501264, + 61466736, + 61517280, + 62020032, + 61303568, + 61304240, + 61304592, + 61701392, + 61563056, + 61273648, + 61294784, + 61720864, + 61609072, + 61608928, + 61274016, + 61274032, + 61632048, + 61738576, + 61273712, + 61557120, + 61678624, + 62304608, + 61407072, + 61275760, + 61275792 ], "bases": [ { @@ -73701,16 +73701,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65174248, + "vtable_address": 65178152, "methods": [ - 61289776, - 61286704, - 62301392, - 61271872, - 61271904, - 61674032, - 61553008, - 61403808 + 61293680, + 61290608, + 62305296, + 61275776, + 61275808, + 61677936, + 61556912, + 61407712 ], "bases": [ { @@ -73797,68 +73797,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65092520, - "methods": [ - 61914448, - 61921232, - 39223120, - 61269824, - 61269856, - 61269888, - 61281088, - 61269920, - 61269936, - 61270000, - 61281104, - 39222912, - 39222928, - 61269472, - 61281120, - 61269504, - 61269520, - 61366576, - 61638112, - 61366832, - 61411328, - 61270016, - 61270032, - 61610352, - 61645872, - 61590752, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583280, - 61686912, - 61461952, - 61492256, - 61461472, - 61514016, - 62039360, - 61367152, - 61367824, - 61368176, - 61697488, - 61559344, - 61269744, - 61290576, - 61716960, - 61607472, - 61607328, - 61270112, - 61270128, - 61629168, - 61719888, - 61269808, - 61553616, - 61676048, - 62299392, - 61393152, - 61281136, - 61281168 + "vtable_address": 65096424, + "methods": [ + 61918352, + 61925136, + 39226960, + 61273728, + 61273760, + 61273792, + 61284992, + 61273824, + 61273840, + 61273904, + 61285008, + 39226752, + 39226768, + 61273376, + 61285024, + 61273408, + 61273424, + 61370480, + 61642016, + 61370736, + 61415232, + 61273920, + 61273936, + 61614256, + 61649776, + 61594656, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587184, + 61690816, + 61465856, + 61496160, + 61465376, + 61517920, + 62043264, + 61371056, + 61371728, + 61372080, + 61701392, + 61563248, + 61273648, + 61294480, + 61720864, + 61611376, + 61611232, + 61274016, + 61274032, + 61633072, + 61723792, + 61273712, + 61557520, + 61679952, + 62303296, + 61397056, + 61285040, + 61285072 ], "bases": [ { @@ -73945,16 +73945,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65093016, + "vtable_address": 65096920, "methods": [ - 61289936, - 61287056, - 62300080, - 61281152, - 61281184, - 61675360, - 61553408, - 61393792 + 61293840, + 61290960, + 62303984, + 61285056, + 61285088, + 61679264, + 61557312, + 61397696 ], "bases": [ { @@ -74041,68 +74041,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputContainer_t>", - "vtable_address": 65146696, - "methods": [ - 61916128, - 61922960, - 39223120, - 61269824, - 61269856, - 61269888, - 61276464, - 61269920, - 61269936, - 61270000, - 61276480, - 39222912, - 39222928, - 61269472, - 61276496, - 61269504, - 61269520, - 61335600, - 61635296, - 61335840, - 61414592, - 61270016, - 61270032, - 61614096, - 61642416, - 61587584, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580464, - 61681280, - 61455024, - 61433632, - 61433280, - 61483664, - 62026688, - 61336160, - 61336832, - 61337184, - 61697488, - 61276512, - 61269744, - 61507568, - 61716960, - 61600944, - 61600800, - 61270112, - 61270128, - 61624336, - 61728624, - 61269808, - 61290256, - 61473584, - 62271072, - 61571232, - 61276576, - 61276608 + "vtable_address": 65150600, + "methods": [ + 61920032, + 61926864, + 39226960, + 61273728, + 61273760, + 61273792, + 61280368, + 61273824, + 61273840, + 61273904, + 61280384, + 39226752, + 39226768, + 61273376, + 61280400, + 61273408, + 61273424, + 61339504, + 61639200, + 61339744, + 61418496, + 61273920, + 61273936, + 61618000, + 61646320, + 61591488, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584368, + 61685184, + 61458928, + 61437536, + 61437184, + 61487568, + 62030592, + 61340064, + 61340736, + 61341088, + 61701392, + 61280416, + 61273648, + 61511472, + 61720864, + 61604848, + 61604704, + 61274016, + 61274032, + 61628240, + 61732528, + 61273712, + 61294160, + 61477488, + 62274976, + 61575136, + 61280480, + 61280512 ], "bases": [ { @@ -74189,16 +74189,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputContainer_t>", - "vtable_address": 65147192, + "vtable_address": 65151096, "methods": [ - 61289616, - 61286880, - 62271168, - 61276592, - 61276624, - 61473872, - 61290336, - 61570976 + 61293520, + 61290784, + 62275072, + 61280496, + 61280528, + 61477776, + 61294240, + 61574880 ], "bases": [ { @@ -74285,68 +74285,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65089712, - "methods": [ - 61912768, - 61919504, - 39223120, - 61269824, - 61269856, - 61269888, - 61281232, - 61269920, - 61269936, - 61270000, - 61281248, - 39222912, - 39222928, - 61269472, - 61281264, - 61269504, - 61269520, - 61368304, - 61638240, - 61368544, - 61411136, - 61270016, - 61270032, - 61610496, - 61646016, - 61590896, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583408, - 61687168, - 61448576, - 61424208, - 61423856, - 61485136, - 62040064, - 61368864, - 61369536, - 61369888, - 61697488, - 61281280, - 61269744, - 61504128, - 61716960, - 61607760, - 61607616, - 61270112, - 61270128, - 61629296, - 61720224, - 61269808, - 61290416, - 61474176, - 62270352, - 61575328, - 61281344, - 61281376 + "vtable_address": 65093616, + "methods": [ + 61916672, + 61923408, + 39226960, + 61273728, + 61273760, + 61273792, + 61285136, + 61273824, + 61273840, + 61273904, + 61285152, + 39226752, + 39226768, + 61273376, + 61285168, + 61273408, + 61273424, + 61372208, + 61642144, + 61372448, + 61415040, + 61273920, + 61273936, + 61614400, + 61649920, + 61594800, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587312, + 61691072, + 61452480, + 61428112, + 61427760, + 61489040, + 62043968, + 61372768, + 61373440, + 61373792, + 61701392, + 61285184, + 61273648, + 61508032, + 61720864, + 61611664, + 61611520, + 61274016, + 61274032, + 61633200, + 61724128, + 61273712, + 61294320, + 61478080, + 62274256, + 61579232, + 61285248, + 61285280 ], "bases": [ { @@ -74433,16 +74433,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65090208, + "vtable_address": 65094112, "methods": [ - 61289616, - 61286880, - 62270448, - 61281360, - 61281392, - 61474464, - 61290496, - 61575072 + 61293520, + 61290784, + 62274352, + 61285264, + 61285296, + 61478368, + 61294400, + 61578976 ], "bases": [ { @@ -74529,68 +74529,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65101624, - "methods": [ - 61829632, - 61829664, - 39223120, - 61269824, - 61269856, - 61269888, - 61280160, - 61269920, - 61269936, - 61270000, - 61280176, - 39222912, - 39222928, - 61269472, - 61280192, - 61269504, - 61269520, - 61380400, - 61634144, - 61380640, - 61715520, - 61270016, - 61270032, - 61611504, - 61639584, - 61586288, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577120, - 61678976, - 61450816, - 61427360, - 61427008, - 61484400, - 62035840, - 61380960, - 61381632, - 61381984, - 61697488, - 61286304, - 61269744, - 61280208, - 61716960, - 61597584, - 61597440, - 61270112, - 61270128, - 61622528, - 61722576, - 61269808, - 61285280, - 61476544, - 62266192, - 61569568, - 61280224, - 61280256 + "vtable_address": 65105528, + "methods": [ + 61833536, + 61833568, + 39226960, + 61273728, + 61273760, + 61273792, + 61284064, + 61273824, + 61273840, + 61273904, + 61284080, + 39226752, + 39226768, + 61273376, + 61284096, + 61273408, + 61273424, + 61384304, + 61638048, + 61384544, + 61719424, + 61273920, + 61273936, + 61615408, + 61643488, + 61590192, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581024, + 61682880, + 61454720, + 61431264, + 61430912, + 61488304, + 62039744, + 61384864, + 61385536, + 61385888, + 61701392, + 61290208, + 61273648, + 61284112, + 61720864, + 61601488, + 61601344, + 61274016, + 61274032, + 61626432, + 61726480, + 61273712, + 61289184, + 61480448, + 62270096, + 61573472, + 61284128, + 61284160 ], "bases": [ { @@ -74677,16 +74677,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65102120, + "vtable_address": 65106024, "methods": [ - 61285760, - 61559744, - 62266288, - 61280240, - 61280272, - 61476832, - 61285360, - 61569312 + 61289664, + 61563648, + 62270192, + 61284144, + 61284176, + 61480736, + 61289264, + 61573216 ], "bases": [ { @@ -74773,68 +74773,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65112384, + "vtable_address": 65116288, "methods": [ - 61830768, - 61830800, - 39223120, - 61269824, - 61269856, - 61269888, - 61277216, - 61269920, - 61269936, - 61270000, - 61277232, - 39222912, - 39222928, - 61269472, - 61277248, - 61269504, - 61269520, - 61342560, - 61640560, - 61342800, - 61413824, - 61270016, - 61270032, - 61612080, - 61647168, - 61592048, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584432, - 61689216, - 61454240, - 61432576, - 61432224, - 61484032, - 62028800, - 61343120, - 61343792, - 61344144, - 61697488, - 61286176, - 61269744, - 61277264, - 61716960, - 61618128, - 61617984, - 61270112, - 61270128, - 61632352, - 61723920, - 61269808, - 61285120, - 61475952, - 62266384, - 61578528, - 61277280, - 61277312 + 61834672, + 61834704, + 39226960, + 61273728, + 61273760, + 61273792, + 61281120, + 61273824, + 61273840, + 61273904, + 61281136, + 39226752, + 39226768, + 61273376, + 61281152, + 61273408, + 61273424, + 61346464, + 61644464, + 61346704, + 61417728, + 61273920, + 61273936, + 61615984, + 61651072, + 61595952, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588336, + 61693120, + 61458144, + 61436480, + 61436128, + 61487936, + 62032704, + 61347024, + 61347696, + 61348048, + 61701392, + 61290080, + 61273648, + 61281168, + 61720864, + 61622032, + 61621888, + 61274016, + 61274032, + 61636256, + 61727824, + 61273712, + 61289024, + 61479856, + 62270288, + 61582432, + 61281184, + 61281216 ], "bases": [ { @@ -74921,16 +74921,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65112880, + "vtable_address": 65116784, "methods": [ - 61285760, - 61559744, - 62266480, - 61277296, - 61277328, - 61476240, - 61285200, - 61578272 + 61289664, + 61563648, + 62270384, + 61281200, + 61281232, + 61480144, + 61289104, + 61582176 ], "bases": [ { @@ -75017,68 +75017,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65148928, - "methods": [ - 61834256, - 61834288, - 39223120, - 61269824, - 61269856, - 61269888, - 61275952, - 61269920, - 61269936, - 61270000, - 61275968, - 39222912, - 39222928, - 61269472, - 61275984, - 61269504, - 61269520, - 61332160, - 61634912, - 61332400, - 61415168, - 61270016, - 61270032, - 61613664, - 61641984, - 61587152, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580080, - 61680512, - 61455824, - 61434688, - 61434336, - 61483296, - 62025280, - 61332720, - 61333392, - 61333744, - 61697488, - 61286048, - 61269744, - 61276000, - 61716960, - 61600080, - 61599936, - 61270112, - 61270128, - 61623952, - 61727616, - 61269808, - 61284960, - 61475360, - 62266576, - 61570720, - 61276016, - 61276048 + "vtable_address": 65152832, + "methods": [ + 61838160, + 61838192, + 39226960, + 61273728, + 61273760, + 61273792, + 61279856, + 61273824, + 61273840, + 61273904, + 61279872, + 39226752, + 39226768, + 61273376, + 61279888, + 61273408, + 61273424, + 61336064, + 61638816, + 61336304, + 61419072, + 61273920, + 61273936, + 61617568, + 61645888, + 61591056, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61583984, + 61684416, + 61459728, + 61438592, + 61438240, + 61487200, + 62029184, + 61336624, + 61337296, + 61337648, + 61701392, + 61289952, + 61273648, + 61279904, + 61720864, + 61603984, + 61603840, + 61274016, + 61274032, + 61627856, + 61731520, + 61273712, + 61288864, + 61479264, + 62270480, + 61574624, + 61279920, + 61279952 ], "bases": [ { @@ -75165,16 +75165,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65149424, + "vtable_address": 65153328, "methods": [ - 61285760, - 61559744, - 62266672, - 61276032, - 61276064, - 61475648, - 61285040, - 61570464 + 61289664, + 61563648, + 62270576, + 61279936, + 61279968, + 61479552, + 61288944, + 61574368 ], "bases": [ { @@ -75261,68 +75261,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65061416, - "methods": [ - 61826832, - 61826864, - 39223120, - 61269824, - 61269856, - 61269888, - 61280800, - 61269920, - 61269936, - 61270000, - 61280816, - 39222912, - 39222928, - 61269472, - 61280832, - 61269504, - 61269520, - 61363136, - 61637856, - 61363376, - 61411712, - 61270016, - 61270032, - 61610064, - 61645584, - 61590464, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583024, - 61686400, - 61449376, - 61425264, - 61424912, - 61484768, - 62037952, - 61363696, - 61364368, - 61364720, - 61697488, - 61286432, - 61269744, - 61280848, - 61716960, - 61606896, - 61606752, - 61270112, - 61270128, - 61628912, - 61719216, - 61269808, - 61285440, - 61477136, - 62266000, - 61574304, - 61280864, - 61280896 + "vtable_address": 65065320, + "methods": [ + 61830736, + 61830768, + 39226960, + 61273728, + 61273760, + 61273792, + 61284704, + 61273824, + 61273840, + 61273904, + 61284720, + 39226752, + 39226768, + 61273376, + 61284736, + 61273408, + 61273424, + 61367040, + 61641760, + 61367280, + 61415616, + 61273920, + 61273936, + 61613968, + 61649488, + 61594368, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586928, + 61690304, + 61453280, + 61429168, + 61428816, + 61488672, + 62041856, + 61367600, + 61368272, + 61368624, + 61701392, + 61290336, + 61273648, + 61284752, + 61720864, + 61610800, + 61610656, + 61274016, + 61274032, + 61632816, + 61723120, + 61273712, + 61289344, + 61481040, + 62269904, + 61578208, + 61284768, + 61284800 ], "bases": [ { @@ -75409,16 +75409,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65061912, + "vtable_address": 65065816, "methods": [ - 61285760, - 61559744, - 62266096, - 61280880, - 61280912, - 61477424, - 61285520, - 61574048 + 61289664, + 61563648, + 62270000, + 61284784, + 61284816, + 61481328, + 61289424, + 61577952 ], "bases": [ { @@ -75505,68 +75505,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65056272, - "methods": [ - 61825888, - 61825920, - 39223120, - 61269824, - 61269856, - 61269888, - 61283264, - 61269920, - 61269936, - 61270000, - 61283280, - 39222912, - 39222928, - 61269472, - 61283296, - 61269504, - 61269520, - 61385632, - 61634528, - 61385872, - 61716240, - 61270016, - 61270032, - 61609632, - 61640016, - 61586720, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577504, - 61679744, - 61445104, - 61418976, - 61418624, - 61485504, - 62044992, - 61386192, - 61386864, - 61387216, - 61697488, - 61286560, - 61269744, - 61283312, - 61716960, - 61598448, - 61598304, - 61270112, - 61270128, - 61622912, - 61718208, - 61269808, - 61285600, - 61477728, - 62265808, - 61569056, - 61283328, - 61283360 + "vtable_address": 65060176, + "methods": [ + 61829792, + 61829824, + 39226960, + 61273728, + 61273760, + 61273792, + 61287168, + 61273824, + 61273840, + 61273904, + 61287184, + 39226752, + 39226768, + 61273376, + 61287200, + 61273408, + 61273424, + 61389536, + 61638432, + 61389776, + 61720144, + 61273920, + 61273936, + 61613536, + 61643920, + 61590624, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581408, + 61683648, + 61449008, + 61422880, + 61422528, + 61489408, + 62048896, + 61390096, + 61390768, + 61391120, + 61701392, + 61290464, + 61273648, + 61287216, + 61720864, + 61602352, + 61602208, + 61274016, + 61274032, + 61626816, + 61722112, + 61273712, + 61289504, + 61481632, + 62269712, + 61572960, + 61287232, + 61287264 ], "bases": [ { @@ -75653,16 +75653,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65056768, + "vtable_address": 65060672, "methods": [ - 61285760, - 61559744, - 62265904, - 61283344, - 61283376, - 61478016, - 61285680, - 61568800 + 61289664, + 61563648, + 62269808, + 61287248, + 61287280, + 61481920, + 61289584, + 61572704 ], "bases": [ { @@ -75749,68 +75749,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65165456, - "methods": [ - 61835984, - 61836016, - 39223120, - 61269824, - 61269856, - 61269888, - 61273872, - 61269920, - 61269936, - 61270000, - 61273888, - 39222912, - 39222928, - 61269472, + "vtable_address": 65169360, + "methods": [ + 61839888, + 61839920, + 39226960, + 61273728, + 61273760, + 61273792, + 61277776, + 61273824, + 61273840, 61273904, - 61269504, - 61269520, - 61315680, - 61569824, - 61315920, - 61693392, - 61270016, - 61270032, - 61615536, - 61579808, - 61561328, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61559024, - 61648608, - 61457264, - 61436784, - 61436432, - 61482928, - 62021056, - 61316240, - 61316912, - 61712272, - 61697488, - 61285920, - 61269744, + 61277792, + 39226752, + 39226768, + 61273376, + 61277808, + 61273408, + 61273424, + 61319584, + 61573728, + 61319824, + 61697296, 61273920, - 61716960, - 61567504, - 61567360, - 61270112, - 61270128, - 61567648, - 61731984, - 61269808, - 61284800, - 61474768, - 62266768, - 61557104, 61273936, - 61273968 + 61619440, + 61583712, + 61565232, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61562928, + 61652512, + 61461168, + 61440688, + 61440336, + 61486832, + 62024960, + 61320144, + 61320816, + 61716176, + 61701392, + 61289824, + 61273648, + 61277824, + 61720864, + 61571408, + 61571264, + 61274016, + 61274032, + 61571552, + 61735888, + 61273712, + 61288704, + 61478672, + 62270672, + 61561008, + 61277840, + 61277872 ], "bases": [ { @@ -75897,16 +75897,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65165952, + "vtable_address": 65169856, "methods": [ - 61285760, - 61559744, - 62266864, - 61273952, - 61273984, - 61475056, - 61284880, - 61556848 + 61289664, + 61563648, + 62270768, + 61277856, + 61277888, + 61478960, + 61288784, + 61560752 ], "bases": [ { @@ -75993,74 +75993,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, int, CUtlVectorMemory_Growable >, int, (unsigned long)0> >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65155544, - "methods": [ - 61846272, - 61848784, - 39223120, - 61269824, - 61269856, - 61269888, - 61275280, - 61269920, - 61269936, - 61270000, - 39222896, - 61275296, - 39222928, - 61269472, - 61275312, - 61269504, - 61269520, - 61322512, - 61636448, - 61322768, - 61415360, - 61270016, - 61270032, - 61615392, - 61644000, - 61588880, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581616, - 61683584, - 61518256, - 62205984, - 62206992, - 62207584, - 62023872, - 61323088, - 61323760, - 61324112, - 61697488, - 61557568, - 61269744, - 61275328, - 61716960, - 61603536, - 61603392, - 61270112, - 61270128, - 61627504, - 61731648, - 61269808, - 61275344, - 61542304, - 61712448, - 62210048, - 61665440, - 61697568, - 62282096, - 61275376, - 61563504, - 62208304, - 61275520, - 61275552 + "vtable_address": 65159448, + "methods": [ + 61850176, + 61852688, + 39226960, + 61273728, + 61273760, + 61273792, + 61279184, + 61273824, + 61273840, + 61273904, + 39226736, + 61279200, + 39226768, + 61273376, + 61279216, + 61273408, + 61273424, + 61326416, + 61640352, + 61326672, + 61419264, + 61273920, + 61273936, + 61619296, + 61647904, + 61592784, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585520, + 61687488, + 61522160, + 62209888, + 62210896, + 62211488, + 62027776, + 61326992, + 61327664, + 61328016, + 61701392, + 61561472, + 61273648, + 61279232, + 61720864, + 61607440, + 61607296, + 61274016, + 61274032, + 61631408, + 61735552, + 61273712, + 61279248, + 61546208, + 61716352, + 62213952, + 61669344, + 61701472, + 62286000, + 61279280, + 61567408, + 62212208, + 61279424, + 61279456 ], "bases": [ { @@ -76125,20 +76125,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, int, CUtlVectorMemory_Growable >, int, (unsigned long)0> >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65156088, - "methods": [ - 61542112, - 61714544, - 62211120, - 61664800, - 61698208, - 62282848, - 61275360, - 61275536, - 61275568, - 61563312, - 62209328, - 61275456 + "vtable_address": 65159992, + "methods": [ + 61546016, + 61718448, + 62215024, + 61668704, + 61702112, + 62286752, + 61279264, + 61279440, + 61279472, + 61567216, + 62213232, + 61279360 ], "bases": [ { @@ -76203,74 +76203,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompMatPropertyMutator_t>", - "vtable_address": 65117000, - "methods": [ - 61840688, - 61843104, - 39223120, - 61269824, - 61269856, - 61269888, - 61279232, - 61269920, - 61269936, - 61270000, - 39222896, - 61279248, - 39222928, - 61269472, - 61279264, - 61269504, - 61269520, - 61354560, - 61641584, - 61354816, - 61412288, - 61270016, - 61270032, - 61613232, - 61648320, - 61593200, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585456, - 61691264, - 61519264, - 62167744, - 62168768, - 62169392, - 62033728, - 61355136, - 61355808, - 61356160, - 61697488, - 61558608, - 61269744, - 61279280, - 61716960, - 61620432, - 61620288, - 61270112, - 61270128, - 61633376, - 61726608, - 61269808, - 61279296, - 61543840, - 61700096, - 61546368, - 61677328, - 61652096, - 62276080, - 61279328, - 61565344, - 61554240, - 61279472, - 61279504 + "vtable_address": 65120904, + "methods": [ + 61844592, + 61847008, + 39226960, + 61273728, + 61273760, + 61273792, + 61283136, + 61273824, + 61273840, + 61273904, + 39226736, + 61283152, + 39226768, + 61273376, + 61283168, + 61273408, + 61273424, + 61358464, + 61645488, + 61358720, + 61416192, + 61273920, + 61273936, + 61617136, + 61652224, + 61597104, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589360, + 61695168, + 61523168, + 62171648, + 62172672, + 62173296, + 62037632, + 61359040, + 61359712, + 61360064, + 61701392, + 61562512, + 61273648, + 61283184, + 61720864, + 61624336, + 61624192, + 61274016, + 61274032, + 61637280, + 61730512, + 61273712, + 61283200, + 61547744, + 61704000, + 61550272, + 61681232, + 61656000, + 62279984, + 61283232, + 61569248, + 61558144, + 61283376, + 61283408 ], "bases": [ { @@ -76335,20 +76335,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompMatPropertyMutator_t>", - "vtable_address": 65117544, - "methods": [ - 61543648, - 61701952, - 61547456, - 61676688, - 61651584, - 62276832, - 61279312, - 61279488, - 61279520, - 61565152, - 61555216, - 61279408 + "vtable_address": 65121448, + "methods": [ + 61547552, + 61705856, + 61551360, + 61680592, + 61655488, + 62280736, + 61283216, + 61283392, + 61283424, + 61569056, + 61559120, + 61283312 ], "bases": [ { @@ -76413,74 +76413,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompMatPropertyMutator_t>", - "vtable_address": 65139736, - "methods": [ - 61966448, - 61981904, - 39223120, - 61269824, - 61269856, - 61269888, - 61276864, - 61269920, - 61269936, - 61270000, - 39222896, - 61276880, - 39222928, - 61269472, - 61276896, - 61269504, - 61269520, - 61340832, - 61640432, - 61341088, - 61414016, - 61270016, - 61270032, - 61611936, - 61647024, - 61591904, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584304, - 61688960, - 61534496, - 62189232, - 62200528, - 62201312, - 62028096, - 61341408, - 61342080, - 61342432, - 61697488, - 61558816, - 61269744, - 61276912, - 61716960, - 61617840, - 61617696, - 61270112, - 61270128, - 61632224, - 61723584, - 61269808, - 61276928, - 61543456, - 61698224, - 62204352, - 61526032, - 61659216, - 62273744, - 61276960, - 61564608, - 62203216, - 61277104, - 61277136 + "vtable_address": 65143640, + "methods": [ + 61970352, + 61985808, + 39226960, + 61273728, + 61273760, + 61273792, + 61280768, + 61273824, + 61273840, + 61273904, + 39226736, + 61280784, + 39226768, + 61273376, + 61280800, + 61273408, + 61273424, + 61344736, + 61644336, + 61344992, + 61417920, + 61273920, + 61273936, + 61615840, + 61650928, + 61595808, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588208, + 61692864, + 61538400, + 62193136, + 62204432, + 62205216, + 62032000, + 61345312, + 61345984, + 61346336, + 61701392, + 61562720, + 61273648, + 61280816, + 61720864, + 61621744, + 61621600, + 61274016, + 61274032, + 61636128, + 61727488, + 61273712, + 61280832, + 61547360, + 61702128, + 62208256, + 61529936, + 61663120, + 62277648, + 61280864, + 61568512, + 62207120, + 61281008, + 61281040 ], "bases": [ { @@ -76545,20 +76545,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompMatPropertyMutator_t>", - "vtable_address": 65140280, - "methods": [ - 61543264, - 61700080, - 62205328, - 61526688, - 61660048, - 62274320, - 61276944, - 61277120, - 61277152, - 61564416, - 62204336, - 61277040 + "vtable_address": 65144184, + "methods": [ + 61547168, + 61703984, + 62209232, + 61530592, + 61663952, + 62278224, + 61280848, + 61281024, + 61281056, + 61568320, + 62208240, + 61280944 ], "bases": [ { @@ -76623,74 +76623,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompMatPropertyMutator_t>", - "vtable_address": 65129840, - "methods": [ - 61939504, - 61943712, - 39223120, - 61269824, - 61269856, - 61269888, - 61277856, - 61269920, - 61269936, - 61270000, - 39222896, - 61277872, - 39222928, - 61269472, - 61277888, - 61269504, - 61269520, - 61347712, - 61641072, - 61347952, - 61413056, - 61270016, - 61270032, - 61612656, - 61647744, - 61592624, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584944, - 61690240, - 62005392, - 62199824, - 62199088, - 62199440, - 62030912, - 61348272, - 61348944, - 61349296, - 61697488, - 61277904, - 61269744, - 61277968, - 61716960, - 61619280, - 61619136, - 61270112, - 61270128, - 61632864, - 61725264, - 61269808, - 61277984, - 61278016, - 61761728, - 62193920, - 61767424, - 62305872, - 62274912, - 61278144, - 61564976, - 62194528, - 61278288, - 61278320 + "vtable_address": 65133744, + "methods": [ + 61943408, + 61947616, + 39226960, + 61273728, + 61273760, + 61273792, + 61281760, + 61273824, + 61273840, + 61273904, + 39226736, + 61281776, + 39226768, + 61273376, + 61281792, + 61273408, + 61273424, + 61351616, + 61644976, + 61351856, + 61416960, + 61273920, + 61273936, + 61616560, + 61651648, + 61596528, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588848, + 61694144, + 62009296, + 62203728, + 62202992, + 62203344, + 62034816, + 61352176, + 61352848, + 61353200, + 61701392, + 61281808, + 61273648, + 61281872, + 61720864, + 61623184, + 61623040, + 61274016, + 61274032, + 61636768, + 61729168, + 61273712, + 61281888, + 61281920, + 61765632, + 62197824, + 61771328, + 62309776, + 62278816, + 61282048, + 61568880, + 62198432, + 61282192, + 61282224 ], "bases": [ { @@ -76755,20 +76755,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompMatPropertyMutator_t>", - "vtable_address": 65130384, + "vtable_address": 65134288, "methods": [ - 61278080, - 61763584, - 62194512, - 61767872, - 62306192, - 62275488, - 61278000, - 61278304, - 61278336, - 61564784, - 62195712, - 61278224 + 61281984, + 61767488, + 62198416, + 61771776, + 62310096, + 62279392, + 61281904, + 61282208, + 61282240, + 61568688, + 62199616, + 61282128 ], "bases": [ { @@ -76833,74 +76833,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65162960, - "methods": [ - 61938320, - 61942496, - 39223120, - 61269824, - 61269856, - 61269888, + "vtable_address": 65166864, + "methods": [ + 61942224, + 61946400, + 39226960, + 61273728, + 61273760, + 61273792, + 61277936, + 61273824, + 61273840, + 61273904, + 39226736, + 61277952, + 39226768, + 61273376, + 61277968, + 61273408, + 61273424, + 61321248, + 61639584, + 61321488, + 61420416, + 61273920, + 61273936, + 61618432, + 61647040, + 61591920, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584752, + 61685952, + 62008592, + 62202288, + 62201936, + 62201552, + 62025664, + 61321808, + 61322480, + 61322832, + 61701392, + 61277984, + 61273648, + 61278048, + 61720864, + 61605712, + 61605568, + 61274016, 61274032, - 61269920, - 61269936, - 61270000, - 39222896, - 61274048, - 39222928, - 61269472, - 61274064, - 61269504, - 61269520, - 61317344, - 61635680, - 61317584, - 61416512, - 61270016, - 61270032, - 61614528, - 61643136, - 61588016, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580848, - 61682048, - 62004688, - 62198384, - 62198032, - 62197648, - 62021760, - 61317904, - 61318576, - 61318928, - 61697488, - 61274080, - 61269744, - 61274144, - 61716960, - 61601808, - 61601664, - 61270112, - 61270128, - 61626736, - 61729632, - 61269808, - 61274160, - 61274192, - 61759856, - 62195728, - 61766528, - 62306512, - 62278592, - 61274320, - 61562400, - 62196336, - 61274464, - 61274496 + 61630640, + 61733536, + 61273712, + 61278064, + 61278096, + 61763760, + 62199632, + 61770432, + 62310416, + 62282496, + 61278224, + 61566304, + 62200240, + 61278368, + 61278400 ], "bases": [ { @@ -76965,20 +76965,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65163504, - "methods": [ - 61274256, - 61761712, - 62196320, - 61766976, - 62306832, - 62279168, - 61274176, - 61274480, - 61274512, - 61562208, - 62197520, - 61274400 + "vtable_address": 65167408, + "methods": [ + 61278160, + 61765616, + 62200224, + 61770880, + 62310736, + 62283072, + 61278080, + 61278384, + 61278416, + 61566112, + 62201424, + 61278304 ], "bases": [ { @@ -77043,74 +77043,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65185568, - "methods": [ - 61971312, - 61986896, - 39223120, - 61269824, - 61269856, - 61269888, - 61271456, - 61269920, - 61269936, - 61270000, - 39222896, - 61271472, - 39222928, - 61269472, - 61271488, - 61269504, - 61269520, - 61297360, - 61636960, - 61297616, - 61417856, - 61270016, - 61270032, - 61616544, - 61644576, - 61589456, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582128, - 61684608, - 61797008, - 62249616, - 62259712, - 62260304, - 62015424, - 61297936, - 61298608, - 61298960, - 61697488, - 61558192, - 61269744, - 61271504, - 61716960, - 61604880, - 61604736, - 61270112, - 61270128, - 61628016, - 61734336, - 61269808, - 61271520, - 61543072, - 61706336, - 62256768, - 61768320, - 61793744, - 62287792, - 61271552, - 61564240, - 62258064, - 61271696, - 61271728 + "vtable_address": 65189472, + "methods": [ + 61975216, + 61990800, + 39226960, + 61273728, + 61273760, + 61273792, + 61275360, + 61273824, + 61273840, + 61273904, + 39226736, + 61275376, + 39226768, + 61273376, + 61275392, + 61273408, + 61273424, + 61301264, + 61640864, + 61301520, + 61421760, + 61273920, + 61273936, + 61620448, + 61648480, + 61593360, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586032, + 61688512, + 61800912, + 62253520, + 62263616, + 62264208, + 62019328, + 61301840, + 61302512, + 61302864, + 61701392, + 61562096, + 61273648, + 61275408, + 61720864, + 61608784, + 61608640, + 61274016, + 61274032, + 61631920, + 61738240, + 61273712, + 61275424, + 61546976, + 61710240, + 62260672, + 61772224, + 61797648, + 62291696, + 61275456, + 61568144, + 62261968, + 61275600, + 61275632 ], "bases": [ { @@ -77175,20 +77175,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65186112, + "vtable_address": 65190016, "methods": [ - 61542880, - 61708288, - 62258048, - 61770208, - 61795024, - 62288368, - 61271536, - 61271712, - 61271744, - 61564048, - 62259696, - 61271632 + 61546784, + 61712192, + 62261952, + 61774112, + 61798928, + 62292272, + 61275440, + 61275616, + 61275648, + 61567952, + 62263600, + 61275536 ], "bases": [ { @@ -77253,74 +77253,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65160488, - "methods": [ - 61968944, - 61984464, - 39223120, - 61269824, - 61269856, - 61269888, - 61274576, - 61269920, - 61269936, - 61270000, - 39222896, - 61274592, - 39222928, - 61269472, - 61274608, - 61269504, - 61269520, - 61319056, - 61635936, - 61319312, - 61416128, - 61270016, - 61270032, - 61614816, - 61643424, - 61588304, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581104, - 61682560, - 61787168, - 62247072, - 62261024, - 62241264, - 62022464, - 61319632, - 61320304, - 61320656, - 61697488, - 61557984, - 61269744, - 61274624, - 61716960, - 61602384, - 61602240, - 61270112, - 61270128, - 61626992, - 61730304, - 61269808, - 61274640, - 61541536, - 61710288, - 62238480, - 61785904, - 61783472, - 62279760, - 61274672, - 61562768, - 62239712, - 61274816, - 61274848 + "vtable_address": 65164392, + "methods": [ + 61972848, + 61988368, + 39226960, + 61273728, + 61273760, + 61273792, + 61278480, + 61273824, + 61273840, + 61273904, + 39226736, + 61278496, + 39226768, + 61273376, + 61278512, + 61273408, + 61273424, + 61322960, + 61639840, + 61323216, + 61420032, + 61273920, + 61273936, + 61618720, + 61647328, + 61592208, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585008, + 61686464, + 61791072, + 62250976, + 62264928, + 62245168, + 62026368, + 61323536, + 61324208, + 61324560, + 61701392, + 61561888, + 61273648, + 61278528, + 61720864, + 61606288, + 61606144, + 61274016, + 61274032, + 61630896, + 61734208, + 61273712, + 61278544, + 61545440, + 61714192, + 62242384, + 61789808, + 61787376, + 62283664, + 61278576, + 61566672, + 62243616, + 61278720, + 61278752 ], "bases": [ { @@ -77385,20 +77385,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65161032, - "methods": [ - 61541344, - 61712256, - 62239696, - 61786528, - 61785136, - 62280336, - 61274656, - 61274832, - 61274864, - 61562576, - 62241248, - 61274752 + "vtable_address": 65164936, + "methods": [ + 61545248, + 61716160, + 62243600, + 61790432, + 61789040, + 62284240, + 61278560, + 61278736, + 61278768, + 61566480, + 62245152, + 61278656 ], "bases": [ { @@ -77463,74 +77463,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputContainer_t>", - "vtable_address": 65151816, - "methods": [ - 61967760, - 61983248, - 39223120, - 61269824, - 61269856, - 61269888, - 61276080, - 61269920, - 61269936, - 61270000, - 39222896, - 61276096, - 39222928, - 61269472, - 61276112, - 61269504, - 61269520, - 61333872, - 61635168, - 61334128, - 61414784, - 61270016, - 61270032, - 61613952, - 61642272, - 61587440, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580336, - 61681024, - 61745808, - 62052736, - 62053744, - 62054336, - 62025984, - 61334448, - 61335120, - 61335472, - 61697488, - 61557360, - 61269744, - 61276128, - 61716960, - 61600656, - 61600512, - 61270112, - 61270128, - 61624208, - 61728288, - 61269808, - 61276144, - 61541152, - 61630064, - 62056208, - 61744544, - 61742720, - 62277424, - 61276176, - 61562032, - 62057584, - 61276320, - 61276352 + "vtable_address": 65155720, + "methods": [ + 61971664, + 61987152, + 39226960, + 61273728, + 61273760, + 61273792, + 61279984, + 61273824, + 61273840, + 61273904, + 39226736, + 61280000, + 39226768, + 61273376, + 61280016, + 61273408, + 61273424, + 61337776, + 61639072, + 61338032, + 61418688, + 61273920, + 61273936, + 61617856, + 61646176, + 61591344, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584240, + 61684928, + 61749712, + 62056640, + 62057648, + 62058240, + 62029888, + 61338352, + 61339024, + 61339376, + 61701392, + 61561264, + 61273648, + 61280032, + 61720864, + 61604560, + 61604416, + 61274016, + 61274032, + 61628112, + 61732192, + 61273712, + 61280048, + 61545056, + 61633968, + 62060112, + 61748448, + 61746624, + 62281328, + 61280080, + 61565936, + 62061488, + 61280224, + 61280256 ], "bases": [ { @@ -77595,20 +77595,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialInputContainer_t>", - "vtable_address": 65152360, - "methods": [ - 61540960, - 61632080, - 62057568, - 61745168, - 61743664, - 62278000, - 61276160, - 61276336, - 61276368, - 61561840, - 62058976, - 61276256 + "vtable_address": 65156264, + "methods": [ + 61544864, + 61635984, + 62061472, + 61749072, + 61747568, + 62281904, + 61280064, + 61280240, + 61280272, + 61565744, + 62062880, + 61280160 ], "bases": [ { @@ -77673,74 +77673,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65158016, - "methods": [ - 61992960, - 61994848, - 39223120, - 61269824, - 61269856, - 61269888, - 61274928, - 61269920, - 61269936, - 61270000, - 39222896, - 61274944, - 39222928, - 61269472, - 61274960, - 61269504, - 61269520, - 61320784, - 61636192, - 61321040, - 61415744, - 61270016, - 61270032, - 61615104, - 61643712, - 61588592, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581360, - 61683072, - 61530448, - 62211136, - 62212224, - 62212928, - 62023168, - 61321360, - 61322032, - 61322384, - 61697488, - 61557776, - 61269744, - 61274976, - 61716960, - 61602960, - 61602816, - 61270112, - 61270128, - 61627248, - 61730976, - 61269808, - 61274992, - 61541920, - 61701968, - 62214512, - 62172448, - 61528976, - 62280928, - 61275024, - 61563136, - 62215536, - 61275168, - 61275200 + "vtable_address": 65161920, + "methods": [ + 61996864, + 61998752, + 39226960, + 61273728, + 61273760, + 61273792, + 61278832, + 61273824, + 61273840, + 61273904, + 39226736, + 61278848, + 39226768, + 61273376, + 61278864, + 61273408, + 61273424, + 61324688, + 61640096, + 61324944, + 61419648, + 61273920, + 61273936, + 61619008, + 61647616, + 61592496, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585264, + 61686976, + 61534352, + 62215040, + 62216128, + 62216832, + 62027072, + 61325264, + 61325936, + 61326288, + 61701392, + 61561680, + 61273648, + 61278880, + 61720864, + 61606864, + 61606720, + 61274016, + 61274032, + 61631152, + 61734880, + 61273712, + 61278896, + 61545824, + 61705872, + 62218416, + 62176352, + 61532880, + 62284832, + 61278928, + 61567040, + 62219440, + 61279072, + 61279104 ], "bases": [ { @@ -77805,20 +77805,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65158560, - "methods": [ - 61541728, - 61703872, - 62215520, - 62172928, - 61529680, - 62281504, - 61275008, - 61275184, - 61275216, - 61562944, - 62216816, - 61275104 + "vtable_address": 65162464, + "methods": [ + 61545632, + 61707776, + 62219424, + 62176832, + 61533584, + 62285408, + 61278912, + 61279088, + 61279120, + 61566848, + 62220720, + 61279008 ], "bases": [ { @@ -77883,74 +77883,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65188040, - "methods": [ - 61974864, - 61990480, - 39223120, - 61269824, - 61269856, - 61269888, - 61271104, - 61269920, - 61269936, - 61270000, - 39222896, - 61271120, - 39222928, - 61269472, - 61271136, - 61269504, - 61269520, - 61295632, - 61636704, - 61295888, - 61418240, - 61270016, - 61270032, - 61616256, - 61644288, - 61589168, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61581872, - 61684096, - 62012736, - 62229936, - 62230944, - 62231536, - 62014720, - 61296208, - 61296880, - 61297232, - 61697488, - 61558400, - 61269744, - 61271152, - 61716960, - 61604304, - 61604160, - 61270112, - 61270128, - 61627760, - 61733664, - 61269808, - 61271168, - 61542688, - 61624592, - 62232848, - 61691776, - 62007216, - 62286624, - 61271200, - 61563872, - 62234208, - 61271344, - 61271376 + "vtable_address": 65191944, + "methods": [ + 61978768, + 61994384, + 39226960, + 61273728, + 61273760, + 61273792, + 61275008, + 61273824, + 61273840, + 61273904, + 39226736, + 61275024, + 39226768, + 61273376, + 61275040, + 61273408, + 61273424, + 61299536, + 61640608, + 61299792, + 61422144, + 61273920, + 61273936, + 61620160, + 61648192, + 61593072, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61585776, + 61688000, + 62016640, + 62233840, + 62234848, + 62235440, + 62018624, + 61300112, + 61300784, + 61301136, + 61701392, + 61562304, + 61273648, + 61275056, + 61720864, + 61608208, + 61608064, + 61274016, + 61274032, + 61631664, + 61737568, + 61273712, + 61275072, + 61546592, + 61628496, + 62236752, + 61695680, + 62011120, + 62290528, + 61275104, + 61567776, + 62238112, + 61275248, + 61275280 ], "bases": [ { @@ -78015,20 +78015,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65188584, - "methods": [ - 61542496, - 61626592, - 62234192, - 61692752, - 62008544, - 62287200, - 61271184, - 61271360, - 61271392, - 61563680, - 62235712, - 61271280 + "vtable_address": 65192488, + "methods": [ + 61546400, + 61630496, + 62238096, + 61696656, + 62012448, + 62291104, + 61275088, + 61275264, + 61275296, + 61567584, + 62239616, + 61275184 ], "bases": [ { @@ -78093,74 +78093,74 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterial_t>", - "vtable_address": 65171256, - "methods": [ - 61970128, - 61985680, - 39223120, - 61269824, - 61269856, - 61269888, - 61273280, - 61269920, - 61269936, - 61270000, - 39222896, - 61273296, - 39222928, - 61269472, - 61273312, - 61269504, - 61269520, - 61310688, - 61633760, - 61310944, - 61714800, - 61270016, - 61270032, - 61615824, - 61639152, - 61585856, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576736, - 61678208, - 61517264, - 62219696, - 62223728, - 62224320, - 62019648, - 61311264, - 61311936, - 61312288, - 61697488, - 61556640, - 61269744, - 61273328, - 61716960, - 61596720, - 61596576, - 61270112, - 61270128, - 61622144, - 61732656, - 61269808, - 61273344, - 61540768, - 61708304, - 62178240, - 61661520, - 62176704, - 62283520, + "vtable_address": 65175160, + "methods": [ + 61974032, + 61989584, + 39226960, + 61273728, + 61273760, + 61273792, + 61277184, + 61273824, + 61273840, + 61273904, + 39226736, + 61277200, + 39226768, 61273376, - 61561664, - 62179552, - 61273520, - 61273552 + 61277216, + 61273408, + 61273424, + 61314592, + 61637664, + 61314848, + 61718704, + 61273920, + 61273936, + 61619728, + 61643056, + 61589760, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580640, + 61682112, + 61521168, + 62223600, + 62227632, + 62228224, + 62023552, + 61315168, + 61315840, + 61316192, + 61701392, + 61560544, + 61273648, + 61277232, + 61720864, + 61600624, + 61600480, + 61274016, + 61274032, + 61626048, + 61736560, + 61273712, + 61277248, + 61544672, + 61712208, + 62182144, + 61665424, + 62180608, + 62287424, + 61277280, + 61565568, + 62183456, + 61277424, + 61277456 ], "bases": [ { @@ -78225,20 +78225,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >, CompositeMaterial_t>", - "vtable_address": 65171800, - "methods": [ - 61540576, - 61710272, - 62179536, - 61660880, - 62178224, - 62284096, - 61273360, - 61273536, - 61273568, - 61561472, - 62180752, - 61273456 + "vtable_address": 65175704, + "methods": [ + 61544480, + 61714176, + 62183440, + 61664784, + 62182128, + 62288000, + 61277264, + 61277440, + 61277472, + 61565376, + 62184656, + 61277360 ], "bases": [ { @@ -78303,68 +78303,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65136848, - "methods": [ - 61857344, - 61871824, - 39223120, - 61269824, - 61269856, - 61269888, - 61277344, - 61269920, - 61269936, - 61270000, - 61277360, - 39222912, - 39222928, - 61269472, - 61277376, - 61269504, - 61269520, - 61344272, - 61640688, - 61344512, - 61413632, - 61270016, - 61270032, - 61612224, - 61647312, - 61592192, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584560, - 61689472, - 61453568, - 61431536, - 61431184, - 61485872, - 62029504, - 61344832, - 61345504, - 61345856, - 61697488, - 61277392, - 61269744, - 61277456, - 61716960, - 61618416, - 61618272, - 61270112, - 61270128, - 61632480, - 61724256, - 61269808, - 61277472, - 61464928, - 62273072, - 61579552, - 61277600, - 61277632 + "vtable_address": 65140752, + "methods": [ + 61861248, + 61875728, + 39226960, + 61273728, + 61273760, + 61273792, + 61281248, + 61273824, + 61273840, + 61273904, + 61281264, + 39226752, + 39226768, + 61273376, + 61281280, + 61273408, + 61273424, + 61348176, + 61644592, + 61348416, + 61417536, + 61273920, + 61273936, + 61616128, + 61651216, + 61596096, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588464, + 61693376, + 61457472, + 61435440, + 61435088, + 61489776, + 62033408, + 61348736, + 61349408, + 61349760, + 61701392, + 61281296, + 61273648, + 61281360, + 61720864, + 61622320, + 61622176, + 61274016, + 61274032, + 61636384, + 61728160, + 61273712, + 61281376, + 61468832, + 62276976, + 61583456, + 61281504, + 61281536 ], "bases": [ { @@ -78451,16 +78451,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65137344, + "vtable_address": 65141248, "methods": [ - 61291488, - 61288048, - 62273168, - 61277616, - 61277648, - 61465200, - 61277536, - 61579296 + 61295392, + 61291952, + 62277072, + 61281520, + 61281552, + 61469104, + 61281440, + 61583200 ], "bases": [ { @@ -78547,68 +78547,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65085248, - "methods": [ - 61852592, - 61867360, - 39223120, - 61269824, - 61269856, - 61269888, - 61281600, - 61269920, - 61269936, - 61270000, - 61281616, - 39222912, - 39222928, - 61269472, - 61281632, - 61269504, - 61269520, - 61371744, - 61638496, - 61371984, - 61410752, - 61270016, - 61270032, - 61610784, - 61646304, - 61591184, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583664, - 61687680, - 61447904, - 61423168, - 61422816, - 61486224, - 62041472, - 61372304, - 61372976, - 61373328, - 61697488, - 61281648, - 61269744, - 61281712, - 61716960, - 61608336, - 61608192, - 61270112, - 61270128, - 61629552, - 61720896, - 61269808, - 61281728, - 61465488, - 62272400, - 61575840, - 61281856, - 61281888 + "vtable_address": 65089152, + "methods": [ + 61856496, + 61871264, + 39226960, + 61273728, + 61273760, + 61273792, + 61285504, + 61273824, + 61273840, + 61273904, + 61285520, + 39226752, + 39226768, + 61273376, + 61285536, + 61273408, + 61273424, + 61375648, + 61642400, + 61375888, + 61414656, + 61273920, + 61273936, + 61614688, + 61650208, + 61595088, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587568, + 61691584, + 61451808, + 61427072, + 61426720, + 61490128, + 62045376, + 61376208, + 61376880, + 61377232, + 61701392, + 61285552, + 61273648, + 61285616, + 61720864, + 61612240, + 61612096, + 61274016, + 61274032, + 61633456, + 61724800, + 61273712, + 61285632, + 61469392, + 62276304, + 61579744, + 61285760, + 61285792 ], "bases": [ { @@ -78695,16 +78695,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65085744, + "vtable_address": 65089648, "methods": [ - 61291488, - 61288048, - 62272496, - 61281872, - 61281904, - 61465760, - 61281792, - 61575584 + 61295392, + 61291952, + 62276400, + 61285776, + 61285808, + 61469664, + 61285696, + 61579488 ], "bases": [ { @@ -78791,68 +78791,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65099392, - "methods": [ - 61885488, - 61904672, - 39223120, - 61269824, - 61269856, - 61269888, - 61280320, - 61269920, - 61269936, - 61270000, - 61280336, - 39222912, - 39222928, - 61269472, - 61280352, - 61269504, - 61269520, - 61382112, - 61634272, - 61382368, - 61715760, - 61270016, - 61270032, - 61611648, - 61639728, - 61586432, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577248, - 61679232, - 61501232, - 61493968, - 61488368, - 61510256, - 62036544, - 61382688, - 61383360, - 61383712, - 61697488, - 61555408, - 61269744, - 61280368, - 61716960, - 61597872, - 61597728, - 61270112, - 61270128, - 61622656, - 61722912, - 61269808, - 61544976, - 61664160, - 62294816, - 61395712, - 61280384, - 61280416 + "vtable_address": 65103296, + "methods": [ + 61889392, + 61908576, + 39226960, + 61273728, + 61273760, + 61273792, + 61284224, + 61273824, + 61273840, + 61273904, + 61284240, + 39226752, + 39226768, + 61273376, + 61284256, + 61273408, + 61273424, + 61386016, + 61638176, + 61386272, + 61719664, + 61273920, + 61273936, + 61615552, + 61643632, + 61590336, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581152, + 61683136, + 61505136, + 61497872, + 61492272, + 61514160, + 62040448, + 61386592, + 61387264, + 61387616, + 61701392, + 61559312, + 61273648, + 61284272, + 61720864, + 61601776, + 61601632, + 61274016, + 61274032, + 61626560, + 61726816, + 61273712, + 61548880, + 61668064, + 62298720, + 61399616, + 61284288, + 61284320 ], "bases": [ { @@ -78939,16 +78939,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65099888, + "vtable_address": 65103792, "methods": [ - 61289056, - 61288320, - 62295392, - 61280400, - 61280432, - 61663472, - 61544768, - 61396304 + 61292960, + 61292224, + 62299296, + 61284304, + 61284336, + 61667376, + 61548672, + 61400208 ], "bases": [ { @@ -79035,68 +79035,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65109576, - "methods": [ - 61887072, - 61906160, - 39223120, - 61269824, - 61269856, - 61269888, - 61279616, - 61269920, - 61269936, - 61270000, - 61279632, - 39222912, - 39222928, - 61269472, - 61279648, - 61269504, - 61269520, - 61356288, - 61641712, - 61356544, - 61412096, - 61270016, - 61270032, - 61613376, - 61648464, - 61593344, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585584, - 61691520, - 61501984, - 61494816, - 61488816, - 61509632, - 62034432, - 61356864, - 61357536, - 61357888, - 61697488, - 61556288, - 61269744, - 61279664, - 61716960, - 61620720, - 61620576, - 61270112, - 61270128, - 61633504, - 61726944, - 61269808, - 61550336, - 61672064, - 62295952, - 61396912, - 61279680, - 61279712 + "vtable_address": 65113480, + "methods": [ + 61890976, + 61910064, + 39226960, + 61273728, + 61273760, + 61273792, + 61283520, + 61273824, + 61273840, + 61273904, + 61283536, + 39226752, + 39226768, + 61273376, + 61283552, + 61273408, + 61273424, + 61360192, + 61645616, + 61360448, + 61416000, + 61273920, + 61273936, + 61617280, + 61652368, + 61597248, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589488, + 61695424, + 61505888, + 61498720, + 61492720, + 61513536, + 62038336, + 61360768, + 61361440, + 61361792, + 61701392, + 61560192, + 61273648, + 61283568, + 61720864, + 61624624, + 61624480, + 61274016, + 61274032, + 61637408, + 61730848, + 61273712, + 61554240, + 61675968, + 62299856, + 61400816, + 61283584, + 61283616 ], "bases": [ { @@ -79183,16 +79183,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65110072, + "vtable_address": 65113976, "methods": [ - 61288944, - 61288240, - 62296528, - 61279696, - 61279728, - 61671376, - 61550128, - 61397504 + 61292848, + 61292144, + 62300432, + 61283600, + 61283632, + 61675280, + 61554032, + 61401408 ], "bases": [ { @@ -79279,68 +79279,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65144464, - "methods": [ - 61890768, - 61909632, - 39223120, - 61269824, - 61269856, - 61269888, - 61276672, - 61269920, - 61269936, - 61270000, - 61276688, - 39222912, - 39222928, - 61269472, - 61276704, - 61269504, - 61269520, - 61337312, - 61635424, - 61337568, - 61414400, - 61270016, - 61270032, - 61614240, - 61642560, - 61587728, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61580592, - 61681536, - 61502736, - 61496512, - 61489264, - 61509008, - 62027392, - 61337888, - 61338560, - 61338912, - 61697488, - 61555584, - 61269744, - 61276720, - 61716960, - 61601232, - 61601088, - 61270112, - 61270128, - 61624464, - 61728960, - 61269808, - 61545392, - 61666752, - 62297088, - 61399728, - 61276736, - 61276768 + "vtable_address": 65148368, + "methods": [ + 61894672, + 61913536, + 39226960, + 61273728, + 61273760, + 61273792, + 61280576, + 61273824, + 61273840, + 61273904, + 61280592, + 39226752, + 39226768, + 61273376, + 61280608, + 61273408, + 61273424, + 61341216, + 61639328, + 61341472, + 61418304, + 61273920, + 61273936, + 61618144, + 61646464, + 61591632, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61584496, + 61685440, + 61506640, + 61500416, + 61493168, + 61512912, + 62031296, + 61341792, + 61342464, + 61342816, + 61701392, + 61559488, + 61273648, + 61280624, + 61720864, + 61605136, + 61604992, + 61274016, + 61274032, + 61628368, + 61732864, + 61273712, + 61549296, + 61670656, + 62300992, + 61403632, + 61280640, + 61280672 ], "bases": [ { @@ -79427,16 +79427,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65144960, + "vtable_address": 65148864, "methods": [ - 61288832, - 61288160, - 62297664, - 61276752, - 61276784, - 61666064, - 61545184, - 61400320 + 61292736, + 61292064, + 62301568, + 61280656, + 61280688, + 61669968, + 61549088, + 61404224 ], "bases": [ { @@ -79523,68 +79523,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65069336, - "methods": [ - 61880736, - 61900208, - 39223120, - 61269824, - 61269856, - 61269888, - 61282688, - 61269920, - 61269936, - 61270000, - 61282704, - 39222912, - 39222928, - 61269472, - 61282720, - 61269504, - 61269520, - 61376880, - 61638880, - 61377136, - 61410176, - 61270016, - 61270032, - 61611216, - 61646736, - 61591616, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584048, - 61688448, - 61498976, - 61490560, - 61487024, - 61512128, - 62043584, - 61377456, - 61378128, - 61378480, - 61697488, - 61555760, - 61269744, - 61282736, - 61716960, - 61609200, - 61609056, - 61270112, - 61270128, - 61629936, - 61721904, - 61269808, - 61548512, - 61670736, - 62293680, - 61390752, - 61282752, - 61282784 + "vtable_address": 65073240, + "methods": [ + 61884640, + 61904112, + 39226960, + 61273728, + 61273760, + 61273792, + 61286592, + 61273824, + 61273840, + 61273904, + 61286608, + 39226752, + 39226768, + 61273376, + 61286624, + 61273408, + 61273424, + 61380784, + 61642784, + 61381040, + 61414080, + 61273920, + 61273936, + 61615120, + 61650640, + 61595520, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587952, + 61692352, + 61502880, + 61494464, + 61490928, + 61516032, + 62047488, + 61381360, + 61382032, + 61382384, + 61701392, + 61559664, + 61273648, + 61286640, + 61720864, + 61613104, + 61612960, + 61274016, + 61274032, + 61633840, + 61725808, + 61273712, + 61552416, + 61674640, + 62297584, + 61394656, + 61286656, + 61286688 ], "bases": [ { @@ -79671,16 +79671,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65069832, + "vtable_address": 65073736, "methods": [ - 61289392, - 61288560, - 62294256, - 61282768, - 61282800, - 61670048, - 61548304, - 61391344 + 61293296, + 61292464, + 62298160, + 61286672, + 61286704, + 61673952, + 61552208, + 61395248 ], "bases": [ { @@ -79767,71 +79767,71 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65121744, - "methods": [ - 62002000, - 62003648, - 39223120, - 61269824, - 61269856, - 61269888, - 61279072, - 61269920, - 61269936, - 61270000, - 39222896, - 39222912, - 61361200, - 61269472, - 61279088, - 61269504, - 61269520, - 61352848, - 61641456, - 61353088, - 61412480, - 61750032, - 61270032, - 61613088, - 61648176, - 61593056, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585328, - 61691008, - 61741856, - 61409200, - 61409856, - 61464192, - 62033024, - 61353408, - 61354080, - 61752656, - 61752944, - 61279104, - 61269744, - 61279168, - 61716960, - 61620144, - 61620000, - 61270112, - 61270128, - 61633248, - 61726272, - 61269808, - 62092432, - 61752368, - 61754336, - 61753216, - 61751616, - 61751696, - 61751760, - 61753728, - 61552128 + "vtable_address": 65125648, + "methods": [ + 62005904, + 62007552, + 39226960, + 61273728, + 61273760, + 61273792, + 61282976, + 61273824, + 61273840, + 61273904, + 39226736, + 39226752, + 61365104, + 61273376, + 61282992, + 61273408, + 61273424, + 61356752, + 61645360, + 61356992, + 61416384, + 61753936, + 61273936, + 61616992, + 61652080, + 61596960, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589232, + 61694912, + 61745760, + 61413104, + 61413760, + 61468096, + 62036928, + 61357312, + 61357984, + 61756560, + 61756848, + 61283008, + 61273648, + 61283072, + 61720864, + 61624048, + 61623904, + 61274016, + 61274032, + 61637152, + 61730176, + 61273712, + 62096336, + 61756272, + 61758240, + 61757120, + 61755520, + 61755600, + 61755664, + 61757632, + 61556032 ], "bases": [ { @@ -79896,19 +79896,19 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65122264, + "vtable_address": 65126168, "methods": [ - 62092512, - 61752512, - 61753328, - 61754544, - 39223040, - 61751632, - 61751712, - 61751776, - 61551984, - 39225728, - 61753920 + 62096416, + 61756416, + 61757232, + 61758448, + 39226880, + 61755536, + 61755616, + 61755680, + 61555888, + 39229568, + 61757824 ], "bases": [ { @@ -79973,68 +79973,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65095328, - "methods": [ - 61883904, - 61903184, - 39223120, - 61269824, - 61269856, - 61269888, - 61280928, - 61269920, - 61269936, - 61270000, - 61280944, - 39222912, - 39222928, - 61269472, - 61280960, - 61269504, - 61269520, - 61364848, - 61637984, - 61365104, - 61411520, - 61270016, - 61270032, - 61610208, - 61645728, - 61590608, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583152, - 61686656, - 61500480, - 61493120, - 61487920, - 61510880, - 62038656, - 61365424, - 61366096, - 61366448, - 61697488, - 61556112, - 61269744, - 61280976, - 61716960, - 61607184, - 61607040, - 61270112, - 61270128, - 61629040, - 61719552, - 61269808, - 61547680, - 61668080, - 62291408, - 61394512, - 61280992, - 61281024 + "vtable_address": 65099232, + "methods": [ + 61887808, + 61907088, + 39226960, + 61273728, + 61273760, + 61273792, + 61284832, + 61273824, + 61273840, + 61273904, + 61284848, + 39226752, + 39226768, + 61273376, + 61284864, + 61273408, + 61273424, + 61368752, + 61641888, + 61369008, + 61415424, + 61273920, + 61273936, + 61614112, + 61649632, + 61594512, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587056, + 61690560, + 61504384, + 61497024, + 61491824, + 61514784, + 62042560, + 61369328, + 61370000, + 61370352, + 61701392, + 61560016, + 61273648, + 61284880, + 61720864, + 61611088, + 61610944, + 61274016, + 61274032, + 61632944, + 61723456, + 61273712, + 61551584, + 61671984, + 62295312, + 61398416, + 61284896, + 61284928 ], "bases": [ { @@ -80121,16 +80121,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65095824, + "vtable_address": 65099728, "methods": [ - 61289168, - 61288400, - 62291984, - 61281008, - 61281040, - 61667392, - 61547472, - 61395104 + 61293072, + 61292304, + 62295888, + 61284912, + 61284944, + 61671296, + 61551376, + 61399008 ], "bases": [ { @@ -80211,170 +80211,74 @@ ], "model": { "Itanium": { - "offset_to_top": -720 - } - } - }, - { - "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65054040, - "methods": [ - 61879152, - 61898720, - 39223120, - 61269824, - 61269856, - 61269888, - 61283424, - 61269920, - 61269936, - 61270000, - 61283440, - 39222912, - 39222928, - 61269472, - 61283456, - 61269504, - 61269520, - 61387344, - 61634656, - 61387600, - 61716480, - 61270016, - 61270032, - 61609776, - 61640160, - 61586864, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577632, - 61680000, - 61498224, - 61489712, - 61486576, - 61512752, - 62045696, - 61387920, - 61388592, - 61388944, - 61697488, - 61555232, - 61269744, - 61283472, - 61716960, - 61598736, - 61598592, - 61270112, - 61270128, - 61623040, - 61718544, - 61269808, - 61544560, - 61662832, - 62290272, - 61389552, - 61283488, - 61283520 - ], - "bases": [ - { - "type_name": "CConcreteToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseConcreteToolAttrValue", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseConcreteToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IBaseToolAttr", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - }, - { - "type_name": "IToolAttr_TypedValue", - "details": { - "Itanium": { - "offset": 720, - "flags": 2, - "bases": [ - { - "type_name": "IToolAttr_Value", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65054536, + "vtable_address": 65057944, "methods": [ - 61289504, - 61288640, - 62290848, - 61283504, - 61283536, - 61662144, - 61544352, - 61390144 + 61883056, + 61902624, + 39226960, + 61273728, + 61273760, + 61273792, + 61287328, + 61273824, + 61273840, + 61273904, + 61287344, + 39226752, + 39226768, + 61273376, + 61287360, + 61273408, + 61273424, + 61391248, + 61638560, + 61391504, + 61720384, + 61273920, + 61273936, + 61613680, + 61644064, + 61590768, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581536, + 61683904, + 61502128, + 61493616, + 61490480, + 61516656, + 62049600, + 61391824, + 61392496, + 61392848, + 61701392, + 61559136, + 61273648, + 61287376, + 61720864, + 61602640, + 61602496, + 61274016, + 61274032, + 61626944, + 61722448, + 61273712, + 61548464, + 61666736, + 62294176, + 61393456, + 61287392, + 61287424 ], "bases": [ { @@ -80455,92 +80359,40 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65087480, - "methods": [ - 61882320, - 61901696, - 39223120, - 61269824, - 61269856, - 61269888, - 61281440, - 61269920, - 61269936, - 61270000, - 61281456, - 39222912, - 39222928, - 61269472, - 61281472, - 61269504, - 61269520, - 61370016, - 61638368, - 61370272, - 61410944, - 61270016, - 61270032, - 61610640, - 61646160, - 61591040, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583536, - 61687424, - 61499728, - 61491408, - 61487472, - 61511504, - 62040768, - 61370592, - 61371264, - 61371616, - 61697488, - 61555936, - 61269744, - 61281488, - 61716960, - 61608048, - 61607904, - 61270112, - 61270128, - 61629424, - 61720560, - 61269808, - 61548096, - 61669408, - 62292544, - 61391952, - 61281504, - 61281536 + "type_name": "CConcreteToolAttrDirectMember", + "vtable_address": 65058440, + "methods": [ + 61293408, + 61292544, + 62294752, + 61287408, + 61287440, + 61666048, + 61548256, + 61394048 ], "bases": [ { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -80572,7 +80424,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { "offset": 720, @@ -80603,22 +80455,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65087976, + "vtable_address": 65091384, "methods": [ - 61289280, - 61288480, - 62293120, - 61281520, - 61281552, - 61668720, - 61547888, - 61392544 + 61886224, + 61905600, + 39226960, + 61273728, + 61273760, + 61273792, + 61285344, + 61273824, + 61273840, + 61273904, + 61285360, + 39226752, + 39226768, + 61273376, + 61285376, + 61273408, + 61273424, + 61373920, + 61642272, + 61374176, + 61414848, + 61273920, + 61273936, + 61614544, + 61650064, + 61594944, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587440, + 61691328, + 61503632, + 61495312, + 61491376, + 61515408, + 62044672, + 61374496, + 61375168, + 61375520, + 61701392, + 61559840, + 61273648, + 61285392, + 61720864, + 61611952, + 61611808, + 61274016, + 61274032, + 61633328, + 61724464, + 61273712, + 61552000, + 61673312, + 62296448, + 61395856, + 61285408, + 61285440 ], "bases": [ { @@ -80699,92 +80603,40 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65180448, - "methods": [ - 61896688, - 61911152, - 39223120, - 61269824, - 61269856, - 61269888, - 61272272, - 61269920, - 61269936, - 61270000, - 61272288, - 39222912, - 39222928, - 61269472, - 61272304, - 61269504, - 61269520, - 61302528, - 61637344, - 61302768, - 61417280, - 61270016, - 61270032, - 61616976, - 61645008, - 61589888, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582512, - 61685376, - 61460112, - 61440992, - 61440640, - 61482192, - 62017536, - 61303088, - 61303760, - 61304112, - 61697488, - 61272320, - 61269744, - 61272400, - 61716960, - 61605744, - 61605600, - 61270112, - 61270128, - 61628400, - 61735344, - 61269808, - 61291824, - 61472400, - 62285984, - 62141456, - 61272416, - 61272448 + "type_name": "CConcreteToolAttrDirectMember", + "vtable_address": 65091880, + "methods": [ + 61293184, + 61292384, + 62297024, + 61285424, + 61285456, + 61672624, + 61551792, + 61396448 ], "bases": [ { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -80816,10 +80668,10 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { - "offset": 736, + "offset": 720, "flags": 2, "bases": [ { @@ -80847,22 +80699,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65180944, + "vtable_address": 65184352, "methods": [ - 61292272, - 61292144, - 62286080, - 61272432, - 61272464, - 61472688, - 61291904, - 62141712 + 61900592, + 61915056, + 39226960, + 61273728, + 61273760, + 61273792, + 61276176, + 61273824, + 61273840, + 61273904, + 61276192, + 39226752, + 39226768, + 61273376, + 61276208, + 61273408, + 61273424, + 61306432, + 61641248, + 61306672, + 61421184, + 61273920, + 61273936, + 61620880, + 61648912, + 61593792, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586416, + 61689280, + 61464016, + 61444896, + 61444544, + 61486096, + 62021440, + 61306992, + 61307664, + 61308016, + 61701392, + 61276224, + 61273648, + 61276304, + 61720864, + 61609648, + 61609504, + 61274016, + 61274032, + 61632304, + 61739248, + 61273712, + 61295728, + 61476304, + 62289888, + 62145360, + 61276320, + 61276352 ], "bases": [ { @@ -80943,92 +80847,40 @@ ], "model": { "Itanium": { - "offset_to_top": -736 + "offset_to_top": 0 } } }, { - "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65167792, - "methods": [ - 61836816, - 61836848, - 39223120, - 61269824, - 61269856, - 61269888, - 61273632, - 61269920, - 61269936, - 61270000, - 61273648, - 39222912, - 39222928, - 61269472, - 61273664, - 61269504, - 61269520, - 61312416, - 61633888, - 61312656, - 61715040, - 61270016, - 61270032, - 61615968, - 61639296, - 61586000, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576864, - 61678464, - 61458048, - 61437840, - 61437488, - 61482560, - 62020352, - 61312976, - 61313648, - 61314000, - 61697488, - 61273680, - 61269744, - 61273760, - 61716960, - 61597008, - 61596864, - 61270112, - 61270128, - 61622272, - 61732992, - 61269808, - 61291984, - 61472992, - 62285344, - 62141968, - 61273776, - 61273808 + "type_name": "CConcreteToolAttrDirectMember", + "vtable_address": 65184848, + "methods": [ + 61296176, + 61296048, + 62289984, + 61276336, + 61276368, + 61476592, + 61295808, + 62145616 ], "bases": [ { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -81091,22 +80943,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -736 } } }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65168288, + "vtable_address": 65171696, "methods": [ - 61292272, - 61292144, - 62285440, + 61840720, + 61840752, + 39226960, + 61273728, + 61273760, 61273792, + 61277536, 61273824, - 61473280, - 61292064, - 62142224 + 61273840, + 61273904, + 61277552, + 39226752, + 39226768, + 61273376, + 61277568, + 61273408, + 61273424, + 61316320, + 61637792, + 61316560, + 61718944, + 61273920, + 61273936, + 61619872, + 61643200, + 61589904, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580768, + 61682368, + 61461952, + 61441744, + 61441392, + 61486464, + 62024256, + 61316880, + 61317552, + 61317904, + 61701392, + 61277584, + 61273648, + 61277664, + 61720864, + 61600912, + 61600768, + 61274016, + 61274032, + 61626176, + 61736896, + 61273712, + 61295888, + 61476896, + 62289248, + 62145872, + 61277680, + 61277712 ], "bases": [ { @@ -81187,92 +81091,40 @@ ], "model": { "Itanium": { - "offset_to_top": -736 + "offset_to_top": 0 } } }, { - "type_name": "CConcreteToolAttrDirectMember, CompMatPropertyMutator_t>", - "vtable_address": 65134616, - "methods": [ - 61855760, - 61870336, - 39223120, - 61269824, - 61269856, - 61269888, + "type_name": "CConcreteToolAttrDirectMember", + "vtable_address": 65172192, + "methods": [ + 61296176, + 61296048, + 62289344, 61277696, - 61269920, - 61269936, - 61270000, - 61277712, - 39222912, - 39222928, - 61269472, 61277728, - 61269504, - 61269520, - 61345984, - 61640816, - 61346240, - 61413440, - 61270016, - 61270032, - 61612368, - 61647456, - 61592336, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61584688, - 61689728, - 61504432, - 61495664, - 61503664, - 61514656, - 62030208, - 61346560, - 61347232, - 61347584, - 61697488, - 61556464, - 61269744, - 61277744, - 61716960, - 61618704, - 61618560, - 61270112, - 61270128, - 61632608, - 61724592, - 61269808, - 61554032, - 61673392, - 62298224, - 61398112, - 61277760, - 61277792 + 61477184, + 61295968, + 62146128 ], "bases": [ { - "type_name": "CConcreteToolAttr, CompMatPropertyMutator_t, void>", + "type_name": "CConcreteToolAttr", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttrValue, CompMatPropertyMutator_t>", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttr, CompMatPropertyMutator_t>", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -81304,10 +81156,10 @@ } }, { - "type_name": "IToolAttr_TypedValue >", + "type_name": "IToolAttr_TypedValue", "details": { "Itanium": { - "offset": 728, + "offset": 736, "flags": 2, "bases": [ { @@ -81335,22 +81187,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -736 } } }, { "type_name": "CConcreteToolAttrDirectMember, CompMatPropertyMutator_t>", - "vtable_address": 65135112, + "vtable_address": 65138520, "methods": [ - 61291712, - 61287936, - 62298816, - 61277776, - 61277808, - 61672704, - 61553808, - 61398704 + 61859664, + 61874240, + 39226960, + 61273728, + 61273760, + 61273792, + 61281600, + 61273824, + 61273840, + 61273904, + 61281616, + 39226752, + 39226768, + 61273376, + 61281632, + 61273408, + 61273424, + 61349888, + 61644720, + 61350144, + 61417344, + 61273920, + 61273936, + 61616272, + 61651360, + 61596240, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588592, + 61693632, + 61508336, + 61499568, + 61507568, + 61518560, + 62034112, + 61350464, + 61351136, + 61351488, + 61701392, + 61560368, + 61273648, + 61281648, + 61720864, + 61622608, + 61622464, + 61274016, + 61274032, + 61636512, + 61728496, + 61273712, + 61557936, + 61677296, + 62302128, + 61402016, + 61281664, + 61281696 ], "bases": [ { @@ -81431,92 +81335,40 @@ ], "model": { "Itanium": { - "offset_to_top": -728 + "offset_to_top": 0 } } }, { - "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65105008, - "methods": [ - 61854176, - 61868848, - 39223120, - 61269824, - 61269856, - 61269888, - 61279808, - 61269920, - 61269936, - 61270000, - 61279824, - 39222912, - 39222928, - 61269472, - 61279840, - 61269504, - 61269520, - 61378688, - 61634016, - 61378928, - 61715280, - 61270016, - 61270032, - 61611360, - 61639440, - 61586144, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61576992, - 61678720, - 61451600, - 61428416, - 61428064, - 61480432, - 62035136, - 61379248, - 61379920, - 61380272, - 61697488, - 61279856, - 61269744, - 61279920, - 61716960, - 61597296, - 61597152, - 61270112, - 61270128, - 61622400, - 61722240, - 61269808, - 61279936, - 61469504, - 62264416, - 61568544, - 61280064, - 61280096 + "type_name": "CConcreteToolAttrDirectMember, CompMatPropertyMutator_t>", + "vtable_address": 65139016, + "methods": [ + 61295616, + 61291840, + 62302720, + 61281680, + 61281712, + 61676608, + 61557712, + 61402608 ], "bases": [ { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr, CompMatPropertyMutator_t, void>", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue, CompMatPropertyMutator_t>", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr, CompMatPropertyMutator_t>", "details": { "Itanium": { "offset": 0, @@ -81548,10 +81400,10 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue >", "details": { "Itanium": { - "offset": 720, + "offset": 728, "flags": 2, "bases": [ { @@ -81579,22 +81431,74 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -728 } } }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65105504, + "vtable_address": 65108912, "methods": [ - 61287648, - 61284704, - 62264512, - 61280080, - 61280112, - 61469792, - 61280000, - 61568288 + 61858080, + 61872752, + 39226960, + 61273728, + 61273760, + 61273792, + 61283712, + 61273824, + 61273840, + 61273904, + 61283728, + 39226752, + 39226768, + 61273376, + 61283744, + 61273408, + 61273424, + 61382592, + 61637920, + 61382832, + 61719184, + 61273920, + 61273936, + 61615264, + 61643344, + 61590048, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61580896, + 61682624, + 61455504, + 61432320, + 61431968, + 61484336, + 62039040, + 61383152, + 61383824, + 61384176, + 61701392, + 61283760, + 61273648, + 61283824, + 61720864, + 61601200, + 61601056, + 61274016, + 61274032, + 61626304, + 61726144, + 61273712, + 61283840, + 61473408, + 62268320, + 61572448, + 61283968, + 61284000 ], "bases": [ { @@ -81675,92 +81579,40 @@ ], "model": { "Itanium": { - "offset_to_top": -720 + "offset_to_top": 0 } } }, { - "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65107344, - "methods": [ - 61821104, - 61821136, - 39223120, - 61269824, - 61269856, - 61269888, - 61278400, - 61269920, - 61269936, - 61270000, - 61278416, - 39222912, - 39222928, - 61269472, - 61278432, - 61269504, - 61269520, - 61349424, - 61641200, - 61349664, - 61412864, - 61270016, - 61270032, - 61612800, - 61647888, - 61592768, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585072, - 61690496, - 61452912, - 61430496, - 61430144, - 61479728, - 62031616, - 61349984, - 61350656, - 61351008, - 61697488, - 61278448, - 61269744, - 61278512, - 61716960, - 61619568, - 61619424, - 61270112, - 61270128, - 61632992, - 61725600, - 61269808, - 61278528, - 61468368, - 62264608, - 61578016, - 61278656, - 61278688 + "type_name": "CConcreteToolAttrDirectMember", + "vtable_address": 65109408, + "methods": [ + 61291552, + 61288608, + 62268416, + 61283984, + 61284016, + 61473696, + 61283904, + 61572192 ], "bases": [ { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Itanium": { "offset": 0, "flags": 0, "bases": [ { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Itanium": { "offset": 0, @@ -81823,22 +81675,170 @@ ], "model": { "Itanium": { - "offset_to_top": 0 + "offset_to_top": -720 } } }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65107840, + "vtable_address": 65111248, "methods": [ - 61287648, - 61284704, - 62264704, - 61278672, - 61278704, - 61468656, - 61278592, - 61577760 + 61825008, + 61825040, + 39226960, + 61273728, + 61273760, + 61273792, + 61282304, + 61273824, + 61273840, + 61273904, + 61282320, + 39226752, + 39226768, + 61273376, + 61282336, + 61273408, + 61273424, + 61353328, + 61645104, + 61353568, + 61416768, + 61273920, + 61273936, + 61616704, + 61651792, + 61596672, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61588976, + 61694400, + 61456816, + 61434400, + 61434048, + 61483632, + 62035520, + 61353888, + 61354560, + 61354912, + 61701392, + 61282352, + 61273648, + 61282416, + 61720864, + 61623472, + 61623328, + 61274016, + 61274032, + 61636896, + 61729504, + 61273712, + 61282432, + 61472272, + 62268512, + 61581920, + 61282560, + 61282592 + ], + "bases": [ + { + "type_name": "CConcreteToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseConcreteToolAttrValue", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseConcreteToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IBaseToolAttr", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + }, + { + "type_name": "IToolAttr_TypedValue", + "details": { + "Itanium": { + "offset": 720, + "flags": 2, + "bases": [ + { + "type_name": "IToolAttr_Value", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "CConcreteToolAttrDirectMember", + "vtable_address": 65111744, + "methods": [ + 61291552, + 61288608, + 62268608, + 61282576, + 61282608, + 61472560, + 61282496, + 61581664 ], "bases": [ { @@ -81925,68 +81925,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65182680, - "methods": [ - 61860512, - 61874800, - 39223120, - 61269824, - 61269856, - 61269888, - 61271920, - 61269920, - 61269936, - 61270000, - 61271936, - 39222912, - 39222928, - 61269472, - 61271952, - 61269504, - 61269520, - 61300816, - 61637216, - 61301056, - 61417472, - 61270016, - 61270032, - 61616832, - 61644864, - 61589744, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582384, - 61685120, - 61460816, - 61442048, - 61441696, - 61478320, - 62016832, - 61301376, - 61302048, - 61302400, - 61697488, - 61271968, - 61269744, - 61272032, - 61716960, - 61605456, - 61605312, - 61270112, - 61270128, - 61628272, - 61735008, - 61269808, - 61272048, - 61466048, - 62264992, - 61572256, - 61272176, - 61272208 + "vtable_address": 65186584, + "methods": [ + 61864416, + 61878704, + 39226960, + 61273728, + 61273760, + 61273792, + 61275824, + 61273824, + 61273840, + 61273904, + 61275840, + 39226752, + 39226768, + 61273376, + 61275856, + 61273408, + 61273424, + 61304720, + 61641120, + 61304960, + 61421376, + 61273920, + 61273936, + 61620736, + 61648768, + 61593648, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586288, + 61689024, + 61464720, + 61445952, + 61445600, + 61482224, + 62020736, + 61305280, + 61305952, + 61306304, + 61701392, + 61275872, + 61273648, + 61275936, + 61720864, + 61609360, + 61609216, + 61274016, + 61274032, + 61632176, + 61738912, + 61273712, + 61275952, + 61469952, + 62268896, + 61576160, + 61276080, + 61276112 ], "bases": [ { @@ -82073,16 +82073,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65183176, + "vtable_address": 65187080, "methods": [ - 61287648, - 61284704, - 62265088, - 61272192, - 61272224, - 61466336, - 61272112, - 61572000 + 61291552, + 61288608, + 62268992, + 61276096, + 61276128, + 61470240, + 61276016, + 61575904 ], "bases": [ { @@ -82169,68 +82169,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65142232, - "methods": [ - 61888656, - 61907648, - 39223120, - 61269824, - 61269856, - 61269888, - 61275632, - 61269920, - 61269936, - 61270000, - 61275648, - 39222912, - 39222928, - 61269472, - 61275664, - 61269504, - 61269520, - 61330448, - 61634784, - 61330688, - 61716720, - 61270016, - 61270032, - 61613520, - 61641840, - 61587008, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61579952, - 61680256, - 61456608, - 61435744, - 61435392, - 61479376, - 62024576, - 61331008, - 61331680, - 61332032, - 61697488, - 61275680, - 61269744, - 61275744, - 61716960, - 61599792, - 61599648, - 61270112, - 61270128, - 61623824, - 61727280, - 61269808, - 61275760, - 61467792, - 62264800, - 61570208, - 61275888, - 61275920 + "vtable_address": 65146136, + "methods": [ + 61892560, + 61911552, + 39226960, + 61273728, + 61273760, + 61273792, + 61279536, + 61273824, + 61273840, + 61273904, + 61279552, + 39226752, + 39226768, + 61273376, + 61279568, + 61273408, + 61273424, + 61334352, + 61638688, + 61334592, + 61720624, + 61273920, + 61273936, + 61617424, + 61645744, + 61590912, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61583856, + 61684160, + 61460512, + 61439648, + 61439296, + 61483280, + 62028480, + 61334912, + 61335584, + 61335936, + 61701392, + 61279584, + 61273648, + 61279648, + 61720864, + 61603696, + 61603552, + 61274016, + 61274032, + 61627728, + 61731184, + 61273712, + 61279664, + 61471696, + 62268704, + 61574112, + 61279792, + 61279824 ], "bases": [ { @@ -82317,16 +82317,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65142728, + "vtable_address": 65146632, "methods": [ - 61287648, - 61284704, - 62264896, - 61275904, - 61275936, - 61468080, - 61275824, - 61569952 + 61291552, + 61288608, + 62268800, + 61279808, + 61279840, + 61471984, + 61279728, + 61573856 ], "bases": [ { @@ -82413,68 +82413,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65063648, - "methods": [ - 61814992, - 61815024, - 39223120, - 61269824, - 61269856, - 61269888, - 61282336, - 61269920, - 61269936, - 61270000, - 61282352, - 39222912, - 39222928, - 61269472, - 61282368, - 61269504, - 61269520, - 61375168, - 61638752, - 61375408, - 61410368, - 61270016, - 61270032, - 61611072, - 61646592, - 61591472, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583920, - 61688192, - 61446544, - 61421072, - 61420720, - 61481488, - 62042880, - 61375728, - 61376400, - 61376752, - 61697488, - 61282384, - 61269744, - 61282448, - 61716960, - 61608912, - 61608768, - 61270112, - 61270128, - 61629808, - 61721568, - 61269808, - 61282464, - 61471248, - 62264224, - 61573792, - 61282592, - 61282624 + "vtable_address": 65067552, + "methods": [ + 61818896, + 61818928, + 39226960, + 61273728, + 61273760, + 61273792, + 61286240, + 61273824, + 61273840, + 61273904, + 61286256, + 39226752, + 39226768, + 61273376, + 61286272, + 61273408, + 61273424, + 61379072, + 61642656, + 61379312, + 61414272, + 61273920, + 61273936, + 61614976, + 61650496, + 61595376, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587824, + 61692096, + 61450448, + 61424976, + 61424624, + 61485392, + 62046784, + 61379632, + 61380304, + 61380656, + 61701392, + 61286288, + 61273648, + 61286352, + 61720864, + 61612816, + 61612672, + 61274016, + 61274032, + 61633712, + 61725472, + 61273712, + 61286368, + 61475152, + 62268128, + 61577696, + 61286496, + 61286528 ], "bases": [ { @@ -82561,16 +82561,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65064144, - "methods": [ - 61287648, - 61284704, - 62264320, - 61282608, - 61282640, - 61471536, - 61282528, - 61573536 + "vtable_address": 65068048, + "methods": [ + 61291552, + 61288608, + 62268224, + 61286512, + 61286544, + 61475440, + 61286432, + 61577440 ], "bases": [ { @@ -82657,68 +82657,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65059080, - "methods": [ - 61851008, - 61865872, - 39223120, - 61269824, - 61269856, - 61269888, - 61282912, - 61269920, - 61269936, - 61270000, - 61282928, - 39222912, - 39222928, - 61269472, - 61282944, - 61269504, - 61269520, - 61383920, - 61634400, - 61384160, - 61716000, - 61270016, - 61270032, - 61609344, - 61639872, - 61586576, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61577376, - 61679488, - 61445888, - 61420032, - 61419680, - 61481840, - 62044288, - 61384480, - 61385152, - 61385504, - 61697488, - 61282960, - 61269744, - 61283024, - 61716960, - 61598160, - 61598016, - 61270112, - 61270128, - 61622784, - 61717872, - 61269808, - 61283040, - 61471824, - 62264032, - 61568032, - 61283168, - 61283200 + "vtable_address": 65062984, + "methods": [ + 61854912, + 61869776, + 39226960, + 61273728, + 61273760, + 61273792, + 61286816, + 61273824, + 61273840, + 61273904, + 61286832, + 39226752, + 39226768, + 61273376, + 61286848, + 61273408, + 61273424, + 61387824, + 61638304, + 61388064, + 61719904, + 61273920, + 61273936, + 61613248, + 61643776, + 61590480, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61581280, + 61683392, + 61449792, + 61423936, + 61423584, + 61485744, + 62048192, + 61388384, + 61389056, + 61389408, + 61701392, + 61286864, + 61273648, + 61286928, + 61720864, + 61602064, + 61601920, + 61274016, + 61274032, + 61626688, + 61721776, + 61273712, + 61286944, + 61475728, + 62267936, + 61571936, + 61287072, + 61287104 ], "bases": [ { @@ -82805,16 +82805,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65059576, + "vtable_address": 65063480, "methods": [ - 61287648, - 61284704, - 62264128, - 61283184, - 61283216, - 61472112, - 61283104, - 61567776 + 61291552, + 61288608, + 62268032, + 61287088, + 61287120, + 61476016, + 61287008, + 61571680 ], "bases": [ { @@ -82901,68 +82901,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65178216, - "methods": [ - 61858928, - 61873312, - 39223120, - 61269824, - 61269856, - 61269888, - 61272512, - 61269920, - 61269936, - 61270000, - 61272528, - 39222912, - 39222928, - 61269472, - 61272544, - 61269504, - 61269520, - 61304240, - 61637472, - 61304480, - 61417088, - 61270016, - 61270032, - 61617120, - 61645152, - 61590032, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582640, - 61685632, - 61459408, - 61439952, - 61439584, - 61478672, - 62018240, - 61304800, - 61305472, - 61305824, - 61697488, - 61272560, - 61269744, - 61272624, - 61716960, - 61606032, - 61605888, - 61270112, - 61270128, - 61628528, - 61735680, - 61269808, - 61272640, - 61466624, - 62304000, - 61573280, - 61272800, - 61272832 + "vtable_address": 65182120, + "methods": [ + 61862832, + 61877216, + 39226960, + 61273728, + 61273760, + 61273792, + 61276416, + 61273824, + 61273840, + 61273904, + 61276432, + 39226752, + 39226768, + 61273376, + 61276448, + 61273408, + 61273424, + 61308144, + 61641376, + 61308384, + 61420992, + 61273920, + 61273936, + 61621024, + 61649056, + 61593936, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586544, + 61689536, + 61463312, + 61443856, + 61443488, + 61482576, + 62022144, + 61308704, + 61309376, + 61309728, + 61701392, + 61276464, + 61273648, + 61276528, + 61720864, + 61609936, + 61609792, + 61274016, + 61274032, + 61632432, + 61739584, + 61273712, + 61276544, + 61470528, + 62307904, + 61577184, + 61276704, + 61276736 ], "bases": [ { @@ -83049,16 +83049,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65178712, + "vtable_address": 65182616, "methods": [ - 61291600, - 61287840, - 62303424, - 61272816, - 61272848, - 61466928, - 61272720, - 61573024 + 61295504, + 61291744, + 62307328, + 61276720, + 61276752, + 61470832, + 61276624, + 61576928 ], "bases": [ { @@ -83145,68 +83145,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65076680, - "methods": [ - 61816640, - 61816672, - 39223120, - 61269824, - 61269856, - 61269888, - 61281952, - 61269920, - 61269936, - 61270000, - 61281968, - 39222912, - 39222928, - 61269472, - 61281984, - 61269504, - 61269520, - 61373456, - 61638624, - 61373696, - 61410560, - 61270016, - 61270032, - 61610928, - 61646448, - 61591328, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61583792, - 61687936, - 61447200, - 61422128, - 61421760, - 61481136, - 62042176, - 61374016, - 61374688, - 61375040, - 61697488, - 61282000, - 61269744, - 61282064, - 61716960, - 61608624, - 61608480, - 61270112, - 61270128, - 61629680, - 61721232, - 61269808, - 61282080, - 61470640, - 62302592, - 61576352, - 61282240, - 61282272 + "vtable_address": 65080584, + "methods": [ + 61820544, + 61820576, + 39226960, + 61273728, + 61273760, + 61273792, + 61285856, + 61273824, + 61273840, + 61273904, + 61285872, + 39226752, + 39226768, + 61273376, + 61285888, + 61273408, + 61273424, + 61377360, + 61642528, + 61377600, + 61414464, + 61273920, + 61273936, + 61614832, + 61650352, + 61595232, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61587696, + 61691840, + 61451104, + 61426032, + 61425664, + 61485040, + 62046080, + 61377920, + 61378592, + 61378944, + 61701392, + 61285904, + 61273648, + 61285968, + 61720864, + 61612528, + 61612384, + 61274016, + 61274032, + 61633584, + 61725136, + 61273712, + 61285984, + 61474544, + 62306496, + 61580256, + 61286144, + 61286176 ], "bases": [ { @@ -83293,16 +83293,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65077176, + "vtable_address": 65081080, "methods": [ - 61291600, - 61287840, - 62302016, - 61282256, - 61282288, - 61470944, - 61282160, - 61576096 + 61295504, + 61291744, + 62305920, + 61286160, + 61286192, + 61474848, + 61286064, + 61580000 ], "bases": [ { @@ -83389,68 +83389,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65125224, - "methods": [ - 61996512, - 61999600, - 39223120, - 61269824, - 61269856, - 61269888, - 61278720, - 61269920, - 61269936, - 61270000, - 61278736, - 39222912, - 39222928, - 61269472, - 61278752, - 61269504, - 61269520, - 61351136, - 61641328, - 61351376, - 61412672, - 61270016, - 61270032, - 61612944, - 61648032, - 61592912, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61585200, - 61690752, - 61452256, - 61429456, - 61429104, - 61480080, - 62032320, - 61351696, - 61352368, - 61352720, - 61697488, - 61278768, - 61269744, - 61278832, - 61716960, - 61619856, - 61619712, - 61270112, - 61270128, - 61633120, - 61725936, - 61269808, - 61278848, - 61468944, - 62268304, - 61579040, - 61278976, - 61279008 + "vtable_address": 65129128, + "methods": [ + 62000416, + 62003504, + 39226960, + 61273728, + 61273760, + 61273792, + 61282624, + 61273824, + 61273840, + 61273904, + 61282640, + 39226752, + 39226768, + 61273376, + 61282656, + 61273408, + 61273424, + 61355040, + 61645232, + 61355280, + 61416576, + 61273920, + 61273936, + 61616848, + 61651936, + 61596816, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61589104, + 61694656, + 61456160, + 61433360, + 61433008, + 61483984, + 62036224, + 61355600, + 61356272, + 61356624, + 61701392, + 61282672, + 61273648, + 61282736, + 61720864, + 61623760, + 61623616, + 61274016, + 61274032, + 61637024, + 61729840, + 61273712, + 61282752, + 61472848, + 62272208, + 61582944, + 61282880, + 61282912 ], "bases": [ { @@ -83537,16 +83537,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65125720, + "vtable_address": 65129624, "methods": [ - 61288720, - 61287760, - 62268400, - 61278992, - 61279024, - 61469216, - 61278912, - 61578784 + 61292624, + 61291664, + 62272304, + 61282896, + 61282928, + 61473120, + 61282816, + 61582688 ], "bases": [ { @@ -83633,68 +83633,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65175984, - "methods": [ - 61997664, - 62000800, - 39223120, - 61269824, - 61269856, - 61269888, - 61272896, - 61269920, - 61269936, - 61270000, - 61272912, - 39222912, - 39222928, - 61269472, - 61272928, - 61269504, - 61269520, - 61305952, - 61637600, - 61306192, - 61416896, - 61270016, - 61270032, - 61617264, - 61645296, - 61590176, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582768, - 61685888, - 61458752, - 61438896, - 61438544, - 61479024, - 62018944, - 61306512, - 61307184, - 61307536, - 61697488, - 61272944, - 61269744, - 61273008, - 61716960, - 61606320, - 61606176, - 61270112, - 61270128, - 61628656, - 61736016, - 61269808, - 61273024, - 61467232, - 62268992, - 61572768, - 61273152, - 61273184 + "vtable_address": 65179888, + "methods": [ + 62001568, + 62004704, + 39226960, + 61273728, + 61273760, + 61273792, + 61276800, + 61273824, + 61273840, + 61273904, + 61276816, + 39226752, + 39226768, + 61273376, + 61276832, + 61273408, + 61273424, + 61309856, + 61641504, + 61310096, + 61420800, + 61273920, + 61273936, + 61621168, + 61649200, + 61594080, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586672, + 61689792, + 61462656, + 61442800, + 61442448, + 61482928, + 62022848, + 61310416, + 61311088, + 61311440, + 61701392, + 61276848, + 61273648, + 61276912, + 61720864, + 61610224, + 61610080, + 61274016, + 61274032, + 61632560, + 61739920, + 61273712, + 61276928, + 61471136, + 62272896, + 61576672, + 61277056, + 61277088 ], "bases": [ { @@ -83781,16 +83781,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65176480, + "vtable_address": 65180384, "methods": [ - 61288720, - 61287760, - 62269088, - 61273168, - 61273200, - 61467504, - 61273088, - 61572512 + 61292624, + 61291664, + 62272992, + 61277072, + 61277104, + 61471408, + 61276992, + 61576416 ], "bases": [ { @@ -83877,68 +83877,68 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65072144, - "methods": [ - 61924832, - 61924864, - 39223120, - 61269824, - 61269856, - 61269888, - 61280480, - 61269920, - 61269936, - 61270000, - 61280496, - 39222912, - 39222928, - 61269472, - 61280512, - 61269504, - 61269520, - 61361424, - 61637728, - 61361664, - 61411904, - 61270016, - 61270032, - 61609920, - 61645440, - 61590320, - 61269968, - 61269984, - 61269568, - 61270096, - 61269584, - 61269600, - 61582896, - 61686144, - 61450160, - 61426320, - 61425968, - 61480784, - 62037248, - 61361984, - 61362656, - 61363008, - 61697488, - 61280528, - 61269744, - 61280592, - 61716960, - 61606608, - 61606464, - 61270112, - 61270128, - 61628784, - 61718880, - 61269808, - 61280608, - 61470080, - 62267616, - 61574816, - 61280736, - 61280768 + "vtable_address": 65076048, + "methods": [ + 61928736, + 61928768, + 39226960, + 61273728, + 61273760, + 61273792, + 61284384, + 61273824, + 61273840, + 61273904, + 61284400, + 39226752, + 39226768, + 61273376, + 61284416, + 61273408, + 61273424, + 61365328, + 61641632, + 61365568, + 61415808, + 61273920, + 61273936, + 61613824, + 61649344, + 61594224, + 61273872, + 61273888, + 61273472, + 61274000, + 61273488, + 61273504, + 61586800, + 61690048, + 61454064, + 61430224, + 61429872, + 61484688, + 62041152, + 61365888, + 61366560, + 61366912, + 61701392, + 61284432, + 61273648, + 61284496, + 61720864, + 61610512, + 61610368, + 61274016, + 61274032, + 61632688, + 61722784, + 61273712, + 61284512, + 61473984, + 62271520, + 61578720, + 61284640, + 61284672 ], "bases": [ { @@ -84025,16 +84025,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 65072640, + "vtable_address": 65076544, "methods": [ - 61288720, - 61287760, - 62267712, - 61280752, - 61280784, - 61470352, - 61280672, - 61574560 + 61292624, + 61291664, + 62271616, + 61284656, + 61284688, + 61474256, + 61284576, + 61578464 ], "bases": [ { @@ -84121,35 +84121,35 @@ }, { "type_name": "CControlLibTestPanel", - "vtable_address": 64411344, + "vtable_address": 64415248, "methods": [ 12043984, - 59816784, - 23898480, - 23898496, - 59817120, - 59817136, - 59817120, + 59820688, + 23901232, + 23901248, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -84162,12 +84162,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -84182,30 +84182,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23898464, - 23901920, - 23901936, + 59839696, + 23901216, + 23904672, + 23904688, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -84240,18 +84240,18 @@ }, { "type_name": "CCopyRecipientFilter", - "vtable_address": 64221216, + "vtable_address": 64225120, "methods": [ - 22069840, - 22069904, - 22046528, - 22046560, - 22050048, - 22046544, - 22050512, - 22046576, - 22170496, - 22172608 + 22072656, + 22072720, + 22049344, + 22049376, + 22052864, + 22049360, + 22053328, + 22049392, + 22173312, + 22175424 ], "bases": [ { @@ -84273,35 +84273,35 @@ }, { "type_name": "CCountdown", - "vtable_address": 64608560, + "vtable_address": 64612464, "methods": [ 12043984, - 59816784, - 28214160, - 28214176, - 59817120, - 59817136, - 59817120, + 59820688, + 28217424, + 28217440, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 28222144, + 59821792, + 59821808, + 59820704, + 59832432, + 28225408, 12233664, 12233696, 12233680, @@ -84314,12 +84314,12 @@ 12399392, 12233312, 12233168, - 28287904, - 59825616, - 59825216, - 59836080, + 28291168, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -84329,35 +84329,35 @@ 12233472, 12233488, 12233504, - 28217408, + 28220672, 12399424, 12233520, 12233296, 12233760, - 59835792, - 28214144, - 28219856, - 28222688, + 59839696, + 28217408, + 28223120, + 28225952, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -84392,35 +84392,35 @@ }, { "type_name": "CCrosshairPreviewControls", - "vtable_address": 64392664, + "vtable_address": 64396568, "methods": [ 12043984, - 59816784, - 23622096, - 23622112, - 59817120, - 59817136, - 59817120, + 59820688, + 23624848, + 23624864, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 23633984, + 59821792, + 59821808, + 59820704, + 59832432, + 23636736, 12233664, 12233696, 12233680, @@ -84433,12 +84433,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -84448,35 +84448,35 @@ 12233472, 12233488, 12233504, - 23716336, - 23715824, + 23719088, + 23718576, 12233520, 12233296, 12233760, - 59835792, - 23622080, - 23624992, - 23634912, + 59839696, + 23624832, + 23627744, + 23637664, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -84511,11 +84511,11 @@ }, { "type_name": "CCsgo3DSkyboxRenderer", - "vtable_address": 64625496, + "vtable_address": 64629400, "methods": [ - 28497264, - 28342016, - 28343584, + 28500656, + 28345408, + 28346976, 12236576 ], "bases": [ @@ -84538,11 +84538,11 @@ }, { "type_name": "CCsgoClearQuadOverdrawVisualizationTextures", - "vtable_address": 64624920, + "vtable_address": 64628824, "methods": [ - 28351632, - 28332864, - 28334176, + 28355024, + 28336256, + 28337568, 12236576 ], "bases": [ @@ -84565,11 +84565,11 @@ }, { "type_name": "CCsgoClearStencilBitLayer", - "vtable_address": 64625576, + "vtable_address": 64629480, "methods": [ - 28333328, - 28332768, - 28333984, + 28336720, + 28336160, + 28337376, 12236576 ], "bases": [ @@ -84592,26 +84592,26 @@ }, { "type_name": "CCsgoClientUI", - "vtable_address": 64349768, + "vtable_address": 64353672, "methods": [ 12251152, 12251072, 12238544, 12241728, - 22934256, + 22937072, 12238560, - 22935600, + 22938416, 12238576, 12244544, 12238592, 12238608, - 22917840, + 22920656, 12236304, 12236448, 12246784, 12246592, 12246144, - 22917888, + 22920704, 12236480, 12248544, 12248432, @@ -84619,7 +84619,7 @@ 12245328, 12236512, 12246304, - 22978080 + 22980896 ], "bases": [ { @@ -84750,11 +84750,11 @@ }, { "type_name": "CCsgoClientUI", - "vtable_address": 64349992, + "vtable_address": 64353896, "methods": [ - 22980240, + 22983056, 13820288, - 22916864 + 22919680 ], "bases": [ { @@ -84885,11 +84885,11 @@ }, { "type_name": "CCsgoCopyProceduralLayerRenderer", - "vtable_address": 64624968, + "vtable_address": 64628872, "methods": [ - 28350048, - 28332336, - 28334160, + 28353440, + 28335728, + 28337552, 12236576 ], "bases": [ @@ -84912,11 +84912,11 @@ }, { "type_name": "CCsgoIconCopyAndMipMapLayerRenderer", - "vtable_address": 64625064, + "vtable_address": 64628968, "methods": [ - 28350704, - 28332832, - 28333968, + 28354096, + 28336224, + 28337360, 12236576 ], "bases": [ @@ -84939,11 +84939,11 @@ }, { "type_name": "CCsgoMBOITUpsampleProceduralLayerRender", - "vtable_address": 64625160, + "vtable_address": 64629064, "methods": [ - 28336688, - 28341264, - 28341600, + 28340080, + 28344656, + 28344992, 12236576 ], "bases": [ @@ -84966,11 +84966,11 @@ }, { "type_name": "CCsgoMagBorderProceduralLayerRenderer", - "vtable_address": 64625256, + "vtable_address": 64629160, "methods": [ - 28334928, - 28332784, - 28334080, + 28338320, + 28336176, + 28337472, 12236576 ], "bases": [ @@ -84993,11 +84993,11 @@ }, { "type_name": "CCsgoMagnifierProceduralLayerRenderer", - "vtable_address": 64625208, + "vtable_address": 64629112, "methods": [ - 28403488, - 28332800, - 28333952, + 28406880, + 28336192, + 28337344, 12236576 ], "bases": [ @@ -85020,20 +85020,20 @@ }, { "type_name": "CCsgoPictureInPicturePipeline", - "vtable_address": 64625736, - "methods": [ - 28737552, - 28331712, - 28331776, - 28331760, - 28331744, - 28331808, + "vtable_address": 64629640, + "methods": [ + 28741264, + 28335104, + 28335168, + 28335152, + 28335136, + 28335200, 12236544, - 28331824, + 28335216, 12574928, - 28331840, - 28331856, - 28331728 + 28335232, + 28335248, + 28335120 ], "bases": [ { @@ -85066,11 +85066,11 @@ }, { "type_name": "CCsgoPostProcessRenderer", - "vtable_address": 64624176, + "vtable_address": 64628080, "methods": [ - 28423808, - 28333008, - 28334256, + 28427200, + 28336400, + 28337648, 12236576 ], "bases": [ @@ -85093,11 +85093,11 @@ }, { "type_name": "CCsgoQuadRenderer", - "vtable_address": 64624872, + "vtable_address": 64628776, "methods": [ - 28337520, - 28341424, - 28341792, + 28340912, + 28344816, + 28345184, 12236576 ], "bases": [ @@ -85120,11 +85120,11 @@ }, { "type_name": "CCsgoResolveDepthProceduralLayerRenderer", - "vtable_address": 64625112, + "vtable_address": 64629016, "methods": [ - 28345152, - 28332816, - 28333936, + 28348544, + 28336208, + 28337328, 12236576 ], "bases": [ @@ -85147,11 +85147,11 @@ }, { "type_name": "CCsgoResolveProceduralLayerRenderer", - "vtable_address": 64625016, + "vtable_address": 64628920, "methods": [ - 28348688, - 28332848, - 28334144, + 28352080, + 28336240, + 28337536, 12236576 ], "bases": [ @@ -85174,11 +85174,11 @@ }, { "type_name": "CCsgoVanityResolveProceduralLayerRenderer", - "vtable_address": 64449104, + "vtable_address": 64453008, "methods": [ - 24316416, - 24269952, - 24271920, + 24319168, + 24272704, + 24274672, 12236576 ], "bases": [ @@ -85201,7 +85201,7 @@ }, { "type_name": "CCustomGameEventManager", - "vtable_address": 63324416, + "vtable_address": 63328320, "methods": [ 12204192, 12204208, @@ -85297,11 +85297,11 @@ }, { "type_name": "CCustomTextureToolCache", - "vtable_address": 64602592, + "vtable_address": 64606496, "methods": [ - 28160288, + 28163552, 12204208, - 28163456, + 28166720, 12204240, 12204256, 12204272, @@ -85311,7 +85311,7 @@ 12204336, 12204352, 12204368, - 28160304, + 28163568, 12204400, 12204416, 12204432, @@ -85328,7 +85328,7 @@ 12204608, 12204624, 12204640, - 28160320, + 28163584, 12204672, 12204688, 12204704, @@ -85355,12 +85355,12 @@ 12205040, 12205056, 12205072, - 28162144, + 28165408, 12205104, - 28161824, - 28161584, - 28161600, - 28160272 + 28165088, + 28164848, + 28164864, + 28163536 ], "bases": [ { @@ -85382,13 +85382,13 @@ }, { "type_name": "CDamageRecord", - "vtable_address": 64000504, + "vtable_address": 64004408, "methods": [ - 18355952, - 18356544, - 18356480, - 18356400, - 18356336 + 18358256, + 18358848, + 18358784, + 18358704, + 18358640 ], "bases": [], "model": { @@ -85399,63 +85399,63 @@ }, { "type_name": "CDataDrivenCamera", - "vtable_address": 64626776, - "methods": [ - 28821424, - 28821856, - 21360480, - 21324944, - 28832464, - 21357088, - 21342272, - 28820720, - 21324560, - 21324576, - 21324592, - 21324608, - 21324624, - 21324640, - 28820816, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 28820272, - 28820304, - 28820240, - 21324768, - 21324784, - 28820224, - 21324800, - 21324816, - 28820336, - 28820352, - 28820368, - 21387680, - 28823744, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160, - 28820176, - 28820192 + "vtable_address": 64630680, + "methods": [ + 28825136, + 28825568, + 21363296, + 21327760, + 28836176, + 21359904, + 21345088, + 28824432, + 21327376, + 21327392, + 21327408, + 21327424, + 21327440, + 21327456, + 28824528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 28823984, + 28824016, + 28823952, + 21327584, + 21327600, + 28823936, + 21327616, + 21327632, + 28824048, + 28824064, + 28824080, + 21390496, + 28827456, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976, + 28823888, + 28823904 ], "bases": [ { @@ -85498,9 +85498,9 @@ }, { "type_name": "CDataDrivenCamera", - "vtable_address": 64627232, + "vtable_address": 64631136, "methods": [ - 28820208 + 28823920 ], "bases": [ { @@ -85543,23 +85543,23 @@ }, { "type_name": "CDataGCCStrike15_v2_MatchInfo", - "vtable_address": 63545536, + "vtable_address": 63549440, "methods": [ 15774288, 15774816, - 29643894, + 29647734, 15178160, 15872256, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15039664, 14847696, 15511488, 12011504, 15003808, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837088, 14801728 @@ -85595,23 +85595,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup", - "vtable_address": 63546016, + "vtable_address": 63549920, "methods": [ 15646688, 15744288, - 29643894, + 29647734, 15178672, 15838944, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14886960, 14847664, 15512272, 12011504, 15088032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837184, 14801776 @@ -85647,23 +85647,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroupTeam", - "vtable_address": 63545696, + "vtable_address": 63549600, "methods": [ 15646416, 15695696, - 29643894, + 29647734, 15178304, 15796128, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812528, 14847632, 15328480, 12011504, 14963584, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837120, 14801744 @@ -85699,23 +85699,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup_Picks", - "vtable_address": 63545856, + "vtable_address": 63549760, "methods": [ 15646544, 15714160, - 29643894, + 29647734, 15178464, 15796192, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14880160, 14847648, 15329008, 12011504, 14895744, - 29642796, - 29643062, + 29646636, + 29646902, 14810304, 14837152, 14801760 @@ -85751,23 +85751,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentInfo", - "vtable_address": 63546336, + "vtable_address": 63550240, "methods": [ 15755616, 15757104, - 29643894, + 29647734, 15179056, 15864576, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15034960, 14847712, 15514304, 12011504, 14855424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837248, 14801808 @@ -85803,23 +85803,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft", - "vtable_address": 63536736, + "vtable_address": 63540640, "methods": [ 15640080, 15744720, - 29643894, + 29647734, 15169264, 15837408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14891696, 14847168, 15497744, 12011504, 15127904, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835328, 14800848 @@ -85855,23 +85855,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft_Entry", - "vtable_address": 63536576, + "vtable_address": 63540480, "methods": [ 15639952, 15693136, - 29643894, + 29647734, 15169072, 15794624, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812256, 14847152, 15299328, 12011504, 14943840, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835296, 14800832 @@ -85907,23 +85907,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentSection", - "vtable_address": 63546176, + "vtable_address": 63550080, "methods": [ 15646928, 15735200, - 29643894, + 29647734, 15178880, 15839312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14887424, 14847680, 15513584, 12011504, 15007488, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837216, 14801792 @@ -85959,19 +85959,19 @@ }, { "type_name": "CDebugOverlayAIEventFilter", - "vtable_address": 64029216, + "vtable_address": 64033120, "methods": [ - 18939808, - 18940432, - 19101584, - 18939840, - 19025728, - 18940032, - 18940464, - 18940192, - 18939904, - 18939920, - 19152128 + 18942624, + 18943248, + 19104400, + 18942656, + 19028544, + 18942848, + 18943280, + 18943008, + 18942720, + 18942736, + 19154944 ], "bases": [ { @@ -85993,7 +85993,7 @@ }, { "type_name": "CDebugOverlayBullets", - "vtable_address": 63722608, + "vtable_address": 63726512, "methods": [ 12204192, 12204208, @@ -86003,11 +86003,11 @@ 12204272, 12204288, 12204304, - 18940480, + 18943296, 12204336, 12204352, 12204368, - 18940496, + 18943312, 12204400, 12204416, 12204432, @@ -86016,7 +86016,7 @@ 12204480, 12204496, 12204512, - 19015392, + 19018208, 12204544, 12204560, 12204576, @@ -86031,9 +86031,9 @@ 12204720, 12204736, 12204752, - 17126960, + 17127056, 12204784, - 18940544, + 18943360, 12204816, 12204832, 12204848, @@ -86051,13 +86051,13 @@ 12205040, 12205056, 12205072, - 17125968, + 17126064, 12205104, 17120368, - 17128144, - 17128784, + 17128240, + 17128880, 17120352, - 17127024, + 17127120, 17120192, 17120192 ], @@ -86103,19 +86103,19 @@ }, { "type_name": "CDebugOverlayCombinedFilter", - "vtable_address": 64028800, - "methods": [ - 18939808, - 18940320, - 19101808, - 18939840, - 18937312, - 19176144, - 18940368, - 18940192, - 18939904, - 18939952, - 19155920 + "vtable_address": 64032704, + "methods": [ + 18942624, + 18943136, + 19104624, + 18942656, + 18940128, + 19178960, + 18943184, + 18943008, + 18942720, + 18942768, + 19158736 ], "bases": [ { @@ -86137,19 +86137,19 @@ }, { "type_name": "CDebugOverlayEntityFilter", - "vtable_address": 64028696, + "vtable_address": 64032600, "methods": [ - 18940672, - 18940256, - 19223392, - 18939840, - 18967392, - 18940032, - 18940288, - 18940192, - 18939904, - 18939920, - 19146624 + 18943488, + 18943072, + 19226208, + 18942656, + 18970208, + 18942848, + 18943104, + 18943008, + 18942720, + 18942736, + 19149440 ], "bases": [ { @@ -86171,19 +86171,19 @@ }, { "type_name": "CDebugOverlayFilterBase", - "vtable_address": 64028488, - "methods": [ - 18939808, - 18939824, - 19101040, - 18939840, - 18939856, - 18940032, - 18939888, - 18940192, - 18939904, - 18939920, - 18939936 + "vtable_address": 64032392, + "methods": [ + 18942624, + 18942640, + 19103856, + 18942656, + 18942672, + 18942848, + 18942704, + 18943008, + 18942720, + 18942736, + 18942752 ], "bases": [], "model": { @@ -86194,7 +86194,7 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 64027800, + "vtable_address": 64031704, "methods": [ 12204192, 12204208, @@ -86204,17 +86204,17 @@ 12204272, 12204288, 12204304, - 19174480, + 19177296, 12204336, 12204352, 12204368, - 18973696, + 18976512, 12204400, 12204416, - 19222432, + 19225248, 12204448, 12204464, - 18972928, + 18975744, 12204496, 12204512, 12204528, @@ -86252,19 +86252,19 @@ 12205040, 12205056, 12205072, - 18937280, + 18940096, 12205104, - 18937264, - 19325744, - 19327184, - 18937248, - 18937376, - 18953712, - 18937760, - 18940672, - 18938144, - 18940544, - 19118480 + 18940080, + 19328560, + 19330000, + 18940064, + 18940192, + 18956528, + 18940576, + 18943488, + 18940960, + 18943360, + 19121296 ], "bases": [ { @@ -86327,15 +86327,15 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 64028368, + "vtable_address": 64032272, "methods": [ - 19327168, - 19327232, - 18937728, - 18967888, - 18938128, - 18961088, - 18962096 + 19329984, + 19330048, + 18940544, + 18970704, + 18940944, + 18963904, + 18964912 ], "bases": [ { @@ -86398,9 +86398,9 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 64028440, + "vtable_address": 64032344, "methods": [ - 19121216 + 19124032 ], "bases": [ { @@ -86463,9 +86463,9 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 64028464, + "vtable_address": 64032368, "methods": [ - 18961104 + 18963920 ], "bases": [ { @@ -86528,7 +86528,7 @@ }, { "type_name": "CDebugOverlayGrenades", - "vtable_address": 63731408, + "vtable_address": 63735312, "methods": [ 12204192, 12204208, @@ -86538,11 +86538,11 @@ 12204272, 12204288, 12204304, - 18940480, + 18943296, 12204336, 12204352, 12204368, - 18940496, + 18943312, 12204400, 12204416, 12204432, @@ -86551,7 +86551,7 @@ 12204480, 12204496, 12204512, - 19015392, + 19018208, 12204544, 12204560, 12204576, @@ -86568,7 +86568,7 @@ 12204752, 12204768, 12204784, - 18940544, + 18943360, 12204816, 12204832, 12204848, @@ -86586,31 +86586,31 @@ 12205040, 12205056, 12205072, - 17222272, + 17224576, 12205104, - 17216992, - 17218288, - 17218304, - 17216976, - 19261200, - 18996480, - 18995904, - 17257632, - 17224496, - 17216816, - 17216832, - 17216848, - 17216864, - 17216880, - 17216896, - 17216912, - 17216928, - 17216944, - 17217008, - 17216960, - 18968656, - 19024016, - 18962384 + 17219296, + 17220592, + 17220608, + 17219280, + 19264016, + 18999296, + 18998720, + 17259936, + 17226800, + 17219120, + 17219136, + 17219152, + 17219168, + 17219184, + 17219200, + 17219216, + 17219232, + 17219248, + 17219312, + 17219264, + 18971472, + 19026832, + 18965200 ], "bases": [ { @@ -86665,19 +86665,19 @@ }, { "type_name": "CDebugOverlayPathfindingFilter", - "vtable_address": 64029320, + "vtable_address": 64033224, "methods": [ - 18939808, - 18939968, - 19101040, - 18939840, - 19027200, - 18940032, - 18939984, - 18940192, - 18939904, - 18939920, - 19150608 + 18942624, + 18942784, + 19103856, + 18942656, + 19030016, + 18942848, + 18942800, + 18943008, + 18942720, + 18942736, + 19153424 ], "bases": [ { @@ -86699,7 +86699,7 @@ }, { "type_name": "CDebugOverlayRecorderBase", - "vtable_address": 64029424, + "vtable_address": 64033328, "methods": [ 12204192, 12204208, @@ -86709,11 +86709,11 @@ 12204272, 12204288, 12204304, - 18940480, + 18943296, 12204336, 12204352, 12204368, - 18940496, + 18943312, 12204400, 12204416, 12204432, @@ -86722,7 +86722,7 @@ 12204480, 12204496, 12204512, - 19015392, + 19018208, 12204544, 12204560, 12204576, @@ -86739,7 +86739,7 @@ 12204752, 12204768, 12204784, - 18940544, + 18943360, 12204816, 12204832, 12204848, @@ -86757,9 +86757,9 @@ 12205040, 12205056, 12205072, - 18937216, + 18940032, 12205104, - 18937200 + 18940016 ], "bases": [ { @@ -86803,19 +86803,19 @@ }, { "type_name": "CDebugOverlayScheduleFilter", - "vtable_address": 64029008, - "methods": [ - 18939808, - 18940208, - 19101552, - 18939840, - 18968512, - 18972592, - 18940400, - 18940192, - 18939904, - 18939920, - 19148144 + "vtable_address": 64032912, + "methods": [ + 18942624, + 18943024, + 19104368, + 18942656, + 18971328, + 18975408, + 18943216, + 18943008, + 18942720, + 18942736, + 19150960 ], "bases": [ { @@ -86837,19 +86837,19 @@ }, { "type_name": "CDebugOverlayTacticalFilter", - "vtable_address": 64028904, + "vtable_address": 64032808, "methods": [ - 18939808, - 18940384, - 19101536, - 18939840, - 18956400, - 18940032, - 18940656, - 18940192, - 18939904, - 18939920, - 19151424 + 18942624, + 18943200, + 19104352, + 18942656, + 18959216, + 18942848, + 18943472, + 18943008, + 18942720, + 18942736, + 19154240 ], "bases": [ { @@ -86871,19 +86871,19 @@ }, { "type_name": "CDebugOverlayTaskFilter", - "vtable_address": 64029112, + "vtable_address": 64033016, "methods": [ - 18939808, - 18940208, - 19101568, - 18939840, - 18968368, - 18940032, - 18940400, - 18940192, - 18939904, - 18939920, - 19149328 + 18942624, + 18943024, + 19104384, + 18942656, + 18971184, + 18942848, + 18943216, + 18943008, + 18942720, + 18942736, + 19152144 ], "bases": [ { @@ -86905,19 +86905,19 @@ }, { "type_name": "CDebugOverlayTextFilter", - "vtable_address": 64028592, + "vtable_address": 64032496, "methods": [ - 18939808, - 18940208, - 19132768, - 18961120, - 18939856, - 18940032, - 18940240, - 18940192, - 18939904, - 18939920, - 19144656 + 18942624, + 18943024, + 19135584, + 18963936, + 18942672, + 18942848, + 18943056, + 18943008, + 18942720, + 18942736, + 19147472 ], "bases": [ { @@ -86939,7 +86939,7 @@ }, { "type_name": "CDebugOverlayWindow", - "vtable_address": 64030120, + "vtable_address": 64034024, "methods": [ 12204192, 12204208, @@ -86949,11 +86949,11 @@ 12204272, 12204288, 12204304, - 18940480, + 18943296, 12204336, 12204352, 12204368, - 18940496, + 18943312, 12204400, 12204416, 12204432, @@ -86962,7 +86962,7 @@ 12204480, 12204496, 12204512, - 19015392, + 19018208, 12204544, 12204560, 12204576, @@ -86979,7 +86979,7 @@ 12204752, 12204768, 12204784, - 18940544, + 18943360, 12204816, 12204832, 12204848, @@ -86997,9 +86997,9 @@ 12205040, 12205056, 12205072, - 18937216, + 18940032, 12205104, - 18937200 + 18940016 ], "bases": [ { @@ -87032,7 +87032,7 @@ }, { "type_name": "CDebugOverlayWorldModel", - "vtable_address": 63732168, + "vtable_address": 63736072, "methods": [ 12204192, 12204208, @@ -87042,11 +87042,11 @@ 12204272, 12204288, 12204304, - 18940480, + 18943296, 12204336, 12204352, 12204368, - 18940496, + 18943312, 12204400, 12204416, 12204432, @@ -87055,7 +87055,7 @@ 12204480, 12204496, 12204512, - 19015392, + 19018208, 12204544, 12204560, 12204576, @@ -87072,7 +87072,7 @@ 12204752, 12204768, 12204784, - 18940544, + 18943360, 12204816, 12204832, 12204848, @@ -87090,15 +87090,15 @@ 12205040, 12205056, 12205072, - 17222352, + 17224656, 12205104, - 17217040, - 17221280, - 17221296, - 17217024, - 17217520, - 18940672, - 18940672 + 17219344, + 17223584, + 17223600, + 17219328, + 17219824, + 18943488, + 18943488 ], "bases": [ { @@ -87142,10 +87142,10 @@ }, { "type_name": "CDebugSnapshotCache", - "vtable_address": 64030088, + "vtable_address": 64033992, "methods": [ 13222576, - 19180432 + 19183248 ], "bases": [ { @@ -87167,13 +87167,13 @@ }, { "type_name": "CDebugVisualizerAbsTime", - "vtable_address": 64775456, + "vtable_address": 64779360, "methods": [ - 32907856, - 32908096, - 32907904, - 32907920, - 32907952, + 32911696, + 32911936, + 32911744, + 32911760, + 32911792, 13215984, 13216000 ], @@ -87197,16 +87197,16 @@ }, { "type_name": "CDecalEmitterSystem", - "vtable_address": 64030920, + "vtable_address": 64034824, "methods": [ 12204192, 12204208, 12204224, 12204240, - 19182368, + 19185184, 12204272, 12204288, - 18940624, + 18943440, 12204320, 12204336, 12204352, @@ -87255,12 +87255,12 @@ 12205040, 12205056, 12205072, - 18940592, + 18943408, 12205104, - 18940576, - 19182528, - 19181584, - 18940560 + 18943392, + 19185344, + 19184400, + 18943376 ], "bases": [ { @@ -87293,7 +87293,7 @@ }, { "type_name": "CDecalGameSystem", - "vtable_address": 63326800, + "vtable_address": 63330704, "methods": [ 12204192, 12204208, @@ -87399,7 +87399,7 @@ }, { "type_name": "CDecalGameSystemDebugVisualizer", - "vtable_address": 63327408, + "vtable_address": 63331312, "methods": [ 13218176, 13223824, @@ -87429,7 +87429,7 @@ }, { "type_name": "CDecalSaveRestoreBlockHandler", - "vtable_address": 63327480, + "vtable_address": 63331384, "methods": [ 13218256, 13214528, @@ -87472,35 +87472,35 @@ }, { "type_name": "CDeepStatsPanel", - "vtable_address": 64510424, + "vtable_address": 64514328, "methods": [ 12043984, - 59816784, - 25283776, - 25283792, - 25286240, - 59817136, - 59817120, + 59820688, + 25286784, + 25286800, + 25289248, + 59821040, + 59821024, 12233600, - 25284064, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 25287072, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 25285296, + 59821792, + 59821808, + 59820704, + 59832432, + 25288304, 12233664, 12233696, 12233680, @@ -87513,12 +87513,12 @@ 12399392, 12233312, 12233168, - 25426736, - 59825616, - 59825216, - 59836080, + 25429744, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -87528,40 +87528,40 @@ 12233472, 12233488, 12233504, - 25305184, - 25290736, + 25308192, + 25293744, 12233520, 12233296, 12233760, - 59835792, - 25283744, - 25285584, - 25285600, + 59839696, + 25286752, + 25288592, + 25288608, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25283824, - 25283840, - 25283856 + 25286832, + 25286848, + 25286864 ], "bases": [ { @@ -87594,7 +87594,7 @@ }, { "type_name": "CDefSaveRestoreOps", - "vtable_address": 64846984, + "vtable_address": 64850888, "methods": [], "bases": [ { @@ -87616,7 +87616,7 @@ }, { "type_name": "CDefSaveRestoreOps", - "vtable_address": 64847672, + "vtable_address": 64851576, "methods": [], "bases": [ { @@ -87638,25 +87638,25 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 64012360, + "vtable_address": 64016264, "methods": [ 12204192, 12204208, - 18544528, - 18773168, - 18747520, + 18546832, + 18775984, + 18750336, 12204272, 12204288, - 18809664, - 18506528, - 18542480, + 18812480, + 18508832, + 18544784, 12204352, 12204368, 12204384, 12204400, 12204416, 12204432, - 18506512, + 18508816, 12204464, 12204480, 12204496, @@ -87667,7 +87667,7 @@ 12204576, 12204592, 12204608, - 18846624, + 18849440, 12204640, 12204656, 12204672, @@ -87696,19 +87696,19 @@ 12205040, 12205056, 12205072, - 18506480, + 18508784, 12205104, - 18506464, - 18748112, - 18748912, - 18506448, - 18506688, - 18506544, - 18528736, - 18506576, - 18531568, - 18506608, - 18506640 + 18508768, + 18750928, + 18751728, + 18508752, + 18508992, + 18508848, + 18531040, + 18508880, + 18533872, + 18508912, + 18508944 ], "bases": [ { @@ -87751,17 +87751,17 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 64012928, + "vtable_address": 64016832, "methods": [ - 18748512, - 18749328, - 18536896, - 18506560, - 18528784, - 18506592, - 18531632, - 18506656, - 18506624 + 18751328, + 18752144, + 18539200, + 18508864, + 18531088, + 18508896, + 18533936, + 18508960, + 18508928 ], "bases": [ { @@ -87804,16 +87804,16 @@ }, { "type_name": "CDefaultResponseSystemSaveRestoreBlockHandler", - "vtable_address": 64012272, + "vtable_address": 64016176, "methods": [ - 18506672, + 18508976, 13214528, - 18593008, - 18582944, + 18595312, + 18585248, 13214544, 13214560, - 18583008, - 18810224, + 18585312, + 18813040, 13214576 ], "bases": [ @@ -87847,10 +87847,10 @@ }, { "type_name": "CDefaultSoftbodyAttrExecutor", - "vtable_address": 64013496, + "vtable_address": 64017400, "methods": [ - 18575296, - 18574656 + 18577600, + 18576960 ], "bases": [ { @@ -87872,19 +87872,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65106160, + "vtable_address": 65110064, "methods": [ - 62097584, - 61758672, - 61759008, - 61759120, - 39223040, - 61695568, - 61695808, - 39223056, - 39223072, - 39225728, - 61758816 + 62101488, + 61762576, + 61762912, + 61763024, + 39226880, + 61699472, + 61699712, + 39226896, + 39226912, + 39229568, + 61762720 ], "bases": [ { @@ -87906,19 +87906,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65141048, + "vtable_address": 65144952, "methods": [ - 62115344, - 61780512, - 61781424, - 61782128, - 39223040, - 61779120, - 61779200, - 39223056, - 39223072, - 39225728, - 61781536 + 62119248, + 61784416, + 61785328, + 61786032, + 39226880, + 61783024, + 61783104, + 39226896, + 39226912, + 39229568, + 61785440 ], "bases": [ { @@ -87940,19 +87940,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65164272, + "vtable_address": 65168176, "methods": [ - 62066848, - 61800432, - 61800768, - 61800880, - 39223040, - 61694608, - 61694848, - 39223056, - 39223072, - 39225728, - 61800576 + 62070752, + 61804336, + 61804672, + 61804784, + 39226880, + 61698512, + 61698752, + 39226896, + 39226912, + 39229568, + 61804480 ], "bases": [ { @@ -87974,19 +87974,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65189352, + "vtable_address": 65193256, "methods": [ - 62140720, - 61807536, - 61807728, - 61807872, - 39223040, - 61565520, - 61565600, - 39223056, - 39223072, - 39225728, - 61808080 + 62144624, + 61811440, + 61811632, + 61811776, + 39226880, + 61569424, + 61569504, + 39226896, + 39226912, + 39229568, + 61811984 ], "bases": [ { @@ -88008,19 +88008,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65154280, + "vtable_address": 65158184, "methods": [ - 62123728, - 61791824, - 61792160, - 61792272, - 39223040, - 61695088, - 61695328, - 39223056, - 39223072, - 39225728, - 61791968 + 62127632, + 61795728, + 61796064, + 61796176, + 39226880, + 61698992, + 61699232, + 39226896, + 39226912, + 39229568, + 61795872 ], "bases": [ { @@ -88042,19 +88042,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65098208, + "vtable_address": 65102112, "methods": [ - 62092352, - 61752224, - 61753104, - 61754128, - 39223040, - 61751600, - 61751680, - 39223056, - 39223072, - 39225728, - 61753536 + 62096256, + 61756128, + 61757008, + 61758032, + 39226880, + 61755504, + 61755584, + 39226896, + 39226912, + 39229568, + 61757440 ], "bases": [ { @@ -88076,19 +88076,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65060232, + "vtable_address": 65064136, "methods": [ - 62071600, - 61740464, - 61740800, - 61740912, - 39223040, - 61696048, - 61696288, - 39223056, - 39223072, - 39225728, - 61740608 + 62075504, + 61744368, + 61744704, + 61744816, + 39226880, + 61699952, + 61700192, + 39226896, + 39226912, + 39229568, + 61744512 ], "bases": [ { @@ -88110,19 +88110,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65172568, - "methods": [ - 62130096, - 61806608, - 61806944, - 61807056, - 39223040, - 61693648, - 61693888, - 39223056, - 39223072, - 39225728, - 61806752 + "vtable_address": 65176472, + "methods": [ + 62134000, + 61810512, + 61810848, + 61810960, + 39226880, + 61697552, + 61697792, + 39226896, + 39226912, + 39229568, + 61810656 ], "bases": [ { @@ -88144,19 +88144,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 65166608, + "vtable_address": 65170512, "methods": [ - 62125808, - 61803520, - 61803856, - 61803968, - 39223040, - 61694128, - 61694368, - 39223056, - 39223072, - 39225728, - 61803664 + 62129712, + 61807424, + 61807760, + 61807872, + 39226880, + 61698032, + 61698272, + 39226896, + 39226912, + 39229568, + 61807568 ], "bases": [ { @@ -88178,7 +88178,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 63090688, + "vtable_address": 63094592, "methods": [ 12044448 ], @@ -88202,9 +88202,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 64021656, + "vtable_address": 64025560, "methods": [ - 18509920 + 18512224 ], "bases": [ { @@ -88226,7 +88226,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 63116904, + "vtable_address": 63120808, "methods": [ 12234048 ], @@ -88250,9 +88250,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 63788264, + "vtable_address": 63792168, "methods": [ - 17440640 + 17442944 ], "bases": [ { @@ -88274,23 +88274,23 @@ }, { "type_name": "CDemoAnimationData", - "vtable_address": 63576576, + "vtable_address": 63580480, "methods": [ 15671152, 15720560, - 29643894, + 29647734, 13224352, 15823872, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871392, 13224176, 15419568, 12011504, 15074432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843296, 14806736 @@ -88326,23 +88326,23 @@ }, { "type_name": "CDemoAnimationHeader", - "vtable_address": 63576416, + "vtable_address": 63580320, "methods": [ 15671008, 15720400, - 29643894, + 29647734, 13224336, 15823584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871264, 13224160, 15419008, 12011504, 15028800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843264, 14806720 @@ -88378,23 +88378,23 @@ }, { "type_name": "CDemoClassInfo", - "vtable_address": 63575936, + "vtable_address": 63579840, "methods": [ 15670560, 15742880, - 29643894, + 29647734, 15209664, 15848464, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14900512, 14849824, 15524144, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14843168, 14806672 @@ -88430,23 +88430,23 @@ }, { "type_name": "CDemoClassInfo_class_t", - "vtable_address": 63575776, + "vtable_address": 63579680, "methods": [ 15670400, 15729200, - 29643894, + 29647734, 15209488, 15823184, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14865104, 14848384, 15417472, 12011504, 14992928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843136, 14806656 @@ -88482,23 +88482,23 @@ }, { "type_name": "CDemoConsoleCmd", - "vtable_address": 63575456, + "vtable_address": 63579360, "methods": [ 15670112, 15719760, - 29643894, + 29647734, 15209168, 15822672, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14849856, 15416672, 12011504, 14912528, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843072, 14806624 @@ -88534,23 +88534,23 @@ }, { "type_name": "CDemoCustomData", - "vtable_address": 63576096, + "vtable_address": 63580000, "methods": [ 15670720, 15720080, - 29643894, + 29647734, 15209808, 15823312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871168, 14849808, 15418032, 12011504, 14969632, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843200, 14806688 @@ -88586,23 +88586,23 @@ }, { "type_name": "CDemoCustomDataCallbacks", - "vtable_address": 63576256, + "vtable_address": 63580160, "methods": [ 15670864, 15720240, - 29643894, + 29647734, 15209968, 15801744, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 14849792, 15418608, 12011504, 14879920, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14843232, 14806704 @@ -88638,23 +88638,23 @@ }, { "type_name": "CDemoFileHeader", - "vtable_address": 63573696, + "vtable_address": 63577600, "methods": [ 15668960, 15737312, - 29643894, + 29647734, 15207456, 15821584, 14806448, - 29646054, - 29642886, + 29649894, + 29646726, 14864352, 14849920, 15411312, 12011504, 15116816, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842720, 14806432 @@ -88690,23 +88690,23 @@ }, { "type_name": "CDemoFileInfo", - "vtable_address": 63574656, + "vtable_address": 63578560, "methods": [ 15758000, 15758208, - 29643894, + 29647734, 15208416, 15866256, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14895264, 14849904, 15414576, 12011504, 14971520, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842912, 14806544 @@ -88742,23 +88742,23 @@ }, { "type_name": "CDemoFullPacket", - "vtable_address": 63574976, + "vtable_address": 63578880, "methods": [ 15787888, 15788464, - 29643894, + 29647734, 15208736, 15861440, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14992144, 14849888, 15415600, 12011504, 14854768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842976, 14806576 @@ -88794,7 +88794,7 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)16, CDemoAnimationData>", - "vtable_address": 63320376, + "vtable_address": 63324280, "methods": [ 13272768, 13273328, @@ -88856,23 +88856,23 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)16, CDemoAnimationData>", - "vtable_address": 63320448, + "vtable_address": 63324352, "methods": [ 13272640, 13273184, - 29643894, + 29647734, 13224352, 15823872, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871392, 13224176, 15419568, 12011504, 15074432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843296, 14806736 @@ -88929,7 +88929,7 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)17, CDemoAnimationHeader>", - "vtable_address": 63320144, + "vtable_address": 63324048, "methods": [ 13272512, 13273040, @@ -88991,23 +88991,23 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)17, CDemoAnimationHeader>", - "vtable_address": 63320216, + "vtable_address": 63324120, "methods": [ 13272384, 13272896, - 29643894, + 29647734, 13224336, 15823584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871264, 13224160, 15419008, 12011504, 15028800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843264, 14806720 @@ -89064,23 +89064,23 @@ }, { "type_name": "CDemoPacket", - "vtable_address": 63574816, + "vtable_address": 63578720, "methods": [ 15669824, 15719440, - 29643894, + 29647734, 15208576, 15822112, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14848368, 15415200, 12011504, 14929696, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842944, 14806560 @@ -89116,23 +89116,23 @@ }, { "type_name": "CDemoRecovery", - "vtable_address": 63577856, + "vtable_address": 63581760, "methods": [ 15749216, 15749936, - 29643894, + 29647734, 15211488, 15859648, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14902880, 14849744, 15422224, 12011504, 14955056, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843552, 14806864 @@ -89168,23 +89168,23 @@ }, { "type_name": "CDemoRecovery_DemoInitialSpawnGroupEntry", - "vtable_address": 63577696, + "vtable_address": 63581600, "methods": [ 15672112, 15705808, - 29643894, + 29647734, 15211344, 15801872, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827808, 14848432, 15421648, 12011504, 14926560, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843520, 14806848 @@ -89220,23 +89220,23 @@ }, { "type_name": "CDemoSaveGame", - "vtable_address": 63575136, + "vtable_address": 63579040, "methods": [ 15669968, 15719600, - 29643894, + 29647734, 15208880, 15822368, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871056, 14849872, 15416112, 12011504, 15020640, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843008, 14806592 @@ -89272,23 +89272,23 @@ }, { "type_name": "CDemoSendTables", - "vtable_address": 63575616, + "vtable_address": 63579520, "methods": [ 15670256, 15719920, - 29643894, + 29647734, 15209328, 15822928, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14849840, 15417072, 12011504, 14929888, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843104, 14806640 @@ -89324,23 +89324,23 @@ }, { "type_name": "CDemoSpawnGroups", - "vtable_address": 63577536, + "vtable_address": 63581440, "methods": [ 15671968, 15720880, - 29643894, + 29647734, 15211216, 15801808, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 14849760, 15421248, 12011504, 14882000, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14843488, 14806832 @@ -89376,23 +89376,23 @@ }, { "type_name": "CDemoStop", - "vtable_address": 63577216, + "vtable_address": 63581120, "methods": [ 14880976, 14880992, - 29643894, + 29647734, 15210912, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14843424, 14806800 @@ -89439,23 +89439,23 @@ }, { "type_name": "CDemoStringTables", - "vtable_address": 63577056, + "vtable_address": 63580960, "methods": [ 15671664, 15743056, - 29643894, + 29647734, 15210784, 15853776, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14992032, 14848352, 15525440, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14843392, 14806784 @@ -89491,23 +89491,23 @@ }, { "type_name": "CDemoStringTables_items_t", - "vtable_address": 63576736, + "vtable_address": 63580640, "methods": [ 15671296, 15729360, - 29643894, + 29647734, 15210384, 15824176, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867760, 14848400, 15420208, 12011504, 14986096, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843328, 14806752 @@ -89543,23 +89543,23 @@ }, { "type_name": "CDemoStringTables_table_t", - "vtable_address": 63576896, + "vtable_address": 63580800, "methods": [ 15671456, 15737088, - 29643894, + 29647734, 15210608, 15852976, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14991664, 14848416, 15524608, 12011504, 14993856, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843360, 14806768 @@ -89595,23 +89595,23 @@ }, { "type_name": "CDemoSyncTick", - "vtable_address": 63575296, + "vtable_address": 63579200, "methods": [ 14881040, 14881056, - 29643894, + 29647734, 15209008, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14843040, 14806608 @@ -89658,23 +89658,23 @@ }, { "type_name": "CDemoUserCmd", - "vtable_address": 63577376, + "vtable_address": 63581280, "methods": [ 15671824, 15720720, - 29643894, + 29647734, 15211056, 15824304, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871584, 14849776, 15420672, 12011504, 14970016, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843456, 14806816 @@ -89710,11 +89710,11 @@ }, { "type_name": "CDepthPyramidComputeRenderer", - "vtable_address": 64624272, + "vtable_address": 64628176, "methods": [ - 28422864, - 28332976, - 28334240, + 28426256, + 28336368, + 28337632, 12236576 ], "bases": [ @@ -89737,13 +89737,13 @@ }, { "type_name": "CDirtySpatialPartitionEntityList", - "vtable_address": 64186424, + "vtable_address": 64190328, "methods": [ - 21557760, + 21560576, 12204208, - 21558064, - 21558032, - 21585024, + 21560880, + 21560848, + 21587840, 12204272, 12204288, 12204304, @@ -89795,12 +89795,12 @@ 12205040, 12205056, 12205072, - 21558000, + 21560816, 12205104, - 21557984, - 21576784, - 21576352, - 21557968 + 21560800, + 21579600, + 21579168, + 21560784 ], "bases": [ { @@ -89833,7 +89833,7 @@ }, { "type_name": "CDontUseThisGameSystem", - "vtable_address": 63318184, + "vtable_address": 63322088, "methods": [ 12204192, 12204208, @@ -89918,15 +89918,15 @@ }, { "type_name": "CDownloadWorkshopAddonPrerequisite", - "vtable_address": 64363888, + "vtable_address": 64367792, "methods": [ - 23335808, - 23336896, + 23338560, + 23339648, 13214640, 13214656, - 23374368, - 23275488, - 23414768 + 23377120, + 23278240, + 23417520 ], "bases": [ { @@ -89948,35 +89948,35 @@ }, { "type_name": "CDummyEconItemImage", - "vtable_address": 64412040, + "vtable_address": 64415944, "methods": [ 12043984, - 59816784, - 23898544, - 23898560, - 59817120, - 59817136, - 59817120, + 59820688, + 23901296, + 23901312, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -89989,12 +89989,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -90009,30 +90009,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23898528, - 23901984, - 23902000, + 59839696, + 23901280, + 23904736, + 23904752, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -90067,10 +90067,10 @@ }, { "type_name": "CDynamicFaceOcclusionRendererObject", - "vtable_address": 64133184, + "vtable_address": 64137088, "methods": [ - 20657024, - 20787120, + 20659840, + 20789936, 12011888, 12011520 ], @@ -90094,14 +90094,14 @@ }, { "type_name": "CDynamicFaceOcclusionRendererObjectDesc", - "vtable_address": 64133232, + "vtable_address": 64137136, "methods": [ - 20572496, - 20861216, + 20575312, + 20864032, 12011568, 12011584, 12019328, - 20574880, + 20577696, 12011600, 12011616, 12011632, @@ -90118,7 +90118,7 @@ 12011808, 12011824, 12011840, - 20586192 + 20589008 ], "bases": [ { @@ -90151,13 +90151,13 @@ }, { "type_name": "CDynamicLightManager", - "vtable_address": 64136304, + "vtable_address": 64140208, "methods": [ 12204192, 12204208, 12204224, - 20572960, - 20773536, + 20575776, + 20776352, 12204272, 12204288, 12204304, @@ -90209,12 +90209,12 @@ 12205040, 12205056, 12205072, - 20571808, + 20574624, 12205104, - 20571792, - 20583472, - 20583536, - 20571776 + 20574608, + 20586288, + 20586352, + 20574592 ], "bases": [ { @@ -90247,19 +90247,19 @@ }, { "type_name": "CEconAccountItemPersonalStore", - "vtable_address": 64580640, + "vtable_address": 64584544, "methods": [ - 28008544, - 28008576, - 27282768, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282784 + 28011808, + 28011840, + 27285936, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285952 ], "bases": [ { @@ -90303,19 +90303,19 @@ }, { "type_name": "CEconAccountKeychainRemoveToolCharges", - "vtable_address": 64581680, + "vtable_address": 64585584, "methods": [ - 28007584, - 28007616, - 27282608, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282624 + 28010848, + 28010880, + 27285776, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285792 ], "bases": [ { @@ -90359,19 +90359,19 @@ }, { "type_name": "CEconAccountRecurringSubscription", - "vtable_address": 64582512, + "vtable_address": 64586416, "methods": [ - 28006816, - 28006848, - 27282480, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282496 + 28010080, + 28010112, + 27285648, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285664 ], "bases": [ { @@ -90415,19 +90415,19 @@ }, { "type_name": "CEconAccountSeasonalOperation", - "vtable_address": 64582096, + "vtable_address": 64586000, "methods": [ - 28007200, - 28007232, - 27282544, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282560 + 28010464, + 28010496, + 27285712, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285728 ], "bases": [ { @@ -90471,19 +90471,19 @@ }, { "type_name": "CEconAccountSeasonalOperationGS", - "vtable_address": 64582304, + "vtable_address": 64586208, "methods": [ - 28007008, - 28007040, - 27282512, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282528 + 28010272, + 28010304, + 27285680, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285696 ], "bases": [ { @@ -90527,19 +90527,19 @@ }, { "type_name": "CEconAccountXpShop", - "vtable_address": 64580848, + "vtable_address": 64584752, "methods": [ - 28008352, - 28008384, - 27282736, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282752 + 28011616, + 28011648, + 27285904, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285920 ], "bases": [ { @@ -90583,19 +90583,19 @@ }, { "type_name": "CEconAccountXpShopBids", - "vtable_address": 64581056, + "vtable_address": 64584960, "methods": [ - 28008160, - 28008192, - 27282704, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282720 + 28011424, + 28011456, + 27285872, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285888 ], "bases": [ { @@ -90639,19 +90639,19 @@ }, { "type_name": "CEconCoupon", - "vtable_address": 64580016, + "vtable_address": 64583920, "methods": [ - 28009120, - 28009152, - 27282864, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282880 + 28012384, + 28012416, + 27286032, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286048 ], "bases": [ { @@ -90695,11 +90695,11 @@ }, { "type_name": "CEconCraftingRecipeDefinition", - "vtable_address": 64584872, + "vtable_address": 64588776, "methods": [ - 27306000, - 27316112, - 27532800 + 27309168, + 27319280, + 27536032 ], "bases": [], "model": { @@ -90710,13 +90710,13 @@ }, { "type_name": "CEconDiskBackedSoCache", - "vtable_address": 64575184, + "vtable_address": 64579088, "methods": [ - 27279296, - 27900608, - 27649136, - 27558896, - 27279280 + 27282464, + 27903872, + 27652400, + 27562128, + 27282448 ], "bases": [ { @@ -90738,19 +90738,19 @@ }, { "type_name": "CEconEquipSlot", - "vtable_address": 64570120, + "vtable_address": 64574024, "methods": [ - 28009888, - 28009920, - 27283488, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283504 + 28013152, + 28013184, + 27286656, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286672 ], "bases": [ { @@ -90794,19 +90794,19 @@ }, { "type_name": "CEconGameAccountClient", - "vtable_address": 64571304, + "vtable_address": 64575208, "methods": [ - 28009504, - 28009536, - 27283264, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283280 + 28012768, + 28012800, + 27286432, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286448 ], "bases": [ { @@ -90850,19 +90850,19 @@ }, { "type_name": "CEconGameAccountSteamChina", - "vtable_address": 64581888, + "vtable_address": 64585792, "methods": [ - 28007392, - 28007424, - 27282576, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282592 + 28010656, + 28010688, + 27285744, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285760 ], "bases": [ { @@ -90906,39 +90906,39 @@ }, { "type_name": "CEconItem", - "vtable_address": 64578616, + "vtable_address": 64582520, "methods": [ - 27324096, - 27324288, - 17791056, - 28020816, - 27329712, - 27279536, - 27329744, - 27364704, - 28021136, - 27301008, - 27314896, - 17791904, - 24267376, - 27379728, - 17791072, - 17791104, - 27278432, - 27278464, - 27327872, - 27279504, - 27278496, - 27278528, - 27392608, - 27392944, - 27315504, - 27279520, - 27403744, - 27403440, - 27395328, - 28020928, - 28021040 + 27327264, + 27327456, + 17793360, + 28024080, + 27332880, + 27282704, + 27332912, + 27367904, + 28024400, + 27304176, + 27318064, + 17794208, + 24270128, + 27382928, + 17793376, + 17793408, + 27281600, + 27281632, + 27331040, + 27282672, + 27281664, + 27281696, + 27395808, + 27396144, + 27318672, + 27282688, + 27406944, + 27406640, + 27398528, + 28024192, + 28024304 ], "bases": [ { @@ -90970,36 +90970,36 @@ }, { "type_name": "CEconItem", - "vtable_address": 64578880, - "methods": [ - 27284208, - 27316992, - 27318528, - 27390640, - 27390912, - 27390368, - 27414144, - 27414608, - 27403648, - 27403264, - 27441216, - 27395360, - 27280048, - 27393680, - 27316608, - 17791120, - 17791088, - 27278480, - 27328576, - 27278512, - 27278544, - 27302064, - 27278448, - 27302512, - 27388640, - 27388976, - 27315552, - 27379984 + "vtable_address": 64582784, + "methods": [ + 27287376, + 27320160, + 27321696, + 27393840, + 27394112, + 27393568, + 27417344, + 27417808, + 27406848, + 27406464, + 27444416, + 27398560, + 27283216, + 27396880, + 27319776, + 17793424, + 17793392, + 27281648, + 27331744, + 27281680, + 27281712, + 27305232, + 27281616, + 27305680, + 27391840, + 27392176, + 27318720, + 27383184 ], "bases": [ { @@ -91031,13 +91031,13 @@ }, { "type_name": "CEconItemAttribute", - "vtable_address": 64592192, + "vtable_address": 64596096, "methods": [ - 28027248, - 28027216, - 28027184, - 28027152, - 28027120 + 28030512, + 28030480, + 28030448, + 28030416, + 28030384 ], "bases": [], "model": { @@ -91048,13 +91048,13 @@ }, { "type_name": "CEconItemAttributeDefinition", - "vtable_address": 64569960, + "vtable_address": 64573864, "methods": [ - 25439248, + 25442256, 17119536, - 27278304, - 27278320, - 27278288 + 27281472, + 27281488, + 27281456 ], "bases": [ { @@ -91076,14 +91076,14 @@ }, { "type_name": "CEconItemAttributeIterator_ApplyAttributeFloat", - "vtable_address": 64571136, + "vtable_address": 64575040, "methods": [ - 27279072, - 27283856, - 27555184, - 27555504, - 27279040, - 27279056 + 27282240, + 27287024, + 27558416, + 27558736, + 27282208, + 27282224 ], "bases": [ { @@ -91105,57 +91105,57 @@ }, { "type_name": "CEconItemDefinition", - "vtable_address": 64585552, + "vtable_address": 64589456, "methods": [ 17046624, - 17790224, - 17285152, - 17790240, - 17790592, - 27280848, + 17792528, + 17287456, + 17792544, + 17792896, + 27284016, 17119568, - 27280896, - 17790544, + 27284064, + 17792848, 17119552, - 17790352, - 17790272, - 27280784, - 17790384, - 17790416, - 17790288, - 17790656, - 17790320, - 17790608, - 17790624, - 27765424, - 27484496, - 27485664, - 27772480, - 27617824, - 17438720, - 27621824, - 27623168, - 27623744, - 17790256, - 17790304, - 17790336, - 17790368, - 17790448, - 17790496, - 17790512, - 27394064, - 27389312, - 27389840, - 27389568, - 27388416, - 27280816, - 27280832, - 17790528, - 17790560, - 17790576, - 17790640, - 27280800, - 17790672 + 17792656, + 17792576, + 27283952, + 17792688, + 17792720, + 17792592, + 17792960, + 17792624, + 17792912, + 17792928, + 27768688, + 27487696, + 27488864, + 27775744, + 27621056, + 17441024, + 27625088, + 27626432, + 27627008, + 17792560, + 17792608, + 17792640, + 17792672, + 17792752, + 17792800, + 17792816, + 27397264, + 27392512, + 27393040, + 27392768, + 27391616, + 27283984, + 27284000, + 17792832, + 17792864, + 17792880, + 17792944, + 27283968, + 17792976 ], "bases": [ { @@ -91177,36 +91177,36 @@ }, { "type_name": "CEconItemDescription", - "vtable_address": 64579392, - "methods": [ - 27322288, - 27322704, - 27320352, - 27396560, - 27559968, - 27563920, - 27564224, - 27560432, - 27567200, - 27572192, - 27564928, - 27699568, - 27393280, - 27569440, - 27279664, - 27579600, - 27566240, - 27398192, - 27394368, - 27691424, - 27570208, - 27575472, - 27568128, - 27593216, - 27279696, - 27598336, - 27396368, - 27279552 + "vtable_address": 64583296, + "methods": [ + 27325456, + 27325872, + 27323520, + 27399760, + 27563200, + 27567152, + 27567456, + 27563664, + 27570432, + 27575424, + 27568160, + 27702832, + 27396480, + 27572672, + 27282832, + 27582832, + 27569472, + 27401392, + 27397568, + 27694688, + 27573440, + 27578704, + 27571360, + 27596448, + 27282864, + 27601568, + 27399568, + 27282720 ], "bases": [ { @@ -91238,9 +91238,9 @@ }, { "type_name": "CEconItemDescription", - "vtable_address": 64579632, + "vtable_address": 64583536, "methods": [ - 27305840 + 27309008 ], "bases": [ { @@ -91272,14 +91272,14 @@ }, { "type_name": "CEconItemDescription::CVisibleAttributeDisplayer", - "vtable_address": 64579328, + "vtable_address": 64583232, "methods": [ - 27304592, - 27304496, - 27600016, - 27599776, - 27279168, - 27279184 + 27307760, + 27307664, + 27603248, + 27603008, + 27282336, + 27282352 ], "bases": [ { @@ -91301,23 +91301,23 @@ }, { "type_name": "CEconItemPreviewDataBlock", - "vtable_address": 63543936, + "vtable_address": 63547840, "methods": [ 15644896, 15745216, - 29643894, + 29647734, 15176736, 15853888, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14859808, 14847600, 15509472, 12011504, 15133232, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836768, 14801568 @@ -91353,23 +91353,23 @@ }, { "type_name": "CEconItemPreviewDataBlock_Sticker", - "vtable_address": 63543776, + "vtable_address": 63547680, "methods": [ 15644768, 15694928, - 29643894, + 29647734, 15176544, 15795776, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824448, 14847584, 15323744, 12011504, 15078368, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836736, 14801552 @@ -91405,71 +91405,71 @@ }, { "type_name": "CEconItemSchema", - "vtable_address": 64586008, - "methods": [ - 27441984, - 27906384, - 17790912, - 17790896, - 17792656, - 17790688, - 17790928, - 17790944, - 17790960, - 17790976, - 17790992, - 17791008, - 17791024, - 17791040, - 27296896, - 27280944, - 27302080, - 17790880, - 17790736, - 27314144, - 27310192, - 17790752, - 27333472, - 27333024, - 27365408, - 27333248, - 27313376, - 17792640, - 17790720, - 27303024, - 17823200, - 17792624, - 17793904, - 17848624, - 17790704, - 27681536, - 27321152, - 27879440, - 27801632, - 27820464, - 27811392, - 27290240, - 27324752, - 27310880, - 27310656, - 17790848, - 27302688, - 27651008, - 27658496, - 17790768, - 17790784, - 17790800, - 17790864, - 27331536, - 17792576, - 17793968, - 27535328, - 27635040, - 27315856, - 27683104, - 27841392, - 27280928, - 27972272 + "vtable_address": 64589912, + "methods": [ + 27445184, + 27909648, + 17793216, + 17793200, + 17794960, + 17792992, + 17793232, + 17793248, + 17793264, + 17793280, + 17793296, + 17793312, + 17793328, + 17793344, + 27300064, + 27284112, + 27305248, + 17793184, + 17793040, + 27317312, + 27313360, + 17793056, + 27336672, + 27336224, + 27368608, + 27336448, + 27316544, + 17794944, + 17793024, + 27306192, + 17825504, + 17794928, + 17796208, + 17850928, + 17793008, + 27684800, + 27324320, + 27882704, + 27804896, + 27823728, + 27814656, + 27293408, + 27327920, + 27314048, + 27313824, + 17793152, + 27305856, + 27654272, + 27661760, + 17793072, + 17793088, + 17793104, + 17793168, + 27334704, + 17794880, + 17796272, + 27538560, + 27638304, + 27319024, + 27686368, + 27844656, + 27284096, + 27975536 ], "bases": [ { @@ -91491,21 +91491,21 @@ }, { "type_name": "CEconItemSetDefinition", - "vtable_address": 64584632, + "vtable_address": 64588536, "methods": [ - 17790208, - 27278064, - 27278080, - 27278096, - 27278112, - 27278128, - 27278144, - 27278160, - 27404656, - 27300592, - 27278176, - 27328608, - 27843280 + 17792512, + 27281232, + 27281248, + 27281264, + 27281280, + 27281296, + 27281312, + 27281328, + 27407856, + 27303760, + 27281344, + 27331776, + 27846544 ], "bases": [ { @@ -91527,15 +91527,15 @@ }, { "type_name": "CEconItemSystem", - "vtable_address": 64592568, + "vtable_address": 64596472, "methods": [ - 22047392, - 28024304, - 28024320, - 28024336, - 28024512, - 28025792, - 27278976 + 22050208, + 28027568, + 28027584, + 28027600, + 28027776, + 28029056, + 27282144 ], "bases": [ { @@ -91557,21 +91557,21 @@ }, { "type_name": "CEconLootListDefinition", - "vtable_address": 64584752, + "vtable_address": 64588656, "methods": [ - 27278192, - 25439232, - 27278208, - 27315600, - 27278240, - 27278256, - 27295264, - 27278272, - 27295376, - 27295440, - 27295472, - 27309792, - 27310368 + 27281360, + 25442240, + 27281376, + 27318768, + 27281408, + 27281424, + 27298432, + 27281440, + 27298544, + 27298608, + 27298640, + 27312960, + 27313536 ], "bases": [ { @@ -91593,19 +91593,19 @@ }, { "type_name": "CEconPersonaDataPublic", - "vtable_address": 64571512, + "vtable_address": 64575416, "methods": [ - 28009312, - 28009344, - 27283232, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283248 + 28012576, + 28012608, + 27286400, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286416 ], "bases": [ { @@ -91649,19 +91649,19 @@ }, { "type_name": "CEconQuestProgress", - "vtable_address": 64580224, + "vtable_address": 64584128, "methods": [ - 28008928, - 28008960, - 27282832, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282848 + 28012192, + 28012224, + 27286000, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286016 ], "bases": [ { @@ -91705,19 +91705,19 @@ }, { "type_name": "CEconRecurringMission", - "vtable_address": 64580432, + "vtable_address": 64584336, "methods": [ - 28008736, - 28008768, - 27282800, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282816 + 28012000, + 28012032, + 27285968, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285984 ], "bases": [ { @@ -91761,19 +91761,19 @@ }, { "type_name": "CEconRentalHistory", - "vtable_address": 64570328, + "vtable_address": 64574232, "methods": [ - 28009696, - 28009728, - 27283456, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283472 + 28012960, + 28012992, + 27286624, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286640 ], "bases": [ { @@ -91817,12 +91817,12 @@ }, { "type_name": "CEconStyleInfo", - "vtable_address": 64585960, + "vtable_address": 64589864, "methods": [ - 27312368, - 27312432, - 27619520, - 27620032 + 27315536, + 27315600, + 27622752, + 27623264 ], "bases": [], "model": { @@ -91833,20 +91833,20 @@ }, { "type_name": "CEconTool_BackpackExpander", - "vtable_address": 64574360, + "vtable_address": 64578264, "methods": [ - 27317568, - 27319184, - 27278336, - 28043312, - 27278352, - 27279248, - 27278384, - 27278400, - 27279264, - 27998400, - 25439264, - 25439280 + 27320736, + 27322352, + 27281504, + 28046576, + 27281520, + 27282416, + 27281552, + 27281568, + 27282432, + 28001664, + 25442272, + 25442288 ], "bases": [ { @@ -91868,20 +91868,20 @@ }, { "type_name": "CEconTool_Casket", - "vtable_address": 64593384, - "methods": [ - 28038128, - 28038704, - 28027024, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28156944, - 25439280 + "vtable_address": 64597288, + "methods": [ + 28041392, + 28041968, + 28030288, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28160208, + 25442288 ], "bases": [ { @@ -91903,20 +91903,20 @@ }, { "type_name": "CEconTool_Collection", - "vtable_address": 64592824, + "vtable_address": 64596728, "methods": [ - 28038448, - 28039184, - 28070528, - 28024560, - 27278352, - 28043648, - 27278384, - 27278400, - 27279264, - 27279408, - 25439264, - 25439280 + 28041712, + 28042448, + 28073792, + 28027824, + 27281520, + 28046912, + 27281552, + 27281568, + 27282432, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -91938,20 +91938,20 @@ }, { "type_name": "CEconTool_CrateKey", - "vtable_address": 64603232, - "methods": [ - 28163088, - 28163360, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28173008, - 28172976 + "vtable_address": 64607136, + "methods": [ + 28166352, + 28166624, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28176272, + 28176240 ], "bases": [ { @@ -91973,20 +91973,20 @@ }, { "type_name": "CEconTool_CustomizeTexture", - "vtable_address": 64573352, - "methods": [ - 27318288, - 27320048, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 25439264, - 25439280 + "vtable_address": 64577256, + "methods": [ + 27321456, + 27323216, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 25442272, + 25442288 ], "bases": [ { @@ -92008,20 +92008,20 @@ }, { "type_name": "CEconTool_Default", - "vtable_address": 64574248, - "methods": [ - 27317648, - 27319280, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27279408, - 25439264, - 25439280 + "vtable_address": 64578152, + "methods": [ + 27320816, + 27322448, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92043,20 +92043,20 @@ }, { "type_name": "CEconTool_DescTag", - "vtable_address": 64603808, - "methods": [ - 28162928, - 28163168, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28164560, - 25439280 + "vtable_address": 64607712, + "methods": [ + 28166192, + 28166432, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28167824, + 25442288 ], "bases": [ { @@ -92078,20 +92078,20 @@ }, { "type_name": "CEconTool_DuelingMinigame", - "vtable_address": 64574136, - "methods": [ - 27317728, - 27319376, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27279408, - 25439264, - 25439280 + "vtable_address": 64578040, + "methods": [ + 27320896, + 27322544, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92113,20 +92113,20 @@ }, { "type_name": "CEconTool_FanToken", - "vtable_address": 64574848, - "methods": [ - 27317328, - 27318896, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 28002880, - 28003520, - 25439280 + "vtable_address": 64578752, + "methods": [ + 27320496, + 27322064, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 28006144, + 28006784, + 25442288 ], "bases": [ { @@ -92148,20 +92148,20 @@ }, { "type_name": "CEconTool_Gift", - "vtable_address": 64593272, - "methods": [ - 28038192, - 28038800, - 27278336, - 28043312, - 27278352, - 28024576, - 27278384, - 27278400, - 27279264, - 26402656, - 28156144, - 25439280 + "vtable_address": 64597176, + "methods": [ + 28041456, + 28042064, + 27281504, + 28046576, + 27281520, + 28027840, + 27281552, + 27281568, + 27282432, + 26405664, + 28159408, + 25442288 ], "bases": [ { @@ -92183,20 +92183,20 @@ }, { "type_name": "CEconTool_Keychain", - "vtable_address": 64593048, - "methods": [ - 28038320, - 28038992, - 28024688, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28154336, - 25439280 + "vtable_address": 64596952, + "methods": [ + 28041584, + 28042256, + 28027952, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28157600, + 25442288 ], "bases": [ { @@ -92218,20 +92218,20 @@ }, { "type_name": "CEconTool_KeychainToolCharges", - "vtable_address": 64574736, - "methods": [ - 27317408, - 27318992, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 28001600, - 28002240, - 25439280 + "vtable_address": 64578640, + "methods": [ + 27320576, + 27322160, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 28004864, + 28005504, + 25442288 ], "bases": [ { @@ -92253,20 +92253,20 @@ }, { "type_name": "CEconTool_NameTag", - "vtable_address": 64603624, - "methods": [ - 28163008, - 28163264, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28165472, - 25439280 + "vtable_address": 64607528, + "methods": [ + 28166272, + 28166528, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28168736, + 25442288 ], "bases": [ { @@ -92288,20 +92288,20 @@ }, { "type_name": "CEconTool_Noisemaker", - "vtable_address": 64573688, - "methods": [ - 27318048, - 27319760, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27279408, - 25439264, - 25439280 + "vtable_address": 64577592, + "methods": [ + 27321216, + 27322928, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92323,20 +92323,20 @@ }, { "type_name": "CEconTool_PaintCan", - "vtable_address": 64573800, - "methods": [ - 27317968, - 27319664, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27279408, - 25439264, - 25439280 + "vtable_address": 64577704, + "methods": [ + 27321136, + 27322832, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92358,20 +92358,20 @@ }, { "type_name": "CEconTool_PaintKit", - "vtable_address": 64573912, - "methods": [ - 27317888, - 27319568, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27279408, - 25439264, - 25439280 + "vtable_address": 64577816, + "methods": [ + 27321056, + 27322736, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92393,20 +92393,20 @@ }, { "type_name": "CEconTool_Patch", - "vtable_address": 64593160, - "methods": [ - 28038256, - 28038896, - 28024592, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28155264, - 25439280 + "vtable_address": 64597064, + "methods": [ + 28041520, + 28042160, + 28027856, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28158528, + 25442288 ], "bases": [ { @@ -92428,20 +92428,20 @@ }, { "type_name": "CEconTool_Recipe", - "vtable_address": 64574024, - "methods": [ - 27317808, - 27319472, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27279408, - 25439264, - 25439280 + "vtable_address": 64577928, + "methods": [ + 27320976, + 27322640, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92463,20 +92463,20 @@ }, { "type_name": "CEconTool_SeasonPass", - "vtable_address": 64574512, - "methods": [ - 27318368, - 27320144, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27999040, - 27999680, - 25439280 + "vtable_address": 64578416, + "methods": [ + 27321536, + 27323312, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 28002304, + 28002944, + 25442288 ], "bases": [ { @@ -92498,20 +92498,20 @@ }, { "type_name": "CEconTool_SeasonTiers", - "vtable_address": 64575072, - "methods": [ - 27317168, - 27318704, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 28005440, - 28006080, - 25439280 + "vtable_address": 64578976, + "methods": [ + 27320336, + 27321872, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 28008704, + 28009344, + 25442288 ], "bases": [ { @@ -92533,20 +92533,20 @@ }, { "type_name": "CEconTool_Spray", - "vtable_address": 64574624, - "methods": [ - 27317488, - 27319088, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 28000320, - 28000960, - 25439280 + "vtable_address": 64578528, + "methods": [ + 27320656, + 27322256, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 28003584, + 28004224, + 25442288 ], "bases": [ { @@ -92568,20 +92568,20 @@ }, { "type_name": "CEconTool_StatTrakSwap", - "vtable_address": 64593536, - "methods": [ - 28038064, - 28038608, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28157696, - 25439280 + "vtable_address": 64597440, + "methods": [ + 28041328, + 28041872, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28160960, + 25442288 ], "bases": [ { @@ -92603,20 +92603,20 @@ }, { "type_name": "CEconTool_Sticker", - "vtable_address": 64592936, + "vtable_address": 64596840, "methods": [ - 28038384, - 28039088, - 28024592, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 28152944, - 25439280 + 28041648, + 28042352, + 28027856, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 28156208, + 25442288 ], "bases": [ { @@ -92638,20 +92638,20 @@ }, { "type_name": "CEconTool_WeddingRing", - "vtable_address": 64573576, + "vtable_address": 64577480, "methods": [ - 27318128, - 27319856, - 27278336, - 28043312, - 27279232, - 27278368, - 27278384, - 27278400, - 27390096, - 27279408, - 25439264, - 25439280 + 27321296, + 27323024, + 27281504, + 28046576, + 27282400, + 27281536, + 27281552, + 27281568, + 27393296, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92673,20 +92673,20 @@ }, { "type_name": "CEconTool_WrappedGift", - "vtable_address": 64573464, - "methods": [ - 27318208, - 27319952, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27391488, - 27391504, - 27279408, - 25439264, - 25439280 + "vtable_address": 64577368, + "methods": [ + 27321376, + 27323120, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27394688, + 27394704, + 27282576, + 25442272, + 25442288 ], "bases": [ { @@ -92708,20 +92708,20 @@ }, { "type_name": "CEconTool_XpGrant", - "vtable_address": 64574960, - "methods": [ - 27317248, - 27318800, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 28004160, - 28004800, - 25439280 + "vtable_address": 64578864, + "methods": [ + 27320416, + 27321968, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 28007424, + 28008064, + 25442288 ], "bases": [ { @@ -92743,20 +92743,20 @@ }, { "type_name": "CEconTool_XpShopTicket", - "vtable_address": 64573240, - "methods": [ - 27318448, - 27320240, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 27999040, - 27999680, - 25439280 + "vtable_address": 64577144, + "methods": [ + 27321616, + 27323408, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 28002304, + 28002944, + 25442288 ], "bases": [ { @@ -92789,19 +92789,19 @@ }, { "type_name": "CEconVolatileItemClaimedRewards", - "vtable_address": 64581472, + "vtable_address": 64585376, "methods": [ - 28007776, - 28007808, - 27282640, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282656 + 28011040, + 28011072, + 27285808, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285824 ], "bases": [ { @@ -92845,19 +92845,19 @@ }, { "type_name": "CEconVolatileItemOffer", - "vtable_address": 64581264, + "vtable_address": 64585168, "methods": [ - 28007968, - 28008000, - 27282672, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282688 + 28011232, + 28011264, + 27285840, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285856 ], "bases": [ { @@ -92901,7 +92901,7 @@ }, { "type_name": "CEffectData", - "vtable_address": 63162440, + "vtable_address": 63166344, "methods": [ 12577760, 12572528, @@ -92917,7 +92917,7 @@ }, { "type_name": "CEffectData", - "vtable_address": 63284296, + "vtable_address": 63288200, "methods": [], "bases": [], "model": { @@ -92928,18 +92928,18 @@ }, { "type_name": "CEmbeddedSubclass", - "vtable_address": 63115048, + "vtable_address": 63118952, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65453152 + "offset_to_top": 65457056 } } }, { "type_name": "CEmptyPhysicsBodyList", - "vtable_address": 63162488, + "vtable_address": 63166392, "methods": [ 12576320, 12577424, @@ -92967,70 +92967,70 @@ }, { "type_name": "CEmptySequence", - "vtable_address": 64769048, - "methods": [ - 32666624, - 32666640, - 32665792, - 32666304, - 32666128, - 32666272, - 32665600, - 32665616, - 32666560, - 32666592, - 32666608, - 32665648, - 32665664, - 32665680, - 32665696, - 32665712, - 32665728, - 32665744, - 32665760, - 32665776, - 32665808, - 32665824, - 32665840, - 32665856, - 32665872, - 32665888, - 32665920, - 32665936, - 32665952, - 32665968, - 32665984, - 32666000, - 32666016, - 32666032, - 32666048, - 32666064, - 32666080, - 32666096, - 32666112, - 32666144, - 32666160, - 32666176, - 32666192, - 32666208, - 32666224, - 32666240, - 32666256, - 32666320, - 32666336, - 32666352, - 32666368, - 32666400, - 32666432, - 32666656, - 32666464, - 32665632, - 32666496, - 32666512, - 32666528, - 32666544, - 32666288, - 32666576 + "vtable_address": 64772952, + "methods": [ + 32670464, + 32670480, + 32669632, + 32670144, + 32669968, + 32670112, + 32669440, + 32669456, + 32670400, + 32670432, + 32670448, + 32669488, + 32669504, + 32669520, + 32669536, + 32669552, + 32669568, + 32669584, + 32669600, + 32669616, + 32669648, + 32669664, + 32669680, + 32669696, + 32669712, + 32669728, + 32669760, + 32669776, + 32669792, + 32669808, + 32669824, + 32669840, + 32669856, + 32669872, + 32669888, + 32669904, + 32669920, + 32669936, + 32669952, + 32669984, + 32670000, + 32670016, + 32670032, + 32670048, + 32670064, + 32670080, + 32670096, + 32670160, + 32670176, + 32670192, + 32670208, + 32670240, + 32670272, + 32670496, + 32670304, + 32669472, + 32670336, + 32670352, + 32670368, + 32670384, + 32670128, + 32670416 ], "bases": [ { @@ -93063,7 +93063,7 @@ }, { "type_name": "CEmptyWorldService", - "vtable_address": 63707280, + "vtable_address": 63711184, "methods": [ 17121696, 17121760, @@ -93079,7 +93079,7 @@ 17121072, 17121088, 17119920, - 17126608, + 17126704, 17119904, 17121104, 17121120, @@ -93087,8 +93087,8 @@ 17119888, 17121152, 17121168, - 17127344, - 17127248 + 17127440, + 17127344 ], "bases": [ { @@ -93198,7 +93198,7 @@ }, { "type_name": "CEnduringClassMemoryPool", - "vtable_address": 63320120, + "vtable_address": 63324024, "methods": [ 13219264 ], @@ -93211,23 +93211,23 @@ }, { "type_name": "CEngineGotvSyncPacket", - "vtable_address": 63578816, + "vtable_address": 63582720, "methods": [ 15672960, 15706192, - 29643894, + 29647734, 15212656, 15802176, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827920, 14847856, 15426112, 12011504, 15100960, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843744, 14807088 @@ -93263,18 +93263,18 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 64067576, + "vtable_address": 64071480, "methods": [ - 19426528, - 19427056, - 19442656, - 19360048, - 19432768, - 19380048, - 19360032, - 19767264, - 19772224, - 19452608 + 19429344, + 19429872, + 19445472, + 19362864, + 19435584, + 19382864, + 19362848, + 19770080, + 19775040, + 19455424 ], "bases": [ { @@ -93306,12 +93306,12 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 64067672, + "vtable_address": 64071576, "methods": [ - 19767888, + 19770704, 13215936, - 19772560, - 19452848 + 19775376, + 19455664 ], "bases": [ { @@ -93343,52 +93343,52 @@ }, { "type_name": "CEntity2SaveRestore", - "vtable_address": 64054408, - "methods": [ - 19088416, - 19220000, - 19096032, - 18941344, - 19307584, - 19310976, - 18972224, - 19231072, - 19282320, - 18941360, - 19285504, - 19088400, - 18941312, - 18941328, - 18953168, - 18987728, - 19079536, - 18949712, - 18941232, - 18953504, - 19088992, - 19092080, - 19108608, - 18951184, - 18951296, - 18970528, - 18941424, - 18941440, - 18940672, - 18941456, - 18974992, - 19081024, - 18941472, - 18971600, - 18941520, - 19220128, - 19100400, - 18949728, - 18941264, - 18941376, - 18941392, - 18969104, - 18941296, - 19281936 + "vtable_address": 64058312, + "methods": [ + 19091232, + 19222816, + 19098848, + 18944160, + 19310400, + 19313792, + 18975040, + 19233888, + 19285136, + 18944176, + 19288320, + 19091216, + 18944128, + 18944144, + 18955984, + 18990544, + 19082352, + 18952528, + 18944048, + 18956320, + 19091808, + 19094896, + 19111424, + 18954000, + 18954112, + 18973344, + 18944240, + 18944256, + 18943488, + 18944272, + 18977808, + 19083840, + 18944288, + 18974416, + 18944336, + 19222944, + 19103216, + 18952544, + 18944080, + 18944192, + 18944208, + 18971920, + 18944112, + 19284752 ], "bases": [ { @@ -93410,9 +93410,9 @@ }, { "type_name": "CEntity2_EHandle_Restore", - "vtable_address": 64846840, + "vtable_address": 64850744, "methods": [ - 39917472 + 39921376 ], "bases": [ { @@ -93434,9 +93434,9 @@ }, { "type_name": "CEntity2_EHandle_Save", - "vtable_address": 64846816, + "vtable_address": 64850720, "methods": [ - 39917120 + 39921024 ], "bases": [ { @@ -93458,9 +93458,9 @@ }, { "type_name": "CEntityAbsVelocityRenderAttribCallback", - "vtable_address": 64132080, + "vtable_address": 64135984, "methods": [ - 20831792 + 20834608 ], "bases": [ { @@ -93482,9 +93482,9 @@ }, { "type_name": "CEntityAgeRenderAttribCallback", - "vtable_address": 64132128, + "vtable_address": 64136032, "methods": [ - 20831680 + 20834496 ], "bases": [ { @@ -93506,7 +93506,7 @@ }, { "type_name": "CEntityAutoCompletionFunctor", - "vtable_address": 63328176, + "vtable_address": 63332080, "methods": [ 13583408, 13218336 @@ -93531,7 +93531,7 @@ }, { "type_name": "CEntityClassPulseSignature", - "vtable_address": 64846920, + "vtable_address": 64850824, "methods": [], "bases": [ { @@ -93553,10 +93553,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 64143256, + "vtable_address": 64147160, "methods": [ - 20574160, - 20574272, + 20576976, + 20577088, 12967616, 12967632, 12233776, @@ -93593,10 +93593,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 64022416, + "vtable_address": 64026320, "methods": [ - 18509168, - 18509280, + 18511472, + 18511584, 12967616, 12967632, 12233776, @@ -93633,7 +93633,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 63235736, + "vtable_address": 63239640, "methods": [ 12970112, 12970224, @@ -93673,10 +93673,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 64088288, + "vtable_address": 64092192, "methods": [ - 19884176, - 19887840, + 19886992, + 19890656, 12967616, 12967632, 12233776, @@ -93713,10 +93713,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 64022480, + "vtable_address": 64026384, "methods": [ - 18508944, - 18509056, + 18511248, + 18511360, 12967616, 12967632, 12233776, @@ -93753,10 +93753,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 64022352, + "vtable_address": 64026256, "methods": [ - 18509392, - 18509504, + 18511696, + 18511808, 12967616, 12967632, 12233776, @@ -93793,10 +93793,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 64143192, + "vtable_address": 64147096, "methods": [ - 20574384, - 20574448, + 20577200, + 20577264, 12967616, 12967632, 12233776, @@ -93833,7 +93833,7 @@ }, { "type_name": "CEntityComponentHelperReferenced", - "vtable_address": 64848640, + "vtable_address": 64852544, "methods": [], "bases": [ { @@ -93855,7 +93855,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 63152648, + "vtable_address": 63156552, "methods": [ 12449472, 12448448, @@ -93895,14 +93895,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 64014336, + "vtable_address": 64018240, "methods": [ 12449472, - 18510176, - 18515616, - 18510192, - 18629792, - 18644112 + 18512480, + 18517920, + 18512496, + 18632096, + 18646416 ], "bases": [ { @@ -93935,14 +93935,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 64014784, + "vtable_address": 64018688, "methods": [ 12449472, - 18510144, - 18517104, - 18510160, - 18529520, - 18524128 + 18512448, + 18519408, + 18512464, + 18531824, + 18526432 ], "bases": [ { @@ -93975,7 +93975,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 63152888, + "vtable_address": 63156792, "methods": [ 12449472, 12448384, @@ -94015,7 +94015,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 63152768, + "vtable_address": 63156672, "methods": [ 12449472, 12448416, @@ -94055,7 +94055,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 63153056, + "vtable_address": 63156960, "methods": [ 12449472, 12448352, @@ -94095,7 +94095,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 63153160, + "vtable_address": 63157064, "methods": [ 12449472, 12448320, @@ -94135,12 +94135,12 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 64085088, + "vtable_address": 64088992, "methods": [ 12449472, - 19877728, - 19878832, - 19877744, + 19880544, + 19881648, + 19880560, 12446944, 12446960 ], @@ -94175,7 +94175,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 63241464, + "vtable_address": 63245368, "methods": [ 12449472, 13056336, @@ -94215,7 +94215,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 63156880, + "vtable_address": 63160784, "methods": [ 12449472, 12448288, @@ -94255,14 +94255,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 64848696, + "vtable_address": 64852600, "methods": [ 12449472, - 40193424, - 40193504, - 40193440, - 40193456, - 40193472 + 40197328, + 40197408, + 40197344, + 40197360, + 40197376 ], "bases": [ { @@ -94295,13 +94295,13 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 64065832, + "vtable_address": 64069736, "methods": [ - 19413296, - 19382336, - 19400800, - 19866032, - 19386240 + 19416112, + 19385152, + 19403616, + 19868848, + 19389056 ], "bases": [ { @@ -94323,13 +94323,13 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 64065776, + "vtable_address": 64069680, "methods": [ - 19413104, - 19382128, - 19400944, - 19867888, - 19385536 + 19415920, + 19384944, + 19403760, + 19870704, + 19388352 ], "bases": [ { @@ -94351,13 +94351,13 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 64065888, + "vtable_address": 64069792, "methods": [ - 19413488, - 19382544, - 19400656, - 19864176, - 19387008 + 19416304, + 19385360, + 19403472, + 19866992, + 19389824 ], "bases": [ { @@ -94379,7 +94379,7 @@ }, { "type_name": "CEntityDebugGameSystem", - "vtable_address": 63327664, + "vtable_address": 63331568, "methods": [ 12204192, 12204208, @@ -94485,9 +94485,9 @@ }, { "type_name": "CEntityGameTimeRenderAttribCallback", - "vtable_address": 64132176, + "vtable_address": 64136080, "methods": [ - 20832192 + 20835008 ], "bases": [ { @@ -94509,9 +94509,9 @@ }, { "type_name": "CEntityHealthRenderAttribCallback", - "vtable_address": 64132008, + "vtable_address": 64135912, "methods": [ - 20832096 + 20834912 ], "bases": [ { @@ -94533,12 +94533,12 @@ }, { "type_name": "CEntityIONotify", - "vtable_address": 64067720, + "vtable_address": 64071624, "methods": [ - 19587856, - 19602128, - 19373056, - 19380240 + 19590672, + 19604944, + 19375872, + 19383056 ], "bases": [ { @@ -94560,7 +94560,7 @@ }, { "type_name": "CEntityIOOutput", - "vtable_address": 63162208, + "vtable_address": 63166112, "methods": [ 12577984, 12572368 @@ -94574,63 +94574,63 @@ }, { "type_name": "CEntityIOOutput", - "vtable_address": 64849720, + "vtable_address": 64853624, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11125139 + "offset_to_top": 11125150 } } }, { "type_name": "CEntityInstance", - "vtable_address": 64847080, - "methods": [ - 40013040, - 39989840, - 39991376, - 39987808, - 39987824, - 39990672, - 39987840, - 39993712, - 39988288, - 39987856, - 39987856, - 39991120, - 39990176, - 39987984, + "vtable_address": 64850984, + "methods": [ + 40016944, + 39993744, + 39995280, + 39991712, + 39991728, + 39994576, + 39991744, + 39997616, + 39992192, + 39991760, + 39991760, + 39995024, + 39994080, + 39991888, 12233808, 12233824, - 39987536, - 39987552, - 39987568, - 39987584, - 39987600, - 39987616, - 39987632, - 39987648, - 39987664, + 39991440, + 39991456, + 39991472, + 39991488, + 39991504, + 39991520, + 39991536, + 39991552, + 39991568, 12233840, 12233856, 12233872, 12233888, 12233904, - 39987680, + 39991584, 12233920, 12233936, - 39987696, + 39991600, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 39987712, - 39987728, - 39988192 + 40000032, + 39991616, + 39991632, + 39992096 ], "bases": [], "model": { @@ -94641,7 +94641,7 @@ }, { "type_name": "CEntityInstance", - "vtable_address": 64849616, + "vtable_address": 64853520, "methods": [], "bases": [], "model": { @@ -94652,7 +94652,7 @@ }, { "type_name": "CEntityInstance", - "vtable_address": 66119400, + "vtable_address": 66123304, "methods": [], "bases": [], "model": { @@ -94663,7 +94663,7 @@ }, { "type_name": "CEntityInstancePolymorphicMetadataHelper", - "vtable_address": 63088872, + "vtable_address": 63092776, "methods": [ 12012032 ], @@ -94687,9 +94687,9 @@ }, { "type_name": "CEntityIronSightAmountRenderAttribCallback", - "vtable_address": 63787768, + "vtable_address": 63791672, "methods": [ - 17630720 + 17633024 ], "bases": [ { @@ -94711,12 +94711,12 @@ }, { "type_name": "CEntityKeyValuesSaveRestoreOps", - "vtable_address": 64054864, + "vtable_address": 64058768, "methods": [ - 19002672, - 19002496, - 18953472, - 18953680, + 19005488, + 19005312, + 18956288, + 18956496, 12233776, 12233792 ], @@ -94761,23 +94761,23 @@ }, { "type_name": "CEntityMessageDoSpark", - "vtable_address": 63652496, + "vtable_address": 63656400, "methods": [ 16667824, 16669168, - 29643894, + 29647734, 16260336, 16729936, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16135664, 15996288, 16403056, 12011504, 16138304, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020480, 15992784 @@ -94813,23 +94813,23 @@ }, { "type_name": "CEntityMessageFixAngle", - "vtable_address": 63652656, + "vtable_address": 63656560, "methods": [ 16667376, 16669616, - 29643894, + 29647734, 16260480, 16729616, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16107184, 15996272, 16403872, 12011504, 16057328, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020512, 15992800 @@ -94865,23 +94865,23 @@ }, { "type_name": "CEntityMessagePlayJingle", - "vtable_address": 63651856, + "vtable_address": 63655760, "methods": [ 16658704, 16659088, - 29643894, + 29647734, 16259728, 16724336, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16069136, 15996352, 16400912, 12011504, 16045264, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020352, 15992720 @@ -94917,23 +94917,23 @@ }, { "type_name": "CEntityMessagePropagateForce", - "vtable_address": 63652336, + "vtable_address": 63656240, "methods": [ 16668272, 16668720, - 29643894, + 29647734, 16260208, 16729120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16097776, 15996304, 16402544, 12011504, 16045360, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020448, 15992768 @@ -94969,23 +94969,23 @@ }, { "type_name": "CEntityMessageRemoveAllDecals", - "vtable_address": 63652176, + "vtable_address": 63656080, "methods": [ 16657936, 16659856, - 29643894, + 29647734, 16260048, 16724560, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16085392, 15996320, 16401936, 12011504, 16057168, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020416, 15992752 @@ -95021,14 +95021,14 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 64128400, + "vtable_address": 64132304, "methods": [ - 20580272, - 20580336, - 20145312, - 20145328, - 20145344, - 20157888 + 20583088, + 20583152, + 20148128, + 20148144, + 20148160, + 20160704 ], "bases": [ { @@ -95115,23 +95115,23 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 64128464, + "vtable_address": 64132368, "methods": [ - 20580304, - 20580400, - 29643894, + 20583120, + 20583216, + 29647734, 16260048, 16724560, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16085392, 15996320, 16401936, 12011504, 16057168, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020416, 15992752 @@ -95221,23 +95221,23 @@ }, { "type_name": "CEntityMessageScreenOverlay", - "vtable_address": 63652016, + "vtable_address": 63655920, "methods": [ 16658320, 16659472, - 29643894, + 29647734, 16259888, 16724448, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16085264, 15996336, 16401328, 12011504, 16057008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020384, 15992736 @@ -95273,23 +95273,23 @@ }, { "type_name": "CEntityMsg", - "vtable_address": 63627536, + "vtable_address": 63631440, "methods": [ 16574736, 16607216, - 29643894, + 29647734, 16232224, 16681392, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999616, 15995184, 16321536, 12011504, 16073088, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015488, 15986768 @@ -95325,9 +95325,9 @@ }, { "type_name": "CEntityOriginRenderAttribCallback", - "vtable_address": 64132032, + "vtable_address": 64135936, "methods": [ - 20831904 + 20834720 ], "bases": [ { @@ -95349,18 +95349,18 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 64849376, + "vtable_address": 64853280, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66121568 + "offset_to_top": 66125472 } } }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 64010784, + "vtable_address": 64014688, "methods": [ 12577984, 12572368 @@ -95385,7 +95385,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 63249816, + "vtable_address": 63253720, "methods": [ 12577984, 12572368 @@ -95410,9 +95410,9 @@ }, { "type_name": "CEntityRandomRenderAttribCallback", - "vtable_address": 64132104, + "vtable_address": 64136008, "methods": [ - 20832016 + 20834832 ], "bases": [ { @@ -95434,9 +95434,9 @@ }, { "type_name": "CEntityRenderBoundsRenderAttribCallback", - "vtable_address": 64132152, + "vtable_address": 64136056, "methods": [ - 20831536 + 20834352 ], "bases": [ { @@ -95458,17 +95458,17 @@ }, { "type_name": "CEntitySaveRestoreBlockHandler", - "vtable_address": 64054928, + "vtable_address": 64058832, "methods": [ - 18941568, - 19091440, - 19244032, - 18995376, - 18941552, - 18953536, - 18994960, - 19235840, - 18953568 + 18944384, + 19094256, + 19246848, + 18998192, + 18944368, + 18956352, + 18997776, + 19238656, + 18956384 ], "bases": [ { @@ -95490,7 +95490,7 @@ }, { "type_name": "CEntitySharedPulseSignature", - "vtable_address": 63166632, + "vtable_address": 63170536, "methods": [ 12579120, 12579136, @@ -95527,10 +95527,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64437584, + "vtable_address": 64441488, "methods": [ - 24290176, - 24269888 + 24292928, + 24272640 ], "bases": [ { @@ -95552,10 +95552,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64549360, + "vtable_address": 64553264, "methods": [ - 27169520, - 27164240 + 27172528, + 27167248 ], "bases": [ { @@ -95577,7 +95577,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63131080, + "vtable_address": 63134984, "methods": [ 12254880, 12238128 @@ -95602,10 +95602,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63741392, + "vtable_address": 63745296, "methods": [ - 17225232, - 17217888 + 17227536, + 17220192 ], "bases": [ { @@ -95627,7 +95627,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63328336, + "vtable_address": 63332240, "methods": [ 13259376, 13220752 @@ -95652,9 +95652,9 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63709128, + "vtable_address": 63713032, "methods": [ - 17127952, + 17128048, 17120624 ], "bases": [ @@ -95677,7 +95677,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63166520, + "vtable_address": 63170424, "methods": [ 12592304, 12576272 @@ -95702,10 +95702,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64268208, + "vtable_address": 64272112, "methods": [ - 22456688, - 22439280 + 22459504, + 22442096 ], "bases": [ { @@ -95727,10 +95727,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64554032, + "vtable_address": 64557936, "methods": [ - 27169712, - 27164256 + 27172720, + 27167264 ], "bases": [ { @@ -95752,10 +95752,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64554160, + "vtable_address": 64558064, "methods": [ - 27170096, - 27164288 + 27173104, + 27167296 ], "bases": [ { @@ -95777,10 +95777,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64554096, + "vtable_address": 64558000, "methods": [ - 27169904, - 27164272 + 27172912, + 27167280 ], "bases": [ { @@ -95802,10 +95802,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64296912, + "vtable_address": 64300816, "methods": [ - 22833392, - 22823968 + 22836208, + 22826784 ], "bases": [ { @@ -95827,10 +95827,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64441936, + "vtable_address": 64445840, "methods": [ - 24290368, - 24269904 + 24293120, + 24272656 ], "bases": [ { @@ -95852,9 +95852,9 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63709064, + "vtable_address": 63712968, "methods": [ - 17127760, + 17127856, 17120608 ], "bases": [ @@ -95877,10 +95877,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63978400, + "vtable_address": 63982304, "methods": [ - 17871824, - 17865856 + 17874128, + 17868160 ], "bases": [ { @@ -95902,10 +95902,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64445864, + "vtable_address": 64449768, "methods": [ - 24290560, - 24269920 + 24293312, + 24272672 ], "bases": [ { @@ -95927,10 +95927,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64014248, + "vtable_address": 64018152, "methods": [ - 18539232, - 18508912 + 18541536, + 18511216 ], "bases": [ { @@ -95952,10 +95952,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64208024, + "vtable_address": 64211928, "methods": [ - 21833792, - 21816944 + 21836608, + 21819776 ], "bases": [ { @@ -95977,10 +95977,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64208088, + "vtable_address": 64211992, "methods": [ - 21833984, - 21816960 + 21836800, + 21819792 ], "bases": [ { @@ -96002,10 +96002,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63788168, + "vtable_address": 63792072, "methods": [ - 17458576, - 17440576 + 17460880, + 17442880 ], "bases": [ { @@ -96027,10 +96027,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64235464, + "vtable_address": 64239368, "methods": [ - 22310640, - 22298896 + 22313456, + 22301712 ], "bases": [ { @@ -96052,10 +96052,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64324624, + "vtable_address": 64328528, "methods": [ - 22833584, - 22823984 + 22836400, + 22826800 ], "bases": [ { @@ -96077,10 +96077,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63788104, + "vtable_address": 63792008, "methods": [ - 17458384, - 17440560 + 17460688, + 17442864 ], "bases": [ { @@ -96102,10 +96102,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64447992, + "vtable_address": 64451896, "methods": [ - 24290752, - 24269936 + 24293504, + 24272688 ], "bases": [ { @@ -96127,10 +96127,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63788232, + "vtable_address": 63792136, "methods": [ - 17458768, - 17440592 + 17461072, + 17442896 ], "bases": [ { @@ -96152,10 +96152,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64260984, + "vtable_address": 64264888, "methods": [ - 22456496, - 22439344 + 22459312, + 22442160 ], "bases": [ { @@ -96177,7 +96177,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63121888, + "vtable_address": 63125792, "methods": [ 12254688, 12238112 @@ -96202,10 +96202,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64163760, + "vtable_address": 64167664, "methods": [ - 21151120, - 21134768 + 21153936, + 21137584 ], "bases": [ { @@ -96227,10 +96227,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 63788040, + "vtable_address": 63791944, "methods": [ - 17458192, - 17440544 + 17460496, + 17442848 ], "bases": [ { @@ -96252,10 +96252,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 64268272, + "vtable_address": 64272176, "methods": [ - 22456880, - 22439296 + 22459696, + 22442112 ], "bases": [ { @@ -96277,7 +96277,7 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 63349672, + "vtable_address": 63353576, "methods": [ 12254496, 13220752 @@ -96313,10 +96313,10 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 64448024, + "vtable_address": 64451928, "methods": [ - 24290944, - 24269936 + 24293696, + 24272688 ], "bases": [ { @@ -96349,10 +96349,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64437552, + "vtable_address": 64441456, "methods": [ - 24291136, - 24269888 + 24293888, + 24272640 ], "bases": [], "model": { @@ -96363,10 +96363,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64549328, + "vtable_address": 64553232, "methods": [ - 27170288, - 27164240 + 27173296, + 27167248 ], "bases": [], "model": { @@ -96377,7 +96377,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63131048, + "vtable_address": 63134952, "methods": [ 12256256, 12238128 @@ -96391,10 +96391,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63741360, + "vtable_address": 63745264, "methods": [ - 17221792, - 17217888 + 17224096, + 17220192 ], "bases": [], "model": { @@ -96405,7 +96405,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63328304, + "vtable_address": 63332208, "methods": [ 13239280, 13220752 @@ -96419,7 +96419,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63709096, + "vtable_address": 63713000, "methods": [ 17124064, 17120624 @@ -96433,7 +96433,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63166488, + "vtable_address": 63170392, "methods": [ 12579840, 12576272 @@ -96447,10 +96447,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64268176, + "vtable_address": 64272080, "methods": [ - 22457264, - 22439280 + 22460080, + 22442096 ], "bases": [], "model": { @@ -96461,10 +96461,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64554000, + "vtable_address": 64557904, "methods": [ - 27170480, - 27164256 + 27173488, + 27167264 ], "bases": [], "model": { @@ -96475,10 +96475,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64554128, + "vtable_address": 64558032, "methods": [ - 27170864, - 27164288 + 27173872, + 27167296 ], "bases": [], "model": { @@ -96489,10 +96489,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64554064, + "vtable_address": 64557968, "methods": [ - 27170672, - 27164272 + 27173680, + 27167280 ], "bases": [], "model": { @@ -96503,10 +96503,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64296880, + "vtable_address": 64300784, "methods": [ - 22830768, - 22823968 + 22833584, + 22826784 ], "bases": [], "model": { @@ -96517,10 +96517,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64441904, + "vtable_address": 64445808, "methods": [ - 24291328, - 24269904 + 24294080, + 24272656 ], "bases": [], "model": { @@ -96531,9 +96531,9 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63709032, + "vtable_address": 63712936, "methods": [ - 17127056, + 17127152, 17120608 ], "bases": [], @@ -96545,10 +96545,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63978368, + "vtable_address": 63982272, "methods": [ - 17867728, - 17865856 + 17870032, + 17868160 ], "bases": [], "model": { @@ -96559,10 +96559,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64445832, + "vtable_address": 64449736, "methods": [ - 24291520, - 24269920 + 24294272, + 24272672 ], "bases": [], "model": { @@ -96573,10 +96573,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64014216, + "vtable_address": 64018120, "methods": [ - 18535680, - 18508912 + 18537984, + 18511216 ], "bases": [], "model": { @@ -96587,10 +96587,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64207992, + "vtable_address": 64211896, "methods": [ - 21834176, - 21816944 + 21836992, + 21819776 ], "bases": [], "model": { @@ -96601,10 +96601,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64208056, + "vtable_address": 64211960, "methods": [ - 21823200, - 21816960 + 21826032, + 21819792 ], "bases": [], "model": { @@ -96615,10 +96615,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63788136, + "vtable_address": 63792040, "methods": [ - 17459344, - 17440576 + 17461648, + 17442880 ], "bases": [], "model": { @@ -96629,10 +96629,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64235432, + "vtable_address": 64239336, "methods": [ - 22304992, - 22298896 + 22307808, + 22301712 ], "bases": [], "model": { @@ -96643,10 +96643,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64324592, + "vtable_address": 64328496, "methods": [ - 22826800, - 22823984 + 22829616, + 22826800 ], "bases": [], "model": { @@ -96657,10 +96657,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63788072, + "vtable_address": 63791976, "methods": [ - 17459152, - 17440560 + 17461456, + 17442864 ], "bases": [], "model": { @@ -96671,10 +96671,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64447960, + "vtable_address": 64451864, "methods": [ - 24291712, - 24269936 + 24294464, + 24272688 ], "bases": [], "model": { @@ -96685,10 +96685,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63788200, + "vtable_address": 63792104, "methods": [ - 17459536, - 17440592 + 17461840, + 17442896 ], "bases": [], "model": { @@ -96699,10 +96699,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64260952, + "vtable_address": 64264856, "methods": [ - 22457072, - 22439344 + 22459888, + 22442160 ], "bases": [], "model": { @@ -96713,7 +96713,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63121856, + "vtable_address": 63125760, "methods": [ 12256064, 12238112 @@ -96727,10 +96727,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64163728, + "vtable_address": 64167632, "methods": [ - 21142368, - 21134768 + 21145184, + 21137584 ], "bases": [], "model": { @@ -96741,10 +96741,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 63788008, + "vtable_address": 63791912, "methods": [ - 17458960, - 17440544 + 17461264, + 17442848 ], "bases": [], "model": { @@ -96755,10 +96755,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 64268240, + "vtable_address": 64272144, "methods": [ - 22446384, - 22439296 + 22449200, + 22442112 ], "bases": [], "model": { @@ -96769,9 +96769,9 @@ }, { "type_name": "CEntityStattrakDisplayValueRenderAttribCallback", - "vtable_address": 63787984, + "vtable_address": 63791888, "methods": [ - 17631632 + 17633936 ], "bases": [ { @@ -96793,7 +96793,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 63328368, + "vtable_address": 63332272, "methods": [ 13524928, 12204208, @@ -96900,7 +96900,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 63328888, + "vtable_address": 63332792, "methods": [ 13055520, 13537744, @@ -96947,7 +96947,7 @@ }, { "type_name": "CEntitySubclassVDataBase", - "vtable_address": 63289840, + "vtable_address": 63293744, "methods": [ 13163008, 13175920, @@ -96977,7 +96977,7 @@ }, { "type_name": "CEntitySubclassVDataBase", - "vtable_address": 63307320, + "vtable_address": 63311224, "methods": [], "bases": [], "model": { @@ -96988,33 +96988,33 @@ }, { "type_name": "CEntitySystem", - "vtable_address": 64847752, - "methods": [ - 40135360, - 40134160, - 40029232, - 40029264, - 40029312, - 40134688, - 40133920, + "vtable_address": 64851656, + "methods": [ + 40139264, + 40138064, + 40033136, + 40033168, + 40033216, + 40138592, + 40137824, + 40035504, + 40035792, + 40032976, + 19639024, + 19642784, + 40032000, + 40119088, + 40073408, + 40031584, 40031600, - 40031888, - 40029072, - 19636208, - 19639968, - 40028096, - 40115184, - 40069504, - 40027680, - 40027696, - 40027712, - 40027728, - 40027744, - 40033520, - 40028112, - 40028512, - 40028656, - 40028768 + 40031616, + 40031632, + 40031648, + 40037424, + 40032016, + 40032416, + 40032560, + 40032672 ], "bases": [ { @@ -97036,9 +97036,9 @@ }, { "type_name": "CEntityTeamRenderAttribCallback", - "vtable_address": 64132056, + "vtable_address": 64135960, "methods": [ - 20840000 + 20842816 ], "bases": [ { @@ -97060,9 +97060,9 @@ }, { "type_name": "CEntityViewmodelLeftHandedRenderAttribCallback", - "vtable_address": 63787912, + "vtable_address": 63791816, "methods": [ - 17633648 + 17635952 ], "bases": [ { @@ -97084,9 +97084,9 @@ }, { "type_name": "CEntityWeaponAmmoCountRenderAttribCallback", - "vtable_address": 63787840, + "vtable_address": 63791744, "methods": [ - 17632032 + 17634336 ], "bases": [ { @@ -97108,9 +97108,9 @@ }, { "type_name": "CEntityWeaponLastShakeTimeRenderAttribCallback", - "vtable_address": 63787864, + "vtable_address": 63791768, "methods": [ - 17631280 + 17633584 ], "bases": [ { @@ -97132,9 +97132,9 @@ }, { "type_name": "CEntityWeaponTaserChargeRenderAttribCallback", - "vtable_address": 63787888, + "vtable_address": 63791792, "methods": [ - 17630368 + 17632672 ], "bases": [ { @@ -97156,7 +97156,7 @@ }, { "type_name": "CEnvCubemapFogSystem", - "vtable_address": 63175216, + "vtable_address": 63179120, "methods": [ 12204192, 12204208, @@ -97274,7 +97274,7 @@ }, { "type_name": "CEnvCubemapFogSystem", - "vtable_address": 63175736, + "vtable_address": 63179640, "methods": [ 12684496, 12685056, @@ -97332,7 +97332,7 @@ }, { "type_name": "CEnvCubemapToolsResourceListener", - "vtable_address": 63170608, + "vtable_address": 63174512, "methods": [ 12446976, 12600928 @@ -97357,33 +97357,33 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 63482656, + "vtable_address": 63486560, "methods": [ 14367152, 13976720, 13976832, 12884160, - 39987824, + 39991728, 14311248, - 21124256, + 21127072, 14311152, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 14311344, 14312416, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 13822096, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -97392,23 +97392,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13976320, 14552416, 14514304, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -97425,13 +97425,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -97439,39 +97439,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -97485,33 +97485,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -97539,9 +97539,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -97549,24 +97549,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -97610,7 +97610,7 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 65472512, + "vtable_address": 65476416, "methods": [], "bases": [], "model": { @@ -97621,7 +97621,7 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 65518240, + "vtable_address": 65522144, "methods": [], "bases": [], "model": { @@ -97632,33 +97632,33 @@ }, { "type_name": "CEnvSoundscapeAlias_snd_soundscape", - "vtable_address": 63344256, + "vtable_address": 63348160, "methods": [ 14367152, 13872480, 13873680, 12884160, - 39987824, + 39991728, 14311248, - 21124256, + 21127072, 14311152, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 14311344, 14312416, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 13822096, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -97667,23 +97667,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13822128, 13835248, 13830320, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -97700,13 +97700,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -97714,39 +97714,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -97760,33 +97760,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -97814,9 +97814,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -97824,24 +97824,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -97896,33 +97896,33 @@ }, { "type_name": "CEnvSoundscapeProxy", - "vtable_address": 63484424, + "vtable_address": 63488328, "methods": [ 14367152, 14516336, 14516352, 12884160, - 39987824, + 39991728, 14311328, - 21124256, + 21127072, 14311152, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 14311648, 14312416, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 13822096, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -97931,23 +97931,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13975216, 14552416, 14514288, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -97964,13 +97964,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -97978,39 +97978,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -98024,33 +98024,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -98078,9 +98078,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -98088,24 +98088,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -98160,7 +98160,7 @@ }, { "type_name": "CEnvSoundscapeProxy", - "vtable_address": 65472704, + "vtable_address": 65476608, "methods": [], "bases": [], "model": { @@ -98171,33 +98171,33 @@ }, { "type_name": "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", - "vtable_address": 63342488, + "vtable_address": 63346392, "methods": [ 14367152, 13872368, 13873568, 12884160, - 39987824, + 39991728, 14311328, - 21124256, + 21127072, 14311152, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 14311648, 14312416, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 13822096, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -98206,23 +98206,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13822112, 13835232, 13830304, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -98239,13 +98239,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -98253,39 +98253,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -98299,33 +98299,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -98353,9 +98353,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -98363,24 +98363,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -98446,33 +98446,33 @@ }, { "type_name": "CEnvSoundscapeTriggerable", - "vtable_address": 63486192, + "vtable_address": 63490096, "methods": [ 14367152, 14516272, 14516288, 12884160, - 39987824, + 39991728, 14311248, - 21124256, + 21127072, 14311152, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 14311344, 14312416, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 13822096, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -98481,23 +98481,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13978480, 14552416, 14514272, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -98514,13 +98514,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -98528,39 +98528,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -98574,33 +98574,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 13820880, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -98628,9 +98628,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -98638,24 +98638,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -98710,7 +98710,7 @@ }, { "type_name": "CEnvSoundscapeTriggerable", - "vtable_address": 65472320, + "vtable_address": 65476224, "methods": [], "bases": [], "model": { @@ -98721,33 +98721,33 @@ }, { "type_name": "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", - "vtable_address": 63346024, + "vtable_address": 63349928, "methods": [ 14367152, 13872592, 13873792, 12884160, - 39987824, + 39991728, 14311248, - 21124256, + 21127072, 14311152, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 14311344, 14312416, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 13822096, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -98756,23 +98756,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13822144, 13835264, 13830336, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -98789,13 +98789,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -98803,39 +98803,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -98849,33 +98849,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 13820880, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -98903,9 +98903,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -98913,24 +98913,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -98996,13 +98996,13 @@ }, { "type_name": "CEnvSpritePreviewer", - "vtable_address": 64222320, + "vtable_address": 64226224, "methods": [ - 22089024, - 22089104, - 22144272, + 22091840, + 22091920, + 22147088, 12235664, - 22114400, + 22117216, 12235680, 12235696, 12235712, @@ -99028,7 +99028,7 @@ }, { "type_name": "CEnvVolumetricFogControllerSystem", - "vtable_address": 63192392, + "vtable_address": 63196296, "methods": [ 12204192, 12204208, @@ -99146,7 +99146,7 @@ }, { "type_name": "CEnvVolumetricFogControllerSystem", - "vtable_address": 63192912, + "vtable_address": 63196816, "methods": [ 12901856, 12901552, @@ -99204,7 +99204,7 @@ }, { "type_name": "CEnvWindControllerSystem", - "vtable_address": 63196632, + "vtable_address": 63200536, "methods": [ 12204192, 12204208, @@ -99322,7 +99322,7 @@ }, { "type_name": "CEnvWindControllerSystem", - "vtable_address": 63197152, + "vtable_address": 63201056, "methods": [ 12901664, 12902400, @@ -99380,16 +99380,16 @@ }, { "type_name": "CEventQueue_SaveRestoreBlockHandler", - "vtable_address": 64054776, + "vtable_address": 64058680, "methods": [ - 18941536, + 18944352, 13214528, - 19009440, - 18997824, + 19012256, + 19000640, 13214544, 13214560, - 18997888, - 19008400, + 19000704, + 19011216, 13214576 ], "bases": [ @@ -99423,14 +99423,14 @@ }, { "type_name": "CEventsSaveDataOps", - "vtable_address": 64848424, + "vtable_address": 64852328, "methods": [ - 40191952, - 40187936, - 40183136, - 40183104, - 40183936, - 40183120 + 40195856, + 40191840, + 40187040, + 40187008, + 40187840, + 40187024 ], "bases": [ { @@ -99452,12 +99452,12 @@ }, { "type_name": "CExplosionDebrisEffectsList", - "vtable_address": 64190408, + "vtable_address": 64194312, "methods": [ - 21697184, - 21586544, - 21659728, - 21574368 + 21700000, + 21589360, + 21662544, + 21577184 ], "bases": [ { @@ -99501,11 +99501,11 @@ }, { "type_name": "CExplosionDebrisEffectsManager", - "vtable_address": 64190456, + "vtable_address": 64194360, "methods": [ - 21574880, + 21577696, 12204208, - 21582688, + 21585504, 12204240, 12204256, 12204272, @@ -99559,12 +99559,12 @@ 12205040, 12205056, 12205072, - 21558800, + 21561616, 12205104, - 21558784, - 21562080, - 21562096, - 21558768 + 21561600, + 21564896, + 21564912, + 21561584 ], "bases": [ { @@ -99597,10 +99597,10 @@ }, { "type_name": "CFPSStats", - "vtable_address": 64180648, + "vtable_address": 64184552, "methods": [ - 21414576, - 21438848 + 21417392, + 21441664 ], "bases": [ { @@ -99622,11 +99622,11 @@ }, { "type_name": "CFSRUpscaleRenderer", - "vtable_address": 64624128, + "vtable_address": 64628032, "methods": [ - 28450352, - 28341184, - 28341504, + 28453744, + 28344576, + 28344896, 12236576 ], "bases": [ @@ -99649,7 +99649,7 @@ }, { "type_name": "CFakeSpawnGroup", - "vtable_address": 63348400, + "vtable_address": 63352304, "methods": [ 13822160, 13822192, @@ -99705,7 +99705,7 @@ }, { "type_name": "CFieldPathHuffmanEncoder::INode", - "vtable_address": 64944976, + "vtable_address": 64948880, "methods": [], "bases": [], "model": { @@ -99716,11 +99716,11 @@ }, { "type_name": "CFieldPathHuffmanEncoder::InternalNode", - "vtable_address": 64944992, + "vtable_address": 64948896, "methods": [ - 59309680, - 59309840, - 59309760 + 59313584, + 59313744, + 59313664 ], "bases": [ { @@ -99742,11 +99742,11 @@ }, { "type_name": "CFieldPathHuffmanEncoder::LeafNode", - "vtable_address": 64945032, + "vtable_address": 64948936, "methods": [ - 59309792, - 59309808, - 59309776 + 59313696, + 59313712, + 59313680 ], "bases": [ { @@ -99768,33 +99768,33 @@ }, { "type_name": "CFilterAttributeInt", - "vtable_address": 64042136, + "vtable_address": 64046040, "methods": [ 14367152, - 18982128, - 18984160, + 18984944, + 18986976, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -99803,23 +99803,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18941024, - 18952544, - 18949616, + 40000032, + 18943840, + 18955360, + 18952432, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -99836,13 +99836,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -99850,42 +99850,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -99896,33 +99896,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -99950,9 +99950,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -99960,24 +99960,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -99989,8 +99989,8 @@ 12572832, 12572912, 12235344, - 19006400, - 18978736 + 19009216, + 18981552 ], "bases": [ { @@ -100045,33 +100045,33 @@ }, { "type_name": "CFilterClass", - "vtable_address": 64051056, + "vtable_address": 64054960, "methods": [ 14367152, - 18982288, - 18984336, + 18985104, + 18987152, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -100080,23 +100080,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940816, - 18952544, - 18949632, + 40000032, + 18943632, + 18955360, + 18952448, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -100113,13 +100113,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -100127,42 +100127,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -100173,33 +100173,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -100227,9 +100227,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -100237,24 +100237,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -100266,8 +100266,8 @@ 12572832, 12572912, 12235344, - 18952128, - 18978736 + 18954944, + 18981552 ], "bases": [ { @@ -100322,33 +100322,33 @@ }, { "type_name": "CFilterLOS", - "vtable_address": 64049272, + "vtable_address": 64053176, "methods": [ 14367152, - 18982448, - 18984512, + 18985264, + 18987328, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -100357,23 +100357,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18941008, - 18952544, - 18949648, + 40000032, + 18943824, + 18955360, + 18952464, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -100390,13 +100390,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -100404,42 +100404,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -100450,33 +100450,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -100504,9 +100504,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -100514,24 +100514,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -100543,8 +100543,8 @@ 12572832, 12572912, 12235344, - 18992992, - 18978736 + 18995808, + 18981552 ], "bases": [ { @@ -100599,33 +100599,33 @@ }, { "type_name": "CFilterMassGreater", - "vtable_address": 64036784, + "vtable_address": 64040688, "methods": [ 14367152, - 18981648, - 18983632, + 18984464, + 18986448, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -100634,23 +100634,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940880, - 18952544, - 18949568, + 40000032, + 18943696, + 18955360, + 18952384, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -100667,13 +100667,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -100681,42 +100681,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -100727,33 +100727,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -100781,9 +100781,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -100791,24 +100791,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -100820,8 +100820,8 @@ 12572832, 12572912, 12235344, - 18953808, - 18978736 + 18956624, + 18981552 ], "bases": [ { @@ -100876,33 +100876,33 @@ }, { "type_name": "CFilterModel", - "vtable_address": 64033216, + "vtable_address": 64037120, "methods": [ 14367152, - 18981328, - 18983280, + 18984144, + 18986096, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -100911,23 +100911,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940800, - 18952544, - 18949536, + 40000032, + 18943616, + 18955360, + 18952352, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -100944,13 +100944,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -100958,42 +100958,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -101004,33 +101004,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -101058,9 +101058,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -101068,24 +101068,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -101097,8 +101097,8 @@ 12572832, 12572912, 12235344, - 18951984, - 18978736 + 18954800, + 18981552 ], "bases": [ { @@ -101153,33 +101153,33 @@ }, { "type_name": "CFilterMultiple", - "vtable_address": 64045704, + "vtable_address": 64049608, "methods": [ 14367152, - 18982768, - 18984864, + 18985584, + 18987680, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 18978848, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 18981664, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -101188,23 +101188,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940768, - 18952544, - 18949680, + 40000032, + 18943584, + 18955360, + 18952496, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -101221,13 +101221,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -101235,42 +101235,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -101281,33 +101281,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -101335,9 +101335,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -101345,24 +101345,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -101374,8 +101374,8 @@ 12572832, 12572912, 12235344, - 18975296, - 18977488 + 18978112, + 18980304 ], "bases": [ { @@ -101430,33 +101430,33 @@ }, { "type_name": "CFilterName", - "vtable_address": 64031432, + "vtable_address": 64035336, "methods": [ 14367152, - 18981168, - 18983104, + 18983984, + 18985920, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -101465,23 +101465,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940784, - 18952544, - 18949520, + 40000032, + 18943600, + 18955360, + 18952336, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -101498,13 +101498,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -101512,42 +101512,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -101558,33 +101558,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -101612,9 +101612,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -101622,24 +101622,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -101651,8 +101651,8 @@ 12572832, 12572912, 12235344, - 18953888, - 18978736 + 18956704, + 18981552 ], "bases": [ { @@ -101707,33 +101707,33 @@ }, { "type_name": "CFilterProximity", - "vtable_address": 64047488, + "vtable_address": 64051392, "methods": [ 14367152, - 18982608, - 18984688, + 18985424, + 18987504, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -101742,23 +101742,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940992, - 18952544, - 18949664, + 40000032, + 18943808, + 18955360, + 18952480, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -101775,13 +101775,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -101789,42 +101789,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -101835,33 +101835,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -101889,9 +101889,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -101899,24 +101899,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -101928,8 +101928,8 @@ 12572832, 12572912, 12235344, - 18950928, - 18978736 + 18953744, + 18981552 ], "bases": [ { @@ -101984,33 +101984,33 @@ }, { "type_name": "CFilterTeam", - "vtable_address": 64035000, + "vtable_address": 64038904, "methods": [ 14367152, - 18981488, - 18983456, + 18984304, + 18986272, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -102019,23 +102019,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940864, - 18952544, - 18949552, + 40000032, + 18943680, + 18955360, + 18952368, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -102052,13 +102052,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -102066,42 +102066,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -102112,33 +102112,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -102166,9 +102166,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -102176,24 +102176,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -102205,8 +102205,8 @@ 12572832, 12572912, 12235344, - 18940832, - 18978736 + 18943648, + 18981552 ], "bases": [ { @@ -102261,10 +102261,10 @@ }, { "type_name": "CFireSceneObject", - "vtable_address": 64371872, + "vtable_address": 64375776, "methods": [ - 23439136, - 23439344, + 23441888, + 23442096, 12011888, 12011520 ], @@ -102288,14 +102288,14 @@ }, { "type_name": "CFireSceneObjectDesc", - "vtable_address": 64371920, + "vtable_address": 64375824, "methods": [ - 23436400, - 23459536, - 23436464, + 23439152, + 23462288, + 23439216, 12011584, 12019328, - 23439392, + 23442144, 12011600, 12011616, 12011632, @@ -102312,7 +102312,7 @@ 12011808, 12011824, 12011840, - 23451904 + 23454656 ], "bases": [ { @@ -102345,10 +102345,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 63999840, + "vtable_address": 64003744, "methods": [ - 18355664, - 18355616 + 18357968, + 18357920 ], "bases": [], "model": { @@ -102359,7 +102359,7 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 63320608, + "vtable_address": 63324512, "methods": [ 13222576, 13222592 @@ -102373,10 +102373,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 63999872, + "vtable_address": 64003776, "methods": [ - 18355648, - 18355632 + 18357952, + 18357936 ], "bases": [], "model": { @@ -102387,10 +102387,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 64255232, + "vtable_address": 64259136, "methods": [ - 22439328, - 22439312 + 22442144, + 22442128 ], "bases": [], "model": { @@ -102401,10 +102401,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 63780072, + "vtable_address": 63783976, "methods": [ - 17440624, - 17440608 + 17442928, + 17442912 ], "bases": [], "model": { @@ -102415,10 +102415,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 64358224, + "vtable_address": 64362128, "methods": [ - 23276064, - 23276048 + 23278816, + 23278800 ], "bases": [], "model": { @@ -102429,10 +102429,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 64358256, + "vtable_address": 64362160, "methods": [ - 23276096, - 23276080 + 23278848, + 23278832 ], "bases": [], "model": { @@ -102443,10 +102443,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 63977904, + "vtable_address": 63981808, "methods": [ - 17865840, - 17865824 + 17868144, + 17868128 ], "bases": [], "model": { @@ -102457,10 +102457,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 64131976, + "vtable_address": 64135880, "methods": [ - 20573360, - 20573344 + 20576176, + 20576160 ], "bases": [], "model": { @@ -102471,11 +102471,11 @@ }, { "type_name": "CFlashbangResolveLayerRenderer", - "vtable_address": 64624224, + "vtable_address": 64628128, "methods": [ - 28345424, - 28332992, - 28333920, + 28348816, + 28336384, + 28337312, 12236576 ], "bases": [ @@ -102498,11 +102498,11 @@ }, { "type_name": "CFlashlightEffect", - "vtable_address": 64188984, + "vtable_address": 64192888, "methods": [ 14478352, - 21655920, - 21658144 + 21658736, + 21660960 ], "bases": [], "model": { @@ -102513,7 +102513,7 @@ }, { "type_name": "CFlashlightEffectManager", - "vtable_address": 64188472, + "vtable_address": 64192376, "methods": [ 12204192, 12204208, @@ -102536,7 +102536,7 @@ 12204480, 12204496, 12204512, - 21658832, + 21661648, 12204544, 12204560, 12204576, @@ -102571,12 +102571,12 @@ 12205040, 12205056, 12205072, - 21558592, + 21561408, 12205104, - 21558576, - 21561952, - 21561968, - 21558560 + 21561392, + 21564768, + 21564784, + 21561376 ], "bases": [ { @@ -102609,13 +102609,13 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 64086584, + "vtable_address": 64090488, "methods": [ 12204192, 12204208, 12204224, - 19879632, - 19879664, + 19882448, + 19882480, 12204272, 12204288, 12204304, @@ -102667,14 +102667,14 @@ 12205040, 12205056, 12205072, - 19876464, + 19879280, 12205104, - 19876448, - 19891152, - 19890688, - 19876432, - 20008288, - 19898144 + 19879264, + 19893968, + 19893504, + 19879248, + 20011104, + 19900960 ], "bases": [ { @@ -102717,11 +102717,11 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 64087112, + "vtable_address": 64091016, "methods": [ - 17438704, - 19893088, - 19894304, + 17441008, + 19895904, + 19897120, 13215952 ], "bases": [ @@ -102765,16 +102765,16 @@ }, { "type_name": "CFlexAnimationTrack", - "vtable_address": 64823808, + "vtable_address": 64827712, "methods": [ - 39231552, - 39231584, - 39232144, - 39231952, - 39231888, - 39231632, - 39232272, - 39232464 + 39235392, + 39235424, + 39235984, + 39235792, + 39235728, + 39235472, + 39236112, + 39236304 ], "bases": [ { @@ -102796,11 +102796,11 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 64208120, + "vtable_address": 64212024, "methods": [ - 21816304, + 21819136, 12204208, - 21950720, + 21953600, 12204240, 12204256, 12204272, @@ -102854,14 +102854,14 @@ 12205040, 12205056, 12205072, - 21816272, + 21819104, 12205104, - 21816256, - 21950144, - 21950432, - 21816240, - 21822496, - 22011536 + 21819088, + 21953024, + 21953312, + 21819072, + 21825328, + 22014416 ], "bases": [ { @@ -102904,9 +102904,9 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 64208648, + "vtable_address": 64212552, "methods": [ - 22012992 + 22015872 ], "bases": [ { @@ -102949,11 +102949,11 @@ }, { "type_name": "CFootTrajectory", - "vtable_address": 64769728, + "vtable_address": 64773632, "methods": [ - 32761104, - 32761072, - 32761088 + 32764944, + 32764912, + 32764928 ], "bases": [ { @@ -102975,63 +102975,63 @@ }, { "type_name": "CFreeCamera", - "vtable_address": 64173464, + "vtable_address": 64177368, "methods": [ - 21357856, - 21358080, - 21360752, - 21324944, - 21397024, - 21357088, - 21342272, - 21345200, - 21325248, - 21324576, - 21324592, - 21325280, - 21325312, - 21324640, - 21345712, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 21359856, - 21359920, - 21359984, - 21324768, - 21324784, - 21324464, - 21324800, - 21324816, - 21324480, - 21324496, - 21324512, - 21387680, - 21324528, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160, - 21325184, - 21339712 + 21360672, + 21360896, + 21363568, + 21327760, + 21399840, + 21359904, + 21345088, + 21348016, + 21328064, + 21327392, + 21327408, + 21328096, + 21328128, + 21327456, + 21348528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 21362672, + 21362736, + 21362800, + 21327584, + 21327600, + 21327280, + 21327616, + 21327632, + 21327296, + 21327312, + 21327328, + 21390496, + 21327344, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976, + 21328000, + 21342528 ], "bases": [ { @@ -103074,9 +103074,9 @@ }, { "type_name": "CFreeCamera", - "vtable_address": 64173920, + "vtable_address": 64177824, "methods": [ - 21350112 + 21352928 ], "bases": [ { @@ -103119,33 +103119,33 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 63698920, + "vtable_address": 63702824, "methods": [ 14381312, 17052480, 17053120, - 18931456, - 18604336, - 18710128, - 18551600, + 18934272, + 18606640, + 18712976, + 18553904, 17108112, - 21132352, - 18750864, - 21132336, + 21135168, + 18753680, + 21135152, 17108592, 17108512, - 18665760, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -103154,23 +103154,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17046688, 17108480, 17047792, 12234080, 17054144, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -103186,14 +103186,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -103201,86 +103201,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 19040384, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 19043200, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -103298,12 +103298,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -103311,24 +103311,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -103340,73 +103340,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -103524,15 +103524,15 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 63701224, + "vtable_address": 63705128, "methods": [ 17052096, 17052672, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -103650,9 +103650,9 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 63701296, + "vtable_address": 63705200, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -103770,7 +103770,7 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 63701320, + "vtable_address": 63705224, "methods": [ 17052288, 17052896 @@ -103891,33 +103891,33 @@ }, { "type_name": "CFuncWater", - "vtable_address": 63743560, + "vtable_address": 63747464, "methods": [ 14368000, - 17225680, - 17226560, - 18931408, - 39987824, - 17220128, - 18645648, - 17240992, - 21132352, - 21132672, - 21132336, - 17241104, - 17220176, - 18665616, + 17227984, + 17228864, + 18934224, + 39991728, + 17222432, + 18647952, + 17243296, + 21135168, + 21135488, + 21135152, + 17243408, + 17222480, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -103926,23 +103926,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217216, - 17267568, - 17218480, + 40000032, + 17219520, + 17269872, + 17220784, 12234080, - 17232496, - 18666928, - 18799200, + 17234800, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -103959,13 +103959,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -103973,41 +103973,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -104019,33 +104019,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, - 17228416, + 20636464, + 17230720, 12572624, - 17220224, + 17222528, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -104073,9 +104073,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -104083,24 +104083,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -104112,32 +104112,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -104201,15 +104201,15 @@ }, { "type_name": "CFuncWater", - "vtable_address": 63745536, + "vtable_address": 63749440, "methods": [ - 17225968, - 17226256, - 18933072, - 18741840, - 18742112, + 17228272, + 17228560, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -104273,9 +104273,9 @@ }, { "type_name": "CFuncWater", - "vtable_address": 63745608, + "vtable_address": 63749512, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -104339,25 +104339,25 @@ }, { "type_name": "CFuseSymbolTable", - "vtable_address": 64778288, + "vtable_address": 64782192, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66076736 + "offset_to_top": 66080640 } } }, { "type_name": "CGBackpackSortFinished", - "vtable_address": 64584024, + "vtable_address": 64587928, "methods": [ - 27288416, - 27288432, + 27291584, + 27291600, 12404704, 12404288, 12399472, - 27324464, + 27327632, 12399456 ], "bases": [ @@ -104391,11 +104391,11 @@ }, { "type_name": "CGCClientJobFinalizePurchase", - "vtable_address": 64573056, + "vtable_address": 64576960, "methods": [ - 27288672, - 27288688, - 27989696, + 27291840, + 27291856, + 27992960, 12404288, 12399472, 12399440, @@ -104432,11 +104432,11 @@ }, { "type_name": "CGCClientJobInitPurchase", - "vtable_address": 64572904, + "vtable_address": 64576808, "methods": [ - 27288736, - 27288752, - 27987200, + 27291904, + 27291920, + 27990464, 12404288, 12399472, 12399440, @@ -104473,12 +104473,12 @@ }, { "type_name": "CGCClientJobSteamDatagramTicket", - "vtable_address": 64572712, + "vtable_address": 64576616, "methods": [ - 27288288, - 27288304, + 27291456, + 27291472, 12404704, - 27986496, + 27989760, 12399472, 12399440, 12399456 @@ -104514,11 +104514,11 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 64599768, + "vtable_address": 64603672, "methods": [ - 28029072, - 28031872, - 28029104, + 28032336, + 28035136, + 28032368, 12204240, 12204256, 12204272, @@ -104561,8 +104561,8 @@ 12204864, 12204880, 12204896, - 28033072, - 28034544, + 28036336, + 28037808, 12204944, 12204960, 12204976, @@ -104617,7 +104617,7 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 64600344, + "vtable_address": 64604248, "methods": [], "bases": [ { @@ -104660,14 +104660,14 @@ }, { "type_name": "CGCClientWelcomeJob", - "vtable_address": 64572560, + "vtable_address": 64576464, "methods": [ - 27288224, - 27288240, + 27291392, + 27291408, 12404704, 12404288, 12399472, - 27982656, + 27985920, 12399456 ], "bases": [ @@ -104701,14 +104701,14 @@ }, { "type_name": "CGCCraftResponse", - "vtable_address": 64603416, + "vtable_address": 64607320, "methods": [ - 28161392, - 28161408, + 28164656, + 28164672, 12404704, 12404288, 12399472, - 28168288, + 28171552, 12399456 ], "bases": [ @@ -104742,14 +104742,14 @@ }, { "type_name": "CGCDev_NewItemRequestResponse", - "vtable_address": 64583880, + "vtable_address": 64587784, "methods": [ - 27288352, - 27288368, + 27291520, + 27291536, 12404704, 12404288, 12399472, - 27288112, + 27291280, 12399456 ], "bases": [ @@ -104783,15 +104783,15 @@ }, { "type_name": "CGCFetchWebResource", - "vtable_address": 64592640, + "vtable_address": 64596544, "methods": [ - 28026288, - 28035920, + 28029552, + 28039184, 12404704, 12404288, 12399472, 12399440, - 28036096 + 28039360 ], "bases": [ { @@ -104824,14 +104824,14 @@ }, { "type_name": "CGCMsgAdjustEquipSlotsManualAcknowledged", - "vtable_address": 64584488, + "vtable_address": 64588392, "methods": [ - 27288480, - 27288496, + 27291648, + 27291664, 12404704, 12404288, 12399472, - 27985856, + 27989120, 12399456 ], "bases": [ @@ -104876,14 +104876,14 @@ }, { "type_name": "CGCMsgAdjustEquipSlotsShuffleAcknowledged", - "vtable_address": 64584560, + "vtable_address": 64588464, "methods": [ - 27288544, - 27288560, + 27291712, + 27291728, 12404704, 12404288, 12399472, - 27985856, + 27989120, 12399456 ], "bases": [ @@ -104928,14 +104928,14 @@ }, { "type_name": "CGCNameBaseItemResponse", - "vtable_address": 64603736, + "vtable_address": 64607640, "methods": [ - 28161520, - 28161536, + 28164784, + 28164800, 12404704, 12404288, 12399472, - 28162848, + 28166112, 12399456 ], "bases": [ @@ -104969,14 +104969,14 @@ }, { "type_name": "CGCPaintKitItemResponse", - "vtable_address": 64603488, + "vtable_address": 64607392, "methods": [ - 28161456, - 28161472, + 28164720, + 28164736, 12404704, 12404288, 12399472, - 28162560, + 28165824, 12399456 ], "bases": [ @@ -105010,23 +105010,23 @@ }, { "type_name": "CGCStorePurchaseInit_LineItem", - "vtable_address": 63514016, + "vtable_address": 63517920, "methods": [ 15621088, 15684304, - 29643894, + 29647734, 15139872, 15789936, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817664, 14846656, 15228800, 12011504, 15044544, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14830784, 14795264 @@ -105062,23 +105062,23 @@ }, { "type_name": "CGCToGCMsgMasterAck", - "vtable_address": 63585216, + "vtable_address": 63589120, "methods": [ 15677840, 15707344, - 29643894, + 29647734, 15220176, 15802880, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828464, 14849408, 15445968, 12011504, 14939808, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845024, 14809008 @@ -105114,23 +105114,23 @@ }, { "type_name": "CGCToGCMsgMasterAck_Response", - "vtable_address": 63585376, + "vtable_address": 63589280, "methods": [ 15677968, 15707472, - 29643894, + 29647734, 15220320, 15802944, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817616, 14849392, 15446544, 12011504, 14921888, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845056, 14809024 @@ -105166,23 +105166,23 @@ }, { "type_name": "CGCToGCMsgMasterStartupComplete", - "vtable_address": 63585536, + "vtable_address": 63589440, "methods": [ 14880912, 14880928, - 29643894, + 29647734, 15220448, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14845088, 14809040 @@ -105229,23 +105229,23 @@ }, { "type_name": "CGCToGCMsgRouted", - "vtable_address": 63585696, + "vtable_address": 63589600, "methods": [ 15678096, 15722960, - 29643894, + 29647734, 15220576, 15828208, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872432, 14849376, 15447024, 12011504, 15043968, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845120, 14809056 @@ -105281,23 +105281,23 @@ }, { "type_name": "CGCToGCMsgRoutedReply", - "vtable_address": 63585856, + "vtable_address": 63589760, "methods": [ 15678240, 15723120, - 29643894, + 29647734, 15220720, 15828496, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872560, 14849360, 15447616, 12011504, 14971168, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845152, 14809072 @@ -105333,14 +105333,14 @@ }, { "type_name": "CGCUnlockCrateResponse", - "vtable_address": 64603344, + "vtable_address": 64607248, "methods": [ - 28161328, - 28161344, + 28164592, + 28164608, 12404704, 12404288, 12399472, - 28166336, + 28169600, 12399456 ], "bases": [ @@ -105374,27 +105374,27 @@ }, { "type_name": "CGameClientExports", - "vtable_address": 64178336, + "vtable_address": 64182240, "methods": [ - 21348352, - 21348528, - 21329520, - 21334320, - 21334128, - 21329536, - 21329552, - 21329568, - 21333840, - 21329584, - 21329600, - 21338704, - 21326128, - 21326144, - 21326160, - 21326240, - 21326320, - 21326336, - 21326352 + 21351168, + 21351344, + 21332336, + 21337136, + 21336944, + 21332352, + 21332368, + 21332384, + 21336656, + 21332400, + 21332416, + 21341520, + 21328944, + 21328960, + 21328976, + 21329056, + 21329136, + 21329152, + 21329168 ], "bases": [ { @@ -105493,12 +105493,12 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 64065104, + "vtable_address": 64069008, "methods": [ 16912160, 16912032, - 19368272, - 19607952, + 19371088, + 19610768, 16911840, 16908240, 16908272, @@ -105506,9 +105506,9 @@ 16911712, 16908336, 16908368, - 19359264, - 19476432, - 19453104 + 19362080, + 19479248, + 19455920 ], "bases": [ { @@ -105639,12 +105639,12 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 64065528, + "vtable_address": 64069432, "methods": [ 16912224, 16912096, - 19395424, - 19608080, + 19398240, + 19610896, 16911936, 16908256, 16908288, @@ -105652,24 +105652,24 @@ 16911776, 16908352, 16908384, - 19390912, - 19390928, - 19392064, - 19390944, - 19390960, - 19390976, + 19393728, + 19393744, + 19394880, + 19393760, + 19393776, + 19393792, 16907008, - 19404848, - 19390992, - 19393024, - 19391024, - 19391008, - 18528944, - 18528976, - 19358368, - 19358400, + 19407664, + 19393808, + 19395840, + 19393840, + 19393824, + 18531248, + 18531280, + 19361184, + 19361216, 16907040, - 19837488 + 19840304 ], "bases": [ { @@ -105800,33 +105800,33 @@ }, { "type_name": "CGameEntitySystem", - "vtable_address": 64065944, - "methods": [ - 19372000, - 19372128, - 19761952, - 19370688, - 19372240, - 19372336, - 19372432, - 40031600, - 40031888, - 19379664, - 19711072, - 19711456, - 19372672, - 19372688, - 19509872, - 19359840, - 19389936, - 19418464, - 19372704, - 19522880, - 19408512, - 19372720, - 19406512, - 19379776, - 19373008 + "vtable_address": 64069848, + "methods": [ + 19374816, + 19374944, + 19764768, + 19373504, + 19375056, + 19375152, + 19375248, + 40035504, + 40035792, + 19382480, + 19713888, + 19714272, + 19375488, + 19375504, + 19512688, + 19362656, + 19392752, + 19421280, + 19375520, + 19525696, + 19411328, + 19375536, + 19409328, + 19382592, + 19375824 ], "bases": [ { @@ -105859,43 +105859,43 @@ }, { "type_name": "CGameEvent", - "vtable_address": 64070368, - "methods": [ - 19372560, - 19372608, - 19379888, - 19360208, - 19360240, - 19360224, - 19406416, - 19373584, - 19373632, - 19373680, - 19373728, - 19373776, - 19373824, - 19393152, - 19459424, - 19444848, - 19527904, - 19527968, - 19529280, - 19530560, - 19528080, - 19373872, - 19373488, - 19373920, - 19373968, - 19374016, - 19374064, - 19373536, - 19450976, - 19478848, - 19400032, - 19450336, - 19404784, - 19452368, - 19360192 + "vtable_address": 64074272, + "methods": [ + 19375376, + 19375424, + 19382704, + 19363024, + 19363056, + 19363040, + 19409232, + 19376400, + 19376448, + 19376496, + 19376544, + 19376592, + 19376640, + 19395968, + 19462240, + 19447664, + 19530720, + 19530784, + 19532096, + 19533376, + 19530896, + 19376688, + 19376304, + 19376736, + 19376784, + 19376832, + 19376880, + 19376352, + 19453792, + 19481664, + 19402848, + 19453152, + 19407600, + 19455184, + 19363008 ], "bases": [ { @@ -105917,7 +105917,7 @@ }, { "type_name": "CGameEventListener", - "vtable_address": 63090600, + "vtable_address": 63094504, "methods": [], "bases": [ { @@ -105939,25 +105939,25 @@ }, { "type_name": "CGameEventManager", - "vtable_address": 64070664, - "methods": [ - 19663280, - 19664480, - 19831936, - 19661248, - 19776656, - 19776992, - 19401088, - 19773472, - 19537008, - 19537200, - 19526816, - 19374112, - 19481152, - 19533392, - 19776320, - 19479808, - 19773760 + "vtable_address": 64074568, + "methods": [ + 19666096, + 19667296, + 19834752, + 19664064, + 19779472, + 19779808, + 19403904, + 19776288, + 19539824, + 19540016, + 19529632, + 19376928, + 19483968, + 19536208, + 19779136, + 19482624, + 19776576 ], "bases": [ { @@ -105990,23 +105990,23 @@ }, { "type_name": "CGameInfo", - "vtable_address": 63574496, + "vtable_address": 63578400, "methods": [ 15757568, 15759680, - 29643894, + 29647734, 15208272, 15838816, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14895072, 14848336, 15414064, 12011504, 14854608, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842880, 14806528 @@ -106042,23 +106042,23 @@ }, { "type_name": "CGameInfo_CCSGameInfo", - "vtable_address": 63574336, + "vtable_address": 63578240, "methods": [ 15669680, 15719280, - 29643894, + 29647734, 15208112, 15801712, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14880160, 14848320, 15413456, 12011504, 14896000, - 29642796, - 29643062, + 29646636, + 29646902, 14810304, 14842848, 14806512 @@ -106094,23 +106094,23 @@ }, { "type_name": "CGameInfo_CDotaGameInfo", - "vtable_address": 63574176, + "vtable_address": 63578080, "methods": [ 15669472, 15737536, - 29643894, + 29647734, 15207952, 15838480, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14894496, 14848304, 15523040, 12011504, 15135776, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842816, 14806496 @@ -106146,23 +106146,23 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CHeroSelectEvent", - "vtable_address": 63574016, + "vtable_address": 63577920, "methods": [ 15669344, 15705680, - 29643894, + 29647734, 15207760, 15801648, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827712, 14848288, 15412944, 12011504, 14964352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842784, 14806480 @@ -106198,23 +106198,23 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CPlayerInfo", - "vtable_address": 63573856, + "vtable_address": 63577760, "methods": [ 15669184, 15729040, - 29643894, + 29647734, 15207616, 15821968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14864928, 14848272, 15412320, 12011504, 15032992, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842752, 14806464 @@ -106250,17 +106250,17 @@ }, { "type_name": "CGameInstructorSaveRestoreBlockHandler", - "vtable_address": 64156592, + "vtable_address": 64160496, "methods": [ - 21133888, + 21136704, 13214528, - 21172912, - 21165568, + 21175728, + 21168384, 13214544, - 21133904, - 21165632, - 21172224, - 21133920 + 21136720, + 21168448, + 21175040, + 21136736 ], "bases": [ { @@ -106293,9 +106293,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllGrenades_v1", - "vtable_address": 64360576, + "vtable_address": 64364480, "methods": [ - 23369024 + 23371776 ], "bases": [ { @@ -106317,10 +106317,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_ID_v1", - "vtable_address": 64360416, + "vtable_address": 64364320, "methods": [ - 23354384, - 23300048 + 23357136, + 23302800 ], "bases": [ { @@ -106353,10 +106353,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_Match_Stats_v1", - "vtable_address": 64360480, + "vtable_address": 64364384, "methods": [ - 23354384, - 23292432 + 23357136, + 23295184 ], "bases": [ { @@ -106389,10 +106389,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_Position_v1", - "vtable_address": 64360544, + "vtable_address": 64364448, "methods": [ - 23354384, - 23353696 + 23357136, + 23356448 ], "bases": [ { @@ -106425,10 +106425,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_State_v1", - "vtable_address": 64360448, + "vtable_address": 64364352, "methods": [ - 23354384, - 23304624 + 23357136, + 23307376 ], "bases": [ { @@ -106461,10 +106461,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_Weapons_v1", - "vtable_address": 64360512, + "vtable_address": 64364416, "methods": [ - 23354384, - 23364144 + 23357136, + 23366896 ], "bases": [ { @@ -106497,9 +106497,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Bomb_v1", - "vtable_address": 64360600, + "vtable_address": 64364504, "methods": [ - 23361024 + 23363776 ], "bases": [ { @@ -106521,9 +106521,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Map_Round_Wins_v1", - "vtable_address": 64360224, + "vtable_address": 64364128, "methods": [ - 23283440 + 23286192 ], "bases": [ { @@ -106545,9 +106545,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Map_v1", - "vtable_address": 64360200, + "vtable_address": 64364104, "methods": [ - 23277936 + 23280688 ], "bases": [ { @@ -106569,9 +106569,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_PhaseCountdowns_v1", - "vtable_address": 64360368, + "vtable_address": 64364272, "methods": [ - 23360128 + 23362880 ], "bases": [ { @@ -106593,9 +106593,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_PlayerPosition_v1", - "vtable_address": 64360392, + "vtable_address": 64364296, "methods": [ - 23365904 + 23368656 ], "bases": [ { @@ -106617,9 +106617,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_ID_v1", - "vtable_address": 64360272, + "vtable_address": 64364176, "methods": [ - 23364400 + 23367152 ], "bases": [ { @@ -106641,9 +106641,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_Match_Stats_v1", - "vtable_address": 64360344, + "vtable_address": 64364248, "methods": [ - 23303328 + 23306080 ], "bases": [ { @@ -106665,9 +106665,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_State_v1", - "vtable_address": 64360296, + "vtable_address": 64364200, "methods": [ - 23301360 + 23304112 ], "bases": [ { @@ -106689,9 +106689,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_Weapons_v1", - "vtable_address": 64360320, + "vtable_address": 64364224, "methods": [ - 23364192 + 23366944 ], "bases": [ { @@ -106713,9 +106713,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Provider_v1", - "vtable_address": 64360152, + "vtable_address": 64364056, "methods": [ - 23353840 + 23356592 ], "bases": [ { @@ -106737,9 +106737,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Round_v1", - "vtable_address": 64360248, + "vtable_address": 64364152, "methods": [ - 23277216 + 23279968 ], "bases": [ { @@ -106761,9 +106761,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_TournamentDraft_v1", - "vtable_address": 64360176, + "vtable_address": 64364080, "methods": [ - 23358576 + 23361328 ], "bases": [ { @@ -106785,38 +106785,38 @@ }, { "type_name": "CGameItemDefinition_EconItemInterfaceWrapper", - "vtable_address": 64579656, + "vtable_address": 64583560, "methods": [ - 27284208, - 27280032, - 27283984, - 27279968, - 27390912, - 27279984, - 27414144, - 27414608, - 27402544, - 27403088, - 27441216, - 27394928, - 27280048, - 27393680, - 27279776, - 27279792, - 27279808, - 27279824, - 27279840, - 27279888, - 27279904, - 27279920, - 27279936, - 27279952, - 27280000, - 27280016, - 27311520, - 27379712, - 27279856, - 27279872 + 27287376, + 27283200, + 27287152, + 27283136, + 27394112, + 27283152, + 27417344, + 27417808, + 27405744, + 27406288, + 27444416, + 27398128, + 27283216, + 27396880, + 27282944, + 27282960, + 27282976, + 27282992, + 27283008, + 27283056, + 27283072, + 27283088, + 27283104, + 27283120, + 27283168, + 27283184, + 27314688, + 27382912, + 27283024, + 27283040 ], "bases": [ { @@ -106838,11 +106838,11 @@ }, { "type_name": "CGameJobSystem", - "vtable_address": 64052936, + "vtable_address": 64056840, "methods": [ 12204192, 12204208, - 19063008, + 19065824, 12204240, 12204256, 12204272, @@ -106867,7 +106867,7 @@ 12204576, 12204592, 12204608, - 19063040, + 19065856, 12204640, 12204656, 12204672, @@ -106879,14 +106879,14 @@ 12204768, 12204784, 12204800, - 19062448, - 19062864, + 19065264, + 19065680, 12204848, 12204864, 12204880, 12204896, - 18961312, - 19062880, + 18964128, + 19065696, 12204944, 12204960, 12204976, @@ -106896,12 +106896,12 @@ 12205040, 12205056, 12205072, - 18941072, + 18943888, 12205104, - 18941056, - 18969600, - 18970048, - 18941040 + 18943872, + 18972416, + 18972864, + 18943856 ], "bases": [ { @@ -106934,7 +106934,7 @@ }, { "type_name": "CGameJournal", - "vtable_address": 64073264, + "vtable_address": 64077168, "methods": [], "bases": [ { @@ -106988,13 +106988,13 @@ }, { "type_name": "CGameJournal", - "vtable_address": 64073368, + "vtable_address": 64077272, "methods": [ 12204192, 12204208, 12204224, - 19539008, - 19391936, + 19541824, + 19394752, 12204272, 12204288, 12204304, @@ -107102,15 +107102,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64487760, + "vtable_address": 64491664, "methods": [ - 25045888, - 24886944, - 24886960, - 25201952, - 25039056, - 25042416, - 24930672 + 25048896, + 24889952, + 24889968, + 25204960, + 25042064, + 25045424, + 24933680 ], "bases": [ { @@ -107142,15 +107142,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64463416, + "vtable_address": 64467320, "methods": [ - 24808400, - 24702048, - 24702064, - 24878640, - 24804448, - 24806368, - 24736016 + 24811408, + 24705056, + 24705072, + 24881648, + 24807456, + 24809376, + 24739024 ], "bases": [ { @@ -107182,15 +107182,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345984, + "vtable_address": 64349888, "methods": [ - 23071312, - 22920240, - 22920256, - 23176288, - 23053872, - 23062032, - 22993184 + 23073680, + 22923056, + 22923072, + 23179040, + 23056240, + 23064400, + 22996000 ], "bases": [ { @@ -107222,15 +107222,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345408, + "vtable_address": 64349312, "methods": [ - 23066576, - 22920496, - 22920512, - 23181936, - 23050032, - 23058192, - 22988032 + 23068944, + 22923312, + 22923328, + 23184688, + 23052400, + 23060560, + 22990848 ], "bases": [ { @@ -107262,15 +107262,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345336, + "vtable_address": 64349240, "methods": [ - 23065984, - 22920528, - 22920544, - 23181184, - 23049552, - 23057712, - 22987392 + 23068352, + 22923344, + 22923360, + 23183936, + 23051920, + 23060080, + 22990208 ], "bases": [ { @@ -107302,15 +107302,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345912, + "vtable_address": 64349816, "methods": [ - 23070720, - 22920272, - 22920288, - 23163920, - 23053392, - 23061552, - 22992528 + 23073088, + 22923088, + 22923104, + 23166672, + 23055760, + 23063920, + 22995344 ], "bases": [ { @@ -107342,15 +107342,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64470128, + "vtable_address": 64474032, "methods": [ - 24808992, - 24702016, - 24702032, - 24878624, - 24804928, - 24806848, - 24737008 + 24812000, + 24705024, + 24705040, + 24881632, + 24807936, + 24809856, + 24740016 ], "bases": [ { @@ -107382,15 +107382,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64470200, + "vtable_address": 64474104, "methods": [ - 24803376, - 24701984, - 24702000, - 24878608, - 24805408, - 24807328, - 24715248 + 24806384, + 24704992, + 24705008, + 24881616, + 24808416, + 24810336, + 24718256 ], "bases": [ { @@ -107422,15 +107422,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64346344, + "vtable_address": 64350248, "methods": [ - 23074272, - 22920080, - 22920096, - 23187456, - 23056272, - 23064432, - 22996432 + 23076640, + 22922896, + 22922912, + 23190208, + 23058640, + 23066800, + 22999248 ], "bases": [ { @@ -107462,15 +107462,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345264, + "vtable_address": 64349168, "methods": [ - 23065392, - 22920560, - 22920576, - 23174848, - 23049072, - 23057232, - 22986752 + 23067760, + 22923376, + 22923392, + 23177600, + 23051440, + 23059600, + 22989568 ], "bases": [ { @@ -107502,15 +107502,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345840, + "vtable_address": 64349744, "methods": [ - 23070128, - 22920304, - 22920320, - 23180544, - 23052912, - 23061072, - 22991888 + 23072496, + 22923120, + 22923136, + 23183296, + 23055280, + 23063440, + 22994704 ], "bases": [ { @@ -107542,15 +107542,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64348560, + "vtable_address": 64352464, "methods": [ - 23048480, - 22919760, - 22919776, - 23186112, - 23056752, - 23064912, - 22997072 + 23050848, + 22922576, + 22922592, + 23188864, + 23059120, + 23067280, + 22999888 ], "bases": [ { @@ -107582,15 +107582,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64483808, + "vtable_address": 64487712, "methods": [ - 25045296, - 24887008, - 24887024, - 25194208, - 25038576, - 25041936, - 24929664 + 25048304, + 24890016, + 24890032, + 25197216, + 25041584, + 25044944, + 24932672 ], "bases": [ { @@ -107622,15 +107622,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64408352, + "vtable_address": 64412256, "methods": [ - 24064176, - 23899904, - 23899920, - 24064160, - 24070208, - 24070704, - 23913744 + 24066928, + 23902656, + 23902672, + 24066912, + 24072960, + 24073456, + 23916496 ], "bases": [ { @@ -107662,15 +107662,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345768, + "vtable_address": 64349672, "methods": [ - 23069536, - 22920336, - 22920352, - 23186784, - 23052432, - 23060592, - 22991248 + 23071904, + 22923152, + 22923168, + 23189536, + 23054800, + 23062960, + 22994064 ], "bases": [ { @@ -107702,15 +107702,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64605784, + "vtable_address": 64609688, "methods": [ - 28203152, - 28173856, - 28173872, - 28214048, - 28198352, - 28200752, - 28182368 + 28206416, + 28177120, + 28177136, + 28217312, + 28201616, + 28204016, + 28185632 ], "bases": [ { @@ -107742,15 +107742,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64606072, - "methods": [ - 28197760, - 28173728, - 28173744, - 28214064, - 28200272, - 28202672, - 28180128 + "vtable_address": 64609976, + "methods": [ + 28201024, + 28176992, + 28177008, + 28217328, + 28203536, + 28205936, + 28183392 ], "bases": [ { @@ -107782,15 +107782,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64536456, + "vtable_address": 64540360, "methods": [ - 27036912, - 26410928, - 26410944, - 27036896, - 27038096, - 27038592, - 26465408 + 27039920, + 26413936, + 26413952, + 27039904, + 27041104, + 27041600, + 26468416 ], "bases": [ { @@ -107822,15 +107822,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64522072, + "vtable_address": 64525976, "methods": [ - 26307856, - 25452688, - 25452704, - 26307840, - 26309184, - 26309680, - 25508128 + 26310864, + 25455696, + 25455712, + 26310848, + 26312192, + 26312688, + 25511136 ], "bases": [ { @@ -107862,15 +107862,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64491504, + "vtable_address": 64495408, "methods": [ - 25037984, - 24886784, - 24886800, - 25195504, - 25041456, - 25044816, - 24904096 + 25040992, + 24889792, + 24889808, + 25198512, + 25044464, + 25047824, + 24907104 ], "bases": [ { @@ -107902,15 +107902,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345624, + "vtable_address": 64349528, "methods": [ - 23068352, - 22920400, - 22920416, - 23176928, - 23051472, - 23059632, - 22989968 + 23070720, + 22923216, + 22923232, + 23179680, + 23053840, + 23062000, + 22992784 ], "bases": [ { @@ -107942,15 +107942,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64273800, + "vtable_address": 64277704, "methods": [ - 22565040, - 22439952, - 22439968, - 22791792, - 22563120, - 22564080, - 22461104 + 22567856, + 22442768, + 22442784, + 22794608, + 22565936, + 22566896, + 22463920 ], "bases": [ { @@ -107982,15 +107982,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64346056, + "vtable_address": 64349960, "methods": [ - 23071904, - 22920208, - 22920224, - 23184768, - 23054352, - 23062512, - 22993824 + 23074272, + 22923024, + 22923040, + 23187520, + 23056720, + 23064880, + 22996640 ], "bases": [ { @@ -108022,15 +108022,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64346200, + "vtable_address": 64350104, "methods": [ - 23073088, - 22920144, - 22920160, - 23184096, - 23055312, - 23063472, - 22995136 + 23075456, + 22922960, + 22922976, + 23186848, + 23057680, + 23065840, + 22997952 ], "bases": [ { @@ -108062,15 +108062,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64346272, + "vtable_address": 64350176, "methods": [ - 23073680, - 22920112, - 22920128, - 23175616, - 23055792, - 23063952, - 22995776 + 23076048, + 22922928, + 22922944, + 23178368, + 23058160, + 23066320, + 22998592 ], "bases": [ { @@ -108102,15 +108102,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345552, + "vtable_address": 64349456, "methods": [ - 23067760, - 22920432, - 22920448, - 23185440, - 23050992, - 23059152, - 22989328 + 23070128, + 22923248, + 22923264, + 23188192, + 23053360, + 23061520, + 22992144 ], "bases": [ { @@ -108142,15 +108142,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345480, + "vtable_address": 64349384, "methods": [ - 23067168, - 22920464, - 22920480, - 23183328, - 23050512, - 23058672, - 22988672 + 23069536, + 22923280, + 22923296, + 23186080, + 23052880, + 23061040, + 22991488 ], "bases": [ { @@ -108182,15 +108182,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64273872, + "vtable_address": 64277776, "methods": [ - 22562528, - 22439920, - 22439936, - 22791808, - 22563600, - 22564560, - 22455504 + 22565344, + 22442736, + 22442752, + 22794624, + 22566416, + 22567376, + 22458320 ], "bases": [ { @@ -108222,15 +108222,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64487976, + "vtable_address": 64491880, "methods": [ - 25047664, - 24886848, - 24886864, - 25198096, - 25040496, - 25043856, - 24933696 + 25050672, + 24889856, + 24889872, + 25201104, + 25043504, + 25046864, + 24936704 ], "bases": [ { @@ -108262,15 +108262,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64487904, - "methods": [ - 25047072, - 24886880, - 24886896, - 25199360, - 25040016, - 25043376, - 24932688 + "vtable_address": 64491808, + "methods": [ + 25050080, + 24889888, + 24889904, + 25202368, + 25043024, + 25046384, + 24935696 ], "bases": [ { @@ -108302,15 +108302,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64488048, + "vtable_address": 64491952, "methods": [ - 25048256, - 24886816, - 24886832, - 25196800, - 25040976, - 25044336, - 24934688 + 25051264, + 24889824, + 24889840, + 25199808, + 25043984, + 25047344, + 24937696 ], "bases": [ { @@ -108342,15 +108342,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64487832, + "vtable_address": 64491736, "methods": [ - 25046480, - 24886912, - 24886928, - 25200656, - 25039536, - 25042896, - 24931664 + 25049488, + 24889920, + 24889936, + 25203664, + 25042544, + 25045904, + 24934672 ], "bases": [ { @@ -108382,15 +108382,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64346128, + "vtable_address": 64350032, "methods": [ - 23072496, - 22920176, - 22920192, - 23177568, - 23054832, - 23062992, - 22994480 + 23074864, + 22922992, + 22923008, + 23180320, + 23057200, + 23065360, + 22997296 ], "bases": [ { @@ -108422,15 +108422,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64345696, + "vtable_address": 64349600, "methods": [ - 23068944, - 22920368, - 22920384, - 23182688, - 23051952, - 23060112, - 22990608 + 23071312, + 22923184, + 22923200, + 23185440, + 23054320, + 23062480, + 22993424 ], "bases": [ { @@ -108462,15 +108462,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64132872, + "vtable_address": 64136776, "methods": [ - 21123632, - 20574912, - 20574928, - 21123616, - 21125088, - 21125584, - 20599776 + 21126448, + 20577728, + 20577744, + 21126432, + 21127904, + 21128400, + 20602592 ], "bases": [ { @@ -108502,15 +108502,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64185608, + "vtable_address": 64189512, "methods": [ - 21650784, - 21560640, - 21560656, - 21698464, - 21652336, - 21653776, - 21572560 + 21653600, + 21563456, + 21563472, + 21701280, + 21655152, + 21656592, + 21575376 ], "bases": [ { @@ -108542,15 +108542,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64175344, + "vtable_address": 64179248, "methods": [ - 21539696, - 21329760, - 21329776, - 21541984, - 21540992, - 21541488, - 21354896 + 21542512, + 21332576, + 21332592, + 21544800, + 21543808, + 21544304, + 21357712 ], "bases": [ { @@ -108582,15 +108582,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64231496, + "vtable_address": 64235400, "methods": [ - 22253312, - 22233856, - 22233872, - 22298272, - 22250320, - 22251760, - 22241872 + 22256128, + 22236672, + 22236688, + 22301088, + 22253136, + 22254576, + 22244688 ], "bases": [ { @@ -108622,15 +108622,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64231568, + "vtable_address": 64235472, "methods": [ - 22249248, - 22233824, - 22233840, - 22298256, - 22250800, - 22252240, - 22239488 + 22252064, + 22236640, + 22236656, + 22301072, + 22253616, + 22255056, + 22242304 ], "bases": [ { @@ -108662,15 +108662,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64231424, + "vtable_address": 64235328, "methods": [ - 22252720, - 22233888, - 22233904, - 22298240, - 22249840, - 22251280, - 22240880 + 22255536, + 22236704, + 22236720, + 22301056, + 22252656, + 22254096, + 22243696 ], "bases": [ { @@ -108702,15 +108702,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64193936, + "vtable_address": 64197840, "methods": [ - 21774688, - 21706464, - 21706480, - 21813808, - 21772768, - 21773728, - 21716176 + 21777504, + 21709280, + 21709296, + 21816624, + 21775584, + 21776544, + 21718992 ], "bases": [ { @@ -108742,15 +108742,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64194008, + "vtable_address": 64197912, "methods": [ - 21772176, - 21706432, - 21706448, - 21813824, - 21773248, - 21774208, - 21721984 + 21774992, + 21709248, + 21709264, + 21816640, + 21776064, + 21777024, + 21724800 ], "bases": [ { @@ -108782,15 +108782,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64224720, + "vtable_address": 64228624, "methods": [ - 22154256, - 22049360, - 22049376, - 22233216, - 22149232, - 22151632, - 22084496 + 22157072, + 22052176, + 22052192, + 22236032, + 22152048, + 22154448, + 22087312 ], "bases": [ { @@ -108822,15 +108822,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64226880, + "vtable_address": 64230784, "methods": [ - 22154848, - 22048992, - 22049008, - 22168192, - 22149712, - 22152112, - 22085488 + 22157664, + 22051808, + 22051824, + 22171008, + 22152528, + 22154928, + 22088304 ], "bases": [ { @@ -108862,15 +108862,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64458344, + "vtable_address": 64462248, "methods": [ - 24807808, - 24702080, - 24702096, - 24837712, - 24803968, - 24805888, - 24735024 + 24810816, + 24705088, + 24705104, + 24840720, + 24806976, + 24808896, + 24738032 ], "bases": [ { @@ -108902,15 +108902,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64185464, + "vtable_address": 64189368, "methods": [ - 21654256, - 21560704, - 21560720, - 21698448, - 21651376, - 21652816, - 21578448 + 21657072, + 21563520, + 21563536, + 21701264, + 21654192, + 21655632, + 21581264 ], "bases": [ { @@ -108942,15 +108942,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64605928, + "vtable_address": 64609832, "methods": [ - 28204336, - 28173792, - 28173808, - 28214096, - 28199312, - 28201712, - 28184384 + 28207600, + 28177056, + 28177072, + 28217360, + 28202576, + 28204976, + 28187648 ], "bases": [ { @@ -108982,15 +108982,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64605856, - "methods": [ - 28203744, - 28173824, - 28173840, - 28214112, - 28198832, - 28201232, - 28183392 + "vtable_address": 64609760, + "methods": [ + 28207008, + 28177088, + 28177104, + 28217376, + 28202096, + 28204496, + 28186656 ], "bases": [ { @@ -109022,15 +109022,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64185536, + "vtable_address": 64189440, "methods": [ - 21654848, - 21560672, - 21560688, - 21698480, - 21651856, - 21653296, - 21579440 + 21657664, + 21563488, + 21563504, + 21701296, + 21654672, + 21656112, + 21582256 ], "bases": [ { @@ -109062,15 +109062,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64224648, + "vtable_address": 64228552, "methods": [ - 22153664, - 22049392, - 22049408, - 22233232, - 22148752, - 22151152, - 22083504 + 22156480, + 22052208, + 22052224, + 22236048, + 22151568, + 22153968, + 22086320 ], "bases": [ { @@ -109102,15 +109102,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64224576, + "vtable_address": 64228480, "methods": [ - 22153072, - 22049424, - 22049440, - 22233200, - 22148272, - 22150672, - 22082512 + 22155888, + 22052240, + 22052256, + 22236016, + 22151088, + 22153488, + 22085328 ], "bases": [ { @@ -109142,15 +109142,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64606000, + "vtable_address": 64609904, "methods": [ - 28204928, - 28173760, - 28173776, - 28214080, - 28199792, - 28202192, - 28185408 + 28208192, + 28177024, + 28177040, + 28217344, + 28203056, + 28205456, + 28188672 ], "bases": [ { @@ -109182,7 +109182,7 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 63130976, + "vtable_address": 63134880, "methods": [ 12396960, 12238320, @@ -109222,15 +109222,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64226952, + "vtable_address": 64230856, "methods": [ - 22147680, - 22048960, - 22048976, - 22233248, - 22150192, - 22152592, - 22065904 + 22150496, + 22051776, + 22051792, + 22236064, + 22153008, + 22155408, + 22068720 ], "bases": [ { @@ -109262,15 +109262,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64013016, + "vtable_address": 64016920, "methods": [ - 18724432, - 18510320, - 18510336, - 18914512, - 18722512, - 18723472, - 18545040 + 18727248, + 18512624, + 18512640, + 18917328, + 18725328, + 18726288, + 18547344 ], "bases": [ { @@ -109302,15 +109302,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64013088, + "vtable_address": 64016992, "methods": [ - 18721920, - 18510288, - 18510304, - 18917088, - 18722992, - 18723952, - 18538208 + 18724736, + 18512592, + 18512608, + 18919904, + 18725808, + 18726768, + 18540512 ], "bases": [ { @@ -109342,15 +109342,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 64053600, + "vtable_address": 64057504, "methods": [ - 19343648, - 18948768, - 18948784, - 19343632, - 19345152, - 19345648, - 18991408 + 19346464, + 18951584, + 18951600, + 19346448, + 19347968, + 19348464, + 18994224 ], "bases": [ { @@ -109382,12 +109382,12 @@ }, { "type_name": "CGameNetworkStringTables", - "vtable_address": 64076544, + "vtable_address": 64080448, "methods": [ - 19837888, - 19362528, - 19362192, - 19363152 + 19840704, + 19365344, + 19365008, + 19365968 ], "bases": [ { @@ -109409,10 +109409,10 @@ }, { "type_name": "CGameNewParticleEffectUserData", - "vtable_address": 64053448, + "vtable_address": 64057352, "methods": [ - 18948736, - 18949808 + 18951552, + 18952624 ], "bases": [ { @@ -109434,23 +109434,23 @@ }, { "type_name": "CGameParticleManager", - "vtable_address": 64053672, - "methods": [ - 19131008, - 19132144, - 19186912, - 18954336, - 18975648, - 18970976, - 19215376, - 18941104, - 18941184, - 19348384, - 18956000, - 18967984, - 18980176, - 18953056, - 18969472 + "vtable_address": 64057576, + "methods": [ + 19133824, + 19134960, + 19189728, + 18957152, + 18978464, + 18973792, + 19218192, + 18943920, + 18944000, + 19351200, + 18958816, + 18970800, + 18982992, + 18955872, + 18972288 ], "bases": [ { @@ -109483,13 +109483,13 @@ }, { "type_name": "CGameParticleManagerSystem", - "vtable_address": 64053808, + "vtable_address": 64057712, "methods": [ 12204192, 12204208, 12204224, - 19345104, - 19132192, + 19347920, + 19135008, 12204272, 12204288, 12204304, @@ -109506,7 +109506,7 @@ 12204480, 12204496, 12204512, - 18941200, + 18944016, 12204544, 12204560, 12204576, @@ -109541,12 +109541,12 @@ 12205040, 12205056, 12205072, - 18941152, + 18943968, 12205104, - 18941136, - 18949968, - 18949984, - 18941120 + 18943952, + 18952784, + 18952800, + 18943936 ], "bases": [ { @@ -109579,7 +109579,7 @@ }, { "type_name": "CGamePortraitWorldSystem", - "vtable_address": 63121344, + "vtable_address": 63125248, "methods": [ 12204192, 12204208, @@ -109675,18 +109675,18 @@ }, { "type_name": "CGameResponseSystem", - "vtable_address": 64010816, + "vtable_address": 64014720, "methods": [ - 18512112, - 18541248, - 59295648, - 59275616, - 18506272, - 59293472, - 18506304, - 18506288, - 59275104, - 59275136 + 18514416, + 18543552, + 59299552, + 59279520, + 18508576, + 59297376, + 18508608, + 18508592, + 59279008, + 59279040 ], "bases": [ { @@ -109740,10 +109740,10 @@ }, { "type_name": "CGameResponseSystem", - "vtable_address": 64010912, + "vtable_address": 64014816, "methods": [ - 18512224, - 18541376 + 18514528, + 18543680 ], "bases": [ { @@ -109797,38 +109797,38 @@ }, { "type_name": "CGameRulesGameSystem", - "vtable_address": 64194592, + "vtable_address": 64198496, "methods": [ 12204192, - 21712352, + 21715168, 12204224, - 21711136, - 21733296, - 21711088, + 21713952, + 21736112, + 21713904, 12204288, - 21710320, - 21711040, + 21713136, + 21713856, 12204336, 12204352, 12204368, - 21710704, - 21710992, + 21713520, + 21713808, 12204416, - 21710944, - 21710896, - 21710848, - 21710800, - 21710752, - 21710512, - 21710464, + 21713760, + 21713712, + 21713664, + 21713616, + 21713568, + 21713328, + 21713280, 12204544, 12204560, 12204576, 12204592, - 21710416, - 21710368, + 21713232, + 21713184, 12204640, - 21712784, + 21715600, 12204672, 12204688, 12204704, @@ -109846,21 +109846,21 @@ 12204896, 12204912, 12204928, - 21710656, - 21710608, - 21710560, + 21713472, + 21713424, + 21713376, 12204992, 12205008, 12205024, 12205040, 12205056, 12205072, - 21704736, + 21707552, 12205104, - 21704720, - 21709072, - 21709088, - 21704704 + 21707536, + 21711888, + 21711904, + 21707520 ], "bases": [ { @@ -109882,7 +109882,7 @@ }, { "type_name": "CGameSceneNode", - "vtable_address": 63468872, + "vtable_address": 63472776, "methods": [], "bases": [], "model": { @@ -109893,38 +109893,38 @@ }, { "type_name": "CGameSceneNode", - "vtable_address": 64074192, + "vtable_address": 64078096, "methods": [ - 19360816, - 19369008, - 19417136, + 19363632, + 19371824, + 19419952, 12447008, - 19479664, - 19593872, - 19459792, - 19576096, - 19562032, + 19482480, + 19596688, + 19462608, + 19578912, + 19564848, 12447024, 12447040, - 19692544, - 19362192, - 19362192, - 19362208, - 19463504, + 19695360, + 19365008, + 19365008, + 19365024, + 19466320, 12447056, - 19684736, - 19562288, - 19576800, - 19578080, - 19561120, - 19555248, - 19575600, - 19459760, + 19687552, + 19565104, + 19579616, + 19580896, + 19563936, + 19558064, + 19578416, + 19462576, 12447072, 12449728, - 19358080, + 19360896, 12447088, - 19358096 + 19360912 ], "bases": [], "model": { @@ -109935,10 +109935,10 @@ }, { "type_name": "CGameSceneNode::Cm_vecOriginInitializer", - "vtable_address": 64061112, + "vtable_address": 64065016, "methods": [ 12234064, - 18937120 + 18939936 ], "bases": [ { @@ -109960,12 +109960,12 @@ }, { "type_name": "CGameSceneNode::NetworkVar_m_hParent", - "vtable_address": 64061064, + "vtable_address": 64064968, "methods": [ 13234928, - 19381248, + 19384064, 13214832, - 19358048 + 19360864 ], "bases": [ { @@ -109987,7 +109987,7 @@ }, { "type_name": "CGameSceneNodeHandle", - "vtable_address": 63317600, + "vtable_address": 63321504, "methods": [ 13234928, 13214816, @@ -110003,34 +110003,34 @@ }, { "type_name": "CGameSceneNodeHandle", - "vtable_address": 63469368, + "vtable_address": 63473272, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65509868 + "offset_to_top": 65513772 } } }, { "type_name": "CGameServers_AggregationQuery_Request", - "vtable_address": 63589056, + "vtable_address": 63592960, "methods": [ 15680576, 15730800, - 29643894, + 29647734, 15223904, 15830224, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14878000, 14849168, 15454384, 12011504, 14922592, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845792, 14809392 @@ -110066,23 +110066,23 @@ }, { "type_name": "CGameServers_AggregationQuery_Response", - "vtable_address": 63589376, + "vtable_address": 63593280, "methods": [ 15680880, 15743760, - 29643894, + 29647734, 15224272, 15836576, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14878512, 14849152, 15474016, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14845856, 14809424 @@ -110118,23 +110118,23 @@ }, { "type_name": "CGameServers_AggregationQuery_Response_Group", - "vtable_address": 63589216, + "vtable_address": 63593120, "methods": [ 15680736, 15724240, - 29643894, + 29647734, 15224096, 15803312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14878192, 14848768, 15454928, 12011504, 15083584, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845824, 14809408 @@ -110170,12 +110170,12 @@ }, { "type_name": "CGameSurfacePropertiesList", - "vtable_address": 64074024, + "vtable_address": 64077928, "methods": [ - 19868544, - 19365152, - 19483680, - 19375680 + 19871360, + 19367968, + 19486496, + 19378496 ], "bases": [ { @@ -110219,7 +110219,7 @@ }, { "type_name": "CGameSystemAbstractFactory", - "vtable_address": 63350568, + "vtable_address": 63354472, "methods": [ 13826032, 13826048, @@ -110252,7 +110252,7 @@ }, { "type_name": "CGameSystemEventDispatcher", - "vtable_address": 63328952, + "vtable_address": 63332856, "methods": [ 13597760, 13247344 @@ -110277,7 +110277,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63319880, + "vtable_address": 63323784, "methods": [ 13222704, 13222720, @@ -110321,7 +110321,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63320696, + "vtable_address": 63324600, "methods": [ 13222288, 13222304, @@ -110365,7 +110365,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63322016, + "vtable_address": 63325920, "methods": [ 13222160, 13222176, @@ -110409,13 +110409,13 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63722416, + "vtable_address": 63726320, "methods": [ 17120768, 17120784, 17120800, - 17126048, - 17125600, + 17126144, + 17125696, 17120816, 17120832, 17120848, @@ -110453,7 +110453,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63703632, + "vtable_address": 63707536, "methods": [ 17047648, 17047664, @@ -110497,18 +110497,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64186232, + "vtable_address": 64190136, "methods": [ - 21560448, - 21560464, - 21560480, - 21570208, - 21571232, - 21560496, - 21560512, - 21560528, - 21560544, - 21560560 + 21563264, + 21563280, + 21563296, + 21573024, + 21574048, + 21563312, + 21563328, + 21563344, + 21563360, + 21563376 ], "bases": [ { @@ -110541,7 +110541,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63679544, + "vtable_address": 63683448, "methods": [ 16799232, 16799248, @@ -110585,18 +110585,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64187088, - "methods": [ - 21560160, - 21560176, - 21560192, - 21570896, - 21577216, - 21560208, - 21560224, - 21560240, - 21560256, - 21560272 + "vtable_address": 64190992, + "methods": [ + 21562976, + 21562992, + 21563008, + 21573712, + 21580032, + 21563024, + 21563040, + 21563056, + 21563072, + 21563088 ], "bases": [ { @@ -110629,13 +110629,13 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63722512, + "vtable_address": 63726416, "methods": [ 17120640, 17120656, 17120672, - 17128832, - 17125744, + 17128928, + 17125840, 17120688, 17120704, 17120720, @@ -110673,18 +110673,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64027704, + "vtable_address": 64031608, "methods": [ - 18949072, - 18949088, - 18949104, - 19327280, - 18967184, - 18949120, - 18949136, - 18949152, - 18949168, - 18949184 + 18951888, + 18951904, + 18951920, + 19330096, + 18970000, + 18951936, + 18951952, + 18951968, + 18951984, + 18952000 ], "bases": [ { @@ -110717,18 +110717,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63731312, + "vtable_address": 63735216, "methods": [ - 17218160, - 17218176, - 17218192, - 17222432, - 17222720, - 17218208, - 17218224, - 17218240, - 17218256, - 17218272 + 17220464, + 17220480, + 17220496, + 17224736, + 17225024, + 17220512, + 17220528, + 17220544, + 17220560, + 17220576 ], "bases": [ { @@ -110761,18 +110761,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63732072, + "vtable_address": 63735976, "methods": [ - 17218032, - 17218048, - 17218064, - 17222576, - 17222064, - 17218080, - 17218096, - 17218112, - 17218128, - 17218144 + 17220336, + 17220352, + 17220368, + 17224880, + 17224368, + 17220384, + 17220400, + 17220416, + 17220432, + 17220448 ], "bases": [ { @@ -110805,7 +110805,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63327312, + "vtable_address": 63331216, "methods": [ 13221008, 13221024, @@ -110849,18 +110849,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64136816, + "vtable_address": 64140720, "methods": [ - 20574752, - 20574768, - 20574784, - 20595520, - 20595280, - 20574800, - 20574816, - 20574832, - 20574848, - 20574864 + 20577568, + 20577584, + 20577600, + 20598336, + 20598096, + 20577616, + 20577632, + 20577648, + 20577664, + 20577680 ], "bases": [ { @@ -110893,7 +110893,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63327568, + "vtable_address": 63331472, "methods": [ 13220880, 13220896, @@ -110937,18 +110937,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64195104, + "vtable_address": 64199008, "methods": [ - 21706304, - 21706320, - 21706336, - 21714096, - 21714576, - 21706352, - 21706368, - 21706384, - 21706400, - 21706416 + 21709120, + 21709136, + 21709152, + 21716912, + 21717392, + 21709168, + 21709184, + 21709200, + 21709216, + 21709232 ], "bases": [ { @@ -110981,18 +110981,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64196296, + "vtable_address": 64200200, "methods": [ - 21706176, - 21706192, - 21706208, - 21714800, - 21714688, - 21706224, - 21706240, - 21706256, - 21706272, - 21706288 + 21708992, + 21709008, + 21709024, + 21717616, + 21717504, + 21709040, + 21709056, + 21709072, + 21709088, + 21709104 ], "bases": [ { @@ -111025,18 +111025,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64230768, + "vtable_address": 64234672, "methods": [ - 22233920, - 22233936, - 22233952, - 22244000, - 22238752, - 22233968, - 22233984, - 22234000, - 22234016, - 22234032 + 22236736, + 22236752, + 22236768, + 22246816, + 22241568, + 22236784, + 22236800, + 22236816, + 22236832, + 22236848 ], "bases": [ { @@ -111069,7 +111069,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63329496, + "vtable_address": 63333400, "methods": [ 13220640, 13220656, @@ -111113,18 +111113,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64260152, - "methods": [ - 22440000, - 22440016, - 22440032, - 22458416, - 22457728, - 22440048, - 22440064, - 22440080, - 22440096, - 22440112 + "vtable_address": 64264056, + "methods": [ + 22442816, + 22442832, + 22442848, + 22461232, + 22460544, + 22442864, + 22442880, + 22442896, + 22442912, + 22442928 ], "bases": [ { @@ -111157,7 +111157,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63330104, + "vtable_address": 63334008, "methods": [ 13220496, 13220512, @@ -111201,7 +111201,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63339048, + "vtable_address": 63342952, "methods": [ 13826832, 13826848, @@ -111245,18 +111245,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64197584, + "vtable_address": 64201488, "methods": [ - 21706048, - 21706064, - 21706080, - 21713984, - 21714912, - 21706096, - 21706112, - 21706128, - 21706144, - 21706160 + 21708864, + 21708880, + 21708896, + 21716800, + 21717728, + 21708912, + 21708928, + 21708944, + 21708960, + 21708976 ], "bases": [ { @@ -111289,18 +111289,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64204488, - "methods": [ - 21817824, - 21817840, - 21817856, - 21831648, - 21832064, - 21817872, - 21817888, - 21817904, - 21817920, - 21817936 + "vtable_address": 64208392, + "methods": [ + 21820656, + 21820672, + 21820688, + 21834464, + 21834880, + 21820704, + 21820720, + 21820736, + 21820752, + 21820768 ], "bases": [ { @@ -111333,7 +111333,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63241328, + "vtable_address": 63245232, "methods": [ 13056368, 13056384, @@ -111377,18 +111377,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64206776, + "vtable_address": 64210680, "methods": [ - 21817184, - 21817200, - 21817216, - 21832224, - 21831952, - 21817232, - 21817248, - 21817264, - 21817280, - 21817296 + 21820016, + 21820032, + 21820048, + 21835040, + 21834768, + 21820064, + 21820080, + 21820096, + 21820112, + 21820128 ], "bases": [ { @@ -111421,7 +111421,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63339712, + "vtable_address": 63343616, "methods": [ 13826704, 13826720, @@ -111465,18 +111465,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64011992, + "vtable_address": 64015896, "methods": [ - 18510448, - 18510464, - 18510480, - 18583600, - 18535568, - 18510496, - 18510512, - 18510528, - 18510544, - 18510560 + 18512752, + 18512768, + 18512784, + 18585904, + 18537872, + 18512800, + 18512816, + 18512832, + 18512848, + 18512864 ], "bases": [ { @@ -111509,18 +111509,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64220512, + "vtable_address": 64224416, "methods": [ - 22049616, - 22049632, - 22049648, - 22089776, - 22064208, - 22049664, - 22049680, - 22049696, - 22049712, - 22049728 + 22052432, + 22052448, + 22052464, + 22092592, + 22067024, + 22052480, + 22052496, + 22052512, + 22052528, + 22052544 ], "bases": [ { @@ -111553,18 +111553,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64219808, + "vtable_address": 64223712, "methods": [ - 22049744, - 22049760, - 22049776, - 22062256, - 22064096, - 22049792, - 22049808, - 22049824, - 22049840, - 22049856 + 22052560, + 22052576, + 22052592, + 22065072, + 22066912, + 22052608, + 22052624, + 22052640, + 22052656, + 22052672 ], "bases": [ { @@ -111597,18 +111597,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64216920, - "methods": [ - 22049872, - 22049888, - 22049904, - 22063792, - 22063984, - 22049920, - 22049936, - 22049952, - 22049968, - 22049984 + "vtable_address": 64220824, + "methods": [ + 22052688, + 22052704, + 22052720, + 22066608, + 22066800, + 22052736, + 22052752, + 22052768, + 22052784, + 22052800 ], "bases": [ { @@ -111641,7 +111641,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63347792, + "vtable_address": 63351696, "methods": [ 13826336, 13826352, @@ -111685,18 +111685,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64071368, + "vtable_address": 64075272, "methods": [ - 19365584, - 19365600, - 19365616, - 19398528, - 19397072, - 19365632, - 19365648, - 19365664, - 19365680, - 19365696 + 19368400, + 19368416, + 19368432, + 19401344, + 19399888, + 19368448, + 19368464, + 19368480, + 19368496, + 19368512 ], "bases": [ { @@ -111729,18 +111729,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64068280, + "vtable_address": 64072184, "methods": [ - 19822096, - 19366288, - 19526576, - 19396624, - 19396848, - 19366304, - 19366320, - 19366336, - 19366352, - 19366368 + 19824912, + 19369104, + 19529392, + 19399440, + 19399664, + 19369120, + 19369136, + 19369152, + 19369168, + 19369184 ], "bases": [ { @@ -111773,18 +111773,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64068888, + "vtable_address": 64072792, "methods": [ - 19366176, - 19366192, - 19379184, - 19396528, - 19396960, - 19366208, - 19366224, - 19366240, - 19366256, - 19366272 + 19368992, + 19369008, + 19382000, + 19399344, + 19399776, + 19369024, + 19369040, + 19369056, + 19369072, + 19369088 ], "bases": [ { @@ -111817,18 +111817,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64066672, + "vtable_address": 64070576, "methods": [ - 19366464, - 19366480, - 19366496, - 19398064, - 19396736, - 19366512, - 19366528, - 19366544, - 19366560, - 19366576 + 19369280, + 19369296, + 19369312, + 19400880, + 19399552, + 19369328, + 19369344, + 19369360, + 19369376, + 19369392 ], "bases": [ { @@ -111861,7 +111861,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63348680, + "vtable_address": 63352584, "methods": [ 13826208, 13826224, @@ -111905,18 +111905,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64225056, + "vtable_address": 64228960, "methods": [ - 22049232, - 22049248, - 22049264, - 22062704, - 22064320, - 22049280, - 22049296, - 22049312, - 22049328, - 22049344 + 22052048, + 22052064, + 22052080, + 22065520, + 22067136, + 22052096, + 22052112, + 22052128, + 22052144, + 22052160 ], "bases": [ { @@ -111949,18 +111949,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64226272, + "vtable_address": 64230176, "methods": [ - 22049024, - 22049040, - 22049056, - 22167520, - 22064432, - 22049072, - 22049088, - 22049104, - 22049120, - 22049136 + 22051840, + 22051856, + 22051872, + 22170336, + 22067248, + 22051888, + 22051904, + 22051920, + 22051936, + 22051952 ], "bases": [ { @@ -111993,7 +111993,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 63350664, + "vtable_address": 63354568, "methods": [ 13825904, 13825920, @@ -112037,18 +112037,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64156456, + "vtable_address": 64160360, "methods": [ - 21252256, - 21135696, - 21229552, - 21148512, - 21149504, - 21135712, - 21135728, - 21135744, - 21135760, - 21135776 + 21255072, + 21138512, + 21232368, + 21151328, + 21152320, + 21138528, + 21138544, + 21138560, + 21138576, + 21138592 ], "bases": [ { @@ -112081,18 +112081,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64164432, + "vtable_address": 64168336, "methods": [ - 21134784, - 21134800, - 21134816, - 21161248, - 21149616, - 21134832, - 21134848, - 21134864, - 21134880, - 21134896 + 21137600, + 21137616, + 21137632, + 21164064, + 21152432, + 21137648, + 21137664, + 21137680, + 21137696, + 21137712 ], "bases": [ { @@ -112125,18 +112125,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 64072488, + "vtable_address": 64076392, "methods": [ - 19365440, - 19365488, - 19366736, - 19396432, - 19397184, - 19365504, - 19365520, - 19365536, - 19365552, - 19365568 + 19368256, + 19368304, + 19369552, + 19399248, + 19400000, + 19368320, + 19368336, + 19368352, + 19368368, + 19368384 ], "bases": [ { @@ -112169,18 +112169,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64230672, + "vtable_address": 64234576, "methods": [ - 22237408, - 22237360, - 22258880, - 22237984, - 22237824, - 22234048, - 22234064, - 22234080, - 22234096, - 22234112 + 22240224, + 22240176, + 22261696, + 22240800, + 22240640, + 22236864, + 22236880, + 22236896, + 22236912, + 22236928 ], "bases": [ { @@ -112213,18 +112213,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64075760, + "vtable_address": 64079664, "methods": [ - 19364208, - 19383744, - 19364224, - 19396336, - 19396064, - 19364240, - 19364256, - 19364272, - 19364288, - 19364304 + 19367024, + 19386560, + 19367040, + 19399152, + 19398880, + 19367056, + 19367072, + 19367088, + 19367104, + 19367120 ], "bases": [ { @@ -112257,7 +112257,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63171312, + "vtable_address": 63175216, "methods": [ 12710624, 12587408, @@ -112301,18 +112301,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64236008, - "methods": [ - 22307504, - 22308608, - 22308560, - 22310160, - 22310064, - 22300064, - 22300080, - 22300096, - 22300112, - 22300128 + "vtable_address": 64239912, + "methods": [ + 22310320, + 22311424, + 22311376, + 22312976, + 22312880, + 22302880, + 22302896, + 22302912, + 22302928, + 22302944 ], "bases": [ { @@ -112345,18 +112345,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64360056, + "vtable_address": 64363960, "methods": [ - 23434528, - 23283920, - 23276336, - 23285616, - 23285360, - 23276352, - 23276368, - 23276384, - 23276400, - 23276416 + 23437280, + 23286672, + 23279088, + 23288368, + 23288112, + 23279104, + 23279120, + 23279136, + 23279152, + 23279168 ], "bases": [ { @@ -112389,18 +112389,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64348464, + "vtable_address": 64352368, "methods": [ - 22945184, - 22919792, - 22945792, - 22947824, - 22947472, - 22919808, - 22919824, - 22919840, - 22919856, - 22919872 + 22948000, + 22922608, + 22948608, + 22950640, + 22950288, + 22922624, + 22922640, + 22922656, + 22922672, + 22922688 ], "bases": [ { @@ -112433,18 +112433,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64350032, + "vtable_address": 64353936, "methods": [ - 22937648, - 22937600, - 22945328, - 22947920, - 22947552, - 22919648, - 22919664, - 22919680, - 22919696, - 22919712 + 22940464, + 22940416, + 22948144, + 22950736, + 22950368, + 22922464, + 22922480, + 22922496, + 22922512, + 22922528 ], "bases": [ { @@ -112477,18 +112477,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64187720, + "vtable_address": 64191624, "methods": [ - 21567264, - 21567968, - 21567504, - 21569728, - 21569136, - 21560080, - 21560096, - 21560112, - 21560128, - 21560144 + 21570080, + 21570784, + 21570320, + 21572544, + 21571952, + 21562896, + 21562912, + 21562928, + 21562944, + 21562960 ], "bases": [ { @@ -112521,18 +112521,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64571720, - "methods": [ - 27301968, - 27982048, - 27982304, - 27304128, - 27303888, - 27283120, - 27283136, - 27283152, - 27283168, - 27283184 + "vtable_address": 64575624, + "methods": [ + 27305136, + 27985312, + 27985568, + 27307296, + 27307056, + 27286288, + 27286304, + 27286320, + 27286336, + 27286352 ], "bases": [ { @@ -112565,18 +112565,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64394752, + "vtable_address": 64398656, "methods": [ - 23632112, - 23633936, - 23634752, - 23636944, - 23636704, - 23623440, - 23623456, - 23623472, - 23623488, - 23623504 + 23634864, + 23636688, + 23637504, + 23639696, + 23639456, + 23626192, + 23626208, + 23626224, + 23626240, + 23626256 ], "bases": [ { @@ -112609,18 +112609,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64606288, + "vtable_address": 64610192, "methods": [ - 28177424, - 28177520, - 28177472, - 28177568, - 28177968, - 28173648, - 28173664, - 28173680, - 28173696, - 28173712 + 28180688, + 28180784, + 28180736, + 28180832, + 28181232, + 28176912, + 28176928, + 28176944, + 28176960, + 28176976 ], "bases": [ { @@ -112653,18 +112653,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63973440, + "vtable_address": 63977344, "methods": [ - 17791680, - 17854288, - 17854480, - 17794656, - 17794560, - 17791696, - 17791712, - 17791728, - 17791744, - 17791760 + 17793984, + 17856592, + 17856784, + 17796960, + 17796864, + 17794000, + 17794016, + 17794032, + 17794048, + 17794064 ], "bases": [ { @@ -112697,18 +112697,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64436208, - "methods": [ - 24270064, - 24282096, - 24270080, - 24285024, - 24284864, - 24270096, - 24270112, - 24270128, - 24270144, - 24270160 + "vtable_address": 64440112, + "methods": [ + 24272816, + 24284848, + 24272832, + 24287776, + 24287616, + 24272848, + 24272864, + 24272880, + 24272896, + 24272912 ], "bases": [ { @@ -112741,18 +112741,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64347184, - "methods": [ - 23012096, - 22945232, - 22953504, - 22947632, - 22947312, - 22919968, - 22919984, - 22920000, - 22920016, - 22920032 + "vtable_address": 64351088, + "methods": [ + 23014912, + 22948048, + 22956320, + 22950448, + 22950128, + 22922784, + 22922800, + 22922816, + 22922832, + 22922848 ], "bases": [ { @@ -112785,18 +112785,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63982992, + "vtable_address": 63986896, "methods": [ - 17958656, - 17958752, - 17958704, - 17960128, - 17959968, - 17952352, - 17952368, - 17952384, - 17952400, - 17952416 + 17960960, + 17961056, + 17961008, + 17962432, + 17962272, + 17954656, + 17954672, + 17954688, + 17954704, + 17954720 ], "bases": [ { @@ -112829,18 +112829,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64436944, + "vtable_address": 64440848, "methods": [ - 24280864, - 24279040, - 24282144, - 24285120, - 24284944, - 24269984, - 24270000, - 24270016, - 24270032, - 24270048 + 24283616, + 24281792, + 24284896, + 24287872, + 24287696, + 24272736, + 24272752, + 24272768, + 24272784, + 24272800 ], "bases": [ { @@ -112873,18 +112873,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63983608, + "vtable_address": 63987512, "methods": [ - 17957136, - 17957088, - 17957040, - 17960224, - 17960048, - 17952272, - 17952288, - 17952304, - 17952320, - 17952336 + 17959440, + 17959392, + 17959344, + 17962528, + 17962352, + 17954576, + 17954592, + 17954608, + 17954624, + 17954640 ], "bases": [ { @@ -112917,18 +112917,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64358584, + "vtable_address": 64362488, "methods": [ - 23276544, - 23284256, - 23285184, - 23285520, - 23285280, - 23276560, - 23276576, - 23276592, - 23276608, - 23276624 + 23279296, + 23287008, + 23287936, + 23288272, + 23288032, + 23279312, + 23279328, + 23279344, + 23279360, + 23279376 ], "bases": [ { @@ -112961,18 +112961,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63758480, + "vtable_address": 63762384, "methods": [ - 17361488, - 17296784, - 17361584, - 17299344, - 17299248, - 17288400, - 17288416, - 17288432, - 17288448, - 17288464 + 17363792, + 17299088, + 17363888, + 17301648, + 17301552, + 17290704, + 17290720, + 17290736, + 17290752, + 17290768 ], "bases": [ { @@ -113005,18 +113005,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63976872, + "vtable_address": 63980776, "methods": [ - 17868416, - 17868560, - 17868512, - 17870752, - 17870656, - 17865888, - 17865904, - 17865920, - 17865936, - 17865952 + 17870720, + 17870864, + 17870816, + 17873056, + 17872960, + 17868192, + 17868208, + 17868224, + 17868240, + 17868256 ], "bases": [ { @@ -113049,18 +113049,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64175928, + "vtable_address": 64179832, "methods": [ - 21343552, - 21343968, - 21343920, - 21350320, - 21350160, - 21329680, - 21329696, - 21329712, - 21329728, - 21329744 + 21346368, + 21346784, + 21346736, + 21353136, + 21352976, + 21332496, + 21332512, + 21332528, + 21332544, + 21332560 ], "bases": [ { @@ -113093,7 +113093,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63322720, + "vtable_address": 63326624, "methods": [ 13249200, 13250576, @@ -113137,18 +113137,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64365112, - "methods": [ - 23438848, - 23438992, - 23438944, - 23440368, - 23440272, - 23436816, - 23436832, - 23436848, - 23436864, - 23436880 + "vtable_address": 64369016, + "methods": [ + 23441600, + 23441744, + 23441696, + 23443120, + 23443024, + 23439568, + 23439584, + 23439600, + 23439616, + 23439632 ], "bases": [ { @@ -113181,18 +113181,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64180680, - "methods": [ - 21345856, - 21341664, - 21341360, - 21350416, - 21350240, - 21329088, - 21329104, - 21329120, - 21329136, - 21329152 + "vtable_address": 64184584, + "methods": [ + 21348672, + 21344480, + 21344176, + 21353232, + 21353056, + 21331904, + 21331920, + 21331936, + 21331952, + 21331968 ], "bases": [ { @@ -113225,7 +113225,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63118048, + "vtable_address": 63121952, "methods": [ 12249632, 12249776, @@ -113269,18 +113269,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64186992, - "methods": [ - 21567216, - 21567456, - 21567408, - 21569632, - 21569056, - 21560288, - 21560304, - 21560320, - 21560336, - 21560352 + "vtable_address": 64190896, + "methods": [ + 21570032, + 21570272, + 21570224, + 21572448, + 21571872, + 21563104, + 21563120, + 21563136, + 21563152, + 21563168 ], "bases": [ { @@ -113313,7 +113313,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63689088, + "vtable_address": 63692992, "methods": [ 16919904, 16915408, @@ -113357,7 +113357,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63108488, + "vtable_address": 63112392, "methods": [ 12205840, 12205728, @@ -113401,7 +113401,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63324320, + "vtable_address": 63328224, "methods": [ 13245184, 13250624, @@ -113445,18 +113445,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64603104, + "vtable_address": 64607008, "methods": [ - 28161776, - 28161872, - 28163776, - 28162704, - 28162608, - 28160544, - 28160560, - 28160576, - 28160592, - 28160608 + 28165040, + 28165136, + 28167040, + 28165968, + 28165872, + 28163808, + 28163824, + 28163840, + 28163856, + 28163872 ], "bases": [ { @@ -113489,18 +113489,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64030824, + "vtable_address": 64034728, "methods": [ - 18960000, - 18960272, - 18960224, - 18966896, - 18966656, - 18948960, - 18948976, - 18948992, - 18949008, - 18949024 + 18962816, + 18963088, + 18963040, + 18969712, + 18969472, + 18951776, + 18951792, + 18951808, + 18951824, + 18951840 ], "bases": [ { @@ -113533,18 +113533,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64012176, - "methods": [ - 18527648, - 18527952, - 18544944, - 18532896, - 18532656, - 18510352, - 18510368, - 18510384, - 18510416, - 18510432 + "vtable_address": 64016080, + "methods": [ + 18529952, + 18530256, + 18547248, + 18535200, + 18534960, + 18512656, + 18512672, + 18512688, + 18512720, + 18512736 ], "bases": [ { @@ -113577,18 +113577,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64186328, + "vtable_address": 64190232, "methods": [ - 21567872, - 21567360, - 21567920, - 21569536, - 21568976, - 21560368, - 21560384, - 21560400, - 21560416, - 21560432 + 21570688, + 21570176, + 21570736, + 21572352, + 21571792, + 21563184, + 21563200, + 21563216, + 21563232, + 21563248 ], "bases": [ { @@ -113621,7 +113621,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63328208, + "vtable_address": 63332112, "methods": [ 13220768, 13245136, @@ -113665,7 +113665,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63175120, + "vtable_address": 63179024, "methods": [ 12587312, 12581792, @@ -113709,7 +113709,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63192296, + "vtable_address": 63196200, "methods": [ 12899248, 12899344, @@ -113753,7 +113753,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63196536, + "vtable_address": 63200440, "methods": [ 12898416, 12898368, @@ -113797,18 +113797,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64190968, + "vtable_address": 64194872, "methods": [ - 21575008, - 21567696, - 21583568, - 21570016, - 21569376, - 21559728, - 21559744, - 21559760, - 21559776, - 21559792 + 21577824, + 21570512, + 21586384, + 21572832, + 21572192, + 21562544, + 21562560, + 21562576, + 21562592, + 21562608 ], "bases": [ { @@ -113841,18 +113841,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64188376, + "vtable_address": 64192280, "methods": [ - 21567312, - 21567600, - 21567552, - 21569824, - 21569216, - 21560000, - 21560016, - 21560032, - 21560048, - 21560064 + 21570128, + 21570416, + 21570368, + 21572640, + 21572032, + 21562816, + 21562832, + 21562848, + 21562864, + 21562880 ], "bases": [ { @@ -113885,18 +113885,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64086488, + "vtable_address": 64090392, "methods": [ - 19884800, - 19884752, - 19884704, - 19890304, - 19890128, - 19877328, - 19877344, - 19877360, - 19877376, - 19877392 + 19887616, + 19887568, + 19887520, + 19893120, + 19892944, + 19880144, + 19880160, + 19880176, + 19880192, + 19880208 ], "bases": [ { @@ -113929,18 +113929,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64208672, - "methods": [ - 21834496, - 21826352, - 21949760, - 21831552, - 21831280, - 21817024, - 21817040, - 21817056, - 21817072, - 21817088 + "vtable_address": 64212576, + "methods": [ + 21837312, + 21829168, + 21952640, + 21834368, + 21834096, + 21819856, + 21819872, + 21819888, + 21819904, + 21819920 ], "bases": [ { @@ -113973,18 +113973,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64052840, + "vtable_address": 64056744, "methods": [ - 18960048, - 18960320, - 19063072, - 18966992, - 18966736, - 18948880, - 18948896, - 18948912, - 18948928, - 18948944 + 18962864, + 18963136, + 19065888, + 18969808, + 18969552, + 18951696, + 18951712, + 18951728, + 18951744, + 18951760 ], "bases": [ { @@ -114017,18 +114017,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64053480, + "vtable_address": 64057384, "methods": [ - 18956592, - 18956544, - 18956496, - 18967088, - 18966816, - 18948800, - 18948816, - 18948832, - 18948848, - 18948864 + 18959408, + 18959360, + 18959312, + 18969904, + 18969632, + 18951616, + 18951632, + 18951648, + 18951664, + 18951680 ], "bases": [ { @@ -114061,7 +114061,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63121248, + "vtable_address": 63125152, "methods": [ 12249680, 12249872, @@ -114105,18 +114105,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64193840, + "vtable_address": 64197744, "methods": [ - 21706496, - 21712304, - 21715552, - 21713888, - 21713808, - 21706512, - 21706528, - 21706544, - 21706560, - 21706576 + 21709312, + 21715120, + 21718368, + 21716704, + 21716624, + 21709328, + 21709344, + 21709360, + 21709376, + 21709392 ], "bases": [ { @@ -114149,18 +114149,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64232152, + "vtable_address": 64236056, "methods": [ - 22237312, - 22235952, - 22237456, - 22238080, - 22237904, - 22233744, - 22233760, - 22233776, - 22233792, - 22233808 + 22240128, + 22238768, + 22240272, + 22240896, + 22240720, + 22236560, + 22236576, + 22236592, + 22236608, + 22236624 ], "bases": [ { @@ -114193,18 +114193,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64191752, + "vtable_address": 64195656, "methods": [ - 21574192, - 21565696, - 21584432, - 21570112, - 21569456, - 21559648, - 21559664, - 21559680, - 21559696, - 21559712 + 21577008, + 21568512, + 21587248, + 21572928, + 21572272, + 21562464, + 21562480, + 21562496, + 21562512, + 21562528 ], "bases": [ { @@ -114237,18 +114237,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64583136, - "methods": [ - 27296512, - 27296464, - 27296416, - 27304320, - 27304048, - 27282400, - 27282416, - 27282432, - 27282448, - 27282464 + "vtable_address": 64587040, + "methods": [ + 27299680, + 27299632, + 27299584, + 27307488, + 27307216, + 27285568, + 27285584, + 27285600, + 27285616, + 27285632 ], "bases": [ { @@ -114281,18 +114281,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64578520, - "methods": [ - 27300448, - 27300544, - 27300496, - 27304224, - 27303968, - 27282896, - 27282912, - 27282928, - 27282944, - 27282960 + "vtable_address": 64582424, + "methods": [ + 27303616, + 27303712, + 27303664, + 27307392, + 27307136, + 27286064, + 27286080, + 27286096, + 27286112, + 27286128 ], "bases": [ { @@ -114325,18 +114325,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64073880, + "vtable_address": 64077784, "methods": [ - 19365200, - 19365216, - 19365232, - 19365248, - 19365312, - 19365360, - 19365376, - 19365392, - 19365408, - 19365424 + 19368016, + 19368032, + 19368048, + 19368064, + 19368128, + 19368176, + 19368192, + 19368208, + 19368224, + 19368240 ], "bases": [ { @@ -114369,7 +114369,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63125976, + "vtable_address": 63129880, "methods": [ 12247088, 12247040, @@ -114413,18 +114413,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64084200, + "vtable_address": 64088104, "methods": [ - 19886848, - 19887408, - 19887360, - 19890208, - 19890048, - 19877760, - 19877776, - 19877792, - 19877808, - 19877824 + 19889664, + 19890224, + 19890176, + 19893024, + 19892864, + 19880576, + 19880592, + 19880608, + 19880624, + 19880640 ], "bases": [ { @@ -114457,18 +114457,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64093768, - "methods": [ + "vtable_address": 64097672, + "methods": [ + 20087744, + 20087888, + 20087840, + 20089936, + 20089840, + 20084880, + 20084896, + 20084912, 20084928, - 20085072, - 20085024, - 20087120, - 20087024, - 20082064, - 20082080, - 20082096, - 20082112, - 20082128 + 20084944 ], "bases": [ { @@ -114501,18 +114501,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64205912, + "vtable_address": 64209816, "methods": [ - 21829776, - 21830160, - 21830112, - 21831360, - 21831120, - 21817648, - 21817664, - 21817680, - 21817696, - 21817712 + 21832592, + 21832976, + 21832928, + 21834176, + 21833936, + 21820480, + 21820496, + 21820512, + 21820528, + 21820544 ], "bases": [ { @@ -114545,18 +114545,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64607184, - "methods": [ - 28177696, - 28175088, - 28177744, - 28178656, - 28178576, - 28173568, - 28173584, - 28173600, - 28173616, - 28173632 + "vtable_address": 64611088, + "methods": [ + 28180960, + 28178352, + 28181008, + 28181920, + 28181840, + 28176832, + 28176848, + 28176864, + 28176880, + 28176896 ], "bases": [ { @@ -114589,18 +114589,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64207384, + "vtable_address": 64211288, "methods": [ - 21826400, - 21830224, - 21826304, - 21831456, - 21831200, - 21817104, - 21817120, - 21817136, - 21817152, - 21817168 + 21829216, + 21833040, + 21829120, + 21834272, + 21834016, + 21819936, + 21819952, + 21819968, + 21819984, + 21820000 ], "bases": [ { @@ -114633,18 +114633,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64013608, - "methods": [ - 18527744, - 18528048, - 18528000, - 18532992, - 18532736, - 18510208, - 18510224, - 18510240, - 18510256, - 18510272 + "vtable_address": 64017512, + "methods": [ + 18530048, + 18530352, + 18530304, + 18535296, + 18535040, + 18512512, + 18512528, + 18512544, + 18512560, + 18512576 ], "bases": [ { @@ -114677,7 +114677,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63244368, + "vtable_address": 63248272, "methods": [ 13062048, 13062144, @@ -114721,18 +114721,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64347280, - "methods": [ - 23212784, - 22945280, - 23016352, - 22947728, - 22947392, - 22919888, - 22919904, - 22919920, - 22919936, - 22919952 + "vtable_address": 64351184, + "methods": [ + 23215600, + 22948096, + 23019168, + 22950544, + 22950208, + 22922704, + 22922720, + 22922736, + 22922752, + 22922768 ], "bases": [ { @@ -114765,7 +114765,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63340504, + "vtable_address": 63344408, "methods": [ 13850144, 13850448, @@ -114809,18 +114809,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64018384, + "vtable_address": 64022288, "methods": [ - 18523296, - 18523248, - 18523200, - 18533088, - 18532816, - 18509984, - 18510000, - 18510016, - 18510032, - 18510048 + 18525600, + 18525552, + 18525504, + 18535392, + 18535120, + 18512288, + 18512304, + 18512320, + 18512336, + 18512352 ], "bases": [ { @@ -114853,18 +114853,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64189592, + "vtable_address": 64193496, "methods": [ - 21565744, - 21567648, - 21565648, - 21569920, - 21569296, - 21559920, - 21559936, - 21559952, - 21559968, - 21559984 + 21568560, + 21570464, + 21568464, + 21572736, + 21572112, + 21562736, + 21562752, + 21562768, + 21562784, + 21562800 ], "bases": [ { @@ -114897,7 +114897,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63341160, + "vtable_address": 63345064, "methods": [ 13842592, 13850544, @@ -114941,13 +114941,13 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63707488, + "vtable_address": 63711392, "methods": [ - 17125456, 17125552, - 17125504, - 17126864, - 17126784, + 17125648, + 17125600, + 17126960, + 17126880, 17120896, 17120912, 17120928, @@ -114985,18 +114985,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64222136, - "methods": [ - 22059232, - 22059600, - 22059552, - 22065120, - 22065040, - 22049456, - 22049472, - 22049488, - 22049504, - 22049520 + "vtable_address": 64226040, + "methods": [ + 22062048, + 22062416, + 22062368, + 22067936, + 22067856, + 22052272, + 22052288, + 22052304, + 22052320, + 22052336 ], "bases": [ { @@ -115029,18 +115029,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64221120, - "methods": [ - 22059184, - 22059504, - 22059456, - 22062512, - 22062352, - 22049536, - 22049552, - 22049568, - 22049584, - 22049600 + "vtable_address": 64225024, + "methods": [ + 22062000, + 22062320, + 22062272, + 22065328, + 22065168, + 22052352, + 22052368, + 22052384, + 22052400, + 22052416 ], "bases": [ { @@ -115073,7 +115073,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63342392, + "vtable_address": 63346296, "methods": [ 13851136, 13842544, @@ -115117,18 +115117,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64117192, + "vtable_address": 64121096, "methods": [ - 20138880, - 20193136, - 20198736, - 20196608, - 20196512, - 20138896, - 20138912, - 20138928, - 20138944, - 20138960 + 20141696, + 20195952, + 20201552, + 20199424, + 20199328, + 20141712, + 20141728, + 20141744, + 20141760, + 20141776 ], "bases": [ { @@ -115161,18 +115161,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64362432, + "vtable_address": 64366336, "methods": [ - 23435680, - 23284352, - 23284304, - 23285712, - 23285440, - 23276192, - 23276208, - 23276224, - 23276240, - 23276256 + 23438432, + 23287104, + 23287056, + 23288464, + 23288192, + 23278944, + 23278960, + 23278976, + 23278992, + 23279008 ], "bases": [ { @@ -115205,7 +115205,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 63149560, + "vtable_address": 63153464, "methods": [ 12404608, 12404816, @@ -115249,18 +115249,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64015832, - "methods": [ - 18531760, - 18528096, - 18531856, - 18536800, - 18536640, - 18510064, - 18510080, - 18510096, - 18510112, - 18510128 + "vtable_address": 64019736, + "methods": [ + 18534064, + 18530400, + 18534160, + 18539104, + 18538944, + 18512368, + 18512384, + 18512400, + 18512416, + 18512432 ], "bases": [ { @@ -115293,18 +115293,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64067480, + "vtable_address": 64071384, "methods": [ - 19389120, - 19390160, - 19390112, - 19396240, - 19395984, - 19366384, - 19366400, - 19366416, - 19366432, - 19366448 + 19391936, + 19392976, + 19392928, + 19399056, + 19398800, + 19369200, + 19369216, + 19369232, + 19369248, + 19369264 ], "bases": [ { @@ -115337,18 +115337,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64226176, + "vtable_address": 64230080, "methods": [ - 22069088, - 22054784, - 22054736, - 22062608, - 22062432, - 22049152, - 22049168, - 22049184, - 22049200, - 22049216 + 22071904, + 22057600, + 22057552, + 22065424, + 22065248, + 22051968, + 22051984, + 22052000, + 22052016, + 22052032 ], "bases": [ { @@ -115381,18 +115381,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64132776, + "vtable_address": 64136680, "methods": [ - 20592032, - 20592128, - 20592080, - 20594352, - 20594256, - 20574944, - 20574960, - 20574976, - 20574992, - 20575008 + 20594848, + 20594944, + 20594896, + 20597168, + 20597072, + 20577760, + 20577776, + 20577792, + 20577808, + 20577824 ], "bases": [ { @@ -115425,18 +115425,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64158792, + "vtable_address": 64162696, "methods": [ - 21302960, - 21146288, - 21180544, - 21148320, - 21148160, - 21134992, - 21135008, - 21135024, - 21135040, - 21135056 + 21305776, + 21149104, + 21183360, + 21151136, + 21150976, + 21137808, + 21137824, + 21137840, + 21137856, + 21137872 ], "bases": [ { @@ -115469,18 +115469,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 64164336, + "vtable_address": 64168240, "methods": [ - 21308064, - 21143792, - 21209744, - 21148416, - 21148240, - 21134912, - 21134928, - 21134944, - 21134960, - 21134976 + 21310880, + 21146608, + 21212560, + 21151232, + 21151056, + 21137728, + 21137744, + 21137760, + 21137776, + 21137792 ], "bases": [ { @@ -115513,13 +115513,13 @@ }, { "type_name": "CGameTimescale", - "vtable_address": 64194080, + "vtable_address": 64197984, "methods": [ - 21789760, + 21792576, 12204208, - 21707504, + 21710320, 12204240, - 21704624, + 21707440, 12204272, 12204288, 12204304, @@ -115531,7 +115531,7 @@ 12204400, 12204416, 12204432, - 21704624, + 21707440, 12204464, 12204480, 12204496, @@ -115542,7 +115542,7 @@ 12204576, 12204592, 12204608, - 21717920, + 21720736, 12204640, 12204656, 12204672, @@ -115571,12 +115571,12 @@ 12205040, 12205056, 12205072, - 21704464, + 21707280, 12205104, - 21704448, - 21709136, - 21709200, - 21704432 + 21707264, + 21711952, + 21712016, + 21707248 ], "bases": [ { @@ -115609,11 +115609,11 @@ }, { "type_name": "CGaussianBloomBlurRenderer", - "vtable_address": 64624320, + "vtable_address": 64628224, "methods": [ - 28442144, - 28331872, - 28334224, + 28445536, + 28335264, + 28337616, 12236576 ], "bases": [ @@ -115636,7 +115636,7 @@ }, { "type_name": "CGenerateMipsProceduralLayer", - "vtable_address": 63126264, + "vtable_address": 63130168, "methods": [ 12237216, 12263440, @@ -115663,7 +115663,7 @@ }, { "type_name": "CGenericExprPart", - "vtable_address": 64777448, + "vtable_address": 64781352, "methods": [], "bases": [], "model": { @@ -115674,14 +115674,14 @@ }, { "type_name": "CGenericExpr_Binary", - "vtable_address": 64777528, + "vtable_address": 64781432, "methods": [ - 33100944, - 33105152, - 33103584, - 33101024, - 33101120, - 33101136 + 33104784, + 33108992, + 33107424, + 33104864, + 33104960, + 33104976 ], "bases": [ { @@ -115703,14 +115703,14 @@ }, { "type_name": "CGenericExpr_BoolLiteral", - "vtable_address": 64777848, + "vtable_address": 64781752, "methods": [ - 33101568, - 33103152, - 33102784, - 33101472, - 33100832, - 33100848 + 33105408, + 33106992, + 33106624, + 33105312, + 33104672, + 33104688 ], "bases": [ { @@ -115732,14 +115732,14 @@ }, { "type_name": "CGenericExpr_FloatLiteral", - "vtable_address": 64777720, + "vtable_address": 64781624, "methods": [ - 33101600, - 33103184, - 33102864, - 33101408, - 33100832, - 33100848 + 33105440, + 33107024, + 33106704, + 33105248, + 33104672, + 33104688 ], "bases": [ { @@ -115761,23 +115761,23 @@ }, { "type_name": "CGenericExpr_FunctionCall", - "vtable_address": 64778040, - "methods": [ - 33105488, - 33105328, - 33102896, - 33102544, - 33104960, - 33101536, - 32978224, - 32978240, - 33114496, - 33108736, - 33109696, - 33111360, - 33113088, - 33113888, - 33106464 + "vtable_address": 64781944, + "methods": [ + 33109328, + 33109168, + 33106736, + 33106384, + 33108800, + 33105376, + 32982064, + 32982080, + 33118336, + 33112576, + 33113536, + 33115200, + 33116928, + 33117728, + 33110304 ], "bases": [ { @@ -115799,14 +115799,14 @@ }, { "type_name": "CGenericExpr_IntLiteral", - "vtable_address": 64777784, + "vtable_address": 64781688, "methods": [ - 33101584, - 33103168, - 33102832, - 33101440, - 33100832, - 33100848 + 33105424, + 33107008, + 33106672, + 33105280, + 33104672, + 33104688 ], "bases": [ { @@ -115828,14 +115828,14 @@ }, { "type_name": "CGenericExpr_Property", - "vtable_address": 64777976, + "vtable_address": 64781880, "methods": [ - 33103264, - 33105072, - 33102960, - 33102368, - 33101504, - 33101520 + 33107104, + 33108912, + 33106800, + 33106208, + 33105344, + 33105360 ], "bases": [ { @@ -115857,14 +115857,14 @@ }, { "type_name": "CGenericExpr_StringLiteral", - "vtable_address": 64777656, + "vtable_address": 64781560, "methods": [ - 33103424, - 33103456, - 33103088, - 33104752, - 33100832, - 33100848 + 33107264, + 33107296, + 33106928, + 33108592, + 33104672, + 33104688 ], "bases": [ { @@ -115886,14 +115886,14 @@ }, { "type_name": "CGenericExpr_TernaryConditional", - "vtable_address": 64777592, + "vtable_address": 64781496, "methods": [ - 33101152, - 33105232, - 33103520, - 33101248, - 33101360, - 33101376 + 33104992, + 33109072, + 33107360, + 33105088, + 33105200, + 33105216 ], "bases": [ { @@ -115915,14 +115915,14 @@ }, { "type_name": "CGenericExpr_Unary", - "vtable_address": 64777464, + "vtable_address": 64781368, "methods": [ - 33100864, - 33103200, - 33104416, - 33104912, - 33100912, - 33100928 + 33104704, + 33107040, + 33108256, + 33108752, + 33104752, + 33104768 ], "bases": [ { @@ -115944,14 +115944,14 @@ }, { "type_name": "CGenericExpr_VariableReference", - "vtable_address": 64777912, + "vtable_address": 64781816, "methods": [ - 33103328, - 33103360, - 33103024, - 33104608, - 33100832, - 33100848 + 33107168, + 33107200, + 33106864, + 33108448, + 33104672, + 33104688 ], "bases": [ { @@ -115973,9 +115973,9 @@ }, { "type_name": "CGlobalFlexControllerMgr", - "vtable_address": 64133432, + "vtable_address": 64137336, "methods": [ - 20572512 + 20575328 ], "bases": [ { @@ -115997,19 +115997,19 @@ }, { "type_name": "CGlobalLightBase", - "vtable_address": 64139008, + "vtable_address": 64142912, "methods": [ - 20785712, - 20787408, - 20841600, - 20659024, - 20571056, + 20788528, + 20790224, + 20844416, + 20661840, + 20573872, 12235680, 12235696, 12235712, 12235728, - 20577680, - 20571104 + 20580496, + 20573920 ], "bases": [ { @@ -116031,10 +116031,10 @@ }, { "type_name": "CGlowHelperSceneObject", - "vtable_address": 64181392, + "vtable_address": 64185296, "methods": [ - 21329952, - 21354416, + 21332768, + 21357232, 12011888, 12011520 ], @@ -116058,14 +116058,14 @@ }, { "type_name": "CGlowHelperSceneObjectDesc", - "vtable_address": 64181440, + "vtable_address": 64185344, "methods": [ - 21328528, - 21328544, + 21331344, + 21331360, 12011568, 12011584, - 21418368, - 21356656, + 21421184, + 21359472, 12011600, 12011616, 12011632, @@ -116082,7 +116082,7 @@ 12011808, 12011824, 12011840, - 21417184 + 21420000 ], "bases": [ { @@ -116115,13 +116115,13 @@ }, { "type_name": "CGlowManager", - "vtable_address": 64195784, + "vtable_address": 64199688, "methods": [ 12204192, 12204208, 12204224, 12204240, - 21715968, + 21718784, 12204272, 12204288, 12204304, @@ -116138,7 +116138,7 @@ 12204480, 12204496, 12204512, - 21738240, + 21741056, 12204544, 12204560, 12204576, @@ -116173,12 +116173,12 @@ 12205040, 12205056, 12205072, - 21704960, + 21707776, 12205104, - 21704944, - 21717424, - 21716064, - 21704928 + 21707760, + 21720240, + 21718880, + 21707744 ], "bases": [ { @@ -116211,12 +116211,12 @@ }, { "type_name": "CGlowProperty", - "vtable_address": 64193792, + "vtable_address": 64197696, "methods": [ 13131632, - 21704256, - 18505808, - 21704272 + 21707072, + 18508112, + 21707088 ], "bases": [], "model": { @@ -116227,12 +116227,12 @@ }, { "type_name": "CGpuDebugDrawMessageReadback", - "vtable_address": 64624632, + "vtable_address": 64628536, "methods": [ - 28332672, - 28333904, - 24267360, - 28506208 + 28336064, + 28337296, + 24270112, + 28509600 ], "bases": [ { @@ -116265,11 +116265,11 @@ }, { "type_name": "CGpuDebugDrawRenderer", - "vtable_address": 64624680, + "vtable_address": 64628584, "methods": [ - 28365680, - 28332896, - 28334032, + 28369072, + 28336288, + 28337424, 12236576 ], "bases": [ @@ -116292,11 +116292,11 @@ }, { "type_name": "CGpuDebugDrawRenderer", - "vtable_address": 64624728, + "vtable_address": 64628632, "methods": [ - 28365104, - 28332880, - 28334016, + 28368496, + 28336272, + 28337408, 12236576 ], "bases": [ @@ -116319,11 +116319,11 @@ }, { "type_name": "CGpuVisUpdateNodeVisibilityRenderer", - "vtable_address": 64624368, + "vtable_address": 64628272, "methods": [ - 28331888, - 28332960, - 28334208, + 28335280, + 28336352, + 28337600, 12236576 ], "bases": [ @@ -116346,33 +116346,33 @@ }, { "type_name": "CGrenadeTracer", - "vtable_address": 64549392, + "vtable_address": 64553296, "methods": [ 14368000, - 27184288, - 27184640, - 18931408, - 39987824, - 18645760, - 18645648, - 27269792, - 21132352, - 21132672, - 21132336, - 27270432, - 27270832, - 18665616, + 27187296, + 27187648, + 18934224, + 39991728, + 18648064, + 18647952, + 27272928, + 21135168, + 21135488, + 21135152, + 27273568, + 27273968, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -116381,23 +116381,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27163808, - 27270928, - 27164624, + 40000032, + 27166816, + 27274064, + 27167632, 12234080, 14344448, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -116414,13 +116414,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -116428,41 +116428,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 27163792, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 27166800, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -116474,33 +116474,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 27228960, - 21812224, + 27232000, + 21815040, 12234864, - 27226336, + 27229376, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -116528,9 +116528,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -116538,24 +116538,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 27182944, - 20572192, + 27185952, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -116567,32 +116567,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -116656,15 +116656,15 @@ }, { "type_name": "CGrenadeTracer", - "vtable_address": 64551368, + "vtable_address": 64555272, "methods": [ - 27183936, - 27184992, - 18933072, - 18741840, - 18742112, + 27186944, + 27188000, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -116728,9 +116728,9 @@ }, { "type_name": "CGrenadeTracer", - "vtable_address": 64551440, + "vtable_address": 64555344, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -116794,35 +116794,35 @@ }, { "type_name": "CHeatMap", - "vtable_address": 64511144, + "vtable_address": 64515048, "methods": [ 12043984, - 59816784, - 25284128, - 25284144, - 25286240, - 59817136, - 59817120, + 59820688, + 25287136, + 25287152, + 25289248, + 59821040, + 59821024, 12233600, - 25284064, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 25287072, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 25285296, + 59821792, + 59821808, + 59820704, + 59832432, + 25288304, 12233664, 12233696, 12233680, @@ -116835,12 +116835,12 @@ 12399392, 12233312, 12233168, - 25426736, - 59825616, - 59825216, - 59836080, + 25429744, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -116850,40 +116850,40 @@ 12233472, 12233488, 12233504, - 25305184, - 25290736, + 25308192, + 25293744, 12233520, 12233296, 12233760, - 59835792, - 25284112, - 25352848, - 25353200, + 59839696, + 25287120, + 25355856, + 25356208, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25437120, - 25329904, - 25283856 + 25440128, + 25332912, + 25286864 ], "bases": [ { @@ -116927,23 +116927,23 @@ }, { "type_name": "CHelpRequestLogs_UploadUserApplicationLog_Request", - "vtable_address": 63633136, + "vtable_address": 63637040, "methods": [ 16579472, 16631280, - 29643894, + 29647734, 16238064, 16701776, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16009648, 15997648, 16340144, 12011504, 16131360, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016608, 15987664 @@ -116979,23 +116979,23 @@ }, { "type_name": "CHelpRequestLogs_UploadUserApplicationLog_Response", - "vtable_address": 63633296, + "vtable_address": 63637200, "methods": [ 16579632, 16608240, - 29643894, + 29647734, 16238192, 16682048, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025712, 15997632, 16340832, 12011504, 16078592, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016640, 15987680 @@ -117031,25 +117031,25 @@ }, { "type_name": "CHiddenFieldValuePrinter", - "vtable_address": 64627600, - "methods": [ - 28834960, - 28834976, - 28834368, - 28834400, - 28834432, - 28834464, - 28834496, - 28834528, - 28834560, - 28834592, - 28834624, - 28834656, - 29660084, - 29666268, - 28834688, - 28834720, - 28834736 + "vtable_address": 64631504, + "methods": [ + 28838672, + 28838688, + 28838080, + 28838112, + 28838144, + 28838176, + 28838208, + 28838240, + 28838272, + 28838304, + 28838336, + 28838368, + 29663924, + 29670108, + 28838400, + 28838432, + 28838448 ], "bases": [ { @@ -117071,12 +117071,12 @@ }, { "type_name": "CHistogramReadback", - "vtable_address": 64624080, + "vtable_address": 64627984, "methods": [ - 28338960, - 28339056, - 24267360, - 28381968 + 28342352, + 28342448, + 24270112, + 28385360 ], "bases": [ { @@ -117109,11 +117109,11 @@ }, { "type_name": "CHistogramRenderer", - "vtable_address": 64624032, + "vtable_address": 64627936, "methods": [ - 28466640, - 28333024, - 28334272, + 28470032, + 28336416, + 28337664, 12236576 ], "bases": [ @@ -117136,7 +117136,7 @@ }, { "type_name": "CHitboxComponent", - "vtable_address": 63152984, + "vtable_address": 63156888, "methods": [ 12449312, 12447888, @@ -117166,7 +117166,7 @@ }, { "type_name": "CHitboxSystem", - "vtable_address": 63152952, + "vtable_address": 63156856, "methods": [ 12449840, 12471808 @@ -117180,12 +117180,12 @@ }, { "type_name": "CHitgroupDisableListSaveRestoreOps", - "vtable_address": 64014848, + "vtable_address": 64018752, "methods": [ - 18530032, - 18529840, - 18529296, - 18529280, + 18532336, + 18532144, + 18531600, + 18531584, 12233776, 12233792 ], @@ -117220,7 +117220,7 @@ }, { "type_name": "CHltvReplaySystem", - "vtable_address": 63090640, + "vtable_address": 63094544, "methods": [ 12047760, 12048032, @@ -117258,32 +117258,32 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 63739184, + "vtable_address": 63743088, "methods": [ 14368000, - 17234128, - 17235984, - 18931408, - 39987824, - 18645760, - 18645648, + 17236432, + 17238288, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -117293,23 +117293,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217168, - 17218368, - 17218432, + 40000032, + 17219472, + 17220672, + 17220736, 12234080, - 17232240, - 18666928, - 18799200, + 17234544, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -117326,13 +117326,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -117340,41 +117340,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -117386,33 +117386,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, - 17217120, + 17219424, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -117440,9 +117440,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -117450,24 +117450,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -117479,41 +117479,41 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, - 17225424, + 17227728, 12574432, 12580032, 12574496, 12574512, - 17226864 + 17229168 ], "bases": [ { @@ -117620,15 +117620,15 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 63741232, + "vtable_address": 63745136, "methods": [ - 17234336, - 17236224, - 18933072, - 18741840, - 18742112, + 17236640, + 17238528, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -117735,9 +117735,9 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 63741304, + "vtable_address": 63745208, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -117844,10 +117844,10 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 63741328, + "vtable_address": 63745232, "methods": [ - 17234560, - 17236480 + 17236864, + 17238784 ], "bases": [ { @@ -117954,32 +117954,32 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 63737040, + "vtable_address": 63740944, "methods": [ 14368000, - 17233872, - 17233968, - 18931408, - 39987824, - 18645760, - 18645648, + 17236176, + 17236272, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -117989,23 +117989,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217152, - 17218368, - 17218448, + 40000032, + 17219456, + 17220672, + 17220752, 12234080, 12620656, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -118022,13 +118022,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -118036,41 +118036,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -118082,33 +118082,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, - 17217120, + 17219424, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -118136,9 +118136,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -118146,24 +118146,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -118175,32 +118175,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -118209,7 +118209,7 @@ 12580032, 12574496, 12574512, - 17217136 + 17219440 ], "bases": [ { @@ -118295,15 +118295,15 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 63739088, + "vtable_address": 63742992, "methods": [ - 17233920, - 17234048, - 18933072, - 18741840, - 18742112, + 17236224, + 17236352, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -118389,9 +118389,9 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 63739160, + "vtable_address": 63743064, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -118477,7 +118477,7 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 65622304, + "vtable_address": 65626208, "methods": [], "bases": [], "model": { @@ -118488,24 +118488,24 @@ }, { "type_name": "CHudChatDelegate", - "vtable_address": 64606144, - "methods": [ - 28174656, - 28174688, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 21705264, - 21705280, - 21705328, - 21705312, - 21724544, - 21705344, - 28191360, - 28186816, - 28188416 + "vtable_address": 64610048, + "methods": [ + 28177920, + 28177952, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 21708080, + 21708096, + 21708144, + 21708128, + 21727360, + 21708160, + 28194624, + 28190080, + 28191680 ], "bases": [ { @@ -118549,13 +118549,13 @@ }, { "type_name": "CHudCloseCaption", - "vtable_address": 64230864, + "vtable_address": 64234768, "methods": [ 12204192, 12204208, 12204224, - 22282576, - 22255760, + 22285392, + 22258576, 12204272, 12204288, 12204304, @@ -118572,7 +118572,7 @@ 12204480, 12204496, 12204512, - 22280896, + 22283712, 12204544, 12204560, 12204576, @@ -118607,13 +118607,13 @@ 12205040, 12205056, 12205072, - 22233296, + 22236112, 12205104, - 22233280, - 22242944, - 22243904, - 22233264, - 22233408 + 22236096, + 22245760, + 22246720, + 22236080, + 22236224 ], "bases": [ { @@ -118667,11 +118667,11 @@ }, { "type_name": "CHudCloseCaption", - "vtable_address": 64231384, + "vtable_address": 64235288, "methods": [ - 22243888, - 22243952, - 22237808 + 22246704, + 22246768, + 22240624 ], "bases": [ { @@ -118725,13 +118725,13 @@ }, { "type_name": "CHudIcons", - "vtable_address": 64231640, + "vtable_address": 64235544, "methods": [ 12204192, 12204208, 12204224, - 22296160, - 22240688, + 22298976, + 22243504, 12204272, 12204288, 12204304, @@ -118740,7 +118740,7 @@ 12204352, 12204368, 12204384, - 22233408, + 22236224, 12204416, 12204432, 12204448, @@ -118783,12 +118783,12 @@ 12205040, 12205056, 12205072, - 22233504, + 22236320, 12205104, - 22233488, - 22266624, - 22267408, - 22233472 + 22236304, + 22269440, + 22270224, + 22236288 ], "bases": [ { @@ -118821,35 +118821,35 @@ }, { "type_name": "CHud_CommandQueueGraph", - "vtable_address": 64609952, + "vtable_address": 64613856, "methods": [ 12043984, - 59816784, - 28214352, - 28214368, - 28247536, - 59817136, - 59817120, + 59820688, + 28217616, + 28217632, + 28250800, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -118862,12 +118862,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -118882,30 +118882,30 @@ 12233520, 12233296, 12233760, - 59835792, - 28214336, - 28217584, - 28217808, + 59839696, + 28217600, + 28220848, + 28221072, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -118940,35 +118940,35 @@ }, { "type_name": "CHud_FrameTimeGraph", - "vtable_address": 64610648, + "vtable_address": 64614552, "methods": [ 12043984, - 59816784, - 28214416, - 28214432, - 28218064, - 59817136, - 59817120, + 59820688, + 28217680, + 28217696, + 28221328, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -118981,12 +118981,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -119001,30 +119001,30 @@ 12233520, 12233296, 12233760, - 59835792, - 28214400, - 28217568, - 28217760, + 59839696, + 28217664, + 28220832, + 28221024, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -119059,35 +119059,35 @@ }, { "type_name": "CHud_NetJitterGraph", - "vtable_address": 64611344, + "vtable_address": 64615248, "methods": [ 12043984, - 59816784, - 28214480, - 28214496, - 28264928, - 59817136, - 59817120, + 59820688, + 28217744, + 28217760, + 28268192, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 28218160, - 59823152, + 59821792, + 59821808, + 59820704, + 28221424, + 59827056, 12233664, 12233696, 12233680, @@ -119100,12 +119100,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -119120,30 +119120,30 @@ 12233520, 12233296, 12233760, - 59835792, - 28214464, - 28217552, - 28217712, + 59839696, + 28217728, + 28220816, + 28220976, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -119178,35 +119178,35 @@ }, { "type_name": "CHud_PerfStatsBasics", - "vtable_address": 64609256, + "vtable_address": 64613160, "methods": [ 12043984, - 59816784, - 28214288, - 28214304, - 59817120, - 59817136, - 59817120, + 59820688, + 28217552, + 28217568, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -119219,12 +119219,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -119233,36 +119233,36 @@ 12233456, 12233472, 12233488, - 28245216, + 28248480, 12399408, 12399424, 12233520, 12233296, 12233760, - 59835792, - 28214272, - 28221280, - 28223728, + 59839696, + 28217536, + 28224544, + 28226992, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -119297,7 +119297,7 @@ }, { "type_name": "CIconLesson", - "vtable_address": 64133784, + "vtable_address": 64137688, "methods": [], "bases": [ { @@ -119352,12 +119352,12 @@ }, { "type_name": "CImpactEffectsList", - "vtable_address": 64191192, + "vtable_address": 64195096, "methods": [ - 21696192, - 21660032, - 21660576, - 21573552 + 21699008, + 21662848, + 21663392, + 21576368 ], "bases": [ { @@ -119401,11 +119401,11 @@ }, { "type_name": "CImpactEffectsManager", - "vtable_address": 64191240, + "vtable_address": 64195144, "methods": [ - 21574064, + 21576880, 12204208, - 21583888, + 21586704, 12204240, 12204256, 12204272, @@ -119459,12 +119459,12 @@ 12205040, 12205056, 12205072, - 21558880, + 21561696, 12205104, - 21558864, - 21562016, - 21562032, - 21558848 + 21561680, + 21564832, + 21564848, + 21561664 ], "bases": [ { @@ -119497,7 +119497,7 @@ }, { "type_name": "CInButtonState", - "vtable_address": 63460640, + "vtable_address": 63464544, "methods": [ 14478384, 14476880 @@ -119511,23 +119511,23 @@ }, { "type_name": "CInButtonStatePB", - "vtable_address": 63498944, + "vtable_address": 63502848, "methods": [ 14588992, 14589728, - 29643894, + 29647734, 14583792, 14590576, 14578944, - 29646054, - 29642886, + 29649894, + 29646726, 14579232, 14579584, 14584448, 12011504, 14580320, - 29642796, - 29643062, + 29646636, + 29646902, 14579216, 14579456, 14578928 @@ -119563,32 +119563,32 @@ }, { "type_name": "CInfoDynamicShadowHint", - "vtable_address": 63153224, + "vtable_address": 63157128, "methods": [ 12604160, 12450176, 12450208, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12471456, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12454336, 12454208, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -119598,23 +119598,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12447952, 12450640, 12449392, 12234080, 12620528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -119631,13 +119631,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -119645,39 +119645,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -119691,33 +119691,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -119745,9 +119745,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -119755,24 +119755,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -119829,32 +119829,32 @@ }, { "type_name": "CInfoDynamicShadowHintBox", - "vtable_address": 63155008, + "vtable_address": 63158912, "methods": [ 12604160, 12450272, 12450304, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12471456, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12454336, 12454208, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -119864,23 +119864,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12447968, 12450640, 12449376, 12234080, 12620528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -119897,13 +119897,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -119911,39 +119911,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -119957,33 +119957,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -120011,9 +120011,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -120021,24 +120021,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -120106,32 +120106,32 @@ }, { "type_name": "CInfoFan", - "vtable_address": 63262376, + "vtable_address": 63266280, "methods": [ 12604160, 13066000, 13066160, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13060480, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13094960, - 21128960, - 21133440, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -120141,23 +120141,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055984, 13060640, 13056816, 12234080, 13081232, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -120174,13 +120174,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -120188,39 +120188,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -120234,33 +120234,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -120288,9 +120288,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -120298,24 +120298,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -120370,32 +120370,32 @@ }, { "type_name": "CInfoOffscreenPanoramaTexture", - "vtable_address": 63123688, + "vtable_address": 63127592, "methods": [ 12604160, 12337280, 12340032, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, 12327088, 12257408, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -120405,23 +120405,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12236672, 12243376, 12240592, 12234080, 12274976, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -120438,13 +120438,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -120452,39 +120452,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, + 20586576, + 20583008, + 20903888, + 20574880, 12302096, - 20623632, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -120498,33 +120498,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12359536, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -120552,9 +120552,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -120562,24 +120562,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -120635,32 +120635,32 @@ }, { "type_name": "CInfoParticleTarget", - "vtable_address": 63211000, + "vtable_address": 63214904, "methods": [ 12604160, 12971264, 12971296, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12970368, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -120670,23 +120670,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968528, 12975024, 12971504, 12234080, 12620528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -120703,13 +120703,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -120717,39 +120717,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12974960, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -120763,33 +120763,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -120817,9 +120817,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -120827,24 +120827,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -120899,32 +120899,32 @@ }, { "type_name": "CInfoTarget", - "vtable_address": 63209232, + "vtable_address": 63213136, "methods": [ 12604160, 12971168, 12971200, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12978848, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -120934,23 +120934,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968512, 12975024, 12971488, 12234080, 12620528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -120967,13 +120967,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -120981,39 +120981,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12978912, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -121027,33 +121027,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -121081,9 +121081,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -121091,24 +121091,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -121163,33 +121163,33 @@ }, { "type_name": "CInfoWorldLayer", - "vtable_address": 63214536, + "vtable_address": 63218440, "methods": [ 13042352, 12984592, 12985472, 12884160, - 39987824, + 39991728, 12973680, - 21124256, + 21127072, 13006448, - 21132352, - 21132672, - 21132336, - 21128672, + 21135168, + 21135488, + 21135152, + 21131488, 12985232, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -121198,23 +121198,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968560, 13055344, 12971536, 12234080, 12996656, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -121231,13 +121231,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -121245,39 +121245,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12970624, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, + 20586576, + 20583008, + 20903888, + 20574880, 12988432, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -121291,33 +121291,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -121345,9 +121345,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -121355,24 +121355,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -121416,17 +121416,17 @@ }, { "type_name": "CInstancedResponseSystem", - "vtable_address": 64012088, + "vtable_address": 64015992, "methods": [ - 18544592, - 18544640, - 18513536, - 18506384, - 18528832, - 18506400, - 18531696, - 18506432, - 18506416 + 18546896, + 18546944, + 18515840, + 18508688, + 18531136, + 18508704, + 18534000, + 18508736, + 18508720 ], "bases": [ { @@ -121448,46 +121448,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 64128048, + "vtable_address": 64131952, "methods": [ - 20616112, - 20616688, - 20573392, - 20586448, - 20586544, - 20623856, - 20596256, - 20586656, - 21049152, - 20949136, - 20624448, + 20618928, + 20619504, + 20576208, + 20589264, + 20589360, + 20626672, + 20599072, + 20589472, + 21051968, + 20951952, + 20627264, 12577856, - 20575936, - 20575312, + 20578752, + 20578128, 12816416, - 20575328, - 20575360, - 21047152, - 20575376, + 20578144, + 20578176, + 21049968, + 20578192, 12576288, 12600560, - 20613872, - 20575520, - 20591936, - 20586608, - 20579472, + 20616688, + 20578336, + 20594752, + 20589424, + 20582288, 12705920, - 20822336, - 20949024, - 20575536, - 21117792, - 21117776, - 20575552, - 20587664, - 20586912, - 20575568, - 20575584, - 20587408, + 20825152, + 20951840, + 20578352, + 21120608, + 21120592, + 20578368, + 20590480, + 20589728, + 20578384, + 20578400, + 20590224, 12576304 ], "bases": [ @@ -121543,46 +121543,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 64008104, - "methods": [ - 18557424, - 18558352, - 18508928, - 18521120, - 18521216, - 18565728, - 18531920, - 18521328, - 18832640, - 18779936, - 18569664, + "vtable_address": 64012008, + "methods": [ + 18559728, + 18560656, + 18511232, + 18523424, + 18523520, + 18568032, + 18534224, + 18523632, + 18835456, + 18782752, + 18571968, 12242992, - 18515296, - 18511264, + 18517600, + 18513568, 12385312, - 18511280, - 18511312, - 18825520, - 18511328, + 18513584, + 18513616, + 18828336, + 18513632, 12238160, 12262528, - 18558944, - 18511472, - 18527296, - 18521280, - 18516368, + 18561248, + 18513776, + 18529600, + 18523584, + 18518672, 12327392, - 18720576, - 18779824, - 18511488, - 18910976, - 18910960, - 18511504, - 18522256, - 18521408, - 18511520, - 18511536, - 18522128, + 18723392, + 18782640, + 18513792, + 18913792, + 18913776, + 18513808, + 18524560, + 18523712, + 18513824, + 18513840, + 18524432, 12238176 ], "bases": [ @@ -121638,47 +121638,47 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 64206448, - "methods": [ - 21838480, - 21838768, - 21817312, - 21825200, - 21825344, - 21830416, - 21830896, - 21825120, - 22023680, - 22014432, - 21837120, - 21818224, - 21821616, - 21817328, - 22021664, - 21817344, - 21817376, - 22014528, - 21817392, - 21817536, - 21825792, - 21830352, - 21817552, - 21829824, - 21825296, - 21820896, - 21920448, - 21920960, - 22014320, - 21817568, - 22028896, - 22028912, - 21817584, - 21825408, - 21825536, - 21817600, - 21817616, - 21825664, - 21817632 + "vtable_address": 64210352, + "methods": [ + 21841296, + 21841584, + 21820144, + 21828016, + 21828160, + 21833232, + 21833712, + 21827936, + 22026496, + 22017312, + 21839936, + 21821056, + 21824448, + 21820160, + 22024480, + 21820176, + 21820208, + 22017408, + 21820224, + 21820368, + 21828608, + 21833168, + 21820384, + 21832640, + 21828112, + 21823728, + 21923328, + 21923840, + 22017200, + 21820400, + 22031712, + 22031728, + 21820416, + 21828224, + 21828352, + 21820432, + 21820448, + 21828480, + 21820464 ], "bases": [ { @@ -121733,47 +121733,47 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 64085784, - "methods": [ - 19900096, - 19900384, - 19876960, - 19883200, - 19883296, - 19884000, - 19891248, - 19883120, - 20029120, - 20022512, - 19898560, - 18121344, - 19878496, - 19877408, - 18286464, - 19877424, - 19877456, - 20029904, - 19877472, - 18120528, - 18125696, - 19887984, - 19877616, - 19886896, - 19883360, - 19878912, - 18223520, - 19988224, - 20022400, - 19877632, - 20068768, - 20068752, - 19877648, - 19883536, - 19883408, - 19877664, - 19877680, - 19883664, - 18120544 + "vtable_address": 64089688, + "methods": [ + 19902912, + 19903200, + 19879776, + 19886016, + 19886112, + 19886816, + 19894064, + 19885936, + 20031936, + 20025328, + 19901376, + 18123648, + 19881312, + 19880224, + 18288768, + 19880240, + 19880272, + 20032720, + 19880288, + 18122832, + 18128000, + 19890800, + 19880432, + 19889712, + 19886176, + 19881728, + 18225824, + 19991040, + 20025216, + 19880448, + 20071584, + 20071568, + 19880464, + 19886352, + 19886224, + 19880480, + 19880496, + 19886480, + 18122848 ], "bases": [ { @@ -121828,47 +121828,47 @@ }, { "type_name": "CInterpolatedVar >", - "vtable_address": 63980904, - "methods": [ - 17965680, - 17966064, - 17952016, + "vtable_address": 63984808, + "methods": [ + 17967984, + 17968368, + 17954320, + 17957936, + 17958032, + 17958960, + 17963408, + 17957696, + 18073856, + 17978928, + 17965696, 17955632, + 17955552, + 17954736, + 18069920, + 17954752, + 17954784, + 18071920, + 17954800, + 17954336, + 17961248, + 17961328, + 17954944, + 17960912, + 17958096, 17955728, - 17956656, - 17961104, - 17955392, - 18071552, - 17976624, - 17963392, - 17953328, - 17953248, - 17952432, - 18067616, - 17952448, - 17952480, - 18069616, - 17952496, - 17952032, - 17958944, - 17959024, - 17952640, - 17958608, - 17955792, - 17953424, - 18003840, - 18004736, - 17976336, - 17952656, - 18097888, - 18097872, - 17952672, - 17956400, - 17956272, - 17952688, - 17952704, - 17956528, - 17952048 + 18006144, + 18007040, + 17978640, + 17954960, + 18100192, + 18100176, + 17954976, + 17958704, + 17958576, + 17954992, + 17955008, + 17958832, + 17954352 ], "bases": [ { @@ -121923,47 +121923,47 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 64128952, - "methods": [ - 20616400, + "vtable_address": 64132856, + "methods": [ + 20619216, + 20619776, + 20576192, + 20589552, + 20589856, + 20590608, + 20599296, + 20589648, + 20977344, + 20968368, 20616960, - 20573376, - 20586736, - 20587040, - 20587792, - 20596480, - 20586832, - 20974528, - 20965552, - 20614144, - 20576064, - 20575856, - 20575024, - 20972512, - 20575040, - 20575072, - 20966880, - 20575088, - 20573408, - 20592944, - 20593184, - 20575232, - 20591984, - 20587104, - 20578752, - 20796352, - 20823008, - 20965440, - 20575248, - 21109536, - 21109552, - 20575264, - 20587280, - 20587152, - 20575280, - 20575296, - 20587536, - 20573424 + 20578880, + 20578672, + 20577840, + 20975328, + 20577856, + 20577888, + 20969696, + 20577904, + 20576224, + 20595760, + 20596000, + 20578048, + 20594800, + 20589920, + 20581568, + 20799168, + 20825824, + 20968256, + 20578064, + 21112352, + 21112368, + 20578080, + 20590096, + 20589968, + 20578096, + 20578112, + 20590352, + 20576240 ], "bases": [ { @@ -122018,47 +122018,47 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 63755056, - "methods": [ - 17305072, - 17305360, - 17288064, + "vtable_address": 63758960, + "methods": [ + 17307376, + 17307664, + 17290368, + 17296880, + 17297056, + 17297776, + 17301328, + 17296976, + 17404288, + 17318048, + 17305344, + 17292528, + 17298176, + 17290784, + 17402272, + 17290800, + 17290832, + 17405072, + 17290848, + 17290384, + 17297968, + 17299456, + 17290992, + 17298896, + 17297120, 17294576, - 17294752, - 17295472, - 17299024, - 17294672, - 17401984, - 17315744, - 17303040, - 17290224, - 17295872, - 17288480, - 17399968, - 17288496, - 17288528, - 17402768, - 17288544, - 17288080, - 17295664, - 17297152, - 17288688, - 17296592, - 17294816, - 17292272, - 17344768, - 17345280, - 17315456, - 17288704, - 17433824, - 17433808, - 17288720, - 17295216, - 17295088, - 17288736, - 17288752, - 17295344, - 17288096 + 17347072, + 17347584, + 17317760, + 17291008, + 17436128, + 17436112, + 17291024, + 17297520, + 17297392, + 17291040, + 17291056, + 17297648, + 17290400 ], "bases": [ { @@ -122113,7 +122113,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64114848, + "vtable_address": 64118752, "methods": [], "bases": [ { @@ -122135,7 +122135,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64115504, + "vtable_address": 64119408, "methods": [], "bases": [ { @@ -122157,7 +122157,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64114192, + "vtable_address": 64118096, "methods": [], "bases": [ { @@ -122179,7 +122179,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64127720, + "vtable_address": 64131624, "methods": [], "bases": [ { @@ -122201,7 +122201,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64007776, + "vtable_address": 64011680, "methods": [], "bases": [ { @@ -122223,7 +122223,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64206120, + "vtable_address": 64210024, "methods": [], "bases": [ { @@ -122245,7 +122245,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 63151936, + "vtable_address": 63155840, "methods": [], "bases": [ { @@ -122267,7 +122267,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64099776, + "vtable_address": 64103680, "methods": [], "bases": [ { @@ -122289,7 +122289,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64085456, + "vtable_address": 64089360, "methods": [], "bases": [ { @@ -122311,7 +122311,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64009024, + "vtable_address": 64012928, "methods": [], "bases": [ { @@ -122333,7 +122333,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64074448, + "vtable_address": 64078352, "methods": [], "bases": [ { @@ -122355,7 +122355,7 @@ }, { "type_name": "CInterpolatedVarArrayBase, false, false, CGlobalInterpolationLerpFuncs > >", - "vtable_address": 63980576, + "vtable_address": 63984480, "methods": [], "bases": [ { @@ -122377,7 +122377,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64128624, + "vtable_address": 64132528, "methods": [], "bases": [ { @@ -122399,7 +122399,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 63754728, + "vtable_address": 63758632, "methods": [], "bases": [ { @@ -122421,7 +122421,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 64075104, + "vtable_address": 64079008, "methods": [], "bases": [ { @@ -122443,10 +122443,10 @@ }, { "type_name": "CInterpolatedVarAutoCompletionFunctor", - "vtable_address": 64132944, + "vtable_address": 64136848, "methods": [ - 20955168, - 21065568 + 20957984, + 21068384 ], "bases": [ { @@ -122478,9 +122478,9 @@ }, { "type_name": "CInterpolatedVarAutoCompletionFunctor", - "vtable_address": 64132976, + "vtable_address": 64136880, "methods": [ - 21067856 + 21070672 ], "bases": [ { @@ -122512,47 +122512,47 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 64115176, - "methods": [ - 20204496, - 20205376, - 20150112, - 20172368, - 20172464, - 20197536, - 20194272, - 20171504, - 20448384, - 20419936, - 20202112, - 20149168, - 20197920, - 20139424, - 20446368, - 20139440, - 20139472, - 20420032, - 20139488, - 20139632, - 20192656, - 20195488, - 20139648, - 20193824, - 20172528, - 20206176, - 20280864, - 20284288, - 20419824, - 20139664, - 20455936, - 20455920, - 20139680, - 20139744, - 20139760, - 20139776, - 20139824, - 20173040, - 20139840 + "vtable_address": 64119080, + "methods": [ + 20207312, + 20208192, + 20152928, + 20175184, + 20175280, + 20200352, + 20197088, + 20174320, + 20451200, + 20422752, + 20204928, + 20151984, + 20200736, + 20142240, + 20449184, + 20142256, + 20142288, + 20422848, + 20142304, + 20142448, + 20195472, + 20198304, + 20142464, + 20196640, + 20175344, + 20208992, + 20283680, + 20287104, + 20422640, + 20142480, + 20458752, + 20458736, + 20142496, + 20142560, + 20142576, + 20142592, + 20142640, + 20175856, + 20142656 ], "bases": [ { @@ -122607,47 +122607,47 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 64114520, - "methods": [ - 20223392, - 20223904, - 20221136, - 20171136, - 20171232, - 20197008, - 20194496, - 20171424, - 20308416, - 20294976, - 20221760, - 20149216, + "vtable_address": 64118424, + "methods": [ 20226208, - 20139856, - 20306368, - 20139872, - 20139904, - 20295664, - 20139920, - 20138816, - 20192944, - 20195168, - 20140064, - 20193728, - 20171296, - 20224416, - 20281376, - 20283616, - 20294864, - 20140080, - 20461248, - 20461232, - 20140096, - 20140160, - 20140176, - 20140192, - 20140240, - 20172912, - 20138848 + 20226720, + 20223952, + 20173952, + 20174048, + 20199824, + 20197312, + 20174240, + 20311232, + 20297792, + 20224576, + 20152032, + 20229024, + 20142672, + 20309184, + 20142688, + 20142720, + 20298480, + 20142736, + 20141632, + 20195760, + 20197984, + 20142880, + 20196544, + 20174112, + 20227232, + 20284192, + 20286432, + 20297680, + 20142896, + 20464064, + 20464048, + 20142912, + 20142976, + 20142992, + 20143008, + 20143056, + 20175728, + 20141664 ], "bases": [ { @@ -122702,7 +122702,7 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 63152264, + "vtable_address": 63156168, "methods": [ 12466400, 12466688, @@ -122797,47 +122797,47 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 64100104, - "methods": [ - 20204208, - 20204960, - 20148560, - 20172576, - 20172672, - 20196752, - 20194720, - 20171344, - 20469120, - 20425376, - 20200384, - 20149264, - 20198416, - 20143648, - 20467072, - 20143664, - 20143696, - 20425472, - 20143712, - 20143856, - 20185952, - 20195648, - 20143872, - 20193632, - 20172736, - 20149312, - 20281888, - 20282944, - 20425264, - 20143888, - 20474848, - 20474832, - 20143904, - 20143968, - 20143984, - 20144000, - 20144048, - 20172784, - 20144064 + "vtable_address": 64104008, + "methods": [ + 20207024, + 20207776, + 20151376, + 20175392, + 20175488, + 20199568, + 20197536, + 20174160, + 20471936, + 20428192, + 20203200, + 20152080, + 20201232, + 20146464, + 20469888, + 20146480, + 20146512, + 20428288, + 20146528, + 20146672, + 20188768, + 20198464, + 20146688, + 20196448, + 20175552, + 20152128, + 20284704, + 20285760, + 20428080, + 20146704, + 20477664, + 20477648, + 20146720, + 20146784, + 20146800, + 20146816, + 20146864, + 20175600, + 20146880 ], "bases": [ { @@ -122892,47 +122892,47 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 64075432, - "methods": [ - 19434592, - 19438128, - 19367008, - 19382848, - 19382992, - 19402048, - 19395536, - 19381712, - 19852992, - 19844096, - 19430912, - 19367904, - 19404672, - 19364320, - 19850976, - 19364336, - 19364368, - 19845296, - 19364384, - 19364528, - 19389648, - 19397904, - 19364544, - 19395200, - 19382944, - 19369120, - 19589472, - 19599840, - 19843984, - 19364560, - 19857504, - 19857488, - 19364576, - 19364640, - 19364656, - 19364672, - 19364720, - 19383184, - 19364736 + "vtable_address": 64079336, + "methods": [ + 19437408, + 19440944, + 19369824, + 19385664, + 19385808, + 19404864, + 19398352, + 19384528, + 19855808, + 19846912, + 19433728, + 19370720, + 19407488, + 19367136, + 19853792, + 19367152, + 19367184, + 19848112, + 19367200, + 19367344, + 19392464, + 19400720, + 19367360, + 19398016, + 19385760, + 19371936, + 19592288, + 19602656, + 19846800, + 19367376, + 19860320, + 19860304, + 19367392, + 19367456, + 19367472, + 19367488, + 19367536, + 19386000, + 19367552 ], "bases": [ { @@ -122987,7 +122987,7 @@ }, { "type_name": "CInterpolatedVarProceduralBase >", - "vtable_address": 64115832, + "vtable_address": 64119736, "methods": [], "bases": [ { @@ -123020,7 +123020,7 @@ }, { "type_name": "CInterpolatedVarProceduralBase >", - "vtable_address": 64254528, + "vtable_address": 64258432, "methods": [], "bases": [ { @@ -123053,7 +123053,7 @@ }, { "type_name": "CInterpolatedVarProceduralBase, false, false, CGlobalInterpolationLerpFuncs > >", - "vtable_address": 64250760, + "vtable_address": 64254664, "methods": [], "bases": [ { @@ -123086,7 +123086,7 @@ }, { "type_name": "CInterpolatedVarProceduralBase >", - "vtable_address": 64254856, + "vtable_address": 64258760, "methods": [], "bases": [ { @@ -123119,47 +123119,47 @@ }, { "type_name": "CInterpolatedVarProceduralUsingOwnerLerp", - "vtable_address": 64116160, - "methods": [ - 20287744, - 20287760, - 20199520, - 20172160, - 20172256, - 20197264, - 20194944, - 20171584, - 20434432, - 20416944, - 20379712, - 20149120, - 20229776, - 20138976, - 20432416, - 20138992, - 20139024, - 20417040, - 20139040, - 20139184, - 20192800, - 20195328, - 20139200, - 20193920, - 20172320, - 20312160, - 20280352, - 20284960, - 20416832, - 20139216, - 20440320, - 20440304, - 20139232, - 20139296, - 20139312, - 20139328, - 20139376, - 20173168, - 20139392 + "vtable_address": 64120064, + "methods": [ + 20290560, + 20290576, + 20202336, + 20174976, + 20175072, + 20200080, + 20197760, + 20174400, + 20437248, + 20419760, + 20382528, + 20151936, + 20232592, + 20141792, + 20435232, + 20141808, + 20141840, + 20419856, + 20141856, + 20142000, + 20195616, + 20198144, + 20142016, + 20196736, + 20175136, + 20314976, + 20283168, + 20287776, + 20419648, + 20142032, + 20443136, + 20443120, + 20142048, + 20142112, + 20142128, + 20142144, + 20142192, + 20175984, + 20142208 ], "bases": [ { @@ -123225,47 +123225,47 @@ }, { "type_name": "CInterpolatedVarProceduralUsingOwnerLerp", - "vtable_address": 64009352, - "methods": [ - 18559936, - 18560304, - 18511936, - 18521792, - 18521936, - 18537936, - 18532144, - 18520080, - 18898880, - 18889888, - 18554496, - 18513696, - 18541504, - 18510816, - 18896832, - 18510832, - 18510864, - 18889984, - 18510880, - 18511024, - 18527344, - 18535872, - 18511040, - 18531472, - 18521888, - 18515648, - 18715648, - 18721248, - 18889776, - 18511056, - 18904928, - 18904912, - 18511072, - 18511136, - 18511152, - 18511168, - 18511216, - 18522000, - 18511232 + "vtable_address": 64013256, + "methods": [ + 18562240, + 18562608, + 18514240, + 18524096, + 18524240, + 18540240, + 18534448, + 18522384, + 18901696, + 18892704, + 18556800, + 18516000, + 18543808, + 18513120, + 18899648, + 18513136, + 18513168, + 18892800, + 18513184, + 18513328, + 18529648, + 18538176, + 18513344, + 18533776, + 18524192, + 18517952, + 18718496, + 18724064, + 18892592, + 18513360, + 18907744, + 18907728, + 18513376, + 18513440, + 18513456, + 18513472, + 18513520, + 18524304, + 18513536 ], "bases": [ { @@ -123331,47 +123331,47 @@ }, { "type_name": "CInterpolatedVarProceduralUsingOwnerLerp", - "vtable_address": 64074776, - "methods": [ - 19434880, - 19438416, - 19375936, - 19381152, - 19381088, - 19401776, - 19395760, - 19380960, - 19634688, - 19606688, - 19446336, + "vtable_address": 64078680, + "methods": [ + 19437696, + 19441232, + 19378752, + 19383968, + 19383904, + 19404592, + 19398576, + 19383776, + 19637504, + 19609504, + 19449152, + 19370672, + 19557792, + 19367568, + 19635488, + 19367584, + 19367616, + 19616656, + 19367632, + 19366640, + 19392608, + 19400560, + 19367776, + 19397920, + 19383856, + 19372656, + 19591776, + 19601984, + 19609392, + 19591744, + 19865312, + 19865296, + 19367792, 19367856, - 19554976, - 19364752, - 19632672, - 19364768, - 19364800, - 19613840, - 19364816, - 19363824, - 19389792, - 19397744, - 19364960, - 19395104, - 19381040, - 19369840, - 19588960, - 19599168, - 19606576, - 19588928, - 19862496, - 19862480, - 19364976, - 19365040, - 19365056, - 19365072, - 19365120, - 19383056, - 19365136 + 19367872, + 19367888, + 19367936, + 19385872, + 19367952 ], "bases": [ { @@ -123437,7 +123437,7 @@ }, { "type_name": "CInventoryItemUpdateManager", - "vtable_address": 64582616, + "vtable_address": 64586520, "methods": [ 12204192, 12204208, @@ -123495,13 +123495,13 @@ 12205040, 12205056, 12205072, - 27278944, + 27282112, 12205104, - 27278928, - 27313104, - 27313232, - 27278912, - 27332352 + 27282096, + 27316272, + 27316400, + 27282080, + 27335552 ], "bases": [ { @@ -123534,21 +123534,21 @@ }, { "type_name": "CInventoryManager", - "vtable_address": 64583232, + "vtable_address": 64587136, "methods": [ - 27290656, - 27293120, - 27280144, + 27293824, + 27296288, + 27283312, 12204240, 12204256, 12204272, 12204288, 12204304, - 27311120, + 27314288, 12204336, 12204352, 12204368, - 27293152, + 27296320, 12204400, 12204416, 12204432, @@ -123627,10 +123627,10 @@ }, { "type_name": "CIronSightSceneObject", - "vtable_address": 63952712, + "vtable_address": 63956616, "methods": [ - 17709936, - 17710176, + 17712240, + 17712480, 12011888, 12011520 ], @@ -123654,20 +123654,20 @@ }, { "type_name": "CIronSightSceneObjectDescriptor", - "vtable_address": 63952760, + "vtable_address": 63956664, "methods": [ 12011536, - 17774544, + 17776848, 12011568, 12011584, 12019328, - 17709968, + 17712272, 12011600, 12011616, 12011632, 12011648, 12011664, - 17709296, + 17711600, 12011696, 12011712, 12011728, @@ -123678,7 +123678,7 @@ 12011808, 12011824, 12011840, - 17710016 + 17712320 ], "bases": [ { @@ -123711,7 +123711,7 @@ }, { "type_name": "CItemGeneration", - "vtable_address": 64575240, + "vtable_address": 64579144, "methods": [ 12204192, 12204208, @@ -123769,12 +123769,12 @@ 12205040, 12205056, 12205072, - 27279344, + 27282512, 12205104, - 27279328, - 27290176, - 27290192, - 27279312 + 27282496, + 27293344, + 27293360, + 27282480 ], "bases": [ { @@ -123807,35 +123807,35 @@ }, { "type_name": "CItemImagePanel", - "vtable_address": 64402200, + "vtable_address": 64406104, "methods": [ 12043984, - 59816784, - 23621504, - 23621520, - 60356752, - 59817136, - 59817120, - 60334880, - 60343568, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 23624256, + 23624272, + 60360656, + 59821040, + 59821024, + 60338784, + 60347472, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60344048, - 23761904, + 59821792, + 59821808, + 59820704, + 60347952, + 23764656, 12233664, 12233696, 12233680, @@ -123844,16 +123844,16 @@ 12233648, 12233632, 12233264, - 60334432, + 60338336, 12399392, 12233312, - 60341696, - 23896448, - 59825616, - 59825216, - 59836080, + 60345600, + 23899200, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -123863,35 +123863,35 @@ 12233472, 12233488, 12233504, - 23896976, - 23897056, + 23899728, + 23899808, 12233520, 12233296, 12233760, - 59835792, - 23621488, - 23629232, - 23635360, + 59839696, + 23624240, + 23631984, + 23638112, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 60354912, - 23629216, - 60356064, + 60358816, + 23631968, + 60359968, 12233360, 12233536, 12233552, 12233568, 12233584, - 60355472, + 60359376, 12233728, 12233744 ], @@ -123937,7 +123937,7 @@ }, { "type_name": "CItemSelectionCriteria::CCondition", - "vtable_address": 64600632, + "vtable_address": 64604536, "methods": [], "bases": [], "model": { @@ -123948,14 +123948,14 @@ }, { "type_name": "CItemSelectionCriteria::CFloatCondition", - "vtable_address": 64600568, + "vtable_address": 64604472, "methods": [ - 28025920, - 28025968, - 28041120, - 28024048, - 28024080, - 28027616 + 28029184, + 28029232, + 28044384, + 28027312, + 28027344, + 28030880 ], "bases": [ { @@ -123977,14 +123977,14 @@ }, { "type_name": "CItemSelectionCriteria::CSetCondition", - "vtable_address": 64600504, + "vtable_address": 64604408, "methods": [ - 28026032, - 28032976, - 28040256, - 28024048, - 28024080, - 28030368 + 28029296, + 28036240, + 28043520, + 28027312, + 28027344, + 28033632 ], "bases": [ { @@ -124006,14 +124006,14 @@ }, { "type_name": "CItemSelectionCriteria::CStringCondition", - "vtable_address": 64600440, + "vtable_address": 64604344, "methods": [ - 28036768, - 28036928, - 28039792, - 28024048, - 28024096, - 28037088 + 28040032, + 28040192, + 28043056, + 28027312, + 28027360, + 28040352 ], "bases": [ { @@ -124035,35 +124035,35 @@ }, { "type_name": "CJSDelayLoadList", - "vtable_address": 64433120, + "vtable_address": 64437024, "methods": [ 12043984, - 59816784, - 24074064, - 24074080, - 59817120, - 60140368, - 60135600, - 60138208, - 60141232, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 24076816, + 24076832, + 59821024, + 60144272, + 60139504, + 60142112, + 60145136, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60144912, - 59823152, + 59821792, + 59821808, + 59820704, + 60148816, + 59827056, 12233664, 12233696, 12233680, @@ -124076,12 +124076,12 @@ 12399392, 12233312, 12233168, - 24170256, - 59825616, - 59825216, - 59836080, + 24173008, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -124091,35 +124091,35 @@ 12233472, 12233488, 12233504, - 60131760, - 60135600, + 60135664, + 60139504, 12233520, 12233296, 12233760, - 59835792, - 24074048, - 24078528, - 24083744, + 59839696, + 24076800, + 24081280, + 24086496, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -124165,12 +124165,12 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 64062344, + "vtable_address": 64066248, "methods": [ - 19467888, - 19402304, - 19391648, - 19391488 + 19470704, + 19405120, + 19394464, + 19394304 ], "bases": [ { @@ -124222,9 +124222,9 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 64062392, + "vtable_address": 64066296, "methods": [ - 19402464 + 19405280 ], "bases": [ { @@ -124276,10 +124276,10 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 64062416, + "vtable_address": 64066320, "methods": [ - 19411200, - 19411328 + 19414016, + 19414144 ], "bases": [ { @@ -124331,12 +124331,12 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 64062240, + "vtable_address": 64066144, "methods": [ - 19448288, - 19403968, - 19358720, - 19358752 + 19451104, + 19406784, + 19361536, + 19361568 ], "bases": [ { @@ -124388,9 +124388,9 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 64062288, + "vtable_address": 64066192, "methods": [ - 19404480 + 19407296 ], "bases": [ { @@ -124442,10 +124442,10 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 64062312, + "vtable_address": 64066216, "methods": [ - 19392304, - 19392240 + 19395120, + 19395056 ], "bases": [ { @@ -124497,21 +124497,21 @@ }, { "type_name": "CKV3MemberNameWithStorage", - "vtable_address": 64828536, + "vtable_address": 64832440, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66115936 + "offset_to_top": 66119840 } } }, { "type_name": "CKV3ResourceBlockHelper", - "vtable_address": 65040224, + "vtable_address": 65044128, "methods": [ - 61098528, - 61098608 + 61102432, + 61102512 ], "bases": [ { @@ -124533,7 +124533,7 @@ }, { "type_name": "CKV3ResourceTypeManager<(unsigned long long)8386104310780355446>", - "vtable_address": 65040208, + "vtable_address": 65044112, "methods": [], "bases": [ { @@ -124555,7 +124555,7 @@ }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 64631936, + "vtable_address": 64635840, "methods": [], "bases": [ { @@ -124571,17 +124571,17 @@ ], "model": { "Itanium": { - "offset_to_top": 9420656 + "offset_to_top": 9420720 } } }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 64631952, + "vtable_address": 64635856, "methods": [ - 29107984, + 29111824, 12006480, - 29107648, + 29111488, 12006432, 12006448, 12006464 @@ -124606,7 +124606,7 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Load_NoOp", - "vtable_address": 64846760, + "vtable_address": 64850664, "methods": [ 12979120 ], @@ -124630,7 +124630,7 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Save_NoOp", - "vtable_address": 64846736, + "vtable_address": 64850640, "methods": [ 12977104 ], @@ -124654,12 +124654,12 @@ }, { "type_name": "CKV3TransferLoadContext", - "vtable_address": 64632016, + "vtable_address": 64635920, "methods": [ - 29107984, + 29111824, 12006480, - 29107648, - 29107664, + 29111488, + 29111504, 12006448, 12006464 ], @@ -124694,11 +124694,11 @@ }, { "type_name": "CKV3TransferSaveContext", - "vtable_address": 63162144, + "vtable_address": 63166048, "methods": [ - 29107984, + 29111824, 12006480, - 29107648, + 29111488, 12006432, 12006448, 12006464 @@ -124734,9 +124734,9 @@ }, { "type_name": "CKV3Transfer_AssertAlreadyLoadedResourceLoadInterface", - "vtable_address": 64027144, + "vtable_address": 64031048, "methods": [ - 18980752 + 18983568 ], "bases": [ { @@ -124769,12 +124769,12 @@ }, { "type_name": "CKV3Transfer_EmptyResourceLoadInterface", - "vtable_address": 64782240, + "vtable_address": 64786144, "methods": [ - 33184400, - 33182704, - 33184272, - 33182752 + 33188240, + 33186544, + 33188112, + 33186592 ], "bases": [ { @@ -124796,9 +124796,9 @@ }, { "type_name": "CKV3Transfer_ResourceLoadInterface", - "vtable_address": 64825728, + "vtable_address": 64829632, "methods": [ - 39300976 + 39304816 ], "bases": [ { @@ -124820,7 +124820,7 @@ }, { "type_name": "CKV3Transfer_UtlSymbolLargeInterface >", - "vtable_address": 63328928, + "vtable_address": 63332832, "methods": [ 13803072 ], @@ -124844,11 +124844,11 @@ }, { "type_name": "CKeyBindingListenerMgr", - "vtable_address": 64180232, + "vtable_address": 64184136, "methods": [ - 21462688, - 21519568, - 21463040 + 21465504, + 21522384, + 21465856 ], "bases": [ { @@ -124870,9 +124870,9 @@ }, { "type_name": "CKeychainClutchRenderAttribCallback", - "vtable_address": 63787936, + "vtable_address": 63791840, "methods": [ - 17632240 + 17634544 ], "bases": [ { @@ -124894,9 +124894,9 @@ }, { "type_name": "CKeychainHeadshotRenderAttribCallback", - "vtable_address": 63787960, + "vtable_address": 63791864, "methods": [ - 17633184 + 17635488 ], "bases": [ { @@ -124918,7 +124918,7 @@ }, { "type_name": "CKillProcessIfItTakesTooLong", - "vtable_address": 63170728, + "vtable_address": 63174632, "methods": [ 12590496, 12590960 @@ -124932,22 +124932,22 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 64775528, + "vtable_address": 64779432, "methods": [ - 32907968, - 32908160, - 32907904, - 32907920, - 32907952, + 32911808, + 32912000, + 32911744, + 32911760, + 32911792, 13215984, 13216000, - 32908320, - 32908064, - 32916720, - 32914992, - 32912560, - 32913936, - 32920256 + 32912160, + 32911904, + 32920560, + 32918832, + 32916400, + 32917776, + 32924096 ], "bases": [ { @@ -124990,17 +124990,17 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 64775656, + "vtable_address": 64779560, "methods": [ - 32908016, - 32908224, - 32916752, - 32915040, - 32912704, - 32914096, - 32920432, - 32909056, - 32909408 + 32911856, + 32912064, + 32920592, + 32918880, + 32916544, + 32917936, + 32924272, + 32912896, + 32913248 ], "bases": [ { @@ -125043,9 +125043,9 @@ }, { "type_name": "CLateWarpGetUpdatedMatricesCallback", - "vtable_address": 64624416, + "vtable_address": 64628320, "methods": [ - 28340576 + 28343968 ], "bases": [ { @@ -125067,11 +125067,11 @@ }, { "type_name": "CLateWarpRenderer", - "vtable_address": 64624440, + "vtable_address": 64628344, "methods": [ - 28354848, - 28332944, - 28334192, + 28358240, + 28336336, + 28337584, 12236576 ], "bases": [ @@ -125094,7 +125094,7 @@ }, { "type_name": "CLeaderboardDataCache", - "vtable_address": 63500704, + "vtable_address": 63504608, "methods": [ 14630496, 14620976, @@ -125125,7 +125125,7 @@ }, { "type_name": "CLeaderboardHandleCache", - "vtable_address": 63500544, + "vtable_address": 63504448, "methods": [ 14607488, 14596336, @@ -125156,7 +125156,7 @@ }, { "type_name": "CLeaderboardPerUserDataCache", - "vtable_address": 63500864, + "vtable_address": 63504768, "methods": [ 14631936, 14601904, @@ -125187,7 +125187,7 @@ }, { "type_name": "CLegacyCollisionData", - "vtable_address": 63338952, + "vtable_address": 63342856, "methods": [ 13820304, 13820336, @@ -125213,45 +125213,45 @@ }, { "type_name": "CLegacyGameUI", - "vtable_address": 64373368, - "methods": [ - 23501824, - 23501968, - 23498384, - 23520640, - 23506464, - 23498400, - 23500608, - 23498416, - 23498656, - 23498432, - 23498448, - 23501216, - 23503472, - 23519040, - 23525824, - 23515456, - 23515680, - 23515920, - 23516208, - 23520144, - 23497920, - 23497904, - 23497952, - 23512016, - 23497936, - 23497920, - 23498000, - 23497984, - 23510816, - 23510992, - 23510752, - 23527120, - 23526624, - 23497968, - 23497968, - 23499328, - 23500800 + "vtable_address": 64377272, + "methods": [ + 23504576, + 23504720, + 23501136, + 23523392, + 23509216, + 23501152, + 23503360, + 23501168, + 23501408, + 23501184, + 23501200, + 23503968, + 23506224, + 23521792, + 23528576, + 23518208, + 23518432, + 23518672, + 23518960, + 23522896, + 23500672, + 23500656, + 23500704, + 23514768, + 23500688, + 23500672, + 23500752, + 23500736, + 23513568, + 23513744, + 23513504, + 23529872, + 23529376, + 23500720, + 23500720, + 23502080, + 23503552 ], "bases": [ { @@ -125350,7 +125350,7 @@ }, { "type_name": "CLightComponent", - "vtable_address": 63153120, + "vtable_address": 63157024, "methods": [ 12449360, 12447936, @@ -125386,7 +125386,7 @@ }, { "type_name": "CLightQueryGameSystem", - "vtable_address": 63329592, + "vtable_address": 63333496, "methods": [ 12204192, 12204208, @@ -125471,10 +125471,10 @@ }, { "type_name": "CLightStyle", - "vtable_address": 64382232, + "vtable_address": 64386136, "methods": [ 12446976, - 23578848 + 23581600 ], "bases": [ { @@ -125496,35 +125496,35 @@ }, { "type_name": "CLineGraph", - "vtable_address": 64511864, + "vtable_address": 64515768, "methods": [ 12043984, - 59816784, - 25284208, - 25284224, - 60674208, - 59817136, - 59817120, + 59820688, + 25287216, + 25287232, + 60678112, + 59821040, + 59821024, 12233600, - 25430128, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 25433136, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -125537,12 +125537,12 @@ 12399392, 12233312, 12233168, - 25428208, - 59825616, - 59825216, - 59836080, + 25431216, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -125557,34 +125557,34 @@ 12233520, 12233296, 12233760, - 59835792, - 25284192, - 25290896, - 25291040, + 59839696, + 25287200, + 25293904, + 25294048, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25283920, - 25283936 + 25286928, + 25286944 ], "bases": [ { @@ -125639,11 +125639,11 @@ }, { "type_name": "CLoadingEntityListener", - "vtable_address": 64066920, + "vtable_address": 64070824, "methods": [ - 17438704, - 19660064, - 19358240, + 17441008, + 19662880, + 19361056, 13215952 ], "bases": [ @@ -125666,25 +125666,25 @@ }, { "type_name": "CLoadingSpawnGroup", - "vtable_address": 64066768, - "methods": [ - 19359648, - 19359664, - 19402624, - 19359728, - 19367808, - 19367728, - 19359744, - 19359776, - 19359632, - 19650752, - 19432224, - 19434096, - 19359696, - 19433344, - 19359808, - 19359824, - 19359680 + "vtable_address": 64070672, + "methods": [ + 19362464, + 19362480, + 19405440, + 19362544, + 19370624, + 19370544, + 19362560, + 19362592, + 19362448, + 19653568, + 19435040, + 19436912, + 19362512, + 19436160, + 19362624, + 19362640, + 19362496 ], "bases": [ { @@ -125706,7 +125706,7 @@ }, { "type_name": "CLobbyMenuSingleton", - "vtable_address": 64351824, + "vtable_address": 64355728, "methods": [], "bases": [], "model": { @@ -125717,14 +125717,14 @@ }, { "type_name": "CLocalPlayerFilter", - "vtable_address": 64091120, + "vtable_address": 64095024, "methods": [ - 20081984, - 20082272, - 20081616, - 20081600, - 20081632, - 20081648 + 20084800, + 20085088, + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -125757,11 +125757,11 @@ }, { "type_name": "CLocatorTarget", - "vtable_address": 64196496, + "vtable_address": 64200400, "methods": [ - 21705040, - 21705120, - 21705168 + 21707856, + 21707936, + 21707984 ], "bases": [], "model": { @@ -125772,33 +125772,33 @@ }, { "type_name": "CLogicRelay", - "vtable_address": 63460672, + "vtable_address": 63464576, "methods": [ 14506528, 14478928, 14478960, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 19582640, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 19585456, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, - 19582736, - 20612384, - 20627168, + 19585552, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -125807,23 +125807,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 19582416, + 40000032, + 19585232, 14479024, 14478400, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -125840,13 +125840,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -125854,39 +125854,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -125900,33 +125900,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, - 19657408, - 20572192, - 21812224, + 19660224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -125954,9 +125954,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -125964,24 +125964,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -126036,33 +126036,33 @@ }, { "type_name": "CLogicalEntity", - "vtable_address": 63373720, + "vtable_address": 63377624, "methods": [ 14367152, 14319984, 14320000, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -126071,23 +126071,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20698976, + 40000032, + 20701792, 14313408, 14314176, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -126104,13 +126104,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -126118,39 +126118,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -126164,33 +126164,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -126218,9 +126218,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -126228,24 +126228,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -126289,13 +126289,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 64076744, + "vtable_address": 64080648, "methods": [ - 19842672, - 19468256, - 19584144, - 19459152, - 19364032 + 19845488, + 19471072, + 19586960, + 19461968, + 19366848 ], "bases": [ { @@ -126317,26 +126317,26 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 64076840, - "methods": [ - 19694080, - 19430544, - 19407952, - 19418672, - 19842416, - 19362752, - 19698016, - 19358032, - 19362720, - 19362736, - 19584320, - 19362656, - 19362672, - 19362640, - 19362704, - 19427104, - 19457968, - 19459104 + "vtable_address": 64080744, + "methods": [ + 19696896, + 19433360, + 19410768, + 19421488, + 19845232, + 19365568, + 19700832, + 19360848, + 19365536, + 19365552, + 19587136, + 19365472, + 19365488, + 19365456, + 19365520, + 19429920, + 19460784, + 19461920 ], "bases": [ { @@ -126379,16 +126379,16 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 64077000, + "vtable_address": 64080904, "methods": [ - 19392032, - 19392048, - 19585280, - 19391968, - 19391984, - 19391952, - 19392016, - 19413952 + 19394848, + 19394864, + 19588096, + 19394784, + 19394800, + 19394768, + 19394832, + 19416768 ], "bases": [ { @@ -126431,17 +126431,17 @@ }, { "type_name": "CMapAnNodeManager", - "vtable_address": 64260248, + "vtable_address": 64264152, "methods": [ - 22460192, - 22464976, - 22773024, - 22438400, - 22451200, - 22451632, - 22438432, - 22469776, - 22518208 + 22463008, + 22467792, + 22775840, + 22441216, + 22454016, + 22454448, + 22441248, + 22472592, + 22521024 ], "bases": [ { @@ -126495,7 +126495,7 @@ }, { "type_name": "CMapAnNodeManager", - "vtable_address": 64260336, + "vtable_address": 64264240, "methods": [ 12204192, 12204208, @@ -126505,11 +126505,11 @@ 12204272, 12204288, 12204304, - 22464544, + 22467360, 12204336, 12204352, 12204368, - 22471008, + 22473824, 12204400, 12204416, 12204432, @@ -126524,7 +126524,7 @@ 12204576, 12204592, 12204608, - 22518416, + 22521232, 12204640, 12204656, 12204672, @@ -126553,12 +126553,12 @@ 12205040, 12205056, 12205072, - 22451696, + 22454512, 12205104, - 22451248, - 22460432, - 22465216, - 22438416 + 22454064, + 22463248, + 22468032, + 22441232 ], "bases": [ { @@ -126612,10 +126612,10 @@ }, { "type_name": "CMapAnNodeScreenSpaceText", - "vtable_address": 64261336, + "vtable_address": 64265240, "methods": [ - 22438544, - 22553360 + 22441360, + 22556176 ], "bases": [ { @@ -126637,14 +126637,14 @@ }, { "type_name": "CMapAnnotationGrenade", - "vtable_address": 64261016, + "vtable_address": 64264920, "methods": [ - 22472416, - 22472576, - 22551024, - 22516032, - 22548928, - 22566448 + 22475232, + 22475392, + 22553840, + 22518848, + 22551744, + 22569264 ], "bases": [ { @@ -126666,14 +126666,14 @@ }, { "type_name": "CMapAnnotationLine", - "vtable_address": 64261208, + "vtable_address": 64265112, "methods": [ - 22472224, - 22472240, - 22549200, - 22514336, - 22512720, - 22560800 + 22475040, + 22475056, + 22552016, + 22517152, + 22515536, + 22563616 ], "bases": [ { @@ -126695,14 +126695,14 @@ }, { "type_name": "CMapAnnotationNode", - "vtable_address": 64260888, + "vtable_address": 64264792, "methods": [ - 22471776, - 22472112, - 22549200, - 22514336, - 22512288, - 22560608 + 22474592, + 22474928, + 22552016, + 22517152, + 22515104, + 22563424 ], "bases": [], "model": { @@ -126713,14 +126713,14 @@ }, { "type_name": "CMapAnnotationPosition", - "vtable_address": 64261080, + "vtable_address": 64264984, "methods": [ - 22472352, - 22472368, - 22549200, - 22514336, - 22512432, - 22560912 + 22475168, + 22475184, + 22552016, + 22517152, + 22515248, + 22563728 ], "bases": [ { @@ -126742,14 +126742,14 @@ }, { "type_name": "CMapAnnotationSpot", - "vtable_address": 64261272, + "vtable_address": 64265176, "methods": [ - 22472160, - 22472176, - 22549200, - 22514336, - 22512864, - 22561536 + 22474976, + 22474992, + 22552016, + 22517152, + 22515680, + 22564352 ], "bases": [ { @@ -126771,14 +126771,14 @@ }, { "type_name": "CMapAnnotationText", - "vtable_address": 64261144, + "vtable_address": 64265048, "methods": [ - 22472288, - 22472304, - 22549200, - 22514336, - 22512576, - 22560704 + 22475104, + 22475120, + 22552016, + 22517152, + 22515392, + 22563520 ], "bases": [ { @@ -126800,32 +126800,32 @@ }, { "type_name": "CMapInfo", - "vtable_address": 64360664, + "vtable_address": 64364568, "methods": [ 12604160, - 23281248, - 23281280, + 23284000, + 23284032, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 23303760, - 21132352, - 21132672, - 21132336, - 21128672, - 23281104, - 21133440, + 21127072, + 23306512, + 21135168, + 21135488, + 21135152, + 21131488, + 23283856, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -126835,23 +126835,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 23275648, - 23281360, - 23281344, + 40000032, + 23278400, + 23284112, + 23284096, 12234080, 12620528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -126868,13 +126868,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -126882,39 +126882,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -126928,33 +126928,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -126982,9 +126982,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -126992,24 +126992,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -127064,11 +127064,11 @@ }, { "type_name": "CMapLoadEntityFilter", - "vtable_address": 64076800, + "vtable_address": 64080704, "methods": [ - 19363968, - 19367440, - 19651872 + 19366784, + 19370256, + 19654688 ], "bases": [ { @@ -127090,35 +127090,35 @@ }, { "type_name": "CMapSpiderGraph", - "vtable_address": 64512576, + "vtable_address": 64516480, "methods": [ 12043984, - 59816784, - 25284400, - 25284416, - 25286240, - 59817136, - 59817120, + 59820688, + 25287408, + 25287424, + 25289248, + 59821040, + 59821024, 12233600, - 25333840, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 25336848, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 25285296, + 59821792, + 59821808, + 59820704, + 59832432, + 25288304, 12233664, 12233696, 12233680, @@ -127131,12 +127131,12 @@ 12399392, 12233312, 12233168, - 25427376, - 59825616, - 59825216, - 59836080, + 25430384, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -127146,40 +127146,40 @@ 12233472, 12233488, 12233504, - 25305184, - 25290736, + 25308192, + 25293744, 12233520, 12233296, 12233760, - 59835792, - 25284384, - 25291200, - 25291488, + 59839696, + 25287392, + 25294208, + 25294496, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25403872, - 25385248, - 25283856 + 25406880, + 25388256, + 25286864 ], "bases": [ { @@ -127223,11 +127223,11 @@ }, { "type_name": "CMaterialAttributeTagListener", - "vtable_address": 64013568, + "vtable_address": 64017472, "methods": [ - 18560224, - 18561728, - 18520368 + 18562528, + 18564032, + 18522672 ], "bases": [ { @@ -127249,12 +127249,12 @@ }, { "type_name": "CModelState", - "vtable_address": 64113816, + "vtable_address": 64117720, "methods": [ - 20137088, - 20136784, - 20136800, - 20136816, + 20139904, + 20139600, + 20139616, + 20139632, 14514416 ], "bases": [], @@ -127266,9 +127266,9 @@ }, { "type_name": "CModuleMetadataProvider_ResourceManifests", - "vtable_address": 64945096, + "vtable_address": 64949000, "methods": [ - 59317376 + 59321280 ], "bases": [ { @@ -127290,12 +127290,12 @@ }, { "type_name": "CMouseTraceCoordReadback", - "vtable_address": 64624776, + "vtable_address": 64628680, "methods": [ - 28332688, - 28333888, - 24267360, - 28334352 + 28336080, + 28337280, + 24270112, + 28337744 ], "bases": [ { @@ -127328,11 +127328,11 @@ }, { "type_name": "CMouseTraceCoordReadbackRenderer", - "vtable_address": 64624824, + "vtable_address": 64628728, "methods": [ - 28332240, - 28332224, - 28334064, + 28335632, + 28335616, + 28337456, 12236576 ], "bases": [ @@ -127355,17 +127355,17 @@ }, { "type_name": "CMouthSystem", - "vtable_address": 64196680, + "vtable_address": 64200584, "methods": [ - 21788448, - 21709936, - 21788656, - 21705360, - 21710016, - 21710048, - 21710096, - 21705424, - 21785600 + 21791264, + 21712752, + 21791472, + 21708176, + 21712832, + 21712864, + 21712912, + 21708240, + 21788416 ], "bases": [ { @@ -127387,23 +127387,23 @@ }, { "type_name": "CMsgAccountDetails", - "vtable_address": 63584736, + "vtable_address": 63588640, "methods": [ 15677408, 15722800, - 29643894, + 29647734, 15219728, 15827728, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14866736, 14849456, 15443296, 12011504, 15082576, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844928, 14808960 @@ -127439,23 +127439,23 @@ }, { "type_name": "CMsgAcknowledgeRentalExpiration", - "vtable_address": 63527136, + "vtable_address": 63531040, "methods": [ 15631744, 15689680, - 29643894, + 29647734, 15152304, 15792608, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811440, 14852368, 15267280, 12011504, 14917632, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833408, 14796576 @@ -127491,23 +127491,23 @@ }, { "type_name": "CMsgAdjustEquipSlot", - "vtable_address": 63526496, + "vtable_address": 63530400, "methods": [ 15631200, 15689296, - 29643894, + 29647734, 15151712, 15792416, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820208, 14846816, 15265504, 12011504, 14976352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833280, 14796512 @@ -127543,23 +127543,23 @@ }, { "type_name": "CMsgAdjustEquipSlots", - "vtable_address": 63526656, + "vtable_address": 63530560, "methods": [ 15631328, 15738480, - 29643894, + 29647734, 15151888, 15832992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14890656, 14852416, 15484784, 12011504, 14927392, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833312, 14796528 @@ -127595,23 +127595,23 @@ }, { "type_name": "CMsgApplyEggEssence", - "vtable_address": 63517856, + "vtable_address": 63521760, "methods": [ 15624224, 15685968, - 29643894, + 29647734, 15143552, 15790768, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811072, 14853104, 15239568, 12011504, 14942432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831552, 14795648 @@ -127647,23 +127647,23 @@ }, { "type_name": "CMsgApplyPennantUpgrade", - "vtable_address": 63517696, + "vtable_address": 63521600, "methods": [ 15624096, 15685840, - 29643894, + 29647734, 15143392, 15790704, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810992, 14853120, 15238992, 12011504, 14942080, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831520, 14795632 @@ -127699,23 +127699,23 @@ }, { "type_name": "CMsgApplyStatTrakSwap", - "vtable_address": 63517376, + "vtable_address": 63521280, "methods": [ 15623840, 15685584, - 29643894, + 29647734, 15143072, 15790576, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810800, 14853152, 15237824, 12011504, 14974880, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831456, 14795600 @@ -127751,23 +127751,23 @@ }, { "type_name": "CMsgApplySticker", - "vtable_address": 63517056, + "vtable_address": 63520960, "methods": [ 15623584, 15685328, - 29643894, + 29647734, 15142768, 15790416, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818320, 14853184, 15236448, 12011504, 15089088, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831392, 14795568 @@ -127803,23 +127803,23 @@ }, { "type_name": "CMsgApplyStrangePart", - "vtable_address": 63517536, + "vtable_address": 63521440, "methods": [ 15623968, 15685712, - 29643894, + 29647734, 15143232, 15790640, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810912, 14853136, 15238416, 12011504, 14941728, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831488, 14795616 @@ -127855,23 +127855,23 @@ }, { "type_name": "CMsgCStrike15Welcome", - "vtable_address": 63548096, + "vtable_address": 63552000, "methods": [ 15648304, 15696080, - 29643894, + 29647734, 15180896, 15796352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824912, 14851344, 15331712, 12011504, 15098080, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837600, 14801984 @@ -127907,23 +127907,23 @@ }, { "type_name": "CMsgCasketItem", - "vtable_address": 63578336, + "vtable_address": 63582240, "methods": [ 15672544, 15705936, - 29643894, + 29647734, 15212224, 15802000, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817264, 14849696, 15424208, 12011504, 14947712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843648, 14807008 @@ -127959,23 +127959,23 @@ }, { "type_name": "CMsgClearDecalsForEntityEvent", - "vtable_address": 63581216, + "vtable_address": 63585120, "methods": [ 15675104, 15706576, - 29643894, + 29647734, 13235616, 15802448, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828256, 13224240, 15433984, 12011504, 14939456, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844224, 14807792 @@ -128011,23 +128011,23 @@ }, { "type_name": "CMsgClearEntityDecalsEvent", - "vtable_address": 63581056, + "vtable_address": 63584960, "methods": [ 15674976, 15706448, - 29643894, + 29647734, 13236576, 15802400, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828208, 13224272, 15433504, 12011504, 14916064, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844192, 14807776 @@ -128063,23 +128063,23 @@ }, { "type_name": "CMsgClearWorldDecalsEvent", - "vtable_address": 63580896, + "vtable_address": 63584800, "methods": [ 15674848, 15706320, - 29643894, + 29647734, 13236096, 15802352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828160, 13224256, 15433024, 12011504, 14915840, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844160, 14807760 @@ -128115,23 +128115,23 @@ }, { "type_name": "CMsgClientHello", - "vtable_address": 63586656, + "vtable_address": 63590560, "methods": [ 15678768, 15743408, - 29643894, + 29647734, 15221488, 15862608, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14897008, 14849296, 15467888, 12011504, 15084576, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845312, 14809152 @@ -128167,23 +128167,23 @@ }, { "type_name": "CMsgClientWelcome", - "vtable_address": 63587136, + "vtable_address": 63591040, "methods": [ 15761456, 15763440, - 29643894, + 29647734, 15222016, 15871104, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14902224, 14849264, 15470800, 12011504, 15086304, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845408, 14809200 @@ -128219,23 +128219,23 @@ }, { "type_name": "CMsgClientWelcome_Location", - "vtable_address": 63586976, + "vtable_address": 63590880, "methods": [ 15679120, 15723280, - 29643894, + 29647734, 15221840, 15828768, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867040, 14848672, 15449728, 12011504, 14932512, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845376, 14809184 @@ -128271,23 +128271,23 @@ }, { "type_name": "CMsgConVarValue", - "vtable_address": 63519616, + "vtable_address": 63523520, "methods": [ 15625792, 15725360, - 29643894, + 29647734, 15145184, 15806544, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867760, 14846752, 15244384, 12011504, 14940864, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831904, 14795824 @@ -128323,23 +128323,23 @@ }, { "type_name": "CMsgConnectionStatus", - "vtable_address": 63587296, + "vtable_address": 63591200, "methods": [ 15679264, 15707984, - 29643894, + 29647734, 15222160, 15803152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828544, 14849248, 15450224, 12011504, 15066144, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845440, 14809216 @@ -128375,23 +128375,23 @@ }, { "type_name": "CMsgConsumableExhausted", - "vtable_address": 63520256, + "vtable_address": 63524160, "methods": [ 15626416, 15686480, - 29643894, + 29647734, 15145840, 15791088, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811216, 14852944, 15246192, 12011504, 14916960, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832032, 14795888 @@ -128427,23 +128427,23 @@ }, { "type_name": "CMsgCsgoSteamUserStatChange", - "vtable_address": 63533696, + "vtable_address": 63537600, "methods": [ 15637584, 15691984, - 29643894, + 29647734, 15166080, 15793776, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812000, 14847008, 15289360, 12011504, 14963200, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834720, 14800544 @@ -128479,23 +128479,23 @@ }, { "type_name": "CMsgDevNewItemRequest", - "vtable_address": 63516736, + "vtable_address": 63520640, "methods": [ 15779616, 15780080, - 29643894, + 29647734, 15142496, 15858224, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14906448, 14853216, 15235392, 12011504, 14882768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831328, 14795536 @@ -128531,23 +128531,23 @@ }, { "type_name": "CMsgEffectData", - "vtable_address": 63644656, + "vtable_address": 63648560, "methods": [ 16586896, 16652208, - 29643894, + 29647734, 16250176, 16684304, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16029664, 15995152, 16372176, 12011504, 16182784, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018912, 15990272 @@ -128583,23 +128583,23 @@ }, { "type_name": "CMsgGCBannedWord", - "vtable_address": 63523616, + "vtable_address": 63527520, "methods": [ 15629168, 15711280, - 29643894, + 29647734, 15149024, 15808016, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14857344, 14846784, 15256928, 12011504, 14986400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832704, 14796224 @@ -128635,23 +128635,23 @@ }, { "type_name": "CMsgGCBannedWordListRequest", - "vtable_address": 63523136, + "vtable_address": 63527040, "methods": [ 15628864, 15688016, - 29643894, + 29647734, 15148592, 15791808, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819648, 14852672, 15255824, 12011504, 14936288, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832608, 14796176 @@ -128687,23 +128687,23 @@ }, { "type_name": "CMsgGCBannedWordListResponse", - "vtable_address": 63523776, + "vtable_address": 63527680, "methods": [ 15629312, 15738304, - 29643894, + 29647734, 15149200, 15843216, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14896672, 14846800, 15484192, 12011504, 14927104, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832736, 14796240 @@ -128739,23 +128739,23 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats", - "vtable_address": 63541536, + "vtable_address": 63545440, "methods": [ 15751312, 15752288, - 29643894, + 29647734, 15174304, 15859808, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14874560, 14848240, 15506544, 12011504, 14950080, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836288, 14801328 @@ -128791,23 +128791,23 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch", - "vtable_address": 63541376, + "vtable_address": 63545280, "methods": [ 15754784, 15755200, - 29643894, + 29647734, 15174128, 15844464, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14874400, 14847472, 15505968, 12011504, 14855248, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836256, 14801312 @@ -128843,23 +128843,23 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsRange", - "vtable_address": 63541216, + "vtable_address": 63545120, "methods": [ 15642896, 15694160, - 29643894, + 29647734, 15173952, 15795200, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14823456, 14847456, 15316240, 12011504, 14960768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836224, 14801296 @@ -128895,23 +128895,23 @@ }, { "type_name": "CMsgGCCStrike15_GotvSyncPacket", - "vtable_address": 63553696, + "vtable_address": 63557600, "methods": [ 15747616, 15766480, - 29643894, + 29647734, 15186080, 15867152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14830000, 14850848, 15351456, 12011504, 14854128, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838720, 14802544 @@ -128947,23 +128947,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings", - "vtable_address": 63538496, + "vtable_address": 63542400, "methods": [ 15641008, 15739184, - 29643894, + 29647734, 15171248, 15832272, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14887904, 14851984, 15505504, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14835680, 14801024 @@ -128999,23 +128999,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings_Setting", - "vtable_address": 63538336, + "vtable_address": 63542240, "methods": [ 15640880, 15693392, - 29643894, + 29647734, 15171072, 15794736, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14822464, 14847408, 15306832, 12011504, 14937344, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835648, 14801008 @@ -129051,23 +129051,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays", - "vtable_address": 63555616, + "vtable_address": 63559520, "methods": [ 15653968, 15740944, - 29643894, + 29647734, 15188064, 15833568, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14889552, 14850704, 15519504, 12011504, 14928832, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839104, 14802736 @@ -129103,23 +129103,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays_Player", - "vtable_address": 63555456, + "vtable_address": 63559360, "methods": [ 15653840, 15699152, - 29643894, + 29647734, 15187888, 15798368, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827248, 14847904, 15358960, 12011504, 14961152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839072, 14802720 @@ -129155,23 +129155,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_AcknowledgePenalty", - "vtable_address": 63552576, + "vtable_address": 63556480, "methods": [ 15651584, 15698128, - 29643894, + 29647734, 15185072, 15797744, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813008, 14850960, 15347632, 12011504, 14918976, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838496, 14802432 @@ -129207,23 +129207,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_BetaEnrollment", - "vtable_address": 63554176, + "vtable_address": 63558080, "methods": [ 15652704, 15698640, - 29643894, + 29647734, 15186576, 15797968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826640, 14850816, 15354096, 12011504, 14915392, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838816, 14802592 @@ -129259,23 +129259,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest", - "vtable_address": 63544416, + "vtable_address": 63548320, "methods": [ 15645568, 15695056, - 29643894, + 29647734, 15177152, 15795856, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812336, 14851536, 15325456, 12011504, 15012896, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836864, 14801616 @@ -129311,23 +129311,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse", - "vtable_address": 63544576, + "vtable_address": 63548480, "methods": [ 15645696, 15753888, - 29643894, + 29647734, 15177280, 15854624, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14860912, 14851520, 15326032, 12011504, 14854032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836896, 14801632 @@ -129363,23 +129363,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin", - "vtable_address": 63552736, + "vtable_address": 63556640, "methods": [ 15651712, 15698256, - 29643894, + 29647734, 15185216, 15797792, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826464, 14850944, 15348112, 12011504, 15013600, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838528, 14802448 @@ -129415,23 +129415,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCStreamUnlock", - "vtable_address": 63552896, + "vtable_address": 63556800, "methods": [ 15651840, 15698384, - 29643894, + 29647734, 15185376, 15797856, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813056, 14850928, 15348672, 12011504, 14944896, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838560, 14802464 @@ -129467,23 +129467,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCTextMsg", - "vtable_address": 63543456, + "vtable_address": 63547360, "methods": [ 15644624, 15714000, - 29643894, + 29647734, 15176256, 15795712, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14878880, 14851600, 15322640, 12011504, 14952768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836672, 14801520 @@ -129519,23 +129519,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GcAckXPShopTracks", - "vtable_address": 63551776, + "vtable_address": 63555680, "methods": [ 14881232, 14881248, - 29643894, + 29647734, 15184352, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14838336, 14802352 @@ -129582,23 +129582,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAccountBalance", - "vtable_address": 63556416, + "vtable_address": 63560320, "methods": [ 15654544, 15716080, - 29643894, + 29647734, 15188784, 15815168, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861904, 14850640, 15361040, 12011504, 14934208, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839264, 14802816 @@ -129634,23 +129634,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAuthKeyCode", - "vtable_address": 63553536, + "vtable_address": 63557440, "methods": [ 15652384, 15715440, - 29643894, + 29647734, 15185952, 15813872, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861584, 14850864, 15350880, 12011504, 14933888, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838688, 14802528 @@ -129686,23 +129686,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientCommendPlayer", - "vtable_address": 63539456, + "vtable_address": 63543360, "methods": [ 15746336, 15765840, - 29643894, + 29647734, 15172192, 15862288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829632, 14851888, 15309872, 12011504, 14997792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835872, 14801120 @@ -129738,23 +129738,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientGCRankUpdate", - "vtable_address": 63538816, + "vtable_address": 63542720, "methods": [ 15641168, 15739360, - 29643894, + 29647734, 15171568, 15837296, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14899264, 14851952, 15500608, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14835744, 14801056 @@ -129790,23 +129790,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientLogonFatalError", - "vtable_address": 63554336, + "vtable_address": 63558240, "methods": [ 15652832, 15727440, - 29643894, + 29647734, 15186736, 15814480, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861680, 14850800, 15354576, 12011504, 14991232, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838848, 14802608 @@ -129842,23 +129842,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientNetworkConfig", - "vtable_address": 63541056, + "vtable_address": 63544960, "methods": [ 15642752, 15713360, - 29643894, + 29647734, 15173808, 15811792, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14851760, 15315840, 12011504, 14929504, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836192, 14801280 @@ -129894,23 +129894,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyJoinRelay", - "vtable_address": 63556576, + "vtable_address": 63560480, "methods": [ 15654688, 15699408, - 29643894, + 29647734, 15188944, 15798496, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827344, 14850624, 15361616, 12011504, 14945248, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839296, 14802832 @@ -129946,23 +129946,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning", - "vtable_address": 63556896, + "vtable_address": 63560800, "methods": [ 15654944, 15741120, - 29643894, + 29647734, 15189248, 15832640, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14888080, 14850608, 15520080, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14839360, 14802864 @@ -129998,23 +129998,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning_Entry", - "vtable_address": 63556736, + "vtable_address": 63560640, "methods": [ 15654816, 15699536, - 29643894, + 29647734, 15189072, 15798560, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827424, 14847920, 15362192, 12011504, 14939104, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839328, 14802848 @@ -130050,23 +130050,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport", - "vtable_address": 63557696, + "vtable_address": 63561600, "methods": [ 15655680, 15741296, - 29643894, + 29647734, 15190048, 15855248, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14909744, 14850544, 15520544, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14839520, 14802944 @@ -130102,23 +130102,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport_Entry", - "vtable_address": 63557536, + "vtable_address": 63561440, "methods": [ 15655520, 15727920, - 29643894, + 29647734, 15189872, 15815568, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14870080, 14847936, 15364400, 12011504, 15073696, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839488, 14802928 @@ -130154,23 +130154,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPlayerDecalSign", - "vtable_address": 63554016, + "vtable_address": 63557920, "methods": [ 15759280, 15760112, - 29643894, + 29647734, 15186432, 15814320, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14869808, 14850832, 15353504, 12011504, 14925440, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838784, 14802576 @@ -130206,23 +130206,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPollState", - "vtable_address": 63554496, + "vtable_address": 63558400, "methods": [ 15652992, 15727600, - 29643894, + 29647734, 15186960, 15798016, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14880528, 14850784, 15355136, 12011504, 14994304, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838880, 14802624 @@ -130258,23 +130258,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportPlayer", - "vtable_address": 63539296, + "vtable_address": 63543200, "methods": [ 15641600, 15693648, - 29643894, + 29647734, 15172048, 15794864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14822656, 14851904, 15309024, 12011504, 15096320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835840, 14801104 @@ -130310,23 +130310,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportResponse", - "vtable_address": 63539776, + "vtable_address": 63543680, "methods": [ 15641856, 15693904, - 29643894, + 29647734, 15172512, 15795008, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14823104, 14851856, 15311200, 12011504, 15063232, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835936, 14801152 @@ -130362,23 +130362,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportServer", - "vtable_address": 63539616, + "vtable_address": 63543520, "methods": [ 15641728, 15693776, - 29643894, + 29647734, 15172352, 15794944, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14822912, 14851872, 15310528, 12011504, 15062368, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835904, 14801136 @@ -130414,23 +130414,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportValidation", - "vtable_address": 63558016, + "vtable_address": 63561920, "methods": [ 15655984, 15736240, - 29643894, + 29647734, 15190384, 15851184, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14907712, 14850528, 15521008, 12011504, 15134672, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839584, 14802976 @@ -130466,23 +130466,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinFriendData", - "vtable_address": 63540256, + "vtable_address": 63544160, "methods": [ 15768544, 15768768, - 29643894, + 29647734, 15173024, 15866864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15037712, 14851824, 15312896, 12011504, 15057696, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836032, 14801200 @@ -130518,23 +130518,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinServerData", - "vtable_address": 63540416, + "vtable_address": 63544320, "methods": [ 15768320, 15769008, - 29643894, + 29647734, 15173168, 15867008, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15037984, 14851808, 15313648, 12011504, 15072448, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836064, 14801216 @@ -130570,23 +130570,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestOffers", - "vtable_address": 63556096, + "vtable_address": 63560000, "methods": [ 14881168, 14881184, - 29643894, + 29647734, 15188496, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14839200, 14802784 @@ -130633,23 +130633,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestPlayersProfile", - "vtable_address": 63541856, + "vtable_address": 63545760, "methods": [ 15643200, 15713520, - 29643894, + 29647734, 15174656, 15795264, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14874848, 14851728, 15316768, 12011504, 15015456, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836352, 14801360 @@ -130685,23 +130685,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestSouvenir", - "vtable_address": 63556256, + "vtable_address": 63560160, "methods": [ 15654416, 15699280, - 29643894, + 29647734, 15188640, 15798432, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813136, 14850656, 15360448, 12011504, 14979776, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839232, 14802800 @@ -130737,23 +130737,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends", - "vtable_address": 63539936, + "vtable_address": 63543840, "methods": [ 15641984, 15733088, - 29643894, + 29647734, 15172704, 15840464, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14898336, 14851840, 15493520, 12011504, 15059168, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835968, 14801168 @@ -130789,23 +130789,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientSubmitSurveyVote", - "vtable_address": 63549056, + "vtable_address": 63552960, "methods": [ 15649040, 15696336, - 29643894, + 29647734, 15181840, 15796576, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825200, 14851280, 15334608, 12011504, 14938048, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837792, 14802080 @@ -130841,23 +130841,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCChat", - "vtable_address": 63553216, + "vtable_address": 63557120, "methods": [ 15652096, 15715120, - 29643894, + 29647734, 15185664, 15813328, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861392, 14850896, 15349728, 12011504, 14933216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838624, 14802496 @@ -130893,23 +130893,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestElevate", - "vtable_address": 63553056, + "vtable_address": 63556960, "methods": [ 15651968, 15698512, - 29643894, + 29647734, 15185520, 15797920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826592, 14850912, 15349248, 12011504, 14915168, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838592, 14802480 @@ -130945,23 +130945,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestTicket", - "vtable_address": 63555776, + "vtable_address": 63559680, "methods": [ 15654128, 15715760, - 29643894, + 29647734, 15188208, 15814608, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861808, 14850688, 15359488, 12011504, 14954672, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839136, 14802752 @@ -130997,23 +130997,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientVarValueNotificationInfo", - "vtable_address": 63548256, + "vtable_address": 63552160, "methods": [ 15648432, 15726800, - 29643894, + 29647734, 15181120, 15813024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877328, 14851328, 15332448, 12011504, 15055200, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837632, 14802000 @@ -131049,23 +131049,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy", - "vtable_address": 63547456, + "vtable_address": 63551360, "methods": [ 15647856, 15740416, - 29643894, + 29647734, 15180256, 15831792, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14891152, 14851392, 15517744, 12011504, 14928544, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837472, 14801920 @@ -131101,23 +131101,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasySlot", - "vtable_address": 63547136, + "vtable_address": 63551040, "methods": [ 15647568, 15695952, - 29643894, + 29647734, 15179904, 15796288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812800, 14847744, 15330240, 12011504, 14978784, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837408, 14801888 @@ -131153,23 +131153,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasyTeam", - "vtable_address": 63547296, + "vtable_address": 63551200, "methods": [ 15647696, 15740240, - 29643894, + 29647734, 15180080, 15833376, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14890896, 14847760, 15517152, 12011504, 14931104, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837440, 14801904 @@ -131205,23 +131205,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem", - "vtable_address": 63558496, + "vtable_address": 63562400, "methods": [ 15656480, 15735824, - 29643894, + 29647734, 15190848, 15816416, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14870288, 14850480, 15367136, 12011504, 15075776, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839680, 14803024 @@ -131257,23 +131257,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem_Response", - "vtable_address": 63558656, + "vtable_address": 63562560, "methods": [ 15656672, 15728240, - 29643894, + 29647734, 15191008, 15816704, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14870624, 14850464, 15367856, 12011504, 15115296, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839712, 14803040 @@ -131309,23 +131309,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientNotifyXPShop", - "vtable_address": 63551616, + "vtable_address": 63555520, "methods": [ 15763920, 15764464, - 29643894, + 29647734, 15184224, 15868096, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14875392, 14851040, 15344800, 12011504, 14983360, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838304, 14802336 @@ -131361,23 +131361,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode", - "vtable_address": 63558176, + "vtable_address": 63562080, "methods": [ 15656176, 15728080, - 29643894, + 29647734, 15190544, 15816000, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862272, 14850512, 15365680, 12011504, 15058496, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839616, 14802992 @@ -131413,23 +131413,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRequestValidation", - "vtable_address": 63558336, + "vtable_address": 63562240, "methods": [ 15656336, 15716400, - 29643894, + 29647734, 15190688, 15816144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862464, 14850496, 15366544, 12011504, 14924000, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839648, 14803008 @@ -131465,23 +131465,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTextMsg", - "vtable_address": 63543296, + "vtable_address": 63547200, "methods": [ 15644480, 15713840, - 29643894, + 29647734, 15176064, 15812192, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14869360, 14851616, 15322096, 12011504, 15026496, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836640, 14801504 @@ -131517,23 +131517,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTournamentInfo", - "vtable_address": 63549376, + "vtable_address": 63553280, "methods": [ 15649296, 15714640, - 29643894, + 29647734, 15182144, 15796688, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14875136, 14851248, 15335664, 12011504, 15016160, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837856, 14802112 @@ -131569,23 +131569,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ServerReservationUpdate", - "vtable_address": 63535616, + "vtable_address": 63539520, "methods": [ 15639296, 15692752, - 29643894, + 29647734, 15168016, 15794448, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14822336, 14852064, 15296608, 12011504, 14936992, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835104, 14800736 @@ -131621,23 +131621,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GCToClientChat", - "vtable_address": 63553376, + "vtable_address": 63557280, "methods": [ 15652240, 15715280, - 29643894, + 29647734, 15185808, 15813600, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861488, 14850880, 15350304, 12011504, 14933568, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838656, 14802512 @@ -131673,23 +131673,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Request", - "vtable_address": 63557216, + "vtable_address": 63561120, "methods": [ 15655232, 15699792, - 29643894, + 29647734, 15189552, 15798688, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810352, 14850576, 15363344, 12011504, 14885792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839424, 14802896 @@ -131725,23 +131725,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Response", - "vtable_address": 63557376, + "vtable_address": 63561280, "methods": [ 15655360, 15727760, - 29643894, + 29647734, 15189712, 15815440, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862000, 14850560, 15363824, 12011504, 14959104, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839456, 14802912 @@ -131777,23 +131777,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardRequest", - "vtable_address": 63548576, + "vtable_address": 63552480, "methods": [ 14881296, 14881312, - 29643894, + 29647734, 15181408, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14837696, 14802032 @@ -131840,23 +131840,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse", - "vtable_address": 63548896, + "vtable_address": 63552800, "methods": [ 15648880, 15740592, - 29643894, + 29647734, 15181712, 15834640, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14888736, 14851296, 15518336, 12011504, 15029824, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837760, 14802064 @@ -131892,23 +131892,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry", - "vtable_address": 63548736, + "vtable_address": 63552640, "methods": [ 15648752, 15696208, - 29643894, + 29647734, 15181536, 15796512, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825120, 14847824, 15334032, 12011504, 14937696, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837728, 14802048 @@ -131944,23 +131944,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRewardDropsNotification", - "vtable_address": 63544096, + "vtable_address": 63548000, "methods": [ 15645152, 15753440, - 29643894, + 29647734, 15176864, 15854464, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14860752, 14851568, 15324624, 12011504, 14853840, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836800, 14801584 @@ -131996,23 +131996,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRunRewardDrops", - "vtable_address": 63543616, + "vtable_address": 63547520, "methods": [ 15781728, 15782000, - 29643894, + 29647734, 15176416, 15865664, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15036944, 14851584, 15323232, 12011504, 14853680, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836704, 14801536 @@ -132048,23 +132048,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchList", - "vtable_address": 63546496, + "vtable_address": 63550400, "methods": [ 15756080, 15756352, - 29643894, + 29647734, 15179248, 15873168, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15041552, 14851440, 15515040, 12011504, 15031072, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837280, 14801824 @@ -132100,23 +132100,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames", - "vtable_address": 63544736, + "vtable_address": 63548640, "methods": [ 14881360, 14881376, - 29643894, + 29647734, 15177408, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14836928, 14801648 @@ -132163,23 +132163,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestFullGameInfo", - "vtable_address": 63545376, + "vtable_address": 63549280, "methods": [ 15646288, 15695568, - 29643894, + 29647734, 15177984, 15796064, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824800, 14851456, 15327888, 12011504, 14978272, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837056, 14801712 @@ -132215,23 +132215,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser", - "vtable_address": 63544896, + "vtable_address": 63548800, "methods": [ 15645904, 15695184, - 29643894, + 29647734, 15177552, 15795920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824704, 14851504, 15326448, 12011504, 14914272, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836960, 14801664 @@ -132267,23 +132267,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestRecentUserGames", - "vtable_address": 63545056, + "vtable_address": 63548960, "methods": [ 15646032, 15695312, - 29643894, + 29647734, 15177696, 15795968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824752, 14851488, 15326928, 12011504, 14914496, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836992, 14801680 @@ -132319,23 +132319,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestTournamentGames", - "vtable_address": 63545216, + "vtable_address": 63549120, "methods": [ 15646160, 15695440, - 29643894, + 29647734, 15177840, 15796016, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812480, 14851472, 15327408, 12011504, 14918304, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837024, 14801696 @@ -132371,23 +132371,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt", - "vtable_address": 63546656, + "vtable_address": 63550560, "methods": [ 15647120, 15739888, - 29643894, + 29647734, 15179424, 15873392, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15039968, 14851424, 15515952, 12011504, 14966432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837312, 14801840 @@ -132423,23 +132423,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2GCHello", - "vtable_address": 63538016, + "vtable_address": 63541920, "methods": [ 14881424, 14881440, - 29643894, + 29647734, 15170768, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14835584, 14800976 @@ -132486,23 +132486,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2ServerPing", - "vtable_address": 63536256, + "vtable_address": 63540160, "methods": [ 15639680, 15745472, - 29643894, + 29647734, 15168688, 15850368, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14903056, 14852016, 15494512, 12011504, 15124608, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835232, 14800800 @@ -132538,23 +132538,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon", - "vtable_address": 63538656, + "vtable_address": 63542560, "methods": [ 15768112, 15769248, - 29643894, + 29647734, 15171392, 15866752, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15037536, 14851968, 15307408, 12011504, 14997248, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835712, 14801040 @@ -132590,23 +132590,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientHello", - "vtable_address": 63538176, + "vtable_address": 63542080, "methods": [ 15787280, 15787424, - 29643894, + 29647734, 15170944, 15873536, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15040288, 14847504, 15503424, 12011504, 15132048, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835616, 14800992 @@ -132642,23 +132642,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve", - "vtable_address": 63537536, + "vtable_address": 63541440, "methods": [ 15767696, 15769952, - 29643894, + 29647734, 15170208, 15866480, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15037104, 14847344, 15302144, 12011504, 15108736, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835488, 14800928 @@ -132694,23 +132694,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats", - "vtable_address": 63551936, + "vtable_address": 63555840, "methods": [ 15651072, 15697616, - 29643894, + 29647734, 15184496, 15797520, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826208, 14851024, 15345456, 12011504, 15042624, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838368, 14802368 @@ -132746,23 +132746,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate", - "vtable_address": 63536416, + "vtable_address": 63540320, "methods": [ 15782784, 15783520, - 29643894, + 29647734, 15168944, 15868592, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14905184, 14852000, 15495584, 12011504, 15125440, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835264, 14800816 @@ -132798,23 +132798,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note", - "vtable_address": 63536096, + "vtable_address": 63540000, "methods": [ 15639552, 15693008, - 29643894, + 29647734, 15168496, 15794560, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812144, 14847104, 15298800, 12011504, 14968320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835200, 14800784 @@ -132850,23 +132850,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm", - "vtable_address": 63535456, + "vtable_address": 63539360, "methods": [ 15639168, 15692624, - 29643894, + 29647734, 15167888, 15794384, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14822208, 14847312, 15296032, 12011504, 15012288, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835072, 14800720 @@ -132902,23 +132902,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve", - "vtable_address": 63537216, + "vtable_address": 63541120, "methods": [ 15766800, 15771072, - 29643894, + 29647734, 15169840, 15864768, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15035216, 14847280, 15501072, 12011504, 15130144, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835424, 14800896 @@ -132954,23 +132954,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate", - "vtable_address": 63538976, + "vtable_address": 63542880, "methods": [ 15641328, 15713040, - 29643894, + 29647734, 15171728, 15811264, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14851936, 15308064, 12011504, 14910768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835776, 14801072 @@ -133006,23 +133006,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerReservationResponse", - "vtable_address": 63537376, + "vtable_address": 63541280, "methods": [ 15769472, 15770368, - 29643894, + 29647734, 15170032, 15865392, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15036192, 14847552, 15300496, 12011504, 15107360, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835456, 14800912 @@ -133058,23 +133058,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats", - "vtable_address": 63537856, + "vtable_address": 63541760, "methods": [ 15773504, 15775344, - 29643894, + 29647734, 15170640, 15865776, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15038288, 14847616, 15303520, 12011504, 15109536, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835552, 14800960 @@ -133110,23 +133110,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo", - "vtable_address": 63537696, + "vtable_address": 63541600, "methods": [ 15640752, 15693264, - 29643894, + 29647734, 15170352, 15794688, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14822416, 14847328, 15303040, 12011504, 14914048, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835520, 14800944 @@ -133162,23 +133162,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStart", - "vtable_address": 63535776, + "vtable_address": 63539680, "methods": [ 15749568, 15750560, - 29643894, + 29647734, 15168192, 15861248, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14876272, 14852048, 15297184, 12011504, 15106496, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835136, 14800752 @@ -133214,23 +133214,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStop", - "vtable_address": 63535936, + "vtable_address": 63539840, "methods": [ 15639424, 15692880, - 29643894, + 29647734, 15168336, 15794512, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812096, 14852032, 15298320, 12011504, 14918080, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835168, 14800768 @@ -133266,23 +133266,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Invite", - "vtable_address": 63555296, + "vtable_address": 63559200, "methods": [ 15653712, 15699024, - 29643894, + 29647734, 15187744, 15798304, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827168, 14850720, 15358384, 12011504, 14938752, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839040, 14802704 @@ -133318,23 +133318,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Register", - "vtable_address": 63554656, + "vtable_address": 63558560, "methods": [ 15653152, 15698768, - 29643894, + 29647734, 15187120, 15798096, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826688, 14850768, 15355872, 12011504, 15080064, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838912, 14802640 @@ -133370,23 +133370,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Search", - "vtable_address": 63554816, + "vtable_address": 63558720, "methods": [ 15653280, 15715600, - 29643894, + 29647734, 15187280, 15798160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14875840, 14850752, 15356720, 12011504, 15067968, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838944, 14802656 @@ -133422,23 +133422,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults", - "vtable_address": 63555136, + "vtable_address": 63559040, "methods": [ 15653552, 15740768, - 29643894, + 29647734, 15187616, 15832448, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14907392, 14850736, 15519040, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14839008, 14802688 @@ -133474,23 +133474,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults_Entry", - "vtable_address": 63554976, + "vtable_address": 63558880, "methods": [ 15653424, 15698896, - 29643894, + 29647734, 15187440, 15798240, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826960, 14847888, 15357648, 12011504, 15080928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838976, 14802672 @@ -133526,23 +133526,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment", - "vtable_address": 63542816, + "vtable_address": 63546720, "methods": [ 15644080, 15713680, - 29643894, + 29647734, 15175600, 15812048, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14859456, 14851664, 15319968, 12011504, 15114608, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836544, 14801456 @@ -133578,23 +133578,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus", - "vtable_address": 63542976, + "vtable_address": 63546880, "methods": [ 15644224, 15694672, - 29643894, + 29647734, 15175760, 15795584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824288, 14851648, 15320944, 12011504, 14944192, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836576, 14801472 @@ -133630,23 +133630,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate", - "vtable_address": 63542656, + "vtable_address": 63546560, "methods": [ 15643952, 15694544, - 29643894, + 29647734, 15175456, 15795504, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14824048, 14851680, 15319184, 12011504, 15097184, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836512, 14801440 @@ -133682,23 +133682,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayersProfile", - "vtable_address": 63542016, + "vtable_address": 63545920, "methods": [ 15643344, 15739712, - 29643894, + 29647734, 15174832, 15874192, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15041408, 14851712, 15508112, 12011504, 14927968, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836384, 14801376 @@ -133734,23 +133734,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions", - "vtable_address": 63546976, + "vtable_address": 63550880, "methods": [ 15647408, 15740064, - 29643894, + 29647734, 15179744, 15833184, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14903600, 14851408, 15516560, 12011504, 14928256, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837376, 14801872 @@ -133786,23 +133786,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick", - "vtable_address": 63546816, + "vtable_address": 63550720, "methods": [ 15647280, 15695824, - 29643894, + 29647734, 15179568, 15796224, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812624, 14847728, 15329616, 12011504, 15047488, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837344, 14801856 @@ -133838,23 +133838,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary", - "vtable_address": 63542496, + "vtable_address": 63546400, "methods": [ 15643760, 15736448, - 29643894, + 29647734, 15175296, 15850848, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14894144, 14851696, 15508704, 12011504, 14987424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836480, 14801424 @@ -133890,23 +133890,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap", - "vtable_address": 63542336, + "vtable_address": 63546240, "methods": [ 15643632, 15694416, - 29643894, + 29647734, 15175120, 15795408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14823648, 14847536, 15318112, 12011504, 15077648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836448, 14801408 @@ -133942,23 +133942,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek", - "vtable_address": 63542176, + "vtable_address": 63546080, "methods": [ 15643504, 15694288, - 29643894, + 29647734, 15174992, 15795344, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14823552, 14847520, 15317520, 12011504, 14977792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836416, 14801392 @@ -133994,23 +133994,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Server2GCClientValidate", - "vtable_address": 63549216, + "vtable_address": 63553120, "methods": [ 15649168, 15696464, - 29643894, + 29647734, 15181984, 15796640, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825280, 14851264, 15335184, 12011504, 14914720, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837824, 14802096 @@ -134046,23 +134046,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerNotificationForUserPenalty", - "vtable_address": 63539136, + "vtable_address": 63543040, "methods": [ 15641472, 15693520, - 29643894, + 29647734, 15171888, 15794800, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14822544, 14851920, 15308464, 12011504, 14998912, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835808, 14801088 @@ -134098,23 +134098,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerVarValueNotificationInfo", - "vtable_address": 63548416, + "vtable_address": 63552320, "methods": [ 15648592, 15726960, - 29643894, + 29647734, 15181280, 15796432, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14874992, 14851312, 15333152, 12011504, 15019904, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837664, 14802016 @@ -134150,23 +134150,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetEventFavorite", - "vtable_address": 63557056, + "vtable_address": 63560960, "methods": [ 15655104, 15699664, - 29643894, + 29647734, 15189408, 15798624, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14813248, 14850592, 15362768, 12011504, 14930336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839392, 14802880 @@ -134202,23 +134202,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName", - "vtable_address": 63558816, + "vtable_address": 63562720, "methods": [ 15656832, 15716560, - 29643894, + 29647734, 15191168, 15816880, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14850448, 15368896, 12011504, 14911120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839744, 14803056 @@ -134254,23 +134254,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_WatchInfoUsers", - "vtable_address": 63541696, + "vtable_address": 63545600, "methods": [ 15643024, 15733280, - 29643894, + 29647734, 15174496, 15867312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14876576, 14851744, 15507248, 12011504, 15004288, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836320, 14801344 @@ -134306,23 +134306,23 @@ }, { "type_name": "CMsgGCClientDisplayNotification", - "vtable_address": 63521376, + "vtable_address": 63525280, "methods": [ 15627392, 15732160, - 29643894, + 29647734, 15147008, 15807712, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14876784, 14852848, 15249856, 12011504, 15019216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832256, 14796000 @@ -134358,23 +134358,23 @@ }, { "type_name": "CMsgGCClientVersionUpdated", - "vtable_address": 63525696, + "vtable_address": 63529600, "methods": [ 15630672, 15688912, - 29643894, + 29647734, 15150944, 15792240, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819904, 14852480, 15262464, 12011504, 14913824, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833120, 14796432 @@ -134410,23 +134410,23 @@ }, { "type_name": "CMsgGCCollectItem", - "vtable_address": 63524576, + "vtable_address": 63528480, "methods": [ 15629872, 15688400, - 29643894, + 29647734, 15149936, 15792032, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811360, 14852576, 15259808, 12011504, 14943136, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832896, 14796320 @@ -134462,23 +134462,23 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemFreeReward", - "vtable_address": 63540736, + "vtable_address": 63544640, "methods": [ 15642448, 15713200, - 29643894, + 29647734, 15173456, 15795136, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872816, 14851776, 15315088, 12011504, 14984256, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836128, 14801248 @@ -134514,23 +134514,23 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemMissionReward", - "vtable_address": 63540576, + "vtable_address": 63544480, "methods": [ 15642320, 15694032, - 29643894, + 29647734, 15173312, 15795072, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14823296, 14851792, 15314464, 12011504, 15046752, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836096, 14801232 @@ -134566,23 +134566,23 @@ }, { "type_name": "CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded", - "vtable_address": 63540896, + "vtable_address": 63544800, "methods": [ 15642592, 15739536, - 29643894, + 29647734, 15173648, 15835840, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14900000, 14848064, 15490656, 12011504, 15123808, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836160, 14801264 @@ -134618,23 +134618,23 @@ }, { "type_name": "CMsgGCDev_SchemaReservationRequest", - "vtable_address": 63578176, + "vtable_address": 63582080, "methods": [ 15672384, 15729520, - 29643894, + 29647734, 15212064, 15824576, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14865232, 14849712, 15423616, 12011504, 15022912, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843616, 14806992 @@ -134670,23 +134670,23 @@ }, { "type_name": "CMsgGCError", - "vtable_address": 63519296, + "vtable_address": 63523200, "methods": [ 15625648, 15710320, - 29643894, + 29647734, 15144896, 15806288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14853008, 15243984, 12011504, 14910240, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831840, 14795792 @@ -134722,23 +134722,23 @@ }, { "type_name": "CMsgGCGiftedItems", - "vtable_address": 63578016, + "vtable_address": 63581920, "methods": [ 15672240, 15721040, - 29643894, + 29647734, 15211904, 15801936, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14876032, 14849728, 15422768, 12011504, 15049952, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843584, 14806976 @@ -134774,23 +134774,23 @@ }, { "type_name": "CMsgGCHAccountPhoneNumberChange", - "vtable_address": 63591296, + "vtable_address": 63595200, "methods": [ 15682432, 15708496, - 29643894, + 29647734, 15226368, 15803632, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828976, 14849056, 15458512, 12011504, 15003328, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846240, 14809856 @@ -134826,23 +134826,23 @@ }, { "type_name": "CMsgGCHInviteUserToLobby", - "vtable_address": 63591456, + "vtable_address": 63595360, "methods": [ 15682560, 15708624, - 29643894, + 29647734, 15226528, 15803696, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829088, 14849040, 15459120, 12011504, 14955328, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846272, 14809872 @@ -134878,23 +134878,23 @@ }, { "type_name": "CMsgGCHRecurringSubscriptionStatusChange", - "vtable_address": 63591616, + "vtable_address": 63595520, "methods": [ 15682688, 15708752, - 29643894, + 29647734, 15226672, 15803760, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829200, 14849024, 15459728, 12011504, 14958752, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846304, 14809888 @@ -134930,23 +134930,23 @@ }, { "type_name": "CMsgGCHVacVerificationChange", - "vtable_address": 63591136, + "vtable_address": 63595040, "methods": [ 15682304, 15708368, - 29643894, + 29647734, 15226224, 15803568, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828896, 14849072, 15457904, 12011504, 14949472, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846208, 14809840 @@ -134982,23 +134982,23 @@ }, { "type_name": "CMsgGCIncrementKillCountResponse", - "vtable_address": 63521696, + "vtable_address": 63525600, "methods": [ 15627696, 15686992, - 29643894, + 29647734, 15147296, 15791312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819056, 14852816, 15250864, 12011504, 15008544, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832320, 14796032 @@ -135034,23 +135034,23 @@ }, { "type_name": "CMsgGCItemCustomizationNotification", - "vtable_address": 63578656, + "vtable_address": 63582560, "methods": [ 15672800, 15729680, - 29643894, + 29647734, 15212528, 15802112, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14873040, 14849664, 15425264, 12011504, 14990624, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843712, 14807040 @@ -135086,23 +135086,23 @@ }, { "type_name": "CMsgGCItemPreviewItemBoughtNotification", - "vtable_address": 63522336, + "vtable_address": 63526240, "methods": [ 15628208, 15687504, - 29643894, + 29647734, 15147920, 15791568, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819552, 14852752, 15253200, 12011504, 14912928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832448, 14796096 @@ -135138,23 +135138,23 @@ }, { "type_name": "CMsgGCMultiplexMessage", - "vtable_address": 63584896, + "vtable_address": 63588800, "methods": [ 15677552, 15730640, - 29643894, + 29647734, 15219904, 15827904, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872320, 14849440, 15444720, 12011504, 15030528, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844960, 14808976 @@ -135190,23 +135190,23 @@ }, { "type_name": "CMsgGCMultiplexMessage_Response", - "vtable_address": 63585056, + "vtable_address": 63588960, "methods": [ 15677712, 15707216, - 29643894, + 29647734, 15220048, 15802832, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828416, 14849424, 15445488, 12011504, 14916288, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844992, 14808992 @@ -135242,23 +135242,23 @@ }, { "type_name": "CMsgGCNameItemNotification", - "vtable_address": 63521216, + "vtable_address": 63525120, "methods": [ 15627248, 15710960, - 29643894, + 29647734, 15146736, 15807408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14857056, 14852864, 15249280, 12011504, 14961920, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832224, 14795984 @@ -135294,23 +135294,23 @@ }, { "type_name": "CMsgGCReportAbuse", - "vtable_address": 63520896, + "vtable_address": 63524800, "methods": [ 15626960, 15710640, - 29643894, + 29647734, 15146480, 15806800, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856768, 14852896, 15247984, 12011504, 15067104, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832160, 14795952 @@ -135346,23 +135346,23 @@ }, { "type_name": "CMsgGCReportAbuseResponse", - "vtable_address": 63521056, + "vtable_address": 63524960, "methods": [ 15627104, 15710800, - 29643894, + 29647734, 15146608, 15807104, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856960, 14852880, 15248704, 12011504, 14961536, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832192, 14795968 @@ -135398,23 +135398,23 @@ }, { "type_name": "CMsgGCRequestAnnouncements", - "vtable_address": 63523296, + "vtable_address": 63527200, "methods": [ 14881616, 14881632, - 29643894, + 29647734, 15148720, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14832640, 14796192 @@ -135461,23 +135461,23 @@ }, { "type_name": "CMsgGCRequestAnnouncementsResponse", - "vtable_address": 63523456, + "vtable_address": 63527360, "methods": [ 15628992, 15732336, - 29643894, + 29647734, 15148880, 15807856, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14857152, 14852656, 15256400, 12011504, 15014208, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832672, 14796208 @@ -135513,23 +135513,23 @@ }, { "type_name": "CMsgGCRequestSessionIP", - "vtable_address": 63586176, + "vtable_address": 63590080, "methods": [ 15678512, 15707728, - 29643894, + 29647734, 15221008, 15803056, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810608, 14849328, 15448592, 12011504, 14884496, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845216, 14809104 @@ -135565,23 +135565,23 @@ }, { "type_name": "CMsgGCRequestSessionIPResponse", - "vtable_address": 63586336, + "vtable_address": 63590240, "methods": [ 15678640, 15707856, - 29643894, + 29647734, 15221152, 15803104, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810704, 14849312, 15448912, 12011504, 14884608, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845248, 14809120 @@ -135617,23 +135617,23 @@ }, { "type_name": "CMsgGCServerVersionUpdated", - "vtable_address": 63525536, + "vtable_address": 63529440, "methods": [ 15630544, 15688784, - 29643894, + 29647734, 15150800, 15792192, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819856, 14852496, 15261984, 12011504, 14913600, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833088, 14796416 @@ -135669,23 +135669,23 @@ }, { "type_name": "CMsgGCShowItemsPickedUp", - "vtable_address": 63521536, + "vtable_address": 63525440, "methods": [ 15627568, 15686864, - 29643894, + 29647734, 15147136, 15791264, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810608, 14852832, 15250544, 12011504, 14882928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832288, 14796016 @@ -135721,23 +135721,23 @@ }, { "type_name": "CMsgGCStorePurchaseCancel", - "vtable_address": 63522496, + "vtable_address": 63526400, "methods": [ 15628336, 15687632, - 29643894, + 29647734, 15148048, 15791616, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811264, 14852736, 15253680, 12011504, 14917184, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832480, 14796112 @@ -135773,23 +135773,23 @@ }, { "type_name": "CMsgGCStorePurchaseCancelResponse", - "vtable_address": 63522656, + "vtable_address": 63526560, "methods": [ 15628464, 15687760, - 29643894, + 29647734, 15148192, 15791664, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819600, 14852720, 15254160, 12011504, 14913152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832512, 14796128 @@ -135825,23 +135825,23 @@ }, { "type_name": "CMsgGCStorePurchaseFinalize", - "vtable_address": 63522816, + "vtable_address": 63526720, "methods": [ 15628592, 15687888, - 29643894, + 29647734, 15148320, 15791712, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811312, 14852704, 15254640, 12011504, 14917408, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832544, 14796144 @@ -135877,23 +135877,23 @@ }, { "type_name": "CMsgGCStorePurchaseFinalizeResponse", - "vtable_address": 63522976, + "vtable_address": 63526880, "methods": [ 15628720, 15711120, - 29643894, + 29647734, 15148464, 15791760, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872656, 14852688, 15255120, 12011504, 14950720, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832576, 14796160 @@ -135929,23 +135929,23 @@ }, { "type_name": "CMsgGCStorePurchaseInit", - "vtable_address": 63514176, + "vtable_address": 63518080, "methods": [ 15621216, 15732512, - 29643894, + 29647734, 15140064, 15836336, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14904800, 14853408, 15478384, 12011504, 15005984, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14830816, 14795280 @@ -135981,23 +135981,23 @@ }, { "type_name": "CMsgGCStorePurchaseInitResponse", - "vtable_address": 63514336, + "vtable_address": 63518240, "methods": [ 15621392, 15724720, - 29643894, + 29647734, 15140240, 15804112, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14873152, 14853392, 15229424, 12011504, 15021120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14830848, 14795296 @@ -136033,23 +136033,23 @@ }, { "type_name": "CMsgGCToClientSteamDatagramTicket", - "vtable_address": 63555936, + "vtable_address": 63559840, "methods": [ 15654272, 15715920, - 29643894, + 29647734, 15188368, 15814912, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14870016, 14850672, 15360048, 12011504, 14922960, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839168, 14802768 @@ -136085,23 +136085,23 @@ }, { "type_name": "CMsgGCToGCBannedWordListBroadcast", - "vtable_address": 63523936, + "vtable_address": 63527840, "methods": [ 15779152, 15780464, - 29643894, + 29647734, 15149328, 15843648, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14896928, 14852640, 15257632, 12011504, 14853424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832768, 14796256 @@ -136137,23 +136137,23 @@ }, { "type_name": "CMsgGCToGCBannedWordListUpdated", - "vtable_address": 63524096, + "vtable_address": 63528000, "methods": [ 15629472, 15688144, - 29643894, + 29647734, 15149472, 15791872, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819728, 14852624, 15258048, 12011504, 14913376, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832800, 14796272 @@ -136189,23 +136189,23 @@ }, { "type_name": "CMsgGCToGCBroadcastConsoleCommand", - "vtable_address": 63525376, + "vtable_address": 63529280, "methods": [ 15630400, 15711760, - 29643894, + 29647734, 15150656, 15808560, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14852512, 15261584, 12011504, 14910592, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833056, 14796400 @@ -136241,23 +136241,23 @@ }, { "type_name": "CMsgGCToGCDirtyMultipleSDOCache", - "vtable_address": 63524416, + "vtable_address": 63528320, "methods": [ 15629728, 15711440, - 29643894, + 29647734, 15149776, 15791984, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872736, 14852592, 15259104, 12011504, 14951136, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832864, 14796304 @@ -136293,23 +136293,23 @@ }, { "type_name": "CMsgGCToGCDirtySDOCache", - "vtable_address": 63524256, + "vtable_address": 63528160, "methods": [ 15629600, 15688272, - 29643894, + 29647734, 15149632, 15791920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819776, 14852608, 15258528, 12011504, 14942784, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832832, 14796288 @@ -136345,23 +136345,23 @@ }, { "type_name": "CMsgGCToGCIsTrustedServer", - "vtable_address": 63525056, + "vtable_address": 63528960, "methods": [ 15630144, 15688528, - 29643894, + 29647734, 15150352, 15792096, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810608, 14852544, 15260784, 12011504, 14883040, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832992, 14796368 @@ -136397,23 +136397,23 @@ }, { "type_name": "CMsgGCToGCIsTrustedServerResponse", - "vtable_address": 63525216, + "vtable_address": 63529120, "methods": [ 15630272, 15688656, - 29643894, + 29647734, 15150496, 15792144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810352, 14852528, 15261104, 12011504, 14885568, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833024, 14796384 @@ -136449,23 +136449,23 @@ }, { "type_name": "CMsgGCToGCRequestPassportItemGrant", - "vtable_address": 63526016, + "vtable_address": 63529920, "methods": [ 15630800, 15689040, - 29643894, + 29647734, 15151232, 15792288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819952, 14852464, 15262944, 12011504, 14957504, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833184, 14796464 @@ -136501,23 +136501,23 @@ }, { "type_name": "CMsgGCToGCUpdateSQLKeyValue", - "vtable_address": 63524896, + "vtable_address": 63528800, "methods": [ 15630000, 15711600, - 29643894, + 29647734, 15150224, 15808304, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14852560, 15260384, 12011504, 14910416, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832960, 14796352 @@ -136553,23 +136553,23 @@ }, { "type_name": "CMsgGCToGCWebAPIAccountChanged", - "vtable_address": 63525856, + "vtable_address": 63529760, "methods": [ 14881488, 14881504, - 29643894, + 29647734, 15151072, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14833152, 14796448 @@ -136616,23 +136616,23 @@ }, { "type_name": "CMsgGCUpdateSessionIP", - "vtable_address": 63586016, + "vtable_address": 63589920, "methods": [ 15678384, 15707600, - 29643894, + 29647734, 15220880, 15802992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810640, 14849344, 15448192, 12011504, 14884320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845184, 14809088 @@ -136668,23 +136668,23 @@ }, { "type_name": "CMsgGCUserTrackTimePlayedConsecutively", - "vtable_address": 63578496, + "vtable_address": 63582400, "methods": [ 15672672, 15706064, - 29643894, + 29647734, 15212368, 15802064, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827872, 14849680, 15424784, 12011504, 14915616, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843680, 14807024 @@ -136720,23 +136720,23 @@ }, { "type_name": "CMsgGC_GlobalGame_Play", - "vtable_address": 63552416, + "vtable_address": 63556320, "methods": [ 15651456, 15698000, - 29643894, + 29647734, 15184928, 15797680, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826368, 14850976, 15347040, 12011504, 14979296, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838464, 14802416 @@ -136772,23 +136772,23 @@ }, { "type_name": "CMsgGC_GlobalGame_Subscribe", - "vtable_address": 63552096, + "vtable_address": 63556000, "methods": [ 15651200, 15697744, - 29643894, + 29647734, 15184624, 15797584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812912, 14851008, 15346080, 12011504, 14918528, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838400, 14802384 @@ -136824,23 +136824,23 @@ }, { "type_name": "CMsgGC_GlobalGame_Unsubscribe", - "vtable_address": 63552256, + "vtable_address": 63556160, "methods": [ 15651328, 15697872, - 29643894, + 29647734, 15184768, 15797632, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14812960, 14850992, 15346560, 12011504, 14918752, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838432, 14802400 @@ -136876,23 +136876,23 @@ }, { "type_name": "CMsgGC_ServerQuestUpdateData", - "vtable_address": 63535296, + "vtable_address": 63539200, "methods": [ 15781232, 15782288, - 29643894, + 29647734, 15167744, 15844272, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14901280, 14847568, 15492736, 12011504, 15060096, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835040, 14800704 @@ -136928,23 +136928,23 @@ }, { "type_name": "CMsgGameServerInfo", - "vtable_address": 63526176, + "vtable_address": 63530080, "methods": [ 15630928, 15711920, - 29643894, + 29647734, 15151408, 15808816, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14857456, 14852448, 15263536, 12011504, 15103600, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833216, 14796480 @@ -136980,23 +136980,23 @@ }, { "type_name": "CMsgIPCAddress", - "vtable_address": 63622736, + "vtable_address": 63626640, "methods": [ 16570688, 16605552, - 29643894, + 29647734, 16227408, 16680400, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999552, 15994640, 16306128, 12011504, 16079552, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014528, 15985808 @@ -137032,23 +137032,23 @@ }, { "type_name": "CMsgIncrementKillCountAttribute", - "vtable_address": 63516896, + "vtable_address": 63520800, "methods": [ 15623456, 15685200, - 29643894, + 29647734, 15142640, 15790352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818176, 14853200, 15235888, 12011504, 15007968, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831360, 14795552 @@ -137084,23 +137084,23 @@ }, { "type_name": "CMsgInvitationCreated", - "vtable_address": 63515136, + "vtable_address": 63519040, "methods": [ 15622112, 15684560, - 29643894, + 29647734, 15140976, 15790064, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810736, 14853312, 15232416, 12011504, 14923168, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831008, 14795376 @@ -137136,23 +137136,23 @@ }, { "type_name": "CMsgInviteToParty", - "vtable_address": 63514976, + "vtable_address": 63518880, "methods": [ 15621984, 15684432, - 29643894, + 29647734, 15140816, 15790000, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817824, 14853328, 15231824, 12011504, 14956704, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14830976, 14795360 @@ -137188,23 +137188,23 @@ }, { "type_name": "CMsgItemAcknowledged", - "vtable_address": 63544256, + "vtable_address": 63548160, "methods": [ 15645360, 15753664, - 29643894, + 29647734, 15176992, 15854544, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14860832, 14851552, 15325040, 12011504, 14853936, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836832, 14801600 @@ -137240,23 +137240,23 @@ }, { "type_name": "CMsgItemAcknowledged__DEPRECATED", - "vtable_address": 63520416, + "vtable_address": 63524320, "methods": [ 15626544, 15686608, - 29643894, + 29647734, 15146000, 15791136, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818752, 14852928, 15246672, 12011504, 15089888, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832064, 14795904 @@ -137292,23 +137292,23 @@ }, { "type_name": "CMsgKickFromParty", - "vtable_address": 63515456, + "vtable_address": 63519360, "methods": [ 15622368, 15684816, - 29643894, + 29647734, 15141248, 15790192, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810608, 14853280, 15233504, 12011504, 14882544, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831072, 14795408 @@ -137344,23 +137344,23 @@ }, { "type_name": "CMsgLANServerAvailable", - "vtable_address": 63515936, + "vtable_address": 63519840, "methods": [ 15622496, 15684944, - 29643894, + 29647734, 15141632, 15790240, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810608, 14853264, 15233824, 12011504, 14882656, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831168, 14795456 @@ -137396,23 +137396,23 @@ }, { "type_name": "CMsgLeaveParty", - "vtable_address": 63515616, + "vtable_address": 63519520, "methods": [ 14881808, 14881824, - 29643894, + 29647734, 15141376, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14831104, 14795424 @@ -137459,23 +137459,23 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome", - "vtable_address": 63547936, + "vtable_address": 63551840, "methods": [ 15761936, 15762960, - 29643894, + 29647734, 15180736, 15871680, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14901568, 14851360, 15469680, 12011504, 15085488, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837568, 14801968 @@ -137511,23 +137511,23 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome_Location", - "vtable_address": 63547776, + "vtable_address": 63551680, "methods": [ 15648160, 15714480, - 29643894, + 29647734, 15180560, 15812736, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867040, 14847808, 15331216, 12011504, 14932176, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837536, 14801952 @@ -137563,23 +137563,23 @@ }, { "type_name": "CMsgModifyItemAttribute", - "vtable_address": 63517216, + "vtable_address": 63521120, "methods": [ 15623712, 15685456, - 29643894, + 29647734, 15142928, 15790512, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818528, 14853168, 15237232, 12011504, 14974400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831424, 14795584 @@ -137615,23 +137615,23 @@ }, { "type_name": "CMsgOpenCrate", - "vtable_address": 63526816, + "vtable_address": 63530720, "methods": [ 15631488, 15689424, - 29643894, + 29647734, 15152032, 15792480, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820304, 14852400, 15266080, 12011504, 15000480, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833344, 14796544 @@ -137667,23 +137667,23 @@ }, { "type_name": "CMsgPartyInviteResponse", - "vtable_address": 63515296, + "vtable_address": 63519200, "methods": [ 15622240, 15684688, - 29643894, + 29647734, 15141120, 15790128, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817920, 14853296, 15232912, 12011504, 14999936, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831040, 14795392 @@ -137719,23 +137719,23 @@ }, { "type_name": "CMsgPlaceDecalEvent", - "vtable_address": 63580736, + "vtable_address": 63584640, "methods": [ 15674624, 15747392, - 29643894, + 29647734, 13235152, 15974352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15978096, 13224224, 15431792, 12011504, 15101792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844128, 14807744 @@ -137771,23 +137771,23 @@ }, { "type_name": "CMsgPlayerBulletHit", - "vtable_address": 63530176, + "vtable_address": 63534080, "methods": [ 15634320, 15748288, - 29643894, + 29647734, 15155712, 15974128, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15977664, 14852144, 15277712, 12011504, 15068928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834016, 14797248 @@ -137823,23 +137823,23 @@ }, { "type_name": "CMsgPlayerInfo", - "vtable_address": 63627376, + "vtable_address": 63631280, "methods": [ 16574592, 16620592, - 29643894, + 29647734, 16232080, 16697552, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16033728, 15998064, 16320784, 12011504, 16135136, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015456, 15986752 @@ -137875,23 +137875,23 @@ }, { "type_name": "CMsgProtoBufHeader", - "vtable_address": 63631216, + "vtable_address": 63635120, "methods": [ 16578032, 16629344, - 29643894, + 29647734, 16236208, 16700496, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16034112, 15997808, 16334144, 12011504, 16170432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016224, 15987264 @@ -137927,23 +137927,23 @@ }, { "type_name": "CMsgQAngle", - "vtable_address": 63626736, + "vtable_address": 63630640, "methods": [ 16574208, 16606832, - 29643894, + 29647734, 16231472, 16681200, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999168, 15994512, 16318528, 12011504, 16052864, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015328, 15986688 @@ -137979,23 +137979,23 @@ }, { "type_name": "CMsgQuaternion", - "vtable_address": 63626896, + "vtable_address": 63630800, "methods": [ 16574336, 16606960, - 29643894, + 29647734, 16231632, 16681264, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999008, 15994768, 16318944, 12011504, 16053104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015360, 15986704 @@ -138031,23 +138031,23 @@ }, { "type_name": "CMsgRGBA", - "vtable_address": 63627216, + "vtable_address": 63631120, "methods": [ 16574464, 16607088, - 29643894, + 29647734, 16231936, 16681328, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025248, 15994864, 16319968, 12011504, 16129408, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015424, 15986736 @@ -138083,23 +138083,23 @@ }, { "type_name": "CMsgRecurringMissionSchema", - "vtable_address": 63559296, + "vtable_address": 63563200, "methods": [ 15657120, 15741472, - 29643894, + 29647734, 15191664, 15831648, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14879232, 14850432, 15522576, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14839840, 14803104 @@ -138135,23 +138135,23 @@ }, { "type_name": "CMsgRecurringMissionSchema_MissionTemplateList", - "vtable_address": 63559136, + "vtable_address": 63563040, "methods": [ 15656976, 15716720, - 29643894, + 29647734, 15191488, 15798736, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14879056, 14847968, 15369296, 12011504, 14953152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839808, 14803088 @@ -138187,23 +138187,23 @@ }, { "type_name": "CMsgReplayUploadedToYouTube", - "vtable_address": 63520096, + "vtable_address": 63524000, "methods": [ 15626256, 15725520, - 29643894, + 29647734, 15145696, 15806672, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856640, 14852960, 15245648, 12011504, 14992448, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832000, 14795872 @@ -138239,23 +138239,23 @@ }, { "type_name": "CMsgReplicateConVars", - "vtable_address": 63519776, + "vtable_address": 63523680, "methods": [ 15625952, 15737952, - 29643894, + 29647734, 15145360, 15846976, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14931968, 14852992, 15483264, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14831936, 14795840 @@ -138291,23 +138291,23 @@ }, { "type_name": "CMsgRequestInventoryRefresh", - "vtable_address": 63519456, + "vtable_address": 63523360, "methods": [ 14881680, 14881696, - 29643894, + 29647734, 15145024, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14831872, 14795808 @@ -138354,23 +138354,23 @@ }, { "type_name": "CMsgRequestRecurringMissionSchedule", - "vtable_address": 63558976, + "vtable_address": 63562880, "methods": [ 14881104, 14881120, - 29643894, + 29647734, 15191296, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14839776, 14803072 @@ -138417,23 +138417,23 @@ }, { "type_name": "CMsgSDONoMemcached", - "vtable_address": 63524736, + "vtable_address": 63528640, "methods": [ 14881552, 14881568, - 29643894, + 29647734, 15150064, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14832928, 14796336 @@ -138480,23 +138480,23 @@ }, { "type_name": "CMsgSOCacheHaveVersion", - "vtable_address": 63586496, + "vtable_address": 63590400, "methods": [ 15776128, 15778368, - 29643894, + 29647734, 15221312, 15870032, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14830336, 14848656, 15449232, 12011504, 14884720, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845280, 14809136 @@ -138532,23 +138532,23 @@ }, { "type_name": "CMsgSOCacheSubscribed", - "vtable_address": 63583936, + "vtable_address": 63587840, "methods": [ 15784272, 15785424, - 29643894, + 29647734, 15219040, 15870864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14879520, 14847776, 15467248, 12011504, 14885344, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844768, 14808880 @@ -138584,23 +138584,23 @@ }, { "type_name": "CMsgSOCacheSubscribed_SubscribedType", - "vtable_address": 63583776, + "vtable_address": 63587680, "methods": [ 15677136, 15722640, - 29643894, + 29647734, 15218864, 15802720, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14879344, 14848640, 15441056, 12011504, 14954016, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844736, 14808864 @@ -138636,23 +138636,23 @@ }, { "type_name": "CMsgSOCacheSubscriptionCheck", - "vtable_address": 63584256, + "vtable_address": 63588160, "methods": [ 15776768, 15777728, - 29643894, + 29647734, 15219328, 15869888, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14830160, 14847792, 15442064, 12011504, 14884048, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844832, 14808912 @@ -138688,23 +138688,23 @@ }, { "type_name": "CMsgSOCacheSubscriptionRefresh", - "vtable_address": 63584416, + "vtable_address": 63588320, "methods": [ 15776448, 15778048, - 29643894, + 29647734, 15219456, 15869760, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14830256, 14849488, 15442560, 12011504, 14855024, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844864, 14808928 @@ -138740,23 +138740,23 @@ }, { "type_name": "CMsgSOCacheUnsubscribed", - "vtable_address": 63584096, + "vtable_address": 63588000, "methods": [ 15777088, 15777408, - 29643894, + 29647734, 15219168, 15869632, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14830080, 14849504, 15441648, 12011504, 14854928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844800, 14808896 @@ -138792,23 +138792,23 @@ }, { "type_name": "CMsgSOCacheVersion", - "vtable_address": 63584576, + "vtable_address": 63588480, "methods": [ 15677280, 15707088, - 29643894, + 29647734, 15219584, 15802784, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810608, 14849472, 15442976, 12011504, 14884208, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844896, 14808944 @@ -138844,23 +138844,23 @@ }, { "type_name": "CMsgSOIDOwner", - "vtable_address": 63583136, + "vtable_address": 63587040, "methods": [ 15676864, 15706960, - 29643894, + 29647734, 15218208, 15802656, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828336, 14848608, 15439264, 12011504, 14948064, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844608, 14808800 @@ -138896,23 +138896,23 @@ }, { "type_name": "CMsgSOMultipleObjects", - "vtable_address": 63583616, + "vtable_address": 63587520, "methods": [ 15784656, 15785040, - 29643894, + 29647734, 15218672, 15874320, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14890384, 14849520, 15466608, 12011504, 14885120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844704, 14808848 @@ -138948,23 +138948,23 @@ }, { "type_name": "CMsgSOMultipleObjects_SingleObject", - "vtable_address": 63583456, + "vtable_address": 63587360, "methods": [ 15676992, 15722480, - 29643894, + 29647734, 15218496, 15827456, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872224, 14848624, 15440480, 12011504, 14970784, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844672, 14808832 @@ -139000,23 +139000,23 @@ }, { "type_name": "CMsgSOSingleObject", - "vtable_address": 63583296, + "vtable_address": 63587200, "methods": [ 15783568, 15783920, - 29643894, + 29647734, 15218352, 15827312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872032, 14849536, 15439840, 12011504, 15027008, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844640, 14808816 @@ -139052,23 +139052,23 @@ }, { "type_name": "CMsgSerializedSOCache", - "vtable_address": 63590976, + "vtable_address": 63594880, "methods": [ 15682144, 15744112, - 29643894, + 29647734, 15225904, 15841008, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14889376, 14849088, 15476416, 12011504, 14962752, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846176, 14809584 @@ -139104,23 +139104,23 @@ }, { "type_name": "CMsgSerializedSOCache_Cache", - "vtable_address": 63590816, + "vtable_address": 63594720, "methods": [ 15681952, 15736656, - 29643894, + 29647734, 15225728, 15840688, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14889040, 14848848, 15475648, 12011504, 14987904, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846144, 14809568 @@ -139156,23 +139156,23 @@ }, { "type_name": "CMsgSerializedSOCache_Cache_Version", - "vtable_address": 63590656, + "vtable_address": 63594560, "methods": [ 15681824, 15708240, - 29643894, + 29647734, 15225536, 15803504, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828816, 14848816, 15457328, 12011504, 14948416, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846112, 14809552 @@ -139208,23 +139208,23 @@ }, { "type_name": "CMsgSerializedSOCache_TypeCache", - "vtable_address": 63590496, + "vtable_address": 63594400, "methods": [ 15681680, 15724560, - 29643894, + 29647734, 15225376, 15803408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14879712, 14848832, 15456784, 12011504, 14988384, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846080, 14809536 @@ -139260,23 +139260,23 @@ }, { "type_name": "CMsgServerAvailable", - "vtable_address": 63515776, + "vtable_address": 63519680, "methods": [ 14881744, 14881760, - 29643894, + 29647734, 15141504, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14831136, 14795440 @@ -139323,23 +139323,23 @@ }, { "type_name": "CMsgServerHello", - "vtable_address": 63586816, + "vtable_address": 63590720, "methods": [ 15678928, 15735408, - 29643894, + 29647734, 15221696, 15863408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14897440, 14849280, 15468816, 12011504, 15076576, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845344, 14809168 @@ -139375,23 +139375,23 @@ }, { "type_name": "CMsgServerNetworkStats", - "vtable_address": 63624976, + "vtable_address": 63628880, "methods": [ 16572560, 16633488, - 29643894, + 29647734, 16229584, 16719280, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16065472, 15998208, 16469424, 12011504, 16212912, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014976, 15986048 @@ -139427,23 +139427,23 @@ }, { "type_name": "CMsgServerNetworkStats_Player", - "vtable_address": 63624816, + "vtable_address": 63628720, "methods": [ 16572416, 16619952, - 29643894, + 29647734, 16229424, 16696400, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16033536, 15994736, 16312368, 12011504, 16149760, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014944, 15986032 @@ -139479,23 +139479,23 @@ }, { "type_name": "CMsgServerNetworkStats_Port", - "vtable_address": 63624656, + "vtable_address": 63628560, "methods": [ 16572272, 16619792, - 29643894, + 29647734, 16229280, 16696176, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16033440, 15994720, 16311792, 12011504, 16087616, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014912, 15986016 @@ -139531,23 +139531,23 @@ }, { "type_name": "CMsgServerPeer", - "vtable_address": 63622896, + "vtable_address": 63626800, "methods": [ 16641632, 16661488, - 29643894, + 29647734, 16227568, 16721184, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16067312, 15994656, 16306624, 12011504, 16127104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014560, 15985824 @@ -139583,23 +139583,23 @@ }, { "type_name": "CMsgServerUserCmd", - "vtable_address": 63625936, + "vtable_address": 63629840, "methods": [ 16573520, 16620432, - 29643894, + 29647734, 16230464, 16697280, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16040848, 15994752, 16316464, 12011504, 16157312, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015168, 15986144 @@ -139635,23 +139635,23 @@ }, { "type_name": "CMsgSetItemPositions", - "vtable_address": 63520736, + "vtable_address": 63524640, "methods": [ 15626800, 15738128, - 29643894, + 29647734, 15146336, 15832096, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14890176, 14852912, 15483728, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14832128, 14795936 @@ -139687,23 +139687,23 @@ }, { "type_name": "CMsgSetItemPositions_ItemPosition", - "vtable_address": 63520576, + "vtable_address": 63524480, "methods": [ 15626672, 15686736, - 29643894, + 29647734, 15146160, 15791200, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818960, 14846768, 15247408, 12011504, 14975392, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832096, 14795920 @@ -139739,23 +139739,23 @@ }, { "type_name": "CMsgSortItems", - "vtable_address": 63518496, + "vtable_address": 63522400, "methods": [ 15624928, 15686224, - 29643894, + 29647734, 15144160, 15790896, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818704, 14853088, 15241264, 12011504, 14912704, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831680, 14795712 @@ -139791,23 +139791,23 @@ }, { "type_name": "CMsgSosSetLibraryStackFields", - "vtable_address": 63582976, + "vtable_address": 63586880, "methods": [ 15676720, 15722320, - 29643894, + 29647734, 13834768, 15827040, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871952, 13830256, 15438816, 12011504, 14954400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844576, 14807968 @@ -139843,23 +139843,23 @@ }, { "type_name": "CMsgSosSetSoundEventParams", - "vtable_address": 63582816, + "vtable_address": 63586720, "methods": [ 15676576, 15722160, - 29643894, + 29647734, 13834304, 15826768, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871856, 13830240, 15438240, 12011504, 14970400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844544, 14807952 @@ -139895,23 +139895,23 @@ }, { "type_name": "CMsgSosStartSoundEvent", - "vtable_address": 63582336, + "vtable_address": 63586240, "methods": [ 15676176, 15722000, - 29643894, + 29647734, 13832880, 15826464, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871680, 13830192, 15436624, 12011504, 15075136, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844448, 14807904 @@ -139947,23 +139947,23 @@ }, { "type_name": "CMsgSosStopSoundEvent", - "vtable_address": 63582496, + "vtable_address": 63586400, "methods": [ 15676320, 15706704, - 29643894, + 29647734, 13833344, 15802544, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817504, 13830208, 15437264, 12011504, 14921664, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844480, 14807920 @@ -139999,23 +139999,23 @@ }, { "type_name": "CMsgSosStopSoundEventHash", - "vtable_address": 63582656, + "vtable_address": 63586560, "methods": [ 15676448, 15706832, - 29643894, + 29647734, 13833824, 15802592, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817552, 13830224, 15437744, 12011504, 14923712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844512, 14807936 @@ -140051,23 +140051,23 @@ }, { "type_name": "CMsgSource1LegacyGameEvent", - "vtable_address": 63582176, + "vtable_address": 63586080, "methods": [ 15676000, 15734048, - 29643894, + 29647734, 15216736, 15847584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14922096, 14849552, 15465904, 12011504, 15031712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844416, 14807888 @@ -140103,23 +140103,23 @@ }, { "type_name": "CMsgSource1LegacyGameEventList", - "vtable_address": 63581696, + "vtable_address": 63585600, "methods": [ 15675552, 15743232, - 29643894, + 29647734, 15216240, 15834528, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14891584, 14849584, 15465440, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14844320, 14807840 @@ -140155,23 +140155,23 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_descriptor_t", - "vtable_address": 63581536, + "vtable_address": 63585440, "methods": [ 15675376, 15733856, - 29643894, + 29647734, 15216064, 15834144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14891296, 14848576, 15464816, 12011504, 14967936, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844288, 14807824 @@ -140207,23 +140207,23 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_key_t", - "vtable_address": 63581376, + "vtable_address": 63585280, "methods": [ 15675232, 15721520, - 29643894, + 29647734, 15215872, 15825888, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14866400, 14848560, 15434560, 12011504, 14934912, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844256, 14807808 @@ -140259,23 +140259,23 @@ }, { "type_name": "CMsgSource1LegacyGameEvent_key_t", - "vtable_address": 63582016, + "vtable_address": 63585920, "methods": [ 15675856, 15721840, - 29643894, + 29647734, 15216528, 15826160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14866496, 14848592, 15435840, 12011504, 15118336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844384, 14807872 @@ -140311,23 +140311,23 @@ }, { "type_name": "CMsgSource1LegacyListenEvents", - "vtable_address": 63581856, + "vtable_address": 63585760, "methods": [ 15675712, 15721680, - 29643894, + 29647734, 15216384, 15802496, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14876192, 14849568, 15435136, 12011504, 14952352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844352, 14807856 @@ -140363,23 +140363,23 @@ }, { "type_name": "CMsgSource2NetworkFlowQuality", - "vtable_address": 63616016, + "vtable_address": 63619920, "methods": [ 16565744, 16604400, - 29643894, + 29647734, 16220848, 16679648, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027744, 15994416, 16282272, 12011504, 16197552, - 29642796, - 29643062, + 29646636, + 29646902, 15994240, 16013184, 15985136 @@ -140415,23 +140415,23 @@ }, { "type_name": "CMsgSource2PerfIntervalSample", - "vtable_address": 63616336, + "vtable_address": 63620240, "methods": [ 16566016, 16634992, - 29643894, + 29647734, 16221168, 16713872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16061376, 15994432, 16458416, 12011504, 16124032, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013248, 15985168 @@ -140467,23 +140467,23 @@ }, { "type_name": "CMsgSource2PerfIntervalSample_Tag", - "vtable_address": 63616176, + "vtable_address": 63620080, "methods": [ 16565872, 16616912, - 29643894, + 29647734, 16220992, 16691712, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008736, 15994368, 16285408, 12011504, 16086208, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013216, 15985152 @@ -140519,23 +140519,23 @@ }, { "type_name": "CMsgSource2SystemSpecs", - "vtable_address": 63615536, + "vtable_address": 63619440, "methods": [ 16565424, 16631984, - 29643894, + 29647734, 16220336, 16691120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16007488, 15994384, 16279792, 12011504, 16191008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013088, 15985088 @@ -140571,23 +140571,23 @@ }, { "type_name": "CMsgSource2VProfLiteReport", - "vtable_address": 63615856, + "vtable_address": 63619760, "methods": [ 16651152, 16652928, - 29643894, + 29647734, 16220688, 16724672, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008528, 15994400, 16457664, 12011504, 16095424, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013152, 15985120 @@ -140623,23 +140623,23 @@ }, { "type_name": "CMsgSource2VProfLiteReportItem", - "vtable_address": 63615696, + "vtable_address": 63619600, "methods": [ 16565600, 16616752, - 29643894, + 29647734, 16220512, 16691376, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16007968, 15994352, 16280896, 12011504, 16192832, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013120, 15985104 @@ -140675,23 +140675,23 @@ }, { "type_name": "CMsgStoreGetUserData", - "vtable_address": 63518816, + "vtable_address": 63522720, "methods": [ 15625200, 15686352, - 29643894, + 29647734, 15144416, 15790944, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811152, 14853056, 15242368, 12011504, 14923424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831744, 14795744 @@ -140727,23 +140727,23 @@ }, { "type_name": "CMsgStoreGetUserDataResponse", - "vtable_address": 63518976, + "vtable_address": 63522880, "methods": [ 15625328, 15725040, - 29643894, + 29647734, 15144576, 15806000, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868304, 14853040, 15242864, 12011504, 15071776, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831776, 14795760 @@ -140779,23 +140779,23 @@ }, { "type_name": "CMsgSystemBroadcast", - "vtable_address": 63514816, + "vtable_address": 63518720, "methods": [ 15621840, 15709840, - 29643894, + 29647734, 15140656, 15804992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14853344, 15231424, 12011504, 14910064, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14830944, 14795344 @@ -140831,23 +140831,23 @@ }, { "type_name": "CMsgTEArmorRicochet", - "vtable_address": 63643216, + "vtable_address": 63647120, "methods": [ 16586064, 16638864, - 29643894, + 29647734, 16248800, 16683664, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002080, 15997088, 16365920, 12011504, 16044656, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018624, 15990128 @@ -140883,23 +140883,23 @@ }, { "type_name": "CMsgTEBaseBeam", - "vtable_address": 63643376, + "vtable_address": 63647280, "methods": [ 16586240, 16610928, - 29643894, + 29647734, 16248928, 16683776, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000560, 15995136, 16366432, 12011504, 16162496, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018656, 15990144 @@ -140935,23 +140935,23 @@ }, { "type_name": "CMsgTEBeamEntPoint", - "vtable_address": 63643536, + "vtable_address": 63647440, "methods": [ 16655824, 16656976, - 29643894, + 29647734, 16249088, 16735792, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006064, 15997072, 16367280, 12011504, 16123520, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018688, 15990160 @@ -140987,23 +140987,23 @@ }, { "type_name": "CMsgTEBeamEnts", - "vtable_address": 63643696, + "vtable_address": 63647600, "methods": [ 16644640, 16662640, - 29643894, + 29647734, 16249248, 16732352, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006352, 15997056, 16368032, 12011504, 16102208, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018720, 15990176 @@ -141039,23 +141039,23 @@ }, { "type_name": "CMsgTEBeamPoints", - "vtable_address": 63643856, + "vtable_address": 63647760, "methods": [ 16655344, 16657456, - 29643894, + 29647734, 16249392, 16735584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006496, 15997040, 16368720, 12011504, 16044816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018752, 15990192 @@ -141091,23 +141091,23 @@ }, { "type_name": "CMsgTEBeamRing", - "vtable_address": 63644016, + "vtable_address": 63647920, "methods": [ 16644256, 16663024, - 29643894, + 29647734, 16249552, 16732528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006704, 15997024, 16369312, 12011504, 16102624, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018784, 15990208 @@ -141143,23 +141143,23 @@ }, { "type_name": "CMsgTEBloodStream", - "vtable_address": 63645936, + "vtable_address": 63649840, "methods": [ 16588400, 16640208, - 29643894, + 29647734, 16251296, 16685440, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003776, 15996864, 16378352, 12011504, 16101824, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019168, 15990400 @@ -141195,23 +141195,23 @@ }, { "type_name": "CMsgTEBubbleTrail", - "vtable_address": 63644336, + "vtable_address": 63648240, "methods": [ 16586544, 16639248, - 29643894, + 29647734, 16249872, 16684016, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002464, 15996992, 16370736, 12011504, 16110784, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018848, 15990240 @@ -141247,23 +141247,23 @@ }, { "type_name": "CMsgTEBubbles", - "vtable_address": 63644176, + "vtable_address": 63648080, "methods": [ 16586368, 16639056, - 29643894, + 29647734, 16249712, 16683872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002240, 15997008, 16370000, 12011504, 16110336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018816, 15990224 @@ -141299,23 +141299,23 @@ }, { "type_name": "CMsgTEDecal", - "vtable_address": 63644496, + "vtable_address": 63648400, "methods": [ 16586720, 16639440, - 29643894, + 29647734, 13237056, 16684160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16029408, 13224288, 16371472, 12011504, 16130752, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018880, 15990256 @@ -141351,23 +141351,23 @@ }, { "type_name": "CMsgTEDust", - "vtable_address": 63646256, + "vtable_address": 63650160, "methods": [ 16588800, 16640400, - 29643894, + 29647734, 16251584, 16685584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003984, 15996832, 16380144, 12011504, 16054064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019232, 15990432 @@ -141403,23 +141403,23 @@ }, { "type_name": "CMsgTEEffectDispatch", - "vtable_address": 63644816, + "vtable_address": 63648720, "methods": [ 16587136, 16648208, - 29643894, + 29647734, 16250304, 16684560, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16030320, 15996976, 16373584, 12011504, 16045008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018944, 15990288 @@ -141455,23 +141455,23 @@ }, { "type_name": "CMsgTEEnergySplash", - "vtable_address": 63644976, + "vtable_address": 63648880, "methods": [ 16587344, 16639632, - 29643894, + 29647734, 16250448, 16684640, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002688, 15996960, 16374000, 12011504, 16056800, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018976, 15990304 @@ -141507,23 +141507,23 @@ }, { "type_name": "CMsgTEExplosion", - "vtable_address": 63646096, + "vtable_address": 63650000, "methods": [ 16588576, 16644032, - 29643894, + 29647734, 16251440, 16704576, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010032, 15996848, 16379056, 12011504, 16163616, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019200, 15990416 @@ -141559,23 +141559,23 @@ }, { "type_name": "CMsgTEFireBullets", - "vtable_address": 63530016, + "vtable_address": 63533920, "methods": [ 15789040, 15789488, - 29643894, + 29647734, 15155552, 15977312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15979056, 14852160, 15276272, 12011504, 15091712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833984, 14797232 @@ -141611,23 +141611,23 @@ }, { "type_name": "CMsgTEFireBullets_Extra", - "vtable_address": 63529856, + "vtable_address": 63533760, "methods": [ 15634160, 15748112, - 29643894, + 29647734, 15155376, 15974672, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15978800, 14846848, 15275488, 12011504, 15055968, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833952, 14797216 @@ -141663,23 +141663,23 @@ }, { "type_name": "CMsgTEFizz", - "vtable_address": 63645136, + "vtable_address": 63649040, "methods": [ 16587520, 16611056, - 29643894, + 29647734, 16250592, 16684768, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026512, 15996944, 16374672, 12011504, 16114560, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019008, 15990320 @@ -141715,23 +141715,23 @@ }, { "type_name": "CMsgTEGlowSprite", - "vtable_address": 63645456, + "vtable_address": 63649360, "methods": [ 16587888, 16645200, - 29643894, + 29647734, 16250864, 16685056, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003248, 15996912, 16376304, 12011504, 16099520, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019072, 15990352 @@ -141767,23 +141767,23 @@ }, { "type_name": "CMsgTEImpact", - "vtable_address": 63645616, + "vtable_address": 63649520, "methods": [ 16588048, 16639824, - 29643894, + 29647734, 16251008, 16685168, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003376, 15996896, 16376976, 12011504, 16090720, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019104, 15990368 @@ -141819,23 +141819,23 @@ }, { "type_name": "CMsgTELargeFunnel", - "vtable_address": 63646416, + "vtable_address": 63650320, "methods": [ 16588976, 16645376, - 29643894, + 29647734, 16251744, 16736304, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004176, 15996816, 16380768, 12011504, 16080608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019264, 15990448 @@ -141871,23 +141871,23 @@ }, { "type_name": "CMsgTEMuzzleFlash", - "vtable_address": 63645776, + "vtable_address": 63649680, "methods": [ 16588224, 16640016, - 29643894, + 29647734, 16251152, 16685296, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003568, 15996880, 16377648, 12011504, 16101440, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019136, 15990384 @@ -141923,23 +141923,23 @@ }, { "type_name": "CMsgTEPhysicsProp", - "vtable_address": 63646736, + "vtable_address": 63650640, "methods": [ 16589312, 16623632, - 29643894, + 29647734, 16252048, 16685872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16030400, 15996784, 16382160, 12011504, 16167136, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019328, 15990480 @@ -141975,23 +141975,23 @@ }, { "type_name": "CMsgTEPlayerAnimEvent", - "vtable_address": 63529536, + "vtable_address": 63533440, "methods": [ 15633904, 15690576, - 29643894, + 29647734, 15155072, 15792992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820656, 14852192, 15274576, 12011504, 14957920, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833888, 14797184 @@ -142027,23 +142027,23 @@ }, { "type_name": "CMsgTERadioIcon", - "vtable_address": 63529696, + "vtable_address": 63533600, "methods": [ 15634032, 15690704, - 29643894, + 29647734, 15155216, 15793056, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810704, 14852176, 15275168, 12011504, 14883264, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833920, 14797200 @@ -142079,23 +142079,23 @@ }, { "type_name": "CMsgTEShatterSurface", - "vtable_address": 63645296, + "vtable_address": 63649200, "methods": [ 16587648, 16652448, - 29643894, + 29647734, 16250720, 16684832, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002864, 15996928, 16375376, 12011504, 16141824, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019040, 15990336 @@ -142131,23 +142131,23 @@ }, { "type_name": "CMsgTESmoke", - "vtable_address": 63646896, + "vtable_address": 63650800, "methods": [ 16589552, 16645552, - 29643894, + 29647734, 16252208, 16736432, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004528, 15996768, 16383456, 12011504, 16054320, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019360, 15990496 @@ -142183,23 +142183,23 @@ }, { "type_name": "CMsgTESparks", - "vtable_address": 63646576, + "vtable_address": 63650480, "methods": [ 16589136, 16640592, - 29643894, + 29647734, 16251888, 16685728, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004304, 15996800, 16381360, 12011504, 16111232, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019296, 15990464 @@ -142235,23 +142235,23 @@ }, { "type_name": "CMsgTEWorldDecal", - "vtable_address": 63647056, + "vtable_address": 63650960, "methods": [ 16589712, 16640784, - 29643894, + 29647734, 13237520, 16686144, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004624, 13224304, 16383952, 12011504, 16091040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019392, 15990512 @@ -142287,23 +142287,23 @@ }, { "type_name": "CMsgTransform", - "vtable_address": 63627056, + "vtable_address": 63630960, "methods": [ 16649344, 16649792, - 29643894, + 29647734, 16231776, 16728736, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16005888, 15998080, 16319392, 12011504, 16053424, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015392, 15986720 @@ -142339,23 +142339,23 @@ }, { "type_name": "CMsgUpdateItemSchema", - "vtable_address": 63519136, + "vtable_address": 63523040, "methods": [ 15625488, 15725200, - 29643894, + 29647734, 15144736, 15806160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868496, 14853024, 15243488, 12011504, 15007104, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831808, 14795776 @@ -142391,23 +142391,23 @@ }, { "type_name": "CMsgUseItem", - "vtable_address": 63519936, + "vtable_address": 63523840, "methods": [ 15626112, 15710480, - 29643894, + 29647734, 15145536, 15791008, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14873312, 14852976, 15244848, 12011504, 15014784, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831968, 14795856 @@ -142443,23 +142443,23 @@ }, { "type_name": "CMsgVDebugGameSessionIDEvent", - "vtable_address": 63580576, + "vtable_address": 63584480, "methods": [ 15674480, 15721360, - 29643894, + 29647734, 15215216, 15825616, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14866304, 14849600, 15431216, 12011504, 14934560, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844096, 14807712 @@ -142495,23 +142495,23 @@ }, { "type_name": "CMsgVector", - "vtable_address": 63626416, + "vtable_address": 63630320, "methods": [ 16573952, 16606576, - 29643894, + 29647734, 16231200, 16680960, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999008, 15994528, 16317680, 12011504, 16052368, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015264, 15986640 @@ -142547,23 +142547,23 @@ }, { "type_name": "CMsgVector2D", - "vtable_address": 63626576, + "vtable_address": 63630480, "methods": [ 16574080, 16606704, - 29643894, + 29647734, 16231328, 16681136, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999104, 15998096, 16318128, 12011504, 16052688, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015296, 15986672 @@ -142599,23 +142599,23 @@ }, { "type_name": "CMsgVoiceAudio", - "vtable_address": 63613616, + "vtable_address": 63617520, "methods": [ 16563888, 16628384, - 29643894, + 29647734, 16218544, 16690080, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16038704, 15994336, 16272992, 12011504, 16184704, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012704, 15984896 @@ -142651,23 +142651,23 @@ }, { "type_name": "CMsg_CVars", - "vtable_address": 63627856, + "vtable_address": 63631760, "methods": [ 16575024, 16636224, - 29643894, + 29647734, 16232560, 16718336, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16068928, 15994800, 16447104, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16015552, 15986800 @@ -142703,23 +142703,23 @@ }, { "type_name": "CMsg_CVars_CVar", - "vtable_address": 63627696, + "vtable_address": 63631600, "methods": [ 16574864, 16629184, - 29643894, + 29647734, 16232384, 16697808, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 15994784, 16322016, 12011504, 16095760, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015520, 15986784 @@ -142755,23 +142755,23 @@ }, { "type_name": "CNETMsg_DebugOverlay", - "vtable_address": 63630576, + "vtable_address": 63634480, "methods": [ 16577296, 16638400, - 29643894, + 29647734, 16235296, 16729264, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16107744, 15997872, 16448736, 12011504, 16151424, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016096, 15987072 @@ -142807,23 +142807,23 @@ }, { "type_name": "CNETMsg_NOP", - "vtable_address": 63628016, + "vtable_address": 63631920, "methods": [ 16051536, 16051552, - 29643894, + 29647734, 16232688, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16015584, 15986816 @@ -142870,23 +142870,23 @@ }, { "type_name": "CNETMsg_SetConVar", - "vtable_address": 63628656, + "vtable_address": 63632560, "methods": [ 16665456, 16665872, - 29643894, + 29647734, 16233248, 16721984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16103840, 15998000, 16324448, 12011504, 16044176, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015712, 15986880 @@ -142922,23 +142922,23 @@ }, { "type_name": "CNETMsg_SignonState", - "vtable_address": 63628816, + "vtable_address": 63632720, "methods": [ 16575600, 16631104, - 29643894, + 29647734, 16233488, 16698448, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16047136, 15997984, 16324864, 12011504, 16153440, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015744, 15986896 @@ -142974,23 +142974,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load", - "vtable_address": 63629616, + "vtable_address": 63633520, "methods": [ 16576240, 16576512, - 29643894, + 29647734, 16234336, 16698864, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16041040, 15997952, 16327072, 12011504, 16205632, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015904, 15986976 @@ -143026,23 +143026,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted", - "vtable_address": 63630256, + "vtable_address": 63634160, "methods": [ 16576960, 16607728, - 29643894, + 29647734, 16234912, 16681616, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999664, 15997888, 16330576, 12011504, 16073312, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016032, 15987040 @@ -143078,23 +143078,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate", - "vtable_address": 63629776, + "vtable_address": 63633680, "methods": [ 16576560, 16621232, - 29643894, + 29647734, 16234480, 16699312, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16011952, 15997936, 16328480, 12011504, 16127936, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015936, 15986992 @@ -143130,23 +143130,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick", - "vtable_address": 63629936, + "vtable_address": 63633840, "methods": [ 16576704, 16607472, - 29643894, + 29647734, 16234624, 16681488, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025440, 15997920, 16329168, 12011504, 16112608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015968, 15987008 @@ -143182,23 +143182,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload", - "vtable_address": 63630096, + "vtable_address": 63634000, "methods": [ 16576832, 16607600, - 29643894, + 29647734, 16234768, 16681552, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025536, 15997904, 16329872, 12011504, 16113088, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016000, 15987024 @@ -143234,23 +143234,23 @@ }, { "type_name": "CNETMsg_SplitScreenUser", - "vtable_address": 63628176, + "vtable_address": 63632080, "methods": [ 16575184, 16607344, - 29643894, + 29647734, 16232832, 16681440, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025392, 15998048, 16322480, 12011504, 16078368, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015616, 15986832 @@ -143286,23 +143286,23 @@ }, { "type_name": "CNETMsg_StringCmd", - "vtable_address": 63628496, + "vtable_address": 63632400, "methods": [ 16575456, 16620912, - 29643894, + 29647734, 16233120, 16698224, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16009360, 15998016, 16323888, 12011504, 16088288, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015680, 15986864 @@ -143338,23 +143338,23 @@ }, { "type_name": "CNETMsg_Tick", - "vtable_address": 63628336, + "vtable_address": 63632240, "methods": [ 16575312, 16620752, - 29643894, + 29647734, 16232976, 16697936, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16009040, 15998032, 16322960, 12011504, 16171712, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015648, 15986848 @@ -143390,7 +143390,7 @@ }, { "type_name": "CNetMessage", - "vtable_address": 63088760, + "vtable_address": 63092664, "methods": [], "bases": [], "model": { @@ -143401,14 +143401,14 @@ }, { "type_name": "CNetMessagePB<101, CUserMessageAchievementEvent, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64105168, + "vtable_address": 64109072, "methods": [ - 20164000, - 20164064, - 20146992, - 20147008, - 20147024, - 20164192 + 20166816, + 20166880, + 20149808, + 20149824, + 20149840, + 20167008 ], "bases": [ { @@ -143462,23 +143462,23 @@ }, { "type_name": "CNetMessagePB<101, CUserMessageAchievementEvent, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64105232, + "vtable_address": 64109136, "methods": [ - 20164032, - 20164128, - 29643894, + 20166848, + 20166944, + 29647734, 16255328, 16686272, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000816, 15996752, 16384624, 12011504, 16074880, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019424, 15992256 @@ -143535,17 +143535,17 @@ }, { "type_name": "CNetMessagePB<101, CUserMessageAchievementEvent, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64105080, - "methods": [ - 20525984, - 20142336, - 20526400, - 20142352, - 20188336, - 20142368, - 20164336, - 20142384, - 20142400 + "vtable_address": 64108984, + "methods": [ + 20528800, + 20145152, + 20529216, + 20145168, + 20191152, + 20145184, + 20167152, + 20145200, + 20145216 ], "bases": [ { @@ -143567,14 +143567,14 @@ }, { "type_name": "CNetMessagePB<102, CUserMessageCloseCaption, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64106728, + "vtable_address": 64110632, "methods": [ - 20161760, - 20161824, - 20146432, - 20146448, - 20146464, - 20161952 + 20164576, + 20164640, + 20149248, + 20149264, + 20149280, + 20164768 ], "bases": [ { @@ -143628,23 +143628,23 @@ }, { "type_name": "CNetMessagePB<102, CUserMessageCloseCaption, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64106792, + "vtable_address": 64110696, "methods": [ - 20161792, - 20161888, - 29643894, + 20164608, + 20164704, + 29647734, 16255488, 16686320, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026624, 15996736, 16385104, 12011504, 16106432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019456, 15992272 @@ -143701,17 +143701,17 @@ }, { "type_name": "CNetMessagePB<102, CUserMessageCloseCaption, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64106640, + "vtable_address": 64110544, "methods": [ - 20520304, - 20141936, - 20520752, - 20141952, - 20189136, - 20141968, - 20162096, - 20141984, - 20142000 + 20523120, + 20144752, + 20523568, + 20144768, + 20191952, + 20144784, + 20164912, + 20144800, + 20144816 ], "bases": [ { @@ -143733,14 +143733,14 @@ }, { "type_name": "CNetMessagePB<103, CUserMessageCloseCaptionDirect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64107040, + "vtable_address": 64110944, "methods": [ - 20161312, - 20161376, - 20146320, - 20146336, - 20146352, - 20161504 + 20164128, + 20164192, + 20149136, + 20149152, + 20149168, + 20164320 ], "bases": [ { @@ -143794,23 +143794,23 @@ }, { "type_name": "CNetMessagePB<103, CUserMessageCloseCaptionDirect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64107104, + "vtable_address": 64111008, "methods": [ - 20161344, - 20161440, - 29643894, + 20164160, + 20164256, + 29647734, 16255648, 16686400, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026736, 15996720, 16385792, 12011504, 16106816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019488, 15992288 @@ -143867,17 +143867,17 @@ }, { "type_name": "CNetMessagePB<103, CUserMessageCloseCaptionDirect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64106952, + "vtable_address": 64110856, "methods": [ - 20519168, - 20141856, - 20519616, - 20141872, - 20189296, - 20141888, - 20161648, - 20141904, - 20141920 + 20521984, + 20144672, + 20522432, + 20144688, + 20192112, + 20144704, + 20164464, + 20144720, + 20144736 ], "bases": [ { @@ -143899,14 +143899,14 @@ }, { "type_name": "CNetMessagePB<104, CUserMessageCurrentTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64100576, + "vtable_address": 64104480, "methods": [ - 20170384, - 20170448, - 20148448, - 20148464, - 20148480, - 20170576 + 20173200, + 20173264, + 20151264, + 20151280, + 20151296, + 20173392 ], "bases": [ { @@ -143960,23 +143960,23 @@ }, { "type_name": "CNetMessagePB<104, CUserMessageCurrentTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64100640, + "vtable_address": 64104544, "methods": [ - 20170416, - 20170512, - 29643894, + 20173232, + 20173328, + 29647734, 16255936, 16686480, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15996688, 16387184, 12011504, 16054496, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019552, 15992320 @@ -144033,17 +144033,17 @@ }, { "type_name": "CNetMessagePB<104, CUserMessageCurrentTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64100488, - "methods": [ - 20539568, - 20143568, - 20539984, - 20143584, - 20186096, - 20143600, - 20170720, - 20143616, - 20143632 + "vtable_address": 64104392, + "methods": [ + 20542384, + 20146384, + 20542800, + 20146400, + 20188912, + 20146416, + 20173536, + 20146432, + 20146448 ], "bases": [ { @@ -144065,14 +144065,14 @@ }, { "type_name": "CNetMessagePB<105, CUserMessageDesiredTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64100888, + "vtable_address": 64104792, "methods": [ - 20169936, - 20170000, - 20148336, - 20148352, - 20148368, - 20170128 + 20172752, + 20172816, + 20151152, + 20151168, + 20151184, + 20172944 ], "bases": [ { @@ -144126,23 +144126,23 @@ }, { "type_name": "CNetMessagePB<105, CUserMessageDesiredTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64100952, + "vtable_address": 64104856, "methods": [ - 20169968, - 20170064, - 29643894, + 20172784, + 20172880, + 29647734, 16256096, 16686528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999008, 15996672, 16387504, 12011504, 16054608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019584, 15992336 @@ -144199,17 +144199,17 @@ }, { "type_name": "CNetMessagePB<105, CUserMessageDesiredTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64100800, + "vtable_address": 64104704, "methods": [ - 20538432, - 20143488, - 20538880, - 20143504, - 20186256, - 20143520, - 20170272, - 20143536, - 20143552 + 20541248, + 20146304, + 20541696, + 20146320, + 20189072, + 20146336, + 20173088, + 20146352, + 20146368 ], "bases": [ { @@ -144231,14 +144231,14 @@ }, { "type_name": "CNetMessagePB<106, CUserMessageFade, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64104320, + "vtable_address": 64108224, "methods": [ - 20164464, - 20164528, - 20147104, - 20147120, - 20147136, - 20164656 + 20167280, + 20167344, + 20149920, + 20149936, + 20149952, + 20167472 ], "bases": [ { @@ -144292,23 +144292,23 @@ }, { "type_name": "CNetMessagePB<106, CUserMessageFade, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64104384, + "vtable_address": 64108288, "methods": [ - 20164496, - 20164592, - 29643894, + 20167312, + 20167408, + 29647734, 16256256, 16686592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000864, 15996656, 16387952, 12011504, 16120864, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019616, 15992352 @@ -144365,17 +144365,17 @@ }, { "type_name": "CNetMessagePB<106, CUserMessageFade, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64104232, + "vtable_address": 64108136, "methods": [ - 20527104, - 20142608, - 20527552, - 20142624, - 20188016, - 20142640, - 20164800, - 20142656, - 20142672 + 20529920, + 20145424, + 20530368, + 20145440, + 20190832, + 20145456, + 20167616, + 20145472, + 20145488 ], "bases": [ { @@ -144397,14 +144397,14 @@ }, { "type_name": "CNetMessagePB<110, CUserMessageHudMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64108288, + "vtable_address": 64112192, "methods": [ - 20159520, - 20159584, - 20145872, - 20145888, - 20145904, - 20159712 + 20162336, + 20162400, + 20148688, + 20148704, + 20148720, + 20162528 ], "bases": [ { @@ -144458,23 +144458,23 @@ }, { "type_name": "CNetMessagePB<110, CUserMessageHudMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64108352, + "vtable_address": 64112256, "methods": [ - 20159552, - 20159648, - 29643894, + 20162368, + 20162464, + 29647734, 16257392, 16705520, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010496, 15996560, 16392512, 12011504, 16137632, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019840, 15992464 @@ -144531,17 +144531,17 @@ }, { "type_name": "CNetMessagePB<110, CUserMessageHudMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64108200, + "vtable_address": 64112104, "methods": [ - 20514624, - 20141536, - 20515072, - 20141552, - 20189936, - 20141568, - 20159856, - 20141584, - 20141600 + 20517440, + 20144352, + 20517888, + 20144368, + 20192752, + 20144384, + 20162672, + 20144400, + 20144416 ], "bases": [ { @@ -144563,14 +144563,14 @@ }, { "type_name": "CNetMessagePB<111, CUserMessageHudText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64108600, + "vtable_address": 64112504, "methods": [ - 20159056, - 20159120, - 20145760, - 20145776, - 20145792, - 20159248 + 20161872, + 20161936, + 20148576, + 20148592, + 20148608, + 20162064 ], "bases": [ { @@ -144624,23 +144624,23 @@ }, { "type_name": "CNetMessagePB<111, CUserMessageHudText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64108664, + "vtable_address": 64112568, "methods": [ - 20159088, - 20159184, - 29643894, + 20161904, + 20162000, + 29647734, 16257552, 16705776, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15996544, 16393264, 12011504, 16076768, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019872, 15992480 @@ -144697,17 +144697,17 @@ }, { "type_name": "CNetMessagePB<111, CUserMessageHudText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64108512, + "vtable_address": 64112416, "methods": [ - 20513504, - 20141456, - 20513920, - 20141472, - 20190096, - 20141488, - 20159392, - 20141504, - 20141520 + 20516320, + 20144272, + 20516736, + 20144288, + 20192912, + 20144304, + 20162208, + 20144320, + 20144336 ], "bases": [ { @@ -144729,14 +144729,14 @@ }, { "type_name": "CNetMessagePB<113, CUserMessageColoredText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64102760, + "vtable_address": 64106664, "methods": [ - 20166704, - 20166768, - 20147664, - 20147680, - 20147696, - 20166896 + 20169520, + 20169584, + 20150480, + 20150496, + 20150512, + 20169712 ], "bases": [ { @@ -144790,23 +144790,23 @@ }, { "type_name": "CNetMessagePB<113, CUserMessageColoredText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64102824, + "vtable_address": 64106728, "methods": [ - 20166736, - 20166832, - 29643894, + 20169552, + 20169648, + 29647734, 16259024, 16706464, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036272, 15996432, 16397904, 12011504, 16146784, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020192, 15992640 @@ -144863,17 +144863,17 @@ }, { "type_name": "CNetMessagePB<113, CUserMessageColoredText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64102672, - "methods": [ - 20532784, - 20143008, - 20533232, - 20143024, - 20187216, - 20143040, - 20167040, - 20143056, - 20143072 + "vtable_address": 64106576, + "methods": [ + 20535600, + 20145824, + 20536048, + 20145840, + 20190032, + 20145856, + 20169856, + 20145872, + 20145888 ], "bases": [ { @@ -144895,14 +144895,14 @@ }, { "type_name": "CNetMessagePB<114, CUserMessageRequestState, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64101200, + "vtable_address": 64105104, "methods": [ - 20169184, - 20169264, - 20148224, - 20148240, - 20148256, - 20169664 + 20172000, + 20172080, + 20151040, + 20151056, + 20151072, + 20172480 ], "bases": [ { @@ -144967,23 +144967,23 @@ }, { "type_name": "CNetMessagePB<114, CUserMessageRequestState, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64101264, + "vtable_address": 64105168, "methods": [ - 20169232, - 20169328, - 29643894, + 20172048, + 20172144, + 29647734, 16258592, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16020096, 15992592 @@ -145051,17 +145051,17 @@ }, { "type_name": "CNetMessagePB<114, CUserMessageRequestState, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64101112, + "vtable_address": 64105016, "methods": [ - 20422096, - 20143408, - 20422528, - 20143424, - 20186416, - 20143440, - 20169808, - 20143456, - 20143472 + 20424912, + 20146224, + 20425344, + 20146240, + 20189232, + 20146256, + 20172624, + 20146272, + 20146288 ], "bases": [ { @@ -145083,14 +145083,14 @@ }, { "type_name": "CNetMessagePB<115, CUserMessageResetHUD, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64108912, + "vtable_address": 64112816, "methods": [ - 20168976, - 20169056, - 20145648, - 20145664, - 20145680, - 20169392 + 20171792, + 20171872, + 20148464, + 20148480, + 20148496, + 20172208 ], "bases": [ { @@ -145155,23 +145155,23 @@ }, { "type_name": "CNetMessagePB<115, CUserMessageResetHUD, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64108976, + "vtable_address": 64112880, "methods": [ - 20169024, - 20169120, - 29643894, + 20171840, + 20171936, + 29647734, 16258000, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16019968, 15992528 @@ -145239,17 +145239,17 @@ }, { "type_name": "CNetMessagePB<115, CUserMessageResetHUD, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64108824, + "vtable_address": 64112728, "methods": [ - 20421664, - 20141376, - 20423248, - 20141392, - 20190256, - 20141408, - 20169536, - 20141424, - 20141440 + 20424480, + 20144192, + 20426064, + 20144208, + 20193072, + 20144224, + 20172352, + 20144240, + 20144256 ], "bases": [ { @@ -145271,14 +145271,14 @@ }, { "type_name": "CNetMessagePB<116, CUserMessageRumble, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64105480, + "vtable_address": 64109384, "methods": [ - 20163552, - 20163616, - 20146880, - 20146896, - 20146912, - 20163744 + 20166368, + 20166432, + 20149696, + 20149712, + 20149728, + 20166560 ], "bases": [ { @@ -145332,23 +145332,23 @@ }, { "type_name": "CNetMessagePB<116, CUserMessageRumble, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64105544, + "vtable_address": 64109448, "methods": [ - 20163584, - 20163680, - 29643894, + 20166400, + 20166496, + 29647734, 16258736, 16687072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026848, 15996464, 16396528, 12011504, 16115040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020128, 15992608 @@ -145405,17 +145405,17 @@ }, { "type_name": "CNetMessagePB<116, CUserMessageRumble, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64105392, + "vtable_address": 64109296, "methods": [ - 20524848, - 20142256, - 20525296, - 20142272, - 20188496, - 20142288, - 20163888, - 20142304, - 20142320 + 20527664, + 20145072, + 20528112, + 20145088, + 20191312, + 20145104, + 20166704, + 20145120, + 20145136 ], "bases": [ { @@ -145437,14 +145437,14 @@ }, { "type_name": "CNetMessagePB<117, CUserMessageSayText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64102448, + "vtable_address": 64106352, "methods": [ - 20167152, - 20167216, - 20147776, - 20147792, - 20147808, - 20167344 + 20169968, + 20170032, + 20150592, + 20150608, + 20150624, + 20170160 ], "bases": [ { @@ -145498,23 +145498,23 @@ }, { "type_name": "CNetMessagePB<117, CUserMessageSayText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64102512, + "vtable_address": 64106416, "methods": [ - 20167184, - 20167280, - 29643894, + 20170000, + 20170096, + 29647734, 16257024, 16705072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035760, 15996592, 16391184, 12011504, 16104128, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019776, 15992432 @@ -145571,17 +145571,17 @@ }, { "type_name": "CNetMessagePB<117, CUserMessageSayText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64102360, + "vtable_address": 64106264, "methods": [ - 20533920, - 20143088, - 20534368, - 20143104, - 20187056, - 20143120, - 20167488, - 20143136, - 20143152 + 20536736, + 20145904, + 20537184, + 20145920, + 20189872, + 20145936, + 20170304, + 20145952, + 20145968 ], "bases": [ { @@ -145603,14 +145603,14 @@ }, { "type_name": "CNetMessagePB<118, CUserMessageSayText2, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64061232, + "vtable_address": 64065136, "methods": [ - 19379216, - 19379280, - 19366784, - 19366800, - 19366816, - 19379408 + 19382032, + 19382096, + 19369600, + 19369616, + 19369632, + 19382224 ], "bases": [ { @@ -145664,23 +145664,23 @@ }, { "type_name": "CNetMessagePB<118, CUserMessageSayText2, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64061296, + "vtable_address": 64065200, "methods": [ - 19379248, - 19379344, - 29643894, + 19382064, + 19382160, + 29647734, 16257248, 16705296, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035856, 15996576, 16391872, 12011504, 16156480, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019808, 15992448 @@ -145737,17 +145737,17 @@ }, { "type_name": "CNetMessagePB<118, CUserMessageSayText2, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64061144, + "vtable_address": 64065048, "methods": [ - 19873632, - 19366656, - 19598608, - 19366672, - 19388960, - 19366688, - 19379552, - 19366704, - 19366720 + 19876448, + 19369472, + 19601424, + 19369488, + 19391776, + 19369504, + 19382368, + 19369520, + 19369536 ], "bases": [ { @@ -145769,14 +145769,14 @@ }, { "type_name": "CNetMessagePB<119, CUserMessageSayTextChannel, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64103072, + "vtable_address": 64106976, "methods": [ - 20166256, - 20166320, - 20147552, - 20147568, - 20147584, - 20166448 + 20169072, + 20169136, + 20150368, + 20150384, + 20150400, + 20169264 ], "bases": [ { @@ -145830,23 +145830,23 @@ }, { "type_name": "CNetMessagePB<119, CUserMessageSayTextChannel, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64103136, + "vtable_address": 64107040, "methods": [ - 20166288, - 20166384, - 29643894, + 20169104, + 20169200, + 29647734, 16258880, 16706208, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036144, 15996448, 16397232, 12011504, 16109824, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020160, 15992624 @@ -145903,17 +145903,17 @@ }, { "type_name": "CNetMessagePB<119, CUserMessageSayTextChannel, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64102984, - "methods": [ - 20531648, - 20142928, - 20532096, - 20142944, - 20187376, - 20142960, - 20166592, - 20142976, - 20142992 + "vtable_address": 64106888, + "methods": [ + 20534464, + 20145744, + 20534912, + 20145760, + 20190192, + 20145776, + 20169408, + 20145792, + 20145808 ], "bases": [ { @@ -145935,14 +145935,14 @@ }, { "type_name": "CNetMessagePB<120, CUserMessageShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64103384, + "vtable_address": 64107288, "methods": [ - 20165808, - 20165872, - 20147440, - 20147456, - 20147472, - 20166000 + 20168624, + 20168688, + 20150256, + 20150272, + 20150288, + 20168816 ], "bases": [ { @@ -145996,23 +145996,23 @@ }, { "type_name": "CNetMessagePB<120, CUserMessageShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64103448, + "vtable_address": 64107352, "methods": [ - 20165840, - 20165936, - 29643894, + 20168656, + 20168752, + 29647734, 16256416, 16686656, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000976, 15995168, 16388688, 12011504, 16097984, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019648, 15992368 @@ -146069,17 +146069,17 @@ }, { "type_name": "CNetMessagePB<120, CUserMessageShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64103296, + "vtable_address": 64107200, "methods": [ - 20530512, - 20142848, - 20530960, - 20142864, - 20187536, - 20142880, - 20166144, - 20142896, - 20142912 + 20533328, + 20145664, + 20533776, + 20145680, + 20190352, + 20145696, + 20168960, + 20145712, + 20145728 ], "bases": [ { @@ -146101,14 +146101,14 @@ }, { "type_name": "CNetMessagePB<121, CUserMessageShakeDir, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64103696, + "vtable_address": 64107600, "methods": [ - 20165360, - 20165424, - 20147328, - 20147344, - 20147360, - 20165552 + 20168176, + 20168240, + 20150144, + 20150160, + 20150176, + 20168368 ], "bases": [ { @@ -146162,23 +146162,23 @@ }, { "type_name": "CNetMessagePB<121, CUserMessageShakeDir, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64103760, + "vtable_address": 64107664, "methods": [ - 20165392, - 20165488, - 29643894, + 20168208, + 20168304, + 29647734, 16256576, 16722976, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16072048, 15996640, 16389280, 12011504, 16045104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019680, 15992384 @@ -146235,17 +146235,17 @@ }, { "type_name": "CNetMessagePB<121, CUserMessageShakeDir, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64103608, + "vtable_address": 64107512, "methods": [ - 20529376, - 20142768, - 20529824, - 20142784, - 20187696, - 20142800, - 20165696, - 20142816, - 20142832 + 20532192, + 20145584, + 20532640, + 20145600, + 20190512, + 20145616, + 20168512, + 20145632, + 20145648 ], "bases": [ { @@ -146267,14 +146267,14 @@ }, { "type_name": "CNetMessagePB<122, CUserMessageWaterShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64104008, + "vtable_address": 64107912, "methods": [ - 20164912, - 20164976, - 20147216, - 20147232, - 20147248, - 20165104 + 20167728, + 20167792, + 20150032, + 20150048, + 20150064, + 20167920 ], "bases": [ { @@ -146328,23 +146328,23 @@ }, { "type_name": "CNetMessagePB<122, CUserMessageWaterShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64104072, + "vtable_address": 64107976, "methods": [ - 20164944, - 20165040, - 29643894, + 20167760, + 20167856, + 29647734, 16256736, 16686720, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001056, 15996624, 16389792, 12011504, 16098336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019712, 15992400 @@ -146401,17 +146401,17 @@ }, { "type_name": "CNetMessagePB<122, CUserMessageWaterShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64103920, + "vtable_address": 64107824, "methods": [ - 20528240, - 20142688, - 20528688, - 20142704, - 20187856, - 20142720, - 20165248, - 20142736, - 20142752 + 20531056, + 20145504, + 20531504, + 20145520, + 20190672, + 20145536, + 20168064, + 20145552, + 20145568 ], "bases": [ { @@ -146433,14 +146433,14 @@ }, { "type_name": "CNetMessagePB<124, CUserMessageTextMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64104632, + "vtable_address": 64108536, "methods": [ - 20152224, - 20152288, - 20142416, - 20142432, - 20142448, - 20152080 + 20155040, + 20155104, + 20145232, + 20145248, + 20145264, + 20154896 ], "bases": [ { @@ -146494,23 +146494,23 @@ }, { "type_name": "CNetMessagePB<124, CUserMessageTextMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64104696, + "vtable_address": 64108600, "methods": [ - 20152256, - 20152352, - 29643894, + 20155072, + 20155168, + 29647734, 16257744, 16686896, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16049408, 15996528, 16393664, 12011504, 16096928, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019904, 15992496 @@ -146567,17 +146567,17 @@ }, { "type_name": "CNetMessagePB<124, CUserMessageTextMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64104544, + "vtable_address": 64108448, "methods": [ - 20496528, - 20142528, - 20496976, - 20142544, - 20188176, - 20142560, - 20152608, - 20142576, - 20142592 + 20499344, + 20145344, + 20499792, + 20145360, + 20190992, + 20145376, + 20155424, + 20145392, + 20145408 ], "bases": [ { @@ -146599,14 +146599,14 @@ }, { "type_name": "CNetMessagePB<125, CUserMessageScreenTilt, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64105792, + "vtable_address": 64109696, "methods": [ - 20163104, - 20163168, - 20146768, - 20146784, - 20146800, - 20163296 + 20165920, + 20165984, + 20149584, + 20149600, + 20149616, + 20166112 ], "bases": [ { @@ -146660,23 +146660,23 @@ }, { "type_name": "CNetMessagePB<125, CUserMessageScreenTilt, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64105856, + "vtable_address": 64109760, "methods": [ - 20163136, - 20163232, - 29643894, + 20165952, + 20166048, + 29647734, 16256880, 16686784, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004816, 15996608, 16390384, 12011504, 16111680, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019744, 15992416 @@ -146733,17 +146733,17 @@ }, { "type_name": "CNetMessagePB<125, CUserMessageScreenTilt, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64105704, + "vtable_address": 64109608, "methods": [ - 20523712, - 20142176, - 20524160, - 20142192, - 20188656, - 20142208, - 20163440, - 20142224, - 20142240 + 20526528, + 20144992, + 20526976, + 20145008, + 20191472, + 20145024, + 20166256, + 20145040, + 20145056 ], "bases": [ { @@ -146765,14 +146765,14 @@ }, { "type_name": "CNetMessagePB<128, CUserMessageVoiceMask, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64101512, + "vtable_address": 64105416, "methods": [ - 20168528, - 20168592, - 20148112, - 20148128, - 20148144, - 20168720 + 20171344, + 20171408, + 20150928, + 20150944, + 20150960, + 20171536 ], "bases": [ { @@ -146826,23 +146826,23 @@ }, { "type_name": "CNetMessagePB<128, CUserMessageVoiceMask, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64101576, + "vtable_address": 64105480, "methods": [ - 20168560, - 20168656, - 29643894, + 20171376, + 20171472, + 29647734, 16258464, 16687024, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023056, 15996480, 16395568, 12011504, 16066336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020064, 15992576 @@ -146899,17 +146899,17 @@ }, { "type_name": "CNetMessagePB<128, CUserMessageVoiceMask, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64101424, + "vtable_address": 64105328, "methods": [ - 20537296, - 20143328, - 20537744, - 20143344, - 20186576, - 20143360, - 20168864, - 20143376, - 20143392 + 20540112, + 20146144, + 20540560, + 20146160, + 20189392, + 20146176, + 20171680, + 20146192, + 20146208 ], "bases": [ { @@ -146931,14 +146931,14 @@ }, { "type_name": "CNetMessagePB<130, CUserMessageSendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64106416, + "vtable_address": 64110320, "methods": [ - 20162208, - 20162272, - 20146544, - 20146560, - 20146576, - 20162400 + 20165024, + 20165088, + 20149360, + 20149376, + 20149392, + 20165216 ], "bases": [ { @@ -146992,23 +146992,23 @@ }, { "type_name": "CNetMessagePB<130, CUserMessageSendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64106480, + "vtable_address": 64110384, "methods": [ - 20162240, - 20162336, - 29643894, + 20165056, + 20165152, + 29647734, 16258144, 16705984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15996512, 16394256, 12011504, 16084016, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020000, 15992544 @@ -147065,17 +147065,17 @@ }, { "type_name": "CNetMessagePB<130, CUserMessageSendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64106328, + "vtable_address": 64110232, "methods": [ - 20521440, - 20142016, - 20521888, - 20142032, - 20188976, - 20142048, - 20162544, - 20142064, - 20142080 + 20524256, + 20144832, + 20524704, + 20144848, + 20191792, + 20144864, + 20165360, + 20144880, + 20144896 ], "bases": [ { @@ -147097,14 +147097,14 @@ }, { "type_name": "CNetMessagePB<131, CUserMessageItemPickup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64101824, + "vtable_address": 64105728, "methods": [ - 20168064, - 20168128, - 20148000, - 20148016, - 20148032, - 20168256 + 20170880, + 20170944, + 20150816, + 20150832, + 20150848, + 20171072 ], "bases": [ { @@ -147158,23 +147158,23 @@ }, { "type_name": "CNetMessagePB<131, CUserMessageItemPickup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64101888, + "vtable_address": 64105792, "methods": [ - 20168096, - 20168192, - 29643894, + 20170912, + 20171008, + 29647734, 16259184, 16706720, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15996416, 16398592, 12011504, 16076944, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020224, 15992656 @@ -147231,17 +147231,17 @@ }, { "type_name": "CNetMessagePB<131, CUserMessageItemPickup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64101736, + "vtable_address": 64105640, "methods": [ - 20536176, - 20143248, - 20536592, - 20143264, - 20186736, - 20143280, - 20168400, - 20143296, - 20143312 + 20538992, + 20146064, + 20539408, + 20146080, + 20189552, + 20146096, + 20171216, + 20146112, + 20146128 ], "bases": [ { @@ -147263,14 +147263,14 @@ }, { "type_name": "CNetMessagePB<132, CUserMessageAmmoDenied, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64102136, + "vtable_address": 64106040, "methods": [ - 20167600, - 20167664, - 20147888, - 20147904, - 20147920, - 20167792 + 20170416, + 20170480, + 20150704, + 20150720, + 20150736, + 20170608 ], "bases": [ { @@ -147324,23 +147324,23 @@ }, { "type_name": "CNetMessagePB<132, CUserMessageAmmoDenied, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64102200, + "vtable_address": 64106104, "methods": [ - 20167632, - 20167728, - 29643894, + 20170448, + 20170544, + 29647734, 16259328, 16687136, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001248, 15996400, 16398992, 12011504, 16075104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020256, 15992672 @@ -147397,17 +147397,17 @@ }, { "type_name": "CNetMessagePB<132, CUserMessageAmmoDenied, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64102048, + "vtable_address": 64105952, "methods": [ - 20535056, - 20143168, - 20535472, - 20143184, - 20186896, - 20143200, - 20167936, - 20143216, - 20143232 + 20537872, + 20145984, + 20538288, + 20146000, + 20189712, + 20146016, + 20170752, + 20146032, + 20146048 ], "bases": [ { @@ -147429,14 +147429,14 @@ }, { "type_name": "CNetMessagePB<134, CUserMessageShowMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64106104, + "vtable_address": 64110008, "methods": [ - 20162656, - 20162720, - 20146656, - 20146672, - 20146688, - 20162848 + 20165472, + 20165536, + 20149472, + 20149488, + 20149504, + 20165664 ], "bases": [ { @@ -147490,23 +147490,23 @@ }, { "type_name": "CNetMessagePB<134, CUserMessageShowMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64106168, + "vtable_address": 64110072, "methods": [ - 20162688, - 20162784, - 29643894, + 20165504, + 20165600, + 29647734, 16259456, 16706928, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010800, 15996384, 16399472, 12011504, 16122976, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020288, 15992688 @@ -147563,17 +147563,17 @@ }, { "type_name": "CNetMessagePB<134, CUserMessageShowMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64106016, - "methods": [ - 20522576, - 20142096, - 20523024, - 20142112, - 20188816, - 20142128, - 20162992, - 20142144, - 20142160 + "vtable_address": 64109920, + "methods": [ + 20525392, + 20144912, + 20525840, + 20144928, + 20191632, + 20144944, + 20165808, + 20144960, + 20144976 ], "bases": [ { @@ -147595,14 +147595,14 @@ }, { "type_name": "CNetMessagePB<135, CUserMessageCreditsMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64109224, + "vtable_address": 64113128, "methods": [ - 20158592, - 20158656, - 20145536, - 20145552, - 20145568, - 20158784 + 20161408, + 20161472, + 20148352, + 20148368, + 20148384, + 20161600 ], "bases": [ { @@ -147656,23 +147656,23 @@ }, { "type_name": "CNetMessagePB<135, CUserMessageCreditsMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64109288, + "vtable_address": 64113192, "methods": [ - 20158624, - 20158720, - 29643894, + 20161440, + 20161536, + 29647734, 16259600, 16687184, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026960, 15996368, 16400288, 12011504, 16080096, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020320, 15992704 @@ -147729,17 +147729,17 @@ }, { "type_name": "CNetMessagePB<135, CUserMessageCreditsMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64109136, + "vtable_address": 64113040, "methods": [ - 20512384, - 20141296, - 20512800, - 20141312, - 20190416, - 20141328, - 20158928, - 20141344, - 20141360 + 20515200, + 20144112, + 20515616, + 20144128, + 20193232, + 20144144, + 20161744, + 20144160, + 20144176 ], "bases": [ { @@ -147761,14 +147761,14 @@ }, { "type_name": "CNetMessagePB<137, CEntityMessageScreenOverlay, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64109536, + "vtable_address": 64113440, "methods": [ - 20158144, - 20158208, - 20145424, - 20145440, - 20145456, - 20158336 + 20160960, + 20161024, + 20148240, + 20148256, + 20148272, + 20161152 ], "bases": [ { @@ -147822,23 +147822,23 @@ }, { "type_name": "CNetMessagePB<137, CEntityMessageScreenOverlay, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64109600, + "vtable_address": 64113504, "methods": [ - 20158176, - 20158272, - 29643894, + 20160992, + 20161088, + 29647734, 16259888, 16724448, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16085264, 15996336, 16401328, 12011504, 16057008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020384, 15992736 @@ -147895,17 +147895,17 @@ }, { "type_name": "CNetMessagePB<137, CEntityMessageScreenOverlay, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64109448, + "vtable_address": 64113352, "methods": [ - 20511248, - 20141216, - 20511696, - 20141232, - 20190576, - 20141248, - 20158480, - 20141264, - 20141280 + 20514064, + 20144032, + 20514512, + 20144048, + 20193392, + 20144064, + 20161296, + 20144080, + 20144096 ], "bases": [ { @@ -147927,14 +147927,14 @@ }, { "type_name": "CNetMessagePB<138, CEntityMessageRemoveAllDecals, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64109848, + "vtable_address": 64113752, "methods": [ - 20157696, - 20157760, - 20145312, - 20145328, - 20145344, - 20157888 + 20160512, + 20160576, + 20148128, + 20148144, + 20148160, + 20160704 ], "bases": [ { @@ -147988,23 +147988,23 @@ }, { "type_name": "CNetMessagePB<138, CEntityMessageRemoveAllDecals, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64109912, + "vtable_address": 64113816, "methods": [ - 20157728, - 20157824, - 29643894, + 20160544, + 20160640, + 29647734, 16260048, 16724560, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16085392, 15996320, 16401936, 12011504, 16057168, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020416, 15992752 @@ -148061,17 +148061,17 @@ }, { "type_name": "CNetMessagePB<138, CEntityMessageRemoveAllDecals, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64109760, + "vtable_address": 64113664, "methods": [ - 20510112, - 20141136, - 20510560, - 20141152, - 20190736, - 20141168, - 20158032, - 20141184, - 20141200 + 20512928, + 20143952, + 20513376, + 20143968, + 20193552, + 20143984, + 20160848, + 20144000, + 20144016 ], "bases": [ { @@ -148093,14 +148093,14 @@ }, { "type_name": "CNetMessagePB<139, CEntityMessagePropagateForce, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64110160, + "vtable_address": 64114064, "methods": [ - 20157248, - 20157312, - 20145200, - 20145216, - 20145232, - 20157440 + 20160064, + 20160128, + 20148016, + 20148032, + 20148048, + 20160256 ], "bases": [ { @@ -148154,23 +148154,23 @@ }, { "type_name": "CNetMessagePB<139, CEntityMessagePropagateForce, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64110224, + "vtable_address": 64114128, "methods": [ - 20157280, - 20157376, - 29643894, + 20160096, + 20160192, + 29647734, 16260208, 16729120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16097776, 15996304, 16402544, 12011504, 16045360, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020448, 15992768 @@ -148227,17 +148227,17 @@ }, { "type_name": "CNetMessagePB<139, CEntityMessagePropagateForce, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64110072, + "vtable_address": 64113976, "methods": [ - 20508976, - 20141056, - 20509424, - 20141072, - 20190896, - 20141088, - 20157584, - 20141104, - 20141120 + 20511792, + 20143872, + 20512240, + 20143888, + 20193712, + 20143904, + 20160400, + 20143920, + 20143936 ], "bases": [ { @@ -148259,14 +148259,14 @@ }, { "type_name": "CNetMessagePB<140, CEntityMessageDoSpark, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64110472, + "vtable_address": 64114376, "methods": [ - 20156800, - 20156864, - 20145088, - 20145104, - 20145120, - 20156992 + 20159616, + 20159680, + 20147904, + 20147920, + 20147936, + 20159808 ], "bases": [ { @@ -148320,23 +148320,23 @@ }, { "type_name": "CNetMessagePB<140, CEntityMessageDoSpark, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64110536, + "vtable_address": 64114440, "methods": [ - 20156832, - 20156928, - 29643894, + 20159648, + 20159744, + 29647734, 16260336, 16729936, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16135664, 15996288, 16403056, 12011504, 16138304, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020480, 15992784 @@ -148393,17 +148393,17 @@ }, { "type_name": "CNetMessagePB<140, CEntityMessageDoSpark, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64110384, + "vtable_address": 64114288, "methods": [ - 20507840, - 20140976, - 20508288, - 20140992, - 20191056, - 20141008, - 20157136, - 20141024, - 20141040 + 20510656, + 20143792, + 20511104, + 20143808, + 20193872, + 20143824, + 20159952, + 20143840, + 20143856 ], "bases": [ { @@ -148425,14 +148425,14 @@ }, { "type_name": "CNetMessagePB<142, CUserMessageCloseCaptionPlaceholder, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64107352, + "vtable_address": 64111256, "methods": [ - 20160864, - 20160928, - 20146208, - 20146224, - 20146240, - 20161056 + 20163680, + 20163744, + 20149024, + 20149040, + 20149056, + 20163872 ], "bases": [ { @@ -148486,23 +148486,23 @@ }, { "type_name": "CNetMessagePB<142, CUserMessageCloseCaptionPlaceholder, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64107416, + "vtable_address": 64111320, "methods": [ - 20160896, - 20160992, - 29643894, + 20163712, + 20163808, + 29647734, 16255792, 16704816, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035648, 15996704, 16386480, 12011504, 16119808, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019520, 15992304 @@ -148559,17 +148559,17 @@ }, { "type_name": "CNetMessagePB<142, CUserMessageCloseCaptionPlaceholder, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64107264, - "methods": [ - 20518032, - 20141776, - 20518480, - 20141792, - 20189456, - 20141808, - 20161200, - 20141824, - 20141840 + "vtable_address": 64111168, + "methods": [ + 20520848, + 20144592, + 20521296, + 20144608, + 20192272, + 20144624, + 20164016, + 20144640, + 20144656 ], "bases": [ { @@ -148591,14 +148591,14 @@ }, { "type_name": "CNetMessagePB<143, CUserMessageCameraTransition, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64107664, + "vtable_address": 64111568, "methods": [ - 20160416, - 20160480, - 20146096, - 20146112, - 20146128, - 20160608 + 20163232, + 20163296, + 20148912, + 20148928, + 20148944, + 20163424 ], "bases": [ { @@ -148652,23 +148652,23 @@ }, { "type_name": "CNetMessagePB<143, CUserMessageCameraTransition, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64107728, + "vtable_address": 64111632, "methods": [ - 20160448, - 20160544, - 29643894, + 20163264, + 20163360, + 29647734, 16260784, 16723120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036560, 15996256, 16405152, 12011504, 16085888, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020576, 15992832 @@ -148725,17 +148725,17 @@ }, { "type_name": "CNetMessagePB<143, CUserMessageCameraTransition, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64107576, + "vtable_address": 64111480, "methods": [ - 20516896, - 20141696, - 20517344, - 20141712, - 20189616, - 20141728, - 20160752, - 20141744, - 20141760 + 20519712, + 20144512, + 20520160, + 20144528, + 20192432, + 20144544, + 20163568, + 20144560, + 20144576 ], "bases": [ { @@ -148757,14 +148757,14 @@ }, { "type_name": "CNetMessagePB<144, CUserMessageAudioParameter, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64107976, + "vtable_address": 64111880, "methods": [ - 20159968, - 20160032, - 20145984, - 20146000, - 20146016, - 20160160 + 20162784, + 20162848, + 20148800, + 20148816, + 20148832, + 20162976 ], "bases": [ { @@ -148818,23 +148818,23 @@ }, { "type_name": "CNetMessagePB<144, CUserMessageAudioParameter, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64108040, + "vtable_address": 64111944, "methods": [ - 20160000, - 20160096, - 29643894, + 20162816, + 20162912, + 29647734, 16258304, 16686960, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001136, 15996496, 16394832, 12011504, 16121376, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020032, 15992560 @@ -148891,17 +148891,17 @@ }, { "type_name": "CNetMessagePB<144, CUserMessageAudioParameter, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64107888, + "vtable_address": 64111792, "methods": [ - 20515760, - 20141616, - 20516208, - 20141632, - 20189776, - 20141648, - 20160304, - 20141664, - 20141680 + 20518576, + 20144432, + 20519024, + 20144448, + 20192592, + 20144464, + 20163120, + 20144480, + 20144496 ], "bases": [ { @@ -148923,14 +148923,14 @@ }, { "type_name": "CNetMessagePB<145, CUserMsg_ParticleManager, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64027256, + "vtable_address": 64031160, "methods": [ - 18952560, - 18952624, - 18949200, - 18949216, - 18949232, - 18966512 + 18955376, + 18955440, + 18952016, + 18952032, + 18952048, + 18969328 ], "bases": [ { @@ -148984,23 +148984,23 @@ }, { "type_name": "CNetMessagePB<145, CUserMsg_ParticleManager, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64027320, + "vtable_address": 64031224, "methods": [ - 18952592, - 18952688, - 29643894, + 18955408, + 18955504, + 29647734, 16267424, 16733280, 16051728, - 29646054, - 29642886, + 29649894, + 29646726, 16186032, 15996240, 16429360, 12011504, 16201936, - 29642796, - 29643062, + 29646636, + 29646902, 15994320, 16021984, 15993536 @@ -149057,17 +149057,17 @@ }, { "type_name": "CNetMessagePB<145, CUserMsg_ParticleManager, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64027168, + "vtable_address": 64031072, "methods": [ - 19342288, - 18949312, - 19102736, - 18949328, - 18959840, - 18949344, - 18952944, - 18949360, - 18949376 + 19345104, + 18952128, + 19105552, + 18952144, + 18962656, + 18952160, + 18955760, + 18952176, + 18952192 ], "bases": [ { @@ -149089,14 +149089,14 @@ }, { "type_name": "CNetMessagePB<146, CUserMsg_HudError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64110784, + "vtable_address": 64114688, "methods": [ - 20156336, - 20156400, - 20144976, - 20144992, - 20145008, - 20156528 + 20159152, + 20159216, + 20147792, + 20147808, + 20147824, + 20159344 ], "bases": [ { @@ -149150,23 +149150,23 @@ }, { "type_name": "CNetMessagePB<146, CUserMsg_HudError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64110848, + "vtable_address": 64114752, "methods": [ - 20156368, - 20156464, - 29643894, + 20159184, + 20159280, + 29647734, 16267568, 16689088, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027232, 15996224, 16433392, 12011504, 16079040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022016, 15993552 @@ -149223,17 +149223,17 @@ }, { "type_name": "CNetMessagePB<146, CUserMsg_HudError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64110696, + "vtable_address": 64114600, "methods": [ - 20506720, - 20140896, - 20507136, - 20140912, - 20191216, - 20140928, - 20156672, - 20140944, - 20140960 + 20509536, + 20143712, + 20509952, + 20143728, + 20194032, + 20143744, + 20159488, + 20143760, + 20143776 ], "bases": [ { @@ -149255,7 +149255,7 @@ }, { "type_name": "CNetMessagePB<148, CBaseCmdKeyValues, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63319040, + "vtable_address": 63322944, "methods": [ 13258240, 13258656, @@ -149327,23 +149327,23 @@ }, { "type_name": "CNetMessagePB<148, CBaseCmdKeyValues, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63319104, + "vtable_address": 63323008, "methods": [ 13258320, 13258752, - 29643894, + 29647734, 13238784, 16709632, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 13224320, 16433872, 12011504, 16120544, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022048, 15993568 @@ -149411,7 +149411,7 @@ }, { "type_name": "CNetMessagePB<148, CBaseCmdKeyValues, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63318952, + "vtable_address": 63322856, "methods": [ 13796592, 13222832, @@ -149443,14 +149443,14 @@ }, { "type_name": "CNetMessagePB<150, CUserMessageHapticsManagerPulse, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64111096, + "vtable_address": 64115000, "methods": [ - 20155888, - 20155952, - 20144864, - 20144880, - 20144896, - 20156080 + 20158704, + 20158768, + 20147680, + 20147696, + 20147712, + 20158896 ], "bases": [ { @@ -149504,23 +149504,23 @@ }, { "type_name": "CNetMessagePB<150, CUserMessageHapticsManagerPulse, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64111160, + "vtable_address": 64115064, "methods": [ - 20155920, - 20156016, - 29643894, + 20158736, + 20158832, + 29647734, 16267872, 16689136, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027280, 15996208, 16434336, 12011504, 16099936, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022080, 15993584 @@ -149577,17 +149577,17 @@ }, { "type_name": "CNetMessagePB<150, CUserMessageHapticsManagerPulse, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64111008, + "vtable_address": 64114912, "methods": [ - 20505584, - 20140816, - 20506032, - 20140832, - 20191376, - 20140848, - 20156224, - 20140864, - 20140880 + 20508400, + 20143632, + 20508848, + 20143648, + 20194192, + 20143664, + 20159040, + 20143680, + 20143696 ], "bases": [ { @@ -149609,14 +149609,14 @@ }, { "type_name": "CNetMessagePB<151, CUserMessageHapticsManagerEffect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64111408, + "vtable_address": 64115312, "methods": [ - 20155440, - 20155504, - 20144752, - 20144768, - 20144784, - 20155632 + 20158256, + 20158320, + 20147568, + 20147584, + 20147600, + 20158448 ], "bases": [ { @@ -149670,23 +149670,23 @@ }, { "type_name": "CNetMessagePB<151, CUserMessageHapticsManagerEffect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64111472, + "vtable_address": 64115376, "methods": [ - 20155472, - 20155568, - 29643894, + 20158288, + 20158384, + 29647734, 16268016, 16689200, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027360, 15996192, 16434928, 12011504, 16103456, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022112, 15993600 @@ -149743,17 +149743,17 @@ }, { "type_name": "CNetMessagePB<151, CUserMessageHapticsManagerEffect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64111320, + "vtable_address": 64115224, "methods": [ - 20504448, - 20140736, - 20504896, - 20140752, - 20191536, - 20140768, - 20155776, - 20140784, - 20140800 + 20507264, + 20143552, + 20507712, + 20143568, + 20194352, + 20143584, + 20158592, + 20143600, + 20143616 ], "bases": [ { @@ -149775,7 +149775,7 @@ }, { "type_name": "CNetMessagePB<153, CUserMessageUpdateCssClasses, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63117016, + "vtable_address": 63120920, "methods": [ 12243680, 12243744, @@ -149836,23 +149836,23 @@ }, { "type_name": "CNetMessagePB<153, CUserMessageUpdateCssClasses, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63117080, + "vtable_address": 63120984, "methods": [ 12243712, 12243808, - 29643894, + 29647734, 12243664, 16709984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037248, 12239808, 16436128, 12011504, 16104896, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022176, 15993632 @@ -149909,7 +149909,7 @@ }, { "type_name": "CNetMessagePB<153, CUserMessageUpdateCssClasses, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63116928, + "vtable_address": 63120832, "methods": [ 12395664, 12239008, @@ -149941,14 +149941,14 @@ }, { "type_name": "CNetMessagePB<154, CUserMessageServerFrameTime, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64111720, + "vtable_address": 64115624, "methods": [ - 20154976, - 20155040, - 20144640, - 20144656, - 20144672, - 20155168 + 20157792, + 20157856, + 20147456, + 20147472, + 20147488, + 20157984 ], "bases": [ { @@ -150002,23 +150002,23 @@ }, { "type_name": "CNetMessagePB<154, CUserMessageServerFrameTime, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64111784, + "vtable_address": 64115688, "methods": [ - 20155008, - 20155104, - 29643894, + 20157824, + 20157920, + 29647734, 16268432, 16689264, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15996160, 16436816, 12011504, 16055504, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022208, 15993648 @@ -150075,17 +150075,17 @@ }, { "type_name": "CNetMessagePB<154, CUserMessageServerFrameTime, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64111632, + "vtable_address": 64115536, "methods": [ - 20503328, - 20140656, - 20503744, - 20140672, - 20191696, - 20140688, - 20155312, - 20140704, - 20140720 + 20506144, + 20143472, + 20506560, + 20143488, + 20194512, + 20143504, + 20158128, + 20143520, + 20143536 ], "bases": [ { @@ -150107,14 +150107,14 @@ }, { "type_name": "CNetMessagePB<155, CUserMessageLagCompensationError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64112032, + "vtable_address": 64115936, "methods": [ - 20154512, - 20154576, - 20144528, - 20144544, - 20144560, - 20154704 + 20157328, + 20157392, + 20147344, + 20147360, + 20147376, + 20157520 ], "bases": [ { @@ -150168,23 +150168,23 @@ }, { "type_name": "CNetMessagePB<155, CUserMessageLagCompensationError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64112096, + "vtable_address": 64116000, "methods": [ - 20154544, - 20154640, - 29643894, + 20157360, + 20157456, + 29647734, 16268576, 16689312, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15996144, 16437136, 12011504, 16055616, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022240, 15993664 @@ -150241,17 +150241,17 @@ }, { "type_name": "CNetMessagePB<155, CUserMessageLagCompensationError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64111944, + "vtable_address": 64115848, "methods": [ - 20502208, - 20140576, - 20502624, - 20140592, - 20191856, - 20140608, - 20154848, - 20140624, - 20140640 + 20505024, + 20143392, + 20505440, + 20143408, + 20194672, + 20143424, + 20157664, + 20143440, + 20143456 ], "bases": [ { @@ -150273,14 +150273,14 @@ }, { "type_name": "CNetMessagePB<156, CUserMessageRequestDllStatus, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64112344, + "vtable_address": 64116248, "methods": [ - 20154064, - 20154128, - 20144416, - 20144432, - 20144448, - 20154256 + 20156880, + 20156944, + 20147232, + 20147248, + 20147264, + 20157072 ], "bases": [ { @@ -150334,23 +150334,23 @@ }, { "type_name": "CNetMessagePB<156, CUserMessageRequestDllStatus, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64112408, + "vtable_address": 64116312, "methods": [ - 20154096, - 20154192, - 29643894, + 20156912, + 20157008, + 29647734, 16268720, 16710240, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15996128, 16437456, 12011504, 16084464, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022272, 15993680 @@ -150407,17 +150407,17 @@ }, { "type_name": "CNetMessagePB<156, CUserMessageRequestDllStatus, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64112256, + "vtable_address": 64116160, "methods": [ - 20501072, - 20140496, - 20501520, - 20140512, - 20192016, - 20140528, - 20154400, - 20140544, - 20140560 + 20503888, + 20143312, + 20504336, + 20143328, + 20194832, + 20143344, + 20157216, + 20143360, + 20143376 ], "bases": [ { @@ -150439,14 +150439,14 @@ }, { "type_name": "CNetMessagePB<157, CUserMessageRequestUtilAction, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64112656, + "vtable_address": 64116560, "methods": [ - 20153616, - 20153680, - 20144304, - 20144320, - 20144336, - 20153808 + 20156432, + 20156496, + 20147120, + 20147136, + 20147152, + 20156624 ], "bases": [ { @@ -150500,23 +150500,23 @@ }, { "type_name": "CNetMessagePB<157, CUserMessageRequestUtilAction, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64112720, + "vtable_address": 64116624, "methods": [ - 20153648, - 20153744, - 29643894, + 20156464, + 20156560, + 29647734, 16268864, 16689360, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027456, 15996112, 16438032, 12011504, 16139776, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022304, 15993696 @@ -150573,17 +150573,17 @@ }, { "type_name": "CNetMessagePB<157, CUserMessageRequestUtilAction, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64112568, + "vtable_address": 64116472, "methods": [ - 20499936, - 20140416, - 20500384, - 20140432, - 20192176, - 20140448, - 20153952, - 20140464, - 20140480 + 20502752, + 20143232, + 20503200, + 20143248, + 20194992, + 20143264, + 20156768, + 20143280, + 20143296 ], "bases": [ { @@ -150605,14 +150605,14 @@ }, { "type_name": "CNetMessagePB<160, CUserMessageRequestInventory, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64112968, + "vtable_address": 64116872, "methods": [ - 20153168, - 20153232, - 20144192, - 20144208, - 20144224, - 20153360 + 20155984, + 20156048, + 20147008, + 20147024, + 20147040, + 20156176 ], "bases": [ { @@ -150666,23 +150666,23 @@ }, { "type_name": "CNetMessagePB<160, CUserMessageRequestInventory, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64113032, + "vtable_address": 64116936, "methods": [ - 20153200, - 20153296, - 29643894, + 20156016, + 20156112, + 29647734, 16269760, 16689424, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027632, 15996064, 16441072, 12011504, 16116064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022496, 15993792 @@ -150739,17 +150739,17 @@ }, { "type_name": "CNetMessagePB<160, CUserMessageRequestInventory, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64112880, + "vtable_address": 64116784, "methods": [ - 20498800, - 20140336, - 20499248, - 20140352, - 20192336, - 20140368, - 20153504, - 20140384, - 20140400 + 20501616, + 20143152, + 20502064, + 20143168, + 20195152, + 20143184, + 20156320, + 20143200, + 20143216 ], "bases": [ { @@ -150771,14 +150771,14 @@ }, { "type_name": "CNetMessagePB<162, CUserMessageRequestDiagnostic, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64113280, + "vtable_address": 64117184, "methods": [ - 20152720, - 20152784, - 20144080, - 20144096, - 20144112, - 20152912 + 20155536, + 20155600, + 20146896, + 20146912, + 20146928, + 20155728 ], "bases": [ { @@ -150832,23 +150832,23 @@ }, { "type_name": "CNetMessagePB<162, CUserMessageRequestDiagnostic, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64113344, + "vtable_address": 64117248, "methods": [ - 20152752, - 20152848, - 29643894, + 20155568, + 20155664, + 29647734, 16270464, 16723568, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16043136, 15996032, 16454944, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16022624, 15993856 @@ -150905,17 +150905,17 @@ }, { "type_name": "CNetMessagePB<162, CUserMessageRequestDiagnostic, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64113192, + "vtable_address": 64117096, "methods": [ - 20497664, - 20140256, - 20498112, - 20140272, - 20192496, - 20140288, - 20153056, - 20140304, - 20140320 + 20500480, + 20143072, + 20500928, + 20143088, + 20195312, + 20143104, + 20155872, + 20143120, + 20143136 ], "bases": [ { @@ -150937,14 +150937,14 @@ }, { "type_name": "CNetMessagePB<165, CUserMessage_NotifyResponseFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64006688, + "vtable_address": 64010592, "methods": [ - 18512416, - 18512480, - 18511744, - 18511760, - 18511776, - 18532368 + 18514720, + 18514784, + 18514048, + 18514064, + 18514080, + 18534672 ], "bases": [ { @@ -150998,23 +150998,23 @@ }, { "type_name": "CNetMessagePB<165, CUserMessage_NotifyResponseFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64006752, + "vtable_address": 64010656, "methods": [ - 18512448, - 18512544, - 29643894, + 18514752, + 18514848, + 29647734, 16271440, 16715648, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16064784, 15995984, 16456160, 12011504, 16209216, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022784, 15993936 @@ -151071,17 +151071,17 @@ }, { "type_name": "CNetMessagePB<165, CUserMessage_NotifyResponseFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64006600, - "methods": [ - 18913216, - 18511856, - 18716160, - 18511872, - 18526976, - 18511888, - 18512800, - 18511904, - 18511920 + "vtable_address": 64010504, + "methods": [ + 18916032, + 18514160, + 18719008, + 18514176, + 18529280, + 18514192, + 18515104, + 18514208, + 18514224 ], "bases": [ { @@ -151103,14 +151103,14 @@ }, { "type_name": "CNetMessagePB<166, CUserMessage_PlayResponseConditional, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64007224, + "vtable_address": 64011128, "methods": [ - 18513152, - 18513216, - 18511552, - 18511568, - 18511584, - 18532512 + 18515456, + 18515520, + 18513856, + 18513872, + 18513888, + 18534816 ], "bases": [ { @@ -151164,23 +151164,23 @@ }, { "type_name": "CNetMessagePB<166, CUserMessage_PlayResponseConditional, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 64007288, + "vtable_address": 64011192, "methods": [ - 18513184, - 18513280, - 29643894, + 18515488, + 18515584, + 29647734, 16271632, 16712384, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16046896, 15995968, 16446128, 12011504, 16141024, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022816, 15993952 @@ -151237,17 +151237,17 @@ }, { "type_name": "CNetMessagePB<166, CUserMessage_PlayResponseConditional, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64007136, + "vtable_address": 64011040, "methods": [ - 18915792, - 18511664, - 18716464, - 18511680, - 18527136, - 18511696, - 18513040, - 18511712, - 18511728 + 18918608, + 18513968, + 18719312, + 18513984, + 18529440, + 18514000, + 18515344, + 18514016, + 18514032 ], "bases": [ { @@ -151269,7 +151269,7 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>", - "vtable_address": 63336888, + "vtable_address": 63340792, "methods": [ 13831104, 13831168, @@ -151330,23 +151330,23 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>", - "vtable_address": 63336952, + "vtable_address": 63340856, "methods": [ 13831136, 13831232, - 29643894, + 29647734, 13831088, 16695920, 15986000, - 29646054, - 29642886, + 29649894, + 29646726, 16067088, 13830176, 16311008, 12011504, 16149152, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014880, 15985984 @@ -151403,7 +151403,7 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 63336800, + "vtable_address": 63340704, "methods": [ 14285136, 13827632, @@ -151435,7 +151435,7 @@ }, { "type_name": "CNetMessagePB<201, CMsgPlaceDecalEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63325016, + "vtable_address": 63328920, "methods": [ 13235168, 13235232, @@ -151496,23 +151496,23 @@ }, { "type_name": "CNetMessagePB<201, CMsgPlaceDecalEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63325080, + "vtable_address": 63328984, "methods": [ 13235200, 13235296, - 29643894, + 29647734, 13235152, 15974352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15978096, 13224224, 15431792, 12011504, 15101792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844128, 14807744 @@ -151569,7 +151569,7 @@ }, { "type_name": "CNetMessagePB<201, CMsgPlaceDecalEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63324928, + "vtable_address": 63328832, "methods": [ 13808128, 13221536, @@ -151601,7 +151601,7 @@ }, { "type_name": "CNetMessagePB<202, CMsgClearWorldDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63325328, + "vtable_address": 63329232, "methods": [ 13236112, 13236176, @@ -151662,23 +151662,23 @@ }, { "type_name": "CNetMessagePB<202, CMsgClearWorldDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63325392, + "vtable_address": 63329296, "methods": [ 13236144, 13236240, - 29643894, + 29647734, 13236096, 15802352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828160, 13224256, 15433024, 12011504, 14915840, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844160, 14807760 @@ -151735,7 +151735,7 @@ }, { "type_name": "CNetMessagePB<202, CMsgClearWorldDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63325240, + "vtable_address": 63329144, "methods": [ 13812144, 13221456, @@ -151767,7 +151767,7 @@ }, { "type_name": "CNetMessagePB<203, CMsgClearEntityDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63325640, + "vtable_address": 63329544, "methods": [ 13236592, 13236656, @@ -151828,23 +151828,23 @@ }, { "type_name": "CNetMessagePB<203, CMsgClearEntityDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63325704, + "vtable_address": 63329608, "methods": [ 13236624, 13236720, - 29643894, + 29647734, 13236576, 15802400, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828208, 13224272, 15433504, 12011504, 14916064, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844192, 14807776 @@ -151901,7 +151901,7 @@ }, { "type_name": "CNetMessagePB<203, CMsgClearEntityDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63325552, + "vtable_address": 63329456, "methods": [ 13814144, 13221376, @@ -151933,7 +151933,7 @@ }, { "type_name": "CNetMessagePB<204, CMsgClearDecalsForEntityEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63325952, + "vtable_address": 63329856, "methods": [ 13235632, 13235696, @@ -151994,23 +151994,23 @@ }, { "type_name": "CNetMessagePB<204, CMsgClearDecalsForEntityEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 63326016, + "vtable_address": 63329920, "methods": [ 13235664, 13235760, - 29643894, + 29647734, 13235616, 15802448, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828256, 13224240, 15433984, 12011504, 14939456, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844224, 14807792 @@ -152067,7 +152067,7 @@ }, { "type_name": "CNetMessagePB<204, CMsgClearDecalsForEntityEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63325864, + "vtable_address": 63329768, "methods": [ 13810144, 13221296, @@ -152099,14 +152099,14 @@ }, { "type_name": "CNetMessagePB<205, CMsgSource1LegacyGameEventList, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 64069072, + "vtable_address": 64072976, "methods": [ - 19378016, - 19378080, - 19366896, - 19366912, - 19366928, - 19378208 + 19380832, + 19380896, + 19369712, + 19369728, + 19369744, + 19381024 ], "bases": [ { @@ -152160,23 +152160,23 @@ }, { "type_name": "CNetMessagePB<205, CMsgSource1LegacyGameEventList, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 64069136, + "vtable_address": 64073040, "methods": [ - 19378048, - 19378144, - 29643894, + 19380864, + 19380960, + 29647734, 15216240, 15834528, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14891584, 14849584, 15465440, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14844320, 14807840 @@ -152233,17 +152233,17 @@ }, { "type_name": "CNetMessagePB<205, CMsgSource1LegacyGameEventList, (SignonGroup_t)10, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64068984, + "vtable_address": 64072888, "methods": [ - 19872352, - 19366096, - 19598304, - 19366112, - 19389168, - 19366128, - 19378352, - 19366144, - 19366160 + 19875168, + 19368912, + 19601120, + 19368928, + 19391984, + 19368944, + 19381168, + 19368960, + 19368976 ], "bases": [ { @@ -152265,14 +152265,14 @@ }, { "type_name": "CNetMessagePB<206, CMsgSource1LegacyListenEvents, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 64069384, + "vtable_address": 64073288, "methods": [ - 19374816, - 19374880, - 19365904, - 19365920, - 19365936, - 19375200 + 19377632, + 19377696, + 19368720, + 19368736, + 19368752, + 19378016 ], "bases": [ { @@ -152326,23 +152326,23 @@ }, { "type_name": "CNetMessagePB<206, CMsgSource1LegacyListenEvents, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 64069448, + "vtable_address": 64073352, "methods": [ - 19374848, - 19374944, - 29643894, + 19377664, + 19377760, + 29647734, 15216384, 15802496, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14876192, 14849568, 15435136, 12011504, 14952352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844352, 14807856 @@ -152399,17 +152399,17 @@ }, { "type_name": "CNetMessagePB<206, CMsgSource1LegacyListenEvents, (SignonGroup_t)10, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64069296, + "vtable_address": 64073200, "methods": [ - 19871072, - 19366016, - 19598000, - 19366032, - 19389328, - 19366048, - 19375344, - 19366064, - 19366080 + 19873888, + 19368832, + 19600816, + 19368848, + 19392144, + 19368864, + 19378160, + 19368880, + 19368896 ], "bases": [ { @@ -152431,14 +152431,14 @@ }, { "type_name": "CNetMessagePB<207, CMsgSource1LegacyGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 64069920, + "vtable_address": 64073824, "methods": [ - 19374320, - 19374384, - 19365712, - 19365728, - 19365744, - 19392096 + 19377136, + 19377200, + 19368528, + 19368544, + 19368560, + 19394912 ], "bases": [ { @@ -152492,23 +152492,23 @@ }, { "type_name": "CNetMessagePB<207, CMsgSource1LegacyGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 64069984, + "vtable_address": 64073888, "methods": [ - 19374352, - 19374448, - 29643894, + 19377168, + 19377264, + 29647734, 15216736, 15847584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14922096, 14849552, 15465904, 12011504, 15031712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844416, 14807888 @@ -152565,17 +152565,17 @@ }, { "type_name": "CNetMessagePB<207, CMsgSource1LegacyGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64069832, + "vtable_address": 64073736, "methods": [ - 19869776, - 19365824, - 19597696, - 19365840, - 19389488, - 19365856, - 19374704, - 19365872, - 19365888 + 19872592, + 19368640, + 19600512, + 19368656, + 19392304, + 19368672, + 19377520, + 19368688, + 19368704 ], "bases": [ { @@ -152597,7 +152597,7 @@ }, { "type_name": "CNetMessagePB<208, CMsgSosStartSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63337424, + "vtable_address": 63341328, "methods": [ 13832896, 13832960, @@ -152658,23 +152658,23 @@ }, { "type_name": "CNetMessagePB<208, CMsgSosStartSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63337488, + "vtable_address": 63341392, "methods": [ 13832928, 13833024, - 29643894, + 29647734, 13832880, 15826464, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871680, 13830192, 15436624, 12011504, 15075136, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844448, 14807904 @@ -152731,7 +152731,7 @@ }, { "type_name": "CNetMessagePB<208, CMsgSosStartSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63337336, + "vtable_address": 63341240, "methods": [ 14295200, 13827440, @@ -152763,7 +152763,7 @@ }, { "type_name": "CNetMessagePB<209, CMsgSosStopSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63337736, + "vtable_address": 63341640, "methods": [ 13833360, 13833424, @@ -152824,23 +152824,23 @@ }, { "type_name": "CNetMessagePB<209, CMsgSosStopSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63337800, + "vtable_address": 63341704, "methods": [ 13833392, 13833488, - 29643894, + 29647734, 13833344, 15802544, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817504, 13830208, 15437264, 12011504, 14921664, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844480, 14807920 @@ -152897,7 +152897,7 @@ }, { "type_name": "CNetMessagePB<209, CMsgSosStopSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63337648, + "vtable_address": 63341552, "methods": [ 14298448, 13827360, @@ -152929,7 +152929,7 @@ }, { "type_name": "CNetMessagePB<210, CMsgSosSetSoundEventParams, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63338360, + "vtable_address": 63342264, "methods": [ 13834320, 13834384, @@ -152990,23 +152990,23 @@ }, { "type_name": "CNetMessagePB<210, CMsgSosSetSoundEventParams, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63338424, + "vtable_address": 63342328, "methods": [ 13834352, 13834448, - 29643894, + 29647734, 13834304, 15826768, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871856, 13830240, 15438240, 12011504, 14970400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844544, 14807952 @@ -153063,7 +153063,7 @@ }, { "type_name": "CNetMessagePB<210, CMsgSosSetSoundEventParams, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63338272, + "vtable_address": 63342176, "methods": [ 14304688, 13827200, @@ -153095,7 +153095,7 @@ }, { "type_name": "CNetMessagePB<211, CMsgSosSetLibraryStackFields, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63338672, + "vtable_address": 63342576, "methods": [ 13834784, 13834848, @@ -153156,23 +153156,23 @@ }, { "type_name": "CNetMessagePB<211, CMsgSosSetLibraryStackFields, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63338736, + "vtable_address": 63342640, "methods": [ 13834816, 13834912, - 29643894, + 29647734, 13834768, 15827040, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14871952, 13830256, 15438816, 12011504, 14954400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844576, 14807968 @@ -153229,7 +153229,7 @@ }, { "type_name": "CNetMessagePB<211, CMsgSosSetLibraryStackFields, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63338584, + "vtable_address": 63342488, "methods": [ 14307920, 13827120, @@ -153261,7 +153261,7 @@ }, { "type_name": "CNetMessagePB<212, CMsgSosStopSoundEventHash, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63338048, + "vtable_address": 63341952, "methods": [ 13833840, 13833904, @@ -153322,23 +153322,23 @@ }, { "type_name": "CNetMessagePB<212, CMsgSosStopSoundEventHash, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 63338112, + "vtable_address": 63342016, "methods": [ 13833872, 13833968, - 29643894, + 29647734, 13833824, 15802592, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817552, 13830224, 15437744, 12011504, 14923712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844512, 14807936 @@ -153395,7 +153395,7 @@ }, { "type_name": "CNetMessagePB<212, CMsgSosStopSoundEventHash, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63337960, + "vtable_address": 63341864, "methods": [ 14301568, 13827280, @@ -153427,14 +153427,14 @@ }, { "type_name": "CNetMessagePB<22, CCLCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 64146896, + "vtable_address": 64150800, "methods": [ - 21140896, - 21140960, - 21135872, - 21135888, - 21135904, - 21141280 + 21143712, + 21143776, + 21138688, + 21138704, + 21138720, + 21144096 ], "bases": [ { @@ -153488,23 +153488,23 @@ }, { "type_name": "CNetMessagePB<22, CCLCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 64146960, + "vtable_address": 64150864, "methods": [ - 21140928, - 21141024, - 29643894, + 21143744, + 21143840, + 29647734, 16218688, 16728512, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039008, 15998944, 16274016, 12011504, 16085536, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16012736, 15984912 @@ -153561,17 +153561,17 @@ }, { "type_name": "CNetMessagePB<22, CCLCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 64146808, + "vtable_address": 64150712, "methods": [ - 21318320, - 21135984, - 21319600, - 21136000, - 21145488, - 21136016, - 21141424, - 21136032, - 21136048 + 21321136, + 21138800, + 21322416, + 21138816, + 21148304, + 21138832, + 21144240, + 21138848, + 21138864 ], "bases": [ { @@ -153593,14 +153593,14 @@ }, { "type_name": "CNetMessagePB<256, CP2P_TextMessage, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 64156824, + "vtable_address": 64160728, "methods": [ - 21138752, - 21138816, - 21136064, - 21136080, - 21136096, - 21138944 + 21141568, + 21141632, + 21138880, + 21138896, + 21138912, + 21141760 ], "bases": [ { @@ -153654,23 +153654,23 @@ }, { "type_name": "CNetMessagePB<256, CP2P_TextMessage, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 64156888, + "vtable_address": 64160792, "methods": [ - 21138784, - 21138880, - 29643894, + 21141600, + 21141696, + 29647734, 15152608, 15808992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14852352, 15267760, 12011504, 14929120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833440, 14796720 @@ -153727,17 +153727,17 @@ }, { "type_name": "CNetMessagePB<256, CP2P_TextMessage, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 64156736, + "vtable_address": 64160640, "methods": [ - 21309392, - 21135616, - 21310656, - 21135632, - 21145808, - 21135648, - 21139088, - 21135664, - 21135680 + 21312208, + 21138432, + 21313472, + 21138448, + 21148624, + 21138464, + 21141904, + 21138480, + 21138496 ], "bases": [ { @@ -153759,14 +153759,14 @@ }, { "type_name": "CNetMessagePB<257, CP2P_Voice, (SignonGroup_t)6, (NetChannelBufType_t)2, false>", - "vtable_address": 64157136, + "vtable_address": 64161040, "methods": [ - 21139216, - 21139280, - 21135424, - 21135440, - 21135456, - 21139600 + 21142032, + 21142096, + 21138240, + 21138256, + 21138272, + 21142416 ], "bases": [ { @@ -153820,23 +153820,23 @@ }, { "type_name": "CNetMessagePB<257, CP2P_Voice, (SignonGroup_t)6, (NetChannelBufType_t)2, false>", - "vtable_address": 64157200, + "vtable_address": 64161104, "methods": [ - 21139248, - 21139344, - 29643894, + 21142064, + 21142160, + 29647734, 15152928, 15973920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15974000, 14852320, 15268560, 12011504, 14925152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833504, 14796752 @@ -153893,17 +153893,17 @@ }, { "type_name": "CNetMessagePB<257, CP2P_Voice, (SignonGroup_t)6, (NetChannelBufType_t)2, false>::CProtobufBinding", - "vtable_address": 64157048, - "methods": [ - 21312320, - 21135536, - 21313600, - 21135552, - 21145968, - 21135568, - 21139744, - 21135584, - 21135600 + "vtable_address": 64160952, + "methods": [ + 21315136, + 21138352, + 21316416, + 21138368, + 21148784, + 21138384, + 21142560, + 21138400, + 21138416 ], "bases": [ { @@ -153925,14 +153925,14 @@ }, { "type_name": "CNetMessagePB<258, CP2P_Ping, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 64157672, + "vtable_address": 64161576, "methods": [ - 21139856, - 21139920, - 21135232, - 21135248, - 21135264, - 21140240 + 21142672, + 21142736, + 21138048, + 21138064, + 21138080, + 21143056 ], "bases": [ { @@ -153986,23 +153986,23 @@ }, { "type_name": "CNetMessagePB<258, CP2P_Ping, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 64157736, + "vtable_address": 64161640, "methods": [ - 21139888, - 21139984, - 29643894, + 21142704, + 21142800, + 29647734, 15153088, 15792656, 14796784, - 29646054, - 29642886, + 29649894, + 29646726, 14811488, 14852304, 15269152, 12011504, 14930080, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833536, 14796768 @@ -154059,17 +154059,17 @@ }, { "type_name": "CNetMessagePB<258, CP2P_Ping, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 64157584, - "methods": [ - 21315248, - 21135344, - 21316528, - 21135360, - 21146128, - 21135376, - 21140384, - 21135392, - 21135408 + "vtable_address": 64161488, + "methods": [ + 21318064, + 21138160, + 21319344, + 21138176, + 21148944, + 21138192, + 21143200, + 21138208, + 21138224 ], "bases": [ { @@ -154091,7 +154091,7 @@ }, { "type_name": "CNetMessagePB<280, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 63323624, + "vtable_address": 63327528, "methods": [ 13259744, 13260384, @@ -154163,23 +154163,23 @@ }, { "type_name": "CNetMessagePB<280, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 63323688, + "vtable_address": 63327592, "methods": [ 13259824, 13260480, - 29643894, + 29647734, 13234960, 15809504, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867760, 13224192, 15271040, 12011504, 14985792, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833664, 14796976 @@ -154247,7 +154247,7 @@ }, { "type_name": "CNetMessagePB<280, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63323536, + "vtable_address": 63327440, "methods": [ 13793952, 13222000, @@ -154279,7 +154279,7 @@ }, { "type_name": "CNetMessagePB<281, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 63324096, + "vtable_address": 63328000, "methods": [ 13259904, 13260592, @@ -154351,23 +154351,23 @@ }, { "type_name": "CNetMessagePB<281, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 63324160, + "vtable_address": 63328064, "methods": [ 13259984, 13260688, - 29643894, + 29647734, 13235056, 15809632, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868624, 13224208, 15271504, 12011504, 15029312, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833696, 14796992 @@ -154435,7 +154435,7 @@ }, { "type_name": "CNetMessagePB<281, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63324008, + "vtable_address": 63327912, "methods": [ 13795264, 13221808, @@ -154467,7 +154467,7 @@ }, { "type_name": "CNetMessagePB<282, CClientMsg_ClientUIEvent, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 63117600, + "vtable_address": 63121504, "methods": [ 12239840, 12239904, @@ -154528,23 +154528,23 @@ }, { "type_name": "CNetMessagePB<282, CClientMsg_ClientUIEvent, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 63117664, + "vtable_address": 63121568, "methods": [ 12239872, 12239968, - 29643894, + 29647734, 12239824, 15809760, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14857888, 12239792, 15272048, 12011504, 15053728, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833728, 14797008 @@ -154601,7 +154601,7 @@ }, { "type_name": "CNetMessagePB<282, CClientMsg_ClientUIEvent, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63117512, + "vtable_address": 63121416, "methods": [ 12394336, 12238816, @@ -154633,14 +154633,14 @@ }, { "type_name": "CNetMessagePB<286, CClientMsg_ListenForResponseFound, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 64011032, + "vtable_address": 64014936, "methods": [ - 18518448, - 18518512, - 18510576, - 18510592, - 18510608, - 18518832 + 18520752, + 18520816, + 18512880, + 18512896, + 18512912, + 18521136 ], "bases": [ { @@ -154694,23 +154694,23 @@ }, { "type_name": "CNetMessagePB<286, CClientMsg_ListenForResponseFound, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 64011096, + "vtable_address": 64015000, "methods": [ - 18518480, - 18518576, - 29643894, + 18520784, + 18520880, + 29647734, 15154816, 15792944, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811808, 14852208, 15274096, 12011504, 14917856, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833856, 14797072 @@ -154767,17 +154767,17 @@ }, { "type_name": "CNetMessagePB<286, CClientMsg_ListenForResponseFound, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64010944, + "vtable_address": 64014848, "methods": [ - 18914528, - 18510688, - 18716768, - 18510704, - 18527488, - 18510720, - 18512912, - 18510736, - 18510752 + 18917344, + 18512992, + 18719616, + 18513008, + 18529792, + 18513024, + 18515216, + 18513040, + 18513056 ], "bases": [ { @@ -154799,7 +154799,7 @@ }, { "type_name": "CNetMessagePB<301, CCSUsrMsg_VGUIMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63106216, + "vtable_address": 63110120, "methods": [ 12086208, 12086272, @@ -154860,23 +154860,23 @@ }, { "type_name": "CNetMessagePB<301, CCSUsrMsg_VGUIMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63106280, + "vtable_address": 63110184, "methods": [ 12086240, 12086336, - 29643894, + 29647734, 12086192, 15849728, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14956400, 12083728, 15525904, 12011504, 14949776, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839904, 14804576 @@ -154933,7 +154933,7 @@ }, { "type_name": "CNetMessagePB<301, CCSUsrMsg_VGUIMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63106128, + "vtable_address": 63110032, "methods": [ 12139120, 12075728, @@ -154965,7 +154965,7 @@ }, { "type_name": "CNetMessagePB<317, CCSUsrMsg_SendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63095608, + "vtable_address": 63099512, "methods": [ 12102144, 12102208, @@ -155026,23 +155026,23 @@ }, { "type_name": "CNetMessagePB<317, CCSUsrMsg_SendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63095672, + "vtable_address": 63099576, "methods": [ 12102176, 12102272, - 29643894, + 29647734, 12102128, 15817824, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 12084256, 15375536, 12011504, 14911472, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840224, 14804736 @@ -155099,7 +155099,7 @@ }, { "type_name": "CNetMessagePB<317, CCSUsrMsg_SendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63095520, + "vtable_address": 63099424, "methods": [ 12192496, 12078448, @@ -155131,7 +155131,7 @@ }, { "type_name": "CNetMessagePB<318, CCSUsrMsg_RawAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63100288, + "vtable_address": 63104192, "methods": [ 12095152, 12095216, @@ -155192,23 +155192,23 @@ }, { "type_name": "CNetMessagePB<318, CCSUsrMsg_RawAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63100352, + "vtable_address": 63104256, "methods": [ 12095184, 12095280, - 29643894, + 29647734, 12095136, 15818080, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862688, 12084016, 15375936, 12011504, 15001056, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840256, 14804752 @@ -155265,7 +155265,7 @@ }, { "type_name": "CNetMessagePB<318, CCSUsrMsg_RawAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63100200, + "vtable_address": 63104104, "methods": [ 12168944, 12077248, @@ -155297,7 +155297,7 @@ }, { "type_name": "CNetMessagePB<321, CCSUsrMsg_Damage, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63094672, + "vtable_address": 63098576, "methods": [ 12103568, 12103632, @@ -155358,23 +155358,23 @@ }, { "type_name": "CNetMessagePB<321, CCSUsrMsg_Damage, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63094736, + "vtable_address": 63098640, "methods": [ 12103600, 12103696, - 29643894, + 29647734, 12103552, 15974256, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15977936, 12084304, 15377104, 12011504, 14959456, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840352, 14804800 @@ -155431,7 +155431,7 @@ }, { "type_name": "CNetMessagePB<321, CCSUsrMsg_Damage, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63094584, + "vtable_address": 63098488, "methods": [ 12197200, 12078688, @@ -155463,7 +155463,7 @@ }, { "type_name": "CNetMessagePB<322, CCSUsrMsg_RadioText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63095296, + "vtable_address": 63099200, "methods": [ 12102624, 12102688, @@ -155524,23 +155524,23 @@ }, { "type_name": "CNetMessagePB<322, CCSUsrMsg_RadioText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63095360, + "vtable_address": 63099264, "methods": [ 12102656, 12102752, - 29643894, + 29647734, 12102608, 15818384, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877600, 12084272, 15377680, 12011504, 15025280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840384, 14804816 @@ -155597,7 +155597,7 @@ }, { "type_name": "CNetMessagePB<322, CCSUsrMsg_RadioText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63095208, + "vtable_address": 63099112, "methods": [ 12194048, 12078528, @@ -155629,7 +155629,7 @@ }, { "type_name": "CNetMessagePB<323, CCSUsrMsg_HintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63105592, + "vtable_address": 63109496, "methods": [ 12087136, 12087200, @@ -155690,23 +155690,23 @@ }, { "type_name": "CNetMessagePB<323, CCSUsrMsg_HintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63105656, + "vtable_address": 63109560, "methods": [ 12087168, 12087264, - 29643894, + 29647734, 12087120, 15818672, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 12083760, 15378336, 12011504, 14911648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840416, 14804832 @@ -155763,7 +155763,7 @@ }, { "type_name": "CNetMessagePB<323, CCSUsrMsg_HintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63105504, + "vtable_address": 63109408, "methods": [ 12142288, 12075888, @@ -155795,7 +155795,7 @@ }, { "type_name": "CNetMessagePB<324, CCSUsrMsg_KeyHintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63105904, + "vtable_address": 63109808, "methods": [ 12086672, 12086736, @@ -155856,23 +155856,23 @@ }, { "type_name": "CNetMessagePB<324, CCSUsrMsg_KeyHintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63105968, + "vtable_address": 63109872, "methods": [ 12086704, 12086800, - 29643894, + 29647734, 12086656, 15799152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 12083744, 15378736, 12011504, 14879920, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14840448, 14804848 @@ -155929,7 +155929,7 @@ }, { "type_name": "CNetMessagePB<324, CCSUsrMsg_KeyHintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63105816, + "vtable_address": 63109720, "methods": [ 12140720, 12075808, @@ -155961,7 +155961,7 @@ }, { "type_name": "CNetMessagePB<325, CCSUsrMsg_ProcessSpottedEntityUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63094360, + "vtable_address": 63098264, "methods": [ 12104032, 12104096, @@ -156022,23 +156022,23 @@ }, { "type_name": "CNetMessagePB<325, CCSUsrMsg_ProcessSpottedEntityUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63094424, + "vtable_address": 63098328, "methods": [ 12104064, 12104160, - 29643894, + 29647734, 12104016, 15836144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14909392, 12084320, 15527216, 12011504, 14886432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840512, 14804880 @@ -156095,7 +156095,7 @@ }, { "type_name": "CNetMessagePB<325, CCSUsrMsg_ProcessSpottedEntityUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63094272, + "vtable_address": 63098176, "methods": [ 12198768, 12078768, @@ -156127,7 +156127,7 @@ }, { "type_name": "CNetMessagePB<327, CCSUsrMsg_AdjustMoney, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63094984, + "vtable_address": 63098888, "methods": [ 12103088, 12103152, @@ -156188,23 +156188,23 @@ }, { "type_name": "CNetMessagePB<327, CCSUsrMsg_AdjustMoney, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63095048, + "vtable_address": 63098952, "methods": [ 12103120, 12103216, - 29643894, + 29647734, 12103072, 15799488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814208, 12084288, 15382880, 12011504, 14919648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840736, 14804992 @@ -156261,7 +156261,7 @@ }, { "type_name": "CNetMessagePB<327, CCSUsrMsg_AdjustMoney, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63094896, + "vtable_address": 63098800, "methods": [ 12195648, 12078608, @@ -156293,7 +156293,7 @@ }, { "type_name": "CNetMessagePB<330, CCSUsrMsg_KillCam, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63096232, + "vtable_address": 63100136, "methods": [ 12101216, 12101280, @@ -156354,23 +156354,23 @@ }, { "type_name": "CNetMessagePB<330, CCSUsrMsg_KillCam, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63096296, + "vtable_address": 63100200, "methods": [ 12101248, 12101344, - 29643894, + 29647734, 12101200, 15799600, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814256, 12084224, 15383808, 12011504, 14980800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840800, 14805024 @@ -156427,7 +156427,7 @@ }, { "type_name": "CNetMessagePB<330, CCSUsrMsg_KillCam, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63096144, + "vtable_address": 63100048, "methods": [ 12189360, 12078288, @@ -156459,7 +156459,7 @@ }, { "type_name": "CNetMessagePB<334, CCSUsrMsg_MatchEndConditions, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63103408, + "vtable_address": 63107312, "methods": [ 12090432, 12090496, @@ -156520,23 +156520,23 @@ }, { "type_name": "CNetMessagePB<334, CCSUsrMsg_MatchEndConditions, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63103472, + "vtable_address": 63107376, "methods": [ 12090464, 12090560, - 29643894, + 29647734, 12090416, 15799840, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814576, 12083872, 15385744, 12011504, 14996032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840928, 14805088 @@ -156593,7 +156593,7 @@ }, { "type_name": "CNetMessagePB<334, CCSUsrMsg_MatchEndConditions, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63103320, + "vtable_address": 63107224, "methods": [ 12153280, 12076448, @@ -156625,7 +156625,7 @@ }, { "type_name": "CNetMessagePB<335, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63101536, + "vtable_address": 63105440, "methods": [ 12092992, 12093056, @@ -156686,23 +156686,23 @@ }, { "type_name": "CNetMessagePB<335, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63101600, + "vtable_address": 63105504, "methods": [ 12093024, 12093120, - 29643894, + 29647734, 12092784, 15801488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817088, 12083952, 15406560, 12011504, 14921216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842432, 14805840 @@ -156759,7 +156759,7 @@ }, { "type_name": "CNetMessagePB<335, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63101448, + "vtable_address": 63105352, "methods": [ 12161888, 12076928, @@ -156791,7 +156791,7 @@ }, { "type_name": "CNetMessagePB<336, CCSUsrMsg_PlayerStatsUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63097168, + "vtable_address": 63101072, "methods": [ 12099824, 12099888, @@ -156852,23 +156852,23 @@ }, { "type_name": "CNetMessagePB<336, CCSUsrMsg_PlayerStatsUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63097232, + "vtable_address": 63101136, "methods": [ 12099856, 12099952, - 29643894, + 29647734, 12099808, 15834848, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14888448, 12084176, 15529312, 12011504, 15002176, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840992, 14805120 @@ -156925,7 +156925,7 @@ }, { "type_name": "CNetMessagePB<336, CCSUsrMsg_PlayerStatsUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63097080, + "vtable_address": 63100984, "methods": [ 12184624, 12078048, @@ -156957,7 +156957,7 @@ }, { "type_name": "CNetMessagePB<345, CCSUsrMsg_CallVoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63098728, + "vtable_address": 63102632, "methods": [ 12097488, 12097552, @@ -157018,23 +157018,23 @@ }, { "type_name": "CNetMessagePB<345, CCSUsrMsg_CallVoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63098792, + "vtable_address": 63102696, "methods": [ 12097520, 12097616, - 29643894, + 29647734, 12097472, 15800160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814976, 12084096, 15389344, 12011504, 14946656, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841184, 14805216 @@ -157091,7 +157091,7 @@ }, { "type_name": "CNetMessagePB<345, CCSUsrMsg_CallVoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63098640, + "vtable_address": 63102544, "methods": [ 12176800, 12077648, @@ -157123,7 +157123,7 @@ }, { "type_name": "CNetMessagePB<346, CCSUsrMsg_VoteStart, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63099040, + "vtable_address": 63102944, "methods": [ 12097024, 12097088, @@ -157184,23 +157184,23 @@ }, { "type_name": "CNetMessagePB<346, CCSUsrMsg_VoteStart, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63099104, + "vtable_address": 63103008, "methods": [ 12097056, 12097152, - 29643894, + 29647734, 12097008, 15819232, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862960, 12084080, 15389920, 12011504, 15116032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841216, 14805232 @@ -157257,7 +157257,7 @@ }, { "type_name": "CNetMessagePB<346, CCSUsrMsg_VoteStart, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63098952, + "vtable_address": 63102856, "methods": [ 12175200, 12077568, @@ -157289,7 +157289,7 @@ }, { "type_name": "CNetMessagePB<347, CCSUsrMsg_VotePass, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63099352, + "vtable_address": 63103256, "methods": [ 12096560, 12096624, @@ -157350,23 +157350,23 @@ }, { "type_name": "CNetMessagePB<347, CCSUsrMsg_VotePass, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63099416, + "vtable_address": 63103320, "methods": [ 12096592, 12096688, - 29643894, + 29647734, 12096544, 15819408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863232, 12084064, 15390656, 12011504, 15021760, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841248, 14805248 @@ -157423,7 +157423,7 @@ }, { "type_name": "CNetMessagePB<347, CCSUsrMsg_VotePass, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63099264, + "vtable_address": 63103168, "methods": [ 12173632, 12077488, @@ -157455,7 +157455,7 @@ }, { "type_name": "CNetMessagePB<348, CCSUsrMsg_VoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63099664, + "vtable_address": 63103568, "methods": [ 12096080, 12096144, @@ -157516,23 +157516,23 @@ }, { "type_name": "CNetMessagePB<348, CCSUsrMsg_VoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63099728, + "vtable_address": 63103632, "methods": [ 12096112, 12096208, - 29643894, + 29647734, 12096064, 15800224, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815056, 12084048, 15391264, 12011504, 14947008, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841280, 14805264 @@ -157589,7 +157589,7 @@ }, { "type_name": "CNetMessagePB<348, CCSUsrMsg_VoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63099576, + "vtable_address": 63103480, "methods": [ 12172080, 12077408, @@ -157621,7 +157621,7 @@ }, { "type_name": "CNetMessagePB<349, CCSUsrMsg_VoteSetup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63099976, + "vtable_address": 63103880, "methods": [ 12095616, 12095680, @@ -157682,23 +157682,23 @@ }, { "type_name": "CNetMessagePB<349, CCSUsrMsg_VoteSetup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63100040, + "vtable_address": 63103944, "methods": [ 12095648, 12095744, - 29643894, + 29647734, 12095600, 15800288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877856, 12084032, 15391840, 12011504, 14879920, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14841312, 14805280 @@ -157755,7 +157755,7 @@ }, { "type_name": "CNetMessagePB<349, CCSUsrMsg_VoteSetup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63099888, + "vtable_address": 63103792, "methods": [ 12170512, 12077328, @@ -157787,7 +157787,7 @@ }, { "type_name": "CNetMessagePB<350, CCSUsrMsg_ServerRankRevealAll, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63097480, + "vtable_address": 63101384, "methods": [ 12099360, 12099424, @@ -157848,23 +157848,23 @@ }, { "type_name": "CNetMessagePB<350, CCSUsrMsg_ServerRankRevealAll, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63097544, + "vtable_address": 63101448, "methods": [ 12099392, 12099488, - 29643894, + 29647734, 12099344, 15865312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15040160, 12084160, 15407520, 12011504, 14926016, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842496, 14805872 @@ -157921,7 +157921,7 @@ }, { "type_name": "CNetMessagePB<350, CCSUsrMsg_ServerRankRevealAll, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63097392, + "vtable_address": 63101296, "methods": [ 12183056, 12077968, @@ -157953,7 +157953,7 @@ }, { "type_name": "CNetMessagePB<351, CCSUsrMsg_SendLastKillerDamageToClient, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63095920, + "vtable_address": 63099824, "methods": [ 12101680, 12101744, @@ -158014,23 +158014,23 @@ }, { "type_name": "CNetMessagePB<351, CCSUsrMsg_SendLastKillerDamageToClient, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63095984, + "vtable_address": 63099888, "methods": [ 12101712, 12101808, - 29643894, + 29647734, 12101664, 15800352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14815136, 12084240, 15392240, 12011504, 15064096, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841344, 14805296 @@ -158087,7 +158087,7 @@ }, { "type_name": "CNetMessagePB<351, CCSUsrMsg_SendLastKillerDamageToClient, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63095832, + "vtable_address": 63099736, "methods": [ 12190928, 12078368, @@ -158119,7 +158119,7 @@ }, { "type_name": "CNetMessagePB<352, CCSUsrMsg_ServerRankUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63100912, + "vtable_address": 63104816, "methods": [ 12094224, 12094288, @@ -158180,23 +158180,23 @@ }, { "type_name": "CNetMessagePB<352, CCSUsrMsg_ServerRankUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63100976, + "vtable_address": 63104880, "methods": [ 12094256, 12094352, - 29643894, + 29647734, 12094208, 15832816, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14904208, 12083984, 15530016, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14841408, 14805328 @@ -158253,7 +158253,7 @@ }, { "type_name": "CNetMessagePB<352, CCSUsrMsg_ServerRankUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63100824, + "vtable_address": 63104728, "methods": [ 12165760, 12077088, @@ -158285,7 +158285,7 @@ }, { "type_name": "CNetMessagePB<36, CCLCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 63090152, + "vtable_address": 63094056, "methods": [ 12044960, 12045024, @@ -158346,23 +158346,23 @@ }, { "type_name": "CNetMessagePB<36, CCLCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 63090216, + "vtable_address": 63094120, "methods": [ 12044992, 12045088, - 29643894, + 29647734, 12044944, 16680832, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025056, 12044928, 16313904, 12011504, 16121920, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015040, 15986080 @@ -158419,7 +158419,7 @@ }, { "type_name": "CNetMessagePB<36, CCLCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 63090064, + "vtable_address": 63093968, "methods": [ 12073200, 12044624, @@ -158451,7 +158451,7 @@ }, { "type_name": "CNetMessagePB<361, CCSUsrMsg_SendPlayerItemDrops, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63097792, + "vtable_address": 63101696, "methods": [ 12098896, 12098960, @@ -158512,23 +158512,23 @@ }, { "type_name": "CNetMessagePB<361, CCSUsrMsg_SendPlayerItemDrops, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63097856, + "vtable_address": 63101760, "methods": [ 12098928, 12099024, - 29643894, + 29647734, 12098880, 15854912, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14860992, 12084144, 15527888, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14840544, 14804896 @@ -158585,7 +158585,7 @@ }, { "type_name": "CNetMessagePB<361, CCSUsrMsg_SendPlayerItemDrops, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63097704, + "vtable_address": 63101608, "methods": [ 12181488, 12077888, @@ -158617,7 +158617,7 @@ }, { "type_name": "CNetMessagePB<362, CCSUsrMsg_RoundBackupFilenames, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63098416, + "vtable_address": 63102320, "methods": [ 12097968, 12098032, @@ -158678,23 +158678,23 @@ }, { "type_name": "CNetMessagePB<362, CCSUsrMsg_RoundBackupFilenames, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63098480, + "vtable_address": 63102384, "methods": [ 12098000, 12098096, - 29643894, + 29647734, 12097952, 15820864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14863536, 12084112, 15397184, 12011504, 15022336, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841696, 14805472 @@ -158751,7 +158751,7 @@ }, { "type_name": "CNetMessagePB<362, CCSUsrMsg_RoundBackupFilenames, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63098328, + "vtable_address": 63102232, "methods": [ 12178352, 12077728, @@ -158783,7 +158783,7 @@ }, { "type_name": "CNetMessagePB<363, CCSUsrMsg_SendPlayerItemFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63098104, + "vtable_address": 63102008, "methods": [ 12098432, 12098496, @@ -158844,23 +158844,23 @@ }, { "type_name": "CNetMessagePB<363, CCSUsrMsg_SendPlayerItemFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63098168, + "vtable_address": 63102072, "methods": [ 12098464, 12098560, - 29643894, + 29647734, 12098416, 15854704, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14861104, 12084128, 15380000, 12011504, 14925728, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840576, 14804912 @@ -158917,7 +158917,7 @@ }, { "type_name": "CNetMessagePB<363, CCSUsrMsg_SendPlayerItemFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63098016, + "vtable_address": 63101920, "methods": [ 12179920, 12077808, @@ -158949,7 +158949,7 @@ }, { "type_name": "CNetMessagePB<364, CCSUsrMsg_ReportHit, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63096856, + "vtable_address": 63100760, "methods": [ 12100288, 12100352, @@ -159010,23 +159010,23 @@ }, { "type_name": "CNetMessagePB<364, CCSUsrMsg_ReportHit, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63096920, + "vtable_address": 63100824, "methods": [ 12100320, 12100416, - 29643894, + 29647734, 12100272, 15799536, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810464, 12084192, 15383360, 12011504, 14883616, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840768, 14805008 @@ -159083,7 +159083,7 @@ }, { "type_name": "CNetMessagePB<364, CCSUsrMsg_ReportHit, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63096768, + "vtable_address": 63100672, "methods": [ 12186224, 12078128, @@ -159115,7 +159115,7 @@ }, { "type_name": "CNetMessagePB<365, CCSUsrMsg_XpUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63101224, + "vtable_address": 63105128, "methods": [ 12093744, 12093808, @@ -159176,23 +159176,23 @@ }, { "type_name": "CNetMessagePB<365, CCSUsrMsg_XpUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63101288, + "vtable_address": 63105192, "methods": [ 12093776, 12093872, - 29643894, + 29647734, 12093728, 15836064, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14900432, 12083968, 15393568, 12011504, 14854416, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841440, 14805344 @@ -159249,7 +159249,7 @@ }, { "type_name": "CNetMessagePB<365, CCSUsrMsg_XpUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63101136, + "vtable_address": 63105040, "methods": [ 12164208, 12077008, @@ -159281,7 +159281,7 @@ }, { "type_name": "CNetMessagePB<366, CCSUsrMsg_QuestProgress, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63096544, + "vtable_address": 63100448, "methods": [ 12100752, 12100816, @@ -159342,23 +159342,23 @@ }, { "type_name": "CNetMessagePB<366, CCSUsrMsg_QuestProgress, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63096608, + "vtable_address": 63100512, "methods": [ 12100784, 12100880, - 29643894, + 29647734, 12100736, 15799968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14827600, 12084208, 15386864, 12011504, 14999424, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841024, 14805136 @@ -159415,7 +159415,7 @@ }, { "type_name": "CNetMessagePB<366, CCSUsrMsg_QuestProgress, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63096456, + "vtable_address": 63100360, "methods": [ 12187792, 12078208, @@ -159447,7 +159447,7 @@ }, { "type_name": "CNetMessagePB<367, CCSUsrMsg_ScoreLeaderboardData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63103096, + "vtable_address": 63107000, "methods": [ 12090896, 12090960, @@ -159508,23 +159508,23 @@ }, { "type_name": "CNetMessagePB<367, CCSUsrMsg_ScoreLeaderboardData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63103160, + "vtable_address": 63107064, "methods": [ 12090928, 12091024, - 29643894, + 29647734, 12090880, 15839968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14898256, 12083888, 15387424, 12011504, 14854224, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841056, 14805152 @@ -159581,7 +159581,7 @@ }, { "type_name": "CNetMessagePB<367, CCSUsrMsg_ScoreLeaderboardData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63103008, + "vtable_address": 63106912, "methods": [ 12154848, 12076528, @@ -159613,7 +159613,7 @@ }, { "type_name": "CNetMessagePB<368, CCSUsrMsg_PlayerDecalDigitalSignature, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63102160, + "vtable_address": 63106064, "methods": [ 12092320, 12092384, @@ -159674,23 +159674,23 @@ }, { "type_name": "CNetMessagePB<368, CCSUsrMsg_PlayerDecalDigitalSignature, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63102224, + "vtable_address": 63106128, "methods": [ 12092352, 12092448, - 29643894, + 29647734, 12092304, 15814400, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14869936, 12083936, 15387840, 12011504, 14854320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841088, 14805168 @@ -159747,7 +159747,7 @@ }, { "type_name": "CNetMessagePB<368, CCSUsrMsg_PlayerDecalDigitalSignature, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63102072, + "vtable_address": 63105976, "methods": [ 12159552, 12076768, @@ -159779,7 +159779,7 @@ }, { "type_name": "CNetMessagePB<369, CCSUsrMsg_WeaponSound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63102784, + "vtable_address": 63106688, "methods": [ 12091376, 12091440, @@ -159840,23 +159840,23 @@ }, { "type_name": "CNetMessagePB<369, CCSUsrMsg_WeaponSound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63102848, + "vtable_address": 63106752, "methods": [ 12091408, 12091504, - 29643894, + 29647734, 12091360, 15818928, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862816, 12083904, 15381136, 12011504, 15028160, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840640, 14804944 @@ -159913,7 +159913,7 @@ }, { "type_name": "CNetMessagePB<369, CCSUsrMsg_WeaponSound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63102696, + "vtable_address": 63106600, "methods": [ 12156400, 12076608, @@ -159945,7 +159945,7 @@ }, { "type_name": "CNetMessagePB<370, CCSUsrMsg_UpdateScreenHealthBar, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63104032, + "vtable_address": 63107936, "methods": [ 12089504, 12089568, @@ -160006,23 +160006,23 @@ }, { "type_name": "CNetMessagePB<370, CCSUsrMsg_UpdateScreenHealthBar, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63104096, + "vtable_address": 63108000, "methods": [ 12089536, 12089632, - 29643894, + 29647734, 12089488, 15799360, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814032, 12083840, 15381792, 12011504, 14968800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840672, 14804960 @@ -160079,7 +160079,7 @@ }, { "type_name": "CNetMessagePB<370, CCSUsrMsg_UpdateScreenHealthBar, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63103944, + "vtable_address": 63107848, "methods": [ 12150112, 12076288, @@ -160111,7 +160111,7 @@ }, { "type_name": "CNetMessagePB<371, CCSUsrMsg_EntityOutlineHighlight, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63102472, + "vtable_address": 63106376, "methods": [ 12091840, 12091904, @@ -160172,23 +160172,23 @@ }, { "type_name": "CNetMessagePB<371, CCSUsrMsg_EntityOutlineHighlight, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63102536, + "vtable_address": 63106440, "methods": [ 12091872, 12091968, - 29643894, + 29647734, 12091824, 15799440, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14814144, 12083920, 15382304, 12011504, 14930592, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14840704, 14804976 @@ -160245,7 +160245,7 @@ }, { "type_name": "CNetMessagePB<371, CCSUsrMsg_EntityOutlineHighlight, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63102384, + "vtable_address": 63106288, "methods": [ 12158000, 12076688, @@ -160277,7 +160277,7 @@ }, { "type_name": "CNetMessagePB<372, CCSUsrMsg_SSUI, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63104344, + "vtable_address": 63108248, "methods": [ 12089040, 12089104, @@ -160338,23 +160338,23 @@ }, { "type_name": "CNetMessagePB<372, CCSUsrMsg_SSUI, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63104408, + "vtable_address": 63108312, "methods": [ 12089072, 12089168, - 29643894, + 29647734, 12089024, 15800592, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810560, 12083824, 15397792, 12011504, 14885904, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841728, 14805488 @@ -160411,7 +160411,7 @@ }, { "type_name": "CNetMessagePB<372, CCSUsrMsg_SSUI, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63104256, + "vtable_address": 63108160, "methods": [ 12148544, 12076208, @@ -160443,7 +160443,7 @@ }, { "type_name": "CNetMessagePB<373, CCSUsrMsg_SurvivalStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63100600, + "vtable_address": 63104504, "methods": [ 12094688, 12094752, @@ -160504,23 +160504,23 @@ }, { "type_name": "CNetMessagePB<373, CCSUsrMsg_SurvivalStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63100664, + "vtable_address": 63104568, "methods": [ 12094720, 12094816, - 29643894, + 29647734, 12094672, 15840048, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14830432, 12084000, 15530480, 12011504, 15006560, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841856, 14805552 @@ -160577,7 +160577,7 @@ }, { "type_name": "CNetMessagePB<373, CCSUsrMsg_SurvivalStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63100512, + "vtable_address": 63104416, "methods": [ 12167328, 12077168, @@ -160609,7 +160609,7 @@ }, { "type_name": "CNetMessagePB<374, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63101848, + "vtable_address": 63105752, "methods": [ 12092800, 12092864, @@ -160670,23 +160670,23 @@ }, { "type_name": "CNetMessagePB<374, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63101912, + "vtable_address": 63105816, "methods": [ 12092832, 12092928, - 29643894, + 29647734, 12092784, 15801488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817088, 12083952, 15406560, 12011504, 14921216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842432, 14805840 @@ -160743,7 +160743,7 @@ }, { "type_name": "CNetMessagePB<374, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63101760, + "vtable_address": 63105664, "methods": [ 12161104, 12076848, @@ -160775,7 +160775,7 @@ }, { "type_name": "CNetMessagePB<375, CCSUsrMsg_EndOfMatchAllPlayersData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63103720, + "vtable_address": 63107624, "methods": [ 12089968, 12090032, @@ -160836,23 +160836,23 @@ }, { "type_name": "CNetMessagePB<375, CCSUsrMsg_EndOfMatchAllPlayersData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63103784, + "vtable_address": 63107688, "methods": [ 12090000, 12090096, - 29643894, + 29647734, 12089952, 15862160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14864096, 12083856, 15531344, 12011504, 14931392, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14841952, 14805600 @@ -160909,7 +160909,7 @@ }, { "type_name": "CNetMessagePB<375, CCSUsrMsg_EndOfMatchAllPlayersData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63103632, + "vtable_address": 63107536, "methods": [ 12151680, 12076368, @@ -160941,7 +160941,7 @@ }, { "type_name": "CNetMessagePB<376, CCSUsrMsg_PostRoundDamageReport, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63106528, + "vtable_address": 63110432, "methods": [ 12085744, 12085808, @@ -161002,23 +161002,23 @@ }, { "type_name": "CNetMessagePB<376, CCSUsrMsg_PostRoundDamageReport, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63106592, + "vtable_address": 63110496, "methods": [ 12085776, 12085872, - 29643894, + 29647734, 12085728, 15801184, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816672, 12083712, 15403008, 12011504, 15099872, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842176, 14805712 @@ -161075,7 +161075,7 @@ }, { "type_name": "CNetMessagePB<376, CCSUsrMsg_PostRoundDamageReport, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63106440, + "vtable_address": 63110344, "methods": [ 12137520, 12075648, @@ -161107,7 +161107,7 @@ }, { "type_name": "CNetMessagePB<379, CCSUsrMsg_RoundEndReportData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63104656, + "vtable_address": 63108560, "methods": [ 12088576, 12088640, @@ -161168,23 +161168,23 @@ }, { "type_name": "CNetMessagePB<379, CCSUsrMsg_RoundEndReportData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63104720, + "vtable_address": 63108624, "methods": [ 12088608, 12088704, - 29643894, + 29647734, 12088560, 15863216, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14909232, 12083808, 15532784, 12011504, 14855648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842144, 14805696 @@ -161241,7 +161241,7 @@ }, { "type_name": "CNetMessagePB<379, CCSUsrMsg_RoundEndReportData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63104568, + "vtable_address": 63108472, "methods": [ 12146944, 12076128, @@ -161273,7 +161273,7 @@ }, { "type_name": "CNetMessagePB<380, CCSUsrMsg_CurrentRoundOdds, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63104968, + "vtable_address": 63108872, "methods": [ 12088096, 12088160, @@ -161334,23 +161334,23 @@ }, { "type_name": "CNetMessagePB<380, CCSUsrMsg_CurrentRoundOdds, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63105032, + "vtable_address": 63108936, "methods": [ 12088128, 12088224, - 29643894, + 29647734, 12088080, 15801248, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14816896, 12083792, 15403744, 12011504, 14920320, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842208, 14805728 @@ -161407,7 +161407,7 @@ }, { "type_name": "CNetMessagePB<380, CCSUsrMsg_CurrentRoundOdds, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63104880, + "vtable_address": 63108784, "methods": [ 12145392, 12076048, @@ -161439,7 +161439,7 @@ }, { "type_name": "CNetMessagePB<381, CCSUsrMsg_DeepStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63105280, + "vtable_address": 63109184, "methods": [ 12087616, 12087680, @@ -161500,23 +161500,23 @@ }, { "type_name": "CNetMessagePB<381, CCSUsrMsg_DeepStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63105344, + "vtable_address": 63109248, "methods": [ 12087648, 12087744, - 29643894, + 29647734, 12087600, 15860208, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14874768, 12083776, 15404224, 12011504, 14854512, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842240, 14805744 @@ -161573,7 +161573,7 @@ }, { "type_name": "CNetMessagePB<381, CCSUsrMsg_DeepStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63105192, + "vtable_address": 63109096, "methods": [ 12143840, 12075968, @@ -161605,7 +161605,7 @@ }, { "type_name": "CNetMessagePB<383, CCSUsrMsg_ShootInfo, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63106840, + "vtable_address": 63110744, "methods": [ 12085280, 12085344, @@ -161666,23 +161666,23 @@ }, { "type_name": "CNetMessagePB<383, CCSUsrMsg_ShootInfo, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63106904, + "vtable_address": 63110808, "methods": [ 12085312, 12085408, - 29643894, + 29647734, 12085264, 15983072, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15983264, 12083696, 15533360, 12011504, 14966880, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842272, 14805760 @@ -161739,7 +161739,7 @@ }, { "type_name": "CNetMessagePB<383, CCSUsrMsg_ShootInfo, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63106752, + "vtable_address": 63110656, "methods": [ 12135920, 12075568, @@ -161771,7 +161771,7 @@ }, { "type_name": "CNetMessagePB<387, CCSUsrMsg_RecurringMissionSchema, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63107152, + "vtable_address": 63111056, "methods": [ 12084816, 12084880, @@ -161832,23 +161832,23 @@ }, { "type_name": "CNetMessagePB<387, CCSUsrMsg_RecurringMissionSchema, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63107216, + "vtable_address": 63111120, "methods": [ 12084848, 12084944, - 29643894, + 29647734, 12084800, 15821312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14870960, 12083680, 15410160, 12011504, 14969280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842624, 14805936 @@ -161905,7 +161905,7 @@ }, { "type_name": "CNetMessagePB<387, CCSUsrMsg_RecurringMissionSchema, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63107064, + "vtable_address": 63110968, "methods": [ 12134352, 12075488, @@ -161937,7 +161937,7 @@ }, { "type_name": "CNetMessagePB<388, CCSUsrMsg_SendPlayerLoadout, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63107464, + "vtable_address": 63111368, "methods": [ 12084352, 12084416, @@ -161998,23 +161998,23 @@ }, { "type_name": "CNetMessagePB<388, CCSUsrMsg_SendPlayerLoadout, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 63107528, + "vtable_address": 63111432, "methods": [ 12084384, 12084480, - 29643894, + 29647734, 12084336, 15855024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14895440, 12083664, 15534176, 12011504, 14931680, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14842688, 14805968 @@ -162071,7 +162071,7 @@ }, { "type_name": "CNetMessagePB<388, CCSUsrMsg_SendPlayerLoadout, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 63107376, + "vtable_address": 63111280, "methods": [ 12132752, 12075408, @@ -162103,14 +162103,14 @@ }, { "type_name": "CNetMessagePB<400, CMsgTEEffectDispatch, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64242728, + "vtable_address": 64246632, "methods": [ - 22385664, - 22385728, - 22377472, - 22377488, - 22377504, - 22386048 + 22388480, + 22388544, + 22380288, + 22380304, + 22380320, + 22388864 ], "bases": [ { @@ -162164,23 +162164,23 @@ }, { "type_name": "CNetMessagePB<400, CMsgTEEffectDispatch, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64242792, + "vtable_address": 64246696, "methods": [ - 22385696, - 22385792, - 29643894, + 22388512, + 22388608, + 29647734, 16250304, 16684560, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16030320, 15996976, 16373584, 12011504, 16045008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018944, 15990288 @@ -162237,17 +162237,17 @@ }, { "type_name": "CNetMessagePB<400, CMsgTEEffectDispatch, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64242640, + "vtable_address": 64246544, "methods": [ - 22433056, - 22377584, - 22433696, - 22377600, - 22392400, - 22377616, - 22386192, - 22377632, - 22377648 + 22435872, + 22380400, + 22436512, + 22380416, + 22395216, + 22380432, + 22389008, + 22380448, + 22380464 ], "bases": [ { @@ -162269,14 +162269,14 @@ }, { "type_name": "CNetMessagePB<401, CMsgTEArmorRicochet, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64236192, + "vtable_address": 64240096, "methods": [ - 22303424, - 22303488, - 22299872, - 22299888, - 22299904, - 22303808 + 22306240, + 22306304, + 22302688, + 22302704, + 22302720, + 22306624 ], "bases": [ { @@ -162330,23 +162330,23 @@ }, { "type_name": "CNetMessagePB<401, CMsgTEArmorRicochet, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64236256, + "vtable_address": 64240160, "methods": [ - 22303456, - 22303552, - 29643894, + 22306272, + 22306368, + 29647734, 16248800, 16683664, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002080, 15997088, 16365920, 12011504, 16044656, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018624, 15990128 @@ -162403,17 +162403,17 @@ }, { "type_name": "CNetMessagePB<401, CMsgTEArmorRicochet, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64236104, + "vtable_address": 64240008, "methods": [ - 22368384, - 22299984, - 22369664, - 22300000, - 22307552, - 22300016, - 22303952, - 22300032, - 22300048 + 22371200, + 22302800, + 22372480, + 22302816, + 22310368, + 22302832, + 22306768, + 22302848, + 22302864 ], "bases": [ { @@ -162435,14 +162435,14 @@ }, { "type_name": "CNetMessagePB<402, CMsgTEBeamEntPoint, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64236784, + "vtable_address": 64240688, "methods": [ - 22302784, - 22302848, - 22299680, - 22299696, - 22299712, - 22303168 + 22305600, + 22305664, + 22302496, + 22302512, + 22302528, + 22305984 ], "bases": [ { @@ -162496,23 +162496,23 @@ }, { "type_name": "CNetMessagePB<402, CMsgTEBeamEntPoint, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64236848, + "vtable_address": 64240752, "methods": [ - 22302816, - 22302912, - 29643894, + 22305632, + 22305728, + 29647734, 16249088, 16735792, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006064, 15997072, 16367280, 12011504, 16123520, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018688, 15990160 @@ -162569,17 +162569,17 @@ }, { "type_name": "CNetMessagePB<402, CMsgTEBeamEntPoint, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64236696, + "vtable_address": 64240600, "methods": [ - 22365440, - 22299792, - 22366736, - 22299808, - 22307712, - 22299824, - 22303312, - 22299840, - 22299856 + 22368256, + 22302608, + 22369552, + 22302624, + 22310528, + 22302640, + 22306128, + 22302656, + 22302672 ], "bases": [ { @@ -162601,14 +162601,14 @@ }, { "type_name": "CNetMessagePB<403, CMsgTEBeamEnts, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64237376, + "vtable_address": 64241280, "methods": [ - 22302144, - 22302208, - 22299488, - 22299504, - 22299520, - 22302528 + 22304960, + 22305024, + 22302304, + 22302320, + 22302336, + 22305344 ], "bases": [ { @@ -162662,23 +162662,23 @@ }, { "type_name": "CNetMessagePB<403, CMsgTEBeamEnts, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64237440, + "vtable_address": 64241344, "methods": [ - 22302176, - 22302272, - 29643894, + 22304992, + 22305088, + 29647734, 16249248, 16732352, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006352, 15997056, 16368032, 12011504, 16102208, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018720, 15990176 @@ -162735,17 +162735,17 @@ }, { "type_name": "CNetMessagePB<403, CMsgTEBeamEnts, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64237288, - "methods": [ - 22362512, - 22299600, - 22363792, - 22299616, - 22307872, - 22299632, - 22302672, - 22299648, - 22299664 + "vtable_address": 64241192, + "methods": [ + 22365328, + 22302416, + 22366608, + 22302432, + 22310688, + 22302448, + 22305488, + 22302464, + 22302480 ], "bases": [ { @@ -162767,14 +162767,14 @@ }, { "type_name": "CNetMessagePB<404, CMsgTEBeamPoints, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64237968, + "vtable_address": 64241872, "methods": [ - 22301504, - 22301568, - 22299296, - 22299312, - 22299328, - 22301888 + 22304320, + 22304384, + 22302112, + 22302128, + 22302144, + 22304704 ], "bases": [ { @@ -162828,23 +162828,23 @@ }, { "type_name": "CNetMessagePB<404, CMsgTEBeamPoints, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64238032, + "vtable_address": 64241936, "methods": [ - 22301536, - 22301632, - 29643894, + 22304352, + 22304448, + 29647734, 16249392, 16735584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006496, 15997040, 16368720, 12011504, 16044816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018752, 15990192 @@ -162901,17 +162901,17 @@ }, { "type_name": "CNetMessagePB<404, CMsgTEBeamPoints, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64237880, - "methods": [ - 22359584, - 22299408, - 22360864, - 22299424, - 22308032, - 22299440, - 22302032, - 22299456, - 22299472 + "vtable_address": 64241784, + "methods": [ + 22362400, + 22302224, + 22363680, + 22302240, + 22310848, + 22302256, + 22304848, + 22302272, + 22302288 ], "bases": [ { @@ -162933,14 +162933,14 @@ }, { "type_name": "CNetMessagePB<405, CMsgTEBeamRing, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64238560, + "vtable_address": 64242464, "methods": [ - 22300864, - 22300928, - 22299104, - 22299120, - 22299136, - 22301248 + 22303680, + 22303744, + 22301920, + 22301936, + 22301952, + 22304064 ], "bases": [ { @@ -162994,23 +162994,23 @@ }, { "type_name": "CNetMessagePB<405, CMsgTEBeamRing, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64238624, + "vtable_address": 64242528, "methods": [ - 22300896, - 22300992, - 29643894, + 22303712, + 22303808, + 29647734, 16249552, 16732528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006704, 15997024, 16369312, 12011504, 16102624, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018784, 15990208 @@ -163067,17 +163067,17 @@ }, { "type_name": "CNetMessagePB<405, CMsgTEBeamRing, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64238472, - "methods": [ - 22356656, - 22299216, - 22357936, - 22299232, - 22308192, - 22299248, - 22301392, - 22299264, - 22299280 + "vtable_address": 64242376, + "methods": [ + 22359472, + 22302032, + 22360752, + 22302048, + 22311008, + 22302064, + 22304208, + 22302080, + 22302096 ], "bases": [ { @@ -163099,14 +163099,14 @@ }, { "type_name": "CNetMessagePB<408, CMsgTEBubbles, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64241544, + "vtable_address": 64245448, "methods": [ - 22386960, - 22387024, - 22377856, - 22377872, - 22377888, - 22387344 + 22389776, + 22389840, + 22380672, + 22380688, + 22380704, + 22390160 ], "bases": [ { @@ -163160,23 +163160,23 @@ }, { "type_name": "CNetMessagePB<408, CMsgTEBubbles, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64241608, + "vtable_address": 64245512, "methods": [ - 22386992, - 22387088, - 29643894, + 22389808, + 22389904, + 29647734, 16249712, 16683872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002240, 15997008, 16370000, 12011504, 16110336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018816, 15990224 @@ -163233,17 +163233,17 @@ }, { "type_name": "CNetMessagePB<408, CMsgTEBubbles, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64241456, + "vtable_address": 64245360, "methods": [ - 22436368, - 22377968, - 22437040, - 22377984, - 22392080, - 22378000, - 22387488, - 22378016, - 22378032 + 22439184, + 22380784, + 22439856, + 22380800, + 22394896, + 22380816, + 22390304, + 22380832, + 22380848 ], "bases": [ { @@ -163265,14 +163265,14 @@ }, { "type_name": "CNetMessagePB<409, CMsgTEBubbleTrail, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64242136, + "vtable_address": 64246040, "methods": [ - 22386320, - 22386384, - 22377664, - 22377680, - 22377696, - 22386704 + 22389136, + 22389200, + 22380480, + 22380496, + 22380512, + 22389520 ], "bases": [ { @@ -163326,23 +163326,23 @@ }, { "type_name": "CNetMessagePB<409, CMsgTEBubbleTrail, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64242200, + "vtable_address": 64246104, "methods": [ - 22386352, - 22386448, - 29643894, + 22389168, + 22389264, + 29647734, 16249872, 16684016, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002464, 15996992, 16370736, 12011504, 16110784, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018848, 15990240 @@ -163399,17 +163399,17 @@ }, { "type_name": "CNetMessagePB<409, CMsgTEBubbleTrail, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64242048, + "vtable_address": 64245952, "methods": [ - 22434704, - 22377776, - 22435376, - 22377792, - 22392240, - 22377808, - 22386848, - 22377824, - 22377840 + 22437520, + 22380592, + 22438192, + 22380608, + 22395056, + 22380624, + 22389664, + 22380640, + 22380656 ], "bases": [ { @@ -163431,7 +163431,7 @@ }, { "type_name": "CNetMessagePB<410, CMsgTEDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63326264, + "vtable_address": 63330168, "methods": [ 13237072, 13237136, @@ -163492,23 +163492,23 @@ }, { "type_name": "CNetMessagePB<410, CMsgTEDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63326328, + "vtable_address": 63330232, "methods": [ 13237104, 13237200, - 29643894, + 29647734, 13237056, 16684160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16029408, 13224288, 16371472, 12011504, 16130752, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018880, 15990256 @@ -163565,7 +163565,7 @@ }, { "type_name": "CNetMessagePB<410, CMsgTEDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 63326176, + "vtable_address": 63330080, "methods": [ 13816144, 13221216, @@ -163597,7 +163597,7 @@ }, { "type_name": "CNetMessagePB<411, CMsgTEWorldDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63326576, + "vtable_address": 63330480, "methods": [ 13237536, 13237600, @@ -163658,23 +163658,23 @@ }, { "type_name": "CNetMessagePB<411, CMsgTEWorldDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63326640, + "vtable_address": 63330544, "methods": [ 13237568, 13237664, - 29643894, + 29647734, 13237520, 16686144, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004624, 13224304, 16383952, 12011504, 16091040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019392, 15990512 @@ -163731,7 +163731,7 @@ }, { "type_name": "CNetMessagePB<411, CMsgTEWorldDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 63326488, + "vtable_address": 63330392, "methods": [ 13818160, 13221136, @@ -163763,14 +163763,14 @@ }, { "type_name": "CNetMessagePB<412, CMsgTEEnergySplash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64243320, + "vtable_address": 64247224, "methods": [ - 22385024, - 22385088, - 22377280, - 22377296, - 22377312, - 22385408 + 22387840, + 22387904, + 22380096, + 22380112, + 22380128, + 22388224 ], "bases": [ { @@ -163824,23 +163824,23 @@ }, { "type_name": "CNetMessagePB<412, CMsgTEEnergySplash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64243384, + "vtable_address": 64247288, "methods": [ - 22385056, - 22385152, - 29643894, + 22387872, + 22387968, + 29647734, 16250448, 16684640, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002688, 15996960, 16374000, 12011504, 16056800, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018976, 15990304 @@ -163897,17 +163897,17 @@ }, { "type_name": "CNetMessagePB<412, CMsgTEEnergySplash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64243232, + "vtable_address": 64247136, "methods": [ - 22431392, - 22377392, - 22432064, - 22377408, - 22392560, - 22377424, - 22385552, - 22377440, - 22377456 + 22434208, + 22380208, + 22434880, + 22380224, + 22395376, + 22380240, + 22388368, + 22380256, + 22380272 ], "bases": [ { @@ -163929,14 +163929,14 @@ }, { "type_name": "CNetMessagePB<413, CMsgTEFizz, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64243976, + "vtable_address": 64247880, "methods": [ - 22384384, - 22384448, - 22377088, - 22377104, - 22377120, - 22384768 + 22387200, + 22387264, + 22379904, + 22379920, + 22379936, + 22387584 ], "bases": [ { @@ -163990,23 +163990,23 @@ }, { "type_name": "CNetMessagePB<413, CMsgTEFizz, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64244040, + "vtable_address": 64247944, "methods": [ - 22384416, - 22384512, - 29643894, + 22387232, + 22387328, + 29647734, 16250592, 16684768, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026512, 15996944, 16374672, 12011504, 16114560, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019008, 15990320 @@ -164063,17 +164063,17 @@ }, { "type_name": "CNetMessagePB<413, CMsgTEFizz, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64243888, + "vtable_address": 64247792, "methods": [ - 22429728, - 22377200, - 22430400, - 22377216, - 22392720, - 22377232, - 22384912, - 22377248, - 22377264 + 22432544, + 22380016, + 22433216, + 22380032, + 22395536, + 22380048, + 22387728, + 22380064, + 22380080 ], "bases": [ { @@ -164095,14 +164095,14 @@ }, { "type_name": "CNetMessagePB<415, CMsgTEGlowSprite, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64245160, + "vtable_address": 64249064, "methods": [ - 22383104, - 22383168, - 22376704, - 22376720, - 22376736, - 22383488 + 22385920, + 22385984, + 22379520, + 22379536, + 22379552, + 22386304 ], "bases": [ { @@ -164156,23 +164156,23 @@ }, { "type_name": "CNetMessagePB<415, CMsgTEGlowSprite, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64245224, + "vtable_address": 64249128, "methods": [ - 22383136, - 22383232, - 29643894, + 22385952, + 22386048, + 29647734, 16250864, 16685056, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003248, 15996912, 16376304, 12011504, 16099520, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019072, 15990352 @@ -164229,17 +164229,17 @@ }, { "type_name": "CNetMessagePB<415, CMsgTEGlowSprite, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64245072, + "vtable_address": 64248976, "methods": [ - 22426400, - 22376816, - 22427072, - 22376832, - 22393040, - 22376848, - 22383632, - 22376864, - 22376880 + 22429216, + 22379632, + 22429888, + 22379648, + 22395856, + 22379664, + 22386448, + 22379680, + 22379696 ], "bases": [ { @@ -164261,14 +164261,14 @@ }, { "type_name": "CNetMessagePB<416, CMsgTEImpact, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64245752, + "vtable_address": 64249656, "methods": [ - 22382464, - 22382528, - 22376512, - 22376528, - 22376544, - 22382848 + 22385280, + 22385344, + 22379328, + 22379344, + 22379360, + 22385664 ], "bases": [ { @@ -164322,23 +164322,23 @@ }, { "type_name": "CNetMessagePB<416, CMsgTEImpact, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64245816, + "vtable_address": 64249720, "methods": [ - 22382496, - 22382592, - 29643894, + 22385312, + 22385408, + 29647734, 16251008, 16685168, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003376, 15996896, 16376976, 12011504, 16090720, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019104, 15990368 @@ -164395,17 +164395,17 @@ }, { "type_name": "CNetMessagePB<416, CMsgTEImpact, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64245664, + "vtable_address": 64249568, "methods": [ - 22424736, - 22376624, - 22425408, - 22376640, - 22393200, - 22376656, - 22382992, - 22376672, - 22376688 + 22427552, + 22379440, + 22428224, + 22379456, + 22396016, + 22379472, + 22385808, + 22379488, + 22379504 ], "bases": [ { @@ -164427,14 +164427,14 @@ }, { "type_name": "CNetMessagePB<417, CMsgTEMuzzleFlash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64246952, + "vtable_address": 64250856, "methods": [ - 22381184, - 22381248, - 22376128, - 22376144, - 22376160, - 22381568 + 22384000, + 22384064, + 22378944, + 22378960, + 22378976, + 22384384 ], "bases": [ { @@ -164488,23 +164488,23 @@ }, { "type_name": "CNetMessagePB<417, CMsgTEMuzzleFlash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64247016, + "vtable_address": 64250920, "methods": [ - 22381216, - 22381312, - 29643894, + 22384032, + 22384128, + 29647734, 16251152, 16685296, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003568, 15996880, 16377648, 12011504, 16101440, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019136, 15990384 @@ -164561,17 +164561,17 @@ }, { "type_name": "CNetMessagePB<417, CMsgTEMuzzleFlash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64246864, + "vtable_address": 64250768, "methods": [ - 22421408, - 22376240, - 22422080, - 22376256, - 22393520, - 22376272, - 22381712, - 22376288, - 22376304 + 22424224, + 22379056, + 22424896, + 22379072, + 22396336, + 22379088, + 22384528, + 22379104, + 22379120 ], "bases": [ { @@ -164593,14 +164593,14 @@ }, { "type_name": "CNetMessagePB<418, CMsgTEBloodStream, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64239152, + "vtable_address": 64243056, "methods": [ - 22300224, - 22300288, - 22298912, - 22298928, - 22298944, - 22300608 + 22303040, + 22303104, + 22301728, + 22301744, + 22301760, + 22303424 ], "bases": [ { @@ -164654,23 +164654,23 @@ }, { "type_name": "CNetMessagePB<418, CMsgTEBloodStream, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64239216, + "vtable_address": 64243120, "methods": [ - 22300256, - 22300352, - 29643894, + 22303072, + 22303168, + 29647734, 16251296, 16685440, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003776, 15996864, 16378352, 12011504, 16101824, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019168, 15990400 @@ -164727,17 +164727,17 @@ }, { "type_name": "CNetMessagePB<418, CMsgTEBloodStream, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64239064, + "vtable_address": 64242968, "methods": [ - 22354064, - 22299024, - 22355344, - 22299040, - 22308352, - 22299056, - 22300752, - 22299072, - 22299088 + 22356880, + 22301840, + 22358160, + 22301856, + 22311168, + 22301872, + 22303568, + 22301888, + 22301904 ], "bases": [ { @@ -164759,14 +164759,14 @@ }, { "type_name": "CNetMessagePB<419, CMsgTEExplosion, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64189912, + "vtable_address": 64193816, "methods": [ - 21563504, - 21563568, - 21559808, - 21559824, - 21559840, - 21563888 + 21566320, + 21566384, + 21562624, + 21562640, + 21562656, + 21566704 ], "bases": [ { @@ -164820,23 +164820,23 @@ }, { "type_name": "CNetMessagePB<419, CMsgTEExplosion, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64189976, + "vtable_address": 64193880, "methods": [ - 21563536, - 21563632, - 29643894, + 21566352, + 21566448, + 29647734, 16251440, 16704576, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010032, 15996848, 16379056, 12011504, 16163616, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019200, 15990416 @@ -164893,17 +164893,17 @@ }, { "type_name": "CNetMessagePB<419, CMsgTEExplosion, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64189824, + "vtable_address": 64193728, "methods": [ - 21698496, - 21560736, - 21650480, - 21560752, - 21567056, - 21560768, - 21561184, - 21560784, - 21560800 + 21701312, + 21563552, + 21653296, + 21563568, + 21569872, + 21563584, + 21564000, + 21563600, + 21563616 ], "bases": [ { @@ -164925,14 +164925,14 @@ }, { "type_name": "CNetMessagePB<420, CMsgTEDust, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64244568, + "vtable_address": 64248472, "methods": [ - 22383744, - 22383808, - 22376896, - 22376912, - 22376928, - 22384128 + 22386560, + 22386624, + 22379712, + 22379728, + 22379744, + 22386944 ], "bases": [ { @@ -164986,23 +164986,23 @@ }, { "type_name": "CNetMessagePB<420, CMsgTEDust, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64244632, + "vtable_address": 64248536, "methods": [ - 22383776, - 22383872, - 29643894, + 22386592, + 22386688, + 29647734, 16251584, 16685584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003984, 15996832, 16380144, 12011504, 16054064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019232, 15990432 @@ -165059,17 +165059,17 @@ }, { "type_name": "CNetMessagePB<420, CMsgTEDust, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64244480, - "methods": [ - 22428064, - 22377008, - 22428736, - 22377024, - 22392880, - 22377040, - 22384272, - 22377056, - 22377072 + "vtable_address": 64248384, + "methods": [ + 22430880, + 22379824, + 22431552, + 22379840, + 22395696, + 22379856, + 22387088, + 22379872, + 22379888 ], "bases": [ { @@ -165091,14 +165091,14 @@ }, { "type_name": "CNetMessagePB<421, CMsgTELargeFunnel, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64246360, + "vtable_address": 64250264, "methods": [ - 22381824, - 22381888, - 22376320, - 22376336, - 22376352, - 22382208 + 22384640, + 22384704, + 22379136, + 22379152, + 22379168, + 22385024 ], "bases": [ { @@ -165152,23 +165152,23 @@ }, { "type_name": "CNetMessagePB<421, CMsgTELargeFunnel, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64246424, + "vtable_address": 64250328, "methods": [ - 22381856, - 22381952, - 29643894, + 22384672, + 22384768, + 29647734, 16251744, 16736304, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004176, 15996816, 16380768, 12011504, 16080608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019264, 15990448 @@ -165225,17 +165225,17 @@ }, { "type_name": "CNetMessagePB<421, CMsgTELargeFunnel, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64246272, + "vtable_address": 64250176, "methods": [ - 22423072, - 22376432, - 22423744, - 22376448, - 22393360, - 22376464, - 22382352, - 22376480, - 22376496 + 22425888, + 22379248, + 22426560, + 22379264, + 22396176, + 22379280, + 22385168, + 22379296, + 22379312 ], "bases": [ { @@ -165257,14 +165257,14 @@ }, { "type_name": "CNetMessagePB<422, CMsgTESparks, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64248728, + "vtable_address": 64252632, "methods": [ - 22379264, - 22379328, - 22375552, - 22375568, - 22375584, - 22379648 + 22382080, + 22382144, + 22378368, + 22378384, + 22378400, + 22382464 ], "bases": [ { @@ -165318,23 +165318,23 @@ }, { "type_name": "CNetMessagePB<422, CMsgTESparks, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64248792, + "vtable_address": 64252696, "methods": [ - 22379296, - 22379392, - 29643894, + 22382112, + 22382208, + 29647734, 16251888, 16685728, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004304, 15996800, 16381360, 12011504, 16111232, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019296, 15990464 @@ -165391,17 +165391,17 @@ }, { "type_name": "CNetMessagePB<422, CMsgTESparks, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64248640, + "vtable_address": 64252544, "methods": [ - 22416416, - 22375664, - 22417088, - 22375680, - 22394000, - 22375696, - 22379792, - 22375712, - 22375728 + 22419232, + 22378480, + 22419904, + 22378496, + 22396816, + 22378512, + 22382608, + 22378528, + 22378544 ], "bases": [ { @@ -165423,14 +165423,14 @@ }, { "type_name": "CNetMessagePB<423, CMsgTEPhysicsProp, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64247544, + "vtable_address": 64251448, "methods": [ - 22380544, - 22380608, - 22375936, - 22375952, - 22375968, - 22380928 + 22383360, + 22383424, + 22378752, + 22378768, + 22378784, + 22383744 ], "bases": [ { @@ -165484,23 +165484,23 @@ }, { "type_name": "CNetMessagePB<423, CMsgTEPhysicsProp, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64247608, + "vtable_address": 64251512, "methods": [ - 22380576, - 22380672, - 29643894, + 22383392, + 22383488, + 29647734, 16252048, 16685872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16030400, 15996784, 16382160, 12011504, 16167136, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019328, 15990480 @@ -165557,17 +165557,17 @@ }, { "type_name": "CNetMessagePB<423, CMsgTEPhysicsProp, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64247456, + "vtable_address": 64251360, "methods": [ - 22419744, - 22376048, - 22420416, - 22376064, - 22393680, - 22376080, - 22381072, - 22376096, - 22376112 + 22422560, + 22378864, + 22423232, + 22378880, + 22396496, + 22378896, + 22383888, + 22378912, + 22378928 ], "bases": [ { @@ -165589,14 +165589,14 @@ }, { "type_name": "CNetMessagePB<426, CMsgTESmoke, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64248136, + "vtable_address": 64252040, "methods": [ - 22379904, - 22379968, - 22375744, - 22375760, - 22375776, - 22380288 + 22382720, + 22382784, + 22378560, + 22378576, + 22378592, + 22383104 ], "bases": [ { @@ -165650,23 +165650,23 @@ }, { "type_name": "CNetMessagePB<426, CMsgTESmoke, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 64248200, + "vtable_address": 64252104, "methods": [ - 22379936, - 22380032, - 29643894, + 22382752, + 22382848, + 29647734, 16252208, 16736432, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004528, 15996768, 16383456, 12011504, 16054320, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019360, 15990496 @@ -165723,17 +165723,17 @@ }, { "type_name": "CNetMessagePB<426, CMsgTESmoke, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 64248048, - "methods": [ - 22418080, - 22375856, - 22418752, - 22375872, - 22393840, - 22375888, - 22380432, - 22375904, - 22375920 + "vtable_address": 64251952, + "methods": [ + 22420896, + 22378672, + 22421568, + 22378688, + 22396656, + 22378704, + 22383248, + 22378720, + 22378736 ], "bases": [ { @@ -165755,7 +165755,7 @@ }, { "type_name": "CNetMessagePB<452, CMsgTEFireBullets, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63687216, + "vtable_address": 63691120, "methods": [ 16909824, 16909888, @@ -165816,23 +165816,23 @@ }, { "type_name": "CNetMessagePB<452, CMsgTEFireBullets, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63687280, + "vtable_address": 63691184, "methods": [ 16909856, 16909952, - 29643894, + 29647734, 15155552, 15977312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15979056, 14852160, 15276272, 12011504, 15091712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833984, 14797232 @@ -165889,7 +165889,7 @@ }, { "type_name": "CNetMessagePB<452, CMsgTEFireBullets, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 63687128, + "vtable_address": 63691032, "methods": [ 17042512, 16908608, @@ -165921,7 +165921,7 @@ }, { "type_name": "CNetMessagePB<453, CMsgPlayerBulletHit, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63687528, + "vtable_address": 63691432, "methods": [ 16910272, 16910336, @@ -165982,23 +165982,23 @@ }, { "type_name": "CNetMessagePB<453, CMsgPlayerBulletHit, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 63687592, + "vtable_address": 63691496, "methods": [ 16910304, 16910400, - 29643894, + 29647734, 15155712, 15974128, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15977664, 14852144, 15277712, 12011504, 15068928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834016, 14797248 @@ -166055,7 +166055,7 @@ }, { "type_name": "CNetMessagePB<453, CMsgPlayerBulletHit, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 63687440, + "vtable_address": 63691344, "methods": [ 17044048, 16908528, @@ -166087,14 +166087,14 @@ }, { "type_name": "CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 64147432, + "vtable_address": 64151336, "methods": [ - 21141536, - 21141600, - 21136176, - 21136192, - 21136208, - 21141728 + 21144352, + 21144416, + 21138992, + 21139008, + 21139024, + 21144544 ], "bases": [ { @@ -166148,23 +166148,23 @@ }, { "type_name": "CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 64147496, + "vtable_address": 64151400, "methods": [ - 21141568, - 21141664, - 29643894, + 21144384, + 21144480, + 29647734, 16226400, 16728896, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039136, 15998416, 16301680, 12011504, 16144160, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014304, 15985696 @@ -166221,17 +166221,17 @@ }, { "type_name": "CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 64147344, + "vtable_address": 64151248, "methods": [ - 21321248, - 21135792, - 21322544, - 21135808, - 21145648, - 21135824, - 21141872, - 21135840, - 21135856 + 21324064, + 21138608, + 21325360, + 21138624, + 21148464, + 21138640, + 21144688, + 21138656, + 21138672 ], "bases": [ { @@ -166253,14 +166253,14 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 64193120, + "vtable_address": 64197024, "methods": [ - 21708144, - 21708208, - 21706864, - 21706880, - 21706896, - 21708336 + 21710960, + 21711024, + 21709680, + 21709696, + 21709712, + 21711152 ], "bases": [ { @@ -166314,23 +166314,23 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 64193184, + "vtable_address": 64197088, "methods": [ - 21708176, - 21708272, - 29643894, + 21710992, + 21711088, + 29647734, 16226800, 16695104, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16033296, 15998368, 16303984, 12011504, 16132608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014400, 15985744 @@ -166387,17 +166387,17 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 64193032, - "methods": [ - 21813840, - 21706592, - 21771872, - 21706608, - 21712144, - 21706624, - 21707200, - 21706640, - 21706656 + "vtable_address": 64196936, + "methods": [ + 21816656, + 21709408, + 21774688, + 21709424, + 21714960, + 21709440, + 21710016, + 21709456, + 21709472 ], "bases": [ { @@ -166419,7 +166419,7 @@ }, { "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>", - "vtable_address": 63088984, + "vtable_address": 63092888, "methods": [ 12013440, 12013504, @@ -166480,23 +166480,23 @@ }, { "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>", - "vtable_address": 63089048, + "vtable_address": 63092952, "methods": [ 12013472, 12013568, - 29643894, + 29647734, 12013424, 16693072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039472, 12013408, 16295600, 12011504, 16136576, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013888, 15985488 @@ -166553,7 +166553,7 @@ }, { "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 63088896, + "vtable_address": 63092800, "methods": [ 12023776, 12013264, @@ -166585,14 +166585,14 @@ }, { "type_name": "CNetworkFieldScratchData", - "vtable_address": 64847688, + "vtable_address": 64851592, "methods": [ - 40036480, - 40036112, - 40036864, - 40066528, - 40029440, - 40027760 + 40040384, + 40040016, + 40040768, + 40070432, + 40033344, + 40031664 ], "bases": [ { @@ -166614,14 +166614,14 @@ }, { "type_name": "CNetworkSerializerBindingBuildFilter", - "vtable_address": 64848280, + "vtable_address": 64852184, "methods": [ - 40180912, - 40180928, - 40181360, - 40180896, - 40180944, - 40181120 + 40184816, + 40184832, + 40185264, + 40184800, + 40184848, + 40185024 ], "bases": [ { @@ -166643,7 +166643,7 @@ }, { "type_name": "CNetworkTransmitComponent", - "vtable_address": 63156792, + "vtable_address": 63160696, "methods": [ 12463488, 12449408, @@ -166670,18 +166670,18 @@ }, { "type_name": "CNewParticleEffect", - "vtable_address": 64951240, + "vtable_address": 64955144, "methods": [ - 59618096, - 59618400, - 59619232, - 59622848, - 59617936, - 59593984, - 59617952, - 59619280, - 59617984, - 59626160 + 59622000, + 59622304, + 59623136, + 59626752, + 59621840, + 59597888, + 59621856, + 59623184, + 59621888, + 59630064 ], "bases": [ { @@ -166703,34 +166703,34 @@ }, { "type_name": "CNewParticleEffect", - "vtable_address": 64951416, + "vtable_address": 64955320, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11015075 + "offset_to_top": 11015086 } } }, { "type_name": "CNmAdditiveBlendTask", - "vtable_address": 64906048, + "vtable_address": 64909952, "methods": [ - 58058928, - 58061888, - 58063056, - 58051056, - 58046160, + 58062832, + 58065792, + 58066960, + 58054960, + 58050064, 16856128, 16856144, - 58046048, - 58059072, - 58078912, - 58046128, - 58050912, - 58046064, - 58046080, - 58061312 + 58049952, + 58062976, + 58082816, + 58050032, + 58054816, + 58049968, + 58049984, + 58065216 ], "bases": [ { @@ -166763,7 +166763,7 @@ }, { "type_name": "CNmAimCSNode", - "vtable_address": 63682640, + "vtable_address": 63686544, "methods": [ 16858512, 16858544, @@ -166774,7 +166774,7 @@ 16866864, 16857328, 16857360, - 58382432, + 58386336, 16857088, 16896000, 16856096 @@ -166821,7 +166821,7 @@ }, { "type_name": "CNmAimCSNode::CDefinition", - "vtable_address": 63682760, + "vtable_address": 63686664, "methods": [ 16857536, 16875680, @@ -166874,13 +166874,13 @@ }, { "type_name": "CNmAimCSTask", - "vtable_address": 63683040, + "vtable_address": 63686944, "methods": [ 16857568, 16866096, 16866448, 16895376, - 58153056, + 58156960, 16856128, 16856144, 16856224, @@ -166912,20 +166912,20 @@ }, { "type_name": "CNmAndNode", - "vtable_address": 64909472, + "vtable_address": 64913376, "methods": [ - 58257808, - 58257904, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58256576, - 58256848, - 58257552, - 58257072, - 58243712 + 58261712, + 58261808, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58260480, + 58260752, + 58261456, + 58260976, + 58247616 ], "bases": [ { @@ -166969,16 +166969,16 @@ }, { "type_name": "CNmAndNode::CDefinition", - "vtable_address": 64929344, + "vtable_address": 64933248, "methods": [ - 58786976, - 58790256, - 58792208, - 58786848, - 58787168, - 58787328, - 58258016, - 58786864 + 58790880, + 58794160, + 58796112, + 58790752, + 58791072, + 58791232, + 58261920, + 58790768 ], "bases": [ { @@ -167022,20 +167022,20 @@ }, { "type_name": "CNmAnimationPoseNode", - "vtable_address": 64917552, + "vtable_address": 64921456, "methods": [ - 58383120, - 58383152, - 58382912, + 58387024, + 58387056, + 58386816, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58383072, - 58382896, - 58382992, - 58388832, + 58386976, + 58386800, + 58386896, + 58392736, 16856096 ], "bases": [ @@ -167069,16 +167069,16 @@ }, { "type_name": "CNmAnimationPoseNode::CDefinition", - "vtable_address": 64937976, + "vtable_address": 64941880, "methods": [ - 59043424, - 59048320, - 59055936, - 59043264, - 59043328, - 59043376, - 58383552, - 59043280 + 59047328, + 59052224, + 59059840, + 59047168, + 59047232, + 59047280, + 58387456, + 59047184 ], "bases": [ { @@ -167111,20 +167111,20 @@ }, { "type_name": "CNmBlend1DNode", - "vtable_address": 64908120, + "vtable_address": 64912024, "methods": [ - 58195152, - 58195984, - 58191328, + 58199056, + 58199888, + 58195232, 16856112, 16857296, - 58191376, - 58192320, + 58195280, + 58196224, 16857328, - 58191216, - 58191184, - 58205616, - 58211776, + 58195120, + 58195088, + 58209520, + 58215680, 16856096 ], "bases": [ @@ -167169,16 +167169,16 @@ }, { "type_name": "CNmBlend1DNode::CDefinition", - "vtable_address": 64928352, + "vtable_address": 64932256, "methods": [ - 58722896, - 58751680, - 58750528, - 58722816, - 58724608, - 58724800, - 58205856, - 58722832 + 58726800, + 58755584, + 58754432, + 58726720, + 58728512, + 58728704, + 58209760, + 58726736 ], "bases": [ { @@ -167222,20 +167222,20 @@ }, { "type_name": "CNmBlend2DNode", - "vtable_address": 64908552, + "vtable_address": 64912456, "methods": [ - 58222960, - 58223184, - 58218640, + 58226864, + 58227088, + 58222544, 16856112, 16857296, - 58218800, - 58221344, + 58222704, + 58225248, 16857328, - 58218480, - 58218464, - 58232624, - 58234784, + 58222384, + 58222368, + 58236528, + 58238688, 16856096 ], "bases": [ @@ -167269,16 +167269,16 @@ }, { "type_name": "CNmBlend2DNode::CDefinition", - "vtable_address": 64928616, + "vtable_address": 64932520, "methods": [ - 58751984, - 58755840, - 58765648, - 58751952, - 58753024, - 58753584, - 58225920, - 58751968 + 58755888, + 58759744, + 58769552, + 58755856, + 58756928, + 58757488, + 58229824, + 58755872 ], "bases": [ { @@ -167311,23 +167311,23 @@ }, { "type_name": "CNmBlendTask", - "vtable_address": 64905776, + "vtable_address": 64909680, "methods": [ - 58058992, - 58062464, - 58063664, - 58046256, - 58046160, + 58062896, + 58066368, + 58067568, + 58050160, + 58050064, 16856128, 16856144, - 58046048, - 58059072, - 58078912, - 58046096, - 58050656, - 58046064, - 58046080, - 58061312 + 58049952, + 58062976, + 58082816, + 58050000, + 58054560, + 58049968, + 58049984, + 58065216 ], "bases": [ { @@ -167360,7 +167360,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 64905624, + "vtable_address": 64909528, "methods": [], "bases": [ { @@ -167382,9 +167382,9 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 64905640, + "vtable_address": 64909544, "methods": [ - 58059024 + 58062928 ], "bases": [ { @@ -167406,7 +167406,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 66130560, + "vtable_address": 66134464, "methods": [], "bases": [], "model": { @@ -167417,7 +167417,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 66130688, + "vtable_address": 66134592, "methods": [], "bases": [], "model": { @@ -167428,7 +167428,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 66130816, + "vtable_address": 66134720, "methods": [], "bases": [], "model": { @@ -167439,7 +167439,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 66130944, + "vtable_address": 66134848, "methods": [], "bases": [], "model": { @@ -167450,16 +167450,16 @@ }, { "type_name": "CNmBodyGroupEvent", - "vtable_address": 64925416, + "vtable_address": 64929320, "methods": [ - 58656944, - 58657312, - 58658944, - 58656816, - 58656832, - 58656880, - 58587104, - 58656960 + 58660848, + 58661216, + 58662848, + 58660720, + 58660736, + 58660784, + 58591008, + 58660864 ], "bases": [ { @@ -167481,20 +167481,20 @@ }, { "type_name": "CNmBoneMaskBlendNode", - "vtable_address": 64909152, - "methods": [ - 58244080, - 58244368, - 58191168, - 58243728, - 58501008, - 58501040, - 58501328, - 58243760, - 58243888, - 58243696, - 58251184, - 58243712 + "vtable_address": 64913056, + "methods": [ + 58247984, + 58248272, + 58195072, + 58247632, + 58504912, + 58504944, + 58505232, + 58247664, + 58247792, + 58247600, + 58255088, + 58247616 ], "bases": [ { @@ -167538,16 +167538,16 @@ }, { "type_name": "CNmBoneMaskBlendNode::CDefinition", - "vtable_address": 64929024, + "vtable_address": 64932928, "methods": [ - 58765984, - 58773616, - 58774784, - 58765792, - 58765888, - 58765936, - 58255664, - 58765808 + 58769888, + 58777520, + 58778688, + 58769696, + 58769792, + 58769840, + 58259568, + 58769712 ], "bases": [ { @@ -167591,20 +167591,20 @@ }, { "type_name": "CNmBoneMaskNode", - "vtable_address": 64908928, - "methods": [ - 58244272, - 58244592, - 58191168, - 58243728, - 58501008, - 58501040, - 58501328, - 58243744, - 58500960, - 58243696, - 58243840, - 58243712 + "vtable_address": 64912832, + "methods": [ + 58248176, + 58248496, + 58195072, + 58247632, + 58504912, + 58504944, + 58505232, + 58247648, + 58504864, + 58247600, + 58247744, + 58247616 ], "bases": [ { @@ -167648,16 +167648,16 @@ }, { "type_name": "CNmBoneMaskNode::CDefinition", - "vtable_address": 64928864, + "vtable_address": 64932768, "methods": [ - 58765952, - 58768224, - 58770048, - 58765728, - 58765856, - 58765904, - 58254064, - 58765744 + 58769856, + 58772128, + 58773952, + 58769632, + 58769760, + 58769808, + 58257968, + 58769648 ], "bases": [ { @@ -167701,20 +167701,20 @@ }, { "type_name": "CNmBoneMaskSelectorNode", - "vtable_address": 64909264, - "methods": [ - 58245168, - 58244944, - 58191168, - 58243728, - 58501008, - 58245392, - 58246336, - 58244704, - 58243952, - 58243696, + "vtable_address": 64913168, + "methods": [ + 58249072, + 58248848, + 58195072, + 58247632, + 58504912, + 58249296, + 58250240, + 58248608, + 58247856, 58247600, - 58243712 + 58251504, + 58247616 ], "bases": [ { @@ -167758,16 +167758,16 @@ }, { "type_name": "CNmBoneMaskSelectorNode::CDefinition", - "vtable_address": 64929104, + "vtable_address": 64933008, "methods": [ - 58766000, - 58779136, - 58786208, - 58765824, - 58766512, - 58766784, - 58255808, - 58765840 + 58769904, + 58783040, + 58790112, + 58769728, + 58770416, + 58770688, + 58259712, + 58769744 ], "bases": [ { @@ -167811,7 +167811,7 @@ }, { "type_name": "CNmBoneMaskValueNode", - "vtable_address": 64908800, + "vtable_address": 64912704, "methods": [], "bases": [ { @@ -167844,7 +167844,7 @@ }, { "type_name": "CNmBoneMaskValueNode", - "vtable_address": 64911856, + "vtable_address": 64915760, "methods": [], "bases": [ { @@ -167877,7 +167877,7 @@ }, { "type_name": "CNmBoneMaskValueNode::CDefinition", - "vtable_address": 64928848, + "vtable_address": 64932752, "methods": [], "bases": [ { @@ -167910,7 +167910,7 @@ }, { "type_name": "CNmBoneMaskValueNode::CDefinition", - "vtable_address": 64931560, + "vtable_address": 64935464, "methods": [], "bases": [ { @@ -167943,7 +167943,7 @@ }, { "type_name": "CNmBoolValueNode", - "vtable_address": 64909456, + "vtable_address": 64913360, "methods": [], "bases": [ { @@ -167976,7 +167976,7 @@ }, { "type_name": "CNmBoolValueNode", - "vtable_address": 64919400, + "vtable_address": 64923304, "methods": [], "bases": [ { @@ -168009,7 +168009,7 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 64929328, + "vtable_address": 64933232, "methods": [], "bases": [ { @@ -168042,7 +168042,7 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 64939912, + "vtable_address": 64943816, "methods": [], "bases": [ { @@ -168075,9 +168075,9 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 66146112, + "vtable_address": 66150016, "methods": [ - 58852768 + 58856672 ], "bases": [], "model": { @@ -168088,9 +168088,9 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 66160608, + "vtable_address": 66164512, "methods": [ - 59145856 + 59149760 ], "bases": [], "model": { @@ -168101,20 +168101,20 @@ }, { "type_name": "CNmCachedBoolNode", - "vtable_address": 64910024, + "vtable_address": 64913928, "methods": [ - 58260752, - 58260768, - 58191168, - 58256512, - 58501008, - 58261696, - 58262464, - 58263344, - 58260400, - 58257552, - 58268752, - 58243712 + 58264656, + 58264672, + 58195072, + 58260416, + 58504912, + 58265600, + 58266368, + 58267248, + 58264304, + 58261456, + 58272656, + 58247616 ], "bases": [ { @@ -168158,16 +168158,16 @@ }, { "type_name": "CNmCachedBoolNode::CDefinition", - "vtable_address": 64929848, + "vtable_address": 64933752, "methods": [ - 58798656, - 58800432, - 58801600, - 58798336, - 58798496, - 58798576, - 58274624, - 58798352 + 58802560, + 58804336, + 58805504, + 58802240, + 58802400, + 58802480, + 58278528, + 58802256 ], "bases": [ { @@ -168211,20 +168211,20 @@ }, { "type_name": "CNmCachedFloatNode", - "vtable_address": 64910248, - "methods": [ - 58260880, - 58260896, - 58191168, - 58260352, - 58501008, - 58262016, - 58265376, - 58262992, - 58260400, - 58261376, - 58268496, - 58243712 + "vtable_address": 64914152, + "methods": [ + 58264784, + 58264800, + 58195072, + 58264256, + 58504912, + 58265920, + 58269280, + 58266896, + 58264304, + 58265280, + 58272400, + 58247616 ], "bases": [ { @@ -168268,16 +168268,16 @@ }, { "type_name": "CNmCachedFloatNode::CDefinition", - "vtable_address": 64930008, + "vtable_address": 64933912, "methods": [ - 58799136, - 58807824, - 58808992, - 58798400, - 58798528, - 58798608, - 58274800, - 58798416 + 58803040, + 58811728, + 58812896, + 58802304, + 58802432, + 58802512, + 58278704, + 58802320 ], "bases": [ { @@ -168321,20 +168321,20 @@ }, { "type_name": "CNmCachedIDNode", - "vtable_address": 64910136, + "vtable_address": 64914040, "methods": [ - 58260816, - 58260832, - 58191168, - 58260336, - 58501008, - 58261472, - 58270736, - 58263680, - 58260400, - 58261424, - 58270048, - 58243712 + 58264720, + 58264736, + 58195072, + 58264240, + 58504912, + 58265376, + 58274640, + 58267584, + 58264304, + 58265328, + 58273952, + 58247616 ], "bases": [ { @@ -168378,16 +168378,16 @@ }, { "type_name": "CNmCachedIDNode::CDefinition", - "vtable_address": 64929928, + "vtable_address": 64933832, "methods": [ - 58798896, - 58804128, - 58805296, - 58798368, - 58798512, - 58798592, - 58274720, - 58798384 + 58802800, + 58808032, + 58809200, + 58802272, + 58802416, + 58802496, + 58278624, + 58802288 ], "bases": [ { @@ -168431,23 +168431,23 @@ }, { "type_name": "CNmCachedPoseReadTask", - "vtable_address": 64906504, + "vtable_address": 64910408, "methods": [ - 58080544, - 58082432, - 58082784, - 58080304, - 58153056, + 58084448, + 58086336, + 58086688, + 58084208, + 58156960, 16856128, 16856144, - 58079792, - 58080640, - 58079840, - 58079808, + 58083696, + 58084544, + 58083744, + 58083712, 16856160, - 58079824, + 58083728, 16856192, - 58153952 + 58157856 ], "bases": [ { @@ -168469,23 +168469,23 @@ }, { "type_name": "CNmCachedPoseWriteTask", - "vtable_address": 64906368, + "vtable_address": 64910272, "methods": [ - 58080576, - 58082608, - 58082992, - 58080112, - 58153056, + 58084480, + 58086512, + 58086896, + 58084016, + 58156960, 16856128, 16856144, - 58079744, - 58081280, 58083648, - 58079760, + 58085184, + 58087552, + 58083664, 16856160, - 58079776, + 58083680, 16856192, - 58153952 + 58157856 ], "bases": [ { @@ -168507,20 +168507,20 @@ }, { "type_name": "CNmCachedTargetNode", - "vtable_address": 64910472, - "methods": [ - 58261008, - 58261024, - 58191168, - 58260384, - 58501008, - 58265936, - 58271072, - 58261072, - 58260448, - 58261248, - 58260496, - 58243712 + "vtable_address": 64914376, + "methods": [ + 58264912, + 58264928, + 58195072, + 58264288, + 58504912, + 58269840, + 58274976, + 58264976, + 58264352, + 58265152, + 58264400, + 58247616 ], "bases": [ { @@ -168564,16 +168564,16 @@ }, { "type_name": "CNmCachedTargetNode::CDefinition", - "vtable_address": 64930168, - "methods": [ - 58799616, - 58815216, - 58816384, - 58798464, - 58798560, - 58798640, - 58274976, - 58798480 + "vtable_address": 64934072, + "methods": [ + 58803520, + 58819120, + 58820288, + 58802368, + 58802464, + 58802544, + 58278880, + 58802384 ], "bases": [ { @@ -168617,20 +168617,20 @@ }, { "type_name": "CNmCachedVectorNode", - "vtable_address": 64910360, - "methods": [ - 58260944, - 58260960, - 58191168, - 58260368, - 58501008, - 58264032, - 58268992, - 58264976, - 58260400, - 58261328, - 58270304, - 58243712 + "vtable_address": 64914264, + "methods": [ + 58264848, + 58264864, + 58195072, + 58264272, + 58504912, + 58267936, + 58272896, + 58268880, + 58264304, + 58265232, + 58274208, + 58247616 ], "bases": [ { @@ -168674,16 +168674,16 @@ }, { "type_name": "CNmCachedVectorNode::CDefinition", - "vtable_address": 64930088, + "vtable_address": 64933992, "methods": [ - 58799376, - 58811520, - 58812688, - 58798432, - 58798544, - 58798624, - 58274896, - 58798448 + 58803280, + 58815424, + 58816592, + 58802336, + 58802448, + 58802528, + 58278800, + 58802352 ], "bases": [ { @@ -168727,20 +168727,20 @@ }, { "type_name": "CNmChainLookatNode", - "vtable_address": 64910608, + "vtable_address": 64914512, "methods": [ - 58275216, - 58275248, + 58279120, + 58279152, 16856208, 16856112, 16857296, - 58275808, - 58276880, + 58279712, + 58280784, 16857328, - 58275152, - 58382432, - 58275328, - 58278656, + 58279056, + 58386336, + 58279232, + 58282560, 16856096 ], "bases": [ @@ -168785,16 +168785,16 @@ }, { "type_name": "CNmChainLookatNode::CDefinition", - "vtable_address": 64930440, + "vtable_address": 64934344, "methods": [ - 58818464, - 58820176, - 58826416, - 58818400, - 58818432, - 58818448, - 58281200, - 58818416 + 58822368, + 58824080, + 58830320, + 58822304, + 58822336, + 58822352, + 58285104, + 58822320 ], "bases": [ { @@ -168838,23 +168838,23 @@ }, { "type_name": "CNmChainLookatTask", - "vtable_address": 64906664, + "vtable_address": 64910568, "methods": [ - 58084288, - 58088352, - 58088528, - 58090944, - 58153056, + 58088192, + 58092256, + 58092432, + 58094848, + 58156960, 16856128, 16856144, - 58084240, - 58084672, - 58089152, - 58084256, + 58088144, + 58088576, + 58093056, + 58088160, 16856160, - 58084272, + 58088176, 16856192, - 58084320 + 58088224 ], "bases": [ { @@ -168876,23 +168876,23 @@ }, { "type_name": "CNmChainSolverTask", - "vtable_address": 64906824, + "vtable_address": 64910728, "methods": [ - 58096976, - 58097968, - 58098144, - 58115712, - 58153056, + 58100880, + 58101872, + 58102048, + 58119616, + 58156960, 16856128, 16856144, - 58096848, - 58098368, - 58110400, - 58096864, - 58096896, - 58096880, + 58100752, + 58102272, + 58114304, + 58100768, + 58100800, + 58100784, 16856192, - 58097008 + 58100912 ], "bases": [ { @@ -168914,25 +168914,25 @@ }, { "type_name": "CNmClipNode", - "vtable_address": 64910776, + "vtable_address": 64914680, "methods": [ - 58281488, - 58282480, - 58283792, + 58285392, + 58286384, + 58287696, 16856112, 16857296, - 58281616, - 58281936, + 58285520, + 58285840, 16857328, - 58281424, - 58284016, - 58284160, - 58301040, + 58285328, + 58287920, + 58288064, + 58304944, 16856096, - 58283904, - 58191200, - 58281392, - 58281408 + 58287808, + 58195104, + 58285296, + 58285312 ], "bases": [ { @@ -168976,16 +168976,16 @@ }, { "type_name": "CNmClipNode::CDefinition", - "vtable_address": 64930592, + "vtable_address": 64934496, "methods": [ - 58826560, - 58828240, - 58835168, - 58826496, - 58826544, - 58826592, - 58285040, - 58826512 + 58830464, + 58832144, + 58839072, + 58830400, + 58830448, + 58830496, + 58288944, + 58830416 ], "bases": [ { @@ -169029,7 +169029,7 @@ }, { "type_name": "CNmClipReferenceNode", - "vtable_address": 64910760, + "vtable_address": 64914664, "methods": [], "bases": [ { @@ -169062,7 +169062,7 @@ }, { "type_name": "CNmClipReferenceNode", - "vtable_address": 64918184, + "vtable_address": 64922088, "methods": [], "bases": [ { @@ -169095,7 +169095,7 @@ }, { "type_name": "CNmClipReferenceNode::CDefinition", - "vtable_address": 64930576, + "vtable_address": 64934480, "methods": [], "bases": [ { @@ -169128,7 +169128,7 @@ }, { "type_name": "CNmClipReferenceNode::CDefinition", - "vtable_address": 64938752, + "vtable_address": 64942656, "methods": [], "bases": [ { @@ -169161,25 +169161,25 @@ }, { "type_name": "CNmClipSelectorNode", - "vtable_address": 64918320, + "vtable_address": 64922224, "methods": [ - 58407648, - 58408352, - 58405344, + 58411552, + 58412256, + 58409248, 16856112, 16857296, - 58409104, - 58410752, + 58413008, + 58414656, 16857328, - 58405808, - 58405360, - 58415840, - 58406256, + 58409712, + 58409264, + 58419744, + 58410160, 16856096, - 58405488, - 58405520, - 58405552, - 58405584 + 58409392, + 58409424, + 58409456, + 58409488 ], "bases": [ { @@ -169223,16 +169223,16 @@ }, { "type_name": "CNmClipSelectorNode::CDefinition", - "vtable_address": 64938848, + "vtable_address": 64942752, "methods": [ - 59073984, - 59085024, - 59086336, - 59073872, - 59074160, - 59074672, - 58414176, - 59073888 + 59077888, + 59088928, + 59090240, + 59077776, + 59078064, + 59078576, + 58418080, + 59077792 ], "bases": [ { @@ -169276,20 +169276,20 @@ }, { "type_name": "CNmConstBoolNode", - "vtable_address": 64911048, + "vtable_address": 64914952, "methods": [ - 58302208, - 58302224, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58500944, - 58500960, - 58257552, - 58301904, - 58243712 + 58306112, + 58306128, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58504848, + 58504864, + 58261456, + 58305808, + 58247616 ], "bases": [ { @@ -169333,16 +169333,16 @@ }, { "type_name": "CNmConstBoolNode::CDefinition", - "vtable_address": 64930824, + "vtable_address": 64934728, "methods": [ - 58835568, - 58837216, - 58838832, - 58835248, - 58835408, - 58835488, - 58302528, - 58835264 + 58839472, + 58841120, + 58842736, + 58839152, + 58839312, + 58839392, + 58306432, + 58839168 ], "bases": [ { @@ -169386,20 +169386,20 @@ }, { "type_name": "CNmConstFloatNode", - "vtable_address": 64911272, + "vtable_address": 64915176, "methods": [ - 58302336, - 58302352, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58500944, - 58500960, - 58261376, - 58302000, - 58243712 + 58306240, + 58306256, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58504848, + 58504864, + 58265280, + 58305904, + 58247616 ], "bases": [ { @@ -169443,16 +169443,16 @@ }, { "type_name": "CNmConstFloatNode::CDefinition", - "vtable_address": 64930984, + "vtable_address": 64934888, "methods": [ - 58835600, - 58836576, - 58842448, - 58835312, - 58835440, - 58835520, - 58302624, - 58835328 + 58839504, + 58840480, + 58846352, + 58839216, + 58839344, + 58839424, + 58306528, + 58839232 ], "bases": [ { @@ -169496,20 +169496,20 @@ }, { "type_name": "CNmConstIDNode", - "vtable_address": 64911160, + "vtable_address": 64915064, "methods": [ - 58302272, - 58302288, - 58191168, - 58260336, - 58501008, - 58501040, - 58501328, - 58500944, - 58500960, - 58261424, - 58301952, - 58243712 + 58306176, + 58306192, + 58195072, + 58264240, + 58504912, + 58504944, + 58505232, + 58504848, + 58504864, + 58265328, + 58305856, + 58247616 ], "bases": [ { @@ -169553,16 +169553,16 @@ }, { "type_name": "CNmConstIDNode::CDefinition", - "vtable_address": 64930904, + "vtable_address": 64934808, "methods": [ - 58835584, - 58837008, - 58840608, - 58835280, - 58835424, - 58835504, - 58302576, - 58835296 + 58839488, + 58840912, + 58844512, + 58839184, + 58839328, + 58839408, + 58306480, + 58839200 ], "bases": [ { @@ -169606,20 +169606,20 @@ }, { "type_name": "CNmConstTargetNode", - "vtable_address": 64911496, + "vtable_address": 64915400, "methods": [ - 58302464, - 58302480, - 58191168, - 58260384, - 58501008, - 58501040, - 58501328, - 58500944, - 58500960, - 58261248, - 58302112, - 58243712 + 58306368, + 58306384, + 58195072, + 58264288, + 58504912, + 58504944, + 58505232, + 58504848, + 58504864, + 58265152, + 58306016, + 58247616 ], "bases": [ { @@ -169663,16 +169663,16 @@ }, { "type_name": "CNmConstTargetNode::CDefinition", - "vtable_address": 64931144, + "vtable_address": 64935048, "methods": [ - 58835632, - 58847632, - 58846912, - 58835376, - 58835472, - 58835552, - 58302720, - 58835392 + 58839536, + 58851536, + 58850816, + 58839280, + 58839376, + 58839456, + 58306624, + 58839296 ], "bases": [ { @@ -169716,20 +169716,20 @@ }, { "type_name": "CNmConstVectorNode", - "vtable_address": 64911384, + "vtable_address": 64915288, "methods": [ - 58302400, - 58302416, - 58191168, - 58260368, - 58501008, - 58501040, - 58501328, - 58500944, - 58500960, - 58261328, - 58302048, - 58243712 + 58306304, + 58306320, + 58195072, + 58264272, + 58504912, + 58504944, + 58505232, + 58504848, + 58504864, + 58265232, + 58305952, + 58247616 ], "bases": [ { @@ -169773,16 +169773,16 @@ }, { "type_name": "CNmConstVectorNode::CDefinition", - "vtable_address": 64931064, + "vtable_address": 64934968, "methods": [ - 58835616, - 58836816, - 58844912, - 58835344, - 58835456, - 58835536, - 58302672, - 58835360 + 58839520, + 58840720, + 58848816, + 58839248, + 58839360, + 58839440, + 58306576, + 58839264 ], "bases": [ { @@ -169826,20 +169826,20 @@ }, { "type_name": "CNmControlParameterBoolNode", - "vtable_address": 64911872, + "vtable_address": 64915776, "methods": [ - 58304400, - 58304416, - 58191168, - 58256512, - 58501008, - 58306592, - 58306768, - 58500944, - 58500960, - 58257552, - 58303248, - 58302832 + 58308304, + 58308320, + 58195072, + 58260416, + 58504912, + 58310496, + 58310672, + 58504848, + 58504864, + 58261456, + 58307152, + 58306736 ], "bases": [ { @@ -169883,16 +169883,16 @@ }, { "type_name": "CNmControlParameterBoolNode::CDefinition", - "vtable_address": 64931576, + "vtable_address": 64935480, "methods": [ - 58848592, - 58848768, - 58852880, - 58847888, - 58848240, - 58848416, - 58315376, - 58847904 + 58852496, + 58852672, + 58856784, + 58851792, + 58852144, + 58852320, + 58319280, + 58851808 ], "bases": [ { @@ -169936,20 +169936,20 @@ }, { "type_name": "CNmControlParameterFloatNode", - "vtable_address": 64912096, - "methods": [ - 58304656, - 58304672, - 58191168, - 58260352, - 58501008, - 58307088, - 58308240, - 58500944, - 58500960, - 58261376, - 58303344, - 58302864 + "vtable_address": 64916000, + "methods": [ + 58308560, + 58308576, + 58195072, + 58264256, + 58504912, + 58310992, + 58312144, + 58504848, + 58504864, + 58265280, + 58307248, + 58306768 ], "bases": [ { @@ -169993,16 +169993,16 @@ }, { "type_name": "CNmControlParameterFloatNode::CDefinition", - "vtable_address": 64931736, + "vtable_address": 64935640, "methods": [ - 58848624, - 58848768, - 58855440, - 58847952, - 58848272, - 58848480, - 58315504, - 58847968 + 58852528, + 58852672, + 58859344, + 58851856, + 58852176, + 58852384, + 58319408, + 58851872 ], "bases": [ { @@ -170046,20 +170046,20 @@ }, { "type_name": "CNmControlParameterIDNode", - "vtable_address": 64911984, + "vtable_address": 64915888, "methods": [ - 58304528, - 58304544, - 58191168, - 58260336, - 58501008, - 58304176, - 58311984, - 58500944, - 58500960, - 58261424, - 58303296, - 58302848 + 58308432, + 58308448, + 58195072, + 58264240, + 58504912, + 58308080, + 58315888, + 58504848, + 58504864, + 58265328, + 58307200, + 58306752 ], "bases": [ { @@ -170103,16 +170103,16 @@ }, { "type_name": "CNmControlParameterIDNode::CDefinition", - "vtable_address": 64931656, + "vtable_address": 64935560, "methods": [ - 58848608, - 58848768, - 58854160, - 58847920, - 58848256, - 58848448, - 58315440, - 58847936 + 58852512, + 58852672, + 58858064, + 58851824, + 58852160, + 58852352, + 58319344, + 58851840 ], "bases": [ { @@ -170156,20 +170156,20 @@ }, { "type_name": "CNmControlParameterTargetNode", - "vtable_address": 64912320, + "vtable_address": 64916224, "methods": [ - 58304912, - 58304928, - 58191168, - 58260384, - 58501008, - 58308576, - 58312048, - 58500944, - 58500960, - 58261248, - 58303440, - 58302896 + 58308816, + 58308832, + 58195072, + 58264288, + 58504912, + 58312480, + 58315952, + 58504848, + 58504864, + 58265152, + 58307344, + 58306800 ], "bases": [ { @@ -170213,16 +170213,16 @@ }, { "type_name": "CNmControlParameterTargetNode::CDefinition", - "vtable_address": 64931896, + "vtable_address": 64935800, "methods": [ - 58848656, - 58848768, - 58858000, - 58848016, - 58848304, - 58848544, - 58315632, - 58848032 + 58852560, + 58852672, + 58861904, + 58851920, + 58852208, + 58852448, + 58319536, + 58851936 ], "bases": [ { @@ -170266,20 +170266,20 @@ }, { "type_name": "CNmControlParameterVectorNode", - "vtable_address": 64912208, + "vtable_address": 64916112, "methods": [ - 58304784, - 58304800, - 58191168, - 58260368, - 58501008, - 58307408, - 58311152, - 58500944, - 58500960, - 58261328, - 58303392, - 58302880 + 58308688, + 58308704, + 58195072, + 58264272, + 58504912, + 58311312, + 58315056, + 58504848, + 58504864, + 58265232, + 58307296, + 58306784 ], "bases": [ { @@ -170323,16 +170323,16 @@ }, { "type_name": "CNmControlParameterVectorNode::CDefinition", - "vtable_address": 64931816, + "vtable_address": 64935720, "methods": [ - 58848640, - 58848768, - 58856720, - 58847984, - 58848288, - 58848512, - 58315568, - 58848000 + 58852544, + 58852672, + 58860624, + 58851888, + 58852192, + 58852416, + 58319472, + 58851904 ], "bases": [ { @@ -170376,20 +170376,20 @@ }, { "type_name": "CNmCurrentSyncEventIDNode", - "vtable_address": 64914288, - "methods": [ - 58316880, - 58316896, - 58191168, - 58260336, - 58501008, - 58501040, - 58501328, - 58316464, - 58500960, - 58261424, - 58325312, - 58243712 + "vtable_address": 64918192, + "methods": [ + 58320784, + 58320800, + 58195072, + 58264240, + 58504912, + 58504944, + 58505232, + 58320368, + 58504864, + 58265328, + 58329216, + 58247616 ], "bases": [ { @@ -170433,16 +170433,16 @@ }, { "type_name": "CNmCurrentSyncEventIDNode::CDefinition", - "vtable_address": 64933696, + "vtable_address": 64937600, "methods": [ - 58875376, - 58880176, - 58898880, - 58874800, - 58875024, - 58875184, - 58324688, - 58874816 + 58879280, + 58884080, + 58902784, + 58878704, + 58878928, + 58879088, + 58328592, + 58878720 ], "bases": [ { @@ -170486,20 +170486,20 @@ }, { "type_name": "CNmCurrentSyncEventNode", - "vtable_address": 64914400, + "vtable_address": 64918304, "methods": [ - 58317136, - 58317152, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58316384, - 58500960, - 58261376, - 58325504, - 58243712 + 58321040, + 58321056, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58320288, + 58504864, + 58265280, + 58329408, + 58247616 ], "bases": [ { @@ -170543,16 +170543,16 @@ }, { "type_name": "CNmCurrentSyncEventNode::CDefinition", - "vtable_address": 64933776, + "vtable_address": 64937680, "methods": [ - 58875392, - 58900576, - 58908368, - 58874832, - 58875040, - 58875216, - 58324784, - 58874848 + 58879296, + 58904480, + 58912272, + 58878736, + 58878944, + 58879120, + 58328688, + 58878752 ], "bases": [ { @@ -170596,22 +170596,22 @@ }, { "type_name": "CNmDurationScaleNode", - "vtable_address": 64918968, + "vtable_address": 64922872, "methods": [ - 58422240, - 58422272, + 58426144, + 58426176, 16856208, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58421872, - 58382432, - 58421744, - 58421216, + 58425776, + 58386336, + 58425648, + 58425120, 16856096, - 58421920 + 58425824 ], "bases": [ { @@ -170666,16 +170666,16 @@ }, { "type_name": "CNmDurationScaleNode::CDefinition", - "vtable_address": 64939408, + "vtable_address": 64943312, "methods": [ - 59102256, - 59103344, - 59109184, - 59101856, - 59101952, - 59102208, - 58423024, - 59101872 + 59106160, + 59107248, + 59113088, + 59105760, + 59105856, + 59106112, + 58426928, + 59105776 ], "bases": [ { @@ -170730,7 +170730,7 @@ }, { "type_name": "CNmEntityAttributeEventBase", - "vtable_address": 64926280, + "vtable_address": 64930184, "methods": [], "bases": [ { @@ -170752,16 +170752,16 @@ }, { "type_name": "CNmEntityAttributeEventBase", - "vtable_address": 64926296, + "vtable_address": 64930200, "methods": [ - 58680240, - 58681744, - 58684560, - 58679680, - 58679984, - 58680032, - 58587104, - 58680384 + 58684144, + 58685648, + 58688464, + 58683584, + 58683888, + 58683936, + 58591008, + 58684288 ], "bases": [ { @@ -170783,16 +170783,16 @@ }, { "type_name": "CNmEntityAttributeFloatEvent", - "vtable_address": 64926456, + "vtable_address": 64930360, "methods": [ - 58680208, - 58689328, - 58689312, - 58679712, - 58680800, - 58680960, - 58587104, - 58680256 + 58684112, + 58693232, + 58693216, + 58683616, + 58684704, + 58684864, + 58591008, + 58684160 ], "bases": [ { @@ -170825,16 +170825,16 @@ }, { "type_name": "CNmEntityAttributeIntEvent", - "vtable_address": 64926376, + "vtable_address": 64930280, "methods": [ - 58680224, - 58682160, - 58686048, - 58679696, - 58680096, - 58680144, - 58587104, - 58680320 + 58684128, + 58686064, + 58689952, + 58683600, + 58684000, + 58684048, + 58591008, + 58684224 ], "bases": [ { @@ -170867,7 +170867,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64924944, + "vtable_address": 64928848, "methods": [], "bases": [], "model": { @@ -170878,7 +170878,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64925400, + "vtable_address": 64929304, "methods": [], "bases": [], "model": { @@ -170889,7 +170889,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64925528, + "vtable_address": 64929432, "methods": [], "bases": [], "model": { @@ -170900,7 +170900,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64925656, + "vtable_address": 64929560, "methods": [], "bases": [], "model": { @@ -170911,7 +170911,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64925848, + "vtable_address": 64929752, "methods": [], "bases": [], "model": { @@ -170922,7 +170922,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64925976, + "vtable_address": 64929880, "methods": [], "bases": [], "model": { @@ -170933,7 +170933,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64926104, + "vtable_address": 64930008, "methods": [], "bases": [], "model": { @@ -170944,7 +170944,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64926600, + "vtable_address": 64930504, "methods": [], "bases": [], "model": { @@ -170955,7 +170955,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64926808, + "vtable_address": 64930712, "methods": [], "bases": [], "model": { @@ -170966,7 +170966,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64926936, + "vtable_address": 64930840, "methods": [], "bases": [], "model": { @@ -170977,7 +170977,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64927224, + "vtable_address": 64931128, "methods": [], "bases": [], "model": { @@ -170988,7 +170988,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 64927712, + "vtable_address": 64931616, "methods": [], "bases": [], "model": { @@ -170999,9 +170999,9 @@ }, { "type_name": "CNmEvent", - "vtable_address": 66137824, + "vtable_address": 66141728, "methods": [ - 58718720 + 58722624 ], "bases": [], "model": { @@ -171012,7 +171012,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 65524128, + "vtable_address": 65528032, "methods": [ 14560128 ], @@ -171025,7 +171025,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 65524288, + "vtable_address": 65528192, "methods": [ 14558896 ], @@ -171038,7 +171038,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 65524448, + "vtable_address": 65528352, "methods": [ 14557664 ], @@ -171051,7 +171051,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 65524608, + "vtable_address": 65528512, "methods": [ 14556336 ], @@ -171064,7 +171064,7 @@ }, { "type_name": "CNmEventConsumerAttributes", - "vtable_address": 63493232, + "vtable_address": 63497136, "methods": [ 14552832, 14552448, @@ -171072,7 +171072,7 @@ 14552480, 14554416, 14554704, - 20567936, + 20570752, 14552496 ], "bases": [ @@ -171095,9 +171095,9 @@ }, { "type_name": "CNmEventConsumerAttributes", - "vtable_address": 65994560, + "vtable_address": 65998464, "methods": [ - 27213520 + 27216560 ], "bases": [], "model": { @@ -171108,16 +171108,16 @@ }, { "type_name": "CNmEventConsumerHudModelArmsAttributes", - "vtable_address": 64554192, + "vtable_address": 64558096, "methods": [ - 27164656, - 27165392, - 27213632, - 27163936, - 27171760, - 27172048, - 20567936, - 27208592 + 27167664, + 27168400, + 27216672, + 27166944, + 27174768, + 27175056, + 20570752, + 27211600 ], "bases": [ { @@ -171150,7 +171150,7 @@ }, { "type_name": "CNmEventConsumerLegacy", - "vtable_address": 63493312, + "vtable_address": 63497216, "methods": [ 14552816, 14552448, @@ -171158,7 +171158,7 @@ 14552512, 14552528, 14552848, - 20548992 + 20551808 ], "bases": [ { @@ -171180,7 +171180,7 @@ }, { "type_name": "CNmEventConsumerParticle", - "vtable_address": 63493384, + "vtable_address": 63497288, "methods": [ 14552800, 14552448, @@ -171188,7 +171188,7 @@ 14552544, 14553840, 14554320, - 20554288 + 20557104 ], "bases": [ { @@ -171210,7 +171210,7 @@ }, { "type_name": "CNmEventConsumerSound", - "vtable_address": 63493456, + "vtable_address": 63497360, "methods": [ 14552784, 14552448, @@ -171218,7 +171218,7 @@ 14552560, 14553904, 14553744, - 20556960 + 20559776 ], "bases": [ { @@ -171240,20 +171240,20 @@ }, { "type_name": "CNmExternalGraphNode", - "vtable_address": 64914760, + "vtable_address": 64918664, "methods": [ - 58325696, - 58325728, - 58191168, + 58329600, + 58329632, + 58195072, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58500960, - 58327504, - 58325792, - 58325904, + 58504864, + 58331408, + 58329696, + 58329808, 16856096 ], "bases": [ @@ -171287,16 +171287,16 @@ }, { "type_name": "CNmExternalGraphNode::CDefinition", - "vtable_address": 64932664, + "vtable_address": 64936568, "methods": [ - 58873024, - 58873040, - 58874368, - 58872960, - 58872992, - 58873008, - 58327632, - 58872976 + 58876928, + 58876944, + 58878272, + 58876864, + 58876896, + 58876912, + 58331536, + 58876880 ], "bases": [ { @@ -171329,20 +171329,20 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode", - "vtable_address": 64909040, - "methods": [ - 58244176, - 58244480, - 58191168, - 58243728, - 58501008, - 58501040, - 58501328, - 58243744, - 58500960, - 58243696, - 58243840, - 58243712 + "vtable_address": 64912944, + "methods": [ + 58248080, + 58248384, + 58195072, + 58247632, + 58504912, + 58504944, + 58505232, + 58247648, + 58504864, + 58247600, + 58247744, + 58247616 ], "bases": [ { @@ -171386,16 +171386,16 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode::CDefinition", - "vtable_address": 64928944, - "methods": [ - 58765968, - 58768432, - 58771888, - 58765760, - 58765872, - 58765920, - 58255200, - 58765776 + "vtable_address": 64932848, + "methods": [ + 58769872, + 58772336, + 58775792, + 58769664, + 58769776, + 58769824, + 58259104, + 58769680 ], "bases": [ { @@ -171439,20 +171439,20 @@ }, { "type_name": "CNmFloatAngleMathNode", - "vtable_address": 64916016, - "methods": [ - 58334416, - 58334432, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58328192, - 58328512, - 58261376, - 58329648, - 58243712 + "vtable_address": 64919920, + "methods": [ + 58338320, + 58338336, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58332096, + 58332416, + 58265280, + 58333552, + 58247616 ], "bases": [ { @@ -171496,16 +171496,16 @@ }, { "type_name": "CNmFloatAngleMathNode::CDefinition", - "vtable_address": 64935552, + "vtable_address": 64939456, "methods": [ - 58925600, - 58956096, - 58968032, - 58925152, - 58925328, - 58925424, - 58340752, - 58925168 + 58929504, + 58960000, + 58971936, + 58929056, + 58929232, + 58929328, + 58344656, + 58929072 ], "bases": [ { @@ -171549,20 +171549,20 @@ }, { "type_name": "CNmFloatClampNode", - "vtable_address": 64915344, - "methods": [ - 58334608, - 58334624, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58327904, - 58328512, - 58261376, - 58329088, - 58243712 + "vtable_address": 64919248, + "methods": [ + 58338512, + 58338528, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58331808, + 58332416, + 58265280, + 58332992, + 58247616 ], "bases": [ { @@ -171606,16 +171606,16 @@ }, { "type_name": "CNmFloatClampNode::CDefinition", - "vtable_address": 64934992, + "vtable_address": 64938896, "methods": [ - 58925488, - 58938960, - 58972400, - 58924928, - 58925232, - 58925360, - 58340144, - 58924944 + 58929392, + 58942864, + 58976304, + 58928832, + 58929136, + 58929264, + 58344048, + 58928848 ], "bases": [ { @@ -171659,20 +171659,20 @@ }, { "type_name": "CNmFloatComparisonNode", - "vtable_address": 64915792, - "methods": [ - 58334864, - 58334880, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58328080, - 58328560, - 58257552, - 58329216, - 58243712 + "vtable_address": 64919696, + "methods": [ + 58338768, + 58338784, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58331984, + 58332464, + 58261456, + 58333120, + 58247616 ], "bases": [ { @@ -171716,16 +171716,16 @@ }, { "type_name": "CNmFloatComparisonNode::CDefinition", - "vtable_address": 64935312, + "vtable_address": 64939216, "methods": [ - 58925552, - 58949632, - 58964640, - 58925056, - 58925280, - 58925440, - 58340560, - 58925072 + 58929456, + 58953536, + 58968544, + 58928960, + 58929184, + 58929344, + 58344464, + 58928976 ], "bases": [ { @@ -171769,16 +171769,16 @@ }, { "type_name": "CNmFloatCurveEvent", - "vtable_address": 64925544, + "vtable_address": 64929448, "methods": [ - 58659440, - 58660896, - 58662992, - 58659424, - 58659520, - 58659648, - 58587104, - 58659456 + 58663344, + 58664800, + 58666896, + 58663328, + 58663424, + 58663552, + 58591008, + 58663360 ], "bases": [ { @@ -171800,20 +171800,20 @@ }, { "type_name": "CNmFloatCurveEventNode", - "vtable_address": 64914624, + "vtable_address": 64918528, "methods": [ - 58317072, - 58317088, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58316416, - 58316512, - 58261376, - 58317328, - 58243712 + 58320976, + 58320992, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58320320, + 58320416, + 58265280, + 58321232, + 58247616 ], "bases": [ { @@ -171857,16 +171857,16 @@ }, { "type_name": "CNmFloatCurveEventNode::CDefinition", - "vtable_address": 64933936, - "methods": [ - 58875424, - 58905136, - 58910256, - 58874896, - 58875072, - 58875232, - 58324976, - 58874912 + "vtable_address": 64937840, + "methods": [ + 58879328, + 58909040, + 58914160, + 58878800, + 58878976, + 58879136, + 58328880, + 58878816 ], "bases": [ { @@ -171910,20 +171910,20 @@ }, { "type_name": "CNmFloatCurveNode", - "vtable_address": 64915568, - "methods": [ - 58335104, - 58335232, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58327952, - 58328512, - 58261376, - 58333696, - 58243712 + "vtable_address": 64919472, + "methods": [ + 58339008, + 58339136, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58331856, + 58332416, + 58265280, + 58337600, + 58247616 ], "bases": [ { @@ -171967,16 +171967,16 @@ }, { "type_name": "CNmFloatCurveNode::CDefinition", - "vtable_address": 64935152, + "vtable_address": 64939056, "methods": [ - 58925520, - 58943136, - 58945872, - 58924992, - 58929008, - 58929136, - 58340320, - 58925008 + 58929424, + 58947040, + 58949776, + 58928896, + 58932912, + 58933040, + 58344224, + 58928912 ], "bases": [ { @@ -172020,20 +172020,20 @@ }, { "type_name": "CNmFloatEaseNode", - "vtable_address": 64915456, - "methods": [ - 58334544, - 58334560, - 58191168, - 58260352, - 58501008, - 58336464, - 58338640, - 58328240, - 58328512, - 58261376, - 58330208, - 58243712 + "vtable_address": 64919360, + "methods": [ + 58338448, + 58338464, + 58195072, + 58264256, + 58504912, + 58340368, + 58342544, + 58332144, + 58332416, + 58265280, + 58334112, + 58247616 ], "bases": [ { @@ -172077,16 +172077,16 @@ }, { "type_name": "CNmFloatEaseNode::CDefinition", - "vtable_address": 64935072, + "vtable_address": 64938976, "methods": [ - 58925504, - 58941344, - 58961552, - 58924960, - 58925248, - 58925376, - 58340240, - 58924976 + 58929408, + 58945248, + 58965456, + 58928864, + 58929152, + 58929280, + 58344144, + 58928880 ], "bases": [ { @@ -172130,20 +172130,20 @@ }, { "type_name": "CNmFloatMathNode", - "vtable_address": 64915680, + "vtable_address": 64919584, "methods": [ - 58334480, - 58334496, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58328000, - 58328560, - 58261376, - 58333808, - 58243712 + 58338384, + 58338400, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58331904, + 58332464, + 58265280, + 58337712, + 58247616 ], "bases": [ { @@ -172187,16 +172187,16 @@ }, { "type_name": "CNmFloatMathNode::CDefinition", - "vtable_address": 64935232, + "vtable_address": 64939136, "methods": [ - 58925536, - 58947248, - 58963344, - 58925024, - 58925264, - 58925392, - 58340448, - 58925040 + 58929440, + 58951152, + 58967248, + 58928928, + 58929168, + 58929296, + 58344352, + 58928944 ], "bases": [ { @@ -172240,20 +172240,20 @@ }, { "type_name": "CNmFloatRangeComparisonNode", - "vtable_address": 64915904, - "methods": [ - 58334800, - 58334816, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58328144, - 58328512, - 58257552, - 58329488, - 58243712 + "vtable_address": 64919808, + "methods": [ + 58338704, + 58338720, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58332048, + 58332416, + 58261456, + 58333392, + 58247616 ], "bases": [ { @@ -172297,16 +172297,16 @@ }, { "type_name": "CNmFloatRangeComparisonNode::CDefinition", - "vtable_address": 64935392, + "vtable_address": 64939296, "methods": [ - 58925568, - 58952080, - 58970416, - 58925088, - 58925296, - 58925456, - 58340672, - 58925104 + 58929472, + 58955984, + 58974320, + 58928992, + 58929200, + 58929360, + 58344576, + 58929008 ], "bases": [ { @@ -172350,20 +172350,20 @@ }, { "type_name": "CNmFloatRemapNode", - "vtable_address": 64915232, - "methods": [ - 58334672, - 58334688, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58327856, - 58328512, - 58261376, - 58328880, - 58243712 + "vtable_address": 64919136, + "methods": [ + 58338576, + 58338592, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58331760, + 58332416, + 58265280, + 58332784, + 58247616 ], "bases": [ { @@ -172407,16 +172407,16 @@ }, { "type_name": "CNmFloatRemapNode::CDefinition", - "vtable_address": 64934912, + "vtable_address": 64938816, "methods": [ - 58925472, - 58934896, - 58937840, - 58924896, - 58925216, - 58925344, - 58340048, - 58924912 + 58929376, + 58938800, + 58941744, + 58928800, + 58929120, + 58929248, + 58343952, + 58928816 ], "bases": [ { @@ -172460,20 +172460,20 @@ }, { "type_name": "CNmFloatSelectorNode", - "vtable_address": 64916128, + "vtable_address": 64920032, "methods": [ - 58339712, - 58334928, - 58191168, - 58260352, - 58501008, - 58335376, - 58337552, - 58328352, - 58328624, - 58261376, - 58331920, - 58243712 + 58343616, + 58338832, + 58195072, + 58264256, + 58504912, + 58339280, + 58341456, + 58332256, + 58332528, + 58265280, + 58335824, + 58247616 ], "bases": [ { @@ -172517,16 +172517,16 @@ }, { "type_name": "CNmFloatSelectorNode::CDefinition", - "vtable_address": 64935632, + "vtable_address": 64939536, "methods": [ - 58925616, - 58958448, - 58975072, - 58925184, - 58929760, - 58930032, - 58340864, - 58925200 + 58929520, + 58962352, + 58978976, + 58929088, + 58933664, + 58933936, + 58344768, + 58929104 ], "bases": [ { @@ -172570,20 +172570,20 @@ }, { "type_name": "CNmFloatSwitchNode", - "vtable_address": 64915120, + "vtable_address": 64919024, "methods": [ - 58334736, - 58334752, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58327760, - 58328432, - 58261376, - 58328704, - 58243712 + 58338640, + 58338656, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58331664, + 58332336, + 58265280, + 58332608, + 58247616 ], "bases": [ { @@ -172627,16 +172627,16 @@ }, { "type_name": "CNmFloatSwitchNode::CDefinition", - "vtable_address": 64935472, + "vtable_address": 64939376, "methods": [ - 58925584, - 58954336, - 58967040, - 58925120, - 58925312, - 58925408, - 58339888, - 58925136 + 58929488, + 58958240, + 58970944, + 58929024, + 58929216, + 58929312, + 58343792, + 58929040 ], "bases": [ { @@ -172680,7 +172680,7 @@ }, { "type_name": "CNmFloatValueNode", - "vtable_address": 64913376, + "vtable_address": 64917280, "methods": [], "bases": [ { @@ -172713,7 +172713,7 @@ }, { "type_name": "CNmFloatValueNode", - "vtable_address": 64915104, + "vtable_address": 64919008, "methods": [], "bases": [ { @@ -172746,7 +172746,7 @@ }, { "type_name": "CNmFloatValueNode::CDefinition", - "vtable_address": 64933040, + "vtable_address": 64936944, "methods": [], "bases": [ { @@ -172779,7 +172779,7 @@ }, { "type_name": "CNmFloatValueNode::CDefinition", - "vtable_address": 64934896, + "vtable_address": 64938800, "methods": [], "bases": [ { @@ -172812,9 +172812,9 @@ }, { "type_name": "CNmFloatValueNode::CDefinition", - "vtable_address": 66145792, + "vtable_address": 66149696, "methods": [ - 58855328 + 58859232 ], "bases": [], "model": { @@ -172825,20 +172825,20 @@ }, { "type_name": "CNmFollowBoneNode", - "vtable_address": 64916264, + "vtable_address": 64920168, "methods": [ - 58341584, - 58341616, - 58341680, + 58345488, + 58345520, + 58345584, 16856112, 16857296, - 58342320, - 58342848, + 58346224, + 58346752, 16857328, - 58341520, - 58382432, - 58341760, - 58343584, + 58345424, + 58386336, + 58345664, + 58347488, 16856096 ], "bases": [ @@ -172883,16 +172883,16 @@ }, { "type_name": "CNmFollowBoneNode::CDefinition", - "vtable_address": 64936584, + "vtable_address": 64940488, "methods": [ - 58975632, - 58976912, - 58980592, - 58975568, - 58975600, - 58975616, - 58345904, - 58975584 + 58979536, + 58980816, + 58984496, + 58979472, + 58979504, + 58979520, + 58349808, + 58979488 ], "bases": [ { @@ -172936,23 +172936,23 @@ }, { "type_name": "CNmFollowBoneTask", - "vtable_address": 64907304, + "vtable_address": 64911208, "methods": [ - 58122864, - 58122896, - 58123072, - 58122096, - 58153056, + 58126768, + 58126800, + 58126976, + 58126000, + 58156960, 16856128, 16856144, - 58122048, - 58123328, - 58125696, - 58122064, - 58122784, - 58122080, + 58125952, + 58127232, + 58129600, + 58125968, + 58126688, + 58125984, 16856192, - 58153952 + 58157856 ], "bases": [ { @@ -172974,27 +172974,27 @@ }, { "type_name": "CNmFollowBoneTask", - "vtable_address": 64924784, + "vtable_address": 64928688, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66132480 + "offset_to_top": 66136384 } } }, { "type_name": "CNmFootEvent", - "vtable_address": 64924960, + "vtable_address": 64928864, "methods": [ - 58653760, - 58654576, - 58656736, - 58653712, - 58653728, - 58653744, - 58587104, - 58653776 + 58657664, + 58658480, + 58660640, + 58657616, + 58657632, + 58657648, + 58591008, + 58657680 ], "bases": [ { @@ -173016,20 +173016,20 @@ }, { "type_name": "CNmFootEventConditionNode", - "vtable_address": 64913840, + "vtable_address": 64917744, "methods": [ - 58316688, - 58316704, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58316352, - 58500960, - 58257552, - 58319008, - 58243712 + 58320592, + 58320608, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58320256, + 58504864, + 58261456, + 58322912, + 58247616 ], "bases": [ { @@ -173073,16 +173073,16 @@ }, { "type_name": "CNmFootEventConditionNode::CDefinition", - "vtable_address": 64933376, + "vtable_address": 64937280, "methods": [ - 58875312, - 58890368, - 58920336, - 58874672, - 58874960, - 58875104, - 58324320, - 58874688 + 58879216, + 58894272, + 58924240, + 58878576, + 58878864, + 58879008, + 58328224, + 58878592 ], "bases": [ { @@ -173126,20 +173126,20 @@ }, { "type_name": "CNmFootstepEventIDNode", - "vtable_address": 64914064, - "methods": [ - 58316944, - 58316960, - 58191168, - 58260336, - 58501008, - 58501040, - 58501328, - 58316464, - 58500960, - 58261424, + "vtable_address": 64917968, + "methods": [ + 58320848, + 58320864, + 58195072, + 58264240, + 58504912, + 58504944, + 58505232, 58320368, - 58243712 + 58504864, + 58265328, + 58324272, + 58247616 ], "bases": [ { @@ -173183,16 +173183,16 @@ }, { "type_name": "CNmFootstepEventIDNode::CDefinition", - "vtable_address": 64933536, + "vtable_address": 64937440, "methods": [ - 58875344, - 58894352, - 58910272, - 58874736, - 58874992, - 58875168, - 58324512, - 58874752 + 58879248, + 58898256, + 58914176, + 58878640, + 58878896, + 58879072, + 58328416, + 58878656 ], "bases": [ { @@ -173236,20 +173236,20 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode", - "vtable_address": 64913952, - "methods": [ - 58317200, - 58317216, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58316384, - 58500960, - 58261376, - 58321792, - 58243712 + "vtable_address": 64917856, + "methods": [ + 58321104, + 58321120, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58320288, + 58504864, + 58265280, + 58325696, + 58247616 ], "bases": [ { @@ -173293,16 +173293,16 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode::CDefinition", - "vtable_address": 64933456, + "vtable_address": 64937360, "methods": [ - 58875328, - 58892560, - 58919456, - 58874704, - 58874976, - 58875200, - 58324416, - 58874720 + 58879232, + 58896464, + 58923360, + 58878608, + 58878880, + 58879104, + 58328320, + 58878624 ], "bases": [ { @@ -173346,16 +173346,16 @@ }, { "type_name": "CNmFrameSnapEvent", - "vtable_address": 64925672, + "vtable_address": 64929576, "methods": [ - 58663120, - 58663920, - 58666032, - 58663072, - 58663088, - 58663104, - 58587104, - 58663136 + 58667024, + 58667824, + 58669936, + 58666976, + 58666992, + 58667008, + 58591008, + 58667040 ], "bases": [ { @@ -173377,20 +173377,20 @@ }, { "type_name": "CNmGraphEventConditionNode", - "vtable_address": 64913728, + "vtable_address": 64917632, "methods": [ - 58316752, - 58316768, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58316352, - 58500960, - 58257552, - 58324224, - 58243712 + 58320656, + 58320672, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58320256, + 58504864, + 58261456, + 58328128, + 58247616 ], "bases": [ { @@ -173434,16 +173434,16 @@ }, { "type_name": "CNmGraphEventConditionNode::CDefinition", - "vtable_address": 64933296, + "vtable_address": 64937200, "methods": [ - 58875296, - 58889344, - 58924224, - 58874640, - 58879744, - 58880016, - 58323712, - 58874656 + 58879200, + 58893248, + 58928128, + 58878544, + 58883648, + 58883920, + 58327616, + 58878560 ], "bases": [ { @@ -173487,7 +173487,7 @@ }, { "type_name": "CNmGraphNode", - "vtable_address": 64921192, + "vtable_address": 64925096, "methods": [], "bases": [], "model": { @@ -173498,7 +173498,7 @@ }, { "type_name": "CNmGraphNode::CDefinition", - "vtable_address": 66166016, + "vtable_address": 66169920, "methods": [], "bases": [], "model": { @@ -173509,7 +173509,7 @@ }, { "type_name": "CNmGraphNode::CDefinition", - "vtable_address": 66166144, + "vtable_address": 66170048, "methods": [], "bases": [], "model": { @@ -173520,20 +173520,20 @@ }, { "type_name": "CNmIDComparisonNode", - "vtable_address": 64916480, - "methods": [ - 58347360, - 58347376, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58346064, - 58346336, - 58257552, - 58346720, - 58243712 + "vtable_address": 64920384, + "methods": [ + 58351264, + 58351280, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58349968, + 58350240, + 58261456, + 58350624, + 58247616 ], "bases": [ { @@ -173577,16 +173577,16 @@ }, { "type_name": "CNmIDComparisonNode::CDefinition", - "vtable_address": 64936784, + "vtable_address": 64940688, "methods": [ - 58980832, - 58991920, - 58996448, - 58980672, - 58981072, - 58981152, - 58348544, - 58980688 + 58984736, + 58995824, + 59000352, + 58984576, + 58984976, + 58985056, + 58352448, + 58984592 ], "bases": [ { @@ -173630,16 +173630,16 @@ }, { "type_name": "CNmIDEvent", - "vtable_address": 64925864, + "vtable_address": 64929768, "methods": [ - 58666160, - 58666928, - 58668880, - 58666112, - 58666128, - 58666144, - 58587104, - 58666176 + 58670064, + 58670832, + 58672784, + 58670016, + 58670032, + 58670048, + 58591008, + 58670080 ], "bases": [ { @@ -173661,20 +173661,20 @@ }, { "type_name": "CNmIDEventConditionNode", - "vtable_address": 64913392, - "methods": [ - 58316816, - 58316832, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58316352, - 58316496, - 58257552, - 58323424, - 58243712 + "vtable_address": 64917296, + "methods": [ + 58320720, + 58320736, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58320256, + 58320400, + 58261456, + 58327328, + 58247616 ], "bases": [ { @@ -173718,16 +173718,16 @@ }, { "type_name": "CNmIDEventConditionNode::CDefinition", - "vtable_address": 64933056, + "vtable_address": 64936960, "methods": [ - 58875248, - 58881328, - 58921824, - 58874544, - 58879632, - 58879856, - 58322784, - 58874560 + 58879152, + 58885232, + 58925728, + 58878448, + 58883536, + 58883760, + 58326688, + 58878464 ], "bases": [ { @@ -173771,20 +173771,20 @@ }, { "type_name": "CNmIDEventNode", - "vtable_address": 64913504, - "methods": [ - 58317008, - 58317024, - 58191168, - 58260336, - 58501008, - 58501040, - 58501328, - 58316464, - 58316496, - 58261424, - 58321072, - 58243712 + "vtable_address": 64917408, + "methods": [ + 58320912, + 58320928, + 58195072, + 58264240, + 58504912, + 58504944, + 58505232, + 58320368, + 58320400, + 58265328, + 58324976, + 58247616 ], "bases": [ { @@ -173828,16 +173828,16 @@ }, { "type_name": "CNmIDEventNode::CDefinition", - "vtable_address": 64933136, + "vtable_address": 64937040, "methods": [ - 58875264, - 58882144, - 58910768, - 58874576, - 58874928, - 58875152, - 58323520, - 58874592 + 58879168, + 58886048, + 58914672, + 58878480, + 58878832, + 58879056, + 58327424, + 58878496 ], "bases": [ { @@ -173881,20 +173881,20 @@ }, { "type_name": "CNmIDEventPercentageThroughNode", - "vtable_address": 64913616, - "methods": [ - 58317264, - 58317280, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58316384, - 58500960, - 58261376, - 58319520, - 58243712 + "vtable_address": 64917520, + "methods": [ + 58321168, + 58321184, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58320288, + 58504864, + 58265280, + 58323424, + 58247616 ], "bases": [ { @@ -173938,16 +173938,16 @@ }, { "type_name": "CNmIDEventPercentageThroughNode::CDefinition", - "vtable_address": 64933216, + "vtable_address": 64937120, "methods": [ - 58875280, - 58884128, - 58911584, - 58874608, - 58874944, - 58875088, - 58323616, - 58874624 + 58879184, + 58888032, + 58915488, + 58878512, + 58878848, + 58878992, + 58327520, + 58878528 ], "bases": [ { @@ -173991,20 +173991,20 @@ }, { "type_name": "CNmIDSelectorNode", - "vtable_address": 64916816, + "vtable_address": 64920720, "methods": [ - 58347728, - 58347552, - 58191168, - 58260336, - 58501008, - 58347296, - 58348480, - 58346256, - 58346464, - 58261424, - 58347904, - 58243712 + 58351632, + 58351456, + 58195072, + 58264240, + 58504912, + 58351200, + 58352384, + 58350160, + 58350368, + 58265328, + 58351808, + 58247616 ], "bases": [ { @@ -174048,16 +174048,16 @@ }, { "type_name": "CNmIDSelectorNode::CDefinition", - "vtable_address": 64937024, + "vtable_address": 64940928, "methods": [ - 58980880, - 59010032, - 59013760, - 58980768, - 58987648, - 58987920, - 58348896, - 58980784 + 58984784, + 59013936, + 59017664, + 58984672, + 58991552, + 58991824, + 58352800, + 58984688 ], "bases": [ { @@ -174101,20 +174101,20 @@ }, { "type_name": "CNmIDSwitchNode", - "vtable_address": 64916704, + "vtable_address": 64920608, "methods": [ - 58347488, - 58347504, - 58191168, - 58260336, - 58501008, - 58501040, - 58501328, - 58346112, - 58346384, - 58261424, - 58346544, - 58243712 + 58351392, + 58351408, + 58195072, + 58264240, + 58504912, + 58504944, + 58505232, + 58350016, + 58350288, + 58265328, + 58350448, + 58247616 ], "bases": [ { @@ -174158,16 +174158,16 @@ }, { "type_name": "CNmIDSwitchNode::CDefinition", - "vtable_address": 64936944, + "vtable_address": 64940848, "methods": [ - 58980864, - 59004192, - 59009296, - 58980736, - 58980800, - 58980816, - 58348720, - 58980752 + 58984768, + 59008096, + 59013200, + 58984640, + 58984704, + 58984720, + 58352624, + 58984656 ], "bases": [ { @@ -174211,20 +174211,20 @@ }, { "type_name": "CNmIDToFloatNode", - "vtable_address": 64916592, + "vtable_address": 64920496, "methods": [ - 58347424, - 58347440, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58346208, - 58346336, - 58261376, - 58347056, - 58243712 + 58351328, + 58351344, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58350112, + 58350240, + 58265280, + 58350960, + 58247616 ], "bases": [ { @@ -174268,16 +174268,16 @@ }, { "type_name": "CNmIDToFloatNode::CDefinition", - "vtable_address": 64936864, + "vtable_address": 64940768, "methods": [ - 58980848, - 58997456, - 59003216, - 58980704, - 58981232, - 58981360, - 58348624, - 58980720 + 58984752, + 59001360, + 59007120, + 58984608, + 58985136, + 58985264, + 58352528, + 58984624 ], "bases": [ { @@ -174321,7 +174321,7 @@ }, { "type_name": "CNmIDValueNode", - "vtable_address": 64916464, + "vtable_address": 64920368, "methods": [], "bases": [ { @@ -174354,7 +174354,7 @@ }, { "type_name": "CNmIDValueNode::CDefinition", - "vtable_address": 64936768, + "vtable_address": 64940672, "methods": [], "bases": [ { @@ -174387,9 +174387,9 @@ }, { "type_name": "CNmIDValueNode::CDefinition", - "vtable_address": 66145952, + "vtable_address": 66149856, "methods": [ - 58854048 + 58857952 ], "bases": [], "model": { @@ -174400,27 +174400,27 @@ }, { "type_name": "CNmIKRig", - "vtable_address": 64922728, + "vtable_address": 64926632, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66167840 + "offset_to_top": 66171744 } } }, { "type_name": "CNmIsInactiveBranchConditionNode::CDefinition", - "vtable_address": 64940008, + "vtable_address": 64943912, "methods": [ - 59139008, - 59139040, - 59145968, - 59138832, - 59138912, - 59138960, - 58432144, - 59138848 + 59142912, + 59142944, + 59149872, + 59142736, + 59142816, + 59142864, + 58436048, + 59142752 ], "bases": [ { @@ -174464,20 +174464,20 @@ }, { "type_name": "CNmIsTargetSetNode", - "vtable_address": 64919880, + "vtable_address": 64923784, "methods": [ - 58442720, - 58442736, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58442128, - 58442320, - 58257552, - 58444224, - 58243712 + 58446624, + 58446640, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58446032, + 58446224, + 58261456, + 58448128, + 58247616 ], "bases": [ { @@ -174521,16 +174521,16 @@ }, { "type_name": "CNmIsTargetSetNode::CDefinition", - "vtable_address": 64940720, + "vtable_address": 64944624, "methods": [ - 59181424, - 59182224, - 59183824, - 59181168, - 59181296, - 59181360, - 58445696, - 59181184 + 59185328, + 59186128, + 59187728, + 59185072, + 59185200, + 59185264, + 58449600, + 59185088 ], "bases": [ { @@ -174574,20 +174574,20 @@ }, { "type_name": "CNmLayerBlendNode", - "vtable_address": 64916952, + "vtable_address": 64920856, "methods": [ - 58350736, - 58350624, - 58349552, + 58354640, + 58354528, + 58353456, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58350464, - 58350832, - 58349568, - 58365680, + 58354368, + 58354736, + 58353472, + 58369584, 16856096 ], "bases": [ @@ -174621,16 +174621,16 @@ }, { "type_name": "CNmLayerBlendNode::CDefinition", - "vtable_address": 64937256, + "vtable_address": 64941160, "methods": [ - 59014096, - 59027952, - 59032832, - 59013840, - 59014112, - 59014176, - 58351008, - 59013856 + 59018000, + 59031856, + 59036736, + 59017744, + 59018016, + 59018080, + 58354912, + 59017760 ], "bases": [ { @@ -174663,16 +174663,16 @@ }, { "type_name": "CNmLegacyEvent", - "vtable_address": 64925992, + "vtable_address": 64929896, "methods": [ - 58669040, - 58669872, - 58671888, - 58668960, - 58668976, - 58669056, - 58587104, - 58189376 + 58672944, + 58673776, + 58675792, + 58672864, + 58672880, + 58672960, + 58591008, + 58193280 ], "bases": [ { @@ -174694,16 +174694,16 @@ }, { "type_name": "CNmMaterialAttributeEvent", - "vtable_address": 64926120, + "vtable_address": 64930024, "methods": [ - 58671984, - 58675168, - 58679600, - 58671968, - 58672064, - 58672912, - 58587104, - 58672000 + 58675888, + 58679072, + 58683504, + 58675872, + 58675968, + 58676816, + 58591008, + 58675904 ], "bases": [ { @@ -174725,23 +174725,23 @@ }, { "type_name": "CNmModelSpaceBlendTask", - "vtable_address": 64906184, + "vtable_address": 64910088, "methods": [ - 58058896, - 58061600, - 58062752, - 58068160, - 58046160, + 58062800, + 58065504, + 58066656, + 58072064, + 58050064, 16856128, 16856144, - 58046048, - 58059072, - 58078912, - 58046144, + 58049952, + 58062976, + 58082816, + 58050048, 16856160, - 58046064, - 58046080, - 58061312 + 58049968, + 58049984, + 58065216 ], "bases": [ { @@ -174774,20 +174774,20 @@ }, { "type_name": "CNmNotNode", - "vtable_address": 64909696, + "vtable_address": 64913600, "methods": [ - 58257488, - 58257504, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58256528, - 58256800, - 58257552, - 58256960, - 58243712 + 58261392, + 58261408, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58260432, + 58260704, + 58261456, + 58260864, + 58247616 ], "bases": [ { @@ -174831,16 +174831,16 @@ }, { "type_name": "CNmNotNode::CDefinition", - "vtable_address": 64929504, + "vtable_address": 64933408, "methods": [ - 58787008, - 58790032, - 58797200, - 58786912, - 58786944, - 58786960, - 58260192, - 58786928 + 58790912, + 58793936, + 58801104, + 58790816, + 58790848, + 58790864, + 58264096, + 58790832 ], "bases": [ { @@ -174884,20 +174884,20 @@ }, { "type_name": "CNmOrNode", - "vtable_address": 64909584, - "methods": [ - 58257712, - 58257600, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58256688, - 58256848, - 58257552, - 58257280, - 58243712 + "vtable_address": 64913488, + "methods": [ + 58261616, + 58261504, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58260592, + 58260752, + 58261456, + 58261184, + 58247616 ], "bases": [ { @@ -174941,16 +174941,16 @@ }, { "type_name": "CNmOrNode::CDefinition", - "vtable_address": 64929424, - "methods": [ - 58786992, - 58790496, - 58794752, - 58786880, - 58787248, - 58787408, - 58259104, - 58786896 + "vtable_address": 64933328, + "methods": [ + 58790896, + 58794400, + 58798656, + 58790784, + 58791152, + 58791312, + 58263008, + 58790800 ], "bases": [ { @@ -174994,16 +174994,16 @@ }, { "type_name": "CNmOrientationWarpEvent", - "vtable_address": 64927728, + "vtable_address": 64931632, "methods": [ - 58717040, - 58717392, - 58718832, - 58716944, - 58716976, - 58717008, - 58587104, - 58717408 + 58720944, + 58721296, + 58722736, + 58720848, + 58720880, + 58720912, + 58591008, + 58721312 ], "bases": [ { @@ -175025,21 +175025,21 @@ }, { "type_name": "CNmOrientationWarpNode", - "vtable_address": 64917096, + "vtable_address": 64921000, "methods": [ - 58368112, - 58368000, - 58367472, + 58372016, + 58371904, + 58371376, 16856112, 16857296, - 58368208, - 58370512, + 58372112, + 58374416, 16857328, - 58367680, - 58367456, - 58367488, - 58376896, - 58367760 + 58371584, + 58371360, + 58371392, + 58380800, + 58371664 ], "bases": [ { @@ -175072,16 +175072,16 @@ }, { "type_name": "CNmOrientationWarpNode::CDefinition", - "vtable_address": 64937512, + "vtable_address": 64941416, "methods": [ - 59032976, - 59034384, - 59039008, - 59032912, - 59032944, - 59032960, - 58373104, - 59032928 + 59036880, + 59038288, + 59042912, + 59036816, + 59036848, + 59036864, + 58377008, + 59036832 ], "bases": [ { @@ -175114,23 +175114,23 @@ }, { "type_name": "CNmOverlayBlendTask", - "vtable_address": 64905912, + "vtable_address": 64909816, "methods": [ - 58058960, - 58062176, - 58063360, - 58063984, - 58046160, + 58062864, + 58066080, + 58067264, + 58067888, + 58050064, 16856128, 16856144, - 58046048, - 58059072, - 58078912, - 58046112, - 58050784, - 58046064, - 58046080, - 58061312 + 58049952, + 58062976, + 58082816, + 58050016, + 58054688, + 58049968, + 58049984, + 58065216 ], "bases": [ { @@ -175163,7 +175163,7 @@ }, { "type_name": "CNmParameterizedBlendNode", - "vtable_address": 64908104, + "vtable_address": 64912008, "methods": [], "bases": [ { @@ -175196,20 +175196,20 @@ }, { "type_name": "CNmParameterizedBlendNode", - "vtable_address": 64908240, + "vtable_address": 64912144, "methods": [ - 58194880, - 58195696, - 58191328, + 58198784, + 58199600, + 58195232, 16856112, 16857296, - 58191376, - 58192320, + 58195280, + 58196224, 16857328, - 58191216, - 58191184, - 58205616, - 58211776, + 58195120, + 58195088, + 58209520, + 58215680, 16856096 ], "bases": [ @@ -175243,7 +175243,7 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 64928256, + "vtable_address": 64932160, "methods": [], "bases": [ { @@ -175276,16 +175276,16 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 64928272, + "vtable_address": 64932176, "methods": [ - 58722912, - 58729072, - 58750400, - 58722784, - 58724064, - 58724288, - 58200000, - 58722800 + 58726816, + 58732976, + 58754304, + 58726688, + 58727968, + 58728192, + 58203904, + 58726704 ], "bases": [ { @@ -175318,9 +175318,9 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 66138176, + "vtable_address": 66142080, "methods": [ - 58748096 + 58752000 ], "bases": [], "model": { @@ -175331,25 +175331,25 @@ }, { "type_name": "CNmParameterizedClipSelectorNode", - "vtable_address": 64918592, + "vtable_address": 64922496, "methods": [ - 58407888, - 58408096, - 58405440, + 58411792, + 58412000, + 58409344, 16856112, 16857296, - 58408496, - 58406992, + 58412400, + 58410896, 16857328, - 58405936, - 58405456, - 58419168, - 58406752, + 58409840, + 58409360, + 58423072, + 58410656, 16856096, - 58405616, - 58405648, - 58405680, - 58405712 + 58409520, + 58409552, + 58409584, + 58409616 ], "bases": [ { @@ -175393,16 +175393,16 @@ }, { "type_name": "CNmParameterizedClipSelectorNode::CDefinition", - "vtable_address": 64939008, + "vtable_address": 64942912, "methods": [ - 59074016, - 59096192, - 59101712, - 59073936, - 59074416, - 59074928, - 58416896, - 59073952 + 59077920, + 59100096, + 59105616, + 59077840, + 59078320, + 59078832, + 58420800, + 59077856 ], "bases": [ { @@ -175446,20 +175446,20 @@ }, { "type_name": "CNmParameterizedSelectorNode", - "vtable_address": 64918472, + "vtable_address": 64922376, "methods": [ - 58407792, - 58407984, - 58405392, + 58411696, + 58411888, + 58409296, 16856112, 16857296, - 58409408, - 58410240, + 58413312, + 58414144, 16857328, - 58405872, - 58405408, - 58420880, - 58406512, + 58409776, + 58409312, + 58424784, + 58410416, 16856096 ], "bases": [ @@ -175493,16 +175493,16 @@ }, { "type_name": "CNmParameterizedSelectorNode::CDefinition", - "vtable_address": 64938928, + "vtable_address": 64942832, "methods": [ - 59074000, - 59089504, - 59095024, - 59073904, - 59074288, - 59074800, - 58416128, - 59073920 + 59077904, + 59093408, + 59098928, + 59077808, + 59078192, + 59078704, + 58420032, + 59077824 ], "bases": [ { @@ -175535,16 +175535,16 @@ }, { "type_name": "CNmParticleEvent", - "vtable_address": 64926616, + "vtable_address": 64930520, "methods": [ - 58689600, - 58694384, - 58702144, - 58689584, - 58689680, - 58689856, - 58587104, - 58689616 + 58693504, + 58698288, + 58706048, + 58693488, + 58693584, + 58693760, + 58591008, + 58693520 ], "bases": [ { @@ -175566,7 +175566,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 64910592, + "vtable_address": 64914496, "methods": [], "bases": [ { @@ -175599,7 +175599,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 64916248, + "vtable_address": 64920152, "methods": [], "bases": [ { @@ -175632,7 +175632,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 64917824, + "vtable_address": 64921728, "methods": [], "bases": [ { @@ -175665,7 +175665,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 64917968, + "vtable_address": 64921872, "methods": [], "bases": [ { @@ -175698,7 +175698,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 64920624, + "vtable_address": 64924528, "methods": [], "bases": [ { @@ -175731,7 +175731,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 64930424, + "vtable_address": 64934328, "methods": [], "bases": [ { @@ -175764,7 +175764,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 64936568, + "vtable_address": 64940472, "methods": [], "bases": [ { @@ -175797,16 +175797,16 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 64937640, + "vtable_address": 64941544, "methods": [ - 59039152, - 59039344, - 59040944, - 59039088, - 59039120, - 59039136, - 58382768, - 59039104 + 59043056, + 59043248, + 59044848, + 59042992, + 59043024, + 59043040, + 58386672, + 59043008 ], "bases": [ { @@ -175839,7 +175839,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 64938248, + "vtable_address": 64942152, "methods": [], "bases": [ { @@ -175872,7 +175872,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 64938552, + "vtable_address": 64942456, "methods": [], "bases": [ { @@ -175905,7 +175905,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 64941944, + "vtable_address": 64945848, "methods": [], "bases": [ { @@ -175938,7 +175938,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64908536, + "vtable_address": 64912440, "methods": [], "bases": [ { @@ -175960,7 +175960,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64914744, + "vtable_address": 64918648, "methods": [], "bases": [ { @@ -175982,7 +175982,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64916936, + "vtable_address": 64920840, "methods": [], "bases": [ { @@ -176004,7 +176004,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64917080, + "vtable_address": 64920984, "methods": [], "bases": [ { @@ -176026,7 +176026,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64917296, + "vtable_address": 64921200, "methods": [], "bases": [ { @@ -176048,7 +176048,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64917680, + "vtable_address": 64921584, "methods": [], "bases": [ { @@ -176070,7 +176070,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64919232, + "vtable_address": 64923136, "methods": [], "bases": [ { @@ -176092,7 +176092,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64919648, + "vtable_address": 64923552, "methods": [], "bases": [ { @@ -176114,7 +176114,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64920336, + "vtable_address": 64924240, "methods": [], "bases": [ { @@ -176136,7 +176136,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64920480, + "vtable_address": 64924384, "methods": [], "bases": [ { @@ -176158,7 +176158,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 64921208, + "vtable_address": 64925112, "methods": [], "bases": [ { @@ -176180,7 +176180,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64928600, + "vtable_address": 64932504, "methods": [], "bases": [ { @@ -176202,7 +176202,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64932648, + "vtable_address": 64936552, "methods": [], "bases": [ { @@ -176224,7 +176224,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64937240, + "vtable_address": 64941144, "methods": [], "bases": [ { @@ -176246,7 +176246,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64937496, + "vtable_address": 64941400, "methods": [], "bases": [ { @@ -176268,7 +176268,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64937624, + "vtable_address": 64941528, "methods": [], "bases": [ { @@ -176290,7 +176290,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64937800, + "vtable_address": 64941704, "methods": [], "bases": [ { @@ -176312,7 +176312,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64938120, + "vtable_address": 64942024, "methods": [], "bases": [ { @@ -176334,7 +176334,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64939640, + "vtable_address": 64943544, "methods": [], "bases": [ { @@ -176356,7 +176356,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64940472, + "vtable_address": 64944376, "methods": [], "bases": [ { @@ -176378,7 +176378,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64941368, + "vtable_address": 64945272, "methods": [], "bases": [ { @@ -176400,7 +176400,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 64941496, + "vtable_address": 64945400, "methods": [], "bases": [ { @@ -176422,9 +176422,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 66143200, + "vtable_address": 66147104, "methods": [ - 58826528 + 58830432 ], "bases": [], "model": { @@ -176435,9 +176435,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 66146272, + "vtable_address": 66150176, "methods": [ - 58874256 + 58878160 ], "bases": [], "model": { @@ -176448,9 +176448,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 66156384, + "vtable_address": 66160288, "methods": [ - 59046368 + 59050272 ], "bases": [], "model": { @@ -176461,9 +176461,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 66156544, + "vtable_address": 66160448, "methods": [ - 59045088 + 59048992 ], "bases": [], "model": { @@ -176474,7 +176474,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64906352, + "vtable_address": 64910256, "methods": [], "bases": [], "model": { @@ -176485,7 +176485,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64906648, + "vtable_address": 64910552, "methods": [], "bases": [], "model": { @@ -176496,7 +176496,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64906808, + "vtable_address": 64910712, "methods": [], "bases": [], "model": { @@ -176507,7 +176507,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64906992, + "vtable_address": 64910896, "methods": [], "bases": [], "model": { @@ -176518,7 +176518,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64907288, + "vtable_address": 64911192, "methods": [], "bases": [], "model": { @@ -176529,7 +176529,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64907448, + "vtable_address": 64911352, "methods": [], "bases": [], "model": { @@ -176540,7 +176540,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64907608, + "vtable_address": 64911512, "methods": [], "bases": [], "model": { @@ -176551,9 +176551,9 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 64907776, + "vtable_address": 64911680, "methods": [ - 58153120 + 58157024 ], "bases": [], "model": { @@ -176564,7 +176564,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 65594880, + "vtable_address": 65598784, "methods": [], "bases": [], "model": { @@ -176575,7 +176575,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 65595008, + "vtable_address": 65598912, "methods": [], "bases": [], "model": { @@ -176586,7 +176586,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66131072, + "vtable_address": 66134976, "methods": [], "bases": [], "model": { @@ -176597,7 +176597,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66131200, + "vtable_address": 66135104, "methods": [], "bases": [], "model": { @@ -176608,7 +176608,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66131328, + "vtable_address": 66135232, "methods": [], "bases": [], "model": { @@ -176619,7 +176619,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66132480, + "vtable_address": 66136384, "methods": [], "bases": [], "model": { @@ -176630,7 +176630,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66132608, + "vtable_address": 66136512, "methods": [], "bases": [], "model": { @@ -176641,7 +176641,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66132736, + "vtable_address": 66136640, "methods": [], "bases": [], "model": { @@ -176652,7 +176652,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66132960, + "vtable_address": 66136864, "methods": [], "bases": [], "model": { @@ -176663,7 +176663,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 66133088, + "vtable_address": 66136992, "methods": [], "bases": [], "model": { @@ -176674,20 +176674,20 @@ }, { "type_name": "CNmReferencePoseNode", - "vtable_address": 64917432, + "vtable_address": 64921336, "methods": [ - 58383216, - 58383248, - 58191168, + 58387120, + 58387152, + 58195072, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58500960, - 58382880, - 58382944, - 58386464, + 58504864, + 58386784, + 58386848, + 58390368, 16856096 ], "bases": [ @@ -176721,16 +176721,16 @@ }, { "type_name": "CNmReferencePoseNode::CDefinition", - "vtable_address": 64937896, + "vtable_address": 64941800, "methods": [ - 59043408, - 59043728, - 59046480, - 59043232, - 59043312, - 59043360, - 58383472, - 59043248 + 59047312, + 59047632, + 59050384, + 59047136, + 59047216, + 59047264, + 58387376, + 59047152 ], "bases": [ { @@ -176763,23 +176763,23 @@ }, { "type_name": "CNmReferencePoseTask", - "vtable_address": 64907008, + "vtable_address": 64910912, "methods": [ - 58121024, - 58121200, - 58121376, - 58121056, - 58153056, + 58124928, + 58125104, + 58125280, + 58124960, + 58156960, 16856128, 16856144, - 58120688, - 58120704, - 58120720, - 58120736, + 58124592, + 58124608, + 58124624, + 58124640, 16856160, - 58120752, + 58124656, 16856192, - 58153952 + 58157856 ], "bases": [ { @@ -176801,20 +176801,20 @@ }, { "type_name": "CNmReferencedGraphNode", - "vtable_address": 64917696, + "vtable_address": 64921600, "methods": [ - 58391920, - 58391808, - 58391392, + 58395824, + 58395712, + 58395296, 16856112, 16857296, - 58391728, - 58391632, + 58395632, + 58395536, 16857328, - 58391552, - 58391440, - 58393968, - 58394304, + 58395456, + 58395344, + 58397872, + 58398208, 16856096 ], "bases": [ @@ -176848,16 +176848,16 @@ }, { "type_name": "CNmReferencedGraphNode::CDefinition", - "vtable_address": 64938136, + "vtable_address": 64942040, "methods": [ - 59056080, - 59056688, - 59057872, - 59056016, - 59056048, - 59056064, - 58392064, - 59056032 + 59059984, + 59060592, + 59061776, + 59059920, + 59059952, + 59059968, + 58395968, + 59059936 ], "bases": [ { @@ -176890,16 +176890,16 @@ }, { "type_name": "CNmRootMotionEvent", - "vtable_address": 64926824, + "vtable_address": 64930728, "methods": [ - 58702272, - 58702560, - 58704224, - 58702224, - 58702240, - 58702256, - 58587104, - 58702288 + 58706176, + 58706464, + 58708128, + 58706128, + 58706144, + 58706160, + 58591008, + 58706192 ], "bases": [ { @@ -176921,20 +176921,20 @@ }, { "type_name": "CNmRootMotionOverrideNode", - "vtable_address": 64917840, + "vtable_address": 64921744, "methods": [ - 58396304, - 58396336, + 58400208, + 58400240, 16856208, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58396208, - 58382432, - 58396096, - 58402176, + 58400112, + 58386336, + 58400000, + 58406080, 16856096 ], "bases": [ @@ -176979,16 +176979,16 @@ }, { "type_name": "CNmRootMotionOverrideNode::CDefinition", - "vtable_address": 64938264, + "vtable_address": 64942168, "methods": [ - 59060032, - 59062016, - 59069856, - 59059968, - 59060000, - 59060016, - 58402304, - 59059984 + 59063936, + 59065920, + 59073760, + 59063872, + 59063904, + 59063920, + 58406208, + 59063888 ], "bases": [ { @@ -177032,23 +177032,23 @@ }, { "type_name": "CNmSampleTask", - "vtable_address": 64907464, - "methods": [ - 58127104, - 58130880, - 58131056, - 58128976, - 58153056, - 58134336, + "vtable_address": 64911368, + "methods": [ + 58131008, + 58134784, + 58134960, + 58132880, + 58156960, + 58138240, 16856144, - 58126144, - 58127424, - 58126208, - 58126160, + 58130048, + 58131328, + 58130112, + 58130064, + 58134000, + 58130080, 58130096, - 58126176, - 58126192, - 58153952 + 58157856 ], "bases": [ { @@ -177070,20 +177070,20 @@ }, { "type_name": "CNmScaleNode", - "vtable_address": 64917984, + "vtable_address": 64921888, "methods": [ - 58402640, - 58402672, + 58406544, + 58406576, 16856208, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58402576, - 58382432, - 58402496, - 58402736, + 58406480, + 58386336, + 58406400, + 58406640, 16856096 ], "bases": [ @@ -177128,16 +177128,16 @@ }, { "type_name": "CNmScaleNode::CDefinition", - "vtable_address": 64938568, + "vtable_address": 64942472, "methods": [ - 59070000, - 59070576, - 59071744, - 59069936, - 59069968, - 59069984, - 58405120, - 59069952 + 59073904, + 59074480, + 59075648, + 59073840, + 59073872, + 59073888, + 58409024, + 59073856 ], "bases": [ { @@ -177181,23 +177181,23 @@ }, { "type_name": "CNmScaleTask", - "vtable_address": 64907624, + "vtable_address": 64911528, "methods": [ - 58134592, - 58135232, - 58135472, - 58134656, - 58153056, + 58138496, + 58139136, + 58139376, + 58138560, + 58156960, 16856128, 16856144, - 58134544, - 58135744, - 58137856, - 58134560, + 58138448, + 58139648, + 58141760, + 58138464, 16856160, - 58134576, + 58138480, 16856192, - 58153952 + 58157856 ], "bases": [ { @@ -177219,20 +177219,20 @@ }, { "type_name": "CNmSelectorNode", - "vtable_address": 64918200, + "vtable_address": 64922104, "methods": [ - 58407504, - 58408208, - 58405296, + 58411408, + 58412112, + 58409200, 16856112, 16857296, - 58408800, - 58409712, + 58412704, + 58413616, 16857328, - 58405744, - 58405312, - 58413888, - 58406000, + 58409648, + 58409216, + 58417792, + 58409904, 16856096 ], "bases": [ @@ -177266,16 +177266,16 @@ }, { "type_name": "CNmSelectorNode::CDefinition", - "vtable_address": 64938768, - "methods": [ - 59073968, - 59081232, - 59082544, - 59073840, - 59074032, - 59074544, - 58412224, - 59073856 + "vtable_address": 64942672, + "methods": [ + 59077872, + 59085136, + 59086448, + 59077744, + 59077936, + 59078448, + 58416128, + 59077760 ], "bases": [ { @@ -177308,7 +177308,7 @@ }, { "type_name": "CNmSnapWeaponNode", - "vtable_address": 63682840, + "vtable_address": 63686744, "methods": [ 16858416, 16858448, @@ -177319,7 +177319,7 @@ 16867792, 16857328, 16857440, - 58382432, + 58386336, 16870016, 16898656, 16856096 @@ -177366,7 +177366,7 @@ }, { "type_name": "CNmSnapWeaponNode::CDefinition", - "vtable_address": 63682960, + "vtable_address": 63686864, "methods": [ 16857552, 16882672, @@ -177419,13 +177419,13 @@ }, { "type_name": "CNmSnapWeaponTask", - "vtable_address": 63683176, + "vtable_address": 63687080, "methods": [ 16857584, 16866272, 16866656, 16871744, - 58153056, + 58156960, 16856128, 16856144, 16856400, @@ -177435,7 +177435,7 @@ 16856160, 16856432, 16856192, - 58153952 + 58157856 ], "bases": [ { @@ -177457,16 +177457,16 @@ }, { "type_name": "CNmSoundEvent", - "vtable_address": 64926952, + "vtable_address": 64930856, "methods": [ - 58705520, - 58707856, - 58713152, - 58705408, - 58705424, - 58705600, - 58587104, - 58705536 + 58709424, + 58711760, + 58717056, + 58709312, + 58709328, + 58709504, + 58591008, + 58709440 ], "bases": [ { @@ -177488,7 +177488,7 @@ }, { "type_name": "CNmSpeedScaleBaseNode", - "vtable_address": 64918824, + "vtable_address": 64922728, "methods": [], "bases": [ { @@ -177532,7 +177532,7 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 64939232, + "vtable_address": 64943136, "methods": [], "bases": [ { @@ -177576,16 +177576,16 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 64939248, + "vtable_address": 64943152, "methods": [ - 59102288, - 59103312, - 59106688, - 59101792, - 59101920, - 59102176, - 58382768, - 59101808 + 59106192, + 59107216, + 59110592, + 59105696, + 59105824, + 59106080, + 58386672, + 59105712 ], "bases": [ { @@ -177629,9 +177629,9 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 66158720, + "vtable_address": 66162624, "methods": [ - 59110368 + 59114272 ], "bases": [], "model": { @@ -177642,9 +177642,9 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 66158880, + "vtable_address": 66162784, "methods": [ - 59109072 + 59112976 ], "bases": [], "model": { @@ -177655,9 +177655,9 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 66159040, + "vtable_address": 66162944, "methods": [ - 59107776 + 59111680 ], "bases": [], "model": { @@ -177668,22 +177668,22 @@ }, { "type_name": "CNmSpeedScaleNode", - "vtable_address": 64918840, + "vtable_address": 64922744, "methods": [ - 58422336, - 58422368, + 58426240, + 58426272, 16856208, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58421872, - 58382432, - 58421680, - 58421216, + 58425776, + 58386336, + 58425584, + 58425120, 16856096, - 58422432 + 58426336 ], "bases": [ { @@ -177738,16 +177738,16 @@ }, { "type_name": "CNmSpeedScaleNode::CDefinition", - "vtable_address": 64939328, + "vtable_address": 64943232, "methods": [ - 59102272, - 59103328, - 59107888, - 59101824, - 59101936, - 59102224, - 58422912, - 59101840 + 59106176, + 59107232, + 59111792, + 59105728, + 59105840, + 59106128, + 58426816, + 59105744 ], "bases": [ { @@ -177802,20 +177802,20 @@ }, { "type_name": "CNmStateCompletedConditionNode", - "vtable_address": 64919416, + "vtable_address": 64923320, "methods": [ - 58431968, - 58431984, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58431488, - 58431584, - 58257552, - 58431632, - 58243712 + 58435872, + 58435888, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58435392, + 58435488, + 58261456, + 58435536, + 58247616 ], "bases": [ { @@ -177859,16 +177859,16 @@ }, { "type_name": "CNmStateCompletedConditionNode::CDefinition", - "vtable_address": 64939928, + "vtable_address": 64943832, "methods": [ - 59138992, - 59140432, - 59144800, - 59138800, - 59138896, - 59138944, - 58432032, - 59138816 + 59142896, + 59144336, + 59148704, + 59142704, + 59142800, + 59142848, + 58435936, + 59142720 ], "bases": [ { @@ -177912,20 +177912,20 @@ }, { "type_name": "CNmStateMachineNode", - "vtable_address": 64919664, + "vtable_address": 64923568, "methods": [ - 58433072, - 58432736, - 58432704, + 58436976, + 58436640, + 58436608, 16856112, 16857296, - 58433376, - 58435456, + 58437280, + 58439360, 16857328, - 58439424, - 58441616, - 58439088, - 58441696, + 58443328, + 58445520, + 58442992, + 58445600, 16856096 ], "bases": [ @@ -177959,16 +177959,16 @@ }, { "type_name": "CNmStateMachineNode::CDefinition", - "vtable_address": 64940488, + "vtable_address": 64944392, "methods": [ - 59153600, - 59168608, - 59181088, - 59153568, - 59154176, - 59154448, - 58436864, - 59153584 + 59157504, + 59172512, + 59184992, + 59157472, + 59158080, + 59158352, + 58440768, + 59157488 ], "bases": [ { @@ -178001,20 +178001,20 @@ }, { "type_name": "CNmStateNode", - "vtable_address": 64919248, + "vtable_address": 64923152, "methods": [ - 58423568, - 58423600, - 58423248, + 58427472, + 58427504, + 58427152, 16856112, 16857296, - 58424640, - 58423744, + 58428544, + 58427648, 16857328, - 58423488, - 58423664, - 58423280, - 58431104, + 58427392, + 58427568, + 58427184, + 58435008, 16856096 ], "bases": [ @@ -178048,16 +178048,16 @@ }, { "type_name": "CNmStateNode::CDefinition", - "vtable_address": 64939656, + "vtable_address": 64943560, "methods": [ - 59110688, - 59125168, - 59138720, - 59110656, - 59110928, - 59111168, - 58425328, - 59110672 + 59114592, + 59129072, + 59142624, + 59114560, + 59114832, + 59115072, + 58429232, + 59114576 ], "bases": [ { @@ -178090,20 +178090,20 @@ }, { "type_name": "CNmSyncEventIndexConditionNode", - "vtable_address": 64914176, + "vtable_address": 64918080, "methods": [ - 58316624, - 58316640, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58316352, - 58500960, - 58257552, - 58325136, - 58243712 + 58320528, + 58320544, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58320256, + 58504864, + 58261456, + 58329040, + 58247616 ], "bases": [ { @@ -178147,16 +178147,16 @@ }, { "type_name": "CNmSyncEventIndexConditionNode::CDefinition", - "vtable_address": 64933616, - "methods": [ - 58875360, - 58896304, - 58918576, - 58874768, - 58875008, - 58875120, - 58324608, - 58874784 + "vtable_address": 64937520, + "methods": [ + 58879264, + 58900208, + 58922480, + 58878672, + 58878912, + 58879024, + 58328512, + 58878688 ], "bases": [ { @@ -178200,20 +178200,20 @@ }, { "type_name": "CNmTargetInfoNode", - "vtable_address": 64919992, + "vtable_address": 64923896, "methods": [ - 58442784, - 58442800, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58442176, - 58442320, - 58261376, - 58442976, - 58243712 + 58446688, + 58446704, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58446080, + 58446224, + 58265280, + 58446880, + 58247616 ], "bases": [ { @@ -178257,16 +178257,16 @@ }, { "type_name": "CNmTargetInfoNode::CDefinition", - "vtable_address": 64940800, + "vtable_address": 64944704, "methods": [ - 59181440, - 59185664, - 59189136, - 59181200, - 59181312, - 59181376, - 58445776, - 59181216 + 59185344, + 59189568, + 59193040, + 59185104, + 59185216, + 59185280, + 58449680, + 59185120 ], "bases": [ { @@ -178310,20 +178310,20 @@ }, { "type_name": "CNmTargetOffsetNode", - "vtable_address": 64920216, - "methods": [ - 58442912, - 58442928, - 58191168, - 58260384, - 58501008, - 58501040, - 58501328, - 58442272, - 58442368, - 58261248, - 58444640, - 58243712 + "vtable_address": 64924120, + "methods": [ + 58446816, + 58446832, + 58195072, + 58264288, + 58504912, + 58504944, + 58505232, + 58446176, + 58446272, + 58265152, + 58448544, + 58247616 ], "bases": [ { @@ -178367,16 +178367,16 @@ }, { "type_name": "CNmTargetOffsetNode::CDefinition", - "vtable_address": 64940960, + "vtable_address": 64944864, "methods": [ - 59181472, - 59192896, - 59196096, - 59181264, - 59181344, - 59181408, - 58445952, - 59181280 + 59185376, + 59196800, + 59200000, + 59185168, + 59185248, + 59185312, + 58449856, + 59185184 ], "bases": [ { @@ -178420,20 +178420,20 @@ }, { "type_name": "CNmTargetPointNode", - "vtable_address": 64920104, - "methods": [ - 58442848, - 58442864, - 58191168, - 58260368, - 58501008, - 58501040, - 58501328, - 58442224, - 58442320, - 58261328, - 58442416, - 58243712 + "vtable_address": 64924008, + "methods": [ + 58446752, + 58446768, + 58195072, + 58264272, + 58504912, + 58504944, + 58505232, + 58446128, + 58446224, + 58265232, + 58446320, + 58247616 ], "bases": [ { @@ -178477,16 +178477,16 @@ }, { "type_name": "CNmTargetPointNode::CDefinition", - "vtable_address": 64940880, + "vtable_address": 64944784, "methods": [ - 59181456, - 59189568, - 59192144, - 59181232, - 59181328, - 59181392, - 58445872, - 59181248 + 59185360, + 59193472, + 59196048, + 59185136, + 59185232, + 59185296, + 58449776, + 59185152 ], "bases": [ { @@ -178530,7 +178530,7 @@ }, { "type_name": "CNmTargetValueNode", - "vtable_address": 64910008, + "vtable_address": 64913912, "methods": [], "bases": [ { @@ -178563,7 +178563,7 @@ }, { "type_name": "CNmTargetValueNode", - "vtable_address": 64911032, + "vtable_address": 64914936, "methods": [], "bases": [ { @@ -178596,7 +178596,7 @@ }, { "type_name": "CNmTargetValueNode", - "vtable_address": 64919864, + "vtable_address": 64923768, "methods": [], "bases": [ { @@ -178629,7 +178629,7 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 64929832, + "vtable_address": 64933736, "methods": [], "bases": [ { @@ -178662,7 +178662,7 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 64930808, + "vtable_address": 64934712, "methods": [], "bases": [ { @@ -178695,7 +178695,7 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 64940704, + "vtable_address": 64944608, "methods": [], "bases": [ { @@ -178728,9 +178728,9 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 66145472, + "vtable_address": 66149376, "methods": [ - 58857888 + 58861792 ], "bases": [], "model": { @@ -178741,16 +178741,16 @@ }, { "type_name": "CNmTargetWarpEvent", - "vtable_address": 64927808, + "vtable_address": 64931712, "methods": [ - 58717056, - 58719696, - 58722704, - 58716960, - 58716992, - 58717024, - 58587104, - 58191024 + 58720960, + 58723600, + 58726608, + 58720864, + 58720896, + 58720928, + 58591008, + 58194928 ], "bases": [ { @@ -178772,21 +178772,21 @@ }, { "type_name": "CNmTargetWarpNode", - "vtable_address": 64920352, + "vtable_address": 64924256, "methods": [ - 58451584, - 58446176, - 58446144, + 58455488, + 58450080, + 58450048, 16856112, 16857296, - 58446704, - 58449008, + 58450608, + 58452912, 16857328, - 58457520, - 58446128, - 58457360, - 58458928, - 58446160 + 58461424, + 58450032, + 58461264, + 58462832, + 58450064 ], "bases": [ { @@ -178819,16 +178819,16 @@ }, { "type_name": "CNmTargetWarpNode::CDefinition", - "vtable_address": 64941384, + "vtable_address": 64945288, "methods": [ - 59196240, - 59198496, - 59208064, - 59196176, - 59196208, - 59196224, - 58456800, - 59196192 + 59200144, + 59202400, + 59211968, + 59200080, + 59200112, + 59200128, + 58460704, + 59200096 ], "bases": [ { @@ -178861,20 +178861,20 @@ }, { "type_name": "CNmTimeConditionNode", - "vtable_address": 64919528, - "methods": [ - 58431904, - 58431920, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58431552, - 58500960, - 58257552, - 58432384, - 58243712 + "vtable_address": 64923432, + "methods": [ + 58435808, + 58435824, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58435456, + 58504864, + 58261456, + 58436288, + 58247616 ], "bases": [ { @@ -178918,16 +178918,16 @@ }, { "type_name": "CNmTimeConditionNode::CDefinition", - "vtable_address": 64940088, + "vtable_address": 64943992, "methods": [ - 59139024, - 59147408, - 59153488, - 59138864, - 59138928, - 59138976, - 58432208, - 59138880 + 59142928, + 59151312, + 59157392, + 59142768, + 59142832, + 59142880, + 58436112, + 59142784 ], "bases": [ { @@ -178971,16 +178971,16 @@ }, { "type_name": "CNmTransitionEvent", - "vtable_address": 64927240, + "vtable_address": 64931144, "methods": [ - 58713280, - 58714240, - 58716864, - 58713232, - 58713248, - 58713264, - 58587104, - 58190560 + 58717184, + 58718144, + 58720768, + 58717136, + 58717152, + 58717168, + 58591008, + 58194464 ], "bases": [ { @@ -179002,20 +179002,20 @@ }, { "type_name": "CNmTransitionEventConditionNode", - "vtable_address": 64914512, + "vtable_address": 64918416, "methods": [ - 58316560, - 58316576, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58316352, - 58500960, - 58257552, - 58318400, - 58243712 + 58320464, + 58320480, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58320256, + 58504864, + 58261456, + 58322304, + 58247616 ], "bases": [ { @@ -179059,16 +179059,16 @@ }, { "type_name": "CNmTransitionEventConditionNode::CDefinition", - "vtable_address": 64933856, + "vtable_address": 64937760, "methods": [ - 58875408, - 58902944, - 58917072, - 58874864, - 58875056, - 58875136, - 58324880, - 58874880 + 58879312, + 58906848, + 58920976, + 58878768, + 58878960, + 58879040, + 58328784, + 58878784 ], "bases": [ { @@ -179112,20 +179112,20 @@ }, { "type_name": "CNmTransitionNode", - "vtable_address": 64920496, + "vtable_address": 64924400, "methods": [ - 58459632, - 58459776, - 58191168, + 58463536, + 58463680, + 58195072, 16856112, 16857296, - 58459936, - 58461728, + 58463840, + 58465632, 16857328, - 58459440, - 58459248, - 58459264, - 58485696, + 58463344, + 58463152, + 58463168, + 58489600, 16856096 ], "bases": [ @@ -179159,16 +179159,16 @@ }, { "type_name": "CNmTransitionNode::CDefinition", - "vtable_address": 64941512, + "vtable_address": 64945416, "methods": [ - 59208208, - 59211760, - 59222672, - 59208144, - 59208176, - 59208192, - 58466848, - 59208160 + 59212112, + 59215664, + 59226576, + 59212048, + 59212080, + 59212096, + 58470752, + 59212064 ], "bases": [ { @@ -179201,20 +179201,20 @@ }, { "type_name": "CNmTwoBoneIKNode", - "vtable_address": 64920640, + "vtable_address": 64924544, "methods": [ - 58492336, - 58492368, + 58496240, + 58496272, 16856208, 16856112, 16857296, - 58493008, - 58494080, + 58496912, + 58497984, 16857328, - 58492272, - 58382432, - 58492448, - 58495360, + 58496176, + 58386336, + 58496352, + 58499264, 16856096 ], "bases": [ @@ -179259,16 +179259,16 @@ }, { "type_name": "CNmTwoBoneIKNode::CDefinition", - "vtable_address": 64941960, + "vtable_address": 64945864, "methods": [ - 59222816, - 59224512, - 59230368, - 59222752, - 59222784, - 59222800, - 58498432, - 59222768 + 59226720, + 59228416, + 59234272, + 59226656, + 59226688, + 59226704, + 58502336, + 59226672 ], "bases": [ { @@ -179312,7 +179312,7 @@ }, { "type_name": "CNmValueNode", - "vtable_address": 64908816, + "vtable_address": 64912720, "methods": [], "bases": [ { @@ -179334,7 +179334,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 66165248, + "vtable_address": 66169152, "methods": [], "bases": [], "model": { @@ -179345,7 +179345,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 66165376, + "vtable_address": 66169280, "methods": [], "bases": [], "model": { @@ -179356,7 +179356,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 66165504, + "vtable_address": 66169408, "methods": [], "bases": [], "model": { @@ -179367,7 +179367,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 66165632, + "vtable_address": 66169536, "methods": [], "bases": [], "model": { @@ -179378,7 +179378,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 66165760, + "vtable_address": 66169664, "methods": [], "bases": [], "model": { @@ -179389,7 +179389,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 66165888, + "vtable_address": 66169792, "methods": [], "bases": [], "model": { @@ -179400,20 +179400,20 @@ }, { "type_name": "CNmVectorCreateNode", - "vtable_address": 64920944, + "vtable_address": 64924848, "methods": [ - 58499456, - 58499472, - 58191168, - 58260368, - 58501008, - 58501040, - 58501328, - 58498672, - 58498880, - 58261328, - 58498976, - 58243712 + 58503360, + 58503376, + 58195072, + 58264272, + 58504912, + 58504944, + 58505232, + 58502576, + 58502784, + 58265232, + 58502880, + 58247616 ], "bases": [ { @@ -179457,16 +179457,16 @@ }, { "type_name": "CNmVectorCreateNode::CDefinition", - "vtable_address": 64942216, + "vtable_address": 64946120, "methods": [ - 59230656, - 59235904, - 59237088, - 59230480, - 59230560, - 59230608, - 58500608, - 59230496 + 59234560, + 59239808, + 59240992, + 59234384, + 59234464, + 59234512, + 58504512, + 59234400 ], "bases": [ { @@ -179510,20 +179510,20 @@ }, { "type_name": "CNmVectorInfoNode", - "vtable_address": 64920832, + "vtable_address": 64924736, "methods": [ - 58499328, - 58499344, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58498624, - 58498832, - 58261376, - 58499520, - 58243712 + 58503232, + 58503248, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58502528, + 58502736, + 58265280, + 58503424, + 58247616 ], "bases": [ { @@ -179567,16 +179567,16 @@ }, { "type_name": "CNmVectorInfoNode::CDefinition", - "vtable_address": 64942136, + "vtable_address": 64946040, "methods": [ - 59230640, - 59232048, - 59235120, - 59230448, - 59230544, - 59230592, - 58500512, - 59230464 + 59234544, + 59235952, + 59239024, + 59234352, + 59234448, + 59234496, + 58504416, + 59234368 ], "bases": [ { @@ -179620,20 +179620,20 @@ }, { "type_name": "CNmVectorNegateNode", - "vtable_address": 64921056, + "vtable_address": 64924960, "methods": [ - 58499392, - 58499408, - 58191168, - 58260368, - 58501008, - 58501040, - 58501328, - 58498784, - 58498832, - 58261328, - 58499200, - 58243712 + 58503296, + 58503312, + 58195072, + 58264272, + 58504912, + 58504944, + 58505232, + 58502688, + 58502736, + 58265232, + 58503104, + 58247616 ], "bases": [ { @@ -179677,16 +179677,16 @@ }, { "type_name": "CNmVectorNegateNode::CDefinition", - "vtable_address": 64942296, + "vtable_address": 64946200, "methods": [ - 59230672, - 59231248, - 59242528, - 59230512, - 59230576, - 59230624, - 58500800, - 59230528 + 59234576, + 59235152, + 59246432, + 59234416, + 59234480, + 59234528, + 58504704, + 59234432 ], "bases": [ { @@ -179730,7 +179730,7 @@ }, { "type_name": "CNmVectorValueNode", - "vtable_address": 64920816, + "vtable_address": 64924720, "methods": [], "bases": [ { @@ -179763,7 +179763,7 @@ }, { "type_name": "CNmVectorValueNode::CDefinition", - "vtable_address": 64942120, + "vtable_address": 64946024, "methods": [], "bases": [ { @@ -179796,9 +179796,9 @@ }, { "type_name": "CNmVectorValueNode::CDefinition", - "vtable_address": 66145632, + "vtable_address": 66149536, "methods": [ - 58856608 + 58860512 ], "bases": [], "model": { @@ -179809,22 +179809,22 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode", - "vtable_address": 64919096, + "vtable_address": 64923000, "methods": [ - 58422144, - 58422176, + 58426048, + 58426080, 16856208, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58421872, - 58382432, - 58421808, - 58421216, + 58425776, + 58386336, + 58425712, + 58425120, 16856096, - 58422576 + 58426480 ], "bases": [ { @@ -179879,16 +179879,16 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode::CDefinition", - "vtable_address": 64939488, + "vtable_address": 64943392, "methods": [ - 59102240, - 59103360, - 59110480, - 59101888, - 59101968, - 59102192, - 58423136, - 59101904 + 59106144, + 59107264, + 59114384, + 59105792, + 59105872, + 59106096, + 58427040, + 59105808 ], "bases": [ { @@ -179943,20 +179943,20 @@ }, { "type_name": "CNmVelocityBlendNode", - "vtable_address": 64908360, + "vtable_address": 64912264, "methods": [ - 58195424, - 58196272, - 58191328, + 58199328, + 58200176, + 58195232, 16856112, 16857296, - 58191376, - 58209424, + 58195280, + 58213328, 16857328, - 58191216, - 58191184, - 58209184, - 58211776, + 58195120, + 58195088, + 58213088, + 58215680, 16856096 ], "bases": [ @@ -180001,16 +180001,16 @@ }, { "type_name": "CNmVelocityBlendNode::CDefinition", - "vtable_address": 64928432, + "vtable_address": 64932336, "methods": [ - 58722880, - 58729088, - 58750416, - 58722848, - 58724176, - 58724448, - 58206848, - 58722864 + 58726784, + 58732992, + 58754320, + 58726752, + 58728080, + 58728352, + 58210752, + 58726768 ], "bases": [ { @@ -180054,20 +180054,20 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode", - "vtable_address": 64912992, - "methods": [ - 58306496, - 58304976, - 58191168, - 58243728, - 58501008, - 58501040, - 58501328, - 58303200, - 58304240, - 58243696, - 58305088, - 58243712 + "vtable_address": 64916896, + "methods": [ + 58310400, + 58308880, + 58195072, + 58247632, + 58504912, + 58504944, + 58505232, + 58307104, + 58308144, + 58247600, + 58308992, + 58247616 ], "bases": [ { @@ -180111,16 +180111,16 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode::CDefinition", - "vtable_address": 64932376, + "vtable_address": 64936280, "methods": [ - 58848752, - 58850368, - 58871808, - 58848208, - 58848400, - 58848576, - 58316192, - 58848224 + 58852656, + 58854272, + 58875712, + 58852112, + 58852304, + 58852480, + 58320096, + 58852128 ], "bases": [ { @@ -180164,20 +180164,20 @@ }, { "type_name": "CNmVirtualParameterBoolNode", - "vtable_address": 64912432, + "vtable_address": 64916336, "methods": [ - 58304336, - 58304352, - 58191168, - 58256512, - 58501008, - 58501040, - 58501328, - 58302960, - 58304240, - 58257552, - 58303552, - 58243712 + 58308240, + 58308256, + 58195072, + 58260416, + 58504912, + 58504944, + 58505232, + 58306864, + 58308144, + 58261456, + 58307456, + 58247616 ], "bases": [ { @@ -180221,16 +180221,16 @@ }, { "type_name": "CNmVirtualParameterBoolNode::CDefinition", - "vtable_address": 64931976, + "vtable_address": 64935880, "methods": [ - 58848672, - 58850592, - 58859488, - 58848048, - 58848320, - 58848432, - 58315728, - 58848064 + 58852576, + 58854496, + 58863392, + 58851952, + 58852224, + 58852336, + 58319632, + 58851968 ], "bases": [ { @@ -180274,20 +180274,20 @@ }, { "type_name": "CNmVirtualParameterFloatNode", - "vtable_address": 64912656, + "vtable_address": 64916560, "methods": [ - 58304592, - 58304608, - 58191168, - 58260352, - 58501008, - 58501040, - 58501328, - 58303056, - 58304240, - 58261376, - 58303760, - 58243712 + 58308496, + 58308512, + 58195072, + 58264256, + 58504912, + 58504944, + 58505232, + 58306960, + 58308144, + 58265280, + 58307664, + 58247616 ], "bases": [ { @@ -180331,16 +180331,16 @@ }, { "type_name": "CNmVirtualParameterFloatNode::CDefinition", - "vtable_address": 64932136, + "vtable_address": 64936040, "methods": [ - 58848704, - 58851040, - 58864416, - 58848112, - 58848352, - 58848496, - 58315904, - 58848128 + 58852608, + 58854944, + 58868320, + 58852016, + 58852256, + 58852400, + 58319808, + 58852032 ], "bases": [ { @@ -180384,20 +180384,20 @@ }, { "type_name": "CNmVirtualParameterIDNode", - "vtable_address": 64912544, + "vtable_address": 64916448, "methods": [ - 58304464, - 58304480, - 58191168, - 58260336, - 58501008, - 58501040, - 58501328, - 58303008, - 58304240, - 58261424, - 58303648, - 58243712 + 58308368, + 58308384, + 58195072, + 58264240, + 58504912, + 58504944, + 58505232, + 58306912, + 58308144, + 58265328, + 58307552, + 58247616 ], "bases": [ { @@ -180441,16 +180441,16 @@ }, { "type_name": "CNmVirtualParameterIDNode::CDefinition", - "vtable_address": 64932056, + "vtable_address": 64935960, "methods": [ - 58848688, - 58850816, - 58861952, - 58848080, - 58848336, - 58848464, - 58315808, - 58848096 + 58852592, + 58854720, + 58865856, + 58851984, + 58852240, + 58852368, + 58319712, + 58852000 ], "bases": [ { @@ -180494,20 +180494,20 @@ }, { "type_name": "CNmVirtualParameterTargetNode", - "vtable_address": 64912880, + "vtable_address": 64916784, "methods": [ - 58304848, - 58304864, - 58191168, - 58260384, - 58501008, - 58501040, - 58501328, - 58303152, - 58304288, - 58261248, - 58303968, - 58243712 + 58308752, + 58308768, + 58195072, + 58264288, + 58504912, + 58504944, + 58505232, + 58307056, + 58308192, + 58265152, + 58307872, + 58247616 ], "bases": [ { @@ -180551,16 +180551,16 @@ }, { "type_name": "CNmVirtualParameterTargetNode::CDefinition", - "vtable_address": 64932296, + "vtable_address": 64936200, "methods": [ - 58848736, - 58851488, - 58869344, - 58848176, - 58848384, - 58848560, - 58316080, - 58848192 + 58852640, + 58855392, + 58873248, + 58852080, + 58852288, + 58852464, + 58319984, + 58852096 ], "bases": [ { @@ -180604,20 +180604,20 @@ }, { "type_name": "CNmVirtualParameterVectorNode", - "vtable_address": 64912768, + "vtable_address": 64916672, "methods": [ - 58304720, - 58304736, - 58191168, - 58260368, - 58501008, - 58501040, - 58501328, - 58303104, - 58304240, - 58261328, - 58303856, - 58243712 + 58308624, + 58308640, + 58195072, + 58264272, + 58504912, + 58504944, + 58505232, + 58307008, + 58308144, + 58265232, + 58307760, + 58247616 ], "bases": [ { @@ -180661,16 +180661,16 @@ }, { "type_name": "CNmVirtualParameterVectorNode::CDefinition", - "vtable_address": 64932216, + "vtable_address": 64936120, "methods": [ - 58848720, - 58851264, - 58866880, - 58848144, - 58848368, - 58848528, - 58316000, - 58848160 + 58852624, + 58855168, + 58870784, + 58852048, + 58852272, + 58852432, + 58319904, + 58852064 ], "bases": [ { @@ -180714,20 +180714,20 @@ }, { "type_name": "CNmZeroPoseNode", - "vtable_address": 64917312, + "vtable_address": 64921216, "methods": [ - 58383312, - 58383344, - 58191168, + 58387216, + 58387248, + 58195072, 16856112, 16857296, - 58501680, - 58502752, + 58505584, + 58506656, 16857328, - 58500960, - 58382864, - 58382944, - 58384128, + 58504864, + 58386768, + 58386848, + 58388032, 16856096 ], "bases": [ @@ -180761,16 +180761,16 @@ }, { "type_name": "CNmZeroPoseNode::CDefinition", - "vtable_address": 64937816, + "vtable_address": 64941720, "methods": [ - 59043392, - 59043728, - 59045200, - 59043200, - 59043296, - 59043344, - 58383408, - 59043216 + 59047296, + 59047632, + 59049104, + 59047104, + 59047200, + 59047248, + 58387312, + 59047120 ], "bases": [ { @@ -180803,23 +180803,23 @@ }, { "type_name": "CNmZeroPoseTask", - "vtable_address": 64907144, + "vtable_address": 64911048, "methods": [ - 58120992, - 58121584, - 58121760, - 58120848, - 58153056, + 58124896, + 58125488, + 58125664, + 58124752, + 58156960, 16856128, 16856144, - 58120768, - 58120784, - 58120800, - 58120816, + 58124672, + 58124688, + 58124704, + 58124720, 16856160, - 58120832, + 58124736, 16856192, - 58153952 + 58157856 ], "bases": [ { @@ -180841,63 +180841,63 @@ }, { "type_name": "CNoClipCamera", - "vtable_address": 64173944, + "vtable_address": 64177848, "methods": [ - 21358000, - 21358176, - 21360624, - 21324944, - 21397264, - 21357088, - 21342272, - 21362896, - 21325248, - 21324576, - 21324592, - 21325280, - 21325312, - 21324640, - 21345712, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 21359856, - 21359920, - 21359984, - 21324768, - 21324784, - 21324464, - 21324800, - 21324816, - 21324480, - 21324496, - 21324512, - 21387680, - 21324528, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160, - 21325344, - 21339712 + 21360816, + 21360992, + 21363440, + 21327760, + 21400080, + 21359904, + 21345088, + 21365712, + 21328064, + 21327392, + 21327408, + 21328096, + 21328128, + 21327456, + 21348528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 21362672, + 21362736, + 21362800, + 21327584, + 21327600, + 21327280, + 21327616, + 21327632, + 21327296, + 21327312, + 21327328, + 21390496, + 21327344, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976, + 21328160, + 21342528 ], "bases": [ { @@ -180951,9 +180951,9 @@ }, { "type_name": "CNoClipCamera", - "vtable_address": 64174400, + "vtable_address": 64178304, "methods": [ - 21350112 + 21352928 ], "bases": [ { @@ -181007,7 +181007,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 63330200, + "vtable_address": 63334104, "methods": [ 12204192, 12204208, @@ -181130,7 +181130,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 63330768, + "vtable_address": 63334672, "methods": [ 13478768, 13265664, @@ -181189,7 +181189,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 63330824, + "vtable_address": 63334728, "methods": [ 13519648, 13215936, @@ -181247,23 +181247,23 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 64072584, - "methods": [ - 19538816, - 19538880, - 19743952, - 19360528, - 19360688, - 19360592, - 19360608, - 19360624, - 19360640, - 19360656, - 19360672, - 19360400, - 19360432, - 19360464, - 19360560 + "vtable_address": 64076488, + "methods": [ + 19541632, + 19541696, + 19746768, + 19363344, + 19363504, + 19363408, + 19363424, + 19363440, + 19363456, + 19363472, + 19363488, + 19363216, + 19363248, + 19363280, + 19363376 ], "bases": [ { @@ -181328,13 +181328,13 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 64072720, + "vtable_address": 64076624, "methods": [ 12204192, 12204208, 12204224, - 19360544, - 19391936, + 19363360, + 19394752, 12204272, 12204288, 12204304, @@ -181366,7 +181366,7 @@ 12204720, 12204736, 12204752, - 19360576, + 19363392, 12204784, 12204800, 12204816, @@ -181386,12 +181386,12 @@ 12205040, 12205056, 12205072, - 19360496, + 19363312, 12205104, - 19360448, - 19538848, - 19538944, - 19360416 + 19363264, + 19541664, + 19541760, + 19363232 ], "bases": [ { @@ -181456,23 +181456,23 @@ }, { "type_name": "COAuthToken_ImplicitGrantNoPrompt_Request", - "vtable_address": 63633456, + "vtable_address": 63637360, "methods": [ 16579760, 16622352, - 29643894, + 29647734, 16238352, 16701920, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15997616, 16341312, 12011504, 16076592, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016672, 15987744 @@ -181508,23 +181508,23 @@ }, { "type_name": "COAuthToken_ImplicitGrantNoPrompt_Response", - "vtable_address": 63633616, + "vtable_address": 63637520, "methods": [ 16579904, 16629664, - 29643894, + 29647734, 16238512, 16702128, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 15997600, 16341712, 12011504, 16096048, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016704, 15987760 @@ -181560,23 +181560,23 @@ }, { "type_name": "CP2P_Ping", - "vtable_address": 63527776, + "vtable_address": 63531680, "methods": [ 15632320, 15689808, - 29643894, + 29647734, 15153088, 15792656, 14796784, - 29646054, - 29642886, + 29649894, + 29646726, 14811488, 14852304, 15269152, 12011504, 14930080, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833536, 14796768 @@ -181612,14 +181612,14 @@ }, { "type_name": "CP2P_Ping_t", - "vtable_address": 64157896, + "vtable_address": 64161800, "methods": [ - 21140048, - 21140112, - 21135232, - 21135248, - 21135264, - 21140240 + 21142864, + 21142928, + 21138048, + 21138064, + 21138080, + 21143056 ], "bases": [ { @@ -181684,23 +181684,23 @@ }, { "type_name": "CP2P_Ping_t", - "vtable_address": 64157960, + "vtable_address": 64161864, "methods": [ - 21140080, - 21140176, - 29643894, + 21142896, + 21142992, + 29647734, 15153088, 15792656, 14796784, - 29646054, - 29642886, + 29649894, + 29646726, 14811488, 14852304, 15269152, 12011504, 14930080, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833536, 14796768 @@ -181768,23 +181768,23 @@ }, { "type_name": "CP2P_TextMessage", - "vtable_address": 63527296, + "vtable_address": 63531200, "methods": [ 15631872, 15712080, - 29643894, + 29647734, 15152608, 15808992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14852352, 15267760, 12011504, 14929120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833440, 14796720 @@ -181820,23 +181820,23 @@ }, { "type_name": "CP2P_VRAvatarPosition", - "vtable_address": 63528096, + "vtable_address": 63532000, "methods": [ 15632624, 15738656, - 29643894, + 29647734, 15153424, 15977056, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15981808, 14852288, 15534752, 12011504, 15002752, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833600, 14796816 @@ -181872,23 +181872,23 @@ }, { "type_name": "CP2P_VRAvatarPosition_COrientation", - "vtable_address": 63527936, + "vtable_address": 63531840, "methods": [ 15632448, 15744528, - 29643894, + 29647734, 15153248, 15974560, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15978640, 14846832, 15269728, 12011504, 14853520, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833568, 14796800 @@ -181924,23 +181924,23 @@ }, { "type_name": "CP2P_Voice", - "vtable_address": 63527616, + "vtable_address": 63531520, "methods": [ 15632160, 15747936, - 29643894, + 29647734, 15152928, 15973920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15974000, 14852320, 15268560, 12011504, 14925152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833504, 14796752 @@ -181976,14 +181976,14 @@ }, { "type_name": "CP2P_Voice_t", - "vtable_address": 64157360, + "vtable_address": 64161264, "methods": [ - 21139408, - 21139472, - 21135424, - 21135440, - 21135456, - 21139600 + 21142224, + 21142288, + 21138240, + 21138256, + 21138272, + 21142416 ], "bases": [ { @@ -182048,23 +182048,23 @@ }, { "type_name": "CP2P_Voice_t", - "vtable_address": 64157424, + "vtable_address": 64161328, "methods": [ - 21139440, - 21139536, - 29643894, + 21142256, + 21142352, + 29647734, 15152928, 15973920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15974000, 14852320, 15268560, 12011504, 14925152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833504, 14796752 @@ -182132,23 +182132,23 @@ }, { "type_name": "CP2P_WatchSynchronization", - "vtable_address": 63528256, + "vtable_address": 63532160, "methods": [ 15632784, 15689936, - 29643894, + 29647734, 15153584, 15792720, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811584, 14852272, 15270240, 12011504, 15090816, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833632, 14796832 @@ -182184,20 +182184,20 @@ }, { "type_name": "CP4File", - "vtable_address": 64945136, - "methods": [ - 59318560, - 59318608, - 59318064, - 59318144, - 59318208, - 59318288, - 59318352, - 59317984, - 59318432, - 59318496, - 59318672, - 59319376 + "vtable_address": 64949040, + "methods": [ + 59322464, + 59322512, + 59321968, + 59322048, + 59322112, + 59322192, + 59322256, + 59321888, + 59322336, + 59322400, + 59322576, + 59323280 ], "bases": [], "model": { @@ -182208,14 +182208,14 @@ }, { "type_name": "CPASAttenuationFilter", - "vtable_address": 63754600, + "vtable_address": 63758504, "methods": [ - 17287408, - 17288816, - 20081616, - 20081600, - 20081632, - 20081648 + 17289712, + 17291120, + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -182259,14 +182259,14 @@ }, { "type_name": "CPASFilter", - "vtable_address": 63336736, + "vtable_address": 63340640, "methods": [ 13820176, 13828912, - 20081616, - 20081600, - 20081632, - 20081648 + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -182299,14 +182299,14 @@ }, { "type_name": "CPVSFilter", - "vtable_address": 63684120, + "vtable_address": 63688024, "methods": [ 16907392, 16909104, - 20081616, - 20081600, - 20081632, - 20081648 + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -182339,28 +182339,28 @@ }, { "type_name": "CPanoramaMarshallHelper", - "vtable_address": 64520320, - "methods": [ - 25439504, - 25439536, - 25540784, - 25439552, - 25486688, - 25460400, - 25460528, - 25934752, - 25439552, - 25439568, - 25439584, - 25460592, - 25460672, - 25453952, - 25454064, - 25460752, - 25439600, - 25439616, - 25439616, - 25439552 + "vtable_address": 64524224, + "methods": [ + 25442512, + 25442544, + 25543792, + 25442560, + 25489696, + 25463408, + 25463536, + 25937760, + 25442560, + 25442576, + 25442592, + 25463600, + 25463680, + 25456960, + 25457072, + 25463760, + 25442608, + 25442624, + 25442624, + 25442560 ], "bases": [ { @@ -182382,7 +182382,7 @@ }, { "type_name": "CPanoramaWorldPanel", - "vtable_address": 63126072, + "vtable_address": 63129976, "methods": [ 12237088, 12237344, @@ -182421,7 +182421,7 @@ }, { "type_name": "CPanoramaWorldPanelSceneObject", - "vtable_address": 63126360, + "vtable_address": 63130264, "methods": [ 12263968, 12264128, @@ -182459,7 +182459,7 @@ }, { "type_name": "CPanoramaWorldPanelSceneObjectDesc", - "vtable_address": 63126408, + "vtable_address": 63130312, "methods": [ 12237312, 12316208, @@ -182516,7 +182516,7 @@ }, { "type_name": "CPanoramaWorldPanelSystem", - "vtable_address": 63125464, + "vtable_address": 63129368, "methods": [ 12204192, 12204208, @@ -182612,7 +182612,7 @@ }, { "type_name": "CPanoramaWorldPanel_CPanoramaProceduralLayer", - "vtable_address": 63126216, + "vtable_address": 63130120, "methods": [ 12237120, 12237104, @@ -182639,11 +182639,11 @@ }, { "type_name": "CParallelProcessorAbstract >", - "vtable_address": 64143112, + "vtable_address": 64147016, "methods": [ - 20573088, - 20575744, - 20596896 + 20575904, + 20578560, + 20599712 ], "bases": [ { @@ -182675,11 +182675,11 @@ }, { "type_name": "CParallelProcessorAbstract, 1> >", - "vtable_address": 64144328, + "vtable_address": 64148232, "methods": [ - 20573120, - 20575712, - 20588480 + 20575936, + 20578528, + 20591296 ], "bases": [ { @@ -182711,9 +182711,9 @@ }, { "type_name": "CParticleCluster", - "vtable_address": 64053576, + "vtable_address": 64057480, "methods": [ - 19208512 + 19211328 ], "bases": [], "model": { @@ -182724,10 +182724,10 @@ }, { "type_name": "CParticleMgr", - "vtable_address": 64951064, + "vtable_address": 64954968, "methods": [ - 59611040, - 59612016 + 59614944, + 59615920 ], "bases": [], "model": { @@ -182738,11 +182738,11 @@ }, { "type_name": "CParticleShadowRenderer", - "vtable_address": 64625904, + "vtable_address": 64629808, "methods": [ - 28510816, - 28353360, - 28353856, + 28514208, + 28356752, + 28357248, 12236576 ], "bases": [ @@ -182765,100 +182765,100 @@ }, { "type_name": "CParticleSystemQuery", - "vtable_address": 64084296, + "vtable_address": 64088200, "methods": [ - 19900656, - 20080144, - 19876176, - 19880480, - 19919328, - 19945632, - 19878336, + 19903472, + 20082960, + 19878992, + 19883296, + 19922144, + 19948448, + 19881152, + 19881216, + 19941120, + 19951296, + 19952736, + 19950272, + 19904624, + 19945600, + 19940560, + 19885072, + 19930608, + 19912400, + 19913664, + 19878048, + 19903632, + 19905216, + 19878768, + 19950064, + 19918832, + 19881504, + 19904384, + 19949904, + 19878144, + 19878192, + 19878240, + 19878352, 19878400, - 19938304, - 19948480, - 19949920, - 19947456, - 19901808, - 19942784, - 19937744, - 19882256, - 19927792, - 19909584, - 19910848, - 19875232, - 19900816, - 19902400, - 19875952, - 19947248, - 19916016, - 19878688, - 19901568, - 19947088, - 19875328, - 19875376, - 19875424, - 19875536, - 19875584, - 19875632, - 19875680, - 19875728, - 20018080, - 19990976, - 19894992, - 19878656, + 19878448, + 19878496, + 19878544, + 20020896, + 19993792, + 19897808, + 19881472, + 19881488, + 19877744, + 19877760, + 19884608, + 19947568, + 19878800, + 19883200, + 19889456, + 19890864, + 19877920, + 19877936, + 19946720, + 19878032, + 19883248, + 19878816, + 19878832, + 19878752, + 19885760, + 19879520, + 19878912, + 19879488, + 19906048, + 19877776, + 19878928, + 19878944, + 19878960, + 19947888, + 19948096, + 19877792, + 19878976, + 19883632, + 19884464, + 19904960, + 19877808, + 19923936, + 19878592, + 19878608, 19878672, - 19874928, - 19874944, - 19881792, - 19944752, - 19875984, - 19880384, - 19886640, - 19888048, - 19875104, - 19875120, - 19943904, - 19875216, - 19880432, - 19876000, - 19876016, - 19875936, - 19882944, - 19876704, - 19876096, - 19876672, - 19903232, - 19874960, - 19876112, - 19876128, - 19876144, - 19945072, - 19945280, - 19874976, - 19876160, - 19880816, - 19881648, - 19902144, - 19874992, - 19921120, - 19875776, - 19875792, - 19875856, - 19875888, - 19875904, - 19875824, - 19875808, - 19875840, - 19875920, - 19875872, - 19916192, - 20063648, - 19901216, - 19876672, + 19878704, + 19878720, + 19878640, 19878624, - 19878768, - 19875968 + 19878656, + 19878736, + 19878688, + 19919008, + 20066464, + 19904032, + 19879488, + 19881440, + 19881584, + 19878784 ], "bases": [ { @@ -182891,7 +182891,7 @@ }, { "type_name": "CParticleSystemQueryGameSystem", - "vtable_address": 64083688, + "vtable_address": 64087592, "methods": [ 12204192, 12204208, @@ -182908,10 +182908,10 @@ 12204384, 12204400, 12204416, - 20015616, + 20018432, 12204448, 12204464, - 20004160, + 20006976, 12204496, 12204512, 12204528, @@ -182922,7 +182922,7 @@ 12204608, 12204624, 12204640, - 19891488, + 19894304, 12204672, 12204688, 12204704, @@ -182949,12 +182949,12 @@ 12205040, 12205056, 12205072, - 19875184, + 19878000, 12205104, - 19875168, - 19989664, - 19989936, - 19875152 + 19877984, + 19992480, + 19992752, + 19877968 ], "bases": [ { @@ -182987,35 +182987,35 @@ }, { "type_name": "CParticlesLibHost_Client", - "vtable_address": 64197352, - "methods": [ - 21708704, - 21708704, - 21705600, - 21705616, - 21708720, - 21705632, - 21705648, - 21708768, - 21708864, - 21708880, - 21708896, - 21708912, - 21708928, - 21724256, - 21708944, - 21708976, - 21708992, - 21726800, - 21789504, - 21723728, - 21721888, - 21708688, - 21705584, - 21724864, - 21722976, - 21705568, - 21723840 + "vtable_address": 64201256, + "methods": [ + 21711520, + 21711520, + 21708416, + 21708432, + 21711536, + 21708448, + 21708464, + 21711584, + 21711680, + 21711696, + 21711712, + 21711728, + 21711744, + 21727072, + 21711760, + 21711792, + 21711808, + 21729616, + 21792320, + 21726544, + 21724704, + 21711504, + 21708400, + 21727680, + 21725792, + 21708384, + 21726656 ], "bases": [ { @@ -183037,11 +183037,11 @@ }, { "type_name": "CPathQueryComponent", - "vtable_address": 64085048, + "vtable_address": 64088952, "methods": [ 14514240, - 19876192, - 19904128 + 19879008, + 19906944 ], "bases": [ { @@ -183073,7 +183073,7 @@ }, { "type_name": "CPathQueryUtil", - "vtable_address": 65523712, + "vtable_address": 65527616, "methods": [], "bases": [], "model": { @@ -183084,33 +183084,33 @@ }, { "type_name": "CPathSimple", - "vtable_address": 63472376, + "vtable_address": 63476280, "methods": [ 14367152, 14525440, 14524656, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 20070624, - 21132352, - 21132672, - 21132336, - 20080800, - 21128960, - 21133440, + 21127072, + 20073440, + 21135168, + 21135488, + 21135152, + 20083616, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -183119,23 +183119,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 19957712, + 40000032, + 19960528, 14552416, 14514256, 12234080, 14536320, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -183152,13 +183152,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -183166,39 +183166,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, - 19958256, - 20572032, + 19961072, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -183212,33 +183212,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -183266,9 +183266,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -183276,24 +183276,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -183305,12 +183305,12 @@ 12572832, 12572912, 12235344, - 20048576, - 19881728, - 19958368, - 19959008, - 19959616, - 20044912, + 20051392, + 19884544, + 19961184, + 19961824, + 19962432, + 20047728, 14513904 ], "bases": [ @@ -183354,15 +183354,15 @@ }, { "type_name": "CPathSimple", - "vtable_address": 63474200, + "vtable_address": 63478104, "methods": [ 14525072, 14524272, - 19958272, - 19958992, - 19959584, - 19960192, - 20045888 + 19961088, + 19961808, + 19962400, + 19963008, + 20048704 ], "bases": [ { @@ -183405,13 +183405,13 @@ }, { "type_name": "CPawnListGameSystem", - "vtable_address": 64093256, + "vtable_address": 64097160, "methods": [ 12204192, 12204208, 12204224, 12204240, - 20083392, + 20086208, 12204272, 12204288, 12204304, @@ -183463,12 +183463,12 @@ 12205040, 12205056, 12205072, - 20085552, + 20088368, 12205104, - 20084976, - 20083072, - 20083088, - 20081488 + 20087792, + 20085888, + 20085904, + 20084304 ], "bases": [ { @@ -183501,7 +183501,7 @@ }, { "type_name": "CPerFrameConCommandSystem", - "vtable_address": 64085152, + "vtable_address": 64089056, "methods": [ 17121696, 17121760, @@ -183516,17 +183516,17 @@ 17121056, 17121072, 17121088, - 19876208, - 19877696, - 19877712, + 19879024, + 19880512, + 19880528, 17121104, 17121120, 17121136, - 20063328, + 20066144, 17121152, 17121168, - 20007776, - 20007936 + 20010592, + 20010752 ], "bases": [ { @@ -183636,12 +183636,12 @@ }, { "type_name": "CPhysObjSaveRestoreOps", - "vtable_address": 64200152, + "vtable_address": 64204056, "methods": [ - 21850976, - 21981632, - 21815504, - 21818000, + 21853792, + 21984512, + 21818320, + 21820832, 12233776, 12233792 ], @@ -183676,9 +183676,9 @@ }, { "type_name": "CPhysPropClientsideDestroyFilter", - "vtable_address": 64200256, + "vtable_address": 64204160, "methods": [ - 21818112 + 21820944 ], "bases": [ { @@ -183700,11 +183700,11 @@ }, { "type_name": "CPhysPropEntitySpawnFilter", - "vtable_address": 64200216, + "vtable_address": 64204120, "methods": [ - 21816976, - 21818320, - 21842784 + 21819808, + 21821152, + 21845600 ], "bases": [ { @@ -183726,17 +183726,17 @@ }, { "type_name": "CPhysSaveRestoreBlockHandler", - "vtable_address": 64200064, + "vtable_address": 64203968, "methods": [ - 21815360, - 21815376, - 21965888, - 21849984, - 21815408, - 21815488, - 21850080, - 21871520, - 21929344 + 21818176, + 21818192, + 21968768, + 21852800, + 21818224, + 21818304, + 21852896, + 21874400, + 21932224 ], "bases": [ { @@ -183769,18 +183769,18 @@ }, { "type_name": "CPhysicsBodyGameMarkupData", - "vtable_address": 63401448, + "vtable_address": 63405352, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65488152 + "offset_to_top": 65492056 } } }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 63339168, + "vtable_address": 63343072, "methods": [ 12204192, 12204208, @@ -183876,7 +183876,7 @@ }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 63339688, + "vtable_address": 63343592, "methods": [ 13890768 ], @@ -183910,7 +183910,7 @@ }, { "type_name": "CPhysicsGameSystem::PhysicsWorld_t", - "vtable_address": 63338992, + "vtable_address": 63342896, "methods": [ 13820464, 13828848 @@ -183924,7 +183924,7 @@ }, { "type_name": "CPhysicsSystem", - "vtable_address": 64197680, + "vtable_address": 64201584, "methods": [ 12204192, 12204208, @@ -183933,7 +183933,7 @@ 12204256, 12204272, 12204288, - 21704768, + 21707584, 12204320, 12204336, 12204352, @@ -183982,12 +183982,12 @@ 12205040, 12205056, 12205072, - 21705696, + 21708512, 12205104, - 21705680, - 21709008, - 21709024, - 21705664 + 21708496, + 21711824, + 21711840, + 21708480 ], "bases": [ { @@ -184009,23 +184009,23 @@ }, { "type_name": "CPlayerControllerComponent", - "vtable_address": 64092896, - "methods": [ - 20082224, - 20081408, - 20081360, - 20088400, - 20088848, - 18355152, - 18355168, - 18355184, - 18355200, - 18355216, - 18355232, - 18355248, - 18355264, - 18355280, - 20081344 + "vtable_address": 64096800, + "methods": [ + 20085040, + 20084224, + 20084176, + 20091216, + 20091664, + 18357456, + 18357472, + 18357488, + 18357504, + 18357520, + 18357536, + 18357552, + 18357568, + 18357584, + 20084160 ], "bases": [], "model": { @@ -184036,11 +184036,11 @@ }, { "type_name": "CPlayerHealthGlowRenderer", - "vtable_address": 64625952, + "vtable_address": 64629856, "methods": [ - 28726720, - 28332752, - 28334128, + 28730432, + 28336144, + 28337520, 12236576 ], "bases": [ @@ -184063,13 +184063,13 @@ }, { "type_name": "CPlayerInventory", - "vtable_address": 64584208, + "vtable_address": 64588112, "methods": [ - 27671312, - 27671568, - 27335232, - 27672160, - 27280544 + 27674576, + 27674832, + 27338432, + 27675424, + 27283712 ], "bases": [ { @@ -184091,34 +184091,34 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 64093032, - "methods": [ - 20082240, - 20081472, - 20081424, - 20088144, - 20088464, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 20080928 + "vtable_address": 64096936, + "methods": [ + 20085056, + 20084288, + 20084240, + 20090960, + 20091280, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 20083744 ], "bases": [], "model": { @@ -184129,7 +184129,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 65670624, + "vtable_address": 65674528, "methods": [], "bases": [], "model": { @@ -184140,7 +184140,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 65790144, + "vtable_address": 65794048, "methods": [], "bases": [], "model": { @@ -184151,7 +184151,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 65795424, + "vtable_address": 65799328, "methods": [], "bases": [], "model": { @@ -184162,7 +184162,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 65809728, + "vtable_address": 65813632, "methods": [], "bases": [], "model": { @@ -184173,7 +184173,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 65809984, + "vtable_address": 65813888, "methods": [], "bases": [], "model": { @@ -184184,7 +184184,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 65934688, + "vtable_address": 65938592, "methods": [], "bases": [], "model": { @@ -184195,10 +184195,10 @@ }, { "type_name": "CPlayerVisibilityDataColorSceneObject", - "vtable_address": 64357728, + "vtable_address": 64361632, "methods": [ - 23276144, - 23276880, + 23278896, + 23279632, 12011888, 12011520 ], @@ -184222,14 +184222,14 @@ }, { "type_name": "CPlayerVisibilityDataColorSceneObjectDesc", - "vtable_address": 64357824, + "vtable_address": 64361728, "methods": [ - 23274816, + 23277568, 12011552, - 23274848, + 23277600, 12011584, - 23305600, - 23276672, + 23308352, + 23279424, 12011600, 12011616, 12011632, @@ -184246,7 +184246,7 @@ 12011808, 12011824, 12011840, - 23276704 + 23279456 ], "bases": [ { @@ -184279,10 +184279,10 @@ }, { "type_name": "CPlayerVisibilityStencilProxySceneObject", - "vtable_address": 64357776, + "vtable_address": 64361680, "methods": [ - 23290448, - 23293248, + 23293200, + 23296000, 12011888, 12011520 ], @@ -184306,14 +184306,14 @@ }, { "type_name": "CPlayerVisibilityStencilProxySceneObjectDesc", - "vtable_address": 64358024, + "vtable_address": 64361928, "methods": [ - 23274832, - 23376832, - 23274992, + 23277584, + 23379584, + 23277744, 12011584, 12019328, - 23276640, + 23279392, 12011600, 12011616, 12011632, @@ -184330,7 +184330,7 @@ 12011808, 12011824, 12011840, - 23284544 + 23287296 ], "bases": [ { @@ -184363,23 +184363,23 @@ }, { "type_name": "CPlayer_AcceptSSA_Request", - "vtable_address": 63635856, + "vtable_address": 63639760, "methods": [ 16051344, 16051360, - 29643894, + 29647734, 16240640, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017152, 15988608 @@ -184426,23 +184426,23 @@ }, { "type_name": "CPlayer_AcceptSSA_Response", - "vtable_address": 63636016, + "vtable_address": 63639920, "methods": [ 16051280, 16051296, - 29643894, + 29647734, 16240768, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017184, 15988624 @@ -184489,23 +184489,23 @@ }, { "type_name": "CPlayer_AddFriend_Request", - "vtable_address": 63637456, + "vtable_address": 63641360, "methods": [ 16582192, 16609264, - 29643894, + 29647734, 16242048, 16682544, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999248, 15997424, 16349328, 12011504, 16053840, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017472, 15988768 @@ -184541,23 +184541,23 @@ }, { "type_name": "CPlayer_AddFriend_Response", - "vtable_address": 63637616, + "vtable_address": 63641520, "methods": [ 16582320, 16609392, - 29643894, + 29647734, 16242176, 16682592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000224, 15997408, 16349648, 12011504, 16082432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017504, 15988784 @@ -184593,50 +184593,50 @@ }, { "type_name": "CPlayer_CameraServices", - "vtable_address": 64086136, - "methods": [ - 19877904, - 19876304, - 19876288, - 19907168, - 19908304, - 19893440, - 19876592, - 17864800, - 17864816, - 17864832, - 19968672, - 19876592, - 17865152, - 19876592, - 17864912, - 17864928, - 17864944, - 17864960, - 19887792, - 19963824, - 19901408, - 19970288, - 19968688, - 19991616, - 17865072, - 19878864, - 17875008, - 17865184, - 19897792, - 19887600, - 20059616, - 19915568, - 19913152, - 19876256, - 19876672, - 19876416, - 19876272, - 17865168, - 19876320, - 19876368, - 19876400, - 17865200 + "vtable_address": 64090040, + "methods": [ + 19880720, + 19879120, + 19879104, + 19909984, + 19911120, + 19896256, + 19879408, + 17867104, + 17867120, + 17867136, + 19971488, + 19879408, + 17867456, + 19879408, + 17867216, + 17867232, + 17867248, + 17867264, + 19890608, + 19966640, + 19904224, + 19973104, + 19971504, + 19994432, + 17867376, + 19881680, + 17877312, + 17867488, + 19900608, + 19890416, + 20062432, + 19918384, + 19915968, + 19879072, + 19879488, + 19879232, + 19879088, + 17867472, + 19879136, + 19879184, + 19879216, + 17867504 ], "bases": [ { @@ -184658,23 +184658,23 @@ }, { "type_name": "CPlayer_CameraServices", - "vtable_address": 64088880, + "vtable_address": 64092784, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65790016 + "offset_to_top": 65793920 } } }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_PlayerFog", - "vtable_address": 64085360, + "vtable_address": 64089264, "methods": [ 13131648, - 19882816, - 19875008, - 19878880 + 19885632, + 19877824, + 19881696 ], "bases": [ { @@ -184696,12 +184696,12 @@ }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_audio", - "vtable_address": 64085408, + "vtable_address": 64089312, "methods": [ - 19877888, - 19882880, - 19876240, - 19878896 + 19880704, + 19885696, + 19879056, + 19881712 ], "bases": [ { @@ -184723,23 +184723,23 @@ }, { "type_name": "CPlayer_CommunityPreferences", - "vtable_address": 63638576, + "vtable_address": 63642480, "methods": [ 16582960, 16610032, - 29643894, + 29647734, 16243040, 16682864, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000384, 15995008, 16352016, 12011504, 16108960, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017696, 15988880 @@ -184775,23 +184775,23 @@ }, { "type_name": "CPlayer_GetCommunityPreferences_Request", - "vtable_address": 63638416, + "vtable_address": 63642320, "methods": [ 16051024, 16051040, - 29643894, + 29647734, 16242880, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017664, 15988864 @@ -184838,23 +184838,23 @@ }, { "type_name": "CPlayer_GetCommunityPreferences_Response", - "vtable_address": 63638736, + "vtable_address": 63642640, "methods": [ 16642400, 16661872, - 29643894, + 29647734, 16243168, 16723312, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16079248, 15997328, 16352864, 12011504, 16044464, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017728, 15988896 @@ -184890,23 +184890,23 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Request", - "vtable_address": 63634256, + "vtable_address": 63638160, "methods": [ 16580368, 16608368, - 29643894, + 29647734, 16239104, 16682144, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999872, 15997568, 16342816, 12011504, 16073760, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016832, 15988448 @@ -184942,23 +184942,23 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Response", - "vtable_address": 63634736, + "vtable_address": 63638640, "methods": [ 16654288, 16654816, - 29643894, + 29647734, 16239584, 16725920, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006848, 15997552, 16472816, 12011504, 16046256, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016928, 15988496 @@ -184994,23 +184994,23 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Response_FriendsGameplayInfo", - "vtable_address": 63634416, + "vtable_address": 63638320, "methods": [ 16580496, 16608496, - 29643894, + 29647734, 16239264, 16682192, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999920, 15994928, 16343296, 12011504, 16098688, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016864, 15988464 @@ -185046,23 +185046,23 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Response_OwnGameplayInfo", - "vtable_address": 63634576, + "vtable_address": 63638480, "methods": [ 16580624, 16608624, - 29643894, + 29647734, 16239408, 16682256, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000016, 15994912, 16343888, 12011504, 16125056, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016896, 15988480 @@ -185098,23 +185098,23 @@ }, { "type_name": "CPlayer_GetGameBadgeLevels_Request", - "vtable_address": 63634896, + "vtable_address": 63638800, "methods": [ 16580752, 16608752, - 29643894, + 29647734, 16239728, 16682320, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000128, 15997536, 16344704, 12011504, 16073984, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016960, 15988512 @@ -185150,23 +185150,23 @@ }, { "type_name": "CPlayer_GetGameBadgeLevels_Response", - "vtable_address": 63635216, + "vtable_address": 63639120, "methods": [ 16581008, 16636928, - 29643894, + 29647734, 16240048, 16713680, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16061136, 15997520, 16473952, 12011504, 16083296, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017024, 15988544 @@ -185202,23 +185202,23 @@ }, { "type_name": "CPlayer_GetGameBadgeLevels_Response_Badge", - "vtable_address": 63635056, + "vtable_address": 63638960, "methods": [ 16580880, 16608880, - 29643894, + 29647734, 16239872, 16682368, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025760, 15994944, 16345184, 12011504, 16113568, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016992, 15988528 @@ -185254,23 +185254,23 @@ }, { "type_name": "CPlayer_GetLastPlayedTimes_Request", - "vtable_address": 63635376, + "vtable_address": 63639280, "methods": [ 16581168, 16609008, - 29643894, + 29647734, 16240192, 16682432, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000176, 15997504, 16345888, 12011504, 16074208, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017056, 15988560 @@ -185306,23 +185306,23 @@ }, { "type_name": "CPlayer_GetLastPlayedTimes_Response", - "vtable_address": 63635696, + "vtable_address": 63639600, "methods": [ 16581424, 16637104, - 29643894, + 29647734, 16240512, 16713136, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16066816, 15997488, 16474608, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16017120, 15988592 @@ -185358,23 +185358,23 @@ }, { "type_name": "CPlayer_GetLastPlayedTimes_Response_Game", - "vtable_address": 63635536, + "vtable_address": 63639440, "methods": [ 16581296, 16609136, - 29643894, + 29647734, 16240336, 16682480, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025872, 15994960, 16346368, 12011504, 16139008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017088, 15988576 @@ -185410,23 +185410,23 @@ }, { "type_name": "CPlayer_GetMutualFriendsForIncomingInvites_Request", - "vtable_address": 63633776, + "vtable_address": 63637680, "methods": [ 16051408, 16051424, - 29643894, + 29647734, 16238640, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16016736, 15988400 @@ -185473,23 +185473,23 @@ }, { "type_name": "CPlayer_GetMutualFriendsForIncomingInvites_Response", - "vtable_address": 63634096, + "vtable_address": 63638000, "methods": [ 16580208, 16636752, - 29643894, + 29647734, 16238960, 16712576, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16059008, 15997584, 16472352, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16016800, 15988432 @@ -185525,23 +185525,23 @@ }, { "type_name": "CPlayer_GetNewSteamAnnouncementState_Request", - "vtable_address": 63639216, + "vtable_address": 63643120, "methods": [ 16583088, 16610160, - 29643894, + 29647734, 16243568, 16682944, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026032, 15997296, 16353696, 12011504, 16078816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017824, 15988944 @@ -185577,23 +185577,23 @@ }, { "type_name": "CPlayer_GetNewSteamAnnouncementState_Response", - "vtable_address": 63639376, + "vtable_address": 63643280, "methods": [ 16583216, 16629824, - 29643894, + 29647734, 16243728, 16702752, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035120, 15997280, 16354176, 12011504, 16142528, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017856, 15988960 @@ -185629,23 +185629,23 @@ }, { "type_name": "CPlayer_GetNicknameList_Request", - "vtable_address": 63636176, + "vtable_address": 63640080, "methods": [ 16051216, 16051232, - 29643894, + 29647734, 16240896, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017216, 15988640 @@ -185692,23 +185692,23 @@ }, { "type_name": "CPlayer_GetNicknameList_Response", - "vtable_address": 63636496, + "vtable_address": 63640400, "methods": [ 16581728, 16637280, - 29643894, + 29647734, 16241216, 16712768, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16059520, 15997472, 16475072, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16017280, 15988672 @@ -185744,23 +185744,23 @@ }, { "type_name": "CPlayer_GetNicknameList_Response_PlayerNickname", - "vtable_address": 63636336, + "vtable_address": 63640240, "methods": [ 16581584, 16622672, - 29643894, + 29647734, 16241040, 16702256, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16009824, 15994976, 16347056, 12011504, 16080368, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017248, 15988656 @@ -185796,23 +185796,23 @@ }, { "type_name": "CPlayer_GetPerFriendPreferences_Request", - "vtable_address": 63636656, + "vtable_address": 63640560, "methods": [ 16051152, 16051168, - 29643894, + 29647734, 16241344, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017312, 15988688 @@ -185859,23 +185859,23 @@ }, { "type_name": "CPlayer_GetPerFriendPreferences_Response", - "vtable_address": 63636976, + "vtable_address": 63640880, "methods": [ 16582032, 16637456, - 29643894, + 29647734, 16241664, 16718848, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16174672, 15997456, 16475536, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16017376, 15988720 @@ -185911,23 +185911,23 @@ }, { "type_name": "CPlayer_IgnoreFriend_Request", - "vtable_address": 63638096, + "vtable_address": 63642000, "methods": [ 16582704, 16609776, - 29643894, + 29647734, 16242608, 16682752, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999280, 15997360, 16351040, 12011504, 16056112, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017600, 15988832 @@ -185963,23 +185963,23 @@ }, { "type_name": "CPlayer_IgnoreFriend_Response", - "vtable_address": 63638256, + "vtable_address": 63642160, "methods": [ 16582832, 16609904, - 29643894, + 29647734, 16242752, 16682816, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000336, 15997344, 16351536, 12011504, 16074656, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017632, 15988848 @@ -186015,23 +186015,23 @@ }, { "type_name": "CPlayer_IncomingInviteMutualFriendList", - "vtable_address": 63633936, + "vtable_address": 63637840, "methods": [ 16580064, 16622512, - 29643894, + 29647734, 16238784, 16682096, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16022992, 15994896, 16342176, 12011504, 16064160, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016768, 15988416 @@ -186067,34 +186067,34 @@ }, { "type_name": "CPlayer_ItemServices", - "vtable_address": 64087160, - "methods": [ - 19877936, - 19876544, - 19876496, - 19897632, - 19897920, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 19878864 + "vtable_address": 64091064, + "methods": [ + 19880752, + 19879360, + 19879312, + 19900448, + 19900736, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 19881680 ], "bases": [ { @@ -186116,55 +186116,55 @@ }, { "type_name": "CPlayer_MovementServices", - "vtable_address": 64087384, - "methods": [ - 19877952, - 19876576, - 19876560, - 19897712, - 19898032, - 19876592, - 19876608, - 19879840, - 17864816, - 19879744, - 17864848, - 17864864, - 17864880, - 19973680, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 19878864, - 19971632, - 17865312, - 19978944, - 19875024, - 17865328, - 19880000, - 19875040, - 20011664, - 19876672, - 19876688, - 19876704, - 20032000, - 17865344, - 17865360, - 19880176, - 19880144, - 19875056, - 17865376, - 19876720, - 19908352, - 17865392 + "vtable_address": 64091288, + "methods": [ + 19880768, + 19879392, + 19879376, + 19900528, + 19900848, + 19879408, + 19879424, + 19882656, + 17867120, + 19882560, + 17867152, + 17867168, + 17867184, + 19976496, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 19881680, + 19974448, + 17867616, + 19981760, + 19877840, + 17867632, + 19882816, + 19877856, + 20014480, + 19879488, + 19879504, + 19879520, + 20034816, + 17867648, + 17867664, + 19882992, + 19882960, + 19877872, + 17867680, + 19879536, + 19911168, + 17867696 ], "bases": [ { @@ -186186,18 +186186,18 @@ }, { "type_name": "CPlayer_MovementServices", - "vtable_address": 64088648, + "vtable_address": 64092552, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 19886752 + "offset_to_top": 19889568 } } }, { "type_name": "CPlayer_MovementServices", - "vtable_address": 65668352, + "vtable_address": 65672256, "methods": [], "bases": [], "model": { @@ -186208,66 +186208,66 @@ }, { "type_name": "CPlayer_MovementServices_Humanoid", - "vtable_address": 64091184, - "methods": [ - 20082144, - 19980336, - 19980320, - 19980800, - 19980880, - 19876592, - 19980992, - 19879840, - 17864816, - 19981248, - 19981344, - 19982352, - 18120016, - 19982864, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 19985344, - 17865056, - 17865072, - 20136768, - 19971632, - 17865312, - 19978944, - 19875024, - 17865328, - 19880000, - 19875040, - 20011664, - 19876672, - 19876688, - 19876704, - 20032000, - 17865344, - 17865360, - 19880176, - 19880144, - 19982560, - 17865376, - 19876720, - 19908352, - 19986832, - 19986752, - 19982048, - 18120032, - 19983440, - 19985040, - 19986064, - 19876736, - 19986560, - 19983472, - 19982976, - 18120048 + "vtable_address": 64095088, + "methods": [ + 20084960, + 19983152, + 19983136, + 19983616, + 19983696, + 19879408, + 19983808, + 19882656, + 17867120, + 19984064, + 19984160, + 19985168, + 18122320, + 19985680, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 19988160, + 17867360, + 17867376, + 20139584, + 19974448, + 17867616, + 19981760, + 19877840, + 17867632, + 19882816, + 19877856, + 20014480, + 19879488, + 19879504, + 19879520, + 20034816, + 17867648, + 17867664, + 19882992, + 19882960, + 19985376, + 17867680, + 19879536, + 19911168, + 19989648, + 19989568, + 19984864, + 18122336, + 19986256, + 19987856, + 19988880, + 19879552, + 19989376, + 19986288, + 19985792, + 18122352 ], "bases": [ { @@ -186300,59 +186300,59 @@ }, { "type_name": "CPlayer_ObserverServices", - "vtable_address": 64091664, - "methods": [ - 20082160, - 20081104, - 20081056, - 20088208, - 20088560, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 20081664, + "vtable_address": 64095568, + "methods": [ + 20084976, + 20083920, + 20083872, + 20091024, + 20091376, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 20084480, 12044032, - 20089088, + 20091904, 13876656, - 20089712, - 20085120, - 20094832, - 20122448, - 20081120, - 20122256, - 20082288, - 20089200, - 20089408, - 20126448, - 20122288, - 20122816, - 20087456, - 20081664, - 20091168, - 20080944, - 20080960, - 20125744, - 20090192, - 20091888, - 20124112, - 20090544 + 20092528, + 20087936, + 20097648, + 20125264, + 20083936, + 20125072, + 20085104, + 20092016, + 20092224, + 20129264, + 20125104, + 20125632, + 20090272, + 20084480, + 20093984, + 20083760, + 20083776, + 20128560, + 20093008, + 20094704, + 20126928, + 20093360 ], "bases": [ { @@ -186374,34 +186374,34 @@ }, { "type_name": "CPlayer_ObserverServices", - "vtable_address": 64094352, + "vtable_address": 64098256, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65809600 + "offset_to_top": 65813504 } } }, { "type_name": "CPlayer_RemoveFriend_Request", - "vtable_address": 63637776, + "vtable_address": 63641680, "methods": [ 16582448, 16609520, - 29643894, + 29647734, 16242304, 16682656, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999248, 15997392, 16350240, 12011504, 16053952, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017536, 15988800 @@ -186437,23 +186437,23 @@ }, { "type_name": "CPlayer_RemoveFriend_Response", - "vtable_address": 63637936, + "vtable_address": 63641840, "methods": [ 16582576, 16609648, - 29643894, + 29647734, 16242448, 16682704, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000288, 15997376, 16350560, 12011504, 16074432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017568, 15988816 @@ -186489,23 +186489,23 @@ }, { "type_name": "CPlayer_SetCommunityPreferences_Request", - "vtable_address": 63638896, + "vtable_address": 63642800, "methods": [ 16642016, 16662256, - 29643894, + 29647734, 16243296, 16723440, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16079392, 15997312, 16353280, 12011504, 16044560, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017760, 15988912 @@ -186541,23 +186541,23 @@ }, { "type_name": "CPlayer_SetCommunityPreferences_Response", - "vtable_address": 63639056, + "vtable_address": 63642960, "methods": [ 16050960, 16050976, - 29643894, + 29647734, 16243424, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017792, 15988928 @@ -186604,23 +186604,23 @@ }, { "type_name": "CPlayer_SetPerFriendPreferences_Request", - "vtable_address": 63637136, + "vtable_address": 63641040, "methods": [ 16643184, 16663408, - 29643894, + 29647734, 16241792, 16728320, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035040, 15997440, 16348912, 12011504, 16044368, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017408, 15988736 @@ -186656,23 +186656,23 @@ }, { "type_name": "CPlayer_SetPerFriendPreferences_Response", - "vtable_address": 63637296, + "vtable_address": 63641200, "methods": [ 16051088, 16051104, - 29643894, + 29647734, 16241920, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017440, 15988752 @@ -186719,23 +186719,23 @@ }, { "type_name": "CPlayer_UpdateSteamAnnouncementLastRead_Request", - "vtable_address": 63639536, + "vtable_address": 63643440, "methods": [ 16583376, 16610288, - 29643894, + 29647734, 16243888, 16682992, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026080, 15997264, 16354800, 12011504, 16094784, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017888, 15988976 @@ -186771,23 +186771,23 @@ }, { "type_name": "CPlayer_UpdateSteamAnnouncementLastRead_Response", - "vtable_address": 63639696, + "vtable_address": 63643600, "methods": [ 16050896, 16050912, - 29643894, + 29647734, 16244016, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017920, 15988992 @@ -186834,36 +186834,36 @@ }, { "type_name": "CPlayer_UseServices", - "vtable_address": 64092088, - "methods": [ - 20082176, - 20081200, - 20081152, - 20088272, - 20088656, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 20081664, - 20084800, - 17438976 + "vtable_address": 64095992, + "methods": [ + 20084992, + 20084016, + 20083968, + 20091088, + 20091472, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 20084480, + 20087616, + 17441280 ], "bases": [ { @@ -186885,7 +186885,7 @@ }, { "type_name": "CPlayer_UseServices", - "vtable_address": 65667616, + "vtable_address": 65671520, "methods": [], "bases": [], "model": { @@ -186896,7 +186896,7 @@ }, { "type_name": "CPlayer_UseServices", - "vtable_address": 65679680, + "vtable_address": 65683584, "methods": [], "bases": [], "model": { @@ -186907,35 +186907,35 @@ }, { "type_name": "CPlayer_WaterServices", - "vtable_address": 64092328, - "methods": [ - 20082192, - 20081264, - 20081216, - 20088336, - 20088752, - 17864768, - 17864784, - 17864800, - 17864816, - 17864832, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 20081664, - 18508320 + "vtable_address": 64096232, + "methods": [ + 20085008, + 20084080, + 20084032, + 20091152, + 20091568, + 17867072, + 17867088, + 17867104, + 17867120, + 17867136, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 20084480, + 18510624 ], "bases": [ { @@ -186957,48 +186957,48 @@ }, { "type_name": "CPlayer_WeaponServices", - "vtable_address": 64092560, - "methods": [ - 20082208, - 20081296, - 20081280, - 20088944, - 20086528, - 17864768, - 20081664, - 20081680, - 17864816, - 20081664, - 17864848, - 17864864, - 17864880, - 17864896, - 17864912, - 17864928, - 17864944, - 17864960, - 17864976, - 17864992, - 17865008, - 17865024, - 17865040, - 17865056, - 17865072, - 20081664, - 18355040, - 18362960, - 20081312, - 20081328, - 20080976, - 20080992, - 20081008, - 18355056, - 18355072, - 20098592, - 18355088, - 18355104, - 20081024, - 20083024 + "vtable_address": 64096464, + "methods": [ + 20085024, + 20084112, + 20084096, + 20091760, + 20089344, + 17867072, + 20084480, + 20084496, + 17867120, + 20084480, + 17867152, + 17867168, + 17867184, + 17867200, + 17867216, + 17867232, + 17867248, + 17867264, + 17867280, + 17867296, + 17867312, + 17867328, + 17867344, + 17867360, + 17867376, + 20084480, + 18357344, + 18365264, + 20084128, + 20084144, + 20083792, + 20083808, + 20083824, + 18357360, + 18357376, + 20101408, + 18357392, + 18357408, + 20083840, + 20085840 ], "bases": [ { @@ -187020,32 +187020,32 @@ }, { "type_name": "CPointChildModifier", - "vtable_address": 63230416, + "vtable_address": 63234320, "methods": [ 12604160, 12971360, 12971392, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, 12985584, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -187055,23 +187055,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12969408, 12975024, 12971680, 12234080, 12620528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -187088,13 +187088,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -187102,39 +187102,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -187148,33 +187148,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -187202,9 +187202,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -187212,24 +187212,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -187284,13 +187284,13 @@ }, { "type_name": "CPointClientUIWorldTextPanelPreviewer", - "vtable_address": 63135712, + "vtable_address": 63139616, "methods": [ 12268272, 12268368, 12273264, 12235664, - 21928160, + 21931040, 12235680, 12235696, 12235712, @@ -187327,32 +187327,32 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 63133400, + "vtable_address": 63137304, "methods": [ 14368000, 12339344, 12339424, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12348640, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12397584, 12281984, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12243456, 12233840, 12233856, @@ -187362,23 +187362,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12237792, 12395632, 12240496, 12234080, 12275360, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -187395,13 +187395,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -187409,41 +187409,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12243520, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12237616, - 18767008, - 20572064, + 18769824, + 20574880, 12345664, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -187455,33 +187455,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12358528, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -187509,9 +187509,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -187519,24 +187519,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -187548,32 +187548,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12331568, 12278896, 12237536, @@ -187692,15 +187692,15 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 63135560, + "vtable_address": 63139464, "methods": [ 12339840, 12339920, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -187796,9 +187796,9 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 63135632, + "vtable_address": 63139536, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -187894,7 +187894,7 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 63135656, + "vtable_address": 63139560, "methods": [ 12280128, 12331824 @@ -187993,33 +187993,33 @@ }, { "type_name": "CPointOrient", - "vtable_address": 63232184, + "vtable_address": 63236088, "methods": [ 14367152, 12971104, 12971120, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, 13032608, - 21128960, - 21133440, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -188028,23 +188028,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12969424, 13055344, 12971696, 12234080, 12997328, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -188061,13 +188061,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -188075,39 +188075,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12970624, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12968944, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -188121,33 +188121,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -188175,9 +188175,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -188185,24 +188185,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -188246,33 +188246,33 @@ }, { "type_name": "CPointTemplate", - "vtable_address": 63233952, + "vtable_address": 63237856, "methods": [ 13045296, 12985312, 12987232, 12884160, - 39987824, + 39991728, 12980368, - 21124256, + 21127072, 12980880, - 21132352, - 21132672, - 21132336, - 21128672, + 21135168, + 21135488, + 21135152, + 21131488, 13033872, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -188281,23 +188281,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12969488, 12977664, 12971712, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -188314,13 +188314,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -188328,39 +188328,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -188374,33 +188374,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -188428,9 +188428,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -188438,24 +188438,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -188512,13 +188512,13 @@ }, { "type_name": "CPointWorldTextPreviewer", - "vtable_address": 64202328, + "vtable_address": 64206232, "methods": [ - 21845552, - 21847328, - 21922400, + 21848368, + 21850144, + 21925280, 12235664, - 21928160, + 21931040, 12235680, 12235696, 12235712, @@ -188544,34 +188544,34 @@ }, { "type_name": "CPopupWorkshopAnnotationSubmit", - "vtable_address": 64507008, + "vtable_address": 64510912, "methods": [ 12043984, - 59816784, - 25205424, - 25205440, - 59817120, - 59817136, - 59817120, + 59820688, + 25208432, + 25208448, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -188585,12 +188585,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -188605,30 +188605,30 @@ 12233520, 12233296, 12233760, - 59835792, - 25205408, - 25210160, - 25210208, + 59839696, + 25208416, + 25213168, + 25213216, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12399792, @@ -188679,34 +188679,34 @@ }, { "type_name": "CPopupWorkshopSubmit", - "vtable_address": 64507744, + "vtable_address": 64511648, "methods": [ 12043984, - 59816784, - 25205504, - 25205520, - 59817120, - 59817136, - 59817120, + 59820688, + 25208512, + 25208528, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -188720,12 +188720,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -188740,30 +188740,30 @@ 12233520, 12233296, 12233760, - 59835792, - 25205488, - 25210272, - 25210320, + 59839696, + 25208496, + 25213280, + 25213328, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12399792, @@ -188814,7 +188814,7 @@ }, { "type_name": "CPostConnectCallback", - "vtable_address": 64632080, + "vtable_address": 64635984, "methods": [], "bases": [], "model": { @@ -188825,7 +188825,7 @@ }, { "type_name": "CPostConnectCallback", - "vtable_address": 64945832, + "vtable_address": 64949736, "methods": [], "bases": [], "model": { @@ -188836,23 +188836,23 @@ }, { "type_name": "CPreMatchInfoData", - "vtable_address": 63537056, + "vtable_address": 63540960, "methods": [ 15640496, 15745744, - 29643894, + 29647734, 15169632, 15838080, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14892448, 14847248, 15499664, 12011504, 14988928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835392, 14800880 @@ -188888,23 +188888,23 @@ }, { "type_name": "CPreMatchInfoData_TeamStats", - "vtable_address": 63536896, + "vtable_address": 63540800, "methods": [ 15640336, 15726640, - 29643894, + 29647734, 15169456, 15810992, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14877104, 14847184, 15299904, 12011504, 14994912, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835360, 14800864 @@ -188940,17 +188940,17 @@ }, { "type_name": "CPrecacheRegister", - "vtable_address": 64204584, + "vtable_address": 64208488, "methods": [ 12204192, 12204208, 12204224, - 21819504, - 21815968, + 21822336, + 21818784, 12204272, 12204288, 12204304, - 21815968, + 21818784, 12204336, 12204352, 12204368, @@ -188998,12 +188998,12 @@ 12205040, 12205056, 12205072, - 21815600, + 21818416, 12205104, - 21815584, - 21822352, - 21822368, - 21815568 + 21818400, + 21825184, + 21825200, + 21818384 ], "bases": [ { @@ -189036,7 +189036,7 @@ }, { "type_name": "CPrecipitationVData", - "vtable_address": 63289768, + "vtable_address": 63293672, "methods": [ 13176160, 13176288, @@ -189077,7 +189077,7 @@ }, { "type_name": "CPredTrackAutoCompletionFunctor", - "vtable_address": 63501584, + "vtable_address": 63505488, "methods": [ 14783472, 14792016 @@ -189112,7 +189112,7 @@ }, { "type_name": "CPredTrackAutoCompletionFunctor", - "vtable_address": 63501616, + "vtable_address": 63505520, "methods": [ 14793120 ], @@ -189146,41 +189146,41 @@ }, { "type_name": "CPrediction", - "vtable_address": 64205096, - "methods": [ - 21819824, - 21819760, - 21817728, - 21849264, - 21951056, - 21817744, - 21817760, - 21817776, - 21819552, - 21817792, - 21817808, - 22038496, - 21976688, - 21954144, - 21888688, - 22030096, - 21820432, - 21894736, - 21815280, - 21819888, - 21815296, - 21823536, - 21830272, - 21823616, - 21820672, + "vtable_address": 64209000, + "methods": [ + 21822656, + 21822592, + 21820560, + 21852080, + 21953936, + 21820576, + 21820592, 21820608, - 21816016, - 21816048, - 21815312, - 21815328, - 21815344, - 21892256, - 21933104 + 21822384, + 21820624, + 21820640, + 22041312, + 21979568, + 21957024, + 21891568, + 22032912, + 21823264, + 21897616, + 21818096, + 21822720, + 21818112, + 21826368, + 21833088, + 21826448, + 21823504, + 21823440, + 21818848, + 21818880, + 21818128, + 21818144, + 21818160, + 21895136, + 21935984 ], "bases": [ { @@ -189289,9 +189289,9 @@ }, { "type_name": "CPrediction", - "vtable_address": 64205376, + "vtable_address": 64209280, "methods": [ - 21935648 + 21938528 ], "bases": [ { @@ -189400,7 +189400,7 @@ }, { "type_name": "CPredictionCopyPackedData", - "vtable_address": 63501640, + "vtable_address": 63505544, "methods": [ 14664032, 14669216, @@ -189436,23 +189436,23 @@ }, { "type_name": "CPredictionEventPB<(unsigned int)128, CPredictionEvent_StringCommand, CPredictionEvent_StringCommand>", - "vtable_address": 64014912, + "vtable_address": 64018816, "methods": [ - 18517840, - 18517856, - 29643894, + 18520144, + 18520160, + 29647734, 16235696, 16700288, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15997840, 16332912, 12011504, 16076064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016160, 15987168 @@ -189499,23 +189499,23 @@ }, { "type_name": "CPredictionEvent_Diagnostic", - "vtable_address": 63631056, + "vtable_address": 63634960, "methods": [ 16577888, 16621552, - 29643894, + 29647734, 16235856, 16681792, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16022848, 15997824, 16333312, 12011504, 16130112, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016192, 15987184 @@ -189551,23 +189551,23 @@ }, { "type_name": "CPredictionEvent_StringCommand", - "vtable_address": 63630896, + "vtable_address": 63634800, "methods": [ 16577744, 16621392, - 29643894, + 29647734, 16235696, 16700288, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15997840, 16332912, 12011504, 16076064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016160, 15987168 @@ -189603,23 +189603,23 @@ }, { "type_name": "CPredictionEvent_StringCommand_t", - "vtable_address": 64015072, + "vtable_address": 64018976, "methods": [ - 18517904, - 18517920, - 29643894, + 18520208, + 18520224, + 29647734, 16235696, 16700288, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15997840, 16332912, 12011504, 16076064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016160, 15987168 @@ -189677,23 +189677,23 @@ }, { "type_name": "CPredictionEvent_Teleport", - "vtable_address": 63630736, + "vtable_address": 63634640, "methods": [ 16577568, 16638672, - 29643894, + 29647734, 16235536, 16681664, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001904, 15997856, 16332336, 12011504, 16053632, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016128, 15987152 @@ -189729,19 +189729,19 @@ }, { "type_name": "CPredictionGameSystem", - "vtable_address": 64205400, + "vtable_address": 64209304, "methods": [ 12204192, 12204208, 12204224, - 21839536, + 21842352, 12204256, 12204272, 12204288, 12204304, 12204320, - 21823120, - 21823104, + 21825952, + 21825936, 12204368, 12204384, 12204400, @@ -189787,12 +189787,12 @@ 12205040, 12205056, 12205072, - 21816160, + 21818992, 12205104, - 21816144, - 21822416, - 21822432, - 21816128 + 21818976, + 21825248, + 21825264, + 21818960 ], "bases": [ { @@ -189825,14 +189825,14 @@ }, { "type_name": "CPredictionSuppressEffects", - "vtable_address": 64093864, + "vtable_address": 64097768, "methods": [ - 20081536, - 20081552, - 20081568, - 20081584, - 20081504, - 20081520 + 20084352, + 20084368, + 20084384, + 20084400, + 20084320, + 20084336 ], "bases": [ { @@ -189854,23 +189854,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request", - "vtable_address": 63590176, + "vtable_address": 63594080, "methods": [ 15681520, 15743936, - 29643894, + 29647734, 15225056, 15841920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14953808, 14849120, 15475040, 12011504, 14965536, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846016, 14809504 @@ -189906,23 +189906,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_LanguageSection", - "vtable_address": 63590016, + "vtable_address": 63593920, "methods": [ 15681344, 15734432, - 29643894, + 29647734, 15224880, 15849072, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14953536, 14848800, 15474480, 12011504, 14924464, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845984, 14809488 @@ -189958,23 +189958,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_Token", - "vtable_address": 63589856, + "vtable_address": 63593760, "methods": [ 15681184, 15730960, - 29643894, + 29647734, 15224704, 15830800, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867760, 14848784, 15456320, 12011504, 14941440, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845952, 14809472 @@ -190010,23 +190010,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Response", - "vtable_address": 63590336, + "vtable_address": 63594240, "methods": [ 14880720, 14880736, - 29643894, + 29647734, 15225184, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14846048, 14809520 @@ -190073,10 +190073,10 @@ }, { "type_name": "CProjectedTextureBase", - "vtable_address": 64142760, + "vtable_address": 64146664, "methods": [ - 20632608, - 20632752 + 20635424, + 20635568 ], "bases": [], "model": { @@ -190087,7 +190087,7 @@ }, { "type_name": "CPropData", - "vtable_address": 63241528, + "vtable_address": 63245432, "methods": [ 12204192, 12204208, @@ -190194,7 +190194,7 @@ }, { "type_name": "CPropData", - "vtable_address": 63242048, + "vtable_address": 63245952, "methods": [ 13055520, 13066816, @@ -190241,7 +190241,7 @@ }, { "type_name": "CPropDataComponent", - "vtable_address": 63241424, + "vtable_address": 63245328, "methods": [ 13056624, 13055680, @@ -190267,7 +190267,7 @@ }, { "type_name": "CPropsBreakableSystem", - "vtable_address": 63166448, + "vtable_address": 63170352, "methods": [ 12592496, 12592752, @@ -190293,23 +190293,23 @@ }, { "type_name": "CPublishedFile_GetDetails_Request", - "vtable_address": 63640816, + "vtable_address": 63644720, "methods": [ 16584208, 16623152, - 29643894, + 29647734, 16245072, 16683184, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999344, 15997184, 16358736, 12011504, 16056320, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018144, 15989456 @@ -190345,23 +190345,23 @@ }, { "type_name": "CPublishedFile_GetDetails_Response", - "vtable_address": 63641936, + "vtable_address": 63645840, "methods": [ 16585072, 16637632, - 29643894, + 29647734, 16246320, 16732240, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16071552, 15997168, 16479936, 12011504, 16046656, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16018368, 15989568 @@ -190397,23 +190397,23 @@ }, { "type_name": "CPublishedFile_GetUserFiles_Request", - "vtable_address": 63642096, + "vtable_address": 63646000, "methods": [ 16585232, 16631632, - 29643894, + 29647734, 16246528, 16683392, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16048256, 15997152, 16362608, 12011504, 16165888, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018400, 15989584 @@ -190449,23 +190449,23 @@ }, { "type_name": "CPublishedFile_GetUserFiles_Response", - "vtable_address": 63642416, + "vtable_address": 63646320, "methods": [ 16585536, 16633696, - 29643894, + 29647734, 16246832, 16731744, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16071664, 15997136, 16480400, 12011504, 16118816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018464, 15989616 @@ -190501,23 +190501,23 @@ }, { "type_name": "CPublishedFile_GetUserFiles_Response_App", - "vtable_address": 63642256, + "vtable_address": 63646160, "methods": [ 16585392, 16623472, - 29643894, + 29647734, 16246656, 16704128, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16009904, 15995120, 16363616, 12011504, 16122464, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018432, 15989600 @@ -190553,23 +190553,23 @@ }, { "type_name": "CPublishedFile_Publish_Request", - "vtable_address": 63640496, + "vtable_address": 63644400, "methods": [ 16583760, 16584016, - 29643894, + 29647734, 16244784, 16702896, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16047456, 15997216, 16357040, 12011504, 16195952, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018080, 15989424 @@ -190605,23 +190605,23 @@ }, { "type_name": "CPublishedFile_Publish_Response", - "vtable_address": 63640656, + "vtable_address": 63644560, "methods": [ 16584064, 16622992, - 29643894, + 29647734, 16244928, 16703392, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035312, 15997200, 16358160, 12011504, 16088992, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018112, 15989440 @@ -190657,23 +190657,23 @@ }, { "type_name": "CPublishedFile_RefreshVotingQueue_Request", - "vtable_address": 63642896, + "vtable_address": 63646800, "methods": [ 16585904, 16630144, - 29643894, + 29647734, 16247440, 16683552, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16049072, 15997104, 16365200, 12011504, 16147584, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018560, 15989664 @@ -190709,23 +190709,23 @@ }, { "type_name": "CPublishedFile_RefreshVotingQueue_Response", - "vtable_address": 63643056, + "vtable_address": 63646960, "methods": [ 16050640, 16050656, - 29643894, + 29647734, 16247568, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16018592, 15989680 @@ -190772,23 +190772,23 @@ }, { "type_name": "CPublishedFile_Subscribe_Request", - "vtable_address": 63639856, + "vtable_address": 63643760, "methods": [ 16583504, 16610416, - 29643894, + 29647734, 16244160, 16683056, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026160, 15997248, 16355376, 12011504, 16126080, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017952, 15989360 @@ -190824,23 +190824,23 @@ }, { "type_name": "CPublishedFile_Subscribe_Response", - "vtable_address": 63640016, + "vtable_address": 63643920, "methods": [ 16050832, 16050848, - 29643894, + 29647734, 16244288, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16017984, 15989376 @@ -190887,23 +190887,23 @@ }, { "type_name": "CPublishedFile_Unsubscribe_Request", - "vtable_address": 63640176, + "vtable_address": 63644080, "methods": [ 16583632, 16610544, - 29643894, + 29647734, 16244432, 16683120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026288, 15997232, 16356208, 12011504, 16126592, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018016, 15989392 @@ -190939,23 +190939,23 @@ }, { "type_name": "CPublishedFile_Unsubscribe_Response", - "vtable_address": 63640336, + "vtable_address": 63644240, "methods": [ 16050768, 16050784, - 29643894, + 29647734, 16244560, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16018048, 15989408 @@ -191002,23 +191002,23 @@ }, { "type_name": "CPublishedFile_Update_Request", - "vtable_address": 63642576, + "vtable_address": 63646480, "methods": [ 16585728, 16632912, - 29643894, + 29647734, 16247072, 16704384, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16048672, 15997120, 16364432, 12011504, 16161376, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018496, 15989632 @@ -191054,23 +191054,23 @@ }, { "type_name": "CPublishedFile_Update_Response", - "vtable_address": 63642736, + "vtable_address": 63646640, "methods": [ 16050704, 16050720, - 29643894, + 29647734, 16247200, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16018528, 15989648 @@ -191117,15 +191117,15 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 64837864, - "methods": [ - 39713408, - 39719648, - 39771408, - 39712336, - 39453856, - 39453936, - 39453712, + "vtable_address": 64841768, + "methods": [ + 39717248, + 39723520, + 39775280, + 39716176, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -191141,9 +191141,9 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 66104800, + "vtable_address": 66108704, "methods": [ - 39753456 + 39757328 ], "bases": [], "model": { @@ -191154,9 +191154,9 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 66106944, + "vtable_address": 66110848, "methods": [ - 39742464 + 39746336 ], "bases": [], "model": { @@ -191167,9 +191167,9 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 66107104, + "vtable_address": 66111008, "methods": [ - 39741408 + 39745280 ], "bases": [], "model": { @@ -191180,15 +191180,15 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 64837976, - "methods": [ - 39713392, - 39719872, - 39771488, - 39712352, - 39453856, - 39453936, - 39453712, + "vtable_address": 64841880, + "methods": [ + 39717232, + 39723744, + 39775360, + 39716192, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -191215,9 +191215,9 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 66101568, + "vtable_address": 66105472, "methods": [ - 39764496 + 39768368 ], "bases": [], "model": { @@ -191228,9 +191228,9 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 66105376, + "vtable_address": 66109280, "methods": [ - 39712848 + 39716688 ], "bases": [], "model": { @@ -191241,29 +191241,29 @@ }, { "type_name": "CPulseCell_BaseLerp", - "vtable_address": 64838896, - "methods": [ - 39713280, - 39734432, - 39772736, - 39712560, - 39453856, - 39453936, - 39453712, + "vtable_address": 64842800, + "methods": [ + 39717120, + 39738304, + 39776608, + 39716400, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39457520, + 39461360, 12968848, - 39457104, + 39460944, 12968864, 12968880, - 39712960, - 39713056, - 39770784, - 39752144, + 39716800, + 39716896, + 39774656, + 39756016, 12968896, 12968912 ], @@ -191309,23 +191309,23 @@ }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 64838088, - "methods": [ - 39713136, - 39720544, - 39772016, - 39712368, - 39453856, - 39453936, - 39453712, + "vtable_address": 64841992, + "methods": [ + 39716976, + 39724416, + 39775888, + 39716208, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39712384, - 39712400, - 39712416 + 39716224, + 39716240, + 39716256 ], "bases": [ { @@ -191347,20 +191347,20 @@ }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 64841176, + "vtable_address": 64845080, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66106784 + "offset_to_top": 66110688 } } }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 66110432, + "vtable_address": 66114336, "methods": [ - 39846000 + 39849904 ], "bases": [], "model": { @@ -191371,15 +191371,15 @@ }, { "type_name": "CPulseCell_BaseValue", - "vtable_address": 64839112, - "methods": [ - 39713120, - 39720768, - 39772192, - 39712576, - 39453856, - 39453936, - 39453712, + "vtable_address": 64843016, + "methods": [ + 39716960, + 39724640, + 39776064, + 39716416, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -191406,40 +191406,40 @@ }, { "type_name": "CPulseCell_BaseYieldingInflow", - "vtable_address": 64841032, + "vtable_address": 64844936, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66105216 + "offset_to_top": 66109120 } } }, { "type_name": "CPulseCell_BooleanSwitchState", - "vtable_address": 64844568, - "methods": [ - 39873472, - 39885072, - 39893872, - 39873248, - 39453856, - 39453936, - 39453712, - 39873296, - 39873312, - 39873328, - 39878512, - 39878288, - 39481104, + "vtable_address": 64848472, + "methods": [ + 39877376, + 39888976, + 39897776, + 39877152, + 39457696, + 39457776, + 39457552, + 39877200, + 39877216, + 39877232, + 39882416, + 39882192, + 39484944, 12968848, 16798208, - 39481488, + 39485328, 12968880, - 39712528, - 39712544, - 39873264, - 39873280, + 39716368, + 39716384, + 39877168, + 39877184, 12968896 ], "bases": [ @@ -191495,43 +191495,43 @@ }, { "type_name": "CPulseCell_CursorQueue", - "vtable_address": 64828384, + "vtable_address": 64832288, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66114208 + "offset_to_top": 66118112 } } }, { "type_name": "CPulseCell_CursorQueue", - "vtable_address": 64845560, - "methods": [ - 39895216, - 39906688, - 39915312, - 39895072, - 39453856, - 39453936, - 39453712, + "vtable_address": 64849464, + "methods": [ + 39899120, + 39910592, + 39919216, + 39898976, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39478064, - 39478768, + 39481904, + 39482608, 16798208, 12968864, 12968880, - 39896304, - 39896352, - 39476768, - 39477392, + 39900208, + 39900256, + 39480608, + 39481232, 12968896, - 39479360, - 39479376 + 39483200, + 39483216 ], "bases": [ { @@ -191586,29 +191586,29 @@ }, { "type_name": "CPulseCell_FireCursors", - "vtable_address": 64841768, - "methods": [ - 39797088, - 39800048, - 39803808, - 39796928, - 39453856, - 39453936, - 39453712, + "vtable_address": 64845672, + "methods": [ + 39800992, + 39803952, + 39807712, + 39800832, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39464896, - 39465072, + 39468736, + 39468912, 16798208, 12968864, 12968880, - 39712528, - 39712544, - 39796944, - 39796960, + 39716368, + 39716384, + 39800848, + 39800864, 12968896 ], "bases": [ @@ -191653,15 +191653,15 @@ }, { "type_name": "CPulseCell_Inflow_BaseEntrypoint", - "vtable_address": 64838224, - "methods": [ - 39713376, - 39730624, - 39774288, - 39712432, - 39453856, - 39453936, - 39453712, + "vtable_address": 64842128, + "methods": [ + 39717216, + 39734496, + 39778160, + 39716272, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -191699,15 +191699,15 @@ }, { "type_name": "CPulseCell_Inflow_EntOutputHandler", - "vtable_address": 64838672, - "methods": [ - 39713312, - 39733632, - 39774768, - 39712496, - 39456368, - 39453936, - 39462080, + "vtable_address": 64842576, + "methods": [ + 39717152, + 39737504, + 39778640, + 39716336, + 39460208, + 39457776, + 39465920, 12968768, 12968784, 12968800, @@ -191756,15 +191756,15 @@ }, { "type_name": "CPulseCell_Inflow_EventHandler", - "vtable_address": 64838448, - "methods": [ - 39713344, - 39730640, - 39778640, - 39712464, - 39455824, - 39453936, - 39453712, + "vtable_address": 64842352, + "methods": [ + 39717184, + 39734512, + 39782544, + 39716304, + 39459664, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -191813,15 +191813,15 @@ }, { "type_name": "CPulseCell_Inflow_GraphHook", - "vtable_address": 64838560, - "methods": [ - 39713328, - 39730848, - 39779040, - 39712480, - 39456096, - 39453936, - 39453712, + "vtable_address": 64842464, + "methods": [ + 39717168, + 39734720, + 39782944, + 39716320, + 39459936, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -191870,15 +191870,15 @@ }, { "type_name": "CPulseCell_Inflow_Method", - "vtable_address": 64838336, - "methods": [ - 39713360, - 39733184, - 39777440, - 39712448, - 39455664, - 39453936, - 39459904, + "vtable_address": 64842240, + "methods": [ + 39717200, + 39737056, + 39781344, + 39716288, + 39459504, + 39457776, + 39463744, 12968768, 12968784, 12968800, @@ -191927,26 +191927,26 @@ }, { "type_name": "CPulseCell_Inflow_Method", - "vtable_address": 64841128, + "vtable_address": 64845032, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66106240 + "offset_to_top": 66110144 } } }, { "type_name": "CPulseCell_Inflow_ObservableVariableListener", - "vtable_address": 64838784, - "methods": [ - 39713296, - 39734080, - 39778624, - 39712512, - 39456560, - 39453936, - 39453712, + "vtable_address": 64842688, + "methods": [ + 39717136, + 39737952, + 39782528, + 39716352, + 39460400, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -191995,29 +191995,29 @@ }, { "type_name": "CPulseCell_Inflow_Wait", - "vtable_address": 64839528, - "methods": [ - 39713248, - 39736288, - 39773360, - 39712656, - 39455360, - 39453936, - 39453712, + "vtable_address": 64843432, + "methods": [ + 39717088, + 39740160, + 39777232, + 39716496, + 39459200, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39454272, + 39458112, 12968848, - 39455328, + 39459168, 12968864, 12968880, - 39712528, - 39712544, - 39455488, - 39455488, + 39716368, + 39716384, + 39459328, + 39459328, 12968896 ], "bases": [ @@ -192062,29 +192062,29 @@ }, { "type_name": "CPulseCell_Inflow_Yield", - "vtable_address": 64839336, - "methods": [ - 39713264, - 39735952, - 39772992, - 39712608, - 39454304, - 39453936, - 39453712, + "vtable_address": 64843240, + "methods": [ + 39717104, + 39739824, + 39776864, + 39716448, + 39458144, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39454272, + 39458112, 12968848, 16798208, 12968864, 12968880, - 39712528, - 39712544, - 39712624, - 39712640, + 39716368, + 39716384, + 39716464, + 39716480, 12968896 ], "bases": [ @@ -192129,15 +192129,15 @@ }, { "type_name": "CPulseCell_InlineNodeSkipSelector", - "vtable_address": 64843216, - "methods": [ - 39823584, - 39848032, - 39857648, - 39823216, - 39453856, - 39453936, - 39453712, + "vtable_address": 64847120, + "methods": [ + 39827488, + 39851936, + 39861552, + 39827120, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -192175,29 +192175,29 @@ }, { "type_name": "CPulseCell_IntervalTimer", - "vtable_address": 64842280, - "methods": [ - 39809152, - 39812624, - 39815136, - 39808960, - 39453856, - 39453936, - 39453712, + "vtable_address": 64846184, + "methods": [ + 39813056, + 39816528, + 39819040, + 39812864, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39466928, + 39470768, 12968848, - 39466448, + 39470288, 12968864, 12968880, - 39809088, - 39809120, - 39822432, - 39821712, + 39812992, + 39813024, + 39826336, + 39825616, 12968896 ], "bases": [ @@ -192242,23 +192242,23 @@ }, { "type_name": "CPulseCell_IsRequirementValid", - "vtable_address": 64843080, - "methods": [ - 39823568, - 39823680, - 39846112, - 39823200, - 39453856, - 39453936, - 39453712, + "vtable_address": 64846984, + "methods": [ + 39827472, + 39827584, + 39850016, + 39827104, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39823456, - 39823616, - 39823488 + 39827360, + 39827520, + 39827392 ], "bases": [ { @@ -192291,7 +192291,7 @@ }, { "type_name": "CPulseCell_IsRequirementValid::Criteria_t", - "vtable_address": 64843560, + "vtable_address": 64847464, "methods": [], "bases": [], "model": { @@ -192302,23 +192302,23 @@ }, { "type_name": "CPulseCell_LerpCameraSettings", - "vtable_address": 63226664, + "vtable_address": 63230568, "methods": [ 12971632, 13020672, 13022320, 12969392, - 39453856, - 39453936, - 39453712, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39457520, + 39461360, 12968848, - 39457104, + 39460944, 12968864, 12968880, 12970688, @@ -192383,23 +192383,23 @@ }, { "type_name": "CPulseCell_LimitCount", - "vtable_address": 64842944, - "methods": [ - 39823552, - 39829952, - 39841104, - 39823136, - 39453856, - 39453936, - 39453712, - 39823152, - 39823168, - 39823184, - 39844704, - 39831200, - 39823424, - 39823648, - 39823520 + "vtable_address": 64846848, + "methods": [ + 39827456, + 39833856, + 39845008, + 39827040, + 39457696, + 39457776, + 39457552, + 39827056, + 39827072, + 39827088, + 39848608, + 39835104, + 39827328, + 39827552, + 39827424 ], "bases": [ { @@ -192432,31 +192432,31 @@ }, { "type_name": "CPulseCell_LimitCount::Criteria_t", - "vtable_address": 64843624, + "vtable_address": 64847528, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66110624 + "offset_to_top": 66114528 } } }, { "type_name": "CPulseCell_Outflow_CycleOrdered", - "vtable_address": 64839720, + "vtable_address": 64843624, "methods": [ - 39713200, - 39736800, - 39784640, - 39712672, - 39453856, - 39453936, - 39453712, - 39712688, - 39712704, - 39712720, - 39782640, - 39767824 + 39717040, + 39740672, + 39788544, + 39716512, + 39457696, + 39457776, + 39457552, + 39716528, + 39716544, + 39716560, + 39786544, + 39771696 ], "bases": [ { @@ -192489,15 +192489,15 @@ }, { "type_name": "CPulseCell_Outflow_CycleRandom", - "vtable_address": 64839832, - "methods": [ - 39713184, - 39737312, - 39785392, - 39712736, - 39453856, - 39453936, - 39453712, + "vtable_address": 64843736, + "methods": [ + 39717024, + 39741184, + 39789296, + 39716576, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -192535,20 +192535,20 @@ }, { "type_name": "CPulseCell_Outflow_CycleShuffled", - "vtable_address": 64839944, + "vtable_address": 64843848, "methods": [ - 39713168, - 39737824, - 39786144, - 39712752, - 39453856, - 39453936, - 39453712, - 39712768, - 39715264, - 39715312, - 39788688, - 39767280 + 39717008, + 39741696, + 39790048, + 39716592, + 39457696, + 39457776, + 39457552, + 39716608, + 39719104, + 39719152, + 39792592, + 39771152 ], "bases": [ { @@ -192581,15 +192581,15 @@ }, { "type_name": "CPulseCell_PickBestOutflowSelector", - "vtable_address": 64843328, - "methods": [ - 39823600, - 39850896, - 39855616, - 39823232, - 39453856, - 39453936, - 39453712, + "vtable_address": 64847232, + "methods": [ + 39827504, + 39854800, + 39859520, + 39827136, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -192627,15 +192627,15 @@ }, { "type_name": "CPulseCell_PlaySequence", - "vtable_address": 63681760, + "vtable_address": 63685664, "methods": [ 16799552, 16830944, 16834256, 16798544, - 39453856, - 39453936, - 39453712, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -192694,29 +192694,29 @@ }, { "type_name": "CPulseCell_Step_CallExternalMethod", - "vtable_address": 64840392, - "methods": [ - 39713232, - 39739424, - 39782096, - 39712832, - 39454624, - 39453936, - 39453712, + "vtable_address": 64844296, + "methods": [ + 39717072, + 39743296, + 39786000, + 39716672, + 39458464, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39458704, - 39458912, + 39462544, + 39462752, 16798208, 12968864, 12968880, - 39712992, - 39713024, - 39459632, - 39454672, + 39716832, + 39716864, + 39463472, + 39458512, 12968896 ], "bases": [ @@ -192761,15 +192761,15 @@ }, { "type_name": "CPulseCell_Step_DebugLog", - "vtable_address": 64840280, - "methods": [ - 39713152, - 39720320, - 39772592, - 39712816, - 39453856, - 39453936, - 39453712, + "vtable_address": 64844184, + "methods": [ + 39716992, + 39724192, + 39776464, + 39716656, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -192807,15 +192807,15 @@ }, { "type_name": "CPulseCell_Step_EntFire", - "vtable_address": 63681648, + "vtable_address": 63685552, "methods": [ 16799536, 16812768, 16829216, 16798528, - 39453856, - 39453936, - 39453712, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -192853,15 +192853,15 @@ }, { "type_name": "CPulseCell_Step_PublicOutput", - "vtable_address": 64839224, - "methods": [ - 39713216, - 39721648, - 39782672, - 39712592, - 39453856, - 39453936, - 39453712, + "vtable_address": 64843128, + "methods": [ + 39717056, + 39725520, + 39786576, + 39716432, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -192899,29 +192899,29 @@ }, { "type_name": "CPulseCell_Timeline", - "vtable_address": 64844024, - "methods": [ - 39860736, - 39864592, - 39871632, - 39860544, - 39453856, - 39453936, - 39453712, + "vtable_address": 64847928, + "methods": [ + 39864640, + 39868496, + 39875536, + 39864448, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39474400, - 39475520, - 39475504, + 39478240, + 39479360, + 39479344, 12968864, 12968880, - 39860672, - 39860704, - 39475952, - 39473680, + 39864576, + 39864608, + 39479792, + 39477520, 12968896 ], "bases": [ @@ -192966,15 +192966,15 @@ }, { "type_name": "CPulseCell_Unknown", - "vtable_address": 64827208, - "methods": [ - 39453824, - 39463088, - 39463136, - 39453696, - 39453856, - 39453936, - 39453712, + "vtable_address": 64831112, + "methods": [ + 39457664, + 39466928, + 39466976, + 39457536, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -193001,15 +193001,15 @@ }, { "type_name": "CPulseCell_Value_Curve", - "vtable_address": 64841544, + "vtable_address": 64845448, "methods": [ - 39792192, - 39796288, + 39796096, + 39800192, + 39799888, 39795984, - 39792080, - 39453856, - 39453936, - 39453712, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -193047,15 +193047,15 @@ }, { "type_name": "CPulseCell_Value_Gradient", - "vtable_address": 64842056, - "methods": [ - 39804368, - 39808320, - 39808016, - 39804256, - 39453856, - 39453936, - 39453712, + "vtable_address": 64845960, + "methods": [ + 39808272, + 39812224, + 39811920, + 39808160, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -193093,15 +193093,15 @@ }, { "type_name": "CPulseCell_Value_RandomFloat", - "vtable_address": 64840168, - "methods": [ - 39713088, - 39721216, - 39772448, - 39712800, - 39453856, - 39453936, - 39453712, + "vtable_address": 64844072, + "methods": [ + 39716928, + 39725088, + 39776320, + 39716640, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -193139,15 +193139,15 @@ }, { "type_name": "CPulseCell_Value_RandomInt", - "vtable_address": 64840056, - "methods": [ - 39713104, - 39720992, - 39772304, - 39712784, - 39453856, - 39453936, - 39453712, + "vtable_address": 64843960, + "methods": [ + 39716944, + 39724864, + 39776176, + 39716624, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, @@ -193185,32 +193185,32 @@ }, { "type_name": "CPulseCell_WaitForCursorsWithTag", - "vtable_address": 64845352, - "methods": [ - 39895232, - 39910592, - 39913472, - 39895056, - 39453856, - 39453936, - 39453712, + "vtable_address": 64849256, + "methods": [ + 39899136, + 39914496, + 39917376, + 39898960, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39478064, - 39478768, + 39481904, + 39482608, 16798208, 12968864, 12968880, - 39896304, - 39896352, - 39476768, - 39477392, + 39900208, + 39900256, + 39480608, + 39481232, 12968896, - 39479008, - 39479168 + 39482848, + 39483008 ], "bases": [ { @@ -193265,32 +193265,32 @@ }, { "type_name": "CPulseCell_WaitForCursorsWithTagBase", - "vtable_address": 64845144, - "methods": [ - 39895248, - 39906672, - 39909968, - 39895040, - 39453856, - 39453936, - 39453712, + "vtable_address": 64849048, + "methods": [ + 39899152, + 39910576, + 39913872, + 39898944, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39478064, - 39478768, + 39481904, + 39482608, 16798208, 12968864, 12968880, - 39896304, - 39896352, - 39476768, - 39477392, + 39900208, + 39900256, + 39480608, + 39481232, 12968896, - 39479008, - 39479024 + 39482848, + 39482864 ], "bases": [ { @@ -193334,29 +193334,29 @@ }, { "type_name": "CPulseCell_WaitForObservable", - "vtable_address": 64844376, - "methods": [ - 39873456, - 39881696, - 39892480, - 39873200, - 39453856, - 39453936, - 39453712, + "vtable_address": 64848280, + "methods": [ + 39877360, + 39885600, + 39896384, + 39877104, + 39457696, + 39457776, + 39457552, 12968768, 12968784, 12968800, 12968816, 12968832, - 39480624, + 39484464, 12968848, 16798208, - 39480208, + 39484048, 12968880, - 39712528, - 39712544, - 39873216, - 39873232, + 39716368, + 39716384, + 39877120, + 39877136, 12968896 ], "bases": [ @@ -193401,17 +193401,17 @@ }, { "type_name": "CPulseClientPanoramaService", - "vtable_address": 64206008, + "vtable_address": 64209912, "methods": [ - 21816192, - 21820736, - 21900256, - 21900352, - 21833472, - 21900496, - 21829872, - 21828704, - 21979136 + 21819024, + 21823568, + 21903136, + 21903232, + 21836288, + 21903376, + 21832688, + 21831520, + 21982016 ], "bases": [ { @@ -193454,9 +193454,9 @@ }, { "type_name": "CPulseClientPanoramaService", - "vtable_address": 64206096, + "vtable_address": 64210000, "methods": [ - 21979440 + 21982320 ], "bases": [ { @@ -193499,27 +193499,27 @@ }, { "type_name": "CPulseDomainScopeLoader", - "vtable_address": 64825832, - "methods": [ - 39309024, - 39308992, - 39297168, - 39299984, - 39299936, - 39297216, - 39302016, - 39297328, - 39298880, - 39298720, - 39300032, - 39300288, - 39300416, - 39300352, - 39299840, - 39300480, - 39300240, - 39300608, - 39298272 + "vtable_address": 64829736, + "methods": [ + 39312864, + 39312832, + 39301008, + 39303824, + 39303776, + 39301056, + 39305856, + 39301168, + 39302720, + 39302560, + 39303872, + 39304128, + 39304256, + 39304192, + 39303680, + 39304320, + 39304080, + 39304448, + 39302112 ], "bases": [ { @@ -193551,7 +193551,7 @@ }, { "type_name": "CPulseEntityFindFilter", - "vtable_address": 63166672, + "vtable_address": 63170576, "methods": [ 12578656 ], @@ -193575,36 +193575,36 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 64826232, - "methods": [ - 39352128, - 39353152, - 39317616, - 39328144, - 39328576, - 39316768, - 39316800, - 39316832, + "vtable_address": 64830136, + "methods": [ + 39355968, + 39356992, + 39321456, + 39331984, + 39332416, + 39320608, + 39320640, + 39320672, 12981056, - 39316864, + 39320704, 12981024, - 39341216, - 39345696, - 39332272, - 39356320, - 39318192, - 39331936, - 39349456, - 39358720, - 39319104, - 39317408, - 39346496, - 39321152, - 39354592, - 39317200, - 39339920, - 39317024, - 39317040 + 39345056, + 39349536, + 39336112, + 39360160, + 39322032, + 39335776, + 39353296, + 39362560, + 39322944, + 39321248, + 39350336, + 39324992, + 39358432, + 39321040, + 39343760, + 39320864, + 39320880 ], "bases": [ { @@ -193657,13 +193657,13 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 64826472, + "vtable_address": 64830376, "methods": [ - 39316720, - 39316736, - 39316784, - 39316816, - 39316752 + 39320560, + 39320576, + 39320624, + 39320656, + 39320592 ], "bases": [ { @@ -193716,23 +193716,23 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 64826528, - "methods": [ - 39341760, - 39346560, - 39320432, - 39317600, - 39346528, - 39332544, - 39356960, - 39316848, + "vtable_address": 64830432, + "methods": [ + 39345600, + 39350400, + 39324272, + 39321440, + 39350368, + 39336384, + 39360800, + 39320688, 12981040, - 39316880, + 39320720, 12981008, - 39321744, - 39354944, - 39318560, - 39346800 + 39325584, + 39358784, + 39322400, + 39350640 ], "bases": [ { @@ -193785,32 +193785,32 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 63677744, + "vtable_address": 63681648, "methods": [ 14367152, 16799424, 16805344, 12884160, - 39987824, + 39991728, 16855472, - 21124256, + 21127072, 16855536, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 16855552, 16855840, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, 16855808, 16855824, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 16856080, 12233840, 12233856, @@ -193820,23 +193820,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 16798352, 16856064, 16799520, 12234080, 16812976, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -193853,13 +193853,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -193867,39 +193867,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 16800560, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -193913,33 +193913,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -193967,9 +193967,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -193977,24 +193977,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -194049,7 +194049,7 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 63679520, + "vtable_address": 63683424, "methods": [ 16803872 ], @@ -194094,31 +194094,31 @@ }, { "type_name": "CPulseGraphDef", - "vtable_address": 64826760, - "methods": [ - 39377840, - 39378160, - 39377888, - 39399296, - 39388032, - 39378880, - 39378240, - 39377824, - 39393472, - 39378048, - 39378352, - 39377936, - 39378000, - 39377568, - 39378288, - 39377616, - 39377680, - 39377728, - 39377776, - 39378496, - 39379296, - 39378656, - 39378720 + "vtable_address": 64830664, + "methods": [ + 39381680, + 39382000, + 39381728, + 39403136, + 39391872, + 39382720, + 39382080, + 39381664, + 39397312, + 39381888, + 39382192, + 39381776, + 39381840, + 39381408, + 39382128, + 39381456, + 39381520, + 39381568, + 39381616, + 39382336, + 39383136, + 39382496, + 39382560 ], "bases": [ { @@ -194140,7 +194140,7 @@ }, { "type_name": "CPulseInputHost", - "vtable_address": 63162408, + "vtable_address": 63166312, "methods": [ 12572480, 12572496 @@ -194165,7 +194165,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Blackboard", - "vtable_address": 63677640, + "vtable_address": 63681544, "methods": [ 16798384, 16800784, @@ -194212,7 +194212,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Blackboard", - "vtable_address": 63677688, + "vtable_address": 63681592, "methods": [ 16801200 ], @@ -194256,7 +194256,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Blackboard", - "vtable_address": 63677712, + "vtable_address": 63681616, "methods": [ 16798432, 16798480 @@ -194301,7 +194301,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 63681200, + "vtable_address": 63685104, "methods": [ 16851264, 16798736, @@ -194370,7 +194370,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 63681264, + "vtable_address": 63685168, "methods": [ 16805456 ], @@ -194434,7 +194434,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 63681288, + "vtable_address": 63685192, "methods": [ 16806784 ], @@ -194498,7 +194498,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 63681312, + "vtable_address": 63685216, "methods": [ 16806496, 16806624 @@ -194563,7 +194563,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 63681344, + "vtable_address": 63685248, "methods": [ 16800224 ], @@ -194627,7 +194627,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 63681368, + "vtable_address": 63685272, "methods": [ 16798768, 16798784, @@ -194696,7 +194696,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 63681432, + "vtable_address": 63685336, "methods": [ 16803888 ], @@ -194760,7 +194760,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 63681456, + "vtable_address": 63685360, "methods": [ 16805840 ], @@ -194824,7 +194824,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 63681480, + "vtable_address": 63685384, "methods": [ 16804272, 16804224 @@ -194889,7 +194889,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 63681512, + "vtable_address": 63685416, "methods": [ 16800160 ], @@ -194953,7 +194953,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 63681064, + "vtable_address": 63684968, "methods": [ 16851264, 16798560, @@ -195011,7 +195011,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 63681120, + "vtable_address": 63685024, "methods": [ 16798592 ], @@ -195065,7 +195065,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 63681144, + "vtable_address": 63685048, "methods": [ 16806416 ], @@ -195119,7 +195119,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 63681168, + "vtable_address": 63685072, "methods": [ 16804256, 16804192 @@ -195174,9 +195174,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 64825256, + "vtable_address": 64829160, "methods": [ - 39284064 + 39287904 ], "bases": [ { @@ -195293,9 +195293,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 64825280, + "vtable_address": 64829184, "methods": [ - 39283984 + 39287824 ], "bases": [ { @@ -195412,7 +195412,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 64825304, + "vtable_address": 64829208, "methods": [ 12979120 ], @@ -195531,10 +195531,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 64825328, + "vtable_address": 64829232, "methods": [ - 39284000, - 39284032 + 39287840, + 39287872 ], "bases": [ { @@ -195651,9 +195651,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 64825360, + "vtable_address": 64829264, "methods": [ - 33184400 + 33188240 ], "bases": [ { @@ -195770,7 +195770,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 63681536, + "vtable_address": 63685440, "methods": [ 16798512, 16836928 @@ -195858,7 +195858,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 63681568, + "vtable_address": 63685472, "methods": [ 16798112 ], @@ -195945,7 +195945,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 63681592, + "vtable_address": 63685496, "methods": [ 16837248 ], @@ -196032,7 +196032,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 63681616, + "vtable_address": 63685520, "methods": [ 16798128, 16798160 @@ -196120,7 +196120,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 64825384, + "vtable_address": 64829288, "methods": [ 16798512 ], @@ -196218,7 +196218,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 64825408, + "vtable_address": 64829312, "methods": [ 16798112 ], @@ -196316,7 +196316,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 64825432, + "vtable_address": 64829336, "methods": [ 12977104 ], @@ -196414,7 +196414,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 64825456, + "vtable_address": 64829360, "methods": [ 16798128, 16798160 @@ -196513,16 +196513,16 @@ }, { "type_name": "CPulseScopeEnumeratingTypeService", - "vtable_address": 64825752, + "vtable_address": 64829656, "methods": [ - 39297088, - 39297104, - 39297120, - 39297136, - 39297152, - 39297440, - 39297184, - 39299040 + 39300928, + 39300944, + 39300960, + 39300976, + 39300992, + 39301280, + 39301024, + 39302880 ], "bases": [ { @@ -196555,7 +196555,7 @@ }, { "type_name": "CPulseSharedEHandleService", - "vtable_address": 63681952, + "vtable_address": 63685856, "methods": [ 16798880, 16798896, @@ -196597,7 +196597,7 @@ }, { "type_name": "CPulseSharedSaveRestoreBlockHandler", - "vtable_address": 63680976, + "vtable_address": 63684880, "methods": [ 16798624, 16798640, @@ -196640,7 +196640,7 @@ }, { "type_name": "CPulse_OutflowConnection", - "vtable_address": 66095840, + "vtable_address": 66099744, "methods": [], "bases": [], "model": { @@ -196651,7 +196651,7 @@ }, { "type_name": "CPulse_OutflowConnection", - "vtable_address": 66095968, + "vtable_address": 66099872, "methods": [], "bases": [], "model": { @@ -196662,7 +196662,7 @@ }, { "type_name": "CPulse_ResumePoint", - "vtable_address": 66095712, + "vtable_address": 66099616, "methods": [], "bases": [], "model": { @@ -196673,23 +196673,23 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request", - "vtable_address": 63591936, + "vtable_address": 63595840, "methods": [ 15682944, 15735616, - 29643894, + 29647734, 15227040, 15837792, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14889776, 14849008, 15477024, 12011504, 15119168, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846368, 14809920 @@ -196725,23 +196725,23 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute", - "vtable_address": 63591776, + "vtable_address": 63595680, "methods": [ 15682816, 15708880, - 29643894, + 29647734, 15226832, 15803824, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829296, 14848864, 15460352, 12011504, 14948768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846336, 14809904 @@ -196777,23 +196777,23 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Response", - "vtable_address": 63592096, + "vtable_address": 63596000, "methods": [ 15683136, 15709008, - 29643894, + 29647734, 15227168, 15803888, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829376, 14848992, 15460928, 12011504, 14940512, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14846400, 14809936 @@ -196829,11 +196829,11 @@ }, { "type_name": "CQueueMatchServerListListener", - "vtable_address": 64351744, + "vtable_address": 64355648, "methods": [ - 23136720, - 22917344, - 22935536 + 23139472, + 22920160, + 22938352 ], "bases": [ { @@ -196855,15 +196855,15 @@ }, { "type_name": "CRadioStatus", - "vtable_address": 64607280, + "vtable_address": 64611184, "methods": [ - 28173328, + 28176592, 12204208, - 28173344, + 28176608, 12204240, 12204256, - 28178416, - 28178416, + 28181680, + 28181680, 12204304, 12204320, 12204336, @@ -196884,7 +196884,7 @@ 12204576, 12204592, 12204608, - 28178400, + 28181664, 12204640, 12204656, 12204672, @@ -196913,17 +196913,17 @@ 12205040, 12205056, 12205072, - 28173120, + 28176384, 12205104, - 28173104, - 28174832, - 28174848, - 28173088, - 28175648, - 28176864, - 28176560, - 28176256, - 28175952 + 28176368, + 28178096, + 28178112, + 28176352, + 28178912, + 28180128, + 28179824, + 28179520, + 28179216 ], "bases": [ { @@ -196956,7 +196956,7 @@ }, { "type_name": "CRagdollGameSystem", - "vtable_address": 64206872, + "vtable_address": 64210776, "methods": [ 12204192, 12204208, @@ -196973,11 +196973,11 @@ 12204384, 12204400, 12204416, - 21828384, - 21828288, + 21831200, + 21831104, 12204464, 12204480, - 21834976, + 21837792, 12204512, 12204528, 12204544, @@ -197014,12 +197014,12 @@ 12205040, 12205056, 12205072, - 21815248, + 21818064, 12205104, - 21815232, - 21833040, - 21832480, - 21815216 + 21818048, + 21835856, + 21835296, + 21818032 ], "bases": [ { @@ -197052,12 +197052,12 @@ }, { "type_name": "CRagdollLRURetirement", - "vtable_address": 64207480, + "vtable_address": 64211384, "methods": [ 12204192, 12204208, 12204224, - 21839232, + 21842048, 12204256, 12204272, 12204288, @@ -197081,11 +197081,11 @@ 12204576, 12204592, 12204608, - 21964768, + 21967648, 12204640, 12204656, 12204672, - 21816208, + 21819040, 12204704, 12204720, 12204736, @@ -197110,12 +197110,12 @@ 12205040, 12205056, 12205072, - 21815184, + 21818000, 12205104, - 21815168, - 21839824, - 21840256, - 21815152 + 21817984, + 21842640, + 21843072, + 21817968 ], "bases": [ { @@ -197148,33 +197148,33 @@ }, { "type_name": "CRagdollManager", - "vtable_address": 63242088, + "vtable_address": 63245992, "methods": [ 14367152, 13059232, 13059248, 12884160, - 39987824, + 39991728, 12884208, 13058976, - 21126080, - 21132352, - 21132672, - 21132336, + 21128896, + 21135168, + 21135488, + 21135152, 13059024, 13059040, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 13059136, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -197183,23 +197183,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055696, 13130800, 13056640, 12234080, 13080272, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -197216,13 +197216,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -197230,39 +197230,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, + 20586576, + 20583008, + 20903888, + 20574880, 13059088, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -197276,33 +197276,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -197330,9 +197330,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -197340,24 +197340,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -197401,15 +197401,15 @@ }, { "type_name": "CRagdollPoseControlSystem", - "vtable_address": 64013704, + "vtable_address": 64017608, "methods": [ 12204192, 12204208, 12204224, 12204240, 12204256, - 18513824, - 18520160, + 18516128, + 18522464, 12204304, 12204320, 12204336, @@ -197459,12 +197459,12 @@ 12205040, 12205056, 12205072, - 18506832, + 18509136, 12205104, - 18506816, - 18543120, - 18543552, - 18506800 + 18509120, + 18545424, + 18545856, + 18509104 ], "bases": [ { @@ -197497,27 +197497,27 @@ }, { "type_name": "CRangeInt", - "vtable_address": 64945920, + "vtable_address": 64949824, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66171200 + "offset_to_top": 66175104 } } }, { "type_name": "CReadOnlyBlackboardView", - "vtable_address": 64825488, - "methods": [ - 39285520, - 39285616, - 39284096, - 39284080, - 39284464, - 39288256, - 39284288, - 39286272, + "vtable_address": 64829392, + "methods": [ + 39289360, + 39289456, + 39287936, + 39287920, + 39288304, + 39292096, + 39288128, + 39290112, 16798192 ], "bases": [ @@ -197540,14 +197540,14 @@ }, { "type_name": "CRecipientFilter", - "vtable_address": 64093928, + "vtable_address": 64097832, "methods": [ - 20080912, - 20082256, - 20081616, - 20081600, - 20081632, - 20081648 + 20083728, + 20085072, + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -197569,14 +197569,14 @@ }, { "type_name": "CRecordingList", - "vtable_address": 64132200, + "vtable_address": 64136104, "methods": [ - 20595840, - 20595408, - 20892000, - 20590832, - 20571840, - 20578256 + 20598656, + 20598224, + 20894816, + 20593648, + 20574656, + 20581072 ], "bases": [ { @@ -197598,18 +197598,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274040, - "methods": [ - 22786864, - 22782784, - 22784608, - 22782400, - 22439824, - 22439840, - 22781952, - 22439856, - 22449136, - 22764960 + "vtable_address": 64277944, + "methods": [ + 22789680, + 22785600, + 22787424, + 22785216, + 22442640, + 22442656, + 22784768, + 22442672, + 22451952, + 22767776 ], "bases": [ { @@ -197642,18 +197642,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64273944, - "methods": [ - 22779056, - 22774976, - 22776800, - 22774592, - 22439872, - 22439888, - 22774144, - 22439904, - 22449200, - 22764192 + "vtable_address": 64277848, + "methods": [ + 22781872, + 22777792, + 22779616, + 22777408, + 22442688, + 22442704, + 22776960, + 22442720, + 22452016, + 22767008 ], "bases": [ { @@ -197686,18 +197686,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274328, - "methods": [ - 22745072, - 22743168, - 22740800, - 22494848, - 22439680, - 22439696, - 22491968, - 22439712, - 22448944, - 22767264 + "vtable_address": 64278232, + "methods": [ + 22747888, + 22745984, + 22743616, + 22497664, + 22442496, + 22442512, + 22494784, + 22442528, + 22451760, + 22770080 ], "bases": [ { @@ -197730,18 +197730,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274424, - "methods": [ - 22737616, - 22735712, - 22733344, - 22494464, - 22439632, - 22439648, - 22491520, - 22439664, - 22448880, - 22768032 + "vtable_address": 64278328, + "methods": [ + 22740432, + 22738528, + 22736160, + 22497280, + 22442448, + 22442464, + 22494336, + 22442480, + 22451696, + 22770848 ], "bases": [ { @@ -197774,18 +197774,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274712, - "methods": [ - 22715248, - 22713344, - 22710976, - 22493312, - 22439488, - 22439504, - 22490176, - 22439520, - 22448688, - 22763424 + "vtable_address": 64278616, + "methods": [ + 22718064, + 22716160, + 22713792, + 22496128, + 22442304, + 22442320, + 22492992, + 22442336, + 22451504, + 22766240 ], "bases": [ { @@ -197818,18 +197818,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274232, + "vtable_address": 64278136, "methods": [ - 22752528, - 22750624, - 22748256, + 22755344, + 22753440, + 22751072, + 22498048, + 22442544, + 22442560, 22495232, - 22439728, - 22439744, - 22492416, - 22439760, - 22449008, - 22766496 + 22442576, + 22451824, + 22769312 ], "bases": [ { @@ -197862,18 +197862,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274616, - "methods": [ - 22722704, - 22720800, - 22718432, - 22493696, - 22439536, - 22439552, - 22490624, - 22439568, - 22448752, - 22769568 + "vtable_address": 64278520, + "methods": [ + 22725520, + 22723616, + 22721248, + 22496512, + 22442352, + 22442368, + 22493440, + 22442384, + 22451568, + 22772384 ], "bases": [ { @@ -197906,18 +197906,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274520, - "methods": [ - 22730160, - 22728256, - 22725888, - 22494080, - 22439584, - 22439600, - 22491072, - 22439616, - 22448816, - 22768800 + "vtable_address": 64278424, + "methods": [ + 22732976, + 22731072, + 22728704, + 22496896, + 22442400, + 22442416, + 22493888, + 22442432, + 22451632, + 22771616 ], "bases": [ { @@ -197950,18 +197950,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64274136, - "methods": [ - 22759984, - 22758080, - 22755712, - 22495616, - 22439776, - 22439792, - 22492864, - 22439808, - 22449072, - 22765728 + "vtable_address": 64278040, + "methods": [ + 22762800, + 22760896, + 22758528, + 22498432, + 22442592, + 22442608, + 22495680, + 22442624, + 22451888, + 22768544 ], "bases": [ { @@ -197994,7 +197994,7 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 63156976, + "vtable_address": 63160880, "methods": [ 12474048, 12550528, @@ -198038,18 +198038,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64143952, + "vtable_address": 64147856, "methods": [ - 20669152, - 21082432, - 20804416, - 20641920, - 20573728, - 20573744, - 20636608, - 20573760, - 20588160, - 21121952 + 20671968, + 21085248, + 20807232, + 20644736, + 20576544, + 20576560, + 20639424, + 20576576, + 20590976, + 21124768 ], "bases": [ { @@ -198082,18 +198082,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64143664, + "vtable_address": 64147568, "methods": [ - 20678080, - 21094144, - 20815168, - 20644416, - 20573872, - 20573888, - 20639296, - 20573904, - 20588352, - 21119648 + 20680896, + 21096960, + 20817984, + 20647232, + 20576688, + 20576704, + 20642112, + 20576720, + 20591168, + 21122464 ], "bases": [ { @@ -198126,18 +198126,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64144048, - "methods": [ - 20684032, - 21078528, - 20800832, - 20641088, - 20573680, - 20573696, - 20635712, - 20573712, - 20588096, - 21118112 + "vtable_address": 64147952, + "methods": [ + 20686848, + 21081344, + 20803648, + 20643904, + 20576496, + 20576512, + 20638528, + 20576528, + 20590912, + 21120928 ], "bases": [ { @@ -198170,18 +198170,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64143760, - "methods": [ - 20675104, - 21090240, - 20811584, - 20643584, - 20573824, - 20573840, - 20638400, - 20573856, - 20588288, - 21120416 + "vtable_address": 64147664, + "methods": [ + 20677920, + 21093056, + 20814400, + 20646400, + 20576640, + 20576656, + 20641216, + 20576672, + 20591104, + 21123232 ], "bases": [ { @@ -198214,18 +198214,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64143856, + "vtable_address": 64147760, "methods": [ - 20672128, - 21086336, - 20808000, - 20642752, - 20573776, - 20573792, - 20637504, - 20573808, - 20588224, - 21121184 + 20674944, + 21089152, + 20810816, + 20645568, + 20576592, + 20576608, + 20640320, + 20576624, + 20591040, + 21124000 ], "bases": [ { @@ -198258,18 +198258,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64143568, + "vtable_address": 64147472, "methods": [ - 20681056, - 21098048, - 20818752, - 20645248, - 20573920, - 20573936, - 20640192, - 20573952, - 20588416, - 21118880 + 20683872, + 21100864, + 20821568, + 20648064, + 20576736, + 20576752, + 20643008, + 20576768, + 20591232, + 21121696 ], "bases": [ { @@ -198302,18 +198302,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 64021776, + "vtable_address": 64025680, "methods": [ - 18882752, - 18880320, - 18717120, - 18587712, - 18509808, - 18509824, - 18588096, - 18509840, - 18524064, - 18550528 + 18885568, + 18883136, + 18719936, + 18590016, + 18512112, + 18512128, + 18590400, + 18512144, + 18526368, + 18552832 ], "bases": [ { @@ -198346,14 +198346,14 @@ }, { "type_name": "CReliableBroadcastRecipientFilter", - "vtable_address": 63162304, + "vtable_address": 63166208, "methods": [ 12572512, 12577456, - 20081616, - 20081600, - 20081632, - 20081648 + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -198397,7 +198397,7 @@ }, { "type_name": "CReloadMatchFilter", - "vtable_address": 63322696, + "vtable_address": 63326600, "methods": [ 13217760 ], @@ -198421,7 +198421,7 @@ }, { "type_name": "CRender", - "vtable_address": 63340448, + "vtable_address": 63344352, "methods": [ 13821664, 13885008, @@ -198438,7 +198438,7 @@ }, { "type_name": "CRenderComponent", - "vtable_address": 63156840, + "vtable_address": 63160744, "methods": [ 12449456, 12447984, @@ -198464,7 +198464,7 @@ }, { "type_name": "CRenderComponentToolsResourceListener", - "vtable_address": 63156944, + "vtable_address": 63160848, "methods": [ 12446976, 12548896 @@ -198489,7 +198489,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 63339808, + "vtable_address": 63343712, "methods": [ 12204192, 12204208, @@ -198602,7 +198602,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 63340384, + "vtable_address": 63344288, "methods": [ 13820768 ], @@ -198646,7 +198646,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 63340408, + "vtable_address": 63344312, "methods": [ 13820864, 13820288, @@ -198692,20 +198692,20 @@ }, { "type_name": "CRenderingPipelineCS2Shadows", - "vtable_address": 64626256, - "methods": [ - 28685856, - 28331712, - 28331776, - 28331760, - 28331744, - 28331808, + "vtable_address": 64630160, + "methods": [ + 28689536, + 28335104, + 28335168, + 28335152, + 28335136, + 28335200, 12236544, - 28331824, + 28335216, 12574928, - 28331840, - 28331856, - 28331728 + 28335232, + 28335248, + 28335120 ], "bases": [ { @@ -198738,20 +198738,20 @@ }, { "type_name": "CRenderingPipelineCsgo", - "vtable_address": 64625624, - "methods": [ - 28754240, - 28558128, - 28349440, - 28331760, - 28331744, - 28335072, + "vtable_address": 64629528, + "methods": [ + 28757952, + 28561520, + 28352832, + 28335152, + 28335136, + 28338464, 12236544, - 28332288, - 28339888, - 28711904, - 28331856, - 28331728 + 28335680, + 28343280, + 28715584, + 28335248, + 28335120 ], "bases": [ { @@ -198784,20 +198784,20 @@ }, { "type_name": "CRenderingPipelineCsgo3DSkybox", - "vtable_address": 64625336, - "methods": [ - 28570016, - 28331712, - 28331776, - 28331760, - 28331744, - 28331808, + "vtable_address": 64629240, + "methods": [ + 28573408, + 28335104, + 28335168, + 28335152, + 28335136, + 28335200, 12236544, - 28331824, + 28335216, 12574928, - 28331840, - 28331856, - 28331728 + 28335232, + 28335248, + 28335120 ], "bases": [ { @@ -198830,20 +198830,20 @@ }, { "type_name": "CRenderingPipelineCsgoPostHud", - "vtable_address": 64626112, - "methods": [ - 28528256, - 28331712, - 28331776, - 28331760, - 28331744, - 28331808, + "vtable_address": 64630016, + "methods": [ + 28531648, + 28335104, + 28335168, + 28335152, + 28335136, + 28335200, 12236544, - 28331824, + 28335216, 12574928, - 28331840, - 28331856, - 28331728 + 28335232, + 28335248, + 28335120 ], "bases": [ { @@ -198876,10 +198876,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 64625848, + "vtable_address": 64629752, "methods": [ - 28333088, - 28333120 + 28336480, + 28336512 ], "bases": [ { @@ -198912,10 +198912,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 64626224, + "vtable_address": 64630128, "methods": [ - 28339552, - 28339952 + 28342944, + 28343344 ], "bases": [ { @@ -198948,10 +198948,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 64625304, + "vtable_address": 64629208, "methods": [ - 28333152, - 28333264 + 28336544, + 28336656 ], "bases": [ { @@ -198984,10 +198984,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 64625544, + "vtable_address": 64629448, "methods": [ - 28711840, - 28383152 + 28715520, + 28386544 ], "bases": [ { @@ -199020,10 +199020,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 64626080, + "vtable_address": 64629984, "methods": [ - 28333056, - 28341888 + 28336448, + 28345280 ], "bases": [ { @@ -199056,7 +199056,7 @@ }, { "type_name": "CResourceManifestPrerequisite", - "vtable_address": 63317528, + "vtable_address": 63321432, "methods": [ 13258080, 13260224, @@ -199086,7 +199086,7 @@ }, { "type_name": "CResourcePrecacherGameSystem", - "vtable_address": 63243856, + "vtable_address": 63247760, "methods": [ 12204192, 12204208, @@ -199182,18 +199182,18 @@ }, { "type_name": "CResponseSystem", - "vtable_address": 64943416, - "methods": [ - 59288992, - 59290384, - 59295648, - 59275616, - 18506272, - 59293472, - 59275440, - 18506288, - 59275104, - 59275136 + "vtable_address": 64947320, + "methods": [ + 59292896, + 59294288, + 59299552, + 59279520, + 18508576, + 59297376, + 59279344, + 18508592, + 59279008, + 59279040 ], "bases": [ { @@ -199236,10 +199236,10 @@ }, { "type_name": "CResponseSystem", - "vtable_address": 64943512, + "vtable_address": 64947416, "methods": [ - 59290368, - 59290432 + 59294272, + 59294336 ], "bases": [ { @@ -199282,87 +199282,87 @@ }, { "type_name": "CRestore", - "vtable_address": 64063808, - "methods": [ - 19435856, - 19436960, - 19359136, - 19359184, - 18531344, - 19756496, - 19585600, - 19404912, - 19409184, - 19368704, - 19444144, - 19407024, - 19438704, - 19439968, - 19441232, - 19419664, - 19424944, - 19420928, - 19422192, - 19423488, + "vtable_address": 64067712, + "methods": [ + 19438672, + 19439776, + 19361952, + 19362000, + 18533648, + 19759312, + 19588416, 19407728, - 19474768, - 19414096, - 19406752, - 19410704, - 19412064, - 19410944, - 19410448, - 19416480, - 19411616, - 19409472, - 19409712, - 19409712, - 19409968, - 19412768, - 19426208, - 19471264, - 19471808, - 19463600, - 19390352, - 19418000, - 19447856, - 19488064, - 19415424, - 19410208, - 19412384, - 19412768, - 19359120, - 19640400, - 19643760, - 19359120, - 19744096, - 19417584, - 19358144, + 19412000, + 19371520, + 19446960, + 19409840, + 19441520, + 19442784, + 19444048, + 19422480, + 19427760, + 19423744, + 19425008, + 19426304, + 19410544, + 19477584, + 19416912, + 19409568, + 19413520, + 19414880, + 19413760, + 19413264, + 19419296, + 19414432, + 19412288, + 19412528, + 19412528, + 19412784, + 19415584, + 19429024, + 19474080, + 19474624, + 19466416, + 19393168, + 19420816, + 19450672, + 19490880, + 19418240, + 19413024, + 19415200, + 19415584, + 19361936, + 19643216, + 19646576, + 19361936, + 19746912, + 19420400, + 19360960, 13252768, - 18960912, - 19358176, - 19359088, - 19599120, - 19359072, - 19359008, - 19359024, - 19359104, - 19359104, - 19367536, - 19359040, - 19359056, - 18960784, - 19467280, - 19463040, - 18529232, - 19406880, - 19368144, - 19368192, - 19368704, - 19368704, - 19358208, - 19459248, - 19384608 + 18963728, + 19360992, + 19361904, + 19601936, + 19361888, + 19361824, + 19361840, + 19361920, + 19361920, + 19370352, + 19361856, + 19361872, + 18963600, + 19470096, + 19465856, + 18531536, + 19409696, + 19370960, + 19371008, + 19371520, + 19371520, + 19361024, + 19462064, + 19387424 ], "bases": [ { @@ -199416,87 +199416,87 @@ }, { "type_name": "CRestore", - "vtable_address": 64064456, - "methods": [ - 19435936, - 19437056, - 19400608, - 19399712, - 18531328, - 19756912, - 19587104, - 19407168, - 19408384, - 19392864, - 19444560, - 19433744, - 19439952, - 19441216, - 19442480, - 19420912, - 19426192, - 19422176, - 19423472, - 19424928, - 19407936, - 19454560, - 19415408, - 19426400, - 19410928, - 19412368, - 19411184, - 19410688, - 19416960, - 19411840, - 19409696, - 19409952, - 19409936, - 19453472, - 19454016, - 19465056, - 19390816, - 19418448, - 19448272, - 19488416, - 19410192, - 19416464, - 19410432, + "vtable_address": 64068360, + "methods": [ + 19438752, + 19439872, + 19403424, + 19402528, + 18533632, + 19759728, + 19589920, + 19409984, + 19411200, + 19395680, + 19447376, + 19436560, + 19442768, + 19444032, + 19445296, + 19423728, + 19429008, + 19424992, + 19426288, + 19427744, + 19410752, + 19457376, + 19418224, + 19429216, + 19413744, + 19415184, + 19414000, + 19413504, + 19419776, + 19414656, + 19412512, + 19412768, 19412752, - 19413088, - 19413072, - 19433888, - 19390880, - 19643744, - 19644816, - 19390896, - 19745840, - 19417984, - 19358160, + 19456288, + 19456832, + 19467872, + 19393632, + 19421264, + 19451088, + 19491232, + 19413008, + 19419280, + 19413248, + 19415568, + 19415904, + 19415888, + 19436704, + 19393696, + 19646560, + 19647632, + 19393712, + 19748656, + 19420800, + 19360976, 13252752, - 18960896, - 19358192, - 19392288, - 19599152, - 19391920, - 19391888, - 19391904, - 19391856, - 19391872, - 19393536, - 19392784, - 19392800, - 18960768, - 19448544, - 19451152, - 19450736, - 19400240, - 18529216, - 19442496, - 19396192, - 19400528, - 19392880, - 19392896, - 19358224 + 18963712, + 19361008, + 19395104, + 19601968, + 19394736, + 19394704, + 19394720, + 19394672, + 19394688, + 19396352, + 19395600, + 19395616, + 18963584, + 19451360, + 19453968, + 19453552, + 19403056, + 18531520, + 19445312, + 19399008, + 19403344, + 19395696, + 19395712, + 19361040 ], "bases": [ { @@ -199550,10 +199550,10 @@ }, { "type_name": "CRopePhysics<10>", - "vtable_address": 64076656, + "vtable_address": 64080560, "methods": [ - 20205248, - 20148704 + 20208064, + 20151520 ], "bases": [ { @@ -199586,34 +199586,34 @@ }, { "type_name": "CSConfirmWorkshopDownloadPopup", - "vtable_address": 64363152, + "vtable_address": 64367056, "methods": [ 12043984, - 59816784, - 23275776, - 23275792, - 59817120, - 59817136, - 59817120, + 59820688, + 23278528, + 23278544, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -199627,12 +199627,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -199647,30 +199647,30 @@ 12233520, 12233296, 12233760, - 59835792, - 23275760, - 23284480, - 23284400, + 59839696, + 23278512, + 23287232, + 23287152, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12399792, @@ -199721,26 +199721,26 @@ }, { "type_name": "CSGOInputHistoryEntryPB", - "vtable_address": 63753472, - "methods": [ - 17278272, - 17279072, - 29643894, - 17271872, - 17282912, - 17267696, - 29646054, - 29642886, - 17283488, - 17268272, - 17273040, + "vtable_address": 63757376, + "methods": [ + 17280576, + 17281376, + 29647734, + 17274176, + 17285216, + 17270000, + 29649894, + 29646726, + 17285792, + 17270576, + 17275344, 12011504, - 17270048, - 29642796, - 29643062, - 17267968, - 17268176, - 17267728 + 17272352, + 29646636, + 29646902, + 17270272, + 17270480, + 17270032 ], "bases": [ { @@ -199773,26 +199773,26 @@ }, { "type_name": "CSGOInterpolationInfoPB", - "vtable_address": 63753152, + "vtable_address": 63757056, "methods": [ - 17278016, - 17278816, - 29643894, - 17271552, - 17279648, - 17267696, - 29646054, - 29642886, - 17268016, - 17268256, - 17272096, + 17280320, + 17281120, + 29647734, + 17273856, + 17281952, + 17270000, + 29649894, + 29646726, + 17270320, + 17270560, + 17274400, 12011504, - 17268896, - 29642796, - 29643062, - 17267968, - 17268112, - 17267680 + 17271200, + 29646636, + 29646902, + 17270272, + 17270416, + 17269984 ], "bases": [ { @@ -199825,26 +199825,26 @@ }, { "type_name": "CSGOInterpolationInfoPB_CL", - "vtable_address": 63753312, + "vtable_address": 63757216, "methods": [ - 17278144, - 17278944, - 29643894, - 17271696, - 17279712, - 17267696, - 29646054, - 29642886, - 17267984, - 17268240, - 17272720, + 17280448, + 17281248, + 29647734, + 17274000, + 17282016, + 17270000, + 29649894, + 29646726, + 17270288, + 17270544, + 17275024, 12011504, - 17268432, - 29642796, - 29643062, - 17267968, - 17268144, - 17267712 + 17270736, + 29646636, + 29646902, + 17270272, + 17270448, + 17270016 ], "bases": [ { @@ -199877,34 +199877,34 @@ }, { "type_name": "CSGOUserCmdPB", - "vtable_address": 63753632, - "methods": [ - 17278624, - 17279440, - 29643894, - 17272080, - 17284224, - 17267696, - 29646054, - 29642886, - 17284864, - 17268288, - 17274752, - 12011504, - 17269312, - 29642796, - 29643062, - 17267968, - 17268208, - 17267744, - 29644624, - 17279920, - 29644624, - 17276336, - 29644624, - 17276240, - 29644624, - 17276096 + "vtable_address": 63757536, + "methods": [ + 17280928, + 17281744, + 29647734, + 17274384, + 17286528, + 17270000, + 29649894, + 29646726, + 17287168, + 17270592, + 17277056, + 12011504, + 17271616, + 29646636, + 29646902, + 17270272, + 17270512, + 17270048, + 29648464, + 17282224, + 29648464, + 17278640, + 29648464, + 17278544, + 29648464, + 17278400 ], "bases": [ { @@ -199937,35 +199937,35 @@ }, { "type_name": "CSGO_AudioMeter", - "vtable_address": 64497280, + "vtable_address": 64501184, "methods": [ 12043984, - 59816784, - 25204048, - 25204064, - 25224624, - 59817136, - 25206704, + 59820688, + 25207056, + 25207072, + 25227632, + 59821040, + 25209712, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -199978,12 +199978,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -199993,40 +199993,40 @@ 12233472, 12233488, 12233504, - 25210752, - 25251136, + 25213760, + 25254144, 12233520, 12233296, 12233760, - 59835792, - 25204032, - 25205904, - 25214640, + 59839696, + 25207040, + 25208912, + 25217648, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25225056, - 25204096, - 25204112 + 25228064, + 25207104, + 25207120 ], "bases": [ { @@ -200069,10 +200069,10 @@ }, { "type_name": "CSGO_AudioMeter", - "vtable_address": 64498000, + "vtable_address": 64501904, "methods": [ - 25213120, - 25213136 + 25216128, + 25216144 ], "bases": [ { @@ -200115,35 +200115,35 @@ }, { "type_name": "CSGO_BaseSlider", - "vtable_address": 64504688, + "vtable_address": 64508592, "methods": [ 12043984, - 59816784, - 25204880, - 25204896, - 59817120, - 59817136, - 59817120, + 59820688, + 25207888, + 25207904, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 25209904, - 59828528, - 25208672, + 59821792, + 59821808, + 25212912, + 59832432, + 25211680, 12233664, 12233696, 12233680, @@ -200156,12 +200156,12 @@ 12399392, 12233312, 12233168, - 25262496, - 59825616, - 59825216, - 59836080, + 25265504, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -200176,8 +200176,8 @@ 12233520, 12233296, 12233760, - 59835792, - 25204848 + 59839696, + 25207856 ], "bases": [ { @@ -200210,35 +200210,35 @@ }, { "type_name": "CSGO_ContextMenu_CustomLayout", - "vtable_address": 64428880, + "vtable_address": 64432784, "methods": [ 12043984, - 59816784, - 24073520, - 24073536, - 59817120, - 59817136, - 59817120, + 59820688, + 24076272, + 24076288, + 59821024, + 59821040, + 59821024, 12233600, - 60126496, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60130400, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60130112, - 59817904, - 59816800, - 59828528, - 59823152, + 60134016, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -200251,12 +200251,12 @@ 12399392, 12233312, 12233168, - 28281552, - 59825616, - 59825216, - 59836080, + 28284816, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -200271,34 +200271,34 @@ 12233520, 12233296, 12233760, - 59835792, - 24073504, - 24083264, - 24083024, + 59839696, + 24076256, + 24086016, + 24085776, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60124208, - 24073488 + 60128112, + 24076240 ], "bases": [ { @@ -200353,35 +200353,35 @@ }, { "type_name": "CSGO_HudCameraGraph", - "vtable_address": 64460808, + "vtable_address": 64464712, "methods": [ 12043984, - 59816784, - 24700896, - 24700912, - 24706064, - 59817136, - 59817120, + 59820688, + 24703904, + 24703920, + 24709072, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -200394,12 +200394,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -200414,35 +200414,35 @@ 12233520, 12233296, 12233760, - 59835792, - 24700880, - 24707536, - 24716320, + 59839696, + 24703888, + 24710544, + 24719328, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24703664, - 24700864, - 24700688 + 24706672, + 24703872, + 24703696 ], "bases": [ { @@ -200507,21 +200507,21 @@ }, { "type_name": "CSGO_HudCameraGraph", - "vtable_address": 64461528, - "methods": [ - 24716656, - 24716528, - 21705296, - 21705200, - 21705216, - 21705232, - 21705248, - 21705264, - 24710560, - 24715072, - 21705312, - 24710544, - 21705344 + "vtable_address": 64465432, + "methods": [ + 24719664, + 24719536, + 21708112, + 21708016, + 21708032, + 21708048, + 21708064, + 21708080, + 24713568, + 24718080, + 21708128, + 24713552, + 21708160 ], "bases": [ { @@ -200586,35 +200586,35 @@ }, { "type_name": "CSGO_SettingsSlider", - "vtable_address": 64503904, + "vtable_address": 64507808, "methods": [ 12043984, - 59816784, - 25205136, - 25205152, - 59817120, - 59817136, - 59817120, + 59820688, + 25208144, + 25208160, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 25209904, - 59828528, - 25216336, + 59821792, + 59821808, + 25212912, + 59832432, + 25219344, 12233664, 12233696, 12233680, @@ -200627,12 +200627,12 @@ 12399392, 12233312, 12233168, - 25262736, - 59825616, - 59825216, - 59836080, + 25265744, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -200647,40 +200647,40 @@ 12233520, 12233296, 12233760, - 59835792, - 25205104, - 25215168, - 25215264, + 59839696, + 25208112, + 25218176, + 25218272, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25273120, - 25274256, - 25273648, - 25243168, - 25218912, - 25273216, - 25219584, - 25205200 + 25276128, + 25277264, + 25276656, + 25246176, + 25221920, + 25276224, + 25222592, + 25208208 ], "bases": [ { @@ -200734,9 +200734,9 @@ }, { "type_name": "CSGO_SettingsSlider", - "vtable_address": 64504664, + "vtable_address": 64508568, "methods": [ - 25205216 + 25208224 ], "bases": [ { @@ -200790,10 +200790,10 @@ }, { "type_name": "CSHA1", - "vtable_address": 64357696, + "vtable_address": 64361600, "methods": [ - 23274800, - 23276944 + 23277552, + 23279696 ], "bases": [], "model": { @@ -200804,7 +200804,7 @@ }, { "type_name": "CSMatchStats_t", - "vtable_address": 63706944, + "vtable_address": 63710848, "methods": [ 17121344, 17121296, @@ -200832,23 +200832,23 @@ }, { "type_name": "CSOAccountItemPersonalStore", - "vtable_address": 63549696, + "vtable_address": 63553600, "methods": [ 15649568, 15714800, - 29643894, + 29647734, 15182432, 15796832, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14872928, 14851216, 15337040, 12011504, 14984768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837920, 14802144 @@ -200884,23 +200884,23 @@ }, { "type_name": "CSOAccountKeychainRemoveToolCharges", - "vtable_address": 63550496, + "vtable_address": 63554400, "methods": [ 15650304, 15696848, - 29643894, + 29647734, 15183200, 15797152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825552, 14851152, 15340736, 12011504, 14914944, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838080, 14802224 @@ -200936,23 +200936,23 @@ }, { "type_name": "CSOAccountRecurringMission", - "vtable_address": 63551456, + "vtable_address": 63555360, "methods": [ 15650944, 15697488, - 29643894, + 29647734, 15184080, 15797456, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14826080, 14851056, 15344240, 12011504, 15010368, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838272, 14802320 @@ -200988,23 +200988,23 @@ }, { "type_name": "CSOAccountRecurringSubscription", - "vtable_address": 63550976, + "vtable_address": 63554880, "methods": [ 15650688, 15697232, - 29643894, + 29647734, 15183632, 15797328, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825904, 14851104, 15342464, 12011504, 14938400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838176, 14802272 @@ -201040,23 +201040,23 @@ }, { "type_name": "CSOAccountSeasonalOperation", - "vtable_address": 63550816, + "vtable_address": 63554720, "methods": [ 15650560, 15697104, - 29643894, + 29647734, 15183504, 15797264, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825696, 14851120, 15341728, 12011504, 15079136, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838144, 14802256 @@ -201092,23 +201092,23 @@ }, { "type_name": "CSOAccountXpShop", - "vtable_address": 63549856, + "vtable_address": 63553760, "methods": [ 15649712, 15714960, - 29643894, + 29647734, 15182576, 15796896, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14875280, 14847840, 15337792, 12011504, 14985280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837952, 14802160 @@ -201144,23 +201144,23 @@ }, { "type_name": "CSOAccountXpShopBids", - "vtable_address": 63550016, + "vtable_address": 63553920, "methods": [ 15649856, 15696720, - 29643894, + 29647734, 15182736, 15796960, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825424, 14851200, 15338464, 12011504, 15009760, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837984, 14802176 @@ -201196,23 +201196,23 @@ }, { "type_name": "CSOEconClaimCode", - "vtable_address": 63518656, + "vtable_address": 63522560, "methods": [ 15625056, 15710160, - 29643894, + 29647734, 15144288, 15805696, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856496, 14853072, 15241744, 12011504, 15016800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831712, 14795728 @@ -201248,23 +201248,23 @@ }, { "type_name": "CSOEconCoupon", - "vtable_address": 63549536, + "vtable_address": 63553440, "methods": [ 15649440, 15696592, - 29643894, + 29647734, 15182288, 15796768, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825328, 14851232, 15336416, 12011504, 14957120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14837888, 14802128 @@ -201300,23 +201300,23 @@ }, { "type_name": "CSOEconEquipSlot", - "vtable_address": 63526336, + "vtable_address": 63530240, "methods": [ 15631072, 15689168, - 29643894, + 29647734, 15151552, 15792352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820048, 14852432, 15264880, 12011504, 15045280, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833248, 14796496 @@ -201352,23 +201352,23 @@ }, { "type_name": "CSOEconGameAccountClient", - "vtable_address": 63516096, + "vtable_address": 63520000, "methods": [ 15622624, 15685072, - 29643894, + 29647734, 15141776, 15790288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818032, 14853248, 15234144, 12011504, 15033664, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831200, 14795472 @@ -201404,23 +201404,23 @@ }, { "type_name": "CSOEconItem", - "vtable_address": 63518336, + "vtable_address": 63522240, "methods": [ 15624624, 15787568, - 29643894, + 29647734, 15144016, 15852256, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14893296, 14846720, 15481664, 12011504, 15121840, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831648, 14795696 @@ -201456,23 +201456,23 @@ }, { "type_name": "CSOEconItemAttribute", - "vtable_address": 63518016, + "vtable_address": 63521920, "methods": [ 15624352, 15710000, - 29643894, + 29647734, 15143696, 15805408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868192, 14846704, 15240144, 12011504, 15025984, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831584, 14795664 @@ -201508,23 +201508,23 @@ }, { "type_name": "CSOEconItemDropRateBonus", - "vtable_address": 63521856, + "vtable_address": 63525760, "methods": [ 15627824, 15687120, - 29643894, + 29647734, 15147456, 15791376, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819184, 14852800, 15251424, 12011504, 15041920, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832352, 14796048 @@ -201560,23 +201560,23 @@ }, { "type_name": "CSOEconItemEquipped", - "vtable_address": 63518176, + "vtable_address": 63522080, "methods": [ 15624496, 15686096, - 29643894, + 29647734, 15143824, 15790832, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14818624, 14846736, 15240688, 12011504, 14935936, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831616, 14795680 @@ -201612,23 +201612,23 @@ }, { "type_name": "CSOEconItemEventTicket", - "vtable_address": 63522176, + "vtable_address": 63526080, "methods": [ 15628080, 15687376, - 29643894, + 29647734, 15147776, 15791504, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819456, 14852768, 15252624, 12011504, 14975872, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832416, 14796080 @@ -201664,23 +201664,23 @@ }, { "type_name": "CSOEconItemLeagueViewPass", - "vtable_address": 63522016, + "vtable_address": 63525920, "methods": [ 15627952, 15687248, - 29643894, + 29647734, 15147616, 15791440, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14819328, 14852784, 15252064, 12011504, 15009152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14832384, 14796064 @@ -201716,23 +201716,23 @@ }, { "type_name": "CSOEconRentalHistory", - "vtable_address": 63526976, + "vtable_address": 63530880, "methods": [ 15631616, 15689552, - 29643894, + 29647734, 15152176, 15792544, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820416, 14852384, 15266656, 12011504, 15046016, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833376, 14796560 @@ -201768,23 +201768,23 @@ }, { "type_name": "CSOGameAccountSteamChina", - "vtable_address": 63551136, + "vtable_address": 63555040, "methods": [ 15650816, 15697360, - 29643894, + 29647734, 15183776, 15797392, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825984, 14851088, 15343040, 12011504, 14973920, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838208, 14802288 @@ -201820,23 +201820,23 @@ }, { "type_name": "CSOItemCriteria", - "vtable_address": 63516416, + "vtable_address": 63520320, "methods": [ 15622912, 15737776, - 29643894, + 29647734, 15142112, 15857488, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14905952, 14846688, 15479104, 12011504, 15120032, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831264, 14795504 @@ -201872,23 +201872,23 @@ }, { "type_name": "CSOItemCriteriaCondition", - "vtable_address": 63516256, + "vtable_address": 63520160, "methods": [ 15622752, 15724880, - 29643894, + 29647734, 15141936, 15805248, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856320, 14846672, 15234784, 12011504, 15024096, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831232, 14795488 @@ -201924,23 +201924,23 @@ }, { "type_name": "CSOItemRecipe", - "vtable_address": 63516576, + "vtable_address": 63520480, "methods": [ 15623072, 15623408, - 29643894, + 29647734, 15142336, 15858304, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14906544, 14853232, 15480144, 12011504, 15120800, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14831296, 14795520 @@ -201976,23 +201976,23 @@ }, { "type_name": "CSOLobbyInvite", - "vtable_address": 63514656, + "vtable_address": 63518560, "methods": [ 15621696, 15709680, - 29643894, + 29647734, 15140496, 15804704, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856144, 14853360, 15230832, 12011504, 14965152, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14830912, 14795328 @@ -202028,23 +202028,23 @@ }, { "type_name": "CSOPartyInvite", - "vtable_address": 63514496, + "vtable_address": 63518400, "methods": [ 15621552, 15709520, - 29643894, + 29647734, 15140368, 15804416, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856032, 14853376, 15230240, 12011504, 14964768, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14830880, 14795312 @@ -202080,23 +202080,23 @@ }, { "type_name": "CSOPersonaDataPublic", - "vtable_address": 63551296, + "vtable_address": 63555200, "methods": [ 15746016, 15766160, - 29643894, + 29647734, 15183920, 15862448, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14829808, 14851072, 15343552, 12011504, 15017408, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838240, 14802304 @@ -202132,23 +202132,23 @@ }, { "type_name": "CSOQuestProgress", - "vtable_address": 63550656, + "vtable_address": 63554560, "methods": [ 15650432, 15696976, - 29643894, + 29647734, 15183344, 15797200, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14825600, 14851136, 15341216, 12011504, 14973440, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838112, 14802240 @@ -202184,23 +202184,23 @@ }, { "type_name": "CSOVolatileItemClaimedRewards", - "vtable_address": 63550336, + "vtable_address": 63554240, "methods": [ 15650144, 15727280, - 29643894, + 29647734, 15183056, 15797088, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14875728, 14851168, 15339904, 12011504, 14990048, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838048, 14802208 @@ -202236,23 +202236,23 @@ }, { "type_name": "CSOVolatileItemOffer", - "vtable_address": 63550176, + "vtable_address": 63554080, "methods": [ 15649984, 15727120, - 29643894, + 29647734, 15182896, 15797024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14875616, 14851184, 15339024, 12011504, 14989472, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838016, 14802192 @@ -202288,7 +202288,7 @@ }, { "type_name": "CSPerRoundStats_t", - "vtable_address": 63706888, + "vtable_address": 63710792, "methods": [ 17121328, 17121296, @@ -202305,23 +202305,23 @@ }, { "type_name": "CSVCMsgList_GameEvents", - "vtable_address": 63629456, + "vtable_address": 63633360, "methods": [ 16576080, 16636400, - 29643894, + 29647734, 16234160, 16717680, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16072848, 15997968, 16448272, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16015872, 15986960 @@ -202357,23 +202357,23 @@ }, { "type_name": "CSVCMsgList_GameEvents_event_t", - "vtable_address": 63629296, + "vtable_address": 63633200, "methods": [ 16653424, 16653856, - 29643894, + 29647734, 16233984, 16717600, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16072720, 15994848, 16326464, 12011504, 16081408, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015840, 15986944 @@ -202409,23 +202409,23 @@ }, { "type_name": "CSVCMsg_BSPDecal", - "vtable_address": 63618896, + "vtable_address": 63622800, "methods": [ 16567440, 16645024, - 29643894, + 29647734, 16223760, 16681024, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16029216, 15998576, 16292992, 12011504, 16131904, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013760, 15985424 @@ -202461,23 +202461,23 @@ }, { "type_name": "CSVCMsg_Broadcast_Command", - "vtable_address": 63625456, + "vtable_address": 63629360, "methods": [ 16573008, 16620112, - 29643894, + 29647734, 16230032, 16696656, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15998176, 16314592, 12011504, 16075888, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015072, 15986096 @@ -202513,23 +202513,23 @@ }, { "type_name": "CSVCMsg_ClassInfo", - "vtable_address": 63617296, + "vtable_address": 63621200, "methods": [ 16566320, 16635168, - 29643894, + 29647734, 16222224, 16713312, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16060144, 15998720, 16461808, 12011504, 16058656, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013440, 15985264 @@ -202565,23 +202565,23 @@ }, { "type_name": "CSVCMsg_ClassInfo_class_t", - "vtable_address": 63617136, + "vtable_address": 63621040, "methods": [ 16566176, 16617072, - 29643894, + 29647734, 16222048, 16691936, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16032592, 15994480, 16287152, 12011504, 16086560, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013408, 15985248 @@ -202617,23 +202617,23 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables", - "vtable_address": 63623216, + "vtable_address": 63627120, "methods": [ 16570976, 16619312, - 29643894, + 29647734, 16227888, 16695696, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15998288, 16307360, 12011504, 16083568, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014624, 15985856 @@ -202669,23 +202669,23 @@ }, { "type_name": "CSVCMsg_CmdKeyValues", - "vtable_address": 63622416, + "vtable_address": 63626320, "methods": [ 16570384, 16619152, - 29643894, + 29647734, 16227088, 16695360, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15998336, 16305264, 12011504, 16085072, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014464, 15985776 @@ -202721,23 +202721,23 @@ }, { "type_name": "CSVCMsg_CreateStringTable", - "vtable_address": 63621296, + "vtable_address": 63625200, "methods": [ 16569536, 16628864, - 29643894, + 29647734, 16226128, 16694416, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039888, 15998448, 16300096, 12011504, 16181504, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014240, 15985664 @@ -202773,23 +202773,23 @@ }, { "type_name": "CSVCMsg_CrosshairAngle", - "vtable_address": 63618736, + "vtable_address": 63622640, "methods": [ 16673200, 16674352, - 29643894, + 29647734, 16223600, 16736032, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001824, 15998592, 16292576, 12011504, 16044080, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013728, 15985408 @@ -202825,23 +202825,23 @@ }, { "type_name": "CSVCMsg_FixAngle", - "vtable_address": 63618576, + "vtable_address": 63622480, "methods": [ 16673584, 16673968, - 29643894, + 29647734, 16223472, 16736160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001728, 15998608, 16291968, 12011504, 16055952, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013696, 15985392 @@ -202877,23 +202877,23 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer", - "vtable_address": 63623856, + "vtable_address": 63627760, "methods": [ 16571552, 16634320, - 29643894, + 29647734, 16228592, 16715408, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16060848, 15998272, 16468704, 12011504, 16049904, - 29642796, - 29643062, + 29646636, + 29646902, 15994256, 16014752, 15985920 @@ -202929,23 +202929,23 @@ }, { "type_name": "CSVCMsg_FullFrameSplit", - "vtable_address": 63621936, + "vtable_address": 63625840, "methods": [ 16569968, 16618832, - 29643894, + 29647734, 16226672, 16694848, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16040320, 15998384, 16303200, 12011504, 16148480, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014368, 15985728 @@ -202981,23 +202981,23 @@ }, { "type_name": "CSVCMsg_GameEvent", - "vtable_address": 63629136, + "vtable_address": 63633040, "methods": [ 16575904, 16632720, - 29643894, + 29647734, 16233824, 16716928, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16072288, 15994832, 16447568, 12011504, 16105280, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015808, 15986928 @@ -203033,23 +203033,23 @@ }, { "type_name": "CSVCMsg_GameEventList", - "vtable_address": 63620336, + "vtable_address": 63624240, "methods": [ 16568816, 16635520, - 29643894, + 29647734, 16225184, 16714800, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16063024, 15998496, 16464656, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16014048, 15985568 @@ -203085,23 +203085,23 @@ }, { "type_name": "CSVCMsg_GameEventList_descriptor_t", - "vtable_address": 63620176, + "vtable_address": 63624080, "methods": [ 16568640, 16632528, - 29643894, + 29647734, 16225008, 16714272, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16062736, 15994576, 16463936, 12011504, 16105696, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014016, 15985552 @@ -203137,23 +203137,23 @@ }, { "type_name": "CSVCMsg_GameEventList_key_t", - "vtable_address": 63620016, + "vtable_address": 63623920, "methods": [ 16568496, 16618032, - 29643894, + 29647734, 16224816, 16693488, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16033200, 15994560, 16297104, 12011504, 16087264, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013984, 15985536 @@ -203189,23 +203189,23 @@ }, { "type_name": "CSVCMsg_GameEvent_key_t", - "vtable_address": 63628976, + "vtable_address": 63632880, "methods": [ 16575760, 16621072, - 29643894, + 29647734, 16233632, 16698608, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16033872, 15994816, 16325680, 12011504, 16155424, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015776, 15986912 @@ -203241,23 +203241,23 @@ }, { "type_name": "CSVCMsg_GameSessionConfiguration", - "vtable_address": 63630416, + "vtable_address": 63634320, "methods": [ 16577088, 16634096, - 29643894, + 29647734, 16235088, 16699568, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16012064, 15994464, 16331056, 12011504, 16194528, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016064, 15987056 @@ -203293,23 +203293,23 @@ }, { "type_name": "CSVCMsg_GetCvarValue", - "vtable_address": 63619216, + "vtable_address": 63623120, "methods": [ 16567728, 16617552, - 29643894, + 29647734, 16224048, 16692624, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16032816, 15998544, 16294448, 12011504, 16086912, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013824, 15985456 @@ -203345,23 +203345,23 @@ }, { "type_name": "CSVCMsg_HLTVStatus", - "vtable_address": 63622096, + "vtable_address": 63626000, "methods": [ 16570112, 16618992, - 29643894, + 29647734, 16226800, 16695104, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16033296, 15998368, 16303984, 12011504, 16132608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014400, 15985744 @@ -203397,23 +203397,23 @@ }, { "type_name": "CSVCMsg_HltvFixupOperatorStatus", - "vtable_address": 63625776, + "vtable_address": 63629680, "methods": [ 16573376, 16620272, - 29643894, + 29647734, 16230320, 16697056, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008832, 15998144, 16315888, 12011504, 16087968, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015136, 15986128 @@ -203449,23 +203449,23 @@ }, { "type_name": "CSVCMsg_HltvReplay", - "vtable_address": 63625136, + "vtable_address": 63629040, "methods": [ 16572752, 16606192, - 29643894, + 29647734, 16229728, 16680752, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024816, 15998192, 16313136, 12011504, 16159136, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015008, 15986064 @@ -203501,23 +203501,23 @@ }, { "type_name": "CSVCMsg_Menu", - "vtable_address": 63619376, + "vtable_address": 63623280, "methods": [ 16567872, 16617712, - 29643894, + 29647734, 16224192, 16692848, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039376, 15998528, 16295024, 12011504, 16116896, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013856, 15985472 @@ -203553,23 +203553,23 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted", - "vtable_address": 63626256, + "vtable_address": 63630160, "methods": [ 16573824, 16606448, - 29643894, + 29647734, 16230784, 16680896, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16025168, 15998112, 16317104, 12011504, 16094080, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16015232, 15986176 @@ -203605,23 +203605,23 @@ }, { "type_name": "CSVCMsg_PacketEntities", - "vtable_address": 63620976, + "vtable_address": 63624880, "methods": [ 16660240, 16660864, - 29643894, + 29647734, 16225824, 16727712, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16063136, 15998480, 16465120, 12011504, 16211264, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014176, 15985632 @@ -203657,23 +203657,23 @@ }, { "type_name": "CSVCMsg_PacketEntities_alternate_baseline_t", - "vtable_address": 63620496, + "vtable_address": 63624400, "methods": [ 16568976, 16605168, - 29643894, + 29647734, 16225312, 16680224, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024352, 15994592, 16297680, 12011504, 16093376, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014080, 15985584 @@ -203709,23 +203709,23 @@ }, { "type_name": "CSVCMsg_PacketEntities_non_transmitted_entities_t", - "vtable_address": 63620656, + "vtable_address": 63624560, "methods": [ 16569104, 16618192, - 29643894, + 29647734, 16225456, 16693712, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039600, 15994608, 16298256, 12011504, 16117280, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014112, 15985600 @@ -203761,23 +203761,23 @@ }, { "type_name": "CSVCMsg_PacketEntities_outofpvs_entity_updates_t", - "vtable_address": 63620816, + "vtable_address": 63624720, "methods": [ 16569248, 16618352, - 29643894, + 29647734, 16225600, 16693936, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039696, 15994624, 16298832, 12011504, 16117664, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014144, 15985616 @@ -203813,23 +203813,23 @@ }, { "type_name": "CSVCMsg_PacketReliable", - "vtable_address": 63621776, + "vtable_address": 63625680, "methods": [ 16569840, 16605296, - 29643894, + 29647734, 16226544, 16680288, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024432, 15998400, 16302480, 12011504, 16108224, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014336, 15985712 @@ -203865,23 +203865,23 @@ }, { "type_name": "CSVCMsg_PeerList", - "vtable_address": 63623056, + "vtable_address": 63626960, "methods": [ 16570816, 16635696, - 29643894, + 29647734, 16227744, 16716656, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16064448, 15998304, 16467184, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16014592, 15985840 @@ -203917,23 +203917,23 @@ }, { "type_name": "CSVCMsg_Prefetch", - "vtable_address": 63618256, + "vtable_address": 63622160, "methods": [ 16567184, 16604784, - 29643894, + 29647734, 16223152, 16680048, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024080, 15998640, 16290688, 12011504, 16092672, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013632, 15985360 @@ -203969,23 +203969,23 @@ }, { "type_name": "CSVCMsg_Print", - "vtable_address": 63617776, + "vtable_address": 63621680, "methods": [ 16566752, 16617392, - 29643894, + 29647734, 16222672, 16692416, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15998672, 16288896, 12011504, 16075712, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013536, 15985312 @@ -204021,23 +204021,23 @@ }, { "type_name": "CSVCMsg_RconServerDetails", - "vtable_address": 63622576, + "vtable_address": 63626480, "methods": [ 16570528, 16629024, - 29643894, + 29647734, 16227248, 16695568, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 15998320, 16305664, 12011504, 16120240, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014496, 15985792 @@ -204073,23 +204073,23 @@ }, { "type_name": "CSVCMsg_SendTable", - "vtable_address": 63619856, + "vtable_address": 63623760, "methods": [ 16568320, 16632336, - 29643894, + 29647734, 16224672, 16721360, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16097312, 15998512, 16463152, 12011504, 16108608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013952, 15985520 @@ -204125,23 +204125,23 @@ }, { "type_name": "CSVCMsg_SendTable_sendprop_t", - "vtable_address": 63619696, + "vtable_address": 63623600, "methods": [ 16568160, 16628704, - 29643894, + 29647734, 16224480, 16693328, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16032912, 15994544, 16296288, 12011504, 16164704, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013920, 15985504 @@ -204177,23 +204177,23 @@ }, { "type_name": "CSVCMsg_ServerInfo", - "vtable_address": 63616976, + "vtable_address": 63620880, "methods": [ 16666288, 16666864, - 29643894, + 29647734, 16221904, 16699952, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16041936, 15998736, 16285968, 12011504, 16204000, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013376, 15985232 @@ -204229,23 +204229,23 @@ }, { "type_name": "CSVCMsg_ServerSteamID", - "vtable_address": 63622256, + "vtable_address": 63626160, "methods": [ 16570256, 16605424, - 29643894, + 29647734, 16226928, 16680352, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024528, 15998352, 16304784, 12011504, 16077920, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014432, 15985760 @@ -204281,23 +204281,23 @@ }, { "type_name": "CSVCMsg_SetPause", - "vtable_address": 63617456, + "vtable_address": 63621360, "methods": [ 16566480, 16604528, - 29643894, + 29647734, 16222368, 16679872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999472, 15998704, 16287728, 12011504, 16055840, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013472, 15985280 @@ -204333,23 +204333,23 @@ }, { "type_name": "CSVCMsg_SetView", - "vtable_address": 63618416, + "vtable_address": 63622320, "methods": [ 16567312, 16604912, - 29643894, + 29647734, 16223312, 16680112, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024160, 15998624, 16291392, 12011504, 16093024, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013664, 15985376 @@ -204385,23 +204385,23 @@ }, { "type_name": "CSVCMsg_Sounds", - "vtable_address": 63618096, + "vtable_address": 63622000, "methods": [ 16567024, 16635344, - 29643894, + 29647734, 16223024, 16720928, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023952, 15998656, 16462480, 12011504, 16058832, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013600, 15985344 @@ -204437,23 +204437,23 @@ }, { "type_name": "CSVCMsg_Sounds_sounddata_t", - "vtable_address": 63617936, + "vtable_address": 63621840, "methods": [ 16566896, 16604656, - 29643894, + 29647734, 16222848, 16679920, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023408, 15994496, 16289296, 12011504, 16200320, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013568, 15985328 @@ -204489,23 +204489,23 @@ }, { "type_name": "CSVCMsg_SplitScreen", - "vtable_address": 63619056, + "vtable_address": 63622960, "methods": [ 16567600, 16605040, - 29643894, + 29647734, 16223904, 16680160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024240, 15998560, 16293664, 12011504, 16112096, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013792, 15985440 @@ -204541,23 +204541,23 @@ }, { "type_name": "CSVCMsg_StopSound", - "vtable_address": 63624016, + "vtable_address": 63627920, "methods": [ 16571744, 16605808, - 29643894, + 29647734, 16228736, 16680592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15998256, 16309376, 12011504, 16052256, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014784, 15985936 @@ -204593,23 +204593,23 @@ }, { "type_name": "CSVCMsg_TempEntities", - "vtable_address": 63621136, + "vtable_address": 63625040, "methods": [ 16569392, 16618512, - 29643894, + 29647734, 16225968, 16694160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039792, 15998464, 16299408, 12011504, 16127552, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014208, 15985648 @@ -204645,23 +204645,23 @@ }, { "type_name": "CSVCMsg_UpdateStringTable", - "vtable_address": 63621456, + "vtable_address": 63625360, "methods": [ 16569696, 16618672, - 29643894, + 29647734, 16226272, 16694592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16040192, 15998432, 16301008, 12011504, 16137120, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014272, 15985680 @@ -204697,23 +204697,23 @@ }, { "type_name": "CSVCMsg_UserCommands", - "vtable_address": 63626096, + "vtable_address": 63630000, "methods": [ 16573664, 16636048, - 29643894, + 29647734, 16230640, 16716224, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16067536, 15998128, 16471232, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16015200, 15986160 @@ -204749,23 +204749,23 @@ }, { "type_name": "CSVCMsg_UserMessage", - "vtable_address": 63619536, + "vtable_address": 63623440, "methods": [ 16568016, 16617872, - 29643894, + 29647734, 12013424, 16693072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039472, 12013408, 16295600, 12011504, 16136576, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013888, 15985488 @@ -204801,7 +204801,7 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 63089208, + "vtable_address": 63093112, "methods": [ 12013632, 12013696, @@ -204873,23 +204873,23 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 63089272, + "vtable_address": 63093176, "methods": [ 12013664, 12013760, - 29643894, + 29647734, 12013424, 16693072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039472, 12013408, 16295600, 12011504, 16136576, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013888, 15985488 @@ -204957,23 +204957,23 @@ }, { "type_name": "CSVCMsg_VoiceData", - "vtable_address": 63621616, + "vtable_address": 63625520, "methods": [ 16647376, 16664624, - 29643894, + 29647734, 16226400, 16728896, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16039136, 15998416, 16301680, 12011504, 16144160, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014304, 15985696 @@ -205009,23 +205009,23 @@ }, { "type_name": "CSVCMsg_VoiceInit", - "vtable_address": 63617616, + "vtable_address": 63621520, "methods": [ 16566608, 16617232, - 29643894, + 29647734, 16222512, 16692160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16032688, 15998688, 16288208, 12011504, 16109312, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013504, 15985296 @@ -205061,11 +205061,11 @@ }, { "type_name": "CS_App_Lifetime_Gamestats", - "vtable_address": 64347376, + "vtable_address": 64351280, "methods": [ - 23212736, - 17217344, - 23016272, + 23215552, + 17219648, + 23019088, 12204240, 12204256, 12204272, @@ -205093,10 +205093,10 @@ 12204624, 12204640, 12204656, - 17217312, - 17253712, + 17219616, + 17256016, 12204704, - 17217328, + 17219632, 12204736, 12204752, 12204768, @@ -205110,8 +205110,8 @@ 12204896, 12204912, 12204928, - 17217376, - 17217392, + 17219680, + 17219696, 12204976, 12204992, 12205008, @@ -205119,20 +205119,20 @@ 12205040, 12205056, 12205072, - 22917664, + 22920480, 12205104, - 22917648, - 22948112, - 22951648, - 22917632, - 17254752, - 17252576, - 17217408, - 17217424, - 17255680, - 22917696, - 22933408, - 17220832 + 22920464, + 22950928, + 22954464, + 22920448, + 17257056, + 17254880, + 17219712, + 17219728, + 17257984, + 22920512, + 22936224, + 17223136 ], "bases": [ { @@ -205197,11 +205197,11 @@ }, { "type_name": "CS_App_Lifetime_Gamestats", - "vtable_address": 64347952, + "vtable_address": 64351856, "methods": [ - 22948016, - 22951536, - 17257616 + 22950832, + 22954352, + 17259920 ], "bases": [ { @@ -205266,89 +205266,89 @@ }, { "type_name": "CSave", - "vtable_address": 64062448, + "vtable_address": 64066352, "methods": [ - 19436016, - 19437152, - 19358816, - 19358864, + 19438832, + 19439968, + 19361632, + 19361680, 13253600, - 19756240, - 19492864, - 19367776, - 19501760, - 19505808, - 19507584, - 19502912, - 19505232, - 19506384, - 19504656, - 19504080, - 19502336, - 19506976, - 19503488, - 19488896, - 19497008, - 19489280, - 19501184, - 19501184, - 19500624, - 19710016, - 19489488, - 19500112, - 19496400, - 19499600, - 19496704, - 19499072, - 19496096, - 19499072, - 19498544, - 19497488, + 19759056, + 19495680, + 19370592, + 19504576, + 19508624, + 19510400, + 19505728, + 19508048, + 19509200, + 19507472, + 19506896, + 19505152, + 19509792, + 19506304, + 19491712, + 19499824, + 19492096, + 19504000, + 19504000, + 19503440, + 19712832, 19492304, - 19493936, - 19488432, - 19492576, - 19358928, - 19493504, - 19508160, - 19509008, - 19498544, - 19498016, - 19498016, - 19497488, - 19358976, - 19358992, - 19644864, - 19745856, - 19358976, - 18960848, - 18960816, - 18960880, - 19358784, - 19368128, - 19444576, - 19463264, - 19599104, - 19359072, - 19359008, - 19359024, - 19646400, - 19393040, - 19358800, - 19358800, - 19367520, - 19359040, - 19359056, - 19367552, - 19384448, - 18529264, - 19380000, - 19490112, - 19367600, - 19367648, - 19367776, - 19367776, - 19358112 + 19502928, + 19499216, + 19502416, + 19499520, + 19501888, + 19498912, + 19501888, + 19501360, + 19500304, + 19495120, + 19496752, + 19491248, + 19495392, + 19361744, + 19496320, + 19510976, + 19511824, + 19501360, + 19500832, + 19500832, + 19500304, + 19361792, + 19361808, + 19647680, + 19748672, + 19361792, + 18963664, + 18963632, + 18963696, + 19361600, + 19370944, + 19447392, + 19466080, + 19601920, + 19361888, + 19361824, + 19361840, + 19649216, + 19395856, + 19361616, + 19361616, + 19370336, + 19361856, + 19361872, + 19370368, + 19387264, + 18531568, + 19382816, + 19492928, + 19370416, + 19370464, + 19370592, + 19370592, + 19360928 ], "bases": [ { @@ -205402,89 +205402,89 @@ }, { "type_name": "CSave", - "vtable_address": 64063112, + "vtable_address": 64067016, "methods": [ - 19436496, - 19437648, - 19400400, - 19399648, + 19439312, + 19440464, + 19403216, + 19402464, 13253584, - 19756480, - 19492032, - 19392816, - 19502320, - 19506368, - 19508144, - 19503472, - 19505792, - 19506960, - 19505216, - 19504640, - 19502896, - 19507568, - 19504064, - 19489088, - 19497472, - 19489696, - 19501744, - 19501728, - 19501168, - 19710848, - 19489904, - 19500608, - 19491120, - 19500096, - 19491424, - 19499584, - 19491728, - 19499568, - 19499056, - 19498000, - 19490560, - 19495088, - 19488880, - 19490832, - 19417264, - 19493920, - 19508992, - 19509856, - 19499040, - 19498528, - 19498512, - 19497984, - 19390832, - 19390848, - 19645904, - 19746944, - 19390864, - 18960832, - 18960800, - 18960864, - 19392272, - 19599136, - 19391808, - 19391824, - 19391840, - 19646576, - 19392912, - 19391776, - 19391792, - 19393520, - 19392752, - 19392768, - 19400352, - 19395520, - 19444704, - 19450096, - 19401616, - 18529248, - 19395472, - 19490336, - 19396144, - 19400448, - 19392832, - 19392848, - 19358128 + 19759296, + 19494848, + 19395632, + 19505136, + 19509184, + 19510960, + 19506288, + 19508608, + 19509776, + 19508032, + 19507456, + 19505712, + 19510384, + 19506880, + 19491904, + 19500288, + 19492512, + 19504560, + 19504544, + 19503984, + 19713664, + 19492720, + 19503424, + 19493936, + 19502912, + 19494240, + 19502400, + 19494544, + 19502384, + 19501872, + 19500816, + 19493376, + 19497904, + 19491696, + 19493648, + 19420080, + 19496736, + 19511808, + 19512672, + 19501856, + 19501344, + 19501328, + 19500800, + 19393648, + 19393664, + 19648720, + 19749760, + 19393680, + 18963648, + 18963616, + 18963680, + 19395088, + 19601952, + 19394624, + 19394640, + 19394656, + 19649392, + 19395728, + 19394592, + 19394608, + 19396336, + 19395568, + 19395584, + 19403168, + 19398336, + 19447520, + 19452912, + 19404432, + 18531552, + 19398288, + 19493152, + 19398960, + 19403264, + 19395648, + 19395664, + 19360944 ], "bases": [ { @@ -205538,20 +205538,20 @@ }, { "type_name": "CSaveRestoreBlockSet", - "vtable_address": 64055016, + "vtable_address": 64058920, "methods": [ - 18941584, - 18941616, - 18977920, - 18994160, - 18941712, - 18941808, - 18994512, - 18979200, - 18941888, - 18959072, - 18958928, - 18989824 + 18944400, + 18944432, + 18980736, + 18996976, + 18944528, + 18944624, + 18997328, + 18982016, + 18944704, + 18961888, + 18961744, + 18992640 ], "bases": [ { @@ -205584,17 +205584,17 @@ }, { "type_name": "CSaveRestoreFileData", - "vtable_address": 64054320, + "vtable_address": 64058224, "methods": [ - 19303776, - 19281360, - 19281648, - 19217392, - 18941216, - 19216416, - 19281856, - 19217680, - 19216864 + 19306592, + 19284176, + 19284464, + 19220208, + 18944032, + 19219232, + 19284672, + 19220496, + 19219680 ], "bases": [ { @@ -205616,26 +205616,26 @@ }, { "type_name": "CSaveRestoreFileSystemPassthrough", - "vtable_address": 64062080, - "methods": [ - 19358512, - 19358544, - 19358560, - 19358576, - 19358608, - 19358624, - 19358656, - 19358688, - 19358416, - 19358480, - 19358448, - 19397296, - 19404992, - 19592560, - 19375456, - 19378640, - 19367408, - 19367376 + "vtable_address": 64065984, + "methods": [ + 19361328, + 19361360, + 19361376, + 19361392, + 19361424, + 19361440, + 19361472, + 19361504, + 19361232, + 19361296, + 19361264, + 19400112, + 19407808, + 19595376, + 19378272, + 19381456, + 19370224, + 19370192 ], "bases": [ { @@ -205657,10 +205657,10 @@ }, { "type_name": "CSaveRestoreShared", - "vtable_address": 64063776, + "vtable_address": 64067680, "methods": [ - 19435168, - 19435808 + 19437984, + 19438624 ], "bases": [], "model": { @@ -205671,7 +205671,7 @@ }, { "type_name": "CSceneObject", - "vtable_address": 63088824, + "vtable_address": 63092728, "methods": [ 12011856, 12013344, @@ -205687,7 +205687,7 @@ }, { "type_name": "CScenePrecacheSystem", - "vtable_address": 64011480, + "vtable_address": 64015384, "methods": [ 12204192, 12204208, @@ -205706,7 +205706,7 @@ 12204416, 12204432, 12204448, - 18742352, + 18745168, 12204480, 12204496, 12204512, @@ -205745,12 +205745,12 @@ 12205040, 12205056, 12205072, - 18506352, + 18508656, 12205104, - 18506336, - 18742368, - 18742480, - 18506320 + 18508640, + 18745184, + 18745296, + 18508624 ], "bases": [ { @@ -205783,22 +205783,22 @@ }, { "type_name": "CSchemaAttributeType_Default", - "vtable_address": 64585424, - "methods": [ - 27281264, - 27284000, - 27309216, - 27380000, - 27282160, - 27293536, - 27494608, - 27380704, - 27281200, - 27282176, - 27282192, - 27280768, - 27496448, - 27284608 + "vtable_address": 64589328, + "methods": [ + 27284432, + 27287168, + 27312384, + 27383200, + 27285328, + 27296704, + 27497808, + 27383904, + 27284368, + 27285344, + 27285360, + 27283936, + 27499648, + 27287776 ], "bases": [ { @@ -205842,22 +205842,22 @@ }, { "type_name": "CSchemaAttributeType_Float", - "vtable_address": 64585296, - "methods": [ - 27281280, - 27284032, - 27283632, - 27499264, - 27498224, - 27293488, - 27494032, - 27490704, - 27282208, - 27282256, - 27280752, - 27280736, - 27497280, - 27280720 + "vtable_address": 64589200, + "methods": [ + 27284448, + 27287200, + 27286800, + 27502464, + 27501424, + 27296656, + 27497232, + 27493904, + 27285376, + 27285424, + 27283920, + 27283904, + 27500480, + 27283888 ], "bases": [ { @@ -205901,22 +205901,22 @@ }, { "type_name": "CSchemaAttributeType_String", - "vtable_address": 64584912, + "vtable_address": 64588816, "methods": [ - 27281328, - 27284048, - 27309328, - 28016144, - 27301136, - 28013664, - 27334560, - 28017136, - 27290448, - 27282288, - 27282336, - 27278416, - 27290432, - 27284960 + 27284496, + 27287216, + 27312496, + 28019408, + 27304304, + 28016928, + 27337760, + 28020400, + 27293616, + 27285456, + 27285504, + 27281584, + 27293600, + 27288128 ], "bases": [ { @@ -205971,22 +205971,22 @@ }, { "type_name": "CSchemaAttributeType_Uint32", - "vtable_address": 64585168, - "methods": [ - 27281296, - 27284016, - 27309216, - 27380000, - 27282160, - 27289904, - 27493456, - 27380704, - 27281200, - 27282176, - 27282192, - 27280704, - 27496864, - 27280688 + "vtable_address": 64589072, + "methods": [ + 27284464, + 27287184, + 27312384, + 27383200, + 27285328, + 27293072, + 27496656, + 27383904, + 27284368, + 27285344, + 27285360, + 27283872, + 27500064, + 27283856 ], "bases": [ { @@ -206030,22 +206030,22 @@ }, { "type_name": "CSchemaAttributeType_Vector", - "vtable_address": 64585040, + "vtable_address": 64588944, "methods": [ - 27281312, - 27284064, - 27283744, - 27491824, - 27498688, - 27306496, - 27493056, - 27500368, - 27284768, - 27283936, - 27282272, - 27278416, - 27497712, - 27280672 + 27284480, + 27287232, + 27286912, + 27495024, + 27501888, + 27309664, + 27496256, + 27503568, + 27287936, + 27287104, + 27285440, + 27281584, + 27500912, + 27283840 ], "bases": [ { @@ -206089,9 +206089,9 @@ }, { "type_name": "CSchemaInstallCallback", - "vtable_address": 64945848, + "vtable_address": 64949752, "methods": [ - 59390224 + 59394128 ], "bases": [ { @@ -206113,7 +206113,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 64778184, + "vtable_address": 64782088, "methods": [], "bases": [], "model": { @@ -206124,7 +206124,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 64827584, + "vtable_address": 64831488, "methods": [], "bases": [], "model": { @@ -206135,7 +206135,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 64849112, + "vtable_address": 64853016, "methods": [], "bases": [], "model": { @@ -206146,7 +206146,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 64921336, + "vtable_address": 64925240, "methods": [], "bases": [], "model": { @@ -206157,7 +206157,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 64945880, + "vtable_address": 64949784, "methods": [], "bases": [], "model": { @@ -206168,7 +206168,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 65040872, + "vtable_address": 65044776, "methods": [], "bases": [], "model": { @@ -206179,9 +206179,9 @@ }, { "type_name": "CSchemaRegistration_animlib", - "vtable_address": 64921352, + "vtable_address": 64925256, "methods": [ - 58551360 + 58555264 ], "bases": [ { @@ -206203,7 +206203,7 @@ }, { "type_name": "CSchemaRegistration_client", - "vtable_address": 63109312, + "vtable_address": 63113216, "methods": [ 12229600 ], @@ -206227,9 +206227,9 @@ }, { "type_name": "CSchemaRegistration_compositematerialslib", - "vtable_address": 65040888, + "vtable_address": 65044792, "methods": [ - 61268960 + 61272864 ], "bases": [ { @@ -206251,9 +206251,9 @@ }, { "type_name": "CSchemaRegistration_entity2", - "vtable_address": 64849128, + "vtable_address": 64853032, "methods": [ - 40226512 + 40230416 ], "bases": [ { @@ -206275,9 +206275,9 @@ }, { "type_name": "CSchemaRegistration_mathlib_extended", - "vtable_address": 64778200, + "vtable_address": 64782104, "methods": [ - 33115008 + 33118848 ], "bases": [ { @@ -206299,9 +206299,9 @@ }, { "type_name": "CSchemaRegistration_pulse_runtime_lib", - "vtable_address": 64827600, + "vtable_address": 64831504, "methods": [ - 39511792 + 39515632 ], "bases": [ { @@ -206323,9 +206323,9 @@ }, { "type_name": "CSchemaRegistration_tier2", - "vtable_address": 64945896, + "vtable_address": 64949800, "methods": [ - 59393280 + 59397184 ], "bases": [ { @@ -206347,9 +206347,9 @@ }, { "type_name": "CSchemaReservationListener", - "vtable_address": 64224176, + "vtable_address": 64228080, "methods": [ - 22051888 + 22054704 ], "bases": [ { @@ -206371,11 +206371,11 @@ }, { "type_name": "CScriptComponent", - "vtable_address": 64848656, + "vtable_address": 64852560, "methods": [ - 40193536, - 40229856, - 40196576 + 40197440, + 40233760, + 40200480 ], "bases": [ { @@ -206429,7 +206429,7 @@ }, { "type_name": "CScriptComponent", - "vtable_address": 64849864, + "vtable_address": 64853768, "methods": [], "bases": [], "model": { @@ -206440,7 +206440,7 @@ }, { "type_name": "CScriptConsoleCommand", - "vtable_address": 63349592, + "vtable_address": 63353496, "methods": [ 13882240, 13836000, @@ -206466,7 +206466,7 @@ }, { "type_name": "CScriptSpawnGroupEntityFilterProxy", - "vtable_address": 63349704, + "vtable_address": 63353608, "methods": [ 13825888, 13828944, @@ -206492,7 +206492,7 @@ }, { "type_name": "CScriptUniformRandomStream", - "vtable_address": 63349544, + "vtable_address": 63353448, "methods": [ 13830352, 13851264, @@ -206508,32 +206508,32 @@ }, { "type_name": "CScriptedIconLesson", - "vtable_address": 64133960, - "methods": [ - 20798528, - 20799696, - 21017200, - 20929728, - 20797440, - 20600976, - 20799744, - 20599472, - 20988592, - 20989040, - 20743520, - 20740944, - 20581984, - 20572720, - 20656144, - 20581824, - 20572784, - 20580672, - 20581584, - 20741840, - 21013552, - 20989824, - 20990464, - 20991056 + "vtable_address": 64137864, + "methods": [ + 20801344, + 20802512, + 21020016, + 20932544, + 20800256, + 20603792, + 20802560, + 20602288, + 20991408, + 20991856, + 20746336, + 20743760, + 20584800, + 20575536, + 20658960, + 20584640, + 20575600, + 20583488, + 20584400, + 20744656, + 21016368, + 20992640, + 20993280, + 20993872 ], "bases": [ { @@ -206599,7 +206599,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 63340600, + "vtable_address": 63344504, "methods": [ 12204192, 12204208, @@ -206718,7 +206718,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 63341128, + "vtable_address": 63345032, "methods": [ 14068768, 13851216 @@ -206775,10 +206775,10 @@ }, { "type_name": "CSecureLaunchSystem", - "vtable_address": 64208936, + "vtable_address": 64212840, "methods": [ - 21821904, - 21833344 + 21824736, + 21836160 ], "bases": [], "model": { @@ -206789,13 +206789,13 @@ }, { "type_name": "CSecureLaunchSystem::CCallbackInternal_OnGameRichPresenceJoinRequested", - "vtable_address": 64208880, + "vtable_address": 64212784, "methods": [ - 21922016, - 21922048, - 21817008, - 21821808, - 21821840 + 21924896, + 21924928, + 21819840, + 21824640, + 21824672 ], "bases": [ { @@ -206828,13 +206828,13 @@ }, { "type_name": "CSecureLaunchSystem::CCallbackInternal_OnNewUrlLaunchParameters", - "vtable_address": 64208768, + "vtable_address": 64212672, "methods": [ - 21909328, + 21912208, 16917552, 16908512, - 21821712, - 21821744 + 21824544, + 21824576 ], "bases": [ { @@ -206867,9 +206867,9 @@ }, { "type_name": "CServerConfirmedReservationCheckCallback", - "vtable_address": 64351872, + "vtable_address": 64355776, "methods": [ - 23269152 + 23271952 ], "bases": [ { @@ -206891,32 +206891,32 @@ }, { "type_name": "CServerOnlyModelEntity", - "vtable_address": 63358440, + "vtable_address": 63362344, "methods": [ 14368000, 14318048, 14318144, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 14321392, 12233840, 12233856, @@ -206926,23 +206926,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18666912, + 40000032, + 18669216, 14313408, 14314128, 12234080, 14344448, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -206959,13 +206959,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -206973,41 +206973,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -207019,33 +207019,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -207073,9 +207073,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -207083,24 +207083,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -207112,32 +207112,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -207201,15 +207201,15 @@ }, { "type_name": "CServerOnlyModelEntity", - "vtable_address": 63360416, + "vtable_address": 63364320, "methods": [ 14318096, 14318224, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -207273,9 +207273,9 @@ }, { "type_name": "CServerOnlyModelEntity", - "vtable_address": 63360488, + "vtable_address": 63364392, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -207339,12 +207339,12 @@ }, { "type_name": "CServerViewAngleChangeSystem", - "vtable_address": 64017872, + "vtable_address": 64021776, "methods": [ 12204192, 12204208, 12204224, - 18508448, + 18510752, 12204256, 12204272, 12204288, @@ -207397,12 +207397,12 @@ 12205040, 12205056, 12205072, - 18508416, + 18510720, 12205104, - 18508400, - 18518352, - 18518368, - 18508384 + 18510704, + 18520656, + 18520672, + 18510688 ], "bases": [ { @@ -207435,13 +207435,13 @@ }, { "type_name": "CShatterGlassGameSystem", - "vtable_address": 64189080, + "vtable_address": 64192984, "methods": [ 12204192, 12204208, 12204224, 12204240, - 21564032, + 21566848, 12204272, 12204288, 12204304, @@ -207473,7 +207473,7 @@ 12204720, 12204736, 12204752, - 21558720, + 21561536, 12204784, 12204800, 12204816, @@ -207493,12 +207493,12 @@ 12205040, 12205056, 12205072, - 21558688, + 21561504, 12205104, - 21558672, - 21562144, - 21562160, - 21558656 + 21561488, + 21564960, + 21564976, + 21561472 ], "bases": [ { @@ -207531,10 +207531,10 @@ }, { "type_name": "CShootingDebugtRdr", - "vtable_address": 64349256, + "vtable_address": 64353160, "methods": [ - 22917760, - 23079120 + 22920576, + 23081488 ], "bases": [ { @@ -207556,7 +207556,7 @@ }, { "type_name": "CSignalSemaphoreProceduralLayer", - "vtable_address": 63126312, + "vtable_address": 63130216, "methods": [ 12237264, 12238192, @@ -207583,10 +207583,10 @@ }, { "type_name": "CSimSequenceSetup", - "vtable_address": 64116488, + "vtable_address": 64120392, "methods": [ - 20150784, - 20150656 + 20153600, + 20153472 ], "bases": [ { @@ -207608,7 +207608,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 63341256, + "vtable_address": 63345160, "methods": [ 12204192, 12204208, @@ -207720,7 +207720,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 63341816, + "vtable_address": 63345720, "methods": [ 13893936, 14072896, @@ -207770,62 +207770,62 @@ }, { "type_name": "CSimpleCamera", - "vtable_address": 64174424, - "methods": [ - 21357936, - 21357952, - 21360480, - 21324944, - 21361488, - 21357088, - 21342272, - 21344256, - 21324560, - 21324576, - 21324592, - 21324608, - 21324624, - 21324640, - 21345712, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 21324720, - 21324736, - 21325376, - 21325408, - 21324784, - 21324464, - 21324800, - 21324816, - 21324480, - 21324496, - 21324512, - 21387680, - 21324528, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160, - 21325360 + "vtable_address": 64178328, + "methods": [ + 21360752, + 21360768, + 21363296, + 21327760, + 21364304, + 21359904, + 21345088, + 21347072, + 21327376, + 21327392, + 21327408, + 21327424, + 21327440, + 21327456, + 21348528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 21327536, + 21327552, + 21328192, + 21328224, + 21327600, + 21327280, + 21327616, + 21327632, + 21327296, + 21327312, + 21327328, + 21390496, + 21327344, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976, + 21328176 ], "bases": [ { @@ -207858,14 +207858,14 @@ }, { "type_name": "CSimpleLoggingListener", - "vtable_address": 64763992, + "vtable_address": 64767896, "methods": [ - 31457360, - 31457328, - 31457280, - 31457296, - 31457312, - 31458016 + 31461200, + 31461168, + 31461120, + 31461136, + 31461152, + 31461856 ], "bases": [ { @@ -207887,14 +207887,14 @@ }, { "type_name": "CSingleUserRecipientFilter", - "vtable_address": 63336672, + "vtable_address": 63340576, "methods": [ 13820160, 13828928, - 20081616, - 20081600, - 20081632, - 20081648 + 20084432, + 20084416, + 20084448, + 20084464 ], "bases": [ { @@ -207927,20 +207927,20 @@ }, { "type_name": "CSkeletonAnimationController", - "vtable_address": 63492072, + "vtable_address": 63495976, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65520728 + "offset_to_top": 65524632 } } }, { "type_name": "CSkeletonAnimationController", - "vtable_address": 64113568, + "vtable_address": 64117472, "methods": [ - 20170912 + 20173728 ], "bases": [ { @@ -207962,10 +207962,10 @@ }, { "type_name": "CSkeletonAnimationHistoryContext", - "vtable_address": 64113536, + "vtable_address": 64117440, "methods": [ - 20185504, - 20185184 + 20188320, + 20188000 ], "bases": [ { @@ -207987,10 +207987,10 @@ }, { "type_name": "CSkeletonBoneSetupHelperSequenceSetup", - "vtable_address": 64114160, + "vtable_address": 64118064, "methods": [ - 20331584, - 20137152 + 20334400, + 20139968 ], "bases": [ { @@ -208012,7 +208012,7 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 63491112, + "vtable_address": 63495016, "methods": [], "bases": [], "model": { @@ -208023,39 +208023,39 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 64113872, - "methods": [ - 20137104, - 20232240, - 20232528, - 20137184, - 20478912, - 20478976, - 20479152, - 20480336, - 20481360, + "vtable_address": 64117776, + "methods": [ + 20139920, + 20235056, + 20235344, + 20140000, + 20481728, + 20481792, + 20481968, + 20483152, + 20484176, 12447120, 12447136, - 20483488, - 20483232, - 20482896, - 20482800, - 20482144, - 20137216, - 20493856, - 20480496, - 20481056, - 19578080, - 20479040, - 20488416, - 20487296, - 20481824, - 20207488, + 20486304, + 20486048, + 20485712, + 20485616, + 20484960, + 20140032, + 20496672, + 20483312, + 20483872, + 19580896, + 20481856, + 20491232, + 20490112, + 20484640, + 20210304, 12449632, - 20136832, + 20139648, 12447104, - 20136848, - 20351552 + 20139664, + 20354368 ], "bases": [ { @@ -208087,9 +208087,9 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 64114136, + "vtable_address": 64118040, "methods": [ - 20353184 + 20356000 ], "bases": [ { @@ -208121,12 +208121,12 @@ }, { "type_name": "CSkeletonInstance::NetworkVar_m_modelState", - "vtable_address": 64100432, + "vtable_address": 64104336, "methods": [ - 20137088, - 20171072, - 20136800, - 20136864, + 20139904, + 20173888, + 20139616, + 20139680, 14514416 ], "bases": [ @@ -208149,33 +208149,33 @@ }, { "type_name": "CSkyboxReference", - "vtable_address": 63479120, + "vtable_address": 63483024, "methods": [ 14367152, - 21917200, - 21917232, + 21920080, + 21920112, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21917408, - 21132352, - 21132672, - 21132336, - 21917552, - 21917296, - 21133440, + 21127072, + 21920288, + 21135168, + 21135488, + 21135152, + 21920432, + 21920176, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -208184,23 +208184,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21916992, + 40000032, + 21919872, 14552416, 14514336, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -208217,13 +208217,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -208231,39 +208231,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -208277,33 +208277,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -208331,9 +208331,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -208341,24 +208341,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -208402,11 +208402,11 @@ }, { "type_name": "CSmokeDepthCopy", - "vtable_address": 64358536, + "vtable_address": 64362440, "methods": [ - 23276992, - 23276128, - 23276976, + 23279744, + 23278880, + 23279728, 12236576 ], "bases": [ @@ -208440,10 +208440,10 @@ }, { "type_name": "CSmokeVolumeSceneObject", - "vtable_address": 64358288, + "vtable_address": 64362192, "methods": [ - 23286368, - 23287008, + 23289120, + 23289760, 12011888, 12011520 ], @@ -208467,14 +208467,14 @@ }, { "type_name": "CSmokeVolumeSceneObjectDesc", - "vtable_address": 64358336, + "vtable_address": 64362240, "methods": [ - 23275136, - 23399408, - 23274992, + 23277888, + 23402160, + 23277744, 12011584, - 23402880, - 23287056, + 23405632, + 23289808, 12011600, 12011616, 12011632, @@ -208491,7 +208491,7 @@ 12011808, 12011824, 12011840, - 23290896 + 23293648 ], "bases": [ { @@ -208524,13 +208524,13 @@ }, { "type_name": "CSmokeVolumeSystem", - "vtable_address": 63707584, + "vtable_address": 63711488, "methods": [ 12204192, 12204208, 12204224, - 17131712, - 17134448, + 17131808, + 17134544, 12204272, 12204288, 12204304, @@ -208563,7 +208563,7 @@ 12204736, 12204752, 12204768, - 17196544, + 17198880, 12204800, 12204816, 12204832, @@ -208585,7 +208585,7 @@ 17119984, 12205104, 17119968, - 17126448, + 17126544, 17124768, 17119952 ], @@ -208620,11 +208620,11 @@ }, { "type_name": "CSniperZoomStencilRenderer", - "vtable_address": 64626000, + "vtable_address": 64629904, "methods": [ - 28333520, - 28332736, - 28334112, + 28336912, + 28336128, + 28337504, 12236576 ], "bases": [ @@ -208647,7 +208647,7 @@ }, { "type_name": "CSoundAreaGameSystem", - "vtable_address": 64220000, + "vtable_address": 64223904, "methods": [ 12204192, 12204208, @@ -208675,7 +208675,7 @@ 12204560, 12204576, 12204592, - 22163040, + 22165856, 12204624, 12204640, 12204656, @@ -208705,12 +208705,12 @@ 12205040, 12205056, 12205072, - 22046240, + 22049056, 12205104, - 22046224, - 22164512, - 22165008, - 22046208 + 22049040, + 22167328, + 22167824, + 22049024 ], "bases": [ { @@ -208743,12 +208743,12 @@ }, { "type_name": "CSoundAreaOrientedBox", - "vtable_address": 64219952, + "vtable_address": 64223856, "methods": [ - 22046368, - 22050272, - 22050304, - 22076576 + 22049184, + 22053088, + 22053120, + 22079392 ], "bases": [ { @@ -208770,12 +208770,12 @@ }, { "type_name": "CSoundAreaSphere", - "vtable_address": 64219904, + "vtable_address": 64223808, "methods": [ - 22046272, - 22050256, - 22046288, - 22075936 + 22049088, + 22053072, + 22049104, + 22078752 ], "bases": [ { @@ -208797,41 +208797,41 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 64221344, - "methods": [ - 22069248, - 22110400, - 22177216, - 22091008, - 22055472, - 22111024, - 22171392, - 22171792, - 22172192, - 22111136, - 22091696, - 22090032, - 22106896, - 22047280, - 22047296, - 22047184, - 22047232, - 22047152, - 22086912, - 22047312, - 22172992, - 22046736, - 22046768, - 22046800, - 22054176, - 22046608, - 22046640, - 22046672, - 22107936, - 22046816, - 22046880, - 22067520, - 22067856 + "vtable_address": 64225248, + "methods": [ + 22072064, + 22113216, + 22180032, + 22093824, + 22058288, + 22113840, + 22174208, + 22174608, + 22175008, + 22113952, + 22094512, + 22092848, + 22109712, + 22050096, + 22050112, + 22050000, + 22050048, + 22049968, + 22089728, + 22050128, + 22175808, + 22049552, + 22049584, + 22049616, + 22056992, + 22049424, + 22049456, + 22049488, + 22110752, + 22049632, + 22049696, + 22070336, + 22070672 ], "bases": [ { @@ -208874,7 +208874,7 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 64221624, + "vtable_address": 64225528, "methods": [ 12204192, 12204208, @@ -208888,7 +208888,7 @@ 12204336, 12204352, 12204368, - 22046896, + 22049712, 12204400, 12204416, 12204432, @@ -208903,7 +208903,7 @@ 12204576, 12204592, 12204608, - 22046832, + 22049648, 12204640, 12204656, 12204672, @@ -208924,7 +208924,7 @@ 12204912, 12204928, 12204944, - 22109568, + 22112384, 12204976, 12204992, 12205008, @@ -208932,12 +208932,12 @@ 12205040, 12205056, 12205072, - 22046704, + 22049520, 12205104, - 22046656, - 22067360, - 22067680, - 22046624 + 22049472, + 22070176, + 22070496, + 22049440 ], "bases": [ { @@ -208980,12 +208980,12 @@ }, { "type_name": "CSoundEmitterSystem", - "vtable_address": 64220608, + "vtable_address": 64224512, "methods": [ - 22046448, + 22049264, 12204208, 12204224, - 22046464, + 22049280, 12204256, 12204272, 12204288, @@ -209038,12 +209038,12 @@ 12205040, 12205056, 12205072, - 22046416, + 22049232, 12205104, - 22046400, - 22050912, - 22050928, - 22046384 + 22049216, + 22053728, + 22053744, + 22049200 ], "bases": [ { @@ -209065,7 +209065,7 @@ }, { "type_name": "CSoundOpGameSystem", - "vtable_address": 63341880, + "vtable_address": 63345784, "methods": [ 13822000, 12204208, @@ -209171,7 +209171,7 @@ }, { "type_name": "CSoundOpvarSetPointManager", - "vtable_address": 64219296, + "vtable_address": 64223200, "methods": [ 12204192, 12204208, @@ -209183,7 +209183,7 @@ 12204304, 12204320, 12204336, - 22047360, + 22050176, 12204368, 12204384, 12204400, @@ -209229,12 +209229,12 @@ 12205040, 12205056, 12205072, - 22046096, + 22048912, 12205104, - 22046080, - 22051040, - 22051056, - 22046064 + 22048896, + 22053856, + 22053872, + 22048880 ], "bases": [ { @@ -209267,13 +209267,13 @@ }, { "type_name": "CSoundOpvarSetPointManager_MP", - "vtable_address": 64217016, + "vtable_address": 64220920, "methods": [ 12204192, 12204208, 12204224, 12204240, - 22061808, + 22064624, 12204272, 12204288, 12204304, @@ -209290,7 +209290,7 @@ 12204480, 12204496, 12204512, - 22140384, + 22143200, 12204544, 12204560, 12204576, @@ -209325,12 +209325,12 @@ 12205040, 12205056, 12205072, - 22046160, + 22048976, 12205104, - 22046144, - 22070192, - 22070464, - 22046128 + 22048960, + 22073008, + 22073280, + 22048944 ], "bases": [ { @@ -209363,10 +209363,10 @@ }, { "type_name": "CSoundPatch", - "vtable_address": 64221312, + "vtable_address": 64225216, "methods": [ - 22050528, - 22046592 + 22053344, + 22049408 ], "bases": [], "model": { @@ -209377,12 +209377,12 @@ }, { "type_name": "CSoundPatchSaveRestoreOps", - "vtable_address": 64222232, + "vtable_address": 64226136, "methods": [ - 22111856, - 22177024, - 22046000, - 22050000, + 22114672, + 22179840, + 22048816, + 22052816, 12233776, 12233792 ], @@ -209428,7 +209428,7 @@ }, { "type_name": "CSoundscapeSystem", - "vtable_address": 63347888, + "vtable_address": 63351792, "methods": [ 12204192, 12204208, @@ -209524,12 +209524,12 @@ }, { "type_name": "CSource1GameConfiguration", - "vtable_address": 64116520, + "vtable_address": 64120424, "methods": [ 16912160, 16912032, - 19368272, - 20494448, + 19371088, + 20497264, 16911840, 16908240, 16908272, @@ -209537,46 +209537,46 @@ 16911712, 16908336, 16908368, - 19359264, - 19476432, - 19453104, - 20151424, - 20137280, - 19359280, - 19359296, + 19362080, + 19479248, + 19455920, + 20154240, + 20140096, + 19362096, + 19362112, 16906976, 16907056, 16907072, - 19614128, - 20494624, - 20151152, - 19359408, - 19359440, - 20137248, - 19398192, - 19359456, - 20494720, - 20496320, + 19616944, + 20497440, + 20153968, + 19362224, + 19362256, + 20140064, + 19401008, + 19362272, + 20497536, + 20499136, 16907088, - 19359488, - 19359248, - 19359264, - 19359312, - 19359344, - 19359360, + 19362304, + 19362064, + 19362080, + 19362128, + 19362160, + 19362176, 16906992, - 19379936, - 19359376, - 19367792, - 19359360, - 19359392, - 18528960, - 18528992, - 19358352, - 19358384, + 19382752, + 19362192, + 19370608, + 19362176, + 19362208, + 18531264, + 18531296, + 19361168, + 19361200, 16907024, - 19837424, - 19368320 + 19840240, + 19371136 ], "bases": [ { @@ -209718,12 +209718,12 @@ }, { "type_name": "CSource1GameConfiguration", - "vtable_address": 64116944, + "vtable_address": 64120848, "methods": [ 16912224, 16912096, - 19395424, - 20494528, + 19398240, + 20497344, 16911936, 16908256, 16908288, @@ -209731,24 +209731,24 @@ 16911776, 16908352, 16908384, - 19390912, - 19390928, - 19392064, - 19390944, - 19390960, - 19390976, + 19393728, + 19393744, + 19394880, + 19393760, + 19393776, + 19393792, 16907008, - 19404848, - 19390992, - 19393024, - 19391024, - 19391008, - 18528944, - 18528976, - 19358368, - 19358400, + 19407664, + 19393808, + 19395840, + 19393840, + 19393824, + 18531248, + 18531280, + 19361184, + 19361216, 16907040, - 19837488 + 19840304 ], "bases": [ { @@ -209890,13 +209890,13 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem", - "vtable_address": 64070856, + "vtable_address": 64074760, "methods": [ 12204192, 12204208, 12204224, - 19427248, - 19430032, + 19430064, + 19432848, 12204272, 12204288, 12204304, @@ -209912,7 +209912,7 @@ 12204464, 12204480, 12204496, - 19537216, + 19540032, 12204528, 12204544, 12204560, @@ -209948,12 +209948,12 @@ 12205040, 12205056, 12205072, - 19360288, + 19363104, 12205104, - 19360272, - 19402736, - 19403168, - 19360256 + 19363088, + 19405552, + 19405984, + 19363072 ], "bases": [ { @@ -209996,11 +209996,11 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem::CServerSideClient_GameEventLegacyProxy", - "vtable_address": 64070816, + "vtable_address": 64074720, "methods": [ - 19360320, - 19367504, - 19391056 + 19363136, + 19370320, + 19393872 ], "bases": [ { @@ -210022,205 +210022,205 @@ }, { "type_name": "CSource2Client", - "vtable_address": 64178592, - "methods": [ - 21351152, - 21348880, - 21326576, - 21413184, - 21434256, - 21329456, - 21338976, - 21329472, - 21333648, - 21329488, + "vtable_address": 64182496, + "methods": [ + 21353968, + 21351696, + 21329392, + 21416000, + 21437072, + 21332272, + 21341792, + 21332288, + 21336464, + 21332304, + 21332320, + 21329408, + 21329696, + 21337984, + 21546096, + 21329536, + 21427264, + 21427152, + 21337824, + 21337872, + 21359632, + 21331504, + 21337648, + 21433808, + 21368544, + 21328864, + 21353776, + 21329568, + 21329616, + 21330320, + 21330384, + 21467328, + 21329200, + 21392576, 21329504, - 21326592, - 21326880, - 21335168, - 21543280, - 21326720, - 21424448, - 21424336, - 21335008, - 21335056, - 21356816, - 21328688, - 21334832, - 21430992, - 21365728, - 21326048, - 21350960, - 21326752, - 21326800, - 21327504, - 21327568, - 21464512, - 21326384, - 21389760, - 21326688, - 21454848, - 21544576, - 21381728, - 21387184, - 21326672, - 21380640, - 21328288, - 21384512, - 21384224, - 21328576, - 21327488, - 21328288, - 21328320, - 21335200, - 21326912, - 21326944, - 21332928, - 21347408, - 21327472, - 21378736, - 21338864, - 21340192, - 21341264, - 21326992, - 21358480, - 21335616, - 21335664, - 21456256, + 21457664, + 21547392, + 21384544, + 21390000, + 21329488, + 21383456, + 21331104, + 21387328, + 21387040, + 21331392, + 21330304, + 21331104, + 21331136, + 21338016, + 21329728, + 21329760, + 21335744, + 21350224, + 21330288, + 21381552, + 21341680, + 21343008, + 21344080, + 21329808, + 21361296, + 21338432, + 21338480, + 21459072, + 21338704, + 21338784, + 21462016, + 21359936, + 21329824, + 21373616, + 21330256, + 21464608, + 21359264, + 21481120, + 21331392, + 21338000, + 21486560, + 21353328, + 21386944, + 21372528, + 21329248, + 21356640, + 21372112, + 21334784, + 21335088, + 21334944, + 21347168, + 21334704, + 21335216, + 21350896, + 21361616, + 21335296, 21335888, - 21335968, - 21459200, - 21357120, - 21327008, - 21370800, - 21327440, - 21461792, - 21356448, - 21478304, - 21328576, - 21335184, - 21483744, - 21350512, - 21384128, - 21369712, - 21326432, - 21353824, - 21369296, - 21331968, - 21332272, - 21332128, - 21344352, - 21331888, - 21332400, - 21348080, - 21358800, - 21332480, - 21333072, - 21333104, - 21344016, - 21373504, - 21326528, - 21432432, - 21326656, - 21326416, - 21327680, - 21377040, - 21327712, - 21327744, - 21328320, - 21342592, - 21327760, - 21381984, - 21327760, + 21335920, + 21346832, + 21376320, + 21329344, + 21435248, + 21329472, + 21329232, + 21330496, + 21379856, + 21330528, + 21330560, + 21331136, + 21345408, + 21330576, + 21384800, + 21330576, + 21333296, + 21338928, + 21333616, + 21330416, + 21330432, + 21330448, + 21330464, 21330480, - 21336112, - 21330800, - 21327600, - 21327616, - 21327632, - 21327648, - 21327664, - 21328576, - 21331680, - 21327792, - 21327808, - 21331872, - 21336192, + 21331392, + 21334496, + 21330608, + 21330624, + 21334688, + 21339008, + 21339072, + 21330640, + 21371024, + 21334224, + 21342592, + 21342720, + 21330672, + 21331392, + 21332752, + 21341728, + 21337920, + 21329664, + 21329680, + 21331136, + 21331136, + 21331392, + 21330688, + 21330704, + 21382432, + 21330720, + 21339088, + 21347904, + 21339136, + 21344416, + 21339168, + 21356752, + 21391984, + 21391632, + 21335952, + 21335984, + 21336016, + 21367152, + 21339200, + 21540064, + 21339216, + 21339264, + 21339296, + 21333632, 21336256, - 21327824, - 21368208, - 21331408, + 21338832, + 21338864, + 21549632, + 21339760, + 21362864, + 21330736, 21339776, - 21339904, - 21327856, - 21328576, - 21329936, - 21338912, - 21335104, - 21326848, - 21326864, - 21328320, - 21328320, - 21328576, - 21327872, - 21327888, - 21379616, - 21327904, - 21336272, - 21345088, - 21336320, - 21341600, - 21336352, - 21353936, - 21389168, - 21388816, - 21333136, - 21333168, - 21333200, - 21364336, - 21336384, - 21537248, - 21336400, - 21336448, - 21336480, - 21330816, - 21333440, - 21336016, - 21336048, - 21546816, - 21336944, - 21360048, - 21327920, - 21336960, - 21343648, - 21328320, - 21328320, - 21337184, - 21327536, - 21335520, - 21366048, - 21328320, - 21343600, - 21341552, - 21341504, - 21341456, - 21341408, - 21337200, - 21328064, - 21328064, - 21328080, - 21328080, - 21327904, - 21328096, - 21328112, - 21328112, - 21328128, - 21328144, - 21328320, - 21328192, - 21337216, - 21335280, - 21327840 + 21346464, + 21331136, + 21331136, + 21340000, + 21330352, + 21338336, + 21368864, + 21331136, + 21346416, + 21344368, + 21344320, + 21344272, + 21344224, + 21340016, + 21330880, + 21330880, + 21330896, + 21330896, + 21330720, + 21330912, + 21330928, + 21330928, + 21330944, + 21330960, + 21331136, + 21331008, + 21340032, + 21338096, + 21330656 ], "bases": [ { @@ -210339,9 +210339,9 @@ }, { "type_name": "CSource2Client", - "vtable_address": 64180184, + "vtable_address": 64184088, "methods": [ - 21347632 + 21350448 ], "bases": [ { @@ -210460,9 +210460,9 @@ }, { "type_name": "CSource2Client", - "vtable_address": 64180208, + "vtable_address": 64184112, "methods": [ - 21353472 + 21356288 ], "bases": [ { @@ -210581,103 +210581,7 @@ }, { "type_name": "CSource2EntitySystem", - "vtable_address": 64067768, - "methods": [ - 12204192, - 12204208, - 12204224, - 12204240, - 12204256, - 12204272, - 12204288, - 12204304, - 12204320, - 12204336, - 12204352, - 12204368, - 12204384, - 12204400, - 12204416, - 12204432, - 12204448, - 12204464, - 12204480, - 12204496, - 12204512, - 12204528, - 12204544, - 12204560, - 12204576, - 12204592, - 12204608, - 12204624, - 12204640, - 12204656, - 12204672, - 12204688, - 12204704, - 12204720, - 12204736, - 12204752, - 12204768, - 12204784, - 12204800, - 12204816, - 12204832, - 12204848, - 12204864, - 12204880, - 12204896, - 12204912, - 12204928, - 12204944, - 12204960, - 12204976, - 12204992, - 12205008, - 12205024, - 12205040, - 12205056, - 12205072, - 19360096, - 12205104, - 19360080, - 19370560, - 19370576, - 19360064 - ], - "bases": [ - { - "type_name": "CAutoGameSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IGameSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "CSource2EntitySystemDeallocator", - "vtable_address": 64068376, + "vtable_address": 64071672, "methods": [ 12204192, 12204208, @@ -210735,12 +210639,108 @@ 12205040, 12205056, 12205072, - 19360160, + 19362912, 12205104, - 19360144, - 19370624, - 19370640, - 19360128 + 19362896, + 19373376, + 19373392, + 19362880 + ], + "bases": [ + { + "type_name": "CAutoGameSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IGameSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "CSource2EntitySystemDeallocator", + "vtable_address": 64072280, + "methods": [ + 12204192, + 12204208, + 12204224, + 12204240, + 12204256, + 12204272, + 12204288, + 12204304, + 12204320, + 12204336, + 12204352, + 12204368, + 12204384, + 12204400, + 12204416, + 12204432, + 12204448, + 12204464, + 12204480, + 12204496, + 12204512, + 12204528, + 12204544, + 12204560, + 12204576, + 12204592, + 12204608, + 12204624, + 12204640, + 12204656, + 12204672, + 12204688, + 12204704, + 12204720, + 12204736, + 12204752, + 12204768, + 12204784, + 12204800, + 12204816, + 12204832, + 12204848, + 12204864, + 12204880, + 12204896, + 12204912, + 12204928, + 12204944, + 12204960, + 12204976, + 12204992, + 12205008, + 12205024, + 12205040, + 12205056, + 12205072, + 19362976, + 12205104, + 19362960, + 19373440, + 19373456, + 19362944 ], "bases": [ { @@ -210773,23 +210773,23 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification", - "vtable_address": 63616816, + "vtable_address": 63620720, "methods": [ 16651648, 16651920, - 29643894, + 29647734, 16221728, 16725680, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16062384, 15998752, 16460960, 12011504, 16146016, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013344, 15985216 @@ -210825,23 +210825,23 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification_Client", - "vtable_address": 63616656, + "vtable_address": 63620560, "methods": [ 16670064, 16672416, - 29643894, + 29647734, 16221520, 16725408, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16061984, 15994448, 16460000, 12011504, 16128896, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16013312, 15985200 @@ -210877,18 +210877,18 @@ }, { "type_name": "CSpaceAgnosticBoneAccessor", - "vtable_address": 64775784, + "vtable_address": 64779688, "methods": [ - 32922656, - 32923136, - 32922032, - 32922048, - 32925440, - 32922080, - 32922112, - 32922192, - 32925120, - 32922272 + 32926496, + 32926976, + 32925872, + 32925888, + 32929280, + 32925920, + 32925952, + 32926032, + 32928960, + 32926112 ], "bases": [ { @@ -210910,13 +210910,13 @@ }, { "type_name": "CSparseShadowTreeGameSystem", - "vtable_address": 64117288, + "vtable_address": 64121192, "methods": [ - 20289232, + 20292048, 12204208, - 20137360, - 20137424, - 20540688, + 20140176, + 20140240, + 20543504, 12204272, 12204288, 12204304, @@ -210927,8 +210927,8 @@ 12204384, 12204400, 12204416, - 20331264, - 20290144, + 20334080, + 20292960, 12204464, 12204480, 12204496, @@ -210941,7 +210941,7 @@ 12204608, 12204624, 12204640, - 20321024, + 20323840, 12204672, 12204688, 12204704, @@ -210957,7 +210957,7 @@ 12204864, 12204880, 12204896, - 20330512, + 20333328, 12204928, 12204944, 12204960, @@ -210968,14 +210968,14 @@ 12205040, 12205056, 12205072, - 20193280, + 20196096, 12205104, - 20193088, - 20151440, - 20198560, - 20137312, - 20264064, - 20137328 + 20195904, + 20154256, + 20201376, + 20140128, + 20266880, + 20140144 ], "bases": [ { @@ -211018,10 +211018,10 @@ }, { "type_name": "CSparseShadowTreeGameSystem", - "vtable_address": 64117816, + "vtable_address": 64121720, "methods": [ - 20203776, - 20137344 + 20206592, + 20140160 ], "bases": [ { @@ -211064,7 +211064,7 @@ }, { "type_name": "CSpawnGroupCompletionCallbackGameSystem", - "vtable_address": 64066160, + "vtable_address": 64070064, "methods": [ 12204192, 12204208, @@ -211080,9 +211080,9 @@ 12204368, 12204384, 12204400, - 19601040, + 19603856, 12204432, - 19658816, + 19661632, 12204464, 12204480, 12204496, @@ -211092,11 +211092,11 @@ 12204560, 12204576, 12204592, - 19362816, + 19365632, 12204624, 12204640, 12204656, - 19393856, + 19396672, 12204688, 12204704, 12204720, @@ -211122,12 +211122,12 @@ 12205040, 12205056, 12205072, - 19359600, + 19362416, 12205104, - 19359584, - 19404160, - 19403632, - 19359568 + 19362400, + 19406976, + 19406448, + 19362384 ], "bases": [ { @@ -211160,7 +211160,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 63348776, + "vtable_address": 63352680, "methods": [ 14217408, 14221616, @@ -211234,7 +211234,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 63349032, + "vtable_address": 63352936, "methods": [ 12204192, 12204208, @@ -211340,11 +211340,11 @@ }, { "type_name": "CSpawnInPortraitEntityFilter", - "vtable_address": 64437648, + "vtable_address": 64441552, "methods": [ - 24269968, - 24271856, - 24541792 + 24272720, + 24274608, + 24544736 ], "bases": [ { @@ -211366,35 +211366,35 @@ }, { "type_name": "CSpiderGraph", - "vtable_address": 64513296, + "vtable_address": 64517200, "methods": [ 12043984, - 59816784, - 25284304, - 25284320, - 60674208, - 59817136, - 59817120, + 59820688, + 25287312, + 25287328, + 60678112, + 59821040, + 59821024, 12233600, - 25430416, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 25433424, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -211407,12 +211407,12 @@ 12399392, 12233312, 12233168, - 25429424, - 59825616, - 59825216, - 59836080, + 25432432, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -211427,34 +211427,34 @@ 12233520, 12233296, 12233760, - 59835792, - 25284288, - 25285648, - 25289040, + 59839696, + 25287296, + 25288656, + 25292048, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25283920, - 25283936 + 25286928, + 25286944 ], "bases": [ { @@ -211509,33 +211509,33 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 63304376, + "vtable_address": 63308280, "methods": [ 14368000, 13176864, 13177200, - 18931408, - 39987824, - 22232768, - 18645648, - 22140816, - 21132352, - 21132672, - 21132336, - 22232592, - 22232688, - 18665616, + 18934224, + 39991728, + 22235584, + 18647952, + 22143632, + 21135168, + 21135488, + 21135152, + 22235408, + 22235504, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -211544,24 +211544,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13162784, 13214512, 13163280, 12234080, 13179040, - 22112448, - 18799200, + 22115264, + 18802016, 12234096, - 20632896, - 22112960, + 20635712, + 22115776, 12235472, 12235488, 12234160, @@ -211577,13 +211577,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -211591,41 +211591,41 @@ 12250624, 12250480, 12249920, - 22112496, + 22115312, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 22114032, - 18767008, - 20572064, - 22233040, - 22113840, + 20586576, + 22116848, + 18769824, + 20574880, + 22235856, + 22116656, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -211637,33 +211637,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22113856, - 21812224, + 22116672, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -211691,9 +211691,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -211701,24 +211701,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 22113376, - 20702256, + 20578656, + 22116192, + 20705072, 12572832, 12572592, 12572896, @@ -211730,34 +211730,34 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 22051104, - 22113680 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 22053920, + 22116496 ], "bases": [ { @@ -211832,15 +211832,15 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 63306368, + "vtable_address": 63310272, "methods": [ 13177024, 13177376, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -211915,9 +211915,9 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 63306440, + "vtable_address": 63310344, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -211992,7 +211992,7 @@ }, { "type_name": "CStartupHookGameSystem", - "vtable_address": 64071464, + "vtable_address": 64075368, "methods": [ 12204192, 12204208, @@ -212074,11 +212074,11 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 64117848, + "vtable_address": 64121752, "methods": [ - 20288016, - 20288352, - 20292640 + 20290832, + 20291168, + 20295456 ], "bases": [ { @@ -212121,11 +212121,11 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 64117888, + "vtable_address": 64121792, "methods": [ - 20288176, - 20288528, - 20293536 + 20290992, + 20291344, + 20296352 ], "bases": [ { @@ -212168,7 +212168,7 @@ }, { "type_name": "CStdFunctionJob", - "vtable_address": 63317448, + "vtable_address": 63321352, "methods": [ 13224560, 13257952, @@ -212231,11 +212231,11 @@ }, { "type_name": "CSteamWorksGameStatsClient", - "vtable_address": 64362528, + "vtable_address": 64366432, "methods": [ - 23435536, - 17217344, - 17217360, + 23438288, + 17219648, + 17219664, 12204240, 12204256, 12204272, @@ -212263,10 +212263,10 @@ 12204624, 12204640, 12204656, - 17217312, - 17253712, + 17219616, + 17256016, 12204704, - 17217328, + 17219632, 12204736, 12204752, 12204768, @@ -212280,8 +212280,8 @@ 12204896, 12204912, 12204928, - 17217376, - 17217392, + 17219680, + 17219696, 12204976, 12204992, 12205008, @@ -212289,21 +212289,21 @@ 12205040, 12205056, 12205072, - 23275712, + 23278464, 12205104, - 23275696, - 23282368, - 23282432, - 23275680, - 17254752, - 23436112, - 17217408, - 17217424, - 23435856, - 23275744, - 23281376, - 23435440, - 23281440 + 23278448, + 23285120, + 23285184, + 23278432, + 17257056, + 23438864, + 17219712, + 17219728, + 23438608, + 23278496, + 23284128, + 23438192, + 23284192 ], "bases": [ { @@ -212368,11 +212368,11 @@ }, { "type_name": "CSteamWorksGameStatsClient", - "vtable_address": 64363112, + "vtable_address": 64367016, "methods": [ - 23282400, - 23282496, - 23435968 + 23285152, + 23285248, + 23438720 ], "bases": [ { @@ -212437,11 +212437,11 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 63751952, + "vtable_address": 63755856, "methods": [ - 17220640, - 17217344, - 17217360, + 17222944, + 17219648, + 17219664, 12204240, 12204256, 12204272, @@ -212469,10 +212469,10 @@ 12204624, 12204640, 12204656, - 17217312, - 17253712, + 17219616, + 17256016, 12204704, - 17217328, + 17219632, 12204736, 12204752, 12204768, @@ -212486,8 +212486,8 @@ 12204896, 12204912, 12204928, - 17217376, - 17217392, + 17219680, + 17219696, 12204976, 12204992, 12205008, @@ -212551,7 +212551,7 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 63752528, + "vtable_address": 63756432, "methods": [], "bases": [ { @@ -212605,23 +212605,23 @@ }, { "type_name": "CSteam_Voice_Encoding", - "vtable_address": 63527456, + "vtable_address": 63531360, "methods": [ 15632016, 15712240, - 29643894, + 29647734, 15152768, 15809248, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14856256, 14852336, 15268160, 12011504, 14929312, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833472, 14796736 @@ -212657,7 +212657,7 @@ }, { "type_name": "CStopwatchBase", - "vtable_address": 65448928, + "vtable_address": 65452832, "methods": [], "bases": [], "model": { @@ -212668,9 +212668,9 @@ }, { "type_name": "CStructuredReport, Vec3D, float, float, Vec3D, float, bool, bool, bool, bool, float, float, float>", - "vtable_address": 63990232, + "vtable_address": 63994136, "methods": [ - 18120304 + 18122608 ], "bases": [], "model": { @@ -212681,9 +212681,9 @@ }, { "type_name": "CStructuredReport, Vec3D, Vec3D, Vec3D, float, float, float, float, bool, bool>", - "vtable_address": 63990256, + "vtable_address": 63994160, "methods": [ - 18120288 + 18122592 ], "bases": [], "model": { @@ -212694,7 +212694,7 @@ }, { "type_name": "CStructuredReport, Vec3D, Vec3D, Vec3D, Vec3D, Vec3D >", - "vtable_address": 63339144, + "vtable_address": 63343048, "methods": [ 13823856 ], @@ -212707,9 +212707,9 @@ }, { "type_name": "CStructuredReport, float, float, Vec2D, Vec2D, float, float>", - "vtable_address": 64196656, + "vtable_address": 64200560, "methods": [ - 21705760 + 21708576 ], "bases": [], "model": { @@ -212720,23 +212720,23 @@ }, { "type_name": "CSubtickMoveStep", - "vtable_address": 63499104, + "vtable_address": 63503008, "methods": [ 14589120, 14589856, - 29643894, + 29647734, 14583952, 14590640, 14578944, - 29646054, - 29642886, + 29649894, + 29646726, 14579344, 14579600, 14585168, 12011504, 14580832, - 29642796, - 29643062, + 29646636, + 29646902, 14579216, 14579488, 14578960 @@ -212772,10 +212772,10 @@ }, { "type_name": "CSurfacePropReloadableDataTable", - "vtable_address": 64190360, + "vtable_address": 64194264, "methods": [ - 21697184, - 21586656 + 21700000, + 21589472 ], "bases": [ { @@ -212808,10 +212808,10 @@ }, { "type_name": "CSurfacePropReloadableDataTable", - "vtable_address": 64073976, + "vtable_address": 64077880, "methods": [ - 19868544, - 19365152 + 19871360, + 19367968 ], "bases": [ { @@ -212844,10 +212844,10 @@ }, { "type_name": "CSurfacePropReloadableDataTable", - "vtable_address": 64191144, + "vtable_address": 64195048, "methods": [ - 21696192, - 21660304 + 21699008, + 21663120 ], "bases": [ { @@ -212880,7 +212880,7 @@ }, { "type_name": "CSurfacePropReloadableDataTableBase", - "vtable_address": 64823264, + "vtable_address": 64827168, "methods": [], "bases": [ { @@ -212902,13 +212902,13 @@ }, { "type_name": "CTEArmorRicochet", - "vtable_address": 64236640, + "vtable_address": 64240544, "methods": [ - 22313952, - 22318096, - 22311712, - 22309584, - 17217488 + 22316768, + 22320912, + 22314528, + 22312400, + 17219792 ], "bases": [ { @@ -212941,13 +212941,13 @@ }, { "type_name": "CTEBeamEntPoint", - "vtable_address": 64237232, + "vtable_address": 64241136, "methods": [ - 22312192, - 22317616, - 22298448, - 22309664, - 17217488 + 22315008, + 22320432, + 22301264, + 22312480, + 17219792 ], "bases": [ { @@ -212991,13 +212991,13 @@ }, { "type_name": "CTEBeamEnts", - "vtable_address": 64237824, + "vtable_address": 64241728, "methods": [ - 22313248, - 22317904, - 22298480, - 22309744, - 17217488 + 22316064, + 22320720, + 22301296, + 22312560, + 17219792 ], "bases": [ { @@ -213041,13 +213041,13 @@ }, { "type_name": "CTEBeamPoints", - "vtable_address": 64238416, + "vtable_address": 64242320, "methods": [ - 22312896, - 22317808, - 22298512, - 22309824, - 17217488 + 22315712, + 22320624, + 22301328, + 22312640, + 17219792 ], "bases": [ { @@ -213091,13 +213091,13 @@ }, { "type_name": "CTEBeamRing", - "vtable_address": 64239008, + "vtable_address": 64242912, "methods": [ - 22312544, - 22317712, - 22298544, - 22309904, - 17217488 + 22315360, + 22320528, + 22301360, + 22312720, + 17219792 ], "bases": [ { @@ -213141,13 +213141,13 @@ }, { "type_name": "CTEBloodStream", - "vtable_address": 64239600, + "vtable_address": 64243504, "methods": [ - 22313600, - 22318000, - 22298576, - 22309984, - 17217488 + 22316416, + 22320816, + 22301392, + 22312800, + 17219792 ], "bases": [ { @@ -213180,13 +213180,13 @@ }, { "type_name": "CTEBubbleTrail", - "vtable_address": 64242584, + "vtable_address": 64246488, "methods": [ - 22402608, - 22406144, - 22396224, - 22394592, - 17217488 + 22405424, + 22408960, + 22399040, + 22397408, + 17219792 ], "bases": [ { @@ -213219,13 +213219,13 @@ }, { "type_name": "CTEBubbles", - "vtable_address": 64241992, + "vtable_address": 64245896, "methods": [ - 22402960, - 22406240, - 22396080, - 22394512, - 17217488 + 22405776, + 22409056, + 22398896, + 22397328, + 17219792 ], "bases": [ { @@ -213258,13 +213258,13 @@ }, { "type_name": "CTEDust", - "vtable_address": 64245016, + "vtable_address": 64248920, "methods": [ - 22401200, - 22405760, - 22396528, - 22394992, - 17217488 + 22404016, + 22408576, + 22399344, + 22397808, + 17219792 ], "bases": [ { @@ -213297,13 +213297,13 @@ }, { "type_name": "CTEEffectDispatch", - "vtable_address": 64243176, + "vtable_address": 64247080, "methods": [ - 22402256, - 22406048, - 22374992, - 22394672, - 17217488 + 22405072, + 22408864, + 22377808, + 22397488, + 17219792 ], "bases": [ { @@ -213336,13 +213336,13 @@ }, { "type_name": "CTEEnergySplash", - "vtable_address": 64243768, + "vtable_address": 64247672, "methods": [ - 22401904, - 22405952, - 22396368, - 22394752, - 17217488 + 22404720, + 22408768, + 22399184, + 22397568, + 17219792 ], "bases": [ { @@ -213375,14 +213375,14 @@ }, { "type_name": "CTEExplosion", - "vtable_address": 64243824, + "vtable_address": 64247728, "methods": [ - 22398384, - 22403312, - 22408656, - 22394832, - 17217488, - 22375008 + 22401200, + 22406128, + 22411472, + 22397648, + 17219792, + 22377824 ], "bases": [ { @@ -213415,13 +213415,13 @@ }, { "type_name": "CTEFireBullets", - "vtable_address": 63752848, + "vtable_address": 63756752, "methods": [ - 17227008, - 17224896, - 17217504, - 17221984, - 17217488 + 17229312, + 17227200, + 17219808, + 17224288, + 17219792 ], "bases": [ { @@ -213454,13 +213454,13 @@ }, { "type_name": "CTEFizz", - "vtable_address": 64244424, + "vtable_address": 64248328, "methods": [ - 22401552, - 22405856, - 22395856, - 22394912, - 17217488 + 22404368, + 22408672, + 22398672, + 22397728, + 17219792 ], "bases": [ { @@ -213493,13 +213493,13 @@ }, { "type_name": "CTEGlowSprite", - "vtable_address": 64245608, + "vtable_address": 64249512, "methods": [ - 22400848, - 22405664, - 22395632, - 22395072, - 17217488 + 22403664, + 22408480, + 22398448, + 22397888, + 17219792 ], "bases": [ { @@ -213532,15 +213532,15 @@ }, { "type_name": "CTEImpact", - "vtable_address": 64246200, + "vtable_address": 64250104, "methods": [ - 22400496, - 22405328, - 22375024, - 22395152, - 17217488, - 22375056, - 22375072 + 22403312, + 22408144, + 22377840, + 22397968, + 17219792, + 22377872, + 22377888 ], "bases": [ { @@ -213573,13 +213573,13 @@ }, { "type_name": "CTELargeFunnel", - "vtable_address": 64246808, + "vtable_address": 64250712, "methods": [ - 22400144, - 22404992, - 22396960, - 22395232, - 17217488 + 22402960, + 22407808, + 22399776, + 22398048, + 17219792 ], "bases": [ { @@ -213612,13 +213612,13 @@ }, { "type_name": "CTEMuzzleFlash", - "vtable_address": 64247400, + "vtable_address": 64251304, "methods": [ - 22399792, - 22404656, - 22396688, - 22395312, - 17217488 + 22402608, + 22407472, + 22399504, + 22398128, + 17219792 ], "bases": [ { @@ -213651,13 +213651,13 @@ }, { "type_name": "CTEPhysicsProp", - "vtable_address": 64247992, + "vtable_address": 64251896, "methods": [ - 22399440, - 22404320, - 22375088, - 22395392, - 22375104 + 22402256, + 22407136, + 22377904, + 22398208, + 22377920 ], "bases": [ { @@ -213690,13 +213690,13 @@ }, { "type_name": "CTESmoke", - "vtable_address": 64248584, + "vtable_address": 64252488, "methods": [ - 22399088, - 22403984, - 22395936, - 22395472, - 17217488 + 22401904, + 22406800, + 22398752, + 22398288, + 17219792 ], "bases": [ { @@ -213729,13 +213729,13 @@ }, { "type_name": "CTESparks", - "vtable_address": 64249176, + "vtable_address": 64253080, "methods": [ - 22398736, - 22403648, - 22395728, - 22395552, - 17217488 + 22401552, + 22406464, + 22398544, + 22398368, + 17219792 ], "bases": [ { @@ -213768,11 +213768,11 @@ }, { "type_name": "CTakeDamageInfo", - "vtable_address": 63306464, + "vtable_address": 63310368, "methods": [ 13163312, 13208784, - 22168960 + 22171776 ], "bases": [], "model": { @@ -213783,19 +213783,19 @@ }, { "type_name": "CTempEnts", - "vtable_address": 64235328, + "vtable_address": 64239232, "methods": [ - 22311392, - 22311184, - 22298352, - 22311024, - 22298352, - 22310896, - 22333408, - 22334080, - 22298400, - 22340736, - 22314304 + 22314208, + 22314000, + 22301168, + 22313840, + 22301168, + 22313712, + 22336224, + 22336896, + 22301216, + 22343552, + 22317120 ], "bases": [ { @@ -213817,9 +213817,9 @@ }, { "type_name": "CTemplateSceneViewFactory_RenderCsgoPictureInPicture", - "vtable_address": 64625880, + "vtable_address": 64629784, "methods": [ - 28332368 + 28335760 ], "bases": [ { @@ -213841,35 +213841,35 @@ }, { "type_name": "CTextInputDaisyGroup", - "vtable_address": 65020696, + "vtable_address": 65024600, "methods": [ 12043984, - 59816784, - 60678560, - 60678576, - 59817120, - 59817136, - 59817120, + 59820688, + 60682464, + 60682480, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -213882,12 +213882,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -213902,30 +213902,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60678544, - 60679456, - 60679472, + 59839696, + 60682448, + 60683360, + 60683376, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -213960,35 +213960,35 @@ }, { "type_name": "CTextInputPickPanel", - "vtable_address": 65021392, + "vtable_address": 65025296, "methods": [ 12043984, - 59816784, - 60678624, - 60678640, - 59817120, - 59817136, - 59817120, + 59820688, + 60682528, + 60682544, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -214001,12 +214001,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -214021,30 +214021,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60678608, - 60679392, - 60679408, + 59839696, + 60682512, + 60683296, + 60683312, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -214079,7 +214079,7 @@ }, { "type_name": "CTextLesson", - "vtable_address": 64133616, + "vtable_address": 64137520, "methods": [], "bases": [ { @@ -214123,35 +214123,35 @@ }, { "type_name": "CTexturePanel", - "vtable_address": 64991408, + "vtable_address": 64995312, "methods": [ 12043984, - 59816784, - 28214128, - 21815136, - 60267088, - 59817136, - 59817120, + 59820688, + 28217392, + 21817952, + 60270992, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -214162,14 +214162,14 @@ 12233264, 12233280, 12399392, - 60258064, + 60261968, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -214184,30 +214184,30 @@ 12233520, 12233296, 12233760, - 59835792, - 21815120, - 60261760, - 60261776, + 59839696, + 21817936, + 60265664, + 60265680, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -214242,7 +214242,7 @@ }, { "type_name": "CThreadEvent", - "vtable_address": 63151368, + "vtable_address": 63155272, "methods": [], "bases": [], "model": { @@ -214253,7 +214253,7 @@ }, { "type_name": "CThreadedJob", - "vtable_address": 63317368, + "vtable_address": 63321272, "methods": [], "bases": [ { @@ -214296,19 +214296,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64180384, + "vtable_address": 64184288, "methods": [ - 21334624, - 21334432, - 21329328, - 21334272, - 21334032, - 21329344, - 21329408, - 21329424, - 21333520, - 21329376, - 21329392 + 21337440, + 21337248, + 21332144, + 21337088, + 21336848, + 21332160, + 21332224, + 21332240, + 21336336, + 21332192, + 21332208 ], "bases": [ { @@ -214374,17 +214374,17 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64349608, + "vtable_address": 64353512, "methods": [ - 22934048, - 22933984, + 22936864, + 22936800, 12238544, - 22934208, - 22934112, + 22937024, + 22936928, 12238560, - 22919728, - 22919744, - 22933920, + 22922544, + 22922560, + 22936736, 12238592, 12238608 ], @@ -214452,7 +214452,7 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 63707072, + "vtable_address": 63710976, "methods": [ 17121696, 17121760, @@ -214530,19 +214530,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64178168, + "vtable_address": 64182072, "methods": [ - 21334688, - 21334496, - 21329520, - 21334320, - 21334128, - 21329536, - 21329552, - 21329616, - 21333584, - 21329584, - 21329600 + 21337504, + 21337312, + 21332336, + 21337136, + 21336944, + 21332352, + 21332368, + 21332432, + 21336400, + 21332400, + 21332416 ], "bases": [ { @@ -214608,16 +214608,16 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64061552, + "vtable_address": 64065456, "methods": [ 16912160, 16912032, - 19366592, - 19368848, + 19369408, + 19371664, 16911840, 16908240, 16908272, - 19366624, + 19369440, 16911712, 16908336, 16908368 @@ -214718,16 +214718,16 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64061832, + "vtable_address": 64065736, "methods": [ 16912224, 16912096, - 19366608, - 19368896, + 19369424, + 19371712, 16911936, 16908256, 16908288, - 19366640, + 19369456, 16911776, 16908352, 16908384 @@ -214828,19 +214828,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64373128, - "methods": [ - 23498960, - 23498896, - 23498384, - 23498848, - 23498752, - 23498400, - 23498464, - 23498480, - 23498592, - 23498432, - 23498448 + "vtable_address": 64377032, + "methods": [ + 23501712, + 23501648, + 23501136, + 23501600, + 23501504, + 23501152, + 23501216, + 23501232, + 23501344, + 23501184, + 23501200 ], "bases": [ { @@ -214906,19 +214906,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64199792, + "vtable_address": 64203696, "methods": [ - 21819824, - 21819760, - 21817728, - 21819712, - 21819616, - 21817744, - 21817760, - 21817984, - 21819552, - 21817792, - 21817808 + 21822656, + 21822592, + 21820560, + 21822544, + 21822448, + 21820576, + 21820592, + 21820816, + 21822384, + 21820624, + 21820640 ], "bases": [ { @@ -214984,19 +214984,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64176344, + "vtable_address": 64180248, "methods": [ - 21334560, - 21334368, - 21329632, - 21334224, - 21333936, - 21329456, - 21329648, - 21329664, - 21333456, - 21329488, - 21329504 + 21337376, + 21337184, + 21332448, + 21337040, + 21336752, + 21332272, + 21332464, + 21332480, + 21336272, + 21332304, + 21332320 ], "bases": [ { @@ -215072,7 +215072,7 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 64177920, + "vtable_address": 64181824, "methods": [], "bases": [ { @@ -215148,13 +215148,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65173696, + "vtable_address": 65177600, "methods": [ - 61525472, - 61273248, - 61273264, - 61538224, - 61653568 + 61529376, + 61277152, + 61277168, + 61542128, + 61657472 ], "bases": [ { @@ -215176,13 +215176,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65092464, + "vtable_address": 65096368, "methods": [ - 61525552, - 61281200, - 61281216, - 61538784, - 61654368 + 61529456, + 61285104, + 61285120, + 61542688, + 61658272 ], "bases": [ { @@ -215204,13 +215204,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialInputContainer_t>", - "vtable_address": 65146640, + "vtable_address": 65150544, "methods": [ - 61524832, - 61276640, - 61276656, - 61536768, - 61650464 + 61528736, + 61280544, + 61280560, + 61540672, + 61654368 ], "bases": [ { @@ -215232,13 +215232,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialInputLooseVariable_t>", - "vtable_address": 65089656, + "vtable_address": 65093560, "methods": [ - 61525632, - 61281408, - 61281424, - 61538896, - 61654528 + 61529536, + 61285312, + 61285328, + 61542800, + 61658432 ], "bases": [ { @@ -215260,13 +215260,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65101568, + "vtable_address": 65105472, "methods": [ - 61531920, - 61280288, - 61280304, - 61535984, - 61649344 + 61535824, + 61284192, + 61284208, + 61539888, + 61653248 ], "bases": [ { @@ -215288,13 +215288,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65112328, + "vtable_address": 65116232, "methods": [ - 61532304, - 61279584, - 61279600, - 61539568, - 61655488 + 61536208, + 61283488, + 61283504, + 61543472, + 61659392 ], "bases": [ { @@ -215316,13 +215316,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65148872, + "vtable_address": 65152776, "methods": [ - 61532112, - 61276432, - 61276448, - 61536656, - 61650304 + 61536016, + 61280336, + 61280352, + 61540560, + 61654208 ], "bases": [ { @@ -215344,13 +215344,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65061360, + "vtable_address": 65065264, "methods": [ - 61532208, - 61282880, - 61282896, - 61538448, - 61653888 + 61536112, + 61286784, + 61286800, + 61542352, + 61657792 ], "bases": [ { @@ -215372,13 +215372,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65056216, + "vtable_address": 65060120, "methods": [ - 61532016, - 61283392, - 61283408, - 61536320, - 61649824 + 61535920, + 61287296, + 61287312, + 61540224, + 61653728 ], "bases": [ { @@ -215400,13 +215400,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65165400, + "vtable_address": 65169304, "methods": [ - 61520272, - 61274000, - 61274016, - 61531808, - 61593488 + 61524176, + 61277904, + 61277920, + 61535712, + 61597392 ], "bases": [ { @@ -215428,13 +215428,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, int, CUtlVectorMemory_Growable >, int, (unsigned long)0> >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65155488, + "vtable_address": 65159392, "methods": [ - 61525152, - 61275584, - 61275600, - 61537440, - 61651424 + 61529056, + 61279488, + 61279504, + 61541344, + 61655328 ], "bases": [ { @@ -215456,13 +215456,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompMatPropertyMutator_t>", - "vtable_address": 65116944, + "vtable_address": 65120848, "methods": [ - 61525952, - 61279536, - 61279552, - 61539680, - 61655648 + 61529856, + 61283440, + 61283456, + 61543584, + 61659552 ], "bases": [ { @@ -215484,13 +215484,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompMatPropertyMutator_t>", - "vtable_address": 65139680, + "vtable_address": 65143584, "methods": [ - 61525872, - 61277168, - 61277184, - 61540016, - 61656128 + 61529776, + 61281072, + 61281088, + 61543920, + 61660032 ], "bases": [ { @@ -215512,13 +215512,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompMatPropertyMutator_t>", - "vtable_address": 65129784, + "vtable_address": 65133688, "methods": [ - 61525792, - 61278352, - 61278368, - 61540240, - 61656448 + 61529696, + 61282256, + 61282272, + 61544144, + 61660352 ], "bases": [ { @@ -215540,13 +215540,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65162904, + "vtable_address": 65166808, "methods": [ - 61524912, - 61274528, - 61274544, - 61537104, - 61650944 + 61528816, + 61278432, + 61278448, + 61541008, + 61654848 ], "bases": [ { @@ -215568,13 +215568,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65185512, + "vtable_address": 65189416, "methods": [ - 61525232, - 61271760, - 61271776, - 61538112, - 61653408 + 61529136, + 61275664, + 61275680, + 61542016, + 61657312 ], "bases": [ { @@ -215596,13 +215596,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65160432, + "vtable_address": 65164336, "methods": [ - 61524992, - 61274880, - 61274896, - 61537216, - 61651104 + 61528896, + 61278784, + 61278800, + 61541120, + 61655008 ], "bases": [ { @@ -215624,13 +215624,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialInputContainer_t>", - "vtable_address": 65151760, + "vtable_address": 65155664, "methods": [ - 61524752, - 61276384, - 61276400, - 61536880, - 61650624 + 61528656, + 61280288, + 61280304, + 61540784, + 61654528 ], "bases": [ { @@ -215652,13 +215652,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 65157960, + "vtable_address": 65161864, "methods": [ - 61525072, - 61275232, - 61275248, - 61537328, - 61651264 + 61528976, + 61279136, + 61279152, + 61541232, + 61655168 ], "bases": [ { @@ -215680,13 +215680,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterialEditorPoint_t>", - "vtable_address": 65187984, + "vtable_address": 65191888, "methods": [ - 61525312, - 61271408, - 61271424, - 61538000, - 61653248 + 61529216, + 61275312, + 61275328, + 61541904, + 61657152 ], "bases": [ { @@ -215708,13 +215708,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >, CompositeMaterial_t>", - "vtable_address": 65171200, + "vtable_address": 65175104, "methods": [ - 61524592, - 61273584, - 61273600, - 61535648, - 61648864 + 61528496, + 61277488, + 61277504, + 61539552, + 61652768 ], "bases": [ { @@ -215736,13 +215736,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65136792, + "vtable_address": 65140696, "methods": [ - 61531632, - 61277664, - 61277680, - 61539904, - 61655968 + 61535536, + 61281568, + 61281584, + 61543808, + 61659872 ], "bases": [ { @@ -215764,13 +215764,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65085192, + "vtable_address": 65089096, "methods": [ - 61531552, - 61281920, - 61281936, - 61539120, - 61654848 + 61535456, + 61285824, + 61285840, + 61543024, + 61658752 ], "bases": [ { @@ -215792,13 +215792,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65099336, + "vtable_address": 65103240, "methods": [ - 61527504, - 61280448, - 61280464, - 61536096, - 61649504 + 61531408, + 61284352, + 61284368, + 61540000, + 61653408 ], "bases": [ { @@ -215820,13 +215820,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65109520, + "vtable_address": 65113424, "methods": [ - 61528896, - 61279744, - 61279760, - 61540464, - 61656768 + 61532800, + 61283648, + 61283664, + 61544368, + 61660672 ], "bases": [ { @@ -215848,13 +215848,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65144408, + "vtable_address": 65148312, "methods": [ - 61527856, - 61276800, - 61276816, - 61536992, - 61650784 + 61531760, + 61280704, + 61280720, + 61540896, + 61654688 ], "bases": [ { @@ -215876,13 +215876,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65069280, + "vtable_address": 65073184, "methods": [ - 61528640, - 61282816, - 61282832, - 61539344, - 61655168 + 61532544, + 61286720, + 61286736, + 61543248, + 61659072 ], "bases": [ { @@ -215904,13 +215904,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65121688, + "vtable_address": 65125592, "methods": [ - 61525712, - 61279184, - 61279200, - 61540352, - 61656608 + 61529616, + 61283088, + 61283104, + 61544256, + 61660512 ], "bases": [ { @@ -215932,13 +215932,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65095272, + "vtable_address": 65099176, "methods": [ - 61528384, - 61281056, - 61281072, - 61538672, - 61654208 + 61532288, + 61284960, + 61284976, + 61542576, + 61658112 ], "bases": [ { @@ -215960,13 +215960,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65053984, + "vtable_address": 65057888, "methods": [ - 61527680, - 61283552, - 61283568, - 61536432, - 61649984 + 61531584, + 61287456, + 61287472, + 61540336, + 61653888 ], "bases": [ { @@ -215988,13 +215988,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65087424, + "vtable_address": 65091328, "methods": [ - 61528464, - 61281568, - 61281584, - 61539008, - 61654688 + 61532368, + 61285472, + 61285488, + 61542912, + 61658592 ], "bases": [ { @@ -216016,13 +216016,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65180392, + "vtable_address": 65184296, "methods": [ - 61525392, - 61272480, - 61272496, - 61537888, - 61653088 + 61529296, + 61276384, + 61276400, + 61541792, + 61656992 ], "bases": [ { @@ -216044,13 +216044,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65167736, + "vtable_address": 65171640, "methods": [ - 61524672, - 61273840, - 61273856, - 61535760, - 61649024 + 61528576, + 61277744, + 61277760, + 61539664, + 61652928 ], "bases": [ { @@ -216072,13 +216072,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess, CompMatPropertyMutator_t>", - "vtable_address": 65134560, + "vtable_address": 65138464, "methods": [ - 61531712, - 61277824, - 61277840, - 61540128, - 61656288 + 61535616, + 61281728, + 61281744, + 61544032, + 61660192 ], "bases": [ { @@ -216100,13 +216100,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65104952, + "vtable_address": 65108856, "methods": [ - 61527408, - 61280128, - 61280144, - 61535872, - 61649184 + 61531312, + 61284032, + 61284048, + 61539776, + 61653088 ], "bases": [ { @@ -216128,13 +216128,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65107288, + "vtable_address": 65111192, "methods": [ - 61528720, - 61279776, - 61279792, - 61539456, - 61655328 + 61532624, + 61283680, + 61283696, + 61543360, + 61659232 ], "bases": [ { @@ -216156,13 +216156,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65182624, + "vtable_address": 65186528, "methods": [ - 61527936, - 61272240, - 61272256, - 61537552, - 61652608 + 61531840, + 61276144, + 61276160, + 61541456, + 61656512 ], "bases": [ { @@ -216184,13 +216184,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65142176, + "vtable_address": 65146080, "methods": [ - 61527760, - 61276832, - 61276848, - 61536544, - 61650144 + 61531664, + 61280736, + 61280752, + 61540448, + 61654048 ], "bases": [ { @@ -216212,13 +216212,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65063592, + "vtable_address": 65067496, "methods": [ - 61528208, - 61282848, - 61282864, - 61538336, - 61653728 + 61532112, + 61286752, + 61286768, + 61542240, + 61657632 ], "bases": [ { @@ -216240,13 +216240,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65059024, + "vtable_address": 65062928, "methods": [ - 61527584, - 61283232, - 61283248, - 61536208, - 61649664 + 61531488, + 61287136, + 61287152, + 61540112, + 61653568 ], "bases": [ { @@ -216268,13 +216268,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65178160, + "vtable_address": 65182064, "methods": [ - 61528112, - 61272864, - 61272880, - 61537776, - 61652928 + 61532016, + 61276768, + 61276784, + 61541680, + 61656832 ], "bases": [ { @@ -216296,13 +216296,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65076624, + "vtable_address": 65080528, "methods": [ - 61528544, - 61282304, - 61282320, - 61539232, - 61655008 + 61532448, + 61286208, + 61286224, + 61543136, + 61658912 ], "bases": [ { @@ -216324,13 +216324,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65125168, + "vtable_address": 65129072, "methods": [ - 61528816, - 61279040, - 61279056, - 61539792, - 61655808 + 61532720, + 61282944, + 61282960, + 61543696, + 61659712 ], "bases": [ { @@ -216352,13 +216352,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65175928, + "vtable_address": 65179832, "methods": [ - 61528032, - 61273216, - 61273232, - 61537664, - 61652768 + 61531936, + 61277120, + 61277136, + 61541568, + 61656672 ], "bases": [ { @@ -216380,13 +216380,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 65072088, + "vtable_address": 65075992, "methods": [ - 61528304, - 61282656, - 61282672, - 61538560, - 61654048 + 61532208, + 61286560, + 61286576, + 61542464, + 61657952 ], "bases": [ { @@ -216408,26 +216408,26 @@ }, { "type_name": "CToolClientSimulationAPI", - "vtable_address": 64224200, - "methods": [ - 22051664, - 22051680, - 22051696, - 22051712, - 22047408, - 22047456, - 22051728, - 22051760, - 22051792, - 22051840, - 22065648, - 22051952, - 22047472, - 22068432, - 22065216, - 22051968, - 22068736, - 22092128 + "vtable_address": 64228104, + "methods": [ + 22054480, + 22054496, + 22054512, + 22054528, + 22050224, + 22050272, + 22054544, + 22054576, + 22054608, + 22054656, + 22068464, + 22054768, + 22050288, + 22071248, + 22068032, + 22054784, + 22071552, + 22094944 ], "bases": [ { @@ -216449,7 +216449,7 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 63170584, + "vtable_address": 63174488, "methods": [ 12796016 ], @@ -216473,7 +216473,7 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 63182952, + "vtable_address": 63186856, "methods": [ 12903168 ], @@ -216497,9 +216497,9 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 64222296, + "vtable_address": 64226200, "methods": [ - 22090912 + 22093728 ], "bases": [ { @@ -216521,9 +216521,9 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 64138984, + "vtable_address": 64142888, "methods": [ - 20841456 + 20844272 ], "bases": [ { @@ -216545,7 +216545,7 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 63135688, + "vtable_address": 63139592, "methods": [ 12244320 ], @@ -216569,9 +216569,9 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 64202304, + "vtable_address": 64206208, "methods": [ - 21850192 + 21853008 ], "bases": [ { @@ -216593,7 +216593,7 @@ }, { "type_name": "CTraceFilter", - "vtable_address": 63162368, + "vtable_address": 63166272, "methods": [ 12572432, 12577408, @@ -216630,11 +216630,11 @@ }, { "type_name": "CTraceFilterEntityPush", - "vtable_address": 64074152, + "vtable_address": 64078056, "methods": [ - 19360800, - 19367472, - 19360784 + 19363616, + 19370288, + 19363600 ], "bases": [ { @@ -216689,11 +216689,11 @@ }, { "type_name": "CTraceFilterEntitySweep", - "vtable_address": 64074112, + "vtable_address": 64078016, "methods": [ - 19360768, - 19367456, - 19360784 + 19363584, + 19370272, + 19363600 ], "bases": [ { @@ -216748,11 +216748,11 @@ }, { "type_name": "CTraceFilterForPlayerHeadCollision", - "vtable_address": 63990360, + "vtable_address": 63994264, "methods": [ - 18120144, - 18120672, - 18136912 + 18122448, + 18122976, + 18139216 ], "bases": [ { @@ -216807,11 +216807,11 @@ }, { "type_name": "CTraceFilterKnifeIgnoreTeammates", - "vtable_address": 63952960, + "vtable_address": 63956864, "methods": [ - 17709424, - 17710240, - 17719568 + 17711728, + 17712544, + 17721872 ], "bases": [ { @@ -216866,11 +216866,11 @@ }, { "type_name": "CTraceFilterNoCombatCharacters", - "vtable_address": 64129400, + "vtable_address": 64133304, "methods": [ - 20571184, - 20575824, - 20593792 + 20574000, + 20578640, + 20596608 ], "bases": [ { @@ -216936,11 +216936,11 @@ }, { "type_name": "CTraceFilterNoNPCsOrPlayer", - "vtable_address": 64074072, + "vtable_address": 64077976, "methods": [ - 19363984, - 19367488, - 19360704 + 19366800, + 19370304, + 19363520 ], "bases": [ { @@ -216995,10 +216995,10 @@ }, { "type_name": "CTraceFilterOmitPlayers", - "vtable_address": 64251640, + "vtable_address": 64255544, "methods": [ - 22438800, - 22440384, + 22441616, + 22443200, 12447216 ], "bases": [ @@ -217043,11 +217043,11 @@ }, { "type_name": "CTraceFilterPlayerMovementCS", - "vtable_address": 63990280, + "vtable_address": 63994184, "methods": [ - 18120112, - 18120656, - 18137296 + 18122416, + 18122960, + 18139600 ], "bases": [ { @@ -217102,11 +217102,11 @@ }, { "type_name": "CTraceFilterTaserIgnoreTeammates", - "vtable_address": 63968232, + "vtable_address": 63972136, "methods": [ - 17709712, - 17710256, - 17719680 + 17712016, + 17712560, + 17721984 ], "bases": [ { @@ -217161,32 +217161,32 @@ }, { "type_name": "CTriggerFan", - "vtable_address": 63264144, + "vtable_address": 63268048, "methods": [ 14368000, 13072304, 13073360, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13060576, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -217196,23 +217196,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13056000, 13058768, 13056832, 12234080, 13081328, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -217229,13 +217229,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -217243,41 +217243,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -217289,33 +217289,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -217343,9 +217343,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -217353,24 +217353,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -217382,32 +217382,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -217501,15 +217501,15 @@ }, { "type_name": "CTriggerFan", - "vtable_address": 63266184, + "vtable_address": 63270088, "methods": [ 13072832, 13073904, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -217595,9 +217595,9 @@ }, { "type_name": "CTriggerFan", - "vtable_address": 63266256, + "vtable_address": 63270160, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -217683,10 +217683,10 @@ }, { "type_name": "CTriggerFan::NetworkVar_m_RampTimer", - "vtable_address": 63262320, + "vtable_address": 63266224, "methods": [ 13060656, - 20137664, + 20140480, 13061248, 13055552, 13055952 @@ -217711,10 +217711,10 @@ }, { "type_name": "CUGCDetailsRequest", - "vtable_address": 64359512, + "vtable_address": 64363416, "methods": [ - 23289824, - 23294032 + 23292576, + 23296784 ], "bases": [], "model": { @@ -217725,7 +217725,7 @@ }, { "type_name": "CUIRootGameSystem", - "vtable_address": 63149048, + "vtable_address": 63152952, "methods": [ 12204192, 12204208, @@ -217821,35 +217821,35 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 64440872, + "vtable_address": 64444776, "methods": [ 12043984, - 59816784, - 24267552, - 24267568, - 24275328, - 59817136, - 59817120, + 59820688, + 24270304, + 24270320, + 24278080, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 24384512, - 24287824, - 59819120, - 59817872, - 24275712, - 24458912, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 24387232, + 24290576, + 59823024, + 59821776, + 24278464, + 24461840, 12233184, - 59817888, - 59817904, - 59816800, - 24293152, - 59823152, + 59821792, + 59821808, + 59820704, + 24295904, + 59827056, 12233664, 12233696, 12233680, @@ -217862,12 +217862,12 @@ 12399392, 12233312, 12233168, - 24548096, - 59825616, - 59825216, - 59836080, + 24551040, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -217882,59 +217882,59 @@ 12233520, 12233296, 12233760, - 59835792, - 24267520, - 24543520, - 24544784, + 59839696, + 24270272, + 24546464, + 24547728, 12233152, - 59826304, - 59826016, - 24274912, - 24275024, - 24274688, - 24274800, - 59821696, - 59821104, + 59830208, + 59829920, + 24277664, + 24277776, + 24277440, + 24277552, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24267728, - 24577792, - 24267616, - 24689488, - 24267648, - 24298672, - 24504432, - 24366384, - 24267664, - 24268448, - 24277184, - 24553568, - 24552640, - 24277024, - 24274480, - 24325488, - 24268208, - 24282720, - 24282688, - 24373696, - 24267680, - 24284432, - 24267712, - 24310080, - 24296960, - 24590544, - 24267744 + 24270480, + 24580672, + 24270368, + 24692496, + 24270400, + 24301424, + 24507376, + 24369104, + 24270416, + 24271200, + 24279936, + 24556512, + 24555584, + 24279776, + 24277232, + 24328240, + 24270960, + 24285472, + 24285440, + 24376416, + 24270432, + 24287184, + 24270464, + 24312832, + 24299712, + 24593552, + 24270496 ], "bases": [ { @@ -218030,11 +218030,11 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 64441784, + "vtable_address": 64445688, "methods": [ - 24544752, - 24544880, - 24293040 + 24547696, + 24547824, + 24295792 ], "bases": [ { @@ -218130,10 +218130,10 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 64441824, + "vtable_address": 64445728, "methods": [ - 24578944, - 24267632 + 24581824, + 24270384 ], "bases": [ { @@ -218229,12 +218229,12 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 64441856, + "vtable_address": 64445760, "methods": [ - 24544768, - 24544832, - 24267360, - 24292304 + 24547712, + 24547776, + 24270112, + 24295056 ], "bases": [ { @@ -218330,35 +218330,35 @@ }, { "type_name": "CUI_Canvas", - "vtable_address": 64612040, + "vtable_address": 64615944, "methods": [ 12043984, - 59816784, - 28214544, - 28214560, - 60674208, - 59817136, - 59817120, + 59820688, + 28217808, + 28217824, + 60678112, + 59821040, + 59821024, 12233600, - 28220992, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 28224256, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -218371,12 +218371,12 @@ 12399392, 12233312, 12233168, - 28280848, - 59825616, - 59825216, - 59836080, + 28284112, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -218391,34 +218391,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28214528, - 28239184, - 28239664, + 59839696, + 28217792, + 28242448, + 28242928, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25283920, - 25283936 + 25286928, + 25286944 ], "bases": [ { @@ -218462,11 +218462,11 @@ }, { "type_name": "CUI_CanvasRenderer", - "vtable_address": 64612752, + "vtable_address": 64616656, "methods": [ - 28238752, - 28239136, - 28272576, + 28242016, + 28242400, + 28275840, 12233136 ], "bases": [ @@ -218511,11 +218511,11 @@ }, { "type_name": "CUI_Canvas_DrawPolyCommand", - "vtable_address": 64612880, + "vtable_address": 64616784, "methods": [ - 28226144, - 28226320, - 28269952 + 28229408, + 28229584, + 28273216 ], "bases": [ { @@ -218537,35 +218537,35 @@ }, { "type_name": "CUI_ContextMenuManager", - "vtable_address": 64614344, + "vtable_address": 64618248, "methods": [ 12043984, - 59816784, - 28215088, - 28215104, - 59817120, - 59817136, - 59817120, + 59820688, + 28218352, + 28218368, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -218578,12 +218578,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -218598,30 +218598,30 @@ 12233520, 12233296, 12233760, - 59835792, - 28215072, - 28217520, - 28217616, + 59839696, + 28218336, + 28220784, + 28220880, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -218656,35 +218656,35 @@ }, { "type_name": "CUI_ContextMenu_Base", - "vtable_address": 64613632, + "vtable_address": 64617536, "methods": [ 12043984, - 59816784, - 28214896, - 28214912, - 59817120, - 59817136, - 59817120, + 59820688, + 28218160, + 28218176, + 59821024, + 59821040, + 59821024, 12233600, - 60126496, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60130400, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60130112, - 59817904, - 59816800, - 59828528, - 59823152, + 60134016, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -218697,12 +218697,12 @@ 12399392, 12233312, 12233168, - 28281552, - 59825616, - 59825216, - 59836080, + 28284816, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -218717,34 +218717,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28214880, - 28223216, - 28223568, + 59839696, + 28218144, + 28226480, + 28226832, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60124208, - 24073488 + 60128112, + 24076240 ], "bases": [ { @@ -218788,35 +218788,35 @@ }, { "type_name": "CUI_ContextMenu_Script", - "vtable_address": 64612920, + "vtable_address": 64616824, "methods": [ 12043984, - 59816784, - 28214992, - 28215008, - 59817120, - 59817136, - 59817120, + 59820688, + 28218256, + 28218272, + 59821024, + 59821040, + 59821024, 12233600, - 60126496, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60130400, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60130112, - 59817904, - 59816800, - 59828528, - 59823152, + 60134016, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -218829,12 +218829,12 @@ 12399392, 12233312, 12233168, - 28281552, - 59825616, - 59825216, - 59836080, + 28284816, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -218849,34 +218849,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28214976, - 28223280, - 28223648, + 59839696, + 28218240, + 28226544, + 28226912, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60124208, - 24073488 + 60128112, + 24076240 ], "bases": [ { @@ -218931,35 +218931,35 @@ }, { "type_name": "CUI_CustomLayoutPanel", - "vtable_address": 64615040, + "vtable_address": 64618944, "methods": [ 12043984, - 59816784, - 28215168, - 28215184, - 59817120, - 59817136, - 59817120, + 59820688, + 28218432, + 28218448, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 28251136, + 59821792, + 59821808, + 59820704, + 59832432, + 28254400, 12233664, 12233696, 12233680, @@ -218972,12 +218972,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -218992,30 +218992,30 @@ 12233520, 12233296, 12233760, - 59835792, - 28215136, - 28224928, - 28225344, + 59839696, + 28218400, + 28228192, + 28228608, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -219050,35 +219050,35 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 64444800, + "vtable_address": 64448704, "methods": [ 12043984, - 59816784, - 24268720, - 24268736, - 24388416, - 59817136, - 24273904, + 59820688, + 24271472, + 24271488, + 24391136, + 59821040, + 24276656, 12233600, 12233616, - 24268816, - 24268816, - 59817872, - 59817872, - 59817872, - 59827440, - 24384832, - 24287968, - 59819120, - 59817872, - 24299808, - 24288160, + 24271568, + 24271568, + 59821776, + 59821776, + 59821776, + 59831344, + 24387552, + 24290720, + 59823024, + 59821776, + 24302560, + 24290912, 12233184, - 59817888, - 59817904, - 59816800, - 24293152, - 59823152, + 59821792, + 59821808, + 59820704, + 24295904, + 59827056, 12233664, 12233696, 12233680, @@ -219091,12 +219091,12 @@ 12399392, 12233312, 12233168, - 24548096, - 59825616, - 59825216, - 59836080, + 24551040, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -219111,59 +219111,59 @@ 12233520, 12233296, 12233760, - 59835792, - 24268704, - 24544928, - 24547056, + 59839696, + 24271456, + 24547872, + 24550000, 12233152, - 59826304, - 59826016, - 24274912, - 24275024, - 24274688, - 24274800, - 59821696, - 59821104, + 59830208, + 59829920, + 24277664, + 24277776, + 24277440, + 24277552, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24267728, - 24577792, - 24267616, - 24689568, - 24267648, - 24298672, - 24504784, - 24366640, - 24267664, - 24268448, - 24277184, - 24553568, - 24552640, - 24277024, - 24274480, - 24325488, - 24317584, - 24282720, - 24282688, - 24373696, - 24447712, - 24284432, - 24267712, - 24310080, - 24296960, - 24590544, - 24267744 + 24270480, + 24580672, + 24270368, + 24692576, + 24270400, + 24301424, + 24507728, + 24369360, + 24270416, + 24271200, + 24279936, + 24556512, + 24555584, + 24279776, + 24277232, + 24328240, + 24320336, + 24285472, + 24285440, + 24376416, + 24450640, + 24287184, + 24270464, + 24312832, + 24299712, + 24593552, + 24270496 ], "bases": [ { @@ -219270,11 +219270,11 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 64445712, + "vtable_address": 64449616, "methods": [ - 24547696, - 24547376, - 24293040 + 24550640, + 24550320, + 24295792 ], "bases": [ { @@ -219381,10 +219381,10 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 64445752, + "vtable_address": 64449656, "methods": [ - 24578944, - 24267632 + 24581824, + 24270384 ], "bases": [ { @@ -219491,12 +219491,12 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 64445784, + "vtable_address": 64449688, "methods": [ - 24547536, - 24547216, - 24267360, - 24292304 + 24550480, + 24550160, + 24270112, + 24295056 ], "bases": [ { @@ -219603,35 +219603,35 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 64445896, + "vtable_address": 64449800, "methods": [ 12043984, - 59816784, - 24268880, - 24268896, - 24275328, - 59817136, - 59817120, + 59820688, + 24271632, + 24271648, + 24278080, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 24385008, - 24287824, - 59819120, - 59817872, - 24275712, - 24458912, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 24387728, + 24290576, + 59823024, + 59821776, + 24278464, + 24461840, 12233184, - 59817888, - 59817904, - 59816800, - 24295408, - 59823152, + 59821792, + 59821808, + 59820704, + 24298160, + 59827056, 12233664, 12233696, 12233680, @@ -219644,12 +219644,12 @@ 12399392, 12233312, 12233168, - 24549024, - 59825616, - 59825216, - 59836080, + 24551968, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -219664,59 +219664,59 @@ 12233520, 12233296, 12233760, - 59835792, - 24268864, - 24696448, - 24696912, + 59839696, + 24271616, + 24699456, + 24699920, 12233152, - 59826304, - 59826016, - 24274912, - 24275024, - 24274688, - 24274800, - 59821696, - 59821104, + 59830208, + 59829920, + 24277664, + 24277776, + 24277440, + 24277552, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24267728, - 24578960, - 24267616, - 24689488, - 24267648, - 24298672, - 24504432, - 24366384, - 24267664, - 24268448, - 24277184, - 24553568, - 24552640, - 24277024, - 24274480, - 24326480, - 24292160, - 24282720, - 24640416, - 24373696, - 24448352, - 24284432, - 24271984, - 24310080, - 24296960, - 24590544, - 24267744 + 24270480, + 24581840, + 24270368, + 24692496, + 24270400, + 24301424, + 24507376, + 24369104, + 24270416, + 24271200, + 24279936, + 24556512, + 24555584, + 24279776, + 24277232, + 24329232, + 24294912, + 24285472, + 24643424, + 24376416, + 24451280, + 24287184, + 24274736, + 24312832, + 24299712, + 24593552, + 24270496 ], "bases": [ { @@ -219823,11 +219823,11 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 64446808, + "vtable_address": 64450712, "methods": [ - 24696880, - 24697008, - 24293040 + 24699888, + 24700016, + 24295792 ], "bases": [ { @@ -219934,10 +219934,10 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 64446848, + "vtable_address": 64450752, "methods": [ - 24580000, - 24267632 + 24582880, + 24270384 ], "bases": [ { @@ -220044,12 +220044,12 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 64446880, + "vtable_address": 64450784, "methods": [ - 24696896, - 24696960, - 24267360, - 24292304 + 24699904, + 24699968, + 24270112, + 24295056 ], "bases": [ { @@ -220156,14 +220156,14 @@ }, { "type_name": "CUI_MMStatus_Popup", - "vtable_address": 64374864, + "vtable_address": 64378768, "methods": [ - 23544832, - 23539248, - 23538976, - 23549248, - 23540576, - 23540832 + 23547584, + 23542000, + 23541728, + 23552000, + 23543328, + 23543584 ], "bases": [ { @@ -220239,34 +220239,34 @@ }, { "type_name": "CUI_MMStatus_Popup", - "vtable_address": 64374928, + "vtable_address": 64378832, "methods": [ 12043984, - 59816784, + 59820688, 12400032, 12400048, - 59817120, - 59817136, - 59817120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -220280,12 +220280,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -220300,35 +220300,35 @@ 12233520, 12233296, 12233760, - 59835792, + 59839696, 12400016, - 23540704, - 23540960, + 23543456, + 23543712, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12399792, 12399808, - 23549296, + 23552048, 12410704, 12399824, 12406704, @@ -220409,60 +220409,60 @@ }, { "type_name": "CUI_MapPreviewCameraManager", - "vtable_address": 64440400, - "methods": [ - 24272896, - 24315344, - 24680384, - 21380928, - 21343808, - 24267408, - 21343696, - 21325472, - 21325472, - 21325696, - 24688016, - 21373072, - 21368800, - 21330704, - 21344192, - 21325632, - 21325488, - 21325504, - 21325520, - 21325552, - 21325568, - 21325600, - 21380064, - 21380352, - 21347120, - 21369808, - 21370160, - 21349120, - 21378944, - 21346640, - 21346400, - 21379168, - 21379392, - 21346880, - 21345920, - 21346160, - 21325664, - 21325680, - 21325680, - 21344144, - 21386992, - 21325728, - 21324928, - 21398240, - 24680256, - 21348048, - 24267440, - 24267456, - 24267472, - 24267488, - 24267504, - 21360320 + "vtable_address": 64444304, + "methods": [ + 24275648, + 24318096, + 24683392, + 21383744, + 21346624, + 24270160, + 21346512, + 21328288, + 21328288, + 21328512, + 24691024, + 21375888, + 21371616, + 21333520, + 21347008, + 21328448, + 21328304, + 21328320, + 21328336, + 21328368, + 21328384, + 21328416, + 21382880, + 21383168, + 21349936, + 21372624, + 21372976, + 21351936, + 21381760, + 21349456, + 21349216, + 21381984, + 21382208, + 21349696, + 21348736, + 21348976, + 21328480, + 21328496, + 21328496, + 21346960, + 21389808, + 21328544, + 21327744, + 21401056, + 24683264, + 21350864, + 24270192, + 24270208, + 24270224, + 24270240, + 24270256, + 21363136 ], "bases": [ { @@ -220516,11 +220516,11 @@ }, { "type_name": "CUI_MapPreviewCameraManager", - "vtable_address": 64440832, + "vtable_address": 64444736, "methods": [ - 24315856, - 24315600, - 21358656 + 24318608, + 24318352, + 21361472 ], "bases": [ { @@ -220574,35 +220574,35 @@ }, { "type_name": "CUI_MapPreviewMagnifier", - "vtable_address": 64444096, + "vtable_address": 64448000, "methods": [ 12043984, - 59816784, - 24268640, - 24268656, - 60674208, - 59817136, - 59817120, + 59820688, + 24271392, + 24271408, + 60678112, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -220615,12 +220615,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -220635,33 +220635,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24268624, - 24284064, - 24285568, + 59839696, + 24271376, + 24286816, + 24288320, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23621312 + 23624064 ], "bases": [ { @@ -220705,62 +220705,62 @@ }, { "type_name": "CUI_MapPreviewPathDrivenCamera", - "vtable_address": 64439952, - "methods": [ - 24273136, - 24273152, - 21360480, - 21324944, - 24679984, - 21357088, - 21342272, - 24299440, - 24299584, - 21324576, - 21324592, - 21324608, - 21324624, - 21324640, - 21345712, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 21324720, - 21324736, - 24299248, - 24299344, - 21324784, - 21324464, - 21324800, - 21324816, - 21324480, - 21324496, - 21324512, - 21387680, - 21324528, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160, - 24268192 + "vtable_address": 64443856, + "methods": [ + 24275888, + 24275904, + 21363296, + 21327760, + 24682992, + 21359904, + 21345088, + 24302240, + 24302336, + 21327392, + 21327408, + 21327424, + 21327440, + 21327456, + 21348528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 21327536, + 21327552, + 24302000, + 24302144, + 21327600, + 21327280, + 21327616, + 21327632, + 21327296, + 21327312, + 21327328, + 21390496, + 21327344, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976, + 24270944 ], "bases": [ { @@ -220793,62 +220793,62 @@ }, { "type_name": "CUI_MapPreviewPointCamera", - "vtable_address": 64439504, + "vtable_address": 64443408, "methods": [ - 24273200, - 24273216, - 21360480, - 21324944, - 24677872, - 21357088, - 21342272, - 21324544, - 21324560, - 21324576, - 21324592, - 21324608, - 21324624, - 21324640, - 21345712, - 21345648, - 21324672, - 21345584, - 21324704, - 21345488, - 21324720, - 21324736, - 24299056, - 24299152, - 21324784, - 21324464, - 21324800, - 21324816, - 21324480, - 21324496, - 21324512, - 21387680, - 21324528, - 21324960, - 21324976, - 21324992, - 21325008, - 21325024, - 21325040, - 21325056, - 21325072, - 21325088, - 21325104, - 21325120, - 21325136, - 21325152, - 21324832, - 21324848, - 21324864, - 21324880, - 21324896, - 21324912, - 21354160, - 24268176 + 24275952, + 24275968, + 21363296, + 21327760, + 24680880, + 21359904, + 21345088, + 21327360, + 21327376, + 21327392, + 21327408, + 21327424, + 21327440, + 21327456, + 21348528, + 21348464, + 21327488, + 21348400, + 21327520, + 21348304, + 21327536, + 21327552, + 24301808, + 24301904, + 21327600, + 21327280, + 21327616, + 21327632, + 21327296, + 21327312, + 21327328, + 21390496, + 21327344, + 21327776, + 21327792, + 21327808, + 21327824, + 21327840, + 21327856, + 21327872, + 21327888, + 21327904, + 21327920, + 21327936, + 21327952, + 21327968, + 21327648, + 21327664, + 21327680, + 21327696, + 21327712, + 21327728, + 21356976, + 24270928 ], "bases": [ { @@ -220881,35 +220881,35 @@ }, { "type_name": "CUI_PageManager", - "vtable_address": 64615736, + "vtable_address": 64619640, "methods": [ 12043984, - 59816784, - 28215296, - 28215312, - 59817120, - 59817136, - 59817120, + 59820688, + 28218560, + 28218576, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -220922,12 +220922,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -220942,30 +220942,30 @@ 12233520, 12233296, 12233760, - 59835792, - 28215280, - 28315600, - 28316000, + 59839696, + 28218544, + 28318992, + 28319392, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -221000,35 +221000,35 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 64448056, + "vtable_address": 64451960, "methods": [ 12043984, - 59816784, - 24267792, - 24267808, - 24275328, - 59817136, - 59817120, + 59820688, + 24270544, + 24270560, + 24278080, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 24402672, - 24287824, - 59819120, - 59817872, - 24275712, - 24458912, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 24405392, + 24290576, + 59823024, + 59821776, + 24278464, + 24461840, 12233184, - 59817888, - 59817904, - 59816800, - 24640864, - 59823152, + 59821792, + 59821808, + 59820704, + 24643872, + 59827056, 12233664, 12233696, 12233680, @@ -221041,12 +221041,12 @@ 12399392, 12233312, 12233168, - 24549584, - 59825616, - 59825216, - 59836080, + 24552528, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -221061,61 +221061,61 @@ 12233520, 12233296, 12233760, - 59835792, - 24267760, - 24545600, - 24546304, + 59839696, + 24270512, + 24548544, + 24549248, 12233152, - 59826304, - 59826016, - 24274912, - 24275024, - 24274688, - 24274800, - 59821696, - 59821104, + 59830208, + 59829920, + 24277664, + 24277776, + 24277440, + 24277552, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24267728, - 24642000, - 24267616, - 24689488, - 24267648, - 24298672, - 24504432, - 24366384, - 24267664, - 24268448, - 24277184, - 24553920, - 24553168, - 24277024, - 24274480, - 24325488, - 24297408, - 24282720, - 24282688, - 24596240, - 24267680, - 24284432, - 24267712, - 24310080, - 24297280, - 24590544, - 24267744, - 24316784, - 24566608 + 24270480, + 24645008, + 24270368, + 24692496, + 24270400, + 24301424, + 24507376, + 24369104, + 24270416, + 24271200, + 24279936, + 24556864, + 24556112, + 24279776, + 24277232, + 24328240, + 24300160, + 24285472, + 24285440, + 24599248, + 24270432, + 24287184, + 24270464, + 24312832, + 24300032, + 24593552, + 24270496, + 24319536, + 24569552 ], "bases": [ { @@ -221222,11 +221222,11 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 64448984, + "vtable_address": 64452888, "methods": [ - 24546272, - 24546400, - 24293040 + 24549216, + 24549344, + 24295792 ], "bases": [ { @@ -221333,10 +221333,10 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 64449024, + "vtable_address": 64452928, "methods": [ - 24643088, - 24267632 + 24646096, + 24270384 ], "bases": [ { @@ -221443,12 +221443,12 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 64449056, + "vtable_address": 64452960, "methods": [ - 24546288, - 24546352, - 24267360, - 24292304 + 24549232, + 24549296, + 24270112, + 24295056 ], "bases": [ { @@ -221555,34 +221555,34 @@ }, { "type_name": "CUI_Popup", - "vtable_address": 63145360, + "vtable_address": 63149264, "methods": [ 12043984, - 59816784, + 59820688, 12399744, 12399760, - 59817120, - 59817136, - 59817120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -221596,12 +221596,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -221616,30 +221616,30 @@ 12233520, 12233296, 12233760, - 59835792, + 59839696, 12399712, 12407008, 12407184, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12399792, @@ -221679,35 +221679,35 @@ }, { "type_name": "CUI_PopupManager", - "vtable_address": 63147592, + "vtable_address": 63151496, "methods": [ 12043984, - 59816784, + 59820688, 12399856, 12399872, - 59817120, - 59817136, - 59817120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402992, - 59828528, - 59823152, + 59832432, + 59827056, 12233664, 12233696, 12432176, @@ -221720,12 +221720,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -221740,30 +221740,30 @@ 12233520, 12233296, 12233760, - 59835792, + 59839696, 12399840, 12400912, 12400928, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12431312 @@ -221799,34 +221799,34 @@ }, { "type_name": "CUI_Popup_CustomLayout", - "vtable_address": 63146096, + "vtable_address": 63150000, "methods": [ 12043984, - 59816784, + 59820688, 12399952, 12399968, - 59817120, - 59817136, - 59817120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -221840,12 +221840,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -221860,30 +221860,30 @@ 12233520, 12233296, 12233760, - 59835792, + 59839696, 12399936, 12408064, 12408416, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12399792, @@ -221934,34 +221934,34 @@ }, { "type_name": "CUI_Popup_Generic", - "vtable_address": 63146832, + "vtable_address": 63150736, "methods": [ 12043984, - 59816784, + 59820688, 12400032, 12400048, - 59817120, - 59817136, - 59817120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, + 59821792, + 59821808, 12402864, - 59828528, + 59832432, 12402640, 12233664, 12233696, @@ -221975,12 +221975,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -221995,30 +221995,30 @@ 12233520, 12233296, 12233760, - 59835792, + 59839696, 12400016, 12407376, 12407584, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12399792, @@ -222072,35 +222072,35 @@ }, { "type_name": "CUI_Root", - "vtable_address": 63148296, + "vtable_address": 63152200, "methods": [ 12043984, - 59816784, + 59820688, 12400160, 12400176, - 59817120, - 59817136, - 59817120, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -222113,12 +222113,12 @@ 12399392, 12233312, 12400240, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -222133,30 +222133,30 @@ 12400256, 12233296, 12233760, - 59835792, + 59839696, 12400144, 12404032, 12404240, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, 12406176, @@ -222214,7 +222214,7 @@ }, { "type_name": "CUI_Root", - "vtable_address": 63149008, + "vtable_address": 63152912, "methods": [ 12404224, 12405200, @@ -222272,35 +222272,35 @@ }, { "type_name": "CUI_ToastManager", - "vtable_address": 64616432, + "vtable_address": 64620336, "methods": [ 12043984, - 59816784, - 28215360, - 28215376, - 59817120, - 59817136, - 59817120, + 59820688, + 28218624, + 28218640, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 28255696, + 59821792, + 59821808, + 59820704, + 59832432, + 28258960, 12233664, 12233696, 12233680, @@ -222313,12 +222313,12 @@ 12399392, 12233312, 12233168, - 28282256, - 59825616, - 59825216, - 59836080, + 28285520, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -222328,35 +222328,35 @@ 12233472, 12233488, 12233504, - 28215440, + 28218704, 12399424, - 28255088, + 28258352, 12233296, 12233760, - 59835792, - 28215344, - 28217536, - 28217664, + 59839696, + 28218608, + 28220800, + 28220928, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -222391,35 +222391,35 @@ }, { "type_name": "CUI_TooltipContents", - "vtable_address": 64617840, + "vtable_address": 64621744, "methods": [ 12043984, - 59816784, - 28215616, - 28215632, - 59817120, - 59817136, - 59817120, + 59820688, + 28218880, + 28218896, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 28219552, - 59828528, - 28251136, + 59821792, + 59821808, + 28222816, + 59832432, + 28254400, 12233664, 12233696, 12233680, @@ -222432,12 +222432,12 @@ 12399392, 12233312, 12233168, - 28282960, - 59825616, - 59825216, - 59836080, + 28286224, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -222452,30 +222452,30 @@ 12233520, 12233296, 12233760, - 59835792, - 28215600, - 28225136, - 28223344, + 59839696, + 28218864, + 28228400, + 28226608, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -222521,35 +222521,35 @@ }, { "type_name": "CUI_TooltipManager", - "vtable_address": 64619248, + "vtable_address": 64623152, "methods": [ 12043984, - 59816784, - 28215792, - 28215808, - 59817120, - 59817136, - 59817120, + 59820688, + 28219056, + 28219072, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -222562,12 +222562,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -222582,33 +222582,33 @@ 12233520, 12233296, 12233760, - 59835792, - 28215776, - 28217600, - 28217856, + 59839696, + 28219040, + 28220864, + 28221120, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28216128 + 28219392 ], "bases": [ { @@ -222641,35 +222641,35 @@ }, { "type_name": "CUI_Tooltip_Base", - "vtable_address": 64617128, + "vtable_address": 64621032, "methods": [ 12043984, - 59816784, - 28215536, - 28215552, - 59817120, - 59817136, - 59817120, + 59820688, + 28218800, + 28218816, + 59821024, + 59821040, + 59821024, 12233600, - 60665456, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60669360, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -222682,12 +222682,12 @@ 12399392, 12233312, 12233168, - 60671984, - 59825616, - 59825216, - 59836080, + 60675888, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -222702,34 +222702,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28215504, - 28219920, - 28219936, + 59839696, + 28218768, + 28223184, + 28223200, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28215472, - 60664736 + 28218736, + 60668640 ], "bases": [ { @@ -222773,35 +222773,35 @@ }, { "type_name": "CUI_Tooltip_CustomLayout", - "vtable_address": 64618536, + "vtable_address": 64622440, "methods": [ 12043984, - 59816784, - 28215696, - 28215712, - 59817120, - 59817136, - 59817120, + 59820688, + 28218960, + 28218976, + 59821024, + 59821040, + 59821024, 12233600, - 60665456, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60669360, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -222814,12 +222814,12 @@ 12399392, 12233312, 12233168, - 60671984, - 59825616, - 59825216, - 59836080, + 60675888, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -222834,34 +222834,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28215680, - 28219984, - 28220000, + 59839696, + 28218944, + 28223248, + 28223264, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28215472, - 60664736 + 28218736, + 60668640 ], "bases": [ { @@ -222916,35 +222916,35 @@ }, { "type_name": "CUI_Tooltip_Text", - "vtable_address": 64619952, + "vtable_address": 64623856, "methods": [ 12043984, - 59816784, - 28215856, - 28215872, - 59817120, - 59817136, - 59817120, + 59820688, + 28219120, + 28219136, + 59821024, + 59821040, + 59821024, 12233600, - 60665456, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60669360, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -222957,12 +222957,12 @@ 12399392, 12233312, 12233168, - 60671984, - 59825616, - 59825216, - 59836080, + 60675888, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -222977,34 +222977,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28215840, - 28220048, - 28220064, + 59839696, + 28219104, + 28223312, + 28223328, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28215472, - 60664736 + 28218736, + 60668640 ], "bases": [ { @@ -223059,35 +223059,35 @@ }, { "type_name": "CUI_Tooltip_TitleImageText", - "vtable_address": 64620664, + "vtable_address": 64624568, "methods": [ 12043984, - 59816784, - 28216048, - 28216064, - 59817120, - 59817136, - 59817120, + 59820688, + 28219312, + 28219328, + 59821024, + 59821040, + 59821024, 12233600, - 60665456, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60669360, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -223100,12 +223100,12 @@ 12399392, 12233312, 12233168, - 60671984, - 59825616, - 59825216, - 59836080, + 60675888, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -223120,34 +223120,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28216032, - 28220112, - 28220128, + 59839696, + 28219296, + 28223376, + 28223392, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28215472, - 60664736 + 28218736, + 60668640 ], "bases": [ { @@ -223202,35 +223202,35 @@ }, { "type_name": "CUI_Tooltip_TitleText", - "vtable_address": 64621376, + "vtable_address": 64625280, "methods": [ 12043984, - 59816784, - 28215952, - 28215968, - 59817120, - 59817136, - 59817120, + 59820688, + 28219216, + 28219232, + 59821024, + 59821040, + 59821024, 12233600, - 60665456, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60669360, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -223243,12 +223243,12 @@ 12399392, 12233312, 12233168, - 60671984, - 59825616, - 59825216, - 59836080, + 60675888, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -223263,34 +223263,34 @@ 12233520, 12233296, 12233760, - 59835792, - 28215936, - 28220176, - 28220192, + 59839696, + 28219200, + 28223440, + 28223456, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28215472, - 60664736 + 28218736, + 60668640 ], "bases": [ { @@ -223345,35 +223345,35 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 64451456, + "vtable_address": 64455360, "methods": [ 12043984, - 59816784, - 24269296, - 24269312, - 24275328, - 59817136, - 59817120, + 59820688, + 24272048, + 24272064, + 24278080, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 24402672, - 24287824, - 59819120, - 59817872, - 24275712, - 24458912, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 24405392, + 24290576, + 59823024, + 59821776, + 24278464, + 24461840, 12233184, - 59817888, - 59817904, - 59816800, - 24640864, - 59823152, + 59821792, + 59821808, + 59820704, + 24643872, + 59827056, 12233664, 12233696, 12233680, @@ -223386,12 +223386,12 @@ 12399392, 12233312, 12233168, - 24549584, - 59825616, - 59825216, - 59836080, + 24552528, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -223406,61 +223406,61 @@ 12233520, 12233296, 12233760, - 59835792, - 24269280, - 24546448, - 24546528, + 59839696, + 24272032, + 24549392, + 24549472, 12233152, - 59826304, - 59826016, - 24274912, - 24275024, - 24274688, - 24274800, - 59821696, - 59821104, + 59830208, + 59829920, + 24277664, + 24277776, + 24277440, + 24277552, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24267728, - 24643104, - 24267616, - 24689488, - 24267648, - 24298672, - 24511168, - 24366496, - 24269376, - 24268448, - 24277184, - 24553920, - 24553168, - 24277024, - 24274480, - 24325488, - 24297408, - 24282720, - 24282688, - 24596240, - 24434688, - 24275472, - 24267712, - 24310080, - 24297280, - 24590544, - 24267744, - 24317568, - 24567216 + 24270480, + 24646112, + 24270368, + 24692496, + 24270400, + 24301424, + 24514112, + 24369216, + 24272128, + 24271200, + 24279936, + 24556864, + 24556112, + 24279776, + 24277232, + 24328240, + 24300160, + 24285472, + 24285440, + 24599248, + 24437616, + 24278224, + 24270464, + 24312832, + 24300032, + 24593552, + 24270496, + 24320320, + 24570160 ], "bases": [ { @@ -223578,11 +223578,11 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 64452384, + "vtable_address": 64456288, "methods": [ - 24546736, - 24546944, - 24293040 + 24549680, + 24549888, + 24295792 ], "bases": [ { @@ -223700,10 +223700,10 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 64452424, + "vtable_address": 64456328, "methods": [ - 24643312, - 24267632 + 24646320, + 24270384 ], "bases": [ { @@ -223821,12 +223821,12 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 64452456, + "vtable_address": 64456360, "methods": [ - 24546640, - 24546832, - 24267360, - 24292304 + 24549584, + 24549776, + 24270112, + 24295056 ], "bases": [ { @@ -223944,35 +223944,35 @@ }, { "type_name": "CUI_VanityCapturePanel", - "vtable_address": 64449248, + "vtable_address": 64453152, "methods": [ 12043984, - 59816784, - 24269408, - 24269424, - 24323728, - 59817136, - 59817120, + 59820688, + 24272160, + 24272176, + 24326480, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -223985,12 +223985,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -224005,34 +224005,34 @@ 12233520, 12233296, 12233760, - 59835792, - 24269392, - 24322416, - 24322816, + 59839696, + 24272144, + 24325168, + 24325568, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23621312, - 24457424 + 23624064, + 24460352 ], "bases": [ { @@ -224086,9 +224086,9 @@ }, { "type_name": "CUI_VanityCapturePanel", - "vtable_address": 64449960, + "vtable_address": 64453864, "methods": [ - 24458800 + 24461728 ], "bases": [ { @@ -224142,35 +224142,35 @@ }, { "type_name": "CUI_VanityCrossFadePanel", - "vtable_address": 64450720, + "vtable_address": 64454624, "methods": [ 12043984, - 59816784, - 24269568, - 24269584, - 60674208, - 59817136, - 59817120, + 59820688, + 24272320, + 24272336, + 60678112, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -224183,12 +224183,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -224203,34 +224203,34 @@ 12233520, 12233296, 12233760, - 59835792, - 24269552, - 24323184, - 24323456, + 59839696, + 24272304, + 24325936, + 24326208, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23621312, - 24487232 + 23624064, + 24490176 ], "bases": [ { @@ -224284,9 +224284,9 @@ }, { "type_name": "CUI_VanityCrossFadePanel", - "vtable_address": 64451432, + "vtable_address": 64455336, "methods": [ - 24488752 + 24491696 ], "bases": [ { @@ -224340,35 +224340,35 @@ }, { "type_name": "CUI_VanityOverlayPanel", - "vtable_address": 64449984, + "vtable_address": 64453888, "methods": [ 12043984, - 59816784, - 24269488, - 24269504, - 60674208, - 59817136, - 59817120, + 59820688, + 24272240, + 24272256, + 60678112, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -224381,12 +224381,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -224401,34 +224401,34 @@ 12233520, 12233296, 12233760, - 59835792, - 24269472, - 24323952, - 24324368, + 59839696, + 24272224, + 24326704, + 24327120, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23621312, - 24484080 + 23624064, + 24487024 ], "bases": [ { @@ -224482,9 +224482,9 @@ }, { "type_name": "CUI_VanityOverlayPanel", - "vtable_address": 64450696, + "vtable_address": 64454600, "methods": [ - 24485904 + 24488848 ], "bases": [ { @@ -224538,11 +224538,11 @@ }, { "type_name": "CUiComponentGlobalInstanceHelper", - "vtable_address": 64520520, + "vtable_address": 64524424, "methods": [ - 23497856, - 23497872, - 25693344 + 23500608, + 23500624, + 25696352 ], "bases": [ { @@ -224564,10 +224564,10 @@ }, { "type_name": "CUiComponentLeaderboardContainer", - "vtable_address": 64524008, + "vtable_address": 64527912, "methods": [ - 25502080, - 25502288 + 25505088, + 25505296 ], "bases": [], "model": { @@ -224578,7 +224578,7 @@ }, { "type_name": "CUiComponentMatchListContainer", - "vtable_address": 64525032, + "vtable_address": 64528936, "methods": [], "bases": [], "model": { @@ -224589,13 +224589,13 @@ }, { "type_name": "CUiComponentMatchListContainer_Downloaded", - "vtable_address": 64525376, + "vtable_address": 64529280, "methods": [ - 25510912, - 25511696, - 25447760, - 25445232, - 26396304 + 25513920, + 25514704, + 25450768, + 25448240, + 26399312 ], "bases": [ { @@ -224617,13 +224617,13 @@ }, { "type_name": "CUiComponentMatchListContainer_Inmemory", - "vtable_address": 64525432, + "vtable_address": 64529336, "methods": [ - 25510768, - 25511552, - 25447776, - 25447792, - 26358960 + 25513776, + 25514560, + 25450784, + 25450800, + 26361968 ], "bases": [ { @@ -224656,13 +224656,13 @@ }, { "type_name": "CUiComponentMatchListContainer_Live", - "vtable_address": 64525128, + "vtable_address": 64529032, "methods": [ - 25510336, - 25511120, - 25445216, - 25445232, - 25524944 + 25513344, + 25514128, + 25448224, + 25448240, + 25527952 ], "bases": [ { @@ -224684,13 +224684,13 @@ }, { "type_name": "CUiComponentMatchListContainer_Recent", - "vtable_address": 64525224, + "vtable_address": 64529128, "methods": [ - 25510480, - 25511264, - 25445216, - 25445232, - 26362096 + 25513488, + 25514272, + 25448224, + 25448240, + 26365104 ], "bases": [ { @@ -224712,13 +224712,13 @@ }, { "type_name": "CUiComponentMatchListContainer_Tournament", - "vtable_address": 64525320, + "vtable_address": 64529224, "methods": [ - 25510624, - 25511408, - 25445216, - 25445232, - 26361536 + 25513632, + 25514416, + 25448224, + 25448240, + 26364544 ], "bases": [ { @@ -224740,14 +224740,14 @@ }, { "type_name": "CUiComponent_Blog", - "vtable_address": 64520256, + "vtable_address": 64524160, "methods": [ - 25439488, - 23497872, - 25455600, - 25439296, - 25439472, - 25453088 + 25442496, + 23500624, + 25458608, + 25442304, + 25442480, + 25456096 ], "bases": [ { @@ -224780,14 +224780,14 @@ }, { "type_name": "CUiComponent_CompetitiveMatch", - "vtable_address": 64520584, + "vtable_address": 64524488, "methods": [ - 23497856, - 23497872, - 25455552, - 25439648, - 25439472, - 25453072 + 23500608, + 23500624, + 25458560, + 25442656, + 25442480, + 25456080 ], "bases": [ { @@ -224820,14 +224820,14 @@ }, { "type_name": "CUiComponent_DeepStats", - "vtable_address": 64520648, + "vtable_address": 64524552, "methods": [ - 26279360, - 26276416, - 26272480, - 25440480, - 25439472, - 25453056 + 26282368, + 26279424, + 26275488, + 25443488, + 25442480, + 25456064 ], "bases": [ { @@ -224860,16 +224860,16 @@ }, { "type_name": "CUiComponent_EmbeddedStream", - "vtable_address": 64520784, + "vtable_address": 64524688, "methods": [ - 25791136, - 23497872, - 25455072, - 25440784, - 25439472, - 25453040, - 25660912, - 25623792 + 25794144, + 23500624, + 25458080, + 25443792, + 25442480, + 25456048, + 25663920, + 25626800 ], "bases": [ { @@ -224902,15 +224902,15 @@ }, { "type_name": "CUiComponent_FriendsList", - "vtable_address": 64521072, + "vtable_address": 64524976, "methods": [ - 25969392, - 25969904, - 26406768, - 25440976, - 25439472, - 26209040, - 26287664 + 25972400, + 25972912, + 26409776, + 25443984, + 25442480, + 26212048, + 26290672 ], "bases": [ { @@ -224963,9 +224963,9 @@ }, { "type_name": "CUiComponent_FriendsList", - "vtable_address": 64521144, + "vtable_address": 64525048, "methods": [ - 26210608 + 26213616 ], "bases": [ { @@ -225018,14 +225018,14 @@ }, { "type_name": "CUiComponent_FriendsList", - "vtable_address": 64521168, + "vtable_address": 64525072, "methods": [ - 26287360, - 23497872, - 25969952, - 25441152, - 25496688, - 25452992 + 26290368, + 23500624, + 25972960, + 25444160, + 25499696, + 25456000 ], "bases": [ { @@ -225078,14 +225078,14 @@ }, { "type_name": "CUiComponent_GameInterface", - "vtable_address": 64521424, + "vtable_address": 64525328, "methods": [ - 25487888, - 23497872, - 25455168, - 25441248, - 25439472, - 25452928 + 25490896, + 23500624, + 25458176, + 25444256, + 25442480, + 25455936 ], "bases": [ { @@ -225118,17 +225118,17 @@ }, { "type_name": "CUiComponent_GameState", - "vtable_address": 64521640, + "vtable_address": 64525544, "methods": [ - 25627664, - 26308480, - 25477280, - 25442096, - 25439472, - 25452784, - 26307344, - 26307744, - 26317776 + 25630672, + 26311488, + 25480288, + 25445104, + 25442480, + 25455792, + 26310352, + 26310752, + 26320784 ], "bases": [ { @@ -225182,11 +225182,11 @@ }, { "type_name": "CUiComponent_GameState", - "vtable_address": 64521728, + "vtable_address": 64525632, "methods": [ - 26307728, - 26307792, - 26318624 + 26310736, + 26310800, + 26321632 ], "bases": [ { @@ -225240,14 +225240,14 @@ }, { "type_name": "CUiComponent_GameTypes", - "vtable_address": 64522912, + "vtable_address": 64526816, "methods": [ - 23497856, - 23497872, - 25508000, - 25443424, - 25439472, - 25452672 + 23500608, + 23500624, + 25511008, + 25446432, + 25442480, + 25455680 ], "bases": [ { @@ -225280,15 +225280,15 @@ }, { "type_name": "CUiComponent_GlobalGame", - "vtable_address": 64522976, + "vtable_address": 64526880, "methods": [ - 25666096, - 23497872, - 25455424, - 25443904, - 25439472, - 25452656, - 25484912 + 25669104, + 23500624, + 25458432, + 25446912, + 25442480, + 25455664, + 25487920 ], "bases": [ { @@ -225331,9 +225331,9 @@ }, { "type_name": "CUiComponent_GlobalGame", - "vtable_address": 64523048, + "vtable_address": 64526952, "methods": [ - 25502576 + 25505584 ], "bases": [ { @@ -225376,14 +225376,14 @@ }, { "type_name": "CUiComponent_Inventory", - "vtable_address": 64523072, + "vtable_address": 64526976, "methods": [ - 23497856, - 23497872, - 26002320, - 25444112, - 25439472, - 25452640 + 23500608, + 23500624, + 26005328, + 25447120, + 25442480, + 25455648 ], "bases": [ { @@ -225416,14 +225416,14 @@ }, { "type_name": "CUiComponent_Leaderboards", - "vtable_address": 64523944, + "vtable_address": 64527848, "methods": [ - 23497856, - 23497872, - 25686400, - 25444496, - 25439472, - 25452272 + 23500608, + 23500624, + 25689408, + 25447504, + 25442480, + 25455280 ], "bases": [ { @@ -225456,14 +225456,14 @@ }, { "type_name": "CUiComponent_Loadout", - "vtable_address": 64524080, + "vtable_address": 64527984, "methods": [ - 25481072, - 23497872, - 25455376, - 25444704, - 25439472, - 25452240 + 25484080, + 23500624, + 25458384, + 25447712, + 25442480, + 25455248 ], "bases": [ { @@ -225496,17 +225496,17 @@ }, { "type_name": "CUiComponent_Lobby", - "vtable_address": 64524144, + "vtable_address": 64528048, "methods": [ - 26366464, - 25488032, - 25693344, - 25444896, - 25439472, - 25452224, - 26301792, - 25481104, - 25545408 + 26369472, + 25491040, + 25696352, + 25447904, + 25442480, + 25455232, + 26304800, + 25484112, + 25548416 ], "bases": [ { @@ -225559,9 +225559,9 @@ }, { "type_name": "CUiComponent_Lobby", - "vtable_address": 64524232, + "vtable_address": 64528136, "methods": [ - 26304880 + 26307888 ], "bases": [ { @@ -225614,12 +225614,12 @@ }, { "type_name": "CUiComponent_Lobby", - "vtable_address": 64524256, + "vtable_address": 64528160, "methods": [ - 25481392, - 25545552, - 23264240, - 23223040 + 25484400, + 25548560, + 23267056, + 23225856 ], "bases": [ { @@ -225672,14 +225672,14 @@ }, { "type_name": "CUiComponent_MatchDraft", - "vtable_address": 64524648, + "vtable_address": 64528552, "methods": [ - 23497856, - 23497872, - 25455328, - 25445248, - 25439472, - 25452128 + 23500608, + 23500624, + 25458336, + 25448256, + 25442480, + 25455136 ], "bases": [ { @@ -225712,14 +225712,14 @@ }, { "type_name": "CUiComponent_MatchInfo", - "vtable_address": 64524824, + "vtable_address": 64528728, "methods": [ - 26389328, - 23497872, - 26382928, - 25447200, - 25439472, - 25452096 + 26392336, + 23500624, + 26385936, + 25450208, + 25442480, + 25455104 ], "bases": [ { @@ -225752,14 +225752,14 @@ }, { "type_name": "CUiComponent_MatchList", - "vtable_address": 64524968, + "vtable_address": 64528872, "methods": [ - 26300032, - 23497872, - 26024976, - 25447584, - 25439472, - 25452048 + 26303040, + 23500624, + 26027984, + 25450592, + 25442480, + 25455056 ], "bases": [ { @@ -225792,14 +225792,14 @@ }, { "type_name": "CUiComponent_MatchStats", - "vtable_address": 64525920, + "vtable_address": 64529824, "methods": [ - 23497856, - 23497872, - 25455216, - 25447952, - 25439472, - 25451984 + 23500608, + 23500624, + 25458224, + 25450960, + 25442480, + 25454992 ], "bases": [ { @@ -225832,19 +225832,19 @@ }, { "type_name": "CUiComponent_Missions", - "vtable_address": 64536216, + "vtable_address": 64540120, "methods": [ - 26439920, - 27037536, - 26421296, - 26402672, - 26402848, - 26421248, - 26478080, - 26478080, - 26478080, - 26422368, - 26437184 + 26442928, + 27040544, + 26424304, + 26405680, + 26405856, + 26424256, + 26481088, + 26481088, + 26481088, + 26425376, + 26440192 ], "bases": [ { @@ -225887,13 +225887,13 @@ }, { "type_name": "CUiComponent_Missions", - "vtable_address": 64536320, + "vtable_address": 64540224, "methods": [ - 26468816, - 26469056, - 26469296, - 26422720, - 26458064 + 26471824, + 26472064, + 26472304, + 26425728, + 26461072 ], "bases": [ { @@ -225936,15 +225936,15 @@ }, { "type_name": "CUiComponent_MyPersona", - "vtable_address": 64536736, + "vtable_address": 64540640, "methods": [ - 27054432, - 23497872, - 26739920, - 26402864, - 26402848, - 26410832, - 27046288 + 27057440, + 23500624, + 26742928, + 26405872, + 26405856, + 26413840, + 27049296 ], "bases": [ { @@ -225987,9 +225987,9 @@ }, { "type_name": "CUiComponent_MyPersona", - "vtable_address": 64536808, + "vtable_address": 64540712, "methods": [ - 27047088 + 27050096 ], "bases": [ { @@ -226032,14 +226032,14 @@ }, { "type_name": "CUiComponent_News", - "vtable_address": 64537992, + "vtable_address": 64541896, "methods": [ - 26403296, - 23497872, - 26412064, - 26403312, - 26402848, - 26410640 + 26406304, + 23500624, + 26415072, + 26406320, + 26405856, + 26413648 ], "bases": [ { @@ -226072,14 +226072,14 @@ }, { "type_name": "CUiComponent_OptionsMenu", - "vtable_address": 64538248, + "vtable_address": 64542152, "methods": [ - 23497856, - 23497872, - 26412016, - 26403664, - 26402848, - 26410576 + 23500608, + 23500624, + 26415024, + 26406672, + 26405856, + 26413584 ], "bases": [ { @@ -226112,14 +226112,14 @@ }, { "type_name": "CUiComponent_Overwatch", - "vtable_address": 64538352, + "vtable_address": 64542256, "methods": [ - 27096240, - 23497872, - 26588896, - 26403952, - 26402848, - 26410496 + 27099248, + 23500624, + 26591904, + 26406960, + 26405856, + 26413504 ], "bases": [ { @@ -226152,15 +226152,15 @@ }, { "type_name": "CUiComponent_PartyBrowser", - "vtable_address": 64538720, + "vtable_address": 64542624, "methods": [ - 27101408, - 23497872, - 27099392, - 26404144, - 26402848, - 26410352, - 27106944 + 27104416, + 23500624, + 27102400, + 26407152, + 26405856, + 26413360, + 27109952 ], "bases": [ { @@ -226203,9 +226203,9 @@ }, { "type_name": "CUiComponent_PartyBrowser", - "vtable_address": 64538792, + "vtable_address": 64542696, "methods": [ - 27107680 + 27110688 ], "bases": [ { @@ -226248,17 +226248,17 @@ }, { "type_name": "CUiComponent_PartyList", - "vtable_address": 64539152, + "vtable_address": 64543056, "methods": [ - 26491648, - 26492304, - 26406768, - 26404416, - 26402848, - 27116960, - 27114688, - 26433392, - 26433408 + 26494656, + 26495312, + 26409776, + 26407424, + 26405856, + 27119968, + 27117696, + 26436400, + 26436416 ], "bases": [ { @@ -226311,9 +226311,9 @@ }, { "type_name": "CUiComponent_PartyList", - "vtable_address": 64539240, + "vtable_address": 64543144, "methods": [ - 27120640 + 27123648 ], "bases": [ { @@ -226366,14 +226366,14 @@ }, { "type_name": "CUiComponent_PartyList", - "vtable_address": 64539264, + "vtable_address": 64543168, "methods": [ - 27115184, - 26451936, - 26451952, - 26404592, - 26451088, - 26410288 + 27118192, + 26454944, + 26454960, + 26407600, + 26454096, + 26413296 ], "bases": [ { @@ -226426,14 +226426,14 @@ }, { "type_name": "CUiComponent_Predictions", - "vtable_address": 64539368, + "vtable_address": 64543272, "methods": [ - 23497856, - 23497872, - 26757216, - 26404736, - 26402848, - 26410208 + 23500608, + 23500624, + 26760224, + 26407744, + 26405856, + 26413216 ], "bases": [ { @@ -226466,14 +226466,14 @@ }, { "type_name": "CUiComponent_SteamOverlay", - "vtable_address": 64539432, + "vtable_address": 64543336, "methods": [ - 23497856, - 23497872, - 26411968, - 26404944, - 26402848, - 26410192 + 23500608, + 23500624, + 26414976, + 26407952, + 26405856, + 26413200 ], "bases": [ { @@ -226506,15 +226506,15 @@ }, { "type_name": "CUiComponent_Store", - "vtable_address": 64539496, + "vtable_address": 64543400, "methods": [ - 23497856, - 23497872, - 26575824, - 26405184, - 26402848, - 26410176, - 26597344 + 23500608, + 23500624, + 26578832, + 26408192, + 26405856, + 26413184, + 26600352 ], "bases": [ { @@ -226557,9 +226557,9 @@ }, { "type_name": "CUiComponent_Store", - "vtable_address": 64539568, + "vtable_address": 64543472, "methods": [ - 26597408 + 26600416 ], "bases": [ { @@ -226602,14 +226602,14 @@ }, { "type_name": "CUiComponent_Streams", - "vtable_address": 64539864, + "vtable_address": 64543768, "methods": [ - 23497856, - 23497872, - 26580192, - 26405440, - 26402848, - 26410032 + 23500608, + 23500624, + 26583200, + 26408448, + 26405856, + 26413040 ], "bases": [ { @@ -226642,15 +226642,15 @@ }, { "type_name": "CUiComponent_Teammates", - "vtable_address": 64539968, + "vtable_address": 64543872, "methods": [ - 26470736, - 26470960, - 26432784, - 26405792, - 26402848, - 26405984, - 26403296 + 26473744, + 26473968, + 26435792, + 26408800, + 26405856, + 26408992, + 26406304 ], "bases": [ { @@ -226703,9 +226703,9 @@ }, { "type_name": "CUiComponent_Teammates", - "vtable_address": 64540040, + "vtable_address": 64543944, "methods": [ - 26451120 + 26454128 ], "bases": [ { @@ -226758,14 +226758,14 @@ }, { "type_name": "CUiComponent_Teammates", - "vtable_address": 64540064, + "vtable_address": 64543968, "methods": [ - 26451136, - 23497872, - 26471008, - 26405968, - 26451104, - 26409952 + 26454144, + 23500624, + 26474016, + 26408976, + 26454112, + 26412960 ], "bases": [ { @@ -226818,14 +226818,14 @@ }, { "type_name": "CUiComponent_Tournaments", - "vtable_address": 64540240, + "vtable_address": 64544144, "methods": [ - 27141328, - 23497872, - 26769728, - 26406000, - 26402848, - 26409920 + 27144336, + 23500624, + 26772736, + 26409008, + 26405856, + 26412928 ], "bases": [ { @@ -226858,14 +226858,14 @@ }, { "type_name": "CUiComponent_UiToolkit", - "vtable_address": 64541344, + "vtable_address": 64545248, "methods": [ - 23497856, - 23497872, - 26466800, - 26406416, - 26402848, - 26409840 + 23500608, + 23500624, + 26469808, + 26409424, + 26405856, + 26412848 ], "bases": [ { @@ -226898,11 +226898,11 @@ }, { "type_name": "CUiComponent_UsersListBase", - "vtable_address": 64541408, + "vtable_address": 64545312, "methods": [ - 26470000, - 26470592, - 26406768 + 26473008, + 26473600, + 26409776 ], "bases": [], "model": { @@ -226913,14 +226913,14 @@ }, { "type_name": "CUiComponent_Workshop", - "vtable_address": 64541600, + "vtable_address": 64545504, "methods": [ - 23497856, - 23497872, - 26585328, - 26406784, - 26402848, - 26409696 + 23500608, + 23500624, + 26588336, + 26409792, + 26405856, + 26412704 ], "bases": [ { @@ -226953,13 +226953,13 @@ }, { "type_name": "CUiComponent_WorkshopAnnotation", - "vtable_address": 64541928, + "vtable_address": 64545832, "methods": [ - 26407152, - 26974880, - 27032752, - 26406960, - 26402848 + 26410160, + 26977888, + 27035760, + 26409968, + 26405856 ], "bases": [ { @@ -227002,14 +227002,14 @@ }, { "type_name": "CUiComponent_WorkshopAnnotation", - "vtable_address": 64541984, + "vtable_address": 64545888, "methods": [ - 23497856, - 23497872, - 26788512, - 26407136, - 26451152, - 26409504 + 23500608, + 23500624, + 26791520, + 26410144, + 26454160, + 26412512 ], "bases": [ { @@ -227052,19 +227052,19 @@ }, { "type_name": "CUserCmd", - "vtable_address": 64010520, + "vtable_address": 64014424, "methods": [ - 18517504, - 18517568, - 18552912, - 20137600, - 18510768, - 18551520, - 18510784, - 18555984, - 18552752, - 18544720, - 18521536 + 18519808, + 18519872, + 18555216, + 20140416, + 18513072, + 18553824, + 18513088, + 18558288, + 18555056, + 18547024, + 18523840 ], "bases": [ { @@ -227140,26 +227140,26 @@ }, { "type_name": "CUserCmd", - "vtable_address": 64010624, + "vtable_address": 64014528, "methods": [ - 18517536, - 18517632, - 29643894, - 17272080, - 17284224, - 17267696, - 29646054, - 29642886, - 17284864, - 17268288, - 17274752, + 18519840, + 18519936, + 29647734, + 17274384, + 17286528, + 17270000, + 29649894, + 29646726, + 17287168, + 17270592, + 17277056, 12011504, - 17269312, - 29642796, - 29643062, - 17267968, - 17268208, - 17267744 + 17271616, + 29646636, + 29646902, + 17270272, + 17270512, + 17270048 ], "bases": [ { @@ -227235,7 +227235,7 @@ }, { "type_name": "CUserCmdBase", - "vtable_address": 64120000, + "vtable_address": 64123904, "methods": [], "bases": [], "model": { @@ -227246,19 +227246,19 @@ }, { "type_name": "CUserCmdBaseHost", - "vtable_address": 64010256, + "vtable_address": 64014160, "methods": [ - 18517312, - 18517376, - 18552912, - 20137600, - 18510768, - 18551520, - 18510784, - 18555984, - 18552752, - 18544720, - 18521536 + 18519616, + 18519680, + 18555216, + 20140416, + 18513072, + 18553824, + 18513088, + 18558288, + 18555056, + 18547024, + 18523840 ], "bases": [ { @@ -227312,26 +227312,26 @@ }, { "type_name": "CUserCmdBaseHost", - "vtable_address": 64010360, + "vtable_address": 64014264, "methods": [ - 18517344, - 18517440, - 29643894, - 17272080, - 17284224, - 17267696, - 29646054, - 29642886, - 17284864, - 17268288, - 17274752, + 18519648, + 18519744, + 29647734, + 17274384, + 17286528, + 17270000, + 29649894, + 29646726, + 17287168, + 17270592, + 17277056, 12011504, - 17269312, - 29642796, - 29643062, - 17267968, - 17268208, - 17267744 + 17271616, + 29646636, + 29646902, + 17270272, + 17270512, + 17270048 ], "bases": [ { @@ -227385,33 +227385,33 @@ }, { "type_name": "CUserCmdBasePB", - "vtable_address": 63499424, + "vtable_address": 63503328, "methods": [ 14589520, 14590272, - 29643894, + 29647734, 14584272, 14595328, 14578944, - 29646054, - 29642886, + 29649894, + 29646726, 14596256, 14579632, 14585936, 12011504, 14579648, - 29642796, - 29643062, + 29646636, + 29646902, 14579216, 14579552, 14578992, - 29644624, + 29648464, 14591904, - 29644624, + 29648464, 14591040, - 29644624, + 29648464, 14588640, - 29644624, + 29648464, 14588496 ], "bases": [ @@ -227445,17 +227445,17 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 64015232, + "vtable_address": 64019136, "methods": [ - 18772320, - 18508304, - 18508016, - 18508048, - 18508080, - 18508144, - 18508240, - 18533296, - 18535440 + 18775136, + 18510608, + 18510320, + 18510352, + 18510384, + 18510448, + 18510544, + 18535600, + 18537744 ], "bases": [ { @@ -227498,11 +227498,11 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 64015320, + "vtable_address": 64019224, "methods": [ - 18508192, + 18510496, 12204208, - 18508272, + 18510576, 12204240, 12204256, 12204272, @@ -227556,12 +227556,12 @@ 12205040, 12205056, 12205072, - 18508112, + 18510416, 12205104, - 18508064, - 18533184, - 18535312, - 18508032 + 18510368, + 18535488, + 18537616, + 18510336 ], "bases": [ { @@ -227604,23 +227604,23 @@ }, { "type_name": "CUserMessageAchievementEvent", - "vtable_address": 63647216, + "vtable_address": 63651120, "methods": [ 16589888, 16611184, - 29643894, + 29647734, 16255328, 16686272, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000816, 15996752, 16384624, 12011504, 16074880, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019424, 15992256 @@ -227656,23 +227656,23 @@ }, { "type_name": "CUserMessageAmmoDenied", - "vtable_address": 63651376, + "vtable_address": 63655280, "methods": [ 16592960, 16612464, - 29643894, + 29647734, 16259328, 16687136, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001248, 15996400, 16398992, 12011504, 16075104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020256, 15992672 @@ -227708,23 +227708,23 @@ }, { "type_name": "CUserMessageAnimStateGraphState", - "vtable_address": 63660816, + "vtable_address": 63664720, "methods": [ 16600128, 16627264, - 29643894, + 29647734, 16268160, 16709760, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16042576, 15996176, 16435552, 12011504, 16118048, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022144, 15993616 @@ -227760,23 +227760,23 @@ }, { "type_name": "CUserMessageAudioParameter", - "vtable_address": 63650256, + "vtable_address": 63654160, "methods": [ 16592112, 16612208, - 29643894, + 29647734, 16258304, 16686960, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001136, 15996496, 16394832, 12011504, 16121376, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020032, 15992560 @@ -227812,14 +227812,14 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 64184288, + "vtable_address": 64188192, "methods": [ - 21561296, - 21561360, - 20145984, - 20146000, - 20146016, - 20160160 + 21564112, + 21564176, + 20148800, + 20148816, + 20148832, + 20162976 ], "bases": [ { @@ -227895,23 +227895,23 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 64184352, + "vtable_address": 64188256, "methods": [ - 21561328, - 21561424, - 29643894, + 21564144, + 21564240, + 29647734, 16258304, 16686960, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001136, 15996496, 16394832, 12011504, 16121376, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020032, 15992560 @@ -227990,23 +227990,23 @@ }, { "type_name": "CUserMessageCameraTransition", - "vtable_address": 63652976, + "vtable_address": 63656880, "methods": [ 16642784, 16663808, - 29643894, + 29647734, 16260784, 16723120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036560, 15996256, 16405152, 12011504, 16085888, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020576, 15992832 @@ -228042,23 +228042,23 @@ }, { "type_name": "CUserMessageCameraTransition_Transition_DataDriven", - "vtable_address": 63652816, + "vtable_address": 63656720, "methods": [ 16593360, 16625472, - 29643894, + 29647734, 16260624, 16707184, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036464, 15995200, 16404576, 12011504, 16100672, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020544, 15992816 @@ -228094,14 +228094,14 @@ }, { "type_name": "CUserMessageCameraTransition_t", - "vtable_address": 64170000, + "vtable_address": 64173904, "methods": [ - 21330880, - 21330944, - 20146096, - 20146112, - 20146128, - 20160608 + 21333696, + 21333760, + 20148912, + 20148928, + 20148944, + 20163424 ], "bases": [ { @@ -228177,23 +228177,23 @@ }, { "type_name": "CUserMessageCameraTransition_t", - "vtable_address": 64170064, + "vtable_address": 64173968, "methods": [ - 21330912, - 21331008, - 29643894, + 21333728, + 21333824, + 29647734, 16260784, 16723120, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036560, 15996256, 16405152, 12011504, 16085888, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020576, 15992832 @@ -228272,23 +228272,23 @@ }, { "type_name": "CUserMessageCloseCaption", - "vtable_address": 63647376, + "vtable_address": 63651280, "methods": [ 16590016, 16611312, - 29643894, + 29647734, 16255488, 16686320, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026624, 15996736, 16385104, 12011504, 16106432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019456, 15992272 @@ -228324,23 +228324,23 @@ }, { "type_name": "CUserMessageCloseCaptionDirect", - "vtable_address": 63647536, + "vtable_address": 63651440, "methods": [ 16590144, 16611440, - 29643894, + 29647734, 16255648, 16686400, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026736, 15996720, 16385792, 12011504, 16106816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019488, 15992288 @@ -228376,14 +228376,14 @@ }, { "type_name": "CUserMessageCloseCaptionDirect_t", - "vtable_address": 64229712, + "vtable_address": 64233616, "methods": [ - 22234592, - 22234656, - 20146320, - 20146336, - 20146352, - 20161504 + 22237408, + 22237472, + 20149136, + 20149152, + 20149168, + 20164320 ], "bases": [ { @@ -228459,23 +228459,23 @@ }, { "type_name": "CUserMessageCloseCaptionDirect_t", - "vtable_address": 64229776, + "vtable_address": 64233680, "methods": [ - 22234624, - 22234720, - 29643894, + 22237440, + 22237536, + 29647734, 16255648, 16686400, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026736, 15996720, 16385792, 12011504, 16106816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019488, 15992288 @@ -228554,23 +228554,23 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder", - "vtable_address": 63647696, + "vtable_address": 63651600, "methods": [ 16590272, 16623872, - 29643894, + 29647734, 16255792, 16704816, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035648, 15996704, 16386480, 12011504, 16119808, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019520, 15992304 @@ -228606,14 +228606,14 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder_t", - "vtable_address": 64229936, + "vtable_address": 64233840, "methods": [ - 22234400, - 22234464, - 20146208, - 20146224, - 20146240, - 20161056 + 22237216, + 22237280, + 20149024, + 20149040, + 20149056, + 20163872 ], "bases": [ { @@ -228689,23 +228689,23 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder_t", - "vtable_address": 64230000, + "vtable_address": 64233904, "methods": [ - 22234432, - 22234528, - 29643894, + 22237248, + 22237344, + 29647734, 16255792, 16704816, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035648, 15996704, 16386480, 12011504, 16119808, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019520, 15992304 @@ -228784,14 +228784,14 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 64229488, + "vtable_address": 64233392, "methods": [ - 22234128, - 22234192, - 20146432, - 20146448, - 20146464, - 20161952 + 22236944, + 22237008, + 20149248, + 20149264, + 20149280, + 20164768 ], "bases": [ { @@ -228867,23 +228867,23 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 64229552, + "vtable_address": 64233456, "methods": [ - 22234160, - 22234256, - 29643894, + 22236976, + 22237072, + 29647734, 16255488, 16686320, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026624, 15996736, 16385104, 12011504, 16106432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019456, 15992272 @@ -228962,23 +228962,23 @@ }, { "type_name": "CUserMessageColoredText", - "vtable_address": 63651056, + "vtable_address": 63654960, "methods": [ 16592672, 16624992, - 29643894, + 29647734, 16259024, 16706464, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036272, 15996432, 16397904, 12011504, 16146784, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020192, 15992640 @@ -229014,23 +229014,23 @@ }, { "type_name": "CUserMessageCreditsMsg", - "vtable_address": 63651696, + "vtable_address": 63655600, "methods": [ 16593232, 16612592, - 29643894, + 29647734, 16259600, 16687184, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026960, 15996368, 16400288, 12011504, 16080096, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020320, 15992704 @@ -229066,23 +229066,23 @@ }, { "type_name": "CUserMessageCurrentTimescale", - "vtable_address": 63647856, + "vtable_address": 63651760, "methods": [ 16590416, 16611568, - 29643894, + 29647734, 16255936, 16686480, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15996688, 16387184, 12011504, 16054496, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019552, 15992320 @@ -229118,14 +229118,14 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 64193344, + "vtable_address": 64197248, "methods": [ - 21707008, - 21707072, - 20148448, - 20148464, - 20148480, - 20170576 + 21709824, + 21709888, + 20151264, + 20151280, + 20151296, + 20173392 ], "bases": [ { @@ -229201,23 +229201,23 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 64193408, + "vtable_address": 64197312, "methods": [ - 21707040, - 21707136, - 29643894, + 21709856, + 21709952, + 29647734, 16255936, 16686480, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15996688, 16387184, 12011504, 16054496, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019552, 15992320 @@ -229296,23 +229296,23 @@ }, { "type_name": "CUserMessageDesiredTimescale", - "vtable_address": 63648016, + "vtable_address": 63651920, "methods": [ 16590544, 16611696, - 29643894, + 29647734, 16256096, 16686528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999008, 15996672, 16387504, 12011504, 16054608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019584, 15992336 @@ -229348,14 +229348,14 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 64193568, + "vtable_address": 64197472, "methods": [ - 21707312, - 21707376, - 20148336, - 20148352, - 20148368, - 20170128 + 21710128, + 21710192, + 20151152, + 20151168, + 20151184, + 20172944 ], "bases": [ { @@ -229431,23 +229431,23 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 64193632, + "vtable_address": 64197536, "methods": [ - 21707344, - 21707440, - 29643894, + 21710160, + 21710256, + 29647734, 16256096, 16686528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999008, 15996672, 16387504, 12011504, 16054608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019584, 15992336 @@ -229526,23 +229526,23 @@ }, { "type_name": "CUserMessageFade", - "vtable_address": 63648176, + "vtable_address": 63652080, "methods": [ 16590672, 16611824, - 29643894, + 29647734, 16256256, 16686592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000864, 15996656, 16387952, 12011504, 16120864, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019616, 15992352 @@ -229578,14 +229578,14 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 64216696, + "vtable_address": 64220600, "methods": [ - 22052752, - 22052816, - 20147104, - 20147120, - 20147136, - 20164656 + 22055568, + 22055632, + 20149920, + 20149936, + 20149952, + 20167472 ], "bases": [ { @@ -229661,23 +229661,23 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 64216760, + "vtable_address": 64220664, "methods": [ - 22052784, - 22052880, - 29643894, + 22055600, + 22055696, + 29647734, 16256256, 16686592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000864, 15996656, 16387952, 12011504, 16120864, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019616, 15992352 @@ -229756,23 +229756,23 @@ }, { "type_name": "CUserMessageGameTitle", - "vtable_address": 63649776, + "vtable_address": 63653680, "methods": [ 16050576, 16050592, - 29643894, + 29647734, 16257872, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16019936, 15992512 @@ -229819,23 +229819,23 @@ }, { "type_name": "CUserMessageHapticsManagerEffect", - "vtable_address": 63660656, + "vtable_address": 63664560, "methods": [ 16600000, 16615152, - 29643894, + 29647734, 16268016, 16689200, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027360, 15996192, 16434928, 12011504, 16103456, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022112, 15993600 @@ -229871,23 +229871,23 @@ }, { "type_name": "CUserMessageHapticsManagerPulse", - "vtable_address": 63660496, + "vtable_address": 63664400, "methods": [ 16599872, 16615024, - 29643894, + 29647734, 16267872, 16689136, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027280, 15996208, 16434336, 12011504, 16099936, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022080, 15993584 @@ -229923,23 +229923,23 @@ }, { "type_name": "CUserMessageHudMsg", - "vtable_address": 63649296, + "vtable_address": 63653200, "methods": [ 16591536, 16624192, - 29643894, + 29647734, 16257392, 16705520, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010496, 15996560, 16392512, 12011504, 16137632, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019840, 15992464 @@ -229975,23 +229975,23 @@ }, { "type_name": "CUserMessageHudText", - "vtable_address": 63649456, + "vtable_address": 63653360, "methods": [ 16591680, 16624352, - 29643894, + 29647734, 16257552, 16705776, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15996544, 16393264, 12011504, 16076768, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019872, 15992480 @@ -230027,23 +230027,23 @@ }, { "type_name": "CUserMessageItemPickup", - "vtable_address": 63651216, + "vtable_address": 63655120, "methods": [ 16592816, 16625152, - 29643894, + 29647734, 16259184, 16706720, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15996416, 16398592, 12011504, 16076944, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020224, 15992656 @@ -230079,23 +230079,23 @@ }, { "type_name": "CUserMessageLagCompensationError", - "vtable_address": 63661296, + "vtable_address": 63665200, "methods": [ 16600544, 16615408, - 29643894, + 29647734, 16268576, 16689312, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15996144, 16437136, 12011504, 16055616, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022240, 15993664 @@ -230131,23 +230131,23 @@ }, { "type_name": "CUserMessageRequestDiagnostic", - "vtable_address": 63663216, + "vtable_address": 63667120, "methods": [ 16602448, 16637808, - 29643894, + 29647734, 16270464, 16723568, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16043136, 15996032, 16454944, 12011504, 16045520, - 29642796, - 29643062, + 29646636, + 29646902, 15994288, 16022624, 15993856 @@ -230183,23 +230183,23 @@ }, { "type_name": "CUserMessageRequestDiagnostic_Diagnostic", - "vtable_address": 63663056, + "vtable_address": 63666960, "methods": [ 16602288, 16631808, - 29643894, + 29647734, 16270288, 16711696, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16042672, 15995920, 16442672, 12011504, 16189088, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022592, 15993840 @@ -230235,23 +230235,23 @@ }, { "type_name": "CUserMessageRequestDllStatus", - "vtable_address": 63661456, + "vtable_address": 63665360, "methods": [ 16600672, 16627584, - 29643894, + 29647734, 16268720, 16710240, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15996128, 16437456, 12011504, 16084464, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022272, 15993680 @@ -230287,23 +230287,23 @@ }, { "type_name": "CUserMessageRequestInventory", - "vtable_address": 63662576, + "vtable_address": 63666480, "methods": [ 16601760, 16615664, - 29643894, + 29647734, 16269760, 16689424, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027632, 15996064, 16441072, 12011504, 16116064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022496, 15993792 @@ -230339,23 +230339,23 @@ }, { "type_name": "CUserMessageRequestState", - "vtable_address": 63650576, + "vtable_address": 63654480, "methods": [ 16050448, 16050464, - 29643894, + 29647734, 16258592, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16020096, 15992592 @@ -230402,14 +230402,14 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 64215800, + "vtable_address": 64219704, "methods": [ - 22052352, - 22052432, - 20148224, - 20148240, - 20148256, - 20169664 + 22055168, + 22055248, + 20151040, + 20151056, + 20151072, + 20172480 ], "bases": [ { @@ -230496,23 +230496,23 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 64215864, + "vtable_address": 64219768, "methods": [ - 22052400, - 22052496, - 29643894, + 22055216, + 22055312, + 29647734, 16258592, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16020096, 15992592 @@ -230602,23 +230602,23 @@ }, { "type_name": "CUserMessageRequestUtilAction", - "vtable_address": 63661616, + "vtable_address": 63665520, "methods": [ 16600816, 16615536, - 29643894, + 29647734, 16268864, 16689360, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027456, 15996112, 16438032, 12011504, 16139776, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022304, 15993696 @@ -230654,23 +230654,23 @@ }, { "type_name": "CUserMessageResetHUD", - "vtable_address": 63649936, + "vtable_address": 63653840, "methods": [ 16050512, 16050528, - 29643894, + 29647734, 16258000, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16019968, 15992528 @@ -230717,14 +230717,14 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 64456632, + "vtable_address": 64460536, "methods": [ - 24702816, - 24702896, - 20145648, - 20145664, - 20145680, - 20169392 + 24705824, + 24705904, + 20148464, + 20148480, + 20148496, + 20172208 ], "bases": [ { @@ -230811,23 +230811,23 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 64456696, + "vtable_address": 64460600, "methods": [ - 24702864, - 24702960, - 29643894, + 24705872, + 24705968, + 29647734, 16258000, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16019968, 15992528 @@ -230917,23 +230917,23 @@ }, { "type_name": "CUserMessageRumble", - "vtable_address": 63650736, + "vtable_address": 63654640, "methods": [ 16592400, 16612336, - 29643894, + 29647734, 16258736, 16687072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026848, 15996464, 16396528, 12011504, 16115040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020128, 15992608 @@ -230969,14 +230969,14 @@ }, { "type_name": "CUserMessageRumble_t", - "vtable_address": 64183840, + "vtable_address": 64187744, "methods": [ - 21560992, - 21561056, - 20146880, - 20146896, - 20146912, - 20163744 + 21563808, + 21563872, + 20149696, + 20149712, + 20149728, + 20166560 ], "bases": [ { @@ -231052,23 +231052,23 @@ }, { "type_name": "CUserMessageRumble_t", - "vtable_address": 64183904, + "vtable_address": 64187808, "methods": [ - 21561024, - 21561120, - 29643894, + 21563840, + 21563936, + 29647734, 16258736, 16687072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026848, 15996464, 16396528, 12011504, 16115040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020128, 15992608 @@ -231147,23 +231147,23 @@ }, { "type_name": "CUserMessageSayText", - "vtable_address": 63648976, + "vtable_address": 63652880, "methods": [ 16591216, 16624032, - 29643894, + 29647734, 16257024, 16705072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035760, 15996592, 16391184, 12011504, 16104128, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019776, 15992432 @@ -231199,23 +231199,23 @@ }, { "type_name": "CUserMessageSayText2", - "vtable_address": 63649136, + "vtable_address": 63653040, "methods": [ 16591360, 16633104, - 29643894, + 29647734, 16257248, 16705296, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035856, 15996576, 16391872, 12011504, 16156480, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019808, 15992448 @@ -231251,14 +231251,14 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 64605112, + "vtable_address": 64609016, "methods": [ - 28174272, - 28174336, - 19366784, - 19366800, - 19366816, - 19379408 + 28177536, + 28177600, + 19369600, + 19369616, + 19369632, + 19382224 ], "bases": [ { @@ -231334,23 +231334,23 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 64605176, + "vtable_address": 64609080, "methods": [ - 28174304, - 28174400, - 29643894, + 28177568, + 28177664, + 29647734, 16257248, 16705296, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035856, 15996576, 16391872, 12011504, 16156480, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019808, 15992448 @@ -231429,23 +231429,23 @@ }, { "type_name": "CUserMessageSayTextChannel", - "vtable_address": 63650896, + "vtable_address": 63654800, "methods": [ 16592528, 16624832, - 29643894, + 29647734, 16258880, 16706208, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036144, 15996448, 16397232, 12011504, 16109824, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020160, 15992624 @@ -231481,14 +231481,14 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 64604888, + "vtable_address": 64608792, "methods": [ - 28174464, - 28174528, - 20147776, - 20147792, - 20147808, - 20167344 + 28177728, + 28177792, + 20150592, + 20150608, + 20150624, + 20170160 ], "bases": [ { @@ -231564,23 +231564,23 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 64604952, + "vtable_address": 64608856, "methods": [ - 28174496, - 28174592, - 29643894, + 28177760, + 28177856, + 29647734, 16257024, 16705072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035760, 15996592, 16391184, 12011504, 16104128, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019776, 15992432 @@ -231659,23 +231659,23 @@ }, { "type_name": "CUserMessageScreenTilt", - "vtable_address": 63648816, + "vtable_address": 63652720, "methods": [ 16591056, 16645728, - 29643894, + 29647734, 16256880, 16686784, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004816, 15996608, 16390384, 12011504, 16111680, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019744, 15992416 @@ -231711,23 +231711,23 @@ }, { "type_name": "CUserMessageSendAudio", - "vtable_address": 63650096, + "vtable_address": 63654000, "methods": [ 16591968, 16624672, - 29643894, + 29647734, 16258144, 16705984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15996512, 16394256, 12011504, 16084016, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020000, 15992544 @@ -231763,14 +231763,14 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 64184064, + "vtable_address": 64187968, "methods": [ - 21561488, - 21561552, - 20146544, - 20146560, - 20146576, - 20162400 + 21564304, + 21564368, + 20149360, + 20149376, + 20149392, + 20165216 ], "bases": [ { @@ -231846,23 +231846,23 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 64184128, + "vtable_address": 64188032, "methods": [ - 21561520, - 21561616, - 29643894, + 21564336, + 21564432, + 29647734, 16258144, 16705984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15996512, 16394256, 12011504, 16084016, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020000, 15992544 @@ -231941,23 +231941,23 @@ }, { "type_name": "CUserMessageServerFrameTime", - "vtable_address": 63661136, + "vtable_address": 63665040, "methods": [ 16600416, 16615280, - 29643894, + 29647734, 16268432, 16689264, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15996160, 16436816, 12011504, 16055504, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022208, 15993648 @@ -231993,23 +231993,23 @@ }, { "type_name": "CUserMessageShake", - "vtable_address": 63648336, + "vtable_address": 63652240, "methods": [ 16590800, 16611952, - 29643894, + 29647734, 16256416, 16686656, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000976, 15995168, 16388688, 12011504, 16097984, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019648, 15992368 @@ -232045,23 +232045,23 @@ }, { "type_name": "CUserMessageShakeDir", - "vtable_address": 63648496, + "vtable_address": 63652400, "methods": [ 16648432, 16650240, - 29643894, + 29647734, 16256576, 16722976, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16072048, 15996640, 16389280, 12011504, 16045104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019680, 15992384 @@ -232097,14 +232097,14 @@ }, { "type_name": "CUserMessageShakeDir_t", - "vtable_address": 64216472, + "vtable_address": 64220376, "methods": [ - 22052944, - 22053008, - 20147328, - 20147344, - 20147360, - 20165552 + 22055760, + 22055824, + 20150144, + 20150160, + 20150176, + 20168368 ], "bases": [ { @@ -232180,23 +232180,23 @@ }, { "type_name": "CUserMessageShakeDir_t", - "vtable_address": 64216536, + "vtable_address": 64220440, "methods": [ - 22052976, - 22053072, - 29643894, + 22055792, + 22055888, + 29647734, 16256576, 16722976, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16072048, 15996640, 16389280, 12011504, 16045104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019680, 15992384 @@ -232275,14 +232275,14 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 64216248, + "vtable_address": 64220152, "methods": [ - 22052160, - 22052224, - 20147440, - 20147456, - 20147472, - 20166000 + 22054976, + 22055040, + 20150256, + 20150272, + 20150288, + 20168816 ], "bases": [ { @@ -232358,23 +232358,23 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 64216312, + "vtable_address": 64220216, "methods": [ - 22052192, - 22052288, - 29643894, + 22055008, + 22055104, + 29647734, 16256416, 16686656, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000976, 15995168, 16388688, 12011504, 16097984, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019648, 15992368 @@ -232453,23 +232453,23 @@ }, { "type_name": "CUserMessageShowMenu", - "vtable_address": 63651536, + "vtable_address": 63655440, "methods": [ 16593088, 16625312, - 29643894, + 29647734, 16259456, 16706928, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010800, 15996384, 16399472, 12011504, 16122976, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020288, 15992688 @@ -232505,23 +232505,23 @@ }, { "type_name": "CUserMessageTextMsg", - "vtable_address": 63649616, + "vtable_address": 63653520, "methods": [ 16591824, 16624512, - 29643894, + 29647734, 16257744, 16686896, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16049408, 15996528, 16393664, 12011504, 16096928, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019904, 15992496 @@ -232557,14 +232557,14 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 64104856, + "vtable_address": 64108760, "methods": [ - 20152416, - 20152480, - 20142416, - 20142432, - 20142448, - 20152080 + 20155232, + 20155296, + 20145232, + 20145248, + 20145264, + 20154896 ], "bases": [ { @@ -232640,23 +232640,23 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 64104920, + "vtable_address": 64108824, "methods": [ - 20152448, - 20152544, - 29643894, + 20155264, + 20155360, + 29647734, 16257744, 16686896, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16049408, 15996528, 16393664, 12011504, 16096928, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019904, 15992496 @@ -232735,23 +232735,23 @@ }, { "type_name": "CUserMessageUpdateCssClasses", - "vtable_address": 63660976, + "vtable_address": 63664880, "methods": [ 16600272, 16627424, - 29643894, + 29647734, 12243664, 16709984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037248, 12239808, 16436128, 12011504, 16104896, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022176, 15993632 @@ -232787,7 +232787,7 @@ }, { "type_name": "CUserMessageUpdateCssClasses_t", - "vtable_address": 63117240, + "vtable_address": 63121144, "methods": [ 12243872, 12243936, @@ -232870,23 +232870,23 @@ }, { "type_name": "CUserMessageUpdateCssClasses_t", - "vtable_address": 63117304, + "vtable_address": 63121208, "methods": [ 12243904, 12244000, - 29643894, + 29647734, 12243664, 16709984, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037248, 12239808, 16436128, 12011504, 16104896, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022176, 15993632 @@ -232965,23 +232965,23 @@ }, { "type_name": "CUserMessageVoiceMask", - "vtable_address": 63650416, + "vtable_address": 63654320, "methods": [ 16592240, 16630304, - 29643894, + 29647734, 16258464, 16687024, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023056, 15996480, 16395568, 12011504, 16066336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020064, 15992576 @@ -233017,14 +233017,14 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 64216024, + "vtable_address": 64219928, "methods": [ - 22052560, - 22052624, - 20148112, - 20148128, - 20148144, - 20168720 + 22055376, + 22055440, + 20150928, + 20150944, + 20150960, + 20171536 ], "bases": [ { @@ -233100,23 +233100,23 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 64216088, + "vtable_address": 64219992, "methods": [ - 22052592, - 22052688, - 29643894, + 22055408, + 22055504, + 29647734, 16258464, 16687024, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16023056, 15996480, 16395568, 12011504, 16066336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020064, 15992576 @@ -233195,23 +233195,23 @@ }, { "type_name": "CUserMessageWaterShake", - "vtable_address": 63648656, + "vtable_address": 63652560, "methods": [ 16590928, 16612080, - 29643894, + 29647734, 16256736, 16686720, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001056, 15996624, 16389792, 12011504, 16098336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019712, 15992400 @@ -233247,23 +233247,23 @@ }, { "type_name": "CUserMessage_Diagnostic_Response", - "vtable_address": 63663536, + "vtable_address": 63667440, "methods": [ 16602784, 16637984, - 29643894, + 29647734, 16270832, 16726592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16043792, 15996016, 16455408, 12011504, 16145056, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022688, 15993888 @@ -233299,23 +233299,23 @@ }, { "type_name": "CUserMessage_Diagnostic_Response_Diagnostic", - "vtable_address": 63663376, + "vtable_address": 63667280, "methods": [ 16602608, 16632160, - 29643894, + 29647734, 16270656, 16711904, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16043248, 15995936, 16443744, 12011504, 16207168, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022656, 15993872 @@ -233351,23 +233351,23 @@ }, { "type_name": "CUserMessage_DllStatus", - "vtable_address": 63662416, + "vtable_address": 63666320, "methods": [ 16601552, 16634752, - 29643894, + 29647734, 16269616, 16720112, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16068384, 15996080, 16452672, 12011504, 16158176, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022464, 15993776 @@ -233403,23 +233403,23 @@ }, { "type_name": "CUserMessage_DllStatus_CModule", - "vtable_address": 63662256, + "vtable_address": 63666160, "methods": [ 16601408, 16628064, - 29643894, + 29647734, 16269424, 16710976, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037648, 15995888, 16440288, 12011504, 16134496, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022432, 15993760 @@ -233455,23 +233455,23 @@ }, { "type_name": "CUserMessage_DllStatus_CVDiagnostic", - "vtable_address": 63662096, + "vtable_address": 63666000, "methods": [ 16601264, 16627904, - 29643894, + 29647734, 16269296, 16710720, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037504, 15995872, 16439504, 12011504, 16133888, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022400, 15993744 @@ -233507,23 +233507,23 @@ }, { "type_name": "CUserMessage_ExtraUserData", - "vtable_address": 63663696, + "vtable_address": 63667600, "methods": [ 16602944, 16630944, - 29643894, + 29647734, 16271056, 16689488, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16049584, 15996000, 16444880, 12011504, 16143264, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022720, 15993904 @@ -233559,23 +233559,23 @@ }, { "type_name": "CUserMessage_Inventory_Response", - "vtable_address": 63662896, + "vtable_address": 63666800, "methods": [ 16602048, 16638160, - 29643894, + 29647734, 16270112, 16711408, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16038144, 15996048, 16453616, 12011504, 16179744, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022560, 15993824 @@ -233611,23 +233611,23 @@ }, { "type_name": "CUserMessage_Inventory_Response_InventoryDetail", - "vtable_address": 63662736, + "vtable_address": 63666640, "methods": [ 16601888, 16630784, - 29643894, + 29647734, 16269936, 16711232, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037792, 15995904, 16441776, 12011504, 16173120, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022528, 15993808 @@ -233663,23 +233663,23 @@ }, { "type_name": "CUserMessage_NotifyResponseFound", - "vtable_address": 63664016, + "vtable_address": 63667920, "methods": [ 16603248, 16603536, - 29643894, + 29647734, 16271440, 16715648, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16064784, 15995984, 16456160, 12011504, 16209216, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022784, 15993936 @@ -233715,23 +233715,23 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_Criteria", - "vtable_address": 63663856, + "vtable_address": 63667760, "methods": [ 16603104, 16628224, - 29643894, + 29647734, 16271200, 16712160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16011760, 15995952, 16445552, 12011504, 16090048, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022752, 15993920 @@ -233767,14 +233767,14 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_t", - "vtable_address": 64006912, + "vtable_address": 64010816, "methods": [ - 18512608, - 18512672, - 18511744, - 18511760, - 18511776, - 18532368 + 18514912, + 18514976, + 18514048, + 18514064, + 18514080, + 18534672 ], "bases": [ { @@ -233850,23 +233850,23 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_t", - "vtable_address": 64006976, + "vtable_address": 64010880, "methods": [ - 18512640, - 18512736, - 29643894, + 18514944, + 18515040, + 29647734, 16271440, 16715648, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16064784, 15995984, 16456160, 12011504, 16209216, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022784, 15993936 @@ -233945,23 +233945,23 @@ }, { "type_name": "CUserMessage_PlayResponseConditional", - "vtable_address": 63664176, + "vtable_address": 63668080, "methods": [ 16603584, 16634544, - 29643894, + 29647734, 16271632, 16712384, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16046896, 15995968, 16446128, 12011504, 16141024, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022816, 15993952 @@ -233997,14 +233997,14 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 64007448, + "vtable_address": 64011352, "methods": [ - 18513344, - 18513408, - 18511552, - 18511568, - 18511584, - 18532512 + 18515648, + 18515712, + 18513856, + 18513872, + 18513888, + 18534816 ], "bases": [ { @@ -234080,23 +234080,23 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 64007512, + "vtable_address": 64011416, "methods": [ - 18513376, - 18513472, - 29643894, + 18515680, + 18515776, + 29647734, 16271632, 16712384, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16046896, 15995968, 16446128, 12011504, 16141024, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022816, 15993952 @@ -234175,23 +234175,23 @@ }, { "type_name": "CUserMessage_UtilMsg_Response", - "vtable_address": 63661936, + "vtable_address": 63665840, "methods": [ 16601088, 16633296, - 29643894, + 29647734, 16269168, 16717840, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16067824, 15996096, 16451232, 12011504, 16176736, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022368, 15993728 @@ -234227,23 +234227,23 @@ }, { "type_name": "CUserMessage_UtilMsg_Response_ItemDetail", - "vtable_address": 63661776, + "vtable_address": 63665680, "methods": [ 16600944, 16627744, - 29643894, + 29647734, 16268992, 16710464, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037360, 15995856, 16438720, 12011504, 16133248, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022336, 15993712 @@ -234279,23 +234279,23 @@ }, { "type_name": "CUserMsg_CustomGameEvent", - "vtable_address": 63660336, + "vtable_address": 63664240, "methods": [ 16599712, 16630624, - 29643894, + 29647734, 13238784, 16709632, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 13224320, 16433872, 12011504, 16120544, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022048, 15993568 @@ -234331,23 +234331,23 @@ }, { "type_name": "CUserMsg_HudError", - "vtable_address": 63660176, + "vtable_address": 63664080, "methods": [ 16599584, 16614896, - 29643894, + 29647734, 16267568, 16689088, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027232, 15996224, 16433392, 12011504, 16079040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16022016, 15993552 @@ -234383,23 +234383,23 @@ }, { "type_name": "CUserMsg_ParticleManager", - "vtable_address": 63660016, + "vtable_address": 63663920, "methods": [ 16679056, 16679200, - 29643894, + 29647734, 16267424, 16733280, 16051728, - 29646054, - 29642886, + 29649894, + 29646726, 16186032, 15996240, 16429360, 12011504, 16201936, - 29642796, - 29643062, + 29646636, + 29646902, 15994320, 16021984, 15993536 @@ -234435,23 +234435,23 @@ }, { "type_name": "CUserMsg_ParticleManager_AddFan", - "vtable_address": 63659376, + "vtable_address": 63663280, "methods": [ 16598912, 16626752, - 29643894, + 29647734, 16266832, 16709312, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16011120, 15995808, 16426608, 12011504, 16178400, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021856, 15993472 @@ -234487,23 +234487,23 @@ }, { "type_name": "CUserMsg_ParticleManager_AddModellistOverrideElement", - "vtable_address": 63657616, + "vtable_address": 63661520, "methods": [ 16597344, 16626112, - 29643894, + 29647734, 16265040, 16708368, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010928, 15995728, 16421520, 12011504, 16101056, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021504, 15993296 @@ -234539,23 +234539,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ChangeControlPointAttachment", - "vtable_address": 63655376, + "vtable_address": 63659280, "methods": [ 16595440, 16613360, - 29643894, + 29647734, 16262992, 16688000, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027024, 15995456, 16414464, 12011504, 16115552, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021056, 15993072 @@ -234591,23 +234591,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ClearModellistOverride", - "vtable_address": 63657776, + "vtable_address": 63661680, "methods": [ 16597488, 16614512, - 29643894, + 29647734, 16265184, 16688592, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001536, 15995744, 16422096, 12011504, 16075328, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021536, 15993312 @@ -234643,23 +234643,23 @@ }, { "type_name": "CUserMsg_ParticleManager_CreateParticle", - "vtable_address": 63653296, + "vtable_address": 63657200, "methods": [ 16593504, 16633904, - 29643894, + 29647734, 16261056, 16707424, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16036704, 15995280, 16405776, 12011504, 16160352, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020640, 15992864 @@ -234695,23 +234695,23 @@ }, { "type_name": "CUserMsg_ParticleManager_CreatePhysicsSim", - "vtable_address": 63658736, + "vtable_address": 63662640, "methods": [ 16598480, 16626272, - 29643894, + 29647734, 16266192, 16708624, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16011024, 15995760, 16424960, 12011504, 16104512, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021728, 15993408 @@ -234747,23 +234747,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticle", - "vtable_address": 63653456, + "vtable_address": 63657360, "methods": [ 16593680, 16612720, - 29643894, + 29647734, 16261200, 16687248, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999472, 15995296, 16406736, 12011504, 16057536, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020672, 15992880 @@ -234799,23 +234799,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleInvolving", - "vtable_address": 63653616, + "vtable_address": 63657520, "methods": [ 16593808, 16612848, - 29643894, + 29647734, 16261344, 16687296, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001296, 15995312, 16407216, 12011504, 16082720, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020704, 15992896 @@ -234851,23 +234851,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleNamed", - "vtable_address": 63653776, + "vtable_address": 63657680, "methods": [ 16593936, 16612976, - 29643894, + 29647734, 16261504, 16687344, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001360, 15995616, 16407808, 12011504, 16107392, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020736, 15992912 @@ -234903,23 +234903,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyPhysicsSim", - "vtable_address": 63658896, + "vtable_address": 63662800, "methods": [ 16050320, 16050336, - 29643894, + 29647734, 16266320, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16021760, 15993424 @@ -234966,23 +234966,23 @@ }, { "type_name": "CUserMsg_ParticleManager_FreezeParticleInvolving", - "vtable_address": 63657456, + "vtable_address": 63661360, "methods": [ 16597216, 16614384, - 29643894, + 29647734, 16264896, 16688528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001472, 15995712, 16420896, 12011504, 16091360, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021472, 15993280 @@ -235018,23 +235018,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleCanFreeze", - "vtable_address": 63657136, + "vtable_address": 63661040, "methods": [ 16596960, 16614128, - 29643894, + 29647734, 16264608, 16688432, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999472, 15995648, 16420096, 12011504, 16058160, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021408, 15993248 @@ -235070,23 +235070,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleFreezeTransitionOverride", - "vtable_address": 63657296, + "vtable_address": 63661200, "methods": [ 16597088, 16614256, - 29643894, + 29647734, 16264752, 16688480, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15995696, 16420576, 12011504, 16055216, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021440, 15993264 @@ -235122,23 +235122,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleSkipToTime", - "vtable_address": 63656976, + "vtable_address": 63660880, "methods": [ 16596832, 16614000, - 29643894, + 29647734, 16264464, 16688384, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999440, 15995632, 16419776, 12011504, 16055104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021376, 15993232 @@ -235174,23 +235174,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ReleaseParticleIndex", - "vtable_address": 63653136, + "vtable_address": 63657040, "methods": [ 16050256, 16050272, - 29643894, + 29647734, 16260912, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16020608, 15992848 @@ -235237,23 +235237,23 @@ }, { "type_name": "CUserMsg_ParticleManager_RemoveFan", - "vtable_address": 63659696, + "vtable_address": 63663600, "methods": [ 16050384, 16050400, - 29643894, + 29647734, 16267088, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 16021920, 15993504 @@ -235300,23 +235300,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointModel", - "vtable_address": 63656016, + "vtable_address": 63659920, "methods": [ 16595984, 16625632, - 29643894, + 29647734, 16263584, 16707584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037056, 15995536, 16416880, 12011504, 16089344, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021184, 15993136 @@ -235352,23 +235352,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointSnapshot", - "vtable_address": 63656176, + "vtable_address": 63660080, "methods": [ 16596128, 16625792, - 29643894, + 29647734, 16263728, 16707808, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16037152, 15995552, 16417456, 12011504, 16089696, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021216, 15993152 @@ -235404,23 +235404,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetMaterialOverride", - "vtable_address": 63659216, + "vtable_address": 63663120, "methods": [ 16598768, 16626592, - 29643894, + 29647734, 16266624, 16709088, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15995792, 16426032, 12011504, 16084240, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021824, 15993456 @@ -235456,23 +235456,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleClusterGrowth", - "vtable_address": 63659856, + "vtable_address": 63663760, "methods": [ 16599424, 16646784, - 29643894, + 29647734, 16267248, 16737072, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16005792, 15995840, 16428880, 12011504, 16055328, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021952, 15993520 @@ -235508,23 +235508,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleFoWProperties", - "vtable_address": 63655696, + "vtable_address": 63659600, "methods": [ 16595728, 16613488, - 29643894, + 29647734, 16263296, 16688160, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16027136, 15995488, 16415776, 12011504, 16103040, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021120, 15993104 @@ -235560,23 +235560,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext", - "vtable_address": 63658576, + "vtable_address": 63662480, "methods": [ 16598208, 16641360, - 29643894, + 29647734, 16266048, 16732704, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16059696, 15995664, 16450320, 12011504, 16045648, - 29642796, - 29643062, + 29646636, + 29646902, 15994304, 16021696, 15993392 @@ -235612,23 +235612,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext", - "vtable_address": 63658416, + "vtable_address": 63662320, "methods": [ 16598080, 16614768, - 29643894, + 29647734, 16265760, 16688832, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001648, 15995264, 16424384, 12011504, 16090368, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021664, 15993376 @@ -235664,23 +235664,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue", - "vtable_address": 63657936, + "vtable_address": 63661840, "methods": [ 16597616, 16614640, - 29643894, + 29647734, 16265312, 16688640, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16001584, 15995216, 16422576, 12011504, 16079840, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021568, 15993328 @@ -235716,23 +235716,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue", - "vtable_address": 63658256, + "vtable_address": 63662160, "methods": [ 16597904, 16641168, - 29643894, + 29647734, 16265616, 16688704, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16005248, 15995248, 16423680, 12011504, 16091680, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021632, 15993360 @@ -235768,23 +235768,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue", - "vtable_address": 63658096, + "vtable_address": 63662000, "methods": [ 16597744, 16646608, - 29643894, + 29647734, 16265472, 16736944, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16005120, 15995232, 16423072, 12011504, 16081152, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021600, 15993344 @@ -235820,23 +235820,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleShouldCheckFoW", - "vtable_address": 63655856, + "vtable_address": 63659760, "methods": [ 16595856, 16613616, - 29643894, + 29647734, 16263440, 16688224, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999472, 15995520, 16416400, 12011504, 16057936, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021152, 15993120 @@ -235872,23 +235872,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleText", - "vtable_address": 63656336, + "vtable_address": 63660240, "methods": [ 16596272, 16625952, - 29643894, + 29647734, 16263888, 16708032, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15995504, 16418032, 12011504, 16077120, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021248, 15993168 @@ -235924,23 +235924,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectGenericFlag", - "vtable_address": 63656656, + "vtable_address": 63660560, "methods": [ 16596576, 16613744, - 29643894, + 29647734, 16264192, 16688272, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999472, 15995584, 16418896, 12011504, 16058048, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021312, 15993200 @@ -235976,23 +235976,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectTintAndDesat", - "vtable_address": 63656816, + "vtable_address": 63660720, "methods": [ 16596704, 16613872, - 29643894, + 29647734, 16264320, 16688320, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999104, 15995600, 16419376, 12011504, 16054928, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021344, 15993216 @@ -236028,23 +236028,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetTextureAttribute", - "vtable_address": 63656496, + "vtable_address": 63660400, "methods": [ 16596416, 16630464, - 29643894, + 29647734, 16264048, 16708240, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 15995568, 16418432, 12011504, 16096624, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021280, 15993184 @@ -236080,23 +236080,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetVData", - "vtable_address": 63659056, + "vtable_address": 63662960, "methods": [ 16598624, 16626432, - 29643894, + 29647734, 16266480, 16708880, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010656, 15995776, 16425632, 12011504, 16077296, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021792, 15993440 @@ -236132,23 +236132,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateEntityPosition", - "vtable_address": 63655536, + "vtable_address": 63659440, "methods": [ 16595568, 16646432, - 29643894, + 29647734, 16263152, 16688064, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004992, 15995472, 16415168, 12011504, 16080896, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021088, 15993088 @@ -236184,23 +236184,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateFan", - "vtable_address": 63659536, + "vtable_address": 63663440, "methods": [ 16599184, 16627024, - 29643894, + 29647734, 16266960, 16688880, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16005440, 15995824, 16427984, 12011504, 16058272, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021888, 15993488 @@ -236236,23 +236236,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleEnt", - "vtable_address": 63654896, + "vtable_address": 63658800, "methods": [ 16594960, 16643584, - 29643894, + 29647734, 16262576, 16687712, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16031824, 15995408, 16412592, 12011504, 16150592, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020960, 15993024 @@ -236288,23 +236288,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFallback", - "vtable_address": 63654576, + "vtable_address": 63658480, "methods": [ 16594624, 16646256, - 29643894, + 29647734, 16262288, 16736816, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16031504, 15995376, 16411280, 12011504, 16082176, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020896, 15992992 @@ -236340,23 +236340,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE", - "vtable_address": 63654096, + "vtable_address": 63658000, "methods": [ 16594224, 16646080, - 29643894, + 29647734, 16261824, 16736688, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16031056, 15995344, 16409184, 12011504, 16081920, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020800, 15992944 @@ -236392,23 +236392,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOffset", - "vtable_address": 63654736, + "vtable_address": 63658640, "methods": [ 16594784, 16640976, - 29643894, + 29647734, 16262432, 16687584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16031632, 15995392, 16411888, 12011504, 16095136, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020928, 15993008 @@ -236444,23 +236444,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE", - "vtable_address": 63654256, + "vtable_address": 63658160, "methods": [ 16594384, 16652688, - 29643894, + 29647734, 16261984, 16687424, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16031184, 15995360, 16409792, 12011504, 16118432, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020832, 15992960 @@ -236496,23 +236496,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleSetFrozen", - "vtable_address": 63655056, + "vtable_address": 63658960, "methods": [ 16595184, 16613104, - 29643894, + 29647734, 16262704, 16687888, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999504, 15995440, 16413488, 12011504, 16057648, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020992, 15993040 @@ -236548,23 +236548,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleShouldDraw", - "vtable_address": 63655216, + "vtable_address": 63659120, "methods": [ 16595312, 16613232, - 29643894, + 29647734, 16262848, 16687952, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 15999472, 15995424, 16413984, 12011504, 16057824, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16021024, 15993056 @@ -236600,23 +236600,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleTransform", - "vtable_address": 63654416, + "vtable_address": 63658320, "methods": [ 16648896, 16650704, - 29643894, + 29647734, 16262128, 16729760, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16032208, 15995680, 16410592, 12011504, 16106080, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020864, 15992976 @@ -236652,23 +236652,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticle_OBSOLETE", - "vtable_address": 63653936, + "vtable_address": 63657840, "methods": [ 16594064, 16645904, - 29643894, + 29647734, 16261664, 16736560, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16030928, 15995328, 16408576, 12011504, 16081664, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16020768, 15992928 @@ -236704,14 +236704,14 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 64027480, + "vtable_address": 64031384, "methods": [ - 18952752, - 18952816, - 18949200, - 18949216, - 18949232, - 18966512 + 18955568, + 18955632, + 18952016, + 18952032, + 18952048, + 18969328 ], "bases": [ { @@ -236787,23 +236787,23 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 64027544, + "vtable_address": 64031448, "methods": [ - 18952784, - 18952880, - 29643894, + 18955600, + 18955696, + 29647734, 16267424, 16733280, 16051728, - 29646054, - 29642886, + 29649894, + 29646726, 16186032, 15996240, 16429360, 12011504, 16201936, - 29642796, - 29643062, + 29646636, + 29646902, 15994320, 16021984, 15993536 @@ -236882,7 +236882,7 @@ }, { "type_name": "CUtilRemoveDeferralGameSystem", - "vtable_address": 64066968, + "vtable_address": 64070872, "methods": [ 12204192, 12204208, @@ -236896,7 +236896,7 @@ 12204336, 12204352, 12204368, - 19360016, + 19362832, 12204400, 12204416, 12204432, @@ -236911,7 +236911,7 @@ 12204576, 12204592, 12204608, - 19657840, + 19660656, 12204640, 12204656, 12204672, @@ -236940,12 +236940,12 @@ 12205040, 12205056, 12205072, - 19359984, + 19362800, 12205104, - 19359968, - 19399136, - 19398400, - 19359952 + 19362784, + 19401952, + 19401216, + 19362768 ], "bases": [ { @@ -236978,7 +236978,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 63698816, + "vtable_address": 63702720, "methods": [ 17047120, 17051936 @@ -236992,10 +236992,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 63737008, + "vtable_address": 63740912, "methods": [ - 17217536, - 17225520 + 17219840, + 17227824 ], "bases": [], "model": { @@ -237006,10 +237006,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 64161232, + "vtable_address": 64165136, "methods": [ - 21134416, - 21151840 + 21137232, + 21154656 ], "bases": [], "model": { @@ -237020,10 +237020,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 63770248, + "vtable_address": 63774152, "methods": [ - 17287440, - 17300320 + 17289744, + 17302624 ], "bases": [], "model": { @@ -237034,12 +237034,12 @@ }, { "type_name": "CUtlMapDataOps, int>, 79, 5>", - "vtable_address": 64022224, + "vtable_address": 64026128, "methods": [ - 18877088, - 18857168, - 18509632, - 18543840, + 18879904, + 18859984, + 18511936, + 18546144, 12233776, 12233792 ], @@ -237074,7 +237074,7 @@ }, { "type_name": "CUtlMultiJobProcessor", - "vtable_address": 63339024, + "vtable_address": 63342928, "methods": [ 13820768 ], @@ -237087,12 +237087,12 @@ }, { "type_name": "CUtlSymbolDataOps", - "vtable_address": 64076592, + "vtable_address": 64080496, "methods": [ - 19493136, - 19478464, - 19362624, - 19362608, + 19495952, + 19481280, + 19365440, + 19365424, 12233776, 12233792 ], @@ -237127,7 +237127,7 @@ }, { "type_name": "CUtlVectorDataOps >, 13, (ETypeDescFlags)0>", - "vtable_address": 63235864, + "vtable_address": 63239768, "methods": [ 12991824, 13048256, @@ -237167,7 +237167,7 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 63175776, + "vtable_address": 63179680, "methods": [ 12602224, 12736928, @@ -237207,12 +237207,12 @@ }, { "type_name": "CUtlVectorDataOps >, 5, (ETypeDescFlags)0>", - "vtable_address": 64227768, + "vtable_address": 64231672, "methods": [ - 22081136, - 22174432, - 22048944, - 22172832, + 22083952, + 22177248, + 22051760, + 22175648, 12233776, 12233792 ], @@ -237247,12 +237247,12 @@ }, { "type_name": "CUtlVectorDataOps >, 2, (ETypeDescFlags)0>", - "vtable_address": 64087776, + "vtable_address": 64091680, "methods": [ - 19906288, - 20021984, - 19877312, - 20021824, + 19909104, + 20024800, + 19880128, + 20024640, 12233776, 12233792 ], @@ -237287,12 +237287,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 64227832, + "vtable_address": 64231736, "methods": [ - 22089328, - 22168384, - 22048928, - 22168224, + 22092144, + 22171200, + 22051744, + 22171040, 12233776, 12233792 ], @@ -237327,12 +237327,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 3, (ETypeDescFlags)0>", - "vtable_address": 64088224, + "vtable_address": 64092128, "methods": [ - 19905072, - 19995936, - 19877200, - 19995296, + 19907888, + 19998752, + 19880016, + 19998112, 12233776, 12233792 ], @@ -237367,7 +237367,7 @@ }, { "type_name": "CUtlVectorDataOps >, 1, (ETypeDescFlags)0>", - "vtable_address": 63175840, + "vtable_address": 63179744, "methods": [ 12601936, 12738432, @@ -237407,12 +237407,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 64077144, + "vtable_address": 64081048, "methods": [ - 19495104, - 19838656, - 19364000, - 19840160, + 19497920, + 19841472, + 19366816, + 19842976, 12233776, 12233792 ], @@ -237447,12 +237447,12 @@ }, { "type_name": "CUtlVectorDataOps >, 5, (ETypeDescFlags)0>", - "vtable_address": 64077080, + "vtable_address": 64080984, "methods": [ - 19758016, - 19756928, - 19364016, - 19646048, + 19760832, + 19759744, + 19366832, + 19648864, 12233776, 12233792 ], @@ -237487,7 +237487,7 @@ }, { "type_name": "CUtlVectorDataOps >, 37, (ETypeDescFlags)0>", - "vtable_address": 63235800, + "vtable_address": 63239704, "methods": [ 12992112, 13040432, @@ -237527,12 +237527,12 @@ }, { "type_name": "CUtlVectorDataOps >, 58, (ETypeDescFlags)0>", - "vtable_address": 64055128, + "vtable_address": 64059032, "methods": [ - 18991120, - 18992448, - 18948752, - 19297520, + 18993936, + 18995264, + 18951568, + 19300336, 12233776, 12233792 ], @@ -237567,7 +237567,7 @@ }, { "type_name": "CUtlVectorDataOps, 79, (ETypeDescFlags)0>", - "vtable_address": 63332128, + "vtable_address": 63336032, "methods": [ 13282992, 13456768, @@ -237607,7 +237607,7 @@ }, { "type_name": "CUtlVectorDataOps, 79, (ETypeDescFlags)0>", - "vtable_address": 63331488, + "vtable_address": 63335392, "methods": [ 13285600, 13457216, @@ -237647,7 +237647,7 @@ }, { "type_name": "CUtlVectorDataOps, C_Team::NetworkVar_m_aPlayerControllers, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 63266344, + "vtable_address": 63270248, "methods": [ 13070368, 13128064, @@ -237687,12 +237687,12 @@ }, { "type_name": "CUtlVectorDataOps, C_FuncConveyor::NetworkVar_m_hConveyorModels, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 64324656, + "vtable_address": 64328560, "methods": [ - 22839680, - 22910048, - 22824000, - 22909888, + 22842496, + 22912864, + 22826816, + 22912704, 12233776, 12233792 ], @@ -237727,12 +237727,12 @@ }, { "type_name": "CUtlVectorDataOps, ActiveModelConfig_t::NetworkVar_m_AssociatedEntities, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 64021872, + "vtable_address": 64025776, "methods": [ - 18568784, - 18853760, - 18509792, - 18853440, + 18571088, + 18856576, + 18512096, + 18856256, 12233776, 12233792 ], @@ -237767,7 +237767,7 @@ }, { "type_name": "CUtlVectorDataOps, CInfoOffscreenPanoramaTexture::NetworkVar_m_TargetEntities, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 63138088, + "vtable_address": 63141992, "methods": [ 12265616, 12392928, @@ -237807,12 +237807,12 @@ }, { "type_name": "CUtlVectorDataOps, C_BarnLight::NetworkVar_m_LightStyleTargets, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 64382456, + "vtable_address": 64386360, "methods": [ - 23560416, - 23617280, - 23556608, - 23617120, + 23563168, + 23620032, + 23559360, + 23619872, 12233776, 12233792 ], @@ -237847,12 +237847,12 @@ }, { "type_name": "CUtlVectorDataOps, C_BaseModelEntity::NetworkVar_m_ConfigEntitiesToPropagateMaterialDecalsTo, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 64022288, + "vtable_address": 64026192, "methods": [ - 18569072, - 18852992, - 18509616, - 18853600, + 18571376, + 18855808, + 18511920, + 18856416, 12233776, 12233792 ], @@ -237887,7 +237887,7 @@ }, { "type_name": "CUtlVectorDataOps, C_Team::NetworkVar_m_aPlayers, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 63266280, + "vtable_address": 63270184, "methods": [ 13070656, 13129536, @@ -237927,12 +237927,12 @@ }, { "type_name": "CUtlVectorDataOps, CPlayer_WeaponServices::NetworkVar_m_hMyWeapons, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 64094088, + "vtable_address": 64097992, "methods": [ - 20089904, - 20106720, - 20082000, - 20106560, + 20092720, + 20109536, + 20084816, + 20109376, 12233776, 12233792 ], @@ -237967,12 +237967,12 @@ }, { "type_name": "CUtlVectorDataOps, CPlayer_CameraServices::NetworkVar_m_PostProcessingVolumes, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 64088352, + "vtable_address": 64092256, "methods": [ - 19904784, - 20019936, - 19877184, - 20019776, + 19907600, + 20022752, + 19880000, + 20022592, 12233776, 12233792 ], @@ -238007,12 +238007,12 @@ }, { "type_name": "CUtlVectorDataOps, 59, (ETypeDescFlags)0>", - "vtable_address": 64211424, + "vtable_address": 64215328, "methods": [ - 21845648, - 21849440, - 21816992, - 21839040, + 21848464, + 21852256, + 21819824, + 21841856, 12233776, 12233792 ], @@ -238047,12 +238047,12 @@ }, { "type_name": "CUtlVectorDataOps, 53, (ETypeDescFlags)0>", - "vtable_address": 64382392, + "vtable_address": 64386296, "methods": [ - 23560704, - 23584800, - 23556624, - 23584480, + 23563456, + 23587552, + 23559376, + 23587232, 12233776, 12233792 ], @@ -238087,12 +238087,12 @@ }, { "type_name": "CUtlVectorDataOps, 53, (ETypeDescFlags)0>", - "vtable_address": 64382328, + "vtable_address": 64386232, "methods": [ - 23560992, - 23585408, - 23556640, - 23584160, + 23563744, + 23588160, + 23559392, + 23586912, 12233776, 12233792 ], @@ -238127,12 +238127,12 @@ }, { "type_name": "CUtlVectorDataOps, 2, (ETypeDescFlags)0>", - "vtable_address": 64021936, + "vtable_address": 64025840, "methods": [ - 18569360, - 18779232, - 18509776, - 18779680, + 18571664, + 18782048, + 18512080, + 18782496, 12233776, 12233792 ], @@ -238167,7 +238167,7 @@ }, { "type_name": "CUtlVectorDataOps, 2, (ETypeDescFlags)0>", - "vtable_address": 63138152, + "vtable_address": 63142056, "methods": [ 12265328, 12350624, @@ -238207,7 +238207,7 @@ }, { "type_name": "CUtlVectorDataOps, 2, (ETypeDescFlags)0>", - "vtable_address": 63138216, + "vtable_address": 63142120, "methods": [ 12265040, 12350176, @@ -238247,7 +238247,7 @@ }, { "type_name": "CUtlVectorDataOps, 2, (ETypeDescFlags)0>", - "vtable_address": 63138280, + "vtable_address": 63142184, "methods": [ 12264752, 12349728, @@ -238287,7 +238287,7 @@ }, { "type_name": "CUtlVectorDataOps, 4, (ETypeDescFlags)0>", - "vtable_address": 63332064, + "vtable_address": 63335968, "methods": [ 13283280, 13623504, @@ -238327,7 +238327,7 @@ }, { "type_name": "CUtlVectorDataOps, 4, (ETypeDescFlags)0>", - "vtable_address": 63331424, + "vtable_address": 63335328, "methods": [ 13285888, 13623824, @@ -238367,12 +238367,12 @@ }, { "type_name": "CUtlVectorDataOps, shard_model_desc_t::NetworkVar_m_vecPanelVertices, -1, int>, 25, (ETypeDescFlags)0>", - "vtable_address": 64191848, + "vtable_address": 64195752, "methods": [ - 21582992, - 21678448, - 21559632, - 21678384, + 21585808, + 21681264, + 21562448, + 21681200, 12233776, 12233792 ], @@ -238407,7 +238407,7 @@ }, { "type_name": "CUtlVectorDataOps, CAnimGraphNetworkedVariables::NetworkVar_m_OwnerOnlyPredNetVectorVariables, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 63332000, + "vtable_address": 63335904, "methods": [ 13283568, 13419776, @@ -238447,7 +238447,7 @@ }, { "type_name": "CUtlVectorDataOps, CAnimGraphNetworkedVariables::NetworkVar_m_PredNetVectorVariables, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 63331360, + "vtable_address": 63335264, "methods": [ 13286176, 13420096, @@ -238487,12 +238487,12 @@ }, { "type_name": "CUtlVectorDataOps, C_PathParticleRope::NetworkVar_m_PathNodes_Color, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 64088032, + "vtable_address": 64091936, "methods": [ - 19906576, - 19993184, - 19877248, - 19993696, + 19909392, + 19996000, + 19880064, + 19996512, 12233776, 12233792 ], @@ -238527,12 +238527,12 @@ }, { "type_name": "CUtlVectorDataOps, C_PathParticleRope::NetworkVar_m_PathNodes_Position, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 64087840, + "vtable_address": 64091744, "methods": [ - 19905984, - 19994976, - 19877296, - 19993504, + 19908800, + 19997792, + 19880112, + 19996320, 12233776, 12233792 ], @@ -238567,12 +238567,12 @@ }, { "type_name": "CUtlVectorDataOps, C_PathParticleRope::NetworkVar_m_PathNodes_TangentIn, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 64087904, + "vtable_address": 64091808, "methods": [ - 19905680, - 19994656, - 19877280, - 19993568, + 19908496, + 19997472, + 19880096, + 19996384, 12233776, 12233792 ], @@ -238607,12 +238607,12 @@ }, { "type_name": "CUtlVectorDataOps, C_PathParticleRope::NetworkVar_m_PathNodes_TangentOut, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 64087968, + "vtable_address": 64091872, "methods": [ - 19905376, - 19994336, - 19877264, - 19993632, + 19908192, + 19997152, + 19880080, + 19996448, 12233776, 12233792 ], @@ -238647,12 +238647,12 @@ }, { "type_name": "CUtlVectorDataOps, shard_model_desc_t::NetworkVar_m_vInitialPanelVertices, -1, int>, 27, (ETypeDescFlags)0>", - "vtable_address": 64191912, + "vtable_address": 64195816, "methods": [ - 21583280, - 21694960, - 21559616, - 21694896, + 21586096, + 21697776, + 21562432, + 21697712, 12233776, 12233792 ], @@ -238687,12 +238687,12 @@ }, { "type_name": "CUtlVectorDataOps, 6, (ETypeDescFlags)0>", - "vtable_address": 64088096, + "vtable_address": 64092000, "methods": [ - 19904496, - 19910304, - 19877232, - 19899920, + 19907312, + 19913120, + 19880048, + 19902736, 12233776, 12233792 ], @@ -238727,7 +238727,7 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 63331936, + "vtable_address": 63335840, "methods": [ 13283872, 13584560, @@ -238767,7 +238767,7 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 63331296, + "vtable_address": 63335200, "methods": [ 13286480, 13584880, @@ -238807,12 +238807,12 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 64143320, + "vtable_address": 64147224, "methods": [ - 20627440, - 20927792, - 20574144, - 20927728, + 20630256, + 20930608, + 20576960, + 20930544, 12233776, 12233792 ], @@ -238847,12 +238847,12 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 64088160, + "vtable_address": 64092064, "methods": [ - 19906880, - 20048832, - 19877216, - 20047744, + 19909696, + 20051648, + 19880032, + 20050560, 12233776, 12233792 ], @@ -238887,7 +238887,7 @@ }, { "type_name": "CUtlVectorDataOps, 5, (ETypeDescFlags)0>", - "vtable_address": 63331744, + "vtable_address": 63335648, "methods": [ 13284736, 13428464, @@ -238927,7 +238927,7 @@ }, { "type_name": "CUtlVectorDataOps, 5, (ETypeDescFlags)0>", - "vtable_address": 63331104, + "vtable_address": 63335008, "methods": [ 13287344, 13428784, @@ -238967,12 +238967,12 @@ }, { "type_name": "CUtlVectorDataOps, 5, (ETypeDescFlags)0>", - "vtable_address": 64122304, + "vtable_address": 64126208, "methods": [ - 20207200, - 20209888, - 20138864, - 20201920, + 20210016, + 20212704, + 20141680, + 20204736, 12233776, 12233792 ], @@ -239007,7 +239007,7 @@ }, { "type_name": "CUtlVectorDataOps, 8, (ETypeDescFlags)0>", - "vtable_address": 63331616, + "vtable_address": 63335520, "methods": [ 13282416, 13421168, @@ -239047,7 +239047,7 @@ }, { "type_name": "CUtlVectorDataOps, 8, (ETypeDescFlags)0>", - "vtable_address": 63330976, + "vtable_address": 63334880, "methods": [ 13282704, 13421488, @@ -239087,7 +239087,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 63331552, + "vtable_address": 63335456, "methods": [ 13285312, 13417072, @@ -239127,7 +239127,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 63331808, + "vtable_address": 63335712, "methods": [ 13284448, 13416752, @@ -239167,7 +239167,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 63330912, + "vtable_address": 63334816, "methods": [ 13287920, 13417712, @@ -239207,7 +239207,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 63331168, + "vtable_address": 63335072, "methods": [ 13287056, 13417392, @@ -239247,7 +239247,7 @@ }, { "type_name": "CUtlVectorDataOps, 33, (ETypeDescFlags)0>", - "vtable_address": 63331872, + "vtable_address": 63335776, "methods": [ 13284160, 13620176, @@ -239287,7 +239287,7 @@ }, { "type_name": "CUtlVectorDataOps, 33, (ETypeDescFlags)0>", - "vtable_address": 63331232, + "vtable_address": 63335136, "methods": [ 13286768, 13620496, @@ -239327,7 +239327,7 @@ }, { "type_name": "CUtlVectorDataOps, 58, (ETypeDescFlags)0>", - "vtable_address": 63331680, + "vtable_address": 63335584, "methods": [ 13285024, 13601040, @@ -239367,7 +239367,7 @@ }, { "type_name": "CUtlVectorDataOps, 58, (ETypeDescFlags)0>", - "vtable_address": 63331040, + "vtable_address": 63334944, "methods": [ 13287632, 13601360, @@ -239407,12 +239407,12 @@ }, { "type_name": "CUtlVectorDataOps, 58, (ETypeDescFlags)0>", - "vtable_address": 64382264, + "vtable_address": 64386168, "methods": [ - 23561280, - 23602096, - 23556656, - 23602032, + 23564032, + 23604848, + 23559408, + 23604784, 12233776, 12233792 ], @@ -239447,12 +239447,12 @@ }, { "type_name": "CUtlVectorDataOps, 10, (ETypeDescFlags)0>", - "vtable_address": 64022160, + "vtable_address": 64026064, "methods": [ - 18575856, - 18850080, - 18509648, - 18851968, + 18578160, + 18852896, + 18511952, + 18854784, 12233776, 12233792 ], @@ -239487,12 +239487,12 @@ }, { "type_name": "CUtlVectorDataOps, 10, (ETypeDescFlags)0>", - "vtable_address": 63986368, + "vtable_address": 63990272, "methods": [ - 17974864, - 18091328, - 17952256, - 18090304, + 17977168, + 18093632, + 17954560, + 18092608, 12233776, 12233792 ], @@ -239527,12 +239527,12 @@ }, { "type_name": "CUtlVectorDataOps, 10, (ETypeDescFlags)0>", - "vtable_address": 63979096, + "vtable_address": 63983000, "methods": [ - 17878912, - 17934720, - 17865872, - 17933760, + 17881216, + 17937024, + 17868176, + 17936064, 12233776, 12233792 ], @@ -239567,7 +239567,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333824, + "vtable_address": 63337728, "methods": [ 13650272, 13647040, @@ -239611,7 +239611,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332960, + "vtable_address": 63336864, "methods": [ 13725248, 13722016, @@ -239655,17 +239655,17 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps, CPlayer_WeaponServices::NetworkVar_m_hMyWeapons, -1, int> >", - "vtable_address": 64093992, - "methods": [ - 20134112, - 20130864, - 20128192, - 20082880, - 20082016, - 20082032, - 20082480, - 20082048, + "vtable_address": 64097896, + "methods": [ + 20136928, + 20133680, + 20131008, + 20085696, + 20084832, + 20084848, 20085296, + 20084864, + 20088112, 13215968 ], "bases": [ @@ -239699,7 +239699,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333728, + "vtable_address": 63337632, "methods": [ 13658720, 13655568, @@ -239743,7 +239743,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332864, + "vtable_address": 63336768, "methods": [ 13733696, 13730544, @@ -239787,7 +239787,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps, CAnimGraphNetworkedVariables::NetworkVar_m_OwnerOnlyPredNetVectorVariables, -1, int> >", - "vtable_address": 63333632, + "vtable_address": 63337536, "methods": [ 13667024, 13663872, @@ -239831,7 +239831,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps, CAnimGraphNetworkedVariables::NetworkVar_m_PredNetVectorVariables, -1, int> >", - "vtable_address": 63332768, + "vtable_address": 63336672, "methods": [ 13742000, 13738848, @@ -239875,7 +239875,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333536, + "vtable_address": 63337440, "methods": [ 13675328, 13672176, @@ -239919,7 +239919,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332672, + "vtable_address": 63336576, "methods": [ 13750304, 13747152, @@ -239963,7 +239963,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333344, + "vtable_address": 63337248, "methods": [ 13691936, 13688784, @@ -240007,7 +240007,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332480, + "vtable_address": 63336384, "methods": [ 13766912, 13763760, @@ -240051,7 +240051,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333152, + "vtable_address": 63337056, "methods": [ 13708560, 13705408, @@ -240095,7 +240095,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332288, + "vtable_address": 63336192, "methods": [ 13783536, 13780384, @@ -240139,7 +240139,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333056, + "vtable_address": 63336960, "methods": [ 13716864, 13713712, @@ -240183,7 +240183,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333440, + "vtable_address": 63337344, "methods": [ 13683632, 13680480, @@ -240227,7 +240227,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332192, + "vtable_address": 63336096, "methods": [ 13791840, 13788688, @@ -240271,7 +240271,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332576, + "vtable_address": 63336480, "methods": [ 13758608, 13755456, @@ -240315,7 +240315,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63333248, + "vtable_address": 63337152, "methods": [ 13700240, 13697088, @@ -240359,7 +240359,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 63332384, + "vtable_address": 63336288, "methods": [ 13775216, 13772064, @@ -240403,17 +240403,17 @@ }, { "type_name": "CVDataFileManager", - "vtable_address": 64030736, + "vtable_address": 64034640, "methods": [ 13055520, - 39221248, + 39225088, 13055536, - 19181424, - 18937168, - 19335488, - 18949040, - 19330304, - 18949056 + 19184240, + 18939984, + 19338304, + 18951856, + 19333120, + 18951872 ], "bases": [ { @@ -240457,23 +240457,23 @@ }, { "type_name": "CVDiagnostic", - "vtable_address": 63557856, + "vtable_address": 63561760, "methods": [ 15655840, 15716240, - 29643894, + 29647734, 15190176, 15815712, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14862128, 14847952, 15365056, 12011504, 15018016, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14839552, 14802960 @@ -240509,18 +240509,18 @@ }, { "type_name": "CVGUILocalizationProvider", - "vtable_address": 64600696, - "methods": [ - 28025168, - 28029440, - 28029680, - 28036656, - 28029840, - 28036656, - 28027488, - 28029808, - 28027472, - 28024128 + "vtable_address": 64604600, + "methods": [ + 28028432, + 28032704, + 28032944, + 28039920, + 28033104, + 28039920, + 28030752, + 28033072, + 28030736, + 28027392 ], "bases": [ { @@ -240542,10 +240542,10 @@ }, { "type_name": "CVPKSignatureCallbacks", - "vtable_address": 64178560, + "vtable_address": 64182464, "methods": [ - 21340032, - 21367392 + 21342848, + 21370208 ], "bases": [ { @@ -240567,7 +240567,7 @@ }, { "type_name": "CVScriptGameEventListener", - "vtable_address": 63349632, + "vtable_address": 63353536, "methods": [ 14147696, 14148992, @@ -240604,7 +240604,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 63349744, + "vtable_address": 63353648, "methods": [ 12204192, 12204208, @@ -240719,7 +240719,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 63350416, + "vtable_address": 63354320, "methods": [ 14001712, 14148976, @@ -240769,35 +240769,35 @@ }, { "type_name": "CVanityLoadoutPanel", - "vtable_address": 64431000, + "vtable_address": 64434904, "methods": [ 12043984, - 59816784, - 24072800, - 24072816, - 59817120, - 59817136, - 59817120, + 59820688, + 24075552, + 24075568, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -240810,12 +240810,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -240830,33 +240830,33 @@ 12233520, 12233296, 12233760, - 59835792, - 24072784, - 24159360, - 24159504, + 59839696, + 24075536, + 24162112, + 24162256, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 24160256 + 24163008 ], "bases": [ { @@ -240899,9 +240899,9 @@ }, { "type_name": "CVanityLoadoutPanel", - "vtable_address": 64431704, + "vtable_address": 64435608, "methods": [ - 24161168 + 24163920 ], "bases": [ { @@ -240944,11 +240944,11 @@ }, { "type_name": "CVanityQuadRenderer", - "vtable_address": 64449152, + "vtable_address": 64453056, "methods": [ - 24318016, - 24312656, - 24312928, + 24320768, + 24315408, + 24315680, 12236576 ], "bases": [ @@ -240971,12 +240971,12 @@ }, { "type_name": "CVariantSaveDataOps", - "vtable_address": 64847968, + "vtable_address": 64851872, "methods": [ - 40139088, - 40035264, - 40029360, - 40029424, + 40142992, + 40039168, + 40033264, + 40033328, 12233776, 12233792 ], @@ -241011,28 +241011,28 @@ }, { "type_name": "CViewEffects", - "vtable_address": 64224792, - "methods": [ - 22187344, - 22053136, - 22080096, - 22047952, - 22178432, - 22181376, - 22047872, - 22067168, - 22066944, - 22070960, - 22125120, - 22047776, - 22053152, - 22053616, - 22180256, - 22182160, - 22068240, - 22052000, - 22179616, - 22077392 + "vtable_address": 64228696, + "methods": [ + 22190160, + 22055952, + 22082912, + 22050768, + 22181248, + 22184192, + 22050688, + 22069984, + 22069760, + 22073776, + 22127936, + 22050592, + 22055968, + 22056432, + 22183072, + 22184976, + 22071056, + 22054816, + 22182432, + 22080208 ], "bases": [ { @@ -241054,7 +241054,7 @@ }, { "type_name": "CViewEffectsGameSystem", - "vtable_address": 64225152, + "vtable_address": 64229056, "methods": [ 12204192, 12204208, @@ -241077,10 +241077,10 @@ 12204480, 12204496, 12204512, - 22126160, + 22128976, 12204544, 12204560, - 22126160, + 22128976, 12204592, 12204608, 12204624, @@ -241112,12 +241112,12 @@ 12205040, 12205056, 12205072, - 22048128, + 22050944, 12205104, - 22048112, - 22050976, - 22050992, - 22048096 + 22050928, + 22053792, + 22053808, + 22050912 ], "bases": [ { @@ -241150,17 +241150,17 @@ }, { "type_name": "CViewEffectsSaveRestoreBlockHandler", - "vtable_address": 64224968, + "vtable_address": 64228872, "methods": [ - 22048048, + 22050864, 13214528, - 22060992, - 22089904, + 22063808, + 22092720, 13214544, - 22048064, - 22089968, - 22061104, - 22048080 + 22050880, + 22092784, + 22063920, + 22050896 ], "bases": [ { @@ -241193,33 +241193,33 @@ }, { "type_name": "CViewRender", - "vtable_address": 64224360, - "methods": [ - 22095504, - 22089200, - 22047344, - 22047696, - 22161968, - 22226336, - 22053904, - 22068384, - 22069456, - 22047712, - 22229376, - 22047728, - 22090304, - 22090608, - 22074784, - 22081424, - 22047744, - 22053920, - 22047760, - 22141856, - 22145520, - 22047632, - 22047648, - 22047664, - 22047680 + "vtable_address": 64228264, + "methods": [ + 22098320, + 22092016, + 22050160, + 22050512, + 22164784, + 22229152, + 22056720, + 22071200, + 22072272, + 22050528, + 22232192, + 22050544, + 22093120, + 22093424, + 22077600, + 22084240, + 22050560, + 22056736, + 22050576, + 22144672, + 22148336, + 22050448, + 22050464, + 22050480, + 22050496 ], "bases": [ { @@ -241241,9 +241241,9 @@ }, { "type_name": "CViewportClientSystem", - "vtable_address": 64225664, + "vtable_address": 64229568, "methods": [ - 22052048, + 22054864, 12204208, 12204224, 12204240, @@ -241299,12 +241299,12 @@ 12205040, 12205056, 12205072, - 22048192, + 22051008, 12205104, - 22048176, - 22050848, - 22050864, - 22048160 + 22050992, + 22053664, + 22053680, + 22050976 ], "bases": [ { @@ -241326,13 +241326,13 @@ }, { "type_name": "CVoiceStatus", - "vtable_address": 64226368, + "vtable_address": 64230272, "methods": [ 12204192, 12204208, 12204224, - 22186016, - 22073504, + 22188832, + 22076320, 12204272, 12204288, 12204304, @@ -241384,12 +241384,12 @@ 12205040, 12205056, 12205072, - 22048272, + 22051088, 12205104, - 22048256, - 22167968, - 22168144, - 22048240 + 22051072, + 22170784, + 22170960, + 22051056 ], "bases": [ { @@ -241422,13 +241422,13 @@ }, { "type_name": "CWatchableFriendsInfo", - "vtable_address": 64520864, + "vtable_address": 64524768, "methods": [ - 26287120, - 26296752, - 25533568, - 25440960, - 26402560 + 26290128, + 26299760, + 25536576, + 25443968, + 26405568 ], "bases": [ { @@ -241450,7 +241450,7 @@ }, { "type_name": "CWaterLevelChangeGameSystem", - "vtable_address": 64132264, + "vtable_address": 64136168, "methods": [ 12204192, 12204208, @@ -241472,7 +241472,7 @@ 12204464, 12204480, 12204496, - 20601552, + 20604368, 12204528, 12204544, 12204560, @@ -241508,12 +241508,12 @@ 12205040, 12205056, 12205072, - 20571904, + 20574720, 12205104, - 20571888, - 20601376, - 20596704, - 20571872 + 20574704, + 20604192, + 20599520, + 20574688 ], "bases": [ { @@ -241546,33 +241546,33 @@ }, { "type_name": "CWaterSplasher", - "vtable_address": 63745632, + "vtable_address": 63749536, "methods": [ 14368000, - 17218816, - 17218912, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 17221120, + 17221216, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -241581,23 +241581,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217232, - 17267568, - 17218496, + 40000032, + 17219536, + 17269872, + 17220800, 12234080, 14344448, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -241609,18 +241609,18 @@ 12234240, 12234256, 12234272, - 17217184, + 17219488, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -241628,41 +241628,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -241674,33 +241674,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -241728,9 +241728,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -241738,24 +241738,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -241767,32 +241767,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -241856,15 +241856,15 @@ }, { "type_name": "CWaterSplasher", - "vtable_address": 63747608, + "vtable_address": 63751512, "methods": [ - 17218864, - 17218992, - 18933072, - 18741840, - 18742112, + 17221168, + 17221296, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -241928,9 +241928,9 @@ }, { "type_name": "CWaterSplasher", - "vtable_address": 63747680, + "vtable_address": 63751584, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -241994,9 +241994,9 @@ }, { "type_name": "CWeaponEconData", - "vtable_address": 63758576, + "vtable_address": 63762480, "methods": [ - 17304640 + 17306944 ], "bases": [ { @@ -242018,35 +242018,35 @@ }, { "type_name": "CWeaponSpiderGraph", - "vtable_address": 64514008, + "vtable_address": 64517912, "methods": [ 12043984, - 59816784, - 25284512, - 25284528, - 25286240, - 59817136, - 59817120, + 59820688, + 25287520, + 25287536, + 25289248, + 59821040, + 59821024, 12233600, - 25334672, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 25337680, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 25285296, + 59821792, + 59821808, + 59820704, + 59832432, + 25288304, 12233664, 12233696, 12233680, @@ -242059,12 +242059,12 @@ 12399392, 12233312, 12233168, - 25427872, - 59825616, - 59825216, - 59836080, + 25430880, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -242074,40 +242074,40 @@ 12233472, 12233488, 12233504, - 25305184, - 25290736, + 25308192, + 25293744, 12233520, 12233296, 12233760, - 59835792, - 25284496, - 25291952, - 25292560, + 59839696, + 25287504, + 25294960, + 25295568, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 25406528, - 25385760, - 25283856 + 25409536, + 25388768, + 25286864 ], "bases": [ { @@ -242151,23 +242151,23 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Request", - "vtable_address": 63589536, + "vtable_address": 63593440, "methods": [ 15681040, 15724400, - 29643894, + 29647734, 15224416, 15830496, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867584, 14849136, 15455696, 12011504, 15051648, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845888, 14809440 @@ -242203,23 +242203,23 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Response", - "vtable_address": 63589696, + "vtable_address": 63593600, "methods": [ 14880784, 14880800, - 29643894, + 29647734, 15224544, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14845920, 14809456 @@ -242266,23 +242266,23 @@ }, { "type_name": "CWorkshop_GetContributors_Request", - "vtable_address": 63587936, + "vtable_address": 63591840, "methods": [ 15679872, 15708112, - 29643894, + 29647734, 15222784, 15803216, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14828736, 14849216, 15451520, 12011504, 14940160, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845568, 14809280 @@ -242318,23 +242318,23 @@ }, { "type_name": "CWorkshop_GetContributors_Response", - "vtable_address": 63588096, + "vtable_address": 63592000, "methods": [ 15680000, 15723600, - 29643894, + 29647734, 15222944, 15803280, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14810336, 14849200, 15452096, 12011504, 14884928, - 29642796, - 29643062, + 29646636, + 29646902, 14810304, 14845600, 14809296 @@ -242370,23 +242370,23 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request", - "vtable_address": 63587776, + "vtable_address": 63591680, "methods": [ 15679712, 15743584, - 29643894, + 29647734, 15222656, 15841152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14893152, 14849232, 15472480, 12011504, 14926816, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845536, 14809264 @@ -242422,23 +242422,23 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock", - "vtable_address": 63587616, + "vtable_address": 63591520, "methods": [ 15679536, 15734240, - 29643894, + 29647734, 15222480, 15844720, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14892896, 14848704, 15471920, 12011504, 14924240, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845504, 14809248 @@ -242474,23 +242474,23 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription", - "vtable_address": 63587456, + "vtable_address": 63591360, "methods": [ 15679392, 15723440, - 29643894, + 29647734, 15222304, 15829056, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867136, 14848688, 15450976, 12011504, 14967584, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845472, 14809232 @@ -242526,23 +242526,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request", - "vtable_address": 63588736, + "vtable_address": 63592640, "methods": [ 15756656, 15758432, - 29643894, + 29647734, 15223568, 15860288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14896240, 14849184, 15473072, 12011504, 15032384, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845728, 14809360 @@ -242578,23 +242578,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule", - "vtable_address": 63588576, + "vtable_address": 63592480, "methods": [ 15680432, 15724080, - 29643894, + 29647734, 15223376, 15829936, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867472, 14848736, 15453792, 12011504, 14962304, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845696, 14809344 @@ -242630,23 +242630,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule", - "vtable_address": 63588416, + "vtable_address": 63592320, "methods": [ 15680288, 15723920, - 29643894, + 29647734, 15223232, 15829664, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867376, 14848752, 15453216, 12011504, 14935264, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845664, 14809328 @@ -242682,23 +242682,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule", - "vtable_address": 63588256, + "vtable_address": 63592160, "methods": [ 15680144, 15723760, - 29643894, + 29647734, 15223088, 15829360, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14867248, 14848720, 15452624, 12011504, 15001664, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14845632, 14809312 @@ -242734,23 +242734,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Response", - "vtable_address": 63588896, + "vtable_address": 63592800, "methods": [ 14880848, 14880864, - 29643894, + 29647734, 15223696, - 29564402, + 29568242, 14793904, - 29646054, - 29642886, - 29564284, + 29649894, + 29646726, + 29568124, 14849104, - 29564412, + 29568252, 12011504, - 29564296, - 29642796, - 29643062, + 29568136, + 29646636, + 29646902, 14810320, 14845760, 14809376 @@ -242797,7 +242797,7 @@ }, { "type_name": "CWorldGameSystem", - "vtable_address": 63350760, + "vtable_address": 63354664, "methods": [ 12204192, 12204208, @@ -242893,10 +242893,10 @@ }, { "type_name": "CWorldTextSceneObject", - "vtable_address": 64202048, + "vtable_address": 64205952, "methods": [ - 21850320, - 21850640, + 21853136, + 21853456, 12011888, 12011520 ], @@ -242920,14 +242920,14 @@ }, { "type_name": "CWorldTextSceneObjectDesc", - "vtable_address": 64202096, + "vtable_address": 64206000, "methods": [ - 21815760, - 21815776, + 21818576, + 21818592, 12011568, 12011584, 12019328, - 21817952, + 21820784, 12011600, 12011616, 12011632, @@ -242935,17 +242935,17 @@ 12011664, 12011680, 12011696, - 21819344, + 21822176, 12011728, 12011744, 12011760, 12011776, - 21944320, + 21947200, 12011808, 12011824, 12011840, - 21824768, - 21854528 + 21827584, + 21857408 ], "bases": [ { @@ -242978,9 +242978,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 64128376, + "vtable_address": 64132280, "methods": [ - 21117408 + 21120224 ], "bases": [ { @@ -243002,9 +243002,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 64008432, + "vtable_address": 64012336, "methods": [ - 18911008 + 18913824 ], "bases": [ { @@ -243026,9 +243026,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 64086112, + "vtable_address": 64090016, "methods": [ - 20068784 + 20071600 ], "bases": [ { @@ -243050,9 +243050,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts, 1, Vec3D, false, CInterpolatedVar > >", - "vtable_address": 63981232, + "vtable_address": 63985136, "methods": [ - 18097920 + 18100224 ], "bases": [ { @@ -243074,9 +243074,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 64129280, + "vtable_address": 64133184, "methods": [ - 21109568 + 21112384 ], "bases": [ { @@ -243098,9 +243098,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 63755384, + "vtable_address": 63759288, "methods": [ - 17433840 + 17436144 ], "bases": [ { @@ -243122,29 +243122,29 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 64142888, - "methods": [ - 20573472, - 20575776, - 20882368, - 20576112, - 20574512, - 20574528, - 20592176, - 20598816, - 20594800, - 20574544, - 20574576, - 20574592, - 20888320, - 20574608, - 20574640, - 20877216, - 20869712, - 20878976, - 20574672, - 20574688, - 20594976 + "vtable_address": 64146792, + "methods": [ + 20576288, + 20578592, + 20885184, + 20578928, + 20577328, + 20577344, + 20594992, + 20601632, + 20597616, + 20577360, + 20577392, + 20577408, + 20891136, + 20577424, + 20577456, + 20880032, + 20872528, + 20881792, + 20577488, + 20577504, + 20597792 ], "bases": [ { @@ -243166,29 +243166,29 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 64144144, - "methods": [ - 20573440, - 20575792, - 20883296, - 20576160, - 20573488, - 20573504, - 20592368, - 20593312, - 20593008, - 20573520, - 20573552, - 20573568, - 20890160, - 20573584, - 20573616, - 20876352, - 20871872, - 20880064, - 20573648, - 20573664, - 20595056 + "vtable_address": 64148048, + "methods": [ + 20576256, + 20578608, + 20886112, + 20578976, + 20576304, + 20576320, + 20595184, + 20596128, + 20595824, + 20576336, + 20576368, + 20576384, + 20892976, + 20576400, + 20576432, + 20879168, + 20874688, + 20882880, + 20576464, + 20576480, + 20597872 ], "bases": [ { @@ -243210,29 +243210,29 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 64088416, - "methods": [ - 19876976, - 19878288, - 19999776, - 19878576, - 19877008, - 19877024, - 19887456, - 19892784, - 19890400, - 19877040, - 19877072, - 19877088, - 20001248, - 19877104, - 19877120, - 19998048, - 19996288, - 19998880, - 19877152, - 19877168, - 19890544 + "vtable_address": 64092320, + "methods": [ + 19879792, + 19881104, + 20002592, + 19881392, + 19879824, + 19879840, + 19890272, + 19895600, + 19893216, + 19879856, + 19879888, + 19879904, + 20004064, + 19879920, + 19879936, + 20000864, + 19999104, + 20001696, + 19879968, + 19879984, + 19893360 ], "bases": [ { @@ -243254,29 +243254,29 @@ }, { "type_name": "CWrappedVar > >", - "vtable_address": 63986432, - "methods": [ - 17952064, - 17953024, - 18019424, - 17953376, - 17952080, - 17952096, - 17958800, - 17961504, - 17960320, - 17952112, - 17952144, - 17952160, - 18013536, - 17952176, - 17952192, - 18017696, - 18015936, - 18018528, - 17952224, - 17952240, - 17960464 + "vtable_address": 63990336, + "methods": [ + 17954368, + 17955328, + 18021728, + 17955680, + 17954384, + 17954400, + 17961104, + 17963808, + 17962624, + 17954416, + 17954448, + 17954464, + 18015840, + 17954480, + 17954496, + 18020000, + 18018240, + 18020832, + 17954528, + 17954544, + 17962768 ], "bases": [ { @@ -243298,29 +243298,29 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 64143384, - "methods": [ - 20573456, - 20575808, - 20881472, - 20576208, - 20573968, - 20573984, - 20592272, - 20598976, - 20594656, - 20574000, - 20574032, - 20574048, - 20886576, - 20574064, - 20574080, - 20875520, - 20867968, - 20878080, - 20574112, - 20574128, - 20595136 + "vtable_address": 64147288, + "methods": [ + 20576272, + 20578624, + 20884288, + 20579024, + 20576784, + 20576800, + 20595088, + 20601792, + 20597472, + 20576816, + 20576848, + 20576864, + 20889392, + 20576880, + 20576896, + 20878336, + 20870784, + 20880896, + 20576928, + 20576944, + 20597952 ], "bases": [ { @@ -243342,29 +243342,29 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 63776664, - "methods": [ - 17288112, - 17288832, - 17353408, - 17290272, - 17288224, - 17288240, - 17296832, - 17300048, - 17298000, - 17288256, - 17288288, - 17288304, - 17354880, - 17288320, - 17288336, - 17351648, - 17348960, - 17352480, - 17288368, - 17288384, - 17298144 + "vtable_address": 63780568, + "methods": [ + 17290416, + 17291136, + 17355712, + 17292576, + 17290528, + 17290544, + 17299136, + 17302352, + 17300304, + 17290560, + 17290592, + 17290608, + 17357184, + 17290624, + 17290640, + 17353952, + 17351264, + 17354784, + 17290672, + 17290688, + 17300448 ], "bases": [ { @@ -243386,33 +243386,33 @@ }, { "type_name": "C_AK47", - "vtable_address": 63801752, + "vtable_address": 63805656, "methods": [ 14371616, - 17476496, - 17476784, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17478800, + 17479088, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -243421,24 +243421,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439600, - 17708928, - 17442512, + 40000032, + 17441904, + 17711232, + 17444816, 12234080, - 17462928, - 17439568, - 18799200, + 17465232, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -243449,98 +243449,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -243551,26 +243551,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -243578,24 +243578,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -243607,224 +243607,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -244005,15 +244005,15 @@ }, { "type_name": "C_AK47", - "vtable_address": 63805264, + "vtable_address": 63809168, "methods": [ - 17476592, - 17476912, - 18933072, - 18741840, - 18742112, + 17478896, + 17479216, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -244194,9 +244194,9 @@ }, { "type_name": "C_AK47", - "vtable_address": 63805336, + "vtable_address": 63809240, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -244377,12 +244377,12 @@ }, { "type_name": "C_AK47", - "vtable_address": 63805360, + "vtable_address": 63809264, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -244563,14 +244563,14 @@ }, { "type_name": "C_AK47", - "vtable_address": 63805408, + "vtable_address": 63809312, "methods": [ - 17442528, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444832, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -244751,10 +244751,10 @@ }, { "type_name": "C_AK47", - "vtable_address": 63805472, + "vtable_address": 63809376, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -244935,11 +244935,11 @@ }, { "type_name": "C_AK47", - "vtable_address": 63805504, + "vtable_address": 63809408, "methods": [ - 17476688, - 17477040, - 17514944 + 17478992, + 17479344, + 17517248 ], "bases": [ { @@ -245120,20 +245120,20 @@ }, { "type_name": "C_AttributeContainer", - "vtable_address": 64571024, + "vtable_address": 64574928, "methods": [ - 22826544, - 27279008, - 27278608, - 22823248, - 27278624, - 27675136, - 27675472, - 27325456, - 27331264, - 27279024, - 27553632, - 27554144 + 22829360, + 27282176, + 27281776, + 22826064, + 27281792, + 27678400, + 27678736, + 27328624, + 27334432, + 27282192, + 27556864, + 27557376 ], "bases": [ { @@ -245155,7 +245155,7 @@ }, { "type_name": "C_AttributeContainer", - "vtable_address": 64589552, + "vtable_address": 64593456, "methods": [], "bases": [], "model": { @@ -245166,39 +245166,39 @@ }, { "type_name": "C_AttributeContainer::NetworkVar_m_Item", - "vtable_address": 64570432, + "vtable_address": 64574336, "methods": [ 17123728, - 27284080, - 27284096, - 28043040, - 27390912, - 27390368, - 27414144, - 27414608, - 27402544, - 27403088, - 27441216, - 27394928, - 27280048, - 27393680, + 27287248, + 27287264, + 28046304, + 27394112, + 27393568, + 27417344, + 27417808, + 27405744, + 27406288, + 27444416, + 27398128, + 27283216, + 27396880, 17047776, 17119696, 17119664, - 28050848, - 28050992, - 28051360, - 28051488, - 28052976, + 28054112, + 28054256, + 28054624, + 28054752, + 28056240, 17119648, 17123664, - 28051744, - 28051600, - 28051664, - 28052192, - 27294912, + 28055008, + 28054864, + 28054928, + 28055456, + 27298080, 17119632, - 27278640, + 27281808, 17119712, 17119728, 17119744, @@ -245237,33 +245237,33 @@ }, { "type_name": "C_BarnLight", - "vtable_address": 64375944, + "vtable_address": 64379848, "methods": [ 14368000, - 23561952, - 23562784, - 18931408, - 39987824, - 18645760, - 18645648, - 23618816, - 21132352, - 21132672, - 21132336, - 23619904, - 23620304, - 18665616, + 23564704, + 23565536, + 18934224, + 39991728, + 18648064, + 18647952, + 23621568, + 21135168, + 21135488, + 21135152, + 23622656, + 23623056, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 23620784, - 20572352, - 20572208, + 23623536, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -245272,23 +245272,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 23556336, - 23620832, - 23556704, + 40000032, + 23559088, + 23623584, + 23559456, 12234080, - 23567360, - 18666928, - 18799200, + 23570112, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -245305,13 +245305,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -245319,41 +245319,41 @@ 12250624, 12250480, 12249920, - 23558256, + 23561008, 12234384, 12234400, 12572768, - 23557792, - 20572032, + 23560544, + 20574848, 12234432, - 20572048, - 23556320, - 23563392, + 20574864, + 23559072, + 23566144, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 23556352, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 23559104, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -245365,33 +245365,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -245419,9 +245419,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -245429,24 +245429,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -245458,35 +245458,35 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 23557152, - 23579968, - 23597264 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 23559904, + 23582720, + 23600016 ], "bases": [ { @@ -245550,15 +245550,15 @@ }, { "type_name": "C_BarnLight", - "vtable_address": 64377944, + "vtable_address": 64381848, "methods": [ - 23562768, - 23562832, - 18933072, - 18741840, - 18742112, + 23565520, + 23565584, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -245622,9 +245622,9 @@ }, { "type_name": "C_BarnLight", - "vtable_address": 64378016, + "vtable_address": 64381920, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -245688,33 +245688,33 @@ }, { "type_name": "C_BaseButton", - "vtable_address": 63382944, + "vtable_address": 63386848, "methods": [ 14368000, - 20763968, - 20764176, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 20766784, + 20766992, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20764832, + 18936096, + 20575168, + 20767648, 12233840, 12233856, 12233872, @@ -245723,23 +245723,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20763808, + 40000032, + 20766624, 14313408, 14314064, 12234080, 14345600, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -245756,13 +245756,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -245770,41 +245770,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20572784, - 20576416, + 20575600, + 20579232, 12235376, 12234496, - 20764960, + 20767776, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -245816,33 +245816,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -245870,9 +245870,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -245880,24 +245880,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -245909,32 +245909,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -246009,15 +246009,15 @@ }, { "type_name": "C_BaseButton", - "vtable_address": 63384920, + "vtable_address": 63388824, "methods": [ - 20764400, - 20764608, - 18933072, - 18741840, - 18742112, + 20767216, + 20767424, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -246092,9 +246092,9 @@ }, { "type_name": "C_BaseButton", - "vtable_address": 63384992, + "vtable_address": 63388896, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -246169,33 +246169,33 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 63772848, + "vtable_address": 63776752, "methods": [ 14371616, - 17308832, - 17310112, - 20584080, - 18604336, - 17292992, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17311136, + 17312416, + 20586896, + 18606640, + 17295296, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -246204,24 +246204,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17287312, - 17438688, - 17289104, + 40000032, + 17289616, + 17440992, + 17291408, 12234080, - 17316960, - 17287296, - 18799200, + 17319264, + 17289600, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -246232,98 +246232,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17293024, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17295328, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -246334,26 +246334,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -246361,24 +246361,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -246390,227 +246390,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17293568, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17437024, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17287328, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17295872, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17439328, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17289632, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17287216, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17289520, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17293008, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17309904, - 17304544, - 17409584, - 17409680, - 17437680, - 17448944, - 17424672, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17437360, - 17293632, - 17543792, - 17293152, - 17540816, - 17561728, - 17546560, - 17547488, - 17437584, - 17286832, - 17514800, - 17439168, - 17286864, - 17287280, - 17286896, - 17409520, - 17287232, - 17305632, - 17287248, - 17287264 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17295312, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17312208, + 17306848, + 17411888, + 17411984, + 17439984, + 17451248, + 17426976, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17439664, + 17295936, + 17546096, + 17295456, + 17543120, + 17564032, + 17548864, + 17549792, + 17439888, + 17289136, + 17517104, + 17441472, + 17289168, + 17289584, + 17289200, + 17411824, + 17289536, + 17307936, + 17289552, + 17289568 ], "bases": [ { @@ -246780,15 +246780,15 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 63776384, + "vtable_address": 63780288, "methods": [ - 17307744, - 17312320, - 18933072, - 18741840, - 18742112, + 17310048, + 17314624, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -246958,9 +246958,9 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 63776456, + "vtable_address": 63780360, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -247130,12 +247130,12 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 63776480, + "vtable_address": 63780384, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -247305,14 +247305,14 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 63776528, + "vtable_address": 63780432, "methods": [ - 17289120, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17291424, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -247482,10 +247482,10 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 63776592, + "vtable_address": 63780496, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -247655,11 +247655,11 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 63776624, + "vtable_address": 63780528, "methods": [ - 17306656, - 17311200, - 17514944 + 17308960, + 17313504, + 17517248 ], "bases": [ { @@ -247829,7 +247829,7 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 65629888, + "vtable_address": 65633792, "methods": [], "bases": [], "model": { @@ -247840,7 +247840,7 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 65658144, + "vtable_address": 65662048, "methods": [], "bases": [], "model": { @@ -247851,7 +247851,7 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 65658592, + "vtable_address": 65662496, "methods": [], "bases": [], "model": { @@ -247862,7 +247862,7 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 65660864, + "vtable_address": 65664768, "methods": [], "bases": [], "model": { @@ -247873,7 +247873,7 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 65661280, + "vtable_address": 65665184, "methods": [], "bases": [], "model": { @@ -247884,33 +247884,33 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 63755408, + "vtable_address": 63759312, "methods": [ 14371616, - 17301232, - 17301552, - 20584080, - 18604336, + 17303536, + 17303856, + 20586896, + 18606640, 17042416, - 18551600, - 17436560, - 21132352, - 17435648, - 21132336, - 20962400, - 17435072, - 18665760, + 18553904, + 17438864, + 21135168, + 17437952, + 21135152, + 20965216, + 17437376, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -247919,23 +247919,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17286912, - 17436608, - 17288992, + 40000032, + 17289216, + 17438912, + 17291296, 12234080, - 17316192, + 17318496, 16907424, - 18799200, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -247952,93 +247952,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17360544, - 21812224, + 17362848, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -248063,12 +248063,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -248076,24 +248076,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -248105,71 +248105,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 16907264, 16907440, @@ -248288,15 +248288,15 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 63757792, + "vtable_address": 63761696, "methods": [ - 17301536, - 17301600, - 18933072, - 18741840, - 18742112, + 17303840, + 17303904, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -248403,9 +248403,9 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 63757864, + "vtable_address": 63761768, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -248512,9 +248512,9 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 63757888, + "vtable_address": 63761792, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -248624,7 +248624,7 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 65994816, + "vtable_address": 65998720, "methods": [], "bases": [], "model": { @@ -248635,7 +248635,7 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 65995904, + "vtable_address": 65999808, "methods": [], "bases": [], "model": { @@ -248646,7 +248646,7 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 63118656, + "vtable_address": 63122560, "methods": [ 14368000 ], @@ -248722,7 +248722,7 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 63120712, + "vtable_address": 63124616, "methods": [], "bases": [ { @@ -248796,9 +248796,9 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 63120784, + "vtable_address": 63124688, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -248872,7 +248872,7 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 63120808, + "vtable_address": 63124712, "methods": [ 12280128, 12331824 @@ -248949,33 +248949,33 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 63367344, + "vtable_address": 63371248, "methods": [ 14382944, - 20719168, - 20719632, - 20584080, - 18604336, - 20575696, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 20963424, - 20631536, - 18665760, + 20721984, + 20722448, + 20586896, + 18606640, + 20578512, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 20966240, + 20634352, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -248984,23 +248984,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20696480, + 40000032, + 20699296, 14313408, 14313856, 12234080, 14344832, - 20571280, - 18799200, + 20574096, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -249017,93 +249017,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 20576848, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 20579664, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -249126,14 +249126,14 @@ 12243312, 12244384, 12235392, - 20576384, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -249141,24 +249141,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -249170,77 +249170,77 @@ 12572832, 12572912, 12235344, - 20962992, + 20965808, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, 14312992, - 20755200, - 20571200, - 20692288, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -249343,15 +249343,15 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 63369736, + "vtable_address": 63373640, "methods": [ - 20719616, - 20719680, - 18933072, - 18741840, - 18742112, + 20722432, + 20722496, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -249447,9 +249447,9 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 63369808, + "vtable_address": 63373712, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -249545,9 +249545,9 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 63369832, + "vtable_address": 63373736, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -249646,32 +249646,32 @@ }, { "type_name": "C_BaseDoor", - "vtable_address": 63369880, + "vtable_address": 63373784, "methods": [ 14368000, - 20698368, - 20698416, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 20701184, + 20701232, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 14321408, 12233840, 12233856, @@ -249681,23 +249681,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14313392, 14313408, 14314080, 12234080, 14344960, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -249714,13 +249714,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -249728,41 +249728,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -249774,33 +249774,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -249828,9 +249828,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -249838,24 +249838,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -249867,32 +249867,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -249967,15 +249967,15 @@ }, { "type_name": "C_BaseDoor", - "vtable_address": 63371856, + "vtable_address": 63375760, "methods": [ - 20698496, - 20698560, - 18933072, - 18741840, - 18742112, + 20701312, + 20701376, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -250050,9 +250050,9 @@ }, { "type_name": "C_BaseDoor", - "vtable_address": 63371928, + "vtable_address": 63375832, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -250127,33 +250127,33 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 63371952, + "vtable_address": 63375856, "methods": [ 14367152, - 20699200, - 20701216, + 20702016, + 20704032, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -250162,23 +250162,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20713216, + 40000032, + 20716032, 14313408, 14314192, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -250195,13 +250195,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -250209,39 +250209,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -250255,33 +250255,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -250309,9 +250309,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -250319,24 +250319,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -250369,7 +250369,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 63397736, + "vtable_address": 63401640, "methods": [], "bases": [], "model": { @@ -250380,7 +250380,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 65326080, + "vtable_address": 65329984, "methods": [], "bases": [], "model": { @@ -250391,7 +250391,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 65360992, + "vtable_address": 65364896, "methods": [], "bases": [], "model": { @@ -250402,7 +250402,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 65436992, + "vtable_address": 65440896, "methods": [], "bases": [], "model": { @@ -250413,7 +250413,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 65481056, + "vtable_address": 65484960, "methods": [], "bases": [], "model": { @@ -250424,7 +250424,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 65603744, + "vtable_address": 65607648, "methods": [], "bases": [], "model": { @@ -250435,7 +250435,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 65604000, + "vtable_address": 65607904, "methods": [], "bases": [], "model": { @@ -250446,7 +250446,7 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 65947616, + "vtable_address": 65951520, "methods": [], "bases": [], "model": { @@ -250457,24 +250457,24 @@ }, { "type_name": "C_BaseEntityOuterHelper", - "vtable_address": 64133000, + "vtable_address": 64136904, "methods": [ - 20576256, - 20576304, + 20579072, + 20579120, 12447200, 12447184, - 20578694, - 20578720, - 20578542, - 20578516, - 20578670, - 20578644, - 20578620, - 20578594, - 20578568, - 20572240, - 20572304, - 20572320 + 20581510, + 20581536, + 20581358, + 20581332, + 20581486, + 20581460, + 20581436, + 20581410, + 20581384, + 20575056, + 20575120, + 20575136 ], "bases": [ { @@ -250517,11 +250517,11 @@ }, { "type_name": "C_BaseEntityOuterHelper", - "vtable_address": 64133144, + "vtable_address": 64137048, "methods": [ - 20615744, - 20595392, - 20594336 + 20618560, + 20598208, + 20597152 ], "bases": [ { @@ -250564,16 +250564,16 @@ }, { "type_name": "C_BaseExplosionEffect", - "vtable_address": 64191064, + "vtable_address": 64194968, "methods": [ - 21642672, - 21591856, - 21562688, - 21563040, - 21558064, - 21557776, - 21563344, - 21558832 + 21645488, + 21594672, + 21565504, + 21565856, + 21560880, + 21560592, + 21566160, + 21561648 ], "bases": [], "model": { @@ -250584,33 +250584,33 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 63375488, + "vtable_address": 63379392, "methods": [ 14371616, - 20717408, - 20719072, - 20584080, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 20962400, - 20717216, - 18665760, + 20720224, + 20721888, + 20586896, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 20965216, + 20720032, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -250619,23 +250619,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20716976, + 40000032, + 20719792, 14313408, 14313872, 12234080, 14345216, - 20717200, - 18799200, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -250652,93 +250652,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -250763,12 +250763,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -250776,24 +250776,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -250805,71 +250805,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912 ], "bases": [ @@ -250955,15 +250955,15 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 63377784, + "vtable_address": 63381688, "methods": [ - 20719056, - 20719120, - 18933072, - 18741840, - 18742112, + 20721872, + 20721936, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -251048,9 +251048,9 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 63377856, + "vtable_address": 63381760, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -251135,9 +251135,9 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 63377880, + "vtable_address": 63381784, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -251225,33 +251225,33 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 63684600, + "vtable_address": 63688504, "methods": [ 14371616, 16909728, 16919200, - 20584080, - 18604336, + 20586896, + 18606640, 17042416, - 18551600, + 18553904, 17042480, - 21132352, - 18750864, - 21132336, - 20962400, - 20717216, - 18665760, + 21135168, + 18753680, + 21135152, + 20965216, + 20720032, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -251260,23 +251260,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 16907408, 17042496, 16909296, 12234080, 16936336, 16907424, - 18799200, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -251293,93 +251293,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -251404,12 +251404,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -251417,24 +251417,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -251446,71 +251446,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 16907264, 16907440, @@ -251618,15 +251618,15 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 63686984, + "vtable_address": 63690888, "methods": [ 16919312, 16919408, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -251722,9 +251722,9 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 63687056, + "vtable_address": 63690960, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -251820,9 +251820,9 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 63687080, + "vtable_address": 63690984, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -251921,33 +251921,33 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 63356368, + "vtable_address": 63360272, "methods": [ 14368000, - 18927712, - 18929824, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18930528, + 18932640, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -251956,23 +251956,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18666944, + 40000032, + 18669248, 14313408, 14314144, 12234080, 14344448, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -251989,13 +251989,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -252003,41 +252003,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -252049,33 +252049,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -252103,9 +252103,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -252113,24 +252113,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -252142,32 +252142,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -252220,15 +252220,15 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 63358344, + "vtable_address": 63362248, "methods": [ - 18929808, - 18929872, - 18933072, - 18741840, - 18742112, + 18932624, + 18932688, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -252281,9 +252281,9 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 63358416, + "vtable_address": 63362320, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -252336,7 +252336,7 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 65478688, + "vtable_address": 65482592, "methods": [], "bases": [], "model": { @@ -252347,7 +252347,7 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 65486592, + "vtable_address": 65490496, "methods": [], "bases": [], "model": { @@ -252358,7 +252358,7 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 65486720, + "vtable_address": 65490624, "methods": [], "bases": [], "model": { @@ -252369,7 +252369,7 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 65501760, + "vtable_address": 65505664, "methods": [], "bases": [], "model": { @@ -252380,7 +252380,7 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 65502080, + "vtable_address": 65505984, "methods": [], "bases": [], "model": { @@ -252391,7 +252391,7 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 65502624, + "vtable_address": 65506528, "methods": [], "bases": [], "model": { @@ -252402,7 +252402,7 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 65620928, + "vtable_address": 65624832, "methods": [], "bases": [], "model": { @@ -252413,13 +252413,13 @@ }, { "type_name": "C_BaseModelEntity::NetworkVar_m_Collision", - "vtable_address": 64007672, + "vtable_address": 64011576, "methods": [ 13131520, - 21558048, - 18519776, - 18505728, - 18505840 + 21560864, + 18522080, + 18508032, + 18508144 ], "bases": [ { @@ -252441,12 +252441,12 @@ }, { "type_name": "C_BaseModelEntity::NetworkVar_m_Glow", - "vtable_address": 64007728, + "vtable_address": 64011632, "methods": [ 13131632, - 18519840, - 18505808, - 18505872 + 18522144, + 18508112, + 18508176 ], "bases": [ { @@ -252468,33 +252468,33 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 63377928, + "vtable_address": 63381832, "methods": [ 14382944, - 20748640, - 20748976, - 20750064, - 20750208, - 20575696, - 18551600, - 20750256, - 21132352, - 20901232, - 21132336, - 20963744, - 20750416, - 18665760, + 20751456, + 20751792, + 20752880, + 20753024, + 20578512, + 18553904, + 20753072, + 21135168, + 20904048, + 21135152, + 20966560, + 20753232, + 18668064, 12233808, 12233824, - 20750976, - 18518336, - 18787392, - 18517184, - 18561584, + 20753792, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20751056, - 20572352, - 20572208, + 20753872, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -252503,24 +252503,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20748400, + 40000032, + 20751216, 14313408, 14313840, 12234080, 14345344, - 20748384, - 18799200, + 20751200, + 18802016, 12234096, - 20632896, - 20582128, + 20635712, + 20584944, 12235472, 12235488, 13130816, @@ -252536,97 +252536,97 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 20753872, - 20756656, - 20859680, - 20751120, - 20750800, + 20586576, + 20756688, + 20759472, + 20862496, + 20753936, + 20753616, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 14313280, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20756816, - 18515488, - 20825088, - 18632768, - 20756720, - 20608144, - 20572192, - 20632416, + 20759632, + 18517792, + 20827904, + 18635072, + 20759536, + 20610960, + 20575008, + 20635232, 12611264, 12572672, - 20762496, - 18507760, + 20765312, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 18689504, + 20575008, + 18692352, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, - 18508336, + 18510640, 12234912, 12234928, 12234944, @@ -252641,43 +252641,43 @@ 12235088, 12584080, 12583440, - 18840992, - 18689936, - 18508352, - 18690336, - 20576384, + 18843808, + 18692784, + 18510656, + 18693184, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, - 20572032, + 20574848, 12235152, 12235168, - 18691456, + 18694304, 12235440, - 18508336, - 20755776, + 18510640, + 20758592, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, - 18691232, + 18694080, 12235296, - 21705728, - 20751632, + 21708544, + 20754448, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -252689,77 +252689,77 @@ 12572832, 12572912, 12235344, - 20963104, + 20965920, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18761280, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18764096, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18689776, + 18648864, + 18692624, 13131040, - 18662672, - 20756912, + 18664976, + 20759728, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, - 18689488, - 20755200, - 20571200, - 20692288, + 18692336, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -252767,8 +252767,8 @@ 14313008, 14313024, 14313040, - 18685776, - 18686432, + 18688080, + 18688736, 14313056, 14313072, 14313088, @@ -252778,46 +252778,46 @@ 14313152, 14313168, 14313184, - 20750736, - 18686736, + 20753552, + 18689040, 14313216, 14313232, 14331008, 14327440, 14313248, 14313264, - 18687024, - 18691376, - 20763776, - 20753008, - 20756288, - 20756304, - 20762592, - 18687136, - 18689744, - 20756352, - 20756496, + 18689328, + 18694224, + 20766592, + 20755824, + 20759104, + 20759120, + 20765408, + 18689440, + 18692592, + 20759168, + 20759312, 14313296, - 18506768, - 18689760, - 20592464, - 20572960, - 18841872, - 18690352, - 18690576, + 18509072, + 18692608, + 20595280, + 20575776, + 18844688, + 18693200, + 18693424, 14313312, - 20572192, + 20575008, 14313328, - 20762944, - 20757440, - 20757680, - 20757728, - 20758432, - 20572784, - 20762464, - 20852448, - 20751552, - 20751216 + 20765760, + 20760256, + 20760496, + 20760544, + 20761248, + 20575600, + 20765280, + 20855264, + 20754368, + 20754032 ], "bases": [ { @@ -252924,15 +252924,15 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 63380728, + "vtable_address": 63384632, "methods": [ - 20749328, - 20749680, - 18933072, - 18741840, - 18742112, + 20752144, + 20752496, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -253039,9 +253039,9 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 63380800, + "vtable_address": 63384704, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -253148,9 +253148,9 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 63380824, + "vtable_address": 63384728, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -253260,12 +253260,12 @@ }, { "type_name": "C_BasePlayerPawn::NetworkVar_m_skybox3d", - "vtable_address": 64129352, + "vtable_address": 64133256, "methods": [ 13131664, - 20584896, - 19358272, - 20571152 + 20587712, + 19361088, + 20573968 ], "bases": [ { @@ -253287,33 +253287,33 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 64018552, + "vtable_address": 64022456, "methods": [ 14371616, - 18536032, - 18542960, - 20584080, - 18604336, - 18517136, - 18551600, - 18702080, - 21132352, - 28013200, - 21132336, - 20962400, - 28012864, - 28012992, + 18538336, + 18545264, + 20586896, + 18606640, + 18519440, + 18553904, + 18704928, + 21135168, + 28016464, + 21135152, + 20965216, + 28016128, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 18527792, + 18936096, + 20575168, + 18530096, 12233840, 12233856, 12233872, @@ -253322,24 +253322,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18508480, - 18937104, - 18514560, + 40000032, + 18510784, + 18939920, + 18516864, 12234080, - 18594544, - 18508464, - 18799200, + 18596848, + 18510768, + 18802016, 12234096, - 18518288, - 18701904, + 18520592, + 18704752, 12235472, 12235488, 13130816, @@ -253355,93 +253355,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18514928, - 18767008, - 20859680, - 18937056, - 28013152, + 20586576, + 18517232, + 18769824, + 20862496, + 18939872, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 20572064, + 20610960, + 18530464, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -253452,8 +253452,8 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, @@ -253466,12 +253466,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -253479,24 +253479,24 @@ 12235184, 12235440, 12572688, - 18514992, + 18517296, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 18506080, - 18506096, - 18655088, + 18508384, + 18508400, + 18657392, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -253508,143 +253508,143 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18559696, + 18562000, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 27313584, - 27313872, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 18506112, - 18561824, - 18553200, - 17285424, - 17285440, - 18506128, - 17285456, - 18506144, - 18506160, - 18506176, - 18529328, - 18508592, - 18598368, - 18598400, - 17285472, - 18600016, - 18518272, - 18598320, - 18598432, - 18598464, - 18598496, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 18599536, - 18508512, - 17285536, - 18558624 + 27316752, + 27317040, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 18508416, + 18564128, + 18555504, + 17287728, + 17287744, + 18508432, + 17287760, + 18508448, + 18508464, + 18508480, + 18531632, + 18510896, + 18600672, + 18600704, + 17287776, + 18602320, + 18520576, + 18600624, + 18600736, + 18600768, + 18600800, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 18601840, + 18510816, + 17287840, + 18560928 ], "bases": [ { @@ -253771,15 +253771,15 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 64021416, + "vtable_address": 64025320, "methods": [ - 18543392, - 18543216, - 18933072, - 18741840, - 18742112, + 18545696, + 18545520, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -253906,9 +253906,9 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 64021488, + "vtable_address": 64025392, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -254035,9 +254035,9 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 64021512, + "vtable_address": 64025416, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -254167,14 +254167,14 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 64021560, + "vtable_address": 64025464, "methods": [ - 18514576, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 18516880, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -254301,10 +254301,10 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 64021624, + "vtable_address": 64025528, "methods": [ - 27313728, - 27314000 + 27316896, + 27317168 ], "bases": [ { @@ -254431,33 +254431,33 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 63422120, + "vtable_address": 63426024, "methods": [ 14381312, - 21190592, - 21190720, - 18931456, - 18604336, - 18710128, - 18551600, - 19267248, - 21132352, - 21191408, - 21132336, - 21318192, - 21318240, - 21191392, + 21193408, + 21193536, + 18934272, + 18606640, + 18712976, + 18553904, + 19270064, + 21135168, + 21194224, + 21135152, + 21321008, + 21321056, + 21194208, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 21190400, + 18936096, + 20575168, + 21193216, 12233840, 12233856, 12233872, @@ -254466,23 +254466,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418976, 14476800, 14419520, 12234080, 14437072, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -254498,14 +254498,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -254513,86 +254513,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 21191520, - 19040384, - 20623632, + 20586576, + 18656624, + 18769824, + 21194336, + 19043200, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -254610,12 +254610,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -254623,24 +254623,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -254652,74 +254652,74 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968, - 21191536 + 18712816, + 21194352 ], "bases": [ { @@ -254848,15 +254848,15 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 63424432, + "vtable_address": 63428336, "methods": [ - 21190992, - 21191248, - 18933072, - 18741840, - 18742112, + 21193808, + 21194064, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -254985,9 +254985,9 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 63424504, + "vtable_address": 63428408, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -255116,11 +255116,11 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 63424528, + "vtable_address": 63428432, "methods": [ - 21190864, - 21191120, - 21191552 + 21193680, + 21193936, + 21194368 ], "bases": [ { @@ -255249,7 +255249,7 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 65500512, + "vtable_address": 65504416, "methods": [], "bases": [], "model": { @@ -255260,33 +255260,33 @@ }, { "type_name": "C_BaseToggle", - "vtable_address": 63380872, + "vtable_address": 63384776, "methods": [ 14368000, 14317536, 14317632, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -255295,23 +255295,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20763792, + 40000032, + 20766608, 14313408, 14314096, 12234080, 14345472, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -255328,13 +255328,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -255342,41 +255342,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -255388,33 +255388,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -255442,9 +255442,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -255452,24 +255452,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -255481,32 +255481,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -255570,15 +255570,15 @@ }, { "type_name": "C_BaseToggle", - "vtable_address": 63382848, + "vtable_address": 63386752, "methods": [ 14317584, 14317712, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -255642,9 +255642,9 @@ }, { "type_name": "C_BaseToggle", - "vtable_address": 63382920, + "vtable_address": 63386824, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -255708,7 +255708,7 @@ }, { "type_name": "C_BaseToggle", - "vtable_address": 65863040, + "vtable_address": 65866944, "methods": [], "bases": [], "model": { @@ -255719,32 +255719,32 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 63164312, + "vtable_address": 63168216, "methods": [ 14368000, 12598272, 12599488, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -255754,23 +255754,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12574528, 12577392, 12576576, 12234080, 12620656, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -255787,13 +255787,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -255801,41 +255801,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -255847,33 +255847,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -255901,9 +255901,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -255911,24 +255911,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -255940,32 +255940,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -256048,15 +256048,15 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 63166352, + "vtable_address": 63170256, "methods": [ 12598784, 12600016, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -256131,9 +256131,9 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 63166424, + "vtable_address": 63170328, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -256208,7 +256208,7 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 65496928, + "vtable_address": 65500832, "methods": [], "bases": [], "model": { @@ -256219,7 +256219,7 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 65497056, + "vtable_address": 65500960, "methods": [], "bases": [], "model": { @@ -256230,7 +256230,7 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 65622432, + "vtable_address": 65626336, "methods": [], "bases": [], "model": { @@ -256241,33 +256241,33 @@ }, { "type_name": "C_Beam", - "vtable_address": 63268592, + "vtable_address": 63272496, "methods": [ 14368000, 13138992, 13139312, - 18931408, - 39987824, - 20694272, - 18645648, - 21126336, - 21132352, - 21132672, - 21132336, - 20899776, - 20696416, - 18665616, + 18934224, + 39991728, + 20697088, + 18647952, + 21129152, + 21135168, + 21135488, + 21135152, + 20902592, + 20699232, + 18667920, 12233808, 12233824, - 18654448, - 18518336, - 20696400, - 18517184, - 20627168, + 18656752, + 18520640, + 20699216, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -256276,24 +256276,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20693616, + 40000032, + 20696432, 13162304, 13131488, 12234080, 13141264, - 20693968, - 18799200, + 20696784, + 18802016, 12234096, - 20632896, - 20696384, + 20635712, + 20699200, 12235472, 12235488, 12234160, @@ -256309,13 +256309,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -256323,41 +256323,41 @@ 12250624, 12250480, 13132896, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 20703312, - 20572064, - 20899824, - 20623632, + 20586576, + 18656624, + 20706128, + 20574880, + 20902640, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -256369,33 +256369,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -256423,9 +256423,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -256433,24 +256433,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -256462,32 +256462,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 13131184 ], "bases": [ @@ -256552,15 +256552,15 @@ }, { "type_name": "C_Beam", - "vtable_address": 63270576, + "vtable_address": 63274480, "methods": [ 13138672, 13139648, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -256624,9 +256624,9 @@ }, { "type_name": "C_Beam", - "vtable_address": 63270648, + "vtable_address": 63274552, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -256690,33 +256690,33 @@ }, { "type_name": "C_Breakable", - "vtable_address": 63415576, + "vtable_address": 63419480, "methods": [ 14368000, 14423008, 14423104, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -256725,23 +256725,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418928, 14476768, 14419472, 12234080, 14436784, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -256758,13 +256758,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -256772,41 +256772,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -256818,33 +256818,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -256872,9 +256872,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -256882,24 +256882,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -256911,32 +256911,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -257000,15 +257000,15 @@ }, { "type_name": "C_Breakable", - "vtable_address": 63417552, + "vtable_address": 63421456, "methods": [ 14423056, 14423184, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -257072,9 +257072,9 @@ }, { "type_name": "C_Breakable", - "vtable_address": 63417624, + "vtable_address": 63421528, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -257138,7 +257138,7 @@ }, { "type_name": "C_Breakable", - "vtable_address": 65501568, + "vtable_address": 65505472, "methods": [], "bases": [], "model": { @@ -257149,33 +257149,33 @@ }, { "type_name": "C_BreakableProp", - "vtable_address": 63364944, + "vtable_address": 63368848, "methods": [ 14381312, 14331808, 14334592, - 18931456, - 18604336, - 18710128, - 18551600, - 18801392, - 21132352, - 18750864, - 21132336, - 18932480, - 18934160, - 18665760, + 18934272, + 18606640, + 18712976, + 18553904, + 18804208, + 21135168, + 18753680, + 21135152, + 18935296, + 18936976, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 18787392, - 18517184, - 18561584, + 18525056, + 18708192, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -257184,23 +257184,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18707056, + 40000032, + 18709904, 14313408, 14313888, 12234080, 14344704, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -257217,13 +257217,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -257231,79 +257231,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -257328,12 +257328,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -257341,24 +257341,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -257370,73 +257370,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, + 18780672, 13131136, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -257522,15 +257522,15 @@ }, { "type_name": "C_BreakableProp", - "vtable_address": 63367248, + "vtable_address": 63371152, "methods": [ 14332160, 14334960, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -257616,9 +257616,9 @@ }, { "type_name": "C_BreakableProp", - "vtable_address": 63367320, + "vtable_address": 63371224, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -257704,33 +257704,33 @@ }, { "type_name": "C_BulletHitModel", - "vtable_address": 64251872, + "vtable_address": 64255776, "methods": [ 14381312, - 22442624, - 22442720, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 18932480, - 18933680, - 18665760, + 22445440, + 22445536, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 18935296, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -257739,23 +257739,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18609472, + 40000032, + 18611776, 14313408, - 22441648, + 22444464, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -257772,13 +257772,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -257786,79 +257786,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -257883,12 +257883,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -257896,24 +257896,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -257925,66 +257925,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -258059,15 +258059,15 @@ }, { "type_name": "C_BulletHitModel", - "vtable_address": 64254120, + "vtable_address": 64258024, "methods": [ - 22442672, - 22442800, - 18933072, - 18741840, - 18742112, + 22445488, + 22445616, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -258142,9 +258142,9 @@ }, { "type_name": "C_BulletHitModel", - "vtable_address": 64254192, + "vtable_address": 64258096, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -258219,33 +258219,33 @@ }, { "type_name": "C_C4", - "vtable_address": 63783968, + "vtable_address": 63787872, "methods": [ 14371616, - 17475424, - 17475680, - 20584080, - 18604336, - 17704240, - 18551600, - 17708272, - 21132352, - 17707184, - 21132336, - 17702944, - 17703280, - 28012992, + 17477728, + 17477984, + 20586896, + 18606640, + 17706544, + 18553904, + 17710576, + 21135168, + 17709488, + 21135152, + 17705248, + 17705584, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -258254,24 +258254,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439008, - 17708928, - 17440752, + 40000032, + 17441312, + 17711232, + 17443056, 12234080, - 17462768, - 17438992, - 18799200, + 17465072, + 17441296, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -258282,98 +258282,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17538496, - 17703616, - 17707520, - 28013152, + 17451488, + 17457008, + 17540800, + 17705920, + 17709824, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17467552, - 21812224, + 17469856, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -258384,26 +258384,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -258411,24 +258411,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -258440,225 +258440,225 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706624, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17562960, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17708928, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17565264, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17438896, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17441200, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, - 17452544, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449168, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17639984, - 17439200, - 17546208, - 17448944, - 17640032, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17549728, - 17544016, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17460608, - 17448464, - 17438912 + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, + 17454848, + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451472, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642288, + 17441504, + 17548512, + 17451248, + 17642336, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17552032, + 17546320, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17462912, + 17450768, + 17441216 ], "bases": [ { @@ -258828,15 +258828,15 @@ }, { "type_name": "C_C4", - "vtable_address": 63787488, + "vtable_address": 63791392, "methods": [ - 17475648, - 17475776, - 18933072, - 18741840, - 18742112, + 17477952, + 17478080, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -259006,9 +259006,9 @@ }, { "type_name": "C_C4", - "vtable_address": 63787560, + "vtable_address": 63791464, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -259178,12 +259178,12 @@ }, { "type_name": "C_C4", - "vtable_address": 63787584, + "vtable_address": 63791488, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -259353,14 +259353,14 @@ }, { "type_name": "C_C4", - "vtable_address": 63787632, + "vtable_address": 63791536, "methods": [ - 17440768, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443072, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -259530,10 +259530,10 @@ }, { "type_name": "C_C4", - "vtable_address": 63787696, + "vtable_address": 63791600, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -259703,11 +259703,11 @@ }, { "type_name": "C_C4", - "vtable_address": 63787728, + "vtable_address": 63791632, "methods": [ - 17475664, - 17475728, - 17514944 + 17477968, + 17478032, + 17517248 ], "bases": [ { @@ -259877,12 +259877,12 @@ }, { "type_name": "C_C4::NetworkVar_m_entitySpottedState", - "vtable_address": 63783920, + "vtable_address": 63787824, "methods": [ 16909312, - 17453088, - 17438816, - 17438944 + 17455392, + 17441120, + 17441248 ], "bases": [ { @@ -259904,33 +259904,33 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 64556616, + "vtable_address": 64560520, "methods": [ 14381312, - 27172576, - 27173040, - 18931456, - 18604336, - 27165216, - 18551600, - 27165264, - 21132352, - 18750864, - 21132336, - 27270944, - 27271792, - 18665760, + 27175584, + 27176048, + 18934272, + 18606640, + 27168224, + 18553904, + 27168272, + 21135168, + 18753680, + 21135152, + 27274080, + 27274928, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -259939,23 +259939,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27163968, - 27278048, - 27164720, + 40000032, + 27166976, + 27281216, + 27167728, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -259967,18 +259967,18 @@ 13130864, 12234256, 12234272, - 27163664, + 27166672, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -259986,79 +259986,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 27165312, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 27168320, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 27163632, + 20610960, + 20575008, + 27166640, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -260083,12 +260083,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -260096,24 +260096,24 @@ 12235184, 12235440, 12572688, - 27163648, + 27166656, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -260125,67 +260125,67 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, - 27168752, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18823376, + 18519536, + 18510112, + 27171760, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 27188992 + 18780672, + 27192000 ], "bases": [ { @@ -260281,15 +260281,15 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 64558872, + "vtable_address": 64562776, "methods": [ - 27172336, - 27172800, - 18933072, - 18741840, - 18742112, + 27175344, + 27175808, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -260385,9 +260385,9 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 64558944, + "vtable_address": 64562848, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -260483,10 +260483,10 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 64558968, + "vtable_address": 64562872, "methods": [ - 27190048, - 22438032 + 27193056, + 22440848 ], "bases": [ { @@ -260582,33 +260582,33 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 64563768, + "vtable_address": 64567672, "methods": [ 14381312, - 27175616, - 27177344, - 18931456, - 18604336, - 18517136, - 18551600, - 27260192, - 21132352, - 18750864, - 21132336, - 27271424, - 27272224, - 18665760, + 27178624, + 27180352, + 18934272, + 18606640, + 18519440, + 18553904, + 27263328, + 21135168, + 18753680, + 21135152, + 27274560, + 27275360, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -260617,23 +260617,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27164016, - 27278048, - 27164672, + 40000032, + 27167024, + 27281216, + 27167680, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -260645,18 +260645,18 @@ 13130864, 12234256, 12234272, - 27163744, + 27166752, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -260664,79 +260664,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 27173280, - 27205520, - 18767008, - 20572064, - 18935088, - 20623632, + 27176288, + 27208528, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 27163712, + 27166720, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 27163680, + 20610960, + 20575008, + 27166688, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -260755,18 +260755,18 @@ 12235088, 12584080, 12583440, - 27259936, + 27263072, 12243312, 12244384, 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -260774,24 +260774,24 @@ 12235184, 12235440, 12572688, - 27163696, + 27166704, 12235200, - 18665728, - 27166720, + 18668032, + 27169728, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -260803,69 +260803,69 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, - 27168752, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18823376, + 18519536, + 18510112, + 27171760, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 27188288, - 18519232, - 18507264, + 27191296, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 27209552, + 27212560, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, - 27214800, + 18509584, + 18624320, + 18509536, + 27217840, 13131088, 13131104, - 27247984, - 27186272, - 27208496, - 27211072 + 27250992, + 27189280, + 27211504, + 27214080 ], "bases": [ { @@ -260982,15 +260982,15 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 64566040, + "vtable_address": 64569944, "methods": [ - 27176480, - 27178224, - 18933072, - 18741840, - 18742112, + 27179488, + 27181232, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -261107,9 +261107,9 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 64566112, + "vtable_address": 64570016, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -261226,10 +261226,10 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 64566136, + "vtable_address": 64570040, "methods": [ - 27187216, - 22438032 + 27190224, + 22440848 ], "bases": [ { @@ -261346,10 +261346,10 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 64566168, + "vtable_address": 64570072, "methods": [ - 27208608, - 27211184 + 27211616, + 27214192 ], "bases": [ { @@ -261466,7 +261466,7 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 64559000, + "vtable_address": 64562904, "methods": [ 14381312 ], @@ -261564,7 +261564,7 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 64561248, + "vtable_address": 64565152, "methods": [], "bases": [ { @@ -261660,9 +261660,9 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 64561320, + "vtable_address": 64565224, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -261758,7 +261758,7 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 64561344, + "vtable_address": 64565248, "methods": [], "bases": [ { @@ -261854,7 +261854,7 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 65993664, + "vtable_address": 65997568, "methods": [], "bases": [], "model": { @@ -261865,7 +261865,7 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 65993856, + "vtable_address": 65997760, "methods": [], "bases": [], "model": { @@ -261876,33 +261876,33 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 64561376, + "vtable_address": 64565280, "methods": [ 14381312, - 27179136, - 27181024, - 18931456, - 18604336, - 18517136, - 18551600, - 27187232, - 21132352, - 18750864, - 21132336, - 27270944, - 27271872, - 18665760, + 27182144, + 27184032, + 18934272, + 18606640, + 18519440, + 18553904, + 27190240, + 21135168, + 18753680, + 21135152, + 27274080, + 27275008, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -261911,23 +261911,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27164000, - 27278048, - 27164688, + 40000032, + 27167008, + 27281216, + 27167696, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -261939,18 +261939,18 @@ 13130864, 12234256, 12234272, - 27163728, + 27166736, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -261958,79 +261958,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 27173280, - 27204112, - 18767008, - 20572064, - 18935088, - 20623632, + 27176288, + 27207120, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 27163712, + 27166720, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 27163680, + 20610960, + 20575008, + 27166688, 12611264, 12572672, - 20572224, - 27203728, + 20575040, + 27206736, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -262055,12 +262055,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -262068,24 +262068,24 @@ 12235184, 12235440, 12572688, - 27163696, + 27166704, 12235200, - 18665728, - 27166720, + 18668032, + 27169728, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -262097,68 +262097,68 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, - 27168752, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18823376, + 18519536, + 18510112, + 27171760, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 27243536, - 18519232, - 18507264, + 27246544, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 27204320, - 27185408 + 18780672, + 27207328, + 27188416 ], "bases": [ { @@ -262265,15 +262265,15 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 64563640, + "vtable_address": 64567544, "methods": [ - 27180080, - 27181984, - 18933072, - 18741840, - 18742112, + 27183088, + 27184992, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -262380,9 +262380,9 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 64563712, + "vtable_address": 64567616, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -262489,10 +262489,10 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 64563736, + "vtable_address": 64567640, "methods": [ - 27205504, - 27186256 + 27208512, + 27189264 ], "bases": [ { @@ -262599,16 +262599,16 @@ }, { "type_name": "C_CS2VoicePeerGroup", - "vtable_address": 64251680, + "vtable_address": 64255584, "methods": [ - 22457904, - 22458368, - 22438128, - 22459968, - 22593408, - 22468160, - 22487280, - 22440640 + 22460720, + 22461184, + 22440944, + 22462784, + 22596224, + 22470976, + 22490096, + 22443456 ], "bases": [ { @@ -262650,10 +262650,10 @@ }, { "type_name": "C_CS2VoicePeerGroup", - "vtable_address": 64251760, + "vtable_address": 64255664, "methods": [ - 22465456, - 22488224 + 22468272, + 22491040 ], "bases": [ { @@ -262695,9 +262695,9 @@ }, { "type_name": "C_CS2VoicePeerGroup", - "vtable_address": 64251792, + "vtable_address": 64255696, "methods": [ - 22486928 + 22489744 ], "bases": [ { @@ -262739,33 +262739,33 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 63788288, + "vtable_address": 63792192, "methods": [ 14381312, - 17449264, - 17449392, - 18931456, - 18604336, - 17702160, - 18551600, - 17702208, - 21132352, - 18750864, - 21132336, - 18932480, - 17701872, - 18665760, + 17451568, + 17451696, + 18934272, + 18606640, + 17704464, + 18553904, + 17704512, + 21135168, + 18753680, + 21135152, + 18935296, + 17704176, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -262774,23 +262774,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439024, - 17708912, - 17440848, + 40000032, + 17441328, + 17711216, + 17443152, 12234080, 14344320, - 17439040, - 18799200, + 17441344, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -262807,13 +262807,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -262821,79 +262821,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 17701920, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 17704224, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 17448608, - 18515488, - 20825088, - 18632768, + 17450912, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 17448544, + 20610960, + 20575008, + 17450848, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -262918,12 +262918,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -262931,24 +262931,24 @@ 12235184, 12235440, 12572688, - 17448672, + 17450976, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -262960,67 +262960,67 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17451072 + 18780672, + 17453376 ], "bases": [ { @@ -263105,15 +263105,15 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 63790544, + "vtable_address": 63794448, "methods": [ - 17449328, - 17449472, - 18933072, - 18741840, - 18742112, + 17451632, + 17451776, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -263198,9 +263198,9 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 63790616, + "vtable_address": 63794520, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -263285,11 +263285,11 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 63790640, + "vtable_address": 63794544, "methods": [ - 17438704, + 17441008, 13215936, - 17456208, + 17458512, 13215952 ], "bases": [ @@ -263375,33 +263375,33 @@ }, { "type_name": "C_CSGO_CounterTerroristTeamIntroCamera", - "vtable_address": 64302248, + "vtable_address": 64306152, "methods": [ 14367152, - 22835712, - 22836624, + 22838528, + 22839440, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773968, - 21132352, - 21132672, - 21132336, - 22648320, - 21128960, - 21133440, + 21127072, + 22776784, + 21135168, + 21135488, + 21135152, + 22651136, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -263410,23 +263410,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823504, - 22826256, - 22824640, + 40000032, + 22826320, + 22829072, + 22827456, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -263443,13 +263443,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -263457,39 +263457,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -263503,33 +263503,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22484000, - 21812224, + 22486816, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -263557,9 +263557,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -263567,24 +263567,24 @@ 12235184, 12235440, 12572688, - 22438160, + 22440976, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -263650,33 +263650,33 @@ }, { "type_name": "C_CSGO_CounterTerroristWingmanIntroCamera", - "vtable_address": 64304016, + "vtable_address": 64307920, "methods": [ 14367152, - 22835856, - 22836784, + 22838672, + 22839600, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773968, - 21132352, - 21132672, - 21132336, - 22648320, - 21128960, - 21133440, + 21127072, + 22776784, + 21135168, + 21135488, + 21135152, + 22651136, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -263685,23 +263685,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823520, - 22826256, - 22824624, + 40000032, + 22826336, + 22829072, + 22827440, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -263718,13 +263718,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -263732,39 +263732,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -263778,33 +263778,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22484000, - 21812224, + 22486816, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -263832,9 +263832,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -263842,24 +263842,24 @@ 12235184, 12235440, 12572688, - 22438160, + 22440976, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -263925,33 +263925,33 @@ }, { "type_name": "C_CSGO_EndOfMatchCamera", - "vtable_address": 64305784, + "vtable_address": 64309688, "methods": [ 14367152, - 22836000, - 22836944, + 22838816, + 22839760, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773968, - 21132352, - 21132672, - 21132336, - 22648320, - 21128960, - 21133440, + 21127072, + 22776784, + 21135168, + 21135488, + 21135152, + 22651136, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -263960,23 +263960,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823536, - 22826256, - 22824608, + 40000032, + 22826352, + 22829072, + 22827424, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -263993,13 +263993,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -264007,39 +264007,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -264053,33 +264053,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22484000, - 21812224, + 22486816, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -264107,9 +264107,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -264117,24 +264117,24 @@ 12235184, 12235440, 12572688, - 22438160, + 22440976, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -264200,33 +264200,33 @@ }, { "type_name": "C_CSGO_EndOfMatchCharacterPosition", - "vtable_address": 64310704, + "vtable_address": 64314608, "methods": [ 14367152, - 22832368, - 22832512, + 22835184, + 22835328, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 17216080, - 21132352, - 21132672, - 21132336, - 21128672, - 17216704, - 21133440, + 21127072, + 17218384, + 21135168, + 21135488, + 21135152, + 21131488, + 17219008, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -264235,23 +264235,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823568, - 22826272, - 22824704, + 40000032, + 22826384, + 22829088, + 22827520, 12234080, - 17137552, - 20571856, + 17137648, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -264268,13 +264268,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -264282,39 +264282,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -264328,33 +264328,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17163920, - 21812224, + 17163840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -264382,9 +264382,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -264392,24 +264392,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -264421,7 +264421,7 @@ 12572832, 12572912, 12235344, - 22823424 + 22826240 ], "bases": [ { @@ -264465,33 +264465,33 @@ }, { "type_name": "C_CSGO_EndOfMatchLineupEnd", - "vtable_address": 64316016, + "vtable_address": 64319920, "methods": [ 14367152, - 22826112, - 22826128, + 22828928, + 22828944, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -264500,23 +264500,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823600, - 22915520, - 22824720, + 40000032, + 22826416, + 22918336, + 22827536, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -264533,13 +264533,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -264547,39 +264547,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -264593,33 +264593,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -264647,9 +264647,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -264657,24 +264657,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -264729,33 +264729,33 @@ }, { "type_name": "C_CSGO_EndOfMatchLineupEndpoint", - "vtable_address": 64312480, + "vtable_address": 64316384, "methods": [ 14367152, - 22825984, - 22826000, + 22828800, + 22828816, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -264764,23 +264764,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823440, - 22915520, - 22824752, + 40000032, + 22826256, + 22918336, + 22827568, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -264797,13 +264797,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -264811,39 +264811,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -264857,33 +264857,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -264911,9 +264911,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -264921,24 +264921,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -264982,7 +264982,7 @@ }, { "type_name": "C_CSGO_EndOfMatchLineupEndpoint", - "vtable_address": 65947296, + "vtable_address": 65951200, "methods": [], "bases": [], "model": { @@ -264993,7 +264993,7 @@ }, { "type_name": "C_CSGO_EndOfMatchLineupEndpoint", - "vtable_address": 65947488, + "vtable_address": 65951392, "methods": [], "bases": [], "model": { @@ -265004,33 +265004,33 @@ }, { "type_name": "C_CSGO_EndOfMatchLineupStart", - "vtable_address": 64314248, + "vtable_address": 64318152, "methods": [ 14367152, - 22826048, - 22826064, + 22828864, + 22828880, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -265039,23 +265039,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823584, - 22915520, - 22824736, + 40000032, + 22826400, + 22918336, + 22827552, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -265072,13 +265072,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -265086,39 +265086,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -265132,33 +265132,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -265186,9 +265186,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -265196,24 +265196,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -265268,33 +265268,33 @@ }, { "type_name": "C_CSGO_MapPreviewCameraPath", - "vtable_address": 64263136, + "vtable_address": 64267040, "methods": [ 14367152, - 22454976, - 22454816, + 22457792, + 22457632, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773968, - 21132352, - 21132672, - 21132336, - 22648320, - 21128960, - 21133440, + 21127072, + 22776784, + 21135168, + 21135488, + 21135152, + 22651136, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -265303,23 +265303,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22438624, - 22774112, - 22441584, + 40000032, + 22441440, + 22776928, + 22444400, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -265336,13 +265336,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -265350,39 +265350,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -265396,33 +265396,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22484000, - 21812224, + 22486816, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -265450,9 +265450,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -265460,24 +265460,24 @@ 12235184, 12235440, 12572688, - 22438160, + 22440976, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -265521,33 +265521,33 @@ }, { "type_name": "C_CSGO_MapPreviewCameraPathNode", - "vtable_address": 64261368, + "vtable_address": 64265272, "methods": [ 14367152, - 22443376, - 22443392, + 22446192, + 22446208, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773472, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 22776288, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -265556,23 +265556,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22438560, - 22774112, - 22441568, + 40000032, + 22441376, + 22776928, + 22444384, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -265589,13 +265589,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -265603,39 +265603,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -265649,33 +265649,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -265703,9 +265703,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -265713,24 +265713,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -265774,33 +265774,33 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 64283776, + "vtable_address": 64287680, "methods": [ 14371616, - 22911264, - 22911872, - 20584080, - 18604336, - 22845936, - 18551600, - 22887936, - 21132352, - 18750864, - 21132336, - 22912272, - 22912352, - 18665760, + 22914080, + 22914688, + 20586896, + 18606640, + 22848752, + 18553904, + 22890752, + 21135168, + 18753680, + 21135152, + 22915088, + 22915168, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -265809,23 +265809,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823280, - 22912720, - 22824560, + 40000032, + 22826096, + 22915536, + 22827376, 12234080, 14345216, - 20717200, - 18799200, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -265842,93 +265842,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22857696, - 21812224, + 22860512, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 22831328, - 18741488, - 18562848, + 20583600, + 22834144, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -265953,12 +265953,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -265966,24 +265966,24 @@ 12235184, 12235440, 12572688, - 22823296, + 22826112, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -265995,71 +265995,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, - 22828096, - 18918912, + 22830912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912 ], "bases": [ @@ -266156,15 +266156,15 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 64286072, + "vtable_address": 64289976, "methods": [ - 22911856, - 22911920, - 18933072, - 18741840, - 18742112, + 22914672, + 22914736, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -266260,9 +266260,9 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 64286144, + "vtable_address": 64290048, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -266358,9 +266358,9 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 64286168, + "vtable_address": 64290072, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -266459,7 +266459,7 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 65952576, + "vtable_address": 65956480, "methods": [], "bases": [], "model": { @@ -266470,33 +266470,33 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 64286216, + "vtable_address": 64290120, "methods": [ 14371616, - 22911968, - 22912096, - 20584080, - 18604336, - 22845936, - 18551600, - 22887936, - 21132352, - 18750864, - 21132336, - 22912272, - 22912352, - 18665760, + 22914784, + 22914912, + 20586896, + 18606640, + 22848752, + 18553904, + 22890752, + 21135168, + 18753680, + 21135152, + 22915088, + 22915168, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -266505,23 +266505,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823312, - 22912720, - 22824544, + 40000032, + 22826128, + 22915536, + 22827360, 12234080, 14345216, - 20717200, - 18799200, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -266538,93 +266538,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22857696, - 21812224, + 22860512, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 22831328, - 18741488, - 18562848, + 20583600, + 22834144, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -266649,12 +266649,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -266662,24 +266662,24 @@ 12235184, 12235440, 12572688, - 22823296, + 22826112, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -266691,71 +266691,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, - 22828096, - 18918912, + 22830912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912 ], "bases": [ @@ -266863,15 +266863,15 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 64288512, + "vtable_address": 64292416, "methods": [ - 22912032, - 22912176, - 18933072, - 18741840, - 18742112, + 22914848, + 22914992, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -266978,9 +266978,9 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 64288584, + "vtable_address": 64292488, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -267087,9 +267087,9 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 64288608, + "vtable_address": 64292512, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -267199,33 +267199,33 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 64288808, + "vtable_address": 64292712, "methods": [ 14382944, - 22862864, - 22863232, - 22444080, - 20750208, - 22843936, - 22624368, - 22912736, - 21132352, - 22796992, - 21132336, - 22913312, - 22469120, - 22444880, + 22865680, + 22866048, + 22446896, + 20753024, + 22846752, + 22627184, + 22915552, + 21135168, + 22799808, + 21135152, + 22916128, + 22471936, + 22447696, 12233808, 12233824, - 22443952, - 18518336, - 18787392, - 18517184, - 18561584, + 22446768, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20751056, - 20572352, - 20572208, + 20753872, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -267234,24 +267234,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823360, - 22915504, - 22824512, + 40000032, + 22826176, + 22918320, + 22827328, 12234080, - 22497648, - 22438720, - 18799200, + 22500464, + 22441536, + 18802016, 12234096, - 20632896, - 20582128, + 20635712, + 20584944, 12235472, 12235488, 13130816, @@ -267267,97 +267267,97 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, - 22445584, + 22448400, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, - 18343808, + 20584096, + 20579296, + 20858384, + 20575376, + 18346112, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18353536, - 18519952, + 20574848, + 18355840, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 22443520, - 22825952, - 22791824, - 22532000, - 22791104, - 20750800, + 22446336, + 22828768, + 22794640, + 22534816, + 22793920, + 20753616, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 14313280, - 18506896, - 18529760, - 18529680, - 22839968, - 22915296, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 22842784, + 22918112, + 18623424, + 18754880, 13132864, - 20756816, - 18515488, - 20825088, - 22445376, - 20756720, - 20608144, - 20572192, - 20632416, - 18189872, + 20759632, + 18517792, + 20827904, + 22448192, + 20759536, + 20610960, + 20575008, + 20635232, + 18192176, 12572672, - 22445024, - 18507760, + 22447840, + 18510064, 12234800, - 20633648, + 20636464, 12572784, - 22486192, + 22489008, 12572784, 12234816, - 22915424, - 18689504, + 22918240, + 18692352, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, - 18508336, + 18510640, 12234912, 12234928, 12234944, @@ -267369,46 +267369,46 @@ 12235040, 12235056, 12235072, - 22438864, + 22441680, 12584080, 12583440, - 18840992, - 22697216, - 18508352, - 18690336, - 20576384, + 18843808, + 22700032, + 18510656, + 18693184, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, - 20572032, + 20574848, 12235152, 12235168, - 18691456, + 18694304, 12235440, - 22825904, - 22438880, + 22828720, + 22441696, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, - 18691232, + 18694080, 12235296, - 21705728, - 20751632, + 21708544, + 20754448, 12235312, 12235328, - 22451296, - 20575840, - 22446784, - 20702256, + 22454112, + 20578656, + 22449600, + 20705072, 12572832, 12572592, 12572896, @@ -267420,77 +267420,77 @@ 12572832, 12572912, 12235344, - 22443808, + 22446624, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18201872, - 18204288, - 18255392, - 18204896, - 18507776, + 18204176, + 18206592, + 18257696, + 18207200, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 22444768, - 22444208, - 18507264, - 22808016, - 22808160, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18761280, + 22447584, + 22447024, + 18509568, + 22810832, + 22810976, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18764096, 13130880, - 22903792, + 22906608, 13130896, 13130912, - 22497776, - 18507248, + 22500592, + 18509552, 13130928, 13130944, - 22445632, + 22448448, 13130960, - 18506752, - 22695888, + 18509056, + 22698704, 13130992, 13131008, - 22825424, - 18506944, - 18583120, - 18727120, + 22828240, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18689776, + 18648864, + 18692624, 13131040, - 22438752, - 22445744, - 22438272, - 22538768, - 22444032, - 22466816, - 18507232, + 22441568, + 22448560, + 22441088, + 22541584, + 22446848, + 22469632, + 18509536, 13132832, 13131088, - 22534192, - 18777856, - 22488240, - 20598704, - 20602000, + 22537008, + 18780672, + 22491056, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, - 18689488, - 20755200, - 20571200, - 20692288, + 18692336, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -267498,71 +267498,71 @@ 14313008, 14313024, 14313040, - 22789840, - 22790720, - 18191808, - 18190816, + 22792656, + 22793536, + 18194112, + 18193120, 14313088, 14313104, - 18190896, - 18190992, + 18193200, + 18193296, 14313152, - 18191728, - 18191056, - 22446576, - 18686736, - 22808512, + 18194032, + 18193360, + 22449392, + 18689040, + 22811328, 14313232, - 17877168, - 22483328, + 17879472, + 22486144, 14313248, - 22482992, - 18169632, - 18691376, - 22438816, - 20753008, - 22500080, - 22439056, - 20762592, - 18687136, - 18689744, 22485808, - 22792192, - 18291104, - 18506768, - 18689760, - 20592464, - 20572960, - 18841872, - 18690352, - 18690576, + 18171936, + 18694224, + 22441632, + 20755824, + 22502896, + 22441872, + 20765408, + 18689440, + 18692592, + 22488624, + 22795008, + 18293408, + 18509072, + 18692608, + 20595280, + 20575776, + 18844688, + 18693200, + 18693424, 14313312, - 20572192, + 20575008, 17120160, - 20762944, - 20757440, - 20757680, - 20757728, - 20758432, - 20572784, - 22792272, - 20852448, - 22445216, - 20751216, - 18160112, - 18120160, - 22823376, - 22801600, - 18199632, - 22798496, - 22529232, - 22814400, - 22460896, - 22460960, - 22461040, - 22823344, - 18201920, - 22792336 + 20765760, + 20760256, + 20760496, + 20760544, + 20761248, + 20575600, + 22795088, + 20855264, + 22448032, + 20754032, + 18162416, + 18122464, + 22826192, + 22804416, + 18201936, + 22801312, + 22532048, + 22817216, + 22463712, + 22463776, + 22463856, + 22826160, + 18204224, + 22795152 ], "bases": [ { @@ -267743,15 +267743,15 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 64291720, + "vtable_address": 64295624, "methods": [ - 22863200, - 22863328, - 18933072, - 18741840, - 18742112, + 22866016, + 22866144, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -267932,9 +267932,9 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 64291792, + "vtable_address": 64295696, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -268115,9 +268115,9 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 64291816, + "vtable_address": 64295720, "methods": [ - 22490144, + 22492960, 14312720, 14312736, 14312752 @@ -268301,11 +268301,11 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 64291864, + "vtable_address": 64295768, "methods": [ - 22863216, - 22863280, - 22801584 + 22866032, + 22866096, + 22804400 ], "bases": [ { @@ -268486,9 +268486,9 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 64291904, + "vtable_address": 64295808, "methods": [ - 18202320 + 18204624 ], "bases": [ { @@ -268669,10 +268669,10 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 64291928, + "vtable_address": 64295832, "methods": [ - 22823008, - 22438032 + 22825824, + 22440848 ], "bases": [ { @@ -268853,7 +268853,7 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 65948000, + "vtable_address": 65951904, "methods": [], "bases": [], "model": { @@ -268864,7 +268864,7 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 65951200, + "vtable_address": 65955104, "methods": [], "bases": [], "model": { @@ -268875,33 +268875,33 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 64291960, + "vtable_address": 64295864, "methods": [ 14382944, - 22864048, - 22864336, - 22444080, - 20750208, - 22843936, - 22624368, - 22912736, - 21132352, - 22796992, - 21132336, - 22913312, - 22469120, - 22444880, + 22866864, + 22867152, + 22446896, + 20753024, + 22846752, + 22627184, + 22915552, + 21135168, + 22799808, + 21135152, + 22916128, + 22471936, + 22447696, 12233808, 12233824, - 22443952, - 18518336, - 18787392, - 18517184, - 18561584, + 22446768, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20751056, - 20572352, - 20572208, + 20753872, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -268910,24 +268910,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823392, - 22915504, - 22824496, + 40000032, + 22826208, + 22918320, + 22827312, 12234080, - 22497648, - 22438720, - 18799200, + 22500464, + 22441536, + 18802016, 12234096, - 20632896, - 20582128, + 20635712, + 20584944, 12235472, 12235488, 13130816, @@ -268943,97 +268943,97 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, - 22445584, + 22448400, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, - 18343808, + 20584096, + 20579296, + 20858384, + 20575376, + 18346112, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18353536, - 18519952, + 20574848, + 18355840, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 22443520, - 22825952, - 22791824, - 22532000, - 22791104, - 20750800, + 22446336, + 22828768, + 22794640, + 22534816, + 22793920, + 20753616, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 14313280, - 18506896, - 18529760, - 18529680, - 22839968, - 22915296, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 22842784, + 22918112, + 18623424, + 18754880, 13132864, - 20756816, - 18515488, - 20825088, - 22445376, - 20756720, - 20608144, - 20572192, - 20632416, - 18189872, + 20759632, + 18517792, + 20827904, + 22448192, + 20759536, + 20610960, + 20575008, + 20635232, + 18192176, 12572672, - 22445024, - 18507760, + 22447840, + 18510064, 12234800, - 20633648, + 20636464, 12572784, - 22486192, + 22489008, 12572784, 12234816, - 22915424, - 18689504, + 22918240, + 18692352, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, - 18508336, + 18510640, 12234912, 12234928, 12234944, @@ -269045,46 +269045,46 @@ 12235040, 12235056, 12235072, - 22438864, + 22441680, 12584080, 12583440, - 18840992, - 22697216, - 18508352, - 18690336, - 20576384, + 18843808, + 22700032, + 18510656, + 18693184, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, - 20572032, + 20574848, 12235152, 12235168, - 18691456, + 18694304, 12235440, - 22825904, - 22438880, + 22828720, + 22441696, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, - 18691232, + 18694080, 12235296, - 21705728, - 20751632, + 21708544, + 20754448, 12235312, 12235328, - 22451296, - 20575840, - 22446784, - 20702256, + 22454112, + 20578656, + 22449600, + 20705072, 12572832, 12572592, 12572896, @@ -269096,77 +269096,77 @@ 12572832, 12572912, 12235344, - 22443808, + 22446624, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18201872, - 18204288, - 18255392, - 18204896, - 18507776, + 18204176, + 18206592, + 18257696, + 18207200, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 22444768, - 22444208, - 18507264, - 22808016, - 22808160, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18761280, + 22447584, + 22447024, + 18509568, + 22810832, + 22810976, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18764096, 13130880, - 22903792, + 22906608, 13130896, 13130912, - 22497776, - 18507248, + 22500592, + 18509552, 13130928, 13130944, - 22445632, + 22448448, 13130960, - 18506752, - 22695888, + 18509056, + 22698704, 13130992, 13131008, - 22825424, - 18506944, - 18583120, - 18727120, + 22828240, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18689776, + 18648864, + 18692624, 13131040, - 22438752, - 22445744, - 22438272, - 22538768, - 22444032, - 22466816, - 18507232, + 22441568, + 22448560, + 22441088, + 22541584, + 22446848, + 22469632, + 18509536, 13132832, 13131088, - 22534192, - 18777856, - 22488240, - 20598704, - 20602000, + 22537008, + 18780672, + 22491056, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, - 18689488, - 20755200, - 20571200, - 20692288, + 18692336, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -269174,71 +269174,71 @@ 14313008, 14313024, 14313040, - 22789840, - 22790720, - 18191808, - 18190816, + 22792656, + 22793536, + 18194112, + 18193120, 14313088, 14313104, - 18190896, - 18190992, + 18193200, + 18193296, 14313152, - 18191728, - 18191056, - 22446576, - 18686736, - 22808512, + 18194032, + 18193360, + 22449392, + 18689040, + 22811328, 14313232, - 17877168, - 22483328, + 17879472, + 22486144, 14313248, - 22482992, - 18169632, - 18691376, - 22438816, - 20753008, - 22500080, - 22439056, - 20762592, - 18687136, - 18689744, 22485808, - 22792192, - 18291104, - 18506768, - 18689760, - 20592464, - 20572960, - 18841872, - 18690352, - 18690576, + 18171936, + 18694224, + 22441632, + 20755824, + 22502896, + 22441872, + 20765408, + 18689440, + 18692592, + 22488624, + 22795008, + 18293408, + 18509072, + 18692608, + 20595280, + 20575776, + 18844688, + 18693200, + 18693424, 14313312, - 20572192, + 20575008, 17120160, - 20762944, - 20757440, - 20757680, - 20757728, - 20758432, - 20572784, - 22792272, - 20852448, - 22445216, - 20751216, - 18160112, - 18120160, - 22823376, - 22801600, - 18199632, - 22798496, - 22529232, - 22814400, - 22460896, - 22460960, - 22461040, - 22823344, - 18201920, - 22792336 + 20765760, + 20760256, + 20760496, + 20760544, + 20761248, + 20575600, + 22795088, + 20855264, + 22448032, + 20754032, + 18162416, + 18122464, + 22826192, + 22804416, + 18201936, + 22801312, + 22532048, + 22817216, + 22463712, + 22463776, + 22463856, + 22826160, + 18204224, + 22795152 ], "bases": [ { @@ -269430,15 +269430,15 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 64294872, + "vtable_address": 64298776, "methods": [ - 22864144, - 22864464, - 18933072, - 18741840, - 18742112, + 22866960, + 22867280, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -269630,9 +269630,9 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 64294944, + "vtable_address": 64298848, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -269824,9 +269824,9 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 64294968, + "vtable_address": 64298872, "methods": [ - 22490144, + 22492960, 14312720, 14312736, 14312752 @@ -270021,11 +270021,11 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 64295016, + "vtable_address": 64298920, "methods": [ - 22864240, - 22864592, - 22801584 + 22867056, + 22867408, + 22804400 ], "bases": [ { @@ -270217,9 +270217,9 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 64295056, + "vtable_address": 64298960, "methods": [ - 18202320 + 18204624 ], "bases": [ { @@ -270411,10 +270411,10 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 64295080, + "vtable_address": 64298984, "methods": [ - 22823008, - 22438032 + 22825824, + 22440848 ], "bases": [ { @@ -270606,25 +270606,25 @@ }, { "type_name": "C_CSGO_PreviewPlayer_GraphController", - "vtable_address": 64288656, - "methods": [ - 22824576, - 22843248, - 22842512, - 22898448, - 22825968, - 22899488, - 22892736, - 22902880, - 22850160, - 22841808, + "vtable_address": 64292560, + "methods": [ + 22827392, + 22846064, + 22845328, + 22901264, + 22828784, + 22902304, + 22895552, + 22905696, + 22852976, + 22844624, 14312832, 14312848, 14312864, 14312880, - 22823328, - 18506768, - 18623504 + 22826144, + 18509072, + 18625808 ], "bases": [ { @@ -270657,7 +270657,7 @@ }, { "type_name": "C_CSGO_TeamIntroCharacterPosition", - "vtable_address": 65615328, + "vtable_address": 65619232, "methods": [], "bases": [], "model": { @@ -270668,7 +270668,7 @@ }, { "type_name": "C_CSGO_TeamIntroCharacterPosition", - "vtable_address": 65615520, + "vtable_address": 65619424, "methods": [], "bases": [], "model": { @@ -270679,7 +270679,7 @@ }, { "type_name": "C_CSGO_TeamIntroCharacterPosition", - "vtable_address": 65615712, + "vtable_address": 65619616, "methods": [], "bases": [], "model": { @@ -270690,33 +270690,33 @@ }, { "type_name": "C_CSGO_TeamIntroCounterTerroristPosition", - "vtable_address": 63716264, + "vtable_address": 63720168, "methods": [ 14367152, - 17129616, - 17130528, + 17129712, + 17130624, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 17216080, - 21132352, - 21132672, - 21132336, - 21128672, - 17216704, - 21133440, + 21127072, + 17218384, + 21135168, + 21135488, + 21135152, + 21131488, + 17219008, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -270725,23 +270725,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17120256, - 17216800, + 17219104, 17121392, 12234080, - 17138064, - 20571856, + 17138160, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -270758,13 +270758,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -270772,39 +270772,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -270818,33 +270818,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17163920, - 21812224, + 17163840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -270872,9 +270872,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -270882,24 +270882,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -270966,33 +270966,33 @@ }, { "type_name": "C_CSGO_TeamIntroTerroristPosition", - "vtable_address": 63714488, + "vtable_address": 63718392, "methods": [ 14367152, - 17129472, - 17130368, + 17129568, + 17130464, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 17216080, - 21132352, - 21132672, - 21132336, - 21128672, - 17216704, - 21133440, + 21127072, + 17218384, + 21135168, + 21135488, + 21135152, + 21131488, + 17219008, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -271001,23 +271001,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17120240, - 17216800, + 17219104, 17121408, 12234080, - 17137936, - 20571856, + 17138032, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -271034,13 +271034,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -271048,39 +271048,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -271094,33 +271094,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17163920, - 21812224, + 17163840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -271148,9 +271148,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -271158,24 +271158,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -271242,7 +271242,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCamera", - "vtable_address": 65948192, + "vtable_address": 65952096, "methods": [], "bases": [], "model": { @@ -271253,7 +271253,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCamera", - "vtable_address": 65948384, + "vtable_address": 65952288, "methods": [], "bases": [], "model": { @@ -271264,7 +271264,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCamera", - "vtable_address": 65948576, + "vtable_address": 65952480, "methods": [], "bases": [], "model": { @@ -271275,7 +271275,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCamera", - "vtable_address": 65948768, + "vtable_address": 65952672, "methods": [], "bases": [], "model": { @@ -271286,7 +271286,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCamera", - "vtable_address": 65948960, + "vtable_address": 65952864, "methods": [], "bases": [], "model": { @@ -271297,7 +271297,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCamera", - "vtable_address": 65949152, + "vtable_address": 65953056, "methods": [], "bases": [], "model": { @@ -271308,7 +271308,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition", - "vtable_address": 63709160, + "vtable_address": 63713064, "methods": [ 14367152 ], @@ -271343,7 +271343,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition", - "vtable_address": 65615904, + "vtable_address": 65619808, "methods": [], "bases": [], "model": { @@ -271354,7 +271354,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition", - "vtable_address": 65616480, + "vtable_address": 65620384, "methods": [], "bases": [], "model": { @@ -271365,7 +271365,7 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition", - "vtable_address": 65947808, + "vtable_address": 65951712, "methods": [], "bases": [], "model": { @@ -271376,36 +271376,36 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition::NetworkVar_m_agentItem", - "vtable_address": 63708096, + "vtable_address": 63712000, "methods": [ 17123728, 17123552, 17123568, - 28043040, - 27390912, - 27390368, - 27414144, - 27414608, - 27402544, - 27403088, - 27441216, - 27394928, - 27280048, - 27393680, + 28046304, + 27394112, + 27393568, + 27417344, + 27417808, + 27405744, + 27406288, + 27444416, + 27398128, + 27283216, + 27396880, 17047776, 17119696, 17119664, - 28050848, - 28050992, - 28051360, - 28051488, - 28052976, + 28054112, + 28054256, + 28054624, + 28054752, + 28056240, 17119648, 17123664, - 28051744, - 28051600, - 28051664, - 28052192, + 28055008, + 28054864, + 28054928, + 28055456, 17124704, 17119632, 17120016, @@ -271447,36 +271447,36 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition::NetworkVar_m_glovesItem", - "vtable_address": 63708408, + "vtable_address": 63712312, "methods": [ 17123728, 17123488, 17123504, - 28043040, - 27390912, - 27390368, - 27414144, - 27414608, - 27402544, - 27403088, - 27441216, - 27394928, - 27280048, - 27393680, + 28046304, + 27394112, + 27393568, + 27417344, + 27417808, + 27405744, + 27406288, + 27444416, + 27398128, + 27283216, + 27396880, 17047776, 17119696, 17119664, - 28050848, - 28050992, - 28051360, - 28051488, - 28052976, + 28054112, + 28054256, + 28054624, + 28054752, + 28056240, 17119648, 17123664, - 28051744, - 28051600, - 28051664, - 28052192, + 28055008, + 28054864, + 28054928, + 28055456, 17124640, 17119632, 17120048, @@ -271518,36 +271518,36 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition::NetworkVar_m_weaponItem", - "vtable_address": 63708720, + "vtable_address": 63712624, "methods": [ 17123728, 17123424, 17123440, - 28043040, - 27390912, - 27390368, - 27414144, - 27414608, - 27402544, - 27403088, - 27441216, - 27394928, - 27280048, - 27393680, + 28046304, + 27394112, + 27393568, + 27417344, + 27417808, + 27405744, + 27406288, + 27444416, + 27398128, + 27283216, + 27396880, 17047776, 17119696, 17119664, - 28050848, - 28050992, - 28051360, - 28051488, - 28052976, + 28054112, + 28054256, + 28054624, + 28054752, + 28056240, 17119648, 17123664, - 28051744, - 28051600, - 28051664, - 28052192, + 28055008, + 28054864, + 28054928, + 28055456, 17124576, 17119632, 17120080, @@ -271589,33 +271589,33 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 64307552, + "vtable_address": 64311456, "methods": [ 14382944, - 22863376, - 22863664, - 22444080, - 20750208, - 22843936, - 22624368, - 22912736, - 21132352, - 22796992, - 21132336, - 22913312, - 22469120, - 22444880, + 22866192, + 22866480, + 22446896, + 20753024, + 22846752, + 22627184, + 22915552, + 21135168, + 22799808, + 21135152, + 22916128, + 22471936, + 22447696, 12233808, 12233824, - 22443952, - 18518336, - 18787392, - 18517184, - 18561584, + 22446768, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20751056, - 20572352, - 20572208, + 20753872, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -271624,24 +271624,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823552, - 22915504, - 22824480, + 40000032, + 22826368, + 22918320, + 22827296, 12234080, - 22497648, - 22438720, - 18799200, + 22500464, + 22441536, + 18802016, 12234096, - 20632896, - 20582128, + 20635712, + 20584944, 12235472, 12235488, 13130816, @@ -271657,97 +271657,97 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, - 22445584, + 22448400, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, - 18343808, + 20584096, + 20579296, + 20858384, + 20575376, + 18346112, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18353536, - 18519952, + 20574848, + 18355840, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 22443520, - 22825952, - 22791824, - 22532000, - 22791104, - 20750800, + 22446336, + 22828768, + 22794640, + 22534816, + 22793920, + 20753616, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 14313280, - 18506896, - 18529760, - 18529680, - 22839968, - 22915296, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 22842784, + 22918112, + 18623424, + 18754880, 13132864, - 20756816, - 18515488, - 20825088, - 22445376, - 20756720, - 20608144, - 20572192, - 20632416, - 18189872, + 20759632, + 18517792, + 20827904, + 22448192, + 20759536, + 20610960, + 20575008, + 20635232, + 18192176, 12572672, - 22445024, - 18507760, + 22447840, + 18510064, 12234800, - 20633648, + 20636464, 12572784, - 22486192, + 22489008, 12572784, 12234816, - 22915424, - 18689504, + 22918240, + 18692352, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, - 18508336, + 18510640, 12234912, 12234928, 12234944, @@ -271759,46 +271759,46 @@ 12235040, 12235056, 12235072, - 22438864, + 22441680, 12584080, 12583440, - 18840992, - 22697216, - 18508352, - 18690336, - 20576384, + 18843808, + 22700032, + 18510656, + 18693184, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, - 20572032, + 20574848, 12235152, 12235168, - 18691456, + 18694304, 12235440, - 22825904, - 22438880, + 22828720, + 22441696, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, - 18691232, + 18694080, 12235296, - 21705728, - 20751632, + 21708544, + 20754448, 12235312, 12235328, - 22451296, - 20575840, - 22446784, - 20702256, + 22454112, + 20578656, + 22449600, + 20705072, 12572832, 12572592, 12572896, @@ -271810,77 +271810,77 @@ 12572832, 12572912, 12235344, - 22443808, + 22446624, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18201872, - 18204288, - 18255392, - 18204896, - 18507776, + 18204176, + 18206592, + 18257696, + 18207200, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 22444768, - 22444208, - 18507264, - 22808016, - 22808160, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18761280, + 22447584, + 22447024, + 18509568, + 22810832, + 22810976, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18764096, 13130880, - 22903792, + 22906608, 13130896, 13130912, - 22497776, - 18507248, + 22500592, + 18509552, 13130928, 13130944, - 22445632, + 22448448, 13130960, - 18506752, - 22695888, + 18509056, + 22698704, 13130992, 13131008, - 22825424, - 18506944, - 18583120, - 18727120, + 22828240, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18689776, + 18648864, + 18692624, 13131040, - 22438752, - 22445744, - 22438272, - 22538768, - 22444032, - 22466816, - 18507232, + 22441568, + 22448560, + 22441088, + 22541584, + 22446848, + 22469632, + 18509536, 13132832, 13131088, - 22534192, - 18777856, - 22488240, - 20598704, - 20602000, + 22537008, + 18780672, + 22491056, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, - 18689488, - 20755200, - 20571200, - 20692288, + 18692336, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -271888,71 +271888,71 @@ 14313008, 14313024, 14313040, - 22789840, - 22790720, - 18191808, - 18190816, + 22792656, + 22793536, + 18194112, + 18193120, 14313088, 14313104, - 18190896, - 18190992, + 18193200, + 18193296, 14313152, - 18191728, - 18191056, - 22446576, - 18686736, - 22808512, + 18194032, + 18193360, + 22449392, + 18689040, + 22811328, 14313232, - 17877168, - 22483328, + 17879472, + 22486144, 14313248, - 22482992, - 18169632, - 18691376, - 22438816, - 20753008, - 22500080, - 22439056, - 20762592, - 18687136, - 18689744, 22485808, - 22792192, - 18291104, - 18506768, - 18689760, - 20592464, - 20572960, - 18841872, - 18690352, - 18690576, + 18171936, + 18694224, + 22441632, + 20755824, + 22502896, + 22441872, + 20765408, + 18689440, + 18692592, + 22488624, + 22795008, + 18293408, + 18509072, + 18692608, + 20595280, + 20575776, + 18844688, + 18693200, + 18693424, 14313312, - 20572192, + 20575008, 17120160, - 20762944, - 20757440, - 20757680, - 20757728, - 20758432, - 20572784, - 22792272, - 20852448, - 22445216, - 20751216, - 18160112, - 18120160, - 22823376, - 22801600, - 18199632, - 22798496, - 22529232, - 22814400, - 22460896, - 22460960, - 22461040, - 22823344, - 18201920, - 22792336 + 20765760, + 20760256, + 20760496, + 20760544, + 20761248, + 20575600, + 22795088, + 20855264, + 22448032, + 20754032, + 18162416, + 18122464, + 22826192, + 22804416, + 18201936, + 22801312, + 22532048, + 22817216, + 22463712, + 22463776, + 22463856, + 22826160, + 18204224, + 22795152 ], "bases": [ { @@ -272144,15 +272144,15 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 64310464, + "vtable_address": 64314368, "methods": [ - 22863472, - 22863792, - 18933072, - 18741840, - 18742112, + 22866288, + 22866608, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -272344,9 +272344,9 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 64310536, + "vtable_address": 64314440, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -272538,9 +272538,9 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 64310560, + "vtable_address": 64314464, "methods": [ - 22490144, + 22492960, 14312720, 14312736, 14312752 @@ -272735,11 +272735,11 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 64310608, + "vtable_address": 64314512, "methods": [ - 22863568, - 22863920, - 22801584 + 22866384, + 22866736, + 22804400 ], "bases": [ { @@ -272931,9 +272931,9 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 64310648, + "vtable_address": 64314552, "methods": [ - 18202320 + 18204624 ], "bases": [ { @@ -273125,10 +273125,10 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 64310672, + "vtable_address": 64314576, "methods": [ - 22823008, - 22438032 + 22825824, + 22440848 ], "bases": [ { @@ -273320,33 +273320,33 @@ }, { "type_name": "C_CSGO_TeamSelectCamera", - "vtable_address": 64296944, + "vtable_address": 64300848, "methods": [ 14367152, - 22835280, - 22836144, + 22838096, + 22838960, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773968, - 21132352, - 21132672, - 21132336, - 22648320, - 21128960, - 21133440, + 21127072, + 22776784, + 21135168, + 21135488, + 21135152, + 22651136, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -273355,23 +273355,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823456, - 22826256, - 22824688, + 40000032, + 22826272, + 22829072, + 22827504, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -273388,13 +273388,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -273402,39 +273402,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -273448,33 +273448,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22484000, - 21812224, + 22486816, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -273502,9 +273502,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -273512,24 +273512,24 @@ 12235184, 12235440, 12572688, - 22438160, + 22440976, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -273595,7 +273595,7 @@ }, { "type_name": "C_CSGO_TeamSelectCharacterPosition", - "vtable_address": 65616096, + "vtable_address": 65620000, "methods": [], "bases": [], "model": { @@ -273606,7 +273606,7 @@ }, { "type_name": "C_CSGO_TeamSelectCharacterPosition", - "vtable_address": 65616288, + "vtable_address": 65620192, "methods": [], "bases": [], "model": { @@ -273617,33 +273617,33 @@ }, { "type_name": "C_CSGO_TeamSelectCounterTerroristPosition", - "vtable_address": 63712712, + "vtable_address": 63716616, "methods": [ 14367152, - 17129328, - 17130208, + 17129424, + 17130304, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 17216080, - 21132352, - 21132672, - 21132336, - 21128672, - 17216704, - 21133440, + 21127072, + 17218384, + 21135168, + 21135488, + 21135152, + 21131488, + 17219008, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -273652,23 +273652,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17120224, - 17216800, + 17219104, 17121424, 12234080, - 17137808, - 20571856, + 17137904, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -273685,13 +273685,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -273699,39 +273699,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -273745,33 +273745,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17163920, - 21812224, + 17163840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -273799,9 +273799,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -273809,24 +273809,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -273893,33 +273893,33 @@ }, { "type_name": "C_CSGO_TeamSelectTerroristPosition", - "vtable_address": 63710936, + "vtable_address": 63714840, "methods": [ 14367152, - 17129184, - 17130048, + 17129280, + 17130144, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 17216080, - 21132352, - 21132672, - 21132336, - 21128672, - 17216704, - 21133440, + 21127072, + 17218384, + 21135168, + 21135488, + 21135152, + 21131488, + 17219008, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -273928,23 +273928,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17120208, - 17216800, + 17219104, 17121440, 12234080, - 17137680, - 20571856, + 17137776, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -273961,13 +273961,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -273975,39 +273975,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -274021,33 +274021,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17163920, - 21812224, + 17163840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -274075,9 +274075,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -274085,24 +274085,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -274169,33 +274169,33 @@ }, { "type_name": "C_CSGO_TerroristTeamIntroCamera", - "vtable_address": 64298712, + "vtable_address": 64302616, "methods": [ 14367152, - 22835424, - 22836304, + 22838240, + 22839120, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773968, - 21132352, - 21132672, - 21132336, - 22648320, - 21128960, - 21133440, + 21127072, + 22776784, + 21135168, + 21135488, + 21135152, + 22651136, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -274204,23 +274204,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823472, - 22826256, - 22824672, + 40000032, + 22826288, + 22829072, + 22827488, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -274237,13 +274237,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -274251,39 +274251,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -274297,33 +274297,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22484000, - 21812224, + 22486816, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -274351,9 +274351,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -274361,24 +274361,24 @@ 12235184, 12235440, 12572688, - 22438160, + 22440976, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -274444,33 +274444,33 @@ }, { "type_name": "C_CSGO_TerroristWingmanIntroCamera", - "vtable_address": 64300480, + "vtable_address": 64304384, "methods": [ 14367152, - 22835568, - 22836464, + 22838384, + 22839280, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 22773968, - 21132352, - 21132672, - 21132336, - 22648320, - 21128960, - 21133440, + 21127072, + 22776784, + 21135168, + 21135488, + 21135152, + 22651136, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -274479,23 +274479,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823488, - 22826256, - 22824656, + 40000032, + 22826304, + 22829072, + 22827472, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -274512,13 +274512,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -274526,39 +274526,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -274572,33 +274572,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22484000, - 21812224, + 22486816, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -274626,9 +274626,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -274636,24 +274636,24 @@ 12235184, 12235440, 12572688, - 22438160, + 22440976, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -274719,7 +274719,7 @@ }, { "type_name": "C_CSGameRules", - "vtable_address": 63687912, + "vtable_address": 63691816, "methods": [ 16909408, 16906384, @@ -274736,7 +274736,7 @@ 16906576, 16906592, 16906608, - 21704768, + 21707584, 16906624, 16906640, 16906656, @@ -274745,21 +274745,21 @@ 16911376, 17045584, 17046592, - 21704784, + 21707600, 16911120, 16910800, 16906688, 16906704, - 21734432, - 21705504, - 21705520, - 21705536, + 21737248, + 21708320, + 21708336, + 21708352, 16931120, 16910992, 16907552, 16907568, 16906720, - 21704784, + 21707600, 16906736, 16906752, 16907600, @@ -274769,28 +274769,28 @@ 16906816, 13820272, 16906832, - 21705552, + 21708368, 16921856, 16906848, - 21704816, + 21707632, 16906864, - 21707776, + 21710592, 16906880, 16906896, 16906912, - 21707824, + 21710640, 16960960, - 21709776, - 21704832, - 21712832, - 21715824, - 21713168, - 21712928, - 21704880, - 21713456, - 21704896, - 21713584, - 21704848, + 21712592, + 21707648, + 21715648, + 21718640, + 21715984, + 21715744, + 21707696, + 21716272, + 21707712, + 21716400, + 21707664, 16906928, 16907104, 16907120, @@ -274848,7 +274848,7 @@ }, { "type_name": "C_CSGameRules::NetworkVar_m_RetakeRules", - "vtable_address": 63684240, + "vtable_address": 63688144, "methods": [ 16965552, 16966480, @@ -274900,32 +274900,32 @@ }, { "type_name": "C_CSGameRulesProxy", - "vtable_address": 63689856, + "vtable_address": 63693760, "methods": [ 14367152, 16911600, 16911632, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 13132688, 12233840, 12233856, @@ -274935,23 +274935,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 16907520, 16911696, 16909392, 12234080, 16936464, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -274968,13 +274968,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -274982,39 +274982,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, - 21732752, - 20572032, + 21735568, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -275028,33 +275028,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -275082,9 +275082,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -275092,24 +275092,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -275164,33 +275164,33 @@ }, { "type_name": "C_CSMinimapBoundary", - "vtable_address": 63701352, + "vtable_address": 63705256, "methods": [ 14367152, 17048288, 17048304, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -275199,23 +275199,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17046704, 17108496, 17047808, 12234080, 17054272, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -275232,13 +275232,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -275246,39 +275246,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 17048688, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -275292,33 +275292,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -275346,9 +275346,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -275356,24 +275356,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -275417,33 +275417,33 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 64264904, + "vtable_address": 64268808, "methods": [ 14382944, - 22470512, - 22471568, - 20750064, - 20750208, - 20575696, - 22624368, - 17950176, - 21132352, - 22470720, - 21132336, - 22790880, - 20750416, - 18665760, + 22473328, + 22474384, + 20752880, + 20753024, + 20578512, + 22627184, + 17952480, + 21135168, + 22473536, + 21135152, + 22793696, + 20753232, + 18668064, 12233808, 12233824, - 20750976, - 18518336, - 18787392, - 18517184, - 18561584, + 20753792, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20751056, - 20572352, - 20572208, + 20753872, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -275452,24 +275452,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22438672, - 22443440, - 22441600, + 40000032, + 22441488, + 22446256, + 22444416, 12234080, - 22497520, - 22438688, - 18799200, + 22500336, + 22441504, + 18802016, 12234096, - 20632896, - 20582128, + 20635712, + 20584944, 12235472, 12235488, 13130816, @@ -275485,97 +275485,97 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, - 22445584, + 22448400, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 22443520, - 22438656, - 22791824, - 20859680, - 22791040, - 20750800, + 22446336, + 22441472, + 22794640, + 20862496, + 22793856, + 20753616, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 14313280, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20756816, - 18515488, - 20825088, - 18632768, - 20756720, - 20608144, - 20572192, - 20632416, - 18189872, + 20759632, + 18517792, + 20827904, + 18635072, + 20759536, + 20610960, + 20575008, + 20635232, + 18192176, 12572672, - 20762496, - 18507760, + 20765312, + 18510064, 12234800, - 20633648, + 20636464, 12572784, - 22486192, + 22489008, 12572784, 12234816, - 22669136, - 18689504, + 22671952, + 18692352, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, - 18508336, + 18510640, 12234912, 12234928, 12234944, @@ -275587,46 +275587,46 @@ 12235040, 12235056, 12235072, - 22438864, + 22441680, 12584080, 12583440, - 18840992, - 18689936, - 18508352, - 18690336, - 20576384, + 18843808, + 18692784, + 18510656, + 18693184, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, - 20572032, + 20574848, 12235152, 12235168, - 18691456, + 18694304, 12235440, - 18508336, - 22438880, + 18510640, + 22441696, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, - 18691232, + 18694080, 12235296, - 21705728, - 20751632, + 21708544, + 20754448, 12235312, 12235328, 12243168, - 20575840, - 22446784, - 20702256, + 20578656, + 22449600, + 20705072, 12572832, 12572592, 12572896, @@ -275638,77 +275638,77 @@ 12572832, 12572912, 12235344, - 20963104, + 20965920, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18761280, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18764096, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 22445600, + 22448416, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 22438640, - 18727120, + 18517520, + 18509248, + 22441456, + 18729936, 13131024, - 18646560, - 18689776, + 18648864, + 18692624, 13131040, - 18662672, - 22445744, + 18664976, + 22448560, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, - 18689488, - 20755200, - 20571200, - 20692288, + 18692336, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -275716,65 +275716,65 @@ 14313008, 14313024, 14313040, - 22789712, - 22790672, + 22792528, + 22793488, 14313056, 14313072, 14313088, - 17892160, + 17894464, 14313120, - 17892464, + 17894768, 14313152, - 17892368, - 17892304, - 20750736, - 18686736, + 17894672, + 17894608, + 20753552, + 18689040, 14313216, 14313232, - 17877168, - 22483328, + 17879472, + 22486144, 14313248, - 22482992, - 18169632, - 18691376, - 20763776, - 20753008, - 20756288, - 22439056, - 20762592, - 18687136, - 18689744, - 17950224, - 22791840, + 22485808, + 18171936, + 18694224, + 20766592, + 20755824, + 20759104, + 22441872, + 20765408, + 18689440, + 18692592, + 17952528, + 22794656, 14313296, - 18506768, - 18689760, - 20592464, - 20572960, - 18841872, - 18690352, - 18690576, + 18509072, + 18692608, + 20595280, + 20575776, + 18844688, + 18693200, + 18693424, 14313312, - 20572192, + 20575008, 14313328, - 20762944, - 20757440, - 20757680, - 20757728, - 20758432, - 20572784, - 22792272, - 20852448, - 20751552, - 20751216, - 18120160, - 17894784, - 22439056, - 22438112, - 18190464, - 22572304, - 22438384, - 22812288 + 20765760, + 20760256, + 20760496, + 20760544, + 20761248, + 20575600, + 22795088, + 20855264, + 20754368, + 20754032, + 18122464, + 17897088, + 22441872, + 22440928, + 18192768, + 22575120, + 22441200, + 22815104 ], "bases": [ { @@ -275924,15 +275924,15 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 64267768, + "vtable_address": 64271672, "methods": [ - 22469568, - 22471344, - 18933072, - 18741840, - 18742112, + 22472384, + 22474160, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -276082,9 +276082,9 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 64267840, + "vtable_address": 64271744, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -276234,9 +276234,9 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 64267864, + "vtable_address": 64271768, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -276389,11 +276389,11 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 64267912, + "vtable_address": 64271816, "methods": [ - 22469376, - 22471136, - 22574496 + 22472192, + 22473952, + 22577312 ], "bases": [ { @@ -276543,33 +276543,33 @@ }, { "type_name": "C_CSPetPlacement", - "vtable_address": 63703728, + "vtable_address": 63707632, "methods": [ 14367152, 17048352, 17048368, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -276578,23 +276578,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 17046736, 17108496, 17047824, 12234080, 17054400, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -276611,13 +276611,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -276625,39 +276625,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 17048672, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -276671,33 +276671,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -276725,9 +276725,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -276735,24 +276735,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -276796,33 +276796,33 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 64270648, + "vtable_address": 64274552, "methods": [ 14382944, - 22626240, - 22629216, - 22444080, - 20750208, - 20575696, - 22624368, - 22445424, - 21132352, - 22796992, - 21132336, - 22798160, - 22469120, - 22444880, + 22629056, + 22632032, + 22446896, + 20753024, + 20578512, + 22627184, + 22448240, + 21135168, + 22799808, + 21135152, + 22800976, + 22471936, + 22447696, 12233808, 12233824, - 22443952, - 18518336, - 18787392, - 18517184, - 18561584, + 22446768, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20751056, - 20572352, - 20572208, + 20753872, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -276831,24 +276831,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22438736, - 22443456, - 22441664, + 40000032, + 22441552, + 22446272, + 22444480, 12234080, - 22497648, - 22438720, - 18799200, + 22500464, + 22441536, + 18802016, 12234096, - 20632896, - 20582128, + 20635712, + 20584944, 12235472, 12235488, 13130816, @@ -276864,97 +276864,97 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, - 22445584, + 22448400, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, - 18343808, + 20584096, + 20579296, + 20858384, + 20575376, + 18346112, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18353536, - 18519952, + 20574848, + 18355840, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 22443520, - 22801856, - 22791824, - 22532000, - 22791104, - 20750800, + 22446336, + 22804672, + 22794640, + 22534816, + 22793920, + 20753616, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 14313280, - 18506896, - 18529760, - 18529680, - 18515024, - 22444336, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 22447152, + 18623424, + 18754880, 13132864, - 20756816, - 18515488, - 20825088, - 22445376, - 20756720, - 20608144, - 20572192, - 20632416, - 18189872, + 20759632, + 18517792, + 20827904, + 22448192, + 20759536, + 20610960, + 20575008, + 20635232, + 18192176, 12572672, - 22445024, - 18507760, + 22447840, + 18510064, 12234800, - 20633648, + 20636464, 12572784, - 22486192, + 22489008, 12572784, 12234816, - 22819568, - 18689504, + 22822384, + 18692352, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, - 18508336, + 18510640, 12234912, 12234928, 12234944, @@ -276966,46 +276966,46 @@ 12235040, 12235056, 12235072, - 22438864, + 22441680, 12584080, 12583440, - 18840992, - 22697216, - 18508352, - 18690336, - 20576384, + 18843808, + 22700032, + 18510656, + 18693184, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, - 20572032, + 20574848, 12235152, 12235168, - 18691456, + 18694304, 12235440, - 18508336, - 22438880, + 18510640, + 22441696, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, - 18691232, + 18694080, 12235296, - 21705728, - 20751632, + 21708544, + 20754448, 12235312, 12235328, - 22451296, - 20575840, - 22446784, - 20702256, + 22454112, + 20578656, + 22449600, + 20705072, 12572832, 12572592, 12572896, @@ -277017,77 +277017,77 @@ 12572832, 12572912, 12235344, - 22443808, + 22446624, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18201872, - 18204288, - 18255392, - 18204896, - 18507776, + 18204176, + 18206592, + 18257696, + 18207200, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 22444768, - 22444208, - 18507264, - 22808016, - 22808160, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18761280, + 22447584, + 22447024, + 18509568, + 22810832, + 22810976, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18764096, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 22497776, - 18507248, + 22500592, + 18509552, 13130928, 13130944, - 22445632, + 22448448, 13130960, - 18506752, - 22695888, + 18509056, + 22698704, 13130992, 13131008, - 22534080, - 18506944, - 18583120, - 18727120, + 22536896, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18689776, + 18648864, + 18692624, 13131040, - 22438752, - 22445744, - 22438272, - 22538768, - 22444032, - 22466816, - 18507232, + 22441568, + 22448560, + 22441088, + 22541584, + 22446848, + 22469632, + 18509536, 13132832, 13131088, - 22534192, - 18777856, - 22488240, - 20598704, - 20602000, + 22537008, + 18780672, + 22491056, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, - 18689488, - 20755200, - 20571200, - 20692288, + 18692336, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -277095,71 +277095,71 @@ 14313008, 14313024, 14313040, - 22789840, - 22790720, - 18191808, - 18190816, + 22792656, + 22793536, + 18194112, + 18193120, 14313088, 14313104, - 18190896, - 18190992, + 18193200, + 18193296, 14313152, - 18191728, - 18191056, - 22446576, - 18686736, - 22808512, + 18194032, + 18193360, + 22449392, + 18689040, + 22811328, 14313232, - 17877168, - 22483328, + 17879472, + 22486144, 14313248, - 22482992, - 18169632, - 18691376, - 22438816, - 20753008, - 22500080, - 22439056, - 20762592, - 18687136, - 18689744, 22485808, - 22792192, - 18291104, - 18506768, - 18689760, - 20592464, - 20572960, - 18841872, - 18690352, - 18690576, + 18171936, + 18694224, + 22441632, + 20755824, + 22502896, + 22441872, + 20765408, + 18689440, + 18692592, + 22488624, + 22795008, + 18293408, + 18509072, + 18692608, + 20595280, + 20575776, + 18844688, + 18693200, + 18693424, 14313312, - 20572192, + 20575008, 17120160, - 20762944, - 20757440, - 20757680, - 20757728, - 20758432, - 20572784, - 22792272, - 20852448, - 22445216, - 20751216, - 18160112, - 18120160, - 22439056, - 22801600, - 18199632, - 22798496, - 22529232, - 22814400, - 22460896, - 22460960, - 22461040, - 22438224, - 18201920, - 22792336 + 20765760, + 20760256, + 20760496, + 20760544, + 20761248, + 20575600, + 22795088, + 20855264, + 22448032, + 20754032, + 18162416, + 18122464, + 22441872, + 22804416, + 18201936, + 22801312, + 22532048, + 22817216, + 22463712, + 22463776, + 22463856, + 22441040, + 18204224, + 22795152 ], "bases": [ { @@ -277329,15 +277329,15 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 64273560, + "vtable_address": 64277464, "methods": [ - 22629184, - 22629312, - 18933072, - 18741840, - 18742112, + 22632000, + 22632128, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -277507,9 +277507,9 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 64273632, + "vtable_address": 64277536, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -277679,9 +277679,9 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 64273656, + "vtable_address": 64277560, "methods": [ - 22490144, + 22492960, 14312720, 14312736, 14312752 @@ -277854,11 +277854,11 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 64273704, + "vtable_address": 64277608, "methods": [ - 22629200, - 22629264, - 22801584 + 22632016, + 22632080, + 22804400 ], "bases": [ { @@ -278028,9 +278028,9 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 64273744, + "vtable_address": 64277648, "methods": [ - 18202320 + 18204624 ], "bases": [ { @@ -278200,10 +278200,10 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 64273768, + "vtable_address": 64277672, "methods": [ - 22823008, - 22438032 + 22825824, + 22440848 ], "bases": [ { @@ -278373,39 +278373,39 @@ }, { "type_name": "C_CSPlayerPawn::NetworkVar_m_EconGloves", - "vtable_address": 64254216, + "vtable_address": 64258120, "methods": [ 17123728, - 22443616, - 22443632, - 28043040, - 27390912, - 27390368, - 27414144, - 27414608, - 27402544, - 27403088, - 27441216, - 27394928, - 27280048, - 27393680, + 22446432, + 22446448, + 28046304, + 27394112, + 27393568, + 27417344, + 27417808, + 27405744, + 27406288, + 27444416, + 27398128, + 27283216, + 27396880, 17047776, 17119696, 17119664, - 28050848, - 28050992, - 28051360, - 28051488, - 28052976, + 28054112, + 28054256, + 28054624, + 28054752, + 28056240, 17119648, 17123664, - 28051744, - 28051600, - 28051664, - 28052192, - 22447040, + 28055008, + 28054864, + 28054928, + 28055456, + 22449856, 17119632, - 22438192, + 22441008, 17119712, 17119728, 17119744, @@ -278444,12 +278444,12 @@ }, { "type_name": "C_CSPlayerPawn::NetworkVar_m_entitySpottedState", - "vtable_address": 64255184, + "vtable_address": 64259088, "methods": [ 16909312, - 22447104, - 17438816, - 22438240 + 22449920, + 17441120, + 22441056 ], "bases": [ { @@ -278471,33 +278471,33 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 64280696, + "vtable_address": 64284600, "methods": [ 14382944, - 22545120, - 22545872, - 20750064, - 20750208, - 20575696, - 22624368, - 20750256, - 21132352, - 20901232, - 21132336, - 22790880, - 20750416, - 18665760, + 22547936, + 22548688, + 20752880, + 20753024, + 20578512, + 22627184, + 20753072, + 21135168, + 20904048, + 21135152, + 22793696, + 20753232, + 18668064, 12233808, 12233824, - 20750976, - 18518336, - 18787392, - 18517184, - 18561584, + 20753792, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20751056, - 20572352, - 20572208, + 20753872, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -278506,24 +278506,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22543584, - 22911248, - 22824528, + 40000032, + 22546400, + 22914064, + 22827344, 12234080, - 22847408, - 22543568, - 18799200, + 22850224, + 22546384, + 18802016, 12234096, - 20632896, - 20582128, + 20635712, + 20584944, 12235472, 12235488, 13130816, @@ -278539,97 +278539,97 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, - 22445584, + 22448400, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 22443520, - 22823264, - 22791824, - 20859680, - 22791040, - 20750800, + 22446336, + 22826080, + 22794640, + 20862496, + 22793856, + 20753616, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 14313280, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20756816, - 18515488, - 20825088, - 18632768, - 20756720, - 20608144, - 20572192, - 20632416, - 18189872, + 20759632, + 18517792, + 20827904, + 18635072, + 20759536, + 20610960, + 20575008, + 20635232, + 18192176, 12572672, - 20762496, - 18507760, + 20765312, + 18510064, 12234800, - 20633648, + 20636464, 12572784, - 22486192, + 22489008, 12572784, 12234816, - 22669136, - 18689504, + 22671952, + 18692352, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, - 18508336, + 18510640, 12234912, 12234928, 12234944, @@ -278641,46 +278641,46 @@ 12235040, 12235056, 12235072, - 22438864, + 22441680, 12584080, 12583440, - 18840992, - 18689936, - 18508352, - 18690336, - 20576384, + 18843808, + 18692784, + 18510656, + 18693184, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, - 20572032, + 20574848, 12235152, 12235168, - 18691456, + 18694304, 12235440, - 18508336, - 22438880, + 18510640, + 22441696, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, - 18691232, + 18694080, 12235296, - 21705728, - 20751632, + 21708544, + 20754448, 12235312, 12235328, 12243168, - 20575840, - 22446784, - 20702256, + 20578656, + 22449600, + 20705072, 12572832, 12572592, 12572896, @@ -278692,77 +278692,77 @@ 12572832, 12572912, 12235344, - 20963104, + 20965920, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18761280, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18764096, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 22445600, + 22448416, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18689776, + 18648864, + 18692624, 13131040, - 18662672, - 22445744, + 18664976, + 22448560, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, - 18689488, - 20755200, - 20571200, - 20692288, + 18692336, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -278770,8 +278770,8 @@ 14313008, 14313024, 14313040, - 22789712, - 22790672, + 22792528, + 22793488, 14313056, 14313072, 14313088, @@ -278781,54 +278781,54 @@ 14313152, 14313168, 14313184, - 20750736, - 18686736, + 20753552, + 18689040, 14313216, 14313232, - 17877168, - 22483328, + 17879472, + 22486144, 14313248, - 22482992, - 18169632, - 18691376, - 20763776, - 20753008, - 20756288, - 22439056, - 20762592, - 18687136, - 18689744, - 20756352, - 22791840, + 22485808, + 18171936, + 18694224, + 20766592, + 20755824, + 20759104, + 22441872, + 20765408, + 18689440, + 18692592, + 20759168, + 22794656, 14313296, - 18506768, - 18689760, - 20592464, - 20572960, - 18841872, - 18690352, - 18690576, + 18509072, + 18692608, + 20595280, + 20575776, + 18844688, + 18693200, + 18693424, 14313312, - 20572192, + 20575008, 14313328, - 20762944, - 20757440, - 20757680, - 20757728, - 20758432, - 20572784, - 22792272, - 20852448, - 20751552, - 20751216, - 18120160, - 18120160, - 22439056, - 22438112, - 18190464, - 22572304, - 22438384, - 22812288 + 20765760, + 20760256, + 20760496, + 20760544, + 20761248, + 20575600, + 22795088, + 20855264, + 20754368, + 20754032, + 18122464, + 18122464, + 22441872, + 22440928, + 18192768, + 22575120, + 22441200, + 22815104 ], "bases": [ { @@ -278967,15 +278967,15 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 64283560, + "vtable_address": 64287464, "methods": [ - 22546272, - 22546688, - 18933072, - 18741840, - 18742112, + 22549088, + 22549504, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -279114,9 +279114,9 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 64283632, + "vtable_address": 64287536, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -279255,9 +279255,9 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 64283656, + "vtable_address": 64287560, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -279399,11 +279399,11 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 64283704, + "vtable_address": 64287608, "methods": [ - 22546080, - 22546480, - 22574496 + 22548896, + 22549296, + 22577312 ], "bases": [ { @@ -279542,33 +279542,33 @@ }, { "type_name": "C_CSPlayerResource", - "vtable_address": 63995008, + "vtable_address": 63998912, "methods": [ 14367152, - 18122176, - 18122192, + 18124480, + 18124496, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 18122400, - 21132352, - 21132672, - 21132336, - 18122416, - 18122448, - 21133440, + 21127072, + 18124704, + 21135168, + 21135488, + 21135152, + 18124720, + 18124752, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -279577,23 +279577,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18120224, - 18354624, - 18121568, + 40000032, + 18122528, + 18356928, + 18123872, 12234080, - 18135872, - 20571856, + 18138176, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -279610,13 +279610,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -279624,39 +279624,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -279670,33 +279670,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -279724,9 +279724,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -279734,24 +279734,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -279795,33 +279795,33 @@ }, { "type_name": "C_CSTeam", - "vtable_address": 64295112, + "vtable_address": 64299016, "methods": [ 14367152, - 22832832, - 22832672, + 22835648, + 22835488, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, 13119872, 13067024, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -279830,23 +279830,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823408, - 22826240, - 22824592, + 40000032, + 22826224, + 22829056, + 22827408, 12234080, - 22847536, + 22850352, 13055936, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -279863,13 +279863,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -279877,39 +279877,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -279923,33 +279923,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -279977,9 +279977,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -279987,24 +279987,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -280059,33 +280059,33 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 63797976, + "vtable_address": 63801880, "methods": [ 14371616, - 17474336, - 17475280, - 20584080, - 18604336, - 17704240, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17476640, + 17477584, + 20586896, + 18606640, + 17706544, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -280094,24 +280094,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439152, - 17708928, - 17442608, + 40000032, + 17441456, + 17711232, + 17444912, 12234080, - 17462848, - 17439136, - 18799200, + 17465152, + 17441440, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -280122,98 +280122,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -280224,26 +280224,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -280251,24 +280251,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -280280,222 +280280,222 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17562960, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17565264, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17438784, - 17439200, - 17634912, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17545792, - 17544016, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17441088, + 17441504, + 17637216, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17548096, + 17546320, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200 ], "bases": [ { @@ -280654,15 +280654,15 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 63801472, + "vtable_address": 63805376, "methods": [ - 17475248, - 17475376, - 18933072, - 18741840, - 18742112, + 17477552, + 17477680, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -280821,9 +280821,9 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 63801544, + "vtable_address": 63805448, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -280982,12 +280982,12 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 63801568, + "vtable_address": 63805472, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -281146,14 +281146,14 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 63801616, + "vtable_address": 63805520, "methods": [ - 17442624, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444928, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -281312,10 +281312,10 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 63801680, + "vtable_address": 63805584, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -281474,11 +281474,11 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 63801712, + "vtable_address": 63805616, "methods": [ - 17475264, - 17475328, - 17514944 + 17477568, + 17477632, + 17517248 ], "bases": [ { @@ -281637,7 +281637,7 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 65631392, + "vtable_address": 65635296, "methods": [], "bases": [], "model": { @@ -281648,33 +281648,33 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 63907928, + "vtable_address": 63911832, "methods": [ 14371616, - 17475824, - 17476112, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17478128, + 17478416, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -281683,24 +281683,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439584, - 17708928, - 17442560, + 40000032, + 17441888, + 17711232, + 17444864, 12234080, - 17465168, - 17439568, - 18799200, + 17467472, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -281711,98 +281711,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -281813,26 +281813,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -281840,24 +281840,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -281869,224 +281869,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -282256,15 +282256,15 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 63911440, + "vtable_address": 63915344, "methods": [ - 17475920, - 17476240, - 18933072, - 18741840, - 18742112, + 17478224, + 17478544, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -282434,9 +282434,9 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 63911512, + "vtable_address": 63915416, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -282606,12 +282606,12 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 63911536, + "vtable_address": 63915440, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -282781,14 +282781,14 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 63911584, + "vtable_address": 63915488, "methods": [ - 17442576, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444880, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -282958,10 +282958,10 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 63911648, + "vtable_address": 63915552, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -283131,11 +283131,11 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 63911680, + "vtable_address": 63915584, "methods": [ - 17476016, - 17476368, - 17514944 + 17478320, + 17478672, + 17517248 ], "bases": [ { @@ -283305,7 +283305,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65630208, + "vtable_address": 65634112, "methods": [], "bases": [], "model": { @@ -283316,7 +283316,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65632960, + "vtable_address": 65636864, "methods": [], "bases": [], "model": { @@ -283327,7 +283327,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633088, + "vtable_address": 65636992, "methods": [], "bases": [], "model": { @@ -283338,7 +283338,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633216, + "vtable_address": 65637120, "methods": [], "bases": [], "model": { @@ -283349,7 +283349,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633344, + "vtable_address": 65637248, "methods": [], "bases": [], "model": { @@ -283360,7 +283360,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633472, + "vtable_address": 65637376, "methods": [], "bases": [], "model": { @@ -283371,7 +283371,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633600, + "vtable_address": 65637504, "methods": [], "bases": [], "model": { @@ -283382,7 +283382,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633728, + "vtable_address": 65637632, "methods": [], "bases": [], "model": { @@ -283393,7 +283393,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633856, + "vtable_address": 65637760, "methods": [], "bases": [], "model": { @@ -283404,7 +283404,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65633984, + "vtable_address": 65637888, "methods": [], "bases": [], "model": { @@ -283415,7 +283415,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65634112, + "vtable_address": 65638016, "methods": [], "bases": [], "model": { @@ -283426,7 +283426,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65634240, + "vtable_address": 65638144, "methods": [], "bases": [], "model": { @@ -283437,7 +283437,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65634368, + "vtable_address": 65638272, "methods": [], "bases": [], "model": { @@ -283448,7 +283448,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65634496, + "vtable_address": 65638400, "methods": [], "bases": [], "model": { @@ -283459,7 +283459,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65634624, + "vtable_address": 65638528, "methods": [], "bases": [], "model": { @@ -283470,7 +283470,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65634752, + "vtable_address": 65638656, "methods": [], "bases": [], "model": { @@ -283481,7 +283481,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65634880, + "vtable_address": 65638784, "methods": [], "bases": [], "model": { @@ -283492,7 +283492,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635008, + "vtable_address": 65638912, "methods": [], "bases": [], "model": { @@ -283503,7 +283503,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635136, + "vtable_address": 65639040, "methods": [], "bases": [], "model": { @@ -283514,7 +283514,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635264, + "vtable_address": 65639168, "methods": [], "bases": [], "model": { @@ -283525,7 +283525,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635392, + "vtable_address": 65639296, "methods": [], "bases": [], "model": { @@ -283536,7 +283536,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635520, + "vtable_address": 65639424, "methods": [], "bases": [], "model": { @@ -283547,7 +283547,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635648, + "vtable_address": 65639552, "methods": [], "bases": [], "model": { @@ -283558,7 +283558,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635776, + "vtable_address": 65639680, "methods": [], "bases": [], "model": { @@ -283569,7 +283569,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65635904, + "vtable_address": 65639808, "methods": [], "bases": [], "model": { @@ -283580,7 +283580,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65636032, + "vtable_address": 65639936, "methods": [], "bases": [], "model": { @@ -283591,7 +283591,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65636160, + "vtable_address": 65640064, "methods": [], "bases": [], "model": { @@ -283602,7 +283602,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65636288, + "vtable_address": 65640192, "methods": [], "bases": [], "model": { @@ -283613,7 +283613,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65636416, + "vtable_address": 65640320, "methods": [], "bases": [], "model": { @@ -283624,7 +283624,7 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 65661600, + "vtable_address": 65665504, "methods": [], "bases": [], "model": { @@ -283635,33 +283635,33 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 63923048, + "vtable_address": 63926952, "methods": [ 14371616, - 17496656, - 17496944, - 20584080, - 18604336, - 17704240, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17498960, + 17499248, + 20586896, + 18606640, + 17706544, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -283670,24 +283670,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440064, - 17708928, - 17441072, + 40000032, + 17442368, + 17711232, + 17443376, 12234080, - 17465488, - 17439136, - 18799200, + 17467792, + 17441440, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -283698,98 +283698,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -283800,26 +283800,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -283827,24 +283827,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -283856,222 +283856,222 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17562960, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17565264, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17438784, - 17439200, - 17634912, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17545792, - 17544304, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17441088, + 17441504, + 17637216, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17548096, + 17546608, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200 ], "bases": [ { @@ -284241,15 +284241,15 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 63926544, + "vtable_address": 63930448, "methods": [ - 17496752, - 17497072, - 18933072, - 18741840, - 18742112, + 17499056, + 17499376, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -284419,9 +284419,9 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 63926616, + "vtable_address": 63930520, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -284591,12 +284591,12 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 63926640, + "vtable_address": 63930544, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -284766,14 +284766,14 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 63926688, + "vtable_address": 63930592, "methods": [ - 17441088, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443392, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -284943,10 +284943,10 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 63926752, + "vtable_address": 63930656, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -285116,11 +285116,11 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 63926784, + "vtable_address": 63930688, "methods": [ - 17496848, - 17497200, - 17514944 + 17499152, + 17499504, + 17517248 ], "bases": [ { @@ -285290,7 +285290,7 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 65631520, + "vtable_address": 65635424, "methods": [], "bases": [], "model": { @@ -285301,7 +285301,7 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 65631648, + "vtable_address": 65635552, "methods": [], "bases": [], "model": { @@ -285312,7 +285312,7 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 65631776, + "vtable_address": 65635680, "methods": [], "bases": [], "model": { @@ -285323,33 +285323,33 @@ }, { "type_name": "C_Chicken", - "vtable_address": 64365208, + "vtable_address": 64369112, "methods": [ 14381312, - 23437104, - 23437360, - 18931456, - 18604336, - 18710128, - 18551600, - 19267248, - 21132352, - 23496752, - 21132336, - 23496976, - 19040368, - 18665760, + 23439856, + 23440112, + 18934272, + 18606640, + 18712976, + 18553904, + 19270064, + 21135168, + 23499504, + 21135152, + 23499728, + 19043184, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -285358,24 +285358,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 23436384, - 23497600, - 23436896, + 40000032, + 23439136, + 23500352, + 23439648, 12234080, - 23440512, - 18609696, - 18799200, + 23443264, + 18612000, + 18802016, 12234096, - 20632896, - 23436976, + 20635712, + 23439728, 12235472, 12235488, 13130816, @@ -285390,14 +285390,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -285405,86 +285405,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 23496880, - 18767008, - 20572064, - 23496656, - 20623632, + 20586576, + 23499632, + 18769824, + 20574880, + 23499408, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 23496832, - 21812224, + 23499584, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -285502,12 +285502,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -285515,24 +285515,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -285544,78 +285544,78 @@ 12572832, 12572912, 12235344, - 23497056, + 23499808, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 23436208, + 23438960, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968, - 23436224, - 23436256, - 23439520, - 23436288, - 23436368 + 18712816, + 23438976, + 23439008, + 23442272, + 23439040, + 23439120 ], "bases": [ { @@ -285733,15 +285733,15 @@ }, { "type_name": "C_Chicken", - "vtable_address": 64367552, + "vtable_address": 64371456, "methods": [ - 23437344, - 23439472, - 18933072, - 18741840, - 18742112, + 23440096, + 23442224, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -285859,9 +285859,9 @@ }, { "type_name": "C_Chicken", - "vtable_address": 64367624, + "vtable_address": 64371528, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -285979,14 +285979,14 @@ }, { "type_name": "C_Chicken", - "vtable_address": 64367648, + "vtable_address": 64371552, "methods": [ - 23436912, - 23436240, - 23436272, - 23439616, - 23436304, - 23439056 + 23439664, + 23438992, + 23439024, + 23442368, + 23439056, + 23441808 ], "bases": [ { @@ -286104,20 +286104,20 @@ }, { "type_name": "C_Chicken::NetworkVar_m_AttributeManager", - "vtable_address": 64364488, + "vtable_address": 64368392, "methods": [ - 22826544, - 27279008, - 23438080, - 22823248, - 23436320, - 23437040, - 23437056, - 27325456, - 27331264, - 27279024, - 27553632, - 27554144 + 22829360, + 27282176, + 23440832, + 22826064, + 23439072, + 23439792, + 23439808, + 27328624, + 27334432, + 27282192, + 27556864, + 27557376 ], "bases": [ { @@ -286150,32 +286150,32 @@ }, { "type_name": "C_ClientRagdoll", - "vtable_address": 63385016, + "vtable_address": 63388920, "methods": [ 14381312, 14316720, 14316816, - 18931456, - 18604336, - 18517136, - 18551600, - 20765504, - 21132352, - 18750864, - 21132336, - 18932480, - 20766976, - 18665760, + 18934272, + 18606640, + 18519440, + 18553904, + 20768320, + 21135168, + 18753680, + 21135152, + 18935296, + 20769792, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 20765840, - 20572352, + 20768656, + 20575168, 14321360, 12233840, 12233856, @@ -286185,23 +286185,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20765072, + 40000032, + 20767888, 14313408, 14313824, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -286218,13 +286218,13 @@ 12234304, 14313424, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -286232,79 +286232,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 14313440, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, - 20765856, + 20610960, + 20575008, + 20574880, + 20768672, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20766176, - 21812224, + 20768992, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20633488, - 18767216, - 18741488, - 18562848, + 20636304, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -286329,12 +286329,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -286342,24 +286342,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -286371,66 +286371,66 @@ 12572832, 12572912, 12235344, - 20765760, + 20768576, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 14313456, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -286505,15 +286505,15 @@ }, { "type_name": "C_ClientRagdoll", - "vtable_address": 63387264, + "vtable_address": 63391168, "methods": [ 14316768, 14316896, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -286588,9 +286588,9 @@ }, { "type_name": "C_ClientRagdoll", - "vtable_address": 63387336, + "vtable_address": 63391240, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -286665,33 +286665,33 @@ }, { "type_name": "C_ColorCorrection", - "vtable_address": 63387360, + "vtable_address": 63391264, "methods": [ 14367152, 14319920, 14319936, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21130976, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21133792, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -286700,23 +286700,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14313472, 14313408, 14314160, 12234080, 14345728, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -286733,13 +286733,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -286747,39 +286747,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20572064, - 20901072, - 20572064, - 20828864, - 20623632, + 20586576, + 20574880, + 20903888, + 20574880, + 20831680, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -286793,33 +286793,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -286847,9 +286847,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -286857,24 +286857,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -286886,7 +286886,7 @@ 12572832, 12572912, 12235344, - 20767616 + 20770432 ], "bases": [ { @@ -286919,32 +286919,32 @@ }, { "type_name": "C_ColorCorrectionVolume", - "vtable_address": 64134168, + "vtable_address": 64138072, "methods": [ 14368000, - 20627728, - 20628784, - 18931408, - 39987824, - 18645760, - 18645648, + 20630544, + 20631600, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, - 20582304, - 18665616, + 20585120, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -286954,23 +286954,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20572816, - 20582368, - 20577664, + 40000032, + 20575632, + 20585184, + 20580480, 12234080, - 20667216, - 20572800, - 18799200, + 20670032, + 20575616, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -286987,13 +286987,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -287001,41 +287001,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 20572064, - 18767008, - 20572064, - 20828784, - 20623632, + 20586576, + 20574880, + 18769824, + 20574880, + 20831600, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -287047,33 +287047,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -287101,9 +287101,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -287111,24 +287111,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -287140,36 +287140,36 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 20580880, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 20583696, 12574432, - 20576608, - 20576672, + 20579424, + 20579488, 12574432, 12580032, 12574496, @@ -287259,15 +287259,15 @@ }, { "type_name": "C_ColorCorrectionVolume", - "vtable_address": 64136208, + "vtable_address": 64140112, "methods": [ - 20628256, - 20629328, - 18933072, - 18741840, - 18742112, + 20631072, + 20632144, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -287353,9 +287353,9 @@ }, { "type_name": "C_ColorCorrectionVolume", - "vtable_address": 64136280, + "vtable_address": 64140184, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -287441,33 +287441,33 @@ }, { "type_name": "C_CsmFovOverride", - "vtable_address": 64317784, + "vtable_address": 64321688, "methods": [ 14367152, - 22826176, - 22830624, + 22828992, + 22833440, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -287476,23 +287476,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823616, - 22915520, - 22824768, + 40000032, + 22826432, + 22918336, + 22827584, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -287509,13 +287509,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -287523,39 +287523,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -287569,33 +287569,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -287623,9 +287623,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -287633,24 +287633,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -287694,33 +287694,33 @@ }, { "type_name": "C_DEagle", - "vtable_address": 63930616, + "vtable_address": 63934520, "methods": [ 14371616, - 17495312, - 17495600, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17497616, + 17497904, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -287729,24 +287729,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440224, - 17708928, - 17441120, + 40000032, + 17442528, + 17711232, + 17443424, 12234080, - 17465648, - 17440176, - 18799200, + 17467952, + 17442480, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -287757,98 +287757,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -287859,26 +287859,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -287886,24 +287886,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -287915,224 +287915,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -288313,15 +288313,15 @@ }, { "type_name": "C_DEagle", - "vtable_address": 63934128, + "vtable_address": 63938032, "methods": [ - 17495408, - 17495728, - 18933072, - 18741840, - 18742112, + 17497712, + 17498032, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -288502,9 +288502,9 @@ }, { "type_name": "C_DEagle", - "vtable_address": 63934200, + "vtable_address": 63938104, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -288685,12 +288685,12 @@ }, { "type_name": "C_DEagle", - "vtable_address": 63934224, + "vtable_address": 63938128, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -288871,14 +288871,14 @@ }, { "type_name": "C_DEagle", - "vtable_address": 63934272, + "vtable_address": 63938176, "methods": [ - 17441136, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443440, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -289059,10 +289059,10 @@ }, { "type_name": "C_DEagle", - "vtable_address": 63934336, + "vtable_address": 63938240, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -289243,11 +289243,11 @@ }, { "type_name": "C_DEagle", - "vtable_address": 63934368, + "vtable_address": 63938272, "methods": [ - 17495504, - 17495856, - 17514944 + 17497808, + 17498160, + 17517248 ], "bases": [ { @@ -289428,33 +289428,33 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 63934408, + "vtable_address": 63938312, "methods": [ 14371616, - 17502272, - 17505632, - 20584080, - 18604336, - 17292992, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17504576, + 17507936, + 20586896, + 18606640, + 17295296, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -289463,24 +289463,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440320, - 17450928, - 17440880, + 40000032, + 17442624, + 17453232, + 17443184, 12234080, - 17465728, - 17440272, - 18799200, + 17468032, + 17442576, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -289491,98 +289491,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17293024, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17295328, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -289593,26 +289593,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -289620,24 +289620,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -289649,227 +289649,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17293568, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17437024, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17287328, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17295872, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17439328, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17289632, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17287216, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17289520, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17293008, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17309904, - 17304544, - 17409584, - 17409680, - 17437680, - 17448944, - 17424672, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17437360, - 17293632, - 17543792, - 17293152, - 17540816, - 17561728, - 17546560, - 17547488, - 17437584, - 17286832, - 17514800, - 17439168, - 17286864, - 17287280, - 17286896, - 17409520, - 17287232, - 17305632, - 17440256, - 17440240 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17295312, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17312208, + 17306848, + 17411888, + 17411984, + 17439984, + 17451248, + 17426976, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17439664, + 17295936, + 17546096, + 17295456, + 17543120, + 17564032, + 17548864, + 17549792, + 17439888, + 17289136, + 17517104, + 17441472, + 17289168, + 17289584, + 17289200, + 17411824, + 17289536, + 17307936, + 17442560, + 17442544 ], "bases": [ { @@ -290050,15 +290050,15 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 63937944, + "vtable_address": 63941848, "methods": [ - 17500032, - 17503392, - 18933072, - 18741840, - 18742112, + 17502336, + 17505696, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -290239,9 +290239,9 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 63938016, + "vtable_address": 63941920, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -290422,12 +290422,12 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 63938040, + "vtable_address": 63941944, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -290608,14 +290608,14 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 63938088, + "vtable_address": 63941992, "methods": [ - 17440896, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443200, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -290796,10 +290796,10 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 63938152, + "vtable_address": 63942056, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -290980,11 +290980,11 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 63938184, + "vtable_address": 63942088, "methods": [ - 17501152, - 17504512, - 17514944 + 17503456, + 17506816, + 17517248 ], "bases": [ { @@ -291165,33 +291165,33 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 63758600, + "vtable_address": 63762504, "methods": [ 14371616, - 17301952, - 17302624, - 20584080, - 18604336, + 17304256, + 17304928, + 20586896, + 18606640, 17042416, - 18551600, - 17436560, - 21132352, - 17435648, - 21132336, - 20962400, - 17435072, - 18665760, + 18553904, + 17438864, + 21135168, + 17437952, + 21135152, + 20965216, + 17437376, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -291200,23 +291200,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17286976, - 17436608, - 17288976, + 40000032, + 17289280, + 17438912, + 17291280, 12234080, - 17316320, + 17318624, 16907424, - 18799200, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -291233,93 +291233,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 17293728, - 17293952, - 18513744, + 17296032, + 17296256, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 17290512, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 17292816, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17360544, - 21812224, + 17362848, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -291344,12 +291344,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -291357,24 +291357,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -291386,71 +291386,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 16907264, 16907440, @@ -291460,7 +291460,7 @@ 16907840, 16907296, 16907456, - 17286960, + 17289264, 16907328, 16907344 ], @@ -291580,15 +291580,15 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 63760984, + "vtable_address": 63764888, "methods": [ - 17302096, - 17302800, - 18933072, - 18741840, - 18742112, + 17304400, + 17305104, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -291706,9 +291706,9 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 63761056, + "vtable_address": 63764960, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -291826,9 +291826,9 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 63761080, + "vtable_address": 63764984, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -291949,33 +291949,33 @@ }, { "type_name": "C_DynamicLight", - "vtable_address": 64136912, + "vtable_address": 64140816, "methods": [ 14368000, - 20578000, - 20578096, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 20576736, - 18665616, + 20580816, + 20580912, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 20579552, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -291984,23 +291984,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20572832, - 21133712, - 20577648, + 40000032, + 20575648, + 21136528, + 20580464, 12234080, - 20667344, - 18666928, - 18799200, + 20670160, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -292017,13 +292017,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -292031,41 +292031,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 20572064, - 18767008, - 20572064, - 20707136, - 20623632, + 20586576, + 20574880, + 18769824, + 20574880, + 20709952, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -292077,33 +292077,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20771312, - 21812224, + 20774128, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -292131,9 +292131,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -292141,24 +292141,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -292170,32 +292170,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -292259,15 +292259,15 @@ }, { "type_name": "C_DynamicLight", - "vtable_address": 64138888, + "vtable_address": 64142792, "methods": [ - 20578048, - 20578176, - 18933072, - 18741840, - 18742112, + 20580864, + 20580992, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -292331,9 +292331,9 @@ }, { "type_name": "C_DynamicLight", - "vtable_address": 64138960, + "vtable_address": 64142864, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -292397,33 +292397,33 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 63448968, + "vtable_address": 63452872, "methods": [ 14381312, - 19039584, - 19040256, - 18931456, - 18604336, - 18710128, - 18551600, - 19267248, - 21132352, - 18750864, - 21132336, - 19040352, - 19040368, - 18665760, + 19042400, + 19043072, + 18934272, + 18606640, + 18712976, + 18553904, + 19270064, + 21135168, + 18753680, + 21135152, + 19043168, + 19043184, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -292432,23 +292432,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 19038864, + 40000032, + 19041680, 14513824, 14478320, 12234080, 14493968, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -292464,14 +292464,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -292479,86 +292479,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 19040384, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 19043200, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -292576,12 +292576,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -292589,24 +292589,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -292618,73 +292618,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -292781,15 +292781,15 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 63451272, + "vtable_address": 63455176, "methods": [ - 19040240, - 19040304, - 18933072, - 18741840, - 18742112, + 19043056, + 19043120, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -292886,9 +292886,9 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 63451344, + "vtable_address": 63455248, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -292985,7 +292985,7 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 65513792, + "vtable_address": 65517696, "methods": [], "bases": [], "model": { @@ -292996,7 +292996,7 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 65513984, + "vtable_address": 65517888, "methods": [], "bases": [], "model": { @@ -293007,7 +293007,7 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 65514176, + "vtable_address": 65518080, "methods": [], "bases": [], "model": { @@ -293018,7 +293018,7 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 65614016, + "vtable_address": 65617920, "methods": [], "bases": [], "model": { @@ -293029,33 +293029,33 @@ }, { "type_name": "C_DynamicPropAlias_cable_dynamic", - "vtable_address": 63456168, + "vtable_address": 63460072, "methods": [ 14381312, 14477504, 14477600, - 18931456, - 18604336, - 18710128, - 18551600, - 19267248, - 21132352, - 18750864, - 21132336, - 19040352, - 19040368, - 18665760, + 18934272, + 18606640, + 18712976, + 18553904, + 19270064, + 21135168, + 18753680, + 21135152, + 19043168, + 19043184, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -293064,23 +293064,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14476864, 14513824, 14478272, 12234080, 14493968, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -293096,14 +293096,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -293111,86 +293111,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 19040384, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 19043200, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -293208,12 +293208,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -293221,24 +293221,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -293250,73 +293250,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -293424,15 +293424,15 @@ }, { "type_name": "C_DynamicPropAlias_cable_dynamic", - "vtable_address": 63458472, + "vtable_address": 63462376, "methods": [ 14477552, 14477680, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -293540,9 +293540,9 @@ }, { "type_name": "C_DynamicPropAlias_cable_dynamic", - "vtable_address": 63458544, + "vtable_address": 63462448, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -293650,33 +293650,33 @@ }, { "type_name": "C_DynamicPropAlias_dynamic_prop", - "vtable_address": 63451368, + "vtable_address": 63455272, "methods": [ 14381312, 14478016, 14478112, - 18931456, - 18604336, - 18710128, - 18551600, - 19267248, - 21132352, - 18750864, - 21132336, - 19040352, - 19040368, - 18665760, + 18934272, + 18606640, + 18712976, + 18553904, + 19270064, + 21135168, + 18753680, + 21135152, + 19043168, + 19043184, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -293685,23 +293685,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14476832, 14513824, 14478304, 12234080, 14493968, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -293717,14 +293717,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -293732,86 +293732,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 19040384, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 19043200, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -293829,12 +293829,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -293842,24 +293842,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -293871,73 +293871,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -294045,15 +294045,15 @@ }, { "type_name": "C_DynamicPropAlias_dynamic_prop", - "vtable_address": 63453672, + "vtable_address": 63457576, "methods": [ 14478064, 14478192, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -294161,9 +294161,9 @@ }, { "type_name": "C_DynamicPropAlias_dynamic_prop", - "vtable_address": 63453744, + "vtable_address": 63457648, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -294271,33 +294271,33 @@ }, { "type_name": "C_DynamicPropAlias_prop_dynamic_override", - "vtable_address": 63453768, + "vtable_address": 63457672, "methods": [ 14381312, 14477760, 14477856, - 18931456, - 18604336, - 18710128, - 18551600, - 19267248, - 21132352, - 18750864, - 21132336, - 19040352, - 19040368, - 18665760, + 18934272, + 18606640, + 18712976, + 18553904, + 19270064, + 21135168, + 18753680, + 21135152, + 19043168, + 19043184, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -294306,23 +294306,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14476848, 14513824, 14478288, 12234080, 14493968, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -294338,14 +294338,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -294353,86 +294353,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 19040384, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 19043200, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -294450,12 +294450,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -294463,24 +294463,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -294492,73 +294492,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -294666,15 +294666,15 @@ }, { "type_name": "C_DynamicPropAlias_prop_dynamic_override", - "vtable_address": 63456072, + "vtable_address": 63459976, "methods": [ 14477808, 14477936, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -294782,9 +294782,9 @@ }, { "type_name": "C_DynamicPropAlias_prop_dynamic_override", - "vtable_address": 63456144, + "vtable_address": 63460048, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -294892,33 +294892,33 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 64575752, + "vtable_address": 64579656, "methods": [ 14371616, - 27675568, - 27676384, - 20584080, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 28013200, - 21132336, - 20962400, - 28012864, - 28012992, + 27678832, + 27679648, + 20586896, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 28016464, + 21135152, + 20965216, + 28016128, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -294927,23 +294927,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27279376, - 28013648, - 27284160, + 40000032, + 27282544, + 28016912, + 27287328, 12234080, - 27335552, - 20717200, - 18799200, + 27338752, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -294960,93 +294960,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 28013296, - 28013152, + 20586576, + 18656624, + 18769824, + 20862496, + 28016560, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -295071,12 +295071,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -295084,24 +295084,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -295113,101 +295113,101 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 27313584, - 27313872, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504 + 27316752, + 27317040, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672 ], "bases": [ { @@ -295323,15 +295323,15 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 64578280, + "vtable_address": 64582184, "methods": [ - 27676368, - 27676432, - 18933072, - 18741840, - 18742112, + 27679632, + 27679696, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -295447,9 +295447,9 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 64578352, + "vtable_address": 64582256, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -295565,9 +295565,9 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 64578376, + "vtable_address": 64582280, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -295686,14 +295686,14 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 64578424, + "vtable_address": 64582328, "methods": [ - 27284176, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 27287344, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -295809,10 +295809,10 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 64578488, + "vtable_address": 64582392, "methods": [ - 27313728, - 27314000 + 27316896, + 27317168 ], "bases": [ { @@ -295928,20 +295928,20 @@ }, { "type_name": "C_EconEntity::NetworkVar_m_AttributeManager", - "vtable_address": 64570744, + "vtable_address": 64574648, "methods": [ - 22826544, - 27279008, - 27294976, - 22823248, - 27278672, - 27679152, - 27675520, - 27325456, - 27331264, - 27279024, - 27553632, - 27554144 + 22829360, + 27282176, + 27298144, + 22826064, + 27281840, + 27682416, + 27678784, + 27328624, + 27334432, + 27282192, + 27556864, + 27557376 ], "bases": [ { @@ -295974,39 +295974,39 @@ }, { "type_name": "C_EconItemView", - "vtable_address": 64593648, + "vtable_address": 64597552, "methods": [ 17123728, - 28084048, - 28085168, - 28043040, - 27390912, - 27390368, - 27414144, - 27414608, - 27402544, - 27403088, - 27441216, - 27394928, - 27280048, - 27393680, + 28087312, + 28088432, + 28046304, + 27394112, + 27393568, + 27417344, + 27417808, + 27405744, + 27406288, + 27444416, + 27398128, + 27283216, + 27396880, 17047776, 17119696, 17119664, - 28050848, - 28050992, - 28051360, - 28051488, - 28052976, + 28054112, + 28054256, + 28054624, + 28054752, + 28056240, 17119648, 17123664, - 28051744, - 28051600, - 28051664, - 28052192, - 28024208, + 28055008, + 28054864, + 28054928, + 28055456, + 28027472, 17119632, - 28024224, + 28027488, 17119712, 17119728, 17119744, @@ -296034,7 +296034,7 @@ }, { "type_name": "C_EconItemView", - "vtable_address": 64601360, + "vtable_address": 64605264, "methods": [], "bases": [], "model": { @@ -296045,12 +296045,12 @@ }, { "type_name": "C_EconItemView::NetworkVar_m_AttributeList", - "vtable_address": 64592248, + "vtable_address": 64596152, "methods": [ - 28027264, - 28030464, - 28024176, - 28024240 + 28030528, + 28033728, + 28027440, + 28027504 ], "bases": [ { @@ -296072,12 +296072,12 @@ }, { "type_name": "C_EconItemView::NetworkVar_m_NetworkedDynamicAttributes", - "vtable_address": 64592296, + "vtable_address": 64596200, "methods": [ - 28027264, 28030528, - 28024176, - 28024272 + 28033792, + 28027440, + 28027536 ], "bases": [ { @@ -296099,33 +296099,33 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 64596904, + "vtable_address": 64600808, "methods": [ 14371616, - 28028448, - 28028624, - 20584080, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 28013200, - 21132336, - 20962400, - 28012864, - 28012992, + 28031712, + 28031888, + 20586896, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 28016464, + 21135152, + 20965216, + 28016128, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -296134,23 +296134,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 28024896, - 28028864, - 28027280, + 40000032, + 28028160, + 28032128, + 28030544, 12234080, - 28043808, - 20717200, - 18799200, + 28047072, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -296167,93 +296167,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 28040704, - 18767008, - 20859680, - 28028064, - 28013152, + 20586576, + 28043968, + 18769824, + 20862496, + 28031328, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 28159248, - 21812224, + 28162512, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -296278,12 +296278,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -296291,24 +296291,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -296320,113 +296320,113 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 27313584, - 27313872, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 28041648, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 28024832, - 28027824, - 28024912, - 28024848, - 28031968, - 28027936, - 28027808, - 28049104, - 28024864, - 28024944, - 28053136, - 28024880 + 27316752, + 27317040, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 28044912, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 28028096, + 28031088, + 28028176, + 28028112, + 28035232, + 28031200, + 28031072, + 28052368, + 28028128, + 28028208, + 28056400, + 28028144 ], "bases": [ { @@ -296553,15 +296553,15 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 64599528, + "vtable_address": 64603432, "methods": [ - 28028528, - 28028736, - 18933072, - 18741840, - 18742112, + 28031792, + 28032000, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -296688,9 +296688,9 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 64599600, + "vtable_address": 64603504, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -296817,9 +296817,9 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 64599624, + "vtable_address": 64603528, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -296949,14 +296949,14 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 64599672, + "vtable_address": 64603576, "methods": [ - 28027296, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 28030560, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -297083,10 +297083,10 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 64599736, + "vtable_address": 64603640, "methods": [ - 27313728, - 27314000 + 27316896, + 27317168 ], "bases": [ { @@ -297213,33 +297213,33 @@ }, { "type_name": "C_EconWearableGib", - "vtable_address": 64594136, + "vtable_address": 64598040, "methods": [ 14371616, - 28028336, - 28033440, - 20584080, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 28013200, - 21132336, - 20962400, - 28012864, - 28012992, + 28031600, + 28036704, + 20586896, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 28016464, + 21135152, + 20965216, + 28016128, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -297248,23 +297248,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27279376, - 28013648, - 27284160, + 40000032, + 27282544, + 28016912, + 27287328, 12234080, - 27335552, - 20717200, - 18799200, + 27338752, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -297281,93 +297281,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 28013296, - 28013152, + 20586576, + 18656624, + 18769824, + 20862496, + 28016560, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, - 28024960, + 20610960, + 20575008, + 20574880, + 28028224, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 28037312, - 21812224, + 28040576, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -297392,12 +297392,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -297405,24 +297405,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -297434,101 +297434,101 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 27313584, - 27313872, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 28028032, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504 + 27316752, + 27317040, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 28031296, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672 ], "bases": [ { @@ -297655,15 +297655,15 @@ }, { "type_name": "C_EconWearableGib", - "vtable_address": 64596664, + "vtable_address": 64600568, "methods": [ - 28033696, - 28033568, - 18933072, - 18741840, - 18742112, + 28036960, + 28036832, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -297790,9 +297790,9 @@ }, { "type_name": "C_EconWearableGib", - "vtable_address": 64596736, + "vtable_address": 64600640, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -297919,9 +297919,9 @@ }, { "type_name": "C_EconWearableGib", - "vtable_address": 64596760, + "vtable_address": 64600664, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -298051,14 +298051,14 @@ }, { "type_name": "C_EconWearableGib", - "vtable_address": 64596808, + "vtable_address": 64600712, "methods": [ - 27284176, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 27287344, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -298185,10 +298185,10 @@ }, { "type_name": "C_EconWearableGib", - "vtable_address": 64596872, + "vtable_address": 64600776, "methods": [ - 27313728, - 27314000 + 27316896, + 27317168 ], "bases": [ { @@ -298315,33 +298315,33 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 63393344, + "vtable_address": 63397248, "methods": [ 14368000, 14317232, 14317360, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 20774928, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 20777744, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -298350,23 +298350,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14313552, 14313408, 14314016, 12234080, 14346112, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -298383,13 +298383,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -298397,41 +298397,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 14313536, - 18767008, - 20572064, - 20774832, - 20623632, + 18769824, + 20574880, + 20777648, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -298443,33 +298443,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20775584, - 21812224, + 20778400, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -298497,9 +298497,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -298507,24 +298507,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20774704, - 20702256, + 20578656, + 20777520, + 20705072, 12572832, 12572592, 12572896, @@ -298536,33 +298536,33 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 20775008 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 20777824 ], "bases": [ { @@ -298636,15 +298636,15 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 63395328, + "vtable_address": 63399232, "methods": [ 14317296, 14317440, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -298718,9 +298718,9 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 63395400, + "vtable_address": 63399304, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -298794,10 +298794,10 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 63395424, + "vtable_address": 63399328, "methods": [ 12572384, - 20775424, + 20778240, 14312688, 14312704 ], @@ -298873,33 +298873,33 @@ }, { "type_name": "C_EntityFlame", - "vtable_address": 63405248, + "vtable_address": 63409152, "methods": [ 14367152, 14419264, 14432512, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128912, - 21131040, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131728, + 21133856, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -298908,23 +298908,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20776528, + 40000032, + 20779344, 14476704, 14419376, 12234080, 14441008, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -298941,13 +298941,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -298955,39 +298955,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20778576, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20781392, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -299001,33 +299001,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20778960, - 21812224, + 20781776, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -299055,9 +299055,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -299065,24 +299065,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -299126,32 +299126,32 @@ }, { "type_name": "C_EnvCombinedLightProbeVolume", - "vtable_address": 63166696, + "vtable_address": 63170600, "methods": [ 14367152, 12801824, 12802224, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12578016, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12692128, 12579008, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12578224, 12233840, 12233856, @@ -299161,23 +299161,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12574960, 12884144, 12576640, 12234080, 12620784, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -299194,13 +299194,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -299208,39 +299208,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12574944, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12574976, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -299254,33 +299254,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, 12680080, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -299308,9 +299308,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -299318,24 +299318,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -299421,7 +299421,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolume", - "vtable_address": 63168464, + "vtable_address": 63172368, "methods": [ 12802192, 12802320, @@ -299506,7 +299506,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolume", - "vtable_address": 63168552, + "vtable_address": 63172456, "methods": [ 12802208, 12802272, @@ -299591,7 +299591,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolume", - "vtable_address": 65350272, + "vtable_address": 65354176, "methods": [], "bases": [], "model": { @@ -299602,32 +299602,32 @@ }, { "type_name": "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 63168640, + "vtable_address": 63172544, "methods": [ 14367152, 12802368, 12802512, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12578016, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12692128, 12579008, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12578224, 12233840, 12233856, @@ -299637,23 +299637,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12574992, 12884144, 12576624, 12234080, 12620784, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -299670,13 +299670,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -299684,39 +299684,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12574944, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12574976, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -299730,33 +299730,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, 12680080, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -299784,9 +299784,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -299794,24 +299794,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -299908,7 +299908,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 63170408, + "vtable_address": 63174312, "methods": [ 12802416, 12802592, @@ -300004,7 +300004,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 63170496, + "vtable_address": 63174400, "methods": [ 12802464, 12802672, @@ -300100,32 +300100,32 @@ }, { "type_name": "C_EnvCubemap", - "vtable_address": 63171408, + "vtable_address": 63175312, "methods": [ 14367152, 12799520, 12800640, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12578128, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12690048, 12578944, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12578208, 12233840, 12233856, @@ -300135,23 +300135,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12575232, 12884144, 12576608, 12234080, 12620912, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -300168,13 +300168,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -300182,39 +300182,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12575216, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12574976, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -300228,33 +300228,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, 12681824, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -300282,9 +300282,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -300292,24 +300292,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -300374,7 +300374,7 @@ }, { "type_name": "C_EnvCubemap", - "vtable_address": 63173176, + "vtable_address": 63177080, "methods": [ 12799808, 12800944, @@ -300438,7 +300438,7 @@ }, { "type_name": "C_EnvCubemap", - "vtable_address": 65346880, + "vtable_address": 65350784, "methods": [], "bases": [], "model": { @@ -300449,32 +300449,32 @@ }, { "type_name": "C_EnvCubemapBox", - "vtable_address": 63173264, + "vtable_address": 63177168, "methods": [ 14367152, 12800080, 12801232, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12578128, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12690048, 12578944, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12578208, 12233840, 12233856, @@ -300484,23 +300484,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12575312, 12884144, 12576592, 12234080, 12621040, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -300517,13 +300517,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -300531,39 +300531,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12575216, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12574976, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -300577,33 +300577,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, 12681824, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -300631,9 +300631,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -300641,24 +300641,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -300734,7 +300734,7 @@ }, { "type_name": "C_EnvCubemapBox", - "vtable_address": 63175032, + "vtable_address": 63178936, "methods": [ 12800368, 12801536, @@ -300809,33 +300809,33 @@ }, { "type_name": "C_EnvCubemapFog", - "vtable_address": 63179416, + "vtable_address": 63183320, "methods": [ 14367152, 12908288, 12908464, 12884160, - 39987824, + 39991728, 12884768, - 21124256, + 21127072, 12683264, - 21132352, + 21135168, 12786560, - 21132336, + 21135152, 12683760, 12683664, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12786256, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -300844,23 +300844,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12682768, 12967264, 12893072, 12234080, 12908640, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -300877,13 +300877,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -300891,39 +300891,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -300937,33 +300937,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -300991,9 +300991,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -301001,24 +301001,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -301062,33 +301062,33 @@ }, { "type_name": "C_EnvDecal", - "vtable_address": 63458568, + "vtable_address": 63462472, "methods": [ 14368000, 14485792, 14483744, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 21699792, - 21626752, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 21702608, + 21629568, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -301097,23 +301097,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21626384, + 40000032, + 21629200, 14513840, 14478336, 12234080, 14494096, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -301130,13 +301130,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -301144,41 +301144,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21626912, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21629728, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -301190,33 +301190,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -301244,9 +301244,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -301254,24 +301254,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 21562272, + 18668032, + 21565088, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 21626960, - 21627184, + 20578656, + 21629776, + 21630000, 12572832, 12572592, 12572896, @@ -301283,32 +301283,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -301372,15 +301372,15 @@ }, { "type_name": "C_EnvDecal", - "vtable_address": 63460544, + "vtable_address": 63464448, "methods": [ 14485920, 14483600, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -301444,9 +301444,9 @@ }, { "type_name": "C_EnvDecal", - "vtable_address": 63460616, + "vtable_address": 63464520, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -301510,33 +301510,33 @@ }, { "type_name": "C_EnvDetailController", - "vtable_address": 63270672, + "vtable_address": 63274576, "methods": [ 14367152, - 21627552, - 21627600, + 21630368, + 21630416, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -301545,23 +301545,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21627328, + 40000032, + 21630144, 13162320, 13131536, 12234080, 13141392, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -301578,13 +301578,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -301592,39 +301592,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, - 21557824, - 20572032, + 21560640, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -301638,33 +301638,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -301692,9 +301692,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -301702,24 +301702,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -301763,32 +301763,32 @@ }, { "type_name": "C_EnvLightProbeVolume", - "vtable_address": 63183064, + "vtable_address": 63186968, "methods": [ 14367152, 12927184, 12927680, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12894800, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12929168, 12895184, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12897680, 12233840, 12233856, @@ -301798,23 +301798,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12891632, 12967264, 12893104, 12234080, 12908896, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -301831,13 +301831,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -301845,39 +301845,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895536, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12891648, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -301891,33 +301891,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, 12899392, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -301945,9 +301945,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -301955,24 +301955,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -302037,7 +302037,7 @@ }, { "type_name": "C_EnvLightProbeVolume", - "vtable_address": 63184832, + "vtable_address": 63188736, "methods": [ 12928672, 12928176, @@ -302101,33 +302101,33 @@ }, { "type_name": "C_EnvParticleGlow", - "vtable_address": 64079528, + "vtable_address": 64083432, "methods": [ 14368000, - 19914064, - 19915056, - 18931408, - 39987824, - 20069968, - 18645648, - 20070032, - 21132352, - 19936352, - 21132336, - 20071568, - 20071632, - 18665616, + 19916880, + 19917872, + 18934224, + 39991728, + 20072784, + 18647952, + 20072848, + 21135168, + 19939168, + 21135152, + 20074384, + 20074448, + 18667920, 12233808, 12233824, - 20071792, - 18518336, + 20074608, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 19878256, + 18936096, + 20575168, + 19881072, 12233840, 12233856, 12233872, @@ -302136,23 +302136,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 19875088, - 20080416, - 19877840, + 40000032, + 19877904, + 20083232, + 19880656, 12234080, - 19929280, - 18666928, - 18799200, + 19932096, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -302169,13 +302169,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -302183,41 +302183,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -302229,33 +302229,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20073072, - 21812224, + 20075888, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -302283,9 +302283,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -302293,24 +302293,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -302322,32 +302322,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12572576 ], "bases": [ @@ -302423,15 +302423,15 @@ }, { "type_name": "C_EnvParticleGlow", - "vtable_address": 64081512, + "vtable_address": 64085416, "methods": [ - 19913568, - 19914560, - 18933072, - 18741840, - 18742112, + 19916384, + 19917376, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -302506,9 +302506,9 @@ }, { "type_name": "C_EnvParticleGlow", - "vtable_address": 64081584, + "vtable_address": 64085488, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -302583,33 +302583,33 @@ }, { "type_name": "C_EnvSky", - "vtable_address": 63186688, + "vtable_address": 63190592, "methods": [ 14368000, 12904672, 12904864, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12894848, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12967280, 12967408, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -302618,23 +302618,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12892000, 12967600, 12893136, 12234080, 12909152, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -302651,13 +302651,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -302665,41 +302665,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895440, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12891648, - 18767008, - 20572064, - 18934704, - 20623632, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -302711,33 +302711,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -302765,9 +302765,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -302775,24 +302775,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -302804,32 +302804,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -302893,15 +302893,15 @@ }, { "type_name": "C_EnvSky", - "vtable_address": 63188664, + "vtable_address": 63192568, "methods": [ 12904480, 12905072, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -302965,9 +302965,9 @@ }, { "type_name": "C_EnvSky", - "vtable_address": 63188736, + "vtable_address": 63192640, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -303031,33 +303031,33 @@ }, { "type_name": "C_EnvVolumetricFogController", - "vtable_address": 63192952, + "vtable_address": 63196856, "methods": [ 14367152, 12905520, 12905616, 12884160, - 39987824, + 39991728, 12896816, - 21124256, + 21127072, 12895584, - 21132352, + 21135168, 12896992, - 21132336, + 21135152, 12895024, 12895056, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12895040, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -303066,23 +303066,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12892128, 12967264, 12893184, 12234080, 12909408, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -303099,13 +303099,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -303113,39 +303113,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895488, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -303159,33 +303159,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -303213,9 +303213,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -303223,24 +303223,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -303284,33 +303284,33 @@ }, { "type_name": "C_EnvVolumetricFogVolume", - "vtable_address": 63194720, + "vtable_address": 63198624, "methods": [ 14367152, 12893008, 12893024, 12884160, - 39987824, + 39991728, 12896816, - 21124256, + 21127072, 12894896, - 21132352, + 21135168, 12923664, - 21132336, + 21135152, 12895024, 12903952, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12895040, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -303319,23 +303319,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12892320, 12967264, 12893200, 12234080, 12909536, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -303352,13 +303352,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -303366,39 +303366,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895456, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -303412,33 +303412,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -303466,9 +303466,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -303476,24 +303476,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -303537,33 +303537,33 @@ }, { "type_name": "C_EnvWind", - "vtable_address": 64233520, + "vtable_address": 64237424, "methods": [ 14367152, - 22304336, - 22304400, + 22307152, + 22307216, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 22374864, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 22377680, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -303572,23 +303572,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22298336, - 22374960, - 22304064, + 40000032, + 22301152, + 22377776, + 22306880, 12234080, - 22317216, - 20571856, + 22320032, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -303605,13 +303605,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -303619,39 +303619,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 22298288, - 20901072, - 20572064, - 22374736, - 20623632, + 20586576, + 22301104, + 20903888, + 20574880, + 22377552, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -303665,33 +303665,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22304080, - 21812224, + 22306896, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -303719,9 +303719,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -303729,24 +303729,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -303790,12 +303790,12 @@ }, { "type_name": "C_EnvWind::NetworkVar_m_EnvWindShared", - "vtable_address": 64233472, + "vtable_address": 64237376, "methods": [ 12897520, - 22305184, + 22308000, 12890832, - 22298304 + 22301120 ], "bases": [ { @@ -303817,33 +303817,33 @@ }, { "type_name": "C_EnvWindClientside", - "vtable_address": 64139112, + "vtable_address": 64143016, "methods": [ 14367152, - 20701072, - 20701136, + 20703888, + 20703952, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126368, - 21132352, - 21132672, - 21132336, - 21128672, - 21131072, - 21133440, + 21127072, + 21129184, + 21135168, + 21135488, + 21135152, + 21131488, + 21133888, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -303852,23 +303852,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20572848, - 20583456, - 20577632, + 40000032, + 20575664, + 20586272, + 20580448, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -303885,13 +303885,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -303899,39 +303899,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -303945,33 +303945,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -303999,9 +303999,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -304009,24 +304009,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -304070,12 +304070,12 @@ }, { "type_name": "C_EnvWindClientside::NetworkVar_m_EnvWindShared", - "vtable_address": 64129304, + "vtable_address": 64133208, "methods": [ 12897520, - 20584960, + 20587776, 12890832, - 20571072 + 20573888 ], "bases": [ { @@ -304097,33 +304097,33 @@ }, { "type_name": "C_EnvWindController", - "vtable_address": 63197192, + "vtable_address": 63201096, "methods": [ 14367152, 12958208, 12958400, 12884160, - 39987824, + 39991728, 12896816, - 21124256, + 21127072, 12903424, - 21132352, + 21135168, 12897328, - 21132336, + 21135152, 12895024, 12895120, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12895040, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -304132,23 +304132,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12892432, 12967264, 12893216, 12234080, 12909664, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -304165,13 +304165,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -304179,39 +304179,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895472, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, + 20586576, + 20583008, + 20903888, + 20574880, 12903040, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -304225,33 +304225,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12897616, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -304279,9 +304279,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -304289,24 +304289,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -304350,7 +304350,7 @@ }, { "type_name": "C_EnvWindController::NetworkVar_m_EnvWindShared", - "vtable_address": 63196488, + "vtable_address": 63200392, "methods": [ 12897520, 12897824, @@ -304377,23 +304377,23 @@ }, { "type_name": "C_EnvWindShared", - "vtable_address": 63283720, + "vtable_address": 63287624, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65438672 + "offset_to_top": 65442576 } } }, { "type_name": "C_EnvWindShared", - "vtable_address": 64184512, + "vtable_address": 64188416, "methods": [ 12897520, - 21557488, + 21560304, 12890832, - 21557504 + 21560320 ], "bases": [], "model": { @@ -304404,33 +304404,33 @@ }, { "type_name": "C_EnvWindVolume", - "vtable_address": 63205648, + "vtable_address": 63209552, "methods": [ 14367152, 12970784, 12970800, 12884160, - 39987824, + 39991728, 12970352, - 21124256, + 21127072, 12970416, - 21132352, + 21135168, 13001856, - 21132336, + 21135152, 12970336, 12986944, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12970672, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -304439,23 +304439,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12967664, 13055344, 12971456, 12234080, 12997424, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -304472,13 +304472,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -304486,39 +304486,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12970624, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -304532,33 +304532,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -304586,9 +304586,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -304596,24 +304596,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -304657,33 +304657,33 @@ }, { "type_name": "C_FireCrackerBlast", - "vtable_address": 64369792, + "vtable_address": 64373696, "methods": [ 14368000, - 23490464, - 23490560, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 23497616, - 18933504, - 18665616, + 23493216, + 23493312, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 23500368, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -304692,23 +304692,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 23436448, - 23497840, - 23436944, + 40000032, + 23439200, + 23500592, + 23439696, 12234080, - 23440768, - 18666928, - 18799200, + 23443520, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -304725,13 +304725,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -304739,41 +304739,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 23438144, - 23438384, - 20572048, + 23440896, + 23441136, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 23436416, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 23439168, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -304785,33 +304785,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 23491024, - 21812224, + 23493776, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -304839,9 +304839,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -304849,24 +304849,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 23437968, + 20578656, + 20587440, + 23440720, 12572832, 12572592, 12572896, @@ -304878,32 +304878,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12201360 ], "bases": [ @@ -304979,15 +304979,15 @@ }, { "type_name": "C_FireCrackerBlast", - "vtable_address": 64371776, + "vtable_address": 64375680, "methods": [ - 23490512, - 23490640, - 18933072, - 18741840, - 18742112, + 23493264, + 23493392, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -305062,9 +305062,9 @@ }, { "type_name": "C_FireCrackerBlast", - "vtable_address": 64371848, + "vtable_address": 64375752, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -305139,33 +305139,33 @@ }, { "type_name": "C_Fish", - "vtable_address": 63407016, + "vtable_address": 63410920, "methods": [ 14381312, 14421984, 14422080, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 20782544, - 18933680, - 18665760, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 20785360, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -305174,23 +305174,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418864, 14476720, 14419392, 12234080, 14436400, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -305207,13 +305207,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -305221,79 +305221,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 20785632, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 20788448, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20782672, - 21812224, + 20785488, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -305318,12 +305318,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -305331,24 +305331,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -305360,66 +305360,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -305494,15 +305494,15 @@ }, { "type_name": "C_Fish", - "vtable_address": 63409264, + "vtable_address": 63413168, "methods": [ 14422032, 14422160, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -305577,9 +305577,9 @@ }, { "type_name": "C_Fish", - "vtable_address": 63409336, + "vtable_address": 63413240, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -305654,33 +305654,33 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 63945048, + "vtable_address": 63948952, "methods": [ 14371616, - 17722048, - 17738848, - 20584080, - 18604336, - 17292992, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17724352, + 17741152, + 20586896, + 18606640, + 17295296, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -305689,24 +305689,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17709168, - 17714448, - 17712592, + 40000032, + 17711472, + 17716752, + 17714896, 12234080, - 17741440, - 17709120, - 18799200, + 17743744, + 17711424, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -305717,98 +305717,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17293024, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17295328, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -305819,26 +305819,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -305846,24 +305846,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -305875,227 +305875,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17293568, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17437024, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17287328, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17295872, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17439328, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17289632, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17287216, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17289520, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17293008, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17309904, - 17304544, - 17409584, - 17409680, - 17437680, - 17448944, - 17424672, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17437360, - 17293632, - 17543792, - 17293152, - 17540816, - 17561728, - 17546560, - 17547488, - 17437584, - 17286832, - 17514800, - 17439168, - 17286864, - 17287280, - 17286896, - 17409520, - 17287232, - 17305632, - 17709104, - 17709088 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17295312, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17312208, + 17306848, + 17411888, + 17411984, + 17439984, + 17451248, + 17426976, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17439664, + 17295936, + 17546096, + 17295456, + 17543120, + 17564032, + 17548864, + 17549792, + 17439888, + 17289136, + 17517104, + 17441472, + 17289168, + 17289584, + 17289200, + 17411824, + 17289536, + 17307936, + 17711408, + 17711392 ], "bases": [ { @@ -306276,15 +306276,15 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 63948584, + "vtable_address": 63952488, "methods": [ - 17719808, - 17736608, - 18933072, - 18741840, - 18742112, + 17722112, + 17738912, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -306465,9 +306465,9 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 63948656, + "vtable_address": 63952560, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -306648,12 +306648,12 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 63948680, + "vtable_address": 63952584, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -306834,14 +306834,14 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 63948728, + "vtable_address": 63952632, "methods": [ - 17712608, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17714912, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -307022,10 +307022,10 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 63948792, + "vtable_address": 63952696, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -307206,11 +307206,11 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 63948824, + "vtable_address": 63952728, "methods": [ - 17720928, - 17737728, - 17514944 + 17723232, + 17740032, + 17517248 ], "bases": [ { @@ -307391,33 +307391,33 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 64546800, + "vtable_address": 64550704, "methods": [ 14371616, - 27164304, - 27164432, - 20584080, - 18604336, + 27167312, + 27167440, + 20586896, + 18606640, 17042416, - 18551600, - 17436560, - 21132352, - 17435648, - 21132336, - 20962400, - 17435072, - 18665760, + 18553904, + 17438864, + 21135168, + 17437952, + 21135152, + 20965216, + 17437376, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -307426,23 +307426,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27163776, - 27269776, - 27164608, + 40000032, + 27166784, + 27272912, + 27167616, 12234080, - 27188720, + 27191728, 16907424, - 18799200, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -307459,93 +307459,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17360544, - 21812224, + 17362848, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -307570,12 +307570,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -307583,24 +307583,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -307612,71 +307612,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 16907264, 16907440, @@ -307686,7 +307686,7 @@ 16907840, 16907296, 16907456, - 27163760, + 27166768, 16907328, 16907344 ], @@ -307806,15 +307806,15 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 64549184, + "vtable_address": 64553088, "methods": [ - 27164368, - 27164512, - 18933072, - 18741840, - 18742112, + 27167376, + 27167520, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -307932,9 +307932,9 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 64549256, + "vtable_address": 64553160, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -308052,9 +308052,9 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 64549280, + "vtable_address": 64553184, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -308175,33 +308175,33 @@ }, { "type_name": "C_FogController", - "vtable_address": 63207464, + "vtable_address": 63211368, "methods": [ 14367152, 12970848, 12970864, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12970464, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12979264, - 21128960, - 21133440, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12973984, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -308210,23 +308210,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12967712, 13055344, 12971472, 12234080, 12997552, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -308243,13 +308243,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -308257,39 +308257,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12970624, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -308303,33 +308303,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -308357,9 +308357,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -308367,24 +308367,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -308428,7 +308428,7 @@ }, { "type_name": "C_FogController::NetworkVar_m_fog", - "vtable_address": 63207416, + "vtable_address": 63211320, "methods": [ 12243104, 12979200, @@ -308455,32 +308455,32 @@ }, { "type_name": "C_FootstepControl", - "vtable_address": 63990400, + "vtable_address": 63994304, "methods": [ 14368000, - 18132016, - 18133072, - 18931408, - 39987824, - 18645760, - 18645648, - 18120608, - 21132352, - 21132672, - 21132336, - 18124032, - 18123872, - 18665616, + 18134320, + 18135376, + 18934224, + 39991728, + 18648064, + 18647952, + 18122912, + 21135168, + 21135488, + 21135152, + 18126336, + 18126176, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -308490,23 +308490,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18120064, - 18122048, - 18121488, + 40000032, + 18122368, + 18124352, + 18123792, 12234080, - 18135616, - 18666928, - 18799200, + 18137920, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -308523,13 +308523,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -308537,41 +308537,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -308583,33 +308583,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -308637,9 +308637,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -308647,24 +308647,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -308676,32 +308676,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -308795,15 +308795,15 @@ }, { "type_name": "C_FootstepControl", - "vtable_address": 63992440, + "vtable_address": 63996344, "methods": [ - 18132544, - 18133616, - 18933072, - 18741840, - 18742112, + 18134848, + 18135920, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -308889,9 +308889,9 @@ }, { "type_name": "C_FootstepControl", - "vtable_address": 63992512, + "vtable_address": 63996416, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -308977,33 +308977,33 @@ }, { "type_name": "C_FuncBrush", - "vtable_address": 63409360, + "vtable_address": 63413264, "methods": [ 14368000, 14422240, 14422336, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -309012,23 +309012,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418880, 14476768, 14419424, 12234080, 14436496, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -309045,13 +309045,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -309059,41 +309059,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -309105,33 +309105,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -309159,9 +309159,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -309169,24 +309169,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -309198,32 +309198,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -309287,15 +309287,15 @@ }, { "type_name": "C_FuncBrush", - "vtable_address": 63411336, + "vtable_address": 63415240, "methods": [ 14422288, 14422416, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -309359,9 +309359,9 @@ }, { "type_name": "C_FuncBrush", - "vtable_address": 63411408, + "vtable_address": 63415312, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -309425,33 +309425,33 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 64319552, + "vtable_address": 64323456, "methods": [ 14368000, - 22830208, - 22830480, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 22915536, - 18665616, + 22833024, + 22833296, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 22918352, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -309460,23 +309460,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823632, - 22916080, - 22824784, + 40000032, + 22826448, + 22918896, + 22827600, 12234080, - 22847664, - 18666928, - 18799200, + 22850480, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -309493,13 +309493,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, - 22837584, + 22840400, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -309507,41 +309507,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 22915776, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 22918592, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -309553,33 +309553,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 22834992, + 22837808, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -309607,34 +309607,34 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, - 22837104, + 22839920, 12235168, 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -309646,33 +309646,33 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 22844624 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 22847440 ], "bases": [ { @@ -309746,15 +309746,15 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 64321536, + "vtable_address": 64325440, "methods": [ - 22830080, - 22830336, - 18933072, - 18741840, - 18742112, + 22832896, + 22833152, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -309828,9 +309828,9 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 64321608, + "vtable_address": 64325512, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -309904,9 +309904,9 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 64321632, + "vtable_address": 64325536, "methods": [ - 22845920 + 22848736 ], "bases": [ { @@ -309980,33 +309980,33 @@ }, { "type_name": "C_FuncElectrifiedVolume", - "vtable_address": 63411432, + "vtable_address": 63415336, "methods": [ 14368000, 14422496, 14422592, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 21168336, - 21168576, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 21171152, + 21171392, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -310015,23 +310015,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418896, 14476768, 14419408, 12234080, 14436592, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -310047,14 +310047,14 @@ 12044000, 12234304, 12572832, - 21136288, - 18563104, + 21139104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -310062,41 +310062,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21168656, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21171472, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -310108,33 +310108,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -310162,9 +310162,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -310172,24 +310172,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -310201,32 +310201,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -310301,15 +310301,15 @@ }, { "type_name": "C_FuncElectrifiedVolume", - "vtable_address": 63413408, + "vtable_address": 63417312, "methods": [ 14422544, 14422672, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -310384,9 +310384,9 @@ }, { "type_name": "C_FuncElectrifiedVolume", - "vtable_address": 63413480, + "vtable_address": 63417384, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -310461,33 +310461,33 @@ }, { "type_name": "C_FuncLadder", - "vtable_address": 63274208, + "vtable_address": 63278112, "methods": [ 14368000, - 21630688, - 21630928, - 18931408, - 39987824, - 18645760, - 18645648, - 21631792, - 21132352, - 21132672, - 21132336, - 21699984, - 18933504, - 18665616, + 21633504, + 21633744, + 18934224, + 39991728, + 18648064, + 18647952, + 21634608, + 21135168, + 21135488, + 21135152, + 21702800, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 21631840, + 18656752, + 21634656, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -310496,24 +310496,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21633808, + 40000032, + 21636624, 13162304, 13131568, 12234080, 13141648, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, - 21631776, + 20635712, + 21634592, 12235472, 12235488, 12234160, @@ -310529,13 +310529,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -310543,41 +310543,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -310589,33 +310589,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -310643,9 +310643,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -310653,24 +310653,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -310682,32 +310682,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -310771,15 +310771,15 @@ }, { "type_name": "C_FuncLadder", - "vtable_address": 63276184, + "vtable_address": 63280088, "methods": [ - 21630912, - 21630976, - 18933072, - 18741840, - 18742112, + 21633728, + 21633792, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -310843,9 +310843,9 @@ }, { "type_name": "C_FuncLadder", - "vtable_address": 63276256, + "vtable_address": 63280160, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -310909,33 +310909,33 @@ }, { "type_name": "C_FuncMonitor", - "vtable_address": 64147656, + "vtable_address": 64151560, "methods": [ 14368000, - 21159664, - 21159936, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 21226768, - 21136384, - 18665616, + 21162480, + 21162752, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 21229584, + 21139200, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -310944,23 +310944,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21133728, - 21138688, - 21137568, + 40000032, + 21136544, + 21141504, + 21140384, 12234080, - 21166448, - 18666928, - 18799200, + 21169264, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -310977,13 +310977,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -310991,41 +310991,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 21133744, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 21136560, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -311037,33 +311037,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -311091,9 +311091,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -311101,24 +311101,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -311130,32 +311130,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -311230,15 +311230,15 @@ }, { "type_name": "C_FuncMonitor", - "vtable_address": 64149632, + "vtable_address": 64153536, "methods": [ - 21159392, - 21160224, - 18933072, - 18741840, - 18742112, + 21162208, + 21163040, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -311313,9 +311313,9 @@ }, { "type_name": "C_FuncMonitor", - "vtable_address": 64149704, + "vtable_address": 64153608, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -311390,33 +311390,33 @@ }, { "type_name": "C_FuncMoveLinear", - "vtable_address": 64149728, + "vtable_address": 64153632, "methods": [ 14368000, - 21136992, - 21137104, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 21139808, + 21139920, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -311425,23 +311425,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21133760, - 21138720, - 21137584, + 40000032, + 21136576, + 21141536, + 21140400, 12234080, - 21166576, - 18666928, - 18799200, + 21169392, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -311458,13 +311458,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -311472,41 +311472,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21138704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21141520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -311518,33 +311518,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -311572,9 +311572,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -311582,24 +311582,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -311611,32 +311611,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -311711,15 +311711,15 @@ }, { "type_name": "C_FuncMoveLinear", - "vtable_address": 64151704, + "vtable_address": 64155608, "methods": [ - 21137040, - 21137184, - 18933072, - 18741840, - 18742112, + 21139856, + 21140000, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -311794,9 +311794,9 @@ }, { "type_name": "C_FuncMoveLinear", - "vtable_address": 64151776, + "vtable_address": 64155680, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -311871,33 +311871,33 @@ }, { "type_name": "C_FuncMover", - "vtable_address": 64151800, + "vtable_address": 64155704, "methods": [ 14368000, - 21137280, - 21137392, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 21140096, + 21140208, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -311906,23 +311906,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21133776, - 21138720, - 21137600, + 40000032, + 21136592, + 21141536, + 21140416, 12234080, - 21166704, - 18666928, - 18799200, + 21169520, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -311939,13 +311939,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -311953,41 +311953,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21138704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21141520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -311999,33 +311999,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -312053,9 +312053,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -312063,24 +312063,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -312092,32 +312092,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -312192,15 +312192,15 @@ }, { "type_name": "C_FuncMover", - "vtable_address": 64153776, + "vtable_address": 64157680, "methods": [ - 21137328, - 21137472, - 18933072, - 18741840, - 18742112, + 21140144, + 21140288, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -312275,9 +312275,9 @@ }, { "type_name": "C_FuncMover", - "vtable_address": 64153848, + "vtable_address": 64157752, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -312352,33 +312352,33 @@ }, { "type_name": "C_FuncRotating", - "vtable_address": 63413504, + "vtable_address": 63417408, "methods": [ 14368000, 14422752, 14422848, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -312387,23 +312387,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418912, 14476768, 14419440, 12234080, 14436688, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -312420,13 +312420,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -312434,41 +312434,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -312480,33 +312480,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -312534,9 +312534,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -312544,24 +312544,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -312573,32 +312573,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -312662,15 +312662,15 @@ }, { "type_name": "C_FuncRotating", - "vtable_address": 63415480, + "vtable_address": 63419384, "methods": [ 14422800, 14422928, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -312734,9 +312734,9 @@ }, { "type_name": "C_FuncRotating", - "vtable_address": 63415552, + "vtable_address": 63419456, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -312800,33 +312800,33 @@ }, { "type_name": "C_FuncTrackTrain", - "vtable_address": 64153872, + "vtable_address": 64157776, "methods": [ 14368000, - 21136480, - 21136576, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 21139296, + 21139392, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -312835,23 +312835,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21133808, - 21309376, - 21137616, + 40000032, + 21136624, + 21312192, + 21140432, 12234080, - 21166832, - 18666928, - 18799200, + 21169648, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -312868,13 +312868,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -312882,41 +312882,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21142608, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21145424, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -312928,33 +312928,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -312968,7 +312968,7 @@ 12235008, 12235024, 12235040, - 21133792, + 21136608, 12235072, 12235088, 12584080, @@ -312982,9 +312982,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -312992,24 +312992,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -313021,32 +313021,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -313110,15 +313110,15 @@ }, { "type_name": "C_FuncTrackTrain", - "vtable_address": 64155848, + "vtable_address": 64159752, "methods": [ - 21136528, - 21136656, - 18933072, - 18741840, - 18742112, + 21139344, + 21139472, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -313182,9 +313182,9 @@ }, { "type_name": "C_FuncTrackTrain", - "vtable_address": 64155920, + "vtable_address": 64159824, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -313248,11 +313248,11 @@ }, { "type_name": "C_GameInstructor", - "vtable_address": 64156552, + "vtable_address": 64160456, "methods": [ - 21152576, - 21154416, - 21230784 + 21155392, + 21157232, + 21233600 ], "bases": [ { @@ -313285,7 +313285,7 @@ }, { "type_name": "C_GameInstructorGameSystem", - "vtable_address": 64155944, + "vtable_address": 64159848, "methods": [ 12204192, 12204208, @@ -313314,7 +313314,7 @@ 12204576, 12204592, 12204608, - 21236368, + 21239184, 12204640, 12204656, 12204672, @@ -313343,12 +313343,12 @@ 12205040, 12205056, 12205072, - 21133856, + 21136672, 12205104, - 21133840, - 21142112, - 21142128, - 21133824 + 21136656, + 21144928, + 21144944, + 21136640 ], "bases": [ { @@ -313381,23 +313381,23 @@ }, { "type_name": "C_GameRules", - "vtable_address": 63282440, + "vtable_address": 63286344, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65436520 + "offset_to_top": 65440424 } } }, { "type_name": "C_GameRules", - "vtable_address": 64195200, + "vtable_address": 64199104, "methods": [ - 21709312, + 21712128, 16906384, 16906400, - 21704288, + 21707104, 16906416, 16906432, 16906448, @@ -313405,17 +313405,17 @@ 16906480, 16906496, 16906560, - 21704304, + 21707120, 16906576, 16906592, 16906608, - 21704768, + 21707584, 16906624, 16906640, 16906656, 16906672, - 21704320, - 21704768 + 21707136, + 21707584 ], "bases": [], "model": { @@ -313426,7 +313426,7 @@ }, { "type_name": "C_GameRules", - "vtable_address": 65436032, + "vtable_address": 65439936, "methods": [], "bases": [], "model": { @@ -313437,7 +313437,7 @@ }, { "type_name": "C_GameRules", - "vtable_address": 65448448, + "vtable_address": 65452352, "methods": [], "bases": [], "model": { @@ -313448,32 +313448,32 @@ }, { "type_name": "C_GameRulesProxy", - "vtable_address": 63278680, + "vtable_address": 63282584, "methods": [ 14367152, 13132624, 13132640, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 13132688, 12233840, 12233856, @@ -313483,23 +313483,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13131264, 13162320, 13131616, 12234080, 13141904, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -313516,13 +313516,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -313530,39 +313530,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, - 21732752, - 20572032, + 21735568, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -313576,33 +313576,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -313630,9 +313630,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -313640,24 +313640,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -313701,33 +313701,33 @@ }, { "type_name": "C_GlobalLight", - "vtable_address": 64140880, + "vtable_address": 64144784, "methods": [ 14367152, - 20788208, - 20788608, + 20791024, + 20791424, 12884160, - 39987824, - 20657376, - 21124256, - 21126784, - 21132352, - 21132672, - 21132336, - 21128672, - 21131168, - 21133440, + 39991728, + 20660192, + 21127072, + 21129600, + 21135168, + 21135488, + 21135152, + 21131488, + 21133984, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -313736,23 +313736,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20572864, - 20593248, - 20577584, + 40000032, + 20575680, + 20596064, + 20580400, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -313769,13 +313769,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -313783,39 +313783,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20572064, - 20901072, - 20582224, - 20633856, - 20623632, + 20586576, + 20574880, + 20903888, + 20585040, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -313829,33 +313829,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20787024, - 21812224, + 20789840, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -313883,9 +313883,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -313893,24 +313893,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -313922,7 +313922,7 @@ 12572832, 12572912, 12235344, - 20571120 + 20573936 ], "bases": [ { @@ -313976,19 +313976,19 @@ }, { "type_name": "C_GlobalLight", - "vtable_address": 64142656, + "vtable_address": 64146560, "methods": [ - 20787792, - 20789024, - 20841600, - 20659024, - 20571056, + 20790608, + 20791840, + 20844416, + 20661840, + 20573872, 12235680, 12235696, 12235712, 12235728, - 20577600, - 20571136 + 20580416, + 20573952 ], "bases": [ { @@ -314042,33 +314042,33 @@ }, { "type_name": "C_GradientFog", - "vtable_address": 63181184, + "vtable_address": 63185088, "methods": [ 14367152, 12942528, 12942816, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12905280, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12952320, - 21128960, - 21133440, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12895040, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -314077,23 +314077,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12890848, 12967264, 12893088, 12234080, 12908768, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -314110,13 +314110,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -314124,39 +314124,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895552, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12890864, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -314170,33 +314170,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12943328, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -314224,9 +314224,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -314234,24 +314234,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -314295,33 +314295,33 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 63948864, + "vtable_address": 63952768, "methods": [ 14371616, - 17725408, - 17741216, - 20584080, - 18604336, - 17292992, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17727712, + 17743520, + 20586896, + 18606640, + 17295296, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -314330,24 +314330,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17709264, - 17714448, - 17712640, + 40000032, + 17711568, + 17716752, + 17714944, 12234080, - 17741536, - 17709216, - 18799200, + 17743840, + 17711520, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -314358,98 +314358,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17293024, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17295328, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -314460,26 +314460,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -314487,24 +314487,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -314516,227 +314516,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17293568, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17437024, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17287328, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17295872, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17439328, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17289632, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17287216, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17289520, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17293008, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17309904, - 17304544, - 17409584, - 17409680, - 17437680, - 17448944, - 17424672, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17437360, - 17293632, - 17543792, - 17293152, - 17540816, - 17561728, - 17546560, - 17547488, - 17437584, - 17286832, - 17514800, - 17439168, - 17286864, - 17287280, - 17286896, - 17409520, - 17287232, - 17305632, - 17709200, - 17709184 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17295312, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17312208, + 17306848, + 17411888, + 17411984, + 17439984, + 17451248, + 17426976, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17439664, + 17295936, + 17546096, + 17295456, + 17543120, + 17564032, + 17548864, + 17549792, + 17439888, + 17289136, + 17517104, + 17441472, + 17289168, + 17289584, + 17289200, + 17411824, + 17289536, + 17307936, + 17711504, + 17711488 ], "bases": [ { @@ -314917,15 +314917,15 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 63952400, + "vtable_address": 63956304, "methods": [ - 17723168, - 17738976, - 18933072, - 18741840, - 18742112, + 17725472, + 17741280, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -315106,9 +315106,9 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 63952472, + "vtable_address": 63956376, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -315289,12 +315289,12 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 63952496, + "vtable_address": 63956400, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -315475,14 +315475,14 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 63952544, + "vtable_address": 63956448, "methods": [ - 17712656, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17714960, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -315663,10 +315663,10 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 63952608, + "vtable_address": 63956512, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -315847,11 +315847,11 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 63952640, + "vtable_address": 63956544, "methods": [ - 17724288, - 17740096, - 17514944 + 17726592, + 17742400, + 17517248 ], "bases": [ { @@ -316032,33 +316032,33 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 64551464, + "vtable_address": 64555368, "methods": [ 14371616, - 27165040, - 27165120, - 20584080, - 18604336, + 27168048, + 27168128, + 20586896, + 18606640, 17042416, - 18551600, - 17436560, - 21132352, - 27165632, - 21132336, - 20962400, - 17435072, - 18665760, + 18553904, + 17438864, + 21135168, + 27168640, + 21135152, + 20965216, + 17437376, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -316067,23 +316067,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 27163856, - 27269776, - 27164640, + 40000032, + 27166864, + 27272912, + 27167648, 12234080, - 27188848, + 27191856, 16907424, - 18799200, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -316100,93 +316100,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17360544, - 21812224, + 17362848, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -316211,12 +316211,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -316224,24 +316224,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -316253,71 +316253,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 16907264, 16907440, @@ -316327,10 +316327,10 @@ 16907840, 16907296, 16907456, - 27163824, + 27166832, 16907328, 16907344, - 27163840 + 27166848 ], "bases": [ { @@ -316448,15 +316448,15 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 64553856, + "vtable_address": 64557760, "methods": [ - 27166208, - 27167008, - 18933072, - 18741840, - 18742112, + 27169216, + 27170016, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -316574,9 +316574,9 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 64553928, + "vtable_address": 64557832, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -316694,9 +316694,9 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 64553952, + "vtable_address": 64557856, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -316817,19 +316817,19 @@ }, { "type_name": "C_HLTVCamera", - "vtable_address": 64196392, - "methods": [ - 21725648, - 21726064, - 21747328, - 21723136, - 21717824, - 21708000, - 21747040, - 21705024, - 21705008, - 21705008, - 21708480 + "vtable_address": 64200296, + "methods": [ + 21728464, + 21728880, + 21750144, + 21725952, + 21720640, + 21710816, + 21749856, + 21707840, + 21707824, + 21707824, + 21711296 ], "bases": [ { @@ -316872,33 +316872,33 @@ }, { "type_name": "C_HandleTest", - "vtable_address": 64222408, + "vtable_address": 64226312, "methods": [ 14367152, - 22050144, - 22050208, + 22052960, + 22053024, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -316907,23 +316907,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22047376, - 22232576, - 22050544, + 40000032, + 22050192, + 22235392, + 22053360, 12234080, - 22098208, - 20571856, + 22101024, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -316940,13 +316940,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -316954,39 +316954,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 22073856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 22076672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -317000,33 +317000,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -317054,9 +317054,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -317064,24 +317064,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -317125,33 +317125,33 @@ }, { "type_name": "C_Hostage", - "vtable_address": 64257608, + "vtable_address": 64261512, "methods": [ 14382944, - 22450448, - 22450656, - 20584080, - 18604336, - 20575696, - 22442256, - 18609776, - 21132352, - 18750864, - 21132336, - 22771376, - 20631536, - 18665760, + 22453264, + 22453472, + 20586896, + 18606640, + 20578512, + 22445072, + 18612080, + 21135168, + 18753680, + 21135152, + 22774192, + 20634352, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 22445568, + 18936096, + 20575168, + 22448384, 12233840, 12233856, 12233872, @@ -317160,23 +317160,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22438304, - 22771616, - 22441552, + 40000032, + 22441120, + 22774432, + 22444368, 12234080, - 22497392, - 22438320, - 18799200, + 22500208, + 22441136, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -317193,93 +317193,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 22451456, + 20574768, + 22454272, 12235376, 12234496, 12235520, 12234528, - 20583760, - 22441200, - 20576848, - 20859680, - 18935088, - 20623632, + 20586576, + 22444016, + 20579664, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 22438368, - 18515488, - 20825088, - 18632768, + 22441184, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 22451568, - 22467696, + 20610960, + 20575008, + 22454384, + 22470512, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 22438336, + 22441152, 12572784, - 22467824, + 22470640, 12572784, 12234816, - 22507248, - 21812224, + 22510064, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -317302,14 +317302,14 @@ 12243312, 12244384, 12235392, - 20576384, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -317317,24 +317317,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -317346,77 +317346,77 @@ 12572832, 12572912, 12235344, - 20962992, + 20965808, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 22670000, - 18507248, + 22672816, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, 14312992, - 20755200, - 20571200, - 20692288, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -317531,15 +317531,15 @@ }, { "type_name": "C_Hostage", - "vtable_address": 64260008, + "vtable_address": 64263912, "methods": [ - 22450640, - 22452784, - 18933072, - 18741840, - 18742112, + 22453456, + 22455600, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -317646,9 +317646,9 @@ }, { "type_name": "C_Hostage", - "vtable_address": 64260080, + "vtable_address": 64263984, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -317755,9 +317755,9 @@ }, { "type_name": "C_Hostage", - "vtable_address": 64260104, + "vtable_address": 64264008, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -317867,12 +317867,12 @@ }, { "type_name": "C_Hostage::NetworkVar_m_entitySpottedState", - "vtable_address": 64251088, + "vtable_address": 64254992, "methods": [ 16909312, - 22446912, - 17438816, - 22438048 + 22449728, + 17441120, + 22440864 ], "bases": [ { @@ -317894,13 +317894,13 @@ }, { "type_name": "C_Hostage::NetworkVar_m_reuseTimer", - "vtable_address": 64251136, + "vtable_address": 64255040, "methods": [ 13060656, - 20137664, - 22446976, + 20140480, + 22449792, 13055552, - 22438080 + 22440896 ], "bases": [ { @@ -317922,33 +317922,33 @@ }, { "type_name": "C_HostageCarriableProp", - "vtable_address": 64255264, + "vtable_address": 64259168, "methods": [ 14381312, - 22442368, - 22442464, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 18932480, - 18933680, - 18665760, + 22445184, + 22445280, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 18935296, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -317957,23 +317957,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22438288, - 22443104, - 22441536, + 40000032, + 22441104, + 22445920, + 22444352, 12234080, - 22497264, - 18609696, - 18799200, + 22500080, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -317990,13 +317990,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -318004,79 +318004,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 22441136, - 18767008, - 20572064, - 22440992, - 20623632, + 20586576, + 22443952, + 18769824, + 20574880, + 22443808, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22441360, - 21812224, + 22444176, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 22793344, - 18741488, - 18562848, + 20583600, + 22796160, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -318101,12 +318101,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -318114,24 +318114,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -318143,66 +318143,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -318277,15 +318277,15 @@ }, { "type_name": "C_HostageCarriableProp", - "vtable_address": 64257512, + "vtable_address": 64261416, "methods": [ - 22442416, - 22442544, - 18933072, - 18741840, - 18742112, + 22445232, + 22445360, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -318360,9 +318360,9 @@ }, { "type_name": "C_HostageCarriableProp", - "vtable_address": 64257584, + "vtable_address": 64261488, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -318437,33 +318437,33 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 63960600, + "vtable_address": 63964504, "methods": [ 14371616, - 17728768, - 17743808, - 20584080, - 18604336, - 17292992, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17731072, + 17746112, + 20586896, + 18606640, + 17295296, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -318472,24 +318472,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17709552, - 17714448, - 17712752, + 40000032, + 17711856, + 17716752, + 17715056, 12234080, - 17741824, - 17709488, - 18799200, + 17744128, + 17711792, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -318500,98 +318500,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17293024, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17295328, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -318602,26 +318602,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -318629,24 +318629,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -318658,227 +318658,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17293568, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17437024, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17287328, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17295872, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17439328, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17289632, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17287216, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17709472, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17289520, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17711776, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17293008, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17309904, - 17304544, - 17409584, - 17409680, - 17437680, - 17448944, - 17424672, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17437360, - 17293632, - 17543792, - 17293152, - 17540816, - 17561728, - 17546560, - 17547488, - 17437584, - 17286832, - 17514800, - 17439168, - 17286864, - 17287280, - 17286896, - 17409520, - 17784736, - 17305632, - 17287248, - 17709440 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17295312, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17312208, + 17306848, + 17411888, + 17411984, + 17439984, + 17451248, + 17426976, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17439664, + 17295936, + 17546096, + 17295456, + 17543120, + 17564032, + 17548864, + 17549792, + 17439888, + 17289136, + 17517104, + 17441472, + 17289168, + 17289584, + 17289200, + 17411824, + 17787040, + 17307936, + 17289552, + 17711744 ], "bases": [ { @@ -319070,15 +319070,15 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 63964136, + "vtable_address": 63968040, "methods": [ - 17726528, - 17743936, - 18933072, - 18741840, - 18742112, + 17728832, + 17746240, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -319270,9 +319270,9 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 63964208, + "vtable_address": 63968112, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -319464,12 +319464,12 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 63964232, + "vtable_address": 63968136, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -319661,14 +319661,14 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 63964280, + "vtable_address": 63968184, "methods": [ - 17712768, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17715072, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -319860,10 +319860,10 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 63964344, + "vtable_address": 63968248, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -320055,11 +320055,11 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 63964376, + "vtable_address": 63968280, "methods": [ - 17727648, - 17744064, - 17514944 + 17729952, + 17746368, + 17517248 ], "bases": [ { @@ -320251,33 +320251,33 @@ }, { "type_name": "C_Inferno", - "vtable_address": 64367712, + "vtable_address": 64371616, "methods": [ 14368000, - 23489344, - 23490368, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 23497616, - 18933504, - 18665616, + 23492096, + 23493120, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 23500368, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -320286,23 +320286,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 23436432, - 23497840, - 23436960, + 40000032, + 23439184, + 23500592, + 23439712, 12234080, - 23440640, - 18666928, - 18799200, + 23443392, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -320319,13 +320319,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -320333,41 +320333,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 23438144, - 23438384, - 20572048, + 23440896, + 23441136, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 23436416, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 23439168, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -320379,33 +320379,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 23491024, - 21812224, + 23493776, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -320433,9 +320433,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -320443,24 +320443,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 23437968, + 20578656, + 20587440, + 23440720, 12572832, 12572592, 12572896, @@ -320472,32 +320472,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12201264 ], "bases": [ @@ -320562,15 +320562,15 @@ }, { "type_name": "C_Inferno", - "vtable_address": 64369696, + "vtable_address": 64373600, "methods": [ - 23490352, - 23490416, - 18933072, - 18741840, - 18742112, + 23493104, + 23493168, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -320634,9 +320634,9 @@ }, { "type_name": "C_Inferno", - "vtable_address": 64369768, + "vtable_address": 64373672, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -320700,7 +320700,7 @@ }, { "type_name": "C_Inferno", - "vtable_address": 65963392, + "vtable_address": 65967296, "methods": [], "bases": [], "model": { @@ -320711,32 +320711,32 @@ }, { "type_name": "C_InfoInstructorHintHostageRescueZone", - "vtable_address": 63747704, + "vtable_address": 63751608, "methods": [ 12604160, - 17220272, - 17220304, + 17222576, + 17222608, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -320746,23 +320746,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217296, - 17220368, - 17218512, + 40000032, + 17219600, + 17222672, + 17220816, 12234080, - 17232624, - 20571856, + 17234928, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -320779,13 +320779,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -320793,39 +320793,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -320839,33 +320839,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -320893,9 +320893,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -320903,24 +320903,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -320975,33 +320975,33 @@ }, { "type_name": "C_InfoLadderDismount", - "vtable_address": 63272440, + "vtable_address": 63276344, "methods": [ 14367152, 13132560, 13132576, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, - 21634016, + 20583344, + 21636832, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -321010,23 +321010,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13131200, 13162320, 13131552, 12234080, 13141520, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -321043,13 +321043,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -321057,39 +321057,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -321103,33 +321103,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -321157,9 +321157,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -321167,24 +321167,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -321228,33 +321228,33 @@ }, { "type_name": "C_InfoVisibilityBox", - "vtable_address": 63212768, + "vtable_address": 63216672, "methods": [ 14367152, 12970912, 12970928, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13005424, - 21132352, + 21135168, 13005392, - 21132336, - 21128672, + 21135152, + 21131488, 13005568, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12975040, 12973888, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -321263,23 +321263,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968544, 13055344, 12971520, 12234080, 12996560, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -321296,13 +321296,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -321310,39 +321310,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -321356,33 +321356,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -321410,9 +321410,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -321420,24 +321420,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -321481,10 +321481,10 @@ }, { "type_name": "C_IronSightController", - "vtable_address": 63952680, + "vtable_address": 63956584, "methods": [ - 17712688, - 17709280 + 17714992, + 17711584 ], "bases": [], "model": { @@ -321495,33 +321495,33 @@ }, { "type_name": "C_Item", - "vtable_address": 64321656, + "vtable_address": 64325560, "methods": [ 14371616, - 22826288, - 22826368, - 20584080, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 28013200, - 21132336, - 22912336, - 28012864, - 28012992, + 22829104, + 22829184, + 20586896, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 28016464, + 21135152, + 22915152, + 28016128, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -321530,23 +321530,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22823648, - 22916096, - 22824800, + 40000032, + 22826464, + 22918912, + 22827616, 12234080, - 22847792, - 20717200, - 18799200, + 22850608, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -321563,93 +321563,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 28013296, - 28013152, + 20586576, + 18656624, + 18769824, + 20862496, + 28016560, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -321674,12 +321674,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -321687,24 +321687,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -321716,102 +321716,102 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 27313584, - 27313872, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17286992 + 27316752, + 27317040, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17289296 ], "bases": [ { @@ -321938,15 +321938,15 @@ }, { "type_name": "C_Item", - "vtable_address": 64324192, + "vtable_address": 64328096, "methods": [ - 22829984, - 22832240, - 18933072, - 18741840, - 18742112, + 22832800, + 22835056, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -322073,9 +322073,9 @@ }, { "type_name": "C_Item", - "vtable_address": 64324264, + "vtable_address": 64328168, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -322202,9 +322202,9 @@ }, { "type_name": "C_Item", - "vtable_address": 64324288, + "vtable_address": 64328192, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -322334,14 +322334,14 @@ }, { "type_name": "C_Item", - "vtable_address": 64324336, + "vtable_address": 64328240, "methods": [ - 22824816, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 22827632, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -322468,10 +322468,10 @@ }, { "type_name": "C_Item", - "vtable_address": 64324400, + "vtable_address": 64328304, "methods": [ - 27313728, - 27314000 + 27316896, + 27317168 ], "bases": [ { @@ -322598,33 +322598,33 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 63761128, + "vtable_address": 63765032, "methods": [ 14371616, - 17291040, - 17291216, - 20584080, - 18604336, - 17436816, - 18551600, - 17436624, - 21132352, - 28013200, - 21132336, - 22912336, - 28012864, - 28012992, + 17293344, + 17293520, + 20586896, + 18606640, + 17439120, + 18553904, + 17438928, + 21135168, + 28016464, + 21135152, + 22915152, + 28016128, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17293376, + 18936096, + 20575168, + 17295680, 12233840, 12233856, 12233872, @@ -322633,23 +322633,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17287008, - 17437008, - 17289008, + 40000032, + 17289312, + 17439312, + 17291312, 12234080, - 17316448, - 20717200, - 18799200, + 17318752, + 20720016, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -322666,93 +322666,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 17436864, - 28013152, + 20586576, + 18656624, + 18769824, + 20862496, + 17439168, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -322777,12 +322777,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -322790,24 +322790,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -322819,102 +322819,102 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 27313584, - 27313872, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17286992 + 27316752, + 27317040, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17289296 ], "bases": [ { @@ -323052,15 +323052,15 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 63763664, + "vtable_address": 63767568, "methods": [ - 17291120, - 17291328, - 18933072, - 18741840, - 18742112, + 17293424, + 17293632, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -323198,9 +323198,9 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 63763736, + "vtable_address": 63767640, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -323338,9 +323338,9 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 63763760, + "vtable_address": 63767664, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -323481,14 +323481,14 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 63763808, + "vtable_address": 63767712, "methods": [ - 17289024, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17291328, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -323626,10 +323626,10 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 63763872, + "vtable_address": 63767776, "methods": [ - 27313728, - 27314000 + 27316896, + 27317168 ], "bases": [ { @@ -323767,33 +323767,33 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 63763904, + "vtable_address": 63767808, "methods": [ 14371616, - 17291456, - 17291824, - 20584080, - 18604336, - 17704240, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702880, - 17703024, - 28012992, + 17293760, + 17294128, + 20586896, + 18606640, + 17706544, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17705184, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -323802,24 +323802,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17287088, - 17292256, - 17289056, + 40000032, + 17289392, + 17294560, + 17291360, 12234080, - 17316576, - 17438864, - 18799200, + 17318880, + 17441168, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -323830,98 +323830,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -323932,26 +323932,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -323959,24 +323959,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -323988,227 +323988,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17287056, - 17285456, - 17448832, - 17563696, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17289360, + 17287760, + 17451136, + 17566000, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17545888, - 17448928, - 17635536, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17549824, - 17545200, - 17543792, - 17287104, - 17540816, - 17561728, - 17550704, - 17547488, - 17564304, - 17286832, - 17514800, - 17439168, - 17286864, - 17287072, - 17286896, - 17287040, - 17439472, - 17300208, - 17293520, - 17287024 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17548192, + 17451232, + 17637840, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17552128, + 17547504, + 17546096, + 17289408, + 17543120, + 17564032, + 17553008, + 17549792, + 17566608, + 17289136, + 17517104, + 17441472, + 17289168, + 17289376, + 17289200, + 17289344, + 17441776, + 17302512, + 17295824, + 17289328 ], "bases": [ { @@ -324389,15 +324389,15 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 63767440, + "vtable_address": 63771344, "methods": [ - 17291568, - 17291968, - 18933072, - 18741840, - 18742112, + 17293872, + 17294272, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -324578,9 +324578,9 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 63767512, + "vtable_address": 63771416, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -324761,12 +324761,12 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 63767536, + "vtable_address": 63771440, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -324947,14 +324947,14 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 63767584, + "vtable_address": 63771488, "methods": [ - 17289072, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17291376, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -325135,10 +325135,10 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 63767648, + "vtable_address": 63771552, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -325319,11 +325319,11 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 63767680, + "vtable_address": 63771584, "methods": [ - 17291696, - 17292112, - 17514944 + 17294000, + 17294416, + 17517248 ], "bases": [ { @@ -325504,33 +325504,33 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 63795488, + "vtable_address": 63799392, "methods": [ 14381312, - 17449568, - 17449696, - 18931456, - 18604336, - 17702160, - 18551600, - 17702208, - 21132352, - 18750864, - 21132336, - 18932480, - 17701872, - 18665760, + 17451872, + 17452000, + 18934272, + 18606640, + 17704464, + 18553904, + 17704512, + 21135168, + 18753680, + 21135152, + 18935296, + 17704176, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -325539,23 +325539,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439120, - 17708912, - 17440800, + 40000032, + 17441424, + 17711216, + 17443104, 12234080, 14344320, - 17439040, - 18799200, + 17441344, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -325572,13 +325572,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -325586,79 +325586,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 17701920, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 17704224, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 17448608, - 18515488, - 20825088, - 18632768, + 17450912, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 17448544, + 20610960, + 20575008, + 17450848, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -325683,12 +325683,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -325696,24 +325696,24 @@ 12235184, 12235440, 12572688, - 17448672, + 17450976, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -325725,67 +325725,67 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17451072 + 18780672, + 17453376 ], "bases": [ { @@ -325881,15 +325881,15 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 63797744, + "vtable_address": 63801648, "methods": [ - 17449632, - 17449776, - 18933072, - 18741840, - 18742112, + 17451936, + 17452080, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -325985,9 +325985,9 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 63797816, + "vtable_address": 63801720, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -326083,11 +326083,11 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 63797840, + "vtable_address": 63801744, "methods": [ - 17438704, + 17441008, 13215936, - 17456208, + 17458512, 13215952 ], "bases": [ @@ -326184,33 +326184,33 @@ }, { "type_name": "C_Knife", - "vtable_address": 63953000, + "vtable_address": 63956904, "methods": [ 14371616, - 17710272, - 17710560, - 20584080, - 18604336, - 17714464, - 18551600, - 17714512, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17712576, + 17712864, + 20586896, + 18606640, + 17716768, + 18553904, + 17716816, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -326219,24 +326219,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17709408, - 17790192, - 17712704, + 40000032, + 17711712, + 17792496, + 17715008, 12234080, - 17741632, - 17709360, - 18799200, + 17743936, + 17711664, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -326247,98 +326247,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -326349,26 +326349,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -326376,24 +326376,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -326405,223 +326405,223 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17709344, - 17285456, - 17448832, - 17790048, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17711648, + 17287760, + 17451136, + 17792352, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17709312, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17711616, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17758176, - 17758192, - 17634912, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17545792, - 17544016, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17709328 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17760480, + 17760496, + 17637216, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17548096, + 17546320, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17711632 ], "bases": [ { @@ -326791,15 +326791,15 @@ }, { "type_name": "C_Knife", - "vtable_address": 63956504, + "vtable_address": 63960408, "methods": [ - 17710368, - 17710688, - 18933072, - 18741840, - 18742112, + 17712672, + 17712992, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -326969,9 +326969,9 @@ }, { "type_name": "C_Knife", - "vtable_address": 63956576, + "vtable_address": 63960480, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -327141,12 +327141,12 @@ }, { "type_name": "C_Knife", - "vtable_address": 63956600, + "vtable_address": 63960504, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -327316,14 +327316,14 @@ }, { "type_name": "C_Knife", - "vtable_address": 63956648, + "vtable_address": 63960552, "methods": [ - 17712720, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17715024, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -327493,10 +327493,10 @@ }, { "type_name": "C_Knife", - "vtable_address": 63956712, + "vtable_address": 63960616, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -327666,11 +327666,11 @@ }, { "type_name": "C_Knife", - "vtable_address": 63956744, + "vtable_address": 63960648, "methods": [ - 17710464, - 17710816, - 17514944 + 17712768, + 17713120, + 17517248 ], "bases": [ { @@ -327840,7 +327840,7 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 64554272, + "vtable_address": 64558176, "methods": [ 14381312 ], @@ -327917,7 +327917,7 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 64556520, + "vtable_address": 64560424, "methods": [], "bases": [ { @@ -327992,9 +327992,9 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 64556592, + "vtable_address": 64560496, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -328069,7 +328069,7 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 65994048, + "vtable_address": 65997952, "methods": [], "bases": [], "model": { @@ -328080,7 +328080,7 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 65994240, + "vtable_address": 65998144, "methods": [], "bases": [], "model": { @@ -328091,32 +328091,32 @@ }, { "type_name": "C_LightDirectionalEntity", - "vtable_address": 63222520, + "vtable_address": 63226424, "methods": [ 14368000, 12975840, 12975936, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12978480, - 21132352, + 21135168, 12978400, - 21132336, + 21135152, 13055440, 13055376, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12977712, 12233840, 12233856, @@ -328126,23 +328126,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968736, 13055360, 12971568, 12234080, 12997040, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -328159,13 +328159,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -328178,36 +328178,36 @@ 12234400, 12572768, 12970656, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12968576, 12977728, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12968592, - 18767008, - 20572064, - 18934704, - 20623632, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -328219,33 +328219,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -328273,9 +328273,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -328283,24 +328283,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -328312,32 +328312,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -328412,15 +328412,15 @@ }, { "type_name": "C_LightDirectionalEntity", - "vtable_address": 63224496, + "vtable_address": 63228400, "methods": [ 12975888, 12976016, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -328495,9 +328495,9 @@ }, { "type_name": "C_LightDirectionalEntity", - "vtable_address": 63224568, + "vtable_address": 63228472, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -328572,7 +328572,7 @@ }, { "type_name": "C_LightDirectionalEntity", - "vtable_address": 65402656, + "vtable_address": 65406560, "methods": [], "bases": [], "model": { @@ -328583,32 +328583,32 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 63216304, + "vtable_address": 63220208, "methods": [ 14368000, 12975584, 12975680, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12978480, - 21132352, + 21135168, 12978400, - 21132336, + 21135152, 13055440, 13055376, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12977712, 12233840, 12233856, @@ -328618,23 +328618,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968608, 13055360, 12971616, 12234080, 12996752, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -328651,13 +328651,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -328670,36 +328670,36 @@ 12234400, 12572768, 12970656, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12968576, 12977728, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12968592, - 18767008, - 20572064, - 18934704, - 20623632, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -328711,33 +328711,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -328765,9 +328765,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -328775,24 +328775,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -328804,32 +328804,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -328893,15 +328893,15 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 63218280, + "vtable_address": 63222184, "methods": [ 12975632, 12975760, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -328965,9 +328965,9 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 63218352, + "vtable_address": 63222256, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -329031,7 +329031,7 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 65402784, + "vtable_address": 65406688, "methods": [], "bases": [], "model": { @@ -329042,7 +329042,7 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 65402912, + "vtable_address": 65406816, "methods": [], "bases": [], "model": { @@ -329053,7 +329053,7 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 65403040, + "vtable_address": 65406944, "methods": [], "bases": [], "model": { @@ -329064,32 +329064,32 @@ }, { "type_name": "C_LightEnvironmentEntity", - "vtable_address": 63224592, + "vtable_address": 63228496, "methods": [ 14368000, 12976096, 12976192, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12978480, - 21132352, + 21135168, 12978400, - 21132336, + 21135152, 13055440, 13055376, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12977712, 12233840, 12233856, @@ -329099,23 +329099,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968752, 13055360, 12971552, 12234080, 12997136, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -329132,13 +329132,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -329151,36 +329151,36 @@ 12234400, 12572768, 12970640, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12968576, 12977728, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12968592, - 18767008, - 20572064, - 18934704, - 20623632, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -329192,33 +329192,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -329246,9 +329246,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -329256,24 +329256,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -329285,32 +329285,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -329396,15 +329396,15 @@ }, { "type_name": "C_LightEnvironmentEntity", - "vtable_address": 63226568, + "vtable_address": 63230472, "methods": [ 12976144, 12976272, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -329490,9 +329490,9 @@ }, { "type_name": "C_LightEnvironmentEntity", - "vtable_address": 63226640, + "vtable_address": 63230544, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -329578,32 +329578,32 @@ }, { "type_name": "C_LightOrthoEntity", - "vtable_address": 63220448, + "vtable_address": 63224352, "methods": [ 14368000, 12976352, 12976448, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12978480, - 21132352, + 21135168, 12978400, - 21132336, + 21135152, 13055440, 13055376, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12977712, 12233840, 12233856, @@ -329613,23 +329613,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968720, 13055360, 12971584, 12234080, 12996944, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -329646,13 +329646,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -329665,36 +329665,36 @@ 12234400, 12572768, 12970656, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12968576, 12977728, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12968592, - 18767008, - 20572064, - 18934704, - 20623632, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -329706,33 +329706,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -329760,9 +329760,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -329770,24 +329770,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -329799,32 +329799,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -329899,15 +329899,15 @@ }, { "type_name": "C_LightOrthoEntity", - "vtable_address": 63222424, + "vtable_address": 63226328, "methods": [ 12976400, 12976528, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -329982,9 +329982,9 @@ }, { "type_name": "C_LightOrthoEntity", - "vtable_address": 63222496, + "vtable_address": 63226400, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -330059,32 +330059,32 @@ }, { "type_name": "C_LightSpotEntity", - "vtable_address": 63218376, + "vtable_address": 63222280, "methods": [ 14368000, 12976608, 12976704, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12978480, - 21132352, + 21135168, 12978400, - 21132336, + 21135152, 13055440, 13055376, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12977712, 12233840, 12233856, @@ -330094,23 +330094,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12968704, 13055360, 12971600, 12234080, 12996848, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -330127,13 +330127,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -330146,36 +330146,36 @@ 12234400, 12572768, 12970656, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12968576, 12977728, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12968592, - 18767008, - 20572064, - 18934704, - 20623632, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -330187,33 +330187,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -330241,9 +330241,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -330251,24 +330251,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -330280,32 +330280,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -330380,15 +330380,15 @@ }, { "type_name": "C_LightSpotEntity", - "vtable_address": 63220352, + "vtable_address": 63224256, "methods": [ 12976656, 12976784, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -330463,9 +330463,9 @@ }, { "type_name": "C_LightSpotEntity", - "vtable_address": 63220424, + "vtable_address": 63224328, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -330540,33 +330540,33 @@ }, { "type_name": "C_LocalTempEntity", - "vtable_address": 63487960, + "vtable_address": 63491864, "methods": [ 14381312, 14515632, 14515728, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 18932480, - 22374976, - 18665760, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 18935296, + 22377792, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -330575,23 +330575,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14514000, 14552432, 14514352, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -330608,13 +330608,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -330622,79 +330622,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -330719,12 +330719,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -330732,24 +330732,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -330761,69 +330761,69 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 22304624, - 22325248, - 22328096 + 18780672, + 22307440, + 22328064, + 22330912 ], "bases": [ { @@ -330898,15 +330898,15 @@ }, { "type_name": "C_LocalTempEntity", - "vtable_address": 63490232, + "vtable_address": 63494136, "methods": [ 14515680, 14515808, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -330981,9 +330981,9 @@ }, { "type_name": "C_LocalTempEntity", - "vtable_address": 63490304, + "vtable_address": 63494208, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -331058,44 +331058,44 @@ }, { "type_name": "C_MapPreviewParticleSystem", - "vtable_address": 63113968, + "vtable_address": 63117872, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65984224 + "offset_to_top": 65988128 } } }, { "type_name": "C_MapPreviewParticleSystem", - "vtable_address": 64441968, + "vtable_address": 64445872, "methods": [ 14368000, - 24302960, - 24304432, - 18931408, - 39987824, - 20069968, - 18645648, - 20070032, - 21132352, - 19936112, - 21132336, - 20070880, - 20071632, - 18665616, + 24305712, + 24307184, + 18934224, + 39991728, + 20072784, + 18647952, + 20072848, + 21135168, + 19938928, + 21135152, + 20073696, + 20074448, + 18667920, 12233808, 12233824, - 20071792, - 18518336, + 20074608, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 19878256, + 18936096, + 20575168, + 19881072, 12233840, 12233856, 12233872, @@ -331104,23 +331104,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 24268096, - 24273888, - 24272688, + 40000032, + 24270848, + 24276640, + 24275440, 12234080, - 19929408, - 18666928, - 18799200, + 19932224, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -331137,13 +331137,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -331151,41 +331151,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -331197,33 +331197,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20073040, - 21812224, + 20075856, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -331251,9 +331251,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -331261,24 +331261,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -331290,32 +331290,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12572576 ], "bases": [ @@ -331391,15 +331391,15 @@ }, { "type_name": "C_MapPreviewParticleSystem", - "vtable_address": 64443952, + "vtable_address": 64447856, "methods": [ - 24303344, - 24304832, - 18933072, - 18741840, - 18742112, + 24306096, + 24307584, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -331474,9 +331474,9 @@ }, { "type_name": "C_MapPreviewParticleSystem", - "vtable_address": 64444024, + "vtable_address": 64447928, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -331551,33 +331551,33 @@ }, { "type_name": "C_MapVetoPickController", - "vtable_address": 64342864, + "vtable_address": 64346768, "methods": [ 14367152, - 22952096, - 22957152, + 22954912, + 22959968, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 22935776, - 21132336, - 23166752, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 22938592, + 21135152, + 23169504, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -331586,23 +331586,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22916992, - 23166816, - 22921584, + 40000032, + 22919808, + 23169568, + 22924400, 12234080, - 22986256, - 20571856, + 22989072, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -331619,13 +331619,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -331633,39 +331633,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -331679,33 +331679,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22922400, - 21812224, + 22925216, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -331733,9 +331733,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -331743,24 +331743,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -331772,7 +331772,7 @@ 12572832, 12572912, 12235344, - 22917008 + 22919824 ], "bases": [ { @@ -331826,11 +331826,11 @@ }, { "type_name": "C_MapVetoPickController", - "vtable_address": 64344640, + "vtable_address": 64348544, "methods": [ - 22957392, - 22957280, - 22945776 + 22960208, + 22960096, + 22948592 ], "bases": [ { @@ -331884,32 +331884,32 @@ }, { "type_name": "C_ModelPointEntity", - "vtable_address": 63360512, + "vtable_address": 63364416, "methods": [ 14368000, 14317792, 14317888, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 14321376, 12233840, 12233856, @@ -331919,23 +331919,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18644864, + 40000032, + 18647168, 14313408, 14314112, 12234080, 14344576, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -331952,13 +331952,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -331966,41 +331966,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, - 18667568, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, + 18669872, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -332012,33 +332012,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -332066,9 +332066,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -332076,24 +332076,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -332105,32 +332105,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, - 18507888, - 18766800, - 18519232, + 18577456, + 18510192, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -332194,15 +332194,15 @@ }, { "type_name": "C_ModelPointEntity", - "vtable_address": 63362488, + "vtable_address": 63366392, "methods": [ 14317840, 14317968, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -332266,9 +332266,9 @@ }, { "type_name": "C_ModelPointEntity", - "vtable_address": 63362560, + "vtable_address": 63366464, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -332332,33 +332332,33 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 63956784, + "vtable_address": 63960688, "methods": [ 14371616, - 17732128, - 17743424, - 20584080, - 18604336, - 17292992, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17734432, + 17745728, + 20586896, + 18606640, + 17295296, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -332367,24 +332367,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17709536, - 17714448, - 17712800, + 40000032, + 17711840, + 17716752, + 17715104, 12234080, - 17741728, - 17709488, - 18799200, + 17744032, + 17711792, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -332395,98 +332395,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17293024, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17295328, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -332497,26 +332497,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -332524,24 +332524,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -332553,227 +332553,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17293568, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17437024, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17287328, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17295872, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17439328, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17289632, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17287216, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17709456, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17289520, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17711760, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17293008, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17309904, - 17304544, - 17409584, - 17409680, - 17437680, - 17448944, - 17424672, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17437360, - 17293632, - 17543792, - 17293152, - 17540816, - 17561728, - 17546560, - 17547488, - 17437584, - 17286832, - 17514800, - 17439168, - 17286864, - 17287280, - 17286896, - 17409520, - 17784736, - 17305632, - 17287248, - 17709440 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17295312, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17312208, + 17306848, + 17411888, + 17411984, + 17439984, + 17451248, + 17426976, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17439664, + 17295936, + 17546096, + 17295456, + 17543120, + 17564032, + 17548864, + 17549792, + 17439888, + 17289136, + 17517104, + 17441472, + 17289168, + 17289584, + 17289200, + 17411824, + 17787040, + 17307936, + 17289552, + 17711744 ], "bases": [ { @@ -332954,15 +332954,15 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 63960320, + "vtable_address": 63964224, "methods": [ - 17729888, - 17743552, - 18933072, - 18741840, - 18742112, + 17732192, + 17745856, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -333143,9 +333143,9 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 63960392, + "vtable_address": 63964296, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -333326,12 +333326,12 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 63960416, + "vtable_address": 63964320, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -333512,14 +333512,14 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 63960464, + "vtable_address": 63964368, "methods": [ - 17712816, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17715120, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -333700,10 +333700,10 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 63960528, + "vtable_address": 63964432, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -333884,11 +333884,11 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 63960560, + "vtable_address": 63964464, "methods": [ - 17731008, - 17743680, - 17514944 + 17733312, + 17745984, + 17517248 ], "bases": [ { @@ -334069,7 +334069,7 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 65658464, + "vtable_address": 65662368, "methods": [], "bases": [], "model": { @@ -334080,33 +334080,33 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 63767720, + "vtable_address": 63771624, "methods": [ 14371616, - 17301648, - 17302256, - 20584080, - 18604336, + 17303952, + 17304560, + 20586896, + 18606640, 17042416, - 18551600, - 17436560, - 21132352, - 17435648, - 21132336, - 20962400, - 17435072, - 18665760, + 18553904, + 17438864, + 21135168, + 17437952, + 21135152, + 20965216, + 17437376, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -334115,23 +334115,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17287136, - 17436608, - 17288960, + 40000032, + 17289440, + 17438912, + 17291264, 12234080, - 17316704, + 17319008, 16907424, - 18799200, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -334148,93 +334148,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 17294080, - 17294384, - 18513744, + 17296384, + 17296688, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 17290320, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 17292624, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17360544, - 21812224, + 17362848, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -334259,12 +334259,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -334272,24 +334272,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -334301,71 +334301,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 16907264, 16907440, @@ -334375,7 +334375,7 @@ 16907840, 16907296, 16907456, - 17287120, + 17289424, 16907328, 16907344 ], @@ -334495,15 +334495,15 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 63770104, + "vtable_address": 63774008, "methods": [ - 17301792, - 17302432, - 18933072, - 18741840, - 18742112, + 17304096, + 17304736, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -334621,9 +334621,9 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 63770176, + "vtable_address": 63774080, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -334741,9 +334741,9 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 63770200, + "vtable_address": 63774104, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -334864,33 +334864,33 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 64334088, + "vtable_address": 64337992, "methods": [ 14381312, - 22921184, - 22921312, - 18931456, - 18604336, - 18517136, - 18551600, - 22881040, - 21132352, - 18750864, - 21132336, - 22916576, - 18933680, - 18665760, + 22924000, + 22924128, + 18934272, + 18606640, + 18519440, + 18553904, + 22883856, + 21135168, + 18753680, + 21135152, + 22919392, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -334899,23 +334899,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22916832, - 23166672, - 22921488, + 40000032, + 22919648, + 23169424, + 22924304, 12234080, - 22985744, - 18609696, - 18799200, + 22988560, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -334932,13 +334932,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -334946,79 +334946,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -335043,12 +335043,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -335056,24 +335056,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -335085,68 +335085,68 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 22881088, - 22916640 + 18780672, + 22883904, + 22919456 ], "bases": [ { @@ -335231,15 +335231,15 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 64336352, + "vtable_address": 64340256, "methods": [ - 22921248, - 22921392, - 18933072, - 18741840, - 18742112, + 22924064, + 22924208, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -335324,9 +335324,9 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 64336424, + "vtable_address": 64340328, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -335411,11 +335411,11 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 64336448, + "vtable_address": 64340352, "methods": [ - 22881792, + 22884608, 14312720, - 22916656, + 22919472, 14312752 ], "bases": [ @@ -335501,23 +335501,23 @@ }, { "type_name": "C_MultiplayRules", - "vtable_address": 63282056, + "vtable_address": 63285960, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66278720 + "offset_to_top": 66282560 } } }, { "type_name": "C_MultiplayRules", - "vtable_address": 64196768, + "vtable_address": 64200672, "methods": [ - 21709280, + 21712096, 16906384, 16906400, - 21704288, + 21707104, 16906416, 16906432, 16906448, @@ -335525,65 +335525,65 @@ 16906480, 16906496, 16906560, - 21704304, + 21707120, 16906576, 16906592, 16906608, - 21704768, + 21707584, 16906624, 16906640, 16906656, 16906672, - 21704320, - 21704768, - 21723952, - 21724112, - 21704784, - 21704336, + 21707136, + 21707584, + 21726768, + 21726928, 21707600, + 21707152, + 21710416, 16906688, 16906704, - 21734432, - 21705504, - 21705520, - 21705536, - 21704768, - 21704768, - 18506192, - 21704800, + 21737248, + 21708320, + 21708336, + 21708352, + 21707584, + 21707584, + 18508496, + 21707616, 16906720, - 21704784, + 21707600, 16906736, 16906752, - 21704400, + 21707216, 16906768, 16906784, 16906800, 16906816, 13820272, 16906832, - 21705552, - 21704368, + 21708368, + 21707184, 16906848, - 21704816, + 21707632, 16906864, - 21707776, + 21710592, 16906880, 16906896, 16906912, - 21707824, - 21704384, - 21709776, - 21704832, - 21712832, - 21715824, - 21713168, - 21712928, - 21704880, - 21713456, - 21704896, - 21713584, - 21704848, + 21710640, + 21707200, + 21712592, + 21707648, + 21715648, + 21718640, + 21715984, + 21715744, + 21707696, + 21716272, + 21707712, + 21716400, + 21707664, 16906928 ], "bases": [ @@ -335616,7 +335616,7 @@ }, { "type_name": "C_MultiplayRules", - "vtable_address": 65443744, + "vtable_address": 65447648, "methods": [], "bases": [], "model": { @@ -335627,33 +335627,33 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 63793088, + "vtable_address": 63796992, "methods": [ 14381312, - 17450176, - 17456288, - 18931456, - 18604336, - 17702160, - 18551600, - 17702208, - 21132352, - 18750864, - 21132336, - 18932480, - 17701872, - 18665760, + 17452480, + 17458592, + 18934272, + 18606640, + 17704464, + 18553904, + 17704512, + 21135168, + 18753680, + 21135152, + 18935296, + 17704176, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -335662,23 +335662,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439104, - 17708912, - 17440816, + 40000032, + 17441408, + 17711216, + 17443120, 12234080, 14344320, - 17439040, - 18799200, + 17441344, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -335695,13 +335695,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -335709,79 +335709,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 17701920, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 17704224, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 17448608, - 18515488, - 20825088, - 18632768, + 17450912, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 17448544, + 20610960, + 20575008, + 17450848, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -335806,12 +335806,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -335819,24 +335819,24 @@ 12235184, 12235440, 12572688, - 17448672, + 17450976, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -335848,67 +335848,67 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17451072 + 18780672, + 17453376 ], "bases": [ { @@ -336004,15 +336004,15 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 63795344, + "vtable_address": 63799248, "methods": [ - 17450320, - 17456448, - 18933072, - 18741840, - 18742112, + 17452624, + 17458752, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -336108,9 +336108,9 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 63795416, + "vtable_address": 63799320, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -336206,11 +336206,11 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 63795440, + "vtable_address": 63799344, "methods": [ - 17438704, + 17441008, 13215936, - 17456208, + 17458512, 13215952 ], "bases": [ @@ -336307,33 +336307,33 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 64129440, + "vtable_address": 64133344, "methods": [ 14382944, - 20719728, - 20719856, - 20584080, - 18604336, - 20575696, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 20963424, - 20631536, - 18665760, + 20722544, + 20722672, + 20586896, + 18606640, + 20578512, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 20966240, + 20634352, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -336342,23 +336342,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20571760, - 20577984, - 20577568, + 40000032, + 20574576, + 20580800, + 20580384, 12234080, 14344832, - 20571280, - 18799200, + 20574096, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -336375,93 +336375,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20576864, - 20571328, - 18513744, + 20579680, + 20574144, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 20576848, - 20859680, - 18935088, - 20623632, + 20586576, + 18656624, + 20579664, + 20862496, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -336484,14 +336484,14 @@ 12243312, 12244384, 12235392, - 20576384, + 20579200, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -336499,24 +336499,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -336528,77 +336528,77 @@ 12572832, 12572912, 12235344, - 20962992, + 20965808, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 14312976, 14312992, - 20755200, - 20571200, - 20692288, + 20758016, + 20574016, + 20695104, 14321472, 14321456, 14327680, @@ -336712,15 +336712,15 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 64131832, + "vtable_address": 64135736, "methods": [ - 20719792, - 20719936, - 18933072, - 18741840, - 18742112, + 20722608, + 20722752, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -336827,9 +336827,9 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 64131904, + "vtable_address": 64135808, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -336936,9 +336936,9 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 64131928, + "vtable_address": 64135832, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -337048,33 +337048,33 @@ }, { "type_name": "C_OmniLight", - "vtable_address": 64380136, + "vtable_address": 64384040, "methods": [ 14368000, - 23562880, - 23562976, - 18931408, - 39987824, - 18645760, - 18645648, - 23618816, - 21132352, - 21132672, - 21132336, - 23619904, - 23620304, - 18665616, + 23565632, + 23565728, + 18934224, + 39991728, + 18648064, + 18647952, + 23621568, + 21135168, + 21135488, + 21135152, + 23622656, + 23623056, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 23620784, - 20572352, - 20572208, + 23623536, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -337083,23 +337083,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 23556384, - 23620832, - 23556672, + 40000032, + 23559136, + 23623584, + 23559424, 12234080, - 23567616, - 18666928, - 18799200, + 23570368, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -337116,13 +337116,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -337130,41 +337130,41 @@ 12250624, 12250480, 12249920, - 23558256, + 23561008, 12234384, 12234400, 12572768, - 23557792, - 20572032, + 23560544, + 20574848, 12234432, - 20572048, - 23556320, - 23563392, + 20574864, + 23559072, + 23566144, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 23556352, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 23559104, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -337176,33 +337176,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -337230,9 +337230,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -337240,24 +337240,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -337269,35 +337269,35 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 23557536, - 23582784, - 23595072 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 23560288, + 23585536, + 23597824 ], "bases": [ { @@ -337372,15 +337372,15 @@ }, { "type_name": "C_OmniLight", - "vtable_address": 64382136, + "vtable_address": 64386040, "methods": [ - 23562928, - 23563056, - 18933072, - 18741840, - 18742112, + 23565680, + 23565808, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -337455,9 +337455,9 @@ }, { "type_name": "C_OmniLight", - "vtable_address": 64382208, + "vtable_address": 64386112, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -337532,33 +337532,33 @@ }, { "type_name": "C_ParticleSystem", - "vtable_address": 64081608, + "vtable_address": 64085512, "methods": [ 14368000, - 19911984, - 19912368, - 18931408, - 39987824, - 20069968, - 18645648, - 20070032, - 21132352, - 19936112, - 21132336, - 20070880, - 20071632, - 18665616, + 19914800, + 19915184, + 18934224, + 39991728, + 20072784, + 18647952, + 20072848, + 21135168, + 19938928, + 21135152, + 20073696, + 20074448, + 18667920, 12233808, 12233824, - 20071792, - 18518336, + 20074608, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 19878256, + 18936096, + 20575168, + 19881072, 12233840, 12233856, 12233872, @@ -337567,23 +337567,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 19875072, - 20080416, - 19877856, + 40000032, + 19877888, + 20083232, + 19880672, 12234080, - 19929408, - 18666928, - 18799200, + 19932224, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -337600,13 +337600,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -337614,41 +337614,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -337660,33 +337660,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20073040, - 21812224, + 20075856, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -337714,9 +337714,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -337724,24 +337724,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -337753,32 +337753,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12572576 ], "bases": [ @@ -337843,15 +337843,15 @@ }, { "type_name": "C_ParticleSystem", - "vtable_address": 64083592, + "vtable_address": 64087496, "methods": [ - 19911600, - 19912768, - 18933072, - 18741840, - 18742112, + 19914416, + 19915584, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -337915,9 +337915,9 @@ }, { "type_name": "C_ParticleSystem", - "vtable_address": 64083664, + "vtable_address": 64087568, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -337981,33 +337981,33 @@ }, { "type_name": "C_PathParticleRope", - "vtable_address": 63462440, + "vtable_address": 63466344, "methods": [ 14367152, - 19953296, - 19953968, + 19956112, + 19956784, 12884160, - 39987824, - 19954064, - 21124256, - 20070096, - 21132352, - 19956256, - 21132336, - 20080432, - 21128960, - 21133440, + 39991728, + 19956880, + 21127072, + 20072912, + 21135168, + 19959072, + 21135152, + 20083248, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -338016,23 +338016,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 19952096, + 40000032, + 19954912, 14513856, 14478432, 12234080, 14494224, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -338049,13 +338049,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -338063,39 +338063,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -338109,33 +338109,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, - 19955792, - 20051328, - 21812224, + 19958608, + 20054144, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -338163,9 +338163,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -338173,24 +338173,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -338203,10 +338203,10 @@ 12572912, 12235344, 14476896, - 19876592, - 19995392, - 19995584, - 19995776 + 19879408, + 19998208, + 19998400, + 19998592 ], "bases": [ { @@ -338249,14 +338249,14 @@ }, { "type_name": "C_PathParticleRope", - "vtable_address": 63464248, - "methods": [ - 19953952, - 19954016, - 19955120, - 19993792, - 19993984, - 19994176, + "vtable_address": 63468152, + "methods": [ + 19956768, + 19956832, + 19957936, + 19996608, + 19996800, + 19996992, 14476816 ], "bases": [ @@ -338300,7 +338300,7 @@ }, { "type_name": "C_PathParticleRope", - "vtable_address": 65504416, + "vtable_address": 65508320, "methods": [], "bases": [], "model": { @@ -338311,33 +338311,33 @@ }, { "type_name": "C_PathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 63464320, + "vtable_address": 63468224, "methods": [ 14367152, 14480176, 14480256, 12884160, - 39987824, - 19954064, - 21124256, - 20070096, - 21132352, - 19956256, - 21132336, - 20080432, - 21128960, - 21133440, + 39991728, + 19956880, + 21127072, + 20072912, + 21135168, + 19959072, + 21135152, + 20083248, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -338346,23 +338346,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14476912, 14513856, 14478416, 12234080, 14494224, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -338379,13 +338379,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -338393,39 +338393,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -338439,33 +338439,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, - 19955792, - 20051328, - 21812224, + 19958608, + 20054144, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -338493,9 +338493,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -338503,24 +338503,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -338533,10 +338533,10 @@ 12572912, 12235344, 14476896, - 19876592, - 19995392, - 19995584, - 19995776 + 19879408, + 19998208, + 19998400, + 19998592 ], "bases": [ { @@ -338590,14 +338590,14 @@ }, { "type_name": "C_PathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 63466128, + "vtable_address": 63470032, "methods": [ 14480208, 14480320, - 19955120, - 19993792, - 19993984, - 19994176, + 19957936, + 19996608, + 19996800, + 19996992, 14476816 ], "bases": [ @@ -338652,11 +338652,11 @@ }, { "type_name": "C_Peer2PeerInit", - "vtable_address": 64158280, + "vtable_address": 64162184, "methods": [ - 21302064, + 21304880, 12204208, - 21156368, + 21159184, 12204240, 12204256, 12204272, @@ -338699,8 +338699,8 @@ 12204864, 12204880, 12204896, - 21150336, - 21155856, + 21153152, + 21158672, 12204944, 12204960, 12204976, @@ -338710,12 +338710,12 @@ 12205040, 12205056, 12205072, - 21134000, + 21136816, 12205104, - 21133984, - 21142048, - 21142064, - 21133968 + 21136800, + 21144864, + 21144880, + 21136784 ], "bases": [ { @@ -338748,33 +338748,33 @@ }, { "type_name": "C_PhysBox", - "vtable_address": 63417648, + "vtable_address": 63421552, "methods": [ 14368000, - 21186400, - 21186448, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 21189216, + 21189264, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -338783,23 +338783,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418944, 14476768, 14419456, 12234080, 14436880, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -338816,13 +338816,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -338830,41 +338830,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -338876,33 +338876,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -338930,9 +338930,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -338940,24 +338940,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -338969,32 +338969,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -339069,15 +339069,15 @@ }, { "type_name": "C_PhysBox", - "vtable_address": 63419624, + "vtable_address": 63423528, "methods": [ - 21186528, - 21186592, - 18933072, - 18741840, - 18742112, + 21189344, + 21189408, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -339152,9 +339152,9 @@ }, { "type_name": "C_PhysBox", - "vtable_address": 63419696, + "vtable_address": 63423600, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -339229,33 +339229,33 @@ }, { "type_name": "C_PhysMagnet", - "vtable_address": 64158888, + "vtable_address": 64162792, "methods": [ 14381312, - 21150176, - 21156976, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 21140496, - 21132336, - 18932480, - 18933680, - 18665760, + 21152992, + 21159792, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 21143312, + 21135152, + 18935296, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -339264,23 +339264,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21134032, - 21318176, - 21137632, + 40000032, + 21136848, + 21320992, + 21140448, 12234080, - 21166960, - 18609696, - 18799200, + 21169776, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -339297,13 +339297,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -339311,79 +339311,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -339408,12 +339408,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -339421,24 +339421,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -339450,66 +339450,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -339584,15 +339584,15 @@ }, { "type_name": "C_PhysMagnet", - "vtable_address": 64161136, + "vtable_address": 64165040, "methods": [ - 21157328, - 21157152, - 18933072, - 18741840, - 18742112, + 21160144, + 21159968, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -339667,9 +339667,9 @@ }, { "type_name": "C_PhysMagnet", - "vtable_address": 64161208, + "vtable_address": 64165112, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -339744,33 +339744,33 @@ }, { "type_name": "C_PhysPropClientside", - "vtable_address": 63474272, + "vtable_address": 63478176, "methods": [ 14381312, 14525840, 14526576, - 18931456, - 18604336, - 22035360, - 18551600, - 22035520, - 21132352, - 18750864, - 21132336, - 22038144, - 22035216, - 18665760, + 18934272, + 18606640, + 22038176, + 18553904, + 22038336, + 21135168, + 18753680, + 21135152, + 22040960, + 22038032, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 18787392, - 18517184, - 18561584, + 18525056, + 18708192, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -339779,23 +339779,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21873008, + 40000032, + 21875888, 14515888, 14514384, 12234080, 14344704, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -339812,13 +339812,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -339826,79 +339826,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, - 21877616, + 20610960, + 20575008, + 20574880, + 21880496, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 22035264, + 20636464, + 22038080, 12572624, 12572784, 12234816, - 21874000, - 21812224, + 21876880, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -339923,12 +339923,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -339936,24 +339936,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -339965,78 +339965,78 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, + 18780672, 13131136, 13131120, - 18518192, + 18520496, 14513952, 13131168, 13132720, - 18709968, + 18712816, 14513936, - 21873296, - 21874320, - 21875632, - 21874224 + 21876176, + 21877200, + 21878512, + 21877104 ], "bases": [ { @@ -340133,15 +340133,15 @@ }, { "type_name": "C_PhysPropClientside", - "vtable_address": 63476616, + "vtable_address": 63480520, "methods": [ 14526208, 14526960, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -340238,9 +340238,9 @@ }, { "type_name": "C_PhysPropClientside", - "vtable_address": 63476688, + "vtable_address": 63480592, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -340337,33 +340337,33 @@ }, { "type_name": "C_PhysicsProp", - "vtable_address": 63419720, + "vtable_address": 63423624, "methods": [ 14381312, - 21186928, - 21187296, - 18931456, - 18604336, - 18710128, - 18551600, - 18801392, - 21132352, - 18750864, - 21132336, - 18932480, - 18934160, - 18665760, + 21189744, + 21190112, + 18934272, + 18606640, + 18712976, + 18553904, + 18804208, + 21135168, + 18753680, + 21135152, + 18935296, + 18936976, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 18787392, - 18517184, - 18561584, + 18525056, + 18708192, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 21188512, + 18936096, + 20575168, + 21191328, 12233840, 12233856, 12233872, @@ -340372,23 +340372,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21186688, + 40000032, + 21189504, 14476784, 14419488, 12234080, 14436976, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -340405,13 +340405,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -340419,79 +340419,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21188448, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21191264, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -340516,12 +340516,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -340529,24 +340529,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -340558,73 +340558,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, + 18780672, 13131136, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -340721,15 +340721,15 @@ }, { "type_name": "C_PhysicsProp", - "vtable_address": 63422024, + "vtable_address": 63425928, "methods": [ - 21187680, - 21188048, - 18933072, - 18741840, - 18742112, + 21190496, + 21190864, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -340826,9 +340826,9 @@ }, { "type_name": "C_PhysicsProp", - "vtable_address": 63422096, + "vtable_address": 63426000, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -340925,7 +340925,7 @@ }, { "type_name": "C_PhysicsProp", - "vtable_address": 65620352, + "vtable_address": 65624256, "methods": [], "bases": [], "model": { @@ -340936,33 +340936,33 @@ }, { "type_name": "C_PhysicsPropMultiplayer", - "vtable_address": 63749472, + "vtable_address": 63753376, "methods": [ 14381312, - 17220384, - 17220480, - 18931456, - 18604336, - 18710128, - 18551600, - 18801392, - 21132352, - 18750864, - 21132336, - 18932480, - 18934160, - 18665760, + 17222688, + 17222784, + 18934272, + 18606640, + 18712976, + 18553904, + 18804208, + 21135168, + 18753680, + 21135152, + 18935296, + 18936976, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 18787392, - 18517184, - 18561584, + 18525056, + 18708192, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 21188512, + 18936096, + 20575168, + 21191328, 12233840, 12233856, 12233872, @@ -340971,23 +340971,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217280, - 17267584, - 17218528, + 40000032, + 17219584, + 17269888, + 17220832, 12234080, - 17232752, - 18609696, - 18799200, + 17235056, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -341004,13 +341004,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -341018,79 +341018,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21188448, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21191264, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -341115,12 +341115,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -341128,24 +341128,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -341157,73 +341157,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, + 18780672, 13131136, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -341331,15 +341331,15 @@ }, { "type_name": "C_PhysicsPropMultiplayer", - "vtable_address": 63751776, + "vtable_address": 63755680, "methods": [ - 17220432, - 17220560, - 18933072, - 18741840, - 18742112, + 17222736, + 17222864, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -341447,9 +341447,9 @@ }, { "type_name": "C_PhysicsPropMultiplayer", - "vtable_address": 63751848, + "vtable_address": 63755752, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -341557,33 +341557,33 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 64336496, + "vtable_address": 64340400, "methods": [ 14381312, - 22875920, - 22876160, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 22916224, - 22916112, - 22902080, + 22878736, + 22878976, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 22919040, + 22918928, + 22904896, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 22935168, + 18936096, + 20575168, + 22937984, 12233840, 12233856, 12233872, @@ -341592,23 +341592,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22916848, - 23166672, - 22921504, + 40000032, + 22919664, + 23169424, + 22924320, 12234080, - 22985872, - 22875904, - 18799200, + 22988688, + 22878720, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -341625,13 +341625,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -341639,79 +341639,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 17636192, + 20574768, + 17638496, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 22876256, - 18515488, - 20825088, - 18632768, + 22879072, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 22916800, + 20610960, + 20575008, + 22919616, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22884432, - 21812224, + 22887248, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -341736,12 +341736,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -341749,24 +341749,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -341778,71 +341778,71 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 22916672, - 22823728, - 22916704, - 22916736, - 22916768 + 18780672, + 22919488, + 22826544, + 22919520, + 22919552, + 22919584 ], "bases": [ { @@ -341927,15 +341927,15 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 64338784, + "vtable_address": 64342688, "methods": [ - 22876144, - 22876208, - 18933072, - 18741840, - 18742112, + 22878960, + 22879024, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -342020,9 +342020,9 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 64338856, + "vtable_address": 64342760, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -342107,14 +342107,14 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 64338880, + "vtable_address": 64342784, "methods": [ - 22921520, - 22916688, - 22823744, - 22916720, - 22916752, - 22916784 + 22924336, + 22919504, + 22826560, + 22919536, + 22919568, + 22919600 ], "bases": [ { @@ -342199,20 +342199,20 @@ }, { "type_name": "C_PlantedC4::NetworkVar_m_AttributeManager", - "vtable_address": 64324480, + "vtable_address": 64328384, "methods": [ - 22826544, - 27279008, - 22827072, - 22823248, - 22823696, - 22826480, - 22826496, - 27325456, - 27331264, - 27279024, - 27553632, - 27554144 + 22829360, + 27282176, + 22829888, + 22826064, + 22826512, + 22829296, + 22829312, + 27328624, + 27334432, + 27282192, + 27556864, + 27557376 ], "bases": [ { @@ -342245,12 +342245,12 @@ }, { "type_name": "C_PlantedC4::NetworkVar_m_entitySpottedState", - "vtable_address": 64324432, + "vtable_address": 64328336, "methods": [ 16909312, - 22827008, - 17438816, - 22823664 + 22829824, + 17441120, + 22826480 ], "bases": [ { @@ -342272,33 +342272,33 @@ }, { "type_name": "C_PlayerPing", - "vtable_address": 63993016, + "vtable_address": 63996920, "methods": [ 14367152, - 18122240, - 18131840, + 18124544, + 18134144, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -342307,23 +342307,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18120192, - 18354624, - 18121536, + 40000032, + 18122496, + 18356928, + 18123840, 12234080, - 18135744, - 20571856, + 18138048, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -342340,13 +342340,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -342354,39 +342354,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 18353648, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 18355952, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -342400,33 +342400,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -342454,9 +342454,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -342464,24 +342464,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -342525,32 +342525,32 @@ }, { "type_name": "C_PlayerSprayDecal", - "vtable_address": 64338976, + "vtable_address": 64342880, "methods": [ 14368000, - 23002032, - 23002288, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 22922368, - 21132336, - 23048288, - 23001904, - 18665616, + 23004848, + 23005104, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 22925184, + 21135152, + 23050656, + 23004720, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 14321376, 12233840, 12233856, @@ -342560,23 +342560,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22916928, - 22922384, - 22921552, + 40000032, + 22919744, + 22925200, + 22924368, 12234080, - 22986000, - 18666928, - 18799200, + 22988816, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -342593,13 +342593,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -342607,41 +342607,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 22922320, - 20623632, - 18667568, + 20586576, + 18656624, + 18769824, + 20574880, + 22925136, + 20626448, + 18669872, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -342653,33 +342653,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -342707,9 +342707,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -342717,24 +342717,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -342746,32 +342746,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, - 18507888, - 18766800, - 18519232, + 18577456, + 18510192, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -342846,15 +342846,15 @@ }, { "type_name": "C_PlayerSprayDecal", - "vtable_address": 64340952, + "vtable_address": 64344856, "methods": [ - 23002560, - 23002816, - 18933072, - 18741840, - 18742112, + 23005376, + 23005632, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -342929,9 +342929,9 @@ }, { "type_name": "C_PlayerSprayDecal", - "vtable_address": 64341024, + "vtable_address": 64344928, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -343006,10 +343006,10 @@ }, { "type_name": "C_PlayerSprayDecalManifestCompletionCallback", - "vtable_address": 64338944, + "vtable_address": 64342848, "methods": [ - 22921120, - 22970304 + 22923936, + 22973120 ], "bases": [ { @@ -343031,33 +343031,33 @@ }, { "type_name": "C_PlayerVisibility", - "vtable_address": 63184920, + "vtable_address": 63188824, "methods": [ 14367152, 12892816, 12892832, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12894944, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12895280, - 21128960, - 21133440, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -343066,23 +343066,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12891664, 12967264, 12893120, 12234080, 12909024, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -343099,13 +343099,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -343113,39 +343113,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895520, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12890864, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -343159,33 +343159,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12900064, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -343213,9 +343213,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -343223,24 +343223,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -343284,33 +343284,33 @@ }, { "type_name": "C_PointCamera", - "vtable_address": 63226880, + "vtable_address": 63230784, "methods": [ 14367152, 12970976, 12970992, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12979744, - 21132352, - 21132672, - 21132336, - 21128672, + 21135168, + 21135488, + 21135152, + 21131488, 12979008, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -343319,23 +343319,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12969360, 13055344, 12971664, 12234080, 12997232, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -343352,13 +343352,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -343366,39 +343366,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12978944, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12968944, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -343412,33 +343412,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -343466,9 +343466,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -343476,24 +343476,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -343537,33 +343537,33 @@ }, { "type_name": "C_PointCameraVFOV", - "vtable_address": 63228648, + "vtable_address": 63232552, "methods": [ 14367152, 12971040, 12971056, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 12987072, - 21132352, - 21132672, - 21132336, - 21128672, + 21135168, + 21135488, + 21135152, + 21131488, 12979008, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -343572,23 +343572,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12969376, 13055344, 12971648, 12234080, 12997232, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -343605,13 +343605,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -343619,39 +343619,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12978944, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, + 20586576, 12968944, - 20901072, - 20572064, - 20633856, - 20623632, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -343665,33 +343665,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -343719,9 +343719,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -343729,24 +343729,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -343801,32 +343801,32 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 63126608, + "vtable_address": 63130512, "methods": [ 14368000, 12272064, 12272944, - 18931408, - 39987824, + 18934224, + 39991728, 12243392, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12245584, 12233840, 12233856, @@ -343836,23 +343836,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12237408, 12395632, 12240544, 12234080, 12275104, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -343869,13 +343869,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -343883,41 +343883,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -343929,33 +343929,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -343983,9 +343983,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -343993,24 +343993,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -344022,32 +344022,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12331568, 12278896, 12237392, @@ -344142,15 +344142,15 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 63128664, + "vtable_address": 63132568, "methods": [ 12271520, 12272384, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -344235,9 +344235,9 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 63128736, + "vtable_address": 63132640, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -344322,7 +344322,7 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 63128760, + "vtable_address": 63132664, "methods": [ 12280128, 12331824 @@ -344410,33 +344410,33 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 63128792, + "vtable_address": 63132696, "methods": [ 14368000, 12337520, 12340288, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12243504, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12243600, 12281856, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -344445,23 +344445,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12237520, 12395632, 12240528, 12234080, 12275232, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -344478,13 +344478,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -344492,41 +344492,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12243520, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12237504, - 18767008, - 20572064, + 18769824, + 20574880, 12243536, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -344538,33 +344538,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12243648, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, + 20583600, 12286800, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -344592,9 +344592,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -344602,24 +344602,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -344631,32 +344631,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12331568, 12278896, 12237424, @@ -344751,15 +344751,15 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 63130848, + "vtable_address": 63134752, "methods": [ 12338032, 12340800, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -344844,9 +344844,9 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 63130920, + "vtable_address": 63134824, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -344931,7 +344931,7 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 63130944, + "vtable_address": 63134848, "methods": [ 12280128, 12331824 @@ -345019,32 +345019,32 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 63131112, + "vtable_address": 63135016, "methods": [ 14368000, 12338576, 12339248, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12348640, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12397584, 12281984, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12243456, 12233840, 12233856, @@ -345054,23 +345054,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12237680, 12395632, 12240512, 12234080, 12275360, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -345087,13 +345087,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -345101,41 +345101,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12243520, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12237616, - 18767008, - 20572064, + 18769824, + 20574880, 12345664, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -345147,33 +345147,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12358528, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -345201,9 +345201,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -345211,24 +345211,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -345240,32 +345240,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12331568, 12278896, 12237536, @@ -345373,15 +345373,15 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 63133272, + "vtable_address": 63137176, "methods": [ 12339232, 12339296, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -345466,9 +345466,9 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 63133344, + "vtable_address": 63137248, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -345553,7 +345553,7 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 63133368, + "vtable_address": 63137272, "methods": [ 12280128, 12331824 @@ -345641,32 +345641,32 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 63135800, + "vtable_address": 63139704, "methods": [ 14368000, 12339536, 12339664, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12348640, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12398336, 12281984, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12243456, 12233840, 12233856, @@ -345676,23 +345676,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12237824, 12395632, 12240480, 12234080, 12275488, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -345709,13 +345709,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -345723,41 +345723,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12243520, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, + 20586576, 12237616, - 18767008, - 20572064, + 18769824, + 20574880, 12345888, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -345769,33 +345769,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, 12359248, - 21812224, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -345823,9 +345823,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -345833,24 +345833,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -345862,32 +345862,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12331568, 12278896, 12237536, @@ -346006,15 +346006,15 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 63137960, + "vtable_address": 63141864, "methods": [ 12339600, 12339744, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -346110,9 +346110,9 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 63138032, + "vtable_address": 63141936, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -346208,7 +346208,7 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 63138056, + "vtable_address": 63141960, "methods": [ 12280128, 12331824 @@ -346307,33 +346307,33 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 64161312, + "vtable_address": 64165216, "methods": [ 14381312, - 21152384, - 21153328, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 18932480, - 21151312, - 18665760, + 21155200, + 21156144, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 18935296, + 21154128, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 21151744, - 20572352, - 20572208, + 21154560, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -346342,23 +346342,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21134080, - 21318176, - 21137648, + 40000032, + 21136896, + 21320992, + 21140464, 12234080, - 21167088, - 18609696, - 18799200, + 21169904, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -346375,13 +346375,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -346389,79 +346389,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21236496, - 21140688, + 20586576, + 18656624, + 18769824, + 20574880, + 21239312, + 21143504, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 21140512, - 21812224, + 21143328, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 21140736, - 18741488, - 18562848, + 20583600, + 21143552, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -346486,12 +346486,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -346499,24 +346499,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -346528,66 +346528,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -346672,15 +346672,15 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 64163560, + "vtable_address": 64167464, "methods": [ - 21152000, - 21152880, - 18933072, - 18741840, - 18742112, + 21154816, + 21155696, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -346765,9 +346765,9 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 64163632, + "vtable_address": 64167536, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -346852,10 +346852,10 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 64163656, + "vtable_address": 64167560, "methods": [ - 21152192, - 21153104 + 21155008, + 21155920 ], "bases": [ { @@ -346940,32 +346940,32 @@ }, { "type_name": "C_PointEntity", - "vtable_address": 63162544, + "vtable_address": 63166448, "methods": [ 12604160, 12577920, 12577936, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -346975,23 +346975,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12574416, 12884144, 12576560, 12234080, 12620528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -347008,13 +347008,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -347022,39 +347022,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -347068,33 +347068,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -347122,9 +347122,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -347132,24 +347132,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -347193,7 +347193,7 @@ }, { "type_name": "C_PointEntity", - "vtable_address": 65407520, + "vtable_address": 65411424, "methods": [], "bases": [], "model": { @@ -347204,7 +347204,7 @@ }, { "type_name": "C_PointEntity", - "vtable_address": 65620480, + "vtable_address": 65624384, "methods": [], "bases": [], "model": { @@ -347215,33 +347215,33 @@ }, { "type_name": "C_PointValueRemapper", - "vtable_address": 64200280, + "vtable_address": 64204184, "methods": [ 14367152, - 21832592, - 21832368, + 21835408, + 21835184, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -347250,23 +347250,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21815632, - 22038480, - 21818336, + 40000032, + 21818448, + 22041296, + 21821168, 12234080, - 21860592, - 20571856, + 21863472, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -347283,13 +347283,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -347297,39 +347297,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 21823392, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 21826224, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -347343,33 +347343,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 21885792, - 21812224, + 21888672, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -347397,9 +347397,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -347407,24 +347407,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -347468,32 +347468,32 @@ }, { "type_name": "C_PointWorldText", - "vtable_address": 64202416, - "methods": [ - 21945248, - 21848608, - 21848816, - 18931408, - 39987824, - 18645760, - 18645648, - 21818816, - 21132352, - 21132672, - 21132336, - 21922112, - 21819264, - 18665616, + "vtable_address": 64206320, + "methods": [ + 21948128, + 21851424, + 21851632, + 18934224, + 39991728, + 18648064, + 18647952, + 21821648, + 21135168, + 21135488, + 21135152, + 21924992, + 21822096, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 14321376, 12233840, 12233856, @@ -347503,23 +347503,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21815664, - 21819488, - 21818352, + 40000032, + 21818480, + 21822320, + 21821184, 12234080, - 21860720, - 18666928, - 18799200, + 21863600, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -347536,13 +347536,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -347550,41 +347550,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, - 21819248, - 20572032, + 21822080, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 21815648, - 18767008, - 20572064, - 21926224, - 20623632, - 18667568, + 20586576, + 21818464, + 18769824, + 20574880, + 21929104, + 20626448, + 18669872, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -347596,33 +347596,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -347650,9 +347650,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -347660,24 +347660,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -347689,32 +347689,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, - 18507888, - 18766800, - 18519232, + 18577456, + 18510192, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -347789,15 +347789,15 @@ }, { "type_name": "C_PointWorldText", - "vtable_address": 64204392, + "vtable_address": 64208296, "methods": [ - 21848400, - 21849040, - 18933072, - 18741840, - 18742112, + 21851216, + 21851856, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -347872,9 +347872,9 @@ }, { "type_name": "C_PointWorldText", - "vtable_address": 64204464, + "vtable_address": 64208368, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -347949,33 +347949,33 @@ }, { "type_name": "C_PortraitWorldCallbackHandler", - "vtable_address": 63121920, + "vtable_address": 63125824, "methods": [ 14367152, 12243040, 12243056, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, 12298880, - 21128960, - 21133440, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -347984,23 +347984,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12236656, 12395648, 12240576, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -348017,13 +348017,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -348031,39 +348031,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -348077,33 +348077,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -348131,9 +348131,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -348143,22 +348143,22 @@ 12572688, 12236528, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -348202,32 +348202,32 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 63239144, + "vtable_address": 63243048, "methods": [ 14368000, 13075824, 13077136, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 13058720, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13067680, 13062848, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -348237,23 +348237,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055632, 13058752, 13056576, 12234080, 13081424, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -348270,13 +348270,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -348284,41 +348284,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 13058736, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -348330,33 +348330,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -348384,9 +348384,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -348394,24 +348394,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -348423,32 +348423,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 13055648, 12574432, 13061056, @@ -348564,15 +348564,15 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 63241192, + "vtable_address": 63245096, "methods": [ 13075120, 13078528, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -348679,9 +348679,9 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 63241264, + "vtable_address": 63245168, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -348788,7 +348788,7 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 63241288, + "vtable_address": 63245192, "methods": [ 13074464, 13077840, @@ -348899,32 +348899,32 @@ }, { "type_name": "C_Precipitation", - "vtable_address": 63391208, + "vtable_address": 63395112, "methods": [ 14368000, - 22319328, - 22320128, - 18931408, - 39987824, - 22319120, - 18645648, + 22322144, + 22322944, + 18934224, + 39991728, + 22321936, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, - 22319280, - 22321728, - 18665616, + 21135168, + 21135488, + 21135152, + 22322096, + 22324544, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -348934,23 +348934,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22319104, + 40000032, + 22321920, 14418848, 14314048, 12234080, 14345984, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -348967,13 +348967,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -348981,41 +348981,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 22319168, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 22321984, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -349027,33 +349027,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 22374704, - 21812224, + 22377520, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -349081,9 +349081,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -349091,24 +349091,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 14313488, 14313504, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -349120,32 +349120,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -349239,15 +349239,15 @@ }, { "type_name": "C_Precipitation", - "vtable_address": 63393248, + "vtable_address": 63397152, "methods": [ - 22320112, - 22320176, - 18933072, - 18741840, - 18742112, + 22322928, + 22322992, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -349333,9 +349333,9 @@ }, { "type_name": "C_Precipitation", - "vtable_address": 63393320, + "vtable_address": 63397224, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -349421,33 +349421,33 @@ }, { "type_name": "C_PrecipitationBlocker", - "vtable_address": 63389136, + "vtable_address": 63393040, "methods": [ 14368000, - 22318816, - 22319008, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 22321632, + 22321824, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -349456,23 +349456,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14313520, 14313408, 14314032, 12234080, 14345856, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -349489,13 +349489,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -349503,41 +349503,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -349549,33 +349549,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -349603,9 +349603,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -349613,24 +349613,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -349642,32 +349642,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -349731,15 +349731,15 @@ }, { "type_name": "C_PrecipitationBlocker", - "vtable_address": 63391112, + "vtable_address": 63395016, "methods": [ - 22318992, - 22319056, - 18933072, - 18741840, - 18742112, + 22321808, + 22321872, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -349803,9 +349803,9 @@ }, { "type_name": "C_PrecipitationBlocker", - "vtable_address": 63391184, + "vtable_address": 63395088, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -349869,10 +349869,10 @@ }, { "type_name": "C_PreviewModelLoadCallback", - "vtable_address": 64283744, + "vtable_address": 64287648, "methods": [ - 22824464, - 22857744 + 22827280, + 22860560 ], "bases": [ { @@ -349894,33 +349894,33 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 63424568, + "vtable_address": 63428472, "methods": [ 14381312, 14424320, 14424512, - 18931456, - 18604336, - 18710128, - 18551600, - 19267248, - 21132352, - 21191408, - 21132336, - 21318192, - 21318240, - 21191392, + 18934272, + 18606640, + 18712976, + 18553904, + 19270064, + 21135168, + 21194224, + 21135152, + 21321008, + 21321056, + 21194208, 12233808, 12233824, - 18522752, - 18705344, - 19046672, - 18517184, - 18561584, + 18525056, + 18708192, + 19049488, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 21190400, + 18936096, + 20575168, + 21193216, 12233840, 12233856, 12233872, @@ -349929,23 +349929,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21191568, + 40000032, + 21194384, 14476800, 14419504, 12234080, 14437168, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -349961,14 +349961,14 @@ 12044000, 12234304, 12572832, - 19040848, - 18563104, + 19043664, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -349976,86 +349976,86 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, - 18940656, - 18940672, + 18516048, + 18943472, + 18943488, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 21191520, - 19040384, - 20623632, + 20586576, + 18656624, + 18769824, + 21194336, + 19043200, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 18951920, + 18954736, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, 12234896, 12234912, 12234928, - 19046640, + 19049456, 12234960, 12234976, 12234992, @@ -350073,12 +350073,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -350086,24 +350086,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 19040480, - 20702256, + 20578656, + 19043296, + 20705072, 12572832, 12572592, 12572896, @@ -350115,74 +350115,74 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 19040832, - 19041872, + 18795952, + 19043648, + 19044688, 13130944, - 19041136, + 19043952, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 19046928, + 18780672, + 19049744, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968, - 21191536 + 18712816, + 21194352 ], "bases": [ { @@ -350322,15 +350322,15 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 63426880, + "vtable_address": 63430784, "methods": [ 14424384, 14424592, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -350470,9 +350470,9 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 63426952, + "vtable_address": 63430856, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -350612,11 +350612,11 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 63426976, + "vtable_address": 63430880, "methods": [ 14424448, 14424688, - 21191552 + 21194368 ], "bases": [ { @@ -350756,33 +350756,33 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 63476712, + "vtable_address": 63480616, "methods": [ 14381312, 14523264, 14523936, - 21822016, - 18604336, - 18517136, - 18551600, - 22045984, - 21132352, - 21822080, - 21132336, - 22038208, - 18933680, - 18665760, + 21824848, + 18606640, + 18519440, + 18553904, + 22048800, + 21135168, + 21824912, + 21135152, + 22041024, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -350791,23 +350791,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14513984, 14552432, 14514368, 12234080, 14536448, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -350824,13 +350824,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -350838,79 +350838,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 21822176, - 20572064, - 21914608, - 20623632, + 20586576, + 18656624, + 21825008, + 20574880, + 21917488, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 14513968, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 21822320, - 18741488, - 18562848, + 20583600, + 21825152, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -350935,12 +350935,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -350948,24 +350948,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 21829472, - 20702256, + 20578656, + 21832288, + 20705072, 12572832, 12572592, 12572896, @@ -350977,68 +350977,68 @@ 12572832, 12572912, 12235344, - 21942496, + 21945376, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 21912640, - 21816528 + 18780672, + 21915520, + 21819360 ], "bases": [ { @@ -351123,15 +351123,15 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 63478976, + "vtable_address": 63482880, "methods": [ 14522928, 14523584, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -351216,9 +351216,9 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 63479048, + "vtable_address": 63482952, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -351303,12 +351303,12 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 63479072, + "vtable_address": 63482976, "methods": [ - 21913952, + 21916832, 14312720, 14312736, - 21830592 + 21833408 ], "bases": [ { @@ -351393,33 +351393,33 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 64208968, + "vtable_address": 64212872, "methods": [ 14381312, - 21836032, - 21836720, - 21822016, - 18604336, - 18517136, - 18551600, - 22045984, - 21132352, - 21822080, - 21132336, - 22038208, - 18933680, - 18665760, + 21838848, + 21839536, + 21824848, + 18606640, + 18519440, + 18553904, + 22048800, + 21135168, + 21824912, + 21135152, + 22041024, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -351428,23 +351428,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21816544, - 21822336, - 21818368, + 40000032, + 21819376, + 21825168, + 21821200, 12234080, - 21860848, - 18609696, - 18799200, + 21863728, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -351461,13 +351461,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -351475,79 +351475,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 21822176, - 20572064, - 21835120, - 20623632, + 20586576, + 18656624, + 21825008, + 20574880, + 21837936, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 14513968, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 21822320, - 18741488, - 18562848, + 20583600, + 21825152, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -351572,12 +351572,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -351585,24 +351585,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 21829472, - 20702256, + 20578656, + 21832288, + 20705072, 12572832, 12572592, 12572896, @@ -351614,68 +351614,68 @@ 12572832, 12572912, 12235344, - 21942496, + 21945376, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 21913968, - 21816528 + 18780672, + 21916848, + 21819360 ], "bases": [ { @@ -351771,15 +351771,15 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 64211232, + "vtable_address": 64215136, "methods": [ - 21835696, - 21836368, - 18933072, - 18741840, - 18742112, + 21838512, + 21839184, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -351875,9 +351875,9 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 64211304, + "vtable_address": 64215208, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -351973,12 +351973,12 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 64211328, + "vtable_address": 64215232, "methods": [ - 21914288, + 21917168, 14312720, 14312736, - 21830592 + 21833408 ], "bases": [ { @@ -352074,33 +352074,33 @@ }, { "type_name": "C_RectLight", - "vtable_address": 64378040, + "vtable_address": 64381944, "methods": [ 14368000, - 23563136, - 23563232, - 18931408, - 39987824, - 18645760, - 18645648, - 23618816, - 21132352, - 21132672, - 21132336, - 23619904, - 23620304, - 18665616, + 23565888, + 23565984, + 18934224, + 39991728, + 18648064, + 18647952, + 23621568, + 21135168, + 21135488, + 21135152, + 23622656, + 23623056, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 23620784, - 20572352, - 20572208, + 23623536, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -352109,23 +352109,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 23556368, - 23620832, - 23556688, + 40000032, + 23559120, + 23623584, + 23559440, 12234080, - 23567488, - 18666928, - 18799200, + 23570240, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -352142,13 +352142,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -352156,41 +352156,41 @@ 12250624, 12250480, 12249920, - 23558256, + 23561008, 12234384, 12234400, 12572768, - 23557792, - 20572032, + 23560544, + 20574848, 12234432, - 20572048, - 23556320, - 23563392, + 20574864, + 23559072, + 23566144, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 23556352, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 23559104, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -352202,33 +352202,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -352256,9 +352256,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -352266,24 +352266,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -352295,35 +352295,35 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 23557424, - 23581536, - 23599248 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 23560176, + 23584288, + 23602000 ], "bases": [ { @@ -352398,15 +352398,15 @@ }, { "type_name": "C_RectLight", - "vtable_address": 64380040, + "vtable_address": 64383944, "methods": [ - 23563184, - 23563312, - 18933072, - 18741840, - 18742112, + 23565936, + 23566064, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -352481,9 +352481,9 @@ }, { "type_name": "C_RectLight", - "vtable_address": 64380112, + "vtable_address": 64384016, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -352558,7 +352558,7 @@ }, { "type_name": "C_RetakeGameRules", - "vtable_address": 63698848, + "vtable_address": 63702752, "methods": [ 17071136, 17072032, @@ -352599,7 +352599,7 @@ }, { "type_name": "C_RetakeGameRules", - "vtable_address": 63705672, + "vtable_address": 63709576, "methods": [], "bases": [], "model": { @@ -352610,33 +352610,33 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 63427016, + "vtable_address": 63430920, "methods": [ 14368000, 14434576, 14434160, - 21192496, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 21277104, - 21278176, - 18665616, + 21195312, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 21279920, + 21280992, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -352645,23 +352645,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14418992, 14476768, 14419536, 12234080, 14437264, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -352678,55 +352678,55 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, 12234368, 12250624, 12250480, - 21196544, - 20572032, + 21199360, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 21196464, - 18767008, - 20572064, - 21193312, - 20623632, + 20586576, + 21199280, + 18769824, + 20574880, + 21196128, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -352738,33 +352738,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 21239520, - 21812224, + 21242336, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -352792,9 +352792,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -352802,24 +352802,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -352831,34 +352831,34 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 21196576, - 21196640 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 21199392, + 21199456 ], "bases": [ { @@ -352932,15 +352932,15 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 63429008, + "vtable_address": 63432912, "methods": [ 14434368, 14433936, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -353014,9 +353014,9 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 63429080, + "vtable_address": 63432984, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -353090,10 +353090,10 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 63429104, + "vtable_address": 63433008, "methods": [ - 21196608, - 21196880 + 21199424, + 21199696 ], "bases": [ { @@ -353167,10 +353167,10 @@ }, { "type_name": "C_RopeKeyframe::CPhysicsDelegate", - "vtable_address": 64163688, + "vtable_address": 64167592, "methods": [ - 21160512, - 21199184, + 21163328, + 21202000, 14419552 ], "bases": [ @@ -353193,32 +353193,32 @@ }, { "type_name": "C_SceneEntity", - "vtable_address": 63429136, + "vtable_address": 63433040, "methods": [ 12604160, 14432336, 14432656, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21207040, - 21132336, - 21128672, - 21205024, - 21133440, + 21127072, + 21128896, + 21135168, + 21209856, + 21135152, + 21131488, + 21207840, + 21136256, 12233808, 12233824, - 21202176, + 21204992, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, + 20583280, + 20575168, 12243440, 12233840, 12233856, @@ -353228,23 +353228,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14419008, 14424784, 14419568, 12234080, 14437360, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -353261,13 +353261,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -353275,39 +353275,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 21208800, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 21211616, + 20636672, + 20626448, 12611120, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -353321,33 +353321,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 21254608, - 21812224, + 21257424, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -353375,9 +353375,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -353385,24 +353385,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -353414,21 +353414,21 @@ 12572832, 12572912, 12235344, - 21254928, - 21204032, - 21202224, - 21201872, - 21205472, - 21203216, - 21140800, - 21140752, - 21140880, - 21140752, - 21140880, - 21140752, - 21140880, - 21140752, - 21140880 + 21257744, + 21206848, + 21205040, + 21204688, + 21208288, + 21206032, + 21143616, + 21143568, + 21143696, + 21143568, + 21143696, + 21143568, + 21143696, + 21143568, + 21143696 ], "bases": [ { @@ -353482,11 +353482,11 @@ }, { "type_name": "C_SceneEntity", - "vtable_address": 63431024, + "vtable_address": 63434928, "methods": [ - 21255808, - 21204544, - 21202512 + 21258624, + 21207360, + 21205328 ], "bases": [ { @@ -353540,15 +353540,15 @@ }, { "type_name": "C_ServerPeerGroup", - "vtable_address": 64158120, + "vtable_address": 64162024, "methods": [ - 21155024, - 21155440, - 21133952, - 21146336, - 21146560, - 21161808, - 21183296 + 21157840, + 21158256, + 21136768, + 21149152, + 21149376, + 21164624, + 21186112 ], "bases": [ { @@ -353580,10 +353580,10 @@ }, { "type_name": "C_ServerPeerGroup", - "vtable_address": 64158192, + "vtable_address": 64162096, "methods": [ - 21158912, - 21184048 + 21161728, + 21186864 ], "bases": [ { @@ -353615,10 +353615,10 @@ }, { "type_name": "C_ServerVoiceHandler", - "vtable_address": 64163792, + "vtable_address": 64167696, "methods": [ - 21161632, - 21181120 + 21164448, + 21183936 ], "bases": [ { @@ -353640,13 +353640,13 @@ }, { "type_name": "C_ServerVoiceHandlerInit", - "vtable_address": 64163824, + "vtable_address": 64167728, "methods": [ - 21308032, + 21310848, 12204208, - 21209728, + 21212544, 12204240, - 21143264, + 21146080, 12204272, 12204288, 12204304, @@ -353698,12 +353698,12 @@ 12205040, 12205056, 12205072, - 21134256, + 21137072, 12205104, - 21134240, - 21141984, - 21142000, - 21134224 + 21137056, + 21144800, + 21144816, + 21137040 ], "bases": [ { @@ -353736,33 +353736,33 @@ }, { "type_name": "C_ShatterGlassShardPhysics", - "vtable_address": 63276280, + "vtable_address": 63280184, "methods": [ 14381312, 13140944, 13139984, - 18931456, - 18604336, - 18710128, - 18551600, - 18801392, - 21132352, - 18750864, - 21132336, - 21700896, - 21702192, - 18665760, + 18934272, + 18606640, + 18712976, + 18553904, + 18804208, + 21135168, + 18753680, + 21135152, + 21703712, + 21705008, + 18668064, 12233808, 12233824, - 18522752, - 18705344, - 18787392, - 18517184, - 18561584, + 18525056, + 18708192, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 21188512, + 18936096, + 20575168, + 21191328, 12233840, 12233856, 12233872, @@ -353771,23 +353771,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21635024, + 40000032, + 21637840, 13162336, 13131600, 12234080, 13141776, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -353804,13 +353804,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -353818,79 +353818,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 21188448, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 21191264, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, - 18707840, + 20636464, + 18710688, 12572624, 12572784, 12234816, - 21635344, - 21812224, + 21638160, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -353915,12 +353915,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -353928,24 +353928,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -353957,73 +353957,73 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18708480, - 18709104, - 18507776, + 18510080, + 18510064, + 18711328, + 18711952, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, + 18780672, 13131136, 13131120, - 18518192, + 18520496, 13131152, 13131168, 13132720, - 18709968 + 18712816 ], "bases": [ { @@ -354131,15 +354131,15 @@ }, { "type_name": "C_ShatterGlassShardPhysics", - "vtable_address": 63278584, + "vtable_address": 63282488, "methods": [ 13140624, 13140304, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -354247,9 +354247,9 @@ }, { "type_name": "C_ShatterGlassShardPhysics", - "vtable_address": 63278656, + "vtable_address": 63282560, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -354357,13 +354357,13 @@ }, { "type_name": "C_ShatterGlassShardPhysics::NetworkVar_m_ShardDesc", - "vtable_address": 64189024, + "vtable_address": 64192928, "methods": [ 13131584, 13133600, 13131216, 13131232, - 21558736 + 21561552 ], "bases": [ { @@ -354385,33 +354385,33 @@ }, { "type_name": "C_SkyCamera", - "vtable_address": 63480888, + "vtable_address": 63484792, "methods": [ 14367152, - 21919968, - 21920096, + 21922848, + 21922976, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -354420,23 +354420,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21919392, + 40000032, + 21922272, 14552416, 14514320, 12234080, 14536576, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -354453,13 +354453,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -354467,39 +354467,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -354513,33 +354513,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -354567,9 +354567,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -354577,24 +354577,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -354638,12 +354638,12 @@ }, { "type_name": "C_SkyCamera::NetworkVar_m_skyboxData", - "vtable_address": 64211376, + "vtable_address": 64215280, "methods": [ 13131664, - 21824640, - 19358272, - 21816560 + 21827456, + 19361088, + 21819392 ], "bases": [ { @@ -354665,33 +354665,33 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 63964416, + "vtable_address": 63968320, "methods": [ 14371616, - 17735488, - 17744192, - 20584080, - 18604336, - 17292992, - 18551600, - 17714496, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17737792, + 17746496, + 20586896, + 18606640, + 17295296, + 18553904, + 17716800, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -354700,24 +354700,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17709648, - 17714448, - 17712848, + 40000032, + 17711952, + 17716752, + 17715152, 12234080, - 17741920, - 17709600, - 18799200, + 17744224, + 17711904, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -354728,98 +354728,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17293024, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17295328, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -354830,26 +354830,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -354857,24 +354857,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -354886,227 +354886,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17293568, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17437024, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17287328, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17295872, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17439328, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17289632, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17287216, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 17298944, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17289520, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 17301248, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17293008, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17309904, - 17304544, - 17409584, - 17409680, - 17437680, - 17448944, - 17424672, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17437360, - 17293632, - 17543792, - 17293152, - 17540816, - 17561728, - 17546560, - 17547488, - 17437584, - 17286832, - 17514800, - 17439168, - 17286864, - 17287280, - 17286896, - 17409520, - 17287232, - 17305632, - 17709568, - 17709584 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17295312, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17312208, + 17306848, + 17411888, + 17411984, + 17439984, + 17451248, + 17426976, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17439664, + 17295936, + 17546096, + 17295456, + 17543120, + 17564032, + 17548864, + 17549792, + 17439888, + 17289136, + 17517104, + 17441472, + 17289168, + 17289584, + 17289200, + 17411824, + 17289536, + 17307936, + 17711872, + 17711888 ], "bases": [ { @@ -355287,15 +355287,15 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 63967952, + "vtable_address": 63971856, "methods": [ - 17733248, - 17744320, - 18933072, - 18741840, - 18742112, + 17735552, + 17746624, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -355476,9 +355476,9 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 63968024, + "vtable_address": 63971928, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -355659,12 +355659,12 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 63968048, + "vtable_address": 63971952, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -355845,14 +355845,14 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 63968096, + "vtable_address": 63972000, "methods": [ - 17712864, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17715168, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -356033,10 +356033,10 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 63968160, + "vtable_address": 63972064, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -356217,11 +356217,11 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 63968192, + "vtable_address": 63972096, "methods": [ - 17734368, - 17744448, - 17514944 + 17736672, + 17746752, + 17517248 ], "bases": [ { @@ -356402,33 +356402,33 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 63770280, + "vtable_address": 63774184, "methods": [ 14371616, - 17338832, - 17339136, - 20584080, - 18604336, + 17341136, + 17341440, + 20586896, + 18606640, 17042416, - 18551600, - 17436560, - 21132352, - 17436544, - 21132336, - 20962400, - 17435072, - 18665760, + 18553904, + 17438864, + 21135168, + 17438848, + 21135152, + 20965216, + 17437376, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -356437,23 +356437,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17287168, - 17436608, - 17288944, + 40000032, + 17289472, + 17438912, + 17291248, 12234080, - 17316832, + 17319136, 16907424, - 18799200, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -356470,93 +356470,93 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20859680, - 17379744, - 20623632, + 20586576, + 18656624, + 18769824, + 20862496, + 17382048, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 17360544, - 21812224, + 17362848, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -356581,12 +356581,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -356594,24 +356594,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -356623,71 +356623,71 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 20977568, - 20598704, - 20602000, + 18780672, + 20980384, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, 16907264, 16907440, @@ -356697,10 +356697,10 @@ 16907840, 16907296, 16907456, - 17287152, + 17289456, 16907328, 16907344, - 17287184 + 17289488 ], "bases": [ { @@ -356828,15 +356828,15 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 63772672, + "vtable_address": 63776576, "methods": [ - 17341264, - 17339232, - 18933072, - 18741840, - 18742112, + 17343568, + 17341536, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -356964,9 +356964,9 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 63772744, + "vtable_address": 63776648, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -357094,9 +357094,9 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 63772768, + "vtable_address": 63776672, "methods": [ - 20979392, + 20982208, 14312720, 14312736, 14312752 @@ -357227,10 +357227,10 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 63772816, + "vtable_address": 63776720, "methods": [ - 17340976, - 17339184 + 17343280, + 17341488 ], "bases": [ { @@ -357358,7 +357358,7 @@ }, { "type_name": "C_SoundAreaEntityBase", - "vtable_address": 63244464, + "vtable_address": 63248368, "methods": [ 14367152 ], @@ -357393,33 +357393,33 @@ }, { "type_name": "C_SoundAreaEntityOrientedBox", - "vtable_address": 63248032, + "vtable_address": 63251936, "methods": [ 14367152, 13059360, 13059376, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -357428,23 +357428,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055808, 13130800, 13056656, 12234080, 13080560, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -357461,13 +357461,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -357475,39 +357475,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, + 20586576, + 20583008, + 20903888, + 20574880, 13065712, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -357521,33 +357521,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -357575,9 +357575,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -357585,24 +357585,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -357659,33 +357659,33 @@ }, { "type_name": "C_SoundAreaEntitySphere", - "vtable_address": 63246248, + "vtable_address": 63250152, "methods": [ 14367152, 13059296, 13059312, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -357694,23 +357694,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055792, 13130800, 13056672, 12234080, 13080464, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -357727,13 +357727,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -357741,39 +357741,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, + 20586576, + 20583008, + 20903888, + 20574880, 13065712, - 20623632, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -357787,33 +357787,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -357841,9 +357841,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -357851,24 +357851,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -357925,33 +357925,33 @@ }, { "type_name": "C_SoundEventAABBEntity", - "vtable_address": 63253416, + "vtable_address": 63257320, "methods": [ 14367152, 13098848, 13100016, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13070944, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13118912, 13064368, 13101376, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -357960,23 +357960,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055840, 13130800, 13056752, 12234080, 13080752, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -357993,13 +357993,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -358007,39 +358007,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -358053,33 +358053,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -358107,9 +358107,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -358117,24 +358117,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -358191,33 +358191,33 @@ }, { "type_name": "C_SoundEventEntity", - "vtable_address": 63249848, + "vtable_address": 63253752, "methods": [ 14367152, 13098176, 13099296, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13070944, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13118912, 13064368, 13101376, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -358226,23 +358226,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055824, 13130800, 13056784, 12234080, 13080656, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -358259,13 +358259,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -358273,39 +358273,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -358319,33 +358319,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -358373,9 +358373,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -358383,24 +358383,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -358446,7 +358446,7 @@ }, { "type_name": "C_SoundEventEntity", - "vtable_address": 65420384, + "vtable_address": 65424288, "methods": [], "bases": [], "model": { @@ -358457,33 +358457,33 @@ }, { "type_name": "C_SoundEventEntityAlias_snd_event_point", - "vtable_address": 63251632, + "vtable_address": 63255536, "methods": [ 14367152, 13099072, 13100256, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13070944, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13118912, 13064368, 13101376, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -358492,23 +358492,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055904, 13130800, 13056768, 12234080, 13080656, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -358525,13 +358525,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -358539,39 +358539,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -358585,33 +358585,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -358639,9 +358639,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -358649,24 +358649,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -358723,33 +358723,33 @@ }, { "type_name": "C_SoundEventOBBEntity", - "vtable_address": 63255200, + "vtable_address": 63259104, "methods": [ 14367152, 13098624, 13099776, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13070944, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13118912, 13064368, 13101376, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -358758,23 +358758,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055856, 13130800, 13056736, 12234080, 13080848, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -358791,13 +358791,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -358805,39 +358805,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -358851,33 +358851,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -358905,9 +358905,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -358915,24 +358915,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -358989,33 +358989,33 @@ }, { "type_name": "C_SoundEventPathCornerEntity", - "vtable_address": 63258768, + "vtable_address": 63262672, "methods": [ 14367152, 13100496, 13100768, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13070944, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13118912, 13064368, 13101376, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -359024,23 +359024,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055888, 13130800, 13056704, 12234080, 13081040, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -359057,13 +359057,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -359071,39 +359071,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -359117,33 +359117,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -359171,9 +359171,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -359181,24 +359181,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -359255,33 +359255,33 @@ }, { "type_name": "C_SoundEventSphereEntity", - "vtable_address": 63256984, + "vtable_address": 63260888, "methods": [ 14367152, 13098400, 13099536, 12884160, - 39987824, + 39991728, 12884208, - 21124256, + 21127072, 13070944, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 13118912, 13064368, 13101376, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -359290,23 +359290,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055872, 13130800, 13056720, 12234080, 13080944, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -359323,13 +359323,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -359337,39 +359337,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -359383,33 +359383,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -359437,9 +359437,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -359447,24 +359447,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -359521,33 +359521,33 @@ }, { "type_name": "C_SoundOpvarSetAABBEntity", - "vtable_address": 63293448, + "vtable_address": 63297352, "methods": [ 14367152, 13164880, 13164896, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -359556,23 +359556,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22099232, + 40000032, + 22102048, 13214496, 13163232, 12234080, 13178272, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -359589,13 +359589,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -359603,39 +359603,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -359649,33 +359649,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -359703,9 +359703,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -359713,24 +359713,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -359796,7 +359796,7 @@ }, { "type_name": "C_SoundOpvarSetAABBEntity", - "vtable_address": 65447328, + "vtable_address": 65451232, "methods": [], "bases": [], "model": { @@ -359807,33 +359807,33 @@ }, { "type_name": "C_SoundOpvarSetAutoRoomEntity", - "vtable_address": 63298752, + "vtable_address": 63302656, "methods": [ 14367152, 13164752, 13164768, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -359842,23 +359842,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22099520, + 40000032, + 22102336, 13214496, 13163184, 12234080, 13178656, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -359875,13 +359875,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -359889,39 +359889,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -359935,33 +359935,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -359989,9 +359989,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -359999,24 +359999,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -360082,33 +360082,33 @@ }, { "type_name": "C_SoundOpvarSetOBBEntity", - "vtable_address": 63295216, + "vtable_address": 63299120, "methods": [ 14367152, 13164944, 13164960, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -360117,23 +360117,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22099488, + 40000032, + 22102304, 13214496, 13163216, 12234080, 13178400, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -360150,13 +360150,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -360164,39 +360164,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -360210,33 +360210,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -360264,9 +360264,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -360274,24 +360274,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -360368,33 +360368,33 @@ }, { "type_name": "C_SoundOpvarSetOBBWindEntity", - "vtable_address": 63300520, + "vtable_address": 63304424, "methods": [ 14367152, 13164688, 13164704, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -360403,23 +360403,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22099536, + 40000032, + 22102352, 13214496, 13163168, 12234080, 13178784, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -360436,13 +360436,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -360450,39 +360450,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -360496,33 +360496,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -360550,9 +360550,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -360560,24 +360560,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -360632,33 +360632,33 @@ }, { "type_name": "C_SoundOpvarSetPathCornerEntity", - "vtable_address": 63296984, + "vtable_address": 63300888, "methods": [ 14367152, 13164816, 13164832, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -360667,23 +360667,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22099504, + 40000032, + 22102320, 13214496, 13163200, 12234080, 13178528, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -360700,13 +360700,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -360714,39 +360714,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -360760,33 +360760,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -360814,9 +360814,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -360824,24 +360824,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -360907,33 +360907,33 @@ }, { "type_name": "C_SoundOpvarSetPointBase", - "vtable_address": 63289912, + "vtable_address": 63293816, "methods": [ 14367152, - 22098592, - 22098624, + 22101408, + 22101440, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -360942,23 +360942,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22098336, + 40000032, + 22101152, 13214496, 13163264, 12234080, 13178016, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -360975,13 +360975,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -360989,39 +360989,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -361035,33 +361035,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -361089,9 +361089,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -361099,24 +361099,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -361160,7 +361160,7 @@ }, { "type_name": "C_SoundOpvarSetPointBase", - "vtable_address": 65446944, + "vtable_address": 65450848, "methods": [], "bases": [], "model": { @@ -361171,7 +361171,7 @@ }, { "type_name": "C_SoundOpvarSetPointBase", - "vtable_address": 65447584, + "vtable_address": 65451488, "methods": [], "bases": [], "model": { @@ -361182,33 +361182,33 @@ }, { "type_name": "C_SoundOpvarSetPointEntity", - "vtable_address": 63291680, + "vtable_address": 63295584, "methods": [ 14367152, - 22099024, - 22099120, + 22101840, + 22101936, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -361217,23 +361217,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22098928, + 40000032, + 22101744, 13214496, 13163248, 12234080, 13178144, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -361250,13 +361250,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -361264,39 +361264,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -361310,33 +361310,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -361364,9 +361364,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -361374,24 +361374,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -361446,7 +361446,7 @@ }, { "type_name": "C_SoundOpvarSetPointEntity", - "vtable_address": 65447072, + "vtable_address": 65450976, "methods": [], "bases": [], "model": { @@ -361457,7 +361457,7 @@ }, { "type_name": "C_SoundOpvarSetPointEntity", - "vtable_address": 65447200, + "vtable_address": 65451104, "methods": [], "bases": [], "model": { @@ -361468,7 +361468,7 @@ }, { "type_name": "C_SoundOpvarSetPointEntity", - "vtable_address": 65447456, + "vtable_address": 65451360, "methods": [], "bases": [], "model": { @@ -361479,13 +361479,13 @@ }, { "type_name": "C_SoundscapeSystem", - "vtable_address": 64164528, + "vtable_address": 64168432, "methods": [ 12204192, 12204208, 12204224, - 21256784, - 21240976, + 21259600, + 21243792, 12204272, 12204288, 12204304, @@ -361496,11 +361496,11 @@ 12204384, 12204400, 12204416, - 21285792, + 21288608, 12204448, 12204464, - 21282384, - 21158704, + 21285200, + 21161520, 12204512, 12204528, 12204544, @@ -361508,7 +361508,7 @@ 12204576, 12204592, 12204608, - 21225376, + 21228192, 12204640, 12204656, 12204672, @@ -361529,7 +361529,7 @@ 12204912, 12204928, 12204944, - 21134352, + 21137168, 12204976, 12204992, 12205008, @@ -361537,12 +361537,12 @@ 12205040, 12205056, 12205072, - 21134320, + 21137136, 12205104, - 21134304, - 21165712, - 21166400, - 21134288 + 21137120, + 21168528, + 21169216, + 21137104 ], "bases": [ { @@ -361564,33 +361564,33 @@ }, { "type_name": "C_SpotlightEnd", - "vtable_address": 64165040, + "vtable_address": 64168944, "methods": [ 14368000, - 21136736, - 21136832, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 21139552, + 21139648, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -361599,23 +361599,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21134400, - 21309376, - 21137664, + 40000032, + 21137216, + 21312192, + 21140480, 12234080, - 21167216, - 18666928, - 18799200, + 21170032, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -361632,13 +361632,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -361646,41 +361646,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 21134384, - 18767008, - 20572064, - 21142560, - 20623632, + 20586576, + 21137200, + 18769824, + 20574880, + 21145376, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -361692,33 +361692,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 21142816, - 21812224, + 21145632, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -361746,9 +361746,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -361756,24 +361756,24 @@ 12235184, 12235440, 12572688, - 21133744, + 21136560, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -361785,32 +361785,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -361874,15 +361874,15 @@ }, { "type_name": "C_SpotlightEnd", - "vtable_address": 64167016, + "vtable_address": 64170920, "methods": [ - 21136784, - 21136912, - 18933072, - 18741840, - 18742112, + 21139600, + 21139728, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -361946,9 +361946,9 @@ }, { "type_name": "C_SpotlightEnd", - "vtable_address": 64167088, + "vtable_address": 64170992, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -362012,33 +362012,33 @@ }, { "type_name": "C_Sprite", - "vtable_address": 63302288, + "vtable_address": 63306192, "methods": [ 14368000, 13165392, 13176512, - 18931408, - 39987824, - 22232768, - 18645648, - 22140816, - 21132352, - 21132672, - 21132336, - 22232592, - 22232688, - 18665616, + 18934224, + 39991728, + 22235584, + 18647952, + 22143632, + 21135168, + 21135488, + 21135152, + 22235408, + 22235504, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -362047,24 +362047,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22112096, + 40000032, + 22114912, 13214512, 13163296, 12234080, 13178912, - 22112448, - 18799200, + 22115264, + 18802016, 12234096, - 20632896, - 22112960, + 20635712, + 22115776, 12235472, 12235488, 12234160, @@ -362080,13 +362080,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -362094,41 +362094,41 @@ 12250624, 12250480, 12249920, - 22112496, + 22115312, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 22114032, - 18767008, - 20572064, - 22233040, - 22113840, + 20586576, + 22116848, + 18769824, + 20574880, + 22235856, + 22116656, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -362140,33 +362140,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22113856, - 21812224, + 22116672, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -362194,9 +362194,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -362204,24 +362204,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 22113376, - 20702256, + 20578656, + 22116192, + 20705072, 12572832, 12572592, 12572896, @@ -362233,34 +362233,34 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 22051104, - 22113680 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 22053920, + 22116496 ], "bases": [ { @@ -362324,15 +362324,15 @@ }, { "type_name": "C_Sprite", - "vtable_address": 63304280, + "vtable_address": 63308184, "methods": [ 13165552, 13176688, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -362396,9 +362396,9 @@ }, { "type_name": "C_Sprite", - "vtable_address": 63304352, + "vtable_address": 63308256, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -362462,7 +362462,7 @@ }, { "type_name": "C_Sprite", - "vtable_address": 65445760, + "vtable_address": 65449664, "methods": [], "bases": [], "model": { @@ -362473,33 +362473,33 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 63790688, + "vtable_address": 63794592, "methods": [ 14381312, - 17449872, - 17450000, - 18931456, - 18604336, - 17702160, - 18551600, - 17702208, - 21132352, - 18750864, - 21132336, - 18932480, - 17701872, - 18665760, + 17452176, + 17452304, + 18934272, + 18606640, + 17704464, + 18553904, + 17704512, + 21135168, + 18753680, + 21135152, + 18935296, + 17704176, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -362508,23 +362508,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439088, - 17708912, - 17440832, + 40000032, + 17441392, + 17711216, + 17443136, 12234080, 14344320, - 17439040, - 18799200, + 17441344, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -362541,13 +362541,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -362555,79 +362555,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 17701920, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 17704224, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 17448608, - 18515488, - 20825088, - 18632768, + 17450912, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 17448544, + 20610960, + 20575008, + 17450848, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -362652,12 +362652,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -362665,24 +362665,24 @@ 12235184, 12235440, 12572688, - 17448672, + 17450976, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -362694,67 +362694,67 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17451072 + 18780672, + 17453376 ], "bases": [ { @@ -362850,15 +362850,15 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 63792944, + "vtable_address": 63796848, "methods": [ - 17449936, - 17450080, - 18933072, - 18741840, - 18742112, + 17452240, + 17452384, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -362954,9 +362954,9 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 63793016, + "vtable_address": 63796920, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -363052,11 +363052,11 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 63793040, + "vtable_address": 63796944, "methods": [ - 17438704, + 17441008, 13215936, - 17456208, + 17458512, 13215952 ], "bases": [ @@ -363153,33 +363153,33 @@ }, { "type_name": "C_Team", - "vtable_address": 63260552, + "vtable_address": 63264456, "methods": [ 14367152, 13067536, 13067376, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, 13119872, 13067024, - 21133440, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -363188,14 +363188,14 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 13055920, 13130800, 13056800, @@ -363204,7 +363204,7 @@ 13055936, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -363221,13 +363221,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -363235,39 +363235,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -363281,33 +363281,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -363335,9 +363335,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -363345,24 +363345,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -363406,11 +363406,11 @@ }, { "type_name": "C_TempEntsSystem", - "vtable_address": 64235288, + "vtable_address": 64239192, "methods": [ - 22300144, - 22298368, - 22298384 + 22302960, + 22301184, + 22301200 ], "bases": [ { @@ -363432,33 +363432,33 @@ }, { "type_name": "C_TextureBasedAnimatable", - "vtable_address": 64117928, + "vtable_address": 64121832, "methods": [ 14368000, - 20210624, - 20210816, - 18931408, - 39987824, - 20151600, - 18645648, - 20496368, - 21132352, - 20151808, - 21132336, - 20151648, - 18933504, - 18665616, + 20213440, + 20213632, + 18934224, + 39991728, + 20154416, + 18647952, + 20499184, + 21135168, + 20154624, + 21135152, + 20154464, + 18936320, + 18667920, 12233808, 12233824, - 20151792, - 18518336, + 20154608, + 18520640, 12779840, - 18517184, - 20627168, - 20151760, - 18933280, - 20572352, - 20572208, + 18519488, + 20629984, + 20154576, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -363467,23 +363467,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20137456, - 20496512, - 20150320, + 40000032, + 20140272, + 20499328, + 20153136, 12234080, - 20213120, - 18666928, - 18799200, + 20215936, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -363500,13 +363500,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -363514,41 +363514,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -363560,33 +363560,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20290272, + 20583600, + 20293088, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -363614,9 +363614,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -363624,24 +363624,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -363653,32 +363653,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -363742,15 +363742,15 @@ }, { "type_name": "C_TextureBasedAnimatable", - "vtable_address": 64119904, + "vtable_address": 64123808, "methods": [ - 20210432, - 20211024, - 18933072, - 18741840, - 18742112, + 20213248, + 20213840, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -363814,9 +363814,9 @@ }, { "type_name": "C_TextureBasedAnimatable", - "vtable_address": 64119976, + "vtable_address": 64123880, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -363880,33 +363880,33 @@ }, { "type_name": "C_TintController", - "vtable_address": 63431064, + "vtable_address": 63434968, "methods": [ 14367152, - 21393280, - 21393376, + 21396096, + 21396192, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21538752, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21541568, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -363915,23 +363915,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14419024, 14476704, 14419584, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -363948,13 +363948,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -363962,39 +363962,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -364008,33 +364008,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 21393488, - 21812224, + 21396304, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -364062,9 +364062,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -364072,24 +364072,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -364101,7 +364101,7 @@ 12572832, 12572912, 12235344, - 21393696 + 21396512 ], "bases": [ { @@ -364134,33 +364134,33 @@ }, { "type_name": "C_TonemapController2", - "vtable_address": 63190528, + "vtable_address": 63194432, "methods": [ 14367152, 12892880, 12892896, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, + 21127072, + 21128896, + 21135168, 12926480, - 21132336, - 21128672, - 21128960, - 21133440, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -364169,23 +364169,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12892016, 12967264, 12893168, 12234080, 12909280, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -364202,13 +364202,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -364216,39 +364216,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895504, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -364262,33 +364262,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -364316,9 +364316,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -364326,24 +364326,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -364387,7 +364387,7 @@ }, { "type_name": "C_TonemapController2", - "vtable_address": 65375808, + "vtable_address": 65379712, "methods": [], "bases": [], "model": { @@ -364398,33 +364398,33 @@ }, { "type_name": "C_TonemapController2Alias_env_tonemap_controller2", - "vtable_address": 63188760, + "vtable_address": 63192664, "methods": [ 14367152, 12892944, 12892960, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, + 21127072, + 21128896, + 21135168, 12926480, - 21132336, - 21128672, - 21128960, - 21133440, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -364433,23 +364433,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 12892048, 12967264, 12893152, 12234080, 12909280, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -364466,13 +364466,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -364480,39 +364480,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12895504, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -364526,33 +364526,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -364580,9 +364580,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -364590,24 +364590,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -364662,32 +364662,32 @@ }, { "type_name": "C_TriggerBuoyancy", - "vtable_address": 63741424, + "vtable_address": 63745328, "methods": [ 14368000, - 17234800, - 17235376, - 18931408, - 39987824, - 18645760, - 18645648, - 17218352, - 21132352, - 21132672, - 21132336, - 17219936, - 17219984, - 18665616, + 17237104, + 17237680, + 18934224, + 39991728, + 18648064, + 18647952, + 17220656, + 21135168, + 21135488, + 21135152, + 17222240, + 17222288, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -364697,23 +364697,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17217200, - 17218368, - 17218464, + 40000032, + 17219504, + 17220672, + 17220768, 12234080, - 17232368, - 18666928, - 17218400, + 17234672, + 18669232, + 17220704, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -364730,13 +364730,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -364744,41 +364744,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -364790,33 +364790,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -364844,9 +364844,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -364854,24 +364854,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -364883,36 +364883,36 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, - 17220032, - 17220080, + 17222336, + 17222384, 12574432, 12580032, 12574496, @@ -365002,15 +365002,15 @@ }, { "type_name": "C_TriggerBuoyancy", - "vtable_address": 63743464, + "vtable_address": 63747368, "methods": [ - 17235088, - 17235680, - 18933072, - 18741840, - 18742112, + 17237392, + 17237984, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -365096,9 +365096,9 @@ }, { "type_name": "C_TriggerBuoyancy", - "vtable_address": 63743536, + "vtable_address": 63747440, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -365184,32 +365184,32 @@ }, { "type_name": "C_TriggerLerpObject", - "vtable_address": 63437048, + "vtable_address": 63440952, "methods": [ 14368000, 14438896, 14453904, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -365219,23 +365219,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21393872, + 40000032, + 21396688, 14424800, 14419632, 12234080, 14437648, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -365252,13 +365252,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -365266,41 +365266,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -365312,33 +365312,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -365366,9 +365366,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -365376,24 +365376,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -365405,32 +365405,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -365524,15 +365524,15 @@ }, { "type_name": "C_TriggerLerpObject", - "vtable_address": 63439088, + "vtable_address": 63442992, "methods": [ 14439424, 14453984, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -365618,9 +365618,9 @@ }, { "type_name": "C_TriggerLerpObject", - "vtable_address": 63439160, + "vtable_address": 63443064, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -365706,32 +365706,32 @@ }, { "type_name": "C_TriggerMultiple", - "vtable_address": 63434912, + "vtable_address": 63438816, "methods": [ 14368000, 14437840, 14453744, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -365741,23 +365741,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21393856, + 40000032, + 21396672, 14424800, 14419616, 12234080, 14437552, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -365774,13 +365774,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -365788,41 +365788,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -365834,33 +365834,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -365888,9 +365888,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -365898,24 +365898,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -365927,32 +365927,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -366046,15 +366046,15 @@ }, { "type_name": "C_TriggerMultiple", - "vtable_address": 63436952, + "vtable_address": 63440856, "methods": [ 14438368, 14453824, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -366140,9 +366140,9 @@ }, { "type_name": "C_TriggerMultiple", - "vtable_address": 63437024, + "vtable_address": 63440928, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -366228,32 +366228,32 @@ }, { "type_name": "C_TriggerPhysics", - "vtable_address": 63439184, + "vtable_address": 63443088, "methods": [ 14368000, 14439952, 14454064, - 18931408, - 39987824, - 18645760, - 18645648, + 18934224, + 39991728, + 18648064, + 18647952, 12581168, - 21132352, - 21132672, - 21132336, + 21135168, + 21135488, + 21135152, 12601568, 12578176, - 18665616, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12785744, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, + 18936096, + 20575168, 12578192, 12233840, 12233856, @@ -366263,23 +366263,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21393888, + 40000032, + 21396704, 14424800, 14419648, 12234080, 14437744, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -366296,13 +366296,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -366310,41 +366310,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -366356,33 +366356,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12737344, 12572624, 12598176, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -366410,9 +366410,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -366420,24 +366420,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -366449,32 +366449,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, 12604352, 12574432, 12574464, @@ -366568,15 +366568,15 @@ }, { "type_name": "C_TriggerPhysics", - "vtable_address": 63441224, + "vtable_address": 63445128, "methods": [ 14440480, 14454144, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -366662,9 +366662,9 @@ }, { "type_name": "C_TriggerPhysics", - "vtable_address": 63441296, + "vtable_address": 63445200, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -366750,33 +366750,33 @@ }, { "type_name": "C_TriggerVolume", - "vtable_address": 63432840, + "vtable_address": 63436744, "methods": [ 14368000, 14423264, 14423360, - 18931408, - 39987824, - 18645760, - 18645648, - 21126080, - 21132352, - 21132672, - 21132336, - 18931712, - 18933504, - 18665616, + 18934224, + 39991728, + 18648064, + 18647952, + 21128896, + 21135168, + 21135488, + 21135152, + 18934528, + 18936320, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -366785,23 +366785,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, + 40000032, 14419040, 14476768, 14419600, 12234080, 14437456, - 18666928, - 18799200, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -366818,13 +366818,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -366832,41 +366832,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -366878,33 +366878,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -366932,9 +366932,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -366942,24 +366942,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -366971,32 +366971,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -367060,15 +367060,15 @@ }, { "type_name": "C_TriggerVolume", - "vtable_address": 63434816, + "vtable_address": 63438720, "methods": [ 14423312, 14423440, - 18933072, - 18741840, - 18742112, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -367132,9 +367132,9 @@ }, { "type_name": "C_TriggerVolume", - "vtable_address": 63434888, + "vtable_address": 63438792, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -367198,33 +367198,33 @@ }, { "type_name": "C_VoteController", - "vtable_address": 64341048, + "vtable_address": 64344952, "methods": [ 14367152, - 22952000, - 22956416, + 22954816, + 22959232, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 23166688, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 23169440, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -367233,23 +367233,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22916944, - 23166816, - 22921568, + 40000032, + 22919760, + 23169568, + 22924384, 12234080, - 22986128, - 20571856, + 22988944, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -367266,13 +367266,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -367280,39 +367280,39 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, 12234624, @@ -367326,33 +367326,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 22999088, - 21812224, + 23001904, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -367380,9 +367380,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -367390,24 +367390,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -367419,7 +367419,7 @@ 12572832, 12572912, 12235344, - 22997728 + 23000544 ], "bases": [ { @@ -367473,11 +367473,11 @@ }, { "type_name": "C_VoteController", - "vtable_address": 64342824, + "vtable_address": 64346728, "methods": [ - 22956624, - 22956528, - 22998272 + 22959440, + 22959344, + 23001088 ], "bases": [ { @@ -367531,33 +367531,33 @@ }, { "type_name": "C_WaterBullet", - "vtable_address": 64170224, + "vtable_address": 64174128, "methods": [ 14381312, - 21330064, - 21330160, - 18931456, - 18604336, - 18517136, - 18551600, - 18609776, - 21132352, - 18750864, - 21132336, - 21557360, - 18933680, - 18665760, + 21332880, + 21332976, + 18934272, + 18606640, + 18519440, + 18553904, + 18612080, + 21135168, + 18753680, + 21135152, + 21560176, + 18936496, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -367566,23 +367566,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 21324448, - 21539680, - 21330320, + 40000032, + 21327264, + 21542496, + 21333136, 12234080, - 21389600, - 18609696, - 18799200, + 21392416, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -367599,13 +367599,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -367613,79 +367613,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 21324432, - 18767008, - 20572064, - 21544480, - 20623632, + 20586576, + 21327248, + 18769824, + 20574880, + 21547296, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -367710,12 +367710,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -367723,24 +367723,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -367752,66 +367752,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, - 18507264, + 18769616, + 18521536, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -367886,15 +367886,15 @@ }, { "type_name": "C_WaterBullet", - "vtable_address": 64172472, + "vtable_address": 64176376, "methods": [ - 21330112, - 21330240, - 18933072, - 18741840, - 18742112, + 21332928, + 21333056, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -367969,9 +367969,9 @@ }, { "type_name": "C_WaterBullet", - "vtable_address": 64172544, + "vtable_address": 64176448, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -368046,33 +368046,33 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 63809336, + "vtable_address": 63813240, "methods": [ 14371616, - 17477840, - 17478128, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17480144, + 17480432, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -368081,24 +368081,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439632, - 17708928, - 17442416, + 40000032, + 17441936, + 17711232, + 17444720, 12234080, - 17463088, - 17439568, - 18799200, + 17465392, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -368109,98 +368109,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -368211,26 +368211,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -368238,24 +368238,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -368267,224 +368267,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -368665,15 +368665,15 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 63812848, + "vtable_address": 63816752, "methods": [ - 17477936, - 17478256, - 18933072, - 18741840, - 18742112, + 17480240, + 17480560, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -368854,9 +368854,9 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 63812920, + "vtable_address": 63816824, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -369037,12 +369037,12 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 63812944, + "vtable_address": 63816848, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -369223,14 +369223,14 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 63812992, + "vtable_address": 63816896, "methods": [ - 17442432, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444736, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -369411,10 +369411,10 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 63813056, + "vtable_address": 63816960, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -369595,11 +369595,11 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 63813088, + "vtable_address": 63816992, "methods": [ - 17478032, - 17478384, - 17514944 + 17480336, + 17480688, + 17517248 ], "bases": [ { @@ -369780,33 +369780,33 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 63805544, + "vtable_address": 63809448, "methods": [ 14371616, - 17477168, - 17477456, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17479472, + 17479760, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -369815,24 +369815,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439616, - 17708928, - 17442464, + 40000032, + 17441920, + 17711232, + 17444768, 12234080, - 17463008, - 17439568, - 18799200, + 17465312, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -369843,98 +369843,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -369945,26 +369945,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -369972,24 +369972,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -370001,224 +370001,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -370399,15 +370399,15 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 63809056, + "vtable_address": 63812960, "methods": [ - 17477264, - 17477584, - 18933072, - 18741840, - 18742112, + 17479568, + 17479888, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -370588,9 +370588,9 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 63809128, + "vtable_address": 63813032, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -370771,12 +370771,12 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 63809152, + "vtable_address": 63813056, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -370957,14 +370957,14 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 63809200, + "vtable_address": 63813104, "methods": [ - 17442480, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444784, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -371145,10 +371145,10 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 63809264, + "vtable_address": 63813168, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -371329,11 +371329,11 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 63809296, + "vtable_address": 63813200, "methods": [ - 17477360, - 17477712, - 17514944 + 17479664, + 17480016, + 17517248 ], "bases": [ { @@ -371514,33 +371514,33 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 63780104, + "vtable_address": 63784008, "methods": [ 14371616, - 17499344, - 17499632, - 20584080, - 18604336, - 17704240, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702880, - 17703024, - 28012992, + 17501648, + 17501936, + 20586896, + 18606640, + 17706544, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17705184, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -371549,24 +371549,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17438880, - 17708928, - 17440704, + 40000032, + 17441184, + 17711232, + 17443008, 12234080, - 17462688, - 17438864, - 18799200, + 17464992, + 17441168, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -371577,98 +371577,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -371679,26 +371679,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -371706,24 +371706,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -371735,227 +371735,227 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17287056, - 17285456, - 17448832, - 17563696, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17289360, + 17287760, + 17451136, + 17566000, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17545888, - 17448928, - 17635536, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17549824, - 17545200, - 17543792, - 17448272, - 17540816, - 17561728, - 17550704, - 17547488, - 17564304, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17287040, - 17439472, - 17438832, - 17438848, - 17287024 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17548192, + 17451232, + 17637840, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17552128, + 17547504, + 17546096, + 17450576, + 17543120, + 17564032, + 17553008, + 17549792, + 17566608, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17289344, + 17441776, + 17441136, + 17441152, + 17289328 ], "bases": [ { @@ -372125,15 +372125,15 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 63783640, + "vtable_address": 63787544, "methods": [ - 17499536, - 17499888, - 18933072, - 18741840, - 18742112, + 17501840, + 17502192, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -372303,9 +372303,9 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 63783712, + "vtable_address": 63787616, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -372475,12 +372475,12 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 63783736, + "vtable_address": 63787640, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -372650,14 +372650,14 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 63783784, + "vtable_address": 63787688, "methods": [ - 17440720, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443024, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -372827,10 +372827,10 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 63783848, + "vtable_address": 63787752, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -373000,11 +373000,11 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 63783880, + "vtable_address": 63787784, "methods": [ - 17499440, - 17499760, - 17514944 + 17501744, + 17502064, + 17517248 ], "bases": [ { @@ -373174,7 +373174,7 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 65626912, + "vtable_address": 65630816, "methods": [], "bases": [], "model": { @@ -373185,33 +373185,33 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 63813128, + "vtable_address": 63817032, "methods": [ 14371616, - 17478512, - 17478800, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17480816, + 17481104, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -373220,24 +373220,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439648, - 17708928, - 17442368, + 40000032, + 17441952, + 17711232, + 17444672, 12234080, - 17463168, - 17439568, - 18799200, + 17465472, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -373248,98 +373248,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -373350,26 +373350,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -373377,24 +373377,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -373406,224 +373406,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -373804,15 +373804,15 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 63816640, + "vtable_address": 63820544, "methods": [ - 17478608, - 17478928, - 18933072, - 18741840, - 18742112, + 17480912, + 17481232, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -373993,9 +373993,9 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 63816712, + "vtable_address": 63820616, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -374176,12 +374176,12 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 63816736, + "vtable_address": 63820640, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -374362,14 +374362,14 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 63816784, + "vtable_address": 63820688, "methods": [ - 17442384, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444688, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -374550,10 +374550,10 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 63816848, + "vtable_address": 63820752, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -374734,11 +374734,11 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 63816880, + "vtable_address": 63820784, "methods": [ - 17478704, - 17479056, - 17514944 + 17481008, + 17481360, + 17517248 ], "bases": [ { @@ -374919,33 +374919,33 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 63926824, + "vtable_address": 63930728, "methods": [ 14371616, - 17495984, - 17496272, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17498288, + 17498576, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -374954,24 +374954,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440144, - 17708928, - 17441168, + 40000032, + 17442448, + 17711232, + 17443472, 12234080, - 17465568, - 17440160, - 18799200, + 17467872, + 17442464, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -374982,98 +374982,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -375084,26 +375084,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -375111,24 +375111,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -375140,224 +375140,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17440128, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547856, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17442432, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17550160, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -375538,15 +375538,15 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 63930336, + "vtable_address": 63934240, "methods": [ - 17496080, - 17496400, - 18933072, - 18741840, - 18742112, + 17498384, + 17498704, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -375727,9 +375727,9 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 63930408, + "vtable_address": 63934312, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -375910,12 +375910,12 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 63930432, + "vtable_address": 63934336, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -376096,14 +376096,14 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 63930480, + "vtable_address": 63934384, "methods": [ - 17441184, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443488, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -376284,10 +376284,10 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 63930544, + "vtable_address": 63934448, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -376468,11 +376468,11 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 63930576, + "vtable_address": 63934480, "methods": [ - 17496176, - 17496528, - 17514944 + 17498480, + 17498832, + 17517248 ], "bases": [ { @@ -376653,33 +376653,33 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 63941256, + "vtable_address": 63945160, "methods": [ 14371616, - 17710944, - 17711312, - 20584080, - 18604336, - 17714768, - 18551600, - 17710000, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17713248, + 17713616, + 20586896, + 18606640, + 17717072, + 18553904, + 17712304, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -376688,24 +376688,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17708992, - 17714096, - 17712544, + 40000032, + 17711296, + 17716400, + 17714848, 12234080, - 17741344, - 17708944, - 18799200, + 17743648, + 17711248, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -376716,98 +376716,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -376818,26 +376818,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -376845,24 +376845,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -376874,224 +376874,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 17709008, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 17711312, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17715184, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17717488, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -377272,15 +377272,15 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 63944768, + "vtable_address": 63948672, "methods": [ - 17711056, - 17711456, - 18933072, - 18741840, - 18742112, + 17713360, + 17713760, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -377461,9 +377461,9 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 63944840, + "vtable_address": 63948744, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -377644,12 +377644,12 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 63944864, + "vtable_address": 63948768, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -377830,14 +377830,14 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 63944912, + "vtable_address": 63948816, "methods": [ - 17712560, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17714864, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -378018,10 +378018,10 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 63944976, + "vtable_address": 63948880, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -378202,11 +378202,11 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 63945008, + "vtable_address": 63948912, "methods": [ - 17711184, - 17711600, - 17514944 + 17713488, + 17713904, + 17517248 ], "bases": [ { @@ -378387,33 +378387,33 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 63816920, + "vtable_address": 63820824, "methods": [ 14371616, - 17479184, - 17479472, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17481488, + 17481776, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -378422,24 +378422,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439664, - 17708928, - 17442320, + 40000032, + 17441968, + 17711232, + 17444624, 12234080, - 17463248, - 17439568, - 18799200, + 17465552, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -378450,98 +378450,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -378552,26 +378552,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -378579,24 +378579,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -378608,224 +378608,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -379006,15 +379006,15 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 63820432, + "vtable_address": 63824336, "methods": [ - 17479280, - 17479600, - 18933072, - 18741840, - 18742112, + 17481584, + 17481904, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -379195,9 +379195,9 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 63820504, + "vtable_address": 63824408, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -379378,12 +379378,12 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 63820528, + "vtable_address": 63824432, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -379564,14 +379564,14 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 63820576, + "vtable_address": 63824480, "methods": [ - 17442336, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444640, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -379752,10 +379752,10 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 63820640, + "vtable_address": 63824544, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -379936,11 +379936,11 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 63820672, + "vtable_address": 63824576, "methods": [ - 17479376, - 17479728, - 17514944 + 17481680, + 17482032, + 17517248 ], "bases": [ { @@ -380121,33 +380121,33 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 63820712, + "vtable_address": 63824616, "methods": [ 14371616, - 17479856, - 17480144, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17482160, + 17482448, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -380156,24 +380156,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439680, - 17708928, - 17442272, + 40000032, + 17441984, + 17711232, + 17444576, 12234080, - 17463328, - 17439568, - 18799200, + 17465632, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -380184,98 +380184,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -380286,26 +380286,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -380313,24 +380313,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -380342,224 +380342,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -380740,15 +380740,15 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 63824224, + "vtable_address": 63828128, "methods": [ - 17479952, - 17480272, - 18933072, - 18741840, - 18742112, + 17482256, + 17482576, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -380929,9 +380929,9 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 63824296, + "vtable_address": 63828200, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -381112,12 +381112,12 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 63824320, + "vtable_address": 63828224, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -381298,14 +381298,14 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 63824368, + "vtable_address": 63828272, "methods": [ - 17442288, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444592, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -381486,10 +381486,10 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 63824432, + "vtable_address": 63828336, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -381670,11 +381670,11 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 63824464, + "vtable_address": 63828368, "methods": [ - 17480048, - 17480400, - 17514944 + 17482352, + 17482704, + 17517248 ], "bases": [ { @@ -381855,33 +381855,33 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 63824504, + "vtable_address": 63828408, "methods": [ 14371616, - 17480528, - 17480816, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17482832, + 17483120, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -381890,24 +381890,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439696, - 17708928, - 17442224, + 40000032, + 17442000, + 17711232, + 17444528, 12234080, - 17463408, - 17439568, - 18799200, + 17465712, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -381918,98 +381918,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -382020,26 +382020,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -382047,24 +382047,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -382076,224 +382076,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -382474,15 +382474,15 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 63828016, + "vtable_address": 63831920, "methods": [ - 17480624, - 17480944, - 18933072, - 18741840, - 18742112, + 17482928, + 17483248, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -382663,9 +382663,9 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 63828088, + "vtable_address": 63831992, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -382846,12 +382846,12 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 63828112, + "vtable_address": 63832016, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -383032,14 +383032,14 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 63828160, + "vtable_address": 63832064, "methods": [ - 17442240, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444544, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -383220,10 +383220,10 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 63828224, + "vtable_address": 63832128, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -383404,11 +383404,11 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 63828256, + "vtable_address": 63832160, "methods": [ - 17480720, - 17481072, - 17514944 + 17483024, + 17483376, + 17517248 ], "bases": [ { @@ -383589,33 +383589,33 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 63828296, + "vtable_address": 63832200, "methods": [ 14371616, - 17481200, - 17481488, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17483504, + 17483792, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -383624,24 +383624,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439712, - 17708928, - 17442176, + 40000032, + 17442016, + 17711232, + 17444480, 12234080, - 17463488, - 17439568, - 18799200, + 17465792, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -383652,98 +383652,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -383754,26 +383754,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -383781,24 +383781,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -383810,224 +383810,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -384208,15 +384208,15 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 63831808, + "vtable_address": 63835712, "methods": [ - 17481296, - 17481616, - 18933072, - 18741840, - 18742112, + 17483600, + 17483920, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -384397,9 +384397,9 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 63831880, + "vtable_address": 63835784, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -384580,12 +384580,12 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 63831904, + "vtable_address": 63835808, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -384766,14 +384766,14 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 63831952, + "vtable_address": 63835856, "methods": [ - 17442192, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444496, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -384954,10 +384954,10 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 63832016, + "vtable_address": 63835920, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -385138,11 +385138,11 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 63832048, + "vtable_address": 63835952, "methods": [ - 17481392, - 17481744, - 17514944 + 17483696, + 17484048, + 17517248 ], "bases": [ { @@ -385323,33 +385323,33 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 63832088, + "vtable_address": 63835992, "methods": [ 14371616, - 17481872, - 17482160, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17484176, + 17484464, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -385358,24 +385358,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439728, - 17708928, - 17442128, + 40000032, + 17442032, + 17711232, + 17444432, 12234080, - 17463568, - 17439568, - 18799200, + 17465872, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -385386,98 +385386,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -385488,26 +385488,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -385515,24 +385515,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -385544,224 +385544,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -385942,15 +385942,15 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 63835600, + "vtable_address": 63839504, "methods": [ - 17481968, - 17482288, - 18933072, - 18741840, - 18742112, + 17484272, + 17484592, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -386131,9 +386131,9 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 63835672, + "vtable_address": 63839576, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -386314,12 +386314,12 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 63835696, + "vtable_address": 63839600, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -386500,14 +386500,14 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 63835744, + "vtable_address": 63839648, "methods": [ - 17442144, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444448, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -386688,10 +386688,10 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 63835808, + "vtable_address": 63839712, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -386872,11 +386872,11 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 63835840, + "vtable_address": 63839744, "methods": [ - 17482064, - 17482416, - 17514944 + 17484368, + 17484720, + 17517248 ], "bases": [ { @@ -387057,33 +387057,33 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 63835880, + "vtable_address": 63839784, "methods": [ 14371616, - 17482544, - 17482832, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17484848, + 17485136, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -387092,24 +387092,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439744, - 17708928, - 17442080, + 40000032, + 17442048, + 17711232, + 17444384, 12234080, - 17463648, - 17439568, - 18799200, + 17465952, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -387120,98 +387120,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -387222,26 +387222,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -387249,24 +387249,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -387278,224 +387278,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -387676,15 +387676,15 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 63839392, + "vtable_address": 63843296, "methods": [ - 17482640, - 17482960, - 18933072, - 18741840, - 18742112, + 17484944, + 17485264, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -387865,9 +387865,9 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 63839464, + "vtable_address": 63843368, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -388048,12 +388048,12 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 63839488, + "vtable_address": 63843392, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -388234,14 +388234,14 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 63839536, + "vtable_address": 63843440, "methods": [ - 17442096, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444400, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -388422,10 +388422,10 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 63839600, + "vtable_address": 63843504, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -388606,11 +388606,11 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 63839632, + "vtable_address": 63843536, "methods": [ - 17482736, - 17483088, - 17514944 + 17485040, + 17485392, + 17517248 ], "bases": [ { @@ -388791,33 +388791,33 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 63900344, + "vtable_address": 63904248, "methods": [ 14371616, - 17493968, - 17494256, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17496272, + 17496560, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -388826,24 +388826,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440016, - 17708928, - 17441264, + 40000032, + 17442320, + 17711232, + 17443568, 12234080, - 17465008, - 17439568, - 18799200, + 17467312, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -388854,98 +388854,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -388956,26 +388956,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -388983,24 +388983,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -389012,224 +389012,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -389410,15 +389410,15 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 63903856, + "vtable_address": 63907760, "methods": [ - 17494064, - 17494384, - 18933072, - 18741840, - 18742112, + 17496368, + 17496688, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -389599,9 +389599,9 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 63903928, + "vtable_address": 63907832, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -389782,12 +389782,12 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 63903952, + "vtable_address": 63907856, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -389968,14 +389968,14 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 63904000, + "vtable_address": 63907904, "methods": [ - 17441280, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443584, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -390156,10 +390156,10 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 63904064, + "vtable_address": 63907968, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -390340,11 +390340,11 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 63904096, + "vtable_address": 63908000, "methods": [ - 17494160, - 17494512, - 17514944 + 17496464, + 17496816, + 17517248 ], "bases": [ { @@ -390525,33 +390525,33 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 63843464, + "vtable_address": 63847368, "methods": [ 14371616, - 17483888, - 17484176, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17486192, + 17486480, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -390560,24 +390560,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439776, - 17708928, - 17441984, + 40000032, + 17442080, + 17711232, + 17444288, 12234080, - 17463808, - 17439568, - 18799200, + 17466112, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -390588,98 +390588,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -390690,26 +390690,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -390717,24 +390717,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -390746,224 +390746,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -391144,15 +391144,15 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 63846976, + "vtable_address": 63850880, "methods": [ - 17483984, - 17484304, - 18933072, - 18741840, - 18742112, + 17486288, + 17486608, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -391333,9 +391333,9 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 63847048, + "vtable_address": 63850952, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -391516,12 +391516,12 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 63847072, + "vtable_address": 63850976, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -391702,14 +391702,14 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 63847120, + "vtable_address": 63851024, "methods": [ - 17442000, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444304, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -391890,10 +391890,10 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 63847184, + "vtable_address": 63851088, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -392074,11 +392074,11 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 63847216, + "vtable_address": 63851120, "methods": [ - 17484080, - 17484432, - 17514944 + 17486384, + 17486736, + 17517248 ], "bases": [ { @@ -392259,33 +392259,33 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 63847256, + "vtable_address": 63851160, "methods": [ 14371616, - 17484560, - 17484848, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17486864, + 17487152, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -392294,24 +392294,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439792, - 17708928, - 17441936, + 40000032, + 17442096, + 17711232, + 17444240, 12234080, - 17463888, - 17439568, - 18799200, + 17466192, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -392322,98 +392322,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -392424,26 +392424,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -392451,24 +392451,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -392480,224 +392480,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -392878,15 +392878,15 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 63850768, + "vtable_address": 63854672, "methods": [ - 17484656, - 17484976, - 18933072, - 18741840, - 18742112, + 17486960, + 17487280, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -393067,9 +393067,9 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 63850840, + "vtable_address": 63854744, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -393250,12 +393250,12 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 63850864, + "vtable_address": 63854768, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -393436,14 +393436,14 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 63850912, + "vtable_address": 63854816, "methods": [ - 17441952, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444256, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -393624,10 +393624,10 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 63850976, + "vtable_address": 63854880, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -393808,11 +393808,11 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 63851008, + "vtable_address": 63854912, "methods": [ - 17484752, - 17485104, - 17514944 + 17487056, + 17487408, + 17517248 ], "bases": [ { @@ -393993,33 +393993,33 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 63851048, + "vtable_address": 63854952, "methods": [ 14371616, - 17485232, - 17485520, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17487536, + 17487824, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -394028,24 +394028,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439808, - 17708928, - 17441888, + 40000032, + 17442112, + 17711232, + 17444192, 12234080, - 17463968, - 17439568, - 18799200, + 17466272, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -394056,98 +394056,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -394158,26 +394158,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -394185,24 +394185,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -394214,224 +394214,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -394612,15 +394612,15 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 63854560, + "vtable_address": 63858464, "methods": [ - 17485328, - 17485648, - 18933072, - 18741840, - 18742112, + 17487632, + 17487952, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -394801,9 +394801,9 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 63854632, + "vtable_address": 63858536, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -394984,12 +394984,12 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 63854656, + "vtable_address": 63858560, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -395170,14 +395170,14 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 63854704, + "vtable_address": 63858608, "methods": [ - 17441904, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444208, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -395358,10 +395358,10 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 63854768, + "vtable_address": 63858672, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -395542,11 +395542,11 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 63854800, + "vtable_address": 63858704, "methods": [ - 17485424, - 17485776, - 17514944 + 17487728, + 17488080, + 17517248 ], "bases": [ { @@ -395727,33 +395727,33 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 63858632, + "vtable_address": 63862536, "methods": [ 14371616, - 17486576, - 17486864, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17488880, + 17489168, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -395762,24 +395762,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439840, - 17708928, - 17441792, + 40000032, + 17442144, + 17711232, + 17444096, 12234080, - 17464128, - 17439568, - 18799200, + 17466432, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -395790,98 +395790,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -395892,26 +395892,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -395919,24 +395919,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -395948,224 +395948,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -396346,15 +396346,15 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 63862144, + "vtable_address": 63866048, "methods": [ - 17486672, - 17486992, - 18933072, - 18741840, - 18742112, + 17488976, + 17489296, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -396535,9 +396535,9 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 63862216, + "vtable_address": 63866120, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -396718,12 +396718,12 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 63862240, + "vtable_address": 63866144, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -396904,14 +396904,14 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 63862288, + "vtable_address": 63866192, "methods": [ - 17441808, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444112, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -397092,10 +397092,10 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 63862352, + "vtable_address": 63866256, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -397276,11 +397276,11 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 63862384, + "vtable_address": 63866288, "methods": [ - 17486768, - 17487120, - 17514944 + 17489072, + 17489424, + 17517248 ], "bases": [ { @@ -397461,33 +397461,33 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 63862424, + "vtable_address": 63866328, "methods": [ 14371616, - 17487248, - 17487536, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17489552, + 17489840, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -397496,24 +397496,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439856, - 17708928, - 17441744, + 40000032, + 17442160, + 17711232, + 17444048, 12234080, - 17464208, - 17439568, - 18799200, + 17466512, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -397524,98 +397524,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -397626,26 +397626,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -397653,24 +397653,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -397682,224 +397682,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -398080,15 +398080,15 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 63865936, + "vtable_address": 63869840, "methods": [ - 17487344, - 17487664, - 18933072, - 18741840, - 18742112, + 17489648, + 17489968, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -398269,9 +398269,9 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 63866008, + "vtable_address": 63869912, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -398452,12 +398452,12 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 63866032, + "vtable_address": 63869936, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -398638,14 +398638,14 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 63866080, + "vtable_address": 63869984, "methods": [ - 17441760, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444064, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -398826,10 +398826,10 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 63866144, + "vtable_address": 63870048, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -399010,11 +399010,11 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 63866176, + "vtable_address": 63870080, "methods": [ - 17487440, - 17487792, - 17514944 + 17489744, + 17490096, + 17517248 ], "bases": [ { @@ -399195,33 +399195,33 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 63866216, + "vtable_address": 63870120, "methods": [ 14371616, - 17487920, - 17488208, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17490224, + 17490512, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -399230,24 +399230,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439872, - 17708928, - 17441696, + 40000032, + 17442176, + 17711232, + 17444000, 12234080, - 17464288, - 17439568, - 18799200, + 17466592, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -399258,98 +399258,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -399360,26 +399360,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -399387,24 +399387,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -399416,224 +399416,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -399814,15 +399814,15 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 63869728, + "vtable_address": 63873632, "methods": [ - 17488016, - 17488336, - 18933072, - 18741840, - 18742112, + 17490320, + 17490640, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -400003,9 +400003,9 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 63869800, + "vtable_address": 63873704, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -400186,12 +400186,12 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 63869824, + "vtable_address": 63873728, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -400372,14 +400372,14 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 63869872, + "vtable_address": 63873776, "methods": [ - 17441712, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444016, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -400560,10 +400560,10 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 63869936, + "vtable_address": 63873840, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -400744,11 +400744,11 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 63869968, + "vtable_address": 63873872, "methods": [ - 17488112, - 17488464, - 17514944 + 17490416, + 17490768, + 17517248 ], "bases": [ { @@ -400929,33 +400929,33 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 63854840, + "vtable_address": 63858744, "methods": [ 14371616, - 17485904, - 17486192, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17488208, + 17488496, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -400964,24 +400964,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439824, - 17708928, - 17441840, + 40000032, + 17442128, + 17711232, + 17444144, 12234080, - 17464048, - 17439568, - 18799200, + 17466352, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -400992,98 +400992,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -401094,26 +401094,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -401121,24 +401121,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -401150,224 +401150,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -401548,15 +401548,15 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 63858352, + "vtable_address": 63862256, "methods": [ - 17486000, - 17486320, - 18933072, - 18741840, - 18742112, + 17488304, + 17488624, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -401737,9 +401737,9 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 63858424, + "vtable_address": 63862328, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -401920,12 +401920,12 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 63858448, + "vtable_address": 63862352, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -402106,14 +402106,14 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 63858496, + "vtable_address": 63862400, "methods": [ - 17441856, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444160, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -402294,10 +402294,10 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 63858560, + "vtable_address": 63862464, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -402478,11 +402478,11 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 63858592, + "vtable_address": 63862496, "methods": [ - 17486096, - 17486448, - 17514944 + 17488400, + 17488752, + 17517248 ], "bases": [ { @@ -402663,33 +402663,33 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 63911720, + "vtable_address": 63915624, "methods": [ 14371616, - 17497328, - 17497616, - 20584080, - 18604336, - 17704240, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17499632, + 17499920, + 20586896, + 18606640, + 17706544, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -402698,24 +402698,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440080, - 17708928, - 17441024, + 40000032, + 17442384, + 17711232, + 17443328, 12234080, - 17465248, - 17439136, - 18799200, + 17467552, + 17441440, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -402726,98 +402726,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -402828,26 +402828,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -402855,24 +402855,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -402884,222 +402884,222 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17562960, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17565264, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17616160, - 17439200, - 17634912, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17545792, - 17544304, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17618464, + 17441504, + 17637216, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17548096, + 17546608, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200 ], "bases": [ { @@ -403280,15 +403280,15 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 63915216, + "vtable_address": 63919120, "methods": [ - 17497424, - 17497744, - 18933072, - 18741840, - 18742112, + 17499728, + 17500048, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -403469,9 +403469,9 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 63915288, + "vtable_address": 63919192, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -403652,12 +403652,12 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 63915312, + "vtable_address": 63919216, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -403838,14 +403838,14 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 63915360, + "vtable_address": 63919264, "methods": [ - 17441040, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443344, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -404026,10 +404026,10 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 63915424, + "vtable_address": 63919328, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -404210,11 +404210,11 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 63915456, + "vtable_address": 63919360, "methods": [ - 17497520, - 17497872, - 17514944 + 17499824, + 17500176, + 17517248 ], "bases": [ { @@ -404395,33 +404395,33 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 63870008, + "vtable_address": 63873912, "methods": [ 14371616, - 17488592, - 17488880, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17490896, + 17491184, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -404430,24 +404430,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439888, - 17708928, - 17441648, + 40000032, + 17442192, + 17711232, + 17443952, 12234080, - 17464368, - 17439568, - 18799200, + 17466672, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -404458,98 +404458,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -404560,26 +404560,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -404587,24 +404587,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -404616,224 +404616,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -405014,15 +405014,15 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 63873520, + "vtable_address": 63877424, "methods": [ - 17488688, - 17489008, - 18933072, - 18741840, - 18742112, + 17490992, + 17491312, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -405203,9 +405203,9 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 63873592, + "vtable_address": 63877496, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -405386,12 +405386,12 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 63873616, + "vtable_address": 63877520, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -405572,14 +405572,14 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 63873664, + "vtable_address": 63877568, "methods": [ - 17441664, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443968, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -405760,10 +405760,10 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 63873728, + "vtable_address": 63877632, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -405944,11 +405944,11 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 63873760, + "vtable_address": 63877664, "methods": [ - 17488784, - 17489136, - 17514944 + 17491088, + 17491440, + 17517248 ], "bases": [ { @@ -406129,33 +406129,33 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 63873800, + "vtable_address": 63877704, "methods": [ 14371616, - 17489264, - 17489552, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17491568, + 17491856, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -406164,24 +406164,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439904, - 17708928, - 17441600, + 40000032, + 17442208, + 17711232, + 17443904, 12234080, - 17464448, - 17439568, - 18799200, + 17466752, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -406192,98 +406192,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -406294,26 +406294,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -406321,24 +406321,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -406350,224 +406350,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -406748,15 +406748,15 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 63877312, + "vtable_address": 63881216, "methods": [ - 17489360, - 17489680, - 18933072, - 18741840, - 18742112, + 17491664, + 17491984, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -406937,9 +406937,9 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 63877384, + "vtable_address": 63881288, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -407120,12 +407120,12 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 63877408, + "vtable_address": 63881312, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -407306,14 +407306,14 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 63877456, + "vtable_address": 63881360, "methods": [ - 17441616, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443920, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -407494,10 +407494,10 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 63877520, + "vtable_address": 63881424, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -407678,11 +407678,11 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 63877552, + "vtable_address": 63881456, "methods": [ - 17489456, - 17489808, - 17514944 + 17491760, + 17492112, + 17517248 ], "bases": [ { @@ -407863,33 +407863,33 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 63877592, + "vtable_address": 63881496, "methods": [ 14371616, - 17489936, - 17490224, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17492240, + 17492528, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -407898,24 +407898,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439920, - 17708928, - 17441552, + 40000032, + 17442224, + 17711232, + 17443856, 12234080, - 17464528, - 17439568, - 18799200, + 17466832, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -407926,98 +407926,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -408028,26 +408028,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -408055,24 +408055,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -408084,224 +408084,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -408482,15 +408482,15 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 63881104, + "vtable_address": 63885008, "methods": [ - 17490032, - 17490352, - 18933072, - 18741840, - 18742112, + 17492336, + 17492656, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -408671,9 +408671,9 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 63881176, + "vtable_address": 63885080, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -408854,12 +408854,12 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 63881200, + "vtable_address": 63885104, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -409040,14 +409040,14 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 63881248, + "vtable_address": 63885152, "methods": [ - 17441568, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443872, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -409228,10 +409228,10 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 63881312, + "vtable_address": 63885216, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -409412,11 +409412,11 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 63881344, + "vtable_address": 63885248, "methods": [ - 17490128, - 17490480, - 17514944 + 17492432, + 17492784, + 17517248 ], "bases": [ { @@ -409597,33 +409597,33 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 63904136, + "vtable_address": 63908040, "methods": [ 14371616, - 17494640, - 17494928, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17496944, + 17497232, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -409632,24 +409632,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440032, - 17708928, - 17441216, + 40000032, + 17442336, + 17711232, + 17443520, 12234080, - 17465088, - 17439568, - 18799200, + 17467392, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -409660,98 +409660,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -409762,26 +409762,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -409789,24 +409789,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -409818,224 +409818,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -410216,15 +410216,15 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 63907648, + "vtable_address": 63911552, "methods": [ - 17494736, - 17495056, - 18933072, - 18741840, - 18742112, + 17497040, + 17497360, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -410405,9 +410405,9 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 63907720, + "vtable_address": 63911624, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -410588,12 +410588,12 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 63907744, + "vtable_address": 63911648, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -410774,14 +410774,14 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 63907792, + "vtable_address": 63911696, "methods": [ - 17441232, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443536, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -410962,10 +410962,10 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 63907856, + "vtable_address": 63911760, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -411146,11 +411146,11 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 63907888, + "vtable_address": 63911792, "methods": [ - 17494832, - 17495184, - 17514944 + 17497136, + 17497488, + 17517248 ], "bases": [ { @@ -411331,33 +411331,33 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 63881384, + "vtable_address": 63885288, "methods": [ 14371616, - 17490608, - 17490896, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17492912, + 17493200, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -411366,24 +411366,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439936, - 17708928, - 17441504, + 40000032, + 17442240, + 17711232, + 17443808, 12234080, - 17464608, - 17439568, - 18799200, + 17466912, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -411394,98 +411394,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -411496,26 +411496,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -411523,24 +411523,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -411552,224 +411552,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -411950,15 +411950,15 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 63884896, + "vtable_address": 63888800, "methods": [ - 17490704, - 17491024, - 18933072, - 18741840, - 18742112, + 17493008, + 17493328, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -412139,9 +412139,9 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 63884968, + "vtable_address": 63888872, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -412322,12 +412322,12 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 63884992, + "vtable_address": 63888896, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -412508,14 +412508,14 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 63885040, + "vtable_address": 63888944, "methods": [ - 17441520, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443824, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -412696,10 +412696,10 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 63885104, + "vtable_address": 63889008, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -412880,11 +412880,11 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 63885136, + "vtable_address": 63889040, "methods": [ - 17490800, - 17491152, - 17514944 + 17493104, + 17493456, + 17517248 ], "bases": [ { @@ -413065,33 +413065,33 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 63885176, + "vtable_address": 63889080, "methods": [ 14371616, - 17491280, - 17491568, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17493584, + 17493872, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -413100,24 +413100,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439952, - 17708928, - 17441456, + 40000032, + 17442256, + 17711232, + 17443760, 12234080, - 17464688, - 17439568, - 18799200, + 17466992, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -413128,98 +413128,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -413230,26 +413230,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -413257,24 +413257,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -413286,224 +413286,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -413684,15 +413684,15 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 63888688, + "vtable_address": 63892592, "methods": [ - 17491376, - 17491696, - 18933072, - 18741840, - 18742112, + 17493680, + 17494000, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -413873,9 +413873,9 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 63888760, + "vtable_address": 63892664, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -414056,12 +414056,12 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 63888784, + "vtable_address": 63892688, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -414242,14 +414242,14 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 63888832, + "vtable_address": 63892736, "methods": [ - 17441472, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443776, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -414430,10 +414430,10 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 63888896, + "vtable_address": 63892800, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -414614,11 +414614,11 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 63888928, + "vtable_address": 63892832, "methods": [ - 17491472, - 17491824, - 17514944 + 17493776, + 17494128, + 17517248 ], "bases": [ { @@ -414799,33 +414799,33 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 63888968, + "vtable_address": 63892872, "methods": [ 14371616, - 17491952, - 17492240, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17494256, + 17494544, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -414834,24 +414834,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439968, - 17708928, - 17441408, + 40000032, + 17442272, + 17711232, + 17443712, 12234080, - 17464768, - 17439568, - 18799200, + 17467072, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -414862,98 +414862,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -414964,26 +414964,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -414991,24 +414991,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -415020,224 +415020,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -415418,15 +415418,15 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 63892480, + "vtable_address": 63896384, "methods": [ - 17492048, - 17492368, - 18933072, - 18741840, - 18742112, + 17494352, + 17494672, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -415607,9 +415607,9 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 63892552, + "vtable_address": 63896456, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -415790,12 +415790,12 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 63892576, + "vtable_address": 63896480, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -415976,14 +415976,14 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 63892624, + "vtable_address": 63896528, "methods": [ - 17441424, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443728, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -416164,10 +416164,10 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 63892688, + "vtable_address": 63896592, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -416348,11 +416348,11 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 63892720, + "vtable_address": 63896624, "methods": [ - 17492144, - 17492496, - 17514944 + 17494448, + 17494800, + 17517248 ], "bases": [ { @@ -416533,33 +416533,33 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 63915496, + "vtable_address": 63919400, "methods": [ 14371616, - 17498000, - 17498288, - 20584080, - 18604336, - 17704240, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17500304, + 17500592, + 20586896, + 18606640, + 17706544, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -416568,24 +416568,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440096, - 17708928, - 17440976, + 40000032, + 17442400, + 17711232, + 17443280, 12234080, - 17465328, - 17439136, - 18799200, + 17467632, + 17441440, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -416596,98 +416596,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -416698,26 +416698,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -416725,24 +416725,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -416754,222 +416754,222 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17562960, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17565264, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17616128, - 17439200, - 17634912, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17545792, - 17544304, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17618432, + 17441504, + 17637216, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17548096, + 17546608, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200 ], "bases": [ { @@ -417150,15 +417150,15 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 63918992, + "vtable_address": 63922896, "methods": [ - 17498096, - 17498416, - 18933072, - 18741840, - 18742112, + 17500400, + 17500720, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -417339,9 +417339,9 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 63919064, + "vtable_address": 63922968, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -417522,12 +417522,12 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 63919088, + "vtable_address": 63922992, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -417708,14 +417708,14 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 63919136, + "vtable_address": 63923040, "methods": [ - 17440992, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443296, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -417896,10 +417896,10 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 63919200, + "vtable_address": 63923104, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -418080,11 +418080,11 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 63919232, + "vtable_address": 63923136, "methods": [ - 17498192, - 17498544, - 17514944 + 17500496, + 17500848, + 17517248 ], "bases": [ { @@ -418265,33 +418265,33 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 63968272, + "vtable_address": 63972176, "methods": [ 14371616, - 17711744, - 17712112, - 20584080, - 18604336, - 17714832, - 18551600, - 17710000, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17714048, + 17714416, + 20586896, + 18606640, + 17717136, + 18553904, + 17712304, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -418300,24 +418300,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17709696, - 17714096, - 17712896, + 40000032, + 17712000, + 17716400, + 17715200, 12234080, - 17742016, - 17709680, - 18799200, + 17744320, + 17711984, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -418328,98 +418328,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -418430,26 +418430,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -418457,24 +418457,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -418486,224 +418486,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17719296, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17721600, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17709664, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17715632, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17763264, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17711968, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17717936, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17765568, + 17456960 ], "bases": [ { @@ -418884,15 +418884,15 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 63971784, + "vtable_address": 63975688, "methods": [ - 17711856, - 17712256, - 18933072, - 18741840, - 18742112, + 17714160, + 17714560, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -419073,9 +419073,9 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 63971856, + "vtable_address": 63975760, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -419256,12 +419256,12 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 63971880, + "vtable_address": 63975784, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -419442,14 +419442,14 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 63971928, + "vtable_address": 63975832, "methods": [ - 17712912, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17715216, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -419630,10 +419630,10 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 63971992, + "vtable_address": 63975896, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -419814,11 +419814,11 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 63972024, + "vtable_address": 63975928, "methods": [ - 17711984, - 17712400, - 17514944 + 17714288, + 17714704, + 17517248 ], "bases": [ { @@ -419999,33 +419999,33 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 63892760, + "vtable_address": 63896664, "methods": [ 14371616, - 17492624, - 17492912, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17494928, + 17495216, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -420034,24 +420034,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439984, - 17708928, - 17441360, + 40000032, + 17442288, + 17711232, + 17443664, 12234080, - 17464848, - 17439568, - 18799200, + 17467152, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -420062,98 +420062,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -420164,26 +420164,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -420191,24 +420191,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -420220,224 +420220,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -420618,15 +420618,15 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 63896272, + "vtable_address": 63900176, "methods": [ - 17492720, - 17493040, - 18933072, - 18741840, - 18742112, + 17495024, + 17495344, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -420807,9 +420807,9 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 63896344, + "vtable_address": 63900248, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -420990,12 +420990,12 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 63896368, + "vtable_address": 63900272, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -421176,14 +421176,14 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 63896416, + "vtable_address": 63900320, "methods": [ - 17441376, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443680, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -421364,10 +421364,10 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 63896480, + "vtable_address": 63900384, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -421548,11 +421548,11 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 63896512, + "vtable_address": 63900416, "methods": [ - 17492816, - 17493168, - 17514944 + 17495120, + 17495472, + 17517248 ], "bases": [ { @@ -421733,33 +421733,33 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 63896552, + "vtable_address": 63900456, "methods": [ 14371616, - 17493296, - 17493584, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17495600, + 17495888, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -421768,24 +421768,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440000, - 17708928, - 17441312, + 40000032, + 17442304, + 17711232, + 17443616, 12234080, - 17464928, - 17439568, - 18799200, + 17467232, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -421796,98 +421796,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -421898,26 +421898,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -421925,24 +421925,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -421954,224 +421954,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -422352,15 +422352,15 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 63900064, + "vtable_address": 63903968, "methods": [ - 17493392, - 17493712, - 18933072, - 18741840, - 18742112, + 17495696, + 17496016, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -422541,9 +422541,9 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 63900136, + "vtable_address": 63904040, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -422724,12 +422724,12 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 63900160, + "vtable_address": 63904064, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -422910,14 +422910,14 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 63900208, + "vtable_address": 63904112, "methods": [ - 17441328, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443632, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -423098,10 +423098,10 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 63900272, + "vtable_address": 63904176, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -423282,11 +423282,11 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 63900304, + "vtable_address": 63904208, "methods": [ - 17493488, - 17493840, - 17514944 + 17495792, + 17496144, + 17517248 ], "bases": [ { @@ -423467,33 +423467,33 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 63839672, + "vtable_address": 63843576, "methods": [ 14371616, - 17483216, - 17483504, - 20584080, - 18604336, - 17704240, - 18551600, - 17708352, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17485520, + 17485808, + 20586896, + 18606640, + 17706544, + 18553904, + 17710656, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -423502,24 +423502,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17439760, - 17708928, - 17442032, + 40000032, + 17442064, + 17711232, + 17444336, 12234080, - 17463728, - 17439568, - 18799200, + 17466032, + 17441872, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -423530,98 +423530,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -423632,26 +423632,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -423659,24 +423659,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -423688,224 +423688,224 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17706736, - 17285424, - 17285440, - 17448864, - 17454032, - 17448832, - 17563744, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17709040, + 17287728, + 17287744, + 17451168, + 17456336, + 17451136, + 17566048, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 17460016, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17549584, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 17462320, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17551888, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17440048, - 17439440, - 17286560, - 17457424, - 17439504, - 17449152, - 17454864, - 17454592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17640304, - 17613152, - 17635648, - 17466320, - 17286688, - 17439520, - 17286720, - 17439536, - 17439552, - 17453200, - 17549952, - 17544592, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896, - 17439488, - 17454656 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17442352, + 17441744, + 17288864, + 17459728, + 17441808, + 17451456, + 17457168, + 17456896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17642608, + 17615456, + 17637952, + 17468624, + 17288992, + 17441824, + 17289024, + 17441840, + 17441856, + 17455504, + 17552256, + 17546896, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200, + 17441792, + 17456960 ], "bases": [ { @@ -424086,15 +424086,15 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 63843184, + "vtable_address": 63847088, "methods": [ - 17483312, - 17483632, - 18933072, - 18741840, - 18742112, + 17485616, + 17485936, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -424275,9 +424275,9 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 63843256, + "vtable_address": 63847160, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -424458,12 +424458,12 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 63843280, + "vtable_address": 63847184, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -424644,14 +424644,14 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 63843328, + "vtable_address": 63847232, "methods": [ - 17442048, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17444352, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -424832,10 +424832,10 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 63843392, + "vtable_address": 63847296, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -425016,11 +425016,11 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 63843424, + "vtable_address": 63847328, "methods": [ - 17483408, - 17483760, - 17514944 + 17485712, + 17486064, + 17517248 ], "bases": [ { @@ -425201,33 +425201,33 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 63919272, + "vtable_address": 63923176, "methods": [ 14371616, - 17498672, - 17498960, - 20584080, - 18604336, - 17704240, - 18551600, - 17707632, - 21132352, - 17707184, - 21132336, - 17702320, - 17703024, - 28012992, + 17500976, + 17501264, + 20586896, + 18606640, + 17706544, + 18553904, + 17709936, + 21135168, + 17709488, + 21135152, + 17704624, + 17705328, + 28016256, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 17702304, + 18936096, + 20575168, + 17704608, 12233840, 12233856, 12233872, @@ -425236,24 +425236,24 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 17440112, - 17708928, - 17440928, + 40000032, + 17442416, + 17711232, + 17443232, 12234080, - 17465408, - 17439136, - 18799200, + 17467712, + 17441440, + 18802016, 12234096, - 18518288, - 17454128, + 18520592, + 17456432, 12235472, 12235488, 13130816, @@ -425264,98 +425264,98 @@ 13130864, 12234256, 12234272, - 17286816, + 17289120, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, - 20855568, - 20572560, + 20584096, + 20579296, + 20858384, + 20575376, 12860736, 12234368, 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 17449184, - 17454704, - 17466016, - 17703616, - 17707408, - 28013152, + 17451488, + 17457008, + 17468320, + 17705920, + 17709712, + 28016416, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, - 17439472, + 17441776, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 18565024, - 18515488, - 20825088, - 18632768, + 18567328, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 18528160, - 17702080, + 20610960, + 18530464, + 17704384, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -425366,26 +425366,26 @@ 12234960, 12234976, 12234992, - 17285392, - 17285408, + 17287696, + 17287712, 12235040, 12235056, 12235072, 12235088, 12584080, 12583440, - 17288912, - 17293120, - 17293088, - 17288880, + 17291216, + 17295424, + 17295392, + 17291184, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -425393,24 +425393,24 @@ 12235184, 12235440, 12572688, - 17286848, + 17289152, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, - 17285552, - 17285568, - 17706880, + 17287856, + 17287872, + 17709184, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -425422,222 +425422,222 @@ 12572832, 12572912, 12235344, - 20962672, + 20965488, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 17465808, - 17449024, - 18507264, + 17468112, + 17451328, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 17448736, - 18507248, + 17451040, + 18509552, 13130928, 13130944, - 17703424, + 17705728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856, - 17466944, - 20598704, - 20602000, + 18780672, + 17469248, + 20601520, + 20604816, 12574448, - 20724304, + 20727120, 14312912, - 17708464, - 17708624, - 17285168, - 27279472, - 27280928, - 27279424, - 27279440, - 27279456, - 27290080, - 27333712, - 17285184, - 27280048, - 27280048, - 27280048, - 27279488, - 27279392, - 27279408, - 17285200, - 17285232, - 17304352, - 17285264, - 17285296, - 27294848, - 17285328, - 17285344, - 17285360, - 17285376, - 27552704, - 27301504, - 17439184, - 17705424, - 17705552, - 17285424, - 17285440, - 17448864, - 17285456, - 17448832, - 17562960, - 17439216, - 17286784, - 17286800, - 18598368, - 18598400, - 17285472, - 18600016, + 17710768, + 17710928, + 17287472, + 27282640, + 27284096, + 27282592, + 27282608, + 27282624, + 27293248, + 27336912, + 17287488, + 27283216, + 27283216, + 27283216, + 27282656, + 27282560, + 27282576, + 17287504, + 17287536, + 17306656, + 17287568, + 17287600, + 27298016, + 17287632, + 17287648, + 17287664, + 17287680, + 27555936, + 27304672, + 17441488, + 17707728, + 17707856, + 17287728, + 17287744, + 17451168, + 17287760, + 17451136, + 17565264, + 17441520, + 17289088, + 17289104, + 18600672, + 18600704, + 17287776, + 18602320, 16906352, - 17439232, - 18598432, - 17286528, - 17286544, - 17285488, - 18598656, - 17314192, - 18599200, - 18600784, - 18601280, - 18598528, - 18598592, - 17293280, - 17293216, - 17285504, - 18598752, - 18598880, - 18600208, - 18508496, - 18508496, - 17285520, - 17708800, - 18508512, - 17285536, - 18558624, - 17285584, - 17285600, - 17296688, - 17285616, - 17285632, - 17285648, - 17285680, - 17285696, - 17296976, - 17285712, - 17285728, - 17285744, - 17285792, - 17285808, - 17285856, - 17285904, - 17285952, - 17286000, - 17286048, + 17441536, + 18600736, + 17288832, + 17288848, + 17287792, + 18600960, + 17316496, + 18601504, + 18603088, + 18603584, + 18600832, + 18600896, + 17295584, + 17295520, + 17287808, + 18601056, + 18601184, + 18602512, + 18510800, + 18510800, + 17287824, + 17711104, + 18510816, + 17287840, + 18560928, + 17287888, + 17287904, + 17298992, + 17287920, + 17287936, + 17287952, + 17287984, + 17288000, + 17299280, + 17288016, + 17288032, + 17288048, + 17288096, + 17288112, + 17288160, + 17288208, + 17288256, + 17288304, + 17288352, 17119792, - 17286096, - 17286112, - 17286176, - 17286240, - 17286304, + 17288400, + 17288416, + 17288480, + 17288544, + 17288608, 17119840, - 17286368, - 17286384, - 17300992, - 17300736, - 17286400, - 17459936, - 17286416, - 17286432, - 17286448, - 17439312, - 17439360, - 17293184, - 17286464, - 17286480, - 17286496, - 17286512, - 17439440, - 17286560, - 17451216, - 17286576, - 17449152, - 17454864, - 17286592, - 17286608, - 17286624, - 17286640, - 17286656, - 17286672, - 17616096, - 17439200, - 17634912, - 17448944, - 17286688, - 17286704, - 17286720, - 17286736, - 17286752, - 17286768, - 17545792, - 17544304, - 17543792, - 17448272, - 17540816, - 17561728, - 17546560, - 17547488, - 17546416, - 17286832, - 17514800, - 17439168, - 17286864, - 17438800, - 17286896 + 17288672, + 17288688, + 17303296, + 17303040, + 17288704, + 17462240, + 17288720, + 17288736, + 17288752, + 17441616, + 17441664, + 17295488, + 17288768, + 17288784, + 17288800, + 17288816, + 17441744, + 17288864, + 17453520, + 17288880, + 17451456, + 17457168, + 17288896, + 17288912, + 17288928, + 17288944, + 17288960, + 17288976, + 17618400, + 17441504, + 17637216, + 17451248, + 17288992, + 17289008, + 17289024, + 17289040, + 17289056, + 17289072, + 17548096, + 17546608, + 17546096, + 17450576, + 17543120, + 17564032, + 17548864, + 17549792, + 17548720, + 17289136, + 17517104, + 17441472, + 17289168, + 17441104, + 17289200 ], "bases": [ { @@ -425818,15 +425818,15 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 63922768, + "vtable_address": 63926672, "methods": [ - 17498768, - 17499088, - 18933072, - 18741840, - 18742112, + 17501072, + 17501392, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -426007,9 +426007,9 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 63922840, + "vtable_address": 63926744, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -426190,12 +426190,12 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 63922864, + "vtable_address": 63926768, "methods": [ - 17467536, + 17469840, 14312720, - 17286880, - 17454848 + 17289184, + 17457152 ], "bases": [ { @@ -426376,14 +426376,14 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 63922912, + "vtable_address": 63926816, "methods": [ - 17440944, - 17285216, - 17285248, - 17304448, - 17285280, - 27553616 + 17443248, + 17287520, + 17287552, + 17306752, + 17287584, + 27556848 ], "bases": [ { @@ -426564,10 +426564,10 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 63922976, + "vtable_address": 63926880, "methods": [ - 17708544, - 17708704 + 17710848, + 17711008 ], "bases": [ { @@ -426748,11 +426748,11 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 63923008, + "vtable_address": 63926912, "methods": [ - 17498864, - 17499216, - 17514944 + 17501168, + 17501520, + 17517248 ], "bases": [ { @@ -426933,34 +426933,34 @@ }, { "type_name": "C_World", - "vtable_address": 64120232, + "vtable_address": 64124136, "methods": [ 14368000, - 20151824, - 20151920, - 18931408, - 39987824, - 18645760, - 20170848, - 20496416, - 21132352, - 21132672, - 21132336, - 18931712, - 20170880, - 18665616, + 20154640, + 20154736, + 18934224, + 39991728, + 18648064, + 20173664, + 20499232, + 21135168, + 21135488, + 21135152, + 18934528, + 20173696, + 18667920, 12233808, 12233824, - 18654448, - 18518336, + 18656752, + 18520640, 12779840, - 18517184, - 20627168, + 18519488, + 20629984, 12577904, - 18933280, - 20572352, - 20572208, - 20137680, + 18936096, + 20575168, + 20575024, + 20140496, 12233856, 12233872, 12233888, @@ -426968,23 +426968,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 20137728, - 20496512, - 20150352, + 40000032, + 20140544, + 20499328, + 20153168, 12234080, - 20213248, - 18666928, - 18799200, + 20216064, + 18669232, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -427001,13 +427001,13 @@ 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -427015,41 +427015,41 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 18654320, - 18767008, - 20572064, - 18934704, - 20623632, + 20586576, + 18656624, + 18769824, + 20574880, + 18937520, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 12234640, 12234656, @@ -427061,39 +427061,39 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, + 20583600, + 18770032, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, 12234896, 12234912, - 20137696, + 20140512, 12234944, 12234960, 12234976, @@ -427115,9 +427115,9 @@ 12596672, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -427125,24 +427125,24 @@ 12235184, 12235440, 12572688, - 20137712, + 20140528, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -427154,32 +427154,32 @@ 12572832, 12572912, 12235344, - 18668320, + 18670624, 12235504, - 18669520, - 18517232, - 18507808, + 18671824, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 18519232, + 18769616, + 18521536, 12235616, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456 + 18519584, + 18744368, + 18744672, + 18935680, + 18541760 ], "bases": [ { @@ -427243,15 +427243,15 @@ }, { "type_name": "C_World", - "vtable_address": 64122208, + "vtable_address": 64126112, "methods": [ - 20151872, - 20152000, - 18933072, - 18741840, - 18742112, + 20154688, + 20154816, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -427315,9 +427315,9 @@ }, { "type_name": "C_World", - "vtable_address": 64122280, + "vtable_address": 64126184, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -427381,33 +427381,33 @@ }, { "type_name": "C_WorldModelGloves", - "vtable_address": 64268304, + "vtable_address": 64272208, "methods": [ 14381312, - 22442880, - 22455248, - 18931456, - 18604336, - 22445040, - 18551600, - 22445088, - 21132352, - 18750864, - 21132336, - 18932480, - 22445136, - 18665760, + 22445696, + 22458064, + 18934272, + 18606640, + 22447856, + 18553904, + 22447904, + 21135168, + 18753680, + 21135152, + 18935296, + 22447952, + 18668064, 12233808, 12233824, - 18522752, - 18518336, - 18787392, - 18517184, - 18561584, + 18525056, + 18520640, + 18790208, + 18519488, + 18563888, 12577904, - 18933280, - 20572352, - 20572208, + 18936096, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -427416,23 +427416,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 22438784, - 22443104, - 22441632, + 40000032, + 22441600, + 22445920, + 22444448, 12234080, 14344320, - 18609696, - 18799200, + 18612000, + 18802016, 12234096, - 20632896, + 20635712, 12234112, 12235472, 12235488, @@ -427444,18 +427444,18 @@ 13130864, 12234256, 12234272, - 22438176, + 22440992, 12044000, 12234304, 12572832, 12572832, - 18563104, + 18565408, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -427463,79 +427463,79 @@ 12250624, 12250480, 12249920, - 20572032, - 18506864, - 18519952, + 20574848, + 18509168, + 18522256, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 18513744, + 18516048, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12235520, 12234528, - 20583760, - 22441264, - 18767008, - 20572064, - 18935088, - 20623632, + 20586576, + 22444080, + 18769824, + 20574880, + 18937904, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, - 18522864, - 18523056, + 20616624, + 20912832, + 18525168, + 18525360, 12234624, 13130976, 12234656, - 18506896, - 18529760, - 18529680, - 18515024, - 18744048, - 18621120, - 18752064, + 18509200, + 18532064, + 18531984, + 18517328, + 18746864, + 18623424, + 18754880, 13132864, - 20623744, - 18515488, - 20825088, - 18632768, + 20626560, + 18517792, + 20827904, + 18635072, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, - 18507760, + 20575040, + 18510064, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 18767216, - 18741488, - 18562848, + 20583600, + 18770032, + 18744304, + 18565152, 12572800, 12572816, 12044016, @@ -427560,12 +427560,12 @@ 12235392, 12243280, 12235104, - 18515376, + 18517680, 12389504, 12387328, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -427573,24 +427573,24 @@ 12235184, 12235440, 12572688, - 18935648, + 18938464, 12235200, - 18665728, - 20578304, + 18668032, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 18615984, - 20702256, + 20578656, + 18618288, + 20705072, 12572832, 12572592, 12572896, @@ -427602,66 +427602,66 @@ 12572832, 12572912, 12235344, - 18669040, + 18671344, 12235504, - 18820560, - 18517232, - 18507808, + 18823376, + 18519536, + 18510112, 12235536, - 18507776, - 18507760, - 18507776, - 18507792, - 18507776, + 18510080, + 18510064, + 18510080, + 18510096, + 18510080, 12235552, 12235568, 12235584, - 18575152, + 18577456, 12235600, - 18766800, - 22444128, - 18507264, + 18769616, + 22446944, + 18509568, 12235632, 12235648, - 18517280, - 18741552, - 18741856, - 18932864, - 18539456, - 18760512, + 18519584, + 18744368, + 18744672, + 18935680, + 18541760, + 18763328, 13130880, - 18514896, + 18517200, 13130896, 13130912, - 18793136, - 18507248, + 18795952, + 18509552, 13130928, 13130944, - 18918912, + 18921728, 13130960, - 18506752, - 18515152, + 18509056, + 18517456, 13130992, 13131008, - 18515216, - 18506944, - 18583120, - 18727120, + 18517520, + 18509248, + 18585424, + 18729936, 13131024, - 18646560, - 18584976, + 18648864, + 18587280, 13131040, - 18662672, - 18585616, + 18664976, + 18587920, 13131056, 13131072, - 18507280, - 18622016, - 18507232, + 18509584, + 18624320, + 18509536, 13132832, 13131088, 13131104, - 18777856 + 18780672 ], "bases": [ { @@ -427736,15 +427736,15 @@ }, { "type_name": "C_WorldModelGloves", - "vtable_address": 64270552, + "vtable_address": 64274456, "methods": [ - 22442992, - 22455376, - 18933072, - 18741840, - 18742112, + 22445808, + 22458192, + 18935888, + 18744656, + 18744928, 12235456, - 18541232 + 18543536 ], "bases": [ { @@ -427819,9 +427819,9 @@ }, { "type_name": "C_WorldModelGloves", - "vtable_address": 64270624, + "vtable_address": 64274528, "methods": [ - 18531824 + 18534128 ], "bases": [ { @@ -427896,7 +427896,7 @@ }, { "type_name": "Capture in RenderDoc", - "vtable_address": 65202864, + "vtable_address": 65206768, "methods": [], "bases": [], "model": { @@ -427907,7 +427907,7 @@ }, { "type_name": "Child Model", - "vtable_address": 65201616, + "vtable_address": 65205520, "methods": [], "bases": [], "model": { @@ -427918,12 +427918,12 @@ }, { "type_name": "ClientJob_EGCMsgAccountPhoneNumberChange", - "vtable_address": 64537392, + "vtable_address": 64541296, "methods": [ - 26423120, - 26423136, + 26426128, + 26426144, 12404704, - 27066528, + 27069536, 12399472, 12399440, 12399456 @@ -427959,12 +427959,12 @@ }, { "type_name": "ClientJob_EGCMsgRecurringSubscriptionStatusChange", - "vtable_address": 64537920, + "vtable_address": 64541824, "methods": [ - 26423376, - 26423392, + 26426384, + 26426400, 12404704, - 27080080, + 27083088, 12399472, 12399440, 12399456 @@ -428000,12 +428000,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_GotvSyncPacket", - "vtable_address": 64180272, + "vtable_address": 64184176, "methods": [ - 21336768, - 21336784, + 21339584, + 21339600, 12404704, - 21547440, + 21550256, 12399472, 12399440, 12399456 @@ -428041,12 +428041,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_StartAgreementSessionInGame", - "vtable_address": 64537096, + "vtable_address": 64541000, "methods": [ - 26422928, - 26422944, + 26425936, + 26425952, 12404704, - 27040256, + 27043264, 12399472, 12399440, 12399456 @@ -428082,12 +428082,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_AccountPrivacySettings", - "vtable_address": 64537768, + "vtable_address": 64541672, "methods": [ - 26423312, - 26423328, + 26426320, + 26426336, 12404704, - 27076544, + 27079552, 12399472, 12399440, 12399456 @@ -428123,12 +428123,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Account_RequestCoPlays", - "vtable_address": 64540168, + "vtable_address": 64544072, "methods": [ - 26423824, - 26423840, + 26426832, + 26426848, 12404704, - 27138640, + 27141648, 12399472, 12399440, 12399456 @@ -428164,12 +428164,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse", - "vtable_address": 64523712, + "vtable_address": 64527616, "methods": [ - 25469072, - 25469088, + 25472080, + 25472096, 12404704, - 26362656, + 26365664, 12399472, 12399440, 12399456 @@ -428205,12 +428205,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin", - "vtable_address": 64523560, + "vtable_address": 64527464, "methods": [ - 25469008, - 25469024, + 25472016, + 25472032, 12404704, - 26336848, + 26339856, 12399472, 12399440, 12399456 @@ -428246,12 +428246,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientAccountBalance", - "vtable_address": 64539632, + "vtable_address": 64543536, "methods": [ - 26423760, - 26423776, + 26426768, + 26426784, 12404704, - 27134368, + 27137376, 12399472, 12399440, 12399456 @@ -428287,12 +428287,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientAuthKeyCode", - "vtable_address": 64537544, + "vtable_address": 64541448, "methods": [ - 26423184, - 26423200, + 26426192, + 26426208, 12404704, - 27065792, + 27068800, 12399472, 12399440, 12399456 @@ -428328,12 +428328,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse", - "vtable_address": 64521848, + "vtable_address": 64525752, "methods": [ - 25468752, - 25468768, + 25471760, + 25471776, 12404704, - 26314672, + 26317680, 12399472, 12399440, 12399456 @@ -428369,12 +428369,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientDeepStats_Response", - "vtable_address": 64520712, + "vtable_address": 64524616, "methods": [ - 25468560, - 25468576, + 25471568, + 25471584, 12404704, - 26279776, + 26282784, 12399472, 12399440, 12399456 @@ -428410,12 +428410,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientLogonFatalError", - "vtable_address": 64536944, + "vtable_address": 64540848, "methods": [ - 26422864, - 26422880, + 26425872, + 26425888, 12404704, - 27071712, + 27074720, 12399472, 12399440, 12399456 @@ -428451,12 +428451,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientNetworkConfig", - "vtable_address": 64524344, + "vtable_address": 64528248, "methods": [ - 25469136, - 25469152, + 25472144, + 25472160, 12404704, - 26367312, + 26370320, 12399472, 12399440, 12399456 @@ -428492,12 +428492,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPartyJoinRelay", - "vtable_address": 64524416, + "vtable_address": 64528320, "methods": [ - 25469200, - 25469216, + 25472208, + 25472224, 12404704, - 26300944, + 26303952, 12399472, 12399440, 12399456 @@ -428533,12 +428533,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPartyWarning", - "vtable_address": 64351112, + "vtable_address": 64355016, "methods": [ - 22931648, - 22931664, + 22934464, + 22934480, 12404704, - 23236960, + 23239776, 12399472, 12399440, 12399456 @@ -428574,12 +428574,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPlayerDecalSign", - "vtable_address": 64346568, + "vtable_address": 64350472, "methods": [ - 22931392, - 22931408, + 22934208, + 22934224, 12404704, - 23207568, + 23210384, 12399472, 12399440, 12399456 @@ -428615,12 +428615,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPollState", - "vtable_address": 64537616, + "vtable_address": 64541520, "methods": [ - 26423248, - 26423264, + 26426256, + 26426272, 12404704, - 27051152, + 27054160, 12399472, 12399440, 12399456 @@ -428656,12 +428656,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientReportResponse", - "vtable_address": 64521960, + "vtable_address": 64525864, "methods": [ - 25468816, - 25468832, + 25471824, + 25471840, 12404704, - 26316304, + 26319312, 12399472, 12399440, 12399456 @@ -428697,12 +428697,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientRequestJoinFriendData", - "vtable_address": 64373704, + "vtable_address": 64377608, "methods": [ - 23499792, - 23499808, + 23502544, + 23502560, 12404704, - 23535936, + 23538688, 12399472, 12399440, 12399456 @@ -428738,12 +428738,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientRequestJoinServerData", - "vtable_address": 64373816, + "vtable_address": 64377720, "methods": [ - 23499856, - 23499872, + 23502608, + 23502624, 12404704, - 23537376, + 23540128, 12399472, 12399440, 12399456 @@ -428779,12 +428779,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_DraftSummary", - "vtable_address": 64524712, + "vtable_address": 64528616, "methods": [ - 25469264, - 25469280, + 25472272, + 25472288, 12404704, - 26369008, + 26372016, 12399472, 12399440, 12399456 @@ -428820,12 +428820,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_FantasyRequestClientData", - "vtable_address": 64525704, + "vtable_address": 64529608, "methods": [ - 25469520, - 25469536, + 25472528, + 25472544, 12404704, - 26343728, + 26346736, 12399472, 12399440, 12399456 @@ -428861,12 +428861,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_FantasyUpdateClientData", - "vtable_address": 64525776, + "vtable_address": 64529680, "methods": [ - 25469584, - 25469600, + 25472592, + 25472608, 12404704, - 26344432, + 26347440, 12399472, 12399440, 12399456 @@ -428902,12 +428902,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientGlobalStats", - "vtable_address": 64351224, + "vtable_address": 64355128, "methods": [ - 22931712, - 22931728, + 22934528, + 22934544, 12404704, - 23240272, + 23243088, 12399472, 12399440, 12399456 @@ -428943,12 +428943,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientNotifyXPShop", - "vtable_address": 64346416, + "vtable_address": 64350320, "methods": [ - 22931328, - 22931344, + 22934144, + 22934160, 12404704, - 23207088, + 23209904, 12399472, 12399440, 12399456 @@ -428984,12 +428984,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientTextMsg", - "vtable_address": 64538096, + "vtable_address": 64542000, "methods": [ - 26423440, - 26423456, + 26426448, + 26426464, 12404704, - 27083472, + 27086480, 12399472, 12399440, 12399456 @@ -429025,12 +429025,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientTournamentInfo", - "vtable_address": 64351672, + "vtable_address": 64355576, "methods": [ - 22931968, - 22931984, + 22934784, + 22934800, 12404704, - 23243232, + 23246048, 12399472, 12399440, 12399456 @@ -429066,12 +429066,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GetEventFavorites_Response", - "vtable_address": 64540344, + "vtable_address": 64544248, "methods": [ - 26423888, - 26423904, + 26426896, + 26426912, 12404704, - 27139840, + 27142848, 12399472, 12399440, 12399456 @@ -429107,12 +429107,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchList", - "vtable_address": 64525488, + "vtable_address": 64529392, "methods": [ - 25469328, - 25469344, + 25472336, + 25472352, 12404704, - 26386176, + 26389184, 12399472, 12399440, 12399456 @@ -429148,12 +429148,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchListRequestTournamentPredictions", - "vtable_address": 64525560, + "vtable_address": 64529464, "methods": [ - 25469392, - 25469408, + 25472400, + 25472416, 12404704, - 26342336, + 26345344, 12399472, 12399440, 12399456 @@ -429189,12 +429189,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt", - "vtable_address": 64525848, + "vtable_address": 64529752, "methods": [ - 25469648, - 25469664, + 25472656, + 25472672, 12404704, - 26341648, + 26344656, 12399472, 12399440, 12399456 @@ -429230,12 +429230,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchListUploadTournamentPredictions", - "vtable_address": 64525632, + "vtable_address": 64529536, "methods": [ - 25469456, - 25469472, + 25472464, + 25472480, 12404704, - 26343040, + 26346048, 12399472, 12399440, 12399456 @@ -429271,12 +429271,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingClient2ServerPing", - "vtable_address": 64351040, + "vtable_address": 64354944, "methods": [ - 22931584, - 22931600, + 22934400, + 22934416, 12404704, - 23235792, + 23238608, 12399472, 12399440, 12399456 @@ -429312,12 +429312,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon", - "vtable_address": 64351560, + "vtable_address": 64355464, "methods": [ - 22931904, - 22931920, + 22934720, + 22934736, 12404704, - 23241824, + 23244640, 12399472, 12399440, 12399456 @@ -429353,12 +429353,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello", - "vtable_address": 64350816, + "vtable_address": 64354720, "methods": [ - 22931456, - 22931472, + 22934272, + 22934288, 12404704, - 23232816, + 23235632, 12399472, 12399440, 12399456 @@ -429394,12 +429394,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientReserve", - "vtable_address": 64351448, + "vtable_address": 64355352, "methods": [ - 22931840, - 22931856, + 22934656, + 22934672, 12404704, - 23262176, + 23264992, 12399472, 12399440, 12399456 @@ -429435,12 +429435,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats", - "vtable_address": 64351336, + "vtable_address": 64355240, "methods": [ - 22931776, - 22931792, + 22934592, + 22934608, 12404704, - 23240960, + 23243776, 12399472, 12399440, 12399456 @@ -429476,12 +429476,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate", - "vtable_address": 64350928, + "vtable_address": 64354832, "methods": [ - 22931520, - 22931536, + 22934336, + 22934352, 12404704, - 23251536, + 23254352, 12399472, 12399440, 12399456 @@ -429517,12 +429517,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Party_Search", - "vtable_address": 64538856, + "vtable_address": 64542760, "methods": [ - 26423568, - 26423584, + 26426576, + 26426592, 12404704, - 27108240, + 27111248, 12399472, 12399440, 12399456 @@ -429558,12 +429558,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment", - "vtable_address": 64538496, + "vtable_address": 64542400, "methods": [ - 26423504, - 26423520, + 26426512, + 26426528, 12404704, - 27097168, + 27100176, 12399472, 12399440, 12399456 @@ -429599,12 +429599,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PlayersProfile", - "vtable_address": 64521272, + "vtable_address": 64525176, "methods": [ - 25468688, - 25468704, + 25471696, + 25471712, 12404704, - 26290128, + 26293136, 12399472, 12399440, 12399456 @@ -429640,12 +429640,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PremierSeasonSummary", - "vtable_address": 64540536, + "vtable_address": 64544440, "methods": [ - 26423952, - 26423968, + 26426960, + 26426976, 12404704, - 27159856, + 27162864, 12399472, 12399440, 12399456 @@ -429681,12 +429681,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PrivateQueues", - "vtable_address": 64539080, + "vtable_address": 64542984, "methods": [ - 26423696, - 26423712, + 26426704, + 26426720, 12404704, - 27107696, + 27110704, 12399472, 12399440, 12399456 @@ -429722,12 +429722,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName", - "vtable_address": 64537320, + "vtable_address": 64541224, "methods": [ - 26423056, - 26423072, + 26426064, + 26426080, 12404704, - 27048688, + 27051696, 12399472, 12399440, 12399456 @@ -429763,12 +429763,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_WatchInfoUsers", - "vtable_address": 64520960, + "vtable_address": 64524864, "methods": [ - 25468624, - 25468640, + 25471632, + 25471648, 12404704, - 26286640, + 26289648, 12399472, 12399440, 12399456 @@ -429804,12 +429804,12 @@ }, { "type_name": "ClientJob_EMsgGCDev_RequestSchemaReservation", - "vtable_address": 64541704, + "vtable_address": 64545608, "methods": [ - 26424016, - 26424032, + 26427024, + 26427040, 12404704, - 27161888, + 27164896, 12399472, 12399440, 12399456 @@ -429845,12 +429845,12 @@ }, { "type_name": "ClientJob_EMsgGCItemCustomizationNotification", - "vtable_address": 64523336, + "vtable_address": 64527240, "methods": [ - 25468880, - 25468896, + 25471888, + 25471904, 12404704, - 26333120, + 26336128, 12399472, 12399440, 12399456 @@ -429886,12 +429886,12 @@ }, { "type_name": "ClientJob_EMsgGCRecurringMissionResponse", - "vtable_address": 64594024, + "vtable_address": 64597928, "methods": [ - 28026224, - 28026240, + 28029488, + 28029504, 12404704, - 28158640, + 28161904, 12399472, 12399440, 12399456 @@ -429927,12 +429927,12 @@ }, { "type_name": "ClientJob_EMsgGCStoreGetUserDataResponse", - "vtable_address": 64573168, + "vtable_address": 64577072, "methods": [ - 27288608, - 27288624, + 27291776, + 27291792, 12404704, - 27998304, + 28001568, 12399472, 12399440, 12399456 @@ -429968,12 +429968,12 @@ }, { "type_name": "ClientJob_EMsgGCUseItemResponse", - "vtable_address": 64523448, + "vtable_address": 64527352, "methods": [ - 25468944, - 25468960, + 25471952, + 25471968, 12404704, - 25500144, + 25503152, 12399472, 12399440, 12399456 @@ -430009,12 +430009,12 @@ }, { "type_name": "ClientJob_EMsgGCUserTrackTimePlayedConsecutively", - "vtable_address": 64536832, + "vtable_address": 64540736, "methods": [ - 26422800, - 26422816, + 26425808, + 26425824, 12404704, - 27039088, + 27042096, 12399472, 12399440, 12399456 @@ -430050,12 +430050,12 @@ }, { "type_name": "ClientJob_MsgGCCStrike15_v2_ClientGCRankUpdate", - "vtable_address": 64537248, + "vtable_address": 64541152, "methods": [ - 26422992, - 26423008, + 26426000, + 26426016, 12404704, - 27047104, + 27050112, 12399472, 12399440, 12399456 @@ -430091,12 +430091,12 @@ }, { "type_name": "ClientJob_MsgGCCStrike15_v2_Party_Invite", - "vtable_address": 64538968, + "vtable_address": 64542872, "methods": [ - 26423632, - 26423648, + 26426640, + 26426656, 12404704, - 27108784, + 27111792, 12399472, 12399440, 12399456 @@ -430132,52 +430132,52 @@ }, { "type_name": "ClientModeCSNormal", - "vtable_address": 64344832, - "methods": [ - 23074960, - 23075392, - 21558064, - 23168320, - 21557728, - 23188128, - 21557840, - 21557616, - 21557632, - 21578288, - 21557872, - 21575456, - 21557760, - 21557744, - 21561728, - 21557760, - 23188480, - 21325200, - 21564512, - 23192848, - 21557792, - 23010096, - 21558064, - 21557824, - 23168256, - 23188688, - 23202400, - 23202240, - 22959552, - 22945376, - 21568096, - 21580768, - 21557888, - 21568048, - 21557648, - 21557664, - 21557584, - 21557600, - 23189296, - 21325216, - 21557680, - 23193376, - 23038384, - 22927424 + "vtable_address": 64348736, + "methods": [ + 23077328, + 23077760, + 21560880, + 23171072, + 21560544, + 23190880, + 21560656, + 21560432, + 21560448, + 21581104, + 21560688, + 21578272, + 21560576, + 21560560, + 21564544, + 21560576, + 23191232, + 21328016, + 21567328, + 23195600, + 21560608, + 23012912, + 21560880, + 21560640, + 23171008, + 23191440, + 23205152, + 23204992, + 22962368, + 22948192, + 21570912, + 21583584, + 21560704, + 21570864, + 21560464, + 21560480, + 21560400, + 21560416, + 23192048, + 21328032, + 21560496, + 23196128, + 23040752, + 22930240 ], "bases": [ { @@ -430241,11 +430241,11 @@ }, { "type_name": "ClientModeCSNormal", - "vtable_address": 64345200, + "vtable_address": 64349104, "methods": [ - 23075376, - 23075456, - 23201568 + 23077744, + 23077824, + 23204320 ], "bases": [ { @@ -430309,9 +430309,9 @@ }, { "type_name": "ClientModeCSNormal", - "vtable_address": 64345240, + "vtable_address": 64349144, "methods": [ - 23039984 + 23042352 ], "bases": [ { @@ -430375,50 +430375,50 @@ }, { "type_name": "ClientModeShared", - "vtable_address": 64185072, + "vtable_address": 64188976, "methods": [ - 21568832, - 21575600, - 21558064, - 21678768, - 21557728, - 21561680, - 21557840, - 21557616, - 21557632, - 21578288, - 21557872, - 21575456, - 21557760, - 21557744, - 21561728, - 21557760, - 21658880, - 21325200, - 21564512, - 21663488, - 21557792, - 21557808, - 21558064, - 21557824, - 21571872, - 21561888, - 21557760, - 21557776, - 21578224, - 21325232, - 21568096, - 21580768, - 21557888, - 21568048, - 21557648, - 21557664, - 21557584, - 21557600, - 21582288, - 21325216, - 21557680, - 21557776 + 21571648, + 21578416, + 21560880, + 21681584, + 21560544, + 21564496, + 21560656, + 21560432, + 21560448, + 21581104, + 21560688, + 21578272, + 21560576, + 21560560, + 21564544, + 21560576, + 21661696, + 21328016, + 21567328, + 21666304, + 21560608, + 21560624, + 21560880, + 21560640, + 21574688, + 21564704, + 21560576, + 21560592, + 21581040, + 21328048, + 21570912, + 21583584, + 21560704, + 21570864, + 21560464, + 21560480, + 21560400, + 21560416, + 21585104, + 21328032, + 21560496, + 21560592 ], "bases": [ { @@ -430461,11 +430461,11 @@ }, { "type_name": "ClientModeShared", - "vtable_address": 64185424, + "vtable_address": 64189328, "methods": [ - 21575904, - 21575744, - 21568016 + 21578720, + 21578560, + 21570832 ], "bases": [ { @@ -430508,40 +430508,40 @@ }, { "type_name": "Composite Material Assembly Procedures", - "vtable_address": 65201520, + "vtable_address": 65205424, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11045698 + "offset_to_top": 11045709 } } }, { "type_name": "CompositeMaterialInputContainerSourceType_t", - "vtable_address": 65041048, + "vtable_address": 65044952, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66184384 + "offset_to_top": 66188288 } } }, { "type_name": "CompositeMaterialTextureViewer", - "vtable_address": 65202032, + "vtable_address": 65205936, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10929062 + "offset_to_top": 10929073 } } }, { "type_name": "CountdownTimer", - "vtable_address": 63490664, + "vtable_address": 63494568, "methods": [], "bases": [], "model": { @@ -430552,13 +430552,13 @@ }, { "type_name": "CountdownTimer", - "vtable_address": 64120088, + "vtable_address": 64123992, "methods": [ 13060656, - 20137664, - 20137024, + 20140480, + 20139840, 13055552, - 20137040 + 20139856 ], "bases": [], "model": { @@ -430569,23 +430569,23 @@ }, { "type_name": "DataCenterPing", - "vtable_address": 63530816, + "vtable_address": 63534720, "methods": [ 15634896, 15691088, - 29643894, + 29647734, 15163104, 15793232, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820848, 14847088, 15280064, 12011504, 14926272, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834144, 14800256 @@ -430621,23 +430621,23 @@ }, { "type_name": "DeepPlayerMatchEvent", - "vtable_address": 63535136, + "vtable_address": 63539040, "methods": [ 15639040, 15692496, - 29643894, + 29647734, 15167536, 15794288, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821776, 14847440, 15294880, 12011504, 15095552, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14835008, 14800688 @@ -430673,23 +430673,23 @@ }, { "type_name": "DeepPlayerStatsEntry", - "vtable_address": 63534976, + "vtable_address": 63538880, "methods": [ 15638896, 15712880, - 29643894, + 29647734, 15167392, 15794128, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14873520, 14847424, 15292832, 12011504, 15093760, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834976, 14800672 @@ -430725,7 +430725,7 @@ }, { "type_name": "DemoTrackBase_t", - "vtable_address": 63319976, + "vtable_address": 63323880, "methods": [], "bases": [], "model": { @@ -430736,7 +430736,7 @@ }, { "type_name": "DemoTrackBase_t >", - "vtable_address": 63320000, + "vtable_address": 63323904, "methods": [], "bases": [], "model": { @@ -430747,7 +430747,7 @@ }, { "type_name": "DemoTrackBase_t", - "vtable_address": 63320024, + "vtable_address": 63323928, "methods": [], "bases": [], "model": { @@ -430758,23 +430758,23 @@ }, { "type_name": "DetailedSearchStatistic", - "vtable_address": 63530976, + "vtable_address": 63534880, "methods": [ 15635024, 15691216, - 29643894, + 29647734, 15163248, 15793296, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820928, 14846880, 15280608, 12011504, 14972000, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834176, 14800272 @@ -430810,7 +430810,7 @@ }, { "type_name": "Digital Signature", - "vtable_address": 64736680, + "vtable_address": 64740584, "methods": [], "bases": [], "model": { @@ -430821,18 +430821,18 @@ }, { "type_name": "Disable Hit Group & Remove Tagged Physics Bodies When Destroyed", - "vtable_address": 63442160, + "vtable_address": 63446064, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11121051 + "offset_to_top": 11121062 } } }, { "type_name": "EBoneSetup", - "vtable_address": 64775112, + "vtable_address": 64779016, "methods": [], "bases": [], "model": { @@ -430843,18 +430843,18 @@ }, { "type_name": "EntityIOTargetType_t", - "vtable_address": 64849296, + "vtable_address": 64853200, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66122592 + "offset_to_top": 66126496 } } }, { "type_name": "EntityRenderAttribute_t", - "vtable_address": 63353712, + "vtable_address": 63357616, "methods": [ 14313968, 14318496, @@ -430871,7 +430871,7 @@ }, { "type_name": "Etc::Block4x4Encoding", - "vtable_address": 64767312, + "vtable_address": 64771216, "methods": [], "bases": [], "model": { @@ -430882,7 +430882,7 @@ }, { "type_name": "Etc::Block4x4Encoding", - "vtable_address": 64767408, + "vtable_address": 64771312, "methods": [], "bases": [], "model": { @@ -430893,17 +430893,17 @@ }, { "type_name": "Etc::Block4x4Encoding_ETC1", - "vtable_address": 64767424, + "vtable_address": 64771328, "methods": [ - 31988624, - 31988640, - 31988672, - 32007120, - 32003392, - 32005840, - 32007872, - 32007888, - 32007904 + 31992464, + 31992480, + 31992512, + 32010960, + 32007232, + 32009680, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -430925,7 +430925,7 @@ }, { "type_name": "Etc::Block4x4Encoding_ETC1", - "vtable_address": 64767744, + "vtable_address": 64771648, "methods": [], "bases": [ { @@ -430947,17 +430947,17 @@ }, { "type_name": "Etc::Block4x4Encoding_R11", - "vtable_address": 64767536, + "vtable_address": 64771440, "methods": [ - 32007952, - 32007984, - 32008016, - 32011568, - 32010992, - 32008064, - 32007872, - 32007888, - 32007904 + 32011792, + 32011824, + 32011856, + 32015408, + 32014832, + 32011904, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431001,7 +431001,7 @@ }, { "type_name": "Etc::Block4x4Encoding_R11", - "vtable_address": 64767632, + "vtable_address": 64771536, "methods": [], "bases": [ { @@ -431045,17 +431045,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RG11", - "vtable_address": 64767648, + "vtable_address": 64771552, "methods": [ - 32012496, - 32012528, - 32012560, - 32016208, - 32015456, - 32012608, - 32007872, - 32007888, - 32007904 + 32016336, + 32016368, + 32016400, + 32020048, + 32019296, + 32016448, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431110,7 +431110,7 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8", - "vtable_address": 64767520, + "vtable_address": 64771424, "methods": [], "bases": [ { @@ -431143,17 +431143,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8", - "vtable_address": 64767760, + "vtable_address": 64771664, "methods": [ - 32017808, - 32017840, - 31988672, - 32038848, - 32047152, - 32033856, - 32007872, - 32007888, - 32007904 + 32021648, + 32021680, + 31992512, + 32042688, + 32050992, + 32037696, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431186,7 +431186,7 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1", - "vtable_address": 64767904, + "vtable_address": 64771808, "methods": [], "bases": [ { @@ -431230,17 +431230,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1", - "vtable_address": 64767920, + "vtable_address": 64771824, "methods": [ - 32047968, - 32048000, - 32048032, - 32052816, - 32067504, - 32070976, - 32007872, - 32007888, - 32007904 + 32051808, + 32051840, + 32051872, + 32056656, + 32071344, + 32074816, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431284,17 +431284,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Opaque", - "vtable_address": 64768008, + "vtable_address": 64771912, "methods": [ - 32072848, - 32072912, - 32048032, - 32052816, - 32072224, - 32070976, - 32007872, - 32007888, - 32007904 + 32076688, + 32076752, + 32051872, + 32056656, + 32076064, + 32074816, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431349,17 +431349,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Transparent", - "vtable_address": 64768096, + "vtable_address": 64772000, "methods": [ - 32072816, - 32072880, - 32048032, - 32052816, - 32049008, - 32070976, - 32007872, - 32007888, - 32007904 + 32076656, + 32076720, + 32051872, + 32056656, + 32052848, + 32074816, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431414,7 +431414,7 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8", - "vtable_address": 64768240, + "vtable_address": 64772144, "methods": [], "bases": [ { @@ -431458,17 +431458,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8", - "vtable_address": 64768256, + "vtable_address": 64772160, "methods": [ - 32073008, - 32073040, - 32073072, - 32075616, - 32077408, - 32077744, - 32007872, - 32007888, - 32007904 + 32076848, + 32076880, + 32076912, + 32079456, + 32081248, + 32081584, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431512,17 +431512,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Opaque", - "vtable_address": 64768344, + "vtable_address": 64772248, "methods": [ - 32078160, - 32078224, - 32073072, - 32075616, - 32077632, - 32078064, - 32007872, - 32007888, - 32007904 + 32082000, + 32082064, + 32076912, + 32079456, + 32081472, + 32081904, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431577,17 +431577,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Transparent", - "vtable_address": 64768432, + "vtable_address": 64772336, "methods": [ - 32078128, - 32078192, - 32073072, - 32075616, - 32073120, - 32078096, - 32007872, - 32007888, - 32007904 + 32081968, + 32082032, + 32076912, + 32079456, + 32076960, + 32081936, + 32011712, + 32011728, + 32011744 ], "bases": [ { @@ -431642,7 +431642,7 @@ }, { "type_name": "EventAdvanceTick_t", - "vtable_address": 65586976, + "vtable_address": 65590880, "methods": [], "bases": [], "model": { @@ -431653,7 +431653,7 @@ }, { "type_name": "EventAdvanceTick_t", - "vtable_address": 65587488, + "vtable_address": 65591392, "methods": [], "bases": [], "model": { @@ -431664,7 +431664,7 @@ }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 65586848, + "vtable_address": 65590752, "methods": [], "bases": [], "model": { @@ -431675,7 +431675,7 @@ }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 65587232, + "vtable_address": 65591136, "methods": [], "bases": [], "model": { @@ -431686,7 +431686,7 @@ }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 65587360, + "vtable_address": 65591264, "methods": [], "bases": [], "model": { @@ -431697,7 +431697,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65585504, + "vtable_address": 65589408, "methods": [], "bases": [], "model": { @@ -431708,7 +431708,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65585632, + "vtable_address": 65589536, "methods": [], "bases": [], "model": { @@ -431719,7 +431719,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65585760, + "vtable_address": 65589664, "methods": [], "bases": [], "model": { @@ -431730,7 +431730,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65585888, + "vtable_address": 65589792, "methods": [], "bases": [], "model": { @@ -431741,7 +431741,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65586016, + "vtable_address": 65589920, "methods": [], "bases": [], "model": { @@ -431752,7 +431752,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65586144, + "vtable_address": 65590048, "methods": [], "bases": [], "model": { @@ -431763,7 +431763,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65586272, + "vtable_address": 65590176, "methods": [], "bases": [], "model": { @@ -431774,7 +431774,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 65586400, + "vtable_address": 65590304, "methods": [], "bases": [], "model": { @@ -431785,33 +431785,33 @@ }, { "type_name": "FilterDamageType", - "vtable_address": 64038568, + "vtable_address": 64042472, "methods": [ 14367152, - 18981808, - 18983808, + 18984624, + 18986624, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -431820,23 +431820,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940928, - 18952544, - 18949584, + 40000032, + 18943744, + 18955360, + 18952400, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -431853,13 +431853,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -431867,42 +431867,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -431913,33 +431913,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -431967,9 +431967,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -431977,24 +431977,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -432006,8 +432006,8 @@ 12572832, 12572912, 12235344, - 18940896, - 18940912 + 18943712, + 18943728 ], "bases": [ { @@ -432062,33 +432062,33 @@ }, { "type_name": "FilterHealth", - "vtable_address": 64040352, + "vtable_address": 64044256, "methods": [ 14367152, - 18981968, - 18983984, + 18984784, + 18986800, 12884160, - 39987824, + 39991728, 12884208, - 21124256, - 21126080, - 21132352, - 21132672, - 21132336, - 21128672, - 21128960, - 21133440, + 21127072, + 21128896, + 21135168, + 21135488, + 21135152, + 21131488, + 21131776, + 21136256, 12233808, 12233824, - 20580528, + 20583344, 12642400, 12779840, - 20612384, - 20627168, + 20615200, + 20629984, 12577904, - 20580464, - 20572352, - 20572208, + 20583280, + 20575168, + 20575024, 12233840, 12233856, 12233872, @@ -432097,23 +432097,23 @@ 12595248, 12233920, 12233936, - 20572032, + 20574848, 12233952, 12233968, 12233984, 12234000, 12234016, 12234032, - 39996128, - 18940976, - 18952544, - 18949600, + 40000032, + 18943792, + 18955360, + 18952416, 12234080, 14345088, - 20571856, + 20574672, 12616752, 12234096, - 20632896, + 20635712, 12234112, 12234128, 12234144, @@ -432130,13 +432130,13 @@ 12234304, 12572832, 12572832, - 20959136, + 20961952, 12577792, 12596832, 12599312, 12234320, - 20581280, - 20576480, + 20584096, + 20579296, 12234336, 12234352, 12860736, @@ -432144,42 +432144,42 @@ 12250624, 12250480, 12249920, - 20572032, + 20574848, 12234384, 12234400, 12572768, 12572592, - 20572032, + 20574848, 12234432, - 20572048, + 20574864, 12234448, 12234464, 12581680, - 20584560, - 20580736, + 20587376, + 20583552, 12234480, - 20571952, - 20576416, + 20574768, + 20579232, 12235376, 12234496, 12234512, 12234528, - 20583760, - 20580192, - 20901072, - 20572064, - 20633856, - 20623632, + 20586576, + 20583008, + 20903888, + 20574880, + 20636672, + 20626448, 12234544, 12234560, 12234576, 12235360, 12234592, - 20613808, - 20910016, + 20616624, + 20912832, 12234608, 12572784, - 18940720, + 18943536, 12234640, 12234656, 12234672, @@ -432190,33 +432190,33 @@ 12572608, 12234736, 12234752, - 20623744, - 20572336, - 20825088, - 20711520, + 20626560, + 20575152, + 20827904, + 20714336, 12234768, - 20608144, - 20572192, - 20572064, + 20610960, + 20575008, + 20574880, 12611264, 12572672, - 20572224, + 20575040, 12234784, 12234800, - 20633648, + 20636464, 12572784, 12572624, 12572784, 12234816, - 20572192, - 21812224, + 20575008, + 21815040, 12234864, - 21768784, + 21771600, 12234880, - 20580784, - 20624208, + 20583600, + 20627024, 12244416, - 20572080, + 20574896, 12572800, 12572816, 12044016, @@ -432244,9 +432244,9 @@ 12596672, 12235408, 12235424, - 20571936, + 20574752, 12600800, - 21721792, + 21724608, 12235120, 12235136, 12235152, @@ -432254,24 +432254,24 @@ 12235184, 12235440, 12572688, - 20629888, + 20632704, 12235200, - 20578288, - 20578304, + 20581104, + 20581120, 12235216, 12235232, 12235248, 12235264, 12235280, 12235296, - 21705728, - 20572192, + 21708544, + 20575008, 12235312, 12235328, 12243168, - 20575840, - 20584624, - 20702256, + 20578656, + 20587440, + 20705072, 12572832, 12572592, 12572896, @@ -432283,8 +432283,8 @@ 12572832, 12572912, 12235344, - 18940944, - 18940960 + 18943760, + 18943776 ], "bases": [ { @@ -432339,23 +432339,23 @@ }, { "type_name": "FuseVariableType_t", - "vtable_address": 64778328, + "vtable_address": 64782232, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66078368 + "offset_to_top": 66082272 } } }, { "type_name": "GCSDK::CGCClient", - "vtable_address": 64946912, + "vtable_address": 64950816, "methods": [ - 59416304, - 59417200, - 59395872, - 59395888 + 59420208, + 59421104, + 59399776, + 59399792 ], "bases": [], "model": { @@ -432366,7 +432366,7 @@ }, { "type_name": "GCSDK::CGCClientJob", - "vtable_address": 63144576, + "vtable_address": 63148480, "methods": [ 12403152, 12403168, @@ -432396,18 +432396,18 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectCache", - "vtable_address": 64950048, + "vtable_address": 64953952, "methods": [ - 59520352, - 59520368, - 28024144, - 59519696, - 59520032, - 59516960, - 59514496, - 59514272, - 59515168, - 59514416 + 59524256, + 59524272, + 28027408, + 59523600, + 59523936, + 59520864, + 59518400, + 59518176, + 59519072, + 59518320 ], "bases": [ { @@ -432429,16 +432429,16 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectTypeCache", - "vtable_address": 64949968, + "vtable_address": 64953872, "methods": [ - 59520288, - 59520304, - 59518464, - 59514720, - 59515472, - 59514288, - 59515040, - 59514320 + 59524192, + 59524208, + 59522368, + 59518624, + 59519376, + 59518192, + 59518944, + 59518224 ], "bases": [ { @@ -432460,10 +432460,10 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 64584424, + "vtable_address": 64588328, "methods": [ - 27287856, - 27287904 + 27291024, + 27291072 ], "bases": [ { @@ -432485,10 +432485,10 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 64583952, + "vtable_address": 64587856, "methods": [ - 27287600, - 27287648 + 27290768, + 27290816 ], "bases": [ { @@ -432510,10 +432510,10 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 64603592, + "vtable_address": 64607496, "methods": [ - 28161200, - 28161248 + 28164464, + 28164512 ], "bases": [ { @@ -432535,10 +432535,10 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 64603560, + "vtable_address": 64607464, "methods": [ - 28161072, - 28161120 + 28164336, + 28164384 ], "bases": [ { @@ -432560,10 +432560,10 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 64584456, + "vtable_address": 64588360, "methods": [ - 27287984, - 27288032 + 27291152, + 27291200 ], "bases": [ { @@ -432585,10 +432585,10 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 64584136, + "vtable_address": 64588040, "methods": [ - 27287728, - 27287776 + 27290896, + 27290944 ], "bases": [ { @@ -432610,10 +432610,10 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 64603200, + "vtable_address": 64607104, "methods": [ - 27287472, - 27287520 + 27290640, + 27290688 ], "bases": [ { @@ -432635,14 +432635,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscribedJob", - "vtable_address": 64947472, + "vtable_address": 64951376, "methods": [ - 59399360, - 59399376, + 59403264, + 59403280, 12404704, 12404288, 12399472, - 59434672, + 59438576, 12399456 ], "bases": [ @@ -432676,14 +432676,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscriptionCheck", - "vtable_address": 64947696, + "vtable_address": 64951600, "methods": [ - 59399488, - 59399504, + 59403392, + 59403408, 12404704, 12404288, 12399472, - 59433648, + 59437552, 12399456 ], "bases": [ @@ -432717,14 +432717,14 @@ }, { "type_name": "GCSDK::CGCSOCacheUnsubscribedJob", - "vtable_address": 64947584, + "vtable_address": 64951488, "methods": [ - 59399424, - 59399440, + 59403328, + 59403344, 12404704, 12404288, 12399472, - 59434128, + 59438032, 12399456 ], "bases": [ @@ -432758,14 +432758,14 @@ }, { "type_name": "GCSDK::CGCSOCreateJob", - "vtable_address": 64947104, + "vtable_address": 64951008, "methods": [ - 59399104, - 59399120, + 59403008, + 59403024, 12404704, 12404288, 12399472, - 59433040, + 59436944, 12399456 ], "bases": [ @@ -432799,14 +432799,14 @@ }, { "type_name": "GCSDK::CGCSODestroyJob", - "vtable_address": 64947216, + "vtable_address": 64951120, "methods": [ - 59399168, - 59399184, + 59403072, + 59403088, 12404704, 12404288, 12399472, - 59432432, + 59436336, 12399456 ], "bases": [ @@ -432840,14 +432840,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateJob", - "vtable_address": 64947288, + "vtable_address": 64951192, "methods": [ - 59399232, - 59399248, + 59403136, + 59403152, 12404704, 12404288, 12399472, - 59431824, + 59435728, 12399456 ], "bases": [ @@ -432881,14 +432881,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateMultipleJob", - "vtable_address": 64947360, + "vtable_address": 64951264, "methods": [ - 59399296, - 59399312, + 59403200, + 59403216, 12404704, 12404288, 12399472, - 59435152, + 59439056, 12399456 ], "bases": [ @@ -432922,13 +432922,13 @@ }, { "type_name": "GCSDK::CJob", - "vtable_address": 64948992, + "vtable_address": 64952896, "methods": [ - 59443824, - 59444272, - 59438768, - 59438784, - 59438800 + 59447728, + 59448176, + 59442672, + 59442688, + 59442704 ], "bases": [], "model": { @@ -432939,10 +432939,10 @@ }, { "type_name": "GCSDK::CMsgBase_t", - "vtable_address": 64519960, + "vtable_address": 64523864, "methods": [ - 25479232, - 25479280 + 25482240, + 25482288 ], "bases": [], "model": { @@ -432953,9 +432953,9 @@ }, { "type_name": "GCSDK::CProtoBufGCClientSendHandler", - "vtable_address": 64946960, + "vtable_address": 64950864, "methods": [ - 59405600 + 59409504 ], "bases": [ { @@ -432977,11 +432977,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537728, + "vtable_address": 64541632, "methods": [ - 26412800, - 26454496, - 26410688 + 26415808, + 26457504, + 26413696 ], "bases": [ { @@ -433003,11 +433003,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537056, + "vtable_address": 64540960, "methods": [ - 26412416, - 26454256, - 26410784 + 26415424, + 26457264, + 26413792 ], "bases": [ { @@ -433029,271 +433029,271 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537168, + "vtable_address": 64541072, "methods": [ - 26412480, - 26454336, - 26410768 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524784, - "methods": [ - 25463888, - 25502336, - 25452112 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523632, - "methods": [ - 25463568, - 25499072, - 25452512 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64584168, - "methods": [ - 27285680, - 27304416, - 27282352 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64593496, - "methods": [ - 28026448, - 28033200, - 28025664 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523136, - "methods": [ - 25463120, - 25498672, - 25452624 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523176, - "methods": [ - 25463184, - 25499904, - 25452608 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64600400, - "methods": [ - 28026576, - 28033360, - 28025632 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64572672, - "methods": [ - 27285040, - 27303168, - 27283088 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64946984, - "methods": [ - 59397056, - 59400544, - 59396528 - ], - "bases": [ - { - "type_name": "GCSDK::CProtoBufMsgBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64260848, - "methods": [ - 22443120, - 22452832, - 22439984 + 26415488, + 26457344, + 26413776 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64528688, + "methods": [ + 25466896, + 25505344, + 25455120 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64527536, + "methods": [ + 25466576, + 25502080, + 25455520 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64588072, + "methods": [ + 27288848, + 27307584, + 27285520 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64597400, + "methods": [ + 28029712, + 28036464, + 28028928 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64527040, + "methods": [ + 25466128, + 25501680, + 25455632 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64527080, + "methods": [ + 25466192, + 25502912, + 25455616 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64604304, + "methods": [ + 28029840, + 28036624, + 28028896 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64576576, + "methods": [ + 27288208, + 27306336, + 27286256 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64950888, + "methods": [ + 59400960, + 59404448, + 59400432 + ], + "bases": [ + { + "type_name": "GCSDK::CProtoBufMsgBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "GCSDK::CProtoBufMsg", + "vtable_address": 64264752, + "methods": [ + 22445936, + 22455648, + 22442800 ], "bases": [ { @@ -433315,11 +433315,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64180344, + "vtable_address": 64184248, "methods": [ - 21336512, - 21350880, - 21329440 + 21339328, + 21353696, + 21332256 ], "bases": [ { @@ -433341,11 +433341,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537840, + "vtable_address": 64541744, "methods": [ - 26412864, - 26454576, - 26410672 + 26415872, + 26457584, + 26413680 ], "bases": [ { @@ -433367,11 +433367,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64540128, + "vtable_address": 64544032, "methods": [ - 26413888, - 26457616, - 26409936 + 26416896, + 26460624, + 26412944 ], "bases": [ { @@ -433393,11 +433393,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64350696, + "vtable_address": 64354600, "methods": [ - 22928704, - 22946592, - 22919632 + 22931520, + 22949408, + 22922448 ], "bases": [ { @@ -433419,11 +433419,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523672, + "vtable_address": 64527576, "methods": [ - 25463632, - 25499152, - 25452496 + 25466640, + 25502160, + 25455504 ], "bases": [ { @@ -433445,11 +433445,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523784, + "vtable_address": 64527688, "methods": [ - 25463696, - 25499232, - 25452480 + 25466704, + 25502240, + 25455488 ], "bases": [ { @@ -433471,11 +433471,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523520, + "vtable_address": 64527424, "methods": [ - 25463504, - 25501472, - 25452528 + 25466512, + 25504480, + 25455536 ], "bases": [ { @@ -433497,11 +433497,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538056, + "vtable_address": 64541960, "methods": [ - 26412992, - 26457296, - 26410624 + 26416000, + 26460304, + 26413632 ], "bases": [ { @@ -433523,11 +433523,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64539744, + "vtable_address": 64543648, "methods": [ - 26413760, - 26455136, - 26410128 + 26416768, + 26458144, + 26413136 ], "bases": [ { @@ -433549,11 +433549,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64539704, + "vtable_address": 64543608, "methods": [ - 26413696, - 26457536, - 26410144 + 26416704, + 26460544, + 26413152 ], "bases": [ { @@ -433575,11 +433575,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537504, + "vtable_address": 64541408, "methods": [ - 26412672, - 26457136, - 26410720 + 26415680, + 26460144, + 26413728 ], "bases": [ { @@ -433601,11 +433601,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64521920, + "vtable_address": 64525824, "methods": [ - 25462992, - 25501392, - 25452736 + 25466000, + 25504400, + 25455744 ], "bases": [ { @@ -433627,11 +433627,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537208, + "vtable_address": 64541112, "methods": [ - 26412544, - 26458320, - 26410752 + 26415552, + 26461328, + 26413760 ], "bases": [ { @@ -433653,11 +433653,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537016, + "vtable_address": 64540920, "methods": [ - 26412352, - 26454176, - 26410800 + 26415360, + 26457184, + 26413808 ], "bases": [ { @@ -433679,11 +433679,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524304, + "vtable_address": 64528208, "methods": [ - 25463824, - 25499984, - 25452208 + 25466832, + 25502992, + 25455216 ], "bases": [ { @@ -433705,11 +433705,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64521384, + "vtable_address": 64525288, "methods": [ - 25462800, - 25501312, - 25452944 + 25465808, + 25504320, + 25455952 ], "bases": [ { @@ -433731,11 +433731,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64351184, + "vtable_address": 64355088, "methods": [ - 22929024, - 22946832, - 22919552 + 22931840, + 22949648, + 22922368 ], "bases": [ { @@ -433757,11 +433757,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64346528, + "vtable_address": 64350432, "methods": [ - 22928640, - 22951760, - 22920048 + 22931456, + 22954576, + 22922864 ], "bases": [ { @@ -433783,11 +433783,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537688, + "vtable_address": 64541592, "methods": [ - 26412736, - 26458400, - 26410704 + 26415744, + 26461408, + 26413712 ], "bases": [ { @@ -433809,11 +433809,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64521768, + "vtable_address": 64525672, "methods": [ - 25462864, - 25498432, - 25452768 + 25465872, + 25501440, + 25455776 ], "bases": [ { @@ -433835,11 +433835,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64522032, + "vtable_address": 64525936, "methods": [ - 25463056, - 25498592, - 25452720 + 25466064, + 25501600, + 25455728 ], "bases": [ { @@ -433861,11 +433861,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64521808, + "vtable_address": 64525712, "methods": [ - 25462928, - 25498512, - 25452752 + 25465936, + 25501520, + 25455760 ], "bases": [ { @@ -433887,11 +433887,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64373776, + "vtable_address": 64377680, "methods": [ - 23499344, - 23502048, - 23498368 + 23502096, + 23504800, + 23501120 ], "bases": [ { @@ -433913,11 +433913,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64373888, + "vtable_address": 64377792, "methods": [ - 23499408, - 23502128, - 23498352 + 23502160, + 23504880, + 23501104 ], "bases": [ { @@ -433939,11 +433939,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64521232, + "vtable_address": 64525136, "methods": [ - 25462672, - 25498272, - 25452976 + 25465680, + 25501280, + 25455984 ], "bases": [ { @@ -433965,11 +433965,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524928, + "vtable_address": 64528832, "methods": [ - 25464016, - 25499392, - 25452064 + 25467024, + 25502400, + 25455072 ], "bases": [ { @@ -433991,11 +433991,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64520920, + "vtable_address": 64524824, "methods": [ - 25464528, - 25497520, - 25453024 + 25467536, + 25500528, + 25456032 ], "bases": [ { @@ -434017,11 +434017,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538208, + "vtable_address": 64542112, "methods": [ - 26413120, - 26454736, - 26410592 + 26416128, + 26457744, + 26413600 ], "bases": [ { @@ -434043,11 +434043,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524608, + "vtable_address": 64528512, "methods": [ - 25464464, - 25497440, - 25452144 + 25467472, + 25500448, + 25455152 ], "bases": [ { @@ -434069,11 +434069,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64346488, + "vtable_address": 64350392, "methods": [ - 22928576, - 22946512, - 22920064 + 22931392, + 22949328, + 22922880 ], "bases": [ { @@ -434095,11 +434095,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538168, + "vtable_address": 64542072, "methods": [ - 26413056, - 26454656, - 26410608 + 26416064, + 26457664, + 26413616 ], "bases": [ { @@ -434121,11 +434121,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64350776, + "vtable_address": 64354680, "methods": [ - 22929344, - 22947232, - 22919600 + 22932160, + 22950048, + 22922416 ], "bases": [ { @@ -434147,11 +434147,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64540304, + "vtable_address": 64544208, "methods": [ - 26413952, - 26455296, - 26409904 + 26416960, + 26458304, + 26412912 ], "bases": [ { @@ -434173,11 +434173,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64540416, + "vtable_address": 64544320, "methods": [ - 26414016, - 26455376, - 26409888 + 26417024, + 26458384, + 26412896 ], "bases": [ { @@ -434199,11 +434199,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524488, + "vtable_address": 64528392, "methods": [ - 25464080, - 25497200, - 25452192 + 25467088, + 25500208, + 25455200 ], "bases": [ { @@ -434225,11 +434225,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64525088, + "vtable_address": 64528992, "methods": [ - 25464144, - 25499472, - 25452032 + 25467152, + 25502480, + 25455040 ], "bases": [ { @@ -434251,11 +434251,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524888, + "vtable_address": 64528792, "methods": [ - 25463952, - 25500064, - 25452080 + 25466960, + 25503072, + 25455088 ], "bases": [ { @@ -434277,11 +434277,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64525184, + "vtable_address": 64529088, "methods": [ - 25464208, - 25499552, - 25452016 + 25467216, + 25502560, + 25455024 ], "bases": [ { @@ -434303,11 +434303,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64525280, + "vtable_address": 64529184, "methods": [ - 25464272, - 25499632, - 25452000 + 25467280, + 25502640, + 25455008 ], "bases": [ { @@ -434329,11 +434329,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524528, + "vtable_address": 64528432, "methods": [ - 25464336, - 25497280, - 25452176 + 25467344, + 25500288, + 25455184 ], "bases": [ { @@ -434355,11 +434355,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64344736, + "vtable_address": 64348640, "methods": [ - 22928960, - 22951920, - 22920592 + 22931776, + 22954736, + 22923408 ], "bases": [ { @@ -434381,11 +434381,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64351632, + "vtable_address": 64355536, "methods": [ - 22929280, - 22947152, - 22919488 + 22932096, + 22949968, + 22922304 ], "bases": [ { @@ -434407,11 +434407,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64350888, + "vtable_address": 64354792, "methods": [ - 22928832, - 22946672, - 22919584 + 22931648, + 22949488, + 22922400 ], "bases": [ { @@ -434433,11 +434433,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64351520, + "vtable_address": 64355424, "methods": [ - 22929216, - 22947072, - 22919504 + 22932032, + 22949888, + 22922320 ], "bases": [ { @@ -434459,11 +434459,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64351408, + "vtable_address": 64355312, "methods": [ - 22929152, - 22946992, - 22919520 + 22931968, + 22949808, + 22922336 ], "bases": [ { @@ -434485,11 +434485,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64351000, + "vtable_address": 64354904, "methods": [ - 22928896, - 22946752, - 22919568 + 22931712, + 22949568, + 22922384 ], "bases": [ { @@ -434511,11 +434511,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64351784, + "vtable_address": 64355688, "methods": [ - 22929408, - 22951840, - 22919472 + 22932224, + 22954656, + 22922288 ], "bases": [ { @@ -434537,11 +434537,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64350736, + "vtable_address": 64354640, "methods": [ - 22928768, - 22952944, - 22919616 + 22931584, + 22955760, + 22922432 ], "bases": [ { @@ -434563,11 +434563,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64539040, + "vtable_address": 64542944, "methods": [ - 26413504, - 26455056, - 26410304 + 26416512, + 26458064, + 26413312 ], "bases": [ { @@ -434589,11 +434589,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64536696, + "vtable_address": 64540600, "methods": [ - 26413568, - 26457920, - 26410848 + 26416576, + 26460928, + 26413856 ], "bases": [ { @@ -434615,11 +434615,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538816, + "vtable_address": 64542720, "methods": [ - 26413376, - 26454976, - 26410336 + 26416384, + 26457984, + 26413344 ], "bases": [ { @@ -434641,11 +434641,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538928, + "vtable_address": 64542832, "methods": [ - 26413440, - 26457376, - 26410320 + 26416448, + 26460384, + 26413328 ], "bases": [ { @@ -434667,11 +434667,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538568, + "vtable_address": 64542472, "methods": [ - 26413312, - 26454896, - 26410448 + 26416320, + 26457904, + 26413456 ], "bases": [ { @@ -434693,11 +434693,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538456, + "vtable_address": 64542360, "methods": [ - 26413248, - 26454816, - 26410464 + 26416256, + 26457824, + 26413472 ], "bases": [ { @@ -434719,11 +434719,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64538416, + "vtable_address": 64542320, "methods": [ - 26413184, - 26458480, - 26410480 + 26416192, + 26461488, + 26413488 ], "bases": [ { @@ -434745,11 +434745,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64521344, + "vtable_address": 64525248, "methods": [ - 25462736, - 25498352, - 25452960 + 25465744, + 25501360, + 25455968 ], "bases": [ { @@ -434771,11 +434771,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524568, + "vtable_address": 64528472, "methods": [ - 25464400, - 25497360, - 25452160 + 25467408, + 25500368, + 25455168 ], "bases": [ { @@ -434797,11 +434797,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64540496, + "vtable_address": 64544400, "methods": [ - 26414144, - 26455456, - 26409856 + 26417152, + 26458464, + 26412864 ], "bases": [ { @@ -434823,11 +434823,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64540456, + "vtable_address": 64544360, "methods": [ - 26414080, - 26457696, - 26409872 + 26417088, + 26460704, + 26412880 ], "bases": [ { @@ -434849,11 +434849,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64524040, + "vtable_address": 64527944, "methods": [ - 25463760, - 25499312, - 25452256 + 25466768, + 25502320, + 25455264 ], "bases": [ { @@ -434875,11 +434875,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64521032, + "vtable_address": 64524936, "methods": [ - 25462608, - 25498192, - 25453008 + 25465616, + 25501200, + 25456016 ], "bases": [ { @@ -434901,11 +434901,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64539592, + "vtable_address": 64543496, "methods": [ - 26413632, - 26457456, - 26410160 + 26416640, + 26460464, + 26413168 ], "bases": [ { @@ -434927,11 +434927,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64536416, + "vtable_address": 64540320, "methods": [ - 26412224, - 26454016, - 26410960 + 26415232, + 26457024, + 26413968 ], "bases": [ { @@ -434953,11 +434953,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64541664, + "vtable_address": 64545568, "methods": [ - 26414208, - 26457776, - 26409680 + 26417216, + 26460784, + 26412688 ], "bases": [ { @@ -434979,11 +434979,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537464, + "vtable_address": 64541368, "methods": [ - 26412608, - 26454416, - 26410736 + 26415616, + 26457424, + 26413744 ], "bases": [ { @@ -435005,11 +435005,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64537880, + "vtable_address": 64541784, "methods": [ - 26412928, - 26457216, - 26410656 + 26415936, + 26460224, + 26413664 ], "bases": [ { @@ -435031,11 +435031,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523408, + "vtable_address": 64527312, "methods": [ - 25463440, - 25498992, - 25452544 + 25466448, + 25502000, + 25455552 ], "bases": [ { @@ -435057,11 +435057,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64572976, + "vtable_address": 64576880, "methods": [ - 27285296, - 27303488, - 27283024 + 27288464, + 27306656, + 27286192 ], "bases": [ { @@ -435083,11 +435083,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64573016, + "vtable_address": 64576920, "methods": [ - 27285360, - 27303568, - 27283008 + 27288528, + 27306736, + 27286176 ], "bases": [ { @@ -435109,11 +435109,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64572824, + "vtable_address": 64576728, "methods": [ - 27285168, - 27303328, - 27283056 + 27288336, + 27306496, + 27286224 ], "bases": [ { @@ -435135,11 +435135,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64572864, + "vtable_address": 64576768, "methods": [ - 27285232, - 27303408, - 27283040 + 27288400, + 27306576, + 27286208 ], "bases": [ { @@ -435161,11 +435161,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64572784, + "vtable_address": 64576688, "methods": [ - 27285104, - 27303248, - 27283072 + 27288272, + 27306416, + 27286240 ], "bases": [ { @@ -435187,11 +435187,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64536904, + "vtable_address": 64540808, "methods": [ - 26412288, - 26454096, - 26410816 + 26415296, + 26457104, + 26413824 ], "bases": [ { @@ -435213,11 +435213,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64572632, + "vtable_address": 64576536, "methods": [ - 27284976, - 27303088, - 27283104 + 27288144, + 27306256, + 27286272 ], "bases": [ { @@ -435239,11 +435239,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523256, + "vtable_address": 64527160, "methods": [ - 25463312, - 25498832, - 25452576 + 25466320, + 25501840, + 25455584 ], "bases": [ { @@ -435265,11 +435265,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523216, + "vtable_address": 64527120, "methods": [ - 25463248, - 25498752, - 25452592 + 25466256, + 25501760, + 25455600 ], "bases": [ { @@ -435291,11 +435291,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64594096, + "vtable_address": 64598000, "methods": [ - 28026512, - 28033280, - 28025648 + 28029776, + 28036544, + 28028912 ], "bases": [ { @@ -435317,11 +435317,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64536376, + "vtable_address": 64540280, "methods": [ - 26412160, - 26453936, - 26410976 + 26415168, + 26456944, + 26413984 ], "bases": [ { @@ -435343,11 +435343,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64947544, + "vtable_address": 64951448, "methods": [ - 59397376, - 59400864, - 59396448 + 59401280, + 59404768, + 59400352 ], "bases": [ { @@ -435369,11 +435369,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64947768, + "vtable_address": 64951672, "methods": [ - 59397504, - 59401024, - 59396416 + 59401408, + 59404928, + 59400320 ], "bases": [ { @@ -435395,11 +435395,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64947064, + "vtable_address": 64950968, "methods": [ - 59397184, - 59400704, - 59396496 + 59401088, + 59404608, + 59400400 ], "bases": [ { @@ -435421,11 +435421,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64947656, + "vtable_address": 64951560, "methods": [ - 59397440, - 59400944, - 59396432 + 59401344, + 59404848, + 59400336 ], "bases": [ { @@ -435447,11 +435447,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64947432, + "vtable_address": 64951336, "methods": [ - 59397312, - 59400784, - 59396464 + 59401216, + 59404688, + 59400368 ], "bases": [ { @@ -435473,11 +435473,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64947176, + "vtable_address": 64951080, "methods": [ - 59397248, - 59401104, - 59396480 + 59401152, + 59405008, + 59400384 ], "bases": [ { @@ -435499,11 +435499,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64947024, + "vtable_address": 64950928, "methods": [ - 59397120, - 59400624, - 59396512 + 59401024, + 59404528, + 59400416 ], "bases": [ { @@ -435525,11 +435525,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64584096, + "vtable_address": 64588000, "methods": [ - 27285616, - 27303808, - 27282368 + 27288784, + 27306976, + 27285536 ], "bases": [ { @@ -435551,11 +435551,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64583984, + "vtable_address": 64587888, "methods": [ - 27285552, - 27303728, - 27282384 + 27288720, + 27306896, + 27285552 ], "bases": [ { @@ -435577,11 +435577,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64539784, + "vtable_address": 64543688, "methods": [ - 26413824, - 26455216, - 26410112 + 26416832, + 26458224, + 26413120 ], "bases": [ { @@ -435603,11 +435603,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64573128, + "vtable_address": 64577032, "methods": [ - 27285424, - 27303648, - 27282992 + 27288592, + 27306816, + 27286160 ], "bases": [ { @@ -435629,11 +435629,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64574472, + "vtable_address": 64578376, "methods": [ - 27285488, - 27305920, - 27282976 + 27288656, + 27309088, + 27286144 ], "bases": [ { @@ -435655,11 +435655,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64523296, + "vtable_address": 64527200, "methods": [ - 25463376, - 25498912, - 25452560 + 25466384, + 25501920, + 25455568 ], "bases": [ { @@ -435681,11 +435681,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 64351296, + "vtable_address": 64355200, "methods": [ - 22929088, - 22946912, - 22919536 + 22931904, + 22949728, + 22922352 ], "bases": [ { @@ -435707,7 +435707,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgBase", - "vtable_address": 64949488, + "vtable_address": 64953392, "methods": [], "bases": [], "model": { @@ -435718,13 +435718,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542944, + "vtable_address": 64546848, "methods": [ - 26417152, - 26463824, - 26509904, - 26432160, - 26408800 + 26420160, + 26466832, + 26512912, + 26435168, + 26411808 ], "bases": [ { @@ -435746,13 +435746,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542608, + "vtable_address": 64546512, "methods": [ - 26417920, - 26464688, - 26509040, - 26429808, - 26409184 + 26420928, + 26467696, + 26512048, + 26432816, + 26412192 ], "bases": [ { @@ -435774,13 +435774,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542664, + "vtable_address": 64546568, "methods": [ - 26417792, - 26464544, - 26509184, - 26429872, - 26409120 + 26420800, + 26467552, + 26512192, + 26432880, + 26412128 ], "bases": [ { @@ -435802,13 +435802,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527664, + "vtable_address": 64531568, "methods": [ - 25465744, - 25504832, - 25565872, - 25482128, - 25450512 + 25468752, + 25507840, + 25568880, + 25485136, + 25453520 ], "bases": [ { @@ -435830,13 +435830,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527328, + "vtable_address": 64531232, "methods": [ - 25466384, - 25505552, - 25565152, - 25480624, - 25450848 + 25469392, + 25508560, + 25568160, + 25483632, + 25453856 ], "bases": [ { @@ -435858,13 +435858,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64587144, + "vtable_address": 64591048, "methods": [ - 27285808, - 27306800, - 27326400, - 27287408, - 27281392 + 27288976, + 27309968, + 27329568, + 27290576, + 27284560 ], "bases": [ { @@ -435886,13 +435886,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64600792, + "vtable_address": 64604696, "methods": [ - 28026896, - 28035376, - 28037568, - 28027056, - 28025568 + 28030160, + 28038640, + 28040832, + 28030320, + 28028832 ], "bases": [ { @@ -435914,13 +435914,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526880, + "vtable_address": 64530784, "methods": [ - 25467280, - 25506560, - 25564144, - 25478272, - 25451296 + 25470288, + 25509568, + 25567152, + 25481280, + 25454304 ], "bases": [ { @@ -435942,13 +435942,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526936, + "vtable_address": 64530840, "methods": [ - 25467152, - 25506416, - 25564288, - 25478768, - 25451232 + 25470160, + 25509424, + 25567296, + 25481776, + 25454240 ], "bases": [ { @@ -435970,13 +435970,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64600904, + "vtable_address": 64604808, "methods": [ - 28026640, - 28035088, - 28037856, - 28029984, - 28025440 + 28029904, + 28038352, + 28041120, + 28033248, + 28028704 ], "bases": [ { @@ -435998,13 +435998,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586584, + "vtable_address": 64590488, "methods": [ - 27287088, - 27308240, - 27326256, - 27287344, - 27282032 + 27290256, + 27311408, + 27329424, + 27290512, + 27285200 ], "bases": [ { @@ -436026,13 +436026,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64947808, + "vtable_address": 64951712, "methods": [ - 59398464, - 59402192, - 59402336, - 59398592, - 59396352 + 59402368, + 59406096, + 59406240, + 59402496, + 59400256 ], "bases": [ { @@ -436054,13 +436054,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64274808, + "vtable_address": 64278712, "methods": [ - 22443248, - 22457456, - 22486784, - 22443184, - 22439424 + 22446064, + 22460272, + 22489600, + 22446000, + 22442240 ], "bases": [ { @@ -436082,13 +436082,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64181952, + "vtable_address": 64185856, "methods": [ - 21336640, - 21356304, - 21378592, - 21336576, - 21329008 + 21339456, + 21359120, + 21381408, + 21339392, + 21331824 ], "bases": [ { @@ -436110,13 +436110,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543000, + "vtable_address": 64546904, "methods": [ - 26417024, - 26463680, - 26510048, - 26432224, - 26408736 + 26420032, + 26466688, + 26513056, + 26435232, + 26411744 ], "bases": [ { @@ -436138,13 +436138,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543952, + "vtable_address": 64547856, "methods": [ - 26415104, - 26461520, - 26512208, - 26435136, - 26407712 + 26418112, + 26464528, + 26515216, + 26438144, + 26410720 ], "bases": [ { @@ -436166,13 +436166,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352232, + "vtable_address": 64356136, "methods": [ - 22930944, - 22955984, - 22972864, - 22934304, - 22919232 + 22933760, + 22958800, + 22975680, + 22937120, + 22922048 ], "bases": [ { @@ -436194,13 +436194,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527384, + "vtable_address": 64531288, "methods": [ - 25466256, - 25505408, - 25565296, - 25480688, - 25450784 + 25469264, + 25508416, + 25568304, + 25483696, + 25453792 ], "bases": [ { @@ -436222,13 +436222,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527440, + "vtable_address": 64531344, "methods": [ - 25466128, - 25505264, - 25565440, - 25480752, - 25450720 + 25469136, + 25508272, + 25568448, + 25483760, + 25453728 ], "bases": [ { @@ -436250,13 +436250,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527216, + "vtable_address": 64531120, "methods": [ - 25466512, - 25505696, - 25565008, - 25479760, - 25450912 + 25469520, + 25508704, + 25568016, + 25482768, + 25453920 ], "bases": [ { @@ -436278,13 +436278,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543112, + "vtable_address": 64547016, "methods": [ - 26416768, - 26463392, - 26513072, - 26436224, - 26408608 + 26419776, + 26466400, + 26516080, + 26439232, + 26411616 ], "bases": [ { @@ -436306,13 +436306,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543840, + "vtable_address": 64547744, "methods": [ - 26415360, - 26461808, - 26511920, - 26435008, - 26407840 + 26418368, + 26464816, + 26514928, + 26438016, + 26410848 ], "bases": [ { @@ -436334,13 +436334,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543784, + "vtable_address": 64547688, "methods": [ - 26415488, - 26461952, - 26511776, - 26434944, - 26407904 + 26418496, + 26464960, + 26514784, + 26437952, + 26410912 ], "bases": [ { @@ -436362,13 +436362,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542832, + "vtable_address": 64546736, "methods": [ - 26417408, - 26464112, - 26509616, - 26431744, - 26408928 + 26420416, + 26467120, + 26512624, + 26434752, + 26411936 ], "bases": [ { @@ -436390,13 +436390,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526656, + "vtable_address": 64530560, "methods": [ - 25467536, - 25506848, - 25563856, - 25475952, - 25451440 + 25470544, + 25509856, + 25566864, + 25478960, + 25454448 ], "bases": [ { @@ -436418,13 +436418,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542720, + "vtable_address": 64546624, "methods": [ - 26417664, - 26464400, - 26509328, - 26429936, - 26409056 + 26420672, + 26467408, + 26512336, + 26432944, + 26412064 ], "bases": [ { @@ -436446,13 +436446,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542552, + "vtable_address": 64546456, "methods": [ - 26418048, - 26464832, - 26508896, - 26426320, - 26409248 + 26421056, + 26467840, + 26511904, + 26429328, + 26412256 ], "bases": [ { @@ -436474,13 +436474,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527608, + "vtable_address": 64531512, "methods": [ - 25465872, - 25504976, - 25565728, - 25482064, - 25450576 + 25468880, + 25507984, + 25568736, + 25485072, + 25453584 ], "bases": [ { @@ -436502,13 +436502,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526376, + "vtable_address": 64530280, "methods": [ - 25467920, - 25507280, - 25563424, - 25472576, - 25451664 + 25470928, + 25510288, + 25566432, + 25475584, + 25454672 ], "bases": [ { @@ -436530,13 +436530,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352512, + "vtable_address": 64356416, "methods": [ - 22930304, - 22955264, - 22973584, - 22934624, - 22918912 + 22933120, + 22958080, + 22976400, + 22937440, + 22921728 ], "bases": [ { @@ -436558,13 +436558,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352064, + "vtable_address": 64355968, "methods": [ - 22931072, - 22956128, - 22972720, - 22933264, - 22919312 + 22933888, + 22958944, + 22975536, + 22936080, + 22922128 ], "bases": [ { @@ -436586,13 +436586,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542888, + "vtable_address": 64546792, "methods": [ - 26417280, - 26463968, - 26509760, - 26432080, - 26408864 + 26420288, + 26466976, + 26512768, + 26435088, + 26411872 ], "bases": [ { @@ -436614,13 +436614,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526544, + "vtable_address": 64530448, "methods": [ - 25467792, - 25507136, - 25563568, - 25475824, - 25451568 + 25470800, + 25510144, + 25566576, + 25478832, + 25454576 ], "bases": [ { @@ -436642,13 +436642,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526712, + "vtable_address": 64530616, "methods": [ - 25467408, - 25506704, - 25564000, - 25476128, - 25451376 + 25470416, + 25509712, + 25567008, + 25479136, + 25454384 ], "bases": [ { @@ -436670,13 +436670,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526600, + "vtable_address": 64530504, "methods": [ - 25467664, - 25506992, - 25563712, - 25475888, - 25451504 + 25470672, + 25510000, + 25566720, + 25478896, + 25454512 ], "bases": [ { @@ -436698,13 +436698,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64374040, + "vtable_address": 64377944, "methods": [ - 23499664, - 23502928, - 23503072, - 23499472, - 23498288 + 23502416, + 23505680, + 23505824, + 23502224, + 23501040 ], "bases": [ { @@ -436726,13 +436726,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64374096, + "vtable_address": 64378000, "methods": [ - 23499536, - 23502784, - 23500832, - 23500144, - 23498224 + 23502288, + 23505536, + 23503584, + 23502896, + 23500976 ], "bases": [ { @@ -436754,13 +436754,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526264, + "vtable_address": 64530168, "methods": [ - 25468176, - 25507568, - 25562992, - 25472384, - 25451792 + 25471184, + 25510576, + 25566000, + 25475392, + 25454800 ], "bases": [ { @@ -436782,13 +436782,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527832, + "vtable_address": 64531736, "methods": [ - 25465488, - 25504544, - 25566016, - 25482384, - 25450384 + 25468496, + 25507552, + 25569024, + 25485392, + 25453392 ], "bases": [ { @@ -436810,13 +436810,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526152, + "vtable_address": 64530056, "methods": [ - 25468432, - 25507856, - 25563280, - 25472512, - 25451920 + 25471440, + 25510864, + 25566288, + 25475520, + 25454928 ], "bases": [ { @@ -436838,13 +436838,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543224, + "vtable_address": 64547128, "methods": [ - 26416512, - 26463104, - 26510480, - 26432416, - 26408480 + 26419520, + 26466112, + 26513488, + 26435424, + 26411488 ], "bases": [ { @@ -436866,13 +436866,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64528224, + "vtable_address": 64532128, "methods": [ - 25464592, - 25503536, - 25567024, - 25483024, - 25449936 + 25467600, + 25506544, + 25570032, + 25486032, + 25452944 ], "bases": [ { @@ -436894,13 +436894,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352008, + "vtable_address": 64355912, "methods": [ - 22931200, - 22956272, - 22972576, - 22929472, - 22919376 + 22934016, + 22959088, + 22975392, + 22932288, + 22922192 ], "bases": [ { @@ -436922,13 +436922,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543168, + "vtable_address": 64547072, "methods": [ - 26416640, - 26463248, - 26510336, - 26432352, - 26408544 + 26419648, + 26466256, + 26513344, + 26435360, + 26411552 ], "bases": [ { @@ -436950,13 +436950,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352792, + "vtable_address": 64356696, "methods": [ - 22929664, - 22954544, - 22974304, - 22934944, - 22918592 + 22932480, + 22957360, + 22977120, + 22937760, + 22921408 ], "bases": [ { @@ -436978,13 +436978,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64544008, + "vtable_address": 64547912, "methods": [ - 26414976, - 26461376, - 26512352, - 26435200, - 26407648 + 26417984, + 26464384, + 26515360, + 26438208, + 26410656 ], "bases": [ { @@ -437006,13 +437006,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64544064, + "vtable_address": 64547968, "methods": [ - 26414848, - 26461232, - 26512496, - 26435264, - 26407584 + 26417856, + 26464240, + 26515504, + 26438272, + 26410592 ], "bases": [ { @@ -437034,13 +437034,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527888, + "vtable_address": 64531792, "methods": [ - 25465360, - 25504400, - 25566592, - 25482832, - 25450320 + 25468368, + 25507408, + 25569600, + 25485840, + 25453328 ], "bases": [ { @@ -437062,13 +437062,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527944, + "vtable_address": 64531848, "methods": [ - 25465232, - 25504256, - 25566160, - 25482640, - 25450256 + 25468240, + 25507264, + 25569168, + 25485648, + 25453264 ], "bases": [ { @@ -437090,13 +437090,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527776, + "vtable_address": 64531680, "methods": [ - 25465616, - 25504688, - 25566736, - 25482896, - 25450448 + 25468624, + 25507696, + 25569744, + 25485904, + 25453456 ], "bases": [ { @@ -437118,13 +437118,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64528000, + "vtable_address": 64531904, "methods": [ - 25465104, - 25504112, - 25566304, - 25482704, - 25450192 + 25468112, + 25507120, + 25569312, + 25485712, + 25453200 ], "bases": [ { @@ -437146,13 +437146,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64528056, + "vtable_address": 64531960, "methods": [ - 25464976, - 25503968, - 25566448, - 25482768, - 25450128 + 25467984, + 25506976, + 25569456, + 25485776, + 25453136 ], "bases": [ { @@ -437174,13 +437174,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64528112, + "vtable_address": 64532016, "methods": [ - 25464848, - 25503824, - 25567168, - 25483088, - 25450064 + 25467856, + 25506832, + 25570176, + 25486096, + 25453072 ], "bases": [ { @@ -437202,13 +437202,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352456, + "vtable_address": 64356360, "methods": [ - 22930432, - 22955408, - 22973440, - 22934560, - 22918976 + 22933248, + 22958224, + 22976256, + 22937376, + 22921792 ], "bases": [ { @@ -437230,13 +437230,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352736, + "vtable_address": 64356640, "methods": [ - 22929792, - 22954688, - 22974160, - 22934880, - 22918656 + 22932608, + 22957504, + 22976976, + 22937696, + 22921472 ], "bases": [ { @@ -437258,13 +437258,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352344, + "vtable_address": 64356248, "methods": [ - 22930688, - 22955696, - 22973152, - 22934432, - 22919104 + 22933504, + 22958512, + 22975968, + 22937248, + 22921920 ], "bases": [ { @@ -437286,13 +437286,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352680, + "vtable_address": 64356584, "methods": [ - 22929920, - 22954832, - 22974016, - 22934816, - 22918720 + 22932736, + 22957648, + 22976832, + 22937632, + 22921536 ], "bases": [ { @@ -437314,13 +437314,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352624, + "vtable_address": 64356528, "methods": [ - 22930048, - 22954976, - 22973872, - 22934752, - 22918784 + 22932864, + 22957792, + 22976688, + 22937568, + 22921600 ], "bases": [ { @@ -437342,13 +437342,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352400, + "vtable_address": 64356304, "methods": [ - 22930560, - 22955552, - 22973296, - 22934496, - 22919040 + 22933376, + 22958368, + 22976112, + 22937312, + 22921856 ], "bases": [ { @@ -437370,13 +437370,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352848, + "vtable_address": 64356752, "methods": [ - 22929536, - 22954400, - 22974448, - 22935008, - 22918528 + 22932352, + 22957216, + 22977264, + 22937824, + 22921344 ], "bases": [ { @@ -437398,13 +437398,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352288, + "vtable_address": 64356192, "methods": [ - 22930816, - 22955840, - 22973008, - 22934368, - 22919168 + 22933632, + 22958656, + 22975824, + 22937184, + 22921984 ], "bases": [ { @@ -437426,13 +437426,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543560, + "vtable_address": 64547464, "methods": [ - 26415872, - 26462384, - 26511344, - 26433152, - 26408096 + 26418880, + 26465392, + 26514352, + 26436160, + 26411104 ], "bases": [ { @@ -437454,13 +437454,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543616, + "vtable_address": 64547520, "methods": [ - 26415744, - 26462240, - 26511488, - 26433216, - 26408032 + 26418752, + 26465248, + 26514496, + 26436224, + 26411040 ], "bases": [ { @@ -437482,13 +437482,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543448, + "vtable_address": 64547352, "methods": [ - 26416000, - 26462528, - 26511056, - 26433024, - 26408224 + 26419008, + 26465536, + 26514064, + 26436032, + 26411232 ], "bases": [ { @@ -437510,13 +437510,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543504, + "vtable_address": 64547408, "methods": [ - 26414336, - 26460656, - 26511200, - 26433088, - 26408160 + 26417344, + 26463664, + 26514208, + 26436096, + 26411168 ], "bases": [ { @@ -437538,13 +437538,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543392, + "vtable_address": 64547296, "methods": [ - 26416128, - 26462672, - 26510912, - 26432560, - 26408288 + 26419136, + 26465680, + 26513920, + 26435568, + 26411296 ], "bases": [ { @@ -437566,13 +437566,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543336, + "vtable_address": 64547240, "methods": [ - 26416256, - 26462816, - 26510768, - 26432624, - 26408352 + 26419264, + 26465824, + 26513776, + 26435632, + 26411360 ], "bases": [ { @@ -437594,13 +437594,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543280, + "vtable_address": 64547184, "methods": [ - 26416384, - 26462960, - 26510624, - 26432496, - 26408416 + 26419392, + 26465968, + 26513632, + 26435504, + 26411424 ], "bases": [ { @@ -437622,13 +437622,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526320, + "vtable_address": 64530224, "methods": [ - 25468048, - 25507424, - 25563136, - 25472448, - 25451728 + 25471056, + 25510432, + 25566144, + 25475456, + 25454736 ], "bases": [ { @@ -437650,13 +437650,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64528168, + "vtable_address": 64532072, "methods": [ - 25464720, - 25503680, - 25566880, - 25482960, - 25450000 + 25467728, + 25506688, + 25569888, + 25485968, + 25453008 ], "bases": [ { @@ -437678,13 +437678,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64544176, + "vtable_address": 64548080, "methods": [ - 26414592, - 26460944, - 26512784, - 26435392, - 26407456 + 26417600, + 26463952, + 26515792, + 26438400, + 26410464 ], "bases": [ { @@ -437706,13 +437706,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64544120, + "vtable_address": 64548024, "methods": [ - 26414720, - 26461088, - 26512640, - 26435328, - 26407520 + 26417728, + 26464096, + 26515648, + 26438336, + 26410528 ], "bases": [ { @@ -437734,13 +437734,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527496, + "vtable_address": 64531400, "methods": [ - 25466000, - 25505120, - 25565584, - 25480880, - 25450656 + 25469008, + 25508128, + 25568592, + 25483888, + 25453664 ], "bases": [ { @@ -437762,13 +437762,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526208, + "vtable_address": 64530112, "methods": [ - 25468304, - 25507712, - 25562848, - 25472032, - 25451856 + 25471312, + 25510720, + 25565856, + 25475040, + 25454864 ], "bases": [ { @@ -437790,13 +437790,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543728, + "vtable_address": 64547632, "methods": [ - 26415616, - 26462096, - 26511632, - 26433776, - 26407968 + 26418624, + 26465104, + 26514640, + 26436784, + 26410976 ], "bases": [ { @@ -437818,13 +437818,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542384, + "vtable_address": 64546288, "methods": [ - 26418304, - 26465120, - 26508608, - 26419136, - 26409376 + 26421312, + 26468128, + 26511616, + 26422144, + 26412384 ], "bases": [ { @@ -437846,13 +437846,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64544232, + "vtable_address": 64548136, "methods": [ - 26414464, - 26460800, - 26512928, - 26436160, - 26407392 + 26417472, + 26463808, + 26515936, + 26439168, + 26410400 ], "bases": [ { @@ -437874,13 +437874,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542776, + "vtable_address": 64546680, "methods": [ - 26417536, - 26464256, - 26509472, - 26431680, - 26408992 + 26420544, + 26467264, + 26512480, + 26434688, + 26412000 ], "bases": [ { @@ -437902,13 +437902,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543056, + "vtable_address": 64546960, "methods": [ - 26416896, - 26463536, - 26510192, - 26432288, - 26408672 + 26419904, + 26466544, + 26513200, + 26435296, + 26411680 ], "bases": [ { @@ -437930,13 +437930,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527160, + "vtable_address": 64531064, "methods": [ - 25466640, - 25505840, - 25564864, - 25479168, - 25450976 + 25469648, + 25508848, + 25567872, + 25482176, + 25453984 ], "bases": [ { @@ -437958,13 +437958,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586808, + "vtable_address": 64590712, "methods": [ - 27286576, - 27307664, - 27326976, - 27289776, - 27281776 + 27289744, + 27310832, + 27330144, + 27292944, + 27284944 ], "bases": [ { @@ -437986,13 +437986,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586864, + "vtable_address": 64590768, "methods": [ - 27286448, - 27307520, - 27327120, - 27289840, - 27281712 + 27289616, + 27310688, + 27330288, + 27293008, + 27284880 ], "bases": [ { @@ -438014,13 +438014,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586696, + "vtable_address": 64590600, "methods": [ - 27286832, - 27307952, - 27326688, - 27289648, - 27281904 + 27290000, + 27311120, + 27329856, + 27292816, + 27285072 ], "bases": [ { @@ -438042,13 +438042,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586752, + "vtable_address": 64590656, "methods": [ - 27286704, - 27307808, - 27326832, - 27289712, - 27281840 + 27289872, + 27310976, + 27330000, + 27292880, + 27285008 ], "bases": [ { @@ -438070,13 +438070,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586640, + "vtable_address": 64590544, "methods": [ - 27286960, - 27308096, - 27326544, - 27289584, - 27281968 + 27290128, + 27311264, + 27329712, + 27292752, + 27285136 ], "bases": [ { @@ -438098,13 +438098,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542496, + "vtable_address": 64546400, "methods": [ - 26418176, - 26464976, - 26508752, - 26422736, - 26409312 + 26421184, + 26467984, + 26511760, + 26425744, + 26412320 ], "bases": [ { @@ -438126,13 +438126,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586528, + "vtable_address": 64590432, "methods": [ - 27287216, - 27308384, - 27326112, - 27285744, - 27282096 + 27290384, + 27311552, + 27329280, + 27288912, + 27285264 ], "bases": [ { @@ -438154,13 +438154,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527048, + "vtable_address": 64530952, "methods": [ - 25466896, - 25506128, - 25564576, - 25478896, - 25451104 + 25469904, + 25509136, + 25567584, + 25481904, + 25454112 ], "bases": [ { @@ -438182,13 +438182,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64526992, + "vtable_address": 64530896, "methods": [ - 25467024, - 25506272, - 25564432, - 25478832, - 25451168 + 25470032, + 25509280, + 25567440, + 25481840, + 25454176 ], "bases": [ { @@ -438210,13 +438210,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64949224, + "vtable_address": 64953128, "methods": [ - 59500096, - 59500384, - 59499120, - 59499056, - 59498992 + 59504000, + 59504288, + 59503024, + 59502960, + 59502896 ], "bases": [ { @@ -438238,13 +438238,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64600848, + "vtable_address": 64604752, "methods": [ - 28026768, - 28035232, - 28037712, - 28027552, - 28025504 + 28030032, + 28038496, + 28040976, + 28030816, + 28028768 ], "bases": [ { @@ -438266,13 +438266,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64542328, + "vtable_address": 64546232, "methods": [ - 26418432, - 26465264, - 26508464, - 26414272, - 26409440 + 26421440, + 26468272, + 26511472, + 26417280, + 26412448 ], "bases": [ { @@ -438294,13 +438294,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64948088, + "vtable_address": 64951992, "methods": [ - 59397824, - 59401472, - 59403200, - 59398976, - 59396032 + 59401728, + 59405376, + 59407104, + 59402880, + 59399936 ], "bases": [ { @@ -438322,13 +438322,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64948200, + "vtable_address": 64952104, "methods": [ - 59397568, - 59401184, - 59402912, - 59398848, - 59395904 + 59401472, + 59405088, + 59406816, + 59402752, + 59399808 ], "bases": [ { @@ -438350,13 +438350,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64947920, + "vtable_address": 64951824, "methods": [ - 59398208, - 59401904, + 59402112, + 59405808, + 59406528, 59402624, - 59398720, - 59396224 + 59400128 ], "bases": [ { @@ -438378,13 +438378,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64948144, + "vtable_address": 64952048, "methods": [ - 59397696, - 59401328, - 59403056, - 59398912, - 59395968 + 59401600, + 59405232, + 59406960, + 59402816, + 59399872 ], "bases": [ { @@ -438406,13 +438406,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64948032, + "vtable_address": 64951936, "methods": [ - 59397952, - 59401616, - 59400336, - 59399040, - 59396096 + 59401856, + 59405520, + 59404240, + 59402944, + 59400000 ], "bases": [ { @@ -438434,13 +438434,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64947976, + "vtable_address": 64951880, "methods": [ - 59398080, - 59401760, - 59402768, - 59398784, - 59396160 + 59401984, + 59405664, + 59406672, + 59402688, + 59400064 ], "bases": [ { @@ -438462,13 +438462,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64947864, + "vtable_address": 64951768, "methods": [ - 59398336, - 59402048, - 59402480, - 59398656, - 59396288 + 59402240, + 59405952, + 59406384, + 59402560, + 59400192 ], "bases": [ { @@ -438490,13 +438490,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64587088, + "vtable_address": 64590992, "methods": [ - 27285936, - 27306944, - 27327696, - 27290592, - 27281456 + 27289104, + 27310112, + 27330864, + 27293760, + 27284624 ], "bases": [ { @@ -438518,13 +438518,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64587032, + "vtable_address": 64590936, "methods": [ - 27286064, - 27307088, - 27327552, - 27293424, - 27281520 + 27289232, + 27310256, + 27330720, + 27296592, + 27284688 ], "bases": [ { @@ -438546,13 +438546,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64543896, + "vtable_address": 64547800, "methods": [ - 26415232, - 26461664, - 26512064, - 26435072, - 26407776 + 26418240, + 26464672, + 26515072, + 26438080, + 26410784 ], "bases": [ { @@ -438574,13 +438574,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586920, + "vtable_address": 64590824, "methods": [ - 27286320, - 27307376, - 27327264, - 27289952, - 27281648 + 27289488, + 27310544, + 27330432, + 27293120, + 27284816 ], "bases": [ { @@ -438602,13 +438602,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64586976, + "vtable_address": 64590880, "methods": [ - 27286192, - 27307232, - 27327408, - 27290016, - 27281584 + 27289360, + 27310400, + 27330576, + 27293184, + 27284752 ], "bases": [ { @@ -438630,13 +438630,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64527104, + "vtable_address": 64531008, "methods": [ - 25466768, - 25505984, - 25564720, - 25479104, - 25451040 + 25469776, + 25508992, + 25567728, + 25482112, + 25454048 ], "bases": [ { @@ -438658,13 +438658,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 64352568, + "vtable_address": 64356472, "methods": [ - 22930176, - 22955120, - 22973728, - 22934688, - 22918848 + 22932992, + 22957936, + 22976544, + 22937504, + 22921664 ], "bases": [ { @@ -438686,29 +438686,29 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 64373112, + "vtable_address": 64377016, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9339680 + "offset_to_top": 9339744 } } }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 64592128, + "vtable_address": 64596032, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9407936 + "offset_to_top": 9408000 } } }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 64946672, + "vtable_address": 64950576, "methods": [], "bases": [], "model": { @@ -438719,7 +438719,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 64949208, + "vtable_address": 64953112, "methods": [], "bases": [], "model": { @@ -438730,7 +438730,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 64949432, + "vtable_address": 64953336, "methods": [], "bases": [], "model": { @@ -438741,25 +438741,25 @@ }, { "type_name": "GCSDK::CProtoBufNetPacket", - "vtable_address": 64949280, - "methods": [ - 59504304, - 59504640, - 59395856, - 59498752, - 59498768, - 59498784, - 59498800, - 59498816, - 59498832, - 59498848, - 59498864, - 59498880, - 59498896, - 59498912, - 59498928, - 59498944, - 59498960 + "vtable_address": 64953184, + "methods": [ + 59508208, + 59508544, + 59399760, + 59502656, + 59502672, + 59502688, + 59502704, + 59502720, + 59502736, + 59502752, + 59502768, + 59502784, + 59502800, + 59502816, + 59502832, + 59502848, + 59502864 ], "bases": [ { @@ -438792,19 +438792,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64580536, + "vtable_address": 64584440, "methods": [ - 28008448, - 28008480, - 27282768, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282784 + 28011712, + 28011744, + 27285936, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285952 ], "bases": [ { @@ -438837,19 +438837,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64581576, + "vtable_address": 64585480, "methods": [ - 28007488, - 28007520, - 27282608, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282624 + 28010752, + 28010784, + 27285776, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285792 ], "bases": [ { @@ -438882,19 +438882,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64580328, + "vtable_address": 64584232, "methods": [ - 28008640, - 28008672, - 27282800, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282816 + 28011904, + 28011936, + 27285968, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285984 ], "bases": [ { @@ -438927,19 +438927,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64582408, + "vtable_address": 64586312, "methods": [ - 28006720, - 28006752, - 27282480, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282496 + 28009984, + 28010016, + 27285648, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285664 ], "bases": [ { @@ -438972,19 +438972,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64581992, + "vtable_address": 64585896, "methods": [ - 28007104, - 28007136, - 27282544, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282560 + 28010368, + 28010400, + 27285712, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285728 ], "bases": [ { @@ -439017,19 +439017,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64582200, + "vtable_address": 64586104, "methods": [ - 28006912, - 28006944, - 27282512, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282528 + 28010176, + 28010208, + 27285680, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285696 ], "bases": [ { @@ -439062,19 +439062,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64580744, + "vtable_address": 64584648, "methods": [ - 28008256, - 28008288, - 27282736, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282752 + 28011520, + 28011552, + 27285904, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285920 ], "bases": [ { @@ -439107,19 +439107,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64580952, + "vtable_address": 64584856, "methods": [ - 28008064, - 28008096, - 27282704, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282720 + 28011328, + 28011360, + 27285872, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285888 ], "bases": [ { @@ -439152,19 +439152,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64579912, + "vtable_address": 64583816, "methods": [ - 28009024, - 28009056, - 27282864, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282880 + 28012288, + 28012320, + 27286032, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286048 ], "bases": [ { @@ -439197,19 +439197,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64570016, + "vtable_address": 64573920, "methods": [ - 28009792, - 28009824, - 27283488, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283504 + 28013056, + 28013088, + 27286656, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286672 ], "bases": [ { @@ -439242,19 +439242,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64571200, + "vtable_address": 64575104, "methods": [ - 28009408, - 28009440, - 27283264, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283280 + 28012672, + 28012704, + 27286432, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286448 ], "bases": [ { @@ -439287,19 +439287,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64570224, + "vtable_address": 64574128, "methods": [ - 28009600, - 28009632, - 27283456, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283472 + 28012864, + 28012896, + 27286624, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286640 ], "bases": [ { @@ -439332,19 +439332,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64581784, + "vtable_address": 64585688, "methods": [ - 28007296, - 28007328, - 27282576, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282592 + 28010560, + 28010592, + 27285744, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285760 ], "bases": [ { @@ -439377,19 +439377,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64571408, + "vtable_address": 64575312, "methods": [ - 28009216, - 28009248, - 27283232, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27283248 + 28012480, + 28012512, + 27286400, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286416 ], "bases": [ { @@ -439422,19 +439422,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64580120, + "vtable_address": 64584024, "methods": [ - 28008832, - 28008864, - 27282832, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282848 + 28012096, + 28012128, + 27286000, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27286016 ], "bases": [ { @@ -439467,19 +439467,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64581368, + "vtable_address": 64585272, "methods": [ - 28007680, - 28007712, - 27282640, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282656 + 28010944, + 28010976, + 27285808, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285824 ], "bases": [ { @@ -439512,19 +439512,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 64581160, + "vtable_address": 64585064, "methods": [ - 28007872, - 28007904, - 27282672, - 59506272, - 59506160, - 59511952, - 59506224, - 59512496, - 59506336, - 59512704, - 27282688 + 28011136, + 28011168, + 27285840, + 59510176, + 59510064, + 59515856, + 59510128, + 59516400, + 59510240, + 59516608, + 27285856 ], "bases": [ { @@ -439557,7 +439557,7 @@ }, { "type_name": "GCSDK::CSharedObject", - "vtable_address": 64949592, + "vtable_address": 64953496, "methods": [], "bases": [], "model": { @@ -439568,7 +439568,7 @@ }, { "type_name": "GCSDK::CSharedObjectCache", - "vtable_address": 64949824, + "vtable_address": 64953728, "methods": [], "bases": [], "model": { @@ -439579,7 +439579,7 @@ }, { "type_name": "GCSDK::CSharedObjectCache", - "vtable_address": 64949952, + "vtable_address": 64953856, "methods": [], "bases": [], "model": { @@ -439590,16 +439590,16 @@ }, { "type_name": "GCSDK::CSharedObjectTypeCache", - "vtable_address": 64949744, + "vtable_address": 64953648, "methods": [ - 59515648, - 59515856, - 59518464, - 59514720, - 59515472, - 59514288, - 59515040, - 59514320 + 59519552, + 59519760, + 59522368, + 59518624, + 59519376, + 59518192, + 59518944, + 59518224 ], "bases": [], "model": { @@ -439610,25 +439610,25 @@ }, { "type_name": "GCSDK::CStructNetPacket", - "vtable_address": 64948824, - "methods": [ - 59437936, - 59437968, - 59395856, - 59437712, - 59437728, - 59437744, - 59437760, - 59437776, - 59437792, - 59437808, - 59437824, - 59437840, - 59437856, - 59437872, - 59437888, - 59437904, - 59437920 + "vtable_address": 64952728, + "methods": [ + 59441840, + 59441872, + 59399760, + 59441616, + 59441632, + 59441648, + 59441664, + 59441680, + 59441696, + 59441712, + 59441728, + 59441744, + 59441760, + 59441776, + 59441792, + 59441808, + 59441824 ], "bases": [ { @@ -439661,10 +439661,10 @@ }, { "type_name": "GCSDK::CWorkThread", - "vtable_address": 64950328, + "vtable_address": 64954232, "methods": [ - 59539888, - 59539904 + 59543792, + 59543808 ], "bases": [], "model": { @@ -439675,11 +439675,11 @@ }, { "type_name": "GCSDK::CWorkThreadPool", - "vtable_address": 64950416, + "vtable_address": 64954320, "methods": [ - 59541472, - 59543104, - 59547104 + 59545376, + 59547008, + 59551008 ], "bases": [], "model": { @@ -439690,7 +439690,7 @@ }, { "type_name": "GCSDK::GCClientJobLambda::RequestCurrentData(CBufferString const&)::{lambda()#1}>", - "vtable_address": 63501136, + "vtable_address": 63505040, "methods": [ 14607984, 14608176, @@ -439731,7 +439731,7 @@ }, { "type_name": "GCSDK::IMsgNetPacket", - "vtable_address": 64948808, + "vtable_address": 64952712, "methods": [], "bases": [ { @@ -439753,7 +439753,7 @@ }, { "type_name": "GameAmmoTypeInfo_t", - "vtable_address": 63684552, + "vtable_address": 63688456, "methods": [ 16909280, 16938624, @@ -439780,7 +439780,7 @@ }, { "type_name": "GameEvent_RegisterHookupGameSystem", - "vtable_address": 64071976, + "vtable_address": 64075880, "methods": [ 12204192, 12204208, @@ -439838,12 +439838,12 @@ 12205040, 12205056, 12205072, - 19360368, + 19363184, 12205104, - 19360352, - 19371936, - 19371952, - 19360336 + 19363168, + 19374752, + 19374768, + 19363152 ], "bases": [ { @@ -439876,10 +439876,10 @@ }, { "type_name": "GameJournalPage_t", - "vtable_address": 64073232, + "vtable_address": 64077136, "methods": [ - 19399408, - 19399600 + 19402224, + 19402416 ], "bases": [ { @@ -439912,23 +439912,23 @@ }, { "type_name": "GameServerPing", - "vtable_address": 63530656, + "vtable_address": 63534560, "methods": [ 15634768, 15690960, - 29643894, + 29647734, 15162976, 15793168, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14820752, 14847072, 15279552, 12011504, 14976832, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834112, 14800240 @@ -439964,23 +439964,23 @@ }, { "type_name": "GameSessionConfiguration_t", - "vtable_address": 64176184, + "vtable_address": 64180088, "methods": [ - 21353664, - 21353856, - 29643894, + 21356480, + 21356672, + 29647734, 16235088, 16699568, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16012064, 15994464, 16331056, 12011504, 16194528, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16016064, 15987056 @@ -440038,34 +440038,34 @@ }, { "type_name": "GameTick_t", - "vtable_address": 64849264, + "vtable_address": 64853168, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66124256 + "offset_to_top": 66128160 } } }, { "type_name": "GlobalStatistics", - "vtable_address": 63531616, + "vtable_address": 63535520, "methods": [ 15635680, 15732704, - 29643894, + 29647734, 15164064, 15836752, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14899376, 14847120, 15486048, 12011504, 15087120, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834304, 14800336 @@ -440101,7 +440101,7 @@ }, { "type_name": "How many bullets this gun can fire before it reloads (0 if no clip)", - "vtable_address": 64122960, + "vtable_address": 64126864, "methods": [], "bases": [], "model": { @@ -440112,7 +440112,7 @@ }, { "type_name": "How many secondary bullets this gun can fire before it reloads (0 if no clip)", - "vtable_address": 64122896, + "vtable_address": 64126800, "methods": [], "bases": [], "model": { @@ -440123,7 +440123,7 @@ }, { "type_name": "ICurveDataAccessor", - "vtable_address": 64824808, + "vtable_address": 64828712, "methods": [], "bases": [], "model": { @@ -440134,7 +440134,7 @@ }, { "type_name": "IDemoMessage", - "vtable_address": 63320048, + "vtable_address": 63323952, "methods": [], "bases": [], "model": { @@ -440145,7 +440145,7 @@ }, { "type_name": "IEconItemAttributeIterator", - "vtable_address": 63684104, + "vtable_address": 63688008, "methods": [], "bases": [], "model": { @@ -440156,29 +440156,29 @@ }, { "type_name": "IEconItemAttributeIterator", - "vtable_address": 64566232, + "vtable_address": 64570136, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9397568 + "offset_to_top": 9397632 } } }, { "type_name": "IEconItemAttributeIterator", - "vtable_address": 64569944, + "vtable_address": 64573848, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9405600 + "offset_to_top": 9405664 } } }, { "type_name": "IEconItemDescription", - "vtable_address": 64571672, + "vtable_address": 64575576, "methods": [], "bases": [], "model": { @@ -440189,20 +440189,20 @@ }, { "type_name": "IEconTool", - "vtable_address": 64592712, - "methods": [ - 28038000, - 28038512, - 27278336, - 28043312, - 27278352, - 27278368, - 27278384, - 27278400, - 27279264, - 26402656, - 25439264, - 25439280 + "vtable_address": 64596616, + "methods": [ + 28041264, + 28041776, + 27281504, + 28046576, + 27281520, + 27281536, + 27281552, + 27281568, + 27282432, + 26405664, + 25442272, + 25442288 ], "bases": [], "model": { @@ -440213,7 +440213,7 @@ }, { "type_name": "IErrorListener", - "vtable_address": 64823408, + "vtable_address": 64827312, "methods": [], "bases": [], "model": { @@ -440224,7 +440224,7 @@ }, { "type_name": "IFootTrajectory", - "vtable_address": 64769712, + "vtable_address": 64773616, "methods": [], "bases": [], "model": { @@ -440235,7 +440235,7 @@ }, { "type_name": "IGameSystem", - "vtable_address": 63328984, + "vtable_address": 63332888, "methods": [ 12204192, 12204208, @@ -440306,7 +440306,7 @@ }, { "type_name": "IKV3TransferInterface_EHandle_Load", - "vtable_address": 64846720, + "vtable_address": 64850624, "methods": [], "bases": [], "model": { @@ -440317,7 +440317,7 @@ }, { "type_name": "ILoggingListener", - "vtable_address": 64763976, + "vtable_address": 64767880, "methods": [], "bases": [], "model": { @@ -440328,9 +440328,9 @@ }, { "type_name": "IMatchEventsSink", - "vtable_address": 64520496, + "vtable_address": 64524400, "methods": [ - 25439632 + 25442640 ], "bases": [], "model": { @@ -440341,9 +440341,9 @@ }, { "type_name": "IMatchmakingStatus", - "vtable_address": 64374824, + "vtable_address": 64378728, "methods": [ - 23544832 + 23547584 ], "bases": [ { @@ -440365,13 +440365,13 @@ }, { "type_name": "IMobileEventListener", - "vtable_address": 64592384, + "vtable_address": 64596288, "methods": [ - 28028880, - 28028912, - 28024352, - 28024368, - 28024384 + 28032144, + 28032176, + 28027616, + 28027632, + 28027648 ], "bases": [], "model": { @@ -440382,7 +440382,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 64127152, + "vtable_address": 64131056, "methods": [], "bases": [], "model": { @@ -440393,7 +440393,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 64127208, + "vtable_address": 64131112, "methods": [], "bases": [], "model": { @@ -440404,7 +440404,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 64127528, + "vtable_address": 64131432, "methods": [], "bases": [], "model": { @@ -440415,7 +440415,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 64768576, + "vtable_address": 64772480, "methods": [], "bases": [], "model": { @@ -440426,7 +440426,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 64768792, + "vtable_address": 64772696, "methods": [], "bases": [], "model": { @@ -440437,7 +440437,7 @@ }, { "type_name": "INetworkSerializerBindingBuildFilter", - "vtable_address": 64848264, + "vtable_address": 64852168, "methods": [], "bases": [], "model": { @@ -440448,7 +440448,7 @@ }, { "type_name": "IPeerGroupHandler", - "vtable_address": 64156680, + "vtable_address": 64160584, "methods": [], "bases": [], "model": { @@ -440459,7 +440459,7 @@ }, { "type_name": "IPoseAccessor", - "vtable_address": 64775768, + "vtable_address": 64779672, "methods": [], "bases": [], "model": { @@ -440470,7 +440470,7 @@ }, { "type_name": "IPredictionCopyable", - "vtable_address": 63501464, + "vtable_address": 63505368, "methods": [], "bases": [], "model": { @@ -440481,7 +440481,7 @@ }, { "type_name": "IPulseTypeQueriesForScope", - "vtable_address": 64825712, + "vtable_address": 64829616, "methods": [], "bases": [ { @@ -440503,7 +440503,7 @@ }, { "type_name": "ISaveRestoreOps", - "vtable_address": 64848408, + "vtable_address": 64852312, "methods": [], "bases": [], "model": { @@ -440514,7 +440514,7 @@ }, { "type_name": "ISequence", - "vtable_address": 64769032, + "vtable_address": 64772936, "methods": [], "bases": [ { @@ -440536,7 +440536,7 @@ }, { "type_name": "IToolAttrConcreteDataAccess", - "vtable_address": 65052496, + "vtable_address": 65056400, "methods": [], "bases": [], "model": { @@ -440547,7 +440547,7 @@ }, { "type_name": "IToolsResourceListener", - "vtable_address": 63151256, + "vtable_address": 63155160, "methods": [], "bases": [], "model": { @@ -440558,7 +440558,7 @@ }, { "type_name": "IToolsResourceListener", - "vtable_address": 63161768, + "vtable_address": 63165672, "methods": [], "bases": [], "model": { @@ -440569,7 +440569,7 @@ }, { "type_name": "IVTableIndexCalculator", - "vtable_address": 63317648, + "vtable_address": 63321552, "methods": [ 13214864, 13214880, @@ -440646,7 +440646,7 @@ }, { "type_name": "Input Container Source", - "vtable_address": 65202448, + "vtable_address": 65206352, "methods": [], "bases": [], "model": { @@ -440657,34 +440657,34 @@ }, { "type_name": "InventoryNodeType_t", - "vtable_address": 63114928, + "vtable_address": 63118832, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65663520 + "offset_to_top": 65667424 } } }, { "type_name": "IpAddressMask", - "vtable_address": 63533536, + "vtable_address": 63537440, "methods": [ 15637456, 15691856, - 29643894, + 29647734, 15165936, 15793712, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821344, 14847136, 15288688, 12011504, 15061504, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834688, 14800528 @@ -440720,7 +440720,7 @@ }, { "type_name": "LC_NUMERIC", - "vtable_address": 65215848, + "vtable_address": 65219752, "methods": [], "bases": [], "model": { @@ -440731,45 +440731,45 @@ }, { "type_name": "LightRenderingChanged", - "vtable_address": 63158960, + "vtable_address": 63162864, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "LocalPlayerExclusiveDuringRoundEnd", - "vtable_address": 64002768, + "vtable_address": 64006672, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11114867 + "offset_to_top": 11114878 } } }, { "type_name": "MLDemoHeader", - "vtable_address": 63580096, + "vtable_address": 63584000, "methods": [ 15674176, 15721200, - 29643894, + 29647734, 15214032, 15825312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14866160, 14849648, 15429648, 12011504, 15018624, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844000, 14807392 @@ -440805,23 +440805,23 @@ }, { "type_name": "MLDict", - "vtable_address": 63578976, + "vtable_address": 63582880, "methods": [ 15673088, 15729840, - 29643894, + 29647734, 15212864, 15824720, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14865408, 14848448, 15426912, 12011504, 15005440, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843776, 14807280 @@ -440857,23 +440857,23 @@ }, { "type_name": "MLEvent", - "vtable_address": 63579136, + "vtable_address": 63583040, "methods": [ 15673248, 15733664, - 29643894, + 29647734, 15213040, 15856800, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14903904, 14848544, 15535440, 12011504, 14924928, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843808, 14807296 @@ -440909,23 +440909,23 @@ }, { "type_name": "MLGameState", - "vtable_address": 63579936, + "vtable_address": 63583840, "methods": [ 15771760, 15772896, - 29643894, + 29647734, 15213904, 15975792, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15981376, 14848528, 15537696, 12011504, 14855824, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843968, 14807376 @@ -440961,23 +440961,23 @@ }, { "type_name": "MLMatchState", - "vtable_address": 63579296, + "vtable_address": 63583200, "methods": [ 15673424, 15730000, - 29643894, + 29647734, 15213200, 15824864, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14865568, 14848480, 15427488, 12011504, 15054432, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843840, 14807312 @@ -441013,23 +441013,23 @@ }, { "type_name": "MLPlayerState", - "vtable_address": 63579776, + "vtable_address": 63583680, "methods": [ 15673904, 15750288, - 29643894, + 29647734, 15213728, 15975056, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15980288, 14848512, 15536000, 12011504, 15137456, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843936, 14807360 @@ -441065,23 +441065,23 @@ }, { "type_name": "MLRoundState", - "vtable_address": 63579456, + "vtable_address": 63583360, "methods": [ 15673584, 15730160, - 29643894, + 29647734, 15213360, 15825024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14865760, 14848496, 15428112, 12011504, 14993408, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843872, 14807328 @@ -441117,23 +441117,23 @@ }, { "type_name": "MLTick", - "vtable_address": 63580256, + "vtable_address": 63584160, "methods": [ 15772368, 15772624, - 29643894, + 29647734, 15214208, 15976048, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15981600, 14849632, 15538352, 12011504, 14950400, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844032, 14807408 @@ -441169,23 +441169,23 @@ }, { "type_name": "MLWeaponState", - "vtable_address": 63579616, + "vtable_address": 63583520, "methods": [ 15673744, 15730320, - 29643894, + 29647734, 15213520, 15825152, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14865888, 14848464, 15428784, 12011504, 15117536, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14843904, 14807344 @@ -441221,23 +441221,23 @@ }, { "type_name": "MatchEndItemUpdates", - "vtable_address": 63534016, + "vtable_address": 63537920, "methods": [ 15637840, 15692240, - 29643894, + 29647734, 15166368, 15793904, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821600, 14846992, 15290464, 12011504, 14977312, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834784, 14800576 @@ -441273,7 +441273,7 @@ }, { "type_name": "Max damage done by a drowning tick", - "vtable_address": 64023568, + "vtable_address": 64027472, "methods": [], "bases": [], "model": { @@ -441284,29 +441284,29 @@ }, { "type_name": "Model Preview State", - "vtable_address": 65201744, + "vtable_address": 65205648, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10910009 + "offset_to_top": 10910020 } } }, { "type_name": "Model used on the ground or held by an entity", - "vtable_address": 64123344, + "vtable_address": 64127248, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11508264 + "offset_to_top": 11508272 } } }, { "type_name": "Mutator Command", - "vtable_address": 65203536, + "vtable_address": 65207440, "methods": [], "bases": [], "model": { @@ -441317,11 +441317,11 @@ }, { "type_name": "N24CParallelProcessLauncher18CParallelLambdaJobIZ11ParallelForILb1EZN28CPhysSaveRestoreBlockHandler4SaveEP5ISaveEUliE_EviiPKcOT0_ii13JobPriority_tQ14is_invocable_vIS8_JiEEEUliE_EE", - "vtable_address": 64211488, + "vtable_address": 64215392, "methods": [ - 21816800, - 21818304, - 21847488 + 21819632, + 21821136, + 21850304 ], "bases": [ { @@ -441343,18 +441343,18 @@ }, { "type_name": "NmIKBlendMode_t", - "vtable_address": 64923024, + "vtable_address": 64926928, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66167392 + "offset_to_top": 66171296 } } }, { "type_name": "OnHeadConstraintChanged", - "vtable_address": 64276944, + "vtable_address": 64280848, "methods": [], "bases": [], "model": { @@ -441365,117 +441365,117 @@ }, { "type_name": "OnNetOOBoolVarChanged", - "vtable_address": 63497712, + "vtable_address": 63501616, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOByteVarChanged", - "vtable_address": 63497616, + "vtable_address": 63501520, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOFloatVarChanged", - "vtable_address": 63497136, + "vtable_address": 63501040, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOGlobalSymbolVarChanged", - "vtable_address": 63496848, + "vtable_address": 63500752, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOIntVarChanged", - "vtable_address": 63497424, + "vtable_address": 63501328, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOQuaternionVarChanged", - "vtable_address": 63496944, + "vtable_address": 63500848, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOUInt16VarChanged", - "vtable_address": 63497520, + "vtable_address": 63501424, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOUInt32VarChanged", - "vtable_address": 63497328, + "vtable_address": 63501232, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOUInt64VarChanged", - "vtable_address": 63497232, + "vtable_address": 63501136, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetOOVectorVarChanged", - "vtable_address": 63497040, + "vtable_address": 63500944, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11022854 + "offset_to_top": 11022865 } } }, { "type_name": "OnNetworkedAnimationChanged", - "vtable_address": 63402512, + "vtable_address": 63406416, "methods": [], "bases": [], "model": { @@ -441486,7 +441486,7 @@ }, { "type_name": "OnNetworkedAnimationChanged", - "vtable_address": 63402576, + "vtable_address": 63406480, "methods": [], "bases": [], "model": { @@ -441497,7 +441497,7 @@ }, { "type_name": "OnServerVelocityChanged", - "vtable_address": 63399312, + "vtable_address": 63403216, "methods": [], "bases": [], "model": { @@ -441508,7 +441508,7 @@ }, { "type_name": "OnSlopeDropHeightChanged", - "vtable_address": 64277008, + "vtable_address": 64280912, "methods": [], "bases": [], "model": { @@ -441519,7 +441519,7 @@ }, { "type_name": "OnSlopeDropOffsetChanged", - "vtable_address": 64277072, + "vtable_address": 64280976, "methods": [], "bases": [], "model": { @@ -441530,7 +441530,7 @@ }, { "type_name": "OnSubclassIDChanged", - "vtable_address": 63399664, + "vtable_address": 63403568, "methods": [], "bases": [], "model": { @@ -441541,23 +441541,23 @@ }, { "type_name": "OperationalStatisticDescription", - "vtable_address": 63531776, + "vtable_address": 63535680, "methods": [ 15635856, 15712400, - 29643894, + 29647734, 15164208, 15810352, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14858704, 14852096, 15282576, 12011504, 14932864, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834336, 14800352 @@ -441593,23 +441593,23 @@ }, { "type_name": "OperationalStatisticElement", - "vtable_address": 63531936, + "vtable_address": 63535840, "methods": [ 15636000, 15712560, - 29643894, + 29647734, 15164352, 15793360, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14880208, 14846896, 15283136, 12011504, 14951552, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834368, 14800368 @@ -441645,23 +441645,23 @@ }, { "type_name": "OperationalStatisticsPacket", - "vtable_address": 63532096, + "vtable_address": 63536000, "methods": [ 15636144, 15738832, - 29643894, + 29647734, 15164528, 15831424, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14887664, 14852080, 15487328, 12011504, 14965984, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834400, 14800384 @@ -441697,23 +441697,23 @@ }, { "type_name": "OperationalVarValue", - "vtable_address": 63532256, + "vtable_address": 63536160, "methods": [ 15636304, 15726160, - 29643894, + 29647734, 15164688, 15810624, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868752, 14847264, 15283840, 12011504, 15053216, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834432, 14800400 @@ -441749,23 +441749,23 @@ }, { "type_name": "PerFriendPreferences", - "vtable_address": 63636816, + "vtable_address": 63640720, "methods": [ 16581888, 16622832, - 29643894, + 29647734, 16241488, 16702480, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16034752, 15994992, 16347504, 12011504, 16168224, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16017344, 15988704 @@ -441801,7 +441801,7 @@ }, { "type_name": "PhysicsRagdollPose_t", - "vtable_address": 63289720, + "vtable_address": 63293624, "methods": [ 13163120, 13162368, @@ -441817,7 +441817,7 @@ }, { "type_name": "Player", - "vtable_address": 63399856, + "vtable_address": 63403760, "methods": [], "bases": [], "model": { @@ -441828,23 +441828,23 @@ }, { "type_name": "PlayerCommendationInfo", - "vtable_address": 63532736, + "vtable_address": 63536640, "methods": [ 15636768, 15691472, - 29643894, + 29647734, 15165168, 15793472, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821120, 14847360, 15284928, 12011504, 14972960, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834528, 14800448 @@ -441880,23 +441880,23 @@ }, { "type_name": "PlayerDecalDigitalSignature", - "vtable_address": 63553856, + "vtable_address": 63557760, "methods": [ 15652528, 15735008, - 29643894, + 29647734, 15186272, 15814144, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14869472, 14847872, 15351872, 12011504, 15102528, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14838752, 14802560 @@ -441932,23 +441932,23 @@ }, { "type_name": "PlayerMedalsInfo", - "vtable_address": 63532896, + "vtable_address": 63536800, "methods": [ 15636896, 15712720, - 29643894, + 29647734, 15165312, 15793536, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14873440, 14847376, 15285440, 12011504, 14951968, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834560, 14800464 @@ -441984,23 +441984,23 @@ }, { "type_name": "PlayerQuestData", - "vtable_address": 63534816, + "vtable_address": 63538720, "methods": [ 15638624, 15746896, - 29643894, + 29647734, 15167232, 15843728, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14900752, 14847024, 15491632, 12011504, 15060704, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834944, 14800656 @@ -442036,23 +442036,23 @@ }, { "type_name": "PlayerQuestData_QuestItemData", - "vtable_address": 63534656, + "vtable_address": 63538560, "methods": [ 15638464, 15726480, - 29643894, + 29647734, 15167056, 15794032, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14880288, 14846960, 15291632, 12011504, 15092736, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834912, 14800640 @@ -442088,23 +442088,23 @@ }, { "type_name": "PlayerRankingInfo", - "vtable_address": 63532576, + "vtable_address": 63536480, "methods": [ 15636592, 15732896, - 29643894, + 29647734, 15165024, 15837024, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14898656, 14847200, 15487952, 12011504, 15122896, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834496, 14800432 @@ -442140,23 +442140,23 @@ }, { "type_name": "PlayerRankingInfo_PerMapRank", - "vtable_address": 63532416, + "vtable_address": 63536320, "methods": [ 15636464, 15691344, - 29643894, + 29647734, 15164832, 15793408, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821024, 14846912, 15284416, 12011504, 14972480, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834464, 14800416 @@ -442192,13 +442192,13 @@ }, { "type_name": "PredictedDamageTag_t", - "vtable_address": 64251816, + "vtable_address": 64255720, "methods": [ - 18121520, - 22443776, - 22443744, - 22443712, - 22443680 + 18123824, + 22446592, + 22446560, + 22446528, + 22446496 ], "bases": [], "model": { @@ -442209,7 +442209,7 @@ }, { "type_name": "PredictionRecord", - "vtable_address": 63319296, + "vtable_address": 63323200, "methods": [ 13277712, 13277872 @@ -442245,34 +442245,34 @@ }, { "type_name": "Preview Model", - "vtable_address": 65201680, + "vtable_address": 65205584, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11045698 + "offset_to_top": 11045709 } } }, { "type_name": "ProtoFlattenedSerializerField_t", - "vtable_address": 63623536, + "vtable_address": 63627440, "methods": [ 16571248, 16635872, - 29643894, + 29647734, 16228192, 16715168, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16060352, 15994704, 16467648, 12011504, 16175072, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014688, 15985888 @@ -442308,23 +442308,23 @@ }, { "type_name": "ProtoFlattenedSerializerField_t_polymorphic_field_t", - "vtable_address": 63623376, + "vtable_address": 63627280, "methods": [ 16571120, 16605680, - 29643894, + 29647734, 16228016, 16680464, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16024576, 15994672, 16307936, 12011504, 16093728, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014656, 15985872 @@ -442360,23 +442360,23 @@ }, { "type_name": "ProtoFlattenedSerializer_t", - "vtable_address": 63623696, + "vtable_address": 63627600, "methods": [ 16571408, 16619472, - 29643894, + 29647734, 16228336, 16680528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16046784, 15994688, 16308512, 12011504, 16119296, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16014720, 15985904 @@ -442412,23 +442412,23 @@ }, { "type_name": "PublishedFileDetails", - "vtable_address": 63641776, + "vtable_address": 63645680, "methods": [ 16656304, 16656928, - 29643894, + 29647734, 16246144, 16730112, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16069248, 15995104, 16476000, 12011504, 16214496, - 29642796, - 29643062, + 29646636, + 29646902, 15994240, 16018336, 15989552 @@ -442464,23 +442464,23 @@ }, { "type_name": "PublishedFileDetails_Child", - "vtable_address": 63641296, + "vtable_address": 63645200, "methods": [ 16584656, 16610672, - 29643894, + 29647734, 16245568, 16683264, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026416, 15995056, 16360832, 12011504, 16114080, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018240, 15989504 @@ -442516,23 +442516,23 @@ }, { "type_name": "PublishedFileDetails_KVTag", - "vtable_address": 63641456, + "vtable_address": 63645360, "methods": [ 16584784, 16629984, - 29643894, + 29647734, 16245728, 16704000, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16008928, 15995072, 16361552, 12011504, 16096336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018272, 15989520 @@ -442568,23 +442568,23 @@ }, { "type_name": "PublishedFileDetails_Preview", - "vtable_address": 63641136, + "vtable_address": 63645040, "methods": [ 16584496, 16631456, - 29643894, + 29647734, 16245408, 16703840, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16035408, 15995024, 16360192, 12011504, 16152544, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018208, 15989488 @@ -442620,23 +442620,23 @@ }, { "type_name": "PublishedFileDetails_Tag", - "vtable_address": 63640976, + "vtable_address": 63644880, "methods": [ 16584352, 16623312, - 29643894, + 29647734, 16245216, 16703616, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010720, 15995040, 16359616, 12011504, 16083792, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018176, 15989472 @@ -442672,23 +442672,23 @@ }, { "type_name": "PublishedFileDetails_VoteData", - "vtable_address": 63641616, + "vtable_address": 63645520, "methods": [ 16584944, 16610800, - 29643894, + 29647734, 16245872, 16683328, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16000464, 15995088, 16362016, 12011504, 16099104, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018304, 15989536 @@ -442724,18 +442724,18 @@ }, { "type_name": "PulseBestOutflowRules_t", - "vtable_address": 64828496, + "vtable_address": 64832400, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66099552 + "offset_to_top": 66103456 } } }, { "type_name": "RenderingChanged", - "vtable_address": 64385520, + "vtable_address": 64389424, "methods": [], "bases": [], "model": { @@ -442746,7 +442746,7 @@ }, { "type_name": "RenderingChanged", - "vtable_address": 64385584, + "vtable_address": 64389488, "methods": [], "bases": [], "model": { @@ -442757,7 +442757,7 @@ }, { "type_name": "RenderingChanged", - "vtable_address": 64385648, + "vtable_address": 64389552, "methods": [], "bases": [], "model": { @@ -442768,9 +442768,9 @@ }, { "type_name": "RotationTrack_t", - "vtable_address": 64627528, + "vtable_address": 64631432, "methods": [ - 28838096 + 28841808 ], "bases": [ { @@ -442792,10 +442792,10 @@ }, { "type_name": "SCustomImageCacheEntry", - "vtable_address": 64602560, + "vtable_address": 64606464, "methods": [ - 28164144, - 28164352 + 28167408, + 28167616 ], "bases": [], "model": { @@ -442806,7 +442806,7 @@ }, { "type_name": "SSL Client", - "vtable_address": 64736808, + "vtable_address": 64740712, "methods": [], "bases": [], "model": { @@ -442817,9 +442817,9 @@ }, { "type_name": "ScaleTrack_t", - "vtable_address": 64627576, + "vtable_address": 64631480, "methods": [ - 28836720 + 28840432 ], "bases": [ { @@ -442841,23 +442841,23 @@ }, { "type_name": "ScoreLeaderboardData", - "vtable_address": 63534496, + "vtable_address": 63538400, "methods": [ 15638256, 15736864, - 29643894, + 29647734, 15166880, 15839504, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14897888, 14847040, 15489824, 12011504, 15024672, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834880, 14800624 @@ -442893,23 +442893,23 @@ }, { "type_name": "ScoreLeaderboardData_AccountEntries", - "vtable_address": 63534336, + "vtable_address": 63538240, "methods": [ 15638096, 15739008, - 29643894, + 29647734, 15166672, 15833952, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14892688, 14846944, 15489232, 12011504, 14927680, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834848, 14800608 @@ -442945,23 +442945,23 @@ }, { "type_name": "ScoreLeaderboardData_Entry", - "vtable_address": 63534176, + "vtable_address": 63538080, "methods": [ 15637968, 15692368, - 29643894, + 29647734, 15166496, 15793968, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821696, 14846928, 15291056, 12011504, 14936640, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834816, 14800592 @@ -442997,7 +442997,7 @@ }, { "type_name": "Scratch Target", - "vtable_address": 65203024, + "vtable_address": 65206928, "methods": [], "bases": [], "model": { @@ -443008,13 +443008,13 @@ }, { "type_name": "SellbackPurchaseEntry_t", - "vtable_address": 63981840, + "vtable_address": 63985744, "methods": [ - 17952768, - 17953216, - 17953184, - 17953152, - 17953120 + 17955072, + 17955520, + 17955488, + 17955456, + 17955424 ], "bases": [], "model": { @@ -443025,13 +443025,13 @@ }, { "type_name": "ServerAuthoritativeWeaponSlot_t", - "vtable_address": 64000832, + "vtable_address": 64004736, "methods": [ - 18356000, - 18356576, - 18356512, - 18356432, - 18356368 + 18358304, + 18358880, + 18358816, + 18358736, + 18358672 ], "bases": [], "model": { @@ -443042,23 +443042,23 @@ }, { "type_name": "ServerHltvInfo", - "vtable_address": 63533376, + "vtable_address": 63537280, "methods": [ 15637296, 15726320, - 29643894, + 29647734, 15165792, 15810768, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14858800, 14847296, 15287248, 12011504, 15105312, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834656, 14800512 @@ -443094,14 +443094,14 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 64177944, + "vtable_address": 64181848, "methods": [ - 21335696, - 21335760, - 19366896, - 19366912, - 19366928, - 19378208 + 21338512, + 21338576, + 19369712, + 19369728, + 19369744, + 19381024 ], "bases": [ { @@ -443166,23 +443166,23 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 64178008, + "vtable_address": 64181912, "methods": [ - 21335728, - 21335824, - 29643894, + 21338544, + 21338640, + 29647734, 15216240, 15834528, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14891584, 14849584, 15465440, 12011504, 14855120, - 29642796, - 29643062, + 29646636, + 29646902, 14810288, 14844320, 14807840 @@ -443250,14 +443250,14 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 64070144, + "vtable_address": 64074048, "methods": [ - 19374512, - 19374576, - 19365712, - 19365728, - 19365744, - 19392096 + 19377328, + 19377392, + 19368528, + 19368544, + 19368560, + 19394912 ], "bases": [ { @@ -443322,23 +443322,23 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 64070208, + "vtable_address": 64074112, "methods": [ - 19374544, - 19374640, - 29643894, + 19377360, + 19377456, + 29647734, 15216736, 15847584, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14922096, 14849552, 15465904, 12011504, 15031712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844416, 14807888 @@ -443406,14 +443406,14 @@ }, { "type_name": "Source1LegacyListenEvents_t", - "vtable_address": 64069608, + "vtable_address": 64073512, "methods": [ - 19375008, - 19375072, - 19365904, - 19365920, - 19365936, - 19375200 + 19377824, + 19377888, + 19368720, + 19368736, + 19368752, + 19378016 ], "bases": [ { @@ -443478,23 +443478,23 @@ }, { "type_name": "Source1LegacyListenEvents_t", - "vtable_address": 64069672, + "vtable_address": 64073576, "methods": [ - 19375040, - 19375136, - 29643894, + 19377856, + 19377952, + 29647734, 15216384, 15802496, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14876192, 14849568, 15435136, 12011504, 14952352, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844352, 14807856 @@ -443562,18 +443562,18 @@ }, { "type_name": "SphereBase_t", - "vtable_address": 64778376, + "vtable_address": 64782280, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 66078880 + "offset_to_top": 66082784 } } }, { "type_name": "Splat Debug info on Texture", - "vtable_address": 65202928, + "vtable_address": 65206832, "methods": [], "bases": [], "model": { @@ -443584,14 +443584,14 @@ }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 64236416, + "vtable_address": 64240320, "methods": [ - 22303616, - 22303680, - 22299872, - 22299888, - 22299904, - 22303808 + 22306432, + 22306496, + 22302688, + 22302704, + 22302720, + 22306624 ], "bases": [ { @@ -443656,23 +443656,23 @@ }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 64236480, + "vtable_address": 64240384, "methods": [ - 22303648, - 22303744, - 29643894, + 22306464, + 22306560, + 29647734, 16248800, 16683664, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002080, 15997088, 16365920, 12011504, 16044656, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018624, 15990128 @@ -443740,14 +443740,14 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 64237008, + "vtable_address": 64240912, "methods": [ - 22302976, - 22303040, - 22299680, - 22299696, - 22299712, - 22303168 + 22305792, + 22305856, + 22302496, + 22302512, + 22302528, + 22305984 ], "bases": [ { @@ -443812,23 +443812,23 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 64237072, + "vtable_address": 64240976, "methods": [ - 22303008, - 22303104, - 29643894, + 22305824, + 22305920, + 29647734, 16249088, 16735792, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006064, 15997072, 16367280, 12011504, 16123520, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018688, 15990160 @@ -443896,14 +443896,14 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 64237600, + "vtable_address": 64241504, "methods": [ + 22305152, + 22305216, + 22302304, + 22302320, 22302336, - 22302400, - 22299488, - 22299504, - 22299520, - 22302528 + 22305344 ], "bases": [ { @@ -443968,23 +443968,23 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 64237664, + "vtable_address": 64241568, "methods": [ - 22302368, - 22302464, - 29643894, + 22305184, + 22305280, + 29647734, 16249248, 16732352, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006352, 15997056, 16368032, 12011504, 16102208, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018720, 15990176 @@ -444052,14 +444052,14 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 64238192, + "vtable_address": 64242096, "methods": [ - 22301696, - 22301760, - 22299296, - 22299312, - 22299328, - 22301888 + 22304512, + 22304576, + 22302112, + 22302128, + 22302144, + 22304704 ], "bases": [ { @@ -444124,23 +444124,23 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 64238256, + "vtable_address": 64242160, "methods": [ - 22301728, - 22301824, - 29643894, + 22304544, + 22304640, + 29647734, 16249392, 16735584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006496, 15997040, 16368720, 12011504, 16044816, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018752, 15990192 @@ -444208,14 +444208,14 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 64238784, + "vtable_address": 64242688, "methods": [ - 22301056, - 22301120, - 22299104, - 22299120, - 22299136, - 22301248 + 22303872, + 22303936, + 22301920, + 22301936, + 22301952, + 22304064 ], "bases": [ { @@ -444280,23 +444280,23 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 64238848, + "vtable_address": 64242752, "methods": [ - 22301088, - 22301184, - 29643894, + 22303904, + 22304000, + 29647734, 16249552, 16732528, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16006704, 15997024, 16369312, 12011504, 16102624, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018784, 15990208 @@ -444364,14 +444364,14 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 64239376, + "vtable_address": 64243280, "methods": [ - 22300416, - 22300480, - 22298912, - 22298928, - 22298944, - 22300608 + 22303232, + 22303296, + 22301728, + 22301744, + 22301760, + 22303424 ], "bases": [ { @@ -444436,23 +444436,23 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 64239440, + "vtable_address": 64243344, "methods": [ - 22300448, - 22300544, - 29643894, + 22303264, + 22303360, + 29647734, 16251296, 16685440, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003776, 15996864, 16378352, 12011504, 16101824, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019168, 15990400 @@ -444520,14 +444520,14 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 64242360, + "vtable_address": 64246264, "methods": [ - 22386512, - 22386576, - 22377664, - 22377680, - 22377696, - 22386704 + 22389328, + 22389392, + 22380480, + 22380496, + 22380512, + 22389520 ], "bases": [ { @@ -444592,23 +444592,23 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 64242424, + "vtable_address": 64246328, "methods": [ - 22386544, - 22386640, - 29643894, + 22389360, + 22389456, + 29647734, 16249872, 16684016, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002464, 15996992, 16370736, 12011504, 16110784, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018848, 15990240 @@ -444676,14 +444676,14 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 64241768, + "vtable_address": 64245672, "methods": [ - 22387152, - 22387216, - 22377856, - 22377872, - 22377888, - 22387344 + 22389968, + 22390032, + 22380672, + 22380688, + 22380704, + 22390160 ], "bases": [ { @@ -444748,23 +444748,23 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 64241832, + "vtable_address": 64245736, "methods": [ - 22387184, - 22387280, - 29643894, + 22390000, + 22390096, + 29647734, 16249712, 16683872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002240, 15997008, 16370000, 12011504, 16110336, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018816, 15990224 @@ -444832,14 +444832,14 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 64244792, + "vtable_address": 64248696, "methods": [ - 22383936, - 22384000, - 22376896, - 22376912, - 22376928, - 22384128 + 22386752, + 22386816, + 22379712, + 22379728, + 22379744, + 22386944 ], "bases": [ { @@ -444904,23 +444904,23 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 64244856, + "vtable_address": 64248760, "methods": [ - 22383968, - 22384064, - 29643894, + 22386784, + 22386880, + 29647734, 16251584, 16685584, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003984, 15996832, 16380144, 12011504, 16054064, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019232, 15990432 @@ -444988,14 +444988,14 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 64242952, + "vtable_address": 64246856, "methods": [ - 22385856, - 22385920, - 22377472, - 22377488, - 22377504, - 22386048 + 22388672, + 22388736, + 22380288, + 22380304, + 22380320, + 22388864 ], "bases": [ { @@ -445060,23 +445060,23 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 64243016, + "vtable_address": 64246920, "methods": [ - 22385888, - 22385984, - 29643894, + 22388704, + 22388800, + 29647734, 16250304, 16684560, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16030320, 15996976, 16373584, 12011504, 16045008, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018944, 15990288 @@ -445144,14 +445144,14 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 64243544, + "vtable_address": 64247448, "methods": [ - 22385216, - 22385280, - 22377280, - 22377296, - 22377312, - 22385408 + 22388032, + 22388096, + 22380096, + 22380112, + 22380128, + 22388224 ], "bases": [ { @@ -445216,23 +445216,23 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 64243608, + "vtable_address": 64247512, "methods": [ - 22385248, - 22385344, - 29643894, + 22388064, + 22388160, + 29647734, 16250448, 16684640, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16002688, 15996960, 16374000, 12011504, 16056800, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16018976, 15990304 @@ -445300,14 +445300,14 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 64190136, + "vtable_address": 64194040, "methods": [ - 21563696, - 21563760, - 21559808, - 21559824, - 21559840, - 21563888 + 21566512, + 21566576, + 21562624, + 21562640, + 21562656, + 21566704 ], "bases": [ { @@ -445372,23 +445372,23 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 64190200, + "vtable_address": 64194104, "methods": [ - 21563728, - 21563824, - 29643894, + 21566544, + 21566640, + 29647734, 16251440, 16704576, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16010032, 15996848, 16379056, 12011504, 16163616, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019200, 15990416 @@ -445456,10 +445456,10 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 63752624, + "vtable_address": 63756528, "methods": [ - 17221344, - 17221408, + 17223648, + 17223712, 16908944, 16908960, 16908976, @@ -445528,23 +445528,23 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 63752688, + "vtable_address": 63756592, "methods": [ - 17221376, - 17221472, - 29643894, + 17223680, + 17223776, + 29647734, 15155552, 15977312, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15979056, 14852160, 15276272, 12011504, 15091712, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14833984, 14797232 @@ -445612,14 +445612,14 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 64244200, + "vtable_address": 64248104, "methods": [ - 22384576, - 22384640, - 22377088, - 22377104, - 22377120, - 22384768 + 22387392, + 22387456, + 22379904, + 22379920, + 22379936, + 22387584 ], "bases": [ { @@ -445684,23 +445684,23 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 64244264, + "vtable_address": 64248168, "methods": [ - 22384608, - 22384704, - 29643894, + 22387424, + 22387520, + 29647734, 16250592, 16684768, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16026512, 15996944, 16374672, 12011504, 16114560, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019008, 15990320 @@ -445768,14 +445768,14 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 64245384, + "vtable_address": 64249288, "methods": [ - 22383296, - 22383360, - 22376704, - 22376720, - 22376736, - 22383488 + 22386112, + 22386176, + 22379520, + 22379536, + 22379552, + 22386304 ], "bases": [ { @@ -445840,23 +445840,23 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 64245448, + "vtable_address": 64249352, "methods": [ - 22383328, - 22383424, - 29643894, + 22386144, + 22386240, + 29647734, 16250864, 16685056, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003248, 15996912, 16376304, 12011504, 16099520, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019072, 15990352 @@ -445924,14 +445924,14 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 64245976, + "vtable_address": 64249880, "methods": [ - 22382656, - 22382720, - 22376512, - 22376528, - 22376544, - 22382848 + 22385472, + 22385536, + 22379328, + 22379344, + 22379360, + 22385664 ], "bases": [ { @@ -445996,23 +445996,23 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 64246040, + "vtable_address": 64249944, "methods": [ - 22382688, - 22382784, - 29643894, + 22385504, + 22385600, + 29647734, 16251008, 16685168, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003376, 15996896, 16376976, 12011504, 16090720, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019104, 15990368 @@ -446080,14 +446080,14 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 64246584, + "vtable_address": 64250488, "methods": [ - 22382016, - 22382080, - 22376320, - 22376336, - 22376352, - 22382208 + 22384832, + 22384896, + 22379136, + 22379152, + 22379168, + 22385024 ], "bases": [ { @@ -446152,23 +446152,23 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 64246648, + "vtable_address": 64250552, "methods": [ - 22382048, - 22382144, - 29643894, + 22384864, + 22384960, + 29647734, 16251744, 16736304, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004176, 15996816, 16380768, 12011504, 16080608, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019264, 15990448 @@ -446236,14 +446236,14 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 64247176, + "vtable_address": 64251080, "methods": [ - 22381376, - 22381440, - 22376128, - 22376144, - 22376160, - 22381568 + 22384192, + 22384256, + 22378944, + 22378960, + 22378976, + 22384384 ], "bases": [ { @@ -446308,23 +446308,23 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 64247240, + "vtable_address": 64251144, "methods": [ - 22381408, - 22381504, - 29643894, + 22384224, + 22384320, + 29647734, 16251152, 16685296, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16003568, 15996880, 16377648, 12011504, 16101440, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019136, 15990384 @@ -446392,14 +446392,14 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 64247768, + "vtable_address": 64251672, "methods": [ - 22380736, - 22380800, - 22375936, - 22375952, - 22375968, - 22380928 + 22383552, + 22383616, + 22378752, + 22378768, + 22378784, + 22383744 ], "bases": [ { @@ -446464,23 +446464,23 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 64247832, + "vtable_address": 64251736, "methods": [ - 22380768, - 22380864, - 29643894, + 22383584, + 22383680, + 29647734, 16252048, 16685872, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16030400, 15996784, 16382160, 12011504, 16167136, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019328, 15990480 @@ -446548,14 +446548,14 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 64248360, + "vtable_address": 64252264, "methods": [ - 22380096, - 22380160, - 22375744, - 22375760, - 22375776, - 22380288 + 22382912, + 22382976, + 22378560, + 22378576, + 22378592, + 22383104 ], "bases": [ { @@ -446620,23 +446620,23 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 64248424, + "vtable_address": 64252328, "methods": [ - 22380128, - 22380224, - 29643894, + 22382944, + 22383040, + 29647734, 16252208, 16736432, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004528, 15996768, 16383456, 12011504, 16054320, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019360, 15990496 @@ -446704,14 +446704,14 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 64248952, + "vtable_address": 64252856, "methods": [ - 22379456, - 22379520, - 22375552, - 22375568, - 22375584, - 22379648 + 22382272, + 22382336, + 22378368, + 22378384, + 22378400, + 22382464 ], "bases": [ { @@ -446776,23 +446776,23 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 64249016, + "vtable_address": 64252920, "methods": [ - 22379488, - 22379584, - 29643894, + 22382304, + 22382400, + 29647734, 16251888, 16685728, 15986656, - 29646054, - 29642886, + 29649894, + 29646726, 16004304, 15996800, 16381360, 12011504, 16111232, - 29642796, - 29643062, + 29646636, + 29646902, 15994272, 16019296, 15990464 @@ -446860,7 +446860,7 @@ }, { "type_name": "Time to move between crouch and stand", - "vtable_address": 64023472, + "vtable_address": 64027376, "methods": [], "bases": [], "model": { @@ -446871,23 +446871,23 @@ }, { "type_name": "TournamentEvent", - "vtable_address": 63531456, + "vtable_address": 63535360, "methods": [ 15635520, 15731280, - 29643894, + 29647734, 15163872, 15810160, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14858384, 14847216, 15281760, 12011504, 15104592, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834272, 14800320 @@ -446923,23 +446923,23 @@ }, { "type_name": "TournamentMatchSetup", - "vtable_address": 63533216, + "vtable_address": 63537120, "methods": [ 15637168, 15691728, - 29643894, + 29647734, 15165616, 15793648, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14811856, 14847056, 15286688, 12011504, 15011584, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834624, 14800496 @@ -446975,23 +446975,23 @@ }, { "type_name": "TournamentPlayer", - "vtable_address": 63531136, + "vtable_address": 63535040, "methods": [ 15635152, 15734816, - 29643894, + 29647734, 15163456, 15809920, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14858080, 14846864, 15281120, 12011504, 15081840, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834208, 14800288 @@ -447027,23 +447027,23 @@ }, { "type_name": "TournamentTeam", - "vtable_address": 63531296, + "vtable_address": 63535200, "methods": [ 15635328, 15736032, - 29643894, + 29647734, 15163664, 15863728, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 15034368, 14847232, 15485360, 12011504, 15043360, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834240, 14800304 @@ -447079,9 +447079,9 @@ }, { "type_name": "TranslationTrack_t", - "vtable_address": 64627552, + "vtable_address": 64631456, "methods": [ - 28837248 + 28840960 ], "bases": [ { @@ -447103,18 +447103,18 @@ }, { "type_name": "Unknown", - "vtable_address": 64832304, + "vtable_address": 64836208, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11045698 + "offset_to_top": 11045709 } } }, { "type_name": "Unspecified", - "vtable_address": 64740296, + "vtable_address": 64744200, "methods": [], "bases": [], "model": { @@ -447125,20 +447125,20 @@ }, { "type_name": "VDataChoice( scripts/ammo.vdata )", - "vtable_address": 64123056, + "vtable_address": 64126960, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11124991 + "offset_to_top": 11125002 } } }, { "type_name": "VDataInitInfo_t", - "vtable_address": 64823488, + "vtable_address": 64827392, "methods": [ - 39222736, + 39226576, 12006480, 12006416, 12006432, @@ -447165,23 +447165,23 @@ }, { "type_name": "VacNetShot", - "vtable_address": 63580416, + "vtable_address": 63584320, "methods": [ 15674320, 15730480, - 29643894, + 29647734, 15214384, 15802272, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14817344, 14849616, 15430272, 12011504, 15050752, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14844064, 14807424 @@ -447217,18 +447217,18 @@ }, { "type_name": "Value 0-1 how far along duration (always 0 if duration is -1)", - "vtable_address": 64842608, + "vtable_address": 64846512, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11117797 + "offset_to_top": 11117808 } } }, { "type_name": "ViewAngleServerChange_t", - "vtable_address": 63353768, + "vtable_address": 63357672, "methods": [ 14321328, 14318528, @@ -447245,34 +447245,34 @@ }, { "type_name": "ViewAngleServerChange_t", - "vtable_address": 64023720, + "vtable_address": 64027624, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65728136 + "offset_to_top": 65732040 } } }, { "type_name": "WatchableMatchInfo", - "vtable_address": 63540096, + "vtable_address": 63544000, "methods": [ 15642160, 15731456, - 29643894, + 29647734, 15172880, 15811520, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14868912, 14847488, 15311872, 12011504, 15113856, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14836000, 14801184 @@ -447308,13 +447308,13 @@ }, { "type_name": "WeaponPurchaseCount_t", - "vtable_address": 63978672, + "vtable_address": 63982576, "methods": [ - 17866048, - 17867440, - 17867408, - 17867344, - 17867312 + 17868352, + 17869744, + 17869712, + 17869648, + 17869616 ], "bases": [], "model": { @@ -447325,12 +447325,12 @@ }, { "type_name": "WeaponPurchaseTracker_t", - "vtable_address": 63978728, + "vtable_address": 63982632, "methods": [ - 17866064, - 17865536, - 17865552, - 17865568 + 17868368, + 17867840, + 17867856, + 17867872 ], "bases": [], "model": { @@ -447341,18 +447341,18 @@ }, { "type_name": "Whether this weapon is safe to automatically switch to (should be false for eg. explosives that can the player may accidentally hurt themselves with)", - "vtable_address": 64122640, + "vtable_address": 64126544, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11045698 + "offset_to_top": 11045709 } } }, { "type_name": "Which 'row' to display this weapon in the HUD", - "vtable_address": 64122544, + "vtable_address": 64126448, "methods": [], "bases": [], "model": { @@ -447363,23 +447363,23 @@ }, { "type_name": "XpProgressData", - "vtable_address": 63533856, + "vtable_address": 63537760, "methods": [ 15637712, 15692112, - 29643894, + 29647734, 15166208, 15793840, 14807728, - 29646054, - 29642886, + 29649894, + 29646726, 14821520, 14846976, 15289888, 12011504, 14943488, - 29642796, - 29643062, + 29646636, + 29646902, 14810272, 14834752, 14800560 @@ -447415,34 +447415,34 @@ }, { "type_name": "albatross", - "vtable_address": 65988456, + "vtable_address": 65992360, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65990624 + "offset_to_top": 65994528 } } }, { "type_name": "animationgraph", - "vtable_address": 63496656, + "vtable_address": 63500560, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11114867 + "offset_to_top": 11114878 } } }, { "type_name": "audioparams_t", - "vtable_address": 64161264, + "vtable_address": 64165168, "methods": [ - 19877888, - 21134048, - 19876240, - 21134064 + 19880704, + 21136864, + 19879056, + 21136880 ], "bases": [], "model": { @@ -447453,7 +447453,7 @@ }, { "type_name": "coord", - "vtable_address": 63397616, + "vtable_address": 63401520, "methods": [], "bases": [ { @@ -447491,7 +447491,7 @@ "details": { "Itanium": { "offset": 43124, - "flags": 163, + "flags": 174, "bases": [] } } @@ -447541,7 +447541,7 @@ "details": { "Itanium": { "offset": 43204, - "flags": 180, + "flags": 191, "bases": [] } } @@ -447581,7 +447581,7 @@ "details": { "Itanium": { "offset": 44166, - "flags": 160, + "flags": 168, "bases": [] } } @@ -447591,7 +447591,7 @@ "details": { "Itanium": { "offset": 43228, - "flags": 124, + "flags": 135, "bases": [] } } @@ -447631,7 +447631,7 @@ "details": { "Itanium": { "offset": 42947, - "flags": 63, + "flags": 74, "bases": [] } } @@ -447651,7 +447651,7 @@ "details": { "Itanium": { "offset": 42541, - "flags": 152, + "flags": 163, "bases": [] } } @@ -447661,7 +447661,7 @@ "details": { "Itanium": { "offset": 42526, - "flags": 85, + "flags": 96, "bases": [] } } @@ -447691,7 +447691,7 @@ "details": { "Itanium": { "offset": 43073, - "flags": 190, + "flags": 201, "bases": [] } } @@ -447751,7 +447751,7 @@ "details": { "Itanium": { "offset": 42856, - "flags": 230, + "flags": 241, "bases": [] } } @@ -447761,7 +447761,7 @@ "details": { "Itanium": { "offset": 42598, - "flags": 77, + "flags": 88, "bases": [] } } @@ -447851,7 +447851,7 @@ "details": { "Itanium": { "offset": 42696, - "flags": 220, + "flags": 231, "bases": [] } } @@ -447881,7 +447881,7 @@ "details": { "Itanium": { "offset": 43109, - "flags": 148, + "flags": 159, "bases": [] } } @@ -447901,7 +447901,7 @@ "details": { "Itanium": { "offset": 43448, - "flags": 106, + "flags": 117, "bases": [] } } @@ -447911,7 +447911,7 @@ "details": { "Itanium": { "offset": 42907, - "flags": 217, + "flags": 228, "bases": [] } } @@ -447921,7 +447921,7 @@ "details": { "Itanium": { "offset": 42616, - "flags": 106, + "flags": 117, "bases": [] } } @@ -447941,7 +447941,7 @@ "details": { "Itanium": { "offset": 42799, - "flags": 120, + "flags": 131, "bases": [] } } @@ -448181,7 +448181,7 @@ "details": { "Itanium": { "offset": 43235, - "flags": 242, + "flags": 253, "bases": [] } } @@ -448231,7 +448231,7 @@ "details": { "Itanium": { "offset": 42923, - "flags": 35, + "flags": 46, "bases": [] } } @@ -448251,7 +448251,7 @@ "details": { "Itanium": { "offset": 43390, - "flags": 60, + "flags": 71, "bases": [] } } @@ -448281,7 +448281,7 @@ "details": { "Itanium": { "offset": 42628, - "flags": 87, + "flags": 98, "bases": [] } } @@ -448301,7 +448301,7 @@ "details": { "Itanium": { "offset": 43377, - "flags": 83, + "flags": 94, "bases": [] } } @@ -448311,7 +448311,7 @@ "details": { "Itanium": { "offset": 42647, - "flags": 72, + "flags": 83, "bases": [] } } @@ -448531,7 +448531,7 @@ "details": { "Itanium": { "offset": 43252, - "flags": 113, + "flags": 124, "bases": [] } } @@ -448541,7 +448541,7 @@ "details": { "Itanium": { "offset": 42695, - "flags": 178, + "flags": 189, "bases": [] } } @@ -448581,7 +448581,7 @@ "details": { "Itanium": { "offset": 43464, - "flags": 157, + "flags": 168, "bases": [] } } @@ -448591,7 +448591,7 @@ "details": { "Itanium": { "offset": 43311, - "flags": 64, + "flags": 75, "bases": [] } } @@ -448601,7 +448601,7 @@ "details": { "Itanium": { "offset": 43244, - "flags": 213, + "flags": 224, "bases": [] } } @@ -448991,7 +448991,7 @@ "details": { "Itanium": { "offset": 43429, - "flags": 147, + "flags": 158, "bases": [] } } @@ -449001,7 +449001,7 @@ "details": { "Itanium": { "offset": 42548, - "flags": 103, + "flags": 114, "bases": [] } } @@ -449031,7 +449031,7 @@ "details": { "Itanium": { "offset": 42963, - "flags": 219, + "flags": 230, "bases": [] } } @@ -449121,7 +449121,7 @@ "details": { "Itanium": { "offset": 43761, - "flags": 24, + "flags": 32, "bases": [] } } @@ -449201,7 +449201,7 @@ "details": { "Itanium": { "offset": 42827, - "flags": 244, + "flags": 255, "bases": [] } } @@ -449211,7 +449211,7 @@ "details": { "Itanium": { "offset": 42996, - "flags": 58, + "flags": 69, "bases": [] } } @@ -449221,7 +449221,7 @@ "details": { "Itanium": { "offset": 43427, - "flags": 224, + "flags": 235, "bases": [] } } @@ -449251,7 +449251,7 @@ "details": { "Itanium": { "offset": 43288, - "flags": 200, + "flags": 211, "bases": [] } } @@ -449271,7 +449271,7 @@ "details": { "Itanium": { "offset": 42707, - "flags": 157, + "flags": 168, "bases": [] } } @@ -449280,8 +449280,8 @@ "type_name": "CPlayerPawnComponent", "details": { "Itanium": { - "offset": 42648, - "flags": 247, + "offset": 42649, + "flags": 2, "bases": [] } } @@ -449291,7 +449291,7 @@ "details": { "Itanium": { "offset": 42995, - "flags": 138, + "flags": 149, "bases": [] } } @@ -449301,7 +449301,7 @@ "details": { "Itanium": { "offset": 43150, - "flags": 83, + "flags": 94, "bases": [] } } @@ -449311,7 +449311,7 @@ "details": { "Itanium": { "offset": 42617, - "flags": 242, + "flags": 253, "bases": [] } } @@ -449321,7 +449321,7 @@ "details": { "Itanium": { "offset": 43192, - "flags": 213, + "flags": 224, "bases": [] } } @@ -449351,7 +449351,7 @@ "details": { "Itanium": { "offset": 42525, - "flags": 178, + "flags": 189, "bases": [] } } @@ -449361,7 +449361,7 @@ "details": { "Itanium": { "offset": 43416, - "flags": 153, + "flags": 164, "bases": [] } } @@ -449371,7 +449371,7 @@ "details": { "Itanium": { "offset": 42660, - "flags": 199, + "flags": 210, "bases": [] } } @@ -449440,8 +449440,8 @@ "type_name": "CBaseFilter", "details": { "Itanium": { - "offset": 43035, - "flags": 248, + "offset": 43036, + "flags": 3, "bases": [] } } @@ -449451,7 +449451,7 @@ "details": { "Itanium": { "offset": 42971, - "flags": 240, + "flags": 251, "bases": [] } } @@ -449461,7 +449461,7 @@ "details": { "Itanium": { "offset": 42912, - "flags": 48, + "flags": 59, "bases": [] } } @@ -449471,7 +449471,7 @@ "details": { "Itanium": { "offset": 43438, - "flags": 241, + "flags": 252, "bases": [] } } @@ -449481,7 +449481,7 @@ "details": { "Itanium": { "offset": 43282, - "flags": 38, + "flags": 49, "bases": [] } } @@ -449501,7 +449501,7 @@ "details": { "Itanium": { "offset": 43477, - "flags": 198, + "flags": 209, "bases": [] } } @@ -449511,7 +449511,7 @@ "details": { "Itanium": { "offset": 43143, - "flags": 36, + "flags": 47, "bases": [] } } @@ -449530,7 +449530,7 @@ "type_name": "CPlayerPawnComponent", "details": { "Itanium": { - "offset": 265155, + "offset": 265170, "flags": 192, "bases": [] } @@ -449571,7 +449571,7 @@ "details": { "Itanium": { "offset": 42732, - "flags": 10, + "flags": 21, "bases": [] } } @@ -449581,7 +449581,7 @@ "details": { "Itanium": { "offset": 42723, - "flags": 206, + "flags": 217, "bases": [] } } @@ -449631,7 +449631,7 @@ "details": { "Itanium": { "offset": 43468, - "flags": 195, + "flags": 206, "bases": [] } } @@ -449661,7 +449661,7 @@ "details": { "Itanium": { "offset": 42643, - "flags": 34, + "flags": 45, "bases": [] } } @@ -449681,7 +449681,7 @@ "details": { "Itanium": { "offset": 42553, - "flags": 83, + "flags": 94, "bases": [] } } @@ -449701,7 +449701,7 @@ "details": { "Itanium": { "offset": 36244, - "flags": 96, + "flags": 160, "bases": [] } } @@ -449711,7 +449711,7 @@ "details": { "Itanium": { "offset": 43313, - "flags": 240, + "flags": 251, "bases": [] } } @@ -449731,7 +449731,7 @@ "details": { "Itanium": { "offset": 43347, - "flags": 221, + "flags": 232, "bases": [] } } @@ -449801,7 +449801,7 @@ "details": { "Itanium": { "offset": 42975, - "flags": 241, + "flags": 252, "bases": [] } } @@ -449861,7 +449861,7 @@ "details": { "Itanium": { "offset": 42877, - "flags": 83, + "flags": 94, "bases": [] } } @@ -449921,7 +449921,7 @@ "details": { "Itanium": { "offset": 42683, - "flags": 128, + "flags": 139, "bases": [] } } @@ -449941,7 +449941,7 @@ "details": { "Itanium": { "offset": 42782, - "flags": 152, + "flags": 163, "bases": [] } } @@ -450111,7 +450111,7 @@ "details": { "Itanium": { "offset": 45095, - "flags": 104, + "flags": 112, "bases": [] } } @@ -450131,7 +450131,7 @@ "details": { "Itanium": { "offset": 43160, - "flags": 36, + "flags": 47, "bases": [] } } @@ -450141,7 +450141,7 @@ "details": { "Itanium": { "offset": 43215, - "flags": 14, + "flags": 25, "bases": [] } } @@ -450171,7 +450171,7 @@ "details": { "Itanium": { "offset": 42543, - "flags": 136, + "flags": 147, "bases": [] } } @@ -450201,7 +450201,7 @@ "details": { "Itanium": { "offset": 43089, - "flags": 51, + "flags": 62, "bases": [] } } @@ -450211,7 +450211,7 @@ "details": { "Itanium": { "offset": 42768, - "flags": 104, + "flags": 115, "bases": [] } } @@ -450300,8 +450300,8 @@ "type_name": "C_BaseEntity", "details": { "Itanium": { - "offset": 251709, - "flags": 144, + "offset": 251724, + "flags": 208, "bases": [] } } @@ -450310,8 +450310,8 @@ "type_name": "beige", "details": { "Itanium": { - "offset": 257767, - "flags": 128, + "offset": 257782, + "flags": 192, "bases": [] } } @@ -450370,8 +450370,8 @@ "type_name": "CNmEventConsumerAttributes", "details": { "Itanium": { - "offset": 106302, - "flags": 208, + "offset": 106314, + "flags": 176, "bases": [] } } @@ -450391,7 +450391,7 @@ "details": { "Itanium": { "offset": 43485, - "flags": 123, + "flags": 134, "bases": [] } } @@ -450421,7 +450421,7 @@ "details": { "Itanium": { "offset": 43012, - "flags": 121, + "flags": 132, "bases": [] } } @@ -450451,7 +450451,7 @@ "details": { "Itanium": { "offset": 43767, - "flags": 8, + "flags": 16, "bases": [] } } @@ -450500,8 +450500,8 @@ "type_name": "CPulseCell_Base", "details": { "Itanium": { - "offset": 42680, - "flags": 246, + "offset": 42681, + "flags": 1, "bases": [] } } @@ -450520,8 +450520,8 @@ "type_name": "CPulseCell_BaseFlow", "details": { "Itanium": { - "offset": 155330, - "flags": 16, + "offset": 155345, + "flags": 48, "bases": [] } } @@ -450531,7 +450531,7 @@ "details": { "Itanium": { "offset": 44634, - "flags": 216, + "flags": 224, "bases": [] } } @@ -450541,7 +450541,7 @@ "details": { "Itanium": { "offset": 44634, - "flags": 216, + "flags": 224, "bases": [] } } @@ -450551,7 +450551,7 @@ "details": { "Itanium": { "offset": 43374, - "flags": 84, + "flags": 95, "bases": [] } } @@ -450561,7 +450561,7 @@ "details": { "Itanium": { "offset": 43374, - "flags": 84, + "flags": 95, "bases": [] } } @@ -450571,7 +450571,7 @@ "details": { "Itanium": { "offset": 43374, - "flags": 84, + "flags": 95, "bases": [] } } @@ -450591,7 +450591,7 @@ "details": { "Itanium": { "offset": 43444, - "flags": 142, + "flags": 153, "bases": [] } } @@ -450610,8 +450610,8 @@ "type_name": "CPulseCell_Base", "details": { "Itanium": { - "offset": 155286, - "flags": 240, + "offset": 155302, + "flags": 16, "bases": [] } } @@ -450630,7 +450630,7 @@ "type_name": "CPulseCell_BaseFlow", "details": { "Itanium": { - "offset": 155128, + "offset": 155143, "flags": 80, "bases": [] } @@ -450671,7 +450671,7 @@ "details": { "Itanium": { "offset": 43344, - "flags": 147, + "flags": 158, "bases": [] } } @@ -450691,7 +450691,7 @@ "details": { "Itanium": { "offset": 43090, - "flags": 236, + "flags": 247, "bases": [] } } @@ -450700,8 +450700,8 @@ "type_name": "CPulseCell_Base", "details": { "Itanium": { - "offset": 155244, - "flags": 0, + "offset": 155259, + "flags": 32, "bases": [] } } @@ -450710,8 +450710,8 @@ "type_name": "CPulseCell_Base", "details": { "Itanium": { - "offset": 155239, - "flags": 224, + "offset": 155255, + "flags": 0, "bases": [] } } @@ -450731,7 +450731,7 @@ "details": { "Itanium": { "offset": 43321, - "flags": 101, + "flags": 112, "bases": [] } } @@ -450751,7 +450751,7 @@ "details": { "Itanium": { "offset": 43080, - "flags": 136, + "flags": 147, "bases": [] } } @@ -450780,8 +450780,8 @@ "type_name": "CPulseCell_BaseRequirement", "details": { "Itanium": { - "offset": 155648, - "flags": 112, + "offset": 155663, + "flags": 176, "bases": [] } } @@ -450821,7 +450821,7 @@ "details": { "Itanium": { "offset": 44609, - "flags": 200, + "flags": 208, "bases": [] } } @@ -450841,7 +450841,7 @@ "details": { "Itanium": { "offset": 44421, - "flags": 184, + "flags": 192, "bases": [] } } @@ -450851,7 +450851,7 @@ "details": { "Itanium": { "offset": 42714, - "flags": 162, + "flags": 173, "bases": [] } } @@ -450951,7 +450951,7 @@ "details": { "Itanium": { "offset": 42559, - "flags": 54, + "flags": 65, "bases": [] } } @@ -450961,7 +450961,7 @@ "details": { "Itanium": { "offset": 43135, - "flags": 121, + "flags": 132, "bases": [] } } @@ -451021,7 +451021,7 @@ "details": { "Itanium": { "offset": 42913, - "flags": 240, + "flags": 251, "bases": [] } } @@ -451051,7 +451051,7 @@ "details": { "Itanium": { "offset": 43125, - "flags": 118, + "flags": 129, "bases": [] } } @@ -451091,7 +451091,7 @@ "details": { "Itanium": { "offset": 42716, - "flags": 221, + "flags": 232, "bases": [] } } @@ -451101,7 +451101,7 @@ "details": { "Itanium": { "offset": 42689, - "flags": 70, + "flags": 81, "bases": [] } } @@ -451121,7 +451121,7 @@ "details": { "Itanium": { "offset": 42605, - "flags": 41, + "flags": 52, "bases": [] } } @@ -451141,7 +451141,7 @@ "details": { "Itanium": { "offset": 42605, - "flags": 41, + "flags": 52, "bases": [] } } @@ -451170,8 +451170,8 @@ "type_name": "CNmEvent", "details": { "Itanium": { - "offset": 229370, - "flags": 0, + "offset": 229385, + "flags": 64, "bases": [] } } @@ -451180,8 +451180,8 @@ "type_name": "CNmParameterizedBlendNode::CDefinition", "details": { "Itanium": { - "offset": 229484, - "flags": 192, + "offset": 229500, + "flags": 0, "bases": [] } } @@ -451191,7 +451191,7 @@ "details": { "Itanium": { "offset": 42851, - "flags": 27, + "flags": 38, "bases": [] } } @@ -451201,7 +451201,7 @@ "details": { "Itanium": { "offset": 42843, - "flags": 58, + "flags": 69, "bases": [] } } @@ -451211,7 +451211,7 @@ "details": { "Itanium": { "offset": 42843, - "flags": 58, + "flags": 69, "bases": [] } } @@ -451221,7 +451221,7 @@ "details": { "Itanium": { "offset": 42521, - "flags": 42, + "flags": 53, "bases": [] } } @@ -451261,7 +451261,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451271,7 +451271,7 @@ "details": { "Itanium": { "offset": 42791, - "flags": 34, + "flags": 45, "bases": [] } } @@ -451281,7 +451281,7 @@ "details": { "Itanium": { "offset": 42791, - "flags": 34, + "flags": 45, "bases": [] } } @@ -451291,7 +451291,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451301,7 +451301,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451311,7 +451311,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451321,7 +451321,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451331,7 +451331,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451341,7 +451341,7 @@ "details": { "Itanium": { "offset": 43031, - "flags": 81, + "flags": 92, "bases": [] } } @@ -451360,8 +451360,8 @@ "type_name": "CNmPoseNode::CDefinition", "details": { "Itanium": { - "offset": 229791, - "flags": 32, + "offset": 229806, + "flags": 96, "bases": [] } } @@ -451411,7 +451411,7 @@ "details": { "Itanium": { "offset": 42750, - "flags": 211, + "flags": 222, "bases": [] } } @@ -451480,8 +451480,8 @@ "type_name": "CNmTargetValueNode::CDefinition", "details": { "Itanium": { - "offset": 229913, - "flags": 160, + "offset": 229928, + "flags": 224, "bases": [] } } @@ -451490,8 +451490,8 @@ "type_name": "CNmVectorValueNode::CDefinition", "details": { "Itanium": { - "offset": 229908, - "flags": 160, + "offset": 229923, + "flags": 224, "bases": [] } } @@ -451500,8 +451500,8 @@ "type_name": "CNmFloatValueNode::CDefinition", "details": { "Itanium": { - "offset": 229903, - "flags": 160, + "offset": 229918, + "flags": 224, "bases": [] } } @@ -451510,8 +451510,8 @@ "type_name": "CNmIDValueNode::CDefinition", "details": { "Itanium": { - "offset": 229898, - "flags": 160, + "offset": 229913, + "flags": 224, "bases": [] } } @@ -451520,8 +451520,8 @@ "type_name": "CNmBoolValueNode::CDefinition", "details": { "Itanium": { - "offset": 229893, - "flags": 160, + "offset": 229908, + "flags": 224, "bases": [] } } @@ -451530,8 +451530,8 @@ "type_name": "CNmPoseNode::CDefinition", "details": { "Itanium": { - "offset": 229977, - "flags": 144, + "offset": 229992, + "flags": 208, "bases": [] } } @@ -451551,7 +451551,7 @@ "details": { "Itanium": { "offset": 43374, - "flags": 187, + "flags": 198, "bases": [] } } @@ -451661,7 +451661,7 @@ "details": { "Itanium": { "offset": 42791, - "flags": 34, + "flags": 45, "bases": [] } } @@ -451671,7 +451671,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451691,7 +451691,7 @@ "details": { "Itanium": { "offset": 42512, - "flags": 156, + "flags": 167, "bases": [] } } @@ -451701,7 +451701,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451721,7 +451721,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451741,7 +451741,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451751,7 +451751,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451771,7 +451771,7 @@ "details": { "Itanium": { "offset": 42791, - "flags": 34, + "flags": 45, "bases": [] } } @@ -451791,7 +451791,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451801,7 +451801,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451841,7 +451841,7 @@ "details": { "Itanium": { "offset": 43220, - "flags": 219, + "flags": 230, "bases": [] } } @@ -451850,8 +451850,8 @@ "type_name": "CNmPoseNode::CDefinition", "details": { "Itanium": { - "offset": 230649, - "flags": 224, + "offset": 230665, + "flags": 32, "bases": [] } } @@ -451860,8 +451860,8 @@ "type_name": "CNmPoseNode::CDefinition", "details": { "Itanium": { - "offset": 230644, - "flags": 224, + "offset": 230660, + "flags": 32, "bases": [] } } @@ -451871,7 +451871,7 @@ "details": { "Itanium": { "offset": 43210, - "flags": 112, + "flags": 123, "bases": [] } } @@ -451881,7 +451881,7 @@ "details": { "Itanium": { "offset": 44402, - "flags": 160, + "flags": 168, "bases": [] } } @@ -451891,7 +451891,7 @@ "details": { "Itanium": { "offset": 42807, - "flags": 66, + "flags": 77, "bases": [] } } @@ -451901,7 +451901,7 @@ "details": { "Itanium": { "offset": 42915, - "flags": 154, + "flags": 165, "bases": [] } } @@ -451911,7 +451911,7 @@ "details": { "Itanium": { "offset": 42915, - "flags": 154, + "flags": 165, "bases": [] } } @@ -451921,7 +451921,7 @@ "details": { "Itanium": { "offset": 42915, - "flags": 154, + "flags": 165, "bases": [] } } @@ -451931,7 +451931,7 @@ "details": { "Itanium": { "offset": 42915, - "flags": 154, + "flags": 165, "bases": [] } } @@ -451940,8 +451940,8 @@ "type_name": "CNmSpeedScaleBaseNode::CDefinition", "details": { "Itanium": { - "offset": 230899, - "flags": 224, + "offset": 230915, + "flags": 32, "bases": [] } } @@ -451950,8 +451950,8 @@ "type_name": "CNmSpeedScaleBaseNode::CDefinition", "details": { "Itanium": { - "offset": 230894, - "flags": 208, + "offset": 230910, + "flags": 16, "bases": [] } } @@ -451960,8 +451960,8 @@ "type_name": "CNmSpeedScaleBaseNode::CDefinition", "details": { "Itanium": { - "offset": 230889, - "flags": 192, + "offset": 230905, + "flags": 0, "bases": [] } } @@ -451971,7 +451971,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -451991,7 +451991,7 @@ "details": { "Itanium": { "offset": 43424, - "flags": 178, + "flags": 189, "bases": [] } } @@ -452000,8 +452000,8 @@ "type_name": "CNmBoolValueNode::CDefinition", "details": { "Itanium": { - "offset": 231038, - "flags": 128, + "offset": 231053, + "flags": 192, "bases": [] } } @@ -452021,7 +452021,7 @@ "details": { "Itanium": { "offset": 42585, - "flags": 106, + "flags": 117, "bases": [] } } @@ -452031,7 +452031,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -452041,7 +452041,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -452051,7 +452051,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -452061,7 +452061,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -452091,7 +452091,7 @@ "details": { "Itanium": { "offset": 43130, - "flags": 113, + "flags": 124, "bases": [] } } @@ -452101,7 +452101,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -452121,7 +452121,7 @@ "details": { "Itanium": { "offset": 42558, - "flags": 65, + "flags": 76, "bases": [] } } @@ -452219,13 +452219,13 @@ ], "model": { "Itanium": { - "offset_to_top": 11114867 + "offset_to_top": 11114878 } } }, { "type_name": "dt", - "vtable_address": 64746904, + "vtable_address": 64750808, "methods": [], "bases": [], "model": { @@ -452236,7 +452236,7 @@ }, { "type_name": "dt", - "vtable_address": 64755000, + "vtable_address": 64758904, "methods": [], "bases": [], "model": { @@ -452247,7 +452247,7 @@ }, { "type_name": "embree::AccelData", - "vtable_address": 64801440, + "vtable_address": 64805344, "methods": [], "bases": [ { @@ -452269,7 +452269,7 @@ }, { "type_name": "embree::AccelData", - "vtable_address": 64893088, + "vtable_address": 64896992, "methods": [], "bases": [ { @@ -452291,16 +452291,16 @@ }, { "type_name": "embree::AccelInstance", - "vtable_address": 64802216, + "vtable_address": 64806120, "methods": [ - 35789856, - 35790992, - 33281616, - 33281712, - 35789936, - 35789792, - 35789680, - 35789728 + 35793696, + 35794832, + 33285456, + 33285552, + 35793776, + 35793632, + 35793520, + 35793568 ], "bases": [ { @@ -452344,7 +452344,7 @@ }, { "type_name": "embree::AccelN", - "vtable_address": 64782704, + "vtable_address": 64786608, "methods": [], "bases": [ { @@ -452388,7 +452388,7 @@ }, { "type_name": "embree::AccelSet", - "vtable_address": 64782832, + "vtable_address": 64786736, "methods": [], "bases": [ { @@ -452421,14 +452421,14 @@ }, { "type_name": "embree::BVHN<4>", - "vtable_address": 64801456, + "vtable_address": 64805360, "methods": [ - 35661296, - 35662176, - 33281616, - 33281712, - 33292784, - 35660512 + 35665136, + 35666016, + 33285456, + 33285552, + 33296624, + 35664352 ], "bases": [ { @@ -452461,14 +452461,14 @@ }, { "type_name": "embree::BVHN<8>", - "vtable_address": 64893104, + "vtable_address": 64897008, "methods": [ - 47933888, - 47934768, - 33281616, - 33281712, - 33292784, - 47933088 + 47937792, + 47938672, + 33285456, + 33285552, + 33296624, + 47936992 ], "bases": [ { @@ -452501,12 +452501,12 @@ }, { "type_name": "embree::Buffer", - "vtable_address": 64783832, + "vtable_address": 64787736, "methods": [ - 33417120, - 33416960, - 33281616, - 33281712 + 33420960, + 33420800, + 33285456, + 33285552 ], "bases": [ { @@ -452528,7 +452528,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64804816, + "vtable_address": 64808720, "methods": [], "bases": [ { @@ -452550,7 +452550,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64805896, + "vtable_address": 64809800, "methods": [], "bases": [ { @@ -452572,7 +452572,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64807072, + "vtable_address": 64810976, "methods": [], "bases": [ { @@ -452594,7 +452594,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64808296, + "vtable_address": 64812200, "methods": [], "bases": [ { @@ -452616,7 +452616,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64812064, + "vtable_address": 64815968, "methods": [], "bases": [ { @@ -452638,7 +452638,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64814800, + "vtable_address": 64818704, "methods": [], "bases": [ { @@ -452660,7 +452660,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64823104, + "vtable_address": 64827008, "methods": [], "bases": [ { @@ -452682,7 +452682,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64864312, + "vtable_address": 64868216, "methods": [], "bases": [ { @@ -452704,7 +452704,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64865872, + "vtable_address": 64869776, "methods": [], "bases": [ { @@ -452726,7 +452726,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64867744, + "vtable_address": 64871648, "methods": [], "bases": [ { @@ -452748,7 +452748,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64872928, + "vtable_address": 64876832, "methods": [], "bases": [ { @@ -452770,7 +452770,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64876408, + "vtable_address": 64880312, "methods": [], "bases": [ { @@ -452792,7 +452792,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64888600, + "vtable_address": 64892504, "methods": [], "bases": [ { @@ -452814,7 +452814,7 @@ }, { "type_name": "embree::Builder", - "vtable_address": 64890856, + "vtable_address": 64894760, "methods": [], "bases": [ { @@ -452836,29 +452836,52 @@ }, { "type_name": "embree::CurveGeometry", - "vtable_address": 64789152, - "methods": [ - 33819408, - 33822768, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64793056, + "methods": [ + 33823248, + 33826608, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, + 33300016, + 33299824, + 33299632, 33299440, - 33469248, 33299248, 33299056, 33298864, @@ -452867,32 +452890,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -452925,12 +452925,12 @@ }, { "type_name": "embree::CurveNi<4>::Type", - "vtable_address": 64802296, + "vtable_address": 64806200, "methods": [ - 34112736, - 34112384, - 34112752, - 34112784 + 34116576, + 34116224, + 34116592, + 34116624 ], "bases": [ { @@ -452952,12 +452952,12 @@ }, { "type_name": "embree::CurveNi<8>::Type", - "vtable_address": 64802344, + "vtable_address": 64806248, "methods": [ - 44000720, - 44000208, - 44000736, - 44000768 + 44004624, + 44004112, + 44004640, + 44004672 ], "bases": [ { @@ -452979,12 +452979,12 @@ }, { "type_name": "embree::CurveNiMB<4>::Type", - "vtable_address": 64802440, + "vtable_address": 64806344, "methods": [ - 34112960, - 34112448, - 34112976, - 34113008 + 34116800, + 34116288, + 34116816, + 34116848 ], "bases": [ { @@ -453006,12 +453006,12 @@ }, { "type_name": "embree::CurveNiMB<8>::Type", - "vtable_address": 64802488, + "vtable_address": 64806392, "methods": [ - 44001008, - 44000320, - 44001024, - 44001056 + 44004912, + 44004224, + 44004928, + 44004960 ], "bases": [ { @@ -453033,12 +453033,12 @@ }, { "type_name": "embree::CurveNv<4>::Type", - "vtable_address": 64802392, + "vtable_address": 64806296, "methods": [ - 34112512, - 34112320, - 34112528, - 34112560 + 34116352, + 34116160, + 34116368, + 34116400 ], "bases": [ { @@ -453060,12 +453060,12 @@ }, { "type_name": "embree::CurveNv<8>::Type", - "vtable_address": 64802824, + "vtable_address": 64806728, "methods": [ - 44000432, - 44000096, - 44000448, - 44000480 + 44004336, + 44004000, + 44004352, + 44004384 ], "bases": [ { @@ -453087,13 +453087,13 @@ }, { "type_name": "embree::Device", - "vtable_address": 64782496, + "vtable_address": 64786400, "methods": [ - 33279248, - 33278848, - 33281616, - 33281712, - 33273856 + 33283088, + 33282688, + 33285456, + 33285552, + 33277696 ], "bases": [ { @@ -453136,9 +453136,9 @@ }, { "type_name": "embree::Device", - "vtable_address": 64782552, + "vtable_address": 64786456, "methods": [ - 33274096 + 33277936 ], "bases": [ { @@ -453181,14 +453181,14 @@ }, { "type_name": "embree::FileStream", - "vtable_address": 64783512, + "vtable_address": 64787416, "methods": [ - 33347600, - 33346560, - 33281616, - 33281712, - 33345600, - 33347344 + 33351440, + 33350400, + 33285456, + 33285552, + 33349440, + 33351184 ], "bases": [ { @@ -453221,7 +453221,7 @@ }, { "type_name": "embree::Geometry", - "vtable_address": 64782816, + "vtable_address": 64786720, "methods": [], "bases": [ { @@ -453243,29 +453243,52 @@ }, { "type_name": "embree::Geometry", - "vtable_address": 64784400, - "methods": [ - 33470384, - 33470464, - 33281616, - 33281712, - 33468368, - 33468400, + "vtable_address": 64788304, + "methods": [ + 33474224, + 33474304, + 33285456, + 33285552, + 33472208, + 33472240, + 33304240, + 33304048, + 33472384, + 33472288, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33303856, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33301552, + 33301360, + 33301168, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, 33300400, 33300208, - 33468544, - 33468448, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, 33300016, 33299824, 33299632, - 33468496, 33299440, - 33469248, 33299248, 33299056, 33298864, @@ -453274,32 +453297,9 @@ 33298288, 33298096, 33297904, - 33293440, 33297712, 33297520, - 33297328, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297328 ], "bases": [ { @@ -453321,7 +453321,7 @@ }, { "type_name": "embree::GridMesh", - "vtable_address": 64797896, + "vtable_address": 64801800, "methods": [], "bases": [ { @@ -453354,29 +453354,52 @@ }, { "type_name": "embree::GridMesh", - "vtable_address": 64798368, - "methods": [ - 34092768, - 34093632, - 33281616, - 33281712, - 33468368, - 34089120, - 34087888, + "vtable_address": 64802272, + "methods": [ + 34096608, + 34097472, + 33285456, + 33285552, + 33472208, + 34092960, + 34091728, + 33304048, + 33472384, + 34091248, + 34090656, + 33472352, + 34089744, + 33472464, + 33472320, + 34089696, + 33303664, + 33303472, + 33472336, + 34096576, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34096592, + 34089728, + 34094208, + 34090112, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34087408, - 34086816, - 33468512, - 34085904, - 33468624, - 33468480, - 34085856, + 33300016, 33299824, 33299632, - 33468496, - 34092736, - 33469248, + 33299440, 33299248, 33299056, 33298864, @@ -453385,32 +453408,9 @@ 33298288, 33298096, 33297904, - 34092752, - 34085888, - 34090368, - 34086272, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -453443,7 +453443,7 @@ }, { "type_name": "embree::GridMesh", - "vtable_address": 64860032, + "vtable_address": 64863936, "methods": [], "bases": [ { @@ -453476,7 +453476,7 @@ }, { "type_name": "embree::GridMesh", - "vtable_address": 64904048, + "vtable_address": 64907952, "methods": [], "bases": [ { @@ -453509,7 +453509,7 @@ }, { "type_name": "embree::Instance", - "vtable_address": 64785880, + "vtable_address": 64789784, "methods": [], "bases": [ { @@ -453542,29 +453542,52 @@ }, { "type_name": "embree::Instance", - "vtable_address": 64786360, - "methods": [ - 33480160, - 33480432, - 33281616, - 33281712, - 33468368, - 33479296, - 33300400, + "vtable_address": 64790264, + "methods": [ + 33484000, + 33484272, + 33285456, + 33285552, + 33472208, + 33483136, + 33304240, + 33304048, + 33472384, + 33481984, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33483408, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33478768, + 33301360, + 33301168, + 33472672, + 33472880, + 33484112, + 33483520, + 33483760, + 33478784, 33300208, - 33468544, - 33478144, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33479568, + 33300016, 33299824, 33299632, - 33468496, 33299440, - 33469248, 33299248, 33299056, 33298864, @@ -453573,33 +453596,10 @@ 33298288, 33298096, 33297904, - 33293440, - 33474928, + 33297712, 33297520, 33297328, - 33468832, - 33469040, - 33480272, - 33479680, - 33479920, - 33474944, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33570896 + 33574736 ], "bases": [ { @@ -453632,7 +453632,7 @@ }, { "type_name": "embree::Instance", - "vtable_address": 64850424, + "vtable_address": 64854328, "methods": [], "bases": [ { @@ -453665,7 +453665,7 @@ }, { "type_name": "embree::Instance", - "vtable_address": 64894440, + "vtable_address": 64898344, "methods": [], "bases": [ { @@ -453698,12 +453698,12 @@ }, { "type_name": "embree::InstancePrimitive::Type", - "vtable_address": 64799992, + "vtable_address": 64803896, "methods": [ - 34112240, - 34112304, - 34112304, - 34112256 + 34116080, + 34116144, + 34116144, + 34116096 ], "bases": [ { @@ -453725,14 +453725,14 @@ }, { "type_name": "embree::LineCommentFilter", - "vtable_address": 64783640, + "vtable_address": 64787544, "methods": [ - 33346944, - 33348000, - 33281616, - 33281712, - 33354752, - 33353536 + 33350784, + 33351840, + 33285456, + 33285552, + 33358592, + 33357376 ], "bases": [ { @@ -453765,7 +453765,7 @@ }, { "type_name": "embree::LineSegments", - "vtable_address": 64796936, + "vtable_address": 64800840, "methods": [], "bases": [ { @@ -453798,29 +453798,52 @@ }, { "type_name": "embree::LineSegments", - "vtable_address": 64797408, - "methods": [ - 34079520, - 34080864, - 33281616, - 33281712, - 33468368, - 34070720, - 34072256, + "vtable_address": 64801312, + "methods": [ + 34083360, + 34084704, + 33285456, + 33285552, + 33472208, + 34074560, + 34076096, + 33304048, + 33472384, + 34079056, + 34073456, + 33472352, + 34070864, + 33472464, + 33472320, + 34070832, + 34070784, + 34070816, + 33472336, + 34071376, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34081616, + 34071360, + 34077328, + 34072640, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34075216, - 34069616, - 33468512, - 34067024, - 33468624, - 33468480, - 34066992, - 34066944, - 34066976, - 33468496, - 34067536, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -453829,32 +453852,9 @@ 33298288, 33298096, 33297904, - 34077776, - 34067520, - 34073488, - 34068800, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -453887,7 +453887,7 @@ }, { "type_name": "embree::LineSegments", - "vtable_address": 64859552, + "vtable_address": 64863456, "methods": [], "bases": [ { @@ -453920,7 +453920,7 @@ }, { "type_name": "embree::LineSegments", - "vtable_address": 64903568, + "vtable_address": 64907472, "methods": [], "bases": [ { @@ -453953,12 +453953,12 @@ }, { "type_name": "embree::Object::Type", - "vtable_address": 64799944, + "vtable_address": 64803848, "methods": [ - 34112208, - 34112304, - 34112304, - 34112224 + 34116048, + 34116144, + 34116144, + 34116064 ], "bases": [ { @@ -453980,7 +453980,7 @@ }, { "type_name": "embree::Points", - "vtable_address": 64798856, + "vtable_address": 64802760, "methods": [], "bases": [ { @@ -454013,29 +454013,52 @@ }, { "type_name": "embree::Points", - "vtable_address": 64799328, - "methods": [ - 34107760, - 34108992, - 33281616, - 33281712, - 33468368, - 34097648, - 34099424, + "vtable_address": 64803232, + "methods": [ + 34111600, + 34112832, + 33285456, + 33285552, + 33472208, + 34101488, + 34103264, + 33304048, + 33472384, + 34100736, + 34099904, + 33472352, + 34098784, + 33472464, + 33472320, + 34098752, + 33303664, + 34098736, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34107440, + 34099248, + 34104496, + 34099328, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34096896, - 34096064, - 33468512, - 34094944, - 33468624, - 33468480, - 34094912, + 33300016, 33299824, - 34094896, - 33468496, + 33299632, 33299440, - 33469248, 33299248, 33299056, 33298864, @@ -454044,32 +454067,9 @@ 33298288, 33298096, 33297904, - 34103600, - 34095408, - 34100656, - 34095488, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -454102,7 +454102,7 @@ }, { "type_name": "embree::Points", - "vtable_address": 64860512, + "vtable_address": 64864416, "methods": [], "bases": [ { @@ -454135,7 +454135,7 @@ }, { "type_name": "embree::Points", - "vtable_address": 64904528, + "vtable_address": 64908432, "methods": [], "bases": [ { @@ -454168,7 +454168,7 @@ }, { "type_name": "embree::PrimitiveType", - "vtable_address": 64799880, + "vtable_address": 64803784, "methods": [], "bases": [], "model": { @@ -454179,7 +454179,7 @@ }, { "type_name": "embree::PrimitiveType", - "vtable_address": 64802104, + "vtable_address": 64806008, "methods": [], "bases": [], "model": { @@ -454190,7 +454190,7 @@ }, { "type_name": "embree::PrimitiveType", - "vtable_address": 64802808, + "vtable_address": 64806712, "methods": [], "bases": [], "model": { @@ -454201,9 +454201,9 @@ }, { "type_name": "embree::ProgressMonitorClosure::build()::{lambda(unsigned long)#1}>", - "vtable_address": 64888208, + "vtable_address": 64892112, "methods": [ - 47174816 + 47178720 ], "bases": [ { @@ -454225,9 +454225,9 @@ }, { "type_name": "embree::ProgressMonitorClosure::build()::{lambda(unsigned long)#1}>", - "vtable_address": 64822712, + "vtable_address": 64826616, "methods": [ - 38338800 + 38342640 ], "bases": [ { @@ -454249,7 +454249,7 @@ }, { "type_name": "embree::QuadMesh", - "vtable_address": 64787816, + "vtable_address": 64791720, "methods": [], "bases": [ { @@ -454282,29 +454282,52 @@ }, { "type_name": "embree::QuadMesh", - "vtable_address": 64788288, - "methods": [ - 33599776, - 33600640, - 33281616, - 33281712, - 33468368, - 33594704, - 33593472, + "vtable_address": 64792192, + "methods": [ + 33603616, + 33604480, + 33285456, + 33285552, + 33472208, + 33598544, + 33597312, + 33304048, + 33472384, + 33596816, + 33596224, + 33472352, + 33594544, + 33472464, + 33472320, + 33594496, + 33303664, + 33303472, + 33472336, + 33594880, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33602176, + 33594528, + 33599792, + 33595664, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33592976, - 33592384, - 33468512, - 33590704, - 33468624, - 33468480, - 33590656, + 33300016, 33299824, 33299632, - 33468496, - 33591040, - 33469248, + 33299440, 33299248, 33299056, 33298864, @@ -454313,32 +454336,9 @@ 33298288, 33298096, 33297904, - 33598336, - 33590688, - 33595952, - 33591824, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -454371,7 +454371,7 @@ }, { "type_name": "embree::QuadMesh", - "vtable_address": 64851392, + "vtable_address": 64855296, "methods": [], "bases": [ { @@ -454404,7 +454404,7 @@ }, { "type_name": "embree::QuadMesh", - "vtable_address": 64895408, + "vtable_address": 64899312, "methods": [], "bases": [ { @@ -454437,12 +454437,12 @@ }, { "type_name": "embree::QuadMi<4>::Type", - "vtable_address": 64802168, + "vtable_address": 64806072, "methods": [ - 34113632, - 34113648, - 34113696, - 34113712 + 34117472, + 34117488, + 34117536, + 34117552 ], "bases": [ { @@ -454464,12 +454464,12 @@ }, { "type_name": "embree::QuadMv<4>::Type", - "vtable_address": 64802680, + "vtable_address": 64806584, "methods": [ - 34113552, - 34113568, - 34113696, - 34113616 + 34117392, + 34117408, + 34117536, + 34117456 ], "bases": [ { @@ -454491,7 +454491,7 @@ }, { "type_name": "embree::RefCount", - "vtable_address": 64783816, + "vtable_address": 64787720, "methods": [], "bases": [], "model": { @@ -454502,7 +454502,7 @@ }, { "type_name": "embree::RefCount", - "vtable_address": 64784384, + "vtable_address": 64788288, "methods": [], "bases": [], "model": { @@ -454513,7 +454513,7 @@ }, { "type_name": "embree::RefCount", - "vtable_address": 64905456, + "vtable_address": 64909360, "methods": [], "bases": [], "model": { @@ -454524,7 +454524,7 @@ }, { "type_name": "embree::RegressionTest", - "vtable_address": 64784312, + "vtable_address": 64788216, "methods": [], "bases": [], "model": { @@ -454535,7 +454535,7 @@ }, { "type_name": "embree::RegressionTest", - "vtable_address": 64784328, + "vtable_address": 64788232, "methods": [], "bases": [], "model": { @@ -454546,7 +454546,7 @@ }, { "type_name": "embree::RegressionTest", - "vtable_address": 64822312, + "vtable_address": 64826216, "methods": [], "bases": [], "model": { @@ -454557,7 +454557,7 @@ }, { "type_name": "embree::RegressionTest", - "vtable_address": 64905408, + "vtable_address": 64909312, "methods": [], "bases": [], "model": { @@ -454568,16 +454568,16 @@ }, { "type_name": "embree::Scene", - "vtable_address": 64784088, + "vtable_address": 64787992, "methods": [ - 33443168, - 33443472, - 33281616, - 33281712, - 33292784, - 33418560, - 33292800, - 33449344 + 33447008, + 33447312, + 33285456, + 33285552, + 33296624, + 33422400, + 33296640, + 33453184 ], "bases": [ { @@ -454632,9 +454632,9 @@ }, { "type_name": "embree::Scene::BuildProgressMonitorInterface", - "vtable_address": 64784064, + "vtable_address": 64787968, "methods": [ - 33451168 + 33455008 ], "bases": [ { @@ -454656,12 +454656,12 @@ }, { "type_name": "embree::State", - "vtable_address": 64783704, + "vtable_address": 64787608, "methods": [ - 33300976, - 33302768, - 33281616, - 33281712 + 33304816, + 33306608, + 33285456, + 33285552 ], "bases": [ { @@ -454683,14 +454683,14 @@ }, { "type_name": "embree::StrStream", - "vtable_address": 64783576, + "vtable_address": 64787480, "methods": [ - 33346080, - 33346320, - 33281616, - 33281712, - 33345424, - 33347296 + 33349920, + 33350160, + 33285456, + 33285552, + 33349264, + 33351136 ], "bases": [ { @@ -454723,7 +454723,7 @@ }, { "type_name": "embree::Stream", - "vtable_address": 64905256, + "vtable_address": 64909160, "methods": [], "bases": [ { @@ -454745,7 +454745,7 @@ }, { "type_name": "embree::Stream", - "vtable_address": 64905272, + "vtable_address": 64909176, "methods": [], "bases": [ { @@ -454767,7 +454767,7 @@ }, { "type_name": "embree::Stream", - "vtable_address": 64783448, + "vtable_address": 64787352, "methods": [], "bases": [ { @@ -454789,12 +454789,12 @@ }, { "type_name": "embree::SubGrid::Type", - "vtable_address": 64800040, + "vtable_address": 64803944, "methods": [ - 34112272, - 34112304, - 34112304, - 34112288 + 34116112, + 34116144, + 34116144, + 34116128 ], "bases": [ { @@ -454816,12 +454816,12 @@ }, { "type_name": "embree::SubGridQBVHN<4>::Type", - "vtable_address": 64802728, + "vtable_address": 64806632, "methods": [ - 34113728, - 34112304, - 34112304, - 34113744 + 34117568, + 34116144, + 34116144, + 34117584 ], "bases": [ { @@ -454843,12 +454843,12 @@ }, { "type_name": "embree::SubGridQBVHN<8>::Type", - "vtable_address": 64802872, + "vtable_address": 64806776, "methods": [ - 44001296, - 44001312, - 44001312, - 44001328 + 44005200, + 44005216, + 44005216, + 44005232 ], "bases": [ { @@ -454870,63 +454870,63 @@ }, { "type_name": "embree::SubdivMesh", - "vtable_address": 64820984, - "methods": [ - 37954192, - 37956288, - 33281616, - 33281712, - 33468368, - 37940688, - 37939344, - 37928880, - 33468544, - 37952672, - 37906864, - 33468512, - 37909520, - 33468624, - 33468480, - 37904976, - 37905024, + "vtable_address": 64824888, + "methods": [ + 37958032, + 37960128, + 33285456, + 33285552, + 33472208, + 37944528, + 37943184, + 37932720, + 33472384, + 37956512, + 37910704, + 33472352, + 37913360, + 33472464, + 33472320, + 37908816, + 37908864, + 33303472, + 33472336, + 33303280, + 33473088, + 37914336, + 37908960, + 37908848, + 37912160, + 37912368, + 37912576, + 37912800, + 37913024, + 33297280, + 37908896, + 37929952, + 37909296, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, + 33300208, + 33300016, + 33299824, 33299632, - 33468496, 33299440, - 33469248, - 37910496, - 37905120, - 37905008, - 37908320, - 37908528, - 37908736, - 37908960, - 37909184, - 33293440, - 37905056, - 37926112, - 37905456, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33299248, + 33299056, + 33298864, + 33298672, + 33298480, + 33298288, + 33298096, + 33297904, + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -454959,7 +454959,7 @@ }, { "type_name": "embree::SubdivMesh", - "vtable_address": 64893464, + "vtable_address": 64897368, "methods": [], "bases": [ { @@ -454992,12 +454992,12 @@ }, { "type_name": "embree::SubdivPatch1::Type", - "vtable_address": 64799896, + "vtable_address": 64803800, "methods": [ - 34112176, - 34112304, - 34112304, - 34112192 + 34116016, + 34116144, + 34116144, + 34116032 ], "bases": [ { @@ -455019,12 +455019,12 @@ }, { "type_name": "embree::TaskScheduler", - "vtable_address": 64905472, + "vtable_address": 64909376, "methods": [ - 58000720, - 58000800, - 33281616, - 33281712 + 58004624, + 58004704, + 33285456, + 33285552 ], "bases": [ { @@ -455046,9 +455046,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801664, + "vtable_address": 64805568, "methods": [ - 35707040 + 35710880 ], "bases": [ { @@ -455070,9 +455070,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801688, + "vtable_address": 64805592, "methods": [ - 35708128 + 35711968 ], "bases": [ { @@ -455094,9 +455094,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801712, + "vtable_address": 64805616, "methods": [ - 35711584 + 35715424 ], "bases": [ { @@ -455118,9 +455118,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801736, + "vtable_address": 64805640, "methods": [ - 35713056 + 35716896 ], "bases": [ { @@ -455142,9 +455142,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801760, + "vtable_address": 64805664, "methods": [ - 35709216 + 35713056 ], "bases": [ { @@ -455166,9 +455166,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<4>::Statistics(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&)>(int, int, embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::statistics(embree::NodeRefPtr<4>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<4>::Statistics ( const&)(embree::BVHNStatistics<4>::Statistics const&, embree::BVHNStatistics<4>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801784, + "vtable_address": 64805688, "methods": [ - 35713296 + 35717136 ], "bases": [ { @@ -455190,9 +455190,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#1} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893312, + "vtable_address": 64897216, "methods": [ - 47978912 + 47982816 ], "bases": [ { @@ -455214,9 +455214,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#2} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893336, + "vtable_address": 64897240, "methods": [ - 47980048 + 47983952 ], "bases": [ { @@ -455238,9 +455238,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#3} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893360, + "vtable_address": 64897264, "methods": [ - 47983552 + 47987456 ], "bases": [ { @@ -455262,9 +455262,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#4} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893384, + "vtable_address": 64897288, "methods": [ - 47984992 + 47988896 ], "bases": [ { @@ -455286,9 +455286,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#5} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893408, + "vtable_address": 64897312, "methods": [ - 47981184 + 47985088 ], "bases": [ { @@ -455310,9 +455310,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1}>(int, int, int, void embree::parallel_for::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1}>(int, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce_internal::Statistics, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range)#1}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics embree::parallel_reduce::Statistics, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6}, embree::BVHNStatistics<8>::Statistics(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&)>(int, int, embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::statistics(embree::NodeRefPtr<8>, double, embree::BBox)::{lambda(int)#6} const&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(embree::range const)#1}&, embree::BVHNStatistics<8>::Statistics ( const&)(embree::BVHNStatistics<8>::Statistics const&, embree::BVHNStatistics<8>::Statistics const&))::{lambda(int)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893432, + "vtable_address": 64897336, "methods": [ - 47985248 + 47989152 ], "bases": [ { @@ -455334,9 +455334,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64889984, + "vtable_address": 64893888, "methods": [ - 47377536 + 47381440 ], "bases": [ { @@ -455358,9 +455358,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890032, + "vtable_address": 64893936, "methods": [ - 47383456 + 47387360 ], "bases": [ { @@ -455382,9 +455382,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890080, + "vtable_address": 64893984, "methods": [ - 47388352 + 47392256 ], "bases": [ { @@ -455406,9 +455406,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890224, + "vtable_address": 64894128, "methods": [ - 47402976 + 47406880 ], "bases": [ { @@ -455430,9 +455430,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890176, + "vtable_address": 64894080, "methods": [ - 47398112 + 47402016 ], "bases": [ { @@ -455454,9 +455454,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890200, + "vtable_address": 64894104, "methods": [ - 47400544 + 47404448 ], "bases": [ { @@ -455478,9 +455478,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64889960, + "vtable_address": 64893864, "methods": [ - 47374048 + 47377952 ], "bases": [ { @@ -455502,9 +455502,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890008, + "vtable_address": 64893912, "methods": [ - 47381024 + 47384928 ], "bases": [ { @@ -455526,9 +455526,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890056, + "vtable_address": 64893960, "methods": [ - 47385888 + 47389792 ], "bases": [ { @@ -455550,9 +455550,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890152, + "vtable_address": 64894056, "methods": [ - 47395680 + 47399584 ], "bases": [ { @@ -455574,9 +455574,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890104, + "vtable_address": 64894008, "methods": [ - 47390816 + 47394720 ], "bases": [ { @@ -455598,9 +455598,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64890128, + "vtable_address": 64894032, "methods": [ - 47393248 + 47397152 ], "bases": [ { @@ -455622,9 +455622,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64806608, + "vtable_address": 64810512, "methods": [ - 36219984 + 36223824 ], "bases": [ { @@ -455646,9 +455646,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::Object>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::Object>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64806632, + "vtable_address": 64810536, "methods": [ - 36223472 + 36227312 ], "bases": [ { @@ -455670,9 +455670,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64806656, + "vtable_address": 64810560, "methods": [ - 36225824 + 36229664 ], "bases": [ { @@ -455694,9 +455694,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64806728, + "vtable_address": 64810632, "methods": [ - 36232992 + 36236832 ], "bases": [ { @@ -455718,9 +455718,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64806680, + "vtable_address": 64810584, "methods": [ - 36228224 + 36232064 ], "bases": [ { @@ -455742,9 +455742,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2}>(unsigned int, unsigned int, unsigned int, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recreateMortonCodes(embree::range const&) const::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64806704, + "vtable_address": 64810608, "methods": [ - 36230608 + 36234448 ], "bases": [ { @@ -455766,9 +455766,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::QuadMv<4> >, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::QuadMv<4> > const&, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::QuadMv<4> >, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::QuadMv<4> > const&, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64871432, + "vtable_address": 64875336, "methods": [ - 45186784 + 45190688 ], "bases": [ { @@ -455790,9 +455790,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleM<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleM<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleM<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleM<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64871600, + "vtable_address": 64875504, "methods": [ - 45211440 + 45215344 ], "bases": [ { @@ -455814,9 +455814,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMi<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMi<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMi<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMi<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64871552, + "vtable_address": 64875456, "methods": [ - 45206416 + 45210320 ], "bases": [ { @@ -455838,9 +455838,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMv<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMv<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMv<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::avx::CreateLeafSpatial<4, embree::TriangleMv<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64871576, + "vtable_address": 64875480, "methods": [ - 45208928 + 45212832 ], "bases": [ { @@ -455862,9 +455862,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::QuadMv<4> >, embree::sse2::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::QuadMv<4> > const&, embree::sse2::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::QuadMv<4> >, embree::sse2::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::QuadMv<4> > const&, embree::sse2::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64810784, + "vtable_address": 64814688, "methods": [ - 36427600 + 36431440 ], "bases": [ { @@ -455886,9 +455886,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleM<4> >, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleM<4> > const&, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleM<4> >, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleM<4> > const&, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64810904, + "vtable_address": 64814808, "methods": [ - 36452592 + 36456432 ], "bases": [ { @@ -455910,9 +455910,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMi<4> >, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMi<4> > const&, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMi<4> >, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMi<4> > const&, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64810856, + "vtable_address": 64814760, "methods": [ - 36441760 + 36445600 ], "bases": [ { @@ -455934,9 +455934,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMv<4> >, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMv<4> > const&, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<4> embree::sse2::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMv<4> >, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create2, embree::AABBNode_t, 4>::Set2, embree::sse2::CreateLeafSpatial<4, embree::TriangleMv<4> > const&, embree::sse2::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::sse2::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64810880, + "vtable_address": 64814784, "methods": [ - 36450112 + 36453952 ], "bases": [ { @@ -455958,9 +455958,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::QuadMv<4> >, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::QuadMv<4> > const&, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<8> embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::QuadMv<4> >, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::QuadMv<4> > const&, embree::avx::QuadSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64871408, + "vtable_address": 64875312, "methods": [ - 45178656 + 45182560 ], "bases": [ { @@ -455982,9 +455982,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleM<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleM<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<8> embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleM<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleM<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64871528, + "vtable_address": 64875432, "methods": [ - 45203904 + 45207808 ], "bases": [ { @@ -456006,9 +456006,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleMv<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleMv<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::NodeRefPtr<8> embree::avx::BVHBuilderBinnedFastSpatialSAH::build, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleMv<4> >, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface>(embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create2, embree::AABBNode_t, 8>::Set2, embree::avx::CreateLeafSpatial<8, embree::TriangleMv<4> > const&, embree::avx::TriangleSplitterFactory, embree::Scene::BuildProgressMonitorInterface, embree::PrimRef*, unsigned long, embree::PrimInfoT > const&, embree::avx::GeneralBVHBuilder::Settings const&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64871504, + "vtable_address": 64875408, "methods": [ - 45195520 + 45199424 ], "bases": [ { @@ -456030,9 +456030,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11} const&)::{lambda()#1}>", - "vtable_address": 64871288, + "vtable_address": 64875192, "methods": [ - 45144560 + 45148464 ], "bases": [ { @@ -456054,9 +456054,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7} const&)::{lambda()#1}>", - "vtable_address": 64871264, + "vtable_address": 64875168, "methods": [ - 45141872 + 45145776 ], "bases": [ { @@ -456078,9 +456078,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11} const&)::{lambda()#1}>", - "vtable_address": 64871336, + "vtable_address": 64875240, "methods": [ - 45157232 + 45161136 ], "bases": [ { @@ -456102,9 +456102,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7} const&)::{lambda()#1}>", - "vtable_address": 64871312, + "vtable_address": 64875216, "methods": [ - 45154544 + 45158448 ], "bases": [ { @@ -456126,9 +456126,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11} const&)::{lambda()#1}>", - "vtable_address": 64810664, + "vtable_address": 64814568, "methods": [ - 36402352 + 36406192 ], "bases": [ { @@ -456150,9 +456150,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7} const&)::{lambda()#1}>", - "vtable_address": 64810640, + "vtable_address": 64814544, "methods": [ - 36399760 + 36403600 ], "bases": [ { @@ -456174,9 +456174,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#11} const&)::{lambda()#1}>", - "vtable_address": 64810712, + "vtable_address": 64814616, "methods": [ - 36411792 + 36415632 ], "bases": [ { @@ -456198,9 +456198,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7}>(unsigned long, unsigned long, unsigned long, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#7} const&)::{lambda()#1}>", - "vtable_address": 64810688, + "vtable_address": 64814592, "methods": [ - 36409200 + 36413040 ], "bases": [ { @@ -456222,9 +456222,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::GridRecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeafGrid<4>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::GridRecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeafGrid<4>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64874912, + "vtable_address": 64878816, "methods": [ - 45858928 + 45862832 ], "bases": [ { @@ -456246,9 +456246,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::Instance, embree::InstancePrimitive>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::Instance, embree::InstancePrimitive>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64874960, + "vtable_address": 64878864, "methods": [ - 45899616 + 45903520 ], "bases": [ { @@ -456270,9 +456270,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::QuadMesh, embree::QuadMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::QuadMesh, embree::QuadMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875056, + "vtable_address": 64878960, "methods": [ - 46054768 + 46058672 ], "bases": [ { @@ -456294,9 +456294,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875152, + "vtable_address": 64879056, "methods": [ - 46147120 + 46151024 ], "bases": [ { @@ -456318,9 +456318,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMvMB<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMvMB<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875128, + "vtable_address": 64879032, "methods": [ - 46167408 + 46171312 ], "bases": [ { @@ -456342,9 +456342,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::UserGeometry, embree::Object>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::avx::CreateMSMBlurLeaf<4, embree::UserGeometry, embree::Object>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875008, + "vtable_address": 64878912, "methods": [ - 45976208 + 45980112 ], "bases": [ { @@ -456366,9 +456366,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::GridRecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeafGrid<8>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::GridRecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeafGrid<8>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64874840, + "vtable_address": 64878744, "methods": [ - 45818928 + 45822832 ], "bases": [ { @@ -456390,9 +456390,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::Instance, embree::InstancePrimitive>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::Instance, embree::InstancePrimitive>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64874936, + "vtable_address": 64878840, "methods": [ - 45932576 + 45936480 ], "bases": [ { @@ -456414,9 +456414,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::QuadMesh, embree::QuadMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::QuadMesh, embree::QuadMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875032, + "vtable_address": 64878936, "methods": [ - 46090912 + 46094816 ], "bases": [ { @@ -456438,9 +456438,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::TriangleMesh, embree::TriangleMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::TriangleMesh, embree::TriangleMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875104, + "vtable_address": 64879008, "methods": [ - 46237744 + 46241648 ], "bases": [ { @@ -456462,9 +456462,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::TriangleMesh, embree::TriangleMvMB<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::TriangleMesh, embree::TriangleMvMB<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875080, + "vtable_address": 64878984, "methods": [ - 46217248 + 46221152 ], "bases": [ { @@ -456486,9 +456486,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::UserGeometry, embree::Object>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMSMBlur::BuilderT, embree::avx::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNodeMB4D_t, 8>::Create, embree::AABBNodeMB4D_t, 8>::Set, embree::avx::CreateMSMBlurLeaf<8, embree::UserGeometry, embree::Object>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::avx::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64874984, + "vtable_address": 64878888, "methods": [ - 46012032 + 46015936 ], "bases": [ { @@ -456510,9 +456510,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889696, + "vtable_address": 64893600, "methods": [ - 47545120 + 47549024 ], "bases": [ { @@ -456534,9 +456534,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889744, + "vtable_address": 64893648, "methods": [ - 47469824 + 47473728 ], "bases": [ { @@ -456558,9 +456558,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889792, + "vtable_address": 64893696, "methods": [ - 47526672 + 47530576 ], "bases": [ { @@ -456582,9 +456582,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889936, + "vtable_address": 64893840, "methods": [ - 47494592 + 47498496 ], "bases": [ { @@ -456606,9 +456606,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889888, + "vtable_address": 64893792, "methods": [ - 47510272 + 47514176 ], "bases": [ { @@ -456630,9 +456630,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::avx::SetBVHNBounds<4>, embree::avx::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889912, + "vtable_address": 64893816, "methods": [ - 47502432 + 47506336 ], "bases": [ { @@ -456654,9 +456654,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::InstancePrimitive>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889672, + "vtable_address": 64893576, "methods": [ - 47453488 + 47457392 ], "bases": [ { @@ -456678,9 +456678,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::Object>, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889720, + "vtable_address": 64893624, "methods": [ - 47461984 + 47465888 ], "bases": [ { @@ -456702,9 +456702,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::QuadMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889768, + "vtable_address": 64893672, "methods": [ - 47535264 + 47539168 ], "bases": [ { @@ -456726,9 +456726,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleM<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889864, + "vtable_address": 64893768, "methods": [ - 47486784 + 47490688 ], "bases": [ { @@ -456750,9 +456750,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMi<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889816, + "vtable_address": 64893720, "methods": [ - 47518768 + 47522672 ], "bases": [ { @@ -456774,9 +456774,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<8>::CreateAlloc, embree::AABBNode_t, 8>::Create, embree::avx::SetBVHNBounds<8>, embree::avx::CreateMortonLeaf<8, embree::TriangleMv<4> >, embree::avx::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64889840, + "vtable_address": 64893744, "methods": [ - 47478320 + 47482224 ], "bases": [ { @@ -456798,9 +456798,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883192, + "vtable_address": 64887096, "methods": [ - 46373488 + 46377392 ], "bases": [ { @@ -456822,9 +456822,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883216, + "vtable_address": 64887120, "methods": [ - 46375872 + 46379776 ], "bases": [ { @@ -456846,9 +456846,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883240, + "vtable_address": 64887144, "methods": [ - 46378368 + 46382272 ], "bases": [ { @@ -456870,9 +456870,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883336, + "vtable_address": 64887240, "methods": [ - 46387984 + 46391888 ], "bases": [ { @@ -456894,9 +456894,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883360, + "vtable_address": 64887264, "methods": [ - 46390368 + 46394272 ], "bases": [ { @@ -456918,9 +456918,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883384, + "vtable_address": 64887288, "methods": [ - 46392864 + 46396768 ], "bases": [ { @@ -456942,9 +456942,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883552, + "vtable_address": 64887456, "methods": [ - 46409728 + 46413632 ], "bases": [ { @@ -456966,9 +456966,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883576, + "vtable_address": 64887480, "methods": [ - 46412112 + 46416016 ], "bases": [ { @@ -456990,9 +456990,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883600, + "vtable_address": 64887504, "methods": [ - 46414608 + 46418512 ], "bases": [ { @@ -457014,9 +457014,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883408, + "vtable_address": 64887312, "methods": [ - 46395232 + 46399136 ], "bases": [ { @@ -457038,9 +457038,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883432, + "vtable_address": 64887336, "methods": [ - 46397616 + 46401520 ], "bases": [ { @@ -457062,9 +457062,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883456, + "vtable_address": 64887360, "methods": [ - 46400112 + 46404016 ], "bases": [ { @@ -457086,9 +457086,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883480, + "vtable_address": 64887384, "methods": [ - 46402480 + 46406384 ], "bases": [ { @@ -457110,9 +457110,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883504, + "vtable_address": 64887408, "methods": [ - 46404864 + 46408768 ], "bases": [ { @@ -457134,9 +457134,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883528, + "vtable_address": 64887432, "methods": [ - 46407360 + 46411264 ], "bases": [ { @@ -457158,9 +457158,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883264, + "vtable_address": 64887168, "methods": [ - 46380736 + 46384640 ], "bases": [ { @@ -457182,9 +457182,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883288, + "vtable_address": 64887192, "methods": [ - 46383120 + 46387024 ], "bases": [ { @@ -457206,9 +457206,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883312, + "vtable_address": 64887216, "methods": [ - 46385616 + 46389520 ], "bases": [ { @@ -457230,9 +457230,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64882760, + "vtable_address": 64886664, "methods": [ - 46330000 + 46333904 ], "bases": [ { @@ -457254,9 +457254,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64882784, + "vtable_address": 64886688, "methods": [ - 46332384 + 46336288 ], "bases": [ { @@ -457278,9 +457278,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64882808, + "vtable_address": 64886712, "methods": [ - 46334880 + 46338784 ], "bases": [ { @@ -457302,9 +457302,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64882904, + "vtable_address": 64886808, "methods": [ - 46344496 + 46348400 ], "bases": [ { @@ -457326,9 +457326,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64882928, + "vtable_address": 64886832, "methods": [ - 46346880 + 46350784 ], "bases": [ { @@ -457350,9 +457350,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64882952, + "vtable_address": 64886856, "methods": [ - 46349376 + 46353280 ], "bases": [ { @@ -457374,9 +457374,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883120, + "vtable_address": 64887024, "methods": [ - 46366240 + 46370144 ], "bases": [ { @@ -457398,9 +457398,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883144, + "vtable_address": 64887048, "methods": [ - 46368624 + 46372528 ], "bases": [ { @@ -457422,9 +457422,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883168, + "vtable_address": 64887072, "methods": [ - 46371120 + 46375024 ], "bases": [ { @@ -457446,9 +457446,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64882976, + "vtable_address": 64886880, "methods": [ - 46351744 + 46355648 ], "bases": [ { @@ -457470,9 +457470,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883000, + "vtable_address": 64886904, "methods": [ - 46354128 + 46358032 ], "bases": [ { @@ -457494,9 +457494,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883024, + "vtable_address": 64886928, "methods": [ - 46356624 + 46360528 ], "bases": [ { @@ -457518,9 +457518,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883048, + "vtable_address": 64886952, "methods": [ - 46358992 + 46362896 ], "bases": [ { @@ -457542,9 +457542,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64883072, + "vtable_address": 64886976, "methods": [ - 46361376 + 46365280 ], "bases": [ { @@ -457566,9 +457566,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64883096, + "vtable_address": 64887000, "methods": [ - 46363872 + 46367776 ], "bases": [ { @@ -457590,9 +457590,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64882832, + "vtable_address": 64886736, "methods": [ - 46337248 + 46341152 ], "bases": [ { @@ -457614,9 +457614,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64882856, + "vtable_address": 64886760, "methods": [ - 46339632 + 46343536 ], "bases": [ { @@ -457638,9 +457638,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64882880, + "vtable_address": 64886784, "methods": [ - 46342128 + 46346032 ], "bases": [ { @@ -457662,9 +457662,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::refit()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNRefitter<4>::refit()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64863208, + "vtable_address": 64867112, "methods": [ - 44501888 + 44505792 ], "bases": [ { @@ -457686,9 +457686,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::refit()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::BVHNRefitter<8>::refit()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64863232, + "vtable_address": 64867136, "methods": [ - 44504752 + 44508656 ], "bases": [ { @@ -457710,9 +457710,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884776, + "vtable_address": 64888680, "methods": [ - 46634720 + 46638624 ], "bases": [ { @@ -457734,9 +457734,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884800, + "vtable_address": 64888704, "methods": [ - 46641296 + 46645200 ], "bases": [ { @@ -457758,9 +457758,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884872, + "vtable_address": 64888776, "methods": [ - 46653280 + 46657184 ], "bases": [ { @@ -457782,9 +457782,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884896, + "vtable_address": 64888800, "methods": [ - 46659856 + 46663760 ], "bases": [ { @@ -457806,9 +457806,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885016, + "vtable_address": 64888920, "methods": [ - 46681120 + 46685024 ], "bases": [ { @@ -457830,9 +457830,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64885040, + "vtable_address": 64888944, "methods": [ - 46687696 + 46691600 ], "bases": [ { @@ -457854,9 +457854,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884920, + "vtable_address": 64888824, "methods": [ - 46662560 + 46666464 ], "bases": [ { @@ -457878,9 +457878,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884944, + "vtable_address": 64888848, "methods": [ - 46669136 + 46673040 ], "bases": [ { @@ -457902,9 +457902,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884968, + "vtable_address": 64888872, "methods": [ - 46671840 + 46675744 ], "bases": [ { @@ -457926,9 +457926,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884992, + "vtable_address": 64888896, "methods": [ - 46678416 + 46682320 ], "bases": [ { @@ -457950,9 +457950,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884824, + "vtable_address": 64888728, "methods": [ - 46644000 + 46647904 ], "bases": [ { @@ -457974,9 +457974,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884848, + "vtable_address": 64888752, "methods": [ - 46650576 + 46654480 ], "bases": [ { @@ -457998,9 +457998,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884488, + "vtable_address": 64888392, "methods": [ - 46578112 + 46582016 ], "bases": [ { @@ -458022,9 +458022,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884512, + "vtable_address": 64888416, "methods": [ - 46584864 + 46588768 ], "bases": [ { @@ -458046,9 +458046,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884584, + "vtable_address": 64888488, "methods": [ - 46597024 + 46600928 ], "bases": [ { @@ -458070,9 +458070,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884608, + "vtable_address": 64888512, "methods": [ - 46603648 + 46607552 ], "bases": [ { @@ -458094,9 +458094,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884728, + "vtable_address": 64888632, "methods": [ - 46625264 + 46629168 ], "bases": [ { @@ -458118,9 +458118,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884752, + "vtable_address": 64888656, "methods": [ - 46632016 + 46635920 ], "bases": [ { @@ -458142,9 +458142,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884632, + "vtable_address": 64888536, "methods": [ - 46606352 + 46610256 ], "bases": [ { @@ -458166,9 +458166,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884656, + "vtable_address": 64888560, "methods": [ - 46613104 + 46617008 ], "bases": [ { @@ -458190,9 +458190,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884680, + "vtable_address": 64888584, "methods": [ - 46615808 + 46619712 ], "bases": [ { @@ -458214,9 +458214,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884704, + "vtable_address": 64888608, "methods": [ - 46622560 + 46626464 ], "bases": [ { @@ -458238,9 +458238,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884536, + "vtable_address": 64888440, "methods": [ - 46587568 + 46591472 ], "bases": [ { @@ -458262,9 +458262,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64884560, + "vtable_address": 64888464, "methods": [ - 46594320 + 46598224 ], "bases": [ { @@ -458286,9 +458286,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::create_spatial_splits(embree::avx::PrimInfoExtRange&, embree::avx::SpatialBinSplit<(unsigned long)16> const&, embree::avx::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArraySpatialSAH::create_spatial_splits(embree::avx::PrimInfoExtRange&, embree::avx::SpatialBinSplit<(unsigned long)16> const&, embree::avx::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872296, + "vtable_address": 64876200, "methods": [ - 45307184 + 45311088 ], "bases": [ { @@ -458310,9 +458310,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArraySpatialSAH::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872320, + "vtable_address": 64876224, "methods": [ - 45309424 + 45313328 ], "bases": [ { @@ -458334,9 +458334,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArraySpatialSAH::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64872344, + "vtable_address": 64876248, "methods": [ - 45319328 + 45323232 ], "bases": [ { @@ -458358,9 +458358,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::create_spatial_splits(embree::avx::PrimInfoExtRange&, embree::avx::SpatialBinSplit<(unsigned long)16> const&, embree::avx::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArraySpatialSAH::create_spatial_splits(embree::avx::PrimInfoExtRange&, embree::avx::SpatialBinSplit<(unsigned long)16> const&, embree::avx::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872368, + "vtable_address": 64876272, "methods": [ - 45322048 + 45325952 ], "bases": [ { @@ -458382,9 +458382,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArraySpatialSAH::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872392, + "vtable_address": 64876296, "methods": [ - 45325552 + 45329456 ], "bases": [ { @@ -458406,9 +458406,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::avx::HeuristicArraySpatialSAH::moveExtentedRange(embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange const&, embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64872416, + "vtable_address": 64876320, "methods": [ - 45346624 + 45350528 ], "bases": [ { @@ -458430,9 +458430,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::sse2::GridRecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeafGrid<4>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMSMBlur::BuilderT, embree::sse2::GridRecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeafGrid<4>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813568, + "vtable_address": 64817472, "methods": [ - 36946192 + 36950032 ], "bases": [ { @@ -458454,9 +458454,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::Instance, embree::InstancePrimitive>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMSMBlur::BuilderT, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::Instance, embree::InstancePrimitive>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813592, + "vtable_address": 64817496, "methods": [ - 36986384 + 36990224 ], "bases": [ { @@ -458478,9 +458478,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::QuadMesh, embree::QuadMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMSMBlur::BuilderT, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::QuadMesh, embree::QuadMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813640, + "vtable_address": 64817544, "methods": [ - 37068816 + 37072656 ], "bases": [ { @@ -458502,9 +458502,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMSMBlur::BuilderT, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMi<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813688, + "vtable_address": 64817592, "methods": [ - 37123872 + 37127712 ], "bases": [ { @@ -458526,9 +458526,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMvMB<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMSMBlur::BuilderT, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::TriangleMesh, embree::TriangleMvMB<4> >, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813664, + "vtable_address": 64817568, "methods": [ - 37144032 + 37147872 ], "bases": [ { @@ -458550,9 +458550,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::UserGeometry, embree::Object>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMSMBlur::BuilderT, embree::sse2::RecalculatePrimRef, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNodeMB4D_t, 4>::Create, embree::AABBNodeMB4D_t, 4>::Set, embree::sse2::CreateMSMBlurLeaf<4, embree::UserGeometry, embree::Object>, embree::Scene::BuildProgressMonitorInterface>::recurse(embree::sse2::BVHBuilderMSMBlur::BuildRecord const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813616, + "vtable_address": 64817520, "methods": [ - 37027888 + 37031728 ], "bases": [ { @@ -458574,9 +458574,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::InstancePrimitive>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806464, + "vtable_address": 64810368, "methods": [ - 36265008 + 36268848 ], "bases": [ { @@ -458598,9 +458598,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::Object>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::Object>, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806488, + "vtable_address": 64810392, "methods": [ - 36273232 + 36277072 ], "bases": [ { @@ -458622,9 +458622,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::QuadMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806512, + "vtable_address": 64810416, "methods": [ - 36306176 + 36310016 ], "bases": [ { @@ -458646,9 +458646,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleM<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806584, + "vtable_address": 64810488, "methods": [ - 36289664 + 36293504 ], "bases": [ { @@ -458670,9 +458670,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMi<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806536, + "vtable_address": 64810440, "methods": [ - 36297888 + 36301728 ], "bases": [ { @@ -458694,9 +458694,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHBuilderMorton::BuilderT >, embree::FastAllocator::CachedAllocator, embree::BVHN<4>::CreateAlloc, embree::AABBNode_t, 4>::Create, embree::sse2::SetBVHNBounds<4>, embree::sse2::CreateMortonLeaf<4, embree::TriangleMv<4> >, embree::sse2::CalculateMeshBounds, embree::Scene::BuildProgressMonitorInterface>::recurse(unsigned long, embree::range const&, embree::FastAllocator::CachedAllocator, bool)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806560, + "vtable_address": 64810464, "methods": [ - 36281440 + 36285280 ], "bases": [ { @@ -458718,9 +458718,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64817984, + "vtable_address": 64821888, "methods": [ - 37191680 + 37195520 ], "bases": [ { @@ -458742,9 +458742,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818008, + "vtable_address": 64821912, "methods": [ - 37194032 + 37197872 ], "bases": [ { @@ -458766,9 +458766,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64818032, + "vtable_address": 64821936, "methods": [ - 37196496 + 37200336 ], "bases": [ { @@ -458790,9 +458790,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818128, + "vtable_address": 64822032, "methods": [ - 37205984 + 37209824 ], "bases": [ { @@ -458814,9 +458814,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818152, + "vtable_address": 64822056, "methods": [ - 37208336 + 37212176 ], "bases": [ { @@ -458838,9 +458838,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64818176, + "vtable_address": 64822080, "methods": [ - 37210800 + 37214640 ], "bases": [ { @@ -458862,9 +458862,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818344, + "vtable_address": 64822248, "methods": [ - 37227440 + 37231280 ], "bases": [ { @@ -458886,9 +458886,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818368, + "vtable_address": 64822272, "methods": [ - 37229792 + 37233632 ], "bases": [ { @@ -458910,9 +458910,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64818392, + "vtable_address": 64822296, "methods": [ - 37232256 + 37236096 ], "bases": [ { @@ -458934,9 +458934,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818200, + "vtable_address": 64822104, "methods": [ - 37213136 + 37216976 ], "bases": [ { @@ -458958,9 +458958,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818224, + "vtable_address": 64822128, "methods": [ - 37215488 + 37219328 ], "bases": [ { @@ -458982,9 +458982,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64818248, + "vtable_address": 64822152, "methods": [ - 37217952 + 37221792 ], "bases": [ { @@ -459006,9 +459006,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818272, + "vtable_address": 64822176, "methods": [ - 37220288 + 37224128 ], "bases": [ { @@ -459030,9 +459030,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818296, + "vtable_address": 64822200, "methods": [ - 37222640 + 37226480 ], "bases": [ { @@ -459054,9 +459054,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64818320, + "vtable_address": 64822224, "methods": [ - 37225104 + 37228944 ], "bases": [ { @@ -459078,9 +459078,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818056, + "vtable_address": 64821960, "methods": [ - 37198832 + 37202672 ], "bases": [ { @@ -459102,9 +459102,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818080, + "vtable_address": 64821984, "methods": [ - 37201184 + 37205024 ], "bases": [ { @@ -459126,9 +459126,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64818104, + "vtable_address": 64822008, "methods": [ - 37203648 + 37207488 ], "bases": [ { @@ -459150,9 +459150,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::refit()::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::BVHNRefitter<4>::refit()::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804104, + "vtable_address": 64808008, "methods": [ - 35890112 + 35893952 ], "bases": [ { @@ -459174,9 +459174,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818848, + "vtable_address": 64822752, "methods": [ - 37312160 + 37316000 ], "bases": [ { @@ -459198,9 +459198,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818872, + "vtable_address": 64822776, "methods": [ - 37318560 + 37322400 ], "bases": [ { @@ -459222,9 +459222,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818944, + "vtable_address": 64822848, "methods": [ - 37330176 + 37334016 ], "bases": [ { @@ -459246,9 +459246,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818968, + "vtable_address": 64822872, "methods": [ - 37336576 + 37340416 ], "bases": [ { @@ -459270,9 +459270,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819088, + "vtable_address": 64822992, "methods": [ - 37357248 + 37361088 ], "bases": [ { @@ -459294,9 +459294,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64819112, + "vtable_address": 64823016, "methods": [ - 37363648 + 37367488 ], "bases": [ { @@ -459318,9 +459318,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818992, + "vtable_address": 64822896, "methods": [ - 37339232 + 37343072 ], "bases": [ { @@ -459342,9 +459342,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64819016, + "vtable_address": 64822920, "methods": [ - 37345536 + 37349376 ], "bases": [ { @@ -459366,9 +459366,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819040, + "vtable_address": 64822944, "methods": [ - 37348192 + 37352032 ], "bases": [ { @@ -459390,9 +459390,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64819064, + "vtable_address": 64822968, "methods": [ - 37354592 + 37358432 ], "bases": [ { @@ -459414,9 +459414,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818896, + "vtable_address": 64822800, "methods": [ - 37321216 + 37325056 ], "bases": [ { @@ -459438,9 +459438,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64818920, + "vtable_address": 64822824, "methods": [ - 37327520 + 37331360 ], "bases": [ { @@ -459462,9 +459462,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::create_spatial_splits(embree::sse2::PrimInfoExtRange&, embree::sse2::SpatialBinSplit<(unsigned long)16> const&, embree::sse2::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArraySpatialSAH::create_spatial_splits(embree::sse2::PrimInfoExtRange&, embree::sse2::SpatialBinSplit<(unsigned long)16> const&, embree::sse2::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811504, + "vtable_address": 64815408, "methods": [ - 36534576 + 36538416 ], "bases": [ { @@ -459486,9 +459486,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArraySpatialSAH::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811528, + "vtable_address": 64815432, "methods": [ - 36536720 + 36540560 ], "bases": [ { @@ -459510,9 +459510,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArraySpatialSAH::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64811552, + "vtable_address": 64815456, "methods": [ - 36542720 + 36546560 ], "bases": [ { @@ -459534,9 +459534,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::create_spatial_splits(embree::sse2::PrimInfoExtRange&, embree::sse2::SpatialBinSplit<(unsigned long)16> const&, embree::sse2::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArraySpatialSAH::create_spatial_splits(embree::sse2::PrimInfoExtRange&, embree::sse2::SpatialBinSplit<(unsigned long)16> const&, embree::sse2::SpatialBinMapping<(unsigned long)16> const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811576, + "vtable_address": 64815480, "methods": [ - 36545312 + 36549152 ], "bases": [ { @@ -459558,9 +459558,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArraySpatialSAH::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811600, + "vtable_address": 64815504, "methods": [ - 36548672 + 36552512 ], "bases": [ { @@ -459582,9 +459582,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2}>(unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicArraySpatialSAH::moveExtentedRange(embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange const&, embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#2} const&)::{lambda()#1}>", - "vtable_address": 64811624, + "vtable_address": 64815528, "methods": [ - 36561584 + 36565424 ], "bases": [ { @@ -459606,9 +459606,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64892768, + "vtable_address": 64896672, "methods": [ - 47617008 + 47620912 ], "bases": [ { @@ -459630,9 +459630,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64892720, + "vtable_address": 64896624, "methods": [ - 47610672 + 47614576 ], "bases": [ { @@ -459654,9 +459654,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64892696, + "vtable_address": 64896600, "methods": [ - 47607696 + 47611600 ], "bases": [ { @@ -459678,9 +459678,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64892744, + "vtable_address": 64896648, "methods": [ - 47613680 + 47617584 ], "bases": [ { @@ -459702,9 +459702,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64801120, + "vtable_address": 64805024, "methods": [ - 35603408 + 35607248 ], "bases": [ { @@ -459726,9 +459726,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64801072, + "vtable_address": 64804976, "methods": [ - 35596864 + 35600704 ], "bases": [ { @@ -459750,9 +459750,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64801048, + "vtable_address": 64804952, "methods": [ - 35593808 + 35597648 ], "bases": [ { @@ -459774,9 +459774,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3}>(unsigned long, unsigned long, unsigned long, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#3} const&)::{lambda()#1}>", - "vtable_address": 64801096, + "vtable_address": 64805000, "methods": [ - 35599952 + 35603792 ], "bases": [ { @@ -459798,9 +459798,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range)#1}, std::bit_or >(unsigned long, unsigned long, unsigned long, unsigned long, bool const&, bool embree::parallel_reduce(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range const)#1}&, std::bit_or const&)::{lambda(unsigned long)#1}>(unsigned long, bool embree::parallel_reduce_internal(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range)#1}, std::bit_or >(unsigned long, unsigned long, unsigned long, unsigned long, bool const&, bool embree::parallel_reduce(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range const)#1}&, std::bit_or const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range)#1}, std::bit_or >(unsigned long, unsigned long, unsigned long, unsigned long, bool const&, bool embree::parallel_reduce(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range const)#1}&, std::bit_or const&)::{lambda(unsigned long)#1}>(unsigned long, bool embree::parallel_reduce_internal(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range)#1}, std::bit_or >(unsigned long, unsigned long, unsigned long, unsigned long, bool const&, bool embree::parallel_reduce(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1}, std::bit_or >(unsigned long, unsigned long, bool const&, bool embree::parallel_any_of(unsigned long, unsigned long, embree::Scene::checkIfModifiedAndSet()::{lambda(unsigned long)#1})::{lambda(embree::range const&)#1} const&, std::bit_or const&)::{lambda(embree::range const)#1}&, std::bit_or const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64784264, + "vtable_address": 64788168, "methods": [ - 33454368 + 33458208 ], "bases": [ { @@ -459822,9 +459822,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::CentGeom > embree::parallel_reduce_internal >, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::CentGeom > embree::parallel_reduce_internal >, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::avx::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64864136, + "vtable_address": 64868040, "methods": [ - 44665968 + 44669872 ], "bases": [ { @@ -459846,9 +459846,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::CentGeom > embree::parallel_reduce_internal >, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::CentGeom > embree::parallel_reduce_internal >, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1}, embree::CentGeom > const (embree::CentGeom > const&, embree::CentGeom > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::CentGeom > const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::computePrimInfo(embree::range const&, embree::LinearSpace3 const&)::{lambda(embree::range const&)#1} const&, embree::CentGeom > const ( const&)(embree::CentGeom > const&, embree::CentGeom > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804688, + "vtable_address": 64808592, "methods": [ - 35994544 + 35998384 ], "bases": [ { @@ -459870,9 +459870,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875656, + "vtable_address": 64879560, "methods": [ - 45728752 + 45732656 ], "bases": [ { @@ -459894,9 +459894,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875680, + "vtable_address": 64879584, "methods": [ - 45731808 + 45735712 ], "bases": [ { @@ -459918,9 +459918,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875728, + "vtable_address": 64879632, "methods": [ - 45738160 + 45742064 ], "bases": [ { @@ -459942,9 +459942,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875752, + "vtable_address": 64879656, "methods": [ - 45741216 + 45745120 ], "bases": [ { @@ -459966,9 +459966,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::avx::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875704, + "vtable_address": 64879608, "methods": [ - 45735104 + 45739008 ], "bases": [ { @@ -459990,9 +459990,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888472, + "vtable_address": 64892376, "methods": [ - 47238688 + 47242592 ], "bases": [ { @@ -460014,9 +460014,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865624, + "vtable_address": 64869528, "methods": [ - 44862432 + 44866336 ], "bases": [ { @@ -460038,9 +460038,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865648, + "vtable_address": 64869552, "methods": [ - 44865520 + 44869424 ], "bases": [ { @@ -460062,9 +460062,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::GridRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814192, + "vtable_address": 64818096, "methods": [ - 36859792 + 36863632 ], "bases": [ { @@ -460086,9 +460086,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814216, + "vtable_address": 64818120, "methods": [ - 36862672 + 36866512 ], "bases": [ { @@ -460110,9 +460110,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814264, + "vtable_address": 64818168, "methods": [ - 36868720 + 36872560 ], "bases": [ { @@ -460134,9 +460134,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814288, + "vtable_address": 64818192, "methods": [ - 36871664 + 36875504 ], "bases": [ { @@ -460158,9 +460158,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds >(embree::sse2::RecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814240, + "vtable_address": 64818144, "methods": [ - 36865840 + 36869680 ], "bases": [ { @@ -460182,9 +460182,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::SubdivRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822976, + "vtable_address": 64826880, "methods": [ - 38401584 + 38405424 ], "bases": [ { @@ -460206,9 +460206,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805696, + "vtable_address": 64809600, "methods": [ - 36110688 + 36114528 ], "bases": [ { @@ -460230,9 +460230,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::LBBox embree::parallel_reduce_internal, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::LBBox const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::LBBox embree::SetMB::linearBounds(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::LBBox const&, embree::LBBox const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805720, + "vtable_address": 64809624, "methods": [ - 36113728 + 36117568 ], "bases": [ { @@ -460254,9 +460254,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822112, + "vtable_address": 64826016, "methods": [ - 38123888 + 38127728 ], "bases": [ { @@ -460278,9 +460278,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned long, bool, embree::SubdivMesh::KeyHalfEdge const*, embree::SubdivMesh::KeyHalfEdge*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822136, + "vtable_address": 64826040, "methods": [ - 38126384 + 38130224 ], "bases": [ { @@ -460302,9 +460302,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64890536, + "vtable_address": 64894440, "methods": [ - 47441056 + 47444960 ], "bases": [ { @@ -460326,9 +460326,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::BVHBuilderMorton::BuildPrim const*, embree::avx::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64890560, + "vtable_address": 64894464, "methods": [ - 47443280 + 47447184 ], "bases": [ { @@ -460350,9 +460350,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872440, + "vtable_address": 64876344, "methods": [ - 45352112 + 45356016 ], "bases": [ { @@ -460374,9 +460374,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::avx::PresplitItem const*, embree::avx::PresplitItem*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872464, + "vtable_address": 64876368, "methods": [ - 45354448 + 45358352 ], "bases": [ { @@ -460398,9 +460398,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822160, + "vtable_address": 64826064, "methods": [ - 38132368 + 38136208 ], "bases": [ { @@ -460422,9 +460422,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned int>::tbbRadixIteration(unsigned int, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822184, + "vtable_address": 64826088, "methods": [ - 38134512 + 38138352 ], "bases": [ { @@ -460446,9 +460446,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822208, + "vtable_address": 64826112, "methods": [ - 38140016 + 38143856 ], "bases": [ { @@ -460470,9 +460470,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::KeyValue, unsigned long>::tbbRadixIteration(unsigned long, bool, embree::parallel_map::KeyValue const*, embree::parallel_map::KeyValue*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822232, + "vtable_address": 64826136, "methods": [ - 38142512 + 38146352 ], "bases": [ { @@ -460494,9 +460494,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806896, + "vtable_address": 64810800, "methods": [ - 36252752 + 36256592 ], "bases": [ { @@ -460518,9 +460518,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::BVHBuilderMorton::BuildPrim const*, embree::sse2::BVHBuilderMorton::BuildPrim*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64806920, + "vtable_address": 64810824, "methods": [ - 36254896 + 36258736 ], "bases": [ { @@ -460542,9 +460542,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811648, + "vtable_address": 64815552, "methods": [ - 36566832 + 36570672 ], "bases": [ { @@ -460566,9 +460566,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, embree::sse2::PresplitItem const*, embree::sse2::PresplitItem*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811672, + "vtable_address": 64815576, "methods": [ - 36569072 + 36572912 ], "bases": [ { @@ -460590,9 +460590,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#1}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822256, + "vtable_address": 64826160, "methods": [ - 38147680 + 38151520 ], "bases": [ { @@ -460614,9 +460614,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#2}>(unsigned long, embree::ParallelRadixSort::tbbRadixIteration(unsigned int, bool, unsigned int const*, unsigned int*, unsigned long)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822280, + "vtable_address": 64826184, "methods": [ - 38149824 + 38153664 ], "bases": [ { @@ -460638,9 +460638,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::avx::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865696, + "vtable_address": 64869600, "methods": [ - 44878272 + 44882176 ], "bases": [ { @@ -460662,9 +460662,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::SetMB const embree::SetMB::primInfo(embree::sse2::VirtualRecalculatePrimRef const&, embree::LinearSpace3 const&) const::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805768, + "vtable_address": 64809672, "methods": [ - 36124640 + 36128480 ], "bases": [ { @@ -460686,9 +460686,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875896, + "vtable_address": 64879800, "methods": [ - 45772320 + 45776224 ], "bases": [ { @@ -460710,9 +460710,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875920, + "vtable_address": 64879824, "methods": [ - 45859248 + 45863152 ], "bases": [ { @@ -460734,9 +460734,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875944, + "vtable_address": 64879848, "methods": [ - 45862720 + 45866624 ], "bases": [ { @@ -460758,9 +460758,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875968, + "vtable_address": 64879872, "methods": [ - 45932896 + 45936800 ], "bases": [ { @@ -460782,9 +460782,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64876040, + "vtable_address": 64879944, "methods": [ - 46015824 + 46019728 ], "bases": [ { @@ -460806,9 +460806,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64876064, + "vtable_address": 64879968, "methods": [ - 46091232 + 46095136 ], "bases": [ { @@ -460830,9 +460830,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64876088, + "vtable_address": 64879992, "methods": [ - 46094704 + 46098608 ], "bases": [ { @@ -460854,9 +460854,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64876112, + "vtable_address": 64880016, "methods": [ - 46238064 + 46241968 ], "bases": [ { @@ -460878,9 +460878,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875992, + "vtable_address": 64879896, "methods": [ - 45937440 + 45941344 ], "bases": [ { @@ -460902,9 +460902,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64876016, + "vtable_address": 64879920, "methods": [ - 46012352 + 46016256 ], "bases": [ { @@ -460926,9 +460926,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888520, + "vtable_address": 64892424, "methods": [ - 47246960 + 47250864 ], "bases": [ { @@ -460950,9 +460950,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888544, + "vtable_address": 64892448, "methods": [ - 47282672 + 47286576 ], "bases": [ { @@ -460974,9 +460974,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865768, + "vtable_address": 64869672, "methods": [ - 44897152 + 44901056 ], "bases": [ { @@ -460998,9 +460998,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865792, + "vtable_address": 64869696, "methods": [ - 44969840 + 44973744 ], "bases": [ { @@ -461022,9 +461022,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814432, + "vtable_address": 64818336, "methods": [ - 36901344 + 36905184 ], "bases": [ { @@ -461046,9 +461046,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814456, + "vtable_address": 64818360, "methods": [ - 36946512 + 36950352 ], "bases": [ { @@ -461070,9 +461070,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814480, + "vtable_address": 64818384, "methods": [ - 36949776 + 36953616 ], "bases": [ { @@ -461094,9 +461094,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814504, + "vtable_address": 64818408, "methods": [ - 36986704 + 36990544 ], "bases": [ { @@ -461118,9 +461118,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814576, + "vtable_address": 64818480, "methods": [ - 37031472 + 37035312 ], "bases": [ { @@ -461142,9 +461142,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814600, + "vtable_address": 64818504, "methods": [ - 37069136 + 37072976 ], "bases": [ { @@ -461166,9 +461166,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814624, + "vtable_address": 64818528, "methods": [ - 37072400 + 37076240 ], "bases": [ { @@ -461190,9 +461190,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814648, + "vtable_address": 64818552, "methods": [ - 37144352 + 37148192 ], "bases": [ { @@ -461214,9 +461214,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814528, + "vtable_address": 64818432, "methods": [ - 36991008 + 36994848 ], "bases": [ { @@ -461238,9 +461238,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814552, + "vtable_address": 64818456, "methods": [ - 37028208 + 37032048 ], "bases": [ { @@ -461262,9 +461262,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64823024, + "vtable_address": 64826928, "methods": [ - 38409616 + 38413456 ], "bases": [ { @@ -461286,9 +461286,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64823048, + "vtable_address": 64826952, "methods": [ - 38444928 + 38448768 ], "bases": [ { @@ -461310,9 +461310,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#1} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805840, + "vtable_address": 64809744, "methods": [ - 36140096 + 36143936 ], "bases": [ { @@ -461334,9 +461334,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoMBT > embree::parallel_reduce_internal >, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3}, embree::PrimInfoMBT > const (embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoMBT > const&, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::range const&)#3} const&, embree::PrimInfoMBT > const ( const&)(embree::PrimInfoMBT > const&, embree::PrimInfoMBT > const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805864, + "vtable_address": 64809768, "methods": [ - 36173216 + 36177056 ], "bases": [ { @@ -461358,9 +461358,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64871672, + "vtable_address": 64875576, "methods": [ - 45220720 + 45224624 ], "bases": [ { @@ -461382,9 +461382,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883768, + "vtable_address": 64887672, "methods": [ - 46468752 + 46472656 ], "bases": [ { @@ -461406,9 +461406,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883816, + "vtable_address": 64887720, "methods": [ - 46476848 + 46480752 ], "bases": [ { @@ -461430,9 +461430,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883888, + "vtable_address": 64887792, "methods": [ - 46488992 + 46492896 ], "bases": [ { @@ -461454,9 +461454,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883840, + "vtable_address": 64887744, "methods": [ - 46480896 + 46484800 ], "bases": [ { @@ -461478,9 +461478,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883864, + "vtable_address": 64887768, "methods": [ - 46484944 + 46488848 ], "bases": [ { @@ -461502,9 +461502,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883792, + "vtable_address": 64887696, "methods": [ - 46472800 + 46476704 ], "bases": [ { @@ -461526,9 +461526,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883624, + "vtable_address": 64887528, "methods": [ - 46443536 + 46447440 ], "bases": [ { @@ -461550,9 +461550,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883672, + "vtable_address": 64887576, "methods": [ - 46452560 + 46456464 ], "bases": [ { @@ -461574,9 +461574,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883744, + "vtable_address": 64887648, "methods": [ - 46464704 + 46468608 ], "bases": [ { @@ -461598,9 +461598,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883696, + "vtable_address": 64887600, "methods": [ - 46456608 + 46460512 ], "bases": [ { @@ -461622,9 +461622,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883720, + "vtable_address": 64887624, "methods": [ - 46460656 + 46464560 ], "bases": [ { @@ -461646,9 +461646,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883648, + "vtable_address": 64887552, "methods": [ - 46448512 + 46452416 ], "bases": [ { @@ -461670,9 +461670,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818416, + "vtable_address": 64822320, "methods": [ - 37248928 + 37252768 ], "bases": [ { @@ -461694,9 +461694,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818464, + "vtable_address": 64822368, "methods": [ - 37257376 + 37261216 ], "bases": [ { @@ -461718,9 +461718,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818536, + "vtable_address": 64822440, "methods": [ - 37269376 + 37273216 ], "bases": [ { @@ -461742,9 +461742,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818488, + "vtable_address": 64822392, "methods": [ - 37261376 + 37265216 ], "bases": [ { @@ -461766,9 +461766,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818512, + "vtable_address": 64822416, "methods": [ - 37265376 + 37269216 ], "bases": [ { @@ -461790,9 +461790,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range)#1}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::parallel_reduce >, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5}>(unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::range const&)#4} const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(embree::range const)#1}&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::build()::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#5} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818440, + "vtable_address": 64822344, "methods": [ - 37253376 + 37257216 ], "bases": [ { @@ -461814,9 +461814,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#12} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#13} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811024, + "vtable_address": 64814928, "methods": [ - 36465952 + 36469792 ], "bases": [ { @@ -461838,9 +461838,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885496, + "vtable_address": 64889400, "methods": [ - 46824144 + 46828048 ], "bases": [ { @@ -461862,9 +461862,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885640, + "vtable_address": 64889544, "methods": [ - 46861680 + 46865584 ], "bases": [ { @@ -461886,9 +461886,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885856, + "vtable_address": 64889760, "methods": [ - 46917952 + 46921856 ], "bases": [ { @@ -461910,9 +461910,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885712, + "vtable_address": 64889616, "methods": [ - 46880880 + 46884784 ], "bases": [ { @@ -461934,9 +461934,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885784, + "vtable_address": 64889688, "methods": [ - 46899216 + 46903120 ], "bases": [ { @@ -461958,9 +461958,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885568, + "vtable_address": 64889472, "methods": [ - 46842480 + 46846384 ], "bases": [ { @@ -461982,9 +461982,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885064, + "vtable_address": 64888968, "methods": [ - 46697152 + 46701056 ], "bases": [ { @@ -462006,9 +462006,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885208, + "vtable_address": 64889112, "methods": [ - 46740032 + 46743936 ], "bases": [ { @@ -462030,9 +462030,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885424, + "vtable_address": 64889328, "methods": [ - 46804320 + 46808224 ], "bases": [ { @@ -462054,9 +462054,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885280, + "vtable_address": 64889184, "methods": [ - 46761472 + 46765376 ], "bases": [ { @@ -462078,9 +462078,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885352, + "vtable_address": 64889256, "methods": [ - 46782496 + 46786400 ], "bases": [ { @@ -462102,9 +462102,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::avx::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885136, + "vtable_address": 64889040, "methods": [ - 46718592 + 46722496 ], "bases": [ { @@ -462126,9 +462126,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819136, + "vtable_address": 64823040, "methods": [ - 37371264 + 37375104 ], "bases": [ { @@ -462150,9 +462150,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819280, + "vtable_address": 64823184, "methods": [ - 37407008 + 37410848 ], "bases": [ { @@ -462174,9 +462174,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819496, + "vtable_address": 64823400, "methods": [ - 37460624 + 37464464 ], "bases": [ { @@ -462198,9 +462198,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819352, + "vtable_address": 64823256, "methods": [ - 37424880 + 37428720 ], "bases": [ { @@ -462222,9 +462222,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819424, + "vtable_address": 64823328, "methods": [ - 37442752 + 37446592 ], "bases": [ { @@ -462246,9 +462246,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::PrimInfoT > embree::parallel_reduce_internal >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::PrimInfoT > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::openNodesBasedOnExtend(embree::sse2::PrimInfoExtRange&)::{lambda(embree::PrimInfoT > const&, embree::PrimInfoT > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819208, + "vtable_address": 64823112, "methods": [ - 37389136 + 37392976 ], "bases": [ { @@ -462270,9 +462270,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx2::BVHNCollider<4>::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx2::BVHNCollider<4>::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64905176, + "vtable_address": 64909080, "methods": [ - 54353248 + 54357152 ], "bases": [ { @@ -462294,9 +462294,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx2::BVHNCollider<8>::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx2::BVHNCollider<8>::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64905200, + "vtable_address": 64909104, "methods": [ - 54357680 + 54361584 ], "bases": [ { @@ -462318,9 +462318,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BVHNCollider<4>::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BVHNCollider<4>::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64861160, + "vtable_address": 64865064, "methods": [ - 44475696 + 44479600 ], "bases": [ { @@ -462342,9 +462342,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BVHNCollider<8>::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BVHNCollider<8>::collide_recurse_entry(embree::NodeRefPtr<8>, embree::BBox const&, embree::NodeRefPtr<8>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64861184, + "vtable_address": 64865088, "methods": [ - 44480128 + 44484032 ], "bases": [ { @@ -462366,9 +462366,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872680, + "vtable_address": 64876584, "methods": [ - 45407680 + 45411584 ], "bases": [ { @@ -462390,9 +462390,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long, embree::avx::SplitInfoT >&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872728, + "vtable_address": 64876632, "methods": [ - 45451248 + 45455152 ], "bases": [ { @@ -462414,9 +462414,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64863632, + "vtable_address": 64867536, "methods": [ - 44585136 + 44589040 ], "bases": [ { @@ -462438,9 +462438,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64864208, + "vtable_address": 64868112, "methods": [ - 44739296 + 44743200 ], "bases": [ { @@ -462462,9 +462462,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865672, + "vtable_address": 64869576, "methods": [ - 44873616 + 44877520 ], "bases": [ { @@ -462486,9 +462486,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::avx::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinMapping<(unsigned long)32> const&, embree::avx::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865720, + "vtable_address": 64869624, "methods": [ - 44887856 + 44891760 ], "bases": [ { @@ -462510,9 +462510,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886240, + "vtable_address": 64890144, "methods": [ - 47073040 + 47076944 ], "bases": [ { @@ -462534,9 +462534,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886336, + "vtable_address": 64890240, "methods": [ - 47113024 + 47116928 ], "bases": [ { @@ -462558,9 +462558,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886480, + "vtable_address": 64890384, "methods": [ - 47172976 + 47176880 ], "bases": [ { @@ -462582,9 +462582,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886384, + "vtable_address": 64890288, "methods": [ - 47133008 + 47136912 ], "bases": [ { @@ -462606,9 +462606,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886432, + "vtable_address": 64890336, "methods": [ - 47152992 + 47156896 ], "bases": [ { @@ -462630,9 +462630,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886288, + "vtable_address": 64890192, "methods": [ - 47093040 + 47096944 ], "bases": [ { @@ -462654,9 +462654,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885952, + "vtable_address": 64889856, "methods": [ - 46951984 + 46955888 ], "bases": [ { @@ -462678,9 +462678,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886048, + "vtable_address": 64889952, "methods": [ - 46992224 + 46996128 ], "bases": [ { @@ -462702,9 +462702,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886192, + "vtable_address": 64890096, "methods": [ - 47052560 + 47056464 ], "bases": [ { @@ -462726,9 +462726,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886096, + "vtable_address": 64890000, "methods": [ - 47012336 + 47016240 ], "bases": [ { @@ -462750,9 +462750,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886144, + "vtable_address": 64890048, "methods": [ - 47032448 + 47036352 ], "bases": [ { @@ -462774,9 +462774,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::avx::BinInfoT<(unsigned long)32, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886000, + "vtable_address": 64889904, "methods": [ - 46972112 + 46976016 ], "bases": [ { @@ -462798,9 +462798,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875776, + "vtable_address": 64879680, "methods": [ - 45745984 + 45749888 ], "bases": [ { @@ -462822,9 +462822,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875800, + "vtable_address": 64879704, "methods": [ - 45752528 + 45756432 ], "bases": [ { @@ -462846,9 +462846,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875848, + "vtable_address": 64879752, "methods": [ - 45763856 + 45767760 ], "bases": [ { @@ -462870,9 +462870,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875872, + "vtable_address": 64879776, "methods": [ - 45768816 + 45772720 ], "bases": [ { @@ -462894,9 +462894,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875824, + "vtable_address": 64879728, "methods": [ - 45758896 + 45762800 ], "bases": [ { @@ -462918,9 +462918,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888496, + "vtable_address": 64892400, "methods": [ - 47243664 + 47247568 ], "bases": [ { @@ -462942,9 +462942,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::avx::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::avx::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865744, + "vtable_address": 64869648, "methods": [ - 44893856 + 44897760 ], "bases": [ { @@ -462966,9 +462966,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872704, + "vtable_address": 64876608, "methods": [ - 45444768 + 45448672 ], "bases": [ { @@ -462990,9 +462990,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArraySpatialSAH::parallel_spatial_find(embree::avx::PrimInfoExtRange const&, unsigned long)::{lambda(embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::avx::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64872752, + "vtable_address": 64876656, "methods": [ - 45525456 + 45529360 ], "bases": [ { @@ -463014,9 +463014,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64863584, + "vtable_address": 64867488, "methods": [ - 44537936 + 44541840 ], "bases": [ { @@ -463038,9 +463038,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::avx::HeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::avx::PrimInfoRange const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64863608, + "vtable_address": 64867512, "methods": [ - 44542416 + 44546320 ], "bases": [ { @@ -463062,9 +463062,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64864160, + "vtable_address": 64868064, "methods": [ - 44668432 + 44672336 ], "bases": [ { @@ -463086,9 +463086,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::avx::UnalignedHeuristicArrayBinningSAH::split_template(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::avx::PrimInfoRange&, embree::avx::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64864184, + "vtable_address": 64868088, "methods": [ - 44673552 + 44677456 ], "bases": [ { @@ -463110,9 +463110,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804328, + "vtable_address": 64808232, "methods": [ - 35912560 + 35916400 ], "bases": [ { @@ -463134,9 +463134,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#1}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#3}, void embree::sse2::HeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::sse2::PrimInfoRange const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#4}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804352, + "vtable_address": 64808256, "methods": [ - 35916880 + 35920720 ], "bases": [ { @@ -463158,9 +463158,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804712, + "vtable_address": 64808616, "methods": [ - 35996928 + 36000768 ], "bases": [ { @@ -463182,9 +463182,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::PrimRef const&)#3}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::PrimRef const&)#4}, void embree::sse2::UnalignedHeuristicArrayBinningSAH::split_template(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::range const&, embree::sse2::PrimInfoRange&, embree::sse2::PrimInfoRange&)::{lambda(embree::CentGeom >&, embree::CentGeom > const&)#5}>::partition(embree::CentGeom >&, embree::CentGeom >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804736, + "vtable_address": 64808640, "methods": [ - 36001600 + 36005440 ], "bases": [ { @@ -463206,9 +463206,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865528, + "vtable_address": 64869432, "methods": [ - 44818352 + 44822256 ], "bases": [ { @@ -463230,9 +463230,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::HeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865552, + "vtable_address": 64869456, "methods": [ - 44823008 + 44826912 ], "bases": [ { @@ -463254,9 +463254,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865576, + "vtable_address": 64869480, "methods": [ - 44825632 + 44829536 ], "bases": [ { @@ -463278,9 +463278,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::avx::UnalignedHeuristicArrayBinningMB::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865600, + "vtable_address": 64869504, "methods": [ - 44830576 + 44834480 ], "bases": [ { @@ -463302,9 +463302,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805600, + "vtable_address": 64809504, "methods": [ - 36086096 + 36089936 ], "bases": [ { @@ -463326,9 +463326,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::HeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805624, + "vtable_address": 64809528, "methods": [ - 36090608 + 36094448 ], "bases": [ { @@ -463350,9 +463350,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805648, + "vtable_address": 64809552, "methods": [ - 36093184 + 36097024 ], "bases": [ { @@ -463374,9 +463374,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2}>(unsigned long, embree::parallel_partition_task >, embree::EmptyTy, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#1}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimRefMB const&)#2}, embree::sse2::UnalignedHeuristicArrayBinningMB::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::LinearSpace3 const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimInfoMBT >&, embree::PrimInfoMBT > const&)#3}>::partition(embree::PrimInfoMBT >&, embree::PrimInfoMBT >&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805672, + "vtable_address": 64809576, "methods": [ - 36097968 + 36101808 ], "bases": [ { @@ -463398,9 +463398,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BVHNCollider<4>::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BVHNCollider<4>::collide_recurse_entry(embree::NodeRefPtr<4>, embree::BBox const&, embree::NodeRefPtr<4>, embree::BBox const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64803056, + "vtable_address": 64806960, "methods": [ - 35874048 + 35877888 ], "bases": [ { @@ -463422,9 +463422,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811888, + "vtable_address": 64815792, "methods": [ - 36621056 + 36624896 ], "bases": [ { @@ -463446,9 +463446,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long, embree::sse2::SplitInfoT >&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811936, + "vtable_address": 64815840, "methods": [ - 36653408 + 36657248 ], "bases": [ { @@ -463470,9 +463470,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804376, + "vtable_address": 64808280, "methods": [ - 35944336 + 35948176 ], "bases": [ { @@ -463494,9 +463494,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > embree::parallel_reduce_internal >, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_serial_or_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRef>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox >&, embree::PrimRef const*, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningSAH::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64804760, + "vtable_address": 64808664, "methods": [ - 36038832 + 36042672 ], "bases": [ { @@ -463518,9 +463518,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805744, + "vtable_address": 64809648, "methods": [ - 36121760 + 36125600 ], "bases": [ { @@ -463542,9 +463542,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > embree::parallel_reduce_internal >, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1}, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::range const&)#1} const&, void embree::bin_parallel::BinBoundsAndCenter, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >, embree::sse2::BinMapping<(unsigned long)32>, embree::PrimRefMB>(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox >&, embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinMapping<(unsigned long)32> const&, embree::sse2::UnalignedHeuristicArrayBinningMB::BinBoundsAndCenter const&)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::PrimRefMB, embree::LBBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805792, + "vtable_address": 64809696, "methods": [ - 36134112 + 36137952 ], "bases": [ { @@ -463566,9 +463566,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819592, + "vtable_address": 64823496, "methods": [ - 37492944 + 37496784 ], "bases": [ { @@ -463590,9 +463590,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819688, + "vtable_address": 64823592, "methods": [ - 37532352 + 37536192 ], "bases": [ { @@ -463614,9 +463614,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819832, + "vtable_address": 64823736, "methods": [ - 37591440 + 37595280 ], "bases": [ { @@ -463638,9 +463638,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819736, + "vtable_address": 64823640, "methods": [ - 37552048 + 37555888 ], "bases": [ { @@ -463662,9 +463662,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > embree::parallel_reduce_internal >::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819784, + "vtable_address": 64823688, "methods": [ - 37571744 + 37575584 ], "bases": [ { @@ -463686,9 +463686,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > embree::parallel_reduce_internal::BuildRef, embree::BBox >, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::parallel_object_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&, embree::sse2::BinInfoT<(unsigned long)32, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, embree::BBox > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819640, + "vtable_address": 64823544, "methods": [ - 37512656 + 37516496 ], "bases": [ { @@ -463710,9 +463710,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::GridRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814312, + "vtable_address": 64818216, "methods": [ - 36876608 + 36880448 ], "bases": [ { @@ -463734,9 +463734,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814336, + "vtable_address": 64818240, "methods": [ - 36881712 + 36885552 ], "bases": [ { @@ -463758,9 +463758,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814384, + "vtable_address": 64818288, "methods": [ - 36893344 + 36897184 ], "bases": [ { @@ -463782,9 +463782,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814408, + "vtable_address": 64818312, "methods": [ - 36898064 + 36901904 ], "bases": [ { @@ -463806,9 +463806,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo embree::parallel_reduce_internal, (unsigned long)2>::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::RecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814360, + "vtable_address": 64818264, "methods": [ - 36888176 + 36892016 ], "bases": [ { @@ -463830,9 +463830,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::SubdivRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64823000, + "vtable_address": 64826904, "methods": [ - 38406432 + 38410272 ], "bases": [ { @@ -463854,9 +463854,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo embree::parallel_reduce_internal::TemporalBinInfo, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1}, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const (embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&)>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo(embree::PrimRefMB const*, unsigned long, unsigned long, unsigned long, unsigned long, embree::BBox, embree::SetMB const&, embree::sse2::VirtualRecalculatePrimRef const&)::bin_parallel::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const ( const&)(embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&, embree::sse2::HeuristicMBlurTemporalSplit::TemporalBinInfo const&))::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805816, + "vtable_address": 64809720, "methods": [ - 36136912 + 36140752 ], "bases": [ { @@ -463878,9 +463878,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811912, + "vtable_address": 64815816, "methods": [ - 36646960 + 36650800 ], "bases": [ { @@ -463902,9 +463902,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> embree::parallel_reduce_internal, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArraySpatialSAH::parallel_spatial_find(embree::sse2::PrimInfoExtRange const&, unsigned long)::{lambda(embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&, embree::sse2::SpatialBinInfo<(unsigned long)16, embree::PrimRef> const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811960, + "vtable_address": 64815864, "methods": [ - 36702784 + 36706624 ], "bases": [ { @@ -463926,9 +463926,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1}>(unsigned long, float embree::parallel_reduce_internal > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1}>(unsigned long, float embree::parallel_reduce_internal > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64871624, + "vtable_address": 64875528, "methods": [ - 45214432 + 45218336 ], "bases": [ { @@ -463950,9 +463950,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1}>(unsigned long, float embree::parallel_reduce_internal > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1}>(unsigned long, float embree::parallel_reduce_internal > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6}>(unsigned long, unsigned long, unsigned long, unsigned long, float const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#5} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(float const&, float const&)#6} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64810928, + "vtable_address": 64814832, "methods": [ - 36455536 + 36459376 ], "bases": [ { @@ -463974,9 +463974,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822064, + "vtable_address": 64825968, "methods": [ - 38024576 + 38028416 ], "bases": [ { @@ -463998,9 +463998,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, int const&, int embree::parallel_prefix_sum, embree::vector_t >, int, std::plus >(embree::BufferView const&, embree::vector_t >&, unsigned long, int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822088, + "vtable_address": 64825992, "methods": [ - 38026704 + 38030544 ], "bases": [ { @@ -464022,9 +464022,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886216, + "vtable_address": 64890120, "methods": [ - 47055936 + 47059840 ], "bases": [ { @@ -464046,9 +464046,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886312, + "vtable_address": 64890216, "methods": [ - 47096416 + 47100320 ], "bases": [ { @@ -464070,9 +464070,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886456, + "vtable_address": 64890360, "methods": [ - 47156368 + 47160272 ], "bases": [ { @@ -464094,9 +464094,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886360, + "vtable_address": 64890264, "methods": [ - 47116400 + 47120304 ], "bases": [ { @@ -464118,9 +464118,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886408, + "vtable_address": 64890312, "methods": [ - 47136384 + 47140288 ], "bases": [ { @@ -464142,9 +464142,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886264, + "vtable_address": 64890168, "methods": [ - 47076416 + 47080320 ], "bases": [ { @@ -464166,9 +464166,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885928, + "vtable_address": 64889832, "methods": [ - 46935232 + 46939136 ], "bases": [ { @@ -464190,9 +464190,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886024, + "vtable_address": 64889928, "methods": [ - 46975488 + 46979392 ], "bases": [ { @@ -464214,9 +464214,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886168, + "vtable_address": 64890072, "methods": [ - 47035824 + 47039728 ], "bases": [ { @@ -464238,9 +464238,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886072, + "vtable_address": 64889976, "methods": [ - 46995600 + 46999504 ], "bases": [ { @@ -464262,9 +464262,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64886120, + "vtable_address": 64890024, "methods": [ - 47015712 + 47019616 ], "bases": [ { @@ -464286,9 +464286,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::avx::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::avx::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64885976, + "vtable_address": 64889880, "methods": [ - 46955360 + 46959264 ], "bases": [ { @@ -464310,9 +464310,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819568, + "vtable_address": 64823472, "methods": [ - 37476560 + 37480400 ], "bases": [ { @@ -464334,9 +464334,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819664, + "vtable_address": 64823568, "methods": [ - 37515984 + 37519824 ], "bases": [ { @@ -464358,9 +464358,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819808, + "vtable_address": 64823712, "methods": [ - 37575072 + 37578912 ], "bases": [ { @@ -464382,9 +464382,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819712, + "vtable_address": 64823616, "methods": [ - 37535680 + 37539520 ], "bases": [ { @@ -464406,9 +464406,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH >::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819760, + "vtable_address": 64823664, "methods": [ - 37555376 + 37559216 ], "bases": [ { @@ -464430,9 +464430,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair embree::parallel_reduce_internal, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1}, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(embree::range const&)#1} const&, embree::sse2::HeuristicArrayOpenMergeSAH::build()::{lambda(embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef*)#7}, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::BuildRef, (unsigned long)32>::getProperties(embree::sse2::PrimInfoExtRange const&)::{lambda(std::pair const&, std::pair const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64819616, + "vtable_address": 64823520, "methods": [ - 37496272 + 37500112 ], "bases": [ { @@ -464454,9 +464454,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893056, + "vtable_address": 64896960, "methods": [ - 47660784 + 47664688 ], "bases": [ { @@ -464478,9 +464478,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893008, + "vtable_address": 64896912, "methods": [ - 47651472 + 47655376 ], "bases": [ { @@ -464502,9 +464502,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892984, + "vtable_address": 64896888, "methods": [ - 47646368 + 47650272 ], "bases": [ { @@ -464526,9 +464526,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64893032, + "vtable_address": 64896936, "methods": [ - 47656400 + 47660304 ], "bases": [ { @@ -464550,9 +464550,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801408, + "vtable_address": 64805312, "methods": [ - 35647104 + 35650944 ], "bases": [ { @@ -464574,9 +464574,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801360, + "vtable_address": 64805264, "methods": [ - 35638048 + 35641888 ], "bases": [ { @@ -464598,9 +464598,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801336, + "vtable_address": 64805240, "methods": [ - 35633072 + 35636912 ], "bases": [ { @@ -464622,9 +464622,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, std::pair > embree::parallel_reduce_internal >, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1}, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2}>(unsigned long, unsigned long, unsigned long, unsigned long, std::pair > const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#1} const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(std::pair > const&, std::pair > const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801384, + "vtable_address": 64805288, "methods": [ - 35642848 + 35646688 ], "bases": [ { @@ -464646,9 +464646,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#1} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64810976, + "vtable_address": 64814880, "methods": [ - 36460832 + 36464672 ], "bases": [ { @@ -464670,9 +464670,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned int const&, unsigned int embree::parallel_prefix_sum >(unsigned int* const&, unsigned int*&, unsigned long, unsigned int const&, std::plus const&, unsigned long)::{lambda(embree::range const&, unsigned int const&)#2} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64811000, + "vtable_address": 64814904, "methods": [ - 36463104 + 36466944 ], "bases": [ { @@ -464694,9 +464694,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875176, + "vtable_address": 64879080, "methods": [ - 45667472 + 45671376 ], "bases": [ { @@ -464718,9 +464718,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875200, + "vtable_address": 64879104, "methods": [ - 45670880 + 45674784 ], "bases": [ { @@ -464742,9 +464742,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875224, + "vtable_address": 64879128, "methods": [ - 45673952 + 45677856 ], "bases": [ { @@ -464766,9 +464766,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875248, + "vtable_address": 64879152, "methods": [ - 45677360 + 45681264 ], "bases": [ { @@ -464790,9 +464790,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875272, + "vtable_address": 64879176, "methods": [ - 45679968 + 45683872 ], "bases": [ { @@ -464814,9 +464814,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875296, + "vtable_address": 64879200, "methods": [ - 45683376 + 45687280 ], "bases": [ { @@ -464838,9 +464838,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875320, + "vtable_address": 64879224, "methods": [ - 45685984 + 45689888 ], "bases": [ { @@ -464862,9 +464862,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875344, + "vtable_address": 64879248, "methods": [ - 45689392 + 45693296 ], "bases": [ { @@ -464886,9 +464886,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875464, + "vtable_address": 64879368, "methods": [ - 45704032 + 45707936 ], "bases": [ { @@ -464910,9 +464910,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875488, + "vtable_address": 64879392, "methods": [ - 45707440 + 45711344 ], "bases": [ { @@ -464934,9 +464934,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875512, + "vtable_address": 64879416, "methods": [ - 45710048 + 45713952 ], "bases": [ { @@ -464958,9 +464958,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875536, + "vtable_address": 64879440, "methods": [ - 45713456 + 45717360 ], "bases": [ { @@ -464982,9 +464982,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875560, + "vtable_address": 64879464, "methods": [ - 45716064 + 45719968 ], "bases": [ { @@ -465006,9 +465006,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875584, + "vtable_address": 64879488, "methods": [ - 45719472 + 45723376 ], "bases": [ { @@ -465030,9 +465030,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875608, + "vtable_address": 64879512, "methods": [ - 45722080 + 45725984 ], "bases": [ { @@ -465054,9 +465054,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875632, + "vtable_address": 64879536, "methods": [ - 45725488 + 45729392 ], "bases": [ { @@ -465078,9 +465078,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875368, + "vtable_address": 64879272, "methods": [ - 45692000 + 45695904 ], "bases": [ { @@ -465102,9 +465102,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875392, + "vtable_address": 64879296, "methods": [ - 45695408 + 45699312 ], "bases": [ { @@ -465126,9 +465126,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875416, + "vtable_address": 64879320, "methods": [ - 45698016 + 45701920 ], "bases": [ { @@ -465150,9 +465150,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64875440, + "vtable_address": 64879344, "methods": [ - 45701424 + 45705328 ], "bases": [ { @@ -465174,9 +465174,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888376, + "vtable_address": 64892280, "methods": [ - 47226832 + 47230736 ], "bases": [ { @@ -465198,9 +465198,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888400, + "vtable_address": 64892304, "methods": [ - 47230032 + 47233936 ], "bases": [ { @@ -465222,9 +465222,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888424, + "vtable_address": 64892328, "methods": [ - 47232432 + 47236336 ], "bases": [ { @@ -465246,9 +465246,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64888448, + "vtable_address": 64892352, "methods": [ - 47235632 + 47239536 ], "bases": [ { @@ -465270,9 +465270,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865432, + "vtable_address": 64869336, "methods": [ - 44807152 + 44811056 ], "bases": [ { @@ -465294,9 +465294,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865456, + "vtable_address": 64869360, "methods": [ - 44810352 + 44814256 ], "bases": [ { @@ -465318,9 +465318,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865480, + "vtable_address": 64869384, "methods": [ - 44812752 + 44816656 ], "bases": [ { @@ -465342,9 +465342,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::avx::HeuristicMBlurTemporalSplit::split(embree::avx::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64865504, + "vtable_address": 64869408, "methods": [ - 44815952 + 44819856 ], "bases": [ { @@ -465366,9 +465366,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813712, + "vtable_address": 64817616, "methods": [ - 36801664 + 36805504 ], "bases": [ { @@ -465390,9 +465390,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813736, + "vtable_address": 64817640, "methods": [ - 36804976 + 36808816 ], "bases": [ { @@ -465414,9 +465414,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813760, + "vtable_address": 64817664, "methods": [ - 36807440 + 36811280 ], "bases": [ { @@ -465438,9 +465438,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813784, + "vtable_address": 64817688, "methods": [ - 36810688 + 36814528 ], "bases": [ { @@ -465462,9 +465462,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813808, + "vtable_address": 64817712, "methods": [ - 36813216 + 36817056 ], "bases": [ { @@ -465486,9 +465486,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813832, + "vtable_address": 64817736, "methods": [ - 36816528 + 36820368 ], "bases": [ { @@ -465510,9 +465510,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813856, + "vtable_address": 64817760, "methods": [ - 36818992 + 36822832 ], "bases": [ { @@ -465534,9 +465534,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813880, + "vtable_address": 64817784, "methods": [ - 36822240 + 36826080 ], "bases": [ { @@ -465558,9 +465558,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814000, + "vtable_address": 64817904, "methods": [ - 36836192 + 36840032 ], "bases": [ { @@ -465582,9 +465582,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814024, + "vtable_address": 64817928, "methods": [ - 36839504 + 36843344 ], "bases": [ { @@ -465606,9 +465606,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814048, + "vtable_address": 64817952, "methods": [ - 36841968 + 36845808 ], "bases": [ { @@ -465630,9 +465630,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814072, + "vtable_address": 64817976, "methods": [ - 36845216 + 36849056 ], "bases": [ { @@ -465654,9 +465654,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814096, + "vtable_address": 64818000, "methods": [ - 36847680 + 36851520 ], "bases": [ { @@ -465678,9 +465678,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814120, + "vtable_address": 64818024, "methods": [ - 36850928 + 36854768 ], "bases": [ { @@ -465702,9 +465702,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814144, + "vtable_address": 64818048, "methods": [ - 36853392 + 36857232 ], "bases": [ { @@ -465726,9 +465726,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64814168, + "vtable_address": 64818072, "methods": [ - 36856704 + 36860544 ], "bases": [ { @@ -465750,9 +465750,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813904, + "vtable_address": 64817808, "methods": [ - 36824704 + 36828544 ], "bases": [ { @@ -465774,9 +465774,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813928, + "vtable_address": 64817832, "methods": [ - 36827952 + 36831792 ], "bases": [ { @@ -465798,9 +465798,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813952, + "vtable_address": 64817856, "methods": [ - 36830416 + 36834256 ], "bases": [ { @@ -465822,9 +465822,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit, (unsigned long)2>::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64813976, + "vtable_address": 64817880, "methods": [ - 36833664 + 36837504 ], "bases": [ { @@ -465846,9 +465846,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822880, + "vtable_address": 64826784, "methods": [ - 38389920 + 38393760 ], "bases": [ { @@ -465870,9 +465870,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822904, + "vtable_address": 64826808, "methods": [ - 38393072 + 38396912 ], "bases": [ { @@ -465894,9 +465894,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822928, + "vtable_address": 64826832, "methods": [ - 38395440 + 38399280 ], "bases": [ { @@ -465918,9 +465918,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822952, + "vtable_address": 64826856, "methods": [ - 38398592 + 38402432 ], "bases": [ { @@ -465942,9 +465942,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805504, + "vtable_address": 64809408, "methods": [ - 36075056 + 36078896 ], "bases": [ { @@ -465966,9 +465966,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#2} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805528, + "vtable_address": 64809432, "methods": [ - 36078208 + 36082048 ], "bases": [ { @@ -465990,9 +465990,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805552, + "vtable_address": 64809456, "methods": [ - 36080576 + 36084416 ], "bases": [ { @@ -466014,9 +466014,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2}>(unsigned long, unsigned long embree::parallel_filter::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4}>(embree::PrimRefMB*, unsigned long, unsigned long, unsigned long, embree::sse2::HeuristicMBlurTemporalSplit::split(embree::sse2::BinSplit<(unsigned long)32> const&, embree::SetMB const&, embree::SetMB&, embree::SetMB&)::{lambda(embree::PrimRefMB const&)#4} const&)::{lambda(unsigned long)#2} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64805576, + "vtable_address": 64809480, "methods": [ - 36083728 + 36087568 ], "bases": [ { @@ -466038,9 +466038,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892936, + "vtable_address": 64896840, "methods": [ - 47639680 + 47643584 ], "bases": [ { @@ -466062,9 +466062,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892960, + "vtable_address": 64896864, "methods": [ - 47641872 + 47645776 ], "bases": [ { @@ -466086,9 +466086,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892840, + "vtable_address": 64896744, "methods": [ - 47625872 + 47629776 ], "bases": [ { @@ -466110,9 +466110,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892864, + "vtable_address": 64896768, "methods": [ - 47629360 + 47633264 ], "bases": [ { @@ -466134,9 +466134,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892792, + "vtable_address": 64896696, "methods": [ - 47619120 + 47623024 ], "bases": [ { @@ -466158,9 +466158,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892816, + "vtable_address": 64896720, "methods": [ - 47622496 + 47626400 ], "bases": [ { @@ -466182,9 +466182,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892888, + "vtable_address": 64896792, "methods": [ - 47632832 + 47636736 ], "bases": [ { @@ -466206,9 +466206,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::avx::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64892912, + "vtable_address": 64896816, "methods": [ - 47636272 + 47640176 ], "bases": [ { @@ -466230,9 +466230,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801288, + "vtable_address": 64805192, "methods": [ - 35626544 + 35630384 ], "bases": [ { @@ -466254,9 +466254,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::Instance*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801312, + "vtable_address": 64805216, "methods": [ - 35628688 + 35632528 ], "bases": [ { @@ -466278,9 +466278,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801192, + "vtable_address": 64805096, "methods": [ - 35612352 + 35616192 ], "bases": [ { @@ -466302,9 +466302,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::QuadMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801216, + "vtable_address": 64805120, "methods": [ - 35615872 + 35619712 ], "bases": [ { @@ -466326,9 +466326,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801144, + "vtable_address": 64805048, "methods": [ - 35605472 + 35609312 ], "bases": [ { @@ -466350,9 +466350,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::TriangleMesh*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801168, + "vtable_address": 64805072, "methods": [ - 35608896 + 35612736 ], "bases": [ { @@ -466374,9 +466374,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#4} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801240, + "vtable_address": 64805144, "methods": [ - 35619392 + 35623232 ], "bases": [ { @@ -466398,9 +466398,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_prefix_sum(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5}, std::plus >(embree::ParallelPrefixSumState&, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::sse2::createMortonCodeArray(embree::UserGeometry*, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&, unsigned long)#5} const&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64801264, + "vtable_address": 64805168, "methods": [ - 35622960 + 35626800 ], "bases": [ { @@ -466422,9 +466422,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::avx::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64871648, + "vtable_address": 64875552, "methods": [ - 45217776 + 45221680 ], "bases": [ { @@ -466446,9 +466446,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9}, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10}>(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(embree::range const&)#9} const&, embree::PrimInfoT > embree::sse2::createPrimRefArray_presplit(embree::Scene*, embree::Geometry::GTypeMask, bool, unsigned long, embree::vector_t >&, embree::BuildProgressMonitor&)::{lambda(unsigned long const&, unsigned long const&)#10} const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64810952, + "vtable_address": 64814856, "methods": [ - 36458624 + 36462464 ], "bases": [ { @@ -466470,9 +466470,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884200, + "vtable_address": 64888104, "methods": [ - 46536704 + 46540608 ], "bases": [ { @@ -466494,9 +466494,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884296, + "vtable_address": 64888200, "methods": [ - 46550560 + 46554464 ], "bases": [ { @@ -466518,9 +466518,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884440, + "vtable_address": 64888344, "methods": [ - 46571808 + 46575712 ], "bases": [ { @@ -466542,9 +466542,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884344, + "vtable_address": 64888248, "methods": [ - 46557056 + 46560960 ], "bases": [ { @@ -466566,9 +466566,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884392, + "vtable_address": 64888296, "methods": [ - 46564432 + 46568336 ], "bases": [ { @@ -466590,9 +466590,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884248, + "vtable_address": 64888152, "methods": [ - 46543632 + 46547536 ], "bases": [ { @@ -466614,9 +466614,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883912, + "vtable_address": 64887816, "methods": [ - 46492912 + 46496816 ], "bases": [ { @@ -466638,9 +466638,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884008, + "vtable_address": 64887912, "methods": [ - 46507632 + 46511536 ], "bases": [ { @@ -466662,9 +466662,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884152, + "vtable_address": 64888056, "methods": [ - 46529328 + 46533232 ], "bases": [ { @@ -466686,9 +466686,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884056, + "vtable_address": 64887960, "methods": [ - 46515008 + 46518912 ], "bases": [ { @@ -466710,9 +466710,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64884104, + "vtable_address": 64888008, "methods": [ - 46521952 + 46525856 ], "bases": [ { @@ -466734,9 +466734,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64883960, + "vtable_address": 64887864, "methods": [ - 46500272 + 46504176 ], "bases": [ { @@ -466758,9 +466758,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818560, + "vtable_address": 64822464, "methods": [ - 37273280 + 37277120 ], "bases": [ { @@ -466782,9 +466782,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818656, + "vtable_address": 64822560, "methods": [ - 37286272 + 37290112 ], "bases": [ { @@ -466806,9 +466806,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818800, + "vtable_address": 64822704, "methods": [ - 37305808 + 37309648 ], "bases": [ { @@ -466830,9 +466830,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818704, + "vtable_address": 64822608, "methods": [ - 37292784 + 37296624 ], "bases": [ { @@ -466854,9 +466854,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce >::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818752, + "vtable_address": 64822656, "methods": [ - 37299296 + 37303136 ], "bases": [ { @@ -466878,9 +466878,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_for::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1}>(unsigned long, unsigned long embree::parallel_reduce_internal::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range)#1}, std::plus >(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long const&, unsigned long embree::parallel_reduce::resizeRefsList()::{lambda(embree::range const&)#1}, std::plus >(unsigned long, unsigned long, unsigned long const&, embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::resizeRefsList()::{lambda(embree::range const&)#1} const&, std::plus const&)::{lambda(embree::range const)#1}&, std::plus const&)::{lambda(unsigned long)#1} const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64818608, + "vtable_address": 64822512, "methods": [ - 37279776 + 37283616 ], "bases": [ { @@ -466902,9 +466902,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::init, embree::BufferView >(embree::BufferView const&, embree::BufferView const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_map::init, embree::BufferView >(embree::BufferView const&, embree::BufferView const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64821992, + "vtable_address": 64825896, "methods": [ - 37996192 + 38000032 ], "bases": [ { @@ -466926,9 +466926,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::init, embree::BufferView >(embree::BufferView const&, embree::BufferView const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_map::init, embree::BufferView >(embree::BufferView const&, embree::BufferView const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822016, + "vtable_address": 64825920, "methods": [ - 37998336 + 38002176 ], "bases": [ { @@ -466950,9 +466950,9 @@ }, { "type_name": "embree::TaskScheduler::ClosureTaskFunction::init >(embree::BufferView const&)::{lambda(embree::range const&)#1}>(unsigned long, unsigned long, unsigned long, void embree::parallel_set::init >(embree::BufferView const&)::{lambda(embree::range const&)#1} const&)::{lambda()#1}>", - "vtable_address": 64822040, + "vtable_address": 64825944, "methods": [ - 38000464 + 38004304 ], "bases": [ { @@ -466974,7 +466974,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64782688, + "vtable_address": 64786592, "methods": [], "bases": [], "model": { @@ -466985,7 +466985,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64784048, + "vtable_address": 64787952, "methods": [], "bases": [], "model": { @@ -466996,7 +466996,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64800744, + "vtable_address": 64804648, "methods": [], "bases": [], "model": { @@ -467007,7 +467007,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64801648, + "vtable_address": 64805552, "methods": [], "bases": [], "model": { @@ -467018,7 +467018,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64802992, + "vtable_address": 64806896, "methods": [], "bases": [], "model": { @@ -467029,7 +467029,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64803464, + "vtable_address": 64807368, "methods": [], "bases": [], "model": { @@ -467040,7 +467040,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64804264, + "vtable_address": 64808168, "methods": [], "bases": [], "model": { @@ -467051,7 +467051,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64804576, + "vtable_address": 64808480, "methods": [], "bases": [], "model": { @@ -467062,7 +467062,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64805416, + "vtable_address": 64809320, "methods": [], "bases": [], "model": { @@ -467073,7 +467073,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64806448, + "vtable_address": 64810352, "methods": [], "bases": [], "model": { @@ -467084,7 +467084,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64810528, + "vtable_address": 64814432, "methods": [], "bases": [], "model": { @@ -467095,7 +467095,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64813504, + "vtable_address": 64817408, "methods": [], "bases": [], "model": { @@ -467106,7 +467106,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64817392, + "vtable_address": 64821296, "methods": [], "bases": [], "model": { @@ -467117,7 +467117,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64820968, + "vtable_address": 64824872, "methods": [], "bases": [], "model": { @@ -467128,7 +467128,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64822696, + "vtable_address": 64826600, "methods": [], "bases": [], "model": { @@ -467139,7 +467139,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64861096, + "vtable_address": 64865000, "methods": [], "bases": [], "model": { @@ -467150,7 +467150,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64861944, + "vtable_address": 64865848, "methods": [], "bases": [], "model": { @@ -467161,7 +467161,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64863472, + "vtable_address": 64867376, "methods": [], "bases": [], "model": { @@ -467172,7 +467172,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64863928, + "vtable_address": 64867832, "methods": [], "bases": [], "model": { @@ -467183,7 +467183,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64865200, + "vtable_address": 64869104, "methods": [], "bases": [], "model": { @@ -467194,7 +467194,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64871080, + "vtable_address": 64874984, "methods": [], "bases": [], "model": { @@ -467205,7 +467205,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64874776, + "vtable_address": 64878680, "methods": [], "bases": [], "model": { @@ -467216,7 +467216,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64881592, + "vtable_address": 64885496, "methods": [], "bases": [], "model": { @@ -467227,7 +467227,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64888192, + "vtable_address": 64892096, "methods": [], "bases": [], "model": { @@ -467238,7 +467238,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64889656, + "vtable_address": 64893560, "methods": [], "bases": [], "model": { @@ -467249,7 +467249,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64892392, + "vtable_address": 64896296, "methods": [], "bases": [], "model": { @@ -467260,7 +467260,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64893296, + "vtable_address": 64897200, "methods": [], "bases": [], "model": { @@ -467271,7 +467271,7 @@ }, { "type_name": "embree::TaskScheduler::TaskFunction", - "vtable_address": 64905112, + "vtable_address": 64909016, "methods": [], "bases": [], "model": { @@ -467282,14 +467282,14 @@ }, { "type_name": "embree::TokenStream", - "vtable_address": 64905336, + "vtable_address": 64909240, "methods": [ - 57973280, - 57972480, - 33281616, - 33281712, - 57966048, - 33354144 + 57977184, + 57976384, + 33285456, + 33285552, + 57969952, + 33357984 ], "bases": [ { @@ -467322,12 +467322,12 @@ }, { "type_name": "embree::TriangleM<4>::Type", - "vtable_address": 64802536, + "vtable_address": 64806440, "methods": [ - 34113264, - 34113280, - 34113696, - 34113392 + 34117104, + 34117120, + 34117536, + 34117232 ], "bases": [ { @@ -467349,7 +467349,7 @@ }, { "type_name": "embree::TriangleMesh", - "vtable_address": 64786856, + "vtable_address": 64790760, "methods": [], "bases": [ { @@ -467382,29 +467382,52 @@ }, { "type_name": "embree::TriangleMesh", - "vtable_address": 64787328, - "methods": [ - 33586960, - 33587824, - 33281616, - 33281712, - 33468368, + "vtable_address": 64791232, + "methods": [ + 33590800, + 33591664, + 33285456, + 33285552, + 33472208, + 33585952, + 33584720, + 33304048, + 33472384, + 33584224, + 33583632, + 33472352, + 33582160, + 33472464, + 33472320, 33582112, - 33580880, + 33303664, + 33303472, + 33472336, + 33582528, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33589568, + 33582144, + 33587200, + 33583072, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33580384, - 33579792, - 33468512, - 33578320, - 33468624, - 33468480, - 33578272, + 33300016, 33299824, 33299632, - 33468496, - 33578688, - 33469248, + 33299440, 33299248, 33299056, 33298864, @@ -467413,32 +467436,9 @@ 33298288, 33298096, 33297904, - 33585728, - 33578304, - 33583360, - 33579232, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -467471,7 +467471,7 @@ }, { "type_name": "embree::TriangleMesh", - "vtable_address": 64850912, + "vtable_address": 64854816, "methods": [], "bases": [ { @@ -467504,7 +467504,7 @@ }, { "type_name": "embree::TriangleMesh", - "vtable_address": 64894928, + "vtable_address": 64898832, "methods": [], "bases": [ { @@ -467537,12 +467537,12 @@ }, { "type_name": "embree::TriangleMi<4>::Type", - "vtable_address": 64802120, + "vtable_address": 64806024, "methods": [ - 34113408, - 34113424, - 34113696, - 34113472 + 34117248, + 34117264, + 34117536, + 34117312 ], "bases": [ { @@ -467564,12 +467564,12 @@ }, { "type_name": "embree::TriangleMv<4>::Type", - "vtable_address": 64802584, + "vtable_address": 64806488, "methods": [ - 34113328, - 34113344, - 34113696, - 34113392 + 34117168, + 34117184, + 34117536, + 34117232 ], "bases": [ { @@ -467591,12 +467591,12 @@ }, { "type_name": "embree::TriangleMvMB<4>::Type", - "vtable_address": 64802632, + "vtable_address": 64806536, "methods": [ - 34113488, - 34113504, - 34113696, - 34112192 + 34117328, + 34117344, + 34117536, + 34116032 ], "bases": [ { @@ -467618,7 +467618,7 @@ }, { "type_name": "embree::UserGeometry", - "vtable_address": 64784888, + "vtable_address": 64788792, "methods": [], "bases": [ { @@ -467662,29 +467662,52 @@ }, { "type_name": "embree::UserGeometry", - "vtable_address": 64785376, - "methods": [ - 33474784, - 33474800, - 33281616, - 33281712, - 33468368, - 33468400, + "vtable_address": 64789280, + "methods": [ + 33478624, + 33478640, + 33285456, + 33285552, + 33472208, + 33472240, + 33304240, + 33304048, + 33472384, + 33472288, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33475184, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33475264, + 33301360, + 33301168, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, 33300400, - 33300208, - 33468544, - 33468448, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33471344, - 33299824, + 33475216, + 33475232, + 33475248, 33299632, - 33468496, 33299440, - 33469248, 33299248, 33299056, 33298864, @@ -467693,34 +467716,11 @@ 33298288, 33298096, 33297904, - 33293440, - 33471424, + 33297712, 33297520, 33297328, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33471376, - 33471392, - 33471408, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33293456, - 33471632 + 33297296, + 33475472 ], "bases": [ { @@ -467764,7 +467764,7 @@ }, { "type_name": "embree::UserGeometry", - "vtable_address": 64849928, + "vtable_address": 64853832, "methods": [], "bases": [ { @@ -467808,7 +467808,7 @@ }, { "type_name": "embree::UserGeometry", - "vtable_address": 64893944, + "vtable_address": 64897848, "methods": [], "bases": [ { @@ -467852,9 +467852,9 @@ }, { "type_name": "embree::avx2::BVHNColliderUserGeom<4>", - "vtable_address": 64905128, + "vtable_address": 64909032, "methods": [ - 54339504 + 54343408 ], "bases": [ { @@ -467876,9 +467876,9 @@ }, { "type_name": "embree::avx2::BVHNColliderUserGeom<8>", - "vtable_address": 64905152, + "vtable_address": 64909056, "methods": [ - 54339232 + 54343136 ], "bases": [ { @@ -467900,63 +467900,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx2::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64899000, - "methods": [ - 54110704, - 54110720, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64902904, + "methods": [ + 54114608, + 54114624, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54079936, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54076032, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54107712, - 33295600, - 54239728, - 53990912, - 53989568, - 53945936, - 53945696, - 54105920, - 54103936, - 54101888, - 54236688, - 54245904, - 54249120 + 33300016, + 33299824, + 54111616, + 33299440, + 54243632, + 53994816, + 53993472, + 53949840, + 53949600, + 54109824, + 54107840, + 54105792, + 54240592, + 54249808, + 54253024 ], "bases": [ { @@ -468011,63 +468011,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx2::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64902648, - "methods": [ - 54110320, - 54110336, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64906552, + "methods": [ + 54114224, + 54114240, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54076976, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073072, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54082528, - 33295600, - 54135056, - 53984304, - 53982976, - 53944496, - 53944256, - 54080736, - 54078752, - 54076704, - 54132016, - 54141232, - 54144448 + 33300016, + 33299824, + 54086432, + 33299440, + 54138960, + 53988208, + 53986880, + 53948400, + 53948160, + 54084640, + 54082656, + 54080608, + 54135920, + 54145136, + 54148352 ], "bases": [ { @@ -468122,63 +468122,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx2::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64897176, - "methods": [ - 54110896, - 54110912, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64901080, + "methods": [ + 54114800, + 54114816, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54077744, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073840, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54099296, - 33295600, - 54293296, - 53979920, - 53978576, - 53943264, - 53943392, - 54097472, - 54095488, - 54093424, - 54290224, - 54299520, - 54302736 + 33300016, + 33299824, + 54103200, + 33299440, + 54297200, + 53983824, + 53982480, + 53947168, + 53947296, + 54101376, + 54099392, + 54097328, + 54294128, + 54303424, + 54306640 ], "bases": [ { @@ -468233,63 +468233,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx2::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64900824, - "methods": [ - 54110512, - 54110528, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64904728, + "methods": [ + 54114416, + 54114432, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54078384, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54074480, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54091024, - 33295600, - 54188816, - 53973184, - 53971792, - 53947040, - 53946912, - 54089168, - 54087152, - 54085040, - 54185712, - 54194944, - 54198208 + 33300016, + 33299824, + 54094928, + 33299440, + 54192720, + 53977088, + 53975696, + 53950944, + 53950816, + 54093072, + 54091056, + 54088944, + 54189616, + 54198848, + 54202112 ], "bases": [ { @@ -468344,63 +468344,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx2::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64898544, - "methods": [ - 54110752, - 54110768, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64902448, + "methods": [ + 54114656, + 54114672, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54079936, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54076032, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54000656, - 33295600, - 54256832, - 53993120, - 53991776, - 53946416, - 53946176, - 53965792, - 53964112, - 53962352, - 54254000, - 54262640, - 54265568 + 33300016, + 33299824, + 54004560, + 33299440, + 54260736, + 53997024, + 53995680, + 53950320, + 53950080, + 53969696, + 53968016, + 53966256, + 54257904, + 54266544, + 54269472 ], "bases": [ { @@ -468455,63 +468455,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx2::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64902192, - "methods": [ - 54110368, - 54110384, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64906096, + "methods": [ + 54114272, + 54114288, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54076976, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073072, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 53996272, - 33295600, - 54152160, - 53986496, - 53985168, - 53944976, - 53944736, - 53960848, - 53959168, - 53957408, - 54149328, - 54157968, - 54160896 + 33300016, + 33299824, + 54000176, + 33299440, + 54156064, + 53990400, + 53989072, + 53948880, + 53948640, + 53964752, + 53963072, + 53961312, + 54153232, + 54161872, + 54164800 ], "bases": [ { @@ -468566,63 +468566,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx2::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64896720, - "methods": [ - 54110944, - 54110960, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64900624, + "methods": [ + 54114848, + 54114864, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54077744, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073840, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 53993984, - 33295600, - 54310464, - 53968640, - 53967296, - 53943520, - 53943648, - 53950864, - 53949184, + 33300016, + 33299824, + 53997888, + 33299440, + 54314368, + 53972544, + 53971200, 53947424, - 54307632, - 54316272, - 54321088 + 53947552, + 53954768, + 53953088, + 53951328, + 54311536, + 54320176, + 54324992 ], "bases": [ { @@ -468677,63 +468677,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx2::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64900368, - "methods": [ - 54110560, - 54110576, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64904272, + "methods": [ + 54114464, + 54114480, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54078384, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54074480, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 53998560, - 33295600, - 54203792, - 53975472, - 53974080, - 53947296, - 53947168, - 53955872, - 53954160, - 53952368, - 54200944, - 54209520, - 54212464 + 33300016, + 33299824, + 54002464, + 33299440, + 54207696, + 53979376, + 53977984, + 53951200, + 53951072, + 53959776, + 53958064, + 53956272, + 54204848, + 54213424, + 54216368 ], "bases": [ { @@ -468788,63 +468788,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx2::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64899456, - "methods": [ - 54110656, - 54110672, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64903360, + "methods": [ + 54114560, + 54114576, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54079936, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54076032, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54048080, - 33295600, - 54219760, - 53988704, - 53987360, - 53945456, - 53945216, - 54045072, - 54041648, - 54038064, - 54218640, - 54228944, - 54233696 + 33300016, + 33299824, + 54051984, + 33299440, + 54223664, + 53992608, + 53991264, + 53949360, + 53949120, + 54048976, + 54045552, + 54041968, + 54222544, + 54232848, + 54237600 ], "bases": [ { @@ -468899,63 +468899,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx2::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64903104, - "methods": [ - 54110272, - 54110288, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64907008, + "methods": [ + 54114176, + 54114192, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54076976, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073072, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54012960, - 33295600, - 54115136, - 53982112, - 53980784, - 53944016, - 53943776, - 54009952, - 54006528, - 54002944, - 54114016, - 54124320, - 54129024 + 33300016, + 33299824, + 54016864, + 33299440, + 54119040, + 53986016, + 53984688, + 53947920, + 53947680, + 54013856, + 54010432, + 54006848, + 54117920, + 54128224, + 54132928 ], "bases": [ { @@ -469010,63 +469010,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx2::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64897632, - "methods": [ - 54110848, - 54110864, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64901536, + "methods": [ + 54114752, + 54114768, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54077744, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073840, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54065680, - 33295600, - 54272944, - 53977712, - 53976368, - 53943008, - 53943136, - 54062576, - 54059056, - 54055360, - 54271824, - 54282368, - 54287200 + 33300016, + 33299824, + 54069584, + 33299440, + 54276848, + 53981616, + 53980272, + 53946912, + 53947040, + 54066480, + 54062960, + 54059264, + 54275728, + 54286272, + 54291104 ], "bases": [ { @@ -469121,63 +469121,63 @@ }, { "type_name": "embree::avx2::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx2::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64901280, - "methods": [ - 54110464, - 54110480, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64905184, + "methods": [ + 54114368, + 54114384, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54078384, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54074480, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54030656, - 33295600, - 54168336, - 53970896, - 53969504, - 53946784, - 53946656, - 54027504, - 54023936, - 54020224, - 54167216, - 54177792, - 54182656 + 33300016, + 33299824, + 54034560, + 33299440, + 54172240, + 53974800, + 53973408, + 53950688, + 53950560, + 54031408, + 54027840, + 54024128, + 54171120, + 54181696, + 54186560 ], "bases": [ { @@ -469232,29 +469232,52 @@ }, { "type_name": "embree::avx2::CurveGeometryInterface", - "vtable_address": 64898088, - "methods": [ - 54110608, - 54110624, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64901992, + "methods": [ + 54114512, + 54114528, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54079936, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54076032, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -469263,32 +469286,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -469332,7 +469332,7 @@ }, { "type_name": "embree::avx2::CurveGeometryInterface", - "vtable_address": 64896248, + "vtable_address": 64900152, "methods": [], "bases": [ { @@ -469376,29 +469376,52 @@ }, { "type_name": "embree::avx2::CurveGeometryInterface", - "vtable_address": 64901736, - "methods": [ - 54110224, - 54110240, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64905640, + "methods": [ + 54114128, + 54114144, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54076976, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073072, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -469407,32 +469430,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -469476,29 +469476,52 @@ }, { "type_name": "embree::avx2::CurveGeometryInterface", - "vtable_address": 64896264, - "methods": [ - 54110800, - 54110816, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64900168, + "methods": [ + 54114704, + 54114720, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54077744, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54073840, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -469507,32 +469530,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -469576,29 +469576,52 @@ }, { "type_name": "embree::avx2::GridMeshISA", - "vtable_address": 64904064, - "methods": [ - 54331712, - 54332960, - 33281616, - 33281712, - 33468368, - 34089120, - 34087888, + "vtable_address": 64907968, + "methods": [ + 54335616, + 54336864, + 33285456, + 33285552, + 33472208, + 34092960, + 34091728, + 33304048, + 33472384, + 34091248, + 34090656, + 33472352, + 34089744, + 33472464, + 33472320, + 34089696, + 33303664, + 33303472, + 33472336, + 34096576, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34096592, + 34089728, + 34094208, + 34090112, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34087408, - 34086816, - 33468512, - 34085904, - 33468624, - 33468480, - 34085856, + 33300016, 33299824, 33299632, - 33468496, - 34092736, - 33469248, + 33299440, 33299248, 33299056, 33298864, @@ -469607,32 +469630,9 @@ 33298288, 33298096, 33297904, - 34092752, - 34085888, - 34090368, - 34086272, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -469676,29 +469676,52 @@ }, { "type_name": "embree::avx2::HermiteCurveGeometryInterface", - "vtable_address": 64899912, - "methods": [ - 54110416, - 54110432, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64903816, + "methods": [ + 54114320, + 54114336, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 54078384, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 54074480, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -469707,32 +469730,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -469776,30 +469776,53 @@ }, { "type_name": "embree::avx2::InstanceISA", - "vtable_address": 64894456, - "methods": [ - 53931312, - 53931328, - 33281616, - 33281712, - 33468368, - 33479296, - 33300400, + "vtable_address": 64898360, + "methods": [ + 53935216, + 53935232, + 33285456, + 33285552, + 33472208, + 33483136, + 33304240, + 33304048, + 33472384, + 33481984, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33483408, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33478768, + 33301360, + 33301168, + 33472672, + 33472880, + 33484112, + 33483520, + 33483760, + 33478784, 33300208, - 33468544, - 33478144, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33479568, + 33300016, 33299824, - 33299632, - 33468496, - 33299440, - 33469248, - 33299248, + 53931744, + 53930464, + 53933024, 33299056, 33298864, 33298672, @@ -469807,33 +469830,10 @@ 33298288, 33298096, 33297904, - 33293440, - 33474928, + 33297712, 33297520, 33297328, - 33468832, - 33469040, - 33480272, - 33479680, - 33479920, - 33474944, - 33296368, - 33296176, - 33295984, - 53927840, - 53926560, - 53929120, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33570896 + 33574736 ], "bases": [ { @@ -469877,63 +469877,63 @@ }, { "type_name": "embree::avx2::LineSegmentsISA", - "vtable_address": 64903584, - "methods": [ - 54331488, - 54331504, - 33281616, - 33281712, - 33468368, - 34070720, - 34072256, + "vtable_address": 64907488, + "methods": [ + 54335392, + 54335408, + 33285456, + 33285552, + 33472208, + 34074560, + 34076096, + 33304048, + 33472384, + 34079056, + 34073456, + 33472352, + 34070864, + 33472464, + 33472320, + 34070832, + 34070784, + 34070816, + 33472336, + 34071376, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34081616, + 34071360, + 34077328, + 34072640, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34075216, - 34069616, - 33468512, - 34067024, - 33468624, - 33468480, - 34066992, - 34066944, - 34066976, - 33468496, - 34067536, - 33469248, - 33299248, + 33300016, + 33299824, + 54329600, + 54328832, + 54330144, 33299056, 33298864, - 33298672, - 33298480, - 33298288, - 33298096, + 54328304, + 54328368, + 54328704, + 54328448, 33297904, - 34077776, - 34067520, - 34073488, - 34068800, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54325696, - 54324928, - 54326240, - 33295216, - 33295024, - 54324400, - 54324464, - 54324800, - 54324544, - 33294064, - 54328384, - 54329600, - 33293488 + 54332288, + 54333504, + 33297328 ], "bases": [ { @@ -469977,63 +469977,63 @@ }, { "type_name": "embree::avx2::PointsISA", - "vtable_address": 64904544, - "methods": [ - 54338720, - 54338736, - 33281616, - 33281712, - 33468368, - 34097648, - 34099424, + "vtable_address": 64908448, + "methods": [ + 54342624, + 54342640, + 33285456, + 33285552, + 33472208, + 34101488, + 34103264, + 33304048, + 33472384, + 34100736, + 34099904, + 33472352, + 34098784, + 33472464, + 33472320, + 34098752, + 33303664, + 34098736, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34107440, + 34099248, + 34104496, + 34099328, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34096896, - 34096064, - 33468512, - 34094944, - 33468624, - 33468480, - 34094912, + 33300016, 33299824, - 34094896, - 33468496, - 33299440, - 33469248, - 33299248, + 54338944, + 54338336, + 54339360, 33299056, 33298864, - 33298672, - 33298480, - 33298288, - 33298096, + 54337072, + 54337088, + 54337104, + 54337168, 33297904, - 34103600, - 34095408, - 34100656, - 34095488, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 54335040, - 54334432, - 54335456, - 33295216, - 33295024, - 54333168, - 54333184, - 54333200, - 54333264, - 33294064, - 54333392, - 54337344, - 33293488 + 54337296, + 54341248, + 33297328 ], "bases": [ { @@ -470077,30 +470077,53 @@ }, { "type_name": "embree::avx2::QuadMeshISA", - "vtable_address": 64895424, - "methods": [ - 53940736, - 53941984, - 33281616, - 33281712, - 33468368, - 33594704, - 33593472, + "vtable_address": 64899328, + "methods": [ + 53944640, + 53945888, + 33285456, + 33285552, + 33472208, + 33598544, + 33597312, + 33304048, + 33472384, + 33596816, + 33596224, + 33472352, + 33594544, + 33472464, + 33472320, + 33594496, + 33303664, + 33303472, + 33472336, + 33594880, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33602176, + 33594528, + 33599792, + 33595664, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33592976, - 33592384, - 33468512, - 33590704, - 33468624, - 33468480, - 33590656, + 33300016, 33299824, - 33299632, - 33468496, - 33591040, - 33469248, - 33299248, + 53941360, + 53940560, + 53942144, 33299056, 33298864, 33298672, @@ -470108,32 +470131,9 @@ 33298288, 33298096, 33297904, - 33598336, - 33590688, - 33595952, - 33591824, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 53937456, - 53936656, - 53938240, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -470177,30 +470177,53 @@ }, { "type_name": "embree::avx2::TriangleMeshISA", - "vtable_address": 64894944, - "methods": [ - 53935200, - 53936448, - 33281616, - 33281712, - 33468368, + "vtable_address": 64898848, + "methods": [ + 53939104, + 53940352, + 33285456, + 33285552, + 33472208, + 33585952, + 33584720, + 33304048, + 33472384, + 33584224, + 33583632, + 33472352, + 33582160, + 33472464, + 33472320, 33582112, - 33580880, + 33303664, + 33303472, + 33472336, + 33582528, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33589568, + 33582144, + 33587200, + 33583072, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33580384, - 33579792, - 33468512, - 33578320, - 33468624, - 33468480, - 33578272, + 33300016, 33299824, - 33299632, - 33468496, - 33578688, - 33469248, - 33299248, + 53936112, + 53935440, + 53936784, 33299056, 33298864, 33298672, @@ -470208,32 +470231,9 @@ 33298288, 33298096, 33297904, - 33585728, - 33578304, - 33583360, - 33579232, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 53932208, - 53931536, - 53932880, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -470277,30 +470277,53 @@ }, { "type_name": "embree::avx2::UserGeometryISA", - "vtable_address": 64893960, - "methods": [ - 53926320, - 53926336, - 33281616, - 33281712, - 33468368, - 33468400, + "vtable_address": 64897864, + "methods": [ + 53930224, + 53930240, + 33285456, + 33285552, + 33472208, + 33472240, + 33304240, + 33304048, + 33472384, + 33472288, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33475184, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33475264, + 33301360, + 33301168, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, 33300400, - 33300208, - 33468544, - 33468448, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33471344, - 33299824, - 33299632, - 33468496, - 33299440, - 33469248, - 33299248, + 33475216, + 33475232, + 33475248, + 53927504, + 53926896, + 53927952, 33299056, 33298864, 33298672, @@ -470308,34 +470331,11 @@ 33298288, 33298096, 33297904, - 33293440, - 33471424, + 33297712, 33297520, 33297328, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33471376, - 33471392, - 33471408, - 53923600, - 53922992, - 53924048, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33293456, - 33471632 + 33297296, + 33475472 ], "bases": [ { @@ -470390,15 +470390,15 @@ }, { "type_name": "embree::avx::BVHNBuilderFastSpatialSAH<4, embree::QuadMesh, embree::QuadMv<4>, embree::avx::QuadSplitterFactory>", - "vtable_address": 64873304, + "vtable_address": 64877208, "methods": [ - 45112384, - 45114496, - 33281616, - 33281712, - 45426864, - 35789664, - 45113152 + 45116288, + 45118400, + 33285456, + 33285552, + 45430768, + 35793504, + 45117056 ], "bases": [ { @@ -470431,15 +470431,15 @@ }, { "type_name": "embree::avx::BVHNBuilderFastSpatialSAH<4, embree::TriangleMesh, embree::TriangleM<4>, embree::avx::TriangleSplitterFactory>", - "vtable_address": 64872944, + "vtable_address": 64876848, "methods": [ - 45113024, - 45113936, - 33281616, - 33281712, - 45470432, - 35789664, - 45112000 + 45116928, + 45117840, + 33285456, + 33285552, + 45474336, + 35793504, + 45115904 ], "bases": [ { @@ -470472,15 +470472,15 @@ }, { "type_name": "embree::avx::BVHNBuilderFastSpatialSAH<4, embree::TriangleMesh, embree::TriangleMi<4>, embree::avx::TriangleSplitterFactory>", - "vtable_address": 64873088, + "vtable_address": 64876992, "methods": [ - 45112768, - 45114272, - 33281616, - 33281712, - 45495072, - 35789664, - 45113536 + 45116672, + 45118176, + 33285456, + 33285552, + 45498976, + 35793504, + 45117440 ], "bases": [ { @@ -470513,15 +470513,15 @@ }, { "type_name": "embree::avx::BVHNBuilderFastSpatialSAH<4, embree::TriangleMesh, embree::TriangleMv<4>, embree::avx::TriangleSplitterFactory>", - "vtable_address": 64873016, + "vtable_address": 64876920, "methods": [ - 45112896, - 45114384, - 33281616, - 33281712, - 45482752, - 35789664, - 45113664 + 45116800, + 45118288, + 33285456, + 33285552, + 45486656, + 35793504, + 45117568 ], "bases": [ { @@ -470554,15 +470554,15 @@ }, { "type_name": "embree::avx::BVHNBuilderFastSpatialSAH<8, embree::QuadMesh, embree::QuadMv<4>, embree::avx::QuadSplitterFactory>", - "vtable_address": 64873376, + "vtable_address": 64877280, "methods": [ - 45112256, - 45113824, - 33281616, - 33281712, - 45439280, - 35789664, - 45112128 + 45116160, + 45117728, + 33285456, + 33285552, + 45443184, + 35793504, + 45116032 ], "bases": [ { @@ -470595,15 +470595,15 @@ }, { "type_name": "embree::avx::BVHNBuilderFastSpatialSAH<8, embree::TriangleMesh, embree::TriangleM<4>, embree::avx::TriangleSplitterFactory>", - "vtable_address": 64873160, + "vtable_address": 64877064, "methods": [ - 45112640, - 45114160, - 33281616, - 33281712, - 45507488, - 35789664, - 45113408 + 45116544, + 45118064, + 33285456, + 33285552, + 45511392, + 35793504, + 45117312 ], "bases": [ { @@ -470636,15 +470636,15 @@ }, { "type_name": "embree::avx::BVHNBuilderFastSpatialSAH<8, embree::TriangleMesh, embree::TriangleMv<4>, embree::avx::TriangleSplitterFactory>", - "vtable_address": 64873232, + "vtable_address": 64877136, "methods": [ - 45112512, - 45114048, - 33281616, - 33281712, - 45519968, - 35789664, - 45113280 + 45116416, + 45117952, + 33285456, + 33285552, + 45523872, + 35793504, + 45117184 ], "bases": [ { @@ -470677,15 +470677,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64877000, + "vtable_address": 64880904, "methods": [ - 45530128, - 45531520, - 33281616, - 33281712, - 45898576, - 35789664, - 45530320 + 45534032, + 45535424, + 33285456, + 33285552, + 45902480, + 35793504, + 45534224 ], "bases": [ { @@ -470718,15 +470718,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<4, embree::QuadMesh, embree::QuadMi<4> >", - "vtable_address": 64876712, + "vtable_address": 64880616, "methods": [ - 45530192, - 45531584, - 33281616, - 33281712, - 46053728, - 35789664, - 45530384 + 45534096, + 45535488, + 33285456, + 33285552, + 46057632, + 35793504, + 45534288 ], "bases": [ { @@ -470759,15 +470759,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64876424, + "vtable_address": 64880328, "methods": [ - 45530256, - 45531648, - 33281616, - 33281712, - 46146080, - 35789664, - 45530448 + 45534160, + 45535552, + 33285456, + 33285552, + 46149984, + 35793504, + 45534352 ], "bases": [ { @@ -470800,15 +470800,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<4, embree::TriangleMesh, embree::TriangleMvMB<4> >", - "vtable_address": 64876496, + "vtable_address": 64880400, "methods": [ - 45530240, - 45531632, - 33281616, - 33281712, - 46166368, - 35789664, - 45530432 + 45534144, + 45535536, + 33285456, + 33285552, + 46170272, + 35793504, + 45534336 ], "bases": [ { @@ -470841,15 +470841,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64876856, + "vtable_address": 64880760, "methods": [ - 45530160, - 45531552, - 33281616, - 33281712, - 45975168, - 35789664, - 45530352 + 45534064, + 45535456, + 33285456, + 33285552, + 45979072, + 35793504, + 45534256 ], "bases": [ { @@ -470882,15 +470882,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<8, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64877072, + "vtable_address": 64880976, "methods": [ - 45530112, - 45531504, - 33281616, - 33281712, - 45931536, - 35789664, - 45530304 + 45534016, + 45535408, + 33285456, + 33285552, + 45935440, + 35793504, + 45534208 ], "bases": [ { @@ -470923,15 +470923,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<8, embree::QuadMesh, embree::QuadMi<4> >", - "vtable_address": 64876784, + "vtable_address": 64880688, "methods": [ - 45530176, - 45531568, - 33281616, - 33281712, - 46089872, - 35789664, - 45530368 + 45534080, + 45535472, + 33285456, + 33285552, + 46093776, + 35793504, + 45534272 ], "bases": [ { @@ -470964,15 +470964,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<8, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64876568, + "vtable_address": 64880472, "methods": [ - 45530224, - 45531616, - 33281616, - 33281712, - 46236704, - 35789664, - 45530416 + 45534128, + 45535520, + 33285456, + 33285552, + 46240608, + 35793504, + 45534320 ], "bases": [ { @@ -471005,15 +471005,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<8, embree::TriangleMesh, embree::TriangleMvMB<4> >", - "vtable_address": 64876640, + "vtable_address": 64880544, "methods": [ - 45530208, - 45531600, - 33281616, - 33281712, - 46216208, - 35789664, - 45530400 + 45534112, + 45535504, + 33285456, + 33285552, + 46220112, + 35793504, + 45534304 ], "bases": [ { @@ -471046,15 +471046,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAH<8, embree::UserGeometry, embree::Object>", - "vtable_address": 64876928, + "vtable_address": 64880832, "methods": [ - 45530144, - 45531536, - 33281616, - 33281712, - 46010992, - 35789664, - 45530336 + 45534048, + 45535440, + 33285456, + 33285552, + 46014896, + 35793504, + 45534240 ], "bases": [ { @@ -471087,15 +471087,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAHGrid<4>", - "vtable_address": 64877144, + "vtable_address": 64881048, "methods": [ - 45531792, - 45532176, - 33281616, - 33281712, - 45857904, - 35789664, - 45530288 + 45535696, + 45536080, + 33285456, + 33285552, + 45861808, + 35793504, + 45534192 ], "bases": [ { @@ -471128,15 +471128,15 @@ }, { "type_name": "embree::avx::BVHNBuilderMBlurSAHGrid<8>", - "vtable_address": 64877216, + "vtable_address": 64881120, "methods": [ - 45531664, - 45532048, - 33281616, - 33281712, - 45817904, - 35789664, - 45530272 + 45535568, + 45535952, + 33285456, + 33285552, + 45821808, + 35793504, + 45534176 ], "bases": [ { @@ -471169,9 +471169,9 @@ }, { "type_name": "embree::avx::BVHNBuilderQuantizedVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64866896, + "vtable_address": 64870800, "methods": [ - 45005440 + 45009344 ], "bases": [ { @@ -471193,9 +471193,9 @@ }, { "type_name": "embree::avx::BVHNBuilderQuantizedVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64866920, + "vtable_address": 64870824, "methods": [ - 45031232 + 45035136 ], "bases": [ { @@ -471217,9 +471217,9 @@ }, { "type_name": "embree::avx::BVHNBuilderQuantizedVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64867112, + "vtable_address": 64871016, "methods": [ - 45003840 + 45007744 ], "bases": [ { @@ -471241,9 +471241,9 @@ }, { "type_name": "embree::avx::BVHNBuilderQuantizedVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64866800, + "vtable_address": 64870704, "methods": [ - 45010624 + 45014528 ], "bases": [ { @@ -471265,9 +471265,9 @@ }, { "type_name": "embree::avx::BVHNBuilderQuantizedVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64866824, + "vtable_address": 64870728, "methods": [ - 45025280 + 45029184 ], "bases": [ { @@ -471289,9 +471289,9 @@ }, { "type_name": "embree::avx::BVHNBuilderQuantizedVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64866992, + "vtable_address": 64870896, "methods": [ - 45020096 + 45024000 ], "bases": [ { @@ -471313,9 +471313,9 @@ }, { "type_name": "embree::avx::BVHNBuilderQuantizedVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64867016, + "vtable_address": 64870920, "methods": [ - 45000640 + 45004544 ], "bases": [ { @@ -471337,15 +471337,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<4, embree::InstancePrimitive>", - "vtable_address": 64869128, + "vtable_address": 64873032, "methods": [ - 44982016, - 44989808, - 33281616, - 33281712, - 45079184, - 35789664, - 44984832 + 44985920, + 44993712, + 33285456, + 33285552, + 45083088, + 35793504, + 44988736 ], "bases": [ { @@ -471378,15 +471378,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<4, embree::Object>", - "vtable_address": 64868984, + "vtable_address": 64872888, "methods": [ - 44982272, - 44989360, - 33281616, - 33281712, - 45082352, - 35789664, - 44985088 + 44986176, + 44993264, + 33285456, + 33285552, + 45086256, + 35793504, + 44988992 ], "bases": [ { @@ -471419,15 +471419,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<4, embree::QuadMi<4> >", - "vtable_address": 64868480, + "vtable_address": 64872384, "methods": [ - 44983168, - 44988800, - 33281616, - 33281712, - 45091120, - 35789664, - 44985984 + 44987072, + 44992704, + 33285456, + 33285552, + 45095024, + 35793504, + 44989888 ], "bases": [ { @@ -471460,15 +471460,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<4, embree::QuadMv<4> >", - "vtable_address": 64868408, + "vtable_address": 64872312, "methods": [ - 44983296, - 44988912, - 33281616, - 33281712, - 45093984, - 35789664, - 44986112 + 44987200, + 44992816, + 33285456, + 33285552, + 45097888, + 35793504, + 44990016 ], "bases": [ { @@ -471501,15 +471501,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<4, embree::TriangleM<4> >", - "vtable_address": 64867760, + "vtable_address": 64871664, "methods": [ - 44984448, 44988352, - 33281616, - 33281712, - 45105376, - 35789664, - 44981632 + 44992256, + 33285456, + 33285552, + 45109280, + 35793504, + 44985536 ], "bases": [ { @@ -471542,15 +471542,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<4, embree::TriangleMi<4> >", - "vtable_address": 64867904, + "vtable_address": 64871808, "methods": [ - 44984192, - 44988128, - 33281616, - 33281712, - 45099648, - 35789664, - 44987008 + 44988096, + 44992032, + 33285456, + 33285552, + 45103552, + 35793504, + 44990912 ], "bases": [ { @@ -471583,15 +471583,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<4, embree::TriangleMv<4> >", - "vtable_address": 64867832, + "vtable_address": 64871736, "methods": [ - 44984320, - 44988240, - 33281616, - 33281712, - 45102512, - 35789664, - 44987136 + 44988224, + 44992144, + 33285456, + 33285552, + 45106416, + 35793504, + 44991040 ], "bases": [ { @@ -471624,15 +471624,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<8, embree::InstancePrimitive>", - "vtable_address": 64869200, + "vtable_address": 64873104, "methods": [ - 44981888, - 44987680, - 33281616, - 33281712, - 45043792, - 35789664, - 44984704 + 44985792, + 44991584, + 33285456, + 33285552, + 45047696, + 35793504, + 44988608 ], "bases": [ { @@ -471665,15 +471665,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<8, embree::Object>", - "vtable_address": 64869056, + "vtable_address": 64872960, "methods": [ - 44982144, - 44989920, - 33281616, - 33281712, - 45046960, - 35789664, - 44984960 + 44986048, + 44993824, + 33285456, + 33285552, + 45050864, + 35793504, + 44988864 ], "bases": [ { @@ -471706,15 +471706,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<8, embree::QuadMi<4> >", - "vtable_address": 64868768, + "vtable_address": 64872672, "methods": [ - 44982656, - 44989696, - 33281616, - 33281712, - 45055728, - 35789664, - 44985472 + 44986560, + 44993600, + 33285456, + 33285552, + 45059632, + 35793504, + 44989376 ], "bases": [ { @@ -471747,15 +471747,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<8, embree::QuadMv<4> >", - "vtable_address": 64868696, + "vtable_address": 64872600, "methods": [ - 44982784, - 44988464, - 33281616, - 33281712, - 45058592, - 35789664, - 44985600 + 44986688, + 44992368, + 33285456, + 33285552, + 45062496, + 35793504, + 44989504 ], "bases": [ { @@ -471788,15 +471788,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<8, embree::TriangleM<4> >", - "vtable_address": 64868048, + "vtable_address": 64871952, "methods": [ - 44983936, - 44987904, - 33281616, - 33281712, - 45073088, - 35789664, - 44986752 + 44987840, + 44991808, + 33285456, + 33285552, + 45076992, + 35793504, + 44990656 ], "bases": [ { @@ -471829,15 +471829,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<8, embree::TriangleMi<4> >", - "vtable_address": 64868192, + "vtable_address": 64872096, "methods": [ - 44983680, - 44989248, - 33281616, - 33281712, - 45067056, - 35789664, - 44986496 + 44987584, + 44993152, + 33285456, + 33285552, + 45070960, + 35793504, + 44990400 ], "bases": [ { @@ -471870,15 +471870,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAH<8, embree::TriangleMv<4> >", - "vtable_address": 64868120, + "vtable_address": 64872024, "methods": [ - 44983808, - 44987792, - 33281616, - 33281712, - 45070080, - 35789664, - 44986624 + 44987712, + 44991696, + 33285456, + 33285552, + 45073984, + 35793504, + 44990528 ], "bases": [ { @@ -471911,15 +471911,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHGrid<4>", - "vtable_address": 64869272, + "vtable_address": 64873176, "methods": [ - 44987472, - 44990032, - 33281616, - 33281712, - 45076112, - 35789664, - 44984576 + 44991376, + 44993936, + 33285456, + 33285552, + 45080016, + 35793504, + 44988480 ], "bases": [ { @@ -471952,15 +471952,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHGrid<8>", - "vtable_address": 64869344, + "vtable_address": 64873248, "methods": [ - 44987264, - 44990240, - 33281616, - 33281712, - 45040720, - 35789664, - 44981760 + 44991168, + 44994144, + 33285456, + 33285552, + 45044624, + 35793504, + 44985664 ], "bases": [ { @@ -471993,15 +471993,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHQuantized<4, embree::QuadMi<4> >", - "vtable_address": 64868624, + "vtable_address": 64872528, "methods": [ - 44982912, - 44988576, - 33281616, - 33281712, - 45085520, - 35789664, - 44985728 + 44986816, + 44992480, + 33285456, + 33285552, + 45089424, + 35793504, + 44989632 ], "bases": [ { @@ -472034,15 +472034,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHQuantized<4, embree::QuadMv<4> >", - "vtable_address": 64868552, + "vtable_address": 64872456, "methods": [ - 44983040, - 44988688, - 33281616, - 33281712, - 45088320, - 35789664, - 44985856 + 44986944, + 44992592, + 33285456, + 33285552, + 45092224, + 35793504, + 44989760 ], "bases": [ { @@ -472075,15 +472075,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHQuantized<4, embree::TriangleMi<4> >", - "vtable_address": 64867976, + "vtable_address": 64871880, "methods": [ - 44984064, - 44988016, - 33281616, - 33281712, - 45096848, - 35789664, - 44986880 + 44987968, + 44991920, + 33285456, + 33285552, + 45100752, + 35793504, + 44990784 ], "bases": [ { @@ -472116,15 +472116,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHQuantized<8, embree::QuadMi<4> >", - "vtable_address": 64868912, + "vtable_address": 64872816, "methods": [ - 44982400, - 44989472, - 33281616, - 33281712, - 45050128, - 35789664, - 44985216 + 44986304, + 44993376, + 33285456, + 33285552, + 45054032, + 35793504, + 44989120 ], "bases": [ { @@ -472157,15 +472157,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHQuantized<8, embree::QuadMv<4> >", - "vtable_address": 64868840, + "vtable_address": 64872744, "methods": [ - 44982528, - 44989584, - 33281616, - 33281712, - 45052928, - 35789664, - 44985344 + 44986432, + 44993488, + 33285456, + 33285552, + 45056832, + 35793504, + 44989248 ], "bases": [ { @@ -472198,15 +472198,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHQuantized<8, embree::TriangleM<4> >", - "vtable_address": 64868336, + "vtable_address": 64872240, "methods": [ - 44983424, - 44989024, - 33281616, - 33281712, - 45061456, - 35789664, - 44986240 + 44987328, + 44992928, + 33285456, + 33285552, + 45065360, + 35793504, + 44990144 ], "bases": [ { @@ -472239,15 +472239,15 @@ }, { "type_name": "embree::avx::BVHNBuilderSAHQuantized<8, embree::TriangleMi<4> >", - "vtable_address": 64868264, + "vtable_address": 64872168, "methods": [ - 44983552, - 44989136, - 33281616, - 33281712, - 45064256, - 35789664, - 44986368 + 44987456, + 44993040, + 33285456, + 33285552, + 45068160, + 35793504, + 44990272 ], "bases": [ { @@ -472280,15 +472280,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64887344, + "vtable_address": 64891248, "methods": [ - 46257104, - 46257392, - 33281616, - 33281712, - 47068096, - 46268544, - 46261168 + 46261008, + 46261296, + 33285456, + 33285552, + 47072000, + 46272448, + 46265072 ], "bases": [ { @@ -472321,12 +472321,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::RefBuilderLarge", - "vtable_address": 64882232, + "vtable_address": 64886136, "methods": [ - 46270032, - 46270608, - 46265792, - 46255088 + 46273936, + 46274512, + 46269696, + 46258992 ], "bases": [ { @@ -472348,12 +472348,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::RefBuilderSmall", - "vtable_address": 64882184, + "vtable_address": 64886088, "methods": [ - 46254816, - 46255392, - 46278256, - 46255104 + 46258720, + 46259296, + 46282160, + 46259008 ], "bases": [ { @@ -472375,15 +472375,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64887200, + "vtable_address": 64891104, "methods": [ - 46256464, - 46256752, - 33281616, - 33281712, - 47108576, - 46268256, - 46261776 + 46260368, + 46260656, + 33285456, + 33285552, + 47112480, + 46272160, + 46265680 ], "bases": [ { @@ -472416,12 +472416,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::RefBuilderLarge", - "vtable_address": 64882424, + "vtable_address": 64886328, "methods": [ - 46270352, - 46270512, - 46266592, - 46255024 + 46274256, + 46274416, + 46270496, + 46258928 ], "bases": [ { @@ -472443,12 +472443,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::RefBuilderSmall", - "vtable_address": 64882376, + "vtable_address": 64886280, "methods": [ - 46254784, - 46255360, - 46301136, - 46255040 + 46258688, + 46259264, + 46305040, + 46258944 ], "bases": [ { @@ -472470,15 +472470,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64886984, + "vtable_address": 64890888, "methods": [ - 46255504, - 46255792, - 33281616, - 33281712, - 47168528, - 46267824, - 46262688 + 46259408, + 46259696, + 33285456, + 33285552, + 47172432, + 46271728, + 46266592 ], "bases": [ { @@ -472511,12 +472511,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::RefBuilderLarge", - "vtable_address": 64882712, + "vtable_address": 64886616, "methods": [ - 46269712, - 46271568, - 46262992, - 46254928 + 46273616, + 46275472, + 46266896, + 46258832 ], "bases": [ { @@ -472538,12 +472538,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::RefBuilderSmall", - "vtable_address": 64882664, + "vtable_address": 64886568, "methods": [ - 46254736, - 46255312, - 46297360, - 46254944 + 46258640, + 46259216, + 46301264, + 46258848 ], "bases": [ { @@ -472565,15 +472565,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64887128, + "vtable_address": 64891032, "methods": [ - 46256144, - 46256432, - 33281616, - 33281712, - 47128560, - 46268112, - 46262080 + 46260048, + 46260336, + 33285456, + 33285552, + 47132464, + 46272016, + 46265984 ], "bases": [ { @@ -472606,12 +472606,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::RefBuilderLarge", - "vtable_address": 64882520, + "vtable_address": 64886424, "methods": [ - 46270272, - 46271376, - 46266992, - 46254992 + 46274176, + 46275280, + 46270896, + 46258896 ], "bases": [ { @@ -472633,12 +472633,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::RefBuilderSmall", - "vtable_address": 64882472, + "vtable_address": 64886376, "methods": [ - 46254768, - 46255344, - 46283280, - 46255008 + 46258672, + 46259248, + 46287184, + 46258912 ], "bases": [ { @@ -472660,15 +472660,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64887056, + "vtable_address": 64890960, "methods": [ - 46255824, - 46256112, - 33281616, - 33281712, - 47148544, - 46267968, - 46262384 + 46259728, + 46260016, + 33285456, + 33285552, + 47152448, + 46271872, + 46266288 ], "bases": [ { @@ -472701,12 +472701,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::RefBuilderLarge", - "vtable_address": 64882616, + "vtable_address": 64886520, "methods": [ - 46270192, - 46270800, - 46267392, - 46254960 + 46274096, + 46274704, + 46271296, + 46258864 ], "bases": [ { @@ -472728,12 +472728,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::RefBuilderSmall", - "vtable_address": 64882568, + "vtable_address": 64886472, "methods": [ - 46254752, - 46255328, - 46289840, - 46254976 + 46258656, + 46259232, + 46293744, + 46258880 ], "bases": [ { @@ -472755,15 +472755,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64887272, + "vtable_address": 64891176, "methods": [ - 46256784, - 46257072, - 33281616, - 33281712, - 47088576, - 46268400, - 46261472 + 46260688, + 46260976, + 33285456, + 33285552, + 47092480, + 46272304, + 46265376 ], "bases": [ { @@ -472796,12 +472796,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::RefBuilderLarge", - "vtable_address": 64882328, + "vtable_address": 64886232, "methods": [ - 46270432, - 46271280, - 46266192, - 46255056 + 46274336, + 46275184, + 46270096, + 46258960 ], "bases": [ { @@ -472823,12 +472823,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::RefBuilderSmall", - "vtable_address": 64882280, + "vtable_address": 64886184, "methods": [ - 46254800, - 46255376, - 46271664, - 46255072 + 46258704, + 46259280, + 46275568, + 46258976 ], "bases": [ { @@ -472850,15 +472850,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64887776, + "vtable_address": 64891680, "methods": [ - 46259024, - 46259312, - 33281616, - 33281712, - 46947520, - 46269408, - 46259344 + 46262928, + 46263216, + 33285456, + 33285552, + 46951424, + 46273312, + 46263248 ], "bases": [ { @@ -472891,12 +472891,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::RefBuilderLarge", - "vtable_address": 64881656, + "vtable_address": 64885560, "methods": [ - 46269632, - 46270992, - 46263392, - 46255280 + 46273536, + 46274896, + 46267296, + 46259184 ], "bases": [ { @@ -472918,12 +472918,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::Instance, embree::InstancePrimitive>::RefBuilderSmall", - "vtable_address": 64881608, + "vtable_address": 64885512, "methods": [ - 46254912, - 46255488, - 46276048, - 46255296 + 46258816, + 46259392, + 46279952, + 46259200 ], "bases": [ { @@ -472945,15 +472945,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64887632, + "vtable_address": 64891536, "methods": [ - 46258384, - 46258672, - 33281616, - 33281712, - 46987776, - 46269120, - 46259952 + 46262288, + 46262576, + 33285456, + 33285552, + 46991680, + 46273024, + 46263856 ], "bases": [ { @@ -472986,12 +472986,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::RefBuilderLarge", - "vtable_address": 64881848, + "vtable_address": 64885752, "methods": [ - 46269552, - 46270896, - 46264192, - 46255216 + 46273456, + 46274800, + 46268096, + 46259120 ], "bases": [ { @@ -473013,12 +473013,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::QuadMesh, embree::QuadMv<4> >::RefBuilderSmall", - "vtable_address": 64881800, + "vtable_address": 64885704, "methods": [ - 46254880, - 46255456, - 46305280, - 46255232 + 46258784, + 46259360, + 46309184, + 46259136 ], "bases": [ { @@ -473040,15 +473040,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64887416, + "vtable_address": 64891320, "methods": [ - 46257424, - 46257712, - 33281616, - 33281712, - 47048112, - 46268688, - 46260864 + 46261328, + 46261616, + 33285456, + 33285552, + 47052016, + 46272592, + 46264768 ], "bases": [ { @@ -473081,12 +473081,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::RefBuilderLarge", - "vtable_address": 64882136, + "vtable_address": 64886040, "methods": [ - 46270112, - 46271088, - 46265392, - 46255120 + 46274016, + 46274992, + 46269296, + 46259024 ], "bases": [ { @@ -473108,12 +473108,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleM<4> >::RefBuilderSmall", - "vtable_address": 64882088, + "vtable_address": 64885992, "methods": [ - 46254832, - 46255408, - 46293584, - 46255136 + 46258736, + 46259312, + 46297488, + 46259040 ], "bases": [ { @@ -473135,15 +473135,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64887560, + "vtable_address": 64891464, "methods": [ - 46258064, - 46258352, - 33281616, - 33281712, - 47007888, - 46268976, - 46260256 + 46261968, + 46262256, + 33285456, + 33285552, + 47011792, + 46272880, + 46264160 ], "bases": [ { @@ -473176,12 +473176,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::RefBuilderLarge", - "vtable_address": 64881944, + "vtable_address": 64885848, "methods": [ - 46269792, - 46271184, - 46264592, - 46255184 + 46273696, + 46275088, + 46268496, + 46259088 ], "bases": [ { @@ -473203,12 +473203,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMi<4> >::RefBuilderSmall", - "vtable_address": 64881896, + "vtable_address": 64885800, "methods": [ - 46254864, - 46255440, - 46280464, - 46255200 + 46258768, + 46259344, + 46284368, + 46259104 ], "bases": [ { @@ -473230,15 +473230,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64887488, + "vtable_address": 64891392, "methods": [ - 46257744, - 46258032, - 33281616, - 33281712, - 47028000, - 46268832, - 46260560 + 46261648, + 46261936, + 33285456, + 33285552, + 47031904, + 46272736, + 46264464 ], "bases": [ { @@ -473271,12 +473271,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::RefBuilderLarge", - "vtable_address": 64882040, + "vtable_address": 64885944, "methods": [ - 46269952, - 46271472, - 46264992, - 46255152 + 46273856, + 46275376, + 46268896, + 46259056 ], "bases": [ { @@ -473298,12 +473298,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::TriangleMesh, embree::TriangleMv<4> >::RefBuilderSmall", - "vtable_address": 64881992, + "vtable_address": 64885896, "methods": [ - 46254848, - 46255424, - 46286096, - 46255168 + 46258752, + 46259328, + 46290000, + 46259072 ], "bases": [ { @@ -473325,15 +473325,15 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>", - "vtable_address": 64887704, + "vtable_address": 64891608, "methods": [ - 46258704, - 46258992, - 33281616, - 33281712, - 46967648, - 46269264, - 46259648 + 46262608, + 46262896, + 33285456, + 33285552, + 46971552, + 46273168, + 46263552 ], "bases": [ { @@ -473366,12 +473366,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::RefBuilderLarge", - "vtable_address": 64881752, + "vtable_address": 64885656, "methods": [ - 46269872, - 46270704, - 46263792, - 46255248 + 46273776, + 46274608, + 46267696, + 46259152 ], "bases": [ { @@ -473393,12 +473393,12 @@ }, { "type_name": "embree::avx::BVHNBuilderTwoLevel<8, embree::UserGeometry, embree::Object>::RefBuilderSmall", - "vtable_address": 64881704, + "vtable_address": 64885608, "methods": [ - 46254896, - 46255472, - 46273856, - 46255264 + 46258800, + 46259376, + 46277760, + 46259168 ], "bases": [ { @@ -473420,9 +473420,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT::build()::{lambda(embree::PrimRef const*, embree::range const&, embree::FastAllocator::CachedAllocator)#6}>", - "vtable_address": 64888232, + "vtable_address": 64892136, "methods": [ - 47174192 + 47178096 ], "bases": [ { @@ -473444,9 +473444,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT >", - "vtable_address": 64866728, + "vtable_address": 64870632, "methods": [ - 44996928 + 45000832 ], "bases": [ { @@ -473468,9 +473468,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT >", - "vtable_address": 64866776, + "vtable_address": 64870680, "methods": [ - 44994880 + 44998784 ], "bases": [ { @@ -473492,9 +473492,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64866944, + "vtable_address": 64870848, "methods": [ - 45008896 + 45012800 ], "bases": [ { @@ -473516,9 +473516,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64866968, + "vtable_address": 64870872, "methods": [ - 45028256 + 45032160 ], "bases": [ { @@ -473540,9 +473540,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64867184, + "vtable_address": 64871088, "methods": [ - 45017504 + 45021408 ], "bases": [ { @@ -473564,9 +473564,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64867136, + "vtable_address": 64871040, "methods": [ - 45002240 + 45006144 ], "bases": [ { @@ -473588,9 +473588,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64867160, + "vtable_address": 64871064, "methods": [ - 45012352 + 45016256 ], "bases": [ { @@ -473612,9 +473612,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64866680, + "vtable_address": 64870584, "methods": [ - 45037184 + 45041088 ], "bases": [ { @@ -473636,9 +473636,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64871120, + "vtable_address": 64875024, "methods": [ - 45129520 + 45133424 ], "bases": [ { @@ -473660,9 +473660,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64871240, + "vtable_address": 64875144, "methods": [ - 45123952 + 45127856 ], "bases": [ { @@ -473684,9 +473684,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64871192, + "vtable_address": 64875096, "methods": [ - 45114608 + 45118512 ], "bases": [ { @@ -473708,9 +473708,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64871216, + "vtable_address": 64875120, "methods": [ - 45118784 + 45122688 ], "bases": [ { @@ -473732,7 +473732,7 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<4>::BVHNBuilderV", - "vtable_address": 64866640, + "vtable_address": 64870544, "methods": [], "bases": [], "model": { @@ -473743,9 +473743,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT >", - "vtable_address": 64866704, + "vtable_address": 64870608, "methods": [ - 44997984 + 45001888 ], "bases": [ { @@ -473767,9 +473767,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT >", - "vtable_address": 64866752, + "vtable_address": 64870656, "methods": [ - 44995904 + 44999808 ], "bases": [ { @@ -473791,9 +473791,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64866848, + "vtable_address": 64870752, "methods": [ - 45007168 + 45011072 ], "bases": [ { @@ -473815,9 +473815,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64866872, + "vtable_address": 64870776, "methods": [ - 45034208 + 45038112 ], "bases": [ { @@ -473839,9 +473839,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64867088, + "vtable_address": 64870992, "methods": [ - 45022688 + 45026592 ], "bases": [ { @@ -473863,9 +473863,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64867040, + "vtable_address": 64870944, "methods": [ - 44999040 + 45002944 ], "bases": [ { @@ -473887,9 +473887,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64867064, + "vtable_address": 64870968, "methods": [ - 45014928 + 45018832 ], "bases": [ { @@ -473911,9 +473911,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64866656, + "vtable_address": 64870560, "methods": [ - 44990448 + 44994352 ], "bases": [ { @@ -473935,9 +473935,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64871096, + "vtable_address": 64875000, "methods": [ - 45126544 + 45130448 ], "bases": [ { @@ -473959,9 +473959,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64871168, + "vtable_address": 64875072, "methods": [ - 45121360 + 45125264 ], "bases": [ { @@ -473983,9 +473983,9 @@ }, { "type_name": "embree::avx::BVHNBuilderVirtual<8>::BVHNBuilderT > >", - "vtable_address": 64871144, + "vtable_address": 64875048, "methods": [ - 45116208 + 45120112 ], "bases": [ { @@ -474007,9 +474007,9 @@ }, { "type_name": "embree::avx::BVHNColliderUserGeom<4>", - "vtable_address": 64861112, + "vtable_address": 64865016, "methods": [ - 44462000 + 44465904 ], "bases": [ { @@ -474031,9 +474031,9 @@ }, { "type_name": "embree::avx::BVHNColliderUserGeom<8>", - "vtable_address": 64861136, + "vtable_address": 64865040, "methods": [ - 44461728 + 44465632 ], "bases": [ { @@ -474055,15 +474055,15 @@ }, { "type_name": "embree::avx::BVHNHairBuilderSAH<4, embree::CurveNi<4>, embree::LineMi<4>, embree::PointMi<4> >", - "vtable_address": 64864400, + "vtable_address": 64868304, "methods": [ - 44588464, - 44589200, - 33281616, - 33281712, - 44733600, - 35789664, - 44588848 + 44592368, + 44593104, + 33285456, + 33285552, + 44737504, + 35793504, + 44592752 ], "bases": [ { @@ -474096,15 +474096,15 @@ }, { "type_name": "embree::avx::BVHNHairBuilderSAH<4, embree::CurveNi<8>, embree::LineMi<8>, embree::PointMi<8> >", - "vtable_address": 64864544, + "vtable_address": 64868448, "methods": [ - 44588208, - 44589312, - 33281616, - 33281712, - 44703472, - 35789664, - 44588080 + 44592112, + 44593216, + 33285456, + 33285552, + 44707376, + 35793504, + 44591984 ], "bases": [ { @@ -474137,15 +474137,15 @@ }, { "type_name": "embree::avx::BVHNHairBuilderSAH<4, embree::CurveNv<4>, embree::LineMi<4>, embree::PointMi<4> >", - "vtable_address": 64864328, + "vtable_address": 64868232, "methods": [ - 44588592, - 44588976, - 33281616, - 33281712, - 44688496, - 35789664, - 44587952 + 44592496, + 44592880, + 33285456, + 33285552, + 44692400, + 35793504, + 44591856 ], "bases": [ { @@ -474178,15 +474178,15 @@ }, { "type_name": "embree::avx::BVHNHairBuilderSAH<8, embree::CurveNv<8>, embree::LineMi<8>, embree::PointMi<8> >", - "vtable_address": 64864472, + "vtable_address": 64868376, "methods": [ - 44588336, - 44589088, - 33281616, - 33281712, - 44718576, - 35789664, - 44588720 + 44592240, + 44592992, + 33285456, + 33285552, + 44722480, + 35793504, + 44592624 ], "bases": [ { @@ -474219,15 +474219,15 @@ }, { "type_name": "embree::avx::BVHNHairMBlurBuilderSAH<4, embree::CurveNiMB<4>, embree::LineMi<4>, embree::PointMi<4> >", - "vtable_address": 64865888, + "vtable_address": 64869792, "methods": [ - 44740368, - 44740672, - 33281616, - 33281712, - 44917632, - 35789664, - 44740416 + 44744272, + 44744576, + 33285456, + 33285552, + 44921536, + 35793504, + 44744320 ], "bases": [ { @@ -474260,15 +474260,15 @@ }, { "type_name": "embree::avx::BVHNHairMBlurBuilderSAH<4, embree::CurveNiMB<8>, embree::LineMi<8>, embree::PointMi<8> >", - "vtable_address": 64865960, + "vtable_address": 64869864, "methods": [ - 44740352, - 44740656, - 33281616, - 33281712, - 44964016, - 35789664, - 44740400 + 44744256, + 44744560, + 33285456, + 33285552, + 44967920, + 35793504, + 44744304 ], "bases": [ { @@ -474301,15 +474301,15 @@ }, { "type_name": "embree::avx::BVHNHairMBlurBuilderSAH<8, embree::CurveNiMB<8>, embree::LineMi<8>, embree::PointMi<8> >", - "vtable_address": 64866032, + "vtable_address": 64869936, "methods": [ - 44740336, - 44740640, - 33281616, - 33281712, - 44940960, - 35789664, - 44740384 + 44744240, + 44744544, + 33285456, + 33285552, + 44944864, + 35793504, + 44744288 ], "bases": [ { @@ -474342,15 +474342,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64891592, + "vtable_address": 64895496, "methods": [ - 47287088, - 47289808, - 33281616, - 33281712, - 47545392, - 35789664, - 47288496 + 47290992, + 47293712, + 33285456, + 33285552, + 47549296, + 35793504, + 47292400 ], "bases": [ { @@ -474383,15 +474383,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64891304, + "vtable_address": 64895208, "methods": [ - 47287600, - 47290576, - 33281616, - 33281712, - 47526944, - 35789664, - 47289008 + 47291504, + 47294480, + 33285456, + 33285552, + 47530848, + 35793504, + 47292912 ], "bases": [ { @@ -474424,15 +474424,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64890872, + "vtable_address": 64894776, "methods": [ - 47288368, - 47290192, - 33281616, - 33281712, - 47494864, - 35789664, - 47286704 + 47292272, + 47294096, + 33285456, + 33285552, + 47498768, + 35793504, + 47290608 ], "bases": [ { @@ -474465,15 +474465,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64891016, + "vtable_address": 64894920, "methods": [ - 47288112, - 47291088, - 33281616, - 33281712, - 47510544, - 35789664, - 47289520 + 47292016, + 47294992, + 33285456, + 33285552, + 47514448, + 35793504, + 47293424 ], "bases": [ { @@ -474506,15 +474506,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64890944, + "vtable_address": 64894848, "methods": [ - 47288240, - 47291216, - 33281616, - 33281712, - 47502704, - 35789664, - 47289648 + 47292144, + 47295120, + 33285456, + 33285552, + 47506608, + 35793504, + 47293552 ], "bases": [ { @@ -474547,15 +474547,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64891448, + "vtable_address": 64895352, "methods": [ - 47287344, - 47290320, - 33281616, - 33281712, - 47470096, - 35789664, - 47288752 + 47291248, + 47294224, + 33285456, + 33285552, + 47474000, + 35793504, + 47292656 ], "bases": [ { @@ -474588,15 +474588,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<8, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64891664, + "vtable_address": 64895568, "methods": [ - 47286960, - 47290064, - 33281616, - 33281712, - 47453760, - 35789664, - 47286832 + 47290864, + 47293968, + 33285456, + 33285552, + 47457664, + 35793504, + 47290736 ], "bases": [ { @@ -474629,15 +474629,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<8, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64891376, + "vtable_address": 64895280, "methods": [ - 47287472, - 47290448, - 33281616, - 33281712, - 47535536, - 35789664, - 47288880 + 47291376, + 47294352, + 33285456, + 33285552, + 47539440, + 35793504, + 47292784 ], "bases": [ { @@ -474670,15 +474670,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<8, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64891088, + "vtable_address": 64894992, "methods": [ - 47287984, - 47290960, - 33281616, - 33281712, - 47487056, - 35789664, - 47289392 + 47291888, + 47294864, + 33285456, + 33285552, + 47490960, + 35793504, + 47293296 ], "bases": [ { @@ -474711,15 +474711,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<8, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64891232, + "vtable_address": 64895136, "methods": [ - 47287728, - 47290704, - 33281616, - 33281712, - 47519040, - 35789664, - 47289136 + 47291632, + 47294608, + 33285456, + 33285552, + 47522944, + 35793504, + 47293040 ], "bases": [ { @@ -474752,15 +474752,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<8, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64891160, + "vtable_address": 64895064, "methods": [ - 47287856, - 47290832, - 33281616, - 33281712, - 47478592, - 35789664, - 47289264 + 47291760, + 47294736, + 33285456, + 33285552, + 47482496, + 35793504, + 47293168 ], "bases": [ { @@ -474793,15 +474793,15 @@ }, { "type_name": "embree::avx::BVHNMeshBuilderMorton<8, embree::UserGeometry, embree::Object>", - "vtable_address": 64891520, + "vtable_address": 64895424, "methods": [ - 47287216, - 47289936, - 33281616, - 33281712, - 47462256, - 35789664, - 47288624 + 47291120, + 47293840, + 33285456, + 33285552, + 47466160, + 35793504, + 47292528 ], "bases": [ { @@ -474834,16 +474834,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64863000, + "vtable_address": 64866904, "methods": [ - 44483040, - 44496608, - 33281616, - 33281712, - 44501600, - 35789664, - 44482688, - 44485632 + 44486944, + 44500512, + 33285456, + 33285552, + 44505504, + 35793504, + 44486592, + 44489536 ], "bases": [ { @@ -474886,9 +474886,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64863080, + "vtable_address": 64866984, "methods": [ - 44486944 + 44490848 ], "bases": [ { @@ -474931,16 +474931,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64862584, + "vtable_address": 64866488, "methods": [ - 44483200, - 44496544, - 33281616, - 33281712, - 44501696, - 35789664, - 44482816, - 44488048 + 44487104, + 44500448, + 33285456, + 33285552, + 44505600, + 35793504, + 44486720, + 44491952 ], "bases": [ { @@ -474983,9 +474983,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64862664, + "vtable_address": 64866568, "methods": [ - 44488816 + 44492720 ], "bases": [ { @@ -475028,16 +475028,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64861960, + "vtable_address": 64865864, "methods": [ - 44483440, - 44496288, - 33281616, - 33281712, - 44501840, - 35789664, - 44483008, - 44494400 + 44487344, + 44500192, + 33285456, + 33285552, + 44505744, + 35793504, + 44486912, + 44498304 ], "bases": [ { @@ -475080,9 +475080,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64862040, + "vtable_address": 64865944, "methods": [ - 44495856 + 44499760 ], "bases": [ { @@ -475125,16 +475125,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64862168, + "vtable_address": 64866072, "methods": [ - 44483280, - 44496160, - 33281616, - 33281712, - 44501744, - 35789664, - 44482944, - 44489440 + 44487184, + 44500064, + 33285456, + 33285552, + 44505648, + 35793504, + 44486848, + 44493344 ], "bases": [ { @@ -475177,9 +475177,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64862248, + "vtable_address": 64866152, "methods": [ - 44490032 + 44493936 ], "bases": [ { @@ -475222,16 +475222,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64862064, + "vtable_address": 64865968, "methods": [ - 44483360, - 44496224, - 33281616, - 33281712, - 44501792, - 35789664, - 44482976, - 44491488 + 44487264, + 44500128, + 33285456, + 33285552, + 44505696, + 35793504, + 44486880, + 44495392 ], "bases": [ { @@ -475274,9 +475274,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64862144, + "vtable_address": 64866048, "methods": [ - 44492912 + 44496816 ], "bases": [ { @@ -475319,16 +475319,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64862792, + "vtable_address": 64866696, "methods": [ - 44483120, - 44496416, - 33281616, - 33281712, - 44501648, - 35789664, - 44482752, - 44486960 + 44487024, + 44500320, + 33285456, + 33285552, + 44505552, + 35793504, + 44486656, + 44490864 ], "bases": [ { @@ -475371,9 +475371,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64862872, + "vtable_address": 64866776, "methods": [ - 44487248 + 44491152 ], "bases": [ { @@ -475416,16 +475416,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64863104, + "vtable_address": 64867008, "methods": [ - 44483520, - 44495904, - 33281616, - 33281712, - 44504464, - 35789664, - 44482656, - 44484000 + 44487424, + 44499808, + 33285456, + 33285552, + 44508368, + 35793504, + 44486560, + 44487904 ], "bases": [ { @@ -475468,9 +475468,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64863184, + "vtable_address": 64867088, "methods": [ - 44485312 + 44489216 ], "bases": [ { @@ -475513,16 +475513,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64862688, + "vtable_address": 64866592, "methods": [ - 44483680, - 44496480, - 33281616, - 33281712, - 44504560, - 35789664, - 44482784, - 44487264 + 44487584, + 44500384, + 33285456, + 33285552, + 44508464, + 35793504, + 44486688, + 44491168 ], "bases": [ { @@ -475565,9 +475565,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64862768, + "vtable_address": 64866672, "methods": [ - 44488032 + 44491936 ], "bases": [ { @@ -475610,16 +475610,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64862272, + "vtable_address": 64866176, "methods": [ - 44483920, - 44496096, - 33281616, - 33281712, - 44504704, - 35789664, - 44482912, - 44492928 + 44487824, + 44500000, + 33285456, + 33285552, + 44508608, + 35793504, + 44486816, + 44496832 ], "bases": [ { @@ -475662,9 +475662,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64862352, + "vtable_address": 64866256, "methods": [ - 44494384 + 44498288 ], "bases": [ { @@ -475707,16 +475707,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64862480, + "vtable_address": 64866384, "methods": [ - 44483760, - 44495968, - 33281616, - 33281712, - 44504608, - 35789664, - 44482848, - 44488832 + 44487664, + 44499872, + 33285456, + 33285552, + 44508512, + 35793504, + 44486752, + 44492736 ], "bases": [ { @@ -475759,9 +475759,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64862560, + "vtable_address": 64866464, "methods": [ - 44489424 + 44493328 ], "bases": [ { @@ -475804,16 +475804,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64862376, + "vtable_address": 64866280, "methods": [ - 44483840, - 44496032, - 33281616, - 33281712, - 44504656, - 35789664, - 44482880, - 44490048 + 44487744, + 44499936, + 33285456, + 33285552, + 44508560, + 35793504, + 44486784, + 44493952 ], "bases": [ { @@ -475856,9 +475856,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64862456, + "vtable_address": 64866360, "methods": [ - 44491472 + 44495376 ], "bases": [ { @@ -475901,16 +475901,16 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::UserGeometry, embree::Object>", - "vtable_address": 64862896, + "vtable_address": 64866800, "methods": [ - 44483600, - 44496352, - 33281616, - 33281712, - 44504512, - 35789664, - 44482720, - 44485328 + 44487504, + 44500256, + 33285456, + 33285552, + 44508416, + 35793504, + 44486624, + 44489232 ], "bases": [ { @@ -475953,9 +475953,9 @@ }, { "type_name": "embree::avx::BVHNRefitT<8, embree::UserGeometry, embree::Object>", - "vtable_address": 64862976, + "vtable_address": 64866880, "methods": [ - 44485616 + 44489520 ], "bases": [ { @@ -475998,15 +475998,15 @@ }, { "type_name": "embree::avx::BVHNSubdivPatch1BuilderSAH<4>", - "vtable_address": 64888616, + "vtable_address": 64892520, "methods": [ - 47174352, - 47174976, - 33281616, - 33281712, - 47210640, - 35789664, - 47174224 + 47178256, + 47178880, + 33285456, + 33285552, + 47214544, + 35793504, + 47178128 ], "bases": [ { @@ -476039,15 +476039,15 @@ }, { "type_name": "embree::avx::BVHNSubdivPatch1MBlurBuilderSAH<4>", - "vtable_address": 64888688, + "vtable_address": 64892592, "methods": [ - 47174608, - 47175088, - 33281616, - 33281712, - 47279024, - 35789664, - 47174480 + 47178512, + 47178992, + 33285456, + 33285552, + 47282928, + 35793504, + 47178384 ], "bases": [ { @@ -476080,63 +476080,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64854984, - "methods": [ - 44209456, - 44209472, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64858888, + "methods": [ + 44213360, + 44213376, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44137456, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44133552, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44159280, - 33295600, - 44353376, - 44059968, - 44058592, - 44023808, - 44024064, - 44157264, - 44155072, - 44152800, - 44350096, - 44360048, - 44363504 + 33300016, + 33299824, + 44163184, + 33299440, + 44357280, + 44063872, + 44062496, + 44027712, + 44027968, + 44161168, + 44158976, + 44156704, + 44354000, + 44363952, + 44367408 ], "bases": [ { @@ -476191,63 +476191,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64858632, - "methods": [ - 44209072, - 44209088, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64862536, + "methods": [ + 44212976, + 44212992, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136032, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132128, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44140768, - 33295600, - 44237088, - 44053184, - 44051808, - 44022272, - 44022528, - 44138752, - 44136560, - 44134288, - 44233808, - 44243760, - 44247216 + 33300016, + 33299824, + 44144672, + 33299440, + 44240992, + 44057088, + 44055712, + 44026176, + 44026432, + 44142656, + 44140464, + 44138192, + 44237712, + 44247664, + 44251120 ], "bases": [ { @@ -476302,63 +476302,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64853160, - "methods": [ - 44209648, - 44209664, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64857064, + "methods": [ + 44213552, + 44213568, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136832, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132928, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44150016, - 33295600, - 44412176, - 44048720, - 44047408, - 44025088, - 44025216, - 44148016, - 44145824, - 44143552, - 44408880, - 44418832, - 44424656 + 33300016, + 33299824, + 44153920, + 33299440, + 44416080, + 44052624, + 44051312, + 44028992, + 44029120, + 44151920, + 44149728, + 44147456, + 44412784, + 44422736, + 44428560 ], "bases": [ { @@ -476413,63 +476413,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)0, embree::avx::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64856808, - "methods": [ - 44209264, - 44209280, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64860712, + "methods": [ + 44213168, + 44213184, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44173408, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44169504, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44206368, - 33295600, - 44296192, - 44166416, - 44165056, - 44162448, - 44162320, - 44204336, - 44202096, - 44199744, - 44292848, - 44302896, - 44306416 + 33300016, + 33299824, + 44210272, + 33299440, + 44300096, + 44170320, + 44168960, + 44166352, + 44166224, + 44208240, + 44206000, + 44203648, + 44296752, + 44306800, + 44310320 ], "bases": [ { @@ -476524,63 +476524,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64854528, - "methods": [ - 44209504, - 44209520, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64858432, + "methods": [ + 44213408, + 44213424, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44137456, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44133552, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44068416, - 33295600, - 44372096, - 44062240, - 44060864, - 44024320, - 44024576, - 44041328, - 44039344, - 44037280, - 44368928, - 44378384, - 44381632 + 33300016, + 33299824, + 44072320, + 33299440, + 44376000, + 44066144, + 44064768, + 44028224, + 44028480, + 44045232, + 44043248, + 44041184, + 44372832, + 44382288, + 44385536 ], "bases": [ { @@ -476635,63 +476635,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64858176, - "methods": [ - 44209120, - 44209136, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64862080, + "methods": [ + 44213024, + 44213040, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136032, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132128, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44065776, - 33295600, - 44255808, - 44055440, - 44054064, - 44022784, - 44023040, - 44035488, - 44033504, - 44031440, - 44252640, - 44262096, - 44265344 + 33300016, + 33299824, + 44069680, + 33299440, + 44259712, + 44059344, + 44057968, + 44026688, + 44026944, + 44039392, + 44037408, + 44035344, + 44256544, + 44266000, + 44269248 ], "bases": [ { @@ -476746,63 +476746,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64852704, - "methods": [ - 44209696, - 44209712, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64856608, + "methods": [ + 44213600, + 44213616, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136832, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132928, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44063136, - 33295600, - 44433296, - 44044432, - 44043120, - 44025344, - 44025472, - 44029648, - 44027664, - 44025600, - 44430128, - 44439584, - 44442832 + 33300016, + 33299824, + 44067040, + 33299440, + 44437200, + 44048336, + 44047024, + 44029248, + 44029376, + 44033552, + 44031568, + 44029504, + 44434032, + 44443488, + 44446736 ], "bases": [ { @@ -476857,63 +476857,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)1, embree::avx::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64856352, - "methods": [ - 44209312, - 44209328, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64860256, + "methods": [ + 44213216, + 44213232, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44173408, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44169504, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44197280, - 33295600, - 44315136, - 44168640, - 44167280, - 44162704, - 44162576, - 44175264, - 44173232, - 44171136, - 44311920, - 44321488, - 44324768 + 33300016, + 33299824, + 44201184, + 33299440, + 44319040, + 44172544, + 44171184, + 44166608, + 44166480, + 44179168, + 44177136, + 44175040, + 44315824, + 44325392, + 44328672 ], "bases": [ { @@ -476968,63 +476968,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64855440, - "methods": [ - 44209408, - 44209424, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64859344, + "methods": [ + 44213312, + 44213328, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44137456, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44133552, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44103696, - 33295600, - 44330768, - 44057696, - 44056320, - 44023296, - 44023552, - 44100080, - 44096016, - 44091536, - 44329616, - 44341216, - 44346864 + 33300016, + 33299824, + 44107600, + 33299440, + 44334672, + 44061600, + 44060224, + 44027200, + 44027456, + 44103984, + 44099920, + 44095440, + 44333520, + 44345120, + 44350768 ], "bases": [ { @@ -477079,63 +477079,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64859088, - "methods": [ - 44209024, - 44209040, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64862992, + "methods": [ + 44212928, + 44212944, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136032, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132128, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44083168, - 33295600, - 44214512, - 44050928, - 44049552, - 44021760, - 44022016, - 44079584, - 44075536, - 44071056, - 44213360, - 44224944, - 44230576 + 33300016, + 33299824, + 44087072, + 33299440, + 44218416, + 44054832, + 44053456, + 44025664, + 44025920, + 44083488, + 44079440, + 44074960, + 44217264, + 44228848, + 44234480 ], "bases": [ { @@ -477190,63 +477190,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64853616, - "methods": [ - 44209600, - 44209616, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64857520, + "methods": [ + 44213504, + 44213520, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136832, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132928, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44123936, - 33295600, - 44389856, - 44046576, - 44045264, - 44024832, - 44024960, - 44120432, - 44116464, - 44112064, - 44388704, - 44400096, - 44405664 + 33300016, + 33299824, + 44127840, + 33299440, + 44393760, + 44050480, + 44049168, + 44028736, + 44028864, + 44124336, + 44120368, + 44115968, + 44392608, + 44404000, + 44409568 ], "bases": [ { @@ -477301,63 +477301,63 @@ }, { "type_name": "embree::avx::CurveGeometryISA<(embree::Geometry::GType)2, embree::avx::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64857264, - "methods": [ - 44209216, - 44209232, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64861168, + "methods": [ + 44213120, + 44213136, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44173408, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44169504, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44189184, - 33295600, - 44273664, - 44164192, - 44162832, - 44162192, - 44162064, - 44185584, - 44181520, - 44177088, - 44272512, - 44283984, - 44289600 + 33300016, + 33299824, + 44193088, + 33299440, + 44277568, + 44168096, + 44166736, + 44166096, + 44165968, + 44189488, + 44185424, + 44180992, + 44276416, + 44287888, + 44293504 ], "bases": [ { @@ -477412,29 +477412,52 @@ }, { "type_name": "embree::avx::CurveGeometryInterface", - "vtable_address": 64854072, - "methods": [ - 44209360, - 44209376, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64857976, + "methods": [ + 44213264, + 44213280, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44137456, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44133552, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -477443,32 +477466,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -477512,7 +477512,7 @@ }, { "type_name": "embree::avx::CurveGeometryInterface", - "vtable_address": 64852232, + "vtable_address": 64856136, "methods": [], "bases": [ { @@ -477556,29 +477556,52 @@ }, { "type_name": "embree::avx::CurveGeometryInterface", - "vtable_address": 64857720, - "methods": [ - 44208976, - 44208992, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64861624, + "methods": [ + 44212880, + 44212896, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136032, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132128, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -477587,32 +477610,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -477656,29 +477656,52 @@ }, { "type_name": "embree::avx::CurveGeometryInterface", - "vtable_address": 64852248, - "methods": [ - 44209552, - 44209568, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64856152, + "methods": [ + 44213456, + 44213472, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44136832, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44132928, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -477687,32 +477710,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -477756,29 +477756,52 @@ }, { "type_name": "embree::avx::GridMeshISA", - "vtable_address": 64860048, - "methods": [ - 44454096, - 44455344, - 33281616, - 33281712, - 33468368, - 34089120, - 34087888, + "vtable_address": 64863952, + "methods": [ + 44458000, + 44459248, + 33285456, + 33285552, + 33472208, + 34092960, + 34091728, + 33304048, + 33472384, + 34091248, + 34090656, + 33472352, + 34089744, + 33472464, + 33472320, + 34089696, + 33303664, + 33303472, + 33472336, + 34096576, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34096592, + 34089728, + 34094208, + 34090112, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34087408, - 34086816, - 33468512, - 34085904, - 33468624, - 33468480, - 34085856, + 33300016, 33299824, 33299632, - 33468496, - 34092736, - 33469248, + 33299440, 33299248, 33299056, 33298864, @@ -477787,32 +477810,9 @@ 33298288, 33298096, 33297904, - 34092752, - 34085888, - 34090368, - 34086272, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -477856,29 +477856,52 @@ }, { "type_name": "embree::avx::HermiteCurveGeometryInterface", - "vtable_address": 64855896, - "methods": [ - 44209168, - 44209184, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64859800, + "methods": [ + 44213072, + 44213088, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 44173408, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 44169504, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -477887,32 +477910,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -477956,30 +477956,53 @@ }, { "type_name": "embree::avx::InstanceISA", - "vtable_address": 64850440, - "methods": [ - 44010032, - 44010048, - 33281616, - 33281712, - 33468368, - 33479296, - 33300400, + "vtable_address": 64854344, + "methods": [ + 44013936, + 44013952, + 33285456, + 33285552, + 33472208, + 33483136, + 33304240, + 33304048, + 33472384, + 33481984, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33483408, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33478768, + 33301360, + 33301168, + 33472672, + 33472880, + 33484112, + 33483520, + 33483760, + 33478784, 33300208, - 33468544, - 33478144, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33479568, + 33300016, 33299824, - 33299632, - 33468496, - 33299440, - 33469248, - 33299248, + 44010352, + 44009040, + 44011664, 33299056, 33298864, 33298672, @@ -477987,33 +478010,10 @@ 33298288, 33298096, 33297904, - 33293440, - 33474928, + 33297712, 33297520, 33297328, - 33468832, - 33469040, - 33480272, - 33479680, - 33479920, - 33474944, - 33296368, - 33296176, - 33295984, - 44006448, - 44005136, - 44007760, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33570896 + 33574736 ], "bases": [ { @@ -478057,63 +478057,63 @@ }, { "type_name": "embree::avx::LineSegmentsISA", - "vtable_address": 64859568, - "methods": [ - 44453872, - 44453888, - 33281616, - 33281712, - 33468368, - 34070720, - 34072256, + "vtable_address": 64863472, + "methods": [ + 44457776, + 44457792, + 33285456, + 33285552, + 33472208, + 34074560, + 34076096, + 33304048, + 33472384, + 34079056, + 34073456, + 33472352, + 34070864, + 33472464, + 33472320, + 34070832, + 34070784, + 34070816, + 33472336, + 34071376, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34081616, + 34071360, + 34077328, + 34072640, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34075216, - 34069616, - 33468512, - 34067024, - 33468624, - 33468480, - 34066992, - 34066944, - 34066976, - 33468496, - 34067536, - 33469248, - 33299248, + 33300016, + 33299824, + 44451760, + 44450992, + 44452304, 33299056, 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 34077776, - 34067520, - 34073488, - 34068800, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44447856, - 44447088, - 44448400, - 33295216, - 33295024, - 44446544, - 44446608, - 44446960, - 44446688, - 33294064, + 44450448, + 44450512, + 44450864, 44450592, - 44451872, - 33293488 + 33297904, + 44454496, + 44455776, + 33297328 ], "bases": [ { @@ -478157,63 +478157,63 @@ }, { "type_name": "embree::avx::PointsISA", - "vtable_address": 64860528, - "methods": [ - 44461216, - 44461232, - 33281616, - 33281712, - 33468368, - 34097648, - 34099424, + "vtable_address": 64864432, + "methods": [ + 44465120, + 44465136, + 33285456, + 33285552, + 33472208, + 34101488, + 34103264, + 33304048, + 33472384, + 34100736, + 34099904, + 33472352, + 34098784, + 33472464, + 33472320, + 34098752, + 33303664, + 34098736, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34107440, + 34099248, + 34104496, + 34099328, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34096896, - 34096064, - 33468512, - 34094944, - 33468624, - 33468480, - 34094912, + 33300016, 33299824, - 34094896, - 33468496, - 33299440, - 33469248, - 33299248, + 44461360, + 44460752, + 44461760, 33299056, 33298864, - 33298672, - 33298480, - 33298288, - 33298096, + 44459456, + 44459472, + 44459488, + 44459552, 33297904, - 34103600, - 34095408, - 34100656, - 34095488, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44457456, - 44456848, - 44457856, - 33295216, - 33295024, - 44455552, - 44455568, - 44455584, - 44455648, - 33294064, - 44455776, - 44459712, - 33293488 + 44459680, + 44463616, + 33297328 ], "bases": [ { @@ -478257,30 +478257,53 @@ }, { "type_name": "embree::avx::QuadMeshISA", - "vtable_address": 64851408, - "methods": [ - 44019488, - 44020736, - 33281616, - 33281712, - 33468368, - 33594704, - 33593472, + "vtable_address": 64855312, + "methods": [ + 44023392, + 44024640, + 33285456, + 33285552, + 33472208, + 33598544, + 33597312, + 33304048, + 33472384, + 33596816, + 33596224, + 33472352, + 33594544, + 33472464, + 33472320, + 33594496, + 33303664, + 33303472, + 33472336, + 33594880, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33602176, + 33594528, + 33599792, + 33595664, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33592976, - 33592384, - 33468512, - 33590704, - 33468624, - 33468480, - 33590656, + 33300016, 33299824, - 33299632, - 33468496, - 33591040, - 33469248, - 33299248, + 44020096, + 44019296, + 44020880, 33299056, 33298864, 33298672, @@ -478288,32 +478311,9 @@ 33298288, 33298096, 33297904, - 33598336, - 33590688, - 33595952, - 33591824, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44016192, - 44015392, - 44016976, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -478357,63 +478357,63 @@ }, { "type_name": "embree::avx::SubdivMeshISA", - "vtable_address": 64893480, - "methods": [ - 47990432, - 47990448, - 33281616, - 33281712, - 33468368, - 37940688, - 37939344, - 37928880, - 33468544, - 37952672, - 37906864, - 33468512, - 37909520, - 33468624, - 33468480, - 37904976, - 37905024, - 33299632, - 33468496, - 47986048, - 47988128, - 37910496, - 37905120, - 37905008, - 37908320, - 37908528, - 37908736, + "vtable_address": 64897384, + "methods": [ + 47994336, + 47994352, + 33285456, + 33285552, + 33472208, + 37944528, + 37943184, + 37932720, + 33472384, + 37956512, + 37910704, + 33472352, + 37913360, + 33472464, + 33472320, + 37908816, + 37908864, + 33303472, + 33472336, + 47989952, + 47992032, + 37914336, 37908960, - 37909184, - 33293440, - 37905056, - 37926112, - 37905456, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 37908848, + 37912160, + 37912368, + 37912576, + 37912800, + 37913024, + 33297280, + 37908896, + 37929952, + 37909296, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, + 33300208, + 33300016, + 33299824, + 33299632, + 33299440, + 33299248, + 33299056, + 33298864, + 33298672, + 33298480, + 33298288, + 33298096, + 33297904, + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -478457,30 +478457,53 @@ }, { "type_name": "embree::avx::TriangleMeshISA", - "vtable_address": 64850928, - "methods": [ - 44013936, - 44015184, - 33281616, - 33281712, - 33468368, + "vtable_address": 64854832, + "methods": [ + 44017840, + 44019088, + 33285456, + 33285552, + 33472208, + 33585952, + 33584720, + 33304048, + 33472384, + 33584224, + 33583632, + 33472352, + 33582160, + 33472464, + 33472320, 33582112, - 33580880, + 33303664, + 33303472, + 33472336, + 33582528, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33589568, + 33582144, + 33587200, + 33583072, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33580384, - 33579792, - 33468512, - 33578320, - 33468624, - 33468480, - 33578272, + 33300016, 33299824, - 33299632, - 33468496, - 33578688, - 33469248, - 33299248, + 44014832, + 44014160, + 44015504, 33299056, 33298864, 33298672, @@ -478488,32 +478511,9 @@ 33298288, 33298096, 33297904, - 33585728, - 33578304, - 33583360, - 33579232, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 44010928, - 44010256, - 44011600, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -478557,30 +478557,53 @@ }, { "type_name": "embree::avx::UserGeometryISA", - "vtable_address": 64849944, - "methods": [ - 44004896, - 44004912, - 33281616, - 33281712, - 33468368, - 33468400, + "vtable_address": 64853848, + "methods": [ + 44008800, + 44008816, + 33285456, + 33285552, + 33472208, + 33472240, + 33304240, + 33304048, + 33472384, + 33472288, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33475184, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33475264, + 33301360, + 33301168, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, 33300400, - 33300208, - 33468544, - 33468448, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33471344, - 33299824, - 33299632, - 33468496, - 33299440, - 33469248, - 33299248, + 33475216, + 33475232, + 33475248, + 44006048, + 44005440, + 44006496, 33299056, 33298864, 33298672, @@ -478588,34 +478611,11 @@ 33298288, 33298096, 33297904, - 33293440, - 33471424, + 33297712, 33297520, 33297328, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33471376, - 33471392, - 33471408, - 44002144, - 44001536, - 44002592, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33293456, - 33471632 + 33297296, + 33475472 ], "bases": [ { @@ -478670,9 +478670,9 @@ }, { "type_name": "embree::barrier_sys_regression_test", - "vtable_address": 64905424, + "vtable_address": 64909328, "methods": [ - 57999712 + 58003616 ], "bases": [ { @@ -478694,9 +478694,9 @@ }, { "type_name": "embree::cache_regression_test", - "vtable_address": 64822328, + "vtable_address": 64826232, "methods": [ - 38157504 + 38161344 ], "bases": [ { @@ -478718,9 +478718,9 @@ }, { "type_name": "embree::fast_allocator_regression_test", - "vtable_address": 64784352, + "vtable_address": 64788256, "methods": [ - 33456080 + 33459920 ], "bases": [ { @@ -478742,11 +478742,11 @@ }, { "type_name": "embree::rtcore_error", - "vtable_address": 64782456, + "vtable_address": 64786360, "methods": [ - 33281632, - 33281760, - 33281600 + 33285472, + 33285600, + 33285440 ], "bases": [], "model": { @@ -478757,26 +478757,26 @@ }, { "type_name": "embree::rtcore_error", - "vtable_address": 66080048, + "vtable_address": 66083952, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10958953 + "offset_to_top": 10958964 } } }, { "type_name": "embree::sse2::BVHNBuilderFastSpatialSAH<4, embree::QuadMesh, embree::QuadMv<4>, embree::sse2::QuadSplitterFactory>", - "vtable_address": 64812296, + "vtable_address": 64816200, "methods": [ - 36378720, - 36379520, - 33281616, - 33281712, - 36641328, - 35789664, - 36378592 + 36382560, + 36383360, + 33285456, + 33285552, + 36645168, + 35793504, + 36382432 ], "bases": [ { @@ -478809,15 +478809,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderFastSpatialSAH<4, embree::TriangleMesh, embree::TriangleM<4>, embree::sse2::TriangleSplitterFactory>", - "vtable_address": 64812080, + "vtable_address": 64815984, "methods": [ - 36379104, - 36379856, - 33281616, - 33281712, - 36697152, - 35789664, - 36378464 + 36382944, + 36383696, + 33285456, + 33285552, + 36700992, + 35793504, + 36382304 ], "bases": [ { @@ -478850,15 +478850,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderFastSpatialSAH<4, embree::TriangleMesh, embree::TriangleMi<4>, embree::sse2::TriangleSplitterFactory>", - "vtable_address": 64812224, + "vtable_address": 64816128, "methods": [ - 36378848, - 36379632, - 33281616, - 33281712, - 36671776, - 35789664, - 36379232 + 36382688, + 36383472, + 33285456, + 33285552, + 36675616, + 35793504, + 36383072 ], "bases": [ { @@ -478891,15 +478891,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderFastSpatialSAH<4, embree::TriangleMesh, embree::TriangleMv<4>, embree::sse2::TriangleSplitterFactory>", - "vtable_address": 64812152, + "vtable_address": 64816056, "methods": [ - 36378976, - 36379744, - 33281616, - 33281712, - 36684464, - 35789664, - 36379360 + 36382816, + 36383584, + 33285456, + 33285552, + 36688304, + 35793504, + 36383200 ], "bases": [ { @@ -478932,15 +478932,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderMBlurSAH<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64815104, + "vtable_address": 64819008, "methods": [ - 36706656, - 36707712, - 33281616, - 33281712, - 36985360, - 35789664, - 36706752 + 36710496, + 36711552, + 33285456, + 33285552, + 36989200, + 35793504, + 36710592 ], "bases": [ { @@ -478973,15 +478973,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderMBlurSAH<4, embree::QuadMesh, embree::QuadMi<4> >", - "vtable_address": 64814960, + "vtable_address": 64818864, "methods": [ - 36706688, - 36707744, - 33281616, - 33281712, - 37067792, - 35789664, - 36706784 + 36710528, + 36711584, + 33285456, + 33285552, + 37071632, + 35793504, + 36710624 ], "bases": [ { @@ -479014,15 +479014,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderMBlurSAH<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64814816, + "vtable_address": 64818720, "methods": [ - 36706720, - 36707776, - 33281616, - 33281712, - 37122848, - 35789664, - 36706816 + 36710560, + 36711616, + 33285456, + 33285552, + 37126688, + 35793504, + 36710656 ], "bases": [ { @@ -479055,15 +479055,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderMBlurSAH<4, embree::TriangleMesh, embree::TriangleMvMB<4> >", - "vtable_address": 64814888, + "vtable_address": 64818792, "methods": [ - 36706704, - 36707760, - 33281616, - 33281712, - 37143008, - 35789664, - 36706800 + 36710544, + 36711600, + 33285456, + 33285552, + 37146848, + 35793504, + 36710640 ], "bases": [ { @@ -479096,15 +479096,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderMBlurSAH<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64815032, + "vtable_address": 64818936, "methods": [ - 36706672, - 36707728, - 33281616, - 33281712, - 37026864, - 35789664, - 36706768 + 36710512, + 36711568, + 33285456, + 33285552, + 37030704, + 35793504, + 36710608 ], "bases": [ { @@ -479137,15 +479137,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderMBlurSAHGrid<4>", - "vtable_address": 64815176, + "vtable_address": 64819080, "methods": [ - 36707792, - 36708560, - 33281616, - 33281712, - 36945312, - 35789664, - 36706736 + 36711632, + 36712400, + 33285456, + 33285552, + 36949152, + 35793504, + 36710576 ], "bases": [ { @@ -479178,9 +479178,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderQuantizedVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64807856, + "vtable_address": 64811760, "methods": [ - 36332048 + 36335888 ], "bases": [ { @@ -479202,9 +479202,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderQuantizedVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64807880, + "vtable_address": 64811784, "methods": [ - 36341744 + 36345584 ], "bases": [ { @@ -479226,9 +479226,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderQuantizedVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64807952, + "vtable_address": 64811856, "methods": [ - 36328752 + 36332592 ], "bases": [ { @@ -479250,15 +479250,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAH<4, embree::InstancePrimitive>", - "vtable_address": 64808960, + "vtable_address": 64812864, "methods": [ - 36315024, - 36317776, - 33281616, - 33281712, - 36347760, - 35789664, - 36316304 + 36318864, + 36321616, + 33285456, + 33285552, + 36351600, + 35793504, + 36320144 ], "bases": [ { @@ -479291,15 +479291,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAH<4, embree::Object>", - "vtable_address": 64808888, + "vtable_address": 64812792, "methods": [ - 36315152, - 36317888, - 33281616, - 33281712, - 36350672, - 35789664, - 36316432 + 36318992, + 36321728, + 33285456, + 33285552, + 36354512, + 35793504, + 36320272 ], "bases": [ { @@ -479332,15 +479332,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAH<4, embree::QuadMi<4> >", - "vtable_address": 64808672, + "vtable_address": 64812576, "methods": [ - 36315536, - 36318672, - 33281616, - 33281712, - 36358576, - 35789664, - 36316816 + 36319376, + 36322512, + 33285456, + 33285552, + 36362416, + 35793504, + 36320656 ], "bases": [ { @@ -479373,15 +479373,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAH<4, embree::QuadMv<4> >", - "vtable_address": 64808600, + "vtable_address": 64812504, "methods": [ - 36315664, - 36318448, - 33281616, - 33281712, - 36361440, - 35789664, - 36316944 + 36319504, + 36322288, + 33285456, + 33285552, + 36365280, + 35793504, + 36320784 ], "bases": [ { @@ -479414,15 +479414,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAH<4, embree::TriangleM<4> >", - "vtable_address": 64808312, + "vtable_address": 64812216, "methods": [ - 36316176, - 36318336, - 33281616, - 33281712, - 36372528, - 35789664, - 36314768 + 36320016, + 36322176, + 33285456, + 33285552, + 36376368, + 35793504, + 36318608 ], "bases": [ { @@ -479455,15 +479455,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAH<4, embree::TriangleMi<4> >", - "vtable_address": 64808456, + "vtable_address": 64812360, "methods": [ - 36315920, - 36318112, - 33281616, - 33281712, - 36366800, - 35789664, - 36317200 + 36319760, + 36321952, + 33285456, + 33285552, + 36370640, + 35793504, + 36321040 ], "bases": [ { @@ -479496,15 +479496,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAH<4, embree::TriangleMv<4> >", - "vtable_address": 64808384, + "vtable_address": 64812288, "methods": [ - 36316048, - 36318224, - 33281616, - 33281712, - 36369664, - 35789664, - 36317328 + 36319888, + 36322064, + 33285456, + 33285552, + 36373504, + 35793504, + 36321168 ], "bases": [ { @@ -479537,15 +479537,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAHGrid<4>", - "vtable_address": 64809032, + "vtable_address": 64812936, "methods": [ - 36317456, - 36318784, - 33281616, - 33281712, - 36344656, - 35789664, - 36314896 + 36321296, + 36322624, + 33285456, + 33285552, + 36348496, + 35793504, + 36318736 ], "bases": [ { @@ -479578,15 +479578,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAHQuantized<4, embree::QuadMi<4> >", - "vtable_address": 64808816, + "vtable_address": 64812720, "methods": [ - 36315280, - 36318000, - 33281616, - 33281712, - 36353584, - 35789664, - 36316560 + 36319120, + 36321840, + 33285456, + 33285552, + 36357424, + 35793504, + 36320400 ], "bases": [ { @@ -479619,15 +479619,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAHQuantized<4, embree::QuadMv<4> >", - "vtable_address": 64808744, + "vtable_address": 64812648, "methods": [ - 36315408, - 36317664, - 33281616, - 33281712, - 36356080, - 35789664, - 36316688 + 36319248, + 36321504, + 33285456, + 33285552, + 36359920, + 35793504, + 36320528 ], "bases": [ { @@ -479660,15 +479660,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderSAHQuantized<4, embree::TriangleMi<4> >", - "vtable_address": 64808528, + "vtable_address": 64812432, "methods": [ - 36315792, - 36318560, - 33281616, - 33281712, - 36364304, - 35789664, - 36317072 + 36319632, + 36322400, + 33285456, + 33285552, + 36368144, + 35793504, + 36320912 ], "bases": [ { @@ -479701,15 +479701,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64820456, + "vtable_address": 64824360, "methods": [ - 37156320, - 37156608, - 33281616, - 33281712, - 37488624, - 37161248, - 37156640 + 37160160, + 37160448, + 33285456, + 33285552, + 37492464, + 37165088, + 37160480 ], "bases": [ { @@ -479742,12 +479742,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::RefBuilderLarge", - "vtable_address": 64817456, + "vtable_address": 64821360, "methods": [ - 37161392, - 37162160, - 37158800, - 37154592 + 37165232, + 37166000, + 37162640, + 37158432 ], "bases": [ { @@ -479769,12 +479769,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::Instance, embree::InstancePrimitive>::RefBuilderSmall", - "vtable_address": 64817408, + "vtable_address": 64821312, "methods": [ - 37154416, - 37154704, - 37164416, - 37154608 + 37158256, + 37158544, + 37168256, + 37158448 ], "bases": [ { @@ -479796,15 +479796,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64820312, + "vtable_address": 64824216, "methods": [ - 37155680, - 37155968, - 33281616, - 33281712, - 37528048, - 37160960, - 37157248 + 37159520, + 37159808, + 33285456, + 33285552, + 37531888, + 37164800, + 37161088 ], "bases": [ { @@ -479837,12 +479837,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::RefBuilderLarge", - "vtable_address": 64817648, + "vtable_address": 64821552, "methods": [ - 37161712, - 37161872, - 37159472, - 37154528 + 37165552, + 37165712, + 37163312, + 37158368 ], "bases": [ { @@ -479864,12 +479864,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::QuadMesh, embree::QuadMv<4> >::RefBuilderSmall", - "vtable_address": 64817600, + "vtable_address": 64821504, "methods": [ - 37154384, - 37154672, - 37176256, - 37154544 + 37158224, + 37158512, + 37180096, + 37158384 ], "bases": [ { @@ -479891,15 +479891,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64820096, + "vtable_address": 64824000, "methods": [ - 37154720, - 37155008, - 33281616, - 33281712, - 37587136, - 37160528, - 37158160 + 37158560, + 37158848, + 33285456, + 33285552, + 37590976, + 37164368, + 37162000 ], "bases": [ { @@ -479932,12 +479932,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::RefBuilderLarge", - "vtable_address": 64817936, + "vtable_address": 64821840, "methods": [ - 37161792, - 37162256, - 37158464, - 37154432 + 37165632, + 37166096, + 37162304, + 37158272 ], "bases": [ { @@ -479959,12 +479959,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleM<4> >::RefBuilderSmall", - "vtable_address": 64817888, + "vtable_address": 64821792, "methods": [ - 37154336, - 37154624, - 37172624, - 37154448 + 37158176, + 37158464, + 37176464, + 37158288 ], "bases": [ { @@ -479986,15 +479986,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64820240, + "vtable_address": 64824144, "methods": [ - 37155360, - 37155648, - 33281616, - 33281712, - 37547744, - 37160816, - 37157552 + 37159200, + 37159488, + 33285456, + 33285552, + 37551584, + 37164656, + 37161392 ], "bases": [ { @@ -480027,12 +480027,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::RefBuilderLarge", - "vtable_address": 64817744, + "vtable_address": 64821648, "methods": [ - 37161632, - 37162064, - 37159808, - 37154496 + 37165472, + 37165904, + 37163648, + 37158336 ], "bases": [ { @@ -480054,12 +480054,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMi<4> >::RefBuilderSmall", - "vtable_address": 64817696, + "vtable_address": 64821600, "methods": [ - 37154368, - 37154656, - 37166400, - 37154512 + 37158208, + 37158496, + 37170240, + 37158352 ], "bases": [ { @@ -480081,15 +480081,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64820168, + "vtable_address": 64824072, "methods": [ - 37155040, - 37155328, - 33281616, - 33281712, - 37567440, - 37160672, - 37157856 + 37158880, + 37159168, + 33285456, + 33285552, + 37571280, + 37164512, + 37161696 ], "bases": [ { @@ -480122,12 +480122,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::RefBuilderLarge", - "vtable_address": 64817840, + "vtable_address": 64821744, "methods": [ - 37161472, - 37161968, - 37160144, - 37154464 + 37165312, + 37165808, + 37163984, + 37158304 ], "bases": [ { @@ -480149,12 +480149,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::TriangleMesh, embree::TriangleMv<4> >::RefBuilderSmall", - "vtable_address": 64817792, + "vtable_address": 64821696, "methods": [ - 37154352, - 37154640, - 37169024, - 37154480 + 37158192, + 37158480, + 37172864, + 37158320 ], "bases": [ { @@ -480176,15 +480176,15 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64820384, + "vtable_address": 64824288, "methods": [ - 37156000, - 37156288, - 33281616, - 33281712, - 37508336, - 37161104, - 37156944 + 37159840, + 37160128, + 33285456, + 33285552, + 37512176, + 37164944, + 37160784 ], "bases": [ { @@ -480217,12 +480217,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::RefBuilderLarge", - "vtable_address": 64817552, + "vtable_address": 64821456, "methods": [ - 37161552, - 37162352, - 37159136, - 37154560 + 37165392, + 37166192, + 37162976, + 37158400 ], "bases": [ { @@ -480244,12 +480244,12 @@ }, { "type_name": "embree::sse2::BVHNBuilderTwoLevel<4, embree::UserGeometry, embree::Object>::RefBuilderSmall", - "vtable_address": 64817504, + "vtable_address": 64821408, "methods": [ - 37154400, - 37154688, - 37162448, - 37154576 + 37158240, + 37158528, + 37166288, + 37158416 ], "bases": [ { @@ -480271,9 +480271,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT::build()::{lambda(embree::PrimRef const*, embree::range const&, embree::FastAllocator::CachedAllocator)#6}>", - "vtable_address": 64822736, + "vtable_address": 64826640, "methods": [ - 38338176 + 38342016 ], "bases": [ { @@ -480295,9 +480295,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT >", - "vtable_address": 64807808, + "vtable_address": 64811712, "methods": [ - 36326112 + 36329952 ], "bases": [ { @@ -480319,9 +480319,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT >", - "vtable_address": 64807832, + "vtable_address": 64811736, "methods": [ - 36325088 + 36328928 ], "bases": [ { @@ -480343,9 +480343,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64807904, + "vtable_address": 64811808, "methods": [ - 36330336 + 36334176 ], "bases": [ { @@ -480367,9 +480367,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64807928, + "vtable_address": 64811832, "methods": [ - 36338832 + 36342672 ], "bases": [ { @@ -480391,9 +480391,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64808024, + "vtable_address": 64811928, "methods": [ - 36336272 + 36340112 ], "bases": [ { @@ -480415,9 +480415,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64807976, + "vtable_address": 64811880, "methods": [ - 36327168 + 36331008 ], "bases": [ { @@ -480439,9 +480439,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64808000, + "vtable_address": 64811904, "methods": [ - 36333760 + 36337600 ], "bases": [ { @@ -480463,9 +480463,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64807784, + "vtable_address": 64811688, "methods": [ - 36320176 + 36324016 ], "bases": [ { @@ -480487,9 +480487,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64810544, + "vtable_address": 64814448, "methods": [ - 36386608 + 36390448 ], "bases": [ { @@ -480511,9 +480511,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64810616, + "vtable_address": 64814520, "methods": [ - 36384064 + 36387904 ], "bases": [ { @@ -480535,9 +480535,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64810568, + "vtable_address": 64814472, "methods": [ - 36379968 + 36383808 ], "bases": [ { @@ -480559,9 +480559,9 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderT > >", - "vtable_address": 64810592, + "vtable_address": 64814496, "methods": [ - 36381552 + 36385392 ], "bases": [ { @@ -480583,7 +480583,7 @@ }, { "type_name": "embree::sse2::BVHNBuilderVirtual<4>::BVHNBuilderV", - "vtable_address": 64807768, + "vtable_address": 64811672, "methods": [], "bases": [], "model": { @@ -480594,9 +480594,9 @@ }, { "type_name": "embree::sse2::BVHNColliderUserGeom<4>", - "vtable_address": 64803032, + "vtable_address": 64806936, "methods": [ - 35861472 + 35865312 ], "bases": [ { @@ -480618,15 +480618,15 @@ }, { "type_name": "embree::sse2::BVHNHairBuilderSAH<4, embree::CurveNi<4>, embree::LineMi<4>, embree::PointMi<4> >", - "vtable_address": 64804904, + "vtable_address": 64808808, "methods": [ - 35947040, - 35947408, - 33281616, - 33281712, - 36032512, - 35789664, - 35946912 + 35950880, + 35951248, + 33285456, + 33285552, + 36036352, + 35793504, + 35950752 ], "bases": [ { @@ -480659,15 +480659,15 @@ }, { "type_name": "embree::sse2::BVHNHairBuilderSAH<4, embree::CurveNv<4>, embree::LineMi<4>, embree::PointMi<4> >", - "vtable_address": 64804832, + "vtable_address": 64808736, "methods": [ - 35947168, - 35947296, - 33281616, - 33281712, - 36016656, - 35789664, - 35946784 + 35951008, + 35951136, + 33285456, + 33285552, + 36020496, + 35793504, + 35950624 ], "bases": [ { @@ -480700,15 +480700,15 @@ }, { "type_name": "embree::sse2::BVHNHairMBlurBuilderSAH<4, embree::CurveNiMB<4>, embree::LineMi<4>, embree::PointMi<4> >", - "vtable_address": 64805912, + "vtable_address": 64809816, "methods": [ - 36041136, - 36041632, - 33281616, - 33281712, - 36165872, - 35789664, - 36041152 + 36044976, + 36045472, + 33285456, + 33285552, + 36169712, + 35793504, + 36044992 ], "bases": [ { @@ -480741,15 +480741,15 @@ }, { "type_name": "embree::sse2::BVHNMeshBuilderMorton<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64807448, + "vtable_address": 64811352, "methods": [ - 36177072, - 36178512, - 33281616, - 33281712, - 36265264, - 35789664, - 36176944 + 36180912, + 36182352, + 33285456, + 33285552, + 36269104, + 35793504, + 36180784 ], "bases": [ { @@ -480782,15 +480782,15 @@ }, { "type_name": "embree::sse2::BVHNMeshBuilderMorton<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64807304, + "vtable_address": 64811208, "methods": [ - 36177328, - 36179024, - 33281616, - 33281712, - 36306432, - 35789664, - 36177968 + 36181168, + 36182864, + 33285456, + 33285552, + 36310272, + 35793504, + 36181808 ], "bases": [ { @@ -480823,15 +480823,15 @@ }, { "type_name": "embree::sse2::BVHNMeshBuilderMorton<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64807088, + "vtable_address": 64810992, "methods": [ - 36177712, - 36178896, - 33281616, - 33281712, - 36289920, - 35789664, - 36176816 + 36181552, + 36182736, + 33285456, + 33285552, + 36293760, + 35793504, + 36180656 ], "bases": [ { @@ -480864,15 +480864,15 @@ }, { "type_name": "embree::sse2::BVHNMeshBuilderMorton<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64807232, + "vtable_address": 64811136, "methods": [ - 36177456, - 36178640, - 33281616, - 33281712, - 36298144, - 35789664, - 36178096 + 36181296, + 36182480, + 33285456, + 33285552, + 36301984, + 35793504, + 36181936 ], "bases": [ { @@ -480905,15 +480905,15 @@ }, { "type_name": "embree::sse2::BVHNMeshBuilderMorton<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64807160, + "vtable_address": 64811064, "methods": [ - 36177584, - 36178768, - 33281616, - 33281712, - 36281696, - 35789664, - 36178224 + 36181424, + 36182608, + 33285456, + 33285552, + 36285536, + 35793504, + 36182064 ], "bases": [ { @@ -480946,15 +480946,15 @@ }, { "type_name": "embree::sse2::BVHNMeshBuilderMorton<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64807376, + "vtable_address": 64811280, "methods": [ - 36177200, - 36178384, - 33281616, - 33281712, - 36273488, - 35789664, - 36177840 + 36181040, + 36182224, + 33285456, + 33285552, + 36277328, + 35793504, + 36181680 ], "bases": [ { @@ -480987,16 +480987,16 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64804000, + "vtable_address": 64807904, "methods": [ - 35879856, - 35886144, - 33281616, - 33281712, - 35889824, - 35789664, - 35879664, - 35880336 + 35883696, + 35889984, + 33285456, + 33285552, + 35893664, + 35793504, + 35883504, + 35884176 ], "bases": [ { @@ -481039,9 +481039,9 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::Instance, embree::InstancePrimitive>", - "vtable_address": 64804080, + "vtable_address": 64807984, "methods": [ - 35881696 + 35885536 ], "bases": [ { @@ -481084,16 +481084,16 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64803792, + "vtable_address": 64807696, "methods": [ - 35880016, - 35886464, - 33281616, - 33281712, - 35889920, - 35789664, - 35879728, - 35882000 + 35883856, + 35890304, + 33285456, + 33285552, + 35893760, + 35793504, + 35883568, + 35885840 ], "bases": [ { @@ -481136,9 +481136,9 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::QuadMesh, embree::QuadMv<4> >", - "vtable_address": 64803872, + "vtable_address": 64807776, "methods": [ - 35882720 + 35886560 ], "bases": [ { @@ -481181,16 +481181,16 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64803480, + "vtable_address": 64807384, "methods": [ - 35880256, - 35886336, - 33281616, - 33281712, - 35890064, - 35789664, - 35879824, - 35884704 + 35884096, + 35890176, + 33285456, + 33285552, + 35893904, + 35793504, + 35883664, + 35888544 ], "bases": [ { @@ -481233,9 +481233,9 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleM<4> >", - "vtable_address": 64803560, + "vtable_address": 64807464, "methods": [ - 35886128 + 35889968 ], "bases": [ { @@ -481278,16 +481278,16 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64803688, + "vtable_address": 64807592, "methods": [ - 35880096, - 35886208, - 33281616, - 33281712, - 35889968, - 35789664, - 35879760, - 35882736 + 35883936, + 35890048, + 33285456, + 33285552, + 35893808, + 35793504, + 35883600, + 35886576 ], "bases": [ { @@ -481330,9 +481330,9 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMi<4> >", - "vtable_address": 64803768, + "vtable_address": 64807672, "methods": [ - 35883312 + 35887152 ], "bases": [ { @@ -481375,16 +481375,16 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64803584, + "vtable_address": 64807488, "methods": [ - 35880176, - 35886272, - 33281616, - 33281712, - 35890016, - 35789664, - 35879792, - 35883328 + 35884016, + 35890112, + 33285456, + 33285552, + 35893856, + 35793504, + 35883632, + 35887168 ], "bases": [ { @@ -481427,9 +481427,9 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::TriangleMesh, embree::TriangleMv<4> >", - "vtable_address": 64803664, + "vtable_address": 64807568, "methods": [ - 35884688 + 35888528 ], "bases": [ { @@ -481472,16 +481472,16 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64803896, + "vtable_address": 64807800, "methods": [ - 35879936, - 35886400, - 33281616, - 33281712, - 35889872, - 35789664, - 35879696, - 35881712 + 35883776, + 35890240, + 33285456, + 33285552, + 35893712, + 35793504, + 35883536, + 35885552 ], "bases": [ { @@ -481524,9 +481524,9 @@ }, { "type_name": "embree::sse2::BVHNRefitT<4, embree::UserGeometry, embree::Object>", - "vtable_address": 64803976, + "vtable_address": 64807880, "methods": [ - 35881984 + 35885824 ], "bases": [ { @@ -481569,15 +481569,15 @@ }, { "type_name": "embree::sse2::BVHNSubdivPatch1BuilderSAH<4>", - "vtable_address": 64823120, + "vtable_address": 64827024, "methods": [ - 38338336, - 38338960, - 33281616, - 33281712, - 38374160, - 35789664, - 38338208 + 38342176, + 38342800, + 33285456, + 33285552, + 38378000, + 35793504, + 38342048 ], "bases": [ { @@ -481610,15 +481610,15 @@ }, { "type_name": "embree::sse2::BVHNSubdivPatch1MBlurBuilderSAH<4>", - "vtable_address": 64823192, + "vtable_address": 64827096, "methods": [ - 38338592, - 38339072, - 33281616, - 33281712, - 38441376, - 35789664, - 38338464 + 38342432, + 38342912, + 33285456, + 33285552, + 38445216, + 35793504, + 38342304 ], "bases": [ { @@ -481651,63 +481651,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)0, embree::sse2::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64792344, - "methods": [ - 33823280, - 33823296, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64796248, + "methods": [ + 33827120, + 33827136, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33822368, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33818528, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33786448, - 33295600, - 33972544, - 33652240, - 33650704, - 33621296, - 33621552, - 33682944, - 33680608, - 33678192, - 33969248, - 33979280, - 33982864 + 33300016, + 33299824, + 33790288, + 33299440, + 33976384, + 33656080, + 33654544, + 33625136, + 33625392, + 33686784, + 33684448, + 33682032, + 33973088, + 33983120, + 33986704 ], "bases": [ { @@ -481762,63 +481762,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)0, embree::sse2::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64795992, - "methods": [ - 33822896, - 33822912, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64799896, + "methods": [ + 33826736, + 33826752, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33819616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33815776, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33732672, - 33295600, - 33852048, - 33636784, - 33635248, - 33619760, - 33620016, - 33669280, - 33666944, - 33664528, - 33848752, - 33858784, - 33862368 + 33300016, + 33299824, + 33736512, + 33299440, + 33855888, + 33640624, + 33639088, + 33623600, + 33623856, + 33673120, + 33670784, + 33668368, + 33852592, + 33862624, + 33866208 ], "bases": [ { @@ -481873,63 +481873,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)0, embree::sse2::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64790520, - "methods": [ - 33823472, - 33823488, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64794424, + "methods": [ + 33827312, + 33827328, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33821616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33817776, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33629856, - 33295600, - 34033680, - 33644512, - 33643040, - 33622576, - 33622704, - 33627824, - 33625504, - 33623088, - 34030432, - 34040416, - 34046480 + 33300016, + 33299824, + 33633696, + 33299440, + 34037520, + 33648352, + 33646880, + 33626416, + 33626544, + 33631664, + 33629344, + 33626928, + 34034272, + 34044256, + 34050320 ], "bases": [ { @@ -481984,63 +481984,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)0, embree::sse2::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64794168, - "methods": [ - 33823088, - 33823104, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64798072, + "methods": [ + 33826928, + 33826944, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33820560, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33816720, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33759552, - 33295600, - 33913552, - 33660864, - 33659344, - 33656368, - 33656240, - 33676128, - 33673760, - 33671312, - 33910272, - 33920208, - 33923824 + 33300016, + 33299824, + 33763392, + 33299440, + 33917392, + 33664704, + 33663184, + 33660208, + 33660080, + 33679968, + 33677600, + 33675152, + 33914112, + 33924048, + 33927664 ], "bases": [ { @@ -482095,63 +482095,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)1, embree::sse2::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64791888, - "methods": [ - 33823328, - 33823344, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64795792, + "methods": [ + 33827168, + 33827184, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33822368, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33818528, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33789248, - 33295600, - 33991952, - 33654880, - 33653344, - 33621808, - 33622064, - 33709360, - 33707104, - 33704752, - 33988688, - 33998688, - 34002208 + 33300016, + 33299824, + 33793088, + 33299440, + 33995792, + 33658720, + 33657184, + 33625648, + 33625904, + 33713200, + 33710944, + 33708592, + 33992528, + 34002528, + 34006048 ], "bases": [ { @@ -482206,63 +482206,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)1, embree::sse2::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64795536, - "methods": [ - 33822944, - 33822960, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, - 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33815776, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33735472, - 33295600, - 33871456, - 33639424, - 33637888, + "vtable_address": 64799440, + "methods": [ + 33826784, + 33826800, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, 33620272, - 33620528, - 33689584, - 33687328, - 33684976, - 33868192, - 33878192, - 33881712 + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33819616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, + 33300208, + 33300016, + 33299824, + 33739312, + 33299440, + 33875296, + 33643264, + 33641728, + 33624112, + 33624368, + 33693424, + 33691168, + 33688816, + 33872032, + 33882032, + 33885552 ], "bases": [ { @@ -482317,63 +482317,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)1, embree::sse2::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64790064, - "methods": [ - 33823520, - 33823536, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64793968, + "methods": [ + 33827360, + 33827376, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33821616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33817776, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33812976, - 33295600, - 34055456, - 33647024, - 33645552, - 33622832, - 33622960, - 33702800, - 33700544, - 33698192, - 34052192, - 34062192, - 34065712 + 33300016, + 33299824, + 33816816, + 33299440, + 34059296, + 33650864, + 33649392, + 33626672, + 33626800, + 33706640, + 33704384, + 33702032, + 34056032, + 34066032, + 34069552 ], "bases": [ { @@ -482428,63 +482428,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)1, embree::sse2::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64793712, - "methods": [ - 33823136, - 33823152, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64797616, + "methods": [ + 33826976, + 33826992, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33820560, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33816720, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33762176, - 33295600, - 33932912, - 33663456, - 33661936, - 33656624, - 33656496, - 33696208, - 33693920, - 33691536, - 33929616, - 33939536, - 33943088 + 33300016, + 33299824, + 33766016, + 33299440, + 33936752, + 33667296, + 33665776, + 33660464, + 33660336, + 33700048, + 33697760, + 33695376, + 33933456, + 33943376, + 33946928 ], "bases": [ { @@ -482539,63 +482539,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)2, embree::sse2::CurveGeometryInterface, embree::BSplineCurveT>", - "vtable_address": 64792800, - "methods": [ - 33823232, - 33823248, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64796704, + "methods": [ + 33827072, + 33827088, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33822368, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33818528, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33777744, - 33295600, - 33949280, - 33649600, - 33648064, - 33620784, - 33621040, - 33773888, - 33769520, - 33764832, - 33948144, - 33960192, - 33966016 + 33300016, + 33299824, + 33781584, + 33299440, + 33953120, + 33653440, + 33651904, + 33624624, + 33624880, + 33777728, + 33773360, + 33768672, + 33951984, + 33964032, + 33969856 ], "bases": [ { @@ -482650,63 +482650,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)2, embree::sse2::CurveGeometryInterface, embree::CatmullRomCurveT>", - "vtable_address": 64796448, - "methods": [ - 33822848, - 33822864, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64800352, + "methods": [ + 33826688, + 33826704, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33819616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33815776, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33724064, - 33295600, - 33828944, - 33634144, - 33632608, - 33619248, - 33619504, - 33720256, - 33715920, - 33711312, - 33827808, - 33839760, - 33845520 + 33300016, + 33299824, + 33727904, + 33299440, + 33832784, + 33637984, + 33636448, + 33623088, + 33623344, + 33724096, + 33719760, + 33715152, + 33831648, + 33843600, + 33849360 ], "bases": [ { @@ -482761,63 +482761,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)2, embree::sse2::CurveGeometryInterface, embree::CubicBezierCurve>", - "vtable_address": 64790976, - "methods": [ - 33823424, - 33823440, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64794880, + "methods": [ + 33827264, + 33827280, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33821616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33817776, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33804512, - 33295600, - 34010896, - 33642000, - 33640528, - 33622320, - 33622448, - 33800800, - 33796560, - 33792048, - 34009760, - 34021520, - 34027200 + 33300016, + 33299824, + 33808352, + 33299440, + 34014736, + 33645840, + 33644368, + 33626160, + 33626288, + 33804640, + 33800400, + 33795888, + 34013600, + 34025360, + 34031040 ], "bases": [ { @@ -482872,63 +482872,63 @@ }, { "type_name": "embree::sse2::CurveGeometryISA<(embree::Geometry::GType)2, embree::sse2::HermiteCurveGeometryInterface, embree::HermiteCurveT>", - "vtable_address": 64794624, - "methods": [ - 33823040, - 33823056, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64798528, + "methods": [ + 33826880, + 33826896, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33820560, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33816720, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33750992, - 33295600, - 33890512, - 33658272, - 33656752, - 33656112, - 33655984, - 33747200, - 33742880, - 33738272, - 33889376, - 33901232, - 33906992 + 33300016, + 33299824, + 33754832, + 33299440, + 33894352, + 33662112, + 33660592, + 33659952, + 33659824, + 33751040, + 33746720, + 33742112, + 33893216, + 33905072, + 33910832 ], "bases": [ { @@ -482983,29 +482983,52 @@ }, { "type_name": "embree::sse2::CurveGeometryInterface", - "vtable_address": 64791432, - "methods": [ - 33823184, - 33823200, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64795336, + "methods": [ + 33827024, + 33827040, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33822368, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33818528, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -483014,32 +483037,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -483083,7 +483083,7 @@ }, { "type_name": "embree::sse2::CurveGeometryInterface", - "vtable_address": 64789136, + "vtable_address": 64793040, "methods": [], "bases": [ { @@ -483127,29 +483127,52 @@ }, { "type_name": "embree::sse2::CurveGeometryInterface", - "vtable_address": 64795080, - "methods": [ - 33822800, - 33822816, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64798984, + "methods": [ + 33826640, + 33826656, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33819616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33815776, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -483158,32 +483181,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -483227,29 +483227,52 @@ }, { "type_name": "embree::sse2::CurveGeometryInterface", - "vtable_address": 64789608, - "methods": [ - 33823376, - 33823392, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64793512, + "methods": [ + 33827216, + 33827232, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33821616, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33817776, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -483258,32 +483281,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -483327,29 +483327,52 @@ }, { "type_name": "embree::sse2::GridMeshISA", - "vtable_address": 64797912, - "methods": [ - 34093664, - 34093680, - 33281616, - 33281712, - 33468368, - 34089120, - 34087888, + "vtable_address": 64801816, + "methods": [ + 34097504, + 34097520, + 33285456, + 33285552, + 33472208, + 34092960, + 34091728, + 33304048, + 33472384, + 34091248, + 34090656, + 33472352, + 34089744, + 33472464, + 33472320, + 34089696, + 33303664, + 33303472, + 33472336, + 34096576, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34096592, + 34089728, + 34094208, + 34090112, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 34087408, - 34086816, - 33468512, - 34085904, - 33468624, - 33468480, - 34085856, + 33300016, 33299824, 33299632, - 33468496, - 34092736, - 33469248, + 33299440, 33299248, 33299056, 33298864, @@ -483358,32 +483381,9 @@ 33298288, 33298096, 33297904, - 34092752, - 34085888, - 34090368, - 34086272, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -483427,29 +483427,52 @@ }, { "type_name": "embree::sse2::HermiteCurveGeometryInterface", - "vtable_address": 64793256, - "methods": [ - 33822992, - 33823008, - 33281616, - 33281712, - 33468368, - 33615328, - 33606672, + "vtable_address": 64797160, + "methods": [ + 33826832, + 33826848, + 33285456, + 33285552, + 33472208, + 33619168, + 33610512, + 33304048, + 33472384, + 33620272, + 33609376, + 33472352, + 33607360, + 33472464, + 33472320, + 33607328, + 33607280, + 33607312, + 33472336, + 33820560, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33608224, + 33611744, + 33608288, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33616432, - 33605536, - 33468512, - 33603520, - 33468624, - 33468480, - 33603488, - 33603440, - 33603472, - 33468496, - 33816720, - 33469248, + 33300016, + 33299824, + 33299632, + 33299440, 33299248, 33299056, 33298864, @@ -483458,32 +483481,9 @@ 33298288, 33298096, 33297904, - 33293440, - 33604384, - 33607904, - 33604448, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -483526,31 +483526,355 @@ } }, { - "type_name": "embree::sse2::InstanceISA", - "vtable_address": 64785896, - "methods": [ - 33573632, - 33573744, - 33281616, - 33281712, - 33468368, - 33479296, + "type_name": "embree::sse2::InstanceISA", + "vtable_address": 64789800, + "methods": [ + 33577472, + 33577584, + 33285456, + 33285552, + 33472208, + 33483136, + 33304240, + 33304048, + 33472384, + 33481984, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33483408, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33478768, + 33301360, + 33301168, + 33472672, + 33472880, + 33484112, + 33483520, + 33483760, + 33478784, + 33300208, + 33300016, + 33299824, + 33576112, + 33574752, + 33579744, + 33299056, + 33298864, + 33298672, + 33298480, + 33298288, + 33298096, + 33297904, + 33297712, + 33297520, + 33297328, + 33574736 + ], + "bases": [ + { + "type_name": "embree::Instance", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "embree::Geometry", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "embree::RefCount", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "embree::sse2::LineSegmentsISA", + "vtable_address": 64800856, + "methods": [ + 34084736, + 34084752, + 33285456, + 33285552, + 33472208, + 34074560, + 34076096, + 33304048, + 33472384, + 34079056, + 34073456, + 33472352, + 34070864, + 33472464, + 33472320, + 34070832, + 34070784, + 34070816, + 33472336, + 34071376, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34081616, + 34071360, + 34077328, + 34072640, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, + 33300208, + 33300016, + 33299824, + 34082880, + 34082192, + 34086064, + 33299056, + 33298864, + 34081632, + 34081696, + 34082064, + 34081760, + 33297904, + 34084928, + 34088512, + 33297328 + ], + "bases": [ + { + "type_name": "embree::LineSegments", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "embree::Geometry", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "embree::RefCount", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "embree::sse2::PointsISA", + "vtable_address": 64802776, + "methods": [ + 34112864, + 34112880, + 33285456, + 33285552, + 33472208, + 34101488, + 34103264, + 33304048, + 33472384, + 34100736, + 34099904, + 33472352, + 34098784, + 33472464, + 33472320, + 34098752, + 33303664, + 34098736, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 34107440, + 34099248, + 34104496, + 34099328, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, + 33300208, + 33300016, + 33299824, + 34109344, + 34108800, + 34109696, + 33299056, + 33298864, + 34107456, + 34107472, + 34107488, + 34107552, + 33297904, + 34107712, + 34113104, + 33297328 + ], + "bases": [ + { + "type_name": "embree::Points", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "embree::Geometry", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "embree::RefCount", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "embree::sse2::QuadMeshISA", + "vtable_address": 64791736, + "methods": [ + 33604512, + 33604528, + 33285456, + 33285552, + 33472208, + 33598544, + 33597312, + 33304048, + 33472384, + 33596816, + 33596224, + 33472352, + 33594544, + 33472464, + 33472320, + 33594496, + 33303664, + 33303472, + 33472336, + 33594880, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33602176, + 33594528, + 33599792, + 33595664, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, 33300400, 33300208, - 33468544, - 33478144, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33479568, + 33300016, 33299824, - 33299632, - 33468496, - 33299440, - 33469248, - 33299248, + 33602928, + 33602192, + 33604688, 33299056, 33298864, 33298672, @@ -483558,237 +483882,13 @@ 33298288, 33298096, 33297904, - 33293440, - 33474928, + 33297712, 33297520, - 33297328, - 33468832, - 33469040, - 33480272, - 33479680, - 33479920, - 33474944, - 33296368, - 33296176, - 33295984, - 33572272, - 33570912, - 33575904, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33570896 - ], - "bases": [ - { - "type_name": "embree::Instance", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "embree::Geometry", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "embree::RefCount", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "embree::sse2::LineSegmentsISA", - "vtable_address": 64796952, - "methods": [ - 34080896, - 34080912, - 33281616, - 33281712, - 33468368, - 34070720, - 34072256, - 33300208, - 33468544, - 34075216, - 34069616, - 33468512, - 34067024, - 33468624, - 33468480, - 34066992, - 34066944, - 34066976, - 33468496, - 34067536, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 34077776, - 34067520, - 34073488, - 34068800, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 34079040, - 34078352, - 34082224, - 33295216, - 33295024, - 34077792, - 34077856, - 34078224, - 34077920, - 33294064, - 34081088, - 34084672, - 33293488 - ], - "bases": [ - { - "type_name": "embree::LineSegments", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "embree::Geometry", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "embree::RefCount", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "embree::sse2::PointsISA", - "vtable_address": 64798872, - "methods": [ - 34109024, - 34109040, - 33281616, - 33281712, - 33468368, - 34097648, - 34099424, - 33300208, - 33468544, - 34096896, - 34096064, - 33468512, - 34094944, - 33468624, - 33468480, - 34094912, - 33299824, - 34094896, - 33468496, - 33299440, - 33469248, - 33299248, - 33299056, - 33298864, - 33298672, - 33298480, - 33298288, - 33298096, - 33297904, - 34103600, - 34095408, - 34100656, - 34095488, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 34105504, - 34104960, - 34105856, - 33295216, - 33295024, - 34103616, - 34103632, - 34103648, - 34103712, - 33294064, - 34103872, - 34109264, - 33293488 + 33297328 ], "bases": [ { - "type_name": "embree::Points", + "type_name": "embree::QuadMesh", "details": { "Itanium": { "offset": 0, @@ -483827,30 +483927,53 @@ } }, { - "type_name": "embree::sse2::QuadMeshISA", - "vtable_address": 64787832, - "methods": [ - 33600672, - 33600688, - 33281616, - 33281712, - 33468368, - 33594704, - 33593472, + "type_name": "embree::sse2::SubdivMeshISA", + "vtable_address": 64825344, + "methods": [ + 37960160, + 37960176, + 33285456, + 33285552, + 33472208, + 37944528, + 37943184, + 37932720, + 33472384, + 37956512, + 37910704, + 33472352, + 37913360, + 33472464, + 33472320, + 37908816, + 37908864, + 33303472, + 33472336, + 37945904, + 37947984, + 37914336, + 37908960, + 37908848, + 37912160, + 37912368, + 37912576, + 37912800, + 37913024, + 33297280, + 37908896, + 37929952, + 37909296, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33592976, - 33592384, - 33468512, - 33590704, - 33468624, - 33468480, - 33590656, + 33300016, 33299824, 33299632, - 33468496, - 33591040, - 33469248, + 33299440, 33299248, 33299056, 33298864, @@ -483859,132 +483982,9 @@ 33298288, 33298096, 33297904, - 33598336, - 33590688, - 33595952, - 33591824, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33599088, - 33598352, - 33600848, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 - ], - "bases": [ - { - "type_name": "embree::QuadMesh", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "embree::Geometry", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "embree::RefCount", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "embree::sse2::SubdivMeshISA", - "vtable_address": 64821440, - "methods": [ - 37956320, - 37956336, - 33281616, - 33281712, - 33468368, - 37940688, - 37939344, - 37928880, - 33468544, - 37952672, - 37906864, - 33468512, - 37909520, - 33468624, - 33468480, - 37904976, - 37905024, - 33299632, - 33468496, - 37942064, - 37944144, - 37910496, - 37905120, - 37905008, - 37908320, - 37908528, - 37908736, - 37908960, - 37909184, - 33293440, - 37905056, - 37926112, - 37905456, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33295792, - 33295600, - 33295408, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -484028,30 +484028,53 @@ }, { "type_name": "embree::sse2::TriangleMeshISA", - "vtable_address": 64786872, - "methods": [ - 33587856, - 33587872, - 33281616, - 33281712, - 33468368, + "vtable_address": 64790776, + "methods": [ + 33591696, + 33591712, + 33285456, + 33285552, + 33472208, + 33585952, + 33584720, + 33304048, + 33472384, + 33584224, + 33583632, + 33472352, + 33582160, + 33472464, + 33472320, 33582112, - 33580880, + 33303664, + 33303472, + 33472336, + 33582528, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33589568, + 33582144, + 33587200, + 33583072, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, + 33300400, 33300208, - 33468544, - 33580384, - 33579792, - 33468512, - 33578320, - 33468624, - 33468480, - 33578272, + 33300016, 33299824, - 33299632, - 33468496, - 33578688, - 33469248, - 33299248, + 33590192, + 33589584, + 33591744, 33299056, 33298864, 33298672, @@ -484059,32 +484082,9 @@ 33298288, 33298096, 33297904, - 33585728, - 33578304, - 33583360, - 33579232, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33296368, - 33296176, - 33295984, - 33586352, - 33585744, - 33587904, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488 + 33297712, + 33297520, + 33297328 ], "bases": [ { @@ -484128,30 +484128,53 @@ }, { "type_name": "embree::sse2::UserGeometryISA", - "vtable_address": 64784904, - "methods": [ - 33474832, - 33474848, - 33281616, - 33281712, - 33468368, - 33468400, + "vtable_address": 64788808, + "methods": [ + 33478672, + 33478688, + 33285456, + 33285552, + 33472208, + 33472240, + 33304240, + 33304048, + 33472384, + 33472288, + 33297312, + 33472352, + 33297264, + 33472464, + 33472320, + 33475184, + 33303664, + 33303472, + 33472336, + 33303280, + 33473088, + 33303088, + 33302896, + 33302704, + 33302512, + 33302320, + 33302128, + 33301936, + 33301744, + 33297280, + 33475264, + 33301360, + 33301168, + 33472672, + 33472880, + 33300976, + 33300784, + 33300592, 33300400, - 33300208, - 33468544, - 33468448, - 33293472, - 33468512, - 33293424, - 33468624, - 33468480, - 33471344, - 33299824, - 33299632, - 33468496, - 33299440, - 33469248, - 33299248, + 33475216, + 33475232, + 33475248, + 33475984, + 33475488, + 33476352, 33299056, 33298864, 33298672, @@ -484159,34 +484182,11 @@ 33298288, 33298096, 33297904, - 33293440, - 33471424, + 33297712, 33297520, 33297328, - 33468832, - 33469040, - 33297136, - 33296944, - 33296752, - 33296560, - 33471376, - 33471392, - 33471408, - 33472144, - 33471648, - 33472512, - 33295216, - 33295024, - 33294832, - 33294640, - 33294448, - 33294256, - 33294064, - 33293872, - 33293680, - 33293488, - 33293456, - 33471632 + 33297296, + 33475472 ], "bases": [ { @@ -484241,9 +484241,9 @@ }, { "type_name": "embree::sse2::collision_regression_test", - "vtable_address": 64803008, + "vtable_address": 64806912, "methods": [ - 35864896 + 35868736 ], "bases": [ { @@ -484265,40 +484265,40 @@ }, { "type_name": "fish_pos_y", - "vtable_address": 63447984, + "vtable_address": 63451888, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11114867 + "offset_to_top": 11114878 } } }, { "type_name": "fish_pos_z", - "vtable_address": 63447920, + "vtable_address": 63451824, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11114867 + "offset_to_top": 11114878 } } }, { "type_name": "fixed64", - "vtable_address": 64024368, + "vtable_address": 64028272, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11114867 + "offset_to_top": 11114878 } } }, { "type_name": "fogparams_t", - "vtable_address": 63117464, + "vtable_address": 63121368, "methods": [ 12243104, 12235744, @@ -484314,18 +484314,18 @@ }, { "type_name": "fogparams_t", - "vtable_address": 63280712, + "vtable_address": 63284616, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 65434080 + "offset_to_top": 65437984 } } }, { "type_name": "gameSceneNodeLocalScaleChanged", - "vtable_address": 63469104, + "vtable_address": 63473008, "methods": [], "bases": [], "model": { @@ -484336,25 +484336,25 @@ }, { "type_name": "gameSceneNodeStepSimulationAnglesSerializer", - "vtable_address": 63469200, + "vtable_address": 63473104, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11114867 + "offset_to_top": 11114878 } } }, { "type_name": "google::protobuf::DescriptorBuilder::OptionInterpreter::AggregateOptionFinder", - "vtable_address": 64636032, + "vtable_address": 64639936, "methods": [ - 29419224, - 29419240, - 29447036, - 29660582, - 29447234, - 29660054 + 29423064, + 29423080, + 29450876, + 29664422, + 29451074, + 29663894 ], "bases": [ { @@ -484376,26 +484376,26 @@ }, { "type_name": "google::protobuf::DescriptorDatabase", - "vtable_address": 64642184, + "vtable_address": 64646088, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9434080 + "offset_to_top": 9434144 } } }, { "type_name": "google::protobuf::DescriptorPoolDatabase", - "vtable_address": 64642344, + "vtable_address": 64646248, "methods": [ - 29526964, - 29527028, - 29535912, - 29535962, - 29536012, - 29534696, - 29538668 + 29530804, + 29530868, + 29539752, + 29539802, + 29539852, + 29538536, + 29542508 ], "bases": [ { @@ -484417,26 +484417,26 @@ }, { "type_name": "google::protobuf::DescriptorProto", - "vtable_address": 64637744, + "vtable_address": 64641648, "methods": [ - 29492396, - 29492442, - 29643894, - 29514168, - 29495674, - 29487626, - 29646054, - 29642886, - 29463744, - 29512216, - 29471752, + 29496236, + 29496282, + 29647734, + 29518008, + 29499514, + 29491466, + 29649894, + 29646726, + 29467584, + 29516056, + 29475592, 12011504, - 29487942, - 29642796, - 29643062, - 29449180, - 29447696, - 29447376 + 29491782, + 29646636, + 29646902, + 29453020, + 29451536, + 29451216 ], "bases": [ { @@ -484469,26 +484469,26 @@ }, { "type_name": "google::protobuf::DescriptorProto_ExtensionRange", - "vtable_address": 64637424, + "vtable_address": 64641328, "methods": [ - 29492140, - 29492186, - 29643894, - 29514152, - 29494040, - 29483302, - 29646054, - 29642886, - 29461498, - 29512286, - 29465590, + 29495980, + 29496026, + 29647734, + 29517992, + 29497880, + 29487142, + 29649894, + 29646726, + 29465338, + 29516126, + 29469430, 12011504, - 29457974, - 29642796, - 29643062, - 29449160, - 29447636, - 29447360 + 29461814, + 29646636, + 29646902, + 29453000, + 29451476, + 29451200 ], "bases": [ { @@ -484521,26 +484521,26 @@ }, { "type_name": "google::protobuf::DescriptorProto_ReservedRange", - "vtable_address": 64637584, + "vtable_address": 64641488, "methods": [ - 29492012, - 29492058, - 29643894, - 29514160, - 29493676, - 29447572, - 29646054, - 29642886, - 29448442, - 29512316, - 29465890, + 29495852, + 29495898, + 29647734, + 29518000, + 29497516, + 29451412, + 29649894, + 29646726, + 29452282, + 29516156, + 29469730, 12011504, - 29458162, - 29642796, - 29643062, - 29449170, - 29447666, - 29447368 + 29462002, + 29646636, + 29646902, + 29453010, + 29451506, + 29451208 ], "bases": [ { @@ -484573,26 +484573,26 @@ }, { "type_name": "google::protobuf::DynamicMessage", - "vtable_address": 64642536, + "vtable_address": 64646440, "methods": [ - 29550714, - 29551298, - 29643894, - 29553734, - 29642998, - 29643004, - 29646054, - 29642886, - 29643022, - 29550278, - 29643010, + 29554554, + 29555138, + 29647734, + 29557574, + 29646838, + 29646844, + 29649894, + 29646726, + 29646862, + 29554118, + 29646850, 12011504, - 29643016, - 29642796, - 29643062, - 29550282, - 29550264, - 29554326 + 29646856, + 29646636, + 29646902, + 29554122, + 29554104, + 29558166 ], "bases": [ { @@ -484625,11 +484625,11 @@ }, { "type_name": "google::protobuf::DynamicMessageFactory", - "vtable_address": 64642696, + "vtable_address": 64646600, "methods": [ - 29550510, - 29550696, - 29554208 + 29554350, + 29554536, + 29558048 ], "bases": [ { @@ -484651,15 +484651,15 @@ }, { "type_name": "google::protobuf::EncodedDescriptorDatabase", - "vtable_address": 64642272, + "vtable_address": 64646176, "methods": [ - 29528858, - 29529030, - 29534636, - 29534164, - 29534382, - 29535078, - 29529416 + 29532698, + 29532870, + 29538476, + 29538004, + 29538222, + 29538918, + 29533256 ], "bases": [ { @@ -484681,26 +484681,26 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto", - "vtable_address": 64638544, + "vtable_address": 64642448, "methods": [ - 29492780, - 29492826, - 29643894, - 29514250, - 29495466, - 29483514, - 29646054, - 29642886, - 29463462, - 29512226, - 29479074, + 29496620, + 29496666, + 29647734, + 29518090, + 29499306, + 29487354, + 29649894, + 29646726, + 29467302, + 29516066, + 29482914, 12011504, - 29482774, - 29642796, - 29643062, - 29449230, - 29447846, - 29447416 + 29486614, + 29646636, + 29646902, + 29453070, + 29451686, + 29451256 ], "bases": [ { @@ -484733,26 +484733,26 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto_EnumReservedRange", - "vtable_address": 64638384, + "vtable_address": 64642288, "methods": [ - 29492204, - 29492250, - 29643894, - 29514242, - 29493748, - 29447572, - 29646054, - 29642886, - 29448516, - 29512376, - 29467458, + 29496044, + 29496090, + 29647734, + 29518082, + 29497588, + 29451412, + 29649894, + 29646726, + 29452356, + 29516216, + 29471298, 12011504, - 29459120, - 29642796, - 29643062, - 29449220, - 29447816, - 29447408 + 29462960, + 29646636, + 29646902, + 29453060, + 29451656, + 29451248 ], "bases": [ { @@ -484785,26 +484785,26 @@ }, { "type_name": "google::protobuf::EnumOptions", - "vtable_address": 64639824, + "vtable_address": 64643728, "methods": [ - 29492716, - 29492762, - 29643894, - 29514544, - 29495184, - 29483482, - 29646054, - 29642886, - 29463118, - 29512366, - 29477284, + 29496556, + 29496602, + 29647734, + 29518384, + 29499024, + 29487322, + 29649894, + 29646726, + 29466958, + 29516206, + 29481124, 12011504, - 29484576, - 29642796, - 29643062, - 29449310, - 29448086, - 29447480 + 29488416, + 29646636, + 29646902, + 29453150, + 29451926, + 29451320 ], "bases": [ { @@ -484837,26 +484837,26 @@ }, { "type_name": "google::protobuf::EnumValueDescriptorProto", - "vtable_address": 64638704, + "vtable_address": 64642608, "methods": [ - 29492908, - 29492954, - 29643894, - 29514258, - 29495278, - 29483454, - 29646054, - 29642886, - 29463354, - 29512356, - 29467728, + 29496748, + 29496794, + 29647734, + 29518098, + 29499118, + 29487294, + 29649894, + 29646726, + 29467194, + 29516196, + 29471568, 12011504, - 29459264, - 29642796, - 29643062, - 29449240, - 29447876, - 29447424 + 29463104, + 29646636, + 29646902, + 29453080, + 29451716, + 29451264 ], "bases": [ { @@ -484889,26 +484889,26 @@ }, { "type_name": "google::protobuf::EnumValueOptions", - "vtable_address": 64639984, + "vtable_address": 64643888, "methods": [ - 29492844, - 29492890, - 29643894, - 29514594, - 29495232, - 29483422, - 29646054, - 29642886, - 29463244, - 29512386, - 29477734, + 29496684, + 29496730, + 29647734, + 29518434, + 29499072, + 29487262, + 29649894, + 29646726, + 29467084, + 29516226, + 29481574, 12011504, - 29484346, - 29642796, - 29643062, - 29449320, - 29448116, - 29447488 + 29488186, + 29646636, + 29646902, + 29453160, + 29451956, + 29451328 ], "bases": [ { @@ -484941,26 +484941,26 @@ }, { "type_name": "google::protobuf::ExtensionRangeOptions", - "vtable_address": 64637904, + "vtable_address": 64641808, "methods": [ - 29492076, - 29492122, - 29643894, - 29514218, - 29494008, - 29483270, - 29646054, - 29642886, - 29461400, - 29512276, - 29473060, + 29495916, + 29495962, + 29647734, + 29518058, + 29497848, + 29487110, + 29649894, + 29646726, + 29465240, + 29516116, + 29476900, 12011504, - 29487434, - 29642796, - 29643062, - 29449190, - 29447726, - 29447384 + 29491274, + 29646636, + 29646902, + 29453030, + 29451566, + 29451224 ], "bases": [ { @@ -484993,11 +484993,11 @@ }, { "type_name": "google::protobuf::FatalException", - "vtable_address": 64635944, + "vtable_address": 64639848, "methods": [ - 29262192, - 29262226, - 29262108 + 29266032, + 29266066, + 29265948 ], "bases": [], "model": { @@ -485008,26 +485008,26 @@ }, { "type_name": "google::protobuf::FieldDescriptorProto", - "vtable_address": 64638064, + "vtable_address": 64641968, "methods": [ - 29492524, - 29492570, - 29643894, - 29514226, - 29494684, - 29483786, - 29646054, - 29642886, - 29462636, - 29512246, - 29466160, + 29496364, + 29496410, + 29647734, + 29518066, + 29498524, + 29487626, + 29649894, + 29646726, + 29466476, + 29516086, + 29470000, 12011504, - 29458306, - 29642796, - 29643062, - 29449200, - 29447756, - 29447392 + 29462146, + 29646636, + 29646902, + 29453040, + 29451596, + 29451232 ], "bases": [ { @@ -485060,26 +485060,26 @@ }, { "type_name": "google::protobuf::FieldOptions", - "vtable_address": 64639504, + "vtable_address": 64643408, "methods": [ - 29492460, - 29492506, - 29643894, - 29514444, - 29494574, - 29483754, - 29646054, - 29642886, - 29462374, - 29512336, - 29475966, + 29496300, + 29496346, + 29647734, + 29518284, + 29498414, + 29487594, + 29649894, + 29646726, + 29466214, + 29516176, + 29479806, 12011504, - 29485038, - 29642796, - 29643062, - 29449290, - 29448026, - 29447464 + 29488878, + 29646636, + 29646902, + 29453130, + 29451866, + 29451304 ], "bases": [ { @@ -485112,26 +485112,26 @@ }, { "type_name": "google::protobuf::FileDescriptorProto", - "vtable_address": 64637264, + "vtable_address": 64641168, "methods": [ - 29493484, - 29493530, - 29643894, - 29514144, - 29496604, - 29487818, - 29646054, - 29642886, - 29464928, - 29512206, - 29470460, + 29497324, + 29497370, + 29647734, + 29517984, + 29500444, + 29491658, + 29649894, + 29646726, + 29468768, + 29516046, + 29474300, 12011504, - 29488846, - 29642796, - 29643062, - 29449150, - 29447606, - 29447352 + 29492686, + 29646636, + 29646902, + 29452990, + 29451446, + 29451192 ], "bases": [ { @@ -485164,26 +485164,26 @@ }, { "type_name": "google::protobuf::FileDescriptorSet", - "vtable_address": 64637104, + "vtable_address": 64641008, "methods": [ - 29491948, - 29491994, - 29643894, - 29514136, - 29497020, - 29489876, - 29646054, - 29642886, - 29465500, - 29512466, - 29470138, + 29495788, + 29495834, + 29647734, + 29517976, + 29500860, + 29493716, + 29649894, + 29646726, + 29469340, + 29516306, + 29473978, 12011504, - 29489920, - 29642796, - 29643062, - 29449140, - 29447576, - 29447344 + 29493760, + 29646636, + 29646902, + 29452980, + 29451416, + 29451184 ], "bases": [ { @@ -485216,26 +485216,26 @@ }, { "type_name": "google::protobuf::FileOptions", - "vtable_address": 64639184, + "vtable_address": 64643088, "methods": [ - 29492268, - 29492314, - 29643894, - 29514334, - 29494218, - 29483814, - 29646054, - 29642886, - 29461600, - 29512256, - 29473402, + 29496108, + 29496154, + 29647734, + 29518174, + 29498058, + 29487654, + 29649894, + 29646726, + 29465440, + 29516096, + 29477242, 12011504, - 29485966, - 29642796, - 29643062, - 29449270, - 29447966, - 29447448 + 29489806, + 29646636, + 29646902, + 29453110, + 29451806, + 29451288 ], "bases": [ { @@ -485268,80 +485268,80 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo", - "vtable_address": 64641264, - "methods": [ - 29493612, - 29493658, - 29643894, - 29514794, - 29497144, - 29447572, - 29646054, - 29642886, - 29449050, - 29512456, - 29481334, - 12011504, - 29481656, - 29642796, - 29643062, - 29449400, - 29448356, - 29447564, - 29644624, - 29511474, - 29644624, - 29491704, - 29644624, - 29510610, - 29644624, - 29491236, - 29644624, - 29509526, - 29644624, - 29490770, - 29644624, - 29506968, - 29644624, - 29506744, - 29644624, - 29506218, - 29644624, - 29505980, - 29644624, - 29505492, - 29644624, - 29504534, - 29644624, - 29503858, - 29644624, - 29502906, - 29644624, - 29507172, - 29644624, - 29508528, - 29644624, - 29506408, - 29644624, - 29507936, - 29644624, - 29490452, - 29644624, - 29505666, - 29644624, - 29504918, - 29644624, - 29502438, - 29644624, - 29504082, - 29644624, - 29490182, - 29644624, - 29502612, - 29644624, - 29510764, - 29644624, - 29497302 + "vtable_address": 64645168, + "methods": [ + 29497452, + 29497498, + 29647734, + 29518634, + 29500984, + 29451412, + 29649894, + 29646726, + 29452890, + 29516296, + 29485174, + 12011504, + 29485496, + 29646636, + 29646902, + 29453240, + 29452196, + 29451404, + 29648464, + 29515314, + 29648464, + 29495544, + 29648464, + 29514450, + 29648464, + 29495076, + 29648464, + 29513366, + 29648464, + 29494610, + 29648464, + 29510808, + 29648464, + 29510584, + 29648464, + 29510058, + 29648464, + 29509820, + 29648464, + 29509332, + 29648464, + 29508374, + 29648464, + 29507698, + 29648464, + 29506746, + 29648464, + 29511012, + 29648464, + 29512368, + 29648464, + 29510248, + 29648464, + 29511776, + 29648464, + 29494292, + 29648464, + 29509506, + 29648464, + 29508758, + 29648464, + 29506278, + 29648464, + 29507922, + 29648464, + 29494022, + 29648464, + 29506452, + 29648464, + 29514604, + 29648464, + 29501142 ], "bases": [ { @@ -485374,26 +485374,26 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo_Annotation", - "vtable_address": 64641104, + "vtable_address": 64645008, "methods": [ - 29493548, - 29493594, - 29643894, - 29514786, - 29497044, - 29447572, - 29646054, - 29642886, - 29448590, - 29512446, - 29469676, + 29497388, + 29497434, + 29647734, + 29518626, + 29500884, + 29451412, + 29649894, + 29646726, + 29452430, + 29516286, + 29473516, 12011504, - 29460920, - 29642796, - 29643062, - 29449390, - 29448326, - 29447556 + 29464760, + 29646636, + 29646902, + 29453230, + 29452166, + 29451396 ], "bases": [ { @@ -485426,15 +485426,15 @@ }, { "type_name": "google::protobuf::MergedDescriptorDatabase", - "vtable_address": 64642416, + "vtable_address": 64646320, "methods": [ - 29527114, - 29527140, - 29526966, - 29536894, - 29537088, - 29535342, - 29529430 + 29530954, + 29530980, + 29530806, + 29540734, + 29540928, + 29539182, + 29533270 ], "bases": [ { @@ -485456,7 +485456,7 @@ }, { "type_name": "google::protobuf::Message", - "vtable_address": 64637088, + "vtable_address": 64640992, "methods": [], "bases": [ { @@ -485472,13 +485472,13 @@ ], "model": { "Itanium": { - "offset_to_top": 9433600 + "offset_to_top": 9433664 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 64642520, + "vtable_address": 64646424, "methods": [], "bases": [ { @@ -485494,13 +485494,13 @@ ], "model": { "Itanium": { - "offset_to_top": 9434336 + "offset_to_top": 9434400 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 64642744, + "vtable_address": 64646648, "methods": [], "bases": [ { @@ -485516,13 +485516,13 @@ ], "model": { "Itanium": { - "offset_to_top": 9434880 + "offset_to_top": 9434944 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 64644608, + "vtable_address": 64648512, "methods": [], "bases": [ { @@ -485544,18 +485544,18 @@ }, { "type_name": "google::protobuf::MessageLite", - "vtable_address": 64634176, + "vtable_address": 64638080, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9423776 + "offset_to_top": 9423840 } } }, { "type_name": "google::protobuf::MessageLite", - "vtable_address": 64635696, + "vtable_address": 64639600, "methods": [], "bases": [], "model": { @@ -485566,26 +485566,26 @@ }, { "type_name": "google::protobuf::MessageOptions", - "vtable_address": 64639344, + "vtable_address": 64643248, "methods": [ - 29492332, - 29492378, - 29643894, - 29514394, - 29494526, - 29483390, - 29646054, - 29642886, - 29462228, - 29512296, - 29475432, + 29496172, + 29496218, + 29647734, + 29518234, + 29498366, + 29487230, + 29649894, + 29646726, + 29466068, + 29516136, + 29479272, 12011504, - 29485622, - 29642796, - 29643062, - 29449280, - 29447996, - 29447456 + 29489462, + 29646636, + 29646902, + 29453120, + 29451836, + 29451296 ], "bases": [ { @@ -485618,26 +485618,26 @@ }, { "type_name": "google::protobuf::MethodDescriptorProto", - "vtable_address": 64639024, + "vtable_address": 64642928, "methods": [ - 29493164, - 29493210, - 29643894, - 29514274, - 29496046, - 29483620, - 29646054, - 29642886, - 29464612, - 29512396, - 29468120, + 29497004, + 29497050, + 29647734, + 29518114, + 29499886, + 29487460, + 29649894, + 29646726, + 29468452, + 29516236, + 29471960, 12011504, - 29459484, - 29642796, - 29643062, - 29449260, - 29447936, - 29447440 + 29463324, + 29646636, + 29646902, + 29453100, + 29451776, + 29451280 ], "bases": [ { @@ -485670,26 +485670,26 @@ }, { "type_name": "google::protobuf::MethodOptions", - "vtable_address": 64640304, + "vtable_address": 64644208, "methods": [ - 29493100, - 29493146, - 29643894, - 29514694, - 29495990, - 29483588, - 29646054, - 29642886, - 29464478, - 29512416, - 29478564, + 29496940, + 29496986, + 29647734, + 29518534, + 29499830, + 29487428, + 29649894, + 29646726, + 29468318, + 29516256, + 29482404, 12011504, - 29483846, - 29642796, - 29643062, - 29449340, - 29448176, - 29447504 + 29487686, + 29646636, + 29646902, + 29453180, + 29452016, + 29451344 ], "bases": [ { @@ -485722,26 +485722,26 @@ }, { "type_name": "google::protobuf::OneofDescriptorProto", - "vtable_address": 64638224, + "vtable_address": 64642128, "methods": [ - 29492652, - 29492698, - 29643894, - 29514234, - 29495004, - 29483362, - 29646054, - 29642886, - 29463028, - 29512306, - 29467106, + 29496492, + 29496538, + 29647734, + 29518074, + 29498844, + 29487202, + 29649894, + 29646726, + 29466868, + 29516146, + 29470946, 12011504, - 29458936, - 29642796, - 29643062, - 29449210, - 29447786, - 29447400 + 29462776, + 29646636, + 29646902, + 29453050, + 29451626, + 29451240 ], "bases": [ { @@ -485774,26 +485774,26 @@ }, { "type_name": "google::protobuf::OneofOptions", - "vtable_address": 64639664, + "vtable_address": 64643568, "methods": [ - 29492588, - 29492634, - 29643894, - 29514494, - 29494972, - 29483330, - 29646054, - 29642886, - 29462930, - 29512346, - 29476942, + 29496428, + 29496474, + 29647734, + 29518334, + 29498812, + 29487170, + 29649894, + 29646726, + 29466770, + 29516186, + 29480782, 12011504, - 29484846, - 29642796, - 29643062, - 29449300, - 29448056, - 29447472 + 29488686, + 29646636, + 29646902, + 29453140, + 29451896, + 29451312 ], "bases": [ { @@ -485826,26 +485826,26 @@ }, { "type_name": "google::protobuf::ServiceDescriptorProto", - "vtable_address": 64638864, + "vtable_address": 64642768, "methods": [ - 29493036, - 29493082, - 29643894, - 29514266, - 29496266, - 29483680, - 29646054, - 29642886, - 29464774, - 29512236, - 29479814, + 29496876, + 29496922, + 29647734, + 29518106, + 29500106, + 29487520, + 29649894, + 29646726, + 29468614, + 29516076, + 29483654, 12011504, - 29482494, - 29642796, - 29643062, - 29449250, - 29447906, - 29447432 + 29486334, + 29646636, + 29646902, + 29453090, + 29451746, + 29451272 ], "bases": [ { @@ -485878,26 +485878,26 @@ }, { "type_name": "google::protobuf::ServiceOptions", - "vtable_address": 64640144, + "vtable_address": 64644048, "methods": [ - 29492972, - 29493018, - 29643894, - 29514644, - 29495944, - 29483648, - 29646054, - 29642886, - 29464368, - 29512406, - 29478148, + 29496812, + 29496858, + 29647734, + 29518484, + 29499784, + 29487488, + 29649894, + 29646726, + 29468208, + 29516246, + 29481988, 12011504, - 29484116, - 29642796, - 29643062, - 29449330, - 29448146, - 29447496 + 29487956, + 29646636, + 29646902, + 29453170, + 29451986, + 29451336 ], "bases": [ { @@ -485930,15 +485930,15 @@ }, { "type_name": "google::protobuf::SimpleDescriptorDatabase", - "vtable_address": 64642200, + "vtable_address": 64646104, "methods": [ - 29538394, - 29538484, - 29527934, - 29528320, - 29529994, - 29534898, - 29529048 + 29542234, + 29542324, + 29531774, + 29532160, + 29533834, + 29538738, + 29532888 ], "bases": [ { @@ -485960,26 +485960,26 @@ }, { "type_name": "google::protobuf::SourceCodeInfo", - "vtable_address": 64640944, + "vtable_address": 64644848, "methods": [ - 29493420, - 29493466, - 29643894, - 29514778, - 29496580, - 29447572, - 29646054, - 29642886, - 29448960, - 29512266, - 29481012, + 29497260, + 29497306, + 29647734, + 29518618, + 29500420, + 29451412, + 29649894, + 29646726, + 29452800, + 29516106, + 29484852, 12011504, - 29481820, - 29642796, - 29643062, - 29449380, - 29448296, - 29447548 + 29485660, + 29646636, + 29646902, + 29453220, + 29452136, + 29451388 ], "bases": [ { @@ -486012,26 +486012,26 @@ }, { "type_name": "google::protobuf::SourceCodeInfo_Location", - "vtable_address": 64640784, + "vtable_address": 64644688, "methods": [ - 29493356, - 29493402, - 29643894, - 29514718, - 29496456, - 29447572, - 29646054, - 29642886, - 29448730, - 29512436, - 29469048, + 29497196, + 29497242, + 29647734, + 29518558, + 29500296, + 29451412, + 29649894, + 29646726, + 29452570, + 29516276, + 29472888, 12011504, - 29460046, - 29642796, - 29643062, - 29449370, - 29448266, - 29447540 + 29463886, + 29646636, + 29646902, + 29453210, + 29452106, + 29451380 ], "bases": [ { @@ -486064,36 +486064,36 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 64646120, + "vtable_address": 64650024, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9439520 + "offset_to_top": 9439584 } } }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 64646912, - "methods": [ - 29660076, - 29660184, - 29660108, - 29661774, - 29662002, - 29662250, - 29662480, - 29662730, - 29662926, - 29666052, - 29660078, - 29661762, - 29660084, - 29666268, - 29666492, - 29660104, - 29666636 + "vtable_address": 64650816, + "methods": [ + 29663916, + 29664024, + 29663948, + 29665614, + 29665842, + 29666090, + 29666320, + 29666570, + 29666766, + 29669892, + 29663918, + 29665602, + 29663924, + 29670108, + 29670332, + 29663944, + 29670476 ], "bases": [], "model": { @@ -486104,23 +486104,23 @@ }, { "type_name": "google::protobuf::TextFormat::FieldValuePrinter", - "vtable_address": 64646776, - "methods": [ - 29660058, - 29660178, - 29660208, - 29661896, - 29662144, - 29662372, - 29662622, - 29662824, - 29663022, - 29666160, - 29660060, - 29664232, - 29666378, - 29666520, - 29666664 + "vtable_address": 64650680, + "methods": [ + 29663898, + 29664018, + 29664048, + 29665736, + 29665984, + 29666212, + 29666462, + 29666664, + 29666862, + 29670000, + 29663900, + 29668072, + 29670218, + 29670360, + 29670504 ], "bases": [], "model": { @@ -486131,12 +486131,12 @@ }, { "type_name": "google::protobuf::TextFormat::Parser::ParserImpl::ParserErrorCollector", - "vtable_address": 64646136, + "vtable_address": 64650040, "methods": [ - 29679014, - 29679030, - 29679558, - 29679932 + 29682854, + 29682870, + 29683398, + 29683772 ], "bases": [ { @@ -486158,25 +486158,25 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::DebugStringFieldValuePrinter", - "vtable_address": 64646248, - "methods": [ - 29678860, - 29678864, - 29660108, - 29661774, - 29662002, - 29662250, - 29662480, - 29662730, - 29662926, - 29666052, - 29660078, - 29661762, - 29660084, - 29666268, - 29688686, - 29660104, - 29666636 + "vtable_address": 64650152, + "methods": [ + 29682700, + 29682704, + 29663948, + 29665614, + 29665842, + 29666090, + 29666320, + 29666570, + 29666766, + 29669892, + 29663918, + 29665602, + 29663924, + 29670108, + 29692526, + 29663944, + 29670476 ], "bases": [ { @@ -486198,25 +486198,25 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::FastFieldValuePrinterUtf8Escaping", - "vtable_address": 64646400, - "methods": [ - 29678862, - 29678870, - 29660108, - 29661774, - 29662002, - 29662250, - 29662480, - 29662730, - 29662926, - 29688828, - 29688936, - 29661762, - 29660084, - 29666268, - 29688686, - 29660104, - 29666636 + "vtable_address": 64650304, + "methods": [ + 29682702, + 29682710, + 29663948, + 29665614, + 29665842, + 29666090, + 29666320, + 29666570, + 29666766, + 29692668, + 29692776, + 29665602, + 29663924, + 29670108, + 29692526, + 29663944, + 29670476 ], "bases": [ { @@ -486249,14 +486249,14 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::TextGenerator", - "vtable_address": 64646184, + "vtable_address": 64650088, "methods": [ - 29678814, - 29678876, - 29678848, - 29678894, - 29678852, - 29680390 + 29682654, + 29682716, + 29682688, + 29682734, + 29682692, + 29684230 ], "bases": [ { @@ -486278,26 +486278,26 @@ }, { "type_name": "google::protobuf::UninterpretedOption", - "vtable_address": 64640624, + "vtable_address": 64644528, "methods": [ - 29493292, - 29493338, - 29643894, - 29514710, - 29493896, - 29481984, - 29646054, - 29642886, - 29453982, - 29512326, - 29480318, + 29497132, + 29497178, + 29647734, + 29518550, + 29497736, + 29485824, + 29649894, + 29646726, + 29457822, + 29516166, + 29484158, 12011504, - 29482028, - 29642796, - 29643062, - 29449360, - 29448236, - 29447532 + 29485868, + 29646636, + 29646902, + 29453200, + 29452076, + 29451372 ], "bases": [ { @@ -486330,26 +486330,26 @@ }, { "type_name": "google::protobuf::UninterpretedOption_NamePart", - "vtable_address": 64640464, + "vtable_address": 64644368, "methods": [ - 29493228, - 29493274, - 29643894, - 29514702, - 29493820, - 29447520, - 29646054, - 29642886, - 29453928, - 29512426, - 29468702, + 29497068, + 29497114, + 29647734, + 29518542, + 29497660, + 29451360, + 29649894, + 29646726, + 29457768, + 29516266, + 29472542, 12011504, - 29459870, - 29642796, - 29643062, - 29449350, - 29448206, - 29447512 + 29463710, + 29646636, + 29646902, + 29453190, + 29452046, + 29451352 ], "bases": [ { @@ -486382,14 +486382,14 @@ }, { "type_name": "google::protobuf::ZeroCopyCodedInputStream", - "vtable_address": 64635816, + "vtable_address": 64639720, "methods": [ - 29228322, - 29228324, - 29228516, - 29228304, - 29228506, - 29228318 + 29232162, + 29232164, + 29232356, + 29232144, + 29232346, + 29232158 ], "bases": [ { @@ -486411,32 +486411,32 @@ }, { "type_name": "google::protobuf::internal::DynamicMapField", - "vtable_address": 64643320, - "methods": [ - 29621830, - 29625456, - 29621758, - 29621878, - 29625952, - 29635536, - 29625968, - 29623678, - 29625824, - 29625946, - 29620104, - 29621652, - 29622052, - 29622734, - 29624212, - 29626014, - 29626006, - 29628398, - 29638440, - 29620684, - 29620700, - 29620274, - 29621440, - 29621634 + "vtable_address": 64647224, + "methods": [ + 29625670, + 29629296, + 29625598, + 29625718, + 29629792, + 29639376, + 29629808, + 29627518, + 29629664, + 29629786, + 29623944, + 29625492, + 29625892, + 29626574, + 29628052, + 29629854, + 29629846, + 29632238, + 29642280, + 29624524, + 29624540, + 29624114, + 29625280, + 29625474 ], "bases": [ { @@ -486469,21 +486469,21 @@ }, { "type_name": "google::protobuf::internal::ImplicitWeakMessage", - "vtable_address": 64634192, + "vtable_address": 64638096, "methods": [ - 29206706, - 29206774, - 29206672, - 29207046, - 29206578, - 29206534, - 29222574, - 29206652, - 29206538, - 29206558, - 29206500, + 29210546, + 29210614, + 29210512, + 29210886, + 29210418, + 29210374, + 29226414, + 29210492, + 29210378, + 29210398, + 29210340, 12011504, - 29206592 + 29210432 ], "bases": [ { @@ -486505,7 +486505,7 @@ }, { "type_name": "google::protobuf::internal::InternalMetadata::ContainerBase", - "vtable_address": 63498928, + "vtable_address": 63502832, "methods": [], "bases": [], "model": { @@ -486516,29 +486516,29 @@ }, { "type_name": "google::protobuf::internal::MapFieldAccessor", - "vtable_address": 64644088, - "methods": [ - 29648882, - 29648900, - 29651038, - 29651414, - 29651326, - 29652130, - 29651586, - 29650034, - 29651630, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29647612, - 29648848, - 29650328, - 29650344, - 29647614 + "vtable_address": 64647992, + "methods": [ + 29652722, + 29652740, + 29654878, + 29655254, + 29655166, + 29655970, + 29655426, + 29653874, + 29655470, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29651452, + 29652688, + 29654168, + 29654184, + 29651454 ], "bases": [ { @@ -486571,7 +486571,7 @@ }, { "type_name": "google::protobuf::internal::MapFieldBase", - "vtable_address": 64643152, + "vtable_address": 64647056, "methods": [], "bases": [], "model": { @@ -486582,26 +486582,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 64645768, - "methods": [ - 29647634, - 29647642, - 29648212, - 29647646, - 29648260, - 29648310, - 29650236, - 29649870, - 29649730, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29647654, - 29647658 + "vtable_address": 64649672, + "methods": [ + 29651474, + 29651482, + 29652052, + 29651486, + 29652100, + 29652150, + 29654076, + 29653710, + 29653570, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29651494, + 29651498 ], "bases": [ { @@ -486645,26 +486645,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 64645608, - "methods": [ - 29647662, - 29647670, - 29648354, - 29647674, - 29648402, - 29647682, - 29650244, - 29649718, - 29649578, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29647728, - 29647734 + "vtable_address": 64649512, + "methods": [ + 29651502, + 29651510, + 29652194, + 29651514, + 29652242, + 29651522, + 29654084, + 29653558, + 29653418, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29651568, + 29651574 ], "bases": [ { @@ -486708,26 +486708,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 64645448, - "methods": [ - 29647738, - 29647746, - 29648454, - 29647750, - 29648502, - 29647758, - 29650252, - 29649566, - 29649426, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29647804, - 29647810 + "vtable_address": 64649352, + "methods": [ + 29651578, + 29651586, + 29652294, + 29651590, + 29652342, + 29651598, + 29654092, + 29653406, + 29653266, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29651644, + 29651650 ], "bases": [ { @@ -486771,26 +486771,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 64644808, - "methods": [ - 29648030, - 29648038, - 29648042, - 29648090, - 29648098, - 29648148, - 29650284, - 29650022, - 29649882, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29648192, - 29648196 + "vtable_address": 64648712, + "methods": [ + 29651870, + 29651878, + 29651882, + 29651930, + 29651938, + 29651988, + 29654124, + 29653862, + 29653722, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29652032, + 29652036 ], "bases": [ { @@ -486834,26 +486834,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 64645128, - "methods": [ - 29647886, - 29647894, - 29648652, - 29647898, - 29648700, - 29647906, - 29650268, - 29649262, - 29649122, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29647950, - 29647954 + "vtable_address": 64649032, + "methods": [ + 29651726, + 29651734, + 29652492, + 29651738, + 29652540, + 29651746, + 29654108, + 29653102, + 29652962, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29651790, + 29651794 ], "bases": [ { @@ -486897,26 +486897,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 64644968, - "methods": [ - 29647958, - 29647966, - 29648750, - 29647970, - 29648798, - 29647978, - 29650276, - 29649110, - 29648970, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29648022, - 29648026 + "vtable_address": 64648872, + "methods": [ + 29651798, + 29651806, + 29652590, + 29651810, + 29652638, + 29651818, + 29654116, + 29652950, + 29652810, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29651862, + 29651866 ], "bases": [ { @@ -486960,26 +486960,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 64645288, - "methods": [ - 29647814, - 29647822, - 29648554, - 29647826, - 29648602, - 29647834, - 29650260, - 29649414, - 29649274, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29647878, - 29647882 + "vtable_address": 64649192, + "methods": [ + 29651654, + 29651662, + 29652394, + 29651666, + 29652442, + 29651674, + 29654100, + 29653254, + 29653114, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29651718, + 29651722 ], "bases": [ { @@ -487023,7 +487023,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldWrapper", - "vtable_address": 64644072, + "vtable_address": 64647976, "methods": [], "bases": [ { @@ -487050,13 +487050,13 @@ ], "model": { "Itanium": { - "offset_to_top": 9438720 + "offset_to_top": 9438784 } } }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 64634104, + "vtable_address": 64638008, "methods": [], "bases": [], "model": { @@ -487067,7 +487067,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 64634144, + "vtable_address": 64638048, "methods": [], "bases": [], "model": { @@ -487078,7 +487078,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 64643112, + "vtable_address": 64647016, "methods": [], "bases": [], "model": { @@ -487089,27 +487089,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldMessageAccessor", - "vtable_address": 64644440, - "methods": [ - 29648200, - 29648208, - 29651060, + "vtable_address": 64648344, + "methods": [ + 29652040, + 29652048, + 29654900, + 29655272, + 29655206, + 29655896, + 29655444, + 29654132, + 29655636, + 29651406, + 29651410, + 29651422, + 29651426, 29651432, - 29651366, - 29652056, - 29651604, - 29650292, - 29651796, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29650336, - 29650352, - 29647622 + 29651440, + 29651442, + 29654176, + 29654192, + 29651462 ], "bases": [ { @@ -487153,27 +487153,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldStringAccessor", - "vtable_address": 64644272, - "methods": [ - 29650228, - 29648962, - 29648914, - 29650220, - 29650172, - 29650104, - 29650096, - 29650084, - 29650442, - 29647566, - 29647570, - 29647582, - 29647586, - 29647592, - 29647600, - 29647602, - 29648854, - 29647626, - 29647618 + "vtable_address": 64648176, + "methods": [ + 29654068, + 29652802, + 29652754, + 29654060, + 29654012, + 29653944, + 29653936, + 29653924, + 29654282, + 29651406, + 29651410, + 29651422, + 29651426, + 29651432, + 29651440, + 29651442, + 29652694, + 29651466, + 29651458 ], "bases": [ { @@ -487217,7 +487217,7 @@ }, { "type_name": "google::protobuf::internal::ZeroFieldsBase", - "vtable_address": 64642760, + "vtable_address": 64646664, "methods": [], "bases": [ { @@ -487250,14 +487250,14 @@ }, { "type_name": "google::protobuf::io::ArrayInputStream", - "vtable_address": 64635248, + "vtable_address": 64639152, "methods": [ - 29222438, - 29222440, - 29218320, - 29218748, - 29219076, - 29218376 + 29226278, + 29226280, + 29222160, + 29222588, + 29222916, + 29222216 ], "bases": [ { @@ -487279,15 +487279,15 @@ }, { "type_name": "google::protobuf::io::ArrayOutputStream", - "vtable_address": 64635312, + "vtable_address": 64639216, "methods": [ - 29222436, - 29222452, - 29218382, - 29219242, - 29218438, - 29215548, - 29215648 + 29226276, + 29226292, + 29222222, + 29223082, + 29222278, + 29219388, + 29219488 ], "bases": [ { @@ -487309,14 +487309,14 @@ }, { "type_name": "google::protobuf::io::ConcatenatingInputStream", - "vtable_address": 64635024, + "vtable_address": 64638928, "methods": [ - 29218180, - 29218182, - 29215696, - 29216780, - 29215784, - 29216902 + 29222020, + 29222022, + 29219536, + 29220620, + 29219624, + 29220742 ], "bases": [ { @@ -487338,14 +487338,14 @@ }, { "type_name": "google::protobuf::io::CopyingInputStreamAdaptor", - "vtable_address": 64635456, + "vtable_address": 64639360, "methods": [ - 29221116, - 29221162, - 29222288, - 29220178, - 29220562, - 29218574 + 29224956, + 29225002, + 29226128, + 29224018, + 29224402, + 29222414 ], "bases": [ { @@ -487367,15 +487367,15 @@ }, { "type_name": "google::protobuf::io::CopyingOutputStreamAdaptor", - "vtable_address": 64635520, + "vtable_address": 64639424, "methods": [ - 29221424, - 29221474, - 29222178, - 29221498, - 29218586, - 29221850, - 29218176 + 29225264, + 29225314, + 29226018, + 29225338, + 29222426, + 29225690, + 29222016 ], "bases": [ { @@ -487397,25 +487397,25 @@ }, { "type_name": "google::protobuf::io::ErrorCollector", - "vtable_address": 64636016, + "vtable_address": 64639920, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9431264 + "offset_to_top": 9431328 } } }, { "type_name": "google::protobuf::io::FileInputStream", - "vtable_address": 64634576, + "vtable_address": 64638480, "methods": [ - 29218266, - 29218300, - 29218046, - 29218066, - 29218086, - 29218106 + 29222106, + 29222140, + 29221886, + 29221906, + 29221926, + 29221946 ], "bases": [ { @@ -487437,12 +487437,12 @@ }, { "type_name": "google::protobuf::io::FileInputStream::CopyingFileInputStream", - "vtable_address": 64634640, + "vtable_address": 64638544, "methods": [ - 29217184, - 29217392, - 29216056, - 29216242 + 29221024, + 29221232, + 29219896, + 29220082 ], "bases": [ { @@ -487464,15 +487464,15 @@ }, { "type_name": "google::protobuf::io::FileOutputStream", - "vtable_address": 64634688, + "vtable_address": 64638592, "methods": [ - 29217830, - 29217868, - 29222178, - 29221498, - 29218586, - 29221850, - 29218176 + 29221670, + 29221708, + 29226018, + 29225338, + 29222426, + 29225690, + 29222016 ], "bases": [ { @@ -487505,11 +487505,11 @@ }, { "type_name": "google::protobuf::io::FileOutputStream::CopyingFileOutputStream", - "vtable_address": 64634760, + "vtable_address": 64638664, "methods": [ - 29217700, - 29217886, - 29216426 + 29221540, + 29221726, + 29220266 ], "bases": [ { @@ -487531,14 +487531,14 @@ }, { "type_name": "google::protobuf::io::IstreamInputStream", - "vtable_address": 64634800, + "vtable_address": 64638704, "methods": [ - 29218228, - 29218248, - 29218056, - 29218076, - 29218096, - 29218116 + 29222068, + 29222088, + 29221896, + 29221916, + 29221936, + 29221956 ], "bases": [ { @@ -487560,12 +487560,12 @@ }, { "type_name": "google::protobuf::io::IstreamInputStream::CopyingIstreamInputStream", - "vtable_address": 64634864, + "vtable_address": 64638768, "methods": [ - 29215692, - 29215772, - 29216654, - 29218444 + 29219532, + 29219612, + 29220494, + 29222284 ], "bases": [ { @@ -487587,14 +487587,14 @@ }, { "type_name": "google::protobuf::io::LimitingInputStream", - "vtable_address": 64635592, + "vtable_address": 64639496, "methods": [ - 29218596, - 29220544, - 29220784, - 29218628, - 29218678, - 29220748 + 29222436, + 29224384, + 29224624, + 29222468, + 29222518, + 29224588 ], "bases": [ { @@ -487616,15 +487616,15 @@ }, { "type_name": "google::protobuf::io::OstreamOutputStream", - "vtable_address": 64634912, + "vtable_address": 64638816, "methods": [ - 29218126, - 29218158, - 29216712, - 29216722, - 29216732, - 29215548, - 29215648 + 29221966, + 29221998, + 29220552, + 29220562, + 29220572, + 29219388, + 29219488 ], "bases": [ { @@ -487646,11 +487646,11 @@ }, { "type_name": "google::protobuf::io::OstreamOutputStream::CopyingOstreamOutputStream", - "vtable_address": 64634984, + "vtable_address": 64638888, "methods": [ - 29215694, - 29215778, - 29216742 + 29219534, + 29219618, + 29220582 ], "bases": [ { @@ -487672,15 +487672,15 @@ }, { "type_name": "google::protobuf::io::StringOutputStream", - "vtable_address": 64635384, + "vtable_address": 64639288, "methods": [ - 29222434, - 29222446, - 29219938, - 29219614, - 29219480, - 29215548, - 29215648 + 29226274, + 29226286, + 29223778, + 29223454, + 29223320, + 29219388, + 29219488 ], "bases": [ { @@ -487702,51 +487702,51 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 64634560, + "vtable_address": 64638464, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9424640 + "offset_to_top": 9424704 } } }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 64635232, + "vtable_address": 64639136, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9425088 + "offset_to_top": 9425152 } } }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 64635680, + "vtable_address": 64639584, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9425184 + "offset_to_top": 9425248 } } }, { "type_name": "m_nDestructionDeathBehavior == eDoNotKill", - "vtable_address": 63442320, + "vtable_address": 63446224, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11121051 + "offset_to_top": 11121062 } } }, { "type_name": "minusone", - "vtable_address": 64023120, + "vtable_address": 64027024, "methods": [], "bases": [], "model": { @@ -487757,7 +487757,7 @@ }, { "type_name": "minusone", - "vtable_address": 64023184, + "vtable_address": 64027088, "methods": [], "bases": [], "model": { @@ -487766,48 +487766,37 @@ } } }, - { - "type_name": "p", - "vtable_address": 66110376, - "methods": [], - "bases": [], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, { "type_name": "panorama::CAnimatedImageStrip", - "vtable_address": 64964568, + "vtable_address": 64968472, "methods": [ 12043984, - 59816784, - 59951248, - 59951264, - 59961312, - 59817136, - 59817120, - 60334880, - 60343568, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 59955152, + 59955168, + 59965216, + 59821040, + 59821024, + 60338784, + 60347472, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59961568, - 60344048, - 59960368, + 59821792, + 59821808, + 59965472, + 60347952, + 59964272, 12233664, 12233696, 12233680, @@ -487816,16 +487805,16 @@ 12233648, 12233632, 12233264, - 60334432, + 60338336, 12399392, 12233312, - 60341696, - 59961200, - 59825616, - 59825216, - 59836080, + 60345600, + 59965104, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -487835,35 +487824,35 @@ 12233472, 12233488, 12233504, - 60341872, - 60336864, + 60345776, + 60340768, 12233520, 12233296, 12233760, - 59835792, - 59951232, - 59951312, - 59951376, + 59839696, + 59955136, + 59955216, + 59955280, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 60354912, - 23629216, - 60356064, + 60358816, + 23631968, + 60359968, 12233360, 12233536, 12233552, 12233568, 12233584, - 60355472, + 60359376, 12233728, 12233744 ], @@ -487909,39 +487898,39 @@ }, { "type_name": "panorama::CAsyncDataPanel", - "vtable_address": 64979512, + "vtable_address": 64983416, "methods": [ 12043984, - 59816784, - 60149856, - 60149872, - 59817120, - 59817136, - 59817120, + 59820688, + 60153760, + 60153776, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60153216, + 59821792, + 59821808, + 59820704, + 59832432, + 60157120, 12233664, 12233696, 12233680, - 60154784, + 60158688, 12250768, 12233648, 12233632, @@ -487950,12 +487939,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -487967,33 +487956,33 @@ 12233504, 12399408, 12399424, - 60150080, + 60153984, 12233296, 12233760, - 59835792, - 60149840, - 60149984, - 60150608, + 59839696, + 60153744, + 60153888, + 60154512, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -488028,7 +488017,7 @@ }, { "type_name": "panorama::CBaseScrollBar", - "vtable_address": 64983472, + "vtable_address": 64987376, "methods": [], "bases": [ { @@ -488071,40 +488060,40 @@ }, { "type_name": "panorama::CBaseScrollBar", - "vtable_address": 65005376, + "vtable_address": 65009280, "methods": [ 12043984, - 59816784, - 60531232, - 60531248, - 59817120, - 59817136, - 59817120, + 59820688, + 60535136, + 60535152, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60210864, + 60214768, 12233648, 12233632, 12233264, @@ -488112,12 +488101,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -488132,8 +488121,8 @@ 12233520, 12233296, 12233760, - 59835792, - 60531216 + 59839696, + 60535120 ], "bases": [ { @@ -488176,20 +488165,20 @@ }, { "type_name": "panorama::CBaseScrollBar", - "vtable_address": 65006272, + "vtable_address": 65010176, "methods": [ - 60210512, - 60212816, - 60213008, - 60213744, - 60210544, - 59825152, - 59825120, - 60214048, - 59825088, - 59818704, - 59825184, - 59825056 + 60214416, + 60216720, + 60216912, + 60217648, + 60214448, + 59829056, + 59829024, + 60217952, + 59828992, + 59822608, + 59829088, + 59828960 ], "bases": [ { @@ -488232,7 +488221,7 @@ }, { "type_name": "panorama::CButton", - "vtable_address": 64965368, + "vtable_address": 64969272, "methods": [], "bases": [ { @@ -488265,35 +488254,35 @@ }, { "type_name": "panorama::CButton", - "vtable_address": 64965384, + "vtable_address": 64969288, "methods": [ 12043984, - 59816784, - 59961728, - 59961744, - 59817120, - 59817136, - 59817120, + 59820688, + 59965632, + 59965648, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -488306,12 +488295,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -488326,30 +488315,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59961696, - 59962400, - 59962448, + 59839696, + 59965600, + 59966304, + 59966352, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59962592, - 59993040, + 59826976, + 59966496, + 59996944, 12233360, 12233536, 12233552, 12233568, 12233584, - 59993024, + 59996928, 12233728, 12233744 ], @@ -488384,7 +488373,7 @@ }, { "type_name": "panorama::CButton", - "vtable_address": 64970488, + "vtable_address": 64974392, "methods": [], "bases": [ { @@ -488417,53 +488406,53 @@ }, { "type_name": "panorama::CCarousel", - "vtable_address": 64968960, + "vtable_address": 64972864, "methods": [ 12043984, - 59816784, - 59993232, - 59993248, - 59817120, - 59817136, - 59817120, + 59820688, + 59997136, + 59997152, + 59821024, + 59821040, + 59821024, 12233600, - 60025008, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 60002160, - 59843248, + 60028912, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 60006064, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60035760, - 60027248, + 59821792, + 59821808, + 59820704, + 59832432, + 60039664, + 60031152, 12233696, - 60000224, - 59996192, - 59994336, + 60004128, + 60000096, + 59998240, 12233648, 12233632, - 60000896, - 59993312, - 60008912, + 60004800, + 59997216, + 60012816, 12233312, - 59996416, - 60040528, - 59825616, - 59825216, - 59836080, + 60000320, + 60044432, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -488478,30 +488467,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59993216, - 59994592, - 59995024, + 59839696, + 59997120, + 59998496, + 59998928, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 60006384, - 60005552, - 59993280, - 59993296, + 59830208, + 59829920, + 59848752, + 59852336, + 60010288, + 60009456, + 59997184, + 59997200, 12233200, 12233232, - 60037664, - 59864336, - 59857872, + 60041568, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -488536,35 +488525,35 @@ }, { "type_name": "panorama::CCarouselNav", - "vtable_address": 64969736, + "vtable_address": 64973640, "methods": [ 12043984, - 59816784, - 60040656, - 60040672, - 59817120, - 59817136, - 59817120, + 59820688, + 60044560, + 60044576, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60057840, + 59821792, + 59821808, + 59820704, + 59832432, + 60061744, 12233664, 12233696, 12233680, @@ -488577,12 +488566,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -488597,30 +488586,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60040640, - 60042368, - 60043504, + 59839696, + 60044544, + 60046272, + 60047408, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -488655,35 +488644,35 @@ }, { "type_name": "panorama::CCarouselNavButton", - "vtable_address": 64970504, + "vtable_address": 64974408, "methods": [ 12043984, - 59816784, - 60058512, - 60058528, - 59817120, - 59817136, - 59817120, + 59820688, + 60062416, + 60062432, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60067312, + 59821792, + 59821808, + 59820704, + 59832432, + 60071216, 12233664, 12233696, 12233680, @@ -488696,12 +488685,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -488716,30 +488705,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60058496, - 60058640, - 60059472, + 59839696, + 60062400, + 60062544, + 60063376, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59962592, - 59993040, + 59826976, + 59966496, + 59996944, 12233360, 12233536, 12233552, 12233568, 12233584, - 59993024, + 59996928, 12233728, 12233744 ], @@ -488785,35 +488774,35 @@ }, { "type_name": "panorama::CCircularProgressBar", - "vtable_address": 64971224, + "vtable_address": 64975128, "methods": [ 12043984, - 59816784, - 60067552, - 60067568, - 59817120, - 59817136, - 59817120, + 59820688, + 60071456, + 60071472, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60072928, + 59821792, + 59821808, + 59820704, + 59832432, + 60076832, 12233664, 12233696, 12233680, @@ -488826,12 +488815,12 @@ 12399392, 12233312, 12233168, - 60073440, - 59825616, - 59825216, - 59836080, + 60077344, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -488846,30 +488835,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60067536, - 60067648, - 60067664, + 59839696, + 60071440, + 60071552, + 60071568, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -488904,35 +488893,35 @@ }, { "type_name": "panorama::CConsole", - "vtable_address": 64971944, + "vtable_address": 64975848, "methods": [ 12043984, - 59816784, - 60073632, - 60073648, - 59817120, - 59817136, - 59817120, + 59820688, + 60077536, + 60077552, + 59821024, + 59821040, + 59821024, 12233600, - 60073680, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60077584, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -488945,12 +488934,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -488962,33 +488951,33 @@ 12233504, 12399408, 12399424, - 60078096, + 60082000, 12233296, 12233760, - 59835792, - 60073616, - 60073856, - 60073744, + 59839696, + 60077520, + 60077760, + 60077648, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -489023,7 +489012,7 @@ }, { "type_name": "panorama::CConsoleInput", - "vtable_address": 64972752, + "vtable_address": 64976656, "methods": [], "bases": [ { @@ -489098,53 +489087,53 @@ }, { "type_name": "panorama::CConsoleInput", - "vtable_address": 64972768, + "vtable_address": 64976672, "methods": [ 12043984, - 59816784, - 60084016, - 60084032, - 60635568, - 59817136, - 59817120, - 60633536, - 60634032, - 60096064, - 59703856, - 60097152, - 59817872, - 59817872, - 59827440, - 60632848, - 60591632, - 60632112, - 60592672, - 59826592, - 60631440, + 59820688, + 60087920, + 60087936, + 60639472, + 59821040, + 59821024, + 60637440, + 60637936, + 60099968, + 59707760, + 60101056, + 59821776, + 59821776, + 59831344, + 60636752, + 60595536, + 60636016, + 60596576, + 59830496, + 60635344, 12233184, - 59817888, - 59817904, - 60591376, - 59828528, - 60608576, + 59821792, + 59821808, + 60595280, + 59832432, + 60612480, 12233664, 12233696, 12233680, - 60640048, - 60592960, + 60643952, + 60596864, 12233648, 12233632, 12233264, - 60083824, + 60087728, 12399392, - 60590704, + 60594608, 12233168, - 60646816, - 59825616, - 59825216, - 59836080, + 60650720, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -489159,75 +489148,75 @@ 12233520, 12233296, 12233760, - 59835792, - 60083984, - 60084816, - 60085312, + 59839696, + 60087888, + 60088720, + 60089216, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, - 60083968, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, + 60087872, 12233232, - 60656112, - 59864336, - 59857872, + 60660016, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60592416, - 60590736, - 59687600, - 60083840, - 60083872, - 60590752, - 60651200, - 60649184, - 60083904, - 60592144, - 60083936, - 60601920, - 60590800, - 60590832, - 60590880, - 60604592, - 60603120, - 60651840, - 60650080, - 60650592, - 60603232, - 60604432, - 60603360, - 60603488, - 60603600, - 60652384, - 60603712, - 60603840, - 60603968, - 60648848, - 60624784, - 60625120, - 60604112, - 60617728, - 60618176, - 60618512, - 60619296, - 60604208, - 60618848, - 60619872, - 60604304, - 60088608, - 60087280 + 60596320, + 60594640, + 59691504, + 60087744, + 60087776, + 60594656, + 60655104, + 60653088, + 60087808, + 60596048, + 60087840, + 60605824, + 60594704, + 60594736, + 60594784, + 60608496, + 60607024, + 60655744, + 60653984, + 60654496, + 60607136, + 60608336, + 60607264, + 60607392, + 60607504, + 60656288, + 60607616, + 60607744, + 60607872, + 60652752, + 60628688, + 60629024, + 60608016, + 60621632, + 60622080, + 60622416, + 60623200, + 60608112, + 60622752, + 60623776, + 60608208, + 60092512, + 60091184 ], "bases": [ { @@ -489302,23 +489291,23 @@ }, { "type_name": "panorama::CConsoleInput", - "vtable_address": 64973808, - "methods": [ - 60085296, - 60085360, - 60096544, - 59703872, - 60097776, - 60083856, - 60083888, - 59687616, - 60593072, - 60592080, - 60651824, - 60649920, - 60083920, - 60592400, - 60083952 + "vtable_address": 64977712, + "methods": [ + 60089200, + 60089264, + 60100448, + 59707776, + 60101680, + 60087760, + 60087792, + 59691520, + 60596976, + 60595984, + 60655728, + 60653824, + 60087824, + 60596304, + 60087856 ], "bases": [ { @@ -489393,37 +489382,37 @@ }, { "type_name": "panorama::CConsoleInput", - "vtable_address": 64973944, - "methods": [ - 60592064, - 60592096, - 60592912, - 60605648, - 60606048, - 60652352, - 60650576, - 60651184, - 60604896, - 60605888, - 60606176, - 60605296, - 60605408, - 60653024, - 60605024, - 60605520, - 60605152, - 60649056, - 60625568, - 60625552, - 60604704, - 60618160, - 60613712, - 60613152, - 60619840, - 60604800, - 60619264, - 60620528, - 60605760 + "vtable_address": 64977848, + "methods": [ + 60595968, + 60596000, + 60596816, + 60609552, + 60609952, + 60656256, + 60654480, + 60655088, + 60608800, + 60609792, + 60610080, + 60609200, + 60609312, + 60656928, + 60608928, + 60609424, + 60609056, + 60652960, + 60629472, + 60629456, + 60608608, + 60622064, + 60617616, + 60617056, + 60623744, + 60608704, + 60623168, + 60624432, + 60609664 ], "bases": [ { @@ -489498,53 +489487,53 @@ }, { "type_name": "panorama::CConsoleText", - "vtable_address": 64975672, + "vtable_address": 64979576, "methods": [ 12043984, - 59816784, - 60098256, - 60098272, - 59817120, - 60112192, - 59817120, - 60103984, + 59820688, + 60102160, + 60102176, + 59821024, + 60116096, + 59821024, + 60107888, 12233616, - 60116384, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60114928, - 60115360, - 59819120, - 59817872, - 59826592, - 60105120, + 60120288, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60118832, + 60119264, + 59823024, + 59821776, + 59830496, + 60109024, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60098304, + 60102208, 12233648, 12233632, 12233264, 12233280, 12399392, 12233312, - 60098896, - 59908352, - 59825616, - 59825216, - 59836080, + 60102800, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -489559,30 +489548,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60098240, - 60102544, - 60102784, + 59839696, + 60102144, + 60106448, + 60106688, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -489617,7 +489606,7 @@ }, { "type_name": "panorama::CContextMenu", - "vtable_address": 64976400, + "vtable_address": 64980304, "methods": [], "bases": [ { @@ -489650,35 +489639,35 @@ }, { "type_name": "panorama::CContextMenu", - "vtable_address": 64976416, + "vtable_address": 64980320, "methods": [ 12043984, - 59816784, - 60123712, - 60123728, - 59817120, - 59817136, - 59817120, + 59820688, + 60127616, + 60127632, + 59821024, + 59821040, + 59821024, 12233600, - 60126496, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60130400, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60130112, - 59817904, - 59816800, - 59828528, - 59823152, + 60134016, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -489691,12 +489680,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -489711,33 +489700,33 @@ 12233520, 12233296, 12233760, - 59835792, - 60123696, - 60123840, - 60124816, + 59839696, + 60127600, + 60127744, + 60128720, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60124208 + 60128112 ], "bases": [ { @@ -489770,35 +489759,35 @@ }, { "type_name": "panorama::CCycleButton", - "vtable_address": 64968200, + "vtable_address": 64972104, "methods": [ 12043984, - 59816784, - 59962064, - 59962080, - 59817120, - 59817136, - 59817120, + 59820688, + 59965968, + 59965984, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59963424, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59967328, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59971792, - 59823152, + 59821792, + 59821808, + 59820704, + 59975696, + 59827056, 12233664, 12233696, 12233680, @@ -489811,12 +489800,12 @@ 12399392, 12233312, 12233168, - 59985872, - 59825616, - 59825216, - 59836080, + 59989776, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -489828,37 +489817,37 @@ 12233504, 12399408, 12399424, - 59963296, + 59967200, 12233296, 12233760, - 59835792, - 59962048, - 59963952, - 59963760, + 59839696, + 59965952, + 59967856, + 59967664, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59962592, - 59993040, + 59826976, + 59966496, + 59996944, 12233360, 12233536, 12233552, 12233568, 12233584, - 59993024, + 59996928, 12233728, 12233744, - 59962160, - 59964048 + 59966064, + 59967952 ], "bases": [ { @@ -489902,35 +489891,35 @@ }, { "type_name": "panorama::CDebugAutoComplete", - "vtable_address": 64953920, + "vtable_address": 64957824, "methods": [ 12043984, - 59816784, - 59698400, - 59698416, - 59817120, - 59817136, - 59817120, + 59820688, + 59702304, + 59702320, + 59821024, + 59821040, + 59821024, 12233600, - 59699600, - 59703392, - 59703888, - 59704192, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59703504, + 59707296, + 59707792, + 59708096, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -489943,12 +489932,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -489963,30 +489952,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59698384, - 59698448, - 59698464, + 59839696, + 59702288, + 59702352, + 59702368, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490021,35 +490010,35 @@ }, { "type_name": "panorama::CDebugIndividualStyle", - "vtable_address": 64959224, + "vtable_address": 64963128, "methods": [ 12043984, - 59816784, - 59761984, - 59762000, - 59817120, - 59817136, - 59817120, + 59820688, + 59765888, + 59765904, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490062,12 +490051,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490082,30 +490071,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59761968, - 59762368, - 59762384, + 59839696, + 59765872, + 59766272, + 59766288, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490140,35 +490129,35 @@ }, { "type_name": "panorama::CDebugInheritedStylesHeader", - "vtable_address": 64960616, + "vtable_address": 64964520, "methods": [ 12043984, - 59816784, - 59762112, - 59762128, - 59817120, - 59817136, - 59817120, + 59820688, + 59766016, + 59766032, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490181,12 +490170,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490201,30 +490190,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59762096, - 59762496, - 59762512, + 59839696, + 59766000, + 59766400, + 59766416, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490259,35 +490248,35 @@ }, { "type_name": "panorama::CDebugLayout", - "vtable_address": 64954664, + "vtable_address": 64958568, "methods": [ 12043984, - 59816784, - 59706832, - 59706848, - 59817120, - 59817136, - 59817120, + 59820688, + 59710736, + 59710752, + 59821024, + 59821040, + 59821024, 12233600, - 59715584, - 59727408, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59719488, + 59731312, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490300,12 +490289,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490320,30 +490309,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59706816, - 59717360, - 59717760, + 59839696, + 59710720, + 59721264, + 59721664, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490378,35 +490367,35 @@ }, { "type_name": "panorama::CDebugPanel", - "vtable_address": 64957600, + "vtable_address": 64961504, "methods": [ 12043984, - 59816784, - 59739744, - 59739760, - 59817120, - 59817136, - 59817120, + 59820688, + 59743648, + 59743664, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490419,12 +490408,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490439,30 +490428,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59739728, - 59740032, - 59740048, + 59839696, + 59743632, + 59743936, + 59743952, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490497,35 +490486,35 @@ }, { "type_name": "panorama::CDebugPanelAttributes", - "vtable_address": 64956904, + "vtable_address": 64960808, "methods": [ 12043984, - 59816784, - 59739936, - 59739952, - 59817120, - 59817136, - 59817120, + 59820688, + 59743840, + 59743856, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490538,12 +490527,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490558,30 +490547,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59739920, - 59740704, - 59740496, + 59839696, + 59743824, + 59744608, + 59744400, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490616,35 +490605,35 @@ }, { "type_name": "panorama::CDebugPanelComputed", - "vtable_address": 64955512, + "vtable_address": 64959416, "methods": [ 12043984, - 59816784, - 59739808, - 59739824, - 59817120, - 59817136, - 59817120, + 59820688, + 59743712, + 59743728, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490657,12 +490646,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490677,30 +490666,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59739792, - 59740144, - 59740800, + 59839696, + 59743696, + 59744048, + 59744704, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490735,35 +490724,35 @@ }, { "type_name": "panorama::CDebugPanelDialogVariables", - "vtable_address": 64956208, + "vtable_address": 64960112, "methods": [ 12043984, - 59816784, - 59739872, - 59739888, - 59817120, - 59817136, - 59817120, + 59820688, + 59743776, + 59743792, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490776,12 +490765,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490796,30 +490785,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59739856, - 59740608, - 59740384, + 59839696, + 59743760, + 59744512, + 59744288, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490854,35 +490843,35 @@ }, { "type_name": "panorama::CDebugPanelParents", - "vtable_address": 64962952, + "vtable_address": 64966856, "methods": [ 12043984, - 59816784, - 59811296, - 59811312, - 59817120, - 59817136, - 59817120, + 59820688, + 59815200, + 59815216, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -490895,12 +490884,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -490915,30 +490904,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59811280, - 59811344, - 59811360, + 59839696, + 59815184, + 59815248, + 59815264, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -490973,35 +490962,35 @@ }, { "type_name": "panorama::CDebugPanelStyle", - "vtable_address": 64958528, + "vtable_address": 64962432, "methods": [ 12043984, - 59816784, - 59761856, - 59761872, - 59817120, - 59817136, - 59817120, + 59820688, + 59765760, + 59765776, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -491014,12 +491003,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491034,30 +491023,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59761840, - 59762304, - 59762320, + 59839696, + 59765744, + 59766208, + 59766224, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -491092,35 +491081,35 @@ }, { "type_name": "panorama::CDebugStyleAnimation", - "vtable_address": 64959920, + "vtable_address": 64963824, "methods": [ 12043984, - 59816784, - 59762048, - 59762064, - 59817120, - 59817136, - 59817120, + 59820688, + 59765952, + 59765968, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -491133,12 +491122,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491153,30 +491142,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59762032, - 59762560, - 59762912, + 59839696, + 59765936, + 59766464, + 59766816, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -491211,35 +491200,35 @@ }, { "type_name": "panorama::CDebugStyleBlock", - "vtable_address": 64962008, + "vtable_address": 64965912, "methods": [ 12043984, - 59816784, - 59761920, - 59761936, - 59817120, - 59817136, - 59817120, + 59820688, + 59765824, + 59765840, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -491252,12 +491241,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491272,33 +491261,33 @@ 12233520, 12233296, 12233760, - 59835792, - 59761904, - 59774208, - 59774752, + 59839696, + 59765808, + 59778112, + 59778656, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 59806432 + 59810336 ], "bases": [ { @@ -491352,22 +491341,22 @@ }, { "type_name": "panorama::CDebugStyleBlock", - "vtable_address": 64962712, + "vtable_address": 64966616, "methods": [ - 59806688, - 23620864, - 23620880, - 23620896, - 24884240, - 23620912, - 24884256, - 23620928, - 23620944, - 23620960, - 23620976, - 23620992, - 23621008, - 23621024 + 59810592, + 23623616, + 23623632, + 23623648, + 24887248, + 23623664, + 24887264, + 23623680, + 23623696, + 23623712, + 23623728, + 23623744, + 23623760, + 23623776 ], "bases": [ { @@ -491421,35 +491410,35 @@ }, { "type_name": "panorama::CDebugStyleSeparator", - "vtable_address": 64961312, + "vtable_address": 64965216, "methods": [ 12043984, - 59816784, - 59762176, - 59762192, - 59817120, - 59817136, - 59817120, + 59820688, + 59766080, + 59766096, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -491462,12 +491451,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491482,30 +491471,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59762160, - 59762432, - 59762448, + 59839696, + 59766064, + 59766336, + 59766352, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -491540,35 +491529,35 @@ }, { "type_name": "panorama::CDelayLoadList", - "vtable_address": 64977912, + "vtable_address": 64981816, "methods": [ 12043984, - 59816784, - 60131312, - 60131328, - 59817120, - 60140368, - 60135600, - 60138208, - 60141232, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 60135216, + 60135232, + 59821024, + 60144272, + 60139504, + 60142112, + 60145136, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60144912, - 59823152, + 59821792, + 59821808, + 59820704, + 60148816, + 59827056, 12233664, 12233696, 12233680, @@ -491581,12 +491570,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491596,35 +491585,35 @@ 12233472, 12233488, 12233504, - 60131760, - 60135600, + 60135664, + 60139504, 12233520, 12233296, 12233760, - 59835792, - 60131296, - 60131536, - 60132208, + 59839696, + 60135200, + 60135440, + 60136112, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -491659,35 +491648,35 @@ }, { "type_name": "panorama::CDelayLoadPanel", - "vtable_address": 64978784, + "vtable_address": 64982688, "methods": [ 12043984, - 59816784, - 60145760, - 60145776, - 59817120, - 59817136, - 59817120, + 59820688, + 60149664, + 60149680, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -491700,12 +491689,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491720,33 +491709,33 @@ 12233520, 12233296, 12233760, - 59835792, - 60145744, - 60145872, - 60145968, + 59839696, + 60149648, + 60149776, + 60149872, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60145824 + 60149728 ], "bases": [ { @@ -491779,35 +491768,35 @@ }, { "type_name": "panorama::CDragPanel", - "vtable_address": 64980232, + "vtable_address": 64984136, "methods": [ 12043984, - 59816784, - 60154848, - 60154864, - 59817120, - 59817136, - 59817120, + 59820688, + 60158752, + 60158768, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60160448, - 60160640, - 59819120, - 59817872, - 59826592, - 60160480, - 60154896, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60164352, + 60164544, + 59823024, + 59821776, + 59830496, + 60164384, + 60158800, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -491820,12 +491809,12 @@ 12399392, 12233312, 12233168, - 60160384, - 59825616, - 59825216, - 59836080, + 60164288, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491840,30 +491829,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60154832, - 60154928, - 60154944, + 59839696, + 60158736, + 60158832, + 60158848, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -491898,35 +491887,35 @@ }, { "type_name": "panorama::CDragZoom", - "vtable_address": 64981000, + "vtable_address": 64984904, "methods": [ 12043984, - 59816784, - 60160672, - 60160688, - 59817120, - 59817136, - 59817120, + 59820688, + 60164576, + 60164592, + 59821024, + 59821040, + 59821024, 12233600, - 60168736, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60173376, - 60173616, - 60173712, - 59817872, - 60173936, - 60167008, - 60160752, - 59817888, - 60168128, - 59816800, - 60171824, - 59823152, + 60172640, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60177280, + 60177520, + 60177616, + 59821776, + 60177840, + 60170912, + 60164656, + 59821792, + 60172032, + 59820704, + 60175728, + 59827056, 12233664, 12233696, 12233680, @@ -491937,14 +491926,14 @@ 12233264, 12233280, 12399392, - 60160720, + 60164624, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -491959,30 +491948,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60160656, - 60160912, - 60160928, + 59839696, + 60164560, + 60164816, + 60164832, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -492017,7 +492006,7 @@ }, { "type_name": "panorama::CDropDown", - "vtable_address": 64496808, + "vtable_address": 64500712, "methods": [], "bases": [ { @@ -492044,46 +492033,46 @@ ], "model": { "Itanium": { - "offset_to_top": 9361888 + "offset_to_top": 9361952 } } }, { "type_name": "panorama::CDropDown", - "vtable_address": 64981912, + "vtable_address": 64985816, "methods": [ 12043984, - 59816784, - 60174432, - 60174448, - 59817120, - 59817136, - 59817120, + 59820688, + 60178336, + 60178352, + 59821024, + 59821040, + 59821024, 12233600, - 60180928, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60189648, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60184832, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60193552, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60175296, - 59817904, - 60174672, - 59828528, - 60181408, + 60179200, + 59821808, + 60178576, + 59832432, + 60185312, 12233664, 12233696, 12233680, - 60191568, - 60189968, + 60195472, + 60193872, 12233648, 12233632, 12233264, @@ -492091,12 +492080,12 @@ 12399392, 12233312, 12233168, - 60202592, - 59825616, - 59825216, - 59836080, + 60206496, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -492110,34 +492099,34 @@ 12399424, 12233520, 12233296, - 60181840, - 59835792, - 60174416, - 60178720, - 60179008, + 60185744, + 59839696, + 60178320, + 60182624, + 60182912, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60186880 + 60190784 ], "bases": [ { @@ -492170,35 +492159,35 @@ }, { "type_name": "panorama::CDropDownMenu", - "vtable_address": 64982616, + "vtable_address": 64986520, "methods": [ 12043984, - 59816784, - 60174368, - 60174384, - 59817120, - 59817136, - 59817120, + 59820688, + 60178272, + 60178288, + 59821024, + 59821040, + 59821024, 12233600, - 60174976, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60178880, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -492211,12 +492200,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -492231,33 +492220,33 @@ 12233520, 12233296, 12233760, - 59835792, - 60174352, - 60174512, - 60174592, + 59839696, + 60178256, + 60178416, + 60178496, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60188016 + 60191920 ], "bases": [ { @@ -492290,40 +492279,40 @@ }, { "type_name": "panorama::CEdgeScrollBar", - "vtable_address": 64984184, + "vtable_address": 64988088, "methods": [ 12043984, - 59816784, - 60211056, - 60211072, - 59817120, - 59817136, - 59817120, + 59820688, + 60214960, + 60214976, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60210864, + 60214768, 12233648, 12233632, 12233264, @@ -492331,12 +492320,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -492351,57 +492340,57 @@ 12233520, 12233296, 12233760, - 59835792, - 60211040, - 60213136, - 60213392, + 59839696, + 60214944, + 60217040, + 60217296, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60210496, - 60212752, - 60212896, - 60213440, - 60210528, - 59825168, - 59825136, - 60214336, - 59825104, - 60212272, - 59825200, - 59825072, - 60211616, - 60210560, - 60211488, - 60211360, - 60210592, - 60531968, - 60537904, - 60536080, - 60210880, - 60210912, - 60210944, - 60212064, - 60211120 + 60214400, + 60216656, + 60216800, + 60217344, + 60214432, + 59829072, + 59829040, + 60218240, + 59829008, + 60216176, + 59829104, + 59828976, + 60215520, + 60214464, + 60215392, + 60215264, + 60214496, + 60535872, + 60541808, + 60539984, + 60214784, + 60214816, + 60214848, + 60215968, + 60215024 ], "bases": [ { @@ -492455,31 +492444,31 @@ }, { "type_name": "panorama::CEdgeScrollBar", - "vtable_address": 64985080, - "methods": [ - 60210512, - 60212816, - 60213008, - 60213744, - 60210544, - 59825152, - 59825120, - 60214048, - 59825088, - 60212736, - 59825184, - 59825056, - 60211744, - 60210576, - 60211536, - 60211424, - 60210736, - 60533392, - 60538400, - 60536640, - 60210896, - 60210928, - 60210960 + "vtable_address": 64988984, + "methods": [ + 60214416, + 60216720, + 60216912, + 60217648, + 60214448, + 59829056, + 59829024, + 60217952, + 59828992, + 60216640, + 59829088, + 59828960, + 60215648, + 60214480, + 60215440, + 60215328, + 60214640, + 60537296, + 60542304, + 60540544, + 60214800, + 60214832, + 60214864 ], "bases": [ { @@ -492533,35 +492522,35 @@ }, { "type_name": "panorama::CEdgeScroller", - "vtable_address": 64983488, + "vtable_address": 64987392, "methods": [ 12043984, - 59816784, - 60210992, - 60211008, - 59817120, - 59817136, - 59817120, + 59820688, + 60214896, + 60214912, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60211200, + 59821792, + 59821808, + 59820704, + 59832432, + 60215104, 12233664, 12233696, 12233680, @@ -492574,12 +492563,12 @@ 12399392, 12233312, 12233168, - 59908352, - 60222960, - 60223168, - 59836080, + 59912256, + 60226864, + 60227072, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -492594,30 +492583,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60210976, - 60211136, - 60211152, + 59839696, + 60214880, + 60215040, + 60215056, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 60220208, - 59864336, - 59857872, + 60224112, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -492652,35 +492641,35 @@ }, { "type_name": "panorama::CFileOpenDialog", - "vtable_address": 64985384, + "vtable_address": 64989288, "methods": [ 12043984, - 59816784, - 60225600, - 60225616, - 59817120, - 59817136, - 59817120, + 59820688, + 60229504, + 60229520, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -492693,12 +492682,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -492713,30 +492702,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60225584, - 60228480, - 60228960, + 59839696, + 60229488, + 60232384, + 60232864, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -492771,35 +492760,35 @@ }, { "type_name": "panorama::CFileOpenDialogEntry", - "vtable_address": 64986080, + "vtable_address": 64989984, "methods": [ 12043984, - 59816784, - 60225664, - 60225680, - 59817120, - 59817136, - 59817120, + 59820688, + 60229568, + 60229584, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 60231552, - 60231776, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 60235456, + 60235680, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -492812,12 +492801,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -492832,30 +492821,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60225648, - 60229008, - 60227616, + 59839696, + 60229552, + 60232912, + 60231520, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59962592, - 59993040, + 59826976, + 59966496, + 59996944, 12233360, 12233536, 12233552, 12233568, 12233584, - 59993024, + 59996928, 12233728, 12233744 ], @@ -492901,35 +492890,35 @@ }, { "type_name": "panorama::CFramePanel", - "vtable_address": 64432424, + "vtable_address": 64436328, "methods": [ 12043984, - 59816784, - 24073936, - 24073952, - 59817120, - 59817136, - 59817120, + 59820688, + 24076688, + 24076704, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 24089856, + 59821792, + 59821808, + 59820704, + 59832432, + 24092608, 12233664, 12233696, 12233680, @@ -492942,12 +492931,12 @@ 12399392, 12233312, 12233168, - 24168240, - 59825616, - 59825216, - 59836080, + 24170992, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -492962,30 +492951,30 @@ 12233520, 12233296, 12233760, - 59835792, - 24073920, - 24075248, - 24075776, + 59839696, + 24076672, + 24078000, + 24078528, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -493020,53 +493009,53 @@ }, { "type_name": "panorama::CHTML", - "vtable_address": 64992104, + "vtable_address": 64996008, "methods": [ 12043984, - 59816784, - 60257120, - 60257136, - 60263296, - 59817136, - 59817120, - 60258112, - 60308288, - 60316384, - 60268400, - 60312864, - 60320144, - 60261744, - 60321408, - 60297984, - 60297600, - 60264416, - 59817872, - 60316112, - 60317968, + 59820688, + 60261024, + 60261040, + 60267200, + 59821040, + 59821024, + 60262016, + 60312192, + 60320288, + 60272304, + 60316768, + 60324048, + 60265648, + 60325312, + 60301888, + 60301504, + 60268320, + 59821776, + 60320016, + 60321872, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60262048, + 59821792, + 59821808, + 59820704, + 59832432, + 60265952, 12233664, 12233696, 12233680, 12233712, - 60267920, + 60271824, 12233648, 12233632, 12233264, - 60257168, + 60261072, 12399392, 12233312, 12233168, - 60327760, - 59825616, - 59825216, - 59836080, + 60331664, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -493081,58 +493070,58 @@ 12233520, 12233296, 12233760, - 59835792, - 60257104, - 60310832, - 60312448, + 59839696, + 60261008, + 60314736, + 60316352, 12233152, - 60317744, - 60317856, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, - 60257184, + 60321648, + 60321760, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, + 60261088, 12233232, - 60328352, - 59864336, - 59857872, + 60332256, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60257200, - 60257232, - 60257264, - 60257296, - 60257328, - 60313168, - 60292112, - 60257360, - 60257392, - 60257424, - 60261728, - 60258624, - 60299840, - 60258720, - 60258464, - 60258640, - 60258656, - 60269632, - 60258672, - 60269376, - 60258688, - 60258624, - 60325040, - 60293152, - 60294656, - 60258704 + 60261104, + 60261136, + 60261168, + 60261200, + 60261232, + 60317072, + 60296016, + 60261264, + 60261296, + 60261328, + 60265632, + 60262528, + 60303744, + 60262624, + 60262368, + 60262544, + 60262560, + 60273536, + 60262576, + 60273280, + 60262592, + 60262528, + 60328944, + 60297056, + 60298560, + 60262608 ], "bases": [ { @@ -493175,23 +493164,23 @@ }, { "type_name": "panorama::CHTML", - "vtable_address": 64993008, - "methods": [ - 60312432, - 60312496, - 60317728, - 60268592, - 60295360, - 60257216, - 60257248, - 60257280, - 60257312, - 60257344, - 60294208, - 60292624, - 60257376, - 60257408, - 60257440 + "vtable_address": 64996912, + "methods": [ + 60316336, + 60316400, + 60321632, + 60272496, + 60299264, + 60261120, + 60261152, + 60261184, + 60261216, + 60261248, + 60298112, + 60296528, + 60261280, + 60261312, + 60261344 ], "bases": [ { @@ -493234,40 +493223,40 @@ }, { "type_name": "panorama::CHTML::CHTMLHorizontalScrollBar", - "vtable_address": 64988960, + "vtable_address": 64992864, "methods": [ 12043984, - 59816784, - 60257744, - 60257760, - 59817120, - 59817136, - 59817120, + 59820688, + 60261648, + 60261664, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60301872, - 60295744, - 59819120, - 59817872, - 59826592, - 60301456, - 60257088, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60305776, + 60299648, + 59823024, + 59821776, + 59830496, + 60305360, + 60260992, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60210864, + 60214768, 12233648, 12233632, 12233264, @@ -493275,12 +493264,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -493295,60 +493284,60 @@ 12233520, 12233296, 12233760, - 59835792, - 60257728, - 60262800, - 60262832, + 59839696, + 60261632, + 60266704, + 60266736, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60210496, - 60212752, - 60212896, - 60213440, - 60210528, - 59825168, - 59825136, - 60214336, - 59825104, - 59818688, - 59825200, - 59825072, - 60257824, - 60210560, - 60211488, - 60211360, - 60210592, - 60531968, - 60537904, - 60536080, - 60210880, - 60210912, - 60210944, - 60257984, - 60265424, - 60257952, - 60265376, - 60257968 + 60214400, + 60216656, + 60216800, + 60217344, + 60214432, + 59829072, + 59829040, + 60218240, + 59829008, + 59822592, + 59829104, + 59828976, + 60261728, + 60214464, + 60215392, + 60215264, + 60214496, + 60535872, + 60541808, + 60539984, + 60214784, + 60214816, + 60214848, + 60261888, + 60269328, + 60261856, + 60269280, + 60261872 ], "bases": [ { @@ -493413,31 +493402,31 @@ }, { "type_name": "panorama::CHTML::CHTMLHorizontalScrollBar", - "vtable_address": 64989880, - "methods": [ - 60210512, - 60212816, - 60213008, - 60213744, - 60210544, - 59825152, - 59825120, - 60214048, - 59825088, - 59818704, - 59825184, - 59825056, - 60257888, - 60210576, - 60211536, - 60211424, - 60210736, - 60533392, - 60538400, - 60536640, - 60210896, - 60210928, - 60210960 + "vtable_address": 64993784, + "methods": [ + 60214416, + 60216720, + 60216912, + 60217648, + 60214448, + 59829056, + 59829024, + 60217952, + 59828992, + 59822608, + 59829088, + 59828960, + 60261792, + 60214480, + 60215440, + 60215328, + 60214640, + 60537296, + 60542304, + 60540544, + 60214800, + 60214832, + 60214864 ], "bases": [ { @@ -493502,40 +493491,40 @@ }, { "type_name": "panorama::CHTML::CHTMLVerticalScrollBar", - "vtable_address": 64987840, + "vtable_address": 64991744, "methods": [ 12043984, - 59816784, - 60257472, - 60257488, - 59817120, - 59817136, - 59817120, + 59820688, + 60261376, + 60261392, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60301872, - 60295744, - 59819120, - 59817872, - 59826592, - 60301456, - 60257088, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60305776, + 60299648, + 59823024, + 59821776, + 59830496, + 60305360, + 60260992, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60210864, + 60214768, 12233648, 12233632, 12233264, @@ -493543,12 +493532,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -493563,60 +493552,60 @@ 12233520, 12233296, 12233760, - 59835792, - 60257456, - 60262896, - 60262928, + 59839696, + 60261360, + 60266800, + 60266832, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60210496, - 60212752, - 60212896, - 60213440, - 60210528, - 59825168, - 59825136, - 60214336, - 59825104, - 59818688, - 59825200, - 59825072, - 60257552, - 60210560, - 60211488, - 60211360, - 60210592, - 60531968, - 60537904, - 60536080, - 60210880, - 60210912, - 60210944, - 60257712, - 60266080, - 60257680, - 60266032, - 60257696 + 60214400, + 60216656, + 60216800, + 60217344, + 60214432, + 59829072, + 59829040, + 60218240, + 59829008, + 59822592, + 59829104, + 59828976, + 60261456, + 60214464, + 60215392, + 60215264, + 60214496, + 60535872, + 60541808, + 60539984, + 60214784, + 60214816, + 60214848, + 60261616, + 60269984, + 60261584, + 60269936, + 60261600 ], "bases": [ { @@ -493681,31 +493670,31 @@ }, { "type_name": "panorama::CHTML::CHTMLVerticalScrollBar", - "vtable_address": 64988760, - "methods": [ - 60210512, - 60212816, - 60213008, - 60213744, - 60210544, - 59825152, - 59825120, - 60214048, - 59825088, - 59818704, - 59825184, - 59825056, - 60257616, - 60210576, - 60211536, - 60211424, - 60210736, - 60533392, - 60538400, - 60536640, - 60210896, - 60210928, - 60210960 + "vtable_address": 64992664, + "methods": [ + 60214416, + 60216720, + 60216912, + 60217648, + 60214448, + 59829056, + 59829024, + 60217952, + 59828992, + 59822608, + 59829088, + 59828960, + 60261520, + 60214480, + 60215440, + 60215328, + 60214640, + 60537296, + 60542304, + 60540544, + 60214800, + 60214832, + 60214864 ], "bases": [ { @@ -493770,35 +493759,35 @@ }, { "type_name": "panorama::CHTMLSimpleNavigationWrapper", - "vtable_address": 64993144, + "vtable_address": 64997048, "methods": [ 12043984, - 59816784, - 60258016, - 60258032, - 59817120, - 59817136, - 59817120, + 59820688, + 60261920, + 60261936, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 60320224, - 59817872, - 60322240, - 59818928, - 59819024, - 59819120, - 59817872, - 60319056, - 59843248, + 59821776, + 59821776, + 59821776, + 60324128, + 59821776, + 60326144, + 59822832, + 59822928, + 59823024, + 59821776, + 60322960, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60262656, + 59821792, + 59821808, + 59820704, + 59832432, + 60266560, 12233664, 12233696, 12233680, @@ -493811,12 +493800,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -493831,30 +493820,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60258000, - 60261824, - 60261840, + 59839696, + 60261904, + 60265728, + 60265744, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -493889,40 +493878,40 @@ }, { "type_name": "panorama::CHorizontalScrollBar", - "vtable_address": 65008712, + "vtable_address": 65012616, "methods": [ 12043984, - 59816784, - 60531680, - 60531696, - 59817120, - 59817136, - 59817120, + 59820688, + 60535584, + 60535600, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60301872, - 60295744, - 59819120, - 59817872, - 59826592, - 60301456, - 60257088, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60305776, + 60299648, + 59823024, + 59821776, + 59830496, + 60305360, + 60260992, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60210864, + 60214768, 12233648, 12233632, 12233264, @@ -493930,12 +493919,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -493950,60 +493939,60 @@ 12233520, 12233296, 12233760, - 59835792, - 60531664, - 60531984, - 60532048, + 59839696, + 60535568, + 60535888, + 60535952, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60210496, - 60212752, - 60212896, - 60213440, - 60210528, - 59825168, - 59825136, - 60214336, - 59825104, - 59818688, - 59825200, - 59825072, - 60531744, - 60210560, - 60211488, - 60211360, - 60210592, - 60531968, - 60537904, + 60214400, + 60216656, + 60216800, + 60217344, + 60214432, + 59829072, + 59829040, + 60218240, + 59829008, + 59822592, + 59829104, + 59828976, + 60535648, + 60214464, + 60215392, + 60215264, + 60214496, + 60535872, + 60541808, + 60539984, + 60214784, + 60214816, + 60214848, + 60541408, 60536080, - 60210880, - 60210912, - 60210944, - 60537504, - 60532176, - 60531872, - 60531888, - 60531952 + 60535776, + 60535792, + 60535856 ], "bases": [ { @@ -494068,31 +494057,31 @@ }, { "type_name": "panorama::CHorizontalScrollBar", - "vtable_address": 65009632, - "methods": [ - 60210512, - 60212816, - 60213008, - 60213744, - 60210544, - 59825152, - 59825120, - 60214048, - 59825088, - 59818704, - 59825184, - 59825056, - 60531808, - 60210576, - 60211536, - 60211424, - 60210736, - 60533392, - 60538400, - 60536640, - 60210896, - 60210928, - 60210960 + "vtable_address": 65013536, + "methods": [ + 60214416, + 60216720, + 60216912, + 60217648, + 60214448, + 59829056, + 59829024, + 60217952, + 59828992, + 59822608, + 59829088, + 59828960, + 60535712, + 60214480, + 60215440, + 60215328, + 60214640, + 60537296, + 60542304, + 60540544, + 60214800, + 60214832, + 60214864 ], "bases": [ { @@ -494157,35 +494146,35 @@ }, { "type_name": "panorama::CHorizontalSplitter", - "vtable_address": 64953136, + "vtable_address": 64957040, "methods": [ 12043984, - 59816784, - 59687536, - 59687552, - 59817120, - 59817136, - 59817120, + 59820688, + 59691440, + 59691456, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59687696, - 59687728, - 59819120, - 59817872, - 59826592, - 59688592, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59691600, + 59691632, + 59823024, + 59821776, + 59830496, + 59692496, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -494196,14 +494185,14 @@ 12233264, 12233280, 12399392, - 59687584, + 59691488, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -494218,30 +494207,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59687520, - 59688112, - 59688128, + 59839696, + 59691424, + 59692016, + 59692032, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -494276,7 +494265,7 @@ }, { "type_name": "panorama::CImagePanel", - "vtable_address": 64964552, + "vtable_address": 64968456, "methods": [], "bases": [ { @@ -494309,35 +494298,35 @@ }, { "type_name": "panorama::CImagePanel", - "vtable_address": 64994360, + "vtable_address": 64998264, "methods": [ 12043984, - 59816784, - 60334384, - 60334400, - 60356752, - 59817136, - 59817120, - 60334880, - 60343568, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 60338288, + 60338304, + 60360656, + 59821040, + 59821024, + 60338784, + 60347472, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60344048, - 59823152, + 59821792, + 59821808, + 59820704, + 60347952, + 59827056, 12233664, 12233696, 12233680, @@ -494346,16 +494335,16 @@ 12233648, 12233632, 12233264, - 60334432, + 60338336, 12399392, 12233312, - 60341696, - 60356640, - 59825616, - 59825216, - 59836080, + 60345600, + 60360544, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -494365,35 +494354,35 @@ 12233472, 12233488, 12233504, - 60341872, - 60336864, + 60345776, + 60340768, 12233520, 12233296, 12233760, - 59835792, - 60334368, - 60342864, - 60343008, + 59839696, + 60338272, + 60346768, + 60346912, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 60354912, - 23629216, - 60356064, + 60358816, + 23631968, + 60359968, 12233360, 12233536, 12233552, 12233568, 12233584, - 60355472, + 60359376, 12233728, 12233744 ], @@ -494428,35 +494417,35 @@ }, { "type_name": "panorama::CInputForwardingPanel", - "vtable_address": 64995368, + "vtable_address": 64999272, "methods": [ 12043984, - 59816784, - 60360864, - 60360880, - 59817120, - 59817136, - 59817120, + 59820688, + 60364768, + 60364784, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 60363504, - 60363616, - 60363728, - 60363840, - 60363952, - 60364064, - 60364176, - 60364288, - 60364400, - 60364512, - 60364624, - 60364736, + 60367408, + 60367520, + 60367632, + 60367744, + 60367856, + 60367968, + 60368080, + 60368192, + 60368304, + 60368416, + 60368528, + 60368640, 12233184, - 60364896, - 59817904, - 59816800, - 59828528, - 60363360, + 60368800, + 59821808, + 59820704, + 59832432, + 60367264, 12233664, 12233696, 12233680, @@ -494469,12 +494458,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -494489,30 +494478,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60360848, - 60360912, - 60361200, + 59839696, + 60364752, + 60364816, + 60365104, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -494547,53 +494536,53 @@ }, { "type_name": "panorama::CLabel", - "vtable_address": 64996136, + "vtable_address": 65000040, "methods": [ 12043984, - 59816784, - 60365056, - 60365072, - 60419360, - 59817136, - 59817120, - 60376032, - 60377600, - 60427728, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60424192, - 60424624, - 59819120, - 59817872, - 59826592, - 60414000, + 59820688, + 60368960, + 60368976, + 60423264, + 59821040, + 59821024, + 60379936, + 60381504, + 60431632, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60428096, + 60428528, + 59823024, + 59821776, + 59830496, + 60417904, 12233184, - 59817888, - 59817904, - 59816800, - 60411984, - 59823152, + 59821792, + 59821808, + 59820704, + 60415888, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60399264, + 60403168, 12233648, 12233632, 12233264, - 24884288, + 24887296, 12399392, 12233312, - 60399888, - 60418784, - 59825616, - 59825216, - 59836080, + 60403792, + 60422688, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -494608,38 +494597,38 @@ 12233520, 12233296, 12233760, - 59835792, - 60365040, - 60371392, - 60371808, - 60366464, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59839696, + 60368944, + 60375296, + 60375712, + 60370368, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 60427504, - 24892336, - 60370064, + 60431408, + 24895344, + 60373968, 12233360, 12233536, 12233552, 12233568, 12233584, - 60426240, + 60430144, 12233728, 12233744, - 60413088, - 60413136, - 24072672, - 24884304, - 24894384, - 60374320 + 60416992, + 60417040, + 24075424, + 24887312, + 24897392, + 60378224 ], "bases": [ { @@ -494682,9 +494671,9 @@ }, { "type_name": "panorama::CLabel", - "vtable_address": 64996880, + "vtable_address": 65000784, "methods": [ - 60374560 + 60378464 ], "bases": [ { @@ -494727,53 +494716,53 @@ }, { "type_name": "panorama::CLegacyConsoleInput", - "vtable_address": 64974192, + "vtable_address": 64978096, "methods": [ 12043984, - 59816784, - 60084096, - 60084112, - 60635568, - 59817136, - 59817120, - 60633536, - 60634032, - 60096560, - 59703856, - 60097792, - 59817872, - 59817872, - 59827440, - 60632848, - 60591632, - 60632112, - 60592672, - 59826592, - 60631440, + 59820688, + 60088000, + 60088016, + 60639472, + 59821040, + 59821024, + 60637440, + 60637936, + 60100464, + 59707760, + 60101696, + 59821776, + 59821776, + 59831344, + 60636752, + 60595536, + 60636016, + 60596576, + 59830496, + 60635344, 12233184, - 59817888, - 59817904, - 60591376, - 59828528, - 60608576, + 59821792, + 59821808, + 60595280, + 59832432, + 60612480, 12233664, 12233696, 12233680, - 60640048, - 60592960, + 60643952, + 60596864, 12233648, 12233632, 12233264, - 60083824, + 60087728, 12399392, - 60590704, + 60594608, 12233168, - 60646816, - 59825616, - 59825216, - 59836080, + 60650720, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -494788,75 +494777,75 @@ 12233520, 12233296, 12233760, - 59835792, - 60084080, - 60085408, - 60085456, + 59839696, + 60087984, + 60089312, + 60089360, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, - 60083968, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, + 60087872, 12233232, - 60656112, - 59864336, - 59857872, + 60660016, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60592416, - 60590736, - 59687600, - 60083840, - 60083872, - 60590752, - 60651200, - 60649184, - 60083904, - 60592144, - 60083936, - 60084176, - 60590800, - 60590832, - 60590880, - 60604592, - 60603120, - 60651840, - 60650080, - 60650592, - 60603232, - 60604432, - 60603360, - 60603488, - 60603600, - 60652384, - 60603712, - 60603840, - 60603968, - 60648848, - 60624784, - 60625120, - 60604112, - 60617728, - 60618176, - 60618512, - 60619296, - 60604208, - 60618848, - 60619872, - 60604304, - 60089328, - 60087536 + 60596320, + 60594640, + 59691504, + 60087744, + 60087776, + 60594656, + 60655104, + 60653088, + 60087808, + 60596048, + 60087840, + 60088080, + 60594704, + 60594736, + 60594784, + 60608496, + 60607024, + 60655744, + 60653984, + 60654496, + 60607136, + 60608336, + 60607264, + 60607392, + 60607504, + 60656288, + 60607616, + 60607744, + 60607872, + 60652752, + 60628688, + 60629024, + 60608016, + 60621632, + 60622080, + 60622416, + 60623200, + 60608112, + 60622752, + 60623776, + 60608208, + 60093232, + 60091440 ], "bases": [ { @@ -494942,23 +494931,23 @@ }, { "type_name": "panorama::CLegacyConsoleInput", - "vtable_address": 64975232, - "methods": [ - 60085536, - 60085584, - 60097136, - 59703872, - 60098016, - 60083856, - 60083888, - 59687616, - 60593072, - 60592080, - 60651824, - 60649920, - 60083920, - 60592400, - 60083952 + "vtable_address": 64979136, + "methods": [ + 60089440, + 60089488, + 60101040, + 59707776, + 60101920, + 60087760, + 60087792, + 59691520, + 60596976, + 60595984, + 60655728, + 60653824, + 60087824, + 60596304, + 60087856 ], "bases": [ { @@ -495044,37 +495033,37 @@ }, { "type_name": "panorama::CLegacyConsoleInput", - "vtable_address": 64975368, - "methods": [ - 60592064, - 60592096, - 60592912, - 60605648, - 60606048, - 60652352, - 60650576, - 60651184, - 60604896, - 60605888, - 60606176, - 60605296, - 60605408, - 60653024, - 60605024, - 60605520, - 60605152, - 60649056, - 60625568, - 60625552, - 60604704, - 60618160, - 60613712, - 60613152, - 60619840, - 60604800, - 60619264, - 60620528, - 60605760 + "vtable_address": 64979272, + "methods": [ + 60595968, + 60596000, + 60596816, + 60609552, + 60609952, + 60656256, + 60654480, + 60655088, + 60608800, + 60609792, + 60610080, + 60609200, + 60609312, + 60656928, + 60608928, + 60609424, + 60609056, + 60652960, + 60629472, + 60629456, + 60608608, + 60622064, + 60617616, + 60617056, + 60623744, + 60608704, + 60623168, + 60624432, + 60609664 ], "bases": [ { @@ -495160,35 +495149,35 @@ }, { "type_name": "panorama::CMouseScrollRegion", - "vtable_address": 64997000, + "vtable_address": 65000904, "methods": [ 12043984, - 59816784, - 60427952, - 60427968, - 59817120, - 59817136, - 59817120, + 59820688, + 60431856, + 60431872, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60428672, - 60428112, - 60428672, - 60428672, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60432576, + 60432016, + 60432576, + 60432576, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -495201,12 +495190,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -495221,30 +495210,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60427936, - 60428000, - 60428048, + 59839696, + 60431840, + 60431904, + 60431952, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -495279,35 +495268,35 @@ }, { "type_name": "panorama::CMovieCaptions", - "vtable_address": 64997720, + "vtable_address": 65001624, "methods": [ 12043984, - 59816784, - 60431408, - 60431424, - 59817120, - 59817136, - 59817120, + 59820688, + 60435312, + 60435328, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60434432, + 59821792, + 59821808, + 59820704, + 59832432, + 60438336, 12233664, 12233696, 12233680, @@ -495320,12 +495309,12 @@ 12399392, 12233312, 12233168, - 60436592, - 59825616, - 59825216, - 59836080, + 60440496, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -495337,33 +495326,33 @@ 12233504, 12399408, 12399424, - 60431968, + 60435872, 12233296, 12233760, - 59835792, - 60431392, - 60431696, - 60431904, + 59839696, + 60435296, + 60435600, + 60435808, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -495398,35 +495387,35 @@ }, { "type_name": "panorama::CMovieControlPopupBase", - "vtable_address": 65001376, + "vtable_address": 65005280, "methods": [ 12043984, - 59816784, - 28214128, - 21815136, - 59817120, - 59817136, - 59817120, + 59820688, + 28217392, + 21817952, + 59821024, + 59821040, + 59821024, 12233600, - 60440848, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60444752, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -495439,12 +495428,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -495459,30 +495448,30 @@ 12233520, 12233296, 12233760, - 59835792, - 21815120, - 60439648, - 60439680, + 59839696, + 21817936, + 60443552, + 60443584, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -495517,35 +495506,35 @@ }, { "type_name": "panorama::CMovieDebug", - "vtable_address": 64999288, + "vtable_address": 65003192, "methods": [ 12043984, - 59816784, - 60438944, - 60438960, - 59817120, - 59817136, - 59817120, + 59820688, + 60442848, + 60442864, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -495558,12 +495547,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -495578,30 +495567,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60438928, - 60450432, - 60450704, + 59839696, + 60442832, + 60454336, + 60454608, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -495636,35 +495625,35 @@ }, { "type_name": "panorama::CMoviePanel", - "vtable_address": 65000680, + "vtable_address": 65004584, "methods": [ 12043984, - 59816784, - 60438880, - 60438896, - 60446000, - 59817136, - 59817120, - 60439792, - 60476576, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59820688, + 60442784, + 60442800, + 60449904, + 59821040, + 59821024, + 60443696, + 60480480, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60494848, - 59823152, + 59821792, + 59821808, + 59820704, + 60498752, + 59827056, 12233664, 12233696, 12233680, @@ -495677,12 +495666,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -495692,35 +495681,35 @@ 12233472, 12233488, 12233504, - 60480944, - 60479536, + 60484848, + 60483440, 12233520, 12233296, 12233760, - 59835792, - 60438864, - 60478624, - 60479008, + 59839696, + 60442768, + 60482528, + 60482912, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -495755,35 +495744,35 @@ }, { "type_name": "panorama::CMoviePlayer", - "vtable_address": 64999984, + "vtable_address": 65003888, "methods": [ 12043984, - 59816784, - 60439008, - 60439024, - 59817120, - 59817136, - 59817120, + 59820688, + 60442912, + 60442928, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 60477840, - 60475088, - 59817872, - 59827440, - 60484736, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 60481744, + 60478992, + 59821776, + 59831344, + 60488640, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60493024, - 59823152, + 59821792, + 59821808, + 59820704, + 60496928, + 59827056, 12233664, 12233696, 12233680, @@ -495796,12 +495785,12 @@ 12399392, 12233312, 12233168, - 60490432, - 59825616, - 59825216, - 59836080, - 60444848, - 59834912, + 60494336, + 59829520, + 59829120, + 59839984, + 60448752, + 59838816, 12233376, 12233392, 12233408, @@ -495811,35 +495800,35 @@ 12233472, 12233488, 12233504, - 60460096, + 60464000, 12399424, 12233520, 12233296, 12233760, - 59835792, - 60438992, - 60484496, - 60484608, + 59839696, + 60442896, + 60488400, + 60488512, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -495874,35 +495863,35 @@ }, { "type_name": "panorama::CMovieVideoQualityPopup", - "vtable_address": 64998592, + "vtable_address": 65002496, "methods": [ 12043984, - 59816784, - 60438816, - 60438832, - 59817120, - 59817136, - 59817120, + 59820688, + 60442720, + 60442736, + 59821024, + 59821040, + 59821024, 12233600, - 60440848, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60444752, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -495915,12 +495904,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -495935,30 +495924,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60438800, - 60440752, - 60440640, + 59839696, + 60442704, + 60444656, + 60444544, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -496004,35 +495993,35 @@ }, { "type_name": "panorama::CNumberEntry", - "vtable_address": 65003096, + "vtable_address": 65007000, "methods": [ 12043984, - 59816784, - 60504544, - 60504560, - 59817120, - 59817136, - 59817120, + 59820688, + 60508448, + 60508464, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 60508288, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 60512192, + 59847152, 12233184, - 59817888, - 59817904, - 60513312, - 59828528, - 60512880, + 59821792, + 59821808, + 60517216, + 59832432, + 60516784, 12233664, 12233696, 12233680, @@ -496045,12 +496034,12 @@ 12399392, 12233312, 12233168, - 60513440, - 59825616, - 59825216, - 59836080, + 60517344, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -496065,30 +496054,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60504528, - 60504768, - 60504880, + 59839696, + 60508432, + 60508672, + 60508784, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -496123,7 +496112,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64953904, + "vtable_address": 64957808, "methods": [], "bases": [ { @@ -496145,7 +496134,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64955496, + "vtable_address": 64959400, "methods": [], "bases": [ { @@ -496167,7 +496156,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64958512, + "vtable_address": 64962416, "methods": [], "bases": [ { @@ -496189,7 +496178,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64962936, + "vtable_address": 64966840, "methods": [], "bases": [ { @@ -496211,35 +496200,35 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64963736, + "vtable_address": 64967640, "methods": [ 12043984, - 59816784, - 28214128, - 21815136, - 59817120, - 59817136, - 59817120, + 59820688, + 28217392, + 21817952, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -496252,12 +496241,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -496272,30 +496261,30 @@ 12233520, 12233296, 12233760, - 59835792, - 21815120, - 59836832, - 59837392, + 59839696, + 21817936, + 59840736, + 59841296, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -496319,7 +496308,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64969720, + "vtable_address": 64973624, "methods": [], "bases": [ { @@ -496341,7 +496330,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64971208, + "vtable_address": 64975112, "methods": [], "bases": [ { @@ -496363,7 +496352,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64971928, + "vtable_address": 64975832, "methods": [], "bases": [ { @@ -496385,7 +496374,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64975656, + "vtable_address": 64979560, "methods": [], "bases": [ { @@ -496407,7 +496396,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64979496, + "vtable_address": 64983400, "methods": [], "bases": [ { @@ -496429,7 +496418,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64980216, + "vtable_address": 64984120, "methods": [], "bases": [ { @@ -496451,7 +496440,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64995352, + "vtable_address": 64999256, "methods": [], "bases": [ { @@ -496473,7 +496462,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64996984, + "vtable_address": 65000888, "methods": [], "bases": [ { @@ -496495,7 +496484,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 64997704, + "vtable_address": 65001608, "methods": [], "bases": [ { @@ -496517,7 +496506,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65003080, + "vtable_address": 65006984, "methods": [], "bases": [ { @@ -496539,7 +496528,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65003800, + "vtable_address": 65007704, "methods": [], "bases": [ { @@ -496561,7 +496550,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65004520, + "vtable_address": 65008424, "methods": [], "bases": [ { @@ -496583,7 +496572,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65009840, + "vtable_address": 65013744, "methods": [], "bases": [ { @@ -496605,7 +496594,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65012968, + "vtable_address": 65016872, "methods": [], "bases": [ { @@ -496627,7 +496616,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65014520, + "vtable_address": 65018424, "methods": [], "bases": [ { @@ -496649,7 +496638,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65018944, + "vtable_address": 65022848, "methods": [], "bases": [ { @@ -496671,7 +496660,7 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 65019672, + "vtable_address": 65023576, "methods": [], "bases": [ { @@ -496693,34 +496682,34 @@ }, { "type_name": "panorama::CPanoramaVideoPlayer", - "vtable_address": 65024912, - "methods": [ - 60812128, - 60812304, - 60808624, - 60808848, - 60810160, - 60806816, - 60444432, - 60444256, - 60442480, - 60445232, - 60442304, - 60447216, - 60443232, - 60445408, - 60444080, - 60445056, - 60443040, - 60443648, - 60442112, - 60442848, - 60444608, - 60441728, - 60441920, - 60443408, - 60442656, - 60808656 + "vtable_address": 65028816, + "methods": [ + 60816032, + 60816208, + 60812528, + 60812752, + 60814064, + 60810720, + 60448336, + 60448160, + 60446384, + 60449136, + 60446208, + 60451120, + 60447136, + 60449312, + 60447984, + 60448960, + 60446944, + 60447552, + 60446016, + 60446752, + 60448512, + 60445632, + 60445824, + 60447312, + 60446560, + 60812560 ], "bases": [ { @@ -496763,35 +496752,35 @@ }, { "type_name": "panorama::CProgressBar", - "vtable_address": 65003816, + "vtable_address": 65007720, "methods": [ 12043984, - 59816784, - 60513680, - 60513696, - 59817120, - 59817136, - 59817120, + 59820688, + 60517584, + 60517600, + 59821024, + 59821040, + 59821024, 12233600, - 60515200, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60519104, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60522784, + 59821792, + 59821808, + 59820704, + 59832432, + 60526688, 12233664, 12233696, 12233680, @@ -496804,12 +496793,12 @@ 12399392, 12233312, 12233168, - 60523568, - 59825616, - 59825216, - 59836080, + 60527472, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -496821,33 +496810,33 @@ 12233504, 12399408, 12399424, - 60513952, + 60517856, 12233296, 12233760, - 59835792, - 60513664, - 60514352, - 60514432, + 59839696, + 60517568, + 60518256, + 60518336, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -496882,35 +496871,35 @@ }, { "type_name": "panorama::CProgressBarWithMiddle", - "vtable_address": 65004536, + "vtable_address": 65008440, "methods": [ 12043984, - 59816784, - 60524096, - 60524112, - 59817120, - 59817136, - 59817120, + 59820688, + 60528000, + 60528016, + 59821024, + 59821040, + 59821024, 12233600, - 60525280, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60529184, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60530352, + 59821792, + 59821808, + 59820704, + 59832432, + 60534256, 12233664, 12233696, 12233680, @@ -496923,12 +496912,12 @@ 12399392, 12233312, 12233168, - 60530992, - 59825616, - 59825216, - 59836080, + 60534896, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -496943,30 +496932,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60524080, - 60524208, - 60524224, + 59839696, + 60527984, + 60528112, + 60528128, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -497001,35 +496990,35 @@ }, { "type_name": "panorama::CRadioButton", - "vtable_address": 64967504, + "vtable_address": 64971408, "methods": [ 12043984, - 59816784, - 59961952, - 59961968, - 59817120, - 59817136, - 59817120, + 59820688, + 59965856, + 59965872, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59965856, - 59823152, + 59821792, + 59821808, + 59820704, + 59969760, + 59827056, 12233664, 12233696, 12233680, @@ -497042,12 +497031,12 @@ 12399392, 12233312, 12233168, - 59982992, - 59825616, - 59825216, - 59836080, + 59986896, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -497062,30 +497051,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59961936, - 59962768, - 59963680, + 59839696, + 59965840, + 59966672, + 59967584, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, - 59969760, - 59823072, - 59962592, - 59993040, + 59973664, + 59826976, + 59966496, + 59996944, 12233360, 12233536, 12233552, 12233568, 12233584, - 59993024, + 59996928, 12233728, 12233744 ], @@ -497131,35 +497120,35 @@ }, { "type_name": "panorama::CRangeSlider", - "vtable_address": 65012136, + "vtable_address": 65016040, "methods": [ 12043984, - 59816784, - 60564992, - 60565008, - 59817120, - 59817136, - 59817120, + 59820688, + 60568896, + 60568912, + 59821024, + 59821040, + 59821024, 12233600, - 60565424, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60572672, - 60569824, - 59819120, - 59817872, - 59826592, - 60572960, + 60569328, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60576576, + 60573728, + 59823024, + 59821776, + 59830496, + 60576864, 12233184, - 59817888, - 59817904, - 60583840, - 59828528, - 60583424, + 59821792, + 59821808, + 60587744, + 59832432, + 60587328, 12233664, 12233696, 12233680, @@ -497172,12 +497161,12 @@ 12399392, 12233312, 12233168, - 60582896, - 59825616, - 59825216, - 59836080, + 60586800, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -497192,38 +497181,38 @@ 12233520, 12233296, 12233760, - 59835792, - 60564976, - 60565344, - 60565360, + 59839696, + 60568880, + 60569248, + 60569264, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60570128, - 60565232, - 60569440, - 60570640, - 60566704, - 60565200 + 60574032, + 60569136, + 60573344, + 60574544, + 60570608, + 60569104 ], "bases": [ { @@ -497256,35 +497245,35 @@ }, { "type_name": "panorama::CRenderPanel", - "vtable_address": 65018960, + "vtable_address": 65022864, "methods": [ 12043984, - 59816784, - 60672048, - 60672064, - 60674208, - 59817136, - 59817120, + 59820688, + 60675952, + 60675968, + 60678112, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -497297,12 +497286,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -497317,33 +497306,33 @@ 12233520, 12233296, 12233760, - 59835792, - 60672032, - 60672096, - 60672176, + 59839696, + 60675936, + 60676000, + 60676080, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 23621312 + 23624064 ], "bases": [ { @@ -497376,7 +497365,7 @@ }, { "type_name": "panorama::CScrollBar", - "vtable_address": 65005360, + "vtable_address": 65009264, "methods": [], "bases": [ { @@ -497430,40 +497419,40 @@ }, { "type_name": "panorama::CScrollBar", - "vtable_address": 65006472, + "vtable_address": 65010376, "methods": [ 12043984, - 59816784, - 60531296, - 60531312, - 59817120, - 59817136, - 59817120, + 59820688, + 60535200, + 60535216, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60301872, - 60295744, - 59819120, - 59817872, - 59826592, - 60301456, - 60257088, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60305776, + 60299648, + 59823024, + 59821776, + 59830496, + 60305360, + 60260992, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60210864, + 60214768, 12233648, 12233632, 12233264, @@ -497471,12 +497460,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -497491,8 +497480,8 @@ 12233520, 12233296, 12233760, - 59835792, - 60531280 + 59839696, + 60535184 ], "bases": [ { @@ -497546,20 +497535,20 @@ }, { "type_name": "panorama::CScrollBar", - "vtable_address": 65007392, + "vtable_address": 65011296, "methods": [ - 60210512, - 60212816, - 60213008, - 60213744, - 60210544, - 59825152, - 59825120, - 60214048, - 59825088, - 59818704, - 59825184, - 59825056 + 60214416, + 60216720, + 60216912, + 60217648, + 60214448, + 59829056, + 59829024, + 60217952, + 59828992, + 59822608, + 59829088, + 59828960 ], "bases": [ { @@ -497613,35 +497602,35 @@ }, { "type_name": "panorama::CSimpleContextMenu", - "vtable_address": 64977120, + "vtable_address": 64981024, "methods": [ 12043984, - 59816784, - 60123776, - 60123792, - 59817120, - 59817136, - 59817120, + 59820688, + 60127680, + 60127696, + 59821024, + 59821040, + 59821024, 12233600, - 60126496, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60130400, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 60130112, - 59817904, - 59816800, - 59828528, - 59823152, + 60134016, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -497654,12 +497643,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -497674,33 +497663,33 @@ 12233520, 12233296, 12233760, - 59835792, - 60123760, - 60124752, - 60124880, + 59839696, + 60127664, + 60128656, + 60128784, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60124208 + 60128112 ], "bases": [ { @@ -497744,7 +497733,7 @@ }, { "type_name": "panorama::CSlider", - "vtable_address": 65010584, + "vtable_address": 65014488, "methods": [], "bases": [ { @@ -497777,35 +497766,35 @@ }, { "type_name": "panorama::CSlider", - "vtable_address": 65010600, + "vtable_address": 65014504, "methods": [ 12043984, - 59816784, - 60545280, - 60545296, - 59817120, - 59817136, - 59817120, + 59820688, + 60549184, + 60549200, + 59821024, + 59821040, + 59821024, 12233600, - 60545696, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60552688, - 60550224, - 59819120, - 59817872, - 59826592, - 60553056, + 60549600, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60556592, + 60554128, + 59823024, + 59821776, + 59830496, + 60556960, 12233184, - 59817888, - 59817904, - 60564848, - 59828528, - 60563872, + 59821792, + 59821808, + 60568752, + 59832432, + 60567776, 12233664, 12233696, 12233680, @@ -497818,12 +497807,12 @@ 12399392, 12233312, 12233168, - 60562816, - 59825616, - 59825216, - 59836080, + 60566720, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -497838,38 +497827,38 @@ 12233520, 12233296, 12233760, - 59835792, - 60545248, - 60546800, - 60546816, + 59839696, + 60549152, + 60550704, + 60550720, 12233152, - 59826304, - 59826016, - 60563424, - 60563648, - 60563760, - 60563536, - 59821696, - 59821104, + 59830208, + 59829920, + 60567328, + 60567552, + 60567664, + 60567440, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60550512, - 60545648, - 60549824, - 60551248, - 60546960, - 60545632 + 60554416, + 60549552, + 60553728, + 60555152, + 60550864, + 60549536 ], "bases": [ { @@ -497902,35 +497891,35 @@ }, { "type_name": "panorama::CSlottedSlider", - "vtable_address": 65011344, + "vtable_address": 65015248, "methods": [ 12043984, - 59816784, - 60545568, - 60545584, - 59817120, - 59817136, - 59817120, + 59820688, + 60549472, + 60549488, + 59821024, + 59821040, + 59821024, 12233600, - 60547040, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60552688, - 60550224, - 59819120, - 59817872, - 59826592, - 60553056, + 60550944, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60556592, + 60554128, + 59823024, + 59821776, + 59830496, + 60556960, 12233184, - 59817888, - 59817904, - 60564848, - 59828528, - 60564272, + 59821792, + 59821808, + 60568752, + 59832432, + 60568176, 12233664, 12233696, 12233680, @@ -497943,12 +497932,12 @@ 12399392, 12233312, 12233168, - 60562816, - 59825616, - 59825216, - 59836080, + 60566720, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -497963,38 +497952,38 @@ 12233520, 12233296, 12233760, - 59835792, - 60545552, - 60547488, - 60547584, + 59839696, + 60549456, + 60551392, + 60551488, 12233152, - 59826304, - 59826016, - 60563424, - 60563648, - 60563760, - 60563536, - 59821696, - 59821104, + 59830208, + 59829920, + 60567328, + 60567552, + 60567664, + 60567440, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60550896, - 60545648, - 60549824, - 60551248, - 60546960, - 60545632 + 60554800, + 60549552, + 60553728, + 60555152, + 60550864, + 60549536 ], "bases": [ { @@ -498038,7 +498027,7 @@ }, { "type_name": "panorama::CStyleProperty", - "vtable_address": 65027272, + "vtable_address": 65031176, "methods": [], "bases": [], "model": { @@ -498049,27 +498038,27 @@ }, { "type_name": "panorama::CStylePropertyAlign", - "vtable_address": 65034680, + "vtable_address": 65038584, "methods": [ - 60844416, - 60845744, - 60872544, - 60840320, - 60840336, - 60832688, - 60832704, - 60865920, - 60937632, - 60840352, - 60840368, - 60832720, - 60832736, - 60832752, - 60832768, - 60832784, - 60840400, - 60884656, - 60832800 + 60848320, + 60849648, + 60876448, + 60844224, + 60844240, + 60836592, + 60836608, + 60869824, + 60941536, + 60844256, + 60844272, + 60836624, + 60836640, + 60836656, + 60836672, + 60836688, + 60844304, + 60888560, + 60836704 ], "bases": [ { @@ -498091,27 +498080,27 @@ }, { "type_name": "panorama::CStylePropertyAnimationProperties", - "vtable_address": 65033840, + "vtable_address": 65037744, "methods": [ - 60892240, - 60891792, - 60950608, - 60839872, - 60839888, - 60832688, - 60832704, - 60951872, - 60938512, - 60839904, - 60882000, - 60832720, - 60832736, - 60832752, - 60832768, - 60832784, - 60875264, - 60840032, - 60832800 + 60896144, + 60895696, + 60954512, + 60843776, + 60843792, + 60836592, + 60836608, + 60955776, + 60942416, + 60843808, + 60885904, + 60836624, + 60836640, + 60836656, + 60836672, + 60836688, + 60879168, + 60843936, + 60836704 ], "bases": [ { @@ -498133,27 +498122,27 @@ }, { "type_name": "panorama::CStylePropertyBackgroundBlur", - "vtable_address": 65029472, + "vtable_address": 65033376, "methods": [ - 60844096, - 60846016, - 60874112, - 60835120, - 60870816, - 60832688, - 60832704, - 60867424, - 60863088, - 60835008, - 60889424, - 60835088, - 60832736, - 60835232, - 60832768, - 60832784, - 60835136, - 60835200, - 60832800 + 60848000, + 60849920, + 60878016, + 60839024, + 60874720, + 60836592, + 60836608, + 60871328, + 60866992, + 60838912, + 60893328, + 60838992, + 60836640, + 60839136, + 60836672, + 60836688, + 60839040, + 60839104, + 60836704 ], "bases": [ { @@ -498186,27 +498175,27 @@ }, { "type_name": "panorama::CStylePropertyBackgroundColor", - "vtable_address": 65031656, + "vtable_address": 65035560, "methods": [ - 60902304, - 60900304, - 60970912, + 60906208, + 60904208, + 60974816, + 60840576, + 60874592, + 60836592, + 60836608, + 60909008, + 60867408, + 60841184, + 60840560, + 60923984, + 60836640, + 60841200, 60836672, - 60870688, - 60832688, - 60832704, - 60905104, - 60863504, - 60837280, - 60836656, - 60920080, - 60832736, - 60837296, - 60832768, - 60832784, - 60863472, 60836688, - 60832800 + 60867376, + 60840592, + 60836704 ], "bases": [ { @@ -498239,27 +498228,27 @@ }, { "type_name": "panorama::CStylePropertyBackgroundImage", - "vtable_address": 65036528, - "methods": [ - 60899184, - 60899360, - 60963136, - 60838528, - 60960192, - 60961600, - 60896768, - 60963520, - 60856608, - 60843456, - 60931680, - 60856768, - 60856864, - 60843568, - 60832768, - 60832784, - 60929344, - 60838544, - 60832800 + "vtable_address": 65040432, + "methods": [ + 60903088, + 60903264, + 60967040, + 60842432, + 60964096, + 60965504, + 60900672, + 60967424, + 60860512, + 60847360, + 60935584, + 60860672, + 60860768, + 60847472, + 60836672, + 60836688, + 60933248, + 60842448, + 60836704 ], "bases": [ { @@ -498281,27 +498270,27 @@ }, { "type_name": "panorama::CStylePropertyBackgroundImgOpacity", - "vtable_address": 65031824, + "vtable_address": 65035728, "methods": [ - 60844624, - 60845600, - 60873488, - 60838592, - 60838608, - 60832688, - 60832704, - 60859152, - 60861856, - 60838560, - 60880816, - 60832720, - 60832736, - 60838656, - 60832768, - 60832784, - 60838672, - 60838704, - 60832800 + 60848528, + 60849504, + 60877392, + 60842496, + 60842512, + 60836592, + 60836608, + 60863056, + 60865760, + 60842464, + 60884720, + 60836624, + 60836640, + 60842560, + 60836672, + 60836688, + 60842576, + 60842608, + 60836704 ], "bases": [ { @@ -498323,27 +498312,27 @@ }, { "type_name": "panorama::CStylePropertyBlur", - "vtable_address": 65029136, + "vtable_address": 65033040, "methods": [ - 60844080, - 60846032, - 60874112, - 60835120, - 60870816, - 60832688, - 60832704, - 60867424, - 60863088, - 60835008, - 60889424, - 60835088, - 60832736, - 60867472, - 60832768, - 60832784, - 60835136, - 60835200, - 60832800 + 60847984, + 60849936, + 60878016, + 60839024, + 60874720, + 60836592, + 60836608, + 60871328, + 60866992, + 60838912, + 60893328, + 60838992, + 60836640, + 60871376, + 60836672, + 60836688, + 60839040, + 60839104, + 60836704 ], "bases": [ { @@ -498376,27 +498365,27 @@ }, { "type_name": "panorama::CStylePropertyBorder", - "vtable_address": 65037704, + "vtable_address": 65041608, "methods": [ - 60843808, - 60845520, - 60871424, - 60837408, - 60857584, - 60832688, - 60832704, - 60912048, - 60936560, - 60837424, - 60837520, - 60915824, - 60832736, - 60837728, - 60832768, - 60832784, - 60902704, - 60915584, - 60832800 + 60847712, + 60849424, + 60875328, + 60841312, + 60861488, + 60836592, + 60836608, + 60915952, + 60940464, + 60841328, + 60841424, + 60919728, + 60836640, + 60841632, + 60836672, + 60836688, + 60906608, + 60919488, + 60836704 ], "bases": [ { @@ -498418,27 +498407,27 @@ }, { "type_name": "panorama::CStylePropertyBorderBrush", - "vtable_address": 65038712, + "vtable_address": 65042616, "methods": [ - 60901104, - 60908608, - 60971376, - 60837360, - 60860432, - 60832688, - 60832704, - 60904752, - 60863504, - 60837344, - 60836656, - 60920080, - 60832736, - 60837376, - 60832768, - 60832784, - 60863472, + 60905008, + 60912512, + 60975280, + 60841264, + 60864336, + 60836592, + 60836608, + 60908656, + 60867408, + 60841248, + 60840560, + 60923984, + 60836640, + 60841280, + 60836672, 60836688, - 60832800 + 60867376, + 60840592, + 60836704 ], "bases": [ { @@ -498471,27 +498460,27 @@ }, { "type_name": "panorama::CStylePropertyBorderImage", - "vtable_address": 65038880, + "vtable_address": 65042784, "methods": [ - 60854544, - 60891184, - 60897712, - 60841264, - 60841280, - 60832688, - 60832704, - 60934864, - 60862016, - 60841296, - 60843664, - 60925456, - 60895328, - 60841360, - 60832768, - 60832784, - 60927136, - 60927520, - 60832800 + 60858448, + 60895088, + 60901616, + 60845168, + 60845184, + 60836592, + 60836608, + 60938768, + 60865920, + 60845200, + 60847568, + 60929360, + 60899232, + 60845264, + 60836672, + 60836688, + 60931040, + 60931424, + 60836704 ], "bases": [ { @@ -498513,27 +498502,27 @@ }, { "type_name": "panorama::CStylePropertyBorderRadius", - "vtable_address": 65038544, + "vtable_address": 65042448, "methods": [ - 60844240, - 60845456, - 60870992, - 60838112, - 60857424, - 60832688, - 60832704, - 60852432, - 60936240, - 60838144, - 60838224, - 60923856, - 60832736, - 60838416, - 60838128, - 60832784, - 60904560, - 60838512, - 60832800 + 60848144, + 60849360, + 60874896, + 60842016, + 60861328, + 60836592, + 60836608, + 60856336, + 60940144, + 60842048, + 60842128, + 60927760, + 60836640, + 60842320, + 60842032, + 60836688, + 60908464, + 60842416, + 60836704 ], "bases": [ { @@ -498555,27 +498544,27 @@ }, { "type_name": "panorama::CStylePropertyBoxShadow", - "vtable_address": 65037032, - "methods": [ - 60843872, - 60845584, - 60872160, - 60835264, - 60897184, - 60832688, - 60832704, - 60858368, - 60864096, - 60835248, - 60880464, - 60914992, - 60832736, - 60835296, - 60835280, - 60832784, - 60928576, - 60835312, - 60832800 + "vtable_address": 65040936, + "methods": [ + 60847776, + 60849488, + 60876064, + 60839168, + 60901088, + 60836592, + 60836608, + 60862272, + 60868000, + 60839152, + 60884368, + 60918896, + 60836640, + 60839200, + 60839184, + 60836688, + 60932480, + 60839216, + 60836704 ], "bases": [ { @@ -498597,27 +498586,27 @@ }, { "type_name": "panorama::CStylePropertyBrightness", - "vtable_address": 65028632, - "methods": [ - 60844032, - 60846080, - 60874384, - 60834560, - 60834592, - 60832688, - 60832704, - 60859280, - 60861920, - 60834528, - 60881232, - 60832720, - 60832736, - 60834640, - 60834576, - 60832784, - 60834656, - 60834688, - 60832800 + "vtable_address": 65032536, + "methods": [ + 60847936, + 60849984, + 60878288, + 60838464, + 60838496, + 60836592, + 60836608, + 60863184, + 60865824, + 60838432, + 60885136, + 60836624, + 60836640, + 60838544, + 60838480, + 60836688, + 60838560, + 60838592, + 60836704 ], "bases": [ { @@ -498639,27 +498628,27 @@ }, { "type_name": "panorama::CStylePropertyClip", - "vtable_address": 65037536, + "vtable_address": 65041440, "methods": [ - 60844256, - 60845536, - 60871712, - 60835488, - 60876544, - 60832688, - 60832704, - 60864928, - 60864432, - 60868160, - 60868208, - 60918416, - 60832736, - 60835520, - 60835504, - 60832784, - 60928864, - 60835536, - 60832800 + 60848160, + 60849440, + 60875616, + 60839392, + 60880448, + 60836592, + 60836608, + 60868832, + 60868336, + 60872064, + 60872112, + 60922320, + 60836640, + 60839424, + 60839408, + 60836688, + 60932768, + 60839440, + 60836704 ], "bases": [ { @@ -498681,27 +498670,27 @@ }, { "type_name": "panorama::CStylePropertyContextMenuArrowPosition", - "vtable_address": 65035688, + "vtable_address": 65039592, "methods": [ - 60844576, - 60846272, - 60872400, - 60840624, - 60840640, - 60832688, - 60832704, - 60865472, - 60861424, - 60840656, - 60840784, - 60832720, - 60832736, - 60840848, - 60832768, - 60832784, - 60908064, - 60840688, - 60832800 + 60848480, + 60850176, + 60876304, + 60844528, + 60844544, + 60836592, + 60836608, + 60869376, + 60865328, + 60844560, + 60844688, + 60836624, + 60836640, + 60844752, + 60836672, + 60836688, + 60911968, + 60844592, + 60836704 ], "bases": [ { @@ -498745,27 +498734,27 @@ }, { "type_name": "panorama::CStylePropertyContextMenuBodyPosition", - "vtable_address": 65035352, + "vtable_address": 65039256, "methods": [ + 60848464, + 60850208, + 60876304, + 60844528, + 60844544, + 60836592, + 60836608, + 60869376, + 60865328, 60844560, - 60846304, - 60872400, - 60840624, - 60840640, - 60832688, - 60832704, - 60865472, - 60861424, - 60840656, - 60840704, - 60832720, - 60832736, - 60840768, - 60832768, - 60832784, - 60908064, - 60840688, - 60832800 + 60844608, + 60836624, + 60836640, + 60844672, + 60836672, + 60836688, + 60911968, + 60844592, + 60836704 ], "bases": [ { @@ -498809,27 +498798,27 @@ }, { "type_name": "panorama::CStylePropertyContextMenuPosition", - "vtable_address": 65035016, + "vtable_address": 65038920, "methods": [ - 60844544, - 60845648, - 60872464, - 60840432, - 60840448, - 60832688, - 60832704, - 60865520, - 60937472, - 60840464, - 60893680, - 60832720, - 60832736, - 60840608, - 60832768, - 60832784, - 60840512, - 60840576, - 60832800 + 60848448, + 60849552, + 60876368, + 60844336, + 60844352, + 60836592, + 60836608, + 60869424, + 60941376, + 60844368, + 60897584, + 60836624, + 60836640, + 60844512, + 60836672, + 60836688, + 60844416, + 60844480, + 60836704 ], "bases": [ { @@ -498862,27 +498851,27 @@ }, { "type_name": "panorama::CStylePropertyContrast", - "vtable_address": 65028800, + "vtable_address": 65032704, "methods": [ - 60844048, - 60846064, - 60874304, - 60834736, - 60834768, - 60832688, - 60832704, - 60859248, - 60861904, - 60834704, - 60881152, - 60832720, - 60832736, - 60834816, - 60834752, - 60832784, - 60834832, - 60834864, - 60832800 + 60847952, + 60849968, + 60878208, + 60838640, + 60838672, + 60836592, + 60836608, + 60863152, + 60865808, + 60838608, + 60885056, + 60836624, + 60836640, + 60838720, + 60838656, + 60836688, + 60838736, + 60838768, + 60836704 ], "bases": [ { @@ -498904,27 +498893,27 @@ }, { "type_name": "panorama::CStylePropertyCursor", - "vtable_address": 65028968, - "methods": [ - 60844064, - 60846048, - 60874224, - 60834896, - 60834928, - 60832688, - 60832704, - 60867712, - 60867648, - 60834880, - 60881088, - 60832720, - 60832736, - 60834944, - 60834912, - 60832784, - 60834960, - 60834992, - 60832800 + "vtable_address": 65032872, + "methods": [ + 60847968, + 60849952, + 60878128, + 60838800, + 60838832, + 60836592, + 60836608, + 60871616, + 60871552, + 60838784, + 60884992, + 60836624, + 60836640, + 60838848, + 60838816, + 60836688, + 60838864, + 60838896, + 60836704 ], "bases": [ { @@ -498946,27 +498935,27 @@ }, { "type_name": "panorama::CStylePropertyEntranceSound", - "vtable_address": 65036024, - "methods": [ - 60896176, - 60892512, - 60939664, - 60840864, - 60840880, - 60832688, - 60832704, - 60898688, - 60939504, - 60840896, - 60840912, - 60832720, - 60832736, - 60840944, - 60832768, - 60832784, - 60852304, - 60840928, - 60832800 + "vtable_address": 65039928, + "methods": [ + 60900080, + 60896416, + 60943568, + 60844768, + 60844784, + 60836592, + 60836608, + 60902592, + 60943408, + 60844800, + 60844816, + 60836624, + 60836640, + 60844848, + 60836672, + 60836688, + 60856208, + 60844832, + 60836704 ], "bases": [ { @@ -498999,27 +498988,27 @@ }, { "type_name": "panorama::CStylePropertyExitSound", - "vtable_address": 65036192, - "methods": [ - 60895984, - 60896544, - 60939664, - 60840864, - 60840880, - 60832688, - 60832704, - 60898688, - 60939504, - 60840896, - 60840912, - 60832720, - 60832736, - 60840960, - 60832768, - 60832784, - 60852304, - 60840928, - 60832800 + "vtable_address": 65040096, + "methods": [ + 60899888, + 60900448, + 60943568, + 60844768, + 60844784, + 60836592, + 60836608, + 60902592, + 60943408, + 60844800, + 60844816, + 60836624, + 60836640, + 60844864, + 60836672, + 60836688, + 60856208, + 60844832, + 60836704 ], "bases": [ { @@ -499052,27 +499041,27 @@ }, { "type_name": "panorama::CStylePropertyFillColor", - "vtable_address": 65038376, + "vtable_address": 65042280, "methods": [ - 60900704, - 60908208, - 60970816, - 60836672, - 60870688, - 60832688, - 60832704, - 60899712, - 60863504, + 60904608, + 60912112, + 60974720, + 60840576, + 60874592, + 60836592, + 60836608, + 60903616, + 60867408, + 60840544, + 60840560, + 60923984, 60836640, 60836656, - 60920080, - 60832736, - 60832752, - 60832768, - 60832784, - 60863472, + 60836672, 60836688, - 60832800 + 60867376, + 60840592, + 60836704 ], "bases": [ { @@ -499094,27 +499083,27 @@ }, { "type_name": "panorama::CStylePropertyFlowChildren", - "vtable_address": 65033504, + "vtable_address": 65037408, "methods": [ - 60844368, - 60845792, - 60872768, - 60839728, - 60839744, - 60832688, - 60832704, - 60845024, - 60855872, - 60839712, - 60880592, - 60832720, - 60832736, - 60832752, - 60832768, - 60832784, - 60839760, - 60885312, - 60832800 + 60848272, + 60849696, + 60876672, + 60843632, + 60843648, + 60836592, + 60836608, + 60848928, + 60859776, + 60843616, + 60884496, + 60836624, + 60836640, + 60836656, + 60836672, + 60836688, + 60843664, + 60889216, + 60836704 ], "bases": [ { @@ -499136,27 +499125,27 @@ }, { "type_name": "panorama::CStylePropertyFont", - "vtable_address": 65029976, - "methods": [ - 60854624, - 60854672, - 60896976, - 60835760, - 60835776, - 60832688, - 60832704, - 60868400, - 60937952, - 60835840, - 60835920, - 60835792, - 60832736, - 60835936, - 60832768, - 60939872, - 60852208, - 60892688, - 60832800 + "vtable_address": 65033880, + "methods": [ + 60858528, + 60858576, + 60900880, + 60839664, + 60839680, + 60836592, + 60836608, + 60872304, + 60941856, + 60839744, + 60839824, + 60839696, + 60836640, + 60839840, + 60836672, + 60943776, + 60856112, + 60896592, + 60836704 ], "bases": [ { @@ -499178,27 +499167,27 @@ }, { "type_name": "panorama::CStylePropertyForegroundColor", - "vtable_address": 65031152, + "vtable_address": 65035056, "methods": [ - 60901904, - 60909408, - 60970816, - 60836672, - 60870688, - 60832688, - 60832704, - 60899712, - 60863504, + 60905808, + 60913312, + 60974720, + 60840576, + 60874592, + 60836592, + 60836608, + 60903616, + 60867408, + 60840544, + 60840560, + 60923984, 60836640, - 60836656, - 60920080, - 60832736, - 60836704, - 60832768, - 60832784, - 60863472, + 60840608, + 60836672, 60836688, - 60832800 + 60867376, + 60840592, + 60836704 ], "bases": [ { @@ -499231,27 +499220,27 @@ }, { "type_name": "panorama::CStylePropertyHeight", - "vtable_address": 65032496, + "vtable_address": 65036400, "methods": [ - 60844336, - 60845824, - 60873248, - 60839424, - 60930688, - 60832688, - 60832704, - 60865792, - 60860992, - 60839408, - 60880656, - 60907488, - 60832736, - 60839440, - 60832768, - 60832784, - 60904272, - 60905840, - 60832800 + 60848240, + 60849728, + 60877152, + 60843328, + 60934592, + 60836592, + 60836608, + 60869696, + 60864896, + 60843312, + 60884560, + 60911392, + 60836640, + 60843344, + 60836672, + 60836688, + 60908176, + 60909744, + 60836704 ], "bases": [ { @@ -499273,27 +499262,27 @@ }, { "type_name": "panorama::CStylePropertyHueShift", - "vtable_address": 65028296, + "vtable_address": 65032200, "methods": [ - 60844000, - 60846112, - 60874544, - 60834208, - 60834240, - 60832688, - 60832704, - 60867344, - 60861952, - 60834176, - 60881392, - 60832720, - 60832736, - 60834288, - 60834224, - 60832784, - 60834304, - 60834336, - 60832800 + 60847904, + 60850016, + 60878448, + 60838112, + 60838144, + 60836592, + 60836608, + 60871248, + 60865856, + 60838080, + 60885296, + 60836624, + 60836640, + 60838192, + 60838128, + 60836688, + 60838208, + 60838240, + 60836704 ], "bases": [ { @@ -499315,27 +499304,27 @@ }, { "type_name": "panorama::CStylePropertyIgnoreParentFlow", - "vtable_address": 65033672, + "vtable_address": 65037576, "methods": [ - 60844384, - 60845776, - 60872688, - 60839808, - 60839824, - 60832688, - 60832704, - 60866096, - 60855776, - 60839792, - 60880528, - 60832720, - 60832736, - 60832752, - 60832768, - 60832784, - 60839840, - 60885216, - 60832800 + 60848288, + 60849680, + 60876592, + 60843712, + 60843728, + 60836592, + 60836608, + 60870000, + 60859680, + 60843696, + 60884432, + 60836624, + 60836640, + 60836656, + 60836672, + 60836688, + 60843744, + 60889120, + 60836704 ], "bases": [ { @@ -499357,27 +499346,27 @@ }, { "type_name": "panorama::CStylePropertyImageShadow", - "vtable_address": 65037368, - "methods": [ - 60843920, - 60845552, - 60871904, - 60835424, - 60876240, - 60832688, - 60832704, - 60859952, - 60863536, - 60835408, - 60880336, - 60911280, - 60832736, - 60835456, - 60835440, - 60832784, - 60919840, - 60835472, - 60832800 + "vtable_address": 65041272, + "methods": [ + 60847824, + 60849456, + 60875808, + 60839328, + 60880144, + 60836592, + 60836608, + 60863856, + 60867440, + 60839312, + 60884240, + 60915184, + 60836640, + 60839360, + 60839344, + 60836688, + 60923744, + 60839376, + 60836704 ], "bases": [ { @@ -499399,27 +499388,27 @@ }, { "type_name": "panorama::CStylePropertyLayoutPosition", - "vtable_address": 65027288, + "vtable_address": 65031192, "methods": [ - 60844608, - 60845616, - 60874944, - 60832976, - 60832992, - 60832688, - 60832704, - 60865248, - 60865184, - 60833024, - 60833040, - 60832720, - 60832736, - 60833056, - 60833008, - 60832784, - 60833072, - 60833104, - 60832800 + 60848512, + 60849520, + 60878848, + 60836880, + 60836896, + 60836592, + 60836608, + 60869152, + 60869088, + 60836928, + 60836944, + 60836624, + 60836640, + 60836960, + 60836912, + 60836688, + 60836976, + 60837008, + 60836704 ], "bases": [ { @@ -499441,27 +499430,27 @@ }, { "type_name": "panorama::CStylePropertyLineHeight", - "vtable_address": 65030984, + "vtable_address": 65034888, "methods": [ - 60844272, - 60845872, - 60873568, - 60836560, - 60836576, - 60832688, - 60832704, - 60859392, - 60861024, + 60848176, + 60849776, + 60877472, + 60840464, + 60840480, 60836592, - 60888144, - 60907872, - 60832736, - 60836624, - 60832768, - 60832784, - 60904464, - 60906128, - 60832800 + 60836608, + 60863296, + 60864928, + 60840496, + 60892048, + 60911776, + 60836640, + 60840528, + 60836672, + 60836688, + 60908368, + 60910032, + 60836704 ], "bases": [ { @@ -499483,27 +499472,27 @@ }, { "type_name": "panorama::CStylePropertyMargin", - "vtable_address": 65034176, + "vtable_address": 65038080, "methods": [ - 60844400, - 60845760, - 60874992, - 60844672, - 60844688, - 60832688, - 60832704, - 60853648, - 60861504, - 60844704, - 60844736, - 60916624, - 60832736, - 60832752, - 60832768, - 60832784, - 60926656, - 60928272, - 60832800 + 60848304, + 60849664, + 60878896, + 60848576, + 60848592, + 60836592, + 60836608, + 60857552, + 60865408, + 60848608, + 60848640, + 60920528, + 60836640, + 60836656, + 60836672, + 60836688, + 60930560, + 60932176, + 60836704 ], "bases": [ { @@ -499536,27 +499525,27 @@ }, { "type_name": "panorama::CStylePropertyMaxHeight", - "vtable_address": 65033168, + "vtable_address": 65037072, "methods": [ - 60844480, - 60845680, - 60872928, - 60839600, - 60930528, - 60832688, - 60832704, - 60865632, - 60860928, - 60839584, - 60879760, - 60906720, - 60832736, - 60832752, - 60832768, - 60832784, - 60906272, - 60913760, - 60832800 + 60848384, + 60849584, + 60876832, + 60843504, + 60934432, + 60836592, + 60836608, + 60869536, + 60864832, + 60843488, + 60883664, + 60910624, + 60836640, + 60836656, + 60836672, + 60836688, + 60910176, + 60917664, + 60836704 ], "bases": [ { @@ -499578,27 +499567,27 @@ }, { "type_name": "panorama::CStylePropertyMaxWidth", - "vtable_address": 65033000, + "vtable_address": 65036904, "methods": [ - 60844464, - 60845696, - 60873008, - 60839568, - 60930608, - 60832688, - 60832704, - 60865712, - 60860944, - 60839552, - 60879824, - 60906912, - 60832736, - 60832752, - 60832768, - 60832784, - 60906384, - 60913920, - 60832800 + 60848368, + 60849600, + 60876912, + 60843472, + 60934512, + 60836592, + 60836608, + 60869616, + 60864848, + 60843456, + 60883728, + 60910816, + 60836640, + 60836656, + 60836672, + 60836688, + 60910288, + 60917824, + 60836704 ], "bases": [ { @@ -499620,27 +499609,27 @@ }, { "type_name": "panorama::CStylePropertyMinHeight", - "vtable_address": 65032832, + "vtable_address": 65036736, "methods": [ - 60844448, - 60845712, - 60873088, - 60839520, - 60839536, - 60832688, - 60832704, - 60865536, - 60860960, - 60839504, - 60879888, - 60907104, - 60832736, - 60832752, - 60832768, - 60832784, - 60906496, - 60914080, - 60832800 + 60848352, + 60849616, + 60876992, + 60843424, + 60843440, + 60836592, + 60836608, + 60869440, + 60864864, + 60843408, + 60883792, + 60911008, + 60836640, + 60836656, + 60836672, + 60836688, + 60910400, + 60917984, + 60836704 ], "bases": [ { @@ -499662,27 +499651,27 @@ }, { "type_name": "panorama::CStylePropertyMinWidth", - "vtable_address": 65032664, + "vtable_address": 65036568, "methods": [ - 60844432, - 60845728, - 60873168, - 60839472, - 60839488, - 60832688, - 60832704, - 60865584, - 60860976, - 60839456, - 60879952, - 60907296, - 60832736, - 60832752, - 60832768, - 60832784, - 60906608, - 60914240, - 60832800 + 60848336, + 60849632, + 60877072, + 60843376, + 60843392, + 60836592, + 60836608, + 60869488, + 60864880, + 60843360, + 60883856, + 60911200, + 60836640, + 60836656, + 60836672, + 60836688, + 60910512, + 60918144, + 60836704 ], "bases": [ { @@ -499704,27 +499693,27 @@ }, { "type_name": "panorama::CStylePropertyMixBlendMode", - "vtable_address": 65034344, + "vtable_address": 65038248, "methods": [ - 60844208, - 60845904, - 60872640, - 60840080, - 60840096, - 60832688, - 60832704, - 60855280, - 60856416, - 60840064, - 60879632, - 60832720, - 60832736, - 60840112, - 60832768, - 60832784, - 60840144, - 60840176, - 60840048 + 60848112, + 60849808, + 60876544, + 60843984, + 60844000, + 60836592, + 60836608, + 60859184, + 60860320, + 60843968, + 60883536, + 60836624, + 60836640, + 60844016, + 60836672, + 60836688, + 60844048, + 60844080, + 60843952 ], "bases": [ { @@ -499746,27 +499735,27 @@ }, { "type_name": "panorama::CStylePropertyOpacity", - "vtable_address": 65027792, + "vtable_address": 65031696, "methods": [ - 60843792, - 60846256, - 60874800, - 60833664, - 60833696, - 60832688, - 60832704, - 60859360, - 60862000, - 60833632, - 60881552, - 60832720, - 60832736, - 60833744, - 60833680, - 60832784, - 60833760, - 60833792, - 60832800 + 60847696, + 60850160, + 60878704, + 60837568, + 60837600, + 60836592, + 60836608, + 60863264, + 60865904, + 60837536, + 60885456, + 60836624, + 60836640, + 60837648, + 60837584, + 60836688, + 60837664, + 60837696, + 60836704 ], "bases": [ { @@ -499788,27 +499777,27 @@ }, { "type_name": "panorama::CStylePropertyOpacityBrush", - "vtable_address": 65031320, + "vtable_address": 65035224, "methods": [ - 60901504, - 60909008, - 60970816, - 60836672, - 60870688, - 60832688, - 60832704, - 60899712, - 60863504, + 60905408, + 60912912, + 60974720, + 60840576, + 60874592, + 60836592, + 60836608, + 60903616, + 60867408, + 60840544, + 60840560, + 60923984, 60836640, - 60836656, - 60920080, - 60832736, - 60836720, - 60832768, - 60832784, - 60863472, + 60840624, + 60836672, 60836688, - 60832800 + 60867376, + 60840592, + 60836704 ], "bases": [ { @@ -499841,27 +499830,27 @@ }, { "type_name": "panorama::CStylePropertyOpacityMask", - "vtable_address": 65036696, - "methods": [ - 60889552, - 60889632, - 60898080, - 60838944, - 60930848, - 60832688, - 60832704, - 60878992, - 60937328, - 60838720, - 60838816, - 60910128, - 60856960, - 60838960, - 60838928, - 60832784, - 60926432, - 60838992, - 60832800 + "vtable_address": 65040600, + "methods": [ + 60893456, + 60893536, + 60901984, + 60842848, + 60934752, + 60836592, + 60836608, + 60882896, + 60941232, + 60842624, + 60842720, + 60914032, + 60860864, + 60842864, + 60842832, + 60836688, + 60930336, + 60842896, + 60836704 ], "bases": [ { @@ -499883,27 +499872,27 @@ }, { "type_name": "panorama::CStylePropertyOverflow", - "vtable_address": 65029808, - "methods": [ - 60843824, - 60846240, - 60873936, - 60835680, - 60835696, - 60832688, - 60832704, - 60892832, - 60894896, - 60835664, - 60880208, - 60832720, - 60832736, - 60835712, - 60832768, - 60832784, - 60835728, - 60885904, - 60832800 + "vtable_address": 65033712, + "methods": [ + 60847728, + 60850144, + 60877840, + 60839584, + 60839600, + 60836592, + 60836608, + 60896736, + 60898800, + 60839568, + 60884112, + 60836624, + 60836640, + 60839616, + 60836672, + 60836688, + 60839632, + 60889808, + 60836704 ], "bases": [ { @@ -499925,27 +499914,27 @@ }, { "type_name": "panorama::CStylePropertyPadding", - "vtable_address": 65034008, + "vtable_address": 65037912, "methods": [ - 60843840, - 60846224, - 60875088, - 60844832, - 60844848, - 60832688, - 60832704, - 60854096, - 60861680, - 60844864, - 60844896, - 60917424, - 60832736, - 60832752, - 60832768, - 60832784, - 60926896, - 60927968, - 60832800 + 60847744, + 60850128, + 60878992, + 60848736, + 60848752, + 60836592, + 60836608, + 60858000, + 60865584, + 60848768, + 60848800, + 60921328, + 60836640, + 60836656, + 60836672, + 60836688, + 60930800, + 60931872, + 60836704 ], "bases": [ { @@ -499978,27 +499967,27 @@ }, { "type_name": "panorama::CStylePropertyPerspective", - "vtable_address": 65027456, + "vtable_address": 65031360, "methods": [ - 60844288, - 60845856, - 60874896, - 60833344, - 60833360, - 60832688, - 60832704, - 60859184, - 60861872, - 60833296, - 60881712, - 60833328, - 60832736, - 60833408, - 60832768, - 60832784, - 60833424, - 60833456, - 60832800 + 60848192, + 60849760, + 60878800, + 60837248, + 60837264, + 60836592, + 60836608, + 60863088, + 60865776, + 60837200, + 60885616, + 60837232, + 60836640, + 60837312, + 60836672, + 60836688, + 60837328, + 60837360, + 60836704 ], "bases": [ { @@ -500020,27 +500009,27 @@ }, { "type_name": "panorama::CStylePropertyPerspectiveOrigin", - "vtable_address": 65038040, + "vtable_address": 65041944, "methods": [ - 60844304, - 60845488, - 60871248, - 60833232, - 60869248, - 60832688, - 60832704, - 60854928, - 60861168, - 60833200, - 60888336, - 60910896, - 60833248, - 60833264, - 60832768, - 60832784, - 60909968, - 60833280, - 60832800 + 60848208, + 60849392, + 60875152, + 60837136, + 60873152, + 60836592, + 60836608, + 60858832, + 60865072, + 60837104, + 60892240, + 60914800, + 60837152, + 60837168, + 60836672, + 60836688, + 60913872, + 60837184, + 60836704 ], "bases": [ { @@ -500062,27 +500051,27 @@ }, { "type_name": "panorama::CStylePropertyPosition", - "vtable_address": 65037872, - "methods": [ - 60844640, - 60845504, - 60871344, - 60832816, - 60930352, - 60832688, - 60832704, - 60853360, - 60861296, - 60832848, - 60832880, - 60914400, - 60832736, - 60832944, - 60832832, - 60832784, - 60918224, - 60832960, - 60832800 + "vtable_address": 65041776, + "methods": [ + 60848544, + 60849408, + 60875248, + 60836720, + 60934256, + 60836592, + 60836608, + 60857264, + 60865200, + 60836752, + 60836784, + 60918304, + 60836640, + 60836848, + 60836736, + 60836688, + 60922128, + 60836864, + 60836704 ], "bases": [ { @@ -500104,27 +500093,27 @@ }, { "type_name": "panorama::CStylePropertyRotate2DCentered", - "vtable_address": 65028128, + "vtable_address": 65032032, "methods": [ - 60844128, - 60845984, - 60874624, - 60834032, - 60834064, - 60832688, - 60832704, - 60891888, - 60861888, - 60834000, - 60881472, - 60832720, - 60832736, - 60834112, - 60834048, - 60832784, - 60834128, - 60834160, - 60832800 + 60848032, + 60849888, + 60878528, + 60837936, + 60837968, + 60836592, + 60836608, + 60895792, + 60865792, + 60837904, + 60885376, + 60836624, + 60836640, + 60838016, + 60837952, + 60836688, + 60838032, + 60838064, + 60836704 ], "bases": [ { @@ -500146,27 +500135,27 @@ }, { "type_name": "panorama::CStylePropertySaturation", - "vtable_address": 65028464, + "vtable_address": 65032368, "methods": [ - 60844016, - 60846096, - 60874464, - 60834384, - 60834416, - 60832688, - 60832704, - 60859312, - 60861936, - 60834352, - 60881312, - 60832720, - 60832736, - 60834464, - 60834400, - 60832784, - 60834480, - 60834512, - 60832800 + 60847920, + 60850000, + 60878368, + 60838288, + 60838320, + 60836592, + 60836608, + 60863216, + 60865840, + 60838256, + 60885216, + 60836624, + 60836640, + 60838368, + 60838304, + 60836688, + 60838384, + 60838416, + 60836704 ], "bases": [ { @@ -500188,27 +500177,27 @@ }, { "type_name": "panorama::CStylePropertyScale2DCentered", - "vtable_address": 65027960, + "vtable_address": 65031864, "methods": [ - 60843936, - 60846176, - 60874704, - 60833872, - 60870912, - 60832688, - 60832704, - 60892304, - 60863392, - 60833808, - 60888224, - 60832720, - 60832736, - 60833904, - 60833888, - 60832784, - 60833920, - 60833984, - 60832800 + 60847840, + 60850080, + 60878608, + 60837776, + 60874816, + 60836592, + 60836608, + 60896208, + 60867296, + 60837712, + 60892128, + 60836624, + 60836640, + 60837808, + 60837792, + 60836688, + 60837824, + 60837888, + 60836704 ], "bases": [ { @@ -500230,27 +500219,27 @@ }, { "type_name": "panorama::CStylePropertySound", - "vtable_address": 65035856, + "vtable_address": 65039760, "methods": [ - 60895792, - 60896368, - 60939664, - 60840864, - 60840880, - 60832688, - 60832704, - 60898688, - 60939504, - 60840896, - 60840912, - 60832720, - 60832736, - 60832752, - 60832768, - 60832784, - 60852304, - 60840928, - 60832800 + 60899696, + 60900272, + 60943568, + 60844768, + 60844784, + 60836592, + 60836608, + 60902592, + 60943408, + 60844800, + 60844816, + 60836624, + 60836640, + 60836656, + 60836672, + 60836688, + 60856208, + 60844832, + 60836704 ], "bases": [ { @@ -500272,27 +500261,27 @@ }, { "type_name": "panorama::CStylePropertyTextAlign", - "vtable_address": 65030144, - "methods": [ - 60843952, - 60846160, - 60873888, - 60836032, - 60836048, - 60832688, - 60832704, - 60867840, - 60867776, - 60836064, - 60836080, - 60832720, - 60832736, - 60836112, - 60832768, - 60832784, - 60836128, - 60885808, - 60832800 + "vtable_address": 65034048, + "methods": [ + 60847856, + 60850064, + 60877792, + 60839936, + 60839952, + 60836592, + 60836608, + 60871744, + 60871680, + 60839968, + 60839984, + 60836624, + 60836640, + 60840016, + 60836672, + 60836688, + 60840032, + 60889712, + 60836704 ], "bases": [ { @@ -500314,27 +500303,27 @@ }, { "type_name": "panorama::CStylePropertyTextDecoration", - "vtable_address": 65030480, + "vtable_address": 65034384, "methods": [ - 60844144, - 60845968, - 60873744, - 60836288, - 60836304, - 60832688, - 60832704, - 60867280, - 60867216, - 60836272, - 60881024, - 60832720, - 60832736, - 60836320, - 60832768, - 60832784, - 60836336, - 60885600, - 60832800 + 60848048, + 60849872, + 60877648, + 60840192, + 60840208, + 60836592, + 60836608, + 60871184, + 60871120, + 60840176, + 60884928, + 60836624, + 60836640, + 60840224, + 60836672, + 60836688, + 60840240, + 60889504, + 60836704 ], "bases": [ { @@ -500356,27 +500345,27 @@ }, { "type_name": "panorama::CStylePropertyTextDecorationStyle", - "vtable_address": 65030648, - "methods": [ - 60844160, - 60845952, - 60873696, - 60836384, - 60836400, - 60832688, - 60832704, - 60867152, - 60867088, - 60836368, - 60880960, - 60832720, - 60832736, - 60836416, - 60832768, - 60832784, - 60836432, - 60885504, - 60832800 + "vtable_address": 65034552, + "methods": [ + 60848064, + 60849856, + 60877600, + 60840288, + 60840304, + 60836592, + 60836608, + 60871056, + 60870992, + 60840272, + 60884864, + 60836624, + 60836640, + 60840320, + 60836672, + 60836688, + 60840336, + 60889408, + 60836704 ], "bases": [ { @@ -500398,27 +500387,27 @@ }, { "type_name": "panorama::CStylePropertyTextLetterSpacing", - "vtable_address": 65030312, - "methods": [ - 60843888, - 60846192, - 60873792, - 60836176, - 60836192, - 60832688, - 60832704, - 60855648, - 60868048, - 60836160, - 60880144, - 60836208, - 60832736, - 60836224, - 60832768, - 60832784, - 60836240, - 60885696, - 60832800 + "vtable_address": 65034216, + "methods": [ + 60847792, + 60850096, + 60877696, + 60840080, + 60840096, + 60836592, + 60836608, + 60859552, + 60871952, + 60840064, + 60884048, + 60840112, + 60836640, + 60840128, + 60836672, + 60836688, + 60840144, + 60889600, + 60836704 ], "bases": [ { @@ -500440,27 +500429,27 @@ }, { "type_name": "panorama::CStylePropertyTextOverflow", - "vtable_address": 65032160, + "vtable_address": 65036064, "methods": [ - 60844192, - 60845920, - 60873344, - 60839216, - 60839232, - 60832688, - 60832704, - 60866592, - 60937712, - 60839136, - 60888560, - 60839168, - 60832736, - 60839248, - 60832768, - 60832784, - 60839280, - 60839344, - 60832800 + 60848096, + 60849824, + 60877248, + 60843120, + 60843136, + 60836592, + 60836608, + 60870496, + 60941616, + 60843040, + 60892464, + 60843072, + 60836640, + 60843152, + 60836672, + 60836688, + 60843184, + 60843248, + 60836704 ], "bases": [ { @@ -500482,27 +500471,27 @@ }, { "type_name": "panorama::CStylePropertyTextShadow", - "vtable_address": 65037200, + "vtable_address": 65041104, "methods": [ - 60843904, - 60845568, - 60872032, - 60835344, + 60847808, + 60849472, 60875936, - 60832688, - 60832704, - 60859600, - 60863872, - 60835328, - 60880400, - 60911664, - 60832736, - 60835376, - 60835360, - 60832784, - 60919616, - 60835392, - 60832800 + 60839248, + 60879840, + 60836592, + 60836608, + 60863504, + 60867776, + 60839232, + 60884304, + 60915568, + 60836640, + 60839280, + 60839264, + 60836688, + 60923520, + 60839296, + 60836704 ], "bases": [ { @@ -500524,27 +500513,27 @@ }, { "type_name": "panorama::CStylePropertyTextTransform", - "vtable_address": 65030816, + "vtable_address": 65034720, "methods": [ - 60844176, - 60845936, - 60873648, - 60836464, - 60836480, - 60832688, - 60832704, - 60867024, - 60866960, - 60836496, - 60880896, - 60832720, - 60832736, - 60836512, - 60832768, - 60832784, - 60836528, - 60885408, - 60832800 + 60848080, + 60849840, + 60877552, + 60840368, + 60840384, + 60836592, + 60836608, + 60870928, + 60870864, + 60840400, + 60884800, + 60836624, + 60836640, + 60840416, + 60836672, + 60836688, + 60840432, + 60889312, + 60836704 ], "bases": [ { @@ -500566,27 +500555,27 @@ }, { "type_name": "panorama::CStylePropertyTextureSampleMode", - "vtable_address": 65034512, + "vtable_address": 65038416, "methods": [ - 60844224, - 60845888, - 60872592, - 60840208, - 60840224, - 60832688, - 60832704, - 60855120, - 60856288, - 60840192, - 60879568, - 60832720, - 60832736, - 60840240, - 60832768, - 60832784, - 60840272, - 60840304, - 60832800 + 60848128, + 60849792, + 60876496, + 60844112, + 60844128, + 60836592, + 60836608, + 60859024, + 60860192, + 60844096, + 60883472, + 60836624, + 60836640, + 60844144, + 60836672, + 60836688, + 60844176, + 60844208, + 60836704 ], "bases": [ { @@ -500608,27 +500597,27 @@ }, { "type_name": "panorama::CStylePropertyTooltipArrowPosition", - "vtable_address": 65035520, + "vtable_address": 65039424, "methods": [ + 60848432, + 60850192, + 60876304, 60844528, - 60846288, - 60872400, - 60840624, - 60840640, - 60832688, - 60832704, - 60865472, - 60861424, - 60840656, - 60840784, - 60832720, - 60832736, - 60840832, - 60832768, - 60832784, - 60908064, - 60840688, - 60832800 + 60844544, + 60836592, + 60836608, + 60869376, + 60865328, + 60844560, + 60844688, + 60836624, + 60836640, + 60844736, + 60836672, + 60836688, + 60911968, + 60844592, + 60836704 ], "bases": [ { @@ -500672,27 +500661,27 @@ }, { "type_name": "panorama::CStylePropertyTooltipBodyPosition", - "vtable_address": 65035184, + "vtable_address": 65039088, "methods": [ - 60844512, - 60846320, - 60872400, - 60840624, - 60840640, - 60832688, - 60832704, - 60865472, - 60861424, - 60840656, - 60840704, - 60832720, - 60832736, - 60840752, - 60832768, - 60832784, - 60908064, - 60840688, - 60832800 + 60848416, + 60850224, + 60876304, + 60844528, + 60844544, + 60836592, + 60836608, + 60869376, + 60865328, + 60844560, + 60844608, + 60836624, + 60836640, + 60844656, + 60836672, + 60836688, + 60911968, + 60844592, + 60836704 ], "bases": [ { @@ -500736,27 +500725,27 @@ }, { "type_name": "panorama::CStylePropertyTooltipPosition", - "vtable_address": 65034848, + "vtable_address": 65038752, "methods": [ + 60848400, + 60849568, + 60876368, + 60844336, + 60844352, + 60836592, + 60836608, + 60869424, + 60941376, + 60844368, + 60897584, + 60836624, + 60836640, 60844496, - 60845664, - 60872464, - 60840432, - 60840448, - 60832688, - 60832704, - 60865520, - 60937472, - 60840464, - 60893680, - 60832720, - 60832736, - 60840592, - 60832768, - 60832784, - 60840512, - 60840576, - 60832800 + 60836672, + 60836688, + 60844416, + 60844480, + 60836704 ], "bases": [ { @@ -500789,27 +500778,27 @@ }, { "type_name": "panorama::CStylePropertyTransform3D", - "vtable_address": 65036864, + "vtable_address": 65040768, "methods": [ - 60898400, - 60898544, - 60941440, - 60836752, - 60902896, - 60832688, - 60832704, - 60941088, - 60876992, - 60836736, - 60880080, - 60877184, - 60832736, - 60836784, - 60836768, - 60832784, - 60836800, - 60836992, - 60832800 + 60902304, + 60902448, + 60945344, + 60840656, + 60906800, + 60836592, + 60836608, + 60944992, + 60880896, + 60840640, + 60883984, + 60881088, + 60836640, + 60840688, + 60840672, + 60836688, + 60840704, + 60840896, + 60836704 ], "bases": [ { @@ -500831,27 +500820,27 @@ }, { "type_name": "panorama::CStylePropertyTransformOrigin", - "vtable_address": 65038208, - "methods": [ - 60844320, - 60845472, - 60871152, - 60833152, - 60869808, - 60832688, - 60832704, - 60854736, - 60861040, - 60833120, - 60888448, - 60910512, - 60832736, - 60833168, - 60832768, - 60832784, - 60909808, - 60833184, - 60832800 + "vtable_address": 65042112, + "methods": [ + 60848224, + 60849376, + 60875056, + 60837056, + 60873712, + 60836592, + 60836608, + 60858640, + 60864944, + 60837024, + 60892352, + 60914416, + 60836640, + 60837072, + 60836672, + 60836688, + 60913712, + 60837088, + 60836704 ], "bases": [ { @@ -500873,27 +500862,27 @@ }, { "type_name": "panorama::CStylePropertyTransitionProperties", - "vtable_address": 65031488, + "vtable_address": 65035392, "methods": [ - 60892176, - 60891696, - 60942576, - 60837008, - 60837024, - 60832688, - 60832704, - 60943680, - 60938096, - 60837040, - 60881792, - 60832720, - 60832736, - 60837136, - 60832768, - 60832784, - 60875616, - 60837264, - 60832800 + 60896080, + 60895600, + 60946480, + 60840912, + 60840928, + 60836592, + 60836608, + 60947584, + 60942000, + 60840944, + 60885696, + 60836624, + 60836640, + 60841040, + 60836672, + 60836688, + 60879520, + 60841168, + 60836704 ], "bases": [ { @@ -500915,27 +500904,27 @@ }, { "type_name": "panorama::CStylePropertyUIScale", - "vtable_address": 65036360, + "vtable_address": 65040264, "methods": [ - 60844592, - 60845632, - 60872288, - 60840976, - 60876896, - 60832688, - 60832704, - 60860528, - 60865312, - 60840992, - 60841072, - 60832720, - 60832736, - 60841248, - 60832768, - 60832784, - 60841184, - 60889712, - 60832800 + 60848496, + 60849536, + 60876192, + 60844880, + 60880800, + 60836592, + 60836608, + 60864432, + 60869216, + 60844896, + 60844976, + 60836624, + 60836640, + 60845152, + 60836672, + 60836688, + 60845088, + 60893616, + 60836704 ], "bases": [ { @@ -500957,27 +500946,27 @@ }, { "type_name": "panorama::CStylePropertyVisible", - "vtable_address": 65033336, + "vtable_address": 65037240, "methods": [ - 60844352, - 60845808, - 60872848, - 60839632, - 60839648, - 60832688, - 60832704, - 60845360, - 60856240, - 60839616, - 60879696, - 60832720, - 60832736, - 60839664, - 60832768, - 60832784, - 60839680, - 60886912, - 60832800 + 60848256, + 60849712, + 60876752, + 60843536, + 60843552, + 60836592, + 60836608, + 60849264, + 60860144, + 60843520, + 60883600, + 60836624, + 60836640, + 60843568, + 60836672, + 60836688, + 60843584, + 60890816, + 60836704 ], "bases": [ { @@ -500999,27 +500988,27 @@ }, { "type_name": "panorama::CStylePropertyWashColor", - "vtable_address": 65029640, - "methods": [ - 60843856, - 60846208, - 60874032, - 60835568, - 60875184, - 60832688, - 60832704, - 60858240, - 60863520, - 60835552, - 60880272, - 60832720, - 60832736, - 60835600, - 60835584, - 60832784, - 60835616, - 60835648, - 60832800 + "vtable_address": 65033544, + "methods": [ + 60847760, + 60850112, + 60877936, + 60839472, + 60879088, + 60836592, + 60836608, + 60862144, + 60867424, + 60839456, + 60884176, + 60836624, + 60836640, + 60839504, + 60839488, + 60836688, + 60839520, + 60839552, + 60836704 ], "bases": [ { @@ -501041,27 +501030,27 @@ }, { "type_name": "panorama::CStylePropertyWhiteSpace", - "vtable_address": 65031992, + "vtable_address": 65035896, "methods": [ - 60843984, - 60846128, - 60873440, - 60839024, - 60839040, - 60832688, - 60832704, - 60855520, - 60856544, - 60839008, - 60880016, - 60832720, - 60832736, - 60839056, - 60832768, - 60832784, - 60839088, - 60839120, - 60832800 + 60847888, + 60850032, + 60877344, + 60842928, + 60842944, + 60836592, + 60836608, + 60859424, + 60860448, + 60842912, + 60883920, + 60836624, + 60836640, + 60842960, + 60836672, + 60836688, + 60842992, + 60843024, + 60836704 ], "bases": [ { @@ -501083,27 +501072,27 @@ }, { "type_name": "panorama::CStylePropertyWidth", - "vtable_address": 65032328, + "vtable_address": 65036232, "methods": [ - 60844656, - 60845840, - 60873296, - 60839376, - 60930768, - 60832688, - 60832704, - 60865856, - 60861008, - 60839360, - 60880736, - 60907680, - 60832736, - 60839392, - 60832768, - 60832784, - 60904368, - 60905984, - 60832800 + 60848560, + 60849744, + 60877200, + 60843280, + 60934672, + 60836592, + 60836608, + 60869760, + 60864912, + 60843264, + 60884640, + 60911584, + 60836640, + 60843296, + 60836672, + 60836688, + 60908272, + 60909888, + 60836704 ], "bases": [ { @@ -501125,27 +501114,27 @@ }, { "type_name": "panorama::CStylePropertyWorldBlur", - "vtable_address": 65029304, + "vtable_address": 65033208, "methods": [ - 60844112, - 60846000, - 60874112, - 60835120, - 60870816, - 60832688, - 60832704, - 60867424, - 60863088, - 60835008, - 60889424, - 60835088, - 60832736, - 60835216, - 60832768, - 60832784, - 60835136, - 60835200, - 60832800 + 60848016, + 60849904, + 60878016, + 60839024, + 60874720, + 60836592, + 60836608, + 60871328, + 60866992, + 60838912, + 60893328, + 60838992, + 60836640, + 60839120, + 60836672, + 60836688, + 60839040, + 60839104, + 60836704 ], "bases": [ { @@ -501178,27 +501167,27 @@ }, { "type_name": "panorama::CStylePropertyZIndex", - "vtable_address": 65027624, + "vtable_address": 65031528, "methods": [ - 60843968, - 60846144, - 60874848, - 60833504, - 60833520, - 60832688, - 60832704, - 60859344, - 60861984, - 60833472, - 60881632, - 60832720, - 60832736, - 60833568, - 60832768, - 60832784, - 60833584, - 60833616, - 60832800 + 60847872, + 60850048, + 60878752, + 60837408, + 60837424, + 60836592, + 60836608, + 60863248, + 60865888, + 60837376, + 60885536, + 60836624, + 60836640, + 60837472, + 60836672, + 60836688, + 60837488, + 60837520, + 60836704 ], "bases": [ { @@ -501220,35 +501209,35 @@ }, { "type_name": "panorama::CTabButton", - "vtable_address": 65012984, + "vtable_address": 65016888, "methods": [ 12043984, - 59816784, - 60583984, - 60584000, - 59817120, - 59817136, - 59817120, + 59820688, + 60587888, + 60587904, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60586960, - 59823152, + 59821792, + 59821808, + 59820704, + 60590864, + 59827056, 12233664, 12233696, 12233680, @@ -501261,12 +501250,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -501281,30 +501270,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60583968, - 60584096, - 60584848, + 59839696, + 60587872, + 60588000, + 60588752, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, - 60586624, - 59823072, - 59864336, - 59857872, + 60590528, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -501339,35 +501328,35 @@ }, { "type_name": "panorama::CTabContents", - "vtable_address": 65013680, + "vtable_address": 65017584, "methods": [ 12043984, - 59816784, - 60584048, - 60584064, - 59817120, - 59817136, - 59817120, + 59820688, + 60587952, + 60587968, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 60584912, - 59823152, + 59821792, + 59821808, + 59820704, + 60588816, + 59827056, 12233664, 12233696, 12233680, @@ -501380,12 +501369,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -501400,30 +501389,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60584032, - 60584160, - 60585712, + 59839696, + 60587936, + 60588064, + 60589616, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -501458,35 +501447,35 @@ }, { "type_name": "panorama::CTextButton", - "vtable_address": 64966080, + "vtable_address": 64969984, "methods": [ 12043984, - 59816784, - 59961792, - 59961808, - 59817120, - 59817136, - 59817120, + 59820688, + 59965696, + 59965712, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59964432, - 59823152, + 59821792, + 59821808, + 59820704, + 59968336, + 59827056, 12233664, 12233696, 12233680, @@ -501499,12 +501488,12 @@ 12399392, 12233312, 12233168, - 59978608, - 59825616, - 59825216, - 59836080, + 59982512, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -501519,34 +501508,34 @@ 12233520, 12233296, 12233760, - 59835792, - 59961776, - 59962416, - 59962496, + 59839696, + 59965680, + 59966320, + 59966400, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59962592, - 59993040, + 59826976, + 59966496, + 59996944, 12233360, 12233536, 12233552, 12233568, 12233584, - 59993024, + 59996928, 12233728, 12233744, - 59963872, - 59964208 + 59967776, + 59968112 ], "bases": [ { @@ -501590,53 +501579,53 @@ }, { "type_name": "panorama::CTextEntry", - "vtable_address": 65014536, + "vtable_address": 65018440, "methods": [ 12043984, - 59816784, - 60590464, - 60590480, - 60635568, - 59817136, - 59817120, - 60633536, - 60634032, - 60653712, - 59703856, - 60591552, - 59817872, - 59817872, - 59827440, - 60632848, - 60591632, - 60632112, - 60592672, - 59826592, - 60631440, + 59820688, + 60594368, + 60594384, + 60639472, + 59821040, + 59821024, + 60637440, + 60637936, + 60657616, + 59707760, + 60595456, + 59821776, + 59821776, + 59831344, + 60636752, + 60595536, + 60636016, + 60596576, + 59830496, + 60635344, 12233184, - 59817888, - 59817904, - 60591376, - 59828528, - 60608576, + 59821792, + 59821808, + 60595280, + 59832432, + 60612480, 12233664, 12233696, 12233680, - 60640048, - 60592960, + 60643952, + 60596864, 12233648, 12233632, 12233264, - 60083824, + 60087728, 12399392, - 60590704, + 60594608, 12233168, - 60646816, - 59825616, - 59825216, - 59836080, + 60650720, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -501651,73 +501640,73 @@ 12233520, 12233296, 12233760, - 59835792, - 60590448, - 60622496, - 60623808, + 59839696, + 60594352, + 60626400, + 60627712, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, - 60083968, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, + 60087872, 12233232, - 60656112, - 59864336, - 59857872, + 60660016, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60592416, - 60590736, - 59687600, - 60083840, - 60083872, - 60590752, - 60651200, - 60649184, - 60083904, - 60592144, - 60083936, - 60601920, - 60590800, - 60590832, - 60590880, - 60604592, - 60603120, - 60651840, - 60650080, - 60650592, - 60603232, - 60604432, - 60603360, - 60603488, - 60603600, - 60652384, - 60603712, - 60603840, - 60603968, - 60648848, - 60624784, - 60625120, - 60604112, - 60617728, - 60618176, - 60618512, - 60619296, - 60604208, - 60618848, - 60619872, - 60604304 + 60596320, + 60594640, + 59691504, + 60087744, + 60087776, + 60594656, + 60655104, + 60653088, + 60087808, + 60596048, + 60087840, + 60605824, + 60594704, + 60594736, + 60594784, + 60608496, + 60607024, + 60655744, + 60653984, + 60654496, + 60607136, + 60608336, + 60607264, + 60607392, + 60607504, + 60656288, + 60607616, + 60607744, + 60607872, + 60652752, + 60628688, + 60629024, + 60608016, + 60621632, + 60622080, + 60622416, + 60623200, + 60608112, + 60622752, + 60623776, + 60608208 ], "bases": [ { @@ -501781,23 +501770,23 @@ }, { "type_name": "panorama::CTextEntry", - "vtable_address": 65015560, - "methods": [ - 60623792, - 60623856, - 60656096, - 59703872, - 60593248, - 60083856, - 60083888, - 59687616, - 60593072, - 60592080, - 60651824, - 60649920, - 60083920, - 60592400, - 60083952 + "vtable_address": 65019464, + "methods": [ + 60627696, + 60627760, + 60660000, + 59707776, + 60597152, + 60087760, + 60087792, + 59691520, + 60596976, + 60595984, + 60655728, + 60653824, + 60087824, + 60596304, + 60087856 ], "bases": [ { @@ -501861,37 +501850,37 @@ }, { "type_name": "panorama::CTextEntry", - "vtable_address": 65015696, - "methods": [ - 60592064, - 60592096, - 60592912, - 60605648, - 60606048, - 60652352, - 60650576, - 60651184, - 60604896, - 60605888, - 60606176, - 60605296, - 60605408, - 60653024, - 60605024, - 60605520, - 60605152, - 60649056, - 60625568, - 60625552, - 60604704, - 60618160, - 60613712, - 60613152, - 60619840, - 60604800, - 60619264, - 60620528, - 60605760 + "vtable_address": 65019600, + "methods": [ + 60595968, + 60596000, + 60596816, + 60609552, + 60609952, + 60656256, + 60654480, + 60655088, + 60608800, + 60609792, + 60610080, + 60609200, + 60609312, + 60656928, + 60608928, + 60609424, + 60609056, + 60652960, + 60629472, + 60629456, + 60608608, + 60622064, + 60617616, + 60617056, + 60623744, + 60608704, + 60623168, + 60624432, + 60609664 ], "bases": [ { @@ -501955,35 +501944,35 @@ }, { "type_name": "panorama::CTextEntryAutocomplete", - "vtable_address": 65015944, + "vtable_address": 65019848, "methods": [ 12043984, - 59816784, - 60590560, - 60590576, - 59817120, - 59817136, - 59817120, + 59820688, + 60594464, + 60594480, + 59821024, + 59821040, + 59821024, 12233600, - 60620544, - 60622000, - 60597232, - 60598144, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60624448, + 60625904, + 60601136, + 60602048, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -501996,12 +501985,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -502016,30 +502005,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60590544, - 60591088, - 60591104, + 59839696, + 60594448, + 60594992, + 60595008, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -502074,35 +502063,35 @@ }, { "type_name": "panorama::CTextEntryIMEControls", - "vtable_address": 65016640, + "vtable_address": 65020544, "methods": [ 12043984, - 59816784, - 60590624, - 60590640, - 59817120, - 59817136, - 59817120, + 59820688, + 60594528, + 60594544, + 59821024, + 59821040, + 59821024, 12233600, - 60612096, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60616000, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -502115,12 +502104,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -502135,30 +502124,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60590608, - 60597536, - 60597840, + 59839696, + 60594512, + 60601440, + 60601744, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -502193,35 +502182,35 @@ }, { "type_name": "panorama::CTextInputDaisyWheel", - "vtable_address": 65022088, + "vtable_address": 65025992, "methods": [ 12043984, - 59816784, - 60678496, - 60678512, - 59817120, - 59817136, - 59817120, + 59820688, + 60682400, + 60682416, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 60679248, - 60678864, - 60678768, - 60678672, - 60685840, - 60678704, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60683152, + 60682768, + 60682672, + 60682576, + 60689744, + 60682608, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -502234,12 +502223,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -502254,36 +502243,36 @@ 12233520, 12233296, 12233760, - 59835792, - 60678480, - 60712752, - 60713264, + 59839696, + 60682384, + 60716656, + 60717168, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60678736, - 60687120, - 60678880, - 60685984 + 60682640, + 60691024, + 60682784, + 60689888 ], "bases": [ { @@ -502327,35 +502316,35 @@ }, { "type_name": "panorama::CTextInputHandler", - "vtable_address": 65019688, + "vtable_address": 65023592, "methods": [ 12043984, - 59816784, - 28214128, - 21815136, - 59817120, - 59817136, - 59817120, + 59820688, + 28217392, + 21817952, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -502368,12 +502357,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -502388,8 +502377,8 @@ 12233520, 12233296, 12233760, - 59835792, - 21815120 + 59839696, + 21817936 ], "bases": [ { @@ -502422,35 +502411,35 @@ }, { "type_name": "panorama::CTextTooltip", - "vtable_address": 65018224, + "vtable_address": 65022128, "methods": [ 12043984, - 59816784, - 60664544, - 60664560, - 59817120, - 59817136, - 59817120, + 59820688, + 60668448, + 60668464, + 59821024, + 59821040, + 59821024, 12233600, - 60665456, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60669360, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -502463,12 +502452,12 @@ 12399392, 12233312, 12233168, - 60671984, - 59825616, - 59825216, - 59836080, + 60675888, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -502483,34 +502472,34 @@ 12233520, 12233296, 12233760, - 59835792, - 60664528, - 60664624, - 60664688, + 59839696, + 60668432, + 60668528, + 60668592, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 60665376, - 60667648, + 59826976, + 60669280, + 60671552, 12233360, 12233536, 12233552, 12233568, 12233584, - 60665392, + 60669296, 12233728, 12233744, - 28215472, - 60664736 + 28218736, + 60668640 ], "bases": [ { @@ -502554,35 +502543,35 @@ }, { "type_name": "panorama::CToggleButton", - "vtable_address": 64966792, + "vtable_address": 64970696, "methods": [ 12043984, - 59816784, - 59961872, - 59961888, - 59817120, - 59817136, - 59817120, + 59820688, + 59965776, + 59965792, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59965600, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 59821776, + 59821776, + 59969504, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59966752, - 59823152, + 59821792, + 59821808, + 59820704, + 59970656, + 59827056, 12233664, 12233696, 12233680, @@ -502595,12 +502584,12 @@ 12399392, 12233312, 12233168, - 59980528, - 59825616, - 59825216, - 59836080, + 59984432, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -502615,34 +502604,34 @@ 12233520, 12233296, 12233760, - 59835792, - 59961856, - 59962432, - 59962544, + 59839696, + 59965760, + 59966336, + 59966448, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, - 59963248, - 59823072, - 59962592, - 59993040, + 59967152, + 59826976, + 59966496, + 59996944, 12233360, 12233536, 12233552, 12233568, 12233584, - 59993024, + 59996928, 12233728, 12233744, - 59964320, - 59964128 + 59968224, + 59968032 ], "bases": [ { @@ -502686,7 +502675,7 @@ }, { "type_name": "panorama::CTooltip", - "vtable_address": 65017496, + "vtable_address": 65021400, "methods": [], "bases": [ { @@ -502719,35 +502708,35 @@ }, { "type_name": "panorama::CTooltip", - "vtable_address": 65017512, + "vtable_address": 65021416, "methods": [ 12043984, - 59816784, - 60664480, - 60664496, - 59817120, - 59817136, - 59817120, + 59820688, + 60668384, + 60668400, + 59821024, + 59821040, + 59821024, 12233600, - 60665456, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60669360, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -502760,12 +502749,12 @@ 12399392, 12233312, 12233168, - 60671984, - 59825616, - 59825216, - 59836080, + 60675888, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -502780,34 +502769,34 @@ 12233520, 12233296, 12233760, - 59835792, - 60664464, - 60664608, - 60664640, + 59839696, + 60668368, + 60668512, + 60668544, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 28215472, - 60664736 + 28218736, + 60668640 ], "bases": [ { @@ -502840,7 +502829,7 @@ }, { "type_name": "panorama::CTransform3D", - "vtable_address": 65022968, + "vtable_address": 65026872, "methods": [], "bases": [], "model": { @@ -502851,16 +502840,16 @@ }, { "type_name": "panorama::CTransformRotate3D", - "vtable_address": 64405448, + "vtable_address": 64409352, "methods": [ - 23899872, - 23900384, - 23897136, - 23901568, - 23900096, - 23897152, - 23901504, - 23901440 + 23902624, + 23903136, + 23899888, + 23904320, + 23902848, + 23899904, + 23904256, + 23904192 ], "bases": [ { @@ -502882,16 +502871,16 @@ }, { "type_name": "panorama::CTransformScale3D", - "vtable_address": 64405528, + "vtable_address": 64409432, "methods": [ - 23899856, - 23900368, - 23897168, - 23901392, - 23900144, - 23897232, - 23897184, - 23897248 + 23902608, + 23903120, + 23899920, + 23904144, + 23902896, + 23899984, + 23899936, + 23900000 ], "bases": [ { @@ -502913,16 +502902,16 @@ }, { "type_name": "panorama::CTransformSkew3D", - "vtable_address": 65022984, + "vtable_address": 65026888, "methods": [ - 60724768, - 60724784, - 60724640, - 60725088, - 60724800, - 60724672, - 60724656, - 60724688 + 60728672, + 60728688, + 60728544, + 60728992, + 60728704, + 60728576, + 60728560, + 60728592 ], "bases": [ { @@ -502944,16 +502933,16 @@ }, { "type_name": "panorama::CTransformTranslate3D", - "vtable_address": 64388232, + "vtable_address": 64392136, "methods": [ - 23623328, - 23624880, - 23621104, - 23630832, - 23625408, - 23639216, - 23621040, - 23637776 + 23626080, + 23627632, + 23623856, + 23633584, + 23628160, + 23641968, + 23623792, + 23640528 ], "bases": [ { @@ -502975,7 +502964,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138400, + "vtable_address": 63142304, "methods": [ 12238224, 12239760, @@ -503003,13 +502992,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64526096, + "vtable_address": 64530000, "methods": [ - 25516256, - 25518960, - 25952656, - 25951760, - 25648624 + 25519264, + 25521968, + 25955664, + 25954768, + 25651632 ], "bases": [ { @@ -503031,13 +503020,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64494752, + "vtable_address": 64498656, "methods": [ - 24886704, - 24888800, - 24887040, - 24921632, - 24903520 + 24889712, + 24891808, + 24890048, + 24924640, + 24906528 ], "bases": [ { @@ -503059,13 +503048,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64351952, + "vtable_address": 64355856, "methods": [ - 22919440, - 22921136, - 22920832, - 22965248, - 22922976 + 22922256, + 22923952, + 22923648, + 22968064, + 22925792 ], "bases": [ { @@ -503087,13 +503076,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64274864, + "vtable_address": 64278768, "methods": [ - 22439408, - 22440416, - 22440224, - 22463664, - 22440528 + 22442224, + 22443232, + 22443040, + 22466480, + 22443344 ], "bases": [ { @@ -503115,13 +503104,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64001056, + "vtable_address": 64004960, "methods": [ - 18355696, - 18356048, - 18355712, - 18357776, - 18355808 + 18358000, + 18358352, + 18358016, + 18360080, + 18358112 ], "bases": [ { @@ -503143,13 +503132,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64434040, + "vtable_address": 64437944, "methods": [ - 24074496, - 24075936, - 24074848, - 24101920, - 24075040 + 24077248, + 24078688, + 24077600, + 24104672, + 24077792 ], "bases": [ { @@ -503171,7 +503160,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138344, + "vtable_address": 63142248, "methods": [ 12238240, 12239776, @@ -503199,13 +503188,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64181896, + "vtable_address": 64185800, "methods": [ - 21329072, - 21330048, - 21329792, - 21344752, - 21329888 + 21331888, + 21332864, + 21332608, + 21347568, + 21332704 ], "bases": [ { @@ -503227,7 +503216,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63691624, + "vtable_address": 63695528, "methods": [ 16908224, 16909136, @@ -503255,13 +503244,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64433984, + "vtable_address": 64437888, "methods": [ - 24074512, - 24075952, - 24074944, - 24102192, - 24075136 + 24077264, + 24078704, + 24077696, + 24104944, + 24077888 ], "bases": [ { @@ -503283,13 +503272,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64964432, + "vtable_address": 64968336, "methods": [ - 59818560, - 59818672, - 59818576, - 59835216, - 59819968 + 59822464, + 59822576, + 59822480, + 59839120, + 59823872 ], "bases": [ { @@ -503311,13 +503300,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64352120, + "vtable_address": 64356024, "methods": [ - 22919296, - 22921168, - 22920736, - 22964976, - 22921024 + 22922112, + 22923984, + 22923552, + 22967792, + 22923840 ], "bases": [ { @@ -503339,13 +503328,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64274920, + "vtable_address": 64278824, "methods": [ - 22439392, - 22440400, - 22440128, - 22463392, - 22440432 + 22442208, + 22443216, + 22442944, + 22466208, + 22443248 ], "bases": [ { @@ -503367,13 +503356,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64527552, + "vtable_address": 64531456, "methods": [ - 25450640, - 25455264, - 25453264, - 25534736, - 25459920 + 25453648, + 25458272, + 25456272, + 25537744, + 25462928 ], "bases": [ { @@ -503395,13 +503384,13 @@ }, { "type_name": "panorama::CUIEvent >", - "vtable_address": 64983320, + "vtable_address": 64987224, "methods": [ - 60174496, - 60174640, - 60174848, - 60176912, - 60177200 + 60178400, + 60178544, + 60178752, + 60180816, + 60181104 ], "bases": [ { @@ -503423,7 +503412,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63149992, + "vtable_address": 63153896, "methods": [ 12400512, 12400976, @@ -503451,13 +503440,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64471720, + "vtable_address": 64475624, "methods": [ - 24704160, - 24704192, - 24702304, - 24726000, - 24704048 + 24707168, + 24707200, + 24705312, + 24729008, + 24707056 ], "bases": [ { @@ -503479,7 +503468,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63501024, + "vtable_address": 63504928, "methods": [ 14598272, 14598304, @@ -503507,13 +503496,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64955360, + "vtable_address": 64959264, "methods": [ - 59707072, - 59707104, - 59706880, - 59707968, - 59706992 + 59710976, + 59711008, + 59710784, + 59711872, + 59710896 ], "bases": [ { @@ -503535,13 +503524,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64543672, + "vtable_address": 64547576, "methods": [ - 26421936, - 26421984, - 26411248, - 26501040, - 26422144 + 26424944, + 26424992, + 26414256, + 26504048, + 26425152 ], "bases": [ { @@ -503563,13 +503552,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403456, + "vtable_address": 64407360, "methods": [ - 23625920, - 23625952, - 23623520, - 23662624, - 23626832 + 23628672, + 23628704, + 23626272, + 23665376, + 23629584 ], "bases": [ { @@ -503591,13 +503580,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403288, + "vtable_address": 64407192, "methods": [ - 23626560, - 23626608, - 23623744, - 23667248, - 23627072 + 23629312, + 23629360, + 23626496, + 23670000, + 23629824 ], "bases": [ { @@ -503619,13 +503608,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403064, + "vtable_address": 64406968, "methods": [ - 23626288, - 23634976, - 23624032, - 23669024, - 23626928 + 23629040, + 23637728, + 23626784, + 23671776, + 23629680 ], "bases": [ { @@ -503647,13 +503636,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64527272, + "vtable_address": 64531176, "methods": [ - 25459504, - 25496912, - 25453360, - 25536736, - 25460032 + 25462512, + 25499920, + 25456368, + 25539744, + 25463040 ], "bases": [ { @@ -503675,13 +503664,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64421064, + "vtable_address": 64424968, "methods": [ - 23900752, - 23910912, - 23899936, - 23923504, - 23900592 + 23903504, + 23913664, + 23902688, + 23926256, + 23903344 ], "bases": [ { @@ -503703,13 +503692,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403344, + "vtable_address": 64407248, "methods": [ - 23626112, - 23635264, - 23623616, - 23669376, - 23625664 + 23628864, + 23638016, + 23626368, + 23672128, + 23628416 ], "bases": [ { @@ -503731,7 +503720,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138568, + "vtable_address": 63142472, "methods": [ 12242736, 12251760, @@ -503759,13 +503748,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403232, + "vtable_address": 64407136, "methods": [ - 23626672, - 23635056, - 23623840, - 23668688, - 23625808 + 23629424, + 23637808, + 23626592, + 23671440, + 23628560 ], "bases": [ { @@ -503787,7 +503776,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138736, + "vtable_address": 63142640, "methods": [ 12242560, 12242608, @@ -503815,13 +503804,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64352176, + "vtable_address": 64356080, "methods": [ - 22922752, - 22922800, - 22920640, - 22965808, - 22922864 + 22925568, + 22925616, + 22923456, + 22968624, + 22925680 ], "bases": [ { @@ -503843,13 +503832,13 @@ }, { "type_name": "panorama::CUIEvent >", - "vtable_address": 64403512, + "vtable_address": 64407416, "methods": [ - 23626448, - 23626496, - 23632352, - 23668352, - 23660128 + 23629200, + 23629248, + 23635104, + 23671104, + 23662880 ], "bases": [ { @@ -503871,7 +503860,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63149768, + "vtable_address": 63153672, "methods": [ 12402224, 12402272, @@ -503899,7 +503888,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138680, + "vtable_address": 63142584, "methods": [ 12242352, 12242384, @@ -503927,13 +503916,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64144368, + "vtable_address": 64148272, "methods": [ - 20581728, - 20581760, - 20575600, - 20598000, - 20581632 + 20584544, + 20584576, + 20578416, + 20600816, + 20584448 ], "bases": [ { @@ -503955,13 +503944,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64953832, + "vtable_address": 64957736, "methods": [ - 59687952, - 59687984, - 59687760, - 59691568, - 59687856 + 59691856, + 59691888, + 59691664, + 59695472, + 59691760 ], "bases": [ { @@ -503983,13 +503972,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64527720, + "vtable_address": 64531624, "methods": [ - 25459408, - 25459440, - 25453168, - 25535312, - 25459680 + 25462416, + 25462448, + 25456176, + 25538320, + 25462688 ], "bases": [ { @@ -504011,7 +504000,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63149936, + "vtable_address": 63153840, "methods": [ 12402128, 12402160, @@ -504039,13 +504028,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64373928, + "vtable_address": 64377832, "methods": [ - 23499232, - 23499264, - 23498496, - 23504064, - 23499024 + 23501984, + 23502016, + 23501248, + 23506816, + 23501776 ], "bases": [ { @@ -504067,13 +504056,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64981696, + "vtable_address": 64985600, "methods": [ - 60160784, - 60160992, - 60160800, - 60163056, - 60161008 + 60164688, + 60164896, + 60164704, + 60166960, + 60164912 ], "bases": [ { @@ -504095,13 +504084,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039680, + "vtable_address": 65043584, "methods": [ - 61016720, - 61016752, - 61014400, - 61031984, - 61016512 + 61020624, + 61020656, + 61018304, + 61035888, + 61020416 ], "bases": [ { @@ -504123,7 +504112,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63090712, + "vtable_address": 63094616, "methods": [ 12044416, 12044784, @@ -504151,13 +504140,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64198192, + "vtable_address": 64202096, "methods": [ - 21706032, - 21706992, - 21706768, - 21718912, - 21708592 + 21708848, + 21709808, + 21709584, + 21721728, + 21711408 ], "bases": [ { @@ -504179,13 +504168,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64526824, + "vtable_address": 64530728, "methods": [ - 25459568, - 25459616, - 25453488, - 25535968, - 25459296 + 25462576, + 25462624, + 25456496, + 25538976, + 25462304 ], "bases": [ { @@ -504207,13 +504196,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64542440, + "vtable_address": 64546344, "methods": [ - 26422048, - 26422080, - 26411344, - 26496272, - 26421680 + 26425056, + 26425088, + 26414352, + 26499280, + 26424688 ], "bases": [ { @@ -504235,13 +504224,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64526432, + "vtable_address": 64530336, "methods": [ - 25451648, - 25455312, - 25453776, - 25535648, - 25460256 + 25454656, + 25458320, + 25456784, + 25538656, + 25463264 ], "bases": [ { @@ -504263,13 +504252,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64526768, + "vtable_address": 64530672, "methods": [ - 25451360, - 25455280, - 25453584, - 25535024, - 25459792 + 25454368, + 25458288, + 25456592, + 25538032, + 25462800 ], "bases": [ { @@ -504291,13 +504280,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64434208, + "vtable_address": 64438112, "methods": [ - 24074448, - 24075888, - 24074656, - 24103168, - 24076656 + 24077200, + 24078640, + 24077408, + 24105920, + 24079408 ], "bases": [ { @@ -504319,13 +504308,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64198248, + "vtable_address": 64202152, "methods": [ - 21706016, - 21706976, - 21706672, - 21718640, - 21708512 + 21708832, + 21709792, + 21709488, + 21721456, + 21711328 ], "bases": [ { @@ -504347,13 +504336,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64402952, + "vtable_address": 64406856, "methods": [ - 23623408, - 23624944, - 23624256, - 23662336, - 23627184 + 23626160, + 23627696, + 23627008, + 23665088, + 23629936 ], "bases": [ { @@ -504375,13 +504364,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64402896, + "vtable_address": 64406800, "methods": [ - 23623424, - 23624960, - 23624352, - 23661792, - 23627296 + 23626176, + 23627712, + 23627104, + 23664544, + 23630048 ], "bases": [ { @@ -504403,13 +504392,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64514896, + "vtable_address": 64518800, "methods": [ - 25284912, - 25285088, - 25284976, - 25296864, - 25288896 + 25287920, + 25288096, + 25287984, + 25299872, + 25291904 ], "bases": [ { @@ -504431,13 +504420,13 @@ }, { "type_name": "panorama::CUIEvent >", - "vtable_address": 64403680, + "vtable_address": 64407584, "methods": [ - 23623344, - 23624896, - 23632480, - 23662064, - 23659728 + 23626096, + 23627648, + 23635232, + 23664816, + 23662480 ], "bases": [ { @@ -504459,13 +504448,13 @@ }, { "type_name": "panorama::CUIEvent, bool, int, bool>", - "vtable_address": 64471664, + "vtable_address": 64475568, "methods": [ - 24701968, - 24702800, - 24708128, - 24726320, - 24726896 + 24704976, + 24705808, + 24711136, + 24729328, + 24729904 ], "bases": [ { @@ -504487,13 +504476,13 @@ }, { "type_name": "panorama::CUIEvent, char const*>", - "vtable_address": 64403400, + "vtable_address": 64407304, "methods": [ - 23626016, - 23626048, - 23632240, - 23663248, - 23659936 + 23628768, + 23628800, + 23634992, + 23666000, + 23662688 ], "bases": [ { @@ -504515,13 +504504,13 @@ }, { "type_name": "panorama::CUIEvent, char const*>", - "vtable_address": 64964488, + "vtable_address": 64968392, "methods": [ - 59820048, - 59820080, - 59820784, - 59835488, - 59828816 + 59823952, + 59823984, + 59824688, + 59839392, + 59832720 ], "bases": [ { @@ -504543,13 +504532,13 @@ }, { "type_name": "panorama::CUIEvent, v8::Global*>", - "vtable_address": 64542048, + "vtable_address": 64545952, "methods": [ - 26422272, - 26422304, - 26444848, - 26496896, - 26467264 + 26425280, + 26425312, + 26447856, + 26499904, + 26470272 ], "bases": [ { @@ -504571,13 +504560,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65025136, + "vtable_address": 65029040, "methods": [ - 60805216, - 60805616, - 60805424, - 60809872, - 60805872 + 60809120, + 60809520, + 60809328, + 60813776, + 60809776 ], "bases": [ { @@ -504599,13 +504588,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65025248, + "vtable_address": 65029152, "methods": [ - 60805184, - 60805584, - 60805232, - 60809312, - 60805776 + 60809088, + 60809488, + 60809136, + 60813216, + 60809680 ], "bases": [ { @@ -504627,13 +504616,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65025192, + "vtable_address": 65029096, "methods": [ - 60805200, - 60805600, - 60805328, - 60809584, - 60806000 + 60809104, + 60809504, + 60809232, + 60813488, + 60809904 ], "bases": [ { @@ -504655,13 +504644,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403176, + "vtable_address": 64407080, "methods": [ - 23626192, - 23626224, - 23623936, - 23662944, - 23626736 + 23628944, + 23628976, + 23626688, + 23665696, + 23629488 ], "bases": [ { @@ -504683,13 +504672,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64471776, + "vtable_address": 64475680, "methods": [ - 24701952, - 24702784, - 24702208, - 24725712, - 24703936 + 24704960, + 24705792, + 24705216, + 24728720, + 24706944 ], "bases": [ { @@ -504711,13 +504700,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64471832, + "vtable_address": 64475736, "methods": [ - 24701936, - 24702768, - 24702112, - 24725440, - 24703856 + 24704944, + 24705776, + 24705120, + 24728448, + 24706864 ], "bases": [ { @@ -504739,13 +504728,13 @@ }, { "type_name": "panorama::CUIEvent const&>", - "vtable_address": 65039112, + "vtable_address": 65043016, "methods": [ - 60989456, - 60989648, - 60989504, - 60990928, - 60989600 + 60993360, + 60993552, + 60993408, + 60994832, + 60993504 ], "bases": [ { @@ -504767,13 +504756,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64969656, + "vtable_address": 64973560, "methods": [ - 59993328, - 59993440, - 59993344, - 59995744, - 59993456 + 59997232, + 59997344, + 59997248, + 59999648, + 59997360 ], "bases": [ { @@ -504795,13 +504784,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64978664, + "vtable_address": 64982568, "methods": [ - 60131408, - 60131616, - 60131440, - 60132848, - 60131648 + 60135312, + 60135520, + 60135344, + 60136752, + 60135552 ], "bases": [ { @@ -504823,13 +504812,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64622144, + "vtable_address": 64626048, "methods": [ - 28216672, - 28217952, - 28216736, - 28231312, - 28219472 + 28219936, + 28221216, + 28220000, + 28234576, + 28222736 ], "bases": [ { @@ -504851,13 +504840,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64494640, + "vtable_address": 64498544, "methods": [ - 24886736, - 24888832, - 24887232, - 24922192, - 24890384 + 24889744, + 24891840, + 24890240, + 24925200, + 24893392 ], "bases": [ { @@ -504879,13 +504868,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64434152, + "vtable_address": 64438056, "methods": [ - 24074464, - 24075904, - 24074752, - 24103456, - 24076752 + 24077216, + 24078656, + 24077504, + 24106208, + 24079504 ], "bases": [ { @@ -504907,13 +504896,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64494696, + "vtable_address": 64498600, "methods": [ - 24886720, - 24888816, - 24887136, - 24921904, - 24890272 + 24889728, + 24891824, + 24890144, + 24924912, + 24893280 ], "bases": [ { @@ -504935,7 +504924,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63501080, + "vtable_address": 63504984, "methods": [ 14597136, 14597600, @@ -504963,13 +504952,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64351896, + "vtable_address": 64355800, "methods": [ - 22919456, - 22921152, - 22920928, - 22965520, - 22923056 + 22922272, + 22923968, + 22923744, + 22968336, + 22925872 ], "bases": [ { @@ -504991,13 +504980,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403008, + "vtable_address": 64406912, "methods": [ - 23623392, - 23624928, - 23624160, - 23661520, - 23627376 + 23626144, + 23627680, + 23626912, + 23664272, + 23630128 ], "bases": [ { @@ -505019,13 +505008,13 @@ }, { "type_name": "panorama::CUIEvent >", - "vtable_address": 64526488, + "vtable_address": 64530392, "methods": [ - 25451632, - 25455296, - 25453680, - 25534464, - 25460176 + 25454640, + 25458304, + 25456688, + 25537472, + 25463184 ], "bases": [ { @@ -505047,7 +505036,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138456, + "vtable_address": 63142360, "methods": [ 12238208, 12239744, @@ -505075,13 +505064,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64434096, + "vtable_address": 64438000, "methods": [ - 24074480, - 24075920, - 24111408, - 24101648, - 24103744 + 24077232, + 24078672, + 24114160, + 24104400, + 24106496 ], "bases": [ { @@ -505103,13 +505092,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65002768, + "vtable_address": 65006672, "methods": [ - 60439152, - 60439776, - 60459216, - 60453296, - 60447008 + 60443056, + 60443680, + 60463120, + 60457200, + 60450912 ], "bases": [ { @@ -505131,7 +505120,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63149656, + "vtable_address": 63153560, "methods": [ 12402432, 12402464, @@ -505159,13 +505148,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64508480, + "vtable_address": 64512384, "methods": [ - 25206608, - 25206640, - 25224064, - 25222256, - 25222000 + 25209616, + 25209648, + 25227072, + 25225264, + 25225008 ], "bases": [ { @@ -505187,13 +505176,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64994008, + "vtable_address": 64997912, "methods": [ - 60258768, - 60259680, - 60288304, - 60271040, - 60270320 + 60262672, + 60263584, + 60292208, + 60274944, + 60274224 ], "bases": [ { @@ -505215,13 +505204,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65022872, + "vtable_address": 65026776, "methods": [ - 60679152, - 60679184, - 60684192, - 60682352, - 60682128 + 60683056, + 60683088, + 60688096, + 60686256, + 60686032 ], "bases": [ { @@ -505243,7 +505232,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63149880, + "vtable_address": 63153784, "methods": [ 12400528, 12400992, @@ -505271,13 +505260,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64993896, + "vtable_address": 64997800, "methods": [ - 60262992, - 60263024, - 60288592, - 60271312, - 60275568 + 60266896, + 60266928, + 60292496, + 60275216, + 60279472 ], "bases": [ { @@ -505299,13 +505288,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64994120, + "vtable_address": 64998024, "methods": [ - 60263184, - 60263232, - 60290656, - 60275808, - 60276160 + 60267088, + 60267136, + 60294560, + 60279712, + 60280064 ], "bases": [ { @@ -505327,13 +505316,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64993840, + "vtable_address": 64997744, "methods": [ - 60263088, - 60263120, - 60288864, - 60271616, - 60270544 + 60266992, + 60267024, + 60292768, + 60275520, + 60274448 ], "bases": [ { @@ -505355,7 +505344,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63149824, + "vtable_address": 63153728, "methods": [ 12402528, 12402576, @@ -505383,13 +505372,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403568, + "vtable_address": 64407472, "methods": [ - 23626352, - 23635536, - 23679776, - 23672448, - 23672160 + 23629104, + 23638288, + 23682528, + 23675200, + 23674912 ], "bases": [ { @@ -505411,13 +505400,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64433816, + "vtable_address": 64437720, "methods": [ - 24077056, - 24082048, - 24109328, - 24107824, - 24107568 + 24079808, + 24084800, + 24112080, + 24110576, + 24110320 ], "bases": [ { @@ -505439,7 +505428,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138512, + "vtable_address": 63142416, "methods": [ 12242672, 12251680, @@ -505467,13 +505456,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64373984, + "vtable_address": 64377888, "methods": [ - 23499120, - 23499168, - 23504704, - 23504368, - 23503824 + 23501872, + 23501920, + 23507456, + 23507120, + 23506576 ], "bases": [ { @@ -505495,13 +505484,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64433872, + "vtable_address": 64437776, "methods": [ - 24076944, - 24076992, - 24111936, - 24107232, - 24105840 + 24079696, + 24079744, + 24114688, + 24109984, + 24108592 ], "bases": [ { @@ -505523,7 +505512,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63138624, + "vtable_address": 63142528, "methods": [ 12242448, 12242496, @@ -505551,13 +505540,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64433928, + "vtable_address": 64437832, "methods": [ - 24076848, - 24076880, - 24111664, - 24103968, - 24102944 + 24079600, + 24079632, + 24114416, + 24106720, + 24105696 ], "bases": [ { @@ -505579,13 +505568,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039848, + "vtable_address": 65043752, "methods": [ - 61016912, - 61016960, - 61039568, - 61038592, - 61039008 + 61020816, + 61020864, + 61043472, + 61042496, + 61042912 ], "bases": [ { @@ -505607,7 +505596,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63149712, + "vtable_address": 63153616, "methods": [ 12402336, 12402368, @@ -505635,13 +505624,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64981752, + "vtable_address": 64985656, "methods": [ - 60160768, - 60160976, - 60162416, - 60162768, - 60162176 + 60164672, + 60164880, + 60166320, + 60166672, + 60166080 ], "bases": [ { @@ -505663,13 +505652,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64622256, + "vtable_address": 64626160, "methods": [ - 28219376, - 28219408, - 28240768, - 28232432, - 28234656 + 28222640, + 28222672, + 28244032, + 28235696, + 28237920 ], "bases": [ { @@ -505691,13 +505680,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65012880, + "vtable_address": 65016784, "methods": [ - 60565328, - 60565408, - 60567712, - 60568016, - 60567120 + 60569232, + 60569312, + 60571616, + 60571920, + 60571024 ], "bases": [ { @@ -505719,13 +505708,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64434264, + "vtable_address": 64438168, "methods": [ - 24074432, - 24075872, - 24111152, - 24101376, - 24098128 + 24077184, + 24078624, + 24113904, + 24104128, + 24100880 ], "bases": [ { @@ -505747,13 +505736,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64993952, + "vtable_address": 64997856, "methods": [ - 60258784, - 60259696, - 60289136, - 60272592, - 60276432 + 60262688, + 60263600, + 60293040, + 60276496, + 60280336 ], "bases": [ { @@ -505775,13 +505764,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64622088, + "vtable_address": 64625992, "methods": [ - 28219280, - 28219312, - 28240496, - 28231808, - 28231584 + 28222544, + 28222576, + 28243760, + 28235072, + 28234848 ], "bases": [ { @@ -505803,13 +505792,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039960, + "vtable_address": 65043864, "methods": [ - 61014304, - 61016480, - 61039184, - 61032800, - 61038400 + 61018208, + 61020384, + 61043088, + 61036704, + 61042304 ], "bases": [ { @@ -505831,13 +505820,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039904, + "vtable_address": 65043808, "methods": [ - 61014320, - 61016464, - 61039376, - 61032288, - 61038208 + 61018224, + 61020368, + 61043280, + 61036192, + 61042112 ], "bases": [ { @@ -505859,13 +505848,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64994064, + "vtable_address": 64997968, "methods": [ - 60258752, - 60259664, - 60288032, - 60270768, - 60270096 + 60262656, + 60263568, + 60291936, + 60274672, + 60274000 ], "bases": [ { @@ -505887,13 +505876,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64978608, + "vtable_address": 64982512, "methods": [ - 60131424, - 60131632, - 60132560, - 60133136, - 60132304 + 60135328, + 60135536, + 60136464, + 60137040, + 60136208 ], "bases": [ { @@ -505915,13 +505904,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64514840, + "vtable_address": 64518744, "methods": [ - 25284928, - 25285104, - 25303888, - 25297136, - 25296672 + 25287936, + 25288112, + 25306896, + 25300144, + 25299680 ], "bases": [ { @@ -505943,13 +505932,13 @@ }, { "type_name": "panorama::CUIEvent >", - "vtable_address": 64514728, + "vtable_address": 64518632, "methods": [ - 25284960, - 25285136, - 25299472, - 25298864, - 25297984 + 25287968, + 25288144, + 25302480, + 25301872, + 25300992 ], "bases": [ { @@ -505971,13 +505960,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64514784, + "vtable_address": 64518688, "methods": [ - 25284944, - 25285120, - 25304656, - 25298560, - 25297696 + 25287952, + 25288128, + 25307664, + 25301568, + 25300704 ], "bases": [ { @@ -505999,13 +505988,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64514952, + "vtable_address": 64518856, "methods": [ - 25284896, - 25285072, - 25304368, - 25298272, - 25297408 + 25287904, + 25288080, + 25307376, + 25301280, + 25300416 ], "bases": [ { @@ -506027,13 +506016,13 @@ }, { "type_name": "panorama::CUIEvent >", - "vtable_address": 64421120, + "vtable_address": 64425024, "methods": [ - 23899888, - 23900400, - 23922960, - 23923232, - 23925232 + 23902640, + 23903152, + 23925712, + 23925984, + 23927984 ], "bases": [ { @@ -506055,13 +506044,13 @@ }, { "type_name": "panorama::CUIEvent >", - "vtable_address": 64983376, + "vtable_address": 64987280, "methods": [ - 60174480, - 60174656, - 60175696, - 60176640, - 60175440 + 60178384, + 60178560, + 60179600, + 60180544, + 60179344 ], "bases": [ { @@ -506083,13 +506072,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039736, + "vtable_address": 65043640, "methods": [ - 61016624, - 61016656, - 61039888, - 61031376, - 61029760 + 61020528, + 61020560, + 61043792, + 61035280, + 61033664 ], "bases": [ { @@ -506111,13 +506100,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039512, + "vtable_address": 65043416, "methods": [ - 61014368, - 61016496, - 61040384, - 61031088, - 61032560 + 61018272, + 61020400, + 61044288, + 61034992, + 61036464 ], "bases": [ { @@ -506139,13 +506128,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039568, + "vtable_address": 65043472, "methods": [ - 61014352, - 61016432, - 61040208, - 61030272, - 61029536 + 61018256, + 61020336, + 61044112, + 61034176, + 61033440 ], "bases": [ { @@ -506167,13 +506156,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039456, + "vtable_address": 65043360, "methods": [ - 61014384, - 61016416, - 61040560, - 61029984, - 61029312 + 61018288, + 61020320, + 61044464, + 61033888, + 61033216 ], "bases": [ { @@ -506195,13 +506184,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039792, + "vtable_address": 65043696, "methods": [ - 61016816, - 61016848, - 61039728, - 61031680, - 61038832 + 61020720, + 61020752, + 61043632, + 61035584, + 61042736 ], "bases": [ { @@ -506223,13 +506212,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64622200, + "vtable_address": 64626104, "methods": [ - 28216656, - 28217936, - 28240240, - 28231040, - 28230576 + 28219920, + 28221200, + 28243504, + 28234304, + 28233840 ], "bases": [ { @@ -506251,13 +506240,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403120, + "vtable_address": 64407024, "methods": [ - 23623376, - 23624976, - 23689504, - 23661248, - 23660576 + 23626128, + 23627728, + 23692256, + 23664000, + 23663328 ], "bases": [ { @@ -506279,13 +506268,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65022816, + "vtable_address": 65026720, "methods": [ - 60678896, - 60679136, - 60683280, - 60682656, - 60681920 + 60682800, + 60683040, + 60687184, + 60686560, + 60685824 ], "bases": [ { @@ -506307,13 +506296,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64994176, + "vtable_address": 64998080, "methods": [ - 60266992, - 60267808, - 60286896, - 60280128, - 60269888 + 60270896, + 60271712, + 60290800, + 60284032, + 60273792 ], "bases": [ { @@ -506335,13 +506324,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64995056, + "vtable_address": 64998960, "methods": [ - 60334448, - 60334864, - 60337856, - 60337200, - 60337008 + 60338352, + 60338768, + 60341760, + 60341104, + 60340912 ], "bases": [ { @@ -506363,7 +506352,7 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 63150048, + "vtable_address": 63153952, "methods": [ 12401776, 12401808, @@ -506391,13 +506380,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64986776, + "vtable_address": 64990680, "methods": [ - 60225824, - 60225840, - 60230832, - 60232000, - 60229168 + 60229728, + 60229744, + 60234736, + 60235904, + 60233072 ], "bases": [ { @@ -506419,13 +506408,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 65039624, + "vtable_address": 65043528, "methods": [ - 61014336, - 61016448, - 61040048, - 61030560, - 61030848 + 61018240, + 61020352, + 61043952, + 61034464, + 61034752 ], "bases": [ { @@ -506447,13 +506436,13 @@ }, { "type_name": "panorama::CUIEvent", - "vtable_address": 64403624, + "vtable_address": 64407528, "methods": [ - 23623360, - 23624912, - 23689248, - 23660976, - 23660384 + 23626112, + 23627664, + 23692000, + 23663728, + 23663136 ], "bases": [ { @@ -506475,40 +506464,40 @@ }, { "type_name": "panorama::CVerticalScrollBar", - "vtable_address": 65007592, + "vtable_address": 65011496, "methods": [ 12043984, - 59816784, - 60531376, - 60531392, - 59817120, - 59817136, - 59817120, + 59820688, + 60535280, + 60535296, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 60301872, - 60295744, - 59819120, - 59817872, - 59826592, - 60301456, - 60257088, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 60305776, + 60299648, + 59823024, + 59821776, + 59830496, + 60305360, + 60260992, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, 12233712, - 60210864, + 60214768, 12233648, 12233632, 12233264, @@ -506516,12 +506505,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -506536,60 +506525,60 @@ 12233520, 12233296, 12233760, - 59835792, - 60531360, - 60532016, - 60532112, + 59839696, + 60535264, + 60535920, + 60536016, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744, - 60210496, - 60212752, - 60212896, - 60213440, - 60210528, - 59825168, - 59825136, - 60214336, - 59825104, - 59818688, - 59825200, - 59825072, - 60531440, - 60210560, - 60211488, - 60211360, - 60210592, - 60531968, - 60537904, - 60536080, - 60210880, - 60210912, - 60210944, - 60537712, - 60532784, - 60531568, - 60531584, - 60531648 + 60214400, + 60216656, + 60216800, + 60217344, + 60214432, + 59829072, + 59829040, + 60218240, + 59829008, + 59822592, + 59829104, + 59828976, + 60535344, + 60214464, + 60215392, + 60215264, + 60214496, + 60535872, + 60541808, + 60539984, + 60214784, + 60214816, + 60214848, + 60541616, + 60536688, + 60535472, + 60535488, + 60535552 ], "bases": [ { @@ -506654,31 +506643,31 @@ }, { "type_name": "panorama::CVerticalScrollBar", - "vtable_address": 65008512, - "methods": [ - 60210512, - 60212816, - 60213008, - 60213744, - 60210544, - 59825152, - 59825120, - 60214048, - 59825088, - 59818704, - 59825184, - 59825056, - 60531504, - 60210576, - 60211536, - 60211424, - 60210736, - 60533392, - 60538400, - 60536640, - 60210896, - 60210928, - 60210960 + "vtable_address": 65012416, + "methods": [ + 60214416, + 60216720, + 60216912, + 60217648, + 60214448, + 59829056, + 59829024, + 60217952, + 59828992, + 59822608, + 59829088, + 59828960, + 60535408, + 60214480, + 60215440, + 60215328, + 60214640, + 60537296, + 60542304, + 60540544, + 60214800, + 60214832, + 60214864 ], "bases": [ { @@ -506743,35 +506732,35 @@ }, { "type_name": "panorama::CVerticalScrollForwardingPanel", - "vtable_address": 65009856, + "vtable_address": 65013760, "methods": [ 12043984, - 59816784, - 60541968, - 60541984, - 59817120, - 59817136, - 59817120, + 59820688, + 60545872, + 60545888, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 60544816, - 59817872, - 59817872, - 59817872, - 59817872, - 60544544, - 59818928, - 59819024, - 59819120, - 59817872, - 60545152, - 59843248, + 60548720, + 59821776, + 59821776, + 59821776, + 59821776, + 60548448, + 59822832, + 59822928, + 59823024, + 59821776, + 60549056, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 60544400, + 59821792, + 59821808, + 59820704, + 59832432, + 60548304, 12233664, 12233696, 12233680, @@ -506784,12 +506773,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -506804,30 +506793,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60541952, - 60542016, - 60542112, + 59839696, + 60545856, + 60545920, + 60546016, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -506862,35 +506851,35 @@ }, { "type_name": "panorama::CVerticalSplitter", - "vtable_address": 64952440, + "vtable_address": 64956344, "methods": [ 12043984, - 59816784, - 59687456, - 59687472, - 59817120, - 59817136, - 59817120, + 59820688, + 59691360, + 59691376, + 59821024, + 59821040, + 59821024, 12233600, 12233616, - 59817872, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59687632, - 59687664, - 59819120, - 59817872, - 59826592, - 59689280, + 59821776, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59691536, + 59691568, + 59823024, + 59821776, + 59830496, + 59693184, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -506901,14 +506890,14 @@ 12233264, 12233280, 12399392, - 59687504, + 59691408, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -506923,30 +506912,30 @@ 12233520, 12233296, 12233760, - 59835792, - 59687440, - 59688048, - 59688064, + 59839696, + 59691344, + 59691952, + 59691968, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -506981,22 +506970,22 @@ }, { "type_name": "panorama::CVideoPlayerAudioRenderer", - "vtable_address": 65024760, + "vtable_address": 65028664, "methods": [ - 60807136, - 60805632, - 60804592, - 60804640, - 60804672, - 60804768, - 60804800, - 60804864, - 60804928, - 60804960, - 60805072, - 60805104, - 60807344, - 60807552 + 60811040, + 60809536, + 60808496, + 60808544, + 60808576, + 60808672, + 60808704, + 60808768, + 60808832, + 60808864, + 60808976, + 60809008, + 60811248, + 60811456 ], "bases": [ { @@ -507018,9 +507007,9 @@ }, { "type_name": "panorama::CVideoPlayerEventDispatcher", - "vtable_address": 65024888, + "vtable_address": 65028792, "methods": [ - 60807776 + 60811680 ], "bases": [ { @@ -507042,11 +507031,11 @@ }, { "type_name": "panorama::CVideoPlayerVideoRenderer", - "vtable_address": 65024720, + "vtable_address": 65028624, "methods": [ - 60807600, - 60804544, - 60805520 + 60811504, + 60808448, + 60809424 ], "bases": [ { @@ -507068,35 +507057,35 @@ }, { "type_name": "panorama::CVolumeSliderPopup", - "vtable_address": 65002072, + "vtable_address": 65005976, "methods": [ 12043984, - 59816784, - 60438752, - 60438768, - 59817120, - 59817136, - 59817120, + 59820688, + 60442656, + 60442672, + 59821024, + 59821040, + 59821024, 12233600, - 60440848, - 60447392, - 59817872, - 59817872, - 59817872, - 59817872, - 59827440, - 59818928, - 59819024, - 59819120, - 59817872, - 59826592, - 59843248, + 60444752, + 60451296, + 59821776, + 59821776, + 59821776, + 59821776, + 59831344, + 59822832, + 59822928, + 59823024, + 59821776, + 59830496, + 59847152, 12233184, - 59817888, - 59817904, - 59816800, - 59828528, - 59823152, + 59821792, + 59821808, + 59820704, + 59832432, + 59827056, 12233664, 12233696, 12233680, @@ -507109,12 +507098,12 @@ 12399392, 12233312, 12233168, - 59908352, - 59825616, - 59825216, - 59836080, + 59912256, + 59829520, + 59829120, + 59839984, 12233216, - 59834912, + 59838816, 12233376, 12233392, 12233408, @@ -507129,30 +507118,30 @@ 12233520, 12233296, 12233760, - 59835792, - 60438736, - 60439664, - 60439728, + 59839696, + 60442640, + 60443568, + 60443632, 12233152, - 59826304, - 59826016, - 59844848, - 59848432, - 59846544, - 59850304, - 59821696, - 59821104, + 59830208, + 59829920, + 59848752, + 59852336, + 59850448, + 59854208, + 59825600, + 59825008, 12233200, 12233232, - 59823072, - 59864336, - 59857872, + 59826976, + 59868240, + 59861776, 12233360, 12233536, 12233552, 12233568, 12233584, - 59863728, + 59867632, 12233728, 12233744 ], @@ -507198,7 +507187,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 63089992, + "vtable_address": 63093896, "methods": [], "bases": [], "model": { @@ -507209,7 +507198,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 63090008, + "vtable_address": 63093912, "methods": [], "bases": [], "model": { @@ -507220,7 +507209,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 63144560, + "vtable_address": 63148464, "methods": [], "bases": [], "model": { @@ -507231,40 +507220,40 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 63999672, + "vtable_address": 64003576, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9231520 + "offset_to_top": 9231584 } } }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64388216, + "vtable_address": 64392120, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9345760 + "offset_to_top": 9345824 } } }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64608544, + "vtable_address": 64612448, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9412096 + "offset_to_top": 9412160 } } }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64952424, + "vtable_address": 64956328, "methods": [], "bases": [], "model": { @@ -507275,7 +507264,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64954648, + "vtable_address": 64958552, "methods": [], "bases": [], "model": { @@ -507286,7 +507275,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64963720, + "vtable_address": 64967624, "methods": [], "bases": [], "model": { @@ -507297,7 +507286,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64968944, + "vtable_address": 64972848, "methods": [], "bases": [], "model": { @@ -507308,7 +507297,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64980984, + "vtable_address": 64984888, "methods": [], "bases": [], "model": { @@ -507319,7 +507308,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64981896, + "vtable_address": 64985800, "methods": [], "bases": [], "model": { @@ -507330,7 +507319,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64987824, + "vtable_address": 64991728, "methods": [], "bases": [], "model": { @@ -507341,7 +507330,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64994344, + "vtable_address": 64998248, "methods": [], "bases": [], "model": { @@ -507352,7 +507341,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 64998576, + "vtable_address": 65002480, "methods": [], "bases": [], "model": { @@ -507363,7 +507352,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 65012120, + "vtable_address": 65016024, "methods": [], "bases": [], "model": { @@ -507374,7 +507363,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 65020680, + "vtable_address": 65024584, "methods": [], "bases": [], "model": { @@ -507385,7 +507374,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 65024704, + "vtable_address": 65028608, "methods": [], "bases": [], "model": { @@ -507396,7 +507385,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 65039096, + "vtable_address": 65043000, "methods": [], "bases": [], "model": { @@ -507407,7 +507396,7 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 65039440, + "vtable_address": 65043344, "methods": [], "bases": [], "model": { @@ -507418,7 +507407,7 @@ }, { "type_name": "sdt", - "vtable_address": 64705072, + "vtable_address": 64708976, "methods": [], "bases": [], "model": { @@ -507429,7 +507418,7 @@ }, { "type_name": "sdt", - "vtable_address": 64705200, + "vtable_address": 64709104, "methods": [], "bases": [], "model": { @@ -507440,18 +507429,18 @@ }, { "type_name": "sdt", - "vtable_address": 64705240, + "vtable_address": 64709144, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10908121 + "offset_to_top": 10908132 } } }, { "type_name": "sdt", - "vtable_address": 64705696, + "vtable_address": 64709600, "methods": [], "bases": [], "model": { @@ -507462,29 +507451,29 @@ }, { "type_name": "sdt", - "vtable_address": 64706032, + "vtable_address": 64709936, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10950080 + "offset_to_top": 10950091 } } }, { "type_name": "sdt", - "vtable_address": 64708472, + "vtable_address": 64712376, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10974451 + "offset_to_top": 10974462 } } }, { "type_name": "sdt", - "vtable_address": 64710416, + "vtable_address": 64714320, "methods": [], "bases": [], "model": { @@ -507495,18 +507484,18 @@ }, { "type_name": "sdt", - "vtable_address": 64712968, + "vtable_address": 64716872, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10995214 + "offset_to_top": 10995225 } } }, { "type_name": "sdt", - "vtable_address": 64726920, + "vtable_address": 64730824, "methods": [], "bases": [], "model": { @@ -507517,7 +507506,7 @@ }, { "type_name": "sdt", - "vtable_address": 64727368, + "vtable_address": 64731272, "methods": [], "bases": [], "model": { @@ -507528,7 +507517,7 @@ }, { "type_name": "sdt", - "vtable_address": 64727528, + "vtable_address": 64731432, "methods": [], "bases": [], "model": { @@ -507539,7 +507528,7 @@ }, { "type_name": "sdt", - "vtable_address": 64727816, + "vtable_address": 64731720, "methods": [], "bases": [], "model": { @@ -507550,18 +507539,18 @@ }, { "type_name": "sdt", - "vtable_address": 64727856, + "vtable_address": 64731760, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11021181 + "offset_to_top": 11021192 } } }, { "type_name": "sdt", - "vtable_address": 64727984, + "vtable_address": 64731888, "methods": [], "bases": [], "model": { @@ -507572,7 +507561,7 @@ }, { "type_name": "sdt", - "vtable_address": 64728808, + "vtable_address": 64732712, "methods": [], "bases": [], "model": { @@ -507583,40 +507572,40 @@ }, { "type_name": "sdt", - "vtable_address": 64729416, + "vtable_address": 64733320, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10884353 + "offset_to_top": 10884364 } } }, { "type_name": "sdt", - "vtable_address": 64729456, + "vtable_address": 64733360, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11021181 + "offset_to_top": 11021192 } } }, { "type_name": "sdt", - "vtable_address": 64729624, + "vtable_address": 64733528, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11099339 + "offset_to_top": 11099350 } } }, { "type_name": "sdt", - "vtable_address": 64729664, + "vtable_address": 64733568, "methods": [], "bases": [], "model": { @@ -507627,18 +507616,18 @@ }, { "type_name": "sdt", - "vtable_address": 64729704, + "vtable_address": 64733608, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11121460 + "offset_to_top": 11121471 } } }, { "type_name": "sdt", - "vtable_address": 64729744, + "vtable_address": 64733648, "methods": [], "bases": [], "model": { @@ -507649,29 +507638,29 @@ }, { "type_name": "sdt", - "vtable_address": 64729904, + "vtable_address": 64733808, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10891261 + "offset_to_top": 10891272 } } }, { "type_name": "sdt", - "vtable_address": 64730128, + "vtable_address": 64734032, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11052946 + "offset_to_top": 11052957 } } }, { "type_name": "sdt", - "vtable_address": 64730344, + "vtable_address": 64734248, "methods": [], "bases": [], "model": { @@ -507682,7 +507671,7 @@ }, { "type_name": "sdt", - "vtable_address": 64730728, + "vtable_address": 64734632, "methods": [], "bases": [], "model": { @@ -507693,29 +507682,29 @@ }, { "type_name": "sdt", - "vtable_address": 64730768, + "vtable_address": 64734672, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11021181 + "offset_to_top": 11021192 } } }, { "type_name": "sdt", - "vtable_address": 64730896, + "vtable_address": 64734800, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11021181 + "offset_to_top": 11021192 } } }, { "type_name": "sdt", - "vtable_address": 64730936, + "vtable_address": 64734840, "methods": [], "bases": [], "model": { @@ -507726,29 +507715,29 @@ }, { "type_name": "sdt", - "vtable_address": 64731096, + "vtable_address": 64735000, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10891261 + "offset_to_top": 10891272 } } }, { "type_name": "sdt", - "vtable_address": 64731224, + "vtable_address": 64735128, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10891261 + "offset_to_top": 10891272 } } }, { "type_name": "sdt", - "vtable_address": 64731400, + "vtable_address": 64735304, "methods": [], "bases": [], "model": { @@ -507759,7 +507748,7 @@ }, { "type_name": "sdt", - "vtable_address": 64731440, + "vtable_address": 64735344, "methods": [], "bases": [], "model": { @@ -507770,7 +507759,7 @@ }, { "type_name": "sdt", - "vtable_address": 64731528, + "vtable_address": 64735432, "methods": [], "bases": [], "model": { @@ -507781,7 +507770,7 @@ }, { "type_name": "sdt", - "vtable_address": 64731792, + "vtable_address": 64735696, "methods": [], "bases": [], "model": { @@ -507792,29 +507781,29 @@ }, { "type_name": "sdt", - "vtable_address": 64733928, + "vtable_address": 64737832, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11054370 + "offset_to_top": 11054381 } } }, { "type_name": "sdt", - "vtable_address": 64735584, + "vtable_address": 64739488, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10933101 + "offset_to_top": 10933112 } } }, { "type_name": "sdt", - "vtable_address": 64735624, + "vtable_address": 64739528, "methods": [], "bases": [], "model": { @@ -507825,29 +507814,29 @@ }, { "type_name": "sdt", - "vtable_address": 64735664, + "vtable_address": 64739568, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11093762 + "offset_to_top": 11093773 } } }, { "type_name": "sdt", - "vtable_address": 64735888, + "vtable_address": 64739792, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10889220 + "offset_to_top": 10889231 } } }, { "type_name": "sdt", - "vtable_address": 64736464, + "vtable_address": 64740368, "methods": [], "bases": [], "model": { @@ -507858,7 +507847,7 @@ }, { "type_name": "sdt", - "vtable_address": 64739408, + "vtable_address": 64743312, "methods": [], "bases": [], "model": { @@ -507869,7 +507858,7 @@ }, { "type_name": "sdt", - "vtable_address": 64739696, + "vtable_address": 64743600, "methods": [], "bases": [], "model": { @@ -507880,18 +507869,18 @@ }, { "type_name": "sdt", - "vtable_address": 64740528, + "vtable_address": 64744432, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11059607 + "offset_to_top": 11059618 } } }, { "type_name": "sdt", - "vtable_address": 64740656, + "vtable_address": 64744560, "methods": [], "bases": [], "model": { @@ -507902,18 +507891,18 @@ }, { "type_name": "sdt", - "vtable_address": 64741536, + "vtable_address": 64745440, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10999736 + "offset_to_top": 10999747 } } }, { "type_name": "sdt", - "vtable_address": 64741680, + "vtable_address": 64745584, "methods": [], "bases": [], "model": { @@ -507924,7 +507913,7 @@ }, { "type_name": "sdt", - "vtable_address": 64741736, + "vtable_address": 64745640, "methods": [], "bases": [], "model": { @@ -507935,7 +507924,7 @@ }, { "type_name": "sdt", - "vtable_address": 64741904, + "vtable_address": 64745808, "methods": [], "bases": [], "model": { @@ -507946,29 +507935,29 @@ }, { "type_name": "sdt", - "vtable_address": 64742312, + "vtable_address": 64746216, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10907735 + "offset_to_top": 10907746 } } }, { "type_name": "sdt", - "vtable_address": 64742544, + "vtable_address": 64746448, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10904378 + "offset_to_top": 10904389 } } }, { "type_name": "sdt", - "vtable_address": 64743560, + "vtable_address": 64747464, "methods": [], "bases": [], "model": { @@ -507979,7 +507968,7 @@ }, { "type_name": "sdt", - "vtable_address": 64743952, + "vtable_address": 64747856, "methods": [], "bases": [], "model": { @@ -507990,7 +507979,7 @@ }, { "type_name": "sdt", - "vtable_address": 64744592, + "vtable_address": 64748496, "methods": [], "bases": [], "model": { @@ -508001,7 +507990,7 @@ }, { "type_name": "sdt", - "vtable_address": 64745192, + "vtable_address": 64749096, "methods": [], "bases": [], "model": { @@ -508012,7 +508001,7 @@ }, { "type_name": "sdt", - "vtable_address": 64745616, + "vtable_address": 64749520, "methods": [], "bases": [], "model": { @@ -508023,7 +508012,7 @@ }, { "type_name": "sdt", - "vtable_address": 64745936, + "vtable_address": 64749840, "methods": [], "bases": [], "model": { @@ -508034,7 +508023,7 @@ }, { "type_name": "sdt", - "vtable_address": 64746096, + "vtable_address": 64750000, "methods": [], "bases": [], "model": { @@ -508045,7 +508034,7 @@ }, { "type_name": "sdt", - "vtable_address": 64746416, + "vtable_address": 64750320, "methods": [], "bases": [], "model": { @@ -508056,7 +508045,7 @@ }, { "type_name": "sdt", - "vtable_address": 64746544, + "vtable_address": 64750448, "methods": [], "bases": [], "model": { @@ -508067,29 +508056,29 @@ }, { "type_name": "sdt", - "vtable_address": 64747944, + "vtable_address": 64751848, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10918230 + "offset_to_top": 10918241 } } }, { "type_name": "sdt", - "vtable_address": 64748008, + "vtable_address": 64751912, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10918230 + "offset_to_top": 10918241 } } }, { "type_name": "sdt", - "vtable_address": 64748112, + "vtable_address": 64752016, "methods": [], "bases": [], "model": { @@ -508100,18 +508089,18 @@ }, { "type_name": "sdt", - "vtable_address": 64748152, + "vtable_address": 64752056, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11123612 + "offset_to_top": 11123623 } } }, { "type_name": "sdt", - "vtable_address": 64748272, + "vtable_address": 64752176, "methods": [], "bases": [], "model": { @@ -508122,7 +508111,7 @@ }, { "type_name": "sdt", - "vtable_address": 64748408, + "vtable_address": 64752312, "methods": [], "bases": [], "model": { @@ -508133,7 +508122,7 @@ }, { "type_name": "sdt", - "vtable_address": 64748568, + "vtable_address": 64752472, "methods": [], "bases": [], "model": { @@ -508144,29 +508133,29 @@ }, { "type_name": "sdt", - "vtable_address": 64748784, + "vtable_address": 64752688, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10961580 + "offset_to_top": 10961591 } } }, { "type_name": "sdt", - "vtable_address": 64748824, + "vtable_address": 64752728, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10888752 + "offset_to_top": 10888763 } } }, { "type_name": "sdt", - "vtable_address": 64748944, + "vtable_address": 64752848, "methods": [], "bases": [], "model": { @@ -508177,7 +508166,7 @@ }, { "type_name": "sdt", - "vtable_address": 64748984, + "vtable_address": 64752888, "methods": [], "bases": [], "model": { @@ -508188,7 +508177,7 @@ }, { "type_name": "sdt", - "vtable_address": 64749032, + "vtable_address": 64752936, "methods": [], "bases": [], "model": { @@ -508199,18 +508188,18 @@ }, { "type_name": "sdt", - "vtable_address": 64749168, + "vtable_address": 64753072, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10961580 + "offset_to_top": 10961591 } } }, { "type_name": "sdt", - "vtable_address": 64749248, + "vtable_address": 64753152, "methods": [], "bases": [], "model": { @@ -508221,18 +508210,18 @@ }, { "type_name": "sdt", - "vtable_address": 64749288, + "vtable_address": 64753192, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11106204 + "offset_to_top": 11106215 } } }, { "type_name": "sdt", - "vtable_address": 64749368, + "vtable_address": 64753272, "methods": [], "bases": [], "model": { @@ -508243,7 +508232,7 @@ }, { "type_name": "sdt", - "vtable_address": 64749456, + "vtable_address": 64753360, "methods": [], "bases": [], "model": { @@ -508254,7 +508243,7 @@ }, { "type_name": "sdt", - "vtable_address": 64749616, + "vtable_address": 64753520, "methods": [], "bases": [], "model": { @@ -508265,7 +508254,7 @@ }, { "type_name": "sdt", - "vtable_address": 64750632, + "vtable_address": 64754536, "methods": [], "bases": [], "model": { @@ -508276,7 +508265,7 @@ }, { "type_name": "sdt", - "vtable_address": 64750696, + "vtable_address": 64754600, "methods": [], "bases": [], "model": { @@ -508287,18 +508276,18 @@ }, { "type_name": "sdt", - "vtable_address": 64750840, + "vtable_address": 64754744, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10952692 + "offset_to_top": 10952703 } } }, { "type_name": "sdt", - "vtable_address": 64751560, + "vtable_address": 64755464, "methods": [], "bases": [], "model": { @@ -508309,7 +508298,7 @@ }, { "type_name": "sdt", - "vtable_address": 64751768, + "vtable_address": 64755672, "methods": [], "bases": [], "model": { @@ -508320,18 +508309,18 @@ }, { "type_name": "sdt", - "vtable_address": 64752816, + "vtable_address": 64756720, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11104610 + "offset_to_top": 11104621 } } }, { "type_name": "sdt", - "vtable_address": 64753000, + "vtable_address": 64756904, "methods": [], "bases": [], "model": { @@ -508342,29 +508331,29 @@ }, { "type_name": "sdt", - "vtable_address": 64753040, + "vtable_address": 64756944, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11085313 + "offset_to_top": 11085324 } } }, { "type_name": "sdt", - "vtable_address": 64753320, + "vtable_address": 64757224, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10971174 + "offset_to_top": 10971185 } } }, { "type_name": "sdt", - "vtable_address": 64753384, + "vtable_address": 64757288, "methods": [], "bases": [], "model": { @@ -508375,7 +508364,7 @@ }, { "type_name": "sdt", - "vtable_address": 64753544, + "vtable_address": 64757448, "methods": [], "bases": [], "model": { @@ -508386,73 +508375,73 @@ }, { "type_name": "sdt", - "vtable_address": 64753968, + "vtable_address": 64757872, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10912427 + "offset_to_top": 10912438 } } }, { "type_name": "sdt", - "vtable_address": 64754160, + "vtable_address": 64758064, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10976069 + "offset_to_top": 10976080 } } }, { "type_name": "sdt", - "vtable_address": 64754336, + "vtable_address": 64758240, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10936745 + "offset_to_top": 10936756 } } }, { "type_name": "sdt", - "vtable_address": 64754416, + "vtable_address": 64758320, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11026479 + "offset_to_top": 11026490 } } }, { "type_name": "sdt", - "vtable_address": 64754472, + "vtable_address": 64758376, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10885332 + "offset_to_top": 10885343 } } }, { "type_name": "sdt", - "vtable_address": 64754632, + "vtable_address": 64758536, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11085313 + "offset_to_top": 11085324 } } }, { "type_name": "sdt", - "vtable_address": 64754712, + "vtable_address": 64758616, "methods": [], "bases": [], "model": { @@ -508463,7 +508452,7 @@ }, { "type_name": "sdt", - "vtable_address": 64757960, + "vtable_address": 64761864, "methods": [], "bases": [], "model": { @@ -508474,7 +508463,7 @@ }, { "type_name": "sdt", - "vtable_address": 64758024, + "vtable_address": 64761928, "methods": [], "bases": [], "model": { @@ -508485,18 +508474,18 @@ }, { "type_name": "sdt", - "vtable_address": 64758480, + "vtable_address": 64762384, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11003089 + "offset_to_top": 11003100 } } }, { "type_name": "sdt", - "vtable_address": 64758640, + "vtable_address": 64762544, "methods": [], "bases": [], "model": { @@ -508507,29 +508496,29 @@ }, { "type_name": "sdt", - "vtable_address": 64758680, + "vtable_address": 64762584, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11060998 + "offset_to_top": 11061009 } } }, { "type_name": "sdt", - "vtable_address": 64758888, + "vtable_address": 64762792, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10973847 + "offset_to_top": 10973858 } } }, { "type_name": "sdt", - "vtable_address": 64758968, + "vtable_address": 64762872, "methods": [], "bases": [], "model": { @@ -508540,18 +508529,18 @@ }, { "type_name": "sdt", - "vtable_address": 64759048, + "vtable_address": 64762952, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10908376 + "offset_to_top": 10908387 } } }, { "type_name": "sdt", - "vtable_address": 64759192, + "vtable_address": 64763096, "methods": [], "bases": [], "model": { @@ -508562,29 +508551,29 @@ }, { "type_name": "sdt", - "vtable_address": 64759280, + "vtable_address": 64763184, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10973847 + "offset_to_top": 10973858 } } }, { "type_name": "sdt", - "vtable_address": 64759320, + "vtable_address": 64763224, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11060998 + "offset_to_top": 11061009 } } }, { "type_name": "sdt", - "vtable_address": 64759560, + "vtable_address": 64763464, "methods": [], "bases": [], "model": { @@ -508595,7 +508584,7 @@ }, { "type_name": "sdt", - "vtable_address": 64759784, + "vtable_address": 64763688, "methods": [], "bases": [], "model": { @@ -508606,7 +508595,7 @@ }, { "type_name": "sdt", - "vtable_address": 64759984, + "vtable_address": 64763888, "methods": [], "bases": [], "model": { @@ -508617,7 +508606,7 @@ }, { "type_name": "sdt", - "vtable_address": 64760024, + "vtable_address": 64763928, "methods": [], "bases": [], "model": { @@ -508628,18 +508617,18 @@ }, { "type_name": "sdt", - "vtable_address": 64760144, + "vtable_address": 64764048, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11017901 + "offset_to_top": 11017912 } } }, { "type_name": "sdt", - "vtable_address": 64760184, + "vtable_address": 64764088, "methods": [], "bases": [], "model": { @@ -508650,7 +508639,7 @@ }, { "type_name": "sdt", - "vtable_address": 64760344, + "vtable_address": 64764248, "methods": [], "bases": [], "model": { @@ -508661,7 +508650,7 @@ }, { "type_name": "sdt", - "vtable_address": 64760552, + "vtable_address": 64764456, "methods": [], "bases": [], "model": { @@ -508672,7 +508661,7 @@ }, { "type_name": "sdt", - "vtable_address": 64760696, + "vtable_address": 64764600, "methods": [], "bases": [], "model": { @@ -508683,7 +508672,7 @@ }, { "type_name": "sdt", - "vtable_address": 64760744, + "vtable_address": 64764648, "methods": [], "bases": [], "model": { @@ -508694,7 +508683,7 @@ }, { "type_name": "sdt", - "vtable_address": 64760976, + "vtable_address": 64764880, "methods": [], "bases": [], "model": { @@ -508705,7 +508694,7 @@ }, { "type_name": "sdt", - "vtable_address": 64761112, + "vtable_address": 64765016, "methods": [], "bases": [], "model": { @@ -508716,7 +508705,7 @@ }, { "type_name": "sdt", - "vtable_address": 64761336, + "vtable_address": 64765240, "methods": [], "bases": [], "model": { @@ -508727,7 +508716,7 @@ }, { "type_name": "sdt", - "vtable_address": 64761680, + "vtable_address": 64765584, "methods": [], "bases": [], "model": { @@ -508738,29 +508727,29 @@ }, { "type_name": "sdt", - "vtable_address": 64761840, + "vtable_address": 64765744, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10976983 + "offset_to_top": 10976994 } } }, { "type_name": "sdt", - "vtable_address": 64761936, + "vtable_address": 64765840, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11012681 + "offset_to_top": 11012692 } } }, { "type_name": "sdt", - "vtable_address": 64762208, + "vtable_address": 64766112, "methods": [], "bases": [], "model": { @@ -508771,40 +508760,40 @@ }, { "type_name": "sdt", - "vtable_address": 64762248, + "vtable_address": 64766152, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11085313 + "offset_to_top": 11085324 } } }, { "type_name": "sdt", - "vtable_address": 64762328, + "vtable_address": 64766232, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10952965 + "offset_to_top": 10952976 } } }, { "type_name": "sdt", - "vtable_address": 64762728, + "vtable_address": 64766632, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 11012681 + "offset_to_top": 11012692 } } }, { "type_name": "sdt", - "vtable_address": 64762888, + "vtable_address": 64766792, "methods": [], "bases": [], "model": { @@ -508815,13 +508804,13 @@ }, { "type_name": "shard_model_desc_t", - "vtable_address": 64189688, + "vtable_address": 64193592, "methods": [ 13131584, - 21558624, + 21561440, 13131216, - 21558640, - 21558736 + 21561456, + 21561552 ], "bases": [], "model": { @@ -508832,12 +508821,12 @@ }, { "type_name": "sky3dparams_t", - "vtable_address": 64061504, + "vtable_address": 64065408, "methods": [ 13131664, - 19358256, - 19358272, - 19358288 + 19361072, + 19361088, + 19361104 ], "bases": [], "model": { @@ -508848,12 +508837,12 @@ }, { "type_name": "sky3dparams_t::NetworkVar_fog", - "vtable_address": 64061456, + "vtable_address": 64065360, "methods": [ 12243104, - 19381312, + 19384128, 12235760, - 19358304 + 19361120 ], "bases": [ { @@ -508875,7 +508864,7 @@ }, { "type_name": "std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>", - "vtable_address": 63500224, + "vtable_address": 63504128, "methods": [], "bases": [ { @@ -508897,7 +508886,7 @@ }, { "type_name": "std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64079512, + "vtable_address": 64083416, "methods": [], "bases": [ { @@ -508913,13 +508902,13 @@ ], "model": { "Itanium": { - "offset_to_top": 9261856 + "offset_to_top": 9261920 } } }, { "type_name": "std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64766192, + "vtable_address": 64770096, "methods": [], "bases": [ { @@ -508941,7 +508930,7 @@ }, { "type_name": "std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64783432, + "vtable_address": 64787336, "methods": [], "bases": [ { @@ -508963,13 +508952,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64088600, + "vtable_address": 64092504, "methods": [ - 19876992, - 19878304, - 19890624, - 19878320, - 19886752 + 19879808, + 19881120, + 19893440, + 19881136, + 19889568 ], "bases": [ { @@ -509002,13 +508991,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace >, unsigned int>, std::allocator >, unsigned int> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64767104, + "vtable_address": 64771008, "methods": [ - 31974384, - 31974544, - 31977168, - 31974592, - 31974800 + 31978224, + 31978384, + 31981008, + 31978432, + 31978640 ], "bases": [ { @@ -509041,13 +509030,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace >, void>, std::allocator >, void> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64766992, + "vtable_address": 64770896, "methods": [ - 31974416, - 31974512, - 31976800, - 31974624, - 31974640 + 31978256, + 31978352, + 31980640, + 31978464, + 31978480 ], "bases": [ { @@ -509080,13 +509069,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace >, unsigned int>, std::allocator >, unsigned int> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64767160, + "vtable_address": 64771064, "methods": [ - 31974368, - 31974560, - 31978176, - 31974576, - 31974880 + 31978208, + 31978400, + 31982016, + 31978416, + 31978720 ], "bases": [ { @@ -509119,13 +509108,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace >, void>, std::allocator >, void> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 64767048, + "vtable_address": 64770952, "methods": [ - 31974400, - 31974528, - 31977392, - 31974608, - 31974720 + 31978240, + 31978368, + 31981232, + 31978448, + 31978560 ], "bases": [ { @@ -509158,12 +509147,12 @@ }, { "type_name": "std::__future_base::_Async_state_commonV2", - "vtable_address": 64766712, + "vtable_address": 64770616, "methods": [ - 31975264, - 31977088, - 31974960, - 31974064 + 31979104, + 31980928, + 31978800, + 31977904 ], "bases": [ { @@ -509185,12 +509174,12 @@ }, { "type_name": "std::__future_base::_Async_state_impl >, unsigned int>", - "vtable_address": 64766896, + "vtable_address": 64770800, "methods": [ - 31977808, - 31977488, - 31974960, - 31974064 + 31981648, + 31981328, + 31978800, + 31977904 ], "bases": [ { @@ -509223,12 +509212,12 @@ }, { "type_name": "std::__future_base::_Async_state_impl >, void>", - "vtable_address": 64766800, + "vtable_address": 64770704, "methods": [ - 31978032, - 31976944, - 31974960, - 31974064 + 31981872, + 31980784, + 31978800, + 31977904 ], "bases": [ { @@ -509261,12 +509250,12 @@ }, { "type_name": "std::__future_base::_Deferred_state >, unsigned int>", - "vtable_address": 64766944, + "vtable_address": 64770848, "methods": [ - 31976640, - 31978336, - 31978512, - 31974432 + 31980480, + 31982176, + 31982352, + 31978272 ], "bases": [ { @@ -509288,12 +509277,12 @@ }, { "type_name": "std::__future_base::_Deferred_state >, void>", - "vtable_address": 64766848, + "vtable_address": 64770752, "methods": [ - 31976544, - 31977712, - 31975536, - 31974448 + 31980384, + 31981552, + 31979376, + 31978288 ], "bases": [ { @@ -509315,11 +509304,11 @@ }, { "type_name": "std::__future_base::_Result", - "vtable_address": 64766760, + "vtable_address": 64770664, "methods": [ - 31976480, - 31975200, - 31975232 + 31980320, + 31979040, + 31979072 ], "bases": [], "model": { @@ -509330,11 +509319,11 @@ }, { "type_name": "std::__future_base::_Result", - "vtable_address": 64766672, + "vtable_address": 64770576, "methods": [ - 31974080, - 31975136, - 31975168 + 31977920, + 31978976, + 31979008 ], "bases": [], "model": { @@ -509345,12 +509334,12 @@ }, { "type_name": "std::__future_base::_State_baseV2", - "vtable_address": 64766624, + "vtable_address": 64770528, "methods": [ - 31974192, - 31974464, - 31974048, - 31974064 + 31978032, + 31978304, + 31977888, + 31977904 ], "bases": [], "model": { @@ -509361,11 +509350,11 @@ }, { "type_name": "std::thread::_State_impl >, unsigned int>::_Async_state_impl(std::thread::_Invoker >&&)::{lambda()#1}> > >", - "vtable_address": 64767256, + "vtable_address": 64771160, "methods": [ - 31975408, - 31975440, - 31980448 + 31979248, + 31979280, + 31984288 ], "bases": [], "model": { @@ -509376,11 +509365,11 @@ }, { "type_name": "std::thread::_State_impl >, void>::_Async_state_impl(std::thread::_Invoker >&&)::{lambda()#1}> > >", - "vtable_address": 64767216, + "vtable_address": 64771120, "methods": [ - 31975472, - 31975504, - 31979920 + 31979312, + 31979344, + 31983760 ], "bases": [], "model": { @@ -509391,18 +509380,18 @@ }, { "type_name": "tools/images/pulse_editor/requirements.png", - "vtable_address": 64843504, + "vtable_address": 64847408, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 10929368 + "offset_to_top": 10929379 } } }, { "type_name": "unsigned char", - "vtable_address": 64738832, + "vtable_address": 64742736, "methods": [], "bases": [], "model": { @@ -509413,7 +509402,7 @@ }, { "type_name": "void (CSceneObject*)", - "vtable_address": 64623968, + "vtable_address": 64627872, "methods": [], "bases": [], "model": { diff --git a/dump/linux/vtables/client_short.txt b/dump/linux/vtables/client_short.txt index 52b4cd3..1c3d7d1 100644 --- a/dump/linux/vtables/client_short.txt +++ b/dump/linux/vtables/client_short.txt @@ -5010,7 +5010,6 @@ google::protobuf::io::StringOutputStream [7] google::protobuf::io::ZeroCopyInputStream [0] [0] [0] m_nDestructionDeathBehavior == eDoNotKill [0] minusone [0] [0] -p [0] panorama::CAnimatedImageStrip [85] panorama::CAsyncDataPanel [85] panorama::CBaseScrollBar [0] [61] [12] diff --git a/dump/linux/vtables/engine2.json b/dump/linux/vtables/engine2.json index b2d2abd..40caf3c 100644 --- a/dump/linux/vtables/engine2.json +++ b/dump/linux/vtables/engine2.json @@ -1,26 +1,26 @@ [ { "type_name": "C2S_CONNECTION_Message", - "vtable_address": 9653272, - "methods": [ - 7623584, - 7623728, - 3320958, - 6489760, - 7625680, - 4773216, - 3323118, - 3319950, - 7603632, - 4731504, - 7628240, - 4730112, + "vtable_address": 9656472, + "methods": [ + 7615136, + 7615280, + 3323326, + 6492832, + 7617232, + 4775648, + 3325486, + 3322318, 7602192, - 3319860, - 3320126, - 4773392, - 7600928, - 7596560 + 4733856, + 7619792, + 4732480, + 7600752, + 3322228, + 3322494, + 4775824, + 7599488, + 7590240 ], "bases": [ { @@ -53,14 +53,14 @@ }, { "type_name": "C2S_CONNECTION_Message_t", - "vtable_address": 9652888, + "vtable_address": 9656088, "methods": [ - 6508336, - 6508496, - 5346608, - 5346608, - 6526352, - 6552864 + 6511408, + 6511568, + 5349104, + 5349104, + 6529232, + 6555920 ], "bases": [ { @@ -125,26 +125,26 @@ }, { "type_name": "C2S_CONNECTION_Message_t", - "vtable_address": 9652952, - "methods": [ - 6508672, - 6509072, - 3320958, - 6489760, - 7625680, - 4773216, - 3323118, - 3319950, - 7603632, - 4731504, - 7628240, - 4730112, + "vtable_address": 9656152, + "methods": [ + 6511744, + 6512144, + 3323326, + 6492832, + 7617232, + 4775648, + 3325486, + 3322318, 7602192, - 3319860, - 3320126, - 4773392, - 7600928, - 7596560 + 4733856, + 7619792, + 4732480, + 7600752, + 3322228, + 3322494, + 4775824, + 7599488, + 7590240 ], "bases": [ { @@ -209,26 +209,26 @@ }, { "type_name": "C2S_CONNECT_Message", - "vtable_address": 9653880, - "methods": [ - 7622992, - 7623136, - 3320958, - 6489744, - 7625072, - 4773216, - 3323118, - 3319950, - 7603072, - 4731504, - 7627264, - 4730112, - 7601152, - 3319860, - 3320126, - 4773392, - 7600896, - 7596544 + "vtable_address": 9657080, + "methods": [ + 7614544, + 7614688, + 3323326, + 6492816, + 7616624, + 4775648, + 3325486, + 3322318, + 7601632, + 4733856, + 7618816, + 4732480, + 7599712, + 3322228, + 3322494, + 4775824, + 7599456, + 7590224 ], "bases": [ { @@ -261,14 +261,14 @@ }, { "type_name": "C2S_CONNECT_Message_t", - "vtable_address": 9653656, + "vtable_address": 9656856, "methods": [ - 6507664, - 6507824, - 5346608, - 5346608, - 6526608, - 6553312 + 6510736, + 6510896, + 5349104, + 5349104, + 6529488, + 6556368 ], "bases": [ { @@ -333,26 +333,26 @@ }, { "type_name": "C2S_CONNECT_Message_t", - "vtable_address": 9653720, - "methods": [ - 6508000, - 6508160, - 3320958, - 6489744, - 7625072, - 4773216, - 3323118, - 3319950, - 7603072, - 4731504, - 7627264, - 4730112, - 7601152, - 3319860, - 3320126, - 4773392, - 7600896, - 7596544 + "vtable_address": 9656920, + "methods": [ + 6511072, + 6511232, + 3323326, + 6492816, + 7616624, + 4775648, + 3325486, + 3322318, + 7601632, + 4733856, + 7618816, + 4732480, + 7599712, + 3322228, + 3322494, + 4775824, + 7599456, + 7590224 ], "bases": [ { @@ -417,26 +417,26 @@ }, { "type_name": "C2S_CONNECT_SameProcessCheck", - "vtable_address": 9653112, - "methods": [ - 7622384, - 7622512, - 3320958, - 7611216, - 7625008, - 4773216, - 3323118, - 3319950, - 7600784, - 4731504, - 7626688, - 4730112, - 7599168, - 3319860, - 3320126, - 4773392, - 7600864, - 7596528 + "vtable_address": 9656312, + "methods": [ + 7613936, + 7614064, + 3323326, + 7611504, + 7616560, + 4775648, + 3325486, + 3322318, + 7599344, + 4733856, + 7618240, + 4732480, + 7597728, + 3322228, + 3322494, + 4775824, + 7599424, + 7590208 ], "bases": [ { @@ -469,16 +469,16 @@ }, { "type_name": "CAppSystemDict", - "vtable_address": 9588656, + "vtable_address": 9591856, "methods": [ - 7691280, - 7693184, - 7717856, - 5148720, - 5148736, - 4730112, - 7693232, - 4730192 + 7691552, + 7693456, + 7693776, + 5151248, + 5151264, + 4732480, + 7693504, + 4732560 ], "bases": [], "model": { @@ -489,18 +489,18 @@ }, { "type_name": "CAsyncCallJob", - "vtable_address": 9694800, + "vtable_address": 9696288, "methods": [ - 7516000, - 7522256, - 5311536, - 5311488, - 5262416, - 5268000, - 7541872, - 5629872, - 5629856, - 4730192 + 7506464, + 7519376, + 5314032, + 5313984, + 5264928, + 5270528, + 7539104, + 5632368, + 5632352, + 4732560 ], "bases": [ { @@ -574,18 +574,94 @@ } } }, + { + "type_name": "CAsyncCallJob", + "vtable_address": 9679920, + "methods": [], + "bases": [ + { + "type_name": "CThreadedJobWithDependencies", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CThreadedDependentJob", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CThreadedJob", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CRefCounted1 >", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IRefCounted", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "CRefCountServiceBase", + "details": { + "Itanium": { + "offset": 8, + "flags": 2, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 1985440 + } + } + }, { "type_name": "CAsyncShaderCompilePrerequisite", - "vtable_address": 9629400, + "vtable_address": 9632600, "methods": [ - 6017408, - 6017712, - 5262448, - 5262464, - 6032832, - 6003184, - 5279008, - 6003200 + 6019904, + 6020208, + 5264960, + 5264976, + 6035328, + 6005680, + 5281536, + 6005696 ], "bases": [ { @@ -617,9 +693,9 @@ }, { "type_name": "CAsyncShaderCompilePrerequisite", - "vtable_address": 9629480, + "vtable_address": 9632680, "methods": [ - 6003216 + 6005712 ], "bases": [ { @@ -651,14 +727,14 @@ }, { "type_name": "CAttributeDictSaveDataOps", - "vtable_address": 9709096, + "vtable_address": 9712328, "methods": [ - 8636064, - 8640128, - 8621200, - 8635168, - 7681216, - 4730112 + 8639264, + 8643328, + 8624400, + 8638368, + 7662464, + 4732480 ], "bases": [ { @@ -691,13 +767,13 @@ }, { "type_name": "CBannedUsersFilter", - "vtable_address": 9682496, + "vtable_address": 9685840, "methods": [ - 7078448, - 7078832, - 7076112, - 7076128, - 7083952 + 7103968, + 7104352, + 7100880, + 7100896, + 7108240 ], "bases": [ { @@ -719,7 +795,7 @@ }, { "type_name": "CBaseClientSpawnGroupCreatePrerequisite", - "vtable_address": 9657848, + "vtable_address": 9661048, "methods": [], "bases": [ { @@ -735,32 +811,32 @@ ], "model": { "Itanium": { - "offset_to_top": 1979072 + "offset_to_top": 1979200 } } }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 9591136, - "methods": [ - 5337216, - 5337392, - 3320958, - 4902208, - 4940816, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4948960, - 4730112, - 4930384, - 3319860, - 3320126, - 4773392, - 4937984, - 4926768 + "vtable_address": 9594336, + "methods": [ + 5339712, + 5339888, + 3323326, + 4904640, + 4943248, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4951392, + 4732480, + 4932816, + 3322228, + 3322494, + 4775824, + 4940416, + 4929200 ], "bases": [ { @@ -804,26 +880,26 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 9590752, - "methods": [ - 5338400, - 5338576, - 3320958, - 4902928, - 5101040, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5080736, - 4730112, - 5071696, - 3319860, - 3320126, - 4773392, - 5074256, - 5068512 + "vtable_address": 9593952, + "methods": [ + 5340896, + 5341072, + 3323326, + 4905360, + 5103568, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5083264, + 4732480, + 5074224, + 3322228, + 3322494, + 4775824, + 5076784, + 5071040 ], "bases": [ { @@ -867,26 +943,26 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 9643736, - "methods": [ - 6266016, - 6266272, - 3320958, - 4819424, - 4911232, - 4773216, - 3323118, - 3319950, - 4898224, - 4731504, - 4915280, - 4730112, - 4895360, - 3319860, - 3320126, - 4773392, - 4900272, - 4891296 + "vtable_address": 9646936, + "methods": [ + 6268560, + 6268816, + 3323326, + 4821856, + 4913664, + 4775648, + 3325486, + 3322318, + 4900656, + 4733856, + 4917712, + 4732480, + 4897792, + 3322228, + 3322494, + 4775824, + 4902704, + 4893728 ], "bases": [ { @@ -930,7 +1006,7 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 9604048, + "vtable_address": 9607248, "methods": [], "bases": [ { @@ -1034,13 +1110,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1950608 + "offset_to_top": 1950736 } } }, { "type_name": "CBaseEngineService", - "vtable_address": 9608680, + "vtable_address": 9611880, "methods": [], "bases": [ { @@ -1144,13 +1220,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1953008 + "offset_to_top": 1953136 } } }, { "type_name": "CBaseServerSpawnGroupCreatePrerequisite", - "vtable_address": 9680472, + "vtable_address": 9715584, "methods": [], "bases": [ { @@ -1166,49 +1242,27 @@ ], "model": { "Itanium": { - "offset_to_top": 1986688 - } - } - }, - { - "type_name": "CBaseServerSpawnGroupCreatePrerequisite", - "vtable_address": 9712352, - "methods": [], - "bases": [ - { - "type_name": "IPrerequisite", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 2419264 + "offset_to_top": 2421472 } } }, { "type_name": "CBaseSpawnGroup", - "vtable_address": 9683528, + "vtable_address": 9686952, "methods": [ - 5541712, - 5966848, - 6749456, - 6526896, - 6749488, - 6749504, - 6749552, - 6749584, - 6526912, - 6749536, - 7255008, - 6749616, - 7287040 + 5544208, + 5969344, + 6782528, + 6529776, + 6782560, + 6782576, + 6782624, + 6782656, + 6529792, + 6782608, + 7242976, + 6782688, + 7273776 ], "bases": [ { @@ -1250,9 +1304,9 @@ }, { "type_name": "CBaseSpawnGroup", - "vtable_address": 9683928, + "vtable_address": 9687352, "methods": [ - 7211936 + 7242080 ], "bases": [ { @@ -1294,10 +1348,10 @@ }, { "type_name": "CBaseSpawnGroup", - "vtable_address": 9683952, + "vtable_address": 9687376, "methods": [ - 6749424, - 7254720 + 6782496, + 7242688 ], "bases": [ { @@ -1339,33 +1393,33 @@ }, { "type_name": "CBenchmarkService", - "vtable_address": 9602576, - "methods": [ - 5673936, - 5674048, - 4737920, - 5697344, - 5307520, - 4730192, - 4730208, - 5307648, - 5674256, - 4773136, - 4773088, - 4730208, - 5507744, - 5670048, - 5672928, - 5148704, - 5507776, - 5507792, - 5507808, - 5695120, - 5507824, - 5507840, - 5670784, - 5680032, - 5670064 + "vtable_address": 9605776, + "methods": [ + 5676432, + 5676544, + 4740256, + 5699840, + 5310016, + 4732560, + 5264864, + 5310144, + 5676752, + 4775568, + 4775520, + 5264864, + 5510240, + 5672512, + 5675392, + 5151232, + 5510272, + 5510288, + 5510304, + 5697616, + 5510320, + 5510336, + 5673248, + 5682528, + 5672528 ], "bases": [ { @@ -1486,26 +1540,26 @@ }, { "type_name": "CBidirMsg_PredictionEvent", - "vtable_address": 9569568, + "vtable_address": 9572768, "methods": [ - 5099680, - 5099824, - 3320958, - 4903136, - 5103312, - 5068736, - 3323118, - 3319950, - 5076160, - 4731504, - 5088992, - 4730112, - 5072416, - 3319860, - 3320126, - 4773392, - 5074672, - 5068720 + 5102208, + 5102352, + 3323326, + 4905568, + 5105840, + 5071264, + 3325486, + 3322318, + 5078688, + 4733856, + 5091520, + 4732480, + 5074944, + 3322228, + 3322494, + 4775824, + 5077200, + 5071248 ], "bases": [ { @@ -1538,26 +1592,26 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent", - "vtable_address": 9569888, - "methods": [ - 5099168, - 5099296, - 3320958, - 4903104, - 5103200, - 4773216, - 3323118, - 3319950, - 5076048, - 4731504, - 5087680, - 4730112, - 5070304, - 3319860, - 3320126, - 4773392, - 5074608, - 5068688 + "vtable_address": 9573088, + "methods": [ + 5101696, + 5101824, + 3323326, + 4905536, + 5105728, + 4775648, + 3325486, + 3322318, + 5078576, + 4733856, + 5090208, + 4732480, + 5072832, + 3322228, + 3322494, + 4775824, + 5077136, + 5071216 ], "bases": [ { @@ -1590,14 +1644,14 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent_t", - "vtable_address": 9593560, + "vtable_address": 9596760, "methods": [ - 5327408, - 5327552, - 5346608, - 5346608, - 5346912, - 5362496 + 5329904, + 5330048, + 5349104, + 5349104, + 5349408, + 5364992 ], "bases": [ { @@ -1662,26 +1716,26 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent_t", - "vtable_address": 9593624, - "methods": [ - 5327696, - 5327824, - 3320958, - 4903104, - 5103200, - 4773216, - 3323118, - 3319950, - 5076048, - 4731504, - 5087680, - 4730112, - 5070304, - 3319860, - 3320126, - 4773392, - 5074608, - 5068688 + "vtable_address": 9596824, + "methods": [ + 5330192, + 5330320, + 3323326, + 4905536, + 5105728, + 4775648, + 3325486, + 3322318, + 5078576, + 4733856, + 5090208, + 4732480, + 5072832, + 3322228, + 3322494, + 4775824, + 5077136, + 5071216 ], "bases": [ { @@ -1746,26 +1800,26 @@ }, { "type_name": "CBidirMsg_RebroadcastSource", - "vtable_address": 9569728, - "methods": [ - 5099424, - 5099552, - 3320958, - 4903120, - 5103264, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 5088512, - 4730112, - 5070848, - 3319860, - 3320126, - 4773392, - 5074640, - 5068704 + "vtable_address": 9572928, + "methods": [ + 5101952, + 5102080, + 3323326, + 4905552, + 5105792, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 5091040, + 4732480, + 5073376, + 3322228, + 3322494, + 4775824, + 5077168, + 5071232 ], "bases": [ { @@ -1798,14 +1852,14 @@ }, { "type_name": "CBidirMsg_RebroadcastSource_t", - "vtable_address": 9593784, + "vtable_address": 9596984, "methods": [ - 5327968, - 5328112, - 5346608, - 5346608, - 5346624, - 5362272 + 5330464, + 5330608, + 5349104, + 5349104, + 5349120, + 5364768 ], "bases": [ { @@ -1870,26 +1924,26 @@ }, { "type_name": "CBidirMsg_RebroadcastSource_t", - "vtable_address": 9593848, - "methods": [ - 5328256, - 5328384, - 3320958, - 4903120, - 5103264, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 5088512, - 4730112, - 5070848, - 3319860, - 3320126, - 4773392, - 5074640, - 5068704 + "vtable_address": 9597048, + "methods": [ + 5330752, + 5330880, + 3323326, + 4905552, + 5105792, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 5091040, + 4732480, + 5073376, + 3322228, + 3322494, + 4775824, + 5077168, + 5071232 ], "bases": [ { @@ -1954,12 +2008,12 @@ }, { "type_name": "CBreakpadPassiveAssertionFailureListener", - "vtable_address": 9588496, + "vtable_address": 9591696, "methods": [ - 5267248, - 5286368, - 5227424, - 5227712 + 5269776, + 5288896, + 5229920, + 5230208 ], "bases": [ { @@ -1981,57 +2035,59 @@ }, { "type_name": "CBroadcastPlayer", - "vtable_address": 9695448, - "methods": [ - 7531840, - 7532944, - 7513200, - 7554880, - 7554896, - 7554992, - 7555072, - 7555088, - 7513216, - 7576256, - 7556992, - 7513072, - 4730208, - 5966880, - 7555152, - 7513056, - 7555184, - 4773136, - 7555136, - 7555120, - 7532992, - 7533120, - 7534992, - 7515712, - 7582912, - 6328016, - 4730192, - 7556704, - 6745408, - 7513088, - 7513104, - 5967120, - 7555232, - 4773216, - 5398912, - 7513120, - 7513136, - 7513152, - 6368592, - 6446480, - 6446480, - 5262496, - 4730192, - 7554784, - 7513168, - 7564672, - 7556048, - 7515184, - 7556096 + "vtable_address": 9699600, + "methods": [ + 7562128, + 7563232, + 7547280, + 7547424, + 7547440, + 7547536, + 7547616, + 7547632, + 7547296, + 7555744, + 7574816, + 7547152, + 5264864, + 5969376, + 7547696, + 7547136, + 7547728, + 4775568, + 7547680, + 7547664, + 7570288, + 7570416, + 7572288, + 7563280, + 7576832, + 6449424, + 6449440, + 6330576, + 4732560, + 7548544, + 6739744, + 7547168, + 7547184, + 5969616, + 7547776, + 4775648, + 5401408, + 7547200, + 7547216, + 7547232, + 6371568, + 6449520, + 6449520, + 5265008, + 4732560, + 7547328, + 7547248, + 7573968, + 7547888, + 7561600, + 7547936 ], "bases": [ { @@ -2063,13 +2119,13 @@ }, { "type_name": "CBroadcastPlayer", - "vtable_address": 9695856, + "vtable_address": 9700024, "methods": [ - 7557168, - 7515264, - 7513184, - 7556000, - 7556208 + 7574944, + 7561680, + 7547264, + 7547840, + 7548048 ], "bases": [ { @@ -2101,182 +2157,182 @@ }, { "type_name": "CBugService", - "vtable_address": 9602848, + "vtable_address": 9606048, + "methods": [ + 5511136, + 5511264, + 4740256, + 5633808, + 5672080, + 4732560, + 5264864, + 5310144, + 5511472, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5151232, + 5510272, + 5510288, + 5510304, + 5661600, + 5510320, + 5510336, + 5672704, + 5681984, + 5692736, + 5672176, + 5681728, + 5672208, + 5672240, + 5672272, + 5672304, + 5677792 + ], + "bases": [ + { + "type_name": "CBaseEngineService", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [ + { + "type_name": "CTier4AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CTier3AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CTier2AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CTier1AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CTier0AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseAppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IEngineService", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IAppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + }, + { + "type_name": "IVConCommDataReceived", + "details": { + "Itanium": { + "offset": 56, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "IScreenshotCallback", + "details": { + "Itanium": { + "offset": 64, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "IVoiceTarget", + "details": { + "Itanium": { + "offset": 72, + "flags": 2, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "CBugService", + "vtable_address": 9606320, "methods": [ - 5508640, - 5508768, - 4737920, - 5631312, - 5669616, - 4730192, - 4730208, - 5307648, - 5508976, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5148704, - 5507776, - 5507792, - 5507808, - 5659136, - 5507824, - 5507840, - 5670240, - 5679488, - 5690240, - 5669712, - 5679232, - 5669744, - 5669776, - 5669808, - 5669840, - 5675296 - ], - "bases": [ - { - "type_name": "CBaseEngineService", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [ - { - "type_name": "CTier4AppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CTier3AppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CTier2AppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CTier1AppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CTier0AppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseAppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IEngineService", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IAppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - }, - { - "type_name": "IVConCommDataReceived", - "details": { - "Itanium": { - "offset": 56, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "IScreenshotCallback", - "details": { - "Itanium": { - "offset": 64, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "IVoiceTarget", - "details": { - "Itanium": { - "offset": 72, - "flags": 2, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "CBugService", - "vtable_address": 9603120, - "methods": [ - 5693136 + 5695632 ], "bases": [ { @@ -2416,13 +2472,13 @@ }, { "type_name": "CBugService", - "vtable_address": 9603144, + "vtable_address": 9606344, "methods": [ - 5669728, - 5679360, - 5669760, - 5669792, - 5669824 + 5672192, + 5681856, + 5672224, + 5672256, + 5672288 ], "bases": [ { @@ -2562,10 +2618,10 @@ }, { "type_name": "CBugService", - "vtable_address": 9603200, + "vtable_address": 9606400, "methods": [ - 5669856, - 5671808 + 5672320, + 5674272 ], "bases": [ { @@ -2705,26 +2761,26 @@ }, { "type_name": "CCLCMsg_BaselineAck", - "vtable_address": 9580128, - "methods": [ - 4957168, - 4957296, - 3320958, - 4902080, - 4938832, - 4773216, - 3323118, - 3319950, - 4936880, - 4731504, - 4944592, - 4730112, - 4926848, - 3319860, - 3320126, - 4773392, - 4937728, - 4926640 + "vtable_address": 9583328, + "methods": [ + 4959600, + 4959728, + 3323326, + 4904512, + 4941264, + 4775648, + 3325486, + 3322318, + 4939312, + 4733856, + 4947024, + 4732480, + 4929280, + 3322228, + 3322494, + 4775824, + 4940160, + 4929072 ], "bases": [ { @@ -2757,14 +2813,14 @@ }, { "type_name": "CCLCMsg_BaselineAck_t", - "vtable_address": 9665192, + "vtable_address": 9667944, "methods": [ - 6473264, - 6473408, - 5346608, - 5346608, - 6087488, - 6109824 + 6476336, + 6476480, + 5349104, + 5349104, + 6090048, + 6112384 ], "bases": [ { @@ -2829,26 +2885,26 @@ }, { "type_name": "CCLCMsg_BaselineAck_t", - "vtable_address": 9665256, - "methods": [ - 6473552, - 6473680, - 3320958, - 4902080, - 4938832, - 4773216, - 3323118, - 3319950, - 4936880, - 4731504, - 4944592, - 4730112, - 4926848, - 3319860, - 3320126, - 4773392, - 4937728, - 4926640 + "vtable_address": 9668008, + "methods": [ + 6476624, + 6476752, + 3323326, + 4904512, + 4941264, + 4775648, + 3325486, + 3322318, + 4939312, + 4733856, + 4947024, + 4732480, + 4929280, + 3322228, + 3322494, + 4775824, + 4940160, + 4929072 ], "bases": [ { @@ -2913,200 +2969,200 @@ }, { "type_name": "CCLCMsg_ClientInfo", - "vtable_address": 9581488, - "methods": [ - 4909824, - 4909968, - 3320958, - 4902016, - 4912144, - 4773216, - 3323118, - 3319950, - 4898800, - 4731504, - 4916560, - 4730112, - 4897216, - 3319860, - 3320126, - 4773392, - 4900336, - 4891344, - 3321688, - 4921824, - 3321688, - 4905040, - 3321688, - 4904944, - 3321688, - 4904816, - 3321688, - 4904688, - 3321688, - 4904480, - 3321688, - 4918496, - 3321688, - 4955984, - 3321688, - 4955520, - 3321688, - 4954976, - 3321688, - 4954848, - 3321688, - 4954720, - 3321688, - 4954592, - 3321688, - 4954496, - 3321688, - 4954400, - 3321688, - 4954272, - 3321688, - 4954176, - 3321688, - 4953904, - 3321688, - 4953744, - 3321688, - 4953616, - 3321688, - 4953360, - 3321688, - 4952992, - 3321688, - 4988304, - 3321688, - 4987536, - 3321688, - 4987040, - 3321688, - 4986352, - 3321688, - 4985728, - 3321688, - 4985424, - 3321688, - 4985232, - 3321688, - 4984352, - 3321688, + "vtable_address": 9584688, + "methods": [ + 4912256, + 4912400, + 3323326, + 4904448, + 4914576, + 4775648, + 3325486, + 3322318, + 4901232, + 4733856, + 4918992, + 4732480, + 4899648, + 3322228, + 3322494, + 4775824, + 4902768, + 4893776, + 3324056, + 4924256, + 3324056, + 4907472, + 3324056, + 4907376, + 3324056, + 4907248, + 3324056, + 4907120, + 3324056, + 4906912, + 3324056, + 4920928, + 3324056, + 4958416, + 3324056, + 4957952, + 3324056, + 4957408, + 3324056, + 4957280, + 3324056, + 4957152, + 3324056, + 4957024, + 3324056, + 4956928, + 3324056, + 4956832, + 3324056, + 4956704, + 3324056, + 4956608, + 3324056, + 4956336, + 3324056, + 4956176, + 3324056, + 4956048, + 3324056, + 4955792, + 3324056, + 4955424, + 3324056, + 4990832, + 3324056, + 4990064, + 3324056, + 4989568, + 3324056, + 4988880, + 3324056, + 4988256, + 3324056, + 4987952, + 3324056, + 4987760, + 3324056, + 4986880, + 3324056, + 5024704, + 3324056, + 5024496, + 3324056, + 5024304, + 3324056, + 5024112, + 3324056, + 5023984, + 3324056, + 5023696, + 3324056, + 5023392, + 3324056, + 5023152, + 3324056, + 5023024, + 3324056, + 5022896, + 3324056, + 5022672, + 3324056, + 5022304, + 3324056, 5022176, - 3321688, + 3324056, 5021968, - 3321688, - 5021776, - 3321688, - 5021584, - 3321688, - 5021456, - 3321688, - 5021168, - 3321688, - 5020864, - 3321688, - 5020624, - 3321688, - 5020496, - 3321688, - 5020368, - 3321688, - 5020144, - 3321688, - 5019776, - 3321688, - 5019648, - 3321688, - 5019440, - 3321688, - 5019344, - 3321688, - 5019120, - 3321688, - 5049152, - 3321688, - 5049024, - 3321688, - 5048704, - 3321688, - 5048496, - 3321688, - 5048112, - 3321688, - 5047632, - 3321688, - 5046576, - 3321688, - 5046384, - 3321688, - 5046192, - 3321688, - 5046064, - 3321688, - 5045872, - 3321688, - 5045568, - 3321688, - 5045376, - 3321688, - 5045056, - 3321688, - 5094768, - 3321688, - 5094576, - 3321688, - 5094352, - 3321688, - 5094256, - 3321688, - 5094112, - 3321688, - 5094016, - 3321688, - 5093696, - 3321688, - 5093472, - 3321688, - 5093088, - 3321688, - 5092960, - 3321688, - 5092768, - 3321688, - 5092576, - 3321688, - 5092192, - 3321688, - 5092064, - 3321688, - 5091840, - 3321688, - 5091712, - 3321688, - 5091616, - 3321688, - 5091392, - 3321688, - 5123856, - 3321688, - 5147040, - 3321688, - 5123616, - 3321688, - 5123424, - 3321688, - 5122880, - 3321688, - 5122752, - 3321688, - 5122592, - 3321688, - 5122400, - 3321688, - 5144704 + 3324056, + 5021872, + 3324056, + 5021648, + 3324056, + 5051680, + 3324056, + 5051552, + 3324056, + 5051232, + 3324056, + 5051024, + 3324056, + 5050640, + 3324056, + 5050160, + 3324056, + 5049104, + 3324056, + 5048912, + 3324056, + 5048720, + 3324056, + 5048592, + 3324056, + 5048400, + 3324056, + 5048096, + 3324056, + 5047904, + 3324056, + 5047584, + 3324056, + 5097296, + 3324056, + 5097104, + 3324056, + 5096880, + 3324056, + 5096784, + 3324056, + 5096640, + 3324056, + 5096544, + 3324056, + 5096224, + 3324056, + 5096000, + 3324056, + 5095616, + 3324056, + 5095488, + 3324056, + 5095296, + 3324056, + 5095104, + 3324056, + 5094720, + 3324056, + 5094592, + 3324056, + 5094368, + 3324056, + 5094240, + 3324056, + 5094144, + 3324056, + 5093920, + 3324056, + 5126384, + 3324056, + 5149568, + 3324056, + 5126144, + 3324056, + 5125952, + 3324056, + 5125408, + 3324056, + 5125280, + 3324056, + 5125120, + 3324056, + 5124928, + 3324056, + 5147232 ], "bases": [ { @@ -3139,14 +3195,14 @@ }, { "type_name": "CCLCMsg_ClientInfo_t", - "vtable_address": 9662288, + "vtable_address": 9664992, "methods": [ - 6689168, - 6689328, - 5346608, - 5346608, - 6087728, - 6110336 + 6685008, + 6685168, + 5349104, + 5349104, + 6090288, + 6112896 ], "bases": [ { @@ -3211,26 +3267,26 @@ }, { "type_name": "CCLCMsg_ClientInfo_t", - "vtable_address": 9662352, - "methods": [ - 6689488, - 6689648, - 3320958, - 4902016, - 4912144, - 4773216, - 3323118, - 3319950, - 4898800, - 4731504, - 4916560, - 4730112, - 4897216, - 3319860, - 3320126, - 4773392, - 4900336, - 4891344 + "vtable_address": 9665056, + "methods": [ + 6685328, + 6685488, + 3323326, + 4904448, + 4914576, + 4775648, + 3325486, + 3322318, + 4901232, + 4733856, + 4918992, + 4732480, + 4899648, + 3322228, + 3322494, + 4775824, + 4902768, + 4893776 ], "bases": [ { @@ -3295,26 +3351,26 @@ }, { "type_name": "CCLCMsg_CmdKeyValues", - "vtable_address": 9578848, - "methods": [ - 4959376, - 4959520, - 3320958, - 4902208, - 4940816, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4948960, - 4730112, - 4930384, - 3319860, - 3320126, - 4773392, - 4937984, - 4926768 + "vtable_address": 9582048, + "methods": [ + 4961808, + 4961952, + 3323326, + 4904640, + 4943248, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4951392, + 4732480, + 4932816, + 3322228, + 3322494, + 4775824, + 4940416, + 4929200 ], "bases": [ { @@ -3347,14 +3403,14 @@ }, { "type_name": "CCLCMsg_CmdKeyValues_t", - "vtable_address": 9669232, + "vtable_address": 9674704, "methods": [ - 5353072, - 5353264, - 5347248, - 5347248, - 5347344, - 5366752 + 5355568, + 5355760, + 5349744, + 5349744, + 5349840, + 5369248 ], "bases": [ { @@ -3430,26 +3486,26 @@ }, { "type_name": "CCLCMsg_CmdKeyValues_t", - "vtable_address": 9669296, - "methods": [ - 5353472, - 5353664, - 3320958, - 4902208, - 4940816, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4948960, - 4730112, - 4930384, - 3319860, - 3320126, - 4773392, - 4937984, - 4926768 + "vtable_address": 9674768, + "methods": [ + 5355968, + 5356160, + 3323326, + 4904640, + 4943248, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4951392, + 4732480, + 4932816, + 3322228, + 3322494, + 4775824, + 4940416, + 4929200 ], "bases": [ { @@ -3525,26 +3581,26 @@ }, { "type_name": "CCLCMsg_Diagnostic", - "vtable_address": 9577568, - "methods": [ - 4989136, - 4989280, - 3320958, - 4902336, - 4993648, - 4773216, - 3323118, - 3319950, - 4968688, - 4731504, - 4976656, - 4730112, - 4965120, - 3319860, - 3320126, - 4773392, - 4963488, - 4961840 + "vtable_address": 9580768, + "methods": [ + 4991664, + 4991808, + 3323326, + 4904768, + 4996176, + 4775648, + 3325486, + 3322318, + 4971120, + 4733856, + 4979184, + 4732480, + 4967552, + 3322228, + 3322494, + 4775824, + 4965920, + 4964272 ], "bases": [ { @@ -3577,14 +3633,14 @@ }, { "type_name": "CCLCMsg_Diagnostic_t", - "vtable_address": 9664968, + "vtable_address": 9667720, "methods": [ - 6721136, - 6721296, - 5346608, - 5346608, - 6044896, - 6055472 + 6722288, + 6722448, + 5349104, + 5349104, + 6047424, + 6058032 ], "bases": [ { @@ -3649,26 +3705,26 @@ }, { "type_name": "CCLCMsg_Diagnostic_t", - "vtable_address": 9665032, - "methods": [ - 6721472, - 6721632, - 3320958, - 4902336, - 4993648, - 4773216, - 3323118, - 3319950, - 4968688, - 4731504, - 4976656, - 4730112, - 4965120, - 3319860, - 3320126, - 4773392, - 4963488, - 4961840 + "vtable_address": 9667784, + "methods": [ + 6722624, + 6722784, + 3323326, + 4904768, + 4996176, + 4775648, + 3325486, + 3322318, + 4971120, + 4733856, + 4979184, + 4732480, + 4967552, + 3322228, + 3322494, + 4775824, + 4965920, + 4964272 ], "bases": [ { @@ -3733,26 +3789,26 @@ }, { "type_name": "CCLCMsg_HltvFixupOperatorTick", - "vtable_address": 9568448, - "methods": [ - 5126800, - 5126944, - 3320958, - 4903248, - 5115520, - 4773216, - 3323118, - 3319950, - 5113680, - 4731504, - 5119312, - 4730112, - 5111648, - 3319860, - 3320126, - 4773392, - 5111296, - 5104256 + "vtable_address": 9571648, + "methods": [ + 5129328, + 5129472, + 3323326, + 4905680, + 5118048, + 4775648, + 3325486, + 3322318, + 5116208, + 4733856, + 5121840, + 4732480, + 5114176, + 3322228, + 3322494, + 4775824, + 5113824, + 5106784 ], "bases": [ { @@ -3785,26 +3841,26 @@ }, { "type_name": "CCLCMsg_HltvReplay", - "vtable_address": 9568768, - "methods": [ - 5126240, - 5126368, - 3320958, - 4903216, - 5114240, - 4773216, - 3323118, - 3319950, - 5109648, - 4731504, - 5118224, - 4730112, - 5108512, - 3319860, - 3320126, - 4773392, - 5111232, - 5104224 + "vtable_address": 9571968, + "methods": [ + 5128768, + 5128896, + 3323326, + 4905648, + 5116768, + 4775648, + 3325486, + 3322318, + 5112176, + 4733856, + 5120752, + 4732480, + 5111040, + 3322228, + 3322494, + 4775824, + 5113760, + 5106752 ], "bases": [ { @@ -3837,26 +3893,26 @@ }, { "type_name": "CCLCMsg_ListenEvents", - "vtable_address": 9579968, + "vtable_address": 9583168, "methods": [ - 4957424, - 4957568, - 3320958, - 4902096, - 4938896, - 4773216, - 3323118, - 3319950, - 4935584, - 4773360, - 4945168, - 4730112, - 4927200, - 3319860, - 3320126, - 4773408, - 4937760, - 4926656 + 4959856, + 4960000, + 3323326, + 4904528, + 4941328, + 4775648, + 3325486, + 3322318, + 4938016, + 4775792, + 4947600, + 4732480, + 4929632, + 3322228, + 3322494, + 4775840, + 4940192, + 4929088 ], "bases": [ { @@ -3889,26 +3945,26 @@ }, { "type_name": "CCLCMsg_LoadingProgress", - "vtable_address": 9579648, + "vtable_address": 9582848, "methods": [ - 4958048, - 4958176, - 3320958, - 4902128, - 4938928, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 4946432, - 4730112, - 4927392, - 3319860, - 3320126, - 4773392, - 4937824, - 4926688 + 4960480, + 4960608, + 3323326, + 4904560, + 4941360, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 4948864, + 4732480, + 4929824, + 3322228, + 3322494, + 4775824, + 4940256, + 4929120 ], "bases": [ { @@ -3941,14 +3997,14 @@ }, { "type_name": "CCLCMsg_LoadingProgress_t", - "vtable_address": 9696912, + "vtable_address": 9701168, "methods": [ - 6689808, - 6689952, - 5346608, - 5346608, - 6087328, - 6109232 + 6685648, + 6685792, + 5349104, + 5349104, + 6089888, + 6111792 ], "bases": [ { @@ -4013,26 +4069,26 @@ }, { "type_name": "CCLCMsg_LoadingProgress_t", - "vtable_address": 9696976, - "methods": [ - 6690096, - 6690224, - 3320958, - 4902128, - 4938928, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 4946432, - 4730112, - 4927392, - 3319860, - 3320126, - 4773392, - 4937824, - 4926688 + "vtable_address": 9701232, + "methods": [ + 6685936, + 6686064, + 3323326, + 4904560, + 4941360, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 4948864, + 4732480, + 4929824, + 3322228, + 3322494, + 4775824, + 4940256, + 4929120 ], "bases": [ { @@ -4097,28 +4153,28 @@ }, { "type_name": "CCLCMsg_Move", - "vtable_address": 9581312, - "methods": [ - 4910128, - 4910272, - 3320958, - 4902032, - 4912432, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 4917408, - 4730112, - 4897792, - 3319860, - 3320126, - 4773392, - 4900368, - 4891360, - 3321688, - 4906480 + "vtable_address": 9584512, + "methods": [ + 4912560, + 4912704, + 3323326, + 4904464, + 4914864, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 4919840, + 4732480, + 4900224, + 3322228, + 3322494, + 4775824, + 4902800, + 4893792, + 3324056, + 4908912 ], "bases": [ { @@ -4151,14 +4207,14 @@ }, { "type_name": "CCLCMsg_Move_t", - "vtable_address": 9662064, + "vtable_address": 9668840, "methods": [ - 6690368, - 6690528, - 5346608, - 5346608, - 6087648, - 6110048 + 6686208, + 6686368, + 5349104, + 5349104, + 6090208, + 6112608 ], "bases": [ { @@ -4223,26 +4279,27 @@ }, { "type_name": "CCLCMsg_Move_t", - "vtable_address": 9662128, - "methods": [ - 6690688, - 6690848, - 3320958, - 4902032, - 4912432, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 4917408, - 4730112, - 4897792, - 3319860, - 3320126, - 4773392, - 4900368, - 4891360 + "vtable_address": 9668904, + "methods": [ + 6686528, + 6686688, + 3323326, + 4904464, + 4914864, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 4919840, + 4732480, + 4900224, + 3322228, + 3322494, + 4775824, + 4902800, + 4893792, + 6699280 ], "bases": [ { @@ -4307,26 +4364,26 @@ }, { "type_name": "CCLCMsg_RconServerDetails", - "vtable_address": 9578688, - "methods": [ - 4959680, - 4959824, - 3320958, - 4902224, - 4941072, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4949360, - 4730112, - 4930576, - 3319860, - 3320126, - 4773392, - 4938016, - 4926784 + "vtable_address": 9581888, + "methods": [ + 4962112, + 4962256, + 3323326, + 4904656, + 4943504, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4951792, + 4732480, + 4933008, + 3322228, + 3322494, + 4775824, + 4940448, + 4929216 ], "bases": [ { @@ -4359,26 +4416,26 @@ }, { "type_name": "CCLCMsg_RequestPause", - "vtable_address": 9579008, - "methods": [ - 4959120, - 4959248, - 3320958, - 4902192, - 4939072, - 4773216, - 3323118, - 3319950, - 4937136, - 4731504, - 4948272, - 4730112, - 4927936, - 3319860, - 3320126, - 4773392, - 4937952, - 4926752 + "vtable_address": 9582208, + "methods": [ + 4961552, + 4961680, + 3323326, + 4904624, + 4941504, + 4775648, + 3325486, + 3322318, + 4939568, + 4733856, + 4950704, + 4732480, + 4930368, + 3322228, + 3322494, + 4775824, + 4940384, + 4929184 ], "bases": [ { @@ -4411,14 +4468,14 @@ }, { "type_name": "CCLCMsg_RequestPause_t", - "vtable_address": 9626872, + "vtable_address": 9630072, "methods": [ - 6027696, - 6027840, - 5346608, - 5346608, - 6043056, - 6055248 + 6030192, + 6030336, + 5349104, + 5349104, + 6045584, + 6057808 ], "bases": [ { @@ -4483,26 +4540,26 @@ }, { "type_name": "CCLCMsg_RequestPause_t", - "vtable_address": 9626936, - "methods": [ - 6027984, - 6028112, - 3320958, - 4902192, - 4939072, - 4773216, - 3323118, - 3319950, - 4937136, - 4731504, - 4948272, - 4730112, - 4927936, - 3319860, - 3320126, - 4773392, - 4937952, - 4926752 + "vtable_address": 9630136, + "methods": [ + 6030480, + 6030608, + 3323326, + 4904624, + 4941504, + 4775648, + 3325486, + 3322318, + 4939568, + 4733856, + 4950704, + 4732480, + 4930368, + 3322228, + 3322494, + 4775824, + 4940384, + 4929184 ], "bases": [ { @@ -4567,26 +4624,26 @@ }, { "type_name": "CCLCMsg_RespondCvarValue", - "vtable_address": 9579808, + "vtable_address": 9583008, "methods": [ - 4957728, - 4957888, - 3320958, - 4902112, - 4940064, - 4773216, - 3323118, - 3319950, - 4936960, - 4731504, - 4945696, - 4730112, - 4929632, - 3319860, - 3320126, - 4773392, - 4937792, - 4926672 + 4960160, + 4960320, + 3323326, + 4904544, + 4942496, + 4775648, + 3325486, + 3322318, + 4939392, + 4733856, + 4948128, + 4732480, + 4932064, + 3322228, + 3322494, + 4775824, + 4940224, + 4929104 ], "bases": [ { @@ -4619,14 +4676,14 @@ }, { "type_name": "CCLCMsg_RespondCvarValue_t", - "vtable_address": 9661264, + "vtable_address": 9664464, "methods": [ - 6635488, - 6635648, - 5346608, - 5346608, - 6087408, - 6109456 + 6638432, + 6638592, + 5349104, + 5349104, + 6089968, + 6112016 ], "bases": [ { @@ -4691,26 +4748,26 @@ }, { "type_name": "CCLCMsg_RespondCvarValue_t", - "vtable_address": 9661328, - "methods": [ - 6635824, - 6635984, - 3320958, - 4902112, - 4940064, - 4773216, - 3323118, - 3319950, - 4936960, - 4731504, - 4945696, - 4730112, - 4929632, - 3319860, - 3320126, - 4773392, - 4937792, - 4926672 + "vtable_address": 9664528, + "methods": [ + 6638768, + 6638928, + 3323326, + 4904544, + 4942496, + 4775648, + 3325486, + 3322318, + 4939392, + 4733856, + 4948128, + 4732480, + 4932064, + 3322228, + 3322494, + 4775824, + 4940224, + 4929104 ], "bases": [ { @@ -4775,26 +4832,26 @@ }, { "type_name": "CCLCMsg_ServerStatus", - "vtable_address": 9579168, - "methods": [ - 4958864, - 4958992, - 3320958, - 4902176, - 4939024, - 4773216, - 3323118, - 3319950, - 4935600, - 4731504, - 4947792, - 4730112, - 4927824, - 3319860, - 3320126, - 4773392, - 4937920, - 4926736 + "vtable_address": 9582368, + "methods": [ + 4961296, + 4961424, + 3323326, + 4904608, + 4941456, + 4775648, + 3325486, + 3322318, + 4938032, + 4733856, + 4950224, + 4732480, + 4930256, + 3322228, + 3322494, + 4775824, + 4940352, + 4929168 ], "bases": [ { @@ -4827,14 +4884,14 @@ }, { "type_name": "CCLCMsg_ServerStatus_t", - "vtable_address": 9660816, + "vtable_address": 9664016, "methods": [ - 6636800, - 6636944, - 5346608, - 5346608, - 6087168, - 6108784 + 6639744, + 6639888, + 5349104, + 5349104, + 6089728, + 6111344 ], "bases": [ { @@ -4899,26 +4956,26 @@ }, { "type_name": "CCLCMsg_ServerStatus_t", - "vtable_address": 9660880, - "methods": [ - 6637088, - 6637216, - 3320958, - 4902176, - 4939024, - 4773216, - 3323118, - 3319950, - 4935600, - 4731504, - 4947792, - 4730112, - 4927824, - 3319860, - 3320126, - 4773392, - 4937920, - 4926736 + "vtable_address": 9664080, + "methods": [ + 6640032, + 6640160, + 3323326, + 4904608, + 4941456, + 4775648, + 3325486, + 3322318, + 4938032, + 4733856, + 4950224, + 4732480, + 4930256, + 3322228, + 3322494, + 4775824, + 4940352, + 4929168 ], "bases": [ { @@ -4983,26 +5040,26 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect", - "vtable_address": 9579488, - "methods": [ - 4958304, - 4958448, - 3320958, - 4902144, - 4940560, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4946912, - 4730112, - 4930208, - 3319860, - 3320126, - 4773392, - 4937856, - 4926704 + "vtable_address": 9582688, + "methods": [ + 4960736, + 4960880, + 3323326, + 4904576, + 4942992, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4949344, + 4732480, + 4932640, + 3322228, + 3322494, + 4775824, + 4940288, + 4929136 ], "bases": [ { @@ -5035,14 +5092,14 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect_t", - "vtable_address": 9661040, + "vtable_address": 9664240, "methods": [ - 6636160, - 6636320, - 5346608, - 5346608, - 6044976, - 6057440 + 6639104, + 6639264, + 5349104, + 5349104, + 6047504, + 6060000 ], "bases": [ { @@ -5107,26 +5164,26 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect_t", - "vtable_address": 9661104, - "methods": [ - 6636480, - 6636640, - 3320958, - 4902144, - 4940560, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4946912, - 4730112, - 4930208, - 3319860, - 3320126, - 4773392, - 4937856, - 4926704 + "vtable_address": 9664304, + "methods": [ + 6639424, + 6639584, + 3323326, + 4904576, + 4942992, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4949344, + 4732480, + 4932640, + 3322228, + 3322494, + 4775824, + 4940288, + 4929136 ], "bases": [ { @@ -5191,26 +5248,26 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect", - "vtable_address": 9579328, - "methods": [ - 4958608, - 4958736, - 3320958, - 4902160, - 4938976, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 4947312, - 4730112, - 4927616, - 3319860, - 3320126, - 4773392, - 4937888, - 4926720 + "vtable_address": 9582528, + "methods": [ + 4961040, + 4961168, + 3323326, + 4904592, + 4941408, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 4949744, + 4732480, + 4930048, + 3322228, + 3322494, + 4775824, + 4940320, + 4929152 ], "bases": [ { @@ -5243,14 +5300,14 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect_t", - "vtable_address": 9637832, + "vtable_address": 9641032, "methods": [ - 6186576, - 6186720, - 5346608, - 5346608, - 6087248, - 6109008 + 6189072, + 6189216, + 5349104, + 5349104, + 6089808, + 6111568 ], "bases": [ { @@ -5315,26 +5372,26 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect_t", - "vtable_address": 9637896, - "methods": [ - 6186864, - 6186992, - 3320958, - 4902160, - 4938976, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 4947312, - 4730112, - 4927616, - 3319860, - 3320126, - 4773392, - 4937888, - 4926720 + "vtable_address": 9641096, + "methods": [ + 6189360, + 6189488, + 3323326, + 4904592, + 4941408, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 4949744, + 4732480, + 4930048, + 3322228, + 3322494, + 4775824, + 4940320, + 4929152 ], "bases": [ { @@ -5399,26 +5456,26 @@ }, { "type_name": "CCLCMsg_VoiceData", - "vtable_address": 9580288, - "methods": [ - 4956336, - 4956752, - 3320958, - 4902064, - 4939664, - 4773216, - 3323118, - 3319950, - 4937536, - 4731504, - 4943984, - 4730112, - 4938144, - 3319860, - 3320126, - 4773392, - 4937696, - 4926624 + "vtable_address": 9583488, + "methods": [ + 4958768, + 4959184, + 3323326, + 4904496, + 4942096, + 4775648, + 3325486, + 3322318, + 4939968, + 4733856, + 4946416, + 4732480, + 4940576, + 3322228, + 3322494, + 4775824, + 4940128, + 4929056 ], "bases": [ { @@ -5451,13 +5508,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9671424, + "vtable_address": 9671048, "methods": [ - 6789968, - 5703936, - 5703952, - 6796480, - 6803472 + 6787584, + 5706432, + 5706448, + 6796288, + 6803696 ], "bases": [ { @@ -5490,13 +5547,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9671312, + "vtable_address": 9670936, "methods": [ - 6789824, - 6789792, - 6789808, - 6796544, - 6803600 + 6787440, + 6787408, + 6787424, + 6796352, + 6803824 ], "bases": [ { @@ -5529,13 +5586,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9671368, + "vtable_address": 9670992, "methods": [ - 6789856, - 6789888, - 6789952, - 6796512, - 6803536 + 6787472, + 6787504, + 6787568, + 6796320, + 6803760 ], "bases": [ { @@ -5568,13 +5625,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9671200, + "vtable_address": 9670824, "methods": [ - 6789712, - 6789744, - 5194592, - 6796576, - 6803728 + 6787328, + 6787360, + 5197088, + 6796384, + 6803952 ], "bases": [ { @@ -5607,13 +5664,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9671256, + "vtable_address": 9670880, "methods": [ - 6789760, - 6789792, - 6789808, - 6796544, - 6803664 + 6787376, + 6787408, + 6787424, + 6796352, + 6803888 ], "bases": [ { @@ -5646,13 +5703,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9671144, + "vtable_address": 9670768, "methods": [ - 6789648, - 6789680, - 6789696, - 6796608, - 6803792 + 6787264, + 6787296, + 6787312, + 6796416, + 6804016 ], "bases": [ { @@ -5685,13 +5742,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9684040, + "vtable_address": 9687464, "methods": [ - 7210928, - 6789744, - 5194592, - 6796576, - 7227664 + 7241072, + 6787360, + 5197088, + 6796384, + 7262752 ], "bases": [ { @@ -5724,13 +5781,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9684152, + "vtable_address": 9687576, "methods": [ - 7211072, - 7211104, - 7211168, - 7214432, - 7227536 + 7241216, + 7241248, + 7241312, + 7250800, + 7262624 ], "bases": [ { @@ -5763,13 +5820,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9684208, + "vtable_address": 9687632, "methods": [ - 7211184, - 6789744, - 5194592, - 6796576, - 7227472 + 7241328, + 6787360, + 5197088, + 6796384, + 7262560 ], "bases": [ { @@ -5802,13 +5859,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9684096, + "vtable_address": 9687520, "methods": [ - 7210960, - 7210992, - 7211056, - 7214464, - 7227600 + 7241104, + 7241136, + 7241200, + 7250832, + 7262688 ], "bases": [ { @@ -5841,13 +5898,13 @@ }, { "type_name": "CCallback", - "vtable_address": 9683984, + "vtable_address": 9687408, "methods": [ - 7210896, - 6789680, - 6789696, - 6796608, - 7227728 + 7241040, + 6787296, + 6787312, + 6796416, + 7262816 ], "bases": [ { @@ -5880,7 +5937,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 9601664, + "vtable_address": 9604864, "methods": [], "bases": [], "model": { @@ -5891,7 +5948,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 9669920, + "vtable_address": 9669512, "methods": [], "bases": [], "model": { @@ -5902,7 +5959,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 9669960, + "vtable_address": 9669552, "methods": [], "bases": [], "model": { @@ -5913,7 +5970,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 9670000, + "vtable_address": 9669592, "methods": [], "bases": [], "model": { @@ -5924,7 +5981,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 9670040, + "vtable_address": 9669632, "methods": [], "bases": [], "model": { @@ -5935,7 +5992,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 9683264, + "vtable_address": 9686768, "methods": [], "bases": [], "model": { @@ -5946,7 +6003,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 9683304, + "vtable_address": 9686808, "methods": [], "bases": [], "model": { @@ -5957,7 +6014,7 @@ }, { "type_name": "CCallbackImpl<128>", - "vtable_address": 9671648, + "vtable_address": 9671272, "methods": [], "bases": [ { @@ -5979,7 +6036,7 @@ }, { "type_name": "CCallbackImpl<12>", - "vtable_address": 9671592, + "vtable_address": 9671216, "methods": [], "bases": [ { @@ -6001,7 +6058,7 @@ }, { "type_name": "CCallbackImpl<16>", - "vtable_address": 9601608, + "vtable_address": 9604808, "methods": [], "bases": [ { @@ -6023,7 +6080,7 @@ }, { "type_name": "CCallbackImpl<16>", - "vtable_address": 9602304, + "vtable_address": 9605504, "methods": [], "bases": [ { @@ -6045,7 +6102,7 @@ }, { "type_name": "CCallbackImpl<1>", - "vtable_address": 9671536, + "vtable_address": 9671160, "methods": [], "bases": [ { @@ -6067,7 +6124,7 @@ }, { "type_name": "CCallbackImpl<20>", - "vtable_address": 9671480, + "vtable_address": 9671104, "methods": [], "bases": [ { @@ -6089,7 +6146,7 @@ }, { "type_name": "CCallbackImpl<4>", - "vtable_address": 9684488, + "vtable_address": 9687912, "methods": [], "bases": [ { @@ -6111,7 +6168,7 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 9684544, + "vtable_address": 9687968, "methods": [], "bases": [ { @@ -6133,15 +6190,15 @@ }, { "type_name": "CChangelevelGameClientPrerequisite", - "vtable_address": 9629504, + "vtable_address": 9632704, "methods": [ - 6016848, - 6017120, - 5262448, - 5262464, - 6016688, - 6003168, - 5279008 + 6019344, + 6019616, + 5264960, + 5264976, + 6019184, + 6005664, + 5281536 ], "bases": [ { @@ -6163,11 +6220,11 @@ }, { "type_name": "CClientFrame", - "vtable_address": 9654264, + "vtable_address": 9657464, "methods": [ - 6499856, - 6499968, - 4773136 + 6502928, + 6503040, + 4775568 ], "bases": [], "model": { @@ -6178,10 +6235,10 @@ }, { "type_name": "CClientFrameManager", - "vtable_address": 9584488, + "vtable_address": 9587688, "methods": [ - 5197248, - 5214448 + 5199744, + 5216944 ], "bases": [], "model": { @@ -6192,37 +6249,37 @@ }, { "type_name": "CClientOnlyServerConfig", - "vtable_address": 9585632, - "methods": [ - 5262336, - 4730192, - 4737920, - 5262352, - 4730192, - 4730192, - 4730208, - 5262368, - 5267936, - 4773136, - 4773088, - 5196480, - 5194592, - 5196512, - 5194592, - 5196544, - 4773136, - 5196560, - 5197008, - 5196576, - 4730112, - 5196592, - 5196608, - 5196624, - 5196640, - 5196656, - 5196672, - 4773136, - 5194528 + "vtable_address": 9588832, + "methods": [ + 5264832, + 4732560, + 4740256, + 5264848, + 4732560, + 4732560, + 5264864, + 5264880, + 5270464, + 4775568, + 4775520, + 5198976, + 5197088, + 5199008, + 5197088, + 5199040, + 4775568, + 5199056, + 5199504, + 5199072, + 4732480, + 5199088, + 5199104, + 5199120, + 5199136, + 5199152, + 5199168, + 4775568, + 5197024 ], "bases": [ { @@ -6277,10 +6334,10 @@ }, { "type_name": "CCompressedResourceManifestRefCounted", - "vtable_address": 9670344, + "vtable_address": 9669968, "methods": [ - 6909776, - 6918448 + 6904656, + 6913824 ], "bases": [ { @@ -6323,10 +6380,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9682440, + "vtable_address": 9685784, "methods": [ - 7076688, - 7076720 + 7101456, + 7101488 ], "bases": [ { @@ -6379,9 +6436,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9682472, + "vtable_address": 9685816, "methods": [ - 7076784 + 7101552 ], "bases": [ { @@ -6434,10 +6491,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9602792, + "vtable_address": 9605992, "methods": [ - 5669872, - 5669904 + 5672336, + 5672368 ], "bases": [ { @@ -6490,9 +6547,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9602824, + "vtable_address": 9606024, "methods": [ - 5669968 + 5672432 ], "bases": [ { @@ -6545,10 +6602,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9604528, + "vtable_address": 9607728, "methods": [ - 5741120, - 5741152 + 5743616, + 5743648 ], "bases": [ { @@ -6601,9 +6658,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9604560, + "vtable_address": 9607760, "methods": [ - 5741216 + 5743712 ], "bases": [ { @@ -6656,10 +6713,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9606744, + "vtable_address": 9609944, "methods": [ - 5834528, - 5834560 + 5837024, + 5837056 ], "bases": [ { @@ -6712,9 +6769,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9606776, + "vtable_address": 9609976, "methods": [ - 5834624 + 5837120 ], "bases": [ { @@ -6767,10 +6824,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9683040, + "vtable_address": 9686088, "methods": [ - 7163744, - 7163776 + 7153888, + 7153920 ], "bases": [ { @@ -6823,9 +6880,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9683072, + "vtable_address": 9686120, "methods": [ - 7163840 + 7153984 ], "bases": [ { @@ -6878,10 +6935,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9609744, + "vtable_address": 9612944, "methods": [ - 5834704, - 5834736 + 5837200, + 5837232 ], "bases": [ { @@ -6934,9 +6991,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9609776, + "vtable_address": 9612976, "methods": [ - 5834800 + 5837296 ], "bases": [ { @@ -6989,10 +7046,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9628216, + "vtable_address": 9631416, "methods": [ - 6044736, - 6044768 + 6047264, + 6047296 ], "bases": [ { @@ -7045,9 +7102,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9628248, + "vtable_address": 9631448, "methods": [ - 6044832 + 6047360 ], "bases": [ { @@ -7100,10 +7157,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9634120, + "vtable_address": 9637320, "methods": [ - 6088000, - 6088032 + 6090560, + 6090592 ], "bases": [ { @@ -7156,9 +7213,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9634152, + "vtable_address": 9637352, "methods": [ - 6088096 + 6090656 ], "bases": [ { @@ -7211,10 +7268,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9618024, + "vtable_address": 9621224, "methods": [ - 5923168, - 5923200 + 5925664, + 5925696 ], "bases": [ { @@ -7267,9 +7324,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9618056, + "vtable_address": 9621256, "methods": [ - 5923264 + 5925760 ], "bases": [ { @@ -7322,10 +7379,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9635832, + "vtable_address": 9639032, "methods": [ - 6128160, - 6128192 + 6130688, + 6130720 ], "bases": [ { @@ -7378,9 +7435,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9635864, + "vtable_address": 9639064, "methods": [ - 6128256 + 6130784 ], "bases": [ { @@ -7433,10 +7490,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9600824, + "vtable_address": 9604024, "methods": [ - 5629696, - 5629728 + 5632192, + 5632224 ], "bases": [ { @@ -7489,9 +7546,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9600856, + "vtable_address": 9604056, "methods": [ - 5629792 + 5632288 ], "bases": [ { @@ -7544,10 +7601,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9634960, + "vtable_address": 9638160, "methods": [ - 6128512, - 6128544 + 6131040, + 6131072 ], "bases": [ { @@ -7600,9 +7657,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9634992, + "vtable_address": 9638192, "methods": [ - 6128608 + 6131136 ], "bases": [ { @@ -7655,10 +7712,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9638424, + "vtable_address": 9641624, "methods": [ - 6166896, - 6166928 + 6169392, + 6169424 ], "bases": [ { @@ -7711,9 +7768,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9638456, + "vtable_address": 9641656, "methods": [ - 6166992 + 6169488 ], "bases": [ { @@ -7766,10 +7823,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9637328, + "vtable_address": 9640528, "methods": [ - 6203232, - 6203264 + 6205728, + 6205760 ], "bases": [ { @@ -7822,9 +7879,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9637360, + "vtable_address": 9640560, "methods": [ - 6203328 + 6205824 ], "bases": [ { @@ -7877,10 +7934,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9642264, + "vtable_address": 9645464, "methods": [ - 6205024, - 6205056 + 6207520, + 6207552 ], "bases": [ { @@ -7933,9 +7990,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9642296, + "vtable_address": 9645496, "methods": [ - 6205120 + 6207616 ], "bases": [ { @@ -7988,10 +8045,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9640112, + "vtable_address": 9643312, "methods": [ - 6208272, - 6208304 + 6210768, + 6210800 ], "bases": [ { @@ -8044,9 +8101,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 9640144, + "vtable_address": 9643344, "methods": [ - 6208368 + 6210864 ], "bases": [ { @@ -8099,15 +8156,15 @@ }, { "type_name": "CConnectGameClientPrerequisite", - "vtable_address": 9627464, + "vtable_address": 9630664, "methods": [ - 6049408, - 6051120, - 5262448, - 5262464, - 6005696, - 6003296, - 6006000 + 6051968, + 6053680, + 5264960, + 5264976, + 6008192, + 6005792, + 6008496 ], "bases": [ { @@ -8129,15 +8186,15 @@ }, { "type_name": "CConnectRelayPrerequisite", - "vtable_address": 9643664, + "vtable_address": 9646864, "methods": [ - 6250752, - 6261248, - 5262448, - 5262464, - 6251008, - 6246240, - 5279008 + 6253248, + 6263792, + 5264960, + 5264976, + 6253504, + 6248736, + 5281536 ], "bases": [ { @@ -8159,9 +8216,9 @@ }, { "type_name": "CConsoleProcessorForTestScripts", - "vtable_address": 9585192, + "vtable_address": 9588392, "methods": [ - 5197552 + 5200048 ], "bases": [ { @@ -8183,15 +8240,15 @@ }, { "type_name": "CCreateGameClientPrerequisite", - "vtable_address": 9627608, + "vtable_address": 9630808, "methods": [ - 6049456, - 6051184, - 5262448, - 5262464, - 6020448, - 6003280, - 5279008 + 6052016, + 6053744, + 5264960, + 5264976, + 6022944, + 6005776, + 5281536 ], "bases": [ { @@ -8213,15 +8270,15 @@ }, { "type_name": "CDebugVisualizerAbsTime", - "vtable_address": 9584120, + "vtable_address": 9587320, "methods": [ - 5147984, - 5163776, - 5148032, - 5148048, - 5148080, - 4730192, - 5147968 + 5150512, + 5166272, + 5150560, + 5150576, + 5150608, + 4732560, + 5150496 ], "bases": [ { @@ -8243,7 +8300,7 @@ }, { "type_name": "CDebugVisualizerAbsTime", - "vtable_address": 9636944, + "vtable_address": 9640144, "methods": [], "bases": [ { @@ -8259,23 +8316,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1968576 + "offset_to_top": 1968704 } } }, { "type_name": "CDebugVisualizerMgr", - "vtable_address": 9595168, + "vtable_address": 9598368, "methods": [ - 5148096, - 5161536, - 5150592, - 5148112, - 5148192, - 5150368, - 5148432, - 5148544, - 5148352 + 5150624, + 5164032, + 5153088, + 5150640, + 5150720, + 5152864, + 5150960, + 5151072, + 5150880 ], "bases": [ { @@ -8297,7 +8354,7 @@ }, { "type_name": "CDefSaveRestoreOps", - "vtable_address": 9708952, + "vtable_address": 9712184, "methods": [], "bases": [ { @@ -8313,13 +8370,13 @@ ], "model": { "Itanium": { - "offset_to_top": 2291168 + "offset_to_top": 2293376 } } }, { "type_name": "CDefSaveRestoreOps", - "vtable_address": 9709080, + "vtable_address": 9712312, "methods": [], "bases": [ { @@ -8335,33 +8392,33 @@ ], "model": { "Itanium": { - "offset_to_top": 2291264 + "offset_to_top": 2293472 } } }, { "type_name": "CDefaultClientConfig", - "vtable_address": 9585464, - "methods": [ - 5262336, - 4730192, - 4737920, - 5262352, - 4730192, - 4730192, - 4730208, - 5262368, - 5267936, - 4773136, - 4773088, - 5194592, - 5194608, - 5196416, - 5196432, - 5196448, - 5196432, - 5196464, - 5148704 + "vtable_address": 9588664, + "methods": [ + 5264832, + 4732560, + 4740256, + 5264848, + 4732560, + 4732560, + 5264864, + 5264880, + 5270464, + 4775568, + 4775520, + 5197088, + 5197104, + 5198912, + 5198928, + 5198944, + 5198928, + 5198960, + 5151232 ], "bases": [ { @@ -8405,7 +8462,7 @@ }, { "type_name": "CDefaultServerConfig", - "vtable_address": 9584960, + "vtable_address": 9588160, "methods": [], "bases": [ { @@ -8443,43 +8500,43 @@ ], "model": { "Itanium": { - "offset_to_top": 1939888 + "offset_to_top": 1940016 } } }, { "type_name": "CDefaultServerConfig", - "vtable_address": 9585216, - "methods": [ - 5262336, - 4730192, - 4737920, - 5262352, - 4730192, - 4730192, - 4730208, - 5262368, - 5267936, - 4773136, - 4773088, - 5196480, - 5194592, - 5196512, - 5194592, - 5196544, - 4773136, - 5196560, - 5197008, - 5196576, - 4730112, - 5196592, - 5196608, - 5196624, - 5196640, - 5196656, - 5196672, - 4773136, - 5194528 + "vtable_address": 9588416, + "methods": [ + 5264832, + 4732560, + 4740256, + 5264848, + 4732560, + 4732560, + 5264864, + 5264880, + 5270464, + 4775568, + 4775520, + 5198976, + 5197088, + 5199008, + 5197088, + 5199040, + 4775568, + 5199056, + 5199504, + 5199072, + 4732480, + 5199088, + 5199104, + 5199120, + 5199136, + 5199152, + 5199168, + 4775568, + 5197024 ], "bases": [ { @@ -8523,11 +8580,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9694664, + "vtable_address": 9698864, "methods": [ - 7469424, - 7487520, - 7508512 + 7495600, + 7518752, + 7523872 ], "bases": [ { @@ -8549,11 +8606,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9673104, + "vtable_address": 9676080, "methods": [ - 6919984, - 6920048, - 6906208 + 6915120, + 6915184, + 6900496 ], "bases": [ { @@ -8575,11 +8632,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9679712, + "vtable_address": 9681888, "methods": [ - 6910016, - 6918672, - 6934176 + 6904896, + 6914048, + 6936800 ], "bases": [ { @@ -8601,11 +8658,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9676296, + "vtable_address": 9678832, "methods": [ - 6905744, - 6918688, - 6933312 + 6898496, + 6914064, + 6935936 ], "bases": [ { @@ -8627,11 +8684,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9688856, + "vtable_address": 9694184, "methods": [ - 7053440, - 7386192, - 7377936 + 7028064, + 7381984, + 7369840 ], "bases": [ { @@ -8653,11 +8710,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9681512, + "vtable_address": 9685448, "methods": [ - 6910016, - 7096592, - 7077712 + 6904896, + 7085056, + 7091680 ], "bases": [ { @@ -8679,11 +8736,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9681552, + "vtable_address": 9685488, "methods": [ - 7087104, - 7096624, - 7077728 + 7064320, + 7085088, + 7066464 ], "bases": [ { @@ -8705,11 +8762,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9674064, + "vtable_address": 9682416, "methods": [ - 7087088, - 7096608, - 7104368 + 7071360, + 7085072, + 7096544 ], "bases": [ { @@ -8731,11 +8788,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9681136, + "vtable_address": 9683776, "methods": [ - 7053280, - 7061088, - 7035488 + 7048288, + 7055984, + 7028016 ], "bases": [ { @@ -8757,11 +8814,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9681096, + "vtable_address": 9683736, "methods": [ - 7053456, - 7061296, - 7041072 + 7048432, + 7056192, + 7039392 ], "bases": [ { @@ -8783,11 +8840,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9672784, + "vtable_address": 9675760, "methods": [ - 7053120, - 7060608, - 7060656 + 7048128, + 7055504, + 7055552 ], "bases": [ { @@ -8809,11 +8866,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9676560, + "vtable_address": 9679096, "methods": [ - 7053088, - 7060304, - 7060352 + 7048096, + 7055200, + 7055248 ], "bases": [ { @@ -8835,11 +8892,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9677336, + "vtable_address": 9684024, "methods": [ - 7053152, - 7060928, - 7059600 + 7048160, + 7055824, + 7054496 ], "bases": [ { @@ -8861,11 +8918,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9680488, + "vtable_address": 9685256, "methods": [ - 7053424, - 7061232, - 7040496 + 7028048, + 7056128, + 7061040 ], "bases": [ { @@ -8887,11 +8944,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9681176, + "vtable_address": 9683816, "methods": [ - 7053504, - 7061360, - 7035584 + 7048480, + 7056256, + 7028144 ], "bases": [ { @@ -8913,11 +8970,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9677496, + "vtable_address": 9684184, "methods": [ - 7053184, - 7060976, - 7068512 + 7048192, + 7055872, + 7062768 ], "bases": [ { @@ -8939,11 +8996,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9680568, + "vtable_address": 9683208, "methods": [ - 7053440, - 7061280, - 7040896 + 7028064, + 7056176, + 7039216 ], "bases": [ { @@ -8965,11 +9022,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9680608, + "vtable_address": 9683248, "methods": [ - 6910016, - 7061264, - 7035552 + 6904896, + 7056160, + 7028112 ], "bases": [ { @@ -8991,11 +9048,11 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 9680528, + "vtable_address": 9685296, "methods": [ - 7053440, - 7061248, - 7035520 + 7028064, + 7056144, + 7028080 ], "bases": [ { @@ -9016,54 +9073,43 @@ } }, { - "type_name": "CDelayedCall", - "vtable_address": 9694528, + "type_name": "CDelayedCallBase", + "vtable_address": 9698264, "methods": [], - "bases": [ - { - "type_name": "CDelayedCall2", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CDelayedCallBase", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } + "bases": [], + "model": { + "Itanium": { + "offset_to_top": 1993344 } - ], + } + }, + { + "type_name": "CDelayedCallBase", + "vtable_address": 9684568, + "methods": [], + "bases": [], "model": { "Itanium": { - "offset_to_top": 1992192 + "offset_to_top": 1986912 } } }, { - "type_name": "CDelayedCallBase", - "vtable_address": 9672128, + "type_name": "CDelayedCallBase", + "vtable_address": 9685392, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1982624 + "offset_to_top": 1987168 } } }, { "type_name": "CDeltaEntityHeaderReader", - "vtable_address": 9651496, + "vtable_address": 9654696, "methods": [ - 6447504 + 6450544 ], "bases": [ { @@ -9085,9 +9131,9 @@ }, { "type_name": "CDeltaEntityHeaderWriter", - "vtable_address": 9713216, + "vtable_address": 9716448, "methods": [ - 7075568 + 7064336 ], "bases": [ { @@ -9109,9 +9155,9 @@ }, { "type_name": "CDeltaEntityNonTransmitHeaderWriter", - "vtable_address": 9713192, + "vtable_address": 9716424, "methods": [ - 7075824 + 7064592 ], "bases": [ { @@ -9133,37 +9179,37 @@ }, { "type_name": "CDeltaEntitysHeaderWriterBase", - "vtable_address": 9713176, + "vtable_address": 9716408, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2424640 + "offset_to_top": 2426848 } } }, { "type_name": "CDemoAnimationData", - "vtable_address": 9553792, - "methods": [ - 4822592, - 4822736, - 3320958, - 4773664, - 4850256, - 4773216, - 3323118, - 3319950, - 4815200, - 4731504, - 4836496, - 4730112, - 4812736, - 3319860, - 3320126, - 4773392, - 4816880, - 4808976 + "vtable_address": 9556992, + "methods": [ + 4825024, + 4825168, + 3323326, + 4776096, + 4852688, + 4775648, + 3325486, + 3322318, + 4817632, + 4733856, + 4838928, + 4732480, + 4815168, + 3322228, + 3322494, + 4775824, + 4819312, + 4811408 ], "bases": [ { @@ -9196,26 +9242,26 @@ }, { "type_name": "CDemoAnimationHeader", - "vtable_address": 9553952, - "methods": [ - 4822288, - 4822432, - 3320958, - 4773648, - 4849968, - 4773216, - 3323118, - 3319950, - 4815072, - 4731504, - 4835776, - 4730112, - 4812224, - 3319860, - 3320126, - 4773392, - 4816848, - 4808960 + "vtable_address": 9557152, + "methods": [ + 4824720, + 4824864, + 3323326, + 4776080, + 4852400, + 4775648, + 3325486, + 3322318, + 4817504, + 4733856, + 4838208, + 4732480, + 4814656, + 3322228, + 3322494, + 4775824, + 4819280, + 4811392 ], "bases": [ { @@ -9248,26 +9294,26 @@ }, { "type_name": "CDemoClassInfo", - "vtable_address": 9554432, - "methods": [ - 4821344, - 4821504, - 3320958, - 4773600, - 4849024, - 4773216, - 3323118, - 3319950, - 4814736, - 4731520, - 4834352, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 4816752, - 4808912 + "vtable_address": 9557632, + "methods": [ + 4823776, + 4823936, + 3323326, + 4776032, + 4851456, + 4775648, + 3325486, + 3322318, + 4817168, + 4733872, + 4836784, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 4819184, + 4811344 ], "bases": [ { @@ -9300,26 +9346,26 @@ }, { "type_name": "CDemoClassInfo_class_t", - "vtable_address": 9554592, - "methods": [ - 4821024, - 4821184, - 3320958, - 4773584, - 4848544, - 4773216, - 3323118, - 3319950, - 4814608, - 4731504, - 4833712, - 4730112, - 4811360, - 3319860, - 3320126, - 4773392, - 4816720, - 4808896 + "vtable_address": 9557792, + "methods": [ + 4823456, + 4823616, + 3323326, + 4776016, + 4850976, + 4775648, + 3325486, + 3322318, + 4817040, + 4733856, + 4836144, + 4732480, + 4813792, + 3322228, + 3322494, + 4775824, + 4819152, + 4811328 ], "bases": [ { @@ -9352,26 +9398,26 @@ }, { "type_name": "CDemoConsoleCmd", - "vtable_address": 9554912, - "methods": [ - 4820416, - 4820560, - 3320958, - 4773552, - 4848032, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4832912, - 4730112, - 4810992, - 3319860, - 3320126, - 4773392, - 4816656, - 4808864 + "vtable_address": 9558112, + "methods": [ + 4822848, + 4822992, + 3323326, + 4775984, + 4850464, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4835344, + 4732480, + 4813424, + 3322228, + 3322494, + 4775824, + 4819088, + 4811296 ], "bases": [ { @@ -9404,26 +9450,26 @@ }, { "type_name": "CDemoCustomData", - "vtable_address": 9554272, - "methods": [ - 4821680, - 4821824, - 3320958, - 4773616, - 4849632, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 4834816, - 4730112, - 4811840, - 3319860, - 3320126, - 4773392, - 4816784, - 4808928 + "vtable_address": 9557472, + "methods": [ + 4824112, + 4824256, + 3323326, + 4776048, + 4852064, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 4837248, + 4732480, + 4814272, + 3322228, + 3322494, + 4775824, + 4819216, + 4811360 ], "bases": [ { @@ -9456,26 +9502,26 @@ }, { "type_name": "CDemoCustomDataCallbacks", - "vtable_address": 9554112, - "methods": [ - 4821984, - 4822128, - 3320958, - 4773632, - 4849904, - 4773216, - 3323118, - 3319950, - 4818624, - 4731520, - 4835376, - 4730112, - 4818384, - 3319860, - 3320126, - 4817328, - 4816816, - 4808944 + "vtable_address": 9557312, + "methods": [ + 4824416, + 4824560, + 3323326, + 4776064, + 4852336, + 4775648, + 3325486, + 3322318, + 4821056, + 4733872, + 4837808, + 4732480, + 4820816, + 3322228, + 3322494, + 4819760, + 4819248, + 4811376 ], "bases": [ { @@ -9508,18 +9554,17 @@ }, { "type_name": "CDemoFile", - "vtable_address": 9559120, + "vtable_address": 9562320, "methods": [ - 4766864, - 4767648, - 4730336, - 4730208, - 4732032, - 4730272, - 4730224, - 4730240, - 4730256, - 4730304 + 4769296, + 4770080, + 4732688, + 4734384, + 4732624, + 4732576, + 4732592, + 4732608, + 4732656 ], "bases": [ { @@ -9541,26 +9586,26 @@ }, { "type_name": "CDemoFileHeader", - "vtable_address": 9556512, - "methods": [ - 4790752, - 4791392, - 3320958, - 4732704, - 4796400, - 4773184, - 3323118, - 3319950, - 4777136, - 4731504, - 4799120, - 4730112, - 4773984, - 3319860, - 3320126, - 4773392, - 4778624, - 4773168 + "vtable_address": 9559712, + "methods": [ + 4793184, + 4793824, + 3323326, + 4735056, + 4798832, + 4775616, + 3325486, + 3322318, + 4779568, + 4733856, + 4801552, + 4732480, + 4776416, + 3322228, + 3322494, + 4775824, + 4781056, + 4775600 ], "bases": [ { @@ -9593,26 +9638,26 @@ }, { "type_name": "CDemoFileInfo", - "vtable_address": 9555552, - "methods": [ - 4795296, - 4795504, - 3320958, - 4732720, - 4798368, - 4773216, - 3323118, - 3319950, - 4781440, - 4731504, - 4803904, - 4730112, - 4780576, - 3319860, - 3320126, - 4773392, - 4778816, - 4773296 + "vtable_address": 9558752, + "methods": [ + 4797728, + 4797936, + 3323326, + 4735072, + 4800800, + 4775648, + 3325486, + 3322318, + 4783872, + 4733856, + 4806336, + 4732480, + 4783008, + 3322228, + 3322494, + 4775824, + 4781248, + 4775728 ], "bases": [ { @@ -9645,26 +9690,26 @@ }, { "type_name": "CDemoFullPacket", - "vtable_address": 9555392, - "methods": [ - 4796032, - 4796208, - 3320958, - 4773504, - 4798848, - 4773216, - 3323118, - 3319950, - 4781616, - 4731504, - 4805056, - 4730112, - 4781040, - 3319860, - 3320126, - 4773392, - 4778880, - 4773328 + "vtable_address": 9558592, + "methods": [ + 4798464, + 4798640, + 3323326, + 4775936, + 4801280, + 4775648, + 3325486, + 3322318, + 4784048, + 4733856, + 4807488, + 4732480, + 4783472, + 3322228, + 3322494, + 4775824, + 4781312, + 4775760 ], "bases": [ { @@ -9697,15 +9742,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)0, CDemoStop>", - "vtable_address": 9648056, + "vtable_address": 9651272, "methods": [ - 6429712, - 6429856, - 5262864, - 6437552, - 6437776, - 6412240, - 6412256 + 6432720, + 6432864, + 5265376, + 6440560, + 6440784, + 6415216, + 6415232 ], "bases": [ { @@ -9770,26 +9815,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)0, CDemoStop>", - "vtable_address": 9648128, - "methods": [ - 6430016, - 6430160, - 3320958, - 4773728, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 4817008, - 4809040 + "vtable_address": 9651344, + "methods": [ + 6433024, + 6433168, + 3323326, + 4776160, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 4819440, + 4811472 ], "bases": [ { @@ -9854,15 +9899,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)1, CDemoFileHeader>", - "vtable_address": 9558888, + "vtable_address": 9562088, "methods": [ - 4785056, - 4790976, - 4773104, - 4790160, - 4790384, - 4773120, - 4773008 + 4787488, + 4793408, + 4775536, + 4792592, + 4792816, + 4775552, + 4775440 ], "bases": [ { @@ -9916,26 +9961,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)1, CDemoFileHeader>", - "vtable_address": 9558960, - "methods": [ - 4791120, - 4791248, - 3320958, - 4732704, - 4796400, - 4773184, - 3323118, - 3319950, - 4777136, - 4731504, - 4799120, - 4730112, - 4773984, - 3319860, - 3320126, - 4773392, - 4778624, - 4773168 + "vtable_address": 9562160, + "methods": [ + 4793552, + 4793680, + 3323326, + 4735056, + 4798832, + 4775616, + 3325486, + 3322318, + 4779568, + 4733856, + 4801552, + 4732480, + 4776416, + 3322228, + 3322494, + 4775824, + 4781056, + 4775600 ], "bases": [ { @@ -9989,15 +10034,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)10, CDemoCustomData>", - "vtable_address": 9645592, + "vtable_address": 9648792, "methods": [ - 6425936, - 6426192, - 6412320, - 6439152, - 6439376, - 4772992, - 4773008 + 6428944, + 6429200, + 6415296, + 6442160, + 6442384, + 4775424, + 4775440 ], "bases": [ { @@ -10051,26 +10096,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)10, CDemoCustomData>", - "vtable_address": 9645664, - "methods": [ - 6426464, - 6426720, - 3320958, - 4773616, - 4849632, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 4834816, - 4730112, - 4811840, - 3319860, - 3320126, - 4773392, - 4816784, - 4808928 + "vtable_address": 9648864, + "methods": [ + 6429472, + 6429728, + 3323326, + 4776048, + 4852064, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 4837248, + 4732480, + 4814272, + 3322228, + 3322494, + 4775824, + 4819216, + 4811360 ], "bases": [ { @@ -10124,15 +10169,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)11, CDemoCustomDataCallbacks>", - "vtable_address": 9648968, + "vtable_address": 9652184, "methods": [ - 6428656, - 6428912, - 6412272, - 6437952, - 6438176, - 4773072, - 4773008 + 6431664, + 6431920, + 6415248, + 6440960, + 6441184, + 4775504, + 4775440 ], "bases": [ { @@ -10186,26 +10231,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)11, CDemoCustomDataCallbacks>", - "vtable_address": 9649040, - "methods": [ - 6429184, - 6429440, - 3320958, - 4773632, - 4849904, - 4773216, - 3323118, - 3319950, - 4818624, - 4731520, - 4835376, - 4730112, - 4818384, - 3319860, - 3320126, - 4817328, - 4816816, - 4808944 + "vtable_address": 9652256, + "methods": [ + 6432192, + 6432448, + 3323326, + 4776064, + 4852336, + 4775648, + 3325486, + 3322318, + 4821056, + 4733872, + 4837808, + 4732480, + 4820816, + 3322228, + 3322494, + 4819760, + 4819248, + 4811376 ], "bases": [ { @@ -10259,15 +10304,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)12, CDemoUserCmd>", - "vtable_address": 9647592, + "vtable_address": 9650808, "methods": [ - 6435696, - 6435952, - 6412208, - 6436752, - 6436976, - 4772992, - 4773008 + 6438704, + 6438960, + 6415184, + 6439760, + 6439984, + 4775424, + 4775440 ], "bases": [ { @@ -10321,26 +10366,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)12, CDemoUserCmd>", - "vtable_address": 9647664, - "methods": [ - 6436224, - 6436480, - 3320958, - 4773744, - 4852544, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 4839264, - 4730112, - 4813888, - 3319860, - 3320126, - 4773392, - 4817040, - 4809056 + "vtable_address": 9650880, + "methods": [ + 6439232, + 6439488, + 3323326, + 4776176, + 4854976, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 4841696, + 4732480, + 4816320, + 3322228, + 3322494, + 4775824, + 4819472, + 4811488 ], "bases": [ { @@ -10394,15 +10439,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)13, CDemoFullPacket>", - "vtable_address": 9647824, + "vtable_address": 9651040, "methods": [ - 6430320, - 6430608, - 6412224, - 6437152, - 6437376, - 4772992, - 4773008 + 6433328, + 6433616, + 6415200, + 6440160, + 6440384, + 4775424, + 4775440 ], "bases": [ { @@ -10456,26 +10501,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)13, CDemoFullPacket>", - "vtable_address": 9647896, - "methods": [ - 6430912, - 6431200, - 3320958, - 4773504, - 4798848, - 4773216, - 3323118, - 3319950, - 4781616, - 4731504, - 4805056, - 4730112, - 4781040, - 3319860, - 3320126, - 4773392, - 4778880, - 4773328 + "vtable_address": 9651112, + "methods": [ + 6433920, + 6434208, + 3323326, + 4775936, + 4801280, + 4775648, + 3325486, + 3322318, + 4784048, + 4733856, + 4807488, + 4732480, + 4783472, + 3322228, + 3322494, + 4775824, + 4781312, + 4775760 ], "bases": [ { @@ -10529,15 +10574,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)14, CDemoSaveGame>", - "vtable_address": 9650168, + "vtable_address": 9653384, "methods": [ - 6433616, - 6433872, - 6412160, - 6434896, - 6435120, - 6412176, - 4773008 + 6436624, + 6436880, + 6415136, + 6437904, + 6438128, + 6415152, + 4775440 ], "bases": [ { @@ -10591,26 +10636,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)14, CDemoSaveGame>", - "vtable_address": 9650240, - "methods": [ - 6434144, - 6434400, - 3320958, - 4773520, - 4847728, - 4773216, - 3323118, - 3319950, - 4814496, - 4731504, - 4832272, - 4730112, - 4810528, - 3319860, - 3320126, - 4773392, - 4816592, - 4808832 + "vtable_address": 9653456, + "methods": [ + 6437152, + 6437408, + 3323326, + 4775952, + 4850160, + 4775648, + 3325486, + 3322318, + 4816928, + 4733856, + 4834704, + 4732480, + 4812960, + 3322228, + 3322494, + 4775824, + 4819024, + 4811264 ], "bases": [ { @@ -10664,15 +10709,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)15, CDemoSpawnGroups>", - "vtable_address": 9558424, + "vtable_address": 9561624, "methods": [ - 4785392, - 4785648, - 4773056, - 4789360, - 4789584, - 4773072, - 4773008 + 4787824, + 4788080, + 4775488, + 4791792, + 4792016, + 4775504, + 4775440 ], "bases": [ { @@ -10726,26 +10771,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)15, CDemoSpawnGroups>", - "vtable_address": 9558496, - "methods": [ - 4785920, - 4786176, - 3320958, - 4732752, - 4852816, - 4773216, - 3323118, - 3319950, - 4818624, - 4731520, - 4839824, - 4730112, - 4818768, - 3319860, - 3320126, - 4817328, - 4817072, - 4809072 + "vtable_address": 9561696, + "methods": [ + 4788352, + 4788608, + 3323326, + 4735104, + 4855248, + 4775648, + 3325486, + 3322318, + 4821056, + 4733872, + 4842256, + 4732480, + 4821200, + 3322228, + 3322494, + 4819760, + 4819504, + 4811504 ], "bases": [ { @@ -10799,15 +10844,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)16, CDemoAnimationData>", - "vtable_address": 9649936, + "vtable_address": 9653152, "methods": [ - 6432560, - 6432816, - 6412336, - 6439552, - 6439776, - 6412176, - 4773008 + 6435568, + 6435824, + 6415312, + 6442560, + 6442784, + 6415152, + 4775440 ], "bases": [ { @@ -10861,26 +10906,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)16, CDemoAnimationData>", - "vtable_address": 9650008, - "methods": [ - 6433088, - 6433344, - 3320958, - 4773664, - 4850256, - 4773216, - 3323118, - 3319950, - 4815200, - 4731504, - 4836496, - 4730112, - 4812736, - 3319860, - 3320126, - 4773392, - 4816880, - 4808976 + "vtable_address": 9653224, + "methods": [ + 6436096, + 6436352, + 3323326, + 4776096, + 4852688, + 4775648, + 3325486, + 3322318, + 4817632, + 4733856, + 4838928, + 4732480, + 4815168, + 3322228, + 3322494, + 4775824, + 4819312, + 4811408 ], "bases": [ { @@ -10934,15 +10979,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)17, CDemoAnimationHeader>", - "vtable_address": 9650872, + "vtable_address": 9654072, "methods": [ - 6431504, - 6431760, - 6412192, - 6435296, - 6435520, - 4772992, - 4773008 + 6434512, + 6434768, + 6415168, + 6438304, + 6438528, + 4775424, + 4775440 ], "bases": [ { @@ -10996,26 +11041,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)17, CDemoAnimationHeader>", - "vtable_address": 9650944, - "methods": [ - 6432032, - 6432288, - 3320958, - 4773648, - 4849968, - 4773216, - 3323118, - 3319950, - 4815072, - 4731504, - 4835776, - 4730112, - 4812224, - 3319860, - 3320126, - 4773392, - 4816848, - 4808960 + "vtable_address": 9654144, + "methods": [ + 6435040, + 6435296, + 3323326, + 4776080, + 4852400, + 4775648, + 3325486, + 3322318, + 4817504, + 4733856, + 4838208, + 4732480, + 4814656, + 3322228, + 3322494, + 4775824, + 4819280, + 4811392 ], "bases": [ { @@ -11069,15 +11114,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)18, CDemoRecovery>", - "vtable_address": 9557976, + "vtable_address": 9561176, "methods": [ - 4787504, - 4787760, - 4772976, - 4788560, - 4788784, - 4772992, - 4773008 + 4789936, + 4790192, + 4775408, + 4790992, + 4791216, + 4775424, + 4775440 ], "bases": [ { @@ -11131,26 +11176,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)18, CDemoRecovery>", - "vtable_address": 9558048, - "methods": [ - 4788032, - 4788288, - 3320958, - 4732768, - 4852944, - 4773216, - 3323118, - 3319950, - 4816048, - 4731504, - 4840800, - 4730112, - 4817920, - 3319860, - 3320126, - 4773392, - 4817136, - 4809104 + "vtable_address": 9561248, + "methods": [ + 4790464, + 4790720, + 3323326, + 4735120, + 4855376, + 4775648, + 3325486, + 3322318, + 4818480, + 4733856, + 4843232, + 4732480, + 4820352, + 3322228, + 3322494, + 4775824, + 4819568, + 4811536 ], "bases": [ { @@ -11204,15 +11249,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)2, CDemoFileInfo>", - "vtable_address": 9558656, + "vtable_address": 9561856, "methods": [ - 4793440, - 4793776, - 4773088, - 4789760, - 4789984, - 4773072, - 4773008 + 4795872, + 4796208, + 4775520, + 4792192, + 4792416, + 4775504, + 4775440 ], "bases": [ { @@ -11266,26 +11311,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)2, CDemoFileInfo>", - "vtable_address": 9558728, - "methods": [ - 4794112, - 4794448, - 3320958, - 4732720, - 4798368, - 4773216, - 3323118, - 3319950, - 4781440, - 4731504, - 4803904, - 4730112, - 4780576, - 3319860, - 3320126, - 4773392, - 4778816, - 4773296 + "vtable_address": 9561928, + "methods": [ + 4796544, + 4796880, + 3323326, + 4735072, + 4800800, + 4775648, + 3325486, + 3322318, + 4783872, + 4733856, + 4806336, + 4732480, + 4783008, + 3322228, + 3322494, + 4775824, + 4781248, + 4775728 ], "bases": [ { @@ -11339,15 +11384,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)3, CDemoSyncTick>", - "vtable_address": 9649200, + "vtable_address": 9652416, "methods": [ - 6428048, - 6428192, - 6412288, - 6438352, - 6438576, - 6412240, - 6412256 + 6431056, + 6431200, + 6415264, + 6441360, + 6441584, + 6415216, + 6415232 ], "bases": [ { @@ -11412,26 +11457,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)3, CDemoSyncTick>", - "vtable_address": 9649272, - "methods": [ - 6428352, - 6428496, - 3320958, - 4773536, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 4816624, - 4808848 + "vtable_address": 9652488, + "methods": [ + 6431360, + 6431504, + 3323326, + 4775968, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 4819056, + 4811280 ], "bases": [ { @@ -11496,15 +11541,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)4, CDemoSendTables>", - "vtable_address": 9646288, + "vtable_address": 9649488, "methods": [ - 6422640, - 6422896, - 6412384, - 6440752, - 6440976, - 4773040, - 4773008 + 6425648, + 6425904, + 6415360, + 6443760, + 6443984, + 4775472, + 4775440 ], "bases": [ { @@ -11558,26 +11603,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)4, CDemoSendTables>", - "vtable_address": 9646360, - "methods": [ - 6423168, - 6423424, - 3320958, - 4773568, - 4848288, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4833312, - 4730112, - 4811168, - 3319860, - 3320126, - 4773392, - 4816688, - 4808880 + "vtable_address": 9649560, + "methods": [ + 6426176, + 6426432, + 3323326, + 4776000, + 4850720, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4835744, + 4732480, + 4813600, + 3322228, + 3322494, + 4775824, + 4819120, + 4811312 ], "bases": [ { @@ -11631,15 +11676,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)5, CDemoClassInfo>", - "vtable_address": 9646056, + "vtable_address": 9649256, "methods": [ - 6423696, - 6423968, - 6412368, - 6440352, - 6440576, - 4773072, - 4773008 + 6426704, + 6426976, + 6415344, + 6443360, + 6443584, + 4775504, + 4775440 ], "bases": [ { @@ -11693,26 +11738,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)5, CDemoClassInfo>", - "vtable_address": 9646128, - "methods": [ - 6424256, - 6424528, - 3320958, - 4773600, - 4849024, - 4773216, - 3323118, - 3319950, - 4814736, - 4731520, - 4834352, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 4816752, - 4808912 + "vtable_address": 9649328, + "methods": [ + 6427264, + 6427536, + 3323326, + 4776032, + 4851456, + 4775648, + 3325486, + 3322318, + 4817168, + 4733872, + 4836784, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 4819184, + 4811344 ], "bases": [ { @@ -11766,15 +11811,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)6, CDemoStringTables>", - "vtable_address": 9645824, + "vtable_address": 9649024, "methods": [ - 6424816, - 6425088, - 6412352, - 6439952, - 6440176, - 4773072, - 4773008 + 6427824, + 6428096, + 6415328, + 6442960, + 6443184, + 4775504, + 4775440 ], "bases": [ { @@ -11828,26 +11873,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)6, CDemoStringTables>", - "vtable_address": 9645896, + "vtable_address": 9649096, "methods": [ - 6425376, - 6425648, - 3320958, - 4773712, - 4852432, - 4773216, - 3323118, - 3319950, - 4815872, - 4731520, - 4838800, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 4816976, - 4809024 + 6428384, + 6428656, + 3323326, + 4776144, + 4854864, + 4775648, + 3325486, + 3322318, + 4818304, + 4733872, + 4841232, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 4819408, + 4811456 ], "bases": [ { @@ -11901,15 +11946,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)7, CDemoPacket>", - "vtable_address": 9557512, + "vtable_address": 9560712, "methods": [ - 4786448, - 4786704, - 4773024, - 4788960, - 4789184, - 4773040, - 4773008 + 4788880, + 4789136, + 4775456, + 4791392, + 4791616, + 4775472, + 4775440 ], "bases": [ { @@ -11963,26 +12008,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)7, CDemoPacket>", - "vtable_address": 9557584, - "methods": [ - 4786976, - 4787232, - 3320958, - 4732736, - 4798592, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4804656, - 4730112, - 4773776, - 3319860, - 3320126, - 4773392, - 4778848, - 4773312 + "vtable_address": 9560784, + "methods": [ + 4789408, + 4789664, + 3323326, + 4735088, + 4801024, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4807088, + 4732480, + 4776208, + 3322228, + 3322494, + 4775824, + 4781280, + 4775744 ], "bases": [ { @@ -12036,15 +12081,15 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)9, CDemoConsoleCmd>", - "vtable_address": 9649432, + "vtable_address": 9652648, "methods": [ - 6426992, - 6427248, - 6412304, - 6438752, - 6438976, - 4773040, - 4773008 + 6430000, + 6430256, + 6415280, + 6441760, + 6441984, + 4775472, + 4775440 ], "bases": [ { @@ -12098,26 +12143,26 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)9, CDemoConsoleCmd>", - "vtable_address": 9649504, - "methods": [ - 6427520, - 6427776, - 3320958, - 4773552, - 4848032, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4832912, - 4730112, - 4810992, - 3319860, - 3320126, - 4773392, - 4816656, - 4808864 + "vtable_address": 9652720, + "methods": [ + 6430528, + 6430784, + 3323326, + 4775984, + 4850464, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4835344, + 4732480, + 4813424, + 3322228, + 3322494, + 4775824, + 4819088, + 4811296 ], "bases": [ { @@ -12171,26 +12216,26 @@ }, { "type_name": "CDemoPacket", - "vtable_address": 9557352, + "vtable_address": 9560552, "methods": [ - 4795728, - 4795872, - 3320958, - 4732736, - 4798592, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4804656, - 4730112, - 4773776, - 3319860, - 3320126, - 4773392, - 4778848, - 4773312 + 4798160, + 4798304, + 3323326, + 4735088, + 4801024, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4807088, + 4732480, + 4776208, + 3322228, + 3322494, + 4775824, + 4781280, + 4775744 ], "bases": [ { @@ -12223,13 +12268,13 @@ }, { "type_name": "CDemoPlaybackLoop", - "vtable_address": 9650816, + "vtable_address": 9654016, "methods": [ - 6413344, - 6414304, - 6441152, - 6412400, - 6412048 + 6416320, + 6417280, + 6444160, + 6415376, + 6415024 ], "bases": [ { @@ -12251,52 +12296,54 @@ }, { "type_name": "CDemoPlayer", - "vtable_address": 9647200, - "methods": [ - 6332320, - 6333888, - 6280544, - 6368944, - 6368960, - 6369040, - 6369120, - 6327984, - 6369136, - 6384768, - 6397712, - 6328096, - 6328112, - 6328064, - 6368896, - 6328032, - 6327952, - 6280560, - 6369200, - 6369184, - 6369520, - 6329792, - 6368640, - 6329712, - 6368448, - 6328016, - 6412016, - 6412032, - 6410112, - 6369216, - 6369888, - 6329744, - 6329056, - 6328080, - 6353328, - 6280608, - 6280576, - 6280592, - 6368592, - 6368608, - 6368624, - 6389296, - 6389072, - 6380560 + "vtable_address": 9650400, + "methods": [ + 6334880, + 6336448, + 6283104, + 6371920, + 6371936, + 6372016, + 6372096, + 6330544, + 6372112, + 6387744, + 6400688, + 6330656, + 6330672, + 6330624, + 6371872, + 6330592, + 6330512, + 6283120, + 6372176, + 6372160, + 6372496, + 6332352, + 6371616, + 6332272, + 6371424, + 4775648, + 6343024, + 6330576, + 6414992, + 6415008, + 6413088, + 6372192, + 6372864, + 6332304, + 6331616, + 6330640, + 6356304, + 6283168, + 6283136, + 6283152, + 6371568, + 6371584, + 6371600, + 6392272, + 6392048, + 6383536 ], "bases": [ { @@ -12328,9 +12375,9 @@ }, { "type_name": "CDemoPlayer", - "vtable_address": 9647568, + "vtable_address": 9650784, "methods": [ - 6380832 + 6383808 ], "bases": [ { @@ -12362,32 +12409,32 @@ }, { "type_name": "CDemoRecorder", - "vtable_address": 9648288, - "methods": [ - 6351632, - 6352320, - 6329456, - 6336480, - 6280624, - 6280624, - 6280656, - 6329168, - 6294448, - 6327920, - 6338128, - 6331584, - 6280768, - 6325888, - 6324448, - 6294704, - 6324960, - 6327904, - 6327936, - 6328832, - 6338224, - 6335648, - 6336432, - 6328128 + "vtable_address": 9651504, + "methods": [ + 6354608, + 6355296, + 6332016, + 6339040, + 6283184, + 6283184, + 6283216, + 6331728, + 6297008, + 6330480, + 6340688, + 6334144, + 6283328, + 6328448, + 6327008, + 6297264, + 6327520, + 6330464, + 6330496, + 6331392, + 6340784, + 6338208, + 6338992, + 6330688 ], "bases": [ { @@ -12430,9 +12477,9 @@ }, { "type_name": "CDemoRecorder", - "vtable_address": 9648496, + "vtable_address": 9651712, "methods": [ - 6328480 + 6331040 ], "bases": [ { @@ -12475,26 +12522,26 @@ }, { "type_name": "CDemoRecovery", - "vtable_address": 9557816, - "methods": [ - 4825600, - 4824848, - 3320958, - 4732768, - 4852944, - 4773216, - 3323118, - 3319950, - 4816048, - 4731504, - 4840800, - 4730112, - 4817920, - 3319860, - 3320126, - 4773392, - 4817136, - 4809104 + "vtable_address": 9561016, + "methods": [ + 4828032, + 4827280, + 3323326, + 4735120, + 4855376, + 4775648, + 3325486, + 3322318, + 4818480, + 4733856, + 4843232, + 4732480, + 4820352, + 3322228, + 3322494, + 4775824, + 4819568, + 4811536 ], "bases": [ { @@ -12527,26 +12574,26 @@ }, { "type_name": "CDemoRecovery_DemoInitialSpawnGroupEntry", - "vtable_address": 9552832, + "vtable_address": 9556032, "methods": [ - 4824592, - 4824720, - 3320958, - 4773760, - 4852880, - 4773216, - 3323118, - 3319950, - 4815984, - 4731504, - 4840224, - 4730112, - 4809216, - 3319860, - 3320126, - 4773392, - 4817104, - 4809088 + 4827024, + 4827152, + 3323326, + 4776192, + 4855312, + 4775648, + 3325486, + 3322318, + 4818416, + 4733856, + 4842656, + 4732480, + 4811648, + 3322228, + 3322494, + 4775824, + 4819536, + 4811520 ], "bases": [ { @@ -12579,26 +12626,26 @@ }, { "type_name": "CDemoSaveGame", - "vtable_address": 9555232, - "methods": [ - 4820112, - 4820256, - 3320958, - 4773520, - 4847728, - 4773216, - 3323118, - 3319950, - 4814496, - 4731504, - 4832272, - 4730112, - 4810528, - 3319860, - 3320126, - 4773392, - 4816592, - 4808832 + "vtable_address": 9558432, + "methods": [ + 4822544, + 4822688, + 3323326, + 4775952, + 4850160, + 4775648, + 3325486, + 3322318, + 4816928, + 4733856, + 4834704, + 4732480, + 4812960, + 3322228, + 3322494, + 4775824, + 4819024, + 4811264 ], "bases": [ { @@ -12631,26 +12678,26 @@ }, { "type_name": "CDemoSendTables", - "vtable_address": 9554752, - "methods": [ - 4820720, - 4820864, - 3320958, - 4773568, - 4848288, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4833312, - 4730112, - 4811168, - 3319860, - 3320126, - 4773392, - 4816688, - 4808880 + "vtable_address": 9557952, + "methods": [ + 4823152, + 4823296, + 3323326, + 4776000, + 4850720, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4835744, + 4732480, + 4813600, + 3322228, + 3322494, + 4775824, + 4819120, + 4811312 ], "bases": [ { @@ -12683,26 +12730,26 @@ }, { "type_name": "CDemoSpawnGroups", - "vtable_address": 9558264, - "methods": [ - 4824288, - 4824432, - 3320958, - 4732752, - 4852816, - 4773216, - 3323118, - 3319950, - 4818624, - 4731520, - 4839824, - 4730112, - 4818768, - 3319860, - 3320126, - 4817328, - 4817072, - 4809072 + "vtable_address": 9561464, + "methods": [ + 4826720, + 4826864, + 3323326, + 4735104, + 4855248, + 4775648, + 3325486, + 3322318, + 4821056, + 4733872, + 4842256, + 4732480, + 4821200, + 3322228, + 3322494, + 4819760, + 4819504, + 4811504 ], "bases": [ { @@ -12735,26 +12782,26 @@ }, { "type_name": "CDemoStop", - "vtable_address": 9553152, - "methods": [ - 4784864, - 4790704, - 3320958, - 4773728, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 4817008, - 4809040 + "vtable_address": 9556352, + "methods": [ + 4787296, + 4793136, + 3323326, + 4776160, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 4819440, + 4811472 ], "bases": [ { @@ -12798,18 +12845,17 @@ }, { "type_name": "CDemoStreamHttp", - "vtable_address": 9695912, + "vtable_address": 9700080, "methods": [ - 7530832, - 7531344, - 6745360, - 4730208, - 7515168, - 6745376, - 7513040, - 4730240, - 4730256, - 4730256 + 7558704, + 7559216, + 6739696, + 7561152, + 6739712, + 7547120, + 4732592, + 4732608, + 4732608 ], "bases": [ { @@ -12831,16 +12877,16 @@ }, { "type_name": "CDemoStreamHttp::CFragmentRequest", - "vtable_address": 9697744, + "vtable_address": 9699136, "methods": [ - 7556544, - 7574656, - 7421456, - 7582336, - 7580288, - 7557440, - 7555248, - 7570976 + 7548384, + 7568160, + 7406160, + 7569760, + 7556576, + 7548720, + 7547792, + 7555696 ], "bases": [ { @@ -12873,16 +12919,16 @@ }, { "type_name": "CDemoStreamHttp::CStartRequest", - "vtable_address": 9695368, + "vtable_address": 9699520, "methods": [ - 7556544, - 7574656, - 7421456, - 7581936, - 7573408, - 7557408, - 7568736, - 7570992 + 7548384, + 7568160, + 7406160, + 7567744, + 7564848, + 7548688, + 7547808, + 7555712 ], "bases": [ { @@ -12915,16 +12961,16 @@ }, { "type_name": "CDemoStreamHttp::CSyncRequest", - "vtable_address": 9697824, - "methods": [ - 7556544, - 7574656, - 7421456, - 7579824, - 7573664, - 7558944, - 7555264, - 7571008 + "vtable_address": 9699216, + "methods": [ + 7548384, + 7568160, + 7406160, + 7567072, + 7565104, + 7548768, + 7547824, + 7555728 ], "bases": [ { @@ -12957,26 +13003,26 @@ }, { "type_name": "CDemoStringTables", - "vtable_address": 9553312, - "methods": [ - 4823648, - 4823808, - 3320958, - 4773712, - 4852432, - 4773216, - 3323118, - 3319950, - 4815872, - 4731520, - 4838800, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 4816976, - 4809024 + "vtable_address": 9556512, + "methods": [ + 4826080, + 4826240, + 3323326, + 4776144, + 4854864, + 4775648, + 3325486, + 3322318, + 4818304, + 4733872, + 4841232, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 4819408, + 4811456 ], "bases": [ { @@ -13009,26 +13055,26 @@ }, { "type_name": "CDemoStringTables_items_t", - "vtable_address": 9553632, - "methods": [ - 4822896, - 4823056, - 3320958, - 4773680, - 4850560, - 4773216, - 3323118, - 3319950, - 4815392, - 4731504, - 4837440, - 4730112, - 4813568, - 3319860, - 3320126, - 4773392, - 4816912, - 4808992 + "vtable_address": 9556832, + "methods": [ + 4825328, + 4825488, + 3323326, + 4776112, + 4852992, + 4775648, + 3325486, + 3322318, + 4817824, + 4733856, + 4839872, + 4732480, + 4816000, + 3322228, + 3322494, + 4775824, + 4819344, + 4811424 ], "bases": [ { @@ -13061,26 +13107,26 @@ }, { "type_name": "CDemoStringTables_table_t", - "vtable_address": 9553472, - "methods": [ - 4823216, - 4823424, - 3320958, - 4773696, - 4851024, - 4773216, - 3323118, - 3319950, - 4815504, - 4731504, - 4837904, - 4730112, - 4817472, - 3319860, - 3320126, - 4773392, - 4816944, - 4809008 + "vtable_address": 9556672, + "methods": [ + 4825648, + 4825856, + 3323326, + 4776128, + 4853456, + 4775648, + 3325486, + 3322318, + 4817936, + 4733856, + 4840336, + 4732480, + 4819904, + 3322228, + 3322494, + 4775824, + 4819376, + 4811440 ], "bases": [ { @@ -13113,26 +13159,26 @@ }, { "type_name": "CDemoSyncTick", - "vtable_address": 9555072, - "methods": [ - 4784848, - 4790656, - 3320958, - 4773536, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 4816624, - 4808848 + "vtable_address": 9558272, + "methods": [ + 4787280, + 4793088, + 3323326, + 4775968, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 4819056, + 4811280 ], "bases": [ { @@ -13176,26 +13222,26 @@ }, { "type_name": "CDemoUserCmd", - "vtable_address": 9552992, - "methods": [ - 4823984, - 4824128, - 3320958, - 4773744, - 4852544, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 4839264, - 4730112, - 4813888, - 3319860, - 3320126, - 4773392, - 4817040, - 4809056 + "vtable_address": 9556192, + "methods": [ + 4826416, + 4826560, + 3323326, + 4776176, + 4854976, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 4841696, + 4732480, + 4816320, + 3322228, + 3322494, + 4775824, + 4819472, + 4811488 ], "bases": [ { @@ -13228,24 +13274,24 @@ }, { "type_name": "CDiskDemoBuffer", - "vtable_address": 9559360, - "methods": [ - 4750272, - 4750752, - 4758928, - 4729952, - 4729920, - 4732224, - 4732192, - 4730064, - 4730080, - 4730096, - 4730544, - 4740992, - 4730464, - 4739264, - 4730864, - 4730112 + "vtable_address": 9562552, + "methods": [ + 4752688, + 4753168, + 4761360, + 4732320, + 4732288, + 4734576, + 4734544, + 4732432, + 4732448, + 4732464, + 4732896, + 4743360, + 4732816, + 4741632, + 4733216, + 4732480 ], "bases": [ { @@ -13267,15 +13313,15 @@ }, { "type_name": "CDownloadAddonPrerequisite", - "vtable_address": 9643512, + "vtable_address": 9646712, "methods": [ - 6246944, - 6261344, - 5262448, - 5262464, - 6246640, - 6246624, - 6253312 + 6249440, + 6263888, + 5264960, + 5264976, + 6249136, + 6249120, + 6255808 ], "bases": [ { @@ -13297,20 +13343,20 @@ }, { "type_name": "CEmptyEntityResourceManifest", - "vtable_address": 9604976, + "vtable_address": 9608176, "methods": [ - 4730112, - 5670080, - 5670096, - 5705280, - 5717744, - 5705776, - 5670144, - 5670192, - 5670208, - 5703056, - 5703072, - 5670112 + 4732480, + 5672544, + 5672560, + 5707776, + 5720240, + 5708272, + 5672608, + 5672656, + 5672672, + 5705552, + 5705568, + 5672576 ], "bases": [ { @@ -13343,10 +13389,10 @@ }, { "type_name": "CEngine2MinidumpCommentBuilder", - "vtable_address": 9588544, + "vtable_address": 9591744, "methods": [ - 5267232, - 5286320 + 5269760, + 5288848 ], "bases": [], "model": { @@ -13357,198 +13403,198 @@ }, { "type_name": "CEngineClient", - "vtable_address": 9667664, + "vtable_address": 9673136, "methods": [ - 6758944, - 6759072, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307648, - 6759280, - 4773136, - 4773088, - 6748224, - 6748608, - 6157376, - 6757696, - 6747712, - 6774768, - 6775120, - 6750560, - 6755904, - 6746752, - 6745344, - 6746880, - 6746960, - 6745424, - 6756752, + 6789664, + 6789792, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310144, + 6790000, + 4775568, + 4775520, + 6742544, + 6742928, + 6159872, + 6750592, + 6742032, + 6765280, + 6765632, + 6743776, 6748800, - 6756896, - 6757536, - 6767280, - 6747152, - 6757584, - 6747456, - 6749856, - 6749904, - 6747520, - 6747632, - 6747664, - 6747728, - 6747776, - 6750032, - 6747936, - 6748032, - 6748112, - 6748176, - 6747984, - 6747120, - 6747104, - 6747360, - 6781696, - 6747408, - 6747440, - 6611648, - 6750064, - 6750144, - 6750320, - 6748992, - 6750400, - 6747888, - 6747216, - 6747808, - 6757760, - 6750576, - 6750800, - 6446768, - 6747904, - 6748672, - 6748688, - 6748160, - 6745888, - 6745824, - 6748704, - 6748720, - 6748736, - 6748768, - 6748784, + 6741088, + 6739680, + 6741216, + 6741296, + 6739760, + 6749648, + 6743120, + 6749792, + 6750432, + 6759216, + 6741472, + 6750480, + 6741776, + 6743312, + 6743360, + 6741840, + 6741952, + 6741984, + 6742048, + 6742096, + 6743488, + 6742256, + 6742352, + 6742432, + 6742496, + 6742304, + 6741440, + 6741424, + 6741680, + 6780192, + 6741728, + 6741760, + 6614592, + 6743520, + 6743600, + 6787952, + 6782048, + 6788032, + 6742208, + 6741536, + 6742128, + 6750656, + 6746944, + 6747168, + 6449808, + 6742224, + 6742992, + 6743008, + 6742480, + 6740224, + 6740160, + 6743024, + 6743040, + 6743056, + 6743088, + 6743104, + 6740128, + 6742608, + 6742656, + 6742704, + 6742800, + 6742848, + 6742880, + 6742752, + 6742944, + 6750736, + 6750912, + 6739776, + 6739792, + 6739824, + 6739856, + 6739888, + 6743232, + 6742016, + 6743248, + 6743264, + 6765952, + 6743280, + 6766080, + 6766224, + 6798464, + 6788192, + 6782272, + 6622064, + 6782160, + 6782176, + 6782192, + 6782208, + 6782096, + 6782128, + 6782144, + 6782256, + 5401408, + 6788960, + 6798928, + 6742128, + 6789104, + 6806320, + 6789616, + 6739920, + 6739968, + 6740016, + 6743792, + 6743872, + 6743888, + 6743984, + 6751136, + 6744176, + 6744224, + 6740320, + 6740368, + 6777376, + 6744272, + 6764512, + 6740416, + 6764944, + 6744368, + 6744336, + 6744304, + 6751872, + 6740240, + 6740256, + 6740272, + 6740288, + 6740304, + 6740576, + 6740656, + 6744720, + 6745248, + 6740688, + 6745648, + 6745696, 6745792, - 6748288, - 6748336, - 6748384, - 6748480, - 6748528, - 6748560, - 6748432, - 6748624, - 6757840, - 6758016, - 6745440, - 6745456, - 6745488, - 6745520, - 6745552, - 6748912, - 6747696, - 6748928, - 6748944, - 6775440, - 6748960, - 6775568, - 6775712, - 6760896, - 6751520, - 6749216, - 6619120, - 6749104, - 6749120, - 6749136, - 6749152, - 6749040, - 6749072, - 6749088, - 6749200, - 5398912, - 6758240, - 6761360, - 6747808, - 6758384, - 6783584, - 6758896, - 6745584, - 6745632, - 6745680, - 6751024, - 6751104, - 6751120, - 6751216, - 6759872, - 6751408, - 6751456, - 6745984, - 6746032, - 6778880, - 6751712, - 6772880, - 6746080, - 6773312, - 6751920, - 6751888, - 6751856, - 6760608, - 6745904, - 6745920, 6745936, - 6745952, - 6745968, - 6746240, - 6746320, - 6752272, - 6752800, - 6746352, - 6753200, - 6753248, - 6753344, - 6753488, - 6753648, - 6754128, - 6754240, - 6754496, - 6754832, - 6746368, - 6746432, - 6754864, - 6746480, - 6746544, + 6746096, 6746576, - 6752352, - 6752848, - 6755056, - 6752448, - 6752976, - 6755136, - 6755184, - 6753440, - 6753600, - 6748752, - 6745744, - 6746624, - 6746640, - 6746672, - 6755280, - 5390592, - 5148688, - 5390592, - 6782528, - 6747072, - 6775856, - 6752544, - 6753024, - 6754016, - 6757552 + 6746688, + 6747392, + 6747728, + 6740704, + 6740768, + 6747760, + 6740816, + 6740880, + 6740912, + 6744800, + 6745296, + 6747952, + 6744896, + 6745424, + 6748032, + 6748080, + 6745888, + 6746048, + 6743072, + 6740080, + 6740960, + 6740976, + 6741008, + 6748176, + 5393088, + 5151216, + 5393088, + 6780992, + 6741408, + 6774352, + 6744992, + 6745472, + 6746464, + 6750448 ], "bases": [ { @@ -13658,13 +13704,13 @@ }, { "type_name": "CEngineConsoleLoggingListener", - "vtable_address": 9585960, + "vtable_address": 9589160, "methods": [ - 5225840, - 4730192, - 5148688, - 5148688, - 5148688 + 5228336, + 4732560, + 5151216, + 5151216, + 5151216 ], "bases": [ { @@ -13686,24 +13732,24 @@ }, { "type_name": "CEngineGameUI", - "vtable_address": 9697280, - "methods": [ - 7562592, - 7561888, - 4737920, - 7562912, - 7563312, - 4730192, - 7556848, - 6486192, - 7562192, - 4773136, - 4773088, - 7555840, - 7571024, - 7555712, - 7562464, - 7555984 + "vtable_address": 9701536, + "methods": [ + 7596112, + 7595264, + 4740256, + 7596432, + 7596832, + 4732560, + 7595968, + 6489264, + 7595568, + 4775568, + 4775520, + 7589856, + 7613008, + 7589728, + 7595840, + 7590000 ], "bases": [ { @@ -13791,26 +13837,26 @@ }, { "type_name": "CEngineGotvSyncPacket", - "vtable_address": 9693648, - "methods": [ - 7623888, - 7624016, - 3320958, - 7611664, - 7626000, - 4773216, - 3323118, - 3319950, - 7603840, - 4731504, - 7628768, - 4730112, + "vtable_address": 9695184, + "methods": [ + 7615440, + 7615568, + 3323326, + 7611952, + 7617552, + 4775648, + 3325486, + 3322318, + 7602400, + 4733856, + 7620320, + 4732480, + 7598080, + 3322228, + 3322494, + 4775824, 7599520, - 3319860, - 3320126, - 4773392, - 7600960, - 7596592 + 7590272 ], "bases": [ { @@ -13843,17 +13889,17 @@ }, { "type_name": "CEnginePVSManager", - "vtable_address": 9601272, + "vtable_address": 9604472, "methods": [ - 5577600, - 5565504, - 5543040, - 5545408, - 5542992, - 5546064, - 5543200, - 5543584, - 5542976 + 5580096, + 5568000, + 5545536, + 5547904, + 5545488, + 5548560, + 5545696, + 5546080, + 5545472 ], "bases": [ { @@ -13875,128 +13921,128 @@ }, { "type_name": "CEngineServer", - "vtable_address": 9677760, - "methods": [ - 6967376, - 6967488, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307648, - 6967696, - 4773136, - 4773088, - 6952064, - 6952096, - 6989920, - 6961440, - 6952176, - 6977744, - 6978096, - 6750560, - 6965648, - 6955712, - 6745344, - 6955808, - 6955872, - 6745424, - 6966192, - 6957376, - 6966736, - 6757536, - 6767280, - 6747152, - 6961504, - 6962048, - 6962144, - 6952192, - 6952304, - 6964192, - 6954320, - 6952608, - 6960992, - 6953184, - 6963568, - 6953248, - 6963536, - 6963696, - 6978416, - 6964496, - 6962800, - 6953312, - 6953376, - 6953568, - 6964688, - 6964160, - 6962896, - 6963424, - 6953168, - 6954144, - 6954240, - 6963920, - 6952752, - 6952784, - 6952816, - 6953008, - 6962768, - 6952848, - 6952944, - 6962432, - 6952720, - 6952704, - 6954528, - 6954928, - 6954944, - 6992544, - 6965200, - 6954432, - 6954960, - 6963008, - 6952688, - 6954400, - 6954416, - 6964800, - 6954784, - 6953728, - 6952976, - 6962304, - 6745456, - 6955936, - 6954992, - 6955072, - 6954048, - 6955296, - 6955392, - 6955568, - 6952464, - 6952496, - 6965760, - 6956032, - 6956160, - 6956528, - 6956592, - 6956672, - 6956768, - 6956832, - 6956912, - 6956976, - 6957040, - 6963200, - 6963328, - 6965312, + "vtable_address": 9679936, + "methods": [ + 6954176, + 6954304, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310144, 6954512, - 6965792, - 6957152, - 6979200, - 6965824, - 6965984, - 6958016, - 6957232, - 6957488, - 6957568, - 6957296 + 4775568, + 4775520, + 6942368, + 6942400, + 6982720, + 6948768, + 6942480, + 6957728, + 6958080, + 6743776, + 6952848, + 6946048, + 6739680, + 6946144, + 6946208, + 6739760, + 6953392, + 6947712, + 6953536, + 6750432, + 6759216, + 6741472, + 6948832, + 6949376, + 6949472, + 6942496, + 6942608, + 6951392, + 6944656, + 6942912, + 6948512, + 6943488, + 6948144, + 6943552, + 6950864, + 6950896, + 6958976, + 6951696, + 6950128, + 6943616, + 6943680, + 6943872, + 6951888, + 6951360, + 6950224, + 6950752, + 6943472, + 6944480, + 6944576, + 6951120, + 6943056, + 6943088, + 6943120, + 6943312, + 6950096, + 6943152, + 6943248, + 6949760, + 6943024, + 6943008, + 6944864, + 6945264, + 6945280, + 6983392, + 6952400, + 6944768, + 6945296, + 6950336, + 6942992, + 6944736, + 6944752, + 6952000, + 6945120, + 6944064, + 6943280, + 6949632, + 6739792, + 6946272, + 6945328, + 6945408, + 6944384, + 6945632, + 6945728, + 6945904, + 6942768, + 6942800, + 6952960, + 6946368, + 6946496, + 6946864, + 6946928, + 6947008, + 6947104, + 6947168, + 6947248, + 6947312, + 6947376, + 6950528, + 6950656, + 6952512, + 6944848, + 6952992, + 6947488, + 6958400, + 6953024, + 6953184, + 6948272, + 6947568, + 6947824, + 6947904, + 6947632 ], "bases": [ { @@ -14106,70 +14152,70 @@ }, { "type_name": "CEngineServiceMgr", - "vtable_address": 9595760, - "methods": [ - 5271232, - 5311680, - 4737920, - 5271760, - 5272384, - 4730192, - 4730208, - 5307648, - 5311888, - 4773136, - 4773088, - 5283168, - 5283568, - 5285152, - 5272640, - 5287968, - 5263728, - 5272960, - 5263392, - 5263408, - 5263424, - 5263440, - 5263472, - 5263536, - 5263600, - 5272608, - 5263824, - 5263840, - 5263952, - 5262256, - 5263712, - 5263776, - 5264128, - 5308992, - 5306976, - 5307008, - 5307040, - 5307344, - 5307408, - 5307440, - 5307456, - 5309248, - 5307488, - 5309744, - 5309376, + "vtable_address": 9598960, + "methods": [ + 5273760, + 5314176, + 4740256, + 5274288, + 5274912, + 4732560, + 5264864, + 5310144, + 5314384, + 4775568, + 4775520, + 5285696, + 5286096, + 5287680, + 5275168, + 5290496, + 5266256, + 5275488, + 5265920, + 5265936, + 5265952, + 5265968, + 5266000, + 5266064, + 5266128, + 5275136, + 5266352, + 5266368, + 5266480, + 5264752, + 5266240, + 5266304, + 5266656, + 5311488, + 5309472, 5309504, + 5309536, + 5309840, + 5309904, 5309936, - 5310480, - 5310208, - 5310624, - 5272080, - 5273024, - 5273040, - 5273056, - 5262816, - 5263856, - 5264768, - 5263968, - 5273200, - 5264016, - 5273344, - 5264992 + 5309952, + 5311744, + 5309984, + 5312240, + 5311872, + 5312000, + 5312432, + 5312976, + 5312704, + 5313120, + 5274608, + 5275552, + 5275568, + 5275584, + 5265328, + 5266384, + 5267296, + 5266496, + 5275728, + 5266544, + 5275872, + 5267520 ], "bases": [ { @@ -14289,10 +14335,10 @@ }, { "type_name": "CEngineServiceMgr", - "vtable_address": 9596272, + "vtable_address": 9599472, "methods": [ - 5266848, - 5265200 + 5269376, + 5267728 ], "bases": [ { @@ -14412,50 +14458,50 @@ }, { "type_name": "CEngineSoundServices", - "vtable_address": 9685088, - "methods": [ - 7279296, - 7277344, - 7255136, - 7280096, - 7255152, - 7255200, - 7255232, - 7255248, - 4730112, - 4730112, - 7255536, - 7255568, - 7255600, - 7255632, - 7255680, - 7255920, - 7255952, - 7255984, - 7256016, - 7255808, - 7255712, - 7255744, - 7255776, - 7255472, - 7256048, - 7256256, - 7255264, - 7256816, - 7256832, - 7256896, - 7256144, - 7256192, - 7256752, - 7256768, - 7256784, - 7256800, - 7255840, - 7256080, - 7256112, - 7255856, - 7255888, - 7255312 + "vtable_address": 9690712, + "methods": [ + 7269520, + 7263136, + 7243104, + 7270320, + 7243120, + 7243168, + 7243200, + 7243216, + 4732480, + 4732480, + 7243504, + 7243536, + 7243568, + 7243600, + 7243648, + 7243888, + 7243920, + 7243952, + 7243984, + 7243776, + 7243680, + 7243712, + 7243744, + 7243440, + 7244016, + 7244224, + 7243232, + 7244784, + 7244800, + 7244864, + 7244112, + 7244160, + 7244720, + 7244736, + 7244752, + 7244768, + 7243808, + 7244048, + 7244080, + 7243824, + 7243856, + 7243280 ], "bases": [ { @@ -14477,15 +14523,15 @@ }, { "type_name": "CEngineSoundServicesDebugVisualizer", - "vtable_address": 9638904, + "vtable_address": 9642104, "methods": [ - 7269824, - 7277264, - 5148032, - 5148048, - 5148080, - 4730192, - 5147968 + 7262512, + 7263072, + 5150560, + 5150576, + 5150608, + 4732560, + 5150496 ], "bases": [ { @@ -14518,15 +14564,15 @@ }, { "type_name": "CEngineSoundServicesDebugVisualizerRel", - "vtable_address": 9638832, + "vtable_address": 9642032, "methods": [ - 7269616, - 7277072, - 5541744, - 7255120, - 7255088, - 4730192, - 7255072 + 7262304, + 7262880, + 5544240, + 7243088, + 7243056, + 4732560, + 7243040 ], "bases": [ { @@ -14548,10 +14594,10 @@ }, { "type_name": "CEngineWatchdogThread", - "vtable_address": 9587928, + "vtable_address": 9591128, "methods": [ - 5271456, - 5287568 + 5273984, + 5290096 ], "bases": [], "model": { @@ -14562,9 +14608,9 @@ }, { "type_name": "CEntity2_EHandle_Restore", - "vtable_address": 9709712, + "vtable_address": 9712944, "methods": [ - 8624032 + 8627232 ], "bases": [ { @@ -14586,9 +14632,9 @@ }, { "type_name": "CEntity2_EHandle_Save", - "vtable_address": 9709736, + "vtable_address": 9712968, "methods": [ - 8623968 + 8627168 ], "bases": [ { @@ -14610,14 +14656,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 9709584, + "vtable_address": 9712816, "methods": [ - 8621728, - 8621808, - 8621824, - 8621840, - 8365456, - 5148704 + 8624928, + 8625008, + 8625024, + 8625040, + 8374544, + 5151232 ], "bases": [ { @@ -14650,11 +14696,11 @@ }, { "type_name": "CEntityInfo", - "vtable_address": 9651456, + "vtable_address": 9654656, "methods": [ - 7090368, - 7096640, - 7075984 + 7075296, + 7085104, + 7064752 ], "bases": [], "model": { @@ -14663,23 +14709,12 @@ } } }, - { - "type_name": "CEntityInfo", - "vtable_address": 9682424, - "methods": [], - "bases": [], - "model": { - "Itanium": { - "offset_to_top": 1987296 - } - } - }, { "type_name": "CEntityMETASpewFunctor", - "vtable_address": 9684656, + "vtable_address": 9688080, "methods": [ - 7243360, - 7250432 + 7230912, + 7237984 ], "bases": [ { @@ -14722,9 +14757,9 @@ }, { "type_name": "CEntityMETASpewFunctor", - "vtable_address": 9684688, + "vtable_address": 9688112, "methods": [ - 7253472 + 7241024 ], "bases": [ { @@ -14767,26 +14802,26 @@ }, { "type_name": "CEntityMsg", - "vtable_address": 9563448, - "methods": [ - 4870352, - 4870480, - 3320958, - 4819120, - 4875408, - 4773216, - 3323118, - 3319950, - 4862752, - 4731504, - 4881040, - 4730112, - 4857856, - 3319860, - 3320126, - 4773392, - 4858544, - 4856928 + "vtable_address": 9566648, + "methods": [ + 4872784, + 4872912, + 3323326, + 4821552, + 4877840, + 4775648, + 3325486, + 3322318, + 4865184, + 4733856, + 4883472, + 4732480, + 4860288, + 3322228, + 3322494, + 4775824, + 4860976, + 4859360 ], "bases": [ { @@ -14819,22 +14854,22 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 9709440, + "vtable_address": 9712672, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9795360 + "offset_to_top": 9798560 } } }, { "type_name": "CEntityReadInfo", - "vtable_address": 9651520, + "vtable_address": 9654720, "methods": [ - 7269872, - 7279248, - 7268080 + 7291648, + 7299744, + 7286624 ], "bases": [ { @@ -14856,15 +14891,15 @@ }, { "type_name": "CEntityReport", - "vtable_address": 9688184, + "vtable_address": 9690552, "methods": [ - 7299184, - 7311472, - 7298016, - 7298320, - 7298608, - 7298896, - 7334656 + 7288832, + 7299792, + 7287664, + 7287968, + 7288256, + 7288544, + 7322304 ], "bases": [ { @@ -14886,20 +14921,20 @@ }, { "type_name": "CEntityResourceManifest", - "vtable_address": 9602136, + "vtable_address": 9605336, "methods": [ - 5735168, - 5735184, - 5735200, - 5705280, - 5717744, - 5705776, - 5674528, - 5670192, - 5670208, - 5703056, - 5703072, - 5703088 + 5737664, + 5737680, + 5737696, + 5707776, + 5720240, + 5708272, + 5677024, + 5672656, + 5672672, + 5705552, + 5705568, + 5705584 ], "bases": [ { @@ -14921,11 +14956,11 @@ }, { "type_name": "CEntityWriteInfo", - "vtable_address": 9682576, + "vtable_address": 9685408, "methods": [ - 7079280, - 7096768, - 7076064 + 7070752, + 7085232, + 7064832 ], "bases": [ { @@ -14947,22 +14982,22 @@ }, { "type_name": "CFieldPathHuffmanEncoder::INode", - "vtable_address": 9713384, + "vtable_address": 9716616, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2424704 + "offset_to_top": 2426912 } } }, { "type_name": "CFieldPathHuffmanEncoder::InternalNode", - "vtable_address": 9559504, + "vtable_address": 9562696, "methods": [ - 4729808, - 4750192, - 4729888 + 4732176, + 4752608, + 4732256 ], "bases": [ { @@ -14984,11 +15019,11 @@ }, { "type_name": "CFieldPathHuffmanEncoder::LeafNode", - "vtable_address": 9713456, + "vtable_address": 9716688, "methods": [ - 4738528, - 4751488, - 8623744 + 4740864, + 4753904, + 8626944 ], "bases": [ { @@ -15010,15 +15045,15 @@ }, { "type_name": "CFileLoggingListener", - "vtable_address": 9583888, + "vtable_address": 9587088, "methods": [ - 8684960, - 8658592, - 5148688, - 5148688, - 5148688, - 8685008, - 8649728 + 8688160, + 8661792, + 5151216, + 5151216, + 5151216, + 8688208, + 8652928 ], "bases": [ { @@ -15051,15 +15086,15 @@ }, { "type_name": "CFinalizeConnectionPrerequisite", - "vtable_address": 9627392, + "vtable_address": 9630592, "methods": [ - 5741104, - 6051104, - 5262448, - 5262464, - 6006320, - 6003312, - 5279008 + 5743600, + 6053664, + 5264960, + 5264976, + 6008816, + 6005808, + 5281536 ], "bases": [ { @@ -15081,12 +15116,12 @@ }, { "type_name": "CFlattenedSerializerSpewFunc_Log", - "vtable_address": 9657864, + "vtable_address": 9661064, "methods": [ - 4738528, - 4751472, - 4731920, - 4729904 + 4740864, + 4753888, + 4734272, + 4732272 ], "bases": [ { @@ -15108,15 +15143,15 @@ }, { "type_name": "CFlattenedSerializerSpewListener<(FlattenedSerializerSpewType_t)1>", - "vtable_address": 9682968, + "vtable_address": 9686016, "methods": [ - 7167296, - 7184352, - 7163904, - 7163920, - 7163936, - 7177888, - 7178544 + 7157472, + 7175376, + 7154048, + 7154064, + 7154080, + 7169264, + 7169920 ], "bases": [ { @@ -15138,16 +15173,16 @@ }, { "type_name": "CFrameMemDumpJob", - "vtable_address": 9682640, + "vtable_address": 9685704, "methods": [ - 7150800, - 7151024, - 5311536, - 5311488, - 5262416, - 5268000, - 7162432, - 7121472 + 7109648, + 7128224, + 5314032, + 5313984, + 5264928, + 5270528, + 7152896, + 7102128 ], "bases": [ { @@ -15201,10 +15236,10 @@ }, { "type_name": "CFrameSnapshotManager", - "vtable_address": 9670312, + "vtable_address": 9669936, "methods": [ - 7095840, - 7096992 + 7118304, + 7121216 ], "bases": [ { @@ -15237,19 +15272,19 @@ }, { "type_name": "CGameClientConnectPrerequisite", - "vtable_address": 9628840, - "methods": [ - 6008128, - 6018112, - 5262448, - 5262464, - 6035200, - 6003728, - 5279072, - 5269232, - 5268224, - 5262496, - 5266480 + "vtable_address": 9632040, + "methods": [ + 6010624, + 6020608, + 5264960, + 5264976, + 6037696, + 6006224, + 5281600, + 5271760, + 5270752, + 5265008, + 5269008 ], "bases": [ { @@ -15292,10 +15327,10 @@ }, { "type_name": "CGameClientConnectPrerequisite", - "vtable_address": 9628944, + "vtable_address": 9632144, "methods": [ - 5269392, - 5268736 + 5271920, + 5271264 ], "bases": [ { @@ -15338,9 +15373,9 @@ }, { "type_name": "CGameEventDispatcher", - "vtable_address": 9593088, + "vtable_address": 9596288, "methods": [ - 5341264 + 5343760 ], "bases": [ { @@ -15362,29 +15397,29 @@ }, { "type_name": "CGameEventSystem", - "vtable_address": 9594352, - "methods": [ - 5349888, - 5350016, - 4737920, - 5312080, - 5308256, - 4730192, - 5307712, - 5307648, - 5350224, - 4773136, - 4773088, - 5308896, - 5321792, - 5312352, - 5314672, - 5329472, - 5331328, - 5311088, - 5317904, - 5308976, - 5307728 + "vtable_address": 9597552, + "methods": [ + 5352384, + 5352512, + 4740256, + 5314576, + 5310752, + 4732560, + 5310208, + 5310144, + 5352720, + 4775568, + 4775520, + 5311392, + 5324288, + 5314848, + 5317168, + 5331968, + 5333824, + 5313584, + 5320400, + 5311472, + 5310224 ], "bases": [ { @@ -15483,26 +15518,26 @@ }, { "type_name": "CGameInfo", - "vtable_address": 9555712, - "methods": [ - 4792944, - 4794800, - 3320958, - 4773488, - 4798240, - 4773216, - 3323118, - 3319950, - 4781248, - 4731504, - 4803392, - 4730112, - 4780400, - 3319860, - 3320126, - 4773392, - 4778784, - 4773280 + "vtable_address": 9558912, + "methods": [ + 4795376, + 4797232, + 3323326, + 4775920, + 4800672, + 4775648, + 3325486, + 3322318, + 4783680, + 4733856, + 4805824, + 4732480, + 4782832, + 3322228, + 3322494, + 4775824, + 4781216, + 4775712 ], "bases": [ { @@ -15535,26 +15570,26 @@ }, { "type_name": "CGameInfo_CCSGameInfo", - "vtable_address": 9555872, - "methods": [ - 4792640, - 4792784, - 3320958, - 4773472, - 4798208, - 4773216, - 3323118, - 3319950, - 4781200, - 4773360, - 4802784, - 4730112, - 4776896, - 3319860, - 3320126, - 4773408, - 4778752, - 4773264 + "vtable_address": 9559072, + "methods": [ + 4795072, + 4795216, + 3323326, + 4775904, + 4800640, + 4775648, + 3325486, + 3322318, + 4783632, + 4775792, + 4805216, + 4732480, + 4779328, + 3322228, + 3322494, + 4775840, + 4781184, + 4775696 ], "bases": [ { @@ -15587,26 +15622,26 @@ }, { "type_name": "CGameInfo_CDotaGameInfo", - "vtable_address": 9556032, - "methods": [ - 4792192, - 4792400, - 3320958, - 4773456, - 4797536, - 4773216, - 3323118, - 3319950, - 4777984, - 4731504, - 4801680, - 4730112, - 4778912, - 3319860, - 3320126, - 4773392, - 4778720, - 4773248 + "vtable_address": 9559232, + "methods": [ + 4794624, + 4794832, + 3323326, + 4775888, + 4799968, + 4775648, + 3325486, + 3322318, + 4780416, + 4733856, + 4804112, + 4732480, + 4781344, + 3322228, + 3322494, + 4775824, + 4781152, + 4775680 ], "bases": [ { @@ -15639,26 +15674,26 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CHeroSelectEvent", - "vtable_address": 9556192, - "methods": [ - 4791936, - 4792064, - 3320958, - 4773440, - 4797472, - 4773216, - 3323118, - 3319950, - 4777888, - 4731504, - 4800944, - 4730112, - 4776480, - 3319860, - 3320126, - 4773392, - 4778688, - 4773232 + "vtable_address": 9559392, + "methods": [ + 4794368, + 4794496, + 3323326, + 4775872, + 4799904, + 4775648, + 3325486, + 3322318, + 4780320, + 4733856, + 4803376, + 4732480, + 4778912, + 3322228, + 3322494, + 4775824, + 4781120, + 4775664 ], "bases": [ { @@ -15691,26 +15726,26 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CPlayerInfo", - "vtable_address": 9556352, - "methods": [ - 4791616, - 4791776, - 3320958, - 4773424, - 4796976, - 4773216, - 3323118, - 3319950, - 4777712, - 4731504, - 4800128, - 4730112, - 4775808, - 3319860, - 3320126, - 4773392, - 4778656, - 4773200 + "vtable_address": 9559552, + "methods": [ + 4794048, + 4794208, + 3323326, + 4775856, + 4799408, + 4775648, + 3325486, + 3322318, + 4780144, + 4733856, + 4802560, + 4732480, + 4778240, + 3322228, + 3322494, + 4775824, + 4781088, + 4775632 ], "bases": [ { @@ -15743,13 +15778,13 @@ }, { "type_name": "CGameResourceManifest::CCallbackInternal_Steam_OnUGCDownload", - "vtable_address": 9602248, + "vtable_address": 9605448, "methods": [ - 5700096, - 5703936, - 5703952, - 5674368, - 5680208 + 5702592, + 5706432, + 5706448, + 5676864, + 5682704 ], "bases": [ { @@ -15782,16 +15817,16 @@ }, { "type_name": "CGameResourceManifestPrerequisite", - "vtable_address": 9588000, + "vtable_address": 9591200, "methods": [ - 5306432, - 5306704, - 5262448, - 5262464, - 5262880, - 5263120, - 5281376, - 5262496 + 5308928, + 5309200, + 5264960, + 5264976, + 5265408, + 5265648, + 5283904, + 5265008 ], "bases": [ { @@ -15813,53 +15848,53 @@ }, { "type_name": "CGameResourceService", - "vtable_address": 9605464, + "vtable_address": 9608664, "methods": [ - 5705920, + 5708416, + 5708864, + 4740256, + 5709296, + 5705808, + 4732560, + 5264864, + 5310144, + 5711008, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5706416, + 5510272, + 5510288, + 5510304, + 5698128, + 5510320, + 5510336, + 5705664, + 5724800, + 5739888, + 5740512, + 5738784, + 5739296, + 5724944, + 5706192, + 5706224, + 5739776, 5706368, - 4737920, - 5706800, - 5703312, - 4730192, - 4730208, - 5307648, - 5708512, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5703920, - 5507776, - 5507792, - 5507808, - 5695632, - 5507824, - 5507840, - 5703168, - 5722304, - 5737392, - 5738016, - 5736288, - 5736800, - 5722448, - 5703696, - 5703728, - 5737280, - 5703872, - 5703648, - 5703408, - 5736048, - 5704832, - 5708480, - 5735760, - 5706864, - 5735856, - 5738640, - 5707568, - 5703424, - 5707216 + 5706144, + 5705904, + 5738544, + 5707328, + 5710976, + 5738256, + 5709360, + 5738352, + 5741136, + 5710064, + 5705920, + 5709712 ], "bases": [ { @@ -15980,25 +16015,25 @@ }, { "type_name": "CGameUIFuncs", - "vtable_address": 9697576, - "methods": [ - 7561200, - 7561440, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 6486192, - 7562096, - 4773136, - 4773088, - 7555280, - 7559056, - 7557504, - 7561136, - 7561184, - 7555728 + "vtable_address": 9701832, + "methods": [ + 7594592, + 7594816, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 6489264, + 7595472, + 4775568, + 4775520, + 7589296, + 7591408, + 7593536, + 7594528, + 7594576, + 7589744 ], "bases": [ { @@ -16086,12 +16121,12 @@ }, { "type_name": "CGameUIRenderCallbackGroupLayer", - "vtable_address": 9604064, + "vtable_address": 9607264, "methods": [ - 5704656, - 5704816, - 5724240, - 5703968 + 5707152, + 5707312, + 5726736, + 5706464 ], "bases": [ { @@ -16113,14 +16148,14 @@ }, { "type_name": "CGameUIRenderLayer", - "vtable_address": 9607336, + "vtable_address": 9610536, "methods": [ - 5704624, - 5741104, - 5767856, - 5703968, - 6143520, - 6128112 + 5707120, + 5743600, + 5770352, + 5706464, + 6146048, + 6130640 ], "bases": [ { @@ -16142,50 +16177,50 @@ }, { "type_name": "CGameUIService", - "vtable_address": 9604584, - "methods": [ - 5706032, - 5706592, - 4737920, - 5720416, - 5723152, - 4730192, - 4730208, - 5307648, - 5747024, - 4773136, - 4773088, - 5704592, - 5507744, - 5708608, - 5709232, - 5710848, - 5507776, - 5507792, - 5507808, - 5739008, - 5507824, - 5507840, - 5704016, - 5723104, - 5742672, - 5742560, - 5742192, - 5740768, - 5755168, - 5740816, - 5740896, - 5740992, - 5740848, - 5740864, - 5744160, - 5708784, - 5754048, - 5743776, - 5746192, - 5746464, - 5770736, - 5712048 + "vtable_address": 9607784, + "methods": [ + 5708528, + 5709088, + 4740256, + 5722912, + 5725648, + 4732560, + 5264864, + 5310144, + 5749520, + 4775568, + 4775520, + 5707088, + 5510240, + 5711104, + 5711728, + 5713344, + 5510272, + 5510288, + 5510304, + 5741504, + 5510320, + 5510336, + 5706512, + 5725600, + 5745168, + 5745056, + 5744688, + 5743264, + 5757664, + 5743312, + 5743392, + 5743488, + 5743344, + 5743360, + 5746656, + 5711280, + 5756544, + 5746272, + 5748688, + 5748960, + 5773232, + 5714544 ], "bases": [ { @@ -16316,11 +16351,11 @@ }, { "type_name": "CGameUIService", - "vtable_address": 9604936, + "vtable_address": 9608136, "methods": [ - 5778384, - 5507872, - 4730192 + 5780880, + 5510368, + 4732560 ], "bases": [ { @@ -16451,25 +16486,25 @@ }, { "type_name": "CGenericExprPart", - "vtable_address": 9707952, + "vtable_address": 9711184, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2289392 + "offset_to_top": 2291600 } } }, { "type_name": "CGenericExpr_Binary", - "vtable_address": 9707664, + "vtable_address": 9710992, "methods": [ - 8537184, - 8576544, - 8551520, - 8537264, - 8537360, - 8537376 + 8550080, + 8580000, + 8563888, + 8550160, + 8550256, + 8550272 ], "bases": [ { @@ -16491,50 +16526,50 @@ }, { "type_name": "CGenericExpr_BoolLiteral", - "vtable_address": 9708096, - "methods": [ - 8572800, - 8577024, - 8593072, - 8537712, - 4730256, - 8537056, - 8583680, - 8607424, - 8608000, - 8580928, - 8593920, - 8584096, - 8581248, - 8581264, - 8610784, - 8610896, - 8611024, - 8589840, - 8589904, - 8611232, - 8607360, - 8589824, - 8589744, - 8589776, - 8584144, - 8580512, - 8580544, - 8608352, - 8583632, - 8580384, + "vtable_address": 9711328, + "methods": [ + 8576288, 8580480, - 8596448, - 8580272, - 8599520, - 8605584, - 8579680, - 8579936, - 8580736, - 8580080, - 8580128, - 8581088, - 8609136 + 8596272, + 8550608, + 4732608, + 8549952, + 8586880, + 8610624, + 8611200, + 8584128, + 8597120, + 8587296, + 8584448, + 8584464, + 8613984, + 8614096, + 8614224, + 8593040, + 8593104, + 8614432, + 8610560, + 8593024, + 8592944, + 8592976, + 8587344, + 8583712, + 8583744, + 8611552, + 8586832, + 8583584, + 8583680, + 8599648, + 8583472, + 8602720, + 8608784, + 8582880, + 8583136, + 8583936, + 8583280, + 8583328, + 8584288, + 8612336 ], "bases": [ { @@ -16556,14 +16591,14 @@ }, { "type_name": "CGenericExpr_FloatLiteral", - "vtable_address": 9707968, + "vtable_address": 9711200, "methods": [ - 8572816, - 8577056, - 8593008, - 8537648, - 4730256, - 8537056 + 8576304, + 8580512, + 8596208, + 8550544, + 4732608, + 8549952 ], "bases": [ { @@ -16585,16 +16620,16 @@ }, { "type_name": "CGenericExpr_FunctionCall", - "vtable_address": 9707456, + "vtable_address": 9710784, "methods": [ - 8553456, - 8576800, - 8552608, - 8553152, - 8537760, - 8537808, - 8537744, - 8537824 + 8565824, + 8580256, + 8564976, + 8565520, + 8550656, + 8550704, + 8550640, + 8550720 ], "bases": [ { @@ -16616,14 +16651,14 @@ }, { "type_name": "CGenericExpr_IntLiteral", - "vtable_address": 9708032, + "vtable_address": 9711264, "methods": [ - 6611472, - 8577040, - 8593040, - 8537680, - 4730256, - 8537056 + 6614416, + 8580496, + 8596240, + 8550576, + 4732608, + 8549952 ], "bases": [ { @@ -16645,14 +16680,14 @@ }, { "type_name": "CGenericExpr_Property", - "vtable_address": 9707536, + "vtable_address": 9710864, "methods": [ - 8553392, - 8576720, - 8552544, - 8552976, - 5194592, - 8537168 + 8565760, + 8580176, + 8564912, + 8565344, + 5197088, + 8550064 ], "bases": [ { @@ -16674,14 +16709,14 @@ }, { "type_name": "CGenericExpr_StringLiteral", - "vtable_address": 9707328, + "vtable_address": 9710656, "methods": [ - 8553632, - 8577072, - 8552416, - 8552672, - 4730256, - 8537056 + 8566000, + 8580528, + 8564784, + 8565040, + 4732608, + 8549952 ], "bases": [ { @@ -16703,14 +16738,14 @@ }, { "type_name": "CGenericExpr_TernaryConditional", - "vtable_address": 9707600, + "vtable_address": 9710928, "methods": [ - 8537392, - 8576624, - 8552352, - 8537488, - 8537600, - 8537616 + 8550288, + 8580080, + 8564720, + 8550384, + 8550496, + 8550512 ], "bases": [ { @@ -16732,14 +16767,15 @@ }, { "type_name": "CGenericExpr_Unary", - "vtable_address": 9707728, + "vtable_address": 9711056, "methods": [ - 8537072, - 8576480, - 8551328, - 8537120, - 5194592, - 8537168 + 8549968, + 8579936, + 8563696, + 8550016, + 5197088, + 8550064, + 8580592 ], "bases": [ { @@ -16761,14 +16797,14 @@ }, { "type_name": "CGenericExpr_VariableReference", - "vtable_address": 9707392, + "vtable_address": 9710720, "methods": [ - 8553600, - 8576960, - 8552480, - 8552832, - 4730256, - 8537056 + 8565968, + 8580416, + 8564848, + 8565200, + 4732608, + 8549952 ], "bases": [ { @@ -16790,10 +16826,10 @@ }, { "type_name": "CHLTVBroadcast", - "vtable_address": 9694072, + "vtable_address": 9695608, "methods": [ - 7439856, - 7440336 + 7426736, + 7427216 ], "bases": [], "model": { @@ -16804,11 +16840,11 @@ }, { "type_name": "CHLTVBroadcast::CHttpCallback", - "vtable_address": 9693808, + "vtable_address": 9695344, "methods": [ - 7421472, - 7447568, - 7421456 + 7406176, + 7430736, + 7406160 ], "bases": [ { @@ -16830,16 +16866,16 @@ }, { "type_name": "CHLTVBuildFullFrameSplitJob", - "vtable_address": 9696352, + "vtable_address": 9698624, "methods": [ - 7521824, - 7521984, - 5311536, - 5311488, - 5262416, - 5268000, - 7542048, - 4730192 + 7518944, + 7519104, + 5314032, + 5313984, + 5264928, + 5270528, + 7539264, + 4732560 ], "bases": [ { @@ -16893,89 +16929,89 @@ }, { "type_name": "CHLTVClient", - "vtable_address": 9688896, - "methods": [ - 7040208, - 7338704, - 7355328, - 7010944, - 7339024, - 7009024, - 6997024, - 7007824, - 7026400, - 4773216, - 7039392, - 7336160, - 7336144, - 6996944, - 7339072, - 7372560, - 7015920, - 6998528, - 7016800, - 6790256, - 7035312, - 6790272, - 6790272, - 6952032, - 6790288, - 7016272, - 7005328, - 7374464, - 6997056, - 7372208, - 7348864, - 7034336, - 6997200, - 7050880, - 7048704, - 6567216, - 7066816, - 6567216, - 7336048, - 6567216, - 6567216, - 7336096, - 6567216, - 7336064, - 7336064, - 7039712, - 4729760, - 4729760, - 6246960, - 7001824, - 7335952, - 7376976, - 7028672, - 7341056, - 7340192, - 7034672, - 6996976, - 7340608, - 7036320, - 7340016, - 7339152, - 7340528, - 7023184, - 7001424, - 7001152, - 7001712, - 6790304, - 7034912, - 6996928, - 7335968, - 4729760, - 5149472, - 4730256, - 5196448, - 4730192, - 6527424, - 7377664, - 7005296, - 6997040, - 7376752, - 7012592 + "vtable_address": 9694224, + "methods": [ + 7038544, + 7366032, + 7381648, + 7000608, + 7366352, + 6998688, + 6988064, + 6997488, + 7021344, + 4775648, + 7037936, + 7367616, + 7365296, + 6987984, + 7366400, + 7396000, + 7004608, + 6989120, + 7006992, + 6787872, + 7027840, + 6787888, + 6787888, + 6942336, + 6787904, + 7051904, + 7034448, + 7397888, + 7027040, + 7395648, + 7375584, + 7060704, + 7027184, + 7047168, + 7043696, + 6570224, + 7061072, + 6570224, + 7365200, + 6570224, + 6570224, + 7365248, + 6570224, + 7365216, + 7365216, + 7038080, + 4732128, + 4732128, + 6249456, + 7029072, + 7365104, + 7368176, + 7023616, + 7376096, + 7369136, + 7027200, + 6988016, + 7369552, + 7036544, + 7368864, + 7366480, + 7369472, + 7007904, + 6994672, + 6994400, + 6994960, + 6787920, + 7027440, + 6987968, + 7365120, + 4732128, + 5152000, + 4732608, + 5198944, + 4732560, + 6530304, + 7367344, + 6995072, + 6988080, + 7369616, + 7002256 ], "bases": [ { @@ -17028,9 +17064,9 @@ }, { "type_name": "CHLTVClient", - "vtable_address": 9689560, + "vtable_address": 9694888, "methods": [ - 6998656 + 6989248 ], "bases": [ { @@ -17083,155 +17119,155 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 9690608, - "methods": [ - 6527664, - 6570544, - 6611584, - 6611600, - 6526928, - 6526944, - 6526976, - 4730256, - 6526960, - 4730256, - 5196448, - 5390592, - 6548128, - 7388192, - 6526992, - 6527008, - 6446784, - 6446784, - 6527024, - 6527056, - 6611568, - 6528848, - 7376528, - 7376560, - 4730112, - 6611920, - 6611776, - 5461440, - 4730112, - 6526880, - 6637360, - 6567600, - 6570096, - 6613872, - 6613808, - 6612128, - 6614832, - 6576864, - 6639232, - 6611488, - 6613840, - 6613840, - 4730192, - 6611936, - 5196640, - 6550960, - 6611648, - 6611712, - 6527728, - 6527712, - 6527632, - 6577264, - 6640960, - 6527104, - 6527616, - 6566912, - 6640032, - 6637632, - 6527088, - 6617568, - 6603792, - 6566864, - 6568544, - 6527072, - 5196640, - 5390608, - 6567232, - 7376624, - 7376624, - 6568608, - 7386208, - 7386688, - 5390592, - 5390592, - 6612288, - 6611728, - 4730192, - 6527808, - 4730192, - 4730192, - 5196640, - 5149472, - 4730192, - 4730192, - 4730192, - 6527328, - 6612192, - 6568624, - 7376224, - 6612304, - 6612320, - 6529248, - 6569760, - 7395936, - 7378880, - 6589248, - 6567152, - 7398896, - 7376432, - 7376432, - 7376432, - 6571216, - 7376432, - 7376432, - 6578480, - 7413760, - 7379344, - 6578880, - 7376432, - 6638448, - 7398224, - 7381072, - 6605184, - 6571936, - 6567216, - 7392448, - 6614160, + "vtable_address": 9692656, + "methods": [ + 6530544, + 6573616, + 6614528, + 6614544, + 6529808, + 6529824, + 6529856, + 4732608, + 6529840, + 4732608, + 5198944, + 5393088, + 6551008, + 7384000, + 6529872, + 6529888, + 6449824, + 6449824, + 6529904, + 6529936, 6614512, - 6614272, - 7376432, - 7376432, - 6567184, - 6613936, - 6567216, - 7376112, - 6612160, - 7380656, - 7418160, - 6613664, - 6246960, - 7379616, - 6611504, - 6611520, - 4729760, - 6549648, - 7378992, - 7389376, - 7417296, - 7380384, - 7380144, - 7380976, - 4730112, - 7378752, - 7391200, - 7395088, - 6567824, - 5149472 + 6531728, + 7365792, + 7365824, + 4732480, + 6614864, + 6614720, + 5463936, + 4732480, + 6529760, + 6640304, + 6570608, + 6573168, + 6616816, + 6616752, + 6615072, + 6617776, + 6579744, + 6642176, + 6614432, + 6616784, + 6616784, + 4732560, + 6614880, + 5199136, + 6554016, + 6614592, + 6614656, + 6530608, + 6530592, + 6530512, + 6580144, + 6643904, + 6529984, + 6530496, + 6569920, + 6642976, + 6640576, + 6529968, + 6620512, + 6606736, + 6569872, + 6571616, + 6529952, + 5199136, + 5393104, + 6570240, + 7365888, + 7365888, + 6571680, + 7382016, + 7382496, + 5393088, + 5393088, + 6615232, + 6614672, + 4732560, + 6530688, + 4732560, + 4732560, + 5199136, + 5152000, + 4732560, + 4732560, + 4732560, + 6530208, + 6615136, + 6571696, + 7365488, + 6615248, + 6615264, + 6532128, + 6572832, + 7393360, + 7370624, + 6592192, + 6570160, + 7392976, + 7365696, + 7365696, + 7365696, + 6574288, + 7365696, + 7365696, + 6581360, + 7401408, + 7371088, + 6581760, + 7365696, + 6641392, + 7392304, + 7373072, + 6608128, + 6575008, + 6570224, + 7388288, + 6617104, + 6617456, + 6617216, + 7365696, + 7365696, + 6570192, + 6616880, + 6570224, + 7365376, + 6615104, + 7372752, + 7372368, + 6616608, + 6249456, + 7371360, + 6614448, + 6614464, + 4732128, + 6551616, + 7370736, + 7385216, + 7404944, + 7372128, + 7371888, + 7369040, + 4732480, + 7365904, + 7387040, + 7390928, + 6570896, + 5152000 ], "bases": [ { @@ -17314,9 +17350,9 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 9691800, + "vtable_address": 9693848, "methods": [ - 6612240 + 6615184 ], "bases": [ { @@ -17399,11 +17435,11 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 9691824, + "vtable_address": 9693872, "methods": [ - 7387200, - 7387680, - 6605168 + 7383008, + 7383488, + 6608112 ], "bases": [ { @@ -17486,9 +17522,9 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 9691864, + "vtable_address": 9693912, "methods": [ - 6568768 + 6571840 ], "bases": [ { @@ -17571,9 +17607,9 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 9691888, + "vtable_address": 9693936, "methods": [ - 7376416 + 7365680 ], "bases": [ { @@ -17656,31 +17692,31 @@ }, { "type_name": "CHLTVDemoRecorder", - "vtable_address": 9690320, - "methods": [ - 7422272, - 6280768, - 5398912, - 7445872, - 7376640, - 7376640, - 7376736, - 7403392, - 5148688, - 7376720, - 7381888, - 7400080, - 5148688, - 7418640, - 7400976, - 4730112, - 7400528, - 4730192, - 4730192, - 4730192, - 7433920, - 7399248, - 7400032 + "vtable_address": 9695640, + "methods": [ + 7406720, + 6283328, + 5401408, + 7446976, + 7405328, + 7405328, + 7405424, + 7431584, + 5151216, + 7405408, + 7428432, + 7416800, + 5151216, + 7444880, + 7417696, + 4732480, + 7417248, + 4732560, + 4732560, + 4732560, + 7429360, + 7428528, + 7429312 ], "bases": [ { @@ -17713,11 +17749,11 @@ }, { "type_name": "CHLTVFrame", - "vtable_address": 9676600, + "vtable_address": 9679136, "methods": [ - 7530128, - 7530448, - 7513024 + 7558336, + 7558656, + 7496032 ], "bases": [ { @@ -17739,114 +17775,114 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 9692464, - "methods": [ - 7473392, - 6866624, - 6866560, - 6892672, - 7502048, - 6867232, - 6867248, - 6867216, - 6790032, - 6866320, - 6867296, - 6790048, - 6866048, - 6871872, - 6870816, - 6867408, - 6872464, - 7489152, - 6835232, - 6832544, - 6824832, - 6867360, - 6871472, - 6868480, - 6867312, - 6790064, - 6867344, - 6866288, - 7471520, - 4773136, - 6866400, - 6825856, - 6824768, - 6856288, - 6882720, - 6246960, - 6827632, - 6827264, - 6893664, - 6900128, - 6867376, - 6893264, - 6867392, - 6790096, - 6887744, - 6790224, - 4773136, - 6866912, - 6879600, - 6866832, - 6790016, - 6869520, - 6867632, - 6867664, - 7440384, - 7442448, - 7471072, - 6899120, - 6840448, - 6823904, - 4730112, - 6612320, - 6952048, - 6790144, - 7471360, - 7473536, - 6860224, - 4773136, - 6790192, - 7473664, - 6790208, - 7473312, - 7468992, - 7471456, - 4730192, - 7475104, - 7480976, - 6790240, - 7474896, - 7473872, - 6868080, - 7469360, - 7469392, - 7421920, - 7421952, - 7467776, - 7468256, - 7468752, - 7468784, - 6446784, - 7468832, - 7470672, - 7468864, - 7480400, - 7468896, - 7468960, - 7423120, - 7495216, - 7470000, - 7470560, - 7469440, - 7482704, - 7472160, - 7495936, - 7469296, - 7469328 + "vtable_address": 9696520, + "methods": [ + 7457888, + 6862032, + 6861968, + 6892544, + 7494640, + 6862624, + 6862640, + 6862608, + 6787648, + 6861776, + 6862688, + 6787664, + 6861504, + 6898832, + 6899792, + 6898192, + 6908976, + 7465792, + 6831968, + 6826752, + 6818240, + 6862752, + 6866000, + 6863632, + 6862704, + 6787680, + 6862736, + 6861744, + 7456096, + 4775568, + 6898144, + 6819264, + 6818160, + 6857568, + 6882560, + 6249456, + 6821840, + 6821472, + 6923808, + 6925680, + 6898112, + 6925296, + 6898128, + 6787712, + 6887584, + 6787840, + 4775568, + 6862304, + 6873568, + 6862240, + 6787632, + 6864592, + 6898416, + 6898448, + 7463552, + 7465616, + 7454720, + 6897104, + 6841728, + 6817296, + 4732480, + 6615264, + 6942352, + 6787760, + 7455952, + 7458032, + 6874624, + 4775568, + 6787808, + 7458160, + 6787824, + 7454240, + 7454096, + 7456048, + 4732560, + 7458864, + 7460800, + 6787856, + 7458656, + 7458368, + 6863232, + 7454176, + 7454208, + 7452704, + 7452736, + 7452896, + 7453376, + 7452512, + 7453888, + 6449824, + 7453936, + 7454320, + 7453968, + 7460224, + 7454000, + 7454064, + 7454928, + 7488544, + 7455552, + 7455840, + 7454992, + 7462528, + 7456736, + 7489280, + 7454112, + 7454144 ], "bases": [ { @@ -17930,11 +17966,11 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 9693328, + "vtable_address": 9697384, "methods": [ - 7442432, - 7442544, - 6854480 + 7465600, + 7465712, + 6855760 ], "bases": [ { @@ -18018,10 +18054,10 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 9693368, + "vtable_address": 9697424, "methods": [ - 6824640, - 6790128 + 6818032, + 6787744 ], "bases": [ { @@ -18105,30 +18141,30 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 9693400, - "methods": [ - 7442416, - 7442496, - 7469376, - 7469408, - 7421936, - 7422032, - 7468000, - 7469984, - 7468480, - 7470272, - 7470608, - 7468768, - 7468800, - 7468816, - 7468848, - 7471056, - 7468880, - 7468928, - 7468976, - 7480688, - 7423152, - 7495568 + "vtable_address": 9697456, + "methods": [ + 7465584, + 7465664, + 7454192, + 7454224, + 7452720, + 7452816, + 7453120, + 7455536, + 7453600, + 7455824, + 7455888, + 7453872, + 7453904, + 7453920, + 7453952, + 7454704, + 7453984, + 7454032, + 7454080, + 7460512, + 7454960, + 7488896 ], "bases": [ { @@ -18212,13 +18248,13 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 9693592, + "vtable_address": 9697648, "methods": [ - 7472576, - 7500448, - 7469312, - 7469344, - 7487536 + 7457152, + 7493792, + 7454128, + 7454160, + 7471856 ], "bases": [ { @@ -18302,18 +18338,18 @@ }, { "type_name": "CHLTVServerAsync", - "vtable_address": 9692368, + "vtable_address": 9696424, "methods": [ - 7512880, - 7376704, - 7512816, - 7512848, - 7512800, - 7381808, - 7376656, - 7376672, - 7376688, - 7380624 + 7495840, + 7405392, + 7495776, + 7495808, + 7495760, + 7406448, + 7405344, + 7405360, + 7405376, + 7406528 ], "bases": [ { @@ -18335,11 +18371,11 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 9694544, + "vtable_address": 9698744, "methods": [ - 7515920, - 7521808, - 7520912 + 7495888, + 7518928, + 7504464 ], "bases": [ { @@ -18383,11 +18419,11 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 9694584, + "vtable_address": 9698784, "methods": [ - 7515936, - 7522144, - 7514496 + 7495904, + 7519264, + 7496048 ], "bases": [ { @@ -18431,11 +18467,11 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 9694624, + "vtable_address": 9698824, "methods": [ - 7515984, - 7522224, - 7515040 + 7495952, + 7519344, + 7500896 ], "bases": [ { @@ -18479,11 +18515,11 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 9696048, + "vtable_address": 9698320, "methods": [ - 7512944, - 7522208, - 7514960 + 7495936, + 7519328, + 7500816 ], "bases": [ { @@ -18527,11 +18563,11 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 9694896, + "vtable_address": 9696384, "methods": [ - 7515952, - 7522160, - 7527552 + 7506432, + 7519280, + 7518128 ], "bases": [ { @@ -18575,11 +18611,11 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 9696312, + "vtable_address": 9698584, "methods": [ - 7512928, - 7522176, - 7527888 + 7495920, + 7519296, + 7518464 ], "bases": [ { @@ -18623,11 +18659,11 @@ }, { "type_name": "CHLTVServerAsync::CDeferredCall", - "vtable_address": 9690520, + "vtable_address": 9692576, "methods": [ - 7515968, - 7522192, - 7514560 + 7506448, + 7519312, + 7500416 ], "bases": [ { @@ -18671,9 +18707,9 @@ }, { "type_name": "CHLTVServerAsync::CHLTVDemoRecorderProxy", - "vtable_address": 9712136, + "vtable_address": 9715368, "methods": [ - 7526800 + 7517376 ], "bases": [ { @@ -18695,11 +18731,11 @@ }, { "type_name": "CHLTVServerAsync::CReverseCall", - "vtable_address": 9696008, + "vtable_address": 9698280, "methods": [ - 7512960, - 7522240, - 7512976 + 7495968, + 7519360, + 7495984 ], "bases": [ { @@ -18743,18 +18779,18 @@ }, { "type_name": "CHLTVServerAsync::CSendClientMessagesJob", - "vtable_address": 9694704, + "vtable_address": 9696192, "methods": [ - 7515792, - 7521664, - 5311536, - 5311488, - 5262416, - 5268000, - 7525056, - 5629872, - 5629856, - 7513248 + 7506304, + 7518784, + 5314032, + 5313984, + 5264928, + 5270528, + 7514016, + 5632368, + 5632352, + 7499040 ], "bases": [ { @@ -18830,25 +18866,25 @@ }, { "type_name": "CHiddenFieldValuePrinter", - "vtable_address": 9559568, - "methods": [ - 4731536, - 4749376, - 4729360, - 4729392, - 4729424, - 4729456, - 4729488, - 4729520, - 4729552, - 4729584, - 4729584, - 4729616, - 3337108, - 3343292, - 4729648, - 4729680, - 4729696 + "vtable_address": 9562760, + "methods": [ + 4733888, + 4751792, + 4731728, + 4731760, + 4731792, + 4731824, + 4731856, + 4731888, + 4731920, + 4731952, + 4731952, + 4731984, + 3339476, + 3345660, + 4732016, + 4732048, + 4732064 ], "bases": [ { @@ -18870,32 +18906,32 @@ }, { "type_name": "CHostStateMgr", - "vtable_address": 9598600, - "methods": [ - 5391984, - 5392224, - 4737920, - 5391552, - 5404896, - 4730192, - 4730208, - 5307648, - 5392656, - 4773136, - 4773088, - 5403920, - 5412816, - 5413296, - 5415600, - 5416832, - 5417632, - 5414144, - 5414592, - 5415216, - 5413712, - 5417856, + "vtable_address": 9601800, + "methods": [ + 5394480, + 5394720, + 4740256, + 5394048, + 5407392, + 4732560, + 5264864, + 5310144, + 5395152, + 4775568, + 4775520, + 5406416, + 5415312, + 5415792, + 5418096, + 5419328, + 5420128, + 5416640, 5417088, - 5405328 + 5417712, + 5416208, + 5420352, + 5419584, + 5407824 ], "bases": [ { @@ -19004,9 +19040,9 @@ }, { "type_name": "CHostStateMgr", - "vtable_address": 9598808, + "vtable_address": 9602008, "methods": [ - 5405888 + 5408384 ], "bases": [ { @@ -19115,9 +19151,9 @@ }, { "type_name": "CHostSubscribeForProfileEvents", - "vtable_address": 9586072, + "vtable_address": 9589272, "methods": [ - 7296432 + 7287568 ], "bases": [ { @@ -19139,70 +19175,70 @@ }, { "type_name": "CInputService", - "vtable_address": 9606800, - "methods": [ - 5838480, - 5838816, - 4737920, - 5814992, - 5816368, - 4730192, - 4730208, - 5307648, - 5839472, - 4773136, - 4773088, - 5741376, - 5507744, - 5507760, - 5795776, - 5795728, - 5507776, - 5507792, - 5507808, - 5782960, - 5507824, - 5507840, - 5759920, - 5767872, - 5804736, - 5802816, - 5197504, - 5784080, - 5794016, - 5794464, - 5747504, - 5741440, + "vtable_address": 9610000, + "methods": [ + 5840976, + 5841312, + 4740256, + 5817488, + 5818864, + 4732560, + 5264864, + 5310144, + 5841968, + 4775568, + 4775520, + 5743872, + 5510240, + 5510256, + 5798272, + 5798224, + 5510272, + 5510288, + 5510304, + 5785456, + 5510320, + 5510336, + 5762416, 5770368, - 5741664, - 5757120, - 5747216, - 5741424, - 5784112, - 5805344, - 5806560, - 5784528, - 5741392, - 5741408, - 5784672, - 5835584, - 5836320, - 5834464, + 5807232, + 5805312, + 5200000, + 5786576, + 5796512, + 5796960, + 5750000, + 5743936, + 5772864, + 5744160, + 5759616, + 5749712, + 5743920, + 5786608, + 5807840, + 5809056, + 5787024, + 5743888, + 5743904, + 5787168, + 5838080, + 5838816, + 5836960, + 5752112, + 5744304, + 5746496, + 5786640, + 5786656, + 5786672, + 5786688, + 5786704, + 5786768, + 5786896, + 5797776, 5749616, - 5741808, - 5744000, - 5784144, - 5784160, - 5784176, - 5784192, - 5784208, - 5784272, - 5784400, - 5795280, - 5747120, - 5741280, - 5803952, - 5798624 + 5743776, + 5806448, + 5801120 ], "bases": [ { @@ -19333,9 +19369,9 @@ }, { "type_name": "CInputService", - "vtable_address": 9607312, + "vtable_address": 9610512, "methods": [ - 5802784 + 5805280 ], "bases": [ { @@ -19466,54 +19502,56 @@ }, { "type_name": "CInstantReplay", - "vtable_address": 9651864, - "methods": [ - 6467168, - 6467904, + "vtable_address": 9655064, + "methods": [ + 6470240, + 6470976, + 6453344, + 6450192, + 6449776, + 6450208, + 6449760, + 6449760, + 6372112, + 5881248, + 6449664, + 6449456, + 5264864, + 6449616, + 6450096, + 6449824, + 6449744, + 6449472, + 6450272, + 6450256, + 6449840, + 6450784, + 6450000, + 6449680, + 6449808, + 6449424, + 6449440, + 6465088, + 5401408, + 5264864, + 6450288, + 6449488, 6450304, - 6447152, - 6446736, - 6447168, - 6446720, - 6446720, - 6369136, - 5878752, - 6446624, - 6446416, - 4730208, - 6446576, - 6447056, - 6446784, - 6446704, - 6446432, - 6447232, - 6447216, - 6446800, - 6447760, - 6446960, - 6446640, - 6446768, - 6462016, - 5398912, - 4730208, - 6447248, - 6446448, - 6447264, - 6467952, - 5149472, - 4773136, - 4730192, - 5149472, - 5149472, - 6446464, - 5262496, - 6446480, - 6446480, - 5262496, - 4730192, - 6470896, - 6446592, - 6448896 + 6471024, + 5152000, + 4775568, + 4732560, + 5152000, + 5152000, + 6449504, + 5265008, + 6449520, + 6449520, + 5265008, + 4732560, + 6473968, + 6449632, + 6451936 ], "bases": [ { @@ -19545,11 +19583,11 @@ }, { "type_name": "CInstantReplay", - "vtable_address": 9652248, + "vtable_address": 9655464, "methods": [ - 6471056, - 6446608, - 6449440 + 6474128, + 6449648, + 6452480 ], "bases": [ { @@ -19581,14 +19619,14 @@ }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 9615920, + "vtable_address": 9619120, "methods": [ - 7638592, - 4731552, - 7636416, - 4729760, - 4729776, - 4729792 + 7662544, + 4733904, + 7662304, + 4732128, + 4732144, + 4732160 ], "bases": [ { @@ -19610,7 +19648,7 @@ }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 9624120, + "vtable_address": 9627320, "methods": [], "bases": [ { @@ -19626,13 +19664,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1960576 + "offset_to_top": 1960704 } } }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 9698864, + "vtable_address": 9702120, "methods": [], "bases": [ { @@ -19648,20 +19686,20 @@ ], "model": { "Itanium": { - "offset_to_top": 1995456 + "offset_to_top": 1995648 } } }, { "type_name": "CKV3TransferLoadContext", - "vtable_address": 9698880, + "vtable_address": 9702656, "methods": [ - 7638592, - 4731552, - 7636416, - 7637552, - 4729776, - 4729792 + 7662544, + 4733904, + 7662304, + 7663072, + 4732144, + 4732160 ], "bases": [ { @@ -19694,14 +19732,14 @@ }, { "type_name": "CKV3TransferSaveContext", - "vtable_address": 9624176, + "vtable_address": 9627376, "methods": [ - 7638592, - 4731552, - 7636416, - 4729760, - 4729776, - 4729792 + 7662544, + 4733904, + 7662304, + 4732128, + 4732144, + 4732160 ], "bases": [ { @@ -19734,25 +19772,25 @@ }, { "type_name": "CKeyValueCache", - "vtable_address": 9598248, - "methods": [ - 5392096, - 5392448, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307648, - 5392752, - 4773136, - 4773088, - 5427072, - 5424832, - 5426176, - 5391040, - 5392896, - 5393536 + "vtable_address": 9601448, + "methods": [ + 5394592, + 5394944, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310144, + 5395248, + 4775568, + 4775520, + 5429568, + 5427328, + 5428672, + 5393536, + 5395392, + 5396032 ], "bases": [ { @@ -19851,10 +19889,10 @@ }, { "type_name": "CLoadAutoCompletionFunctor", - "vtable_address": 9608352, + "vtable_address": 9611552, "methods": [ - 5845072, - 5850464 + 5847568, + 5852960 ], "bases": [ { @@ -19886,9 +19924,9 @@ }, { "type_name": "CLoadAutoCompletionFunctor", - "vtable_address": 9608384, + "vtable_address": 9611584, "methods": [ - 5852336 + 5854832 ], "bases": [ { @@ -19920,15 +19958,15 @@ }, { "type_name": "CLoadSpawnGroupsPrerequisite", - "vtable_address": 9627320, + "vtable_address": 9630520, "methods": [ - 6049504, - 6051248, - 5262448, - 5262464, - 6032224, - 5967056, - 6030176 + 6052064, + 6053808, + 5264960, + 5264976, + 6034720, + 5969552, + 6032672 ], "bases": [ { @@ -19950,18 +19988,18 @@ }, { "type_name": "CLoadStartupResourcePrerequisite", - "vtable_address": 9628976, + "vtable_address": 9632176, "methods": [ - 6037648, - 6038064, - 5262448, - 5262464, - 6003360, - 6003344, - 6007840, - 5262496, - 6005184, - 6007456 + 6040176, + 6040592, + 5264960, + 5264976, + 6005856, + 6005840, + 6010336, + 5265008, + 6007680, + 6009952 ], "bases": [ { @@ -20015,10 +20053,10 @@ }, { "type_name": "CLoadStartupResourcePrerequisite", - "vtable_address": 9629072, + "vtable_address": 9632272, "methods": [ - 6007104, - 6007648 + 6009600, + 6010144 ], "bases": [ { @@ -20072,16 +20110,16 @@ }, { "type_name": "CLoopModeAddonDownload", - "vtable_address": 9643376, + "vtable_address": 9646576, "methods": [ - 6259952, - 5390320, - 6247216, - 5878752, - 6269536, - 5390432, - 5390448, - 5507856 + 6262448, + 5392816, + 6249712, + 5881248, + 6272080, + 5392928, + 5392944, + 5510352 ], "bases": [ { @@ -20114,16 +20152,16 @@ }, { "type_name": "CLoopModeConsole", - "vtable_address": 9644464, + "vtable_address": 9647664, "methods": [ - 6258288, - 5390320, - 6248640, - 6247296, - 5390416, - 6246064, - 6270416, - 5507856 + 6260784, + 5392816, + 6251136, + 6249792, + 5392912, + 6248560, + 6272960, + 5510352 ], "bases": [ { @@ -20156,13 +20194,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 9643456, + "vtable_address": 9646656, "methods": [ - 6246960, - 4730192, - 6260608, - 6261360, - 6246048 + 6249456, + 4732560, + 6263104, + 6263904, + 6248544 ], "bases": [ { @@ -20184,13 +20222,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 9644544, + "vtable_address": 9647744, "methods": [ - 6246080, - 4730192, - 6258640, - 6260800, - 6246048 + 6248576, + 4732560, + 6261136, + 6263344, + 6248544 ], "bases": [ { @@ -20212,13 +20250,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 9644272, + "vtable_address": 9647472, "methods": [ - 6246080, - 4730192, - 6259472, - 6261024, - 6246048 + 6248576, + 4732560, + 6261968, + 6263568, + 6248544 ], "bases": [ { @@ -20240,13 +20278,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 9644680, + "vtable_address": 9647880, "methods": [ - 6245936, - 4730192, - 6258144, - 6260672, - 6246048 + 6248432, + 4732560, + 6260640, + 6263168, + 6248544 ], "bases": [ { @@ -20268,13 +20306,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 9644408, + "vtable_address": 9647608, "methods": [ - 6246080, - 4730192, - 6259104, - 6260912, - 6246048 + 6248576, + 4732560, + 6261600, + 6263456, + 6248544 ], "bases": [ { @@ -20296,13 +20334,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 9644136, + "vtable_address": 9647336, "methods": [ - 6246144, - 4730192, - 6259840, - 6261136, - 6246048 + 6248640, + 4732560, + 6262336, + 6263680, + 6248544 ], "bases": [ { @@ -20324,13 +20362,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 9714600, + "vtable_address": 9717832, "methods": [ - 6246528, - 4730192, - 6259888, - 6261312, - 6246048 + 6249024, + 4732560, + 6262384, + 6263856, + 6248544 ], "bases": [ { @@ -20352,16 +20390,16 @@ }, { "type_name": "CLoopModeInGameUI", - "vtable_address": 9644192, + "vtable_address": 9647392, "methods": [ - 6259152, - 5390320, - 6250800, - 5878752, - 5390416, - 6246064, - 6271152, - 5507856 + 6261648, + 5392816, + 6253296, + 5881248, + 5392912, + 6248560, + 6273696, + 5510352 ], "bases": [ { @@ -20394,16 +20432,16 @@ }, { "type_name": "CLoopModeLevelLoad", - "vtable_address": 9644600, + "vtable_address": 9647800, "methods": [ - 6257728, - 5390320, - 6247520, - 6249200, - 6267152, - 5390432, - 6270048, - 6245920 + 6260224, + 5392816, + 6250016, + 6251696, + 6269696, + 5392928, + 6272592, + 6248416 ], "bases": [ { @@ -20436,16 +20474,16 @@ }, { "type_name": "CLoopModeMainMenu", - "vtable_address": 9644328, + "vtable_address": 9647528, "methods": [ - 6258688, - 5390320, - 6248944, - 6246112, - 6267664, - 6246064, - 6270784, - 5507856 + 6261184, + 5392816, + 6251440, + 6248608, + 6270208, + 6248560, + 6273328, + 5510352 ], "bases": [ { @@ -20478,16 +20516,16 @@ }, { "type_name": "CLoopModeRemoteConnect", - "vtable_address": 9644056, + "vtable_address": 9647256, "methods": [ - 6259520, - 5390320, - 6250496, - 5148704, - 6268176, - 5390432, - 6271536, - 5507856 + 6262016, + 5392816, + 6252992, + 5151232, + 6270720, + 5392928, + 6274080, + 5510352 ], "bases": [ { @@ -20520,16 +20558,16 @@ }, { "type_name": "CLoopModeSourceTVRelay", - "vtable_address": 9643584, + "vtable_address": 9646784, "methods": [ - 6273808, - 6252384, - 6253072, - 6252816, - 6268688, - 6246064, - 5390448, - 5507856 + 6276352, + 6254880, + 6255568, + 6255312, + 6271232, + 6248560, + 5392944, + 5510352 ], "bases": [ { @@ -20562,9 +20600,9 @@ }, { "type_name": "CLoopTypeBase", - "vtable_address": 9587656, + "vtable_address": 9590856, "methods": [ - 5409056 + 5411552 ], "bases": [ { @@ -20586,23 +20624,23 @@ }, { "type_name": "CLoopTypeClientServer", - "vtable_address": 9587520, - "methods": [ - 5409056, - 5512848, - 5523616, - 5459104, - 5433056, - 5432368, - 5431936, - 5433936, - 5435072, - 5486080, - 5262352, - 5464528, - 5262832, - 5461440, - 5390464 + "vtable_address": 9590720, + "methods": [ + 5411552, + 5515344, + 5526112, + 5461600, + 5435552, + 5434864, + 5434432, + 5436432, + 5437568, + 5488576, + 5264848, + 5467024, + 5265344, + 5463936, + 5392960 ], "bases": [ { @@ -20635,35 +20673,35 @@ }, { "type_name": "CLoopTypeClientServerService", - "vtable_address": 9599400, - "methods": [ - 5508640, - 5508768, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307648, - 5508976, - 4773136, - 4773088, - 5390672, - 5507744, - 5507760, - 5390688, - 5394464, - 5507776, - 5507792, - 5507808, - 5395952, - 5507824, - 5507840, - 5508304, - 5523792, - 5390944, - 5390976, - 4773136 + "vtable_address": 9602600, + "methods": [ + 5511136, + 5511264, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310144, + 5511472, + 4775568, + 4775520, + 5393168, + 5510240, + 5510256, + 5393184, + 5396960, + 5510272, + 5510288, + 5510304, + 5398448, + 5510320, + 5510336, + 5510800, + 5526288, + 5393440, + 5393472, + 4775568 ], "bases": [ { @@ -20793,9 +20831,9 @@ }, { "type_name": "CLoopTypeClientServerService", - "vtable_address": 9599632, + "vtable_address": 9602832, "methods": [ - 5390960 + 5393456 ], "bases": [ { @@ -20925,11 +20963,11 @@ }, { "type_name": "CLoopTypeClientServerService", - "vtable_address": 9599656, + "vtable_address": 9602856, "methods": [ - 5390992, - 5391008, - 4730192 + 5393488, + 5393504, + 4732560 ], "bases": [ { @@ -21059,23 +21097,23 @@ }, { "type_name": "CLoopTypeSimple", - "vtable_address": 9587792, - "methods": [ - 5409056, - 5559216, - 5564944, - 5510576, - 5510992, - 5508128, - 5508224, - 5524480, - 5524608, - 5569280, - 5262848, - 5557680, - 5262864, - 4730112, - 5262848 + "vtable_address": 9590992, + "methods": [ + 5411552, + 5561712, + 5567440, + 5513072, + 5513488, + 5510624, + 5510720, + 5526976, + 5527104, + 5571776, + 5265360, + 5560176, + 5265376, + 4732480, + 5265360 ], "bases": [ { @@ -21108,34 +21146,34 @@ }, { "type_name": "CLoopTypeSimpleService", - "vtable_address": 9600256, + "vtable_address": 9603456, "methods": [ - 5508640, - 5508768, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307648, - 5508976, - 4773136, - 4773088, - 5509072, - 5507744, - 5507760, - 5507888, - 5509248, - 5507776, - 5507792, - 5507808, - 5390416, - 5507824, - 5507840, - 5541616, - 5565120, - 5508048, - 5508080 + 5511136, + 5511264, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310144, + 5511472, + 4775568, + 4775520, + 5511568, + 5510240, + 5510256, + 5510384, + 5511744, + 5510272, + 5510288, + 5510304, + 5392912, + 5510320, + 5510336, + 5544112, + 5567616, + 5510544, + 5510576 ], "bases": [ { @@ -21265,9 +21303,9 @@ }, { "type_name": "CLoopTypeSimpleService", - "vtable_address": 9600480, + "vtable_address": 9603680, "methods": [ - 5508064 + 5510560 ], "bases": [ { @@ -21397,11 +21435,11 @@ }, { "type_name": "CLoopTypeSimpleService", - "vtable_address": 9600504, + "vtable_address": 9603704, "methods": [ - 5508096, - 5507872, - 4730192 + 5510592, + 5510368, + 4732560 ], "bases": [ { @@ -21531,35 +21569,35 @@ }, { "type_name": "CMapListService", - "vtable_address": 9609800, + "vtable_address": 9613000, "methods": [ - 5838592, - 5839040, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307648, - 5839568, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5148704, - 5507776, - 5507792, - 5507808, - 5390416, - 5507824, - 5507840, - 5835712, - 5864496, - 5843424, - 5843952, - 5854304 + 5841088, + 5841536, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310144, + 5842064, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5151232, + 5510272, + 5510288, + 5510304, + 5392912, + 5510320, + 5510336, + 5838208, + 5866992, + 5845920, + 5846448, + 5856800 ], "bases": [ { @@ -21680,17 +21718,17 @@ }, { "type_name": "CMaterialSystem2AppSystemDict", - "vtable_address": 9588736, + "vtable_address": 9591936, "methods": [ - 6256656, - 6265456, - 6261472, - 5149584, - 5157248, - 5157552, - 5167488, - 5163664, - 6306016 + 6259152, + 6268000, + 6264016, + 5152112, + 5159744, + 5160048, + 5169984, + 5166160, + 6308576 ], "bases": [ { @@ -21744,9 +21782,9 @@ }, { "type_name": "CMaterialSystem2AppSystemDict", - "vtable_address": 9588824, + "vtable_address": 9592024, "methods": [ - 6313184 + 6315744 ], "bases": [ { @@ -21800,10 +21838,10 @@ }, { "type_name": "CMetaDuplicationAutoCompletionFunctor", - "vtable_address": 9684600, + "vtable_address": 9688024, "methods": [ - 7243360, - 7247328 + 7230912, + 7234880 ], "bases": [ { @@ -21846,9 +21884,9 @@ }, { "type_name": "CMetaDuplicationAutoCompletionFunctor", - "vtable_address": 9684632, + "vtable_address": 9688056, "methods": [ - 7250400 + 7237952 ], "bases": [ { @@ -21891,10 +21929,10 @@ }, { "type_name": "CMiniDumpCommentConvarsWriter", - "vtable_address": 9584584, + "vtable_address": 9587784, "methods": [ - 5226976, - 5226992 + 5229472, + 5229488 ], "bases": [ { @@ -21916,9 +21954,9 @@ }, { "type_name": "CModuleMetadataProvider_ResourceManifests", - "vtable_address": 9714392, + "vtable_address": 9717624, "methods": [ - 8629104 + 8632304 ], "bases": [ { @@ -21940,29 +21978,29 @@ }, { "type_name": "CMovieRecorder", - "vtable_address": 9685440, - "methods": [ - 7288160, - 7264128, - 7293440, - 7256976, - 7257088, - 7257104, - 7256992, - 7293696, - 7257136, - 7257776, - 7262992, - 7257120, - 7278128, - 7164080, - 7164080, - 7263872, - 7278832, - 7257824, - 7260272, - 7262832, - 7279056 + "vtable_address": 9691064, + "methods": [ + 7274896, + 7282512, + 7253312, + 7244944, + 7245056, + 7245072, + 7244960, + 7253568, + 7245104, + 7245744, + 7250864, + 7245088, + 7263920, + 7195840, + 7195840, + 7253728, + 7264624, + 7245792, + 7248240, + 7286464, + 7299552 ], "bases": [ { @@ -22004,13 +22042,13 @@ }, { "type_name": "CMovieRecorder", - "vtable_address": 9685624, + "vtable_address": 9691248, "methods": [ - 7278480, - 7256944, - 7256960, - 7264000, - 7278944 + 7264272, + 7244912, + 7244928, + 7253856, + 7264736 ], "bases": [ { @@ -22052,12 +22090,12 @@ }, { "type_name": "CMovieRecorder", - "vtable_address": 9685680, + "vtable_address": 9691304, "methods": [ - 7262912, - 7279152, - 7260064, - 7262624 + 7286544, + 7299648, + 7248032, + 7250592 ], "bases": [ { @@ -22099,10 +22137,10 @@ }, { "type_name": "CMsgConvarsWriter", - "vtable_address": 9586040, + "vtable_address": 9589240, "methods": [ - 5225680, - 5227184 + 5228176, + 5229680 ], "bases": [ { @@ -22124,26 +22162,26 @@ }, { "type_name": "CMsgIPCAddress", - "vtable_address": 9571328, + "vtable_address": 9574528, "methods": [ - 5095936, - 5096064, - 3320958, - 4902960, - 5101760, - 4773216, - 3323118, - 3319950, - 5074848, - 4731504, - 5081600, - 4730112, - 5069024, - 3319860, - 3320126, - 4773392, - 5074320, - 5068544 + 5098464, + 5098592, + 3323326, + 4905392, + 5104288, + 4775648, + 3325486, + 3322318, + 5077376, + 4733856, + 5084128, + 4732480, + 5071552, + 3322228, + 3322494, + 4775824, + 5076848, + 5071072 ], "bases": [ { @@ -22176,26 +22214,26 @@ }, { "type_name": "CMsgPlayerInfo", - "vtable_address": 9563608, - "methods": [ - 4870048, - 4870192, - 3320958, - 4819104, - 4875104, - 4773216, - 3323118, - 3319950, - 4862608, - 4731504, - 4880128, - 4730112, - 4858976, - 3319860, - 3320126, - 4773392, - 4858512, - 4856912 + "vtable_address": 9566808, + "methods": [ + 4872480, + 4872624, + 3323326, + 4821536, + 4877536, + 4775648, + 3325486, + 3322318, + 4865040, + 4733856, + 4882560, + 4732480, + 4861408, + 3322228, + 3322494, + 4775824, + 4860944, + 4859344 ], "bases": [ { @@ -22228,28 +22266,28 @@ }, { "type_name": "CMsgQAngle", - "vtable_address": 9564608, - "methods": [ - 4826304, - 4826432, - 3320958, - 4819040, - 4853408, - 4773216, - 3323118, - 3319950, - 4814416, - 4731504, - 4854640, - 4730112, - 4809968, - 3319860, - 3320126, - 4773392, - 4817232, - 4809168, - 3321688, - 4846864 + "vtable_address": 9567808, + "methods": [ + 4828736, + 4828864, + 3323326, + 4821472, + 4855840, + 4775648, + 3325486, + 3322318, + 4816848, + 4733856, + 4857072, + 4732480, + 4812400, + 3322228, + 3322494, + 4775824, + 4819664, + 4811600, + 3324056, + 4849296 ], "bases": [ { @@ -22282,28 +22320,28 @@ }, { "type_name": "CMsgQuaternion", - "vtable_address": 9564432, - "methods": [ - 4826560, - 4826688, - 3320958, - 4819056, - 4853472, - 4773216, - 3323118, - 3319950, - 4814256, - 4731504, - 4855056, - 4730112, - 4810208, - 3319860, - 3320126, - 4773392, - 4817264, - 4809184, - 3321688, - 4846992 + "vtable_address": 9567632, + "methods": [ + 4828992, + 4829120, + 3323326, + 4821488, + 4855904, + 4775648, + 3325486, + 3322318, + 4816688, + 4733856, + 4857488, + 4732480, + 4812640, + 3322228, + 3322494, + 4775824, + 4819696, + 4811616, + 3324056, + 4849424 ], "bases": [ { @@ -22336,26 +22374,26 @@ }, { "type_name": "CMsgRGBA", - "vtable_address": 9564072, - "methods": [ - 4828032, - 4828160, - 3320958, - 4819088, - 4853728, - 4773216, - 3323118, - 3319950, - 4858288, - 4731504, - 4856080, - 4730112, - 4857152, - 3319860, - 3320126, - 4773392, - 4858480, - 4856896 + "vtable_address": 9567272, + "methods": [ + 4830464, + 4830592, + 3323326, + 4821520, + 4856160, + 4775648, + 3325486, + 3322318, + 4860720, + 4733856, + 4858512, + 4732480, + 4859584, + 3322228, + 3322494, + 4775824, + 4860912, + 4859328 ], "bases": [ { @@ -22388,26 +22426,26 @@ }, { "type_name": "CMsgServerNetworkStats", - "vtable_address": 9569088, - "methods": [ - 5100592, - 5100784, - 3320958, - 4903184, - 5114368, - 4773216, - 3323118, - 3319950, - 5109840, - 4731504, - 5142752, - 4730112, - 5104352, - 3319860, - 3320126, - 4773392, - 5111168, - 5104192 + "vtable_address": 9572288, + "methods": [ + 5103120, + 5103312, + 3323326, + 4905616, + 5116896, + 4775648, + 3325486, + 3322318, + 5112368, + 4733856, + 5145280, + 4732480, + 5106880, + 3322228, + 3322494, + 4775824, + 5113696, + 5106720 ], "bases": [ { @@ -22440,26 +22478,26 @@ }, { "type_name": "CMsgServerNetworkStats_Player", - "vtable_address": 9569248, - "methods": [ - 5100288, - 5100432, - 3320958, - 4903168, - 5103888, - 4773216, - 3323118, - 3319950, - 5076384, - 4731504, - 5090336, - 4730112, - 5073376, - 3319860, - 3320126, - 4773392, - 5074736, - 5068768 + "vtable_address": 9572448, + "methods": [ + 5102816, + 5102960, + 3323326, + 4905600, + 5106416, + 4775648, + 3325486, + 3322318, + 5078912, + 4733856, + 5092864, + 4732480, + 5075904, + 3322228, + 3322494, + 4775824, + 5077264, + 5071296 ], "bases": [ { @@ -22492,26 +22530,26 @@ }, { "type_name": "CMsgServerNetworkStats_Port", - "vtable_address": 9569408, + "vtable_address": 9572608, "methods": [ - 5099984, - 5100128, - 3320958, - 4903152, - 5103616, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5089776, - 4730112, - 5073024, - 3319860, - 3320126, - 4773392, - 5074704, - 5068752 + 5102512, + 5102656, + 3323326, + 4905584, + 5106144, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5092304, + 4732480, + 5075552, + 3322228, + 3322494, + 4775824, + 5077232, + 5071280 ], "bases": [ { @@ -22544,26 +22582,26 @@ }, { "type_name": "CMsgServerPeer", - "vtable_address": 9571168, + "vtable_address": 9574368, "methods": [ - 5096192, - 5096576, - 3320958, - 4902976, - 5101824, - 4773216, - 3323118, - 3319950, - 5074912, - 4731504, - 5082096, - 4730112, - 5076576, - 3319860, - 3320126, - 4773392, - 5074352, - 5068560 + 5098720, + 5099104, + 3323326, + 4905408, + 5104352, + 4775648, + 3325486, + 3322318, + 5077440, + 4733856, + 5084624, + 4732480, + 5079104, + 3322228, + 3322494, + 4775824, + 5076880, + 5071088 ], "bases": [ { @@ -22596,26 +22634,26 @@ }, { "type_name": "CMsgServerUserCmd", - "vtable_address": 9568128, - "methods": [ - 5127408, - 5127552, - 3320958, - 4903280, - 5116320, - 4773216, - 3323118, - 3319950, - 5110688, - 4731504, - 5120944, - 4730112, - 5112832, - 3319860, - 3320126, - 4773392, - 5111360, - 5104288 + "vtable_address": 9571328, + "methods": [ + 5129936, + 5130080, + 3323326, + 4905712, + 5118848, + 4775648, + 3325486, + 3322318, + 5113216, + 4733856, + 5123472, + 4732480, + 5115360, + 3322228, + 3322494, + 4775824, + 5113888, + 5106816 ], "bases": [ { @@ -22648,26 +22686,26 @@ }, { "type_name": "CMsgSource2NetworkFlowQuality", - "vtable_address": 9578048, - "methods": [ - 4961536, - 4961664, - 3320958, - 4902288, - 4939136, - 4773216, - 3323118, - 3319950, - 4961920, - 4892560, - 4980032, - 4730112, - 4970400, - 3319860, - 3320126, - 4937216, - 4963392, - 4961792 + "vtable_address": 9581248, + "methods": [ + 4963968, + 4964096, + 3323326, + 4904720, + 4941568, + 4775648, + 3325486, + 3322318, + 4964352, + 4894992, + 4982560, + 4732480, + 4972832, + 3322228, + 3322494, + 4939648, + 4965824, + 4964224 ], "bases": [ { @@ -22700,26 +22738,26 @@ }, { "type_name": "CMsgSource2PerfIntervalSample", - "vtable_address": 9577728, - "methods": [ - 4988800, - 4988960, - 3320958, - 4902320, - 4993248, - 4773216, - 3323118, - 3319950, - 4963648, - 4731504, - 4975904, - 4730112, - 4964640, - 3319860, - 3320126, - 4773392, - 4963456, - 4961824 + "vtable_address": 9580928, + "methods": [ + 4991328, + 4991488, + 3323326, + 4904752, + 4995776, + 4775648, + 3325486, + 3322318, + 4966080, + 4733856, + 4978432, + 4732480, + 4967072, + 3322228, + 3322494, + 4775824, + 4965888, + 4964256 ], "bases": [ { @@ -22752,26 +22790,26 @@ }, { "type_name": "CMsgSource2PerfIntervalSample_Tag", - "vtable_address": 9577888, - "methods": [ - 4988496, - 4988640, - 3320958, - 4902304, - 4992976, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 4975344, - 4730112, - 4963936, - 3319860, - 3320126, - 4773392, - 4963424, - 4961808 + "vtable_address": 9581088, + "methods": [ + 4991024, + 4991168, + 3323326, + 4904736, + 4995504, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 4977872, + 4732480, + 4966368, + 3322228, + 3322494, + 4775824, + 4965856, + 4964240 ], "bases": [ { @@ -22804,26 +22842,26 @@ }, { "type_name": "CMsgSource2SystemSpecs", - "vtable_address": 9578528, - "methods": [ - 4959984, - 4960160, - 3320958, - 4902240, - 4941328, - 4773216, - 3323118, - 3319950, - 4935632, - 4731504, - 4949760, - 4730112, - 4930784, - 3319860, - 3320126, - 4773392, - 4938048, - 4926800 + "vtable_address": 9581728, + "methods": [ + 4962416, + 4962592, + 3323326, + 4904672, + 4943760, + 4775648, + 3325486, + 3322318, + 4938064, + 4733856, + 4952192, + 4732480, + 4933216, + 3322228, + 3322494, + 4775824, + 4940480, + 4929232 ], "bases": [ { @@ -22856,26 +22894,26 @@ }, { "type_name": "CMsgSource2VProfLiteReport", - "vtable_address": 9578208, + "vtable_address": 9581408, "methods": [ - 4960640, - 4961088, - 3320958, - 4902272, - 4942304, - 4773216, - 3323118, - 3319950, - 4936672, - 4731504, - 4952240, - 4730112, - 4938496, - 3319860, - 3320126, - 4773392, - 4938112, - 4926832 + 4963072, + 4963520, + 3323326, + 4904704, + 4944736, + 4775648, + 3325486, + 3322318, + 4939104, + 4733856, + 4954672, + 4732480, + 4940928, + 3322228, + 3322494, + 4775824, + 4940544, + 4929264 ], "bases": [ { @@ -22908,26 +22946,26 @@ }, { "type_name": "CMsgSource2VProfLiteReportItem", - "vtable_address": 9578368, + "vtable_address": 9581568, "methods": [ - 4960336, - 4960480, - 3320958, - 4902256, - 4941936, - 4773216, - 3323118, - 3319950, - 4936112, - 4731504, - 4950864, - 4730112, - 4932832, - 3319860, - 3320126, - 4773392, - 4938080, - 4926816 + 4962768, + 4962912, + 3323326, + 4904688, + 4944368, + 4775648, + 3325486, + 3322318, + 4938544, + 4733856, + 4953296, + 4732480, + 4935264, + 3322228, + 3322494, + 4775824, + 4940512, + 4929248 ], "bases": [ { @@ -22960,28 +22998,28 @@ }, { "type_name": "CMsgTransform", - "vtable_address": 9564256, - "methods": [ - 4826816, - 4827424, - 3320958, - 4819072, - 4853536, - 4773216, - 3323118, - 3319950, - 4816224, - 4731504, - 4855504, - 4730112, - 4818176, - 3319860, - 3320126, - 4773392, - 4817296, - 4809200, - 3321688, - 4847136 + "vtable_address": 9567456, + "methods": [ + 4829248, + 4829856, + 3323326, + 4821504, + 4855968, + 4775648, + 3325486, + 3322318, + 4818656, + 4733856, + 4857936, + 4732480, + 4820608, + 3322228, + 3322494, + 4775824, + 4819728, + 4811632, + 3324056, + 4849568 ], "bases": [ { @@ -23014,26 +23052,26 @@ }, { "type_name": "CMsgVector", - "vtable_address": 9564960, - "methods": [ - 4825792, - 4825920, - 3320958, - 4819008, - 4853280, - 4773216, - 3323118, - 3319950, - 4814256, - 4731504, - 4853792, - 4730112, - 4809472, - 3319860, - 3320126, - 4773392, - 4817168, - 4809136 + "vtable_address": 9568160, + "methods": [ + 4828224, + 4828352, + 3323326, + 4821440, + 4855712, + 4775648, + 3325486, + 3322318, + 4816688, + 4733856, + 4856224, + 4732480, + 4811904, + 3322228, + 3322494, + 4775824, + 4819600, + 4811568 ], "bases": [ { @@ -23066,28 +23104,28 @@ }, { "type_name": "CMsgVector2D", - "vtable_address": 9564784, - "methods": [ - 4826048, - 4826176, - 3320958, - 4819024, - 4853344, - 4773216, - 3323118, - 3319950, - 4814352, - 4731504, - 4854240, - 4730112, - 4809792, - 3319860, - 3320126, - 4773392, - 4817200, - 4809152, - 3321688, - 4846704 + "vtable_address": 9567984, + "methods": [ + 4828480, + 4828608, + 3323326, + 4821456, + 4855776, + 4775648, + 3325486, + 3322318, + 4816784, + 4733856, + 4856672, + 4732480, + 4812224, + 3322228, + 3322494, + 4775824, + 4819632, + 4811584, + 3324056, + 4849136 ], "bases": [ { @@ -23120,26 +23158,26 @@ }, { "type_name": "CMsgVoiceAudio", - "vtable_address": 9581128, - "methods": [ - 4910432, - 4910592, - 3320958, - 4902048, - 4939360, - 4773216, - 3323118, - 3319950, - 4937232, - 4731504, - 4942832, - 4730112, - 4928288, - 3319860, - 3320126, - 4773392, - 4937664, - 4926608 + "vtable_address": 9584328, + "methods": [ + 4912864, + 4913024, + 3323326, + 4904480, + 4941792, + 4775648, + 3325486, + 3322318, + 4939664, + 4733856, + 4945264, + 4732480, + 4930720, + 3322228, + 3322494, + 4775824, + 4940096, + 4929040 ], "bases": [ { @@ -23172,26 +23210,26 @@ }, { "type_name": "CMsg_CVars", - "vtable_address": 9563128, - "methods": [ - 4870928, - 4871088, - 3320958, - 4819152, - 4875920, - 4773216, - 3323118, - 3319950, - 4862800, - 4731520, - 4881984, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 4858608, - 4856960 + "vtable_address": 9566328, + "methods": [ + 4873360, + 4873520, + 3323326, + 4821584, + 4878352, + 4775648, + 3325486, + 3322318, + 4865232, + 4733872, + 4884416, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 4861040, + 4859392 ], "bases": [ { @@ -23224,26 +23262,26 @@ }, { "type_name": "CMsg_CVars_CVar", - "vtable_address": 9563288, - "methods": [ - 4870608, - 4870768, - 3320958, - 4819136, - 4875456, - 4773216, - 3323118, - 3319950, - 4815392, - 4731504, - 4881520, - 4730112, - 4859504, - 3319860, - 3320126, - 4773392, - 4858576, - 4856944 + "vtable_address": 9566488, + "methods": [ + 4873040, + 4873200, + 3323326, + 4821568, + 4877888, + 4775648, + 3325486, + 3322318, + 4817824, + 4733856, + 4883952, + 4732480, + 4861936, + 3322228, + 3322494, + 4775824, + 4861008, + 4859376 ], "bases": [ { @@ -23276,26 +23314,26 @@ }, { "type_name": "CNETMsg_DebugOverlay", - "vtable_address": 9560568, - "methods": [ - 4908736, - 4909008, - 3320958, - 4819440, - 4911792, - 4773216, - 3323118, - 3319950, - 4901536, - 4731504, - 4920000, - 4730112, - 4900416, - 3319860, - 3320126, - 4773392, - 4900304, - 4891312 + "vtable_address": 9563768, + "methods": [ + 4911168, + 4911440, + 3323326, + 4821872, + 4914224, + 4775648, + 3325486, + 3322318, + 4903968, + 4733856, + 4922432, + 4732480, + 4902848, + 3322228, + 3322494, + 4775824, + 4902736, + 4893744 ], "bases": [ { @@ -23328,14 +23366,14 @@ }, { "type_name": "CNETMsg_DebugOverlay_t", - "vtable_address": 9676072, + "vtable_address": 9678608, "methods": [ - 6927552, - 6927824, - 5346608, - 5346608, - 5966272, - 5996960 + 6922688, + 6922960, + 5349104, + 5349104, + 5968768, + 5999456 ], "bases": [ { @@ -23400,26 +23438,26 @@ }, { "type_name": "CNETMsg_DebugOverlay_t", - "vtable_address": 9676136, - "methods": [ - 6928112, - 6928384, - 3320958, - 4819440, - 4911792, - 4773216, - 3323118, - 3319950, - 4901536, - 4731504, - 4920000, - 4730112, - 4900416, - 3319860, - 3320126, - 4773392, - 4900304, - 4891312 + "vtable_address": 9678672, + "methods": [ + 6923248, + 6923520, + 3323326, + 4821872, + 4914224, + 4775648, + 3325486, + 3322318, + 4903968, + 4733856, + 4922432, + 4732480, + 4902848, + 3322228, + 3322494, + 4775824, + 4902736, + 4893744 ], "bases": [ { @@ -23484,26 +23522,26 @@ }, { "type_name": "CNETMsg_NOP", - "vtable_address": 9565120, - "methods": [ - 4819168, - 4825744, - 3320958, - 4819184, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 4858640, - 4856976 + "vtable_address": 9568320, + "methods": [ + 4821600, + 4828176, + 3323326, + 4821616, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 4861072, + 4859408 ], "bases": [ { @@ -23547,26 +23585,26 @@ }, { "type_name": "CNETMsg_SetConVar", - "vtable_address": 9562488, + "vtable_address": 9565688, "methods": [ - 4872128, - 4872544, - 3320958, - 4819248, - 4877168, - 4773216, - 3323118, - 3319950, - 4863424, - 4731504, - 4884416, - 4730112, - 4864736, - 3319860, - 3320126, - 4773392, - 4858768, - 4857040 + 4874560, + 4874976, + 3323326, + 4821680, + 4879600, + 4775648, + 3325486, + 3322318, + 4865856, + 4733856, + 4886848, + 4732480, + 4867168, + 3322228, + 3322494, + 4775824, + 4861200, + 4859472 ], "bases": [ { @@ -23599,14 +23637,14 @@ }, { "type_name": "CNETMsg_SetConVar_t", - "vtable_address": 9662512, + "vtable_address": 9665216, "methods": [ - 5326480, - 5326912, - 5346608, - 5346608, - 5348064, - 5365008 + 5328976, + 5329408, + 5349104, + 5349104, + 5350560, + 5367504 ], "bases": [ { @@ -23671,26 +23709,26 @@ }, { "type_name": "CNETMsg_SetConVar_t", - "vtable_address": 9662576, + "vtable_address": 9665280, "methods": [ - 5311984, - 5326976, - 3320958, - 4819248, - 4877168, - 4773216, - 3323118, - 3319950, - 4863424, - 4731504, - 4884416, - 4730112, - 4864736, - 3319860, - 3320126, - 4773392, - 4858768, - 4857040 + 5314480, + 5329472, + 3323326, + 4821680, + 4879600, + 4775648, + 3325486, + 3322318, + 4865856, + 4733856, + 4886848, + 4732480, + 4867168, + 3322228, + 3322494, + 4775824, + 4861200, + 4859472 ], "bases": [ { @@ -23755,26 +23793,26 @@ }, { "type_name": "CNETMsg_SignonState", - "vtable_address": 9562328, - "methods": [ - 4872592, - 4872752, - 3320958, - 4819264, - 4877856, - 4773216, - 3323118, - 3319950, - 4866496, - 4731504, - 4884832, - 4730112, - 4865504, - 3319860, - 3320126, - 4773392, - 4858800, - 4857056 + "vtable_address": 9565528, + "methods": [ + 4875024, + 4875184, + 3323326, + 4821696, + 4880288, + 4775648, + 3325486, + 3322318, + 4868928, + 4733856, + 4887264, + 4732480, + 4867936, + 3322228, + 3322494, + 4775824, + 4861232, + 4859488 ], "bases": [ { @@ -23807,14 +23845,14 @@ }, { "type_name": "CNETMsg_SignonState_t", - "vtable_address": 9629104, + "vtable_address": 9632304, "methods": [ - 5356880, - 5357056, - 5346608, - 5346608, - 5347824, - 5363984 + 5359376, + 5359552, + 5349104, + 5349104, + 5350320, + 5366480 ], "bases": [ { @@ -23879,26 +23917,26 @@ }, { "type_name": "CNETMsg_SignonState_t", - "vtable_address": 9629168, - "methods": [ - 5357232, - 5357408, - 3320958, - 4819264, - 4877856, - 4773216, - 3323118, - 3319950, - 4866496, - 4731504, - 4884832, - 4730112, - 4865504, - 3319860, - 3320126, - 4773392, - 4858800, - 4857056 + "vtable_address": 9632368, + "methods": [ + 5359728, + 5359904, + 3323326, + 4821696, + 4880288, + 4775648, + 3325486, + 3322318, + 4868928, + 4733856, + 4887264, + 4732480, + 4867936, + 3322228, + 3322494, + 4775824, + 4861232, + 4859488 ], "bases": [ { @@ -23963,26 +24001,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load", - "vtable_address": 9561528, - "methods": [ - 4874800, - 4874944, - 3320958, - 4819344, - 4879584, - 4773216, - 3323118, - 3319950, - 4898944, - 4731504, - 4888800, - 4730112, - 4892608, - 3319860, - 3320126, - 4773392, - 4900112, - 4891216 + "vtable_address": 9564728, + "methods": [ + 4877232, + 4877376, + 3323326, + 4821776, + 4882016, + 4775648, + 3325486, + 3322318, + 4901376, + 4733856, + 4891232, + 4732480, + 4895040, + 3322228, + 3322494, + 4775824, + 4902544, + 4893648 ], "bases": [ { @@ -24015,26 +24053,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted", - "vtable_address": 9560888, - "methods": [ - 4908048, - 4908176, - 3320958, - 4819408, - 4911184, - 4773216, - 3323118, - 3319950, - 4862752, - 4731504, - 4914800, - 4730112, - 4892352, - 3319860, - 3320126, - 4773392, - 4900240, - 4891280 + "vtable_address": 9564088, + "methods": [ + 4910480, + 4910608, + 3323326, + 4821840, + 4913616, + 4775648, + 3325486, + 3322318, + 4865184, + 4733856, + 4917232, + 4732480, + 4894784, + 3322228, + 3322494, + 4775824, + 4902672, + 4893712 ], "bases": [ { @@ -24067,14 +24105,14 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted_t", - "vtable_address": 9671760, + "vtable_address": 9671376, "methods": [ - 5353888, - 5354032, - 5346608, - 5346608, - 5347424, - 5362960 + 5356384, + 5356528, + 5349104, + 5349104, + 5349920, + 5365456 ], "bases": [ { @@ -24139,26 +24177,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted_t", - "vtable_address": 9671824, - "methods": [ - 5354176, - 5354304, - 3320958, - 4819408, - 4911184, - 4773216, - 3323118, - 3319950, - 4862752, - 4731504, - 4914800, - 4730112, - 4892352, - 3319860, - 3320126, - 4773392, - 4900240, - 4891280 + "vtable_address": 9671440, + "methods": [ + 5356672, + 5356800, + 3323326, + 4821840, + 4913616, + 4775648, + 3325486, + 3322318, + 4865184, + 4733856, + 4917232, + 4732480, + 4894784, + 3322228, + 3322494, + 4775824, + 4902672, + 4893712 ], "bases": [ { @@ -24223,14 +24261,14 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load_t", - "vtable_address": 9648520, + "vtable_address": 9651736, "methods": [ - 5356208, - 5356368, - 5346608, - 5346608, - 5347744, - 5361120 + 5358704, + 5358864, + 5349104, + 5349104, + 5350240, + 5363616 ], "bases": [ { @@ -24295,26 +24333,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load_t", - "vtable_address": 9648584, - "methods": [ - 5356544, - 5356704, - 3320958, - 4819344, - 4879584, - 4773216, - 3323118, - 3319950, - 4898944, - 4731504, - 4888800, - 4730112, - 4892608, - 3319860, - 3320126, - 4773392, - 4900112, - 4891216 + "vtable_address": 9651800, + "methods": [ + 5359040, + 5359200, + 3323326, + 4821776, + 4882016, + 4775648, + 3325486, + 3322318, + 4901376, + 4733856, + 4891232, + 4732480, + 4895040, + 3322228, + 3322494, + 4775824, + 4902544, + 4893648 ], "bases": [ { @@ -24379,26 +24417,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate", - "vtable_address": 9561368, - "methods": [ - 4907232, - 4907376, - 3320958, - 4819360, - 4910752, - 4773216, - 3323118, - 3319950, - 4898112, - 4731504, - 4912704, - 4730112, - 4894976, - 3319860, - 3320126, - 4773392, - 4900144, - 4891232 + "vtable_address": 9564568, + "methods": [ + 4909664, + 4909808, + 3323326, + 4821792, + 4913184, + 4775648, + 3325486, + 3322318, + 4900544, + 4733856, + 4915136, + 4732480, + 4897408, + 3322228, + 3322494, + 4775824, + 4902576, + 4893664 ], "bases": [ { @@ -24431,14 +24469,14 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate_t", - "vtable_address": 9677536, + "vtable_address": 9684224, "methods": [ - 5355568, - 5355728, - 5346608, - 5346608, - 5347664, - 5363680 + 5358064, + 5358224, + 5349104, + 5349104, + 5350160, + 5366176 ], "bases": [ { @@ -24503,26 +24541,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate_t", - "vtable_address": 9677600, - "methods": [ - 5355888, - 5356048, - 3320958, - 4819360, - 4910752, - 4773216, - 3323118, - 3319950, - 4898112, - 4731504, - 4912704, - 4730112, - 4894976, - 3319860, - 3320126, - 4773392, - 4900144, - 4891232 + "vtable_address": 9684288, + "methods": [ + 5358384, + 5358544, + 3323326, + 4821792, + 4913184, + 4775648, + 3325486, + 3322318, + 4900544, + 4733856, + 4915136, + 4732480, + 4897408, + 3322228, + 3322494, + 4775824, + 4902576, + 4893664 ], "bases": [ { @@ -24587,26 +24625,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick", - "vtable_address": 9561208, + "vtable_address": 9564408, "methods": [ - 4907536, - 4907664, - 3320958, - 4819376, - 4911056, - 4773216, - 3323118, - 3319950, - 4899920, - 4731504, - 4913392, - 4730112, - 4891392, - 3319860, - 3320126, - 4773392, - 4900176, - 4891248 + 4909968, + 4910096, + 3323326, + 4821808, + 4913488, + 4775648, + 3325486, + 3322318, + 4902352, + 4733856, + 4915824, + 4732480, + 4893824, + 3322228, + 3322494, + 4775824, + 4902608, + 4893680 ], "bases": [ { @@ -24639,14 +24677,14 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick_t", - "vtable_address": 9672824, + "vtable_address": 9675800, "methods": [ - 5355008, - 5355152, - 5346608, - 5346608, - 5347584, - 5363440 + 5357504, + 5357648, + 5349104, + 5349104, + 5350080, + 5365936 ], "bases": [ { @@ -24711,26 +24749,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick_t", - "vtable_address": 9672888, + "vtable_address": 9675864, "methods": [ - 5355296, - 5355424, - 3320958, - 4819376, - 4911056, - 4773216, - 3323118, - 3319950, - 4899920, - 4731504, - 4913392, - 4730112, - 4891392, - 3319860, - 3320126, - 4773392, - 4900176, - 4891248 + 5357792, + 5357920, + 3323326, + 4821808, + 4913488, + 4775648, + 3325486, + 3322318, + 4902352, + 4733856, + 4915824, + 4732480, + 4893824, + 3322228, + 3322494, + 4775824, + 4902608, + 4893680 ], "bases": [ { @@ -24795,26 +24833,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload", - "vtable_address": 9561048, - "methods": [ - 4907792, - 4907920, - 3320958, - 4819392, - 4911120, - 4773216, - 3323118, - 3319950, - 4900016, - 4731504, - 4914096, - 4730112, - 4891872, - 3319860, - 3320126, - 4773392, - 4900208, - 4891264 + "vtable_address": 9564248, + "methods": [ + 4910224, + 4910352, + 3323326, + 4821824, + 4913552, + 4775648, + 3325486, + 3322318, + 4902448, + 4733856, + 4916528, + 4732480, + 4894304, + 3322228, + 3322494, + 4775824, + 4902640, + 4893696 ], "bases": [ { @@ -24847,14 +24885,14 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload_t", - "vtable_address": 9676336, + "vtable_address": 9678872, "methods": [ - 5354448, - 5354592, - 5346608, - 5346608, - 5347504, - 5363184 + 5356944, + 5357088, + 5349104, + 5349104, + 5350000, + 5365680 ], "bases": [ { @@ -24919,26 +24957,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload_t", - "vtable_address": 9676400, - "methods": [ - 5354736, - 5354864, - 3320958, - 4819392, - 4911120, - 4773216, - 3323118, - 3319950, - 4900016, - 4731504, - 4914096, - 4730112, - 4891872, - 3319860, - 3320126, - 4773392, - 4900208, - 4891264 + "vtable_address": 9678936, + "methods": [ + 5357232, + 5357360, + 3323326, + 4821824, + 4913552, + 4775648, + 3325486, + 3322318, + 4902448, + 4733856, + 4916528, + 4732480, + 4894304, + 3322228, + 3322494, + 4775824, + 4902640, + 4893696 ], "bases": [ { @@ -25003,26 +25041,26 @@ }, { "type_name": "CNETMsg_SplitScreenUser", - "vtable_address": 9562968, - "methods": [ - 4871264, - 4871392, - 3320958, - 4819200, - 4876528, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 4882448, - 4730112, - 4858080, - 3319860, - 3320126, - 4773392, - 4858672, - 4856992 + "vtable_address": 9566168, + "methods": [ + 4873696, + 4873824, + 3323326, + 4821632, + 4878960, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 4884880, + 4732480, + 4860512, + 3322228, + 3322494, + 4775824, + 4861104, + 4859424 ], "bases": [ { @@ -25055,26 +25093,26 @@ }, { "type_name": "CNETMsg_StringCmd", - "vtable_address": 9562648, - "methods": [ - 4871824, - 4871968, - 3320958, - 4819232, - 4876896, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 4883856, - 4730112, - 4861216, - 3319860, - 3320126, - 4773392, - 4858736, - 4857024 + "vtable_address": 9565848, + "methods": [ + 4874256, + 4874400, + 3323326, + 4821664, + 4879328, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 4886288, + 4732480, + 4863648, + 3322228, + 3322494, + 4775824, + 4861168, + 4859456 ], "bases": [ { @@ -25107,14 +25145,14 @@ }, { "type_name": "CNETMsg_StringCmd_t", - "vtable_address": 9607600, + "vtable_address": 9610800, "methods": [ - 5358240, - 5358400, - 5346608, - 5346608, - 5347984, - 5364720 + 5360736, + 5360896, + 5349104, + 5349104, + 5350480, + 5367216 ], "bases": [ { @@ -25179,26 +25217,26 @@ }, { "type_name": "CNETMsg_StringCmd_t", - "vtable_address": 9607664, - "methods": [ - 5358560, - 5358720, - 3320958, - 4819232, - 4876896, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 4883856, - 4730112, - 4861216, - 3319860, - 3320126, - 4773392, - 4858736, - 4857024 + "vtable_address": 9610864, + "methods": [ + 5361056, + 5361216, + 3323326, + 4821664, + 4879328, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 4886288, + 4732480, + 4863648, + 3322228, + 3322494, + 4775824, + 4861168, + 4859456 ], "bases": [ { @@ -25263,26 +25301,26 @@ }, { "type_name": "CNETMsg_Tick", - "vtable_address": 9562808, - "methods": [ - 4871520, - 4871664, - 3320958, - 4819216, - 4876576, - 4773216, - 3323118, - 3319950, - 4863008, - 4731504, - 4882928, - 4730112, - 4859808, - 3319860, - 3320126, - 4773392, - 4858704, - 4857008 + "vtable_address": 9566008, + "methods": [ + 4873952, + 4874096, + 3323326, + 4821648, + 4879008, + 4775648, + 3325486, + 3322318, + 4865440, + 4733856, + 4885360, + 4732480, + 4862240, + 3322228, + 3322494, + 4775824, + 4861136, + 4859440 ], "bases": [ { @@ -25315,14 +25353,14 @@ }, { "type_name": "CNETMsg_Tick_t", - "vtable_address": 9661840, + "vtable_address": 9668616, "methods": [ - 5357600, - 5357760, - 5346608, - 5346608, - 5347904, - 5364400 + 5360096, + 5360256, + 5349104, + 5349104, + 5350400, + 5366896 ], "bases": [ { @@ -25387,26 +25425,26 @@ }, { "type_name": "CNETMsg_Tick_t", - "vtable_address": 9661904, - "methods": [ - 5357920, - 5358080, - 3320958, - 4819216, - 4876576, - 4773216, - 3323118, - 3319950, - 4863008, - 4731504, - 4882928, - 4730112, - 4859808, - 3319860, - 3320126, - 4773392, - 4858704, - 4857008 + "vtable_address": 9668680, + "methods": [ + 5360416, + 5360576, + 3323326, + 4821648, + 4879008, + 4775648, + 3325486, + 3322318, + 4865440, + 4733856, + 4885360, + 4732480, + 4862240, + 3322228, + 3322494, + 4775824, + 4861136, + 4859440 ], "bases": [ { @@ -25471,11 +25509,11 @@ }, { "type_name": "CNetConsoleMgr", - "vtable_address": 9586096, + "vtable_address": 9589296, "methods": [ - 7163952, - 7612288, - 7612912 + 7154096, + 7612576, + 7613344 ], "bases": [ { @@ -25497,7 +25535,7 @@ }, { "type_name": "CNetMessage", - "vtable_address": 9594008, + "vtable_address": 9597208, "methods": [], "bases": [], "model": { @@ -25508,14 +25546,14 @@ }, { "type_name": "CNetMessagePB<-1, C2S_CONNECTION_Message, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9653432, + "vtable_address": 9656632, "methods": [ - 6548512, - 6548672, - 5346608, - 5346608, - 6526352, - 6552864 + 6552480, + 6552640, + 5349104, + 5349104, + 6529232, + 6555920 ], "bases": [ { @@ -25569,26 +25607,26 @@ }, { "type_name": "CNetMessagePB<-1, C2S_CONNECTION_Message, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9653496, - "methods": [ - 6548848, - 6549248, - 3320958, - 6489760, - 7625680, - 4773216, - 3323118, - 3319950, - 7603632, - 4731504, - 7628240, - 4730112, + "vtable_address": 9656696, + "methods": [ + 6552816, + 6553216, + 3323326, + 6492832, + 7617232, + 4775648, + 3325486, + 3322318, 7602192, - 3319860, - 3320126, - 4773392, - 7600928, - 7596560 + 4733856, + 7619792, + 4732480, + 7600752, + 3322228, + 3322494, + 4775824, + 7599488, + 7590240 ], "bases": [ { @@ -25642,17 +25680,17 @@ }, { "type_name": "CNetMessagePB<-1, C2S_CONNECTION_Message, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9655728, + "vtable_address": 9658928, "methods": [ - 6555120, - 5348336, - 6557264, - 5880000, - 6526432, - 5346880, - 6550336, - 6526576, - 6526592 + 6558176, + 5350832, + 6560320, + 5882496, + 6529312, + 5349376, + 6553392, + 6529456, + 6529472 ], "bases": [ { @@ -25674,14 +25712,14 @@ }, { "type_name": "CNetMessagePB<-1, C2S_CONNECT_Message, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9654040, + "vtable_address": 9657240, "methods": [ - 6509248, - 6509408, - 5346608, - 5346608, - 6526608, - 6553312 + 6512320, + 6512480, + 5349104, + 5349104, + 6529488, + 6556368 ], "bases": [ { @@ -25735,26 +25773,26 @@ }, { "type_name": "CNetMessagePB<-1, C2S_CONNECT_Message, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9654104, - "methods": [ - 6509584, - 6509744, - 3320958, - 6489744, - 7625072, - 4773216, - 3323118, - 3319950, - 7603072, - 4731504, - 7627264, - 4730112, - 7601152, - 3319860, - 3320126, - 4773392, - 7600896, - 7596544 + "vtable_address": 9657304, + "methods": [ + 6512656, + 6552304, + 3323326, + 6492816, + 7616624, + 4775648, + 3325486, + 3322318, + 7601632, + 4733856, + 7618816, + 4732480, + 7599712, + 3322228, + 3322494, + 4775824, + 7599456, + 7590224 ], "bases": [ { @@ -25808,17 +25846,17 @@ }, { "type_name": "CNetMessagePB<-1, C2S_CONNECT_Message, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9655616, + "vtable_address": 9658816, "methods": [ - 6556240, - 5922256, - 6558624, - 5880000, - 6526688, - 5346880, - 6550448, - 6526832, - 6526848 + 6559296, + 5924752, + 6561680, + 5882496, + 6529568, + 5349376, + 6553504, + 6529712, + 6529728 ], "bases": [ { @@ -25840,14 +25878,14 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageConnectionClosed, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9664456, + "vtable_address": 9667160, "methods": [ - 6686656, - 6686816, - 5346608, - 5346608, - 6653136, - 6691712 + 6682496, + 6682656, + 5349104, + 5349104, + 6656080, + 6687552 ], "bases": [ { @@ -25901,26 +25939,26 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageConnectionClosed, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9664520, - "methods": [ - 6686976, - 6687136, - 3320958, - 6528064, - 7626144, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 7630448, - 4730112, - 7602432, - 3319860, - 3320126, - 4773392, - 7601024, - 7596640 + "vtable_address": 9667224, + "methods": [ + 6682816, + 6682976, + 3323326, + 6530944, + 7617696, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 7622000, + 4732480, + 7600992, + 3322228, + 3322494, + 4775824, + 7599584, + 7590320 ], "bases": [ { @@ -25974,17 +26012,17 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageConnectionClosed, (SignonGroup_t)11, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9655056, + "vtable_address": 9658256, "methods": [ - 6692224, - 5348336, - 6693696, - 6612800, - 6652544, - 5346880, - 6684816, - 6652688, - 6652704 + 6688064, + 5350832, + 6689536, + 6615744, + 6655488, + 5349376, + 6680656, + 6655632, + 6655648 ], "bases": [ { @@ -26006,14 +26044,14 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageConnectionCrashed, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9659624, + "vtable_address": 9662824, "methods": [ - 6686016, - 6686176, - 5346608, - 5346608, - 6653056, - 6691424 + 6681856, + 6682016, + 5349104, + 5349104, + 6656000, + 6687264 ], "bases": [ { @@ -26067,26 +26105,26 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageConnectionCrashed, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9659688, - "methods": [ - 6686336, - 6686496, - 3320958, - 6528080, - 7626416, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 7631008, - 4730112, - 7602752, - 3319860, - 3320126, - 4773392, - 7601056, - 7596656 + "vtable_address": 9662888, + "methods": [ + 6682176, + 6682336, + 3323326, + 6530960, + 7617968, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 7622560, + 4732480, + 7601312, + 3322228, + 3322494, + 4775824, + 7599616, + 7590336 ], "bases": [ { @@ -26140,17 +26178,17 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageConnectionCrashed, (SignonGroup_t)11, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9655144, + "vtable_address": 9658344, "methods": [ - 6650752, - 5348336, - 6651456, - 6612800, - 6613168, - 5346880, - 6640848, - 6613312, - 6613328 + 6653696, + 5350832, + 6654400, + 6615744, + 6616112, + 5349376, + 6643792, + 6616256, + 6616272 ], "bases": [ { @@ -26172,14 +26210,14 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageSplitscreenUserChanged, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9664072, + "vtable_address": 9666776, "methods": [ - 6687296, - 6687440, - 5346608, - 5346608, - 6653216, - 6692000 + 6683136, + 6683280, + 5349104, + 5349104, + 6656160, + 6687840 ], "bases": [ { @@ -26233,26 +26271,26 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageSplitscreenUserChanged, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9664136, - "methods": [ - 6687584, - 6687712, - 3320958, - 6528048, - 7626096, - 4773216, - 3323118, - 3319950, - 4862752, - 4731504, - 7629968, - 4730112, - 7600576, - 3319860, - 3320126, - 4773392, - 7600992, - 7596624 + "vtable_address": 9666840, + "methods": [ + 6683424, + 6683552, + 3323326, + 6530928, + 7617648, + 4775648, + 3325486, + 3322318, + 4865184, + 4733856, + 7621520, + 4732480, + 7599136, + 3322228, + 3322494, + 4775824, + 7599552, + 7590304 ], "bases": [ { @@ -26306,17 +26344,17 @@ }, { "type_name": "CNetMessagePB<-1, NetMessageSplitscreenUserChanged, (SignonGroup_t)11, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9655232, + "vtable_address": 9658432, "methods": [ - 6692928, - 5346704, - 6694784, - 6612800, - 6652720, - 5346880, - 6684928, - 6652864, - 6652880 + 6688768, + 5349200, + 6690624, + 6615744, + 6655664, + 5349376, + 6680768, + 6655808, + 6655824 ], "bases": [ { @@ -26338,14 +26376,14 @@ }, { "type_name": "CNetMessagePB<1073741824, NetMessagePacketStart, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9660008, + "vtable_address": 9663208, "methods": [ - 6670880, - 6685216, - 5347248, - 5347248, - 6652976, - 6691216 + 6670688, + 6681056, + 5349744, + 5349744, + 6655920, + 6687056 ], "bases": [ { @@ -26410,26 +26448,26 @@ }, { "type_name": "CNetMessagePB<1073741824, NetMessagePacketStart, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9660072, - "methods": [ - 6655136, - 6685280, - 3320958, - 6528096, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 7601088, - 7596672 + "vtable_address": 9663272, + "methods": [ + 6657040, + 6681120, + 3323326, + 6530976, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 7599648, + 7590352 ], "bases": [ { @@ -26494,17 +26532,17 @@ }, { "type_name": "CNetMessagePB<1073741824, NetMessagePacketStart, (SignonGroup_t)11, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9654880, + "vtable_address": 9658080, "methods": [ - 6648976, - 6412176, - 6649664, - 6612800, - 6612992, - 5346880, - 6640736, - 6613136, - 6613152 + 6651920, + 6415152, + 6652608, + 6615744, + 6615936, + 5349376, + 6643680, + 6616080, + 6616096 ], "bases": [ { @@ -26526,14 +26564,14 @@ }, { "type_name": "CNetMessagePB<1073741825, NetMessagePacketEnd, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9660392, + "vtable_address": 9663592, "methods": [ - 6670848, - 6685088, - 5347248, - 5347248, - 6652896, - 6691008 + 6670656, + 6680928, + 5349744, + 5349744, + 6655840, + 6686848 ], "bases": [ { @@ -26598,26 +26636,26 @@ }, { "type_name": "CNetMessagePB<1073741825, NetMessagePacketEnd, (SignonGroup_t)11, (NetChannelBufType_t)1, false>", - "vtable_address": 9660456, - "methods": [ - 6655104, - 6685152, - 3320958, - 6528112, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 7601120, - 7596688 + "vtable_address": 9663656, + "methods": [ + 6657008, + 6680992, + 3323326, + 6530992, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 7599680, + 7590368 ], "bases": [ { @@ -26682,17 +26720,17 @@ }, { "type_name": "CNetMessagePB<1073741825, NetMessagePacketEnd, (SignonGroup_t)11, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9654968, + "vtable_address": 9658168, "methods": [ - 6647200, - 6412176, - 6647888, - 6612800, - 6612816, - 5346880, - 6640624, - 6612960, - 6612976 + 6650144, + 6415152, + 6650832, + 6615744, + 6615760, + 5349376, + 6643568, + 6615904, + 6615920 ], "bases": [ { @@ -26714,14 +26752,14 @@ }, { "type_name": "CNetMessagePB<11, CNETMsg_SpawnGroup_SetCreationTick, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9591744, + "vtable_address": 9594944, "methods": [ - 5335536, - 5335680, - 5346608, - 5346608, - 5347584, - 5363440 + 5338032, + 5338176, + 5349104, + 5349104, + 5350080, + 5365936 ], "bases": [ { @@ -26775,26 +26813,26 @@ }, { "type_name": "CNetMessagePB<11, CNETMsg_SpawnGroup_SetCreationTick, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9591808, + "vtable_address": 9595008, "methods": [ - 5335824, - 5335952, - 3320958, - 4819376, - 4911056, - 4773216, - 3323118, - 3319950, - 4899920, - 4731504, - 4913392, - 4730112, - 4891392, - 3319860, - 3320126, - 4773392, - 4900176, - 4891248 + 5338320, + 5338448, + 3323326, + 4821808, + 4913488, + 4775648, + 3325486, + 3322318, + 4902352, + 4733856, + 4915824, + 4732480, + 4893824, + 3322228, + 3322494, + 4775824, + 4902608, + 4893680 ], "bases": [ { @@ -26848,17 +26886,17 @@ }, { "type_name": "CNetMessagePB<11, CNETMsg_SpawnGroup_SetCreationTick, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9597000, + "vtable_address": 9600200, "methods": [ - 5375600, - 5348336, - 5376416, - 5348144, - 5348528, - 5346880, - 5361456, - 5348672, - 5348688 + 5378096, + 5350832, + 5378912, + 5350640, + 5351024, + 5349376, + 5363952, + 5351168, + 5351184 ], "bases": [ { @@ -26880,14 +26918,14 @@ }, { "type_name": "CNetMessagePB<12, CNETMsg_SpawnGroup_Unload, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9591520, + "vtable_address": 9594720, "methods": [ - 5336096, - 5336240, - 5346608, - 5346608, - 5347504, - 5363184 + 5338592, + 5338736, + 5349104, + 5349104, + 5350000, + 5365680 ], "bases": [ { @@ -26941,26 +26979,26 @@ }, { "type_name": "CNetMessagePB<12, CNETMsg_SpawnGroup_Unload, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9591584, - "methods": [ - 5336384, - 5336512, - 3320958, - 4819392, - 4911120, - 4773216, - 3323118, - 3319950, - 4900016, - 4731504, - 4914096, - 4730112, - 4891872, - 3319860, - 3320126, - 4773392, - 4900208, - 4891264 + "vtable_address": 9594784, + "methods": [ + 5338880, + 5339008, + 3323326, + 4821824, + 4913552, + 4775648, + 3325486, + 3322318, + 4902448, + 4733856, + 4916528, + 4732480, + 4894304, + 3322228, + 3322494, + 4775824, + 4902640, + 4893696 ], "bases": [ { @@ -27014,17 +27052,17 @@ }, { "type_name": "CNetMessagePB<12, CNETMsg_SpawnGroup_Unload, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9597112, + "vtable_address": 9600312, "methods": [ - 5373680, - 5348336, - 5374496, - 5348144, - 5348352, - 5346880, - 5361360, - 5348496, - 5348512 + 5376176, + 5350832, + 5376992, + 5350640, + 5350848, + 5349376, + 5363856, + 5350992, + 5351008 ], "bases": [ { @@ -27046,14 +27084,14 @@ }, { "type_name": "CNetMessagePB<13, CNETMsg_SpawnGroup_LoadCompleted, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9591296, + "vtable_address": 9594496, "methods": [ - 5336656, - 5336800, - 5346608, - 5346608, - 5347424, - 5362960 + 5339152, + 5339296, + 5349104, + 5349104, + 5349920, + 5365456 ], "bases": [ { @@ -27107,26 +27145,26 @@ }, { "type_name": "CNetMessagePB<13, CNETMsg_SpawnGroup_LoadCompleted, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9591360, - "methods": [ - 5336944, - 5337072, - 3320958, - 4819408, - 4911184, - 4773216, - 3323118, - 3319950, - 4862752, - 4731504, - 4914800, - 4730112, - 4892352, - 3319860, - 3320126, - 4773392, - 4900240, - 4891280 + "vtable_address": 9594560, + "methods": [ + 5339440, + 5339568, + 3323326, + 4821840, + 4913616, + 4775648, + 3325486, + 3322318, + 4865184, + 4733856, + 4917232, + 4732480, + 4894784, + 3322228, + 3322494, + 4775824, + 4902672, + 4893712 ], "bases": [ { @@ -27178,73 +27216,19 @@ } } }, - { - "type_name": "CNetMessagePB<13, CNETMsg_SpawnGroup_LoadCompleted, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9670072, - "methods": [], - "bases": [ - { - "type_name": "CNetMessage", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "CNETMsg_SpawnGroup_LoadCompleted", - "details": { - "Itanium": { - "offset": 48, - "flags": 2, - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 1982144 - } - } - }, { "type_name": "CNetMessagePB<13, CNETMsg_SpawnGroup_LoadCompleted, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9597224, + "vtable_address": 9600424, "methods": [ - 5371840, - 5346704, - 5372560, - 5348144, - 5348160, - 5346880, - 5361264, - 5348304, - 5348320 + 5374336, + 5349200, + 5375056, + 5350640, + 5350656, + 5349376, + 5363760, + 5350800, + 5350816 ], "bases": [ { @@ -27266,14 +27250,14 @@ }, { "type_name": "CNetMessagePB<15, CNETMsg_DebugOverlay, (SignonGroup_t)16, (NetChannelBufType_t)1, false>", - "vtable_address": 9619856, + "vtable_address": 9623056, "methods": [ - 5984432, - 5984704, - 5346608, - 5346608, - 5966272, - 5996960 + 5986928, + 5987200, + 5349104, + 5349104, + 5968768, + 5999456 ], "bases": [ { @@ -27327,26 +27311,26 @@ }, { "type_name": "CNetMessagePB<15, CNETMsg_DebugOverlay, (SignonGroup_t)16, (NetChannelBufType_t)1, false>", - "vtable_address": 9619920, + "vtable_address": 9623120, "methods": [ - 5984992, - 5985264, - 3320958, - 4819440, - 4911792, - 4773216, - 3323118, - 3319950, - 4901536, - 4731504, - 4920000, - 4730112, - 4900416, - 3319860, - 3320126, - 4773392, - 4900304, - 4891312 + 5987488, + 5987760, + 3323326, + 4821872, + 4914224, + 4775648, + 3325486, + 3322318, + 4903968, + 4733856, + 4922432, + 4732480, + 4902848, + 3322228, + 3322494, + 4775824, + 4902736, + 4893744 ], "bases": [ { @@ -27400,17 +27384,17 @@ }, { "type_name": "CNetMessagePB<15, CNETMsg_DebugOverlay, (SignonGroup_t)16, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611328, + "vtable_address": 9614528, "methods": [ - 5940032, - 5919984, - 5962512, - 5349488, - 5922816, - 5346880, - 5925440, - 5922960, - 5922976 + 5942528, + 5922480, + 5965008, + 5351984, + 5925312, + 5349376, + 5927936, + 5925456, + 5925472 ], "bases": [ { @@ -27432,14 +27416,14 @@ }, { "type_name": "CNetMessagePB<16, CBidirMsg_RebroadcastGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 9594720, + "vtable_address": 9597920, "methods": [ - 5339584, - 5339728, - 5346608, - 5346608, - 5346912, - 5362496 + 5342080, + 5342224, + 5349104, + 5349104, + 5349408, + 5364992 ], "bases": [ { @@ -27493,26 +27477,26 @@ }, { "type_name": "CNetMessagePB<16, CBidirMsg_RebroadcastGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 9594784, - "methods": [ - 5339872, - 5340000, - 3320958, - 4903104, - 5103200, - 4773216, - 3323118, - 3319950, - 5076048, - 4731504, - 5087680, - 4730112, - 5070304, - 3319860, - 3320126, - 4773392, - 5074608, - 5068688 + "vtable_address": 9597984, + "methods": [ + 5342368, + 5342496, + 3323326, + 4905536, + 5105728, + 4775648, + 3325486, + 3322318, + 5078576, + 4733856, + 5090208, + 4732480, + 5072832, + 3322228, + 3322494, + 4775824, + 5077136, + 5071216 ], "bases": [ { @@ -27566,17 +27550,17 @@ }, { "type_name": "CNetMessagePB<16, CBidirMsg_RebroadcastGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 9589744, + "vtable_address": 9592944, "methods": [ - 5369936, - 5346992, - 5370752, - 5346720, - 5347008, - 5346880, - 5361024, - 4773136, - 5347152 + 5372432, + 5349488, + 5373248, + 5349216, + 5349504, + 5349376, + 5363520, + 4775568, + 5349648 ], "bases": [ { @@ -27598,14 +27582,14 @@ }, { "type_name": "CNetMessagePB<17, CBidirMsg_RebroadcastSource, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 9594072, + "vtable_address": 9597272, "methods": [ - 5340144, - 5340288, - 5346608, - 5346608, - 5346624, - 5362272 + 5342640, + 5342784, + 5349104, + 5349104, + 5349120, + 5364768 ], "bases": [ { @@ -27659,26 +27643,26 @@ }, { "type_name": "CNetMessagePB<17, CBidirMsg_RebroadcastSource, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 9594136, - "methods": [ - 5340432, - 5340560, - 3320958, - 4903120, - 5103264, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 5088512, - 4730112, - 5070848, - 3319860, - 3320126, - 4773392, - 5074640, - 5068704 + "vtable_address": 9597336, + "methods": [ + 5342928, + 5343056, + 3323326, + 4905552, + 5105792, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 5091040, + 4732480, + 5073376, + 3322228, + 3322494, + 4775824, + 5077168, + 5071232 ], "bases": [ { @@ -27732,17 +27716,17 @@ }, { "type_name": "CNetMessagePB<17, CBidirMsg_RebroadcastSource, (SignonGroup_t)5, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 9589832, + "vtable_address": 9593032, "methods": [ - 5368016, - 5346704, - 5368816, - 5346720, - 5346736, - 5346880, - 5360928, - 4773136, - 5346896 + 5370512, + 5349200, + 5371312, + 5349216, + 5349232, + 5349376, + 5363424, + 4775568, + 5349392 ], "bases": [ { @@ -27764,14 +27748,14 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>", - "vtable_address": 9619632, + "vtable_address": 9622832, "methods": [ - 5985552, - 5985712, - 5346608, - 5346608, - 5966352, - 5997856 + 5988048, + 5988208, + 5349104, + 5349104, + 5968848, + 6000352 ], "bases": [ { @@ -27825,26 +27809,26 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>", - "vtable_address": 9619696, - "methods": [ - 5985872, - 5986032, - 3320958, - 4903136, - 5103312, - 5068736, - 3323118, - 3319950, - 5076160, - 4731504, - 5088992, - 4730112, - 5072416, - 3319860, - 3320126, - 4773392, - 5074672, - 5068720 + "vtable_address": 9622896, + "methods": [ + 5988368, + 5988528, + 3323326, + 4905568, + 5105840, + 5071264, + 3325486, + 3322318, + 5078688, + 4733856, + 5091520, + 4732480, + 5074944, + 3322228, + 3322494, + 4775824, + 5077200, + 5071248 ], "bases": [ { @@ -27898,17 +27882,17 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 9613704, + "vtable_address": 9616904, "methods": [ - 5940768, - 5346992, - 5963584, - 5880000, - 5922992, - 5349648, - 5925568, - 5923136, - 5923152 + 5943264, + 5349488, + 5966080, + 5882496, + 5925488, + 5352144, + 5928064, + 5925632, + 5925648 ], "bases": [ { @@ -27930,14 +27914,14 @@ }, { "type_name": "CNetMessagePB<20, CCLCMsg_ClientInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9630360, + "vtable_address": 9633560, "methods": [ - 6106560, - 6106720, - 5346608, - 5346608, - 6087728, - 6110336 + 6109120, + 6109280, + 5349104, + 5349104, + 6090288, + 6112896 ], "bases": [ { @@ -27991,26 +27975,26 @@ }, { "type_name": "CNetMessagePB<20, CCLCMsg_ClientInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9630424, - "methods": [ - 6106880, - 6107040, - 3320958, - 4902016, - 4912144, - 4773216, - 3323118, - 3319950, - 4898800, - 4731504, - 4916560, - 4730112, - 4897216, - 3319860, - 3320126, - 4773392, - 4900336, - 4891344 + "vtable_address": 9633624, + "methods": [ + 6109440, + 6109600, + 3323326, + 4904448, + 4914576, + 4775648, + 3325486, + 3322318, + 4901232, + 4733856, + 4918992, + 4732480, + 4899648, + 3322228, + 3322494, + 4775824, + 4902768, + 4893776 ], "bases": [ { @@ -28064,17 +28048,17 @@ }, { "type_name": "CNetMessagePB<20, CCLCMsg_ClientInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9624704, - "methods": [ - 6069696, - 5346992, - 6086000, - 5349280, - 6044560, - 5346880, - 6052784, - 6044704, - 6044720 + "vtable_address": 9627904, + "methods": [ + 6072256, + 5349488, + 6088560, + 5351776, + 6047088, + 5349376, + 6055344, + 6047232, + 6047248 ], "bases": [ { @@ -28096,14 +28080,14 @@ }, { "type_name": "CNetMessagePB<21, CCLCMsg_Move, (SignonGroup_t)8, (NetChannelBufType_t)0, false>", - "vtable_address": 9630584, + "vtable_address": 9633784, "methods": [ - 6105920, - 6106080, - 5346608, - 5346608, - 6087648, - 6110048 + 6108480, + 6108640, + 5349104, + 5349104, + 6090208, + 6112608 ], "bases": [ { @@ -28157,26 +28141,26 @@ }, { "type_name": "CNetMessagePB<21, CCLCMsg_Move, (SignonGroup_t)8, (NetChannelBufType_t)0, false>", - "vtable_address": 9630648, - "methods": [ - 6106240, - 6106400, - 3320958, - 4902032, - 4912432, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 4917408, - 4730112, - 4897792, - 3319860, - 3320126, - 4773392, - 4900368, - 4891360 + "vtable_address": 9633848, + "methods": [ + 6108800, + 6108960, + 3323326, + 4904464, + 4914864, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 4919840, + 4732480, + 4900224, + 3322228, + 3322494, + 4775824, + 4902800, + 4893792 ], "bases": [ { @@ -28230,17 +28214,17 @@ }, { "type_name": "CNetMessagePB<21, CCLCMsg_Move, (SignonGroup_t)8, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 9624792, + "vtable_address": 9627992, "methods": [ - 6068992, - 5348336, - 6084912, - 6044368, - 6044384, - 5349648, - 6052672, - 6044528, - 6044544 + 6071552, + 5350832, + 6087472, + 6046896, + 6046912, + 5352144, + 6055232, + 6047056, + 6047072 ], "bases": [ { @@ -28262,14 +28246,14 @@ }, { "type_name": "CNetMessagePB<22, CCLCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 9630808, + "vtable_address": 9634008, "methods": [ - 6104272, - 6104688, - 5346608, - 5346608, - 6087568, - 6111728 + 6106832, + 6107248, + 5349104, + 5349104, + 6090128, + 6114288 ], "bases": [ { @@ -28323,26 +28307,26 @@ }, { "type_name": "CNetMessagePB<22, CCLCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 9630872, - "methods": [ - 6105104, - 6105504, - 3320958, - 4902064, - 4939664, - 4773216, - 3323118, - 3319950, - 4937536, - 4731504, - 4943984, - 4730112, - 4938144, - 3319860, - 3320126, - 4773392, - 4937696, - 4926624 + "vtable_address": 9634072, + "methods": [ + 6107664, + 6108064, + 3323326, + 4904496, + 4942096, + 4775648, + 3325486, + 3322318, + 4939968, + 4733856, + 4946416, + 4732480, + 4940576, + 3322228, + 3322494, + 4775824, + 4940128, + 4929056 ], "bases": [ { @@ -28396,17 +28380,17 @@ }, { "type_name": "CNetMessagePB<22, CCLCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 9624880, + "vtable_address": 9628080, "methods": [ - 6068304, - 5346992, - 6083840, - 5920912, - 6044192, - 5349648, - 6052576, - 6044336, - 6044352 + 6070864, + 5349488, + 6086400, + 5923408, + 6046720, + 5352144, + 6055136, + 6046864, + 6046880 ], "bases": [ { @@ -28428,14 +28412,14 @@ }, { "type_name": "CNetMessagePB<23, CCLCMsg_BaselineAck, (SignonGroup_t)16, (NetChannelBufType_t)1, false>", - "vtable_address": 9631032, + "vtable_address": 9634232, "methods": [ - 6103712, - 6103856, - 5346608, - 5346608, - 6087488, - 6109824 + 6106272, + 6106416, + 5349104, + 5349104, + 6090048, + 6112384 ], "bases": [ { @@ -28489,26 +28473,26 @@ }, { "type_name": "CNetMessagePB<23, CCLCMsg_BaselineAck, (SignonGroup_t)16, (NetChannelBufType_t)1, false>", - "vtable_address": 9631096, - "methods": [ - 6104000, - 6104128, - 3320958, - 4902080, - 4938832, - 4773216, - 3323118, - 3319950, - 4936880, - 4731504, - 4944592, - 4730112, - 4926848, - 3319860, - 3320126, - 4773392, - 4937728, - 4926640 + "vtable_address": 9634296, + "methods": [ + 6106560, + 6106688, + 3323326, + 4904512, + 4941264, + 4775648, + 3325486, + 3322318, + 4939312, + 4733856, + 4947024, + 4732480, + 4929280, + 3322228, + 3322494, + 4775824, + 4940160, + 4929072 ], "bases": [ { @@ -28562,17 +28546,17 @@ }, { "type_name": "CNetMessagePB<23, CCLCMsg_BaselineAck, (SignonGroup_t)16, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9624968, + "vtable_address": 9628168, "methods": [ - 6067552, - 5346704, - 6082768, - 5349488, - 6044016, - 5346880, - 6052480, - 6044160, - 6044176 + 6070112, + 5349200, + 6085328, + 5351984, + 6046544, + 5349376, + 6055040, + 6046688, + 6046704 ], "bases": [ { @@ -28594,14 +28578,14 @@ }, { "type_name": "CNetMessagePB<25, CCLCMsg_RespondCvarValue, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9631256, + "vtable_address": 9634456, "methods": [ - 6103040, - 6103200, - 5346608, - 5346608, - 6087408, - 6109456 + 6105600, + 6105760, + 5349104, + 5349104, + 6089968, + 6112016 ], "bases": [ { @@ -28655,26 +28639,26 @@ }, { "type_name": "CNetMessagePB<25, CCLCMsg_RespondCvarValue, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9631320, - "methods": [ - 6103376, - 6103536, - 3320958, - 4902112, - 4940064, - 4773216, - 3323118, - 3319950, - 4936960, - 4731504, - 4945696, - 4730112, - 4929632, - 3319860, - 3320126, - 4773392, - 4937792, - 4926672 + "vtable_address": 9634520, + "methods": [ + 6105936, + 6106096, + 3323326, + 4904544, + 4942496, + 4775648, + 3325486, + 3322318, + 4939392, + 4733856, + 4948128, + 4732480, + 4932064, + 3322228, + 3322494, + 4775824, + 4940224, + 4929104 ], "bases": [ { @@ -28728,17 +28712,17 @@ }, { "type_name": "CNetMessagePB<25, CCLCMsg_RespondCvarValue, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625056, + "vtable_address": 9628256, "methods": [ - 6066848, - 5346992, - 6081680, - 5880000, - 6043840, - 5346880, - 6052368, - 6043984, - 6044000 + 6069408, + 5349488, + 6084240, + 5882496, + 6046368, + 5349376, + 6054928, + 6046512, + 6046528 ], "bases": [ { @@ -28760,14 +28744,14 @@ }, { "type_name": "CNetMessagePB<27, CCLCMsg_LoadingProgress, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9631480, + "vtable_address": 9634680, "methods": [ - 6102480, - 6102624, - 5346608, - 5346608, - 6087328, - 6109232 + 6105040, + 6105184, + 5349104, + 5349104, + 6089888, + 6111792 ], "bases": [ { @@ -28821,26 +28805,26 @@ }, { "type_name": "CNetMessagePB<27, CCLCMsg_LoadingProgress, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9631544, - "methods": [ - 6102768, - 6102896, - 3320958, - 4902128, - 4938928, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 4946432, - 4730112, - 4927392, - 3319860, - 3320126, - 4773392, - 4937824, - 4926688 + "vtable_address": 9634744, + "methods": [ + 6105328, + 6105456, + 3323326, + 4904560, + 4941360, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 4948864, + 4732480, + 4929824, + 3322228, + 3322494, + 4775824, + 4940256, + 4929120 ], "bases": [ { @@ -28894,17 +28878,17 @@ }, { "type_name": "CNetMessagePB<27, CCLCMsg_LoadingProgress, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625320, + "vtable_address": 9628520, "methods": [ - 6066080, - 5346704, - 6080592, - 5349280, - 6043664, - 5346880, - 6052272, - 6043808, - 6043824 + 6068640, + 5349200, + 6083152, + 5351776, + 6046192, + 5349376, + 6054832, + 6046336, + 6046352 ], "bases": [ { @@ -28926,14 +28910,14 @@ }, { "type_name": "CNetMessagePB<28, CCLCMsg_SplitPlayerConnect, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9632600, + "vtable_address": 9635800, "methods": [ - 6053568, - 6053728, - 5346608, - 5346608, - 6044976, - 6057440 + 6056128, + 6056288, + 5349104, + 5349104, + 6047504, + 6060000 ], "bases": [ { @@ -28987,26 +28971,26 @@ }, { "type_name": "CNetMessagePB<28, CCLCMsg_SplitPlayerConnect, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9632664, - "methods": [ - 6053888, - 6054048, - 3320958, - 4902144, - 4940560, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4946912, - 4730112, - 4930208, - 3319860, - 3320126, - 4773392, - 4937856, - 4926704 + "vtable_address": 9635864, + "methods": [ + 6056448, + 6056608, + 3323326, + 4904576, + 4942992, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4949344, + 4732480, + 4932640, + 3322228, + 3322494, + 4775824, + 4940288, + 4929136 ], "bases": [ { @@ -29060,17 +29044,17 @@ }, { "type_name": "CNetMessagePB<28, CCLCMsg_SplitPlayerConnect, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625144, + "vtable_address": 9628344, "methods": [ - 6061632, - 5346704, - 6073968, - 5349280, - 6042528, - 5346880, - 6051664, - 6042672, - 6042688 + 6064192, + 5349200, + 6076528, + 5351776, + 6045056, + 5349376, + 6054224, + 6045200, + 6045216 ], "bases": [ { @@ -29092,14 +29076,14 @@ }, { "type_name": "CNetMessagePB<30, CCLCMsg_SplitPlayerDisconnect, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9631704, + "vtable_address": 9634904, "methods": [ - 6101920, - 6102064, - 5346608, - 5346608, - 6087248, - 6109008 + 6104480, + 6104624, + 5349104, + 5349104, + 6089808, + 6111568 ], "bases": [ { @@ -29153,26 +29137,26 @@ }, { "type_name": "CNetMessagePB<30, CCLCMsg_SplitPlayerDisconnect, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9631768, - "methods": [ - 6102208, - 6102336, - 3320958, - 4902160, - 4938976, - 4773216, - 3323118, - 3319950, - 4858432, - 4731504, - 4947312, - 4730112, - 4927616, - 3319860, - 3320126, - 4773392, - 4937888, - 4926720 + "vtable_address": 9634968, + "methods": [ + 6104768, + 6104896, + 3323326, + 4904592, + 4941408, + 4775648, + 3325486, + 3322318, + 4860864, + 4733856, + 4949744, + 4732480, + 4930048, + 3322228, + 3322494, + 4775824, + 4940320, + 4929152 ], "bases": [ { @@ -29226,17 +29210,17 @@ }, { "type_name": "CNetMessagePB<30, CCLCMsg_SplitPlayerDisconnect, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625232, + "vtable_address": 9628432, "methods": [ - 6065312, - 5346704, - 6079504, - 5349280, - 6043488, - 5346880, - 6052176, - 6043632, - 6043648 + 6067872, + 5349200, + 6082064, + 5351776, + 6046016, + 5349376, + 6054736, + 6046160, + 6046176 ], "bases": [ { @@ -29258,14 +29242,14 @@ }, { "type_name": "CNetMessagePB<31, CCLCMsg_ServerStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9631928, + "vtable_address": 9635128, "methods": [ - 6101360, - 6101504, - 5346608, - 5346608, - 6087168, - 6108784 + 6103920, + 6104064, + 5349104, + 5349104, + 6089728, + 6111344 ], "bases": [ { @@ -29319,26 +29303,26 @@ }, { "type_name": "CNetMessagePB<31, CCLCMsg_ServerStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9631992, - "methods": [ - 6101648, - 6101776, - 3320958, - 4902176, - 4939024, - 4773216, - 3323118, - 3319950, - 4935600, - 4731504, - 4947792, - 4730112, - 4927824, - 3319860, - 3320126, - 4773392, - 4937920, - 4926736 + "vtable_address": 9635192, + "methods": [ + 6104208, + 6104336, + 3323326, + 4904608, + 4941456, + 4775648, + 3325486, + 3322318, + 4938032, + 4733856, + 4950224, + 4732480, + 4930256, + 3322228, + 3322494, + 4775824, + 4940352, + 4929168 ], "bases": [ { @@ -29392,17 +29376,17 @@ }, { "type_name": "CNetMessagePB<31, CCLCMsg_ServerStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625584, + "vtable_address": 9628784, "methods": [ - 6064544, - 5346704, - 6078416, - 5880000, - 6043312, - 5346880, - 6052080, - 6043456, - 6043472 + 6067104, + 5349200, + 6080976, + 5882496, + 6045840, + 5349376, + 6054640, + 6045984, + 6046000 ], "bases": [ { @@ -29424,14 +29408,14 @@ }, { "type_name": "CNetMessagePB<33, CCLCMsg_RequestPause, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9627096, + "vtable_address": 9630296, "methods": [ - 6029600, - 6029744, - 5346608, - 5346608, - 6043056, - 6055248 + 6032096, + 6032240, + 5349104, + 5349104, + 6045584, + 6057808 ], "bases": [ { @@ -29485,26 +29469,26 @@ }, { "type_name": "CNetMessagePB<33, CCLCMsg_RequestPause, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9627160, - "methods": [ - 6029888, - 6030016, - 3320958, - 4902192, - 4939072, - 4773216, - 3323118, - 3319950, - 4937136, - 4731504, - 4948272, - 4730112, - 4927936, - 3319860, - 3320126, - 4773392, - 4937952, - 4926752 + "vtable_address": 9630360, + "methods": [ + 6032384, + 6032512, + 3323326, + 4904624, + 4941504, + 4775648, + 3325486, + 3322318, + 4939568, + 4733856, + 4950704, + 4732480, + 4930368, + 3322228, + 3322494, + 4775824, + 4940384, + 4929184 ], "bases": [ { @@ -29558,17 +29542,17 @@ }, { "type_name": "CNetMessagePB<33, CCLCMsg_RequestPause, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625672, + "vtable_address": 9628872, "methods": [ - 6063792, - 5346704, - 6077344, - 5880000, - 6043136, - 5346880, - 6051984, - 6043280, - 6043296 + 6066352, + 5349200, + 6079904, + 5882496, + 6045664, + 5349376, + 6054544, + 6045808, + 6045824 ], "bases": [ { @@ -29590,14 +29574,14 @@ }, { "type_name": "CNetMessagePB<34, CBaseCmdKeyValues, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9590912, + "vtable_address": 9594112, "methods": [ - 5337584, - 5337776, - 5347248, - 5347248, - 5347344, - 5366752 + 5340080, + 5340272, + 5349744, + 5349744, + 5349840, + 5369248 ], "bases": [ { @@ -29662,26 +29646,26 @@ }, { "type_name": "CNetMessagePB<34, CBaseCmdKeyValues, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9590976, - "methods": [ - 5337984, - 5338176, - 3320958, - 4902208, - 4940816, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4948960, - 4730112, - 4930384, - 3319860, - 3320126, - 4773392, - 4937984, - 4926768 + "vtable_address": 9594176, + "methods": [ + 5340480, + 5340672, + 3323326, + 4904640, + 4943248, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4951392, + 4732480, + 4932816, + 3322228, + 3322494, + 4775824, + 4940416, + 4929200 ], "bases": [ { @@ -29746,7 +29730,7 @@ }, { "type_name": "CNetMessagePB<34, CBaseCmdKeyValues, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9666112, + "vtable_address": 9669920, "methods": [], "bases": [ { @@ -29805,23 +29789,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1981200 + "offset_to_top": 1982256 } } }, { "type_name": "CNetMessagePB<34, CBaseCmdKeyValues, (SignonGroup_t)9, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9597336, + "vtable_address": 9600536, "methods": [ - 5421520, - 5348336, - 5422416, - 5349696, - 5390048, - 5346880, - 5404560, - 5390192, - 5390208 + 5424016, + 5350832, + 5424912, + 5352192, + 5392544, + 5349376, + 5407056, + 5392688, + 5392704 ], "bases": [ { @@ -29843,14 +29827,14 @@ }, { "type_name": "CNetMessagePB<35, CCLCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9632152, + "vtable_address": 9635352, "methods": [ - 6054768, - 6054928, - 5346608, - 5346608, - 6087088, - 6108512 + 6057328, + 6057488, + 5349104, + 5349104, + 6089648, + 6111072 ], "bases": [ { @@ -29904,26 +29888,26 @@ }, { "type_name": "CNetMessagePB<35, CCLCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9632216, - "methods": [ - 6055088, - 6101200, - 3320958, - 4902224, - 4941072, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 4949360, - 4730112, - 4930576, - 3319860, - 3320126, - 4773392, - 4938016, - 4926784 + "vtable_address": 9635416, + "methods": [ + 6057648, + 6103760, + 3323326, + 4904656, + 4943504, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 4951792, + 4732480, + 4933008, + 3322228, + 3322494, + 4775824, + 4940448, + 4929216 ], "bases": [ { @@ -29977,17 +29961,17 @@ }, { "type_name": "CNetMessagePB<35, CCLCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625408, + "vtable_address": 9628608, "methods": [ - 6063104, - 5346704, - 6076256, - 5880000, - 6042880, - 5346880, - 6051872, - 6043024, - 6043040 + 6065664, + 5349200, + 6078816, + 5882496, + 6045408, + 5349376, + 6054432, + 6045552, + 6045568 ], "bases": [ { @@ -30009,14 +29993,14 @@ }, { "type_name": "CNetMessagePB<36, CCLCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9632376, + "vtable_address": 9635576, "methods": [ - 6054208, - 6054352, - 5346608, - 5346608, - 6045056, - 6057712 + 6056768, + 6056912, + 5349104, + 5349104, + 6047584, + 6060272 ], "bases": [ { @@ -30070,26 +30054,26 @@ }, { "type_name": "CNetMessagePB<36, CCLCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9632440, - "methods": [ - 6054496, - 6054624, - 3320958, - 4903216, - 5114240, - 4773216, - 3323118, - 3319950, - 5109648, - 4731504, - 5118224, - 4730112, - 5108512, - 3319860, - 3320126, - 4773392, - 5111232, - 5104224 + "vtable_address": 9635640, + "methods": [ + 6057056, + 6057184, + 3323326, + 4905648, + 5116768, + 4775648, + 3325486, + 3322318, + 5112176, + 4733856, + 5120752, + 4732480, + 5111040, + 3322228, + 3322494, + 4775824, + 5113760, + 5106752 ], "bases": [ { @@ -30143,17 +30127,17 @@ }, { "type_name": "CNetMessagePB<36, CCLCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625760, + "vtable_address": 9628960, "methods": [ - 6062320, - 5346992, - 6075056, - 5349072, - 6042704, - 5346880, - 6051776, - 6042848, - 6042864 + 6064880, + 5349488, + 6077616, + 5351568, + 6045232, + 5349376, + 6054336, + 6045376, + 6045392 ], "bases": [ { @@ -30175,14 +30159,14 @@ }, { "type_name": "CNetMessagePB<37, CCLCMsg_Diagnostic, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9632824, + "vtable_address": 9636024, "methods": [ - 6052896, - 6053056, - 5346608, - 5346608, - 6044896, - 6055472 + 6055456, + 6055616, + 5349104, + 5349104, + 6047424, + 6058032 ], "bases": [ { @@ -30236,26 +30220,26 @@ }, { "type_name": "CNetMessagePB<37, CCLCMsg_Diagnostic, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9632888, - "methods": [ - 6053232, - 6053392, - 3320958, - 4902336, - 4993648, - 4773216, - 3323118, - 3319950, - 4968688, - 4731504, - 4976656, - 4730112, - 4965120, - 3319860, - 3320126, - 4773392, - 4963488, - 4961840 + "vtable_address": 9636088, + "methods": [ + 6055792, + 6055952, + 3323326, + 4904768, + 4996176, + 4775648, + 3325486, + 3322318, + 4971120, + 4733856, + 4979184, + 4732480, + 4967552, + 3322228, + 3322494, + 4775824, + 4965920, + 4964272 ], "bases": [ { @@ -30309,17 +30293,17 @@ }, { "type_name": "CNetMessagePB<37, CCLCMsg_Diagnostic, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625496, + "vtable_address": 9628696, "methods": [ - 6060784, - 5349264, - 6072736, - 5880000, - 6042352, - 5346880, - 6051568, - 6042496, - 6042512 + 6063344, + 5351760, + 6075296, + 5882496, + 6044880, + 5349376, + 6054128, + 6045024, + 6045040 ], "bases": [ { @@ -30341,14 +30325,14 @@ }, { "type_name": "CNetMessagePB<4, CNETMsg_Tick, (SignonGroup_t)16, (NetChannelBufType_t)0, false>", - "vtable_address": 9592640, + "vtable_address": 9595840, "methods": [ - 5332864, - 5333024, - 5346608, - 5346608, - 5347904, - 5364400 + 5335360, + 5335520, + 5349104, + 5349104, + 5350400, + 5366896 ], "bases": [ { @@ -30402,26 +30386,26 @@ }, { "type_name": "CNetMessagePB<4, CNETMsg_Tick, (SignonGroup_t)16, (NetChannelBufType_t)0, false>", - "vtable_address": 9592704, + "vtable_address": 9595904, "methods": [ - 5333184, - 5333344, - 3320958, - 4819216, - 4876576, - 4773216, - 3323118, - 3319950, - 4863008, - 4731504, - 4882928, - 4730112, - 4859808, - 3319860, - 3320126, - 4773392, - 4858704, - 4857008 + 5335680, + 5335840, + 3323326, + 4821648, + 4879008, + 4775648, + 3325486, + 3322318, + 4865440, + 4733856, + 4885360, + 4732480, + 4862240, + 3322228, + 3322494, + 4775824, + 4861136, + 4859440 ], "bases": [ { @@ -30475,17 +30459,17 @@ }, { "type_name": "CNetMessagePB<4, CNETMsg_Tick, (SignonGroup_t)16, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 9596552, + "vtable_address": 9599752, "methods": [ - 5385264, - 5349472, - 5386016, - 5349488, - 5349504, - 5349648, - 5362048, - 5349664, - 5349680 + 5387760, + 5351968, + 5388512, + 5351984, + 5352000, + 5352144, + 5364544, + 5352160, + 5352176 ], "bases": [ { @@ -30507,14 +30491,14 @@ }, { "type_name": "CNetMessagePB<40, CSVCMsg_ServerInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9620080, + "vtable_address": 9623280, "methods": [ - 5983408, - 5983664, - 5346608, - 5346608, - 5966192, - 5995616 + 5985904, + 5986160, + 5349104, + 5349104, + 5968688, + 5998112 ], "bases": [ { @@ -30568,26 +30552,26 @@ }, { "type_name": "CNetMessagePB<40, CSVCMsg_ServerInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9620144, - "methods": [ - 5983936, - 5984176, - 3320958, - 4902384, - 4994704, - 4773216, - 3323118, - 3319950, - 4969760, - 4731504, - 4983168, - 4730112, - 4966720, - 3319860, - 3320126, - 4773392, - 4963584, - 4961888 + "vtable_address": 9623344, + "methods": [ + 5986432, + 5986672, + 3323326, + 4904816, + 4997232, + 4775648, + 3325486, + 3322318, + 4972192, + 4733856, + 4985696, + 4732480, + 4969152, + 3322228, + 3322494, + 4775824, + 4966016, + 4964320 ], "bases": [ { @@ -30641,17 +30625,17 @@ }, { "type_name": "CNetMessagePB<40, CSVCMsg_ServerInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611504, - "methods": [ - 5939280, - 5922624, - 5961408, - 5349280, - 5922640, - 5346880, - 5925312, - 5922784, - 5922800 + "vtable_address": 9614704, + "methods": [ + 5941776, + 5925120, + 5963904, + 5351776, + 5925136, + 5349376, + 5927808, + 5925280, + 5925296 ], "bases": [ { @@ -30673,14 +30657,14 @@ }, { "type_name": "CNetMessagePB<41, CSVCMsg_FlattenedSerializerWrapper, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9616472, + "vtable_address": 9619672, "methods": [ - 5897792, - 5898016, - 5347248, - 5347248, - 5922176, - 5925680 + 5900288, + 5900512, + 5349744, + 5349744, + 5924672, + 5928176 ], "bases": [ { @@ -30745,26 +30729,26 @@ }, { "type_name": "CNetMessagePB<41, CSVCMsg_FlattenedSerializerWrapper, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9616536, - "methods": [ - 5898256, - 5898464, - 3320958, - 4903072, - 5102912, - 4773216, - 3323118, - 3319950, - 5079168, - 4892576, - 5086640, - 4730112, - 5078816, - 3319860, - 3320126, - 5078800, - 5074544, - 5068656 + "vtable_address": 9619736, + "methods": [ + 5900752, + 5900960, + 3323326, + 4905504, + 5105440, + 4775648, + 3325486, + 3322318, + 5081696, + 4895008, + 5089168, + 4732480, + 5081344, + 3322228, + 3322494, + 5081328, + 5077072, + 5071184 ], "bases": [ { @@ -30829,17 +30813,17 @@ }, { "type_name": "CNetMessagePB<41, CSVCMsg_FlattenedSerializerWrapper, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611680, + "vtable_address": 9614880, "methods": [ - 5937744, - 5922256, - 5959152, - 5349280, - 5922272, - 5346880, - 5925040, - 5922416, - 5922432 + 5940240, + 5924752, + 5961648, + 5351776, + 5924768, + 5349376, + 5927536, + 5924912, + 5924928 ], "bases": [ { @@ -30861,14 +30845,14 @@ }, { "type_name": "CNetMessagePB<42, CSVCMsg_ClassInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9620304, + "vtable_address": 9623504, "methods": [ - 5982672, - 5982848, - 5346608, - 5346608, - 5966112, - 5995248 + 5985168, + 5985344, + 5349104, + 5349104, + 5968608, + 5997744 ], "bases": [ { @@ -30922,26 +30906,26 @@ }, { "type_name": "CNetMessagePB<42, CSVCMsg_ClassInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9620368, - "methods": [ - 5983040, - 5983216, - 3320958, - 4902416, - 4995680, - 4773216, - 3323118, - 3319950, - 5001728, - 4731504, - 5007056, - 4730112, - 4996400, - 3319860, - 3320126, - 4773392, - 5003216, - 4996048 + "vtable_address": 9623568, + "methods": [ + 5985536, + 5985712, + 3323326, + 4904848, + 4998208, + 4775648, + 3325486, + 3322318, + 5004256, + 4733856, + 5009584, + 4732480, + 4998928, + 3322228, + 3322494, + 4775824, + 5005744, + 4998576 ], "bases": [ { @@ -30995,17 +30979,17 @@ }, { "type_name": "CNetMessagePB<42, CSVCMsg_ClassInfo, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611592, + "vtable_address": 9614792, "methods": [ - 5938560, - 5879808, - 5960336, - 5349280, - 5922448, - 5346880, - 5925216, - 5922592, - 5922608 + 5941056, + 5882304, + 5962832, + 5351776, + 5924944, + 5349376, + 5927712, + 5925088, + 5925104 ], "bases": [ { @@ -31027,14 +31011,14 @@ }, { "type_name": "CNetMessagePB<43, CSVCMsg_SetPause, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9620528, + "vtable_address": 9623728, "methods": [ - 5982112, - 5982256, - 5346608, - 5346608, - 5966032, - 5995024 + 5984608, + 5984752, + 5349104, + 5349104, + 5968528, + 5997520 ], "bases": [ { @@ -31088,26 +31072,26 @@ }, { "type_name": "CNetMessagePB<43, CSVCMsg_SetPause, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9620592, - "methods": [ - 5982400, - 5982528, - 3320958, - 4902432, - 5028672, - 4773216, - 3323118, - 3319950, - 4935600, - 4731504, - 5007712, - 4730112, - 4996576, - 3319860, - 3320126, - 4773392, - 5003248, - 4996064 + "vtable_address": 9623792, + "methods": [ + 5984896, + 5985024, + 3323326, + 4904864, + 5031200, + 4775648, + 3325486, + 3322318, + 4938032, + 4733856, + 5010240, + 4732480, + 4999104, + 3322228, + 3322494, + 4775824, + 5005776, + 4998592 ], "bases": [ { @@ -31161,7 +31145,7 @@ }, { "type_name": "CNetMessagePB<43, CSVCMsg_SetPause, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9649920, + "vtable_address": 9653136, "methods": [], "bases": [ { @@ -31209,23 +31193,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1975616 + "offset_to_top": 1975744 } } }, { "type_name": "CNetMessagePB<43, CSVCMsg_SetPause, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611768, - "methods": [ - 5937072, - 5346704, - 5958064, - 5880000, - 5922000, - 5346880, - 5924944, - 5922144, - 5922160 + "vtable_address": 9614968, + "methods": [ + 5939568, + 5349200, + 5960560, + 5882496, + 5924496, + 5349376, + 5927440, + 5924640, + 5924656 ], "bases": [ { @@ -31247,14 +31231,14 @@ }, { "type_name": "CNetMessagePB<44, CSVCMsg_CreateStringTable, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9620976, + "vtable_address": 9624176, "methods": [ - 5980800, - 5980960, - 5346608, - 5346608, - 5965872, - 5994352 + 5983296, + 5983456, + 5349104, + 5349104, + 5968368, + 5996848 ], "bases": [ { @@ -31308,26 +31292,26 @@ }, { "type_name": "CNetMessagePB<44, CSVCMsg_CreateStringTable, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9621040, - "methods": [ - 5981136, - 5981296, - 3320958, - 4902816, - 5056272, - 4773216, - 3323118, - 3319950, - 5042800, - 4731504, - 5064304, - 4730112, - 5039392, - 3319860, - 3320126, - 4773392, - 5043632, - 5032656 + "vtable_address": 9624240, + "methods": [ + 5983632, + 5983792, + 3323326, + 4905248, + 5058800, + 4775648, + 3325486, + 3322318, + 5045328, + 4733856, + 5066832, + 4732480, + 5041920, + 3322228, + 3322494, + 4775824, + 5046160, + 5035184 ], "bases": [ { @@ -31381,17 +31365,17 @@ }, { "type_name": "CNetMessagePB<44, CSVCMsg_CreateStringTable, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611944, - "methods": [ - 5935648, - 5920896, - 5955888, - 5349280, - 5921648, - 5346880, - 5924720, - 5921792, - 5921808 + "vtable_address": 9615144, + "methods": [ + 5938144, + 5923392, + 5958384, + 5351776, + 5924144, + 5349376, + 5927216, + 5924288, + 5924304 ], "bases": [ { @@ -31413,14 +31397,14 @@ }, { "type_name": "CNetMessagePB<45, CSVCMsg_UpdateStringTable, (SignonGroup_t)7, (NetChannelBufType_t)1, false>", - "vtable_address": 9621200, + "vtable_address": 9624400, "methods": [ - 5980160, - 5980320, - 5346608, - 5346608, - 5965792, - 5994048 + 5982656, + 5982816, + 5349104, + 5349104, + 5968288, + 5996544 ], "bases": [ { @@ -31474,26 +31458,26 @@ }, { "type_name": "CNetMessagePB<45, CSVCMsg_UpdateStringTable, (SignonGroup_t)7, (NetChannelBufType_t)1, false>", - "vtable_address": 9621264, - "methods": [ - 5980480, - 5980640, - 3320958, - 4902832, - 5056800, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5065216, - 4730112, - 5040672, - 3319860, - 3320126, - 4773392, - 5043664, - 5032672 + "vtable_address": 9624464, + "methods": [ + 5982976, + 5983136, + 3323326, + 4905264, + 5059328, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5067744, + 4732480, + 5043200, + 3322228, + 3322494, + 4775824, + 5046192, + 5035200 ], "bases": [ { @@ -31547,17 +31531,17 @@ }, { "type_name": "CNetMessagePB<45, CSVCMsg_UpdateStringTable, (SignonGroup_t)7, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612032, + "vtable_address": 9615232, "methods": [ - 5934944, - 5348336, - 5954800, - 5921456, - 5921472, - 5346880, - 5924608, - 5921616, - 5921632 + 5937440, + 5350832, + 5957296, + 5923952, + 5923968, + 5349376, + 5927104, + 5924112, + 5924128 ], "bases": [ { @@ -31579,14 +31563,14 @@ }, { "type_name": "CNetMessagePB<46, CSVCMsg_VoiceInit, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9621648, + "vtable_address": 9624848, "methods": [ - 5978880, - 5979040, - 5346608, - 5346608, - 5965632, - 5993472 + 5981376, + 5981536, + 5349104, + 5349104, + 5968128, + 5995968 ], "bases": [ { @@ -31640,26 +31624,26 @@ }, { "type_name": "CNetMessagePB<46, CSVCMsg_VoiceInit, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9621712, - "methods": [ - 5979200, - 5979360, - 3320958, - 4902448, - 5028720, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5008192, - 4730112, - 5003744, - 3319860, - 3320126, - 4773392, - 5003280, - 4996080 + "vtable_address": 9624912, + "methods": [ + 5981696, + 5981856, + 3323326, + 4904880, + 5031248, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5010720, + 4732480, + 5006272, + 3322228, + 3322494, + 4775824, + 5005808, + 4998608 ], "bases": [ { @@ -31711,73 +31695,19 @@ } } }, - { - "type_name": "CNetMessagePB<46, CSVCMsg_VoiceInit, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9677320, - "methods": [], - "bases": [ - { - "type_name": "CNetMessage", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "CSVCMsg_VoiceInit", - "details": { - "Itanium": { - "offset": 48, - "flags": 2, - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 1985744 - } - } - }, { "type_name": "CNetMessagePB<46, CSVCMsg_VoiceInit, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612120, + "vtable_address": 9615320, "methods": [ - 5933552, - 5348336, - 5952624, - 5349280, - 5921104, - 5346880, - 5924384, - 5921248, - 5921264 + 5936048, + 5350832, + 5955120, + 5351776, + 5923600, + 5349376, + 5926880, + 5923744, + 5923760 ], "bases": [ { @@ -31799,14 +31729,14 @@ }, { "type_name": "CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 9621872, + "vtable_address": 9625072, "methods": [ - 5970160, - 5978752, - 5346608, - 5346608, - 5965552, - 5999632 + 5972656, + 5981248, + 5349104, + 5349104, + 5968048, + 6002128 ], "bases": [ { @@ -31860,26 +31790,26 @@ }, { "type_name": "CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>", - "vtable_address": 9621936, - "methods": [ - 5967072, - 5978816, - 3320958, - 4902848, - 5057088, - 4773216, - 3323118, - 3319950, - 5044816, - 4731504, - 5065888, - 4730112, - 5033088, - 3319860, - 3320126, - 4773392, - 5043696, - 5032688 + "vtable_address": 9625136, + "methods": [ + 5969568, + 5981312, + 3323326, + 4905280, + 5059616, + 4775648, + 3325486, + 3322318, + 5047344, + 4733856, + 5068416, + 4732480, + 5035616, + 3322228, + 3322494, + 4775824, + 5046224, + 5035216 ], "bases": [ { @@ -31933,17 +31863,17 @@ }, { "type_name": "CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 9612208, - "methods": [ - 5932832, - 5920896, - 5951536, - 5920912, - 5920928, - 5349648, - 5924288, - 5921072, - 5921088 + "vtable_address": 9615408, + "methods": [ + 5935328, + 5923392, + 5954032, + 5923408, + 5923424, + 5352144, + 5926784, + 5923568, + 5923584 ], "bases": [ { @@ -31965,14 +31895,14 @@ }, { "type_name": "CNetMessagePB<48, CSVCMsg_Print, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9621424, + "vtable_address": 9624624, "methods": [ - 5979520, - 5979680, - 5346608, - 5346608, - 5965712, - 5993776 + 5982016, + 5982176, + 5349104, + 5349104, + 5968208, + 5996272 ], "bases": [ { @@ -32026,26 +31956,26 @@ }, { "type_name": "CNetMessagePB<48, CSVCMsg_Print, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9621488, - "methods": [ - 5979840, - 5980000, - 3320958, - 4902464, - 5029008, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5008880, - 4730112, - 5004240, - 3319860, - 3320126, - 4773392, - 5003312, - 4996096 + "vtable_address": 9624688, + "methods": [ + 5982336, + 5982496, + 3323326, + 4904896, + 5031536, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5011408, + 4732480, + 5006768, + 3322228, + 3322494, + 4775824, + 5005840, + 4998624 ], "bases": [ { @@ -32099,7 +32029,7 @@ }, { "type_name": "CNetMessagePB<48, CSVCMsg_Print, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9673160, + "vtable_address": 9676360, "methods": [], "bases": [ { @@ -32147,23 +32077,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1982720 + "offset_to_top": 1982880 } } }, { "type_name": "CNetMessagePB<48, CSVCMsg_Print, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611416, - "methods": [ - 5934256, - 5346704, - 5953712, - 5880000, - 5921280, - 5346880, - 5924496, - 5921424, - 5921440 + "vtable_address": 9614616, + "methods": [ + 5936752, + 5349200, + 5956208, + 5882496, + 5923776, + 5349376, + 5926992, + 5923920, + 5923936 ], "bases": [ { @@ -32185,14 +32115,14 @@ }, { "type_name": "CNetMessagePB<49, CSVCMsg_Sounds, (SignonGroup_t)4, (NetChannelBufType_t)1, false>", - "vtable_address": 9622320, + "vtable_address": 9625520, "methods": [ - 5977456, - 5977632, - 5346608, - 5346608, - 5965392, - 5992880 + 5979952, + 5980128, + 5349104, + 5349104, + 5967888, + 5995376 ], "bases": [ { @@ -32246,26 +32176,26 @@ }, { "type_name": "CNetMessagePB<49, CSVCMsg_Sounds, (SignonGroup_t)4, (NetChannelBufType_t)1, false>", - "vtable_address": 9622384, + "vtable_address": 9625584, "methods": [ - 5977824, - 5978000, - 3320958, - 4902496, - 5029392, - 4773216, - 3323118, - 3319950, - 5002608, - 4731504, - 5010672, - 4730112, - 4999152, - 3319860, - 3320126, - 4773392, - 5003376, - 4996128 + 5980320, + 5980496, + 3323326, + 4904928, + 5031920, + 4775648, + 3325486, + 3322318, + 5005136, + 4733856, + 5013200, + 4732480, + 5001680, + 3322228, + 3322494, + 4775824, + 5005904, + 4998656 ], "bases": [ { @@ -32319,17 +32249,17 @@ }, { "type_name": "CNetMessagePB<49, CSVCMsg_Sounds, (SignonGroup_t)4, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612296, - "methods": [ - 5931344, - 5879808, - 5949264, - 5920352, - 5920544, - 5346880, - 5924096, - 5920688, - 5920704 + "vtable_address": 9615496, + "methods": [ + 5933840, + 5882304, + 5951760, + 5922848, + 5923040, + 5349376, + 5926592, + 5923184, + 5923200 ], "bases": [ { @@ -32351,14 +32281,14 @@ }, { "type_name": "CNetMessagePB<5, CNETMsg_StringCmd, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9592864, + "vtable_address": 9596064, "methods": [ - 5332224, - 5332384, - 5346608, - 5346608, - 5347984, - 5364720 + 5334720, + 5334880, + 5349104, + 5349104, + 5350480, + 5367216 ], "bases": [ { @@ -32412,26 +32342,26 @@ }, { "type_name": "CNetMessagePB<5, CNETMsg_StringCmd, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9592928, - "methods": [ - 5332544, - 5332704, - 3320958, - 4819232, - 4876896, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 4883856, - 4730112, - 4861216, - 3319860, - 3320126, - 4773392, - 4858736, - 4857024 + "vtable_address": 9596128, + "methods": [ + 5335040, + 5335200, + 3323326, + 4821664, + 4879328, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 4886288, + 4732480, + 4863648, + 3322228, + 3322494, + 4775824, + 4861168, + 4859456 ], "bases": [ { @@ -32485,17 +32415,17 @@ }, { "type_name": "CNetMessagePB<5, CNETMsg_StringCmd, (SignonGroup_t)9, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9596440, + "vtable_address": 9599640, "methods": [ - 5387136, - 5348336, - 5387872, - 5349696, - 5349712, - 5346880, - 5362160, - 5349856, - 5349872 + 5389632, + 5350832, + 5390368, + 5352192, + 5352208, + 5349376, + 5364656, + 5352352, + 5352368 ], "bases": [ { @@ -32517,14 +32447,14 @@ }, { "type_name": "CNetMessagePB<50, CSVCMsg_SetView, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9622768, + "vtable_address": 9625968, "methods": [ - 5976336, - 5976480, - 5346608, - 5346608, - 5965232, - 5992432 + 5978832, + 5978976, + 5349104, + 5349104, + 5967728, + 5994928 ], "bases": [ { @@ -32578,26 +32508,26 @@ }, { "type_name": "CNetMessagePB<50, CSVCMsg_SetView, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9622832, - "methods": [ - 5976624, - 5976752, - 3320958, - 4902528, - 5029712, - 4773216, - 3323118, - 3319950, - 4936880, - 4731504, - 5012032, - 4730112, - 4999680, - 3319860, - 3320126, - 4773392, - 5003440, - 4996160 + "vtable_address": 9626032, + "methods": [ + 5979120, + 5979248, + 3323326, + 4904960, + 5032240, + 4775648, + 3325486, + 3322318, + 4939312, + 4733856, + 5014560, + 4732480, + 5002208, + 3322228, + 3322494, + 4775824, + 5005968, + 4998688 ], "bases": [ { @@ -32651,17 +32581,17 @@ }, { "type_name": "CNetMessagePB<50, CSVCMsg_SetView, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612472, - "methods": [ - 5929824, - 5346704, - 5946880, - 5880000, - 5920176, - 5346880, - 5923888, - 5920320, - 5920336 + "vtable_address": 9615672, + "methods": [ + 5932320, + 5349200, + 5949376, + 5882496, + 5922672, + 5349376, + 5926384, + 5922816, + 5922832 ], "bases": [ { @@ -32683,14 +32613,14 @@ }, { "type_name": "CNetMessagePB<51, CSVCMsg_ClearAllStringTables, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9620752, + "vtable_address": 9623952, "methods": [ - 5981472, - 5981632, - 5346608, - 5346608, - 5965952, - 5994736 + 5983968, + 5984128, + 5349104, + 5349104, + 5968448, + 5997232 ], "bases": [ { @@ -32744,26 +32674,26 @@ }, { "type_name": "CNetMessagePB<51, CSVCMsg_ClearAllStringTables, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9620816, - "methods": [ - 5981792, - 5981952, - 3320958, - 4903008, - 5102272, - 4773216, - 3323118, - 3319950, - 5075472, - 4731504, - 5083568, - 4730112, - 5072192, - 3319860, - 3320126, - 4773392, - 5074416, - 5068592 + "vtable_address": 9624016, + "methods": [ + 5984288, + 5984448, + 3323326, + 4905440, + 5104800, + 4775648, + 3325486, + 3322318, + 5078000, + 4733856, + 5086096, + 4732480, + 5074720, + 3322228, + 3322494, + 4775824, + 5076944, + 5071120 ], "bases": [ { @@ -32817,17 +32747,17 @@ }, { "type_name": "CNetMessagePB<51, CSVCMsg_ClearAllStringTables, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9611856, + "vtable_address": 9615056, "methods": [ - 5936368, - 5348336, - 5956976, - 5349280, - 5921824, - 5346880, - 5924832, - 5921968, - 5921984 + 5938864, + 5350832, + 5959472, + 5351776, + 5924320, + 5349376, + 5927328, + 5924464, + 5924480 ], "bases": [ { @@ -32849,14 +32779,14 @@ }, { "type_name": "CNetMessagePB<52, CBaseCmdKeyValues, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9590528, + "vtable_address": 9593728, "methods": [ - 5338768, - 5338960, - 5347248, - 5347248, - 5347264, - 5366160 + 5341264, + 5341456, + 5349744, + 5349744, + 5349760, + 5368656 ], "bases": [ { @@ -32921,26 +32851,26 @@ }, { "type_name": "CNetMessagePB<52, CBaseCmdKeyValues, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9590592, - "methods": [ - 5339168, - 5339360, - 3320958, - 4902928, - 5101040, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5080736, - 4730112, - 5071696, - 3319860, - 3320126, - 4773392, - 5074256, - 5068512 + "vtable_address": 9593792, + "methods": [ + 5341664, + 5341856, + 3323326, + 4905360, + 5103568, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5083264, + 4732480, + 5074224, + 3322228, + 3322494, + 4775824, + 5076784, + 5071040 ], "bases": [ { @@ -33005,17 +32935,17 @@ }, { "type_name": "CNetMessagePB<52, CBaseCmdKeyValues, (SignonGroup_t)9, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9597448, + "vtable_address": 9600648, "methods": [ - 5419328, - 5348336, - 5420224, - 5349696, - 5389872, - 5346880, - 5404224, - 5390016, - 5390032 + 5421824, + 5350832, + 5422720, + 5352192, + 5392368, + 5349376, + 5406720, + 5392512, + 5392528 ], "bases": [ { @@ -33037,14 +32967,14 @@ }, { "type_name": "CNetMessagePB<54, CSVCMsg_SplitScreen, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9623440, + "vtable_address": 9626640, "methods": [ - 5974464, - 5974608, - 5346608, - 5346608, - 5964992, - 5990624 + 5976960, + 5977104, + 5349104, + 5349104, + 5967488, + 5993120 ], "bases": [ { @@ -33098,26 +33028,26 @@ }, { "type_name": "CNetMessagePB<54, CSVCMsg_SplitScreen, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9623504, - "methods": [ - 5974752, - 5974880, - 3320958, - 4902592, - 5030192, - 4773216, - 3323118, - 3319950, - 5002816, - 4731504, - 5014592, - 4730112, - 5000896, - 3319860, - 3320126, - 4773392, - 5003568, - 4996224 + "vtable_address": 9626704, + "methods": [ + 5977248, + 5977376, + 3323326, + 4905024, + 5032720, + 4775648, + 3325486, + 3322318, + 5005344, + 4733856, + 5017120, + 4732480, + 5003424, + 3322228, + 3322494, + 4775824, + 5006096, + 4998752 ], "bases": [ { @@ -33171,17 +33101,17 @@ }, { "type_name": "CNetMessagePB<54, CSVCMsg_SplitScreen, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612736, - "methods": [ - 5927600, - 5348336, - 5943632, - 5349280, - 5919632, - 5346880, - 5923552, - 5919776, - 5919792 + "vtable_address": 9615936, + "methods": [ + 5930096, + 5350832, + 5946128, + 5351776, + 5922128, + 5349376, + 5926048, + 5922272, + 5922288 ], "bases": [ { @@ -33203,14 +33133,14 @@ }, { "type_name": "CNetMessagePB<55, CSVCMsg_PacketEntities, (SignonGroup_t)-1, (NetChannelBufType_t)1, false>", - "vtable_address": 9622992, + "vtable_address": 9626192, "methods": [ - 5975664, - 5975824, - 5346608, - 5346608, - 5965152, - 5991136 + 5978160, + 5978320, + 5349104, + 5349104, + 5967648, + 5993632 ], "bases": [ { @@ -33264,26 +33194,26 @@ }, { "type_name": "CNetMessagePB<55, CSVCMsg_PacketEntities, (SignonGroup_t)-1, (NetChannelBufType_t)1, false>", - "vtable_address": 9623056, - "methods": [ - 5976000, - 5976160, - 3320958, - 4902784, - 5055376, - 4773216, - 3323118, - 3319950, - 5043792, - 4731504, - 5061616, - 4730112, - 5036224, - 3319860, - 3320126, - 4773392, - 5043568, - 5032624 + "vtable_address": 9626256, + "methods": [ + 5978496, + 5978656, + 3323326, + 4905216, + 5057904, + 4775648, + 3325486, + 3322318, + 5046320, + 4733856, + 5064144, + 4732480, + 5038752, + 3322228, + 3322494, + 4775824, + 5046096, + 5035152 ], "bases": [ { @@ -33337,17 +33267,17 @@ }, { "type_name": "CNetMessagePB<55, CSVCMsg_PacketEntities, (SignonGroup_t)-1, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612560, + "vtable_address": 9615760, "methods": [ - 5929072, - 5919984, - 5945792, - 5920000, - 5920016, - 5346880, - 5923760, - 5920160, - 4773136 + 5931568, + 5922480, + 5948288, + 5922496, + 5922512, + 5349376, + 5926256, + 5922656, + 4775568 ], "bases": [ { @@ -33369,14 +33299,14 @@ }, { "type_name": "CNetMessagePB<56, CSVCMsg_Prefetch, (SignonGroup_t)4, (NetChannelBufType_t)1, false>", - "vtable_address": 9622544, + "vtable_address": 9625744, "methods": [ - 5976896, - 5977040, - 5346608, - 5346608, - 5965312, - 5992656 + 5979392, + 5979536, + 5349104, + 5349104, + 5967808, + 5995152 ], "bases": [ { @@ -33430,26 +33360,26 @@ }, { "type_name": "CNetMessagePB<56, CSVCMsg_Prefetch, (SignonGroup_t)4, (NetChannelBufType_t)1, false>", - "vtable_address": 9622608, - "methods": [ - 5977184, - 5977312, - 3320958, - 4902512, - 5029648, - 4773216, - 3323118, - 3319950, - 5002736, - 4731504, - 5011328, - 4730112, - 4999328, - 3319860, - 3320126, - 4773392, - 5003408, - 4996144 + "vtable_address": 9625808, + "methods": [ + 5979680, + 5979808, + 3323326, + 4904944, + 5032176, + 4775648, + 3325486, + 3322318, + 5005264, + 4733856, + 5013856, + 4732480, + 5001856, + 3322228, + 3322494, + 4775824, + 5005936, + 4998672 ], "bases": [ { @@ -33503,17 +33433,17 @@ }, { "type_name": "CNetMessagePB<56, CSVCMsg_Prefetch, (SignonGroup_t)4, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612648, + "vtable_address": 9615848, "methods": [ - 5930592, - 5346704, - 5948080, - 5920352, - 5920368, - 5346880, - 5924000, - 5920512, - 5920528 + 5933088, + 5349200, + 5950576, + 5922848, + 5922864, + 5349376, + 5926496, + 5923008, + 5923024 ], "bases": [ { @@ -33535,14 +33465,14 @@ }, { "type_name": "CNetMessagePB<57, CSVCMsg_Menu, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9623216, + "vtable_address": 9626416, "methods": [ - 5975024, - 5975184, - 5346608, - 5346608, - 5965072, - 5990848 + 5977520, + 5977680, + 5349104, + 5349104, + 5967568, + 5993344 ], "bases": [ { @@ -33596,26 +33526,26 @@ }, { "type_name": "CNetMessagePB<57, CSVCMsg_Menu, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9623280, + "vtable_address": 9626480, "methods": [ - 5975344, - 5975504, - 3320958, - 4902624, - 5030528, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5015936, - 4730112, - 5004768, - 3319860, - 3320126, - 4773392, - 5003632, - 4996256 + 5977840, + 5978000, + 3323326, + 4905056, + 5033056, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5018464, + 4732480, + 5007296, + 3322228, + 3322494, + 4775824, + 5006160, + 4998784 ], "bases": [ { @@ -33669,17 +33599,17 @@ }, { "type_name": "CNetMessagePB<57, CSVCMsg_Menu, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612824, - "methods": [ - 5928368, - 5348336, - 5944704, - 5880000, - 5919808, - 5346880, - 5923648, - 5919952, - 5919968 + "vtable_address": 9616024, + "methods": [ + 5930864, + 5350832, + 5947200, + 5882496, + 5922304, + 5349376, + 5926144, + 5922448, + 5922464 ], "bases": [ { @@ -33701,14 +33631,14 @@ }, { "type_name": "CNetMessagePB<58, CSVCMsg_GetCvarValue, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9623664, + "vtable_address": 9626864, "methods": [ - 5973824, - 5973984, - 5346608, - 5346608, - 5964912, - 5990336 + 5976320, + 5976480, + 5349104, + 5349104, + 5967408, + 5992832 ], "bases": [ { @@ -33762,26 +33692,26 @@ }, { "type_name": "CNetMessagePB<58, CSVCMsg_GetCvarValue, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9623728, + "vtable_address": 9626928, "methods": [ - 5974144, - 5974304, - 3320958, - 4902608, - 5030256, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5015376, - 4730112, - 5004416, - 3319860, - 3320126, - 4773392, - 5003600, - 4996240 + 5976640, + 5976800, + 3323326, + 4905040, + 5032784, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5017904, + 4732480, + 5006944, + 3322228, + 3322494, + 4775824, + 5006128, + 4998768 ], "bases": [ { @@ -33835,17 +33765,17 @@ }, { "type_name": "CNetMessagePB<58, CSVCMsg_GetCvarValue, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9613000, + "vtable_address": 9616200, "methods": [ - 5926896, - 5348336, - 5942544, - 5880000, - 5919456, - 5346880, - 5923440, - 5919600, - 5919616 + 5929392, + 5350832, + 5945040, + 5882496, + 5921952, + 5349376, + 5925936, + 5922096, + 5922112 ], "bases": [ { @@ -33867,14 +33797,14 @@ }, { "type_name": "CNetMessagePB<59, CSVCMsg_StopSound, (SignonGroup_t)4, (NetChannelBufType_t)1, false>", - "vtable_address": 9622096, + "vtable_address": 9625296, "methods": [ - 5978192, - 5978336, - 5346608, - 5346608, - 5965472, - 5993248 + 5980688, + 5980832, + 5349104, + 5349104, + 5967968, + 5995744 ], "bases": [ { @@ -33928,26 +33858,26 @@ }, { "type_name": "CNetMessagePB<59, CSVCMsg_StopSound, (SignonGroup_t)4, (NetChannelBufType_t)1, false>", - "vtable_address": 9622160, - "methods": [ - 5978480, - 5978608, - 3320958, - 4903088, - 5103152, - 4773216, - 3323118, - 3319950, - 5074768, - 4731504, - 5087360, - 4730112, - 5070176, - 3319860, - 3320126, - 4773392, - 5074576, - 5068672 + "vtable_address": 9625360, + "methods": [ + 5980976, + 5981104, + 3323326, + 4905520, + 5105680, + 4775648, + 3325486, + 3322318, + 5077296, + 4733856, + 5089888, + 4732480, + 5072704, + 3322228, + 3322494, + 4775824, + 5077104, + 5071200 ], "bases": [ { @@ -34001,17 +33931,17 @@ }, { "type_name": "CNetMessagePB<59, CSVCMsg_StopSound, (SignonGroup_t)4, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612384, + "vtable_address": 9615584, "methods": [ - 5932064, - 5346704, - 5950336, - 5920352, - 5920720, - 5346880, - 5924192, - 5920864, - 5920880 + 5934560, + 5349200, + 5952832, + 5922848, + 5923216, + 5349376, + 5926688, + 5923360, + 5923376 ], "bases": [ { @@ -34033,14 +33963,14 @@ }, { "type_name": "CNetMessagePB<6, CNETMsg_SetConVar, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9594944, + "vtable_address": 9598144, "methods": [ - 5312016, - 5327280, - 5346608, - 5346608, - 5348064, - 5365008 + 5314512, + 5329776, + 5349104, + 5349104, + 5350560, + 5367504 ], "bases": [ { @@ -34094,26 +34024,26 @@ }, { "type_name": "CNetMessagePB<6, CNETMsg_SetConVar, (SignonGroup_t)9, (NetChannelBufType_t)1, false>", - "vtable_address": 9595008, + "vtable_address": 9598208, "methods": [ - 5312048, - 5327344, - 3320958, - 4819248, - 4877168, - 4773216, - 3323118, - 3319950, - 4863424, - 4731504, - 4884416, - 4730112, - 4864736, - 3319860, - 3320126, - 4773392, - 4858768, - 4857040 + 5314544, + 5329840, + 3323326, + 4821680, + 4879600, + 4775648, + 3325486, + 3322318, + 4865856, + 4733856, + 4886848, + 4732480, + 4867168, + 3322228, + 3322494, + 4775824, + 4861200, + 4859472 ], "bases": [ { @@ -34167,17 +34097,17 @@ }, { "type_name": "CNetMessagePB<6, CNETMsg_SetConVar, (SignonGroup_t)9, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9596328, + "vtable_address": 9599528, "methods": [ - 5388992, - 5346704, - 5418256, - 5349696, - 5389696, - 5346880, - 5403712, - 5389840, - 5389856 + 5391488, + 5349200, + 5420752, + 5352192, + 5392192, + 5349376, + 5406208, + 5392336, + 5392352 ], "bases": [ { @@ -34199,14 +34129,14 @@ }, { "type_name": "CNetMessagePB<60, CSVCMsg_PeerList, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9614352, + "vtable_address": 9617552, "methods": [ - 5972416, - 5972592, - 5346608, - 5346608, - 5964752, - 5989632 + 5974912, + 5975088, + 5349104, + 5349104, + 5967248, + 5992128 ], "bases": [ { @@ -34260,26 +34190,26 @@ }, { "type_name": "CNetMessagePB<60, CSVCMsg_PeerList, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9614416, - "methods": [ - 5972784, - 5972960, - 3320958, - 4902992, - 5102000, - 4773216, - 3323118, - 3319950, - 5075136, - 4731520, - 5083104, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 5074384, - 5068576 + "vtable_address": 9617616, + "methods": [ + 5975280, + 5975456, + 3323326, + 4905424, + 5104528, + 4775648, + 3325486, + 3322318, + 5077664, + 4733872, + 5085632, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 5076912, + 5071104 ], "bases": [ { @@ -34331,19 +34261,73 @@ } } }, + { + "type_name": "CNetMessagePB<60, CSVCMsg_PeerList, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", + "vtable_address": 9675104, + "methods": [], + "bases": [ + { + "type_name": "CNetMessage", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "CSVCMsg_PeerList", + "details": { + "Itanium": { + "offset": 48, + "flags": 2, + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 1982848 + } + } + }, { "type_name": "CNetMessagePB<60, CSVCMsg_PeerList, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9613088, + "vtable_address": 9616288, "methods": [ - 5910992, - 5346992, - 5918192, - 5880000, - 5880688, - 5346880, - 5895088, - 5880832, - 5880848 + 5913488, + 5349488, + 5920688, + 5882496, + 5883184, + 5349376, + 5897584, + 5883328, + 5883344 ], "bases": [ { @@ -34365,14 +34349,14 @@ }, { "type_name": "CNetMessagePB<61, CSVCMsg_PacketReliable, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9614576, + "vtable_address": 9617776, "methods": [ - 5971856, - 5972000, - 5346608, - 5346608, - 5964672, - 5989392 + 5974352, + 5974496, + 5349104, + 5349104, + 5967168, + 5991888 ], "bases": [ { @@ -34426,26 +34410,26 @@ }, { "type_name": "CNetMessagePB<61, CSVCMsg_PacketReliable, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9614640, - "methods": [ - 5972144, - 5972272, - 3320958, - 4902864, - 5057504, - 4773216, - 3323118, - 3319950, - 5043104, - 4731504, - 5066976, - 4730112, - 5033984, - 3319860, - 3320126, - 4773392, - 5043728, - 5032704 + "vtable_address": 9617840, + "methods": [ + 5974640, + 5974768, + 3323326, + 4905296, + 5060032, + 4775648, + 3325486, + 3322318, + 5045632, + 4733856, + 5069504, + 4732480, + 5036512, + 3322228, + 3322494, + 4775824, + 5046256, + 5035232 ], "bases": [ { @@ -34499,17 +34483,17 @@ }, { "type_name": "CNetMessagePB<61, CSVCMsg_PacketReliable, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9613176, + "vtable_address": 9616376, "methods": [ - 5910224, - 5348336, - 5917120, - 5880000, - 5880512, - 5346880, - 5894992, - 5880656, - 5880672 + 5912720, + 5350832, + 5919616, + 5882496, + 5883008, + 5349376, + 5897488, + 5883152, + 5883168 ], "bases": [ { @@ -34531,14 +34515,14 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 9614800, + "vtable_address": 9618000, "methods": [ - 5988688, - 5988848, - 5346608, - 5346608, - 5966752, - 5999312 + 5991184, + 5991344, + 5349104, + 5349104, + 5969248, + 6001808 ], "bases": [ { @@ -34592,26 +34576,26 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 9614864, - "methods": [ - 5989008, - 5989168, - 3320958, - 4902896, - 5057872, - 4773216, - 3323118, - 3319950, - 5043200, - 4731504, - 5079456, - 4730112, - 5071072, - 3319860, - 3320126, - 4773392, - 5074192, - 5068480 + "vtable_address": 9618064, + "methods": [ + 5991504, + 5991664, + 3323326, + 4905328, + 5060400, + 4775648, + 3325486, + 3322318, + 5045728, + 4733856, + 5081984, + 4732480, + 5073600, + 3322228, + 3322494, + 4775824, + 5076720, + 5071008 ], "bases": [ { @@ -34665,17 +34649,17 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 9613264, + "vtable_address": 9616464, "methods": [ - 5909520, - 5346992, - 5916032, - 5880000, - 5880352, - 5346880, - 5894880, - 4773136, - 5880496 + 5912016, + 5349488, + 5918528, + 5882496, + 5882848, + 5349376, + 5897376, + 4775568, + 5882992 ], "bases": [ { @@ -34697,14 +34681,14 @@ }, { "type_name": "CNetMessagePB<63, CSVCMsg_ServerSteamID, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 9615024, + "vtable_address": 9618224, "methods": [ - 5988128, - 5988272, - 5346608, - 5346608, - 5966672, - 5999088 + 5990624, + 5990768, + 5349104, + 5349104, + 5969168, + 6001584 ], "bases": [ { @@ -34758,26 +34742,26 @@ }, { "type_name": "CNetMessagePB<63, CSVCMsg_ServerSteamID, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 9615088, - "methods": [ - 5988416, - 5988544, - 3320958, - 4902912, - 5100992, - 4773216, - 3323118, - 3319950, - 5074800, - 4731504, - 5080256, - 4730112, - 5068800, - 3319860, - 3320126, - 4773392, - 5074224, - 5068496 + "vtable_address": 9618288, + "methods": [ + 5990912, + 5991040, + 3323326, + 4905344, + 5103520, + 4775648, + 3325486, + 3322318, + 5077328, + 4733856, + 5082784, + 4732480, + 5071328, + 3322228, + 3322494, + 4775824, + 5076752, + 5071024 ], "bases": [ { @@ -34831,17 +34815,17 @@ }, { "type_name": "CNetMessagePB<63, CSVCMsg_ServerSteamID, (SignonGroup_t)0, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 9613352, + "vtable_address": 9616552, "methods": [ - 5908768, - 5346704, - 5914960, - 5880000, - 5880192, - 5346880, - 5894784, - 4773136, - 5880336 + 5911264, + 5349200, + 5917456, + 5882496, + 5882688, + 5349376, + 5897280, + 4775568, + 5882832 ], "bases": [ { @@ -34863,14 +34847,14 @@ }, { "type_name": "CNetMessagePB<7, CNETMsg_SignonState, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9592416, + "vtable_address": 9595616, "methods": [ - 5333504, - 5333680, - 5346608, - 5346608, - 5347824, - 5363984 + 5336000, + 5336176, + 5349104, + 5349104, + 5350320, + 5366480 ], "bases": [ { @@ -34924,26 +34908,26 @@ }, { "type_name": "CNetMessagePB<7, CNETMsg_SignonState, (SignonGroup_t)10, (NetChannelBufType_t)1, false>", - "vtable_address": 9592480, - "methods": [ - 5333856, - 5334032, - 3320958, - 4819264, - 4877856, - 4773216, - 3323118, - 3319950, - 4866496, - 4731504, - 4884832, - 4730112, - 4865504, - 3319860, - 3320126, - 4773392, - 4858800, - 4857056 + "vtable_address": 9595680, + "methods": [ + 5336352, + 5336528, + 3323326, + 4821696, + 4880288, + 4775648, + 3325486, + 3322318, + 4868928, + 4733856, + 4887264, + 4732480, + 4867936, + 3322228, + 3322494, + 4775824, + 4861232, + 4859488 ], "bases": [ { @@ -34997,17 +34981,17 @@ }, { "type_name": "CNetMessagePB<7, CNETMsg_SignonState, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9596664, + "vtable_address": 9599864, "methods": [ - 5383360, - 5349264, - 5384128, - 5349280, - 5349296, - 5346880, - 5361904, - 5349440, - 5349456 + 5385856, + 5351760, + 5386624, + 5351776, + 5351792, + 5349376, + 5364400, + 5351936, + 5351952 ], "bases": [ { @@ -35029,14 +35013,14 @@ }, { "type_name": "CNetMessagePB<70, CSVCMsg_FullFrameSplit, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9615248, + "vtable_address": 9618448, "methods": [ - 5987488, - 5987648, - 5346608, - 5346608, - 5966592, - 5998768 + 5989984, + 5990144, + 5349104, + 5349104, + 5969088, + 6001264 ], "bases": [ { @@ -35090,26 +35074,26 @@ }, { "type_name": "CNetMessagePB<70, CSVCMsg_FullFrameSplit, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9615312, - "methods": [ - 5987808, - 5987968, - 3320958, - 4902880, - 5057568, - 4773216, - 3323118, - 3319950, - 5043200, - 4731504, - 5067696, - 4730112, - 5041184, - 3319860, - 3320126, - 4773392, - 5043760, - 5032720 + "vtable_address": 9618512, + "methods": [ + 5990304, + 5990464, + 3323326, + 4905312, + 5060096, + 4775648, + 3325486, + 3322318, + 5045728, + 4733856, + 5070224, + 4732480, + 5043712, + 3322228, + 3322494, + 4775824, + 5046288, + 5035248 ], "bases": [ { @@ -35163,17 +35147,17 @@ }, { "type_name": "CNetMessagePB<70, CSVCMsg_FullFrameSplit, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9613440, + "vtable_address": 9616640, "methods": [ - 5908064, - 5346992, - 5913872, - 5880000, - 5880016, - 5346880, - 5894672, - 5880160, - 5880176 + 5910560, + 5349488, + 5916368, + 5882496, + 5882512, + 5349376, + 5897168, + 5882656, + 5882672 ], "bases": [ { @@ -35195,14 +35179,14 @@ }, { "type_name": "CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9623888, + "vtable_address": 9627088, "methods": [ - 5973152, - 5973312, - 5346608, - 5346608, - 5964832, - 5989984 + 5975648, + 5975808, + 5349104, + 5349104, + 5967328, + 5992480 ], "bases": [ { @@ -35256,26 +35240,26 @@ }, { "type_name": "CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9623952, - "methods": [ - 5973488, - 5973648, - 3320958, - 4902944, - 5101296, - 4773216, - 3323118, - 3319950, - 4815392, - 4731504, - 5081136, - 4730112, - 5071888, - 3319860, - 3320126, - 4773392, - 5074288, - 5068528 + "vtable_address": 9627152, + "methods": [ + 5975984, + 5976144, + 3323326, + 4905376, + 5103824, + 4775648, + 3325486, + 3322318, + 4817824, + 4733856, + 5083664, + 4732480, + 5074416, + 3322228, + 3322494, + 4775824, + 5076816, + 5071056 ], "bases": [ { @@ -35328,9 +35312,48 @@ } }, { - "type_name": "CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>", - "vtable_address": 9681496, - "methods": [], + "type_name": "CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", + "vtable_address": 9616112, + "methods": [ + 5928688, + 5350832, + 5943968, + 5882496, + 5921776, + 5349376, + 5925824, + 5921920, + 5921936 + ], + "bases": [ + { + "type_name": "IProtobufBinding", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>", + "vtable_address": 9636248, + "methods": [ + 6110432, + 6110592, + 5349104, + 5349104, + 6090448, + 6113984 + ], "bases": [ { "type_name": "CNetMessage", @@ -35343,7 +35366,7 @@ } }, { - "type_name": "CSVCMsg_RconServerDetails", + "type_name": "CSVCMsg_UserMessage", "details": { "Itanium": { "offset": 48, @@ -35375,38 +35398,6 @@ } } ], - "model": { - "Itanium": { - "offset_to_top": 1987040 - } - } - }, - { - "type_name": "CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9612912, - "methods": [ - 5926192, - 5348336, - 5941472, - 5880000, - 5919280, - 5346880, - 5923328, - 5919424, - 5919440 - ], - "bases": [ - { - "type_name": "IProtobufBinding", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], "model": { "Itanium": { "offset_to_top": 0 @@ -35415,14 +35406,26 @@ }, { "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>", - "vtable_address": 9633048, - "methods": [ - 6107872, - 6108032, - 5346608, - 5346608, - 6087888, - 6111424 + "vtable_address": 9636312, + "methods": [ + 6110752, + 6110912, + 3323326, + 4905072, + 5033328, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5019024, + 4732480, + 5007680, + 3322228, + 3322494, + 4775824, + 5006192, + 4998800 ], "bases": [ { @@ -35468,6 +35471,38 @@ } } ], + "model": { + "Itanium": { + "offset_to_top": -48 + } + } + }, + { + "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>::CProtobufBinding", + "vtable_address": 9629136, + "methods": [ + 6062640, + 5350832, + 6074208, + 6044688, + 6044704, + 5349376, + 6054016, + 6044848, + 6044864 + ], + "bases": [ + { + "type_name": "IProtobufBinding", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], "model": { "Itanium": { "offset_to_top": 0 @@ -35475,27 +35510,15 @@ } }, { - "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>", - "vtable_address": 9633112, + "type_name": "CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", + "vtable_address": 9695384, "methods": [ - 6108192, - 6108352, - 3320958, - 4902640, - 5030800, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5016496, - 4730112, - 5005152, - 3319860, - 3320126, - 4773392, - 5003664, - 4996272 + 7420304, + 7420464, + 5349104, + 5349104, + 7406192, + 7429504 ], "bases": [ { @@ -35509,7 +35532,7 @@ } }, { - "type_name": "CSVCMsg_UserMessage", + "type_name": "CSVCMsg_Broadcast_Command", "details": { "Itanium": { "offset": 48, @@ -35541,38 +35564,6 @@ } } ], - "model": { - "Itanium": { - "offset_to_top": -48 - } - } - }, - { - "type_name": "CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625936, - "methods": [ - 6060080, - 5348336, - 6071648, - 6042160, - 6042176, - 5346880, - 6051456, - 6042320, - 6042336 - ], - "bases": [ - { - "type_name": "IProtobufBinding", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], "model": { "Itanium": { "offset_to_top": 0 @@ -35581,87 +35572,26 @@ }, { "type_name": "CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9693848, - "methods": [ - 7432224, - 7432384, - 5346608, - 5346608, - 7421488, - 7442704 - ], - "bases": [ - { - "type_name": "CNetMessage", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "CSVCMsg_Broadcast_Command", - "details": { - "Itanium": { - "offset": 48, - "flags": 2, - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9693912, + "vtable_address": 9695448, "methods": [ - 7432544, - 7432704, - 3320958, - 4903232, - 5115264, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5118912, - 4730112, - 5111456, - 3319860, - 3320126, - 4773392, - 5111264, - 5104240 + 7420624, + 7420784, + 3323326, + 4905664, + 5117792, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5121440, + 4732480, + 5113984, + 3322228, + 3322494, + 4775824, + 5113792, + 5106768 ], "bases": [ { @@ -35713,73 +35643,19 @@ } } }, - { - "type_name": "CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9696896, - "methods": [], - "bases": [ - { - "type_name": "CNetMessage", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "CSVCMsg_Broadcast_Command", - "details": { - "Itanium": { - "offset": 48, - "flags": 2, - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 1994768 - } - } - }, { "type_name": "CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9692160, + "vtable_address": 9694952, "methods": [ - 7454432, - 5346704, - 7453072, - 5349072, - 7421568, - 5346880, - 7442592, - 7421712, - 7421728 + 7451552, + 5349200, + 7450192, + 5351568, + 7406272, + 5349376, + 7427264, + 7406416, + 7406432 ], "bases": [ { @@ -35801,14 +35677,14 @@ }, { "type_name": "CNetMessagePB<74, CSVCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9615472, + "vtable_address": 9618672, "methods": [ - 5986928, - 5987072, - 5346608, - 5346608, - 5966512, - 5998528 + 5989424, + 5989568, + 5349104, + 5349104, + 5969008, + 6001024 ], "bases": [ { @@ -35862,26 +35738,26 @@ }, { "type_name": "CNetMessagePB<74, CSVCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9615536, - "methods": [ - 5987216, - 5987344, - 3320958, - 4903200, - 5114160, - 4773216, - 3323118, - 3319950, - 5109408, - 4731504, - 5117056, - 4730112, - 5107296, - 3319860, - 3320126, - 4773392, - 5111200, - 5104208 + "vtable_address": 9618736, + "methods": [ + 5989712, + 5989840, + 3323326, + 4905632, + 5116688, + 4775648, + 3325486, + 3322318, + 5111936, + 4733856, + 5119584, + 4732480, + 5109824, + 3322228, + 3322494, + 4775824, + 5113728, + 5106736 ], "bases": [ { @@ -35935,17 +35811,17 @@ }, { "type_name": "CNetMessagePB<74, CSVCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9613528, + "vtable_address": 9616728, "methods": [ - 5907248, - 5879808, - 5912784, - 5349072, - 5879824, - 5346880, - 5894576, - 5879968, - 5879984 + 5909744, + 5882304, + 5915280, + 5351568, + 5882320, + 5349376, + 5897072, + 5882464, + 5882480 ], "bases": [ { @@ -35967,14 +35843,14 @@ }, { "type_name": "CNetMessagePB<75, CCLCMsg_HltvFixupOperatorTick, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9633272, + "vtable_address": 9636472, "methods": [ - 6107200, - 6107360, - 5346608, - 5346608, - 6087808, - 6110640 + 6109760, + 6109920, + 5349104, + 5349104, + 6090368, + 6113200 ], "bases": [ { @@ -36028,26 +35904,26 @@ }, { "type_name": "CNetMessagePB<75, CCLCMsg_HltvFixupOperatorTick, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9633336, - "methods": [ - 6107536, - 6107696, - 3320958, - 4903248, - 5115520, - 4773216, - 3323118, - 3319950, - 5113680, - 4731504, - 5119312, - 4730112, - 5111648, - 3319860, - 3320126, - 4773392, - 5111296, - 5104256 + "vtable_address": 9636536, + "methods": [ + 6110096, + 6110256, + 3323326, + 4905680, + 5118048, + 4775648, + 3325486, + 3322318, + 5116208, + 4733856, + 5121840, + 4732480, + 5114176, + 3322228, + 3322494, + 4775824, + 5113824, + 5106784 ], "bases": [ { @@ -36101,17 +35977,17 @@ }, { "type_name": "CNetMessagePB<75, CCLCMsg_HltvFixupOperatorTick, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9625848, + "vtable_address": 9629048, "methods": [ - 6059216, - 5349472, - 6070400, - 5349072, - 6041984, - 5346880, - 6051344, - 6042128, - 6042144 + 6061776, + 5351968, + 6072960, + 5351568, + 6044512, + 5349376, + 6053904, + 6044656, + 6044672 ], "bases": [ { @@ -36133,14 +36009,14 @@ }, { "type_name": "CNetMessagePB<76, CSVCMsg_UserCommands, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9615696, + "vtable_address": 9618896, "methods": [ - 5986192, - 5986368, - 5346608, - 5346608, - 5966432, - 5998176 + 5988688, + 5988864, + 5349104, + 5349104, + 5968928, + 6000672 ], "bases": [ { @@ -36194,26 +36070,26 @@ }, { "type_name": "CNetMessagePB<76, CSVCMsg_UserCommands, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9615760, - "methods": [ - 5986560, - 5986736, - 3320958, - 4903296, - 5116624, - 4773216, - 3323118, - 3319950, - 5110880, - 4731520, - 5146432, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 5111392, - 5104304 + "vtable_address": 9618960, + "methods": [ + 5989056, + 5989232, + 3323326, + 4905728, + 5119152, + 4775648, + 3325486, + 3322318, + 5113408, + 4733872, + 5148960, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 5113920, + 5106832 ], "bases": [ { @@ -36267,17 +36143,17 @@ }, { "type_name": "CNetMessagePB<76, CSVCMsg_UserCommands, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9613616, + "vtable_address": 9616816, "methods": [ - 5906544, - 5346992, - 5911696, - 5349072, - 5879632, - 5346880, - 5894480, - 5879776, - 5879792 + 5909040, + 5349488, + 5914192, + 5351568, + 5882128, + 5349376, + 5896976, + 5882272, + 5882288 ], "bases": [ { @@ -36299,14 +36175,14 @@ }, { "type_name": "CNetMessagePB<77, CSVCMsg_NextMsgPredicted, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9593336, + "vtable_address": 9596536, "methods": [ - 5340704, - 5340848, - 5346608, - 5346608, - 5347168, - 5362736 + 5343200, + 5343344, + 5349104, + 5349104, + 5349664, + 5365232 ], "bases": [ { @@ -36360,26 +36236,26 @@ }, { "type_name": "CNetMessagePB<77, CSVCMsg_NextMsgPredicted, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 9593400, - "methods": [ - 5340992, - 5341120, - 3320958, - 4903312, - 5114304, - 4773216, - 3323118, - 3319950, - 5109760, - 4731504, - 5121824, - 4730112, - 5109056, - 3319860, - 3320126, - 4773392, - 5111424, - 5104320 + "vtable_address": 9596600, + "methods": [ + 5343488, + 5343616, + 3323326, + 4905744, + 5116832, + 4775648, + 3325486, + 3322318, + 5112288, + 4733856, + 5124352, + 4732480, + 5111584, + 3322228, + 3322494, + 4775824, + 5113952, + 5106848 ], "bases": [ { @@ -36433,17 +36309,17 @@ }, { "type_name": "CNetMessagePB<77, CSVCMsg_NextMsgPredicted, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9597560, - "methods": [ - 5381424, - 5346704, - 5382224, - 5349072, - 5349088, - 5346880, - 5361792, - 5349232, - 5349248 + "vtable_address": 9600760, + "methods": [ + 5383920, + 5349200, + 5384720, + 5351568, + 5351584, + 5349376, + 5364288, + 5351728, + 5351744 ], "bases": [ { @@ -36465,14 +36341,14 @@ }, { "type_name": "CNetMessagePB<8, CNETMsg_SpawnGroup_Load, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9592192, + "vtable_address": 9595392, "methods": [ - 5334224, - 5334384, - 5346608, - 5346608, - 5347744, - 5361120 + 5336720, + 5336880, + 5349104, + 5349104, + 5350240, + 5363616 ], "bases": [ { @@ -36526,26 +36402,26 @@ }, { "type_name": "CNetMessagePB<8, CNETMsg_SpawnGroup_Load, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9592256, + "vtable_address": 9595456, "methods": [ - 5334560, - 5334720, - 3320958, - 4819344, - 4879584, - 4773216, - 3323118, - 3319950, - 4898944, - 4731504, - 4888800, - 4730112, - 4892608, - 3319860, - 3320126, - 4773392, - 4900112, - 4891216 + 5337056, + 5337216, + 3323326, + 4821776, + 4882016, + 4775648, + 3325486, + 3322318, + 4901376, + 4733856, + 4891232, + 4732480, + 4895040, + 3322228, + 3322494, + 4775824, + 4902544, + 4893648 ], "bases": [ { @@ -36599,17 +36475,17 @@ }, { "type_name": "CNetMessagePB<8, CNETMsg_SpawnGroup_Load, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9596776, + "vtable_address": 9599976, "methods": [ - 5379376, - 5348880, - 5380304, - 5348144, - 5348896, - 5346880, - 5361664, - 5349040, - 5349056 + 5381872, + 5351376, + 5382800, + 5350640, + 5351392, + 5349376, + 5364160, + 5351536, + 5351552 ], "bases": [ { @@ -36631,14 +36507,14 @@ }, { "type_name": "CNetMessagePB<9, CNETMsg_SpawnGroup_ManifestUpdate, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9591968, + "vtable_address": 9595168, "methods": [ - 5334896, - 5335056, - 5346608, - 5346608, - 5347664, - 5363680 + 5337392, + 5337552, + 5349104, + 5349104, + 5350160, + 5366176 ], "bases": [ { @@ -36692,26 +36568,26 @@ }, { "type_name": "CNetMessagePB<9, CNETMsg_SpawnGroup_ManifestUpdate, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", - "vtable_address": 9592032, - "methods": [ - 5335216, - 5335376, - 3320958, - 4819360, - 4910752, - 4773216, - 3323118, - 3319950, - 4898112, - 4731504, - 4912704, - 4730112, - 4894976, - 3319860, - 3320126, - 4773392, - 4900144, - 4891232 + "vtable_address": 9595232, + "methods": [ + 5337712, + 5337872, + 3323326, + 4821792, + 4913184, + 4775648, + 3325486, + 3322318, + 4900544, + 4733856, + 4915136, + 4732480, + 4897408, + 3322228, + 3322494, + 4775824, + 4902576, + 4893664 ], "bases": [ { @@ -36763,19 +36639,73 @@ } } }, + { + "type_name": "CNetMessagePB<9, CNETMsg_SpawnGroup_ManifestUpdate, (SignonGroup_t)15, (NetChannelBufType_t)1, false>", + "vtable_address": 9683192, + "methods": [], + "bases": [ + { + "type_name": "CNetMessage", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "CNETMsg_SpawnGroup_ManifestUpdate", + "details": { + "Itanium": { + "offset": 48, + "flags": 2, + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 1986656 + } + } + }, { "type_name": "CNetMessagePB<9, CNETMsg_SpawnGroup_ManifestUpdate, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 9596888, + "vtable_address": 9600088, "methods": [ - 5377520, - 5348336, - 5378256, - 5348144, - 5348704, - 5346880, - 5361552, - 5348848, - 5348864 + 5380016, + 5350832, + 5380752, + 5350640, + 5351200, + 5349376, + 5364048, + 5351344, + 5351360 ], "bases": [ { @@ -36797,30 +36727,30 @@ }, { "type_name": "CNetSupportImpl", - "vtable_address": 9584976, - "methods": [ - 7299360, - 7299840, - 7296384, - 7295904, - 5398912, - 4730192, - 4730208, - 5262368, - 5267936, - 4773136, - 4773088, - 6611712, - 7299936, - 7300656, - 7295920, - 7315568, - 7301488, - 7295984, - 7296032, - 7334720, - 7296048, - 7301536 + "vtable_address": 9588176, + "methods": [ + 7289024, + 7289504, + 7282464, + 7282160, + 5401408, + 4732560, + 5264864, + 5264880, + 5270464, + 4775568, + 4775520, + 6614656, + 7289600, + 7290320, + 7282176, + 7304384, + 7291152, + 7282240, + 7282288, + 7322368, + 7282304, + 7291200 ], "bases": [ { @@ -36875,74 +36805,74 @@ }, { "type_name": "CNetworkClientService", - "vtable_address": 9628272, - "methods": [ - 6045136, - 6045248, - 4737920, - 6024080, - 6011280, - 4730192, - 6004160, - 5307648, - 6045456, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5878752, - 6004000, - 5507776, - 5507792, - 5507808, - 5967104, - 5507824, - 5507840, - 6018160, - 6020400, - 6003264, - 6008432, - 6021168, - 6020688, - 6010256, - 6011392, - 6011600, - 6005504, - 6004432, - 6004384, - 6004480, - 6004784, - 6004352, - 6004336, - 6005584, - 6011696, - 6011824, - 6011872, - 6004528, - 6005648, - 6011968, - 4730192, - 6004576, - 6004640, - 6004704, - 6004864, - 6004848, - 6027296, - 6041360, - 6004880, - 6012016, - 6016592, - 6003792, - 6003248, - 6004912, - 6004176, - 6004320, - 6026848, - 6035776, - 6003760, - 6014800, - 6038512 + "vtable_address": 9631472, + "methods": [ + 6047664, + 6047776, + 4740256, + 6026576, + 6013776, + 4732560, + 6006656, + 5310144, + 6047984, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5881248, + 6006496, + 5510272, + 5510288, + 5510304, + 5969600, + 5510320, + 5510336, + 6020656, + 6022896, + 6005760, + 6010928, + 6023664, + 6023184, + 6012752, + 6013888, + 6014096, + 6008000, + 6006928, + 6006880, + 6006976, + 6007280, + 6006848, + 6006832, + 6008080, + 6014192, + 6014320, + 6014368, + 6007024, + 6008144, + 6014464, + 4732560, + 6007072, + 6007136, + 6007200, + 6007360, + 6007344, + 6029792, + 6043888, + 6007376, + 6014512, + 6019088, + 6006288, + 6005744, + 6007408, + 6006672, + 6006816, + 6029344, + 6038304, + 6006256, + 6017296, + 6041040 ], "bases": [ { @@ -37083,9 +37013,9 @@ }, { "type_name": "CNetworkClientService", - "vtable_address": 9628816, + "vtable_address": 9632016, "methods": [ - 6041344 + 6043872 ], "bases": [ { @@ -37226,56 +37156,56 @@ }, { "type_name": "CNetworkClientSpawnGroup", - "vtable_address": 9658048, - "methods": [ - 5541712, - 5966848, - 6749456, - 6526896, - 6749488, - 6749504, - 6749552, - 6749584, - 6526912, - 6749536, - 7255008, - 6749616, - 6793280, - 6749760, - 6751744, - 6749776, - 6749632, - 6749648, - 6785920, - 6749744, - 7215280, - 6749808, - 6749792, - 6801456, - 6807120, - 6749664, - 6749680, - 6749696, - 6785936, - 6749712, - 6749728, - 7211232, - 4730192, - 7254672, - 6749824, - 6759376, - 6790944, - 7212160, - 6749440, - 6785312, - 7273072, - 7254784, - 6791728, - 6785824, - 6792304, - 6792640, - 6799808, - 6749840 + "vtable_address": 9661248, + "methods": [ + 5544208, + 5969344, + 6782528, + 6529776, + 6782560, + 6782576, + 6782624, + 6782656, + 6529792, + 6782608, + 7242976, + 6782688, + 6790816, + 6782832, + 6790096, + 6782848, + 6782704, + 6782720, + 6783536, + 6782816, + 7252560, + 6782880, + 6782864, + 6802032, + 6811808, + 6782736, + 6782752, + 6782768, + 6783552, + 6782784, + 6782800, + 7241376, + 4732560, + 7242640, + 6782896, + 6790880, + 6791584, + 7242304, + 6782512, + 6782928, + 7265552, + 7242752, + 6792368, + 6783440, + 6793376, + 6793728, + 6800400, + 6782912 ], "bases": [ { @@ -37328,9 +37258,9 @@ }, { "type_name": "CNetworkClientSpawnGroup", - "vtable_address": 9658448, + "vtable_address": 9661648, "methods": [ - 7211936 + 7242080 ], "bases": [ { @@ -37383,10 +37313,10 @@ }, { "type_name": "CNetworkClientSpawnGroup", - "vtable_address": 9658472, + "vtable_address": 9661672, "methods": [ - 6749424, - 7254720 + 6782496, + 7242688 ], "bases": [ { @@ -37439,19 +37369,19 @@ }, { "type_name": "CNetworkClientSpawnGroupCreatePrerequisites", - "vtable_address": 9657912, - "methods": [ - 6798912, - 6802480, - 5262448, - 5262464, - 5269568, - 5262512, - 5279072, - 5269232, - 5268224, - 6807376, - 5266480 + "vtable_address": 9661112, + "methods": [ + 6799504, + 6802704, + 5264960, + 5264976, + 5272096, + 5265024, + 5281600, + 5271760, + 5270752, + 6808048, + 5269008 ], "bases": [ { @@ -37494,10 +37424,10 @@ }, { "type_name": "CNetworkClientSpawnGroupCreatePrerequisites", - "vtable_address": 9658016, + "vtable_address": 9661216, "methods": [ - 5269392, - 5268736 + 5271920, + 5271264 ], "bases": [ { @@ -37540,15 +37470,15 @@ }, { "type_name": "CNetworkClientSpawnGroup_AllocateEntitiesPrerequisite", - "vtable_address": 9658928, + "vtable_address": 9662128, "methods": [ - 6800704, - 6803456, - 5262448, - 5262464, - 6791792, - 5390496, - 5279008 + 6801280, + 6803680, + 5264960, + 5264976, + 6792432, + 5392992, + 5281536 ], "bases": [ { @@ -37581,15 +37511,15 @@ }, { "type_name": "CNetworkClientSpawnGroup_AllocateSpawnGroupPrerequisite", - "vtable_address": 9659176, + "vtable_address": 9662376, "methods": [ - 6800688, - 6803440, - 5262448, - 5262464, - 6793168, - 5390480, - 5279008 + 6801264, + 6803664, + 5264960, + 5264976, + 6794064, + 5392976, + 5281536 ], "bases": [ { @@ -37622,15 +37552,15 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadEntitiesPrerequisite", - "vtable_address": 9658504, + "vtable_address": 9661704, "methods": [ - 6800656, - 6803408, - 5262448, - 5262464, - 6793552, - 5390576, - 5279008 + 6801232, + 6803632, + 5264960, + 5264976, + 6792944, + 5393072, + 5281536 ], "bases": [ { @@ -37663,17 +37593,17 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadPreviousLevelPrerequisite", - "vtable_address": 9658840, + "vtable_address": 9662040, "methods": [ - 6812000, - 6812528, - 5262448, - 5262464, - 6793984, - 5390512, - 5279008, - 6785952, - 6793344 + 6812912, + 6813440, + 5264960, + 5264976, + 6794176, + 5393008, + 5281536, + 6783568, + 6791376 ], "bases": [ { @@ -37717,17 +37647,17 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadSaveGamePrerequisite", - "vtable_address": 9659000, + "vtable_address": 9662200, "methods": [ - 6813056, - 6813584, - 5262448, - 5262464, - 6793984, - 5390512, - 5279008, - 6792176, - 6793344 + 6813968, + 6814496, + 5264960, + 5264976, + 6794176, + 5393008, + 5281536, + 6792816, + 6791376 ], "bases": [ { @@ -37771,7 +37701,7 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadSaveGamePrerequisiteBase", - "vtable_address": 9659088, + "vtable_address": 9662288, "methods": [], "bases": [ { @@ -37804,17 +37734,17 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 9658720, + "vtable_address": 9661920, "methods": [ - 6808848, - 6809184, - 5262448, - 5262464, - 6795296, - 5390528, - 5279008, - 6792976, - 6794912 + 6808672, + 6809008, + 5264960, + 5264976, + 6795104, + 5393024, + 5281536, + 6788384, + 6788576 ], "bases": [ { @@ -37868,10 +37798,10 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 9658808, + "vtable_address": 9662008, "methods": [ - 6794560, - 6795104 + 6794752, + 6788768 ], "bases": [ { @@ -37925,15 +37855,15 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForChildSpawnGroups", - "vtable_address": 9658576, + "vtable_address": 9661776, "methods": [ - 6800640, - 6803392, - 5262448, - 5262464, - 6790336, - 5390560, - 5279008 + 6801216, + 6803616, + 5264960, + 5264976, + 6790208, + 5393056, + 5281536 ], "bases": [ { @@ -37966,15 +37896,15 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForOwnerSpawnGroupPrerequisite", - "vtable_address": 9658648, + "vtable_address": 9661848, "methods": [ - 6800672, - 6803424, - 5262448, - 5262464, - 6786160, - 5390544, - 5279008 + 6801248, + 6803648, + 5264960, + 5264976, + 6783776, + 5393040, + 5281536 ], "bases": [ { @@ -38007,156 +37937,156 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 9662736, - "methods": [ - 6527664, - 6570544, - 6611584, - 6611600, - 6526928, - 6526944, - 6526976, - 6653936, - 6526960, - 6653952, - 6653968, - 5390624, - 6548128, - 6723504, - 6526992, - 6527008, - 6653840, - 6653808, - 6527024, - 6527056, - 6611568, - 6707040, - 6667296, - 6708864, - 6655168, - 6719168, - 6611776, - 5461440, - 6703056, - 6655056, - 6637360, - 6567600, - 6570096, - 6613872, - 6613808, - 6612128, - 6614832, - 6576864, - 6639232, - 6611488, - 6613840, - 6613840, - 4730192, - 6611936, - 6653888, - 6550960, - 6611648, - 6611712, - 6527728, - 6527712, - 6527632, - 6577264, - 6640960, - 6527104, - 6527616, - 6566912, - 6640032, - 6637632, - 6527088, - 6617568, - 6603792, - 6566864, - 6568544, - 6676128, - 5390640, - 6703264, - 6567232, - 6653296, - 6653312, - 6568608, - 6687856, - 6689072, - 6703232, - 6703248, - 6703424, - 6611728, - 6665648, - 6665696, - 6676160, - 6682544, - 5390656, - 6681888, - 6683296, - 6683376, - 6678784, - 6703168, - 6612192, - 6704752, - 4730112, - 6724560, - 6703184, - 6704688, - 6705104, - 6706544, - 6570592, - 6589248, - 6567152, - 6595648, - 6571184, - 6574272, - 6575408, - 6571216, - 6567216, - 6567216, - 6578480, - 6706624, - 6722368, - 6578880, - 6567216, - 6638448, - 6567264, - 6685728, - 6605184, - 6571936, - 6567216, - 6732128, - 6614160, + "vtable_address": 9665440, + "methods": [ + 6530544, + 6573616, + 6614528, + 6614544, + 6529808, + 6529824, + 6529856, + 6656880, + 6529840, + 6656896, + 6656912, + 5393120, + 6551008, + 6724656, + 6529872, + 6529888, + 6656784, + 6656752, + 6529904, + 6529936, 6614512, - 6614272, - 6246960, - 6567216, - 6567184, - 6613936, - 6567216, - 6567216, - 6612160, - 6704272, - 6703872, - 6613664, - 6703104, - 6703136, - 6662064, - 6611520, - 6458400, - 6685344, - 6672704, - 6656640, - 6662336, - 6653600, - 6653328, - 6615328, - 6483296, - 6453776, - 6455824, - 6452544, - 6707008, - 6704672, - 6656096 + 6703488, + 6699600, + 6713152, + 6657072, + 6709376, + 6614720, + 5463936, + 6699056, + 6656960, + 6640304, + 6570608, + 6573168, + 6616816, + 6616752, + 6615072, + 6617776, + 6579744, + 6642176, + 6614432, + 6616784, + 6616784, + 4732560, + 6614880, + 6656832, + 6554016, + 6614592, + 6614656, + 6530608, + 6530592, + 6530512, + 6580144, + 6643904, + 6529984, + 6530496, + 6569920, + 6642976, + 6640576, + 6529968, + 6620512, + 6606736, + 6569872, + 6571616, + 6677232, + 5393136, + 6699264, + 6570240, + 6656240, + 6656256, + 6571680, + 6683696, + 6684912, + 6699232, + 6699248, + 6699664, + 6614672, + 6666480, + 6666528, + 6677280, + 6708464, + 5393152, + 6666592, + 6667072, + 6709216, + 6679904, + 6699168, + 6615136, + 6701200, + 4732480, + 6725728, + 6699184, + 6701136, + 6701552, + 6702992, + 6573664, + 6592192, + 6570160, + 6598592, + 6574256, + 6577152, + 6578288, + 6574288, + 6570224, + 6570224, + 6581360, + 6703072, + 6723520, + 6581760, + 6570224, + 6641392, + 6570272, + 6681568, + 6608128, + 6575008, + 6570224, + 6733344, + 6617104, + 6617456, + 6617216, + 6249456, + 6570224, + 6570192, + 6616880, + 6570224, + 6570224, + 6615104, + 6700656, + 6700880, + 6616608, + 6699104, + 6699136, + 6662896, + 6614464, + 6461472, + 6681184, + 6672736, + 6657472, + 6663168, + 6656544, + 6656272, + 6618272, + 6486368, + 6456816, + 6458896, + 6455584, + 6703456, + 6701120, + 6700112 ], "bases": [ { @@ -38249,9 +38179,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 9663936, + "vtable_address": 9666640, "methods": [ - 6612240 + 6615184 ], "bases": [ { @@ -38344,11 +38274,11 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 9663960, + "vtable_address": 9666664, "methods": [ - 6689056, - 6689120, - 6605168 + 6684896, + 6684960, + 6608112 ], "bases": [ { @@ -38441,9 +38371,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 9664000, + "vtable_address": 9666704, "methods": [ - 6704928 + 6701376 ], "bases": [ { @@ -38536,9 +38466,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 9664024, + "vtable_address": 9666728, "methods": [ - 6527344 + 6530224 ], "bases": [ { @@ -38631,9 +38561,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 9664048, + "vtable_address": 9666752, "methods": [ - 6656352 + 6700368 ], "bases": [ { @@ -38726,75 +38656,75 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 9655816, - "methods": [ - 6527664, - 6570544, - 6611584, - 6611600, - 6526928, - 6526944, - 6526976, - 4730256, - 6526960, - 4730256, - 5196448, - 5390592, - 6548128, - 6587552, - 6526992, - 6527008, - 6446784, - 6446784, - 6527024, - 6527056, - 6611568, - 6528848, - 4730112, - 4730112, - 4730112, - 6611920, - 6611776, - 5461440, - 4730112, - 6526880, - 6637360, - 6567600, - 6570096, - 6613872, - 6613808, - 6612128, - 6614832, - 6576864, - 6639232, - 6611488, - 6613840, - 6613840, - 4730192, - 6611936, - 5196640, - 6550960, - 6611648, - 6611712, - 6527728, - 6527712, - 6527632, - 6577264, - 6640960, - 6527104, - 6527616, - 6566912, - 6640032, - 6637632, - 6527088, - 6617568, - 6603792, - 6566864, - 6568544, - 6527072, - 5196640, - 5390608, - 6567232 + "vtable_address": 9659016, + "methods": [ + 6530544, + 6573616, + 6614528, + 6614544, + 6529808, + 6529824, + 6529856, + 4732608, + 6529840, + 4732608, + 5198944, + 5393088, + 6551008, + 6590432, + 6529872, + 6529888, + 6449824, + 6449824, + 6529904, + 6529936, + 6614512, + 6531728, + 4732480, + 4732480, + 4732480, + 6614864, + 6614720, + 5463936, + 4732480, + 6529760, + 6640304, + 6570608, + 6573168, + 6616816, + 6616752, + 6615072, + 6617776, + 6579744, + 6642176, + 6614432, + 6616784, + 6616784, + 4732560, + 6614880, + 5199136, + 6554016, + 6614592, + 6614656, + 6530608, + 6530592, + 6530512, + 6580144, + 6643904, + 6529984, + 6530496, + 6569920, + 6642976, + 6640576, + 6529968, + 6620512, + 6606736, + 6569872, + 6571616, + 6529952, + 5199136, + 5393104, + 6570240 ], "bases": [ { @@ -38866,9 +38796,9 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 9657008, + "vtable_address": 9660208, "methods": [ - 6612240 + 6615184 ], "bases": [ { @@ -38940,7 +38870,7 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 9657032, + "vtable_address": 9660232, "methods": [], "bases": [ { @@ -39012,9 +38942,9 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 9657072, + "vtable_address": 9660272, "methods": [ - 6568768 + 6571840 ], "bases": [ { @@ -39086,9 +39016,9 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 9657096, + "vtable_address": 9660296, "methods": [ - 6527344 + 6530224 ], "bases": [ { @@ -39158,163 +39088,91 @@ } } }, - { - "type_name": "CNetworkGameClientBase", - "vtable_address": 9690304, - "methods": [], - "bases": [ - { - "type_name": "INetworkGameClient", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "CUtlSlot", - "details": { - "Itanium": { - "offset": 8, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "INetworkMessageProcessingPreFilter", - "details": { - "Itanium": { - "offset": 48, - "flags": 0, - "bases": [] - } - } - }, - { - "type_name": "IConnectionlessPacketHandler", - "details": { - "Itanium": { - "offset": 56, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "INetworkChannelNotify", - "details": { - "Itanium": { - "offset": 64, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "IGameEventWatcher", - "details": { - "Itanium": { - "offset": 72, - "flags": 2, - "bases": [] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 1990544 - } - } - }, { "type_name": "CNetworkGameServer", - "vtable_address": 9616896, - "methods": [ - 6907488, - 6866624, - 6866560, - 6892672, - 6925696, - 6867232, - 6867248, - 6867216, - 6790032, - 6866320, - 6867296, - 6790048, - 6866048, - 6871872, - 6870816, - 6867408, - 6872464, - 6958256, - 6835232, - 6832544, - 6824832, - 6867360, - 6871472, - 6868480, - 6867312, - 6790064, - 6867344, - 6866288, - 6983184, - 6984448, - 6866400, - 6825856, - 6824768, - 6856288, - 6882720, - 6971712, + "vtable_address": 9620096, + "methods": [ + 6901408, + 6862032, + 6861968, + 6892544, + 6920832, + 6862624, + 6862640, + 6862608, + 6787648, + 6861776, + 6862688, + 6787664, + 6861504, + 6898832, + 6899792, + 6898192, + 6908976, + 6973328, + 6831968, + 6826752, + 6818240, + 6862752, + 6866000, + 6863632, + 6862704, + 6787680, + 6862736, + 6861744, + 6975968, + 6977248, + 6898144, + 6819264, + 6818160, + 6857568, + 6882560, + 6955520, + 6821840, + 6821472, + 6923808, + 6925680, + 6898112, + 6925296, + 6898128, + 6787712, + 6887584, + 6787840, + 6787728, + 6862304, + 6873568, + 6862240, + 6898768, + 6864592, + 6898416, + 6898448, + 6954608, + 6958656, + 6899424, + 6897104, + 6841728, + 6817296, + 4732480, + 6942096, + 6948416, + 6787760, + 6862768, + 6861520, + 6874624, + 6787792, + 6902016, + 6798304, + 6902656, + 6859744, 6827632, - 6827264, - 6893664, - 6900128, - 6867376, - 6893264, - 6867392, - 6790096, - 6887744, - 6790224, - 6790112, - 6866912, - 6879600, - 6866832, - 6906016, - 6869520, - 6867632, - 6867664, - 6970368, - 6974896, - 6906224, - 6899120, - 6840448, - 6823904, - 4730112, - 6951792, - 6960896, - 6790144, - 6826400, - 6866064, - 6860224, - 6790176, - 6908096, - 6798496, - 6908736, - 6858464, - 6833392, - 6868608, - 6958000, - 6816368, - 6937456, - 6909344, - 6867712, - 6868256, - 6868080 + 6863680, + 6948400, + 6834096, + 6940080, + 6903264, + 6862864, + 6863408, + 6863232 ], "bases": [ { @@ -39367,11 +39225,11 @@ }, { "type_name": "CNetworkGameServer", - "vtable_address": 9617560, + "vtable_address": 9620760, "methods": [ - 6961104, - 6975056, - 6854480 + 6948624, + 6958816, + 6855760 ], "bases": [ { @@ -39424,10 +39282,10 @@ }, { "type_name": "CNetworkGameServer", - "vtable_address": 9617600, + "vtable_address": 9620800, "methods": [ - 6824640, - 6790128 + 6818032, + 6787744 ], "bases": [ { @@ -39480,62 +39338,62 @@ }, { "type_name": "CNetworkGameServerBase", - "vtable_address": 9670376, + "vtable_address": 9670000, "methods": [ - 6873408, - 6866624, - 6866560, - 6892672, - 6869488, - 6867232, - 6867248, - 6867216, - 6790032, - 6866320, - 6867296, - 6790048, - 6866048, - 6871872, - 6870816, - 6867408, - 6872464, - 6877536, - 6835232, - 6832544, - 6824832, - 6867360, - 6871472, - 6868480, - 6867312, - 6790064, - 6867344, - 6866288, - 4773136, - 4773136, - 6866400, - 6825856, - 6824768, - 6856288, - 6882720, - 6246960, - 6827632, - 6827264, - 6893664, - 6900128, - 6867376, - 6893264, - 6867392, - 6790096, - 6887744, - 6790224, - 6790112, - 6866912, - 6879600, - 6866832, - 6790016, - 6869520, - 6867632, - 6867664 + 6868464, + 6862032, + 6861968, + 6892544, + 6864560, + 6862624, + 6862640, + 6862608, + 6787648, + 6861776, + 6862688, + 6787664, + 6861504, + 6898832, + 6899792, + 6898192, + 6908976, + 6903712, + 6831968, + 6826752, + 6818240, + 6862752, + 6866000, + 6863632, + 6862704, + 6787680, + 6862736, + 6861744, + 4775568, + 4775568, + 6898144, + 6819264, + 6818160, + 6857568, + 6882560, + 6249456, + 6821840, + 6821472, + 6923808, + 6925680, + 6898112, + 6925296, + 6898128, + 6787712, + 6887584, + 6787840, + 6787728, + 6862304, + 6873568, + 6862240, + 6787632, + 6864592, + 6898416, + 6898448 ], "bases": [ { @@ -39577,7 +39435,7 @@ }, { "type_name": "CNetworkGameServerBase", - "vtable_address": 9671040, + "vtable_address": 9670664, "methods": [], "bases": [ { @@ -39619,10 +39477,10 @@ }, { "type_name": "CNetworkGameServerBase", - "vtable_address": 9671080, + "vtable_address": 9670704, "methods": [ - 6824640, - 6790128 + 6818032, + 6787744 ], "bases": [ { @@ -39664,42 +39522,42 @@ }, { "type_name": "CNetworkP2PService", - "vtable_address": 9634176, - "methods": [ - 6093760, - 6093888, - 4737920, - 6091088, - 6100768, - 4730192, - 6088160, - 5307648, - 6094096, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5148704, - 5507776, - 5507792, - 5507808, - 6122432, - 5507824, - 5507840, - 6094752, - 6099744, - 6092608, - 6096800, - 6088304, - 5461440, - 6098464, - 6093312, - 6087984, - 6092624, - 6092912, - 5461440 + "vtable_address": 9637376, + "methods": [ + 6096320, + 6096448, + 4740256, + 6093648, + 6103328, + 4732560, + 6090720, + 5310144, + 6096656, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5151232, + 5510272, + 5510288, + 5510304, + 6124928, + 5510320, + 5510336, + 6097312, + 6102304, + 6095168, + 6099360, + 6090864, + 5463936, + 6101024, + 6095872, + 6090544, + 6095184, + 6095472, + 5463936 ], "bases": [ { @@ -39830,19 +39688,19 @@ }, { "type_name": "CNetworkServerCreatePrerequisites", - "vtable_address": 9608696, - "methods": [ - 5865840, - 5898832, - 5262448, - 5262464, - 5269568, - 5877808, - 5279072, - 5269232, - 5268224, - 5899696, - 5266480 + "vtable_address": 9611896, + "methods": [ + 5868336, + 5901328, + 5264960, + 5264976, + 5272096, + 5880304, + 5281600, + 5271760, + 5270752, + 5902192, + 5269008 ], "bases": [ { @@ -39885,10 +39743,10 @@ }, { "type_name": "CNetworkServerCreatePrerequisites", - "vtable_address": 9608800, + "vtable_address": 9612000, "methods": [ - 5269392, - 5268736 + 5271920, + 5271264 ], "bases": [ { @@ -39931,56 +39789,56 @@ }, { "type_name": "CNetworkServerService", - "vtable_address": 9618080, - "methods": [ - 5883024, - 5883136, - 4737920, - 5888448, - 5878768, - 4730192, - 4730208, - 5307648, - 5883344, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5880864, - 5878752, - 5507776, - 5507792, - 5507808, - 5846064, - 5507824, - 5507840, - 5886592, - 5887280, - 5877856, - 5878992, - 5877872, - 5887424, - 5877952, - 5895184, - 5879024, - 5881712, - 5881136, - 5882336, - 5879056, - 5879072, - 5879088, - 5879104, - 5898704, - 5877824, - 5879184, - 5893056, - 5894224, - 5877984, - 5881232, - 5879488, - 5879504, - 5901872 + "vtable_address": 9621280, + "methods": [ + 5885520, + 5885632, + 4740256, + 5890944, + 5881264, + 4732560, + 5264864, + 5310144, + 5885840, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5883360, + 5881248, + 5510272, + 5510288, + 5510304, + 5848560, + 5510320, + 5510336, + 5889088, + 5889776, + 5880352, + 5881488, + 5880368, + 5889920, + 5880448, + 5897680, + 5881520, + 5884208, + 5883632, + 5884832, + 5881552, + 5881568, + 5881584, + 5881600, + 5901200, + 5880320, + 5881680, + 5895552, + 5896720, + 5880480, + 5883728, + 5881984, + 5882000, + 5904368 ], "bases": [ { @@ -40111,9 +39969,9 @@ }, { "type_name": "CNetworkServerService", - "vtable_address": 9618480, + "vtable_address": 9621680, "methods": [ - 5904784 + 5907280 ], "bases": [ { @@ -40244,56 +40102,56 @@ }, { "type_name": "CNetworkServerSpawnGroup", - "vtable_address": 9672144, - "methods": [ - 5541712, - 5966848, - 6749456, - 6526896, - 6749488, - 6749504, - 6749552, - 6749584, - 6526912, - 6749536, - 7255008, - 6749616, - 7287040, - 6957728, - 5149472, - 5196544, - 6749632, - 6749648, - 6785920, - 6749744, - 6968192, - 6957760, - 6957744, - 7276288, - 6980096, - 6749664, - 6749680, - 6749696, - 5148688, - 6749712, - 6749728, - 7211232, - 4730192, - 6990592, - 6957776, - 6971264, - 6968176, - 7212160, - 6749440, - 7212208, - 7273072, - 7254784, - 6968960, - 6958144, - 6957808, - 6966272, - 7283968, - 6957792 + "vtable_address": 9675120, + "methods": [ + 5544208, + 5969344, + 6782528, + 6529776, + 6782560, + 6782576, + 6782624, + 6782656, + 6529792, + 6782608, + 7242976, + 6782688, + 7273776, + 6948064, + 5152000, + 5199040, + 6782704, + 6782720, + 6783536, + 6782816, + 6989968, + 6948096, + 6948080, + 7268736, + 7007648, + 6782736, + 6782752, + 6782768, + 5151216, + 6782784, + 6782800, + 7241376, + 4732560, + 7014560, + 6948112, + 6995104, + 6989952, + 7242304, + 6782512, + 7242352, + 7265552, + 7242752, + 6991248, + 6990736, + 6984128, + 6990912, + 7279776, + 6948128 ], "bases": [ { @@ -40346,9 +40204,9 @@ }, { "type_name": "CNetworkServerSpawnGroup", - "vtable_address": 9672544, + "vtable_address": 9675520, "methods": [ - 7211936 + 7242080 ], "bases": [ { @@ -40401,10 +40259,10 @@ }, { "type_name": "CNetworkServerSpawnGroup", - "vtable_address": 9672568, + "vtable_address": 9675544, "methods": [ - 6749424, - 6992512 + 6782496, + 7016480 ], "bases": [ { @@ -40457,19 +40315,19 @@ }, { "type_name": "CNetworkServerSpawnGroupCreatePrerequisites", - "vtable_address": 9672600, - "methods": [ - 6973920, - 6975216, - 5262448, - 5262464, - 5269568, - 5263280, - 5279072, - 5269232, - 5268224, - 6976208, - 5266480 + "vtable_address": 9675576, + "methods": [ + 6995536, + 7004928, + 5264960, + 5264976, + 5272096, + 5265808, + 5281600, + 5271760, + 5270752, + 7005920, + 5269008 ], "bases": [ { @@ -40512,10 +40370,10 @@ }, { "type_name": "CNetworkServerSpawnGroupCreatePrerequisites", - "vtable_address": 9672704, + "vtable_address": 9675680, "methods": [ - 5269392, - 5268736 + 5271920, + 5271264 ], "bases": [ { @@ -40558,15 +40416,15 @@ }, { "type_name": "CNetworkServerSpawnGroup_AllocateEntitiesPrerequisite", - "vtable_address": 9712776, + "vtable_address": 9716008, "methods": [ - 7006896, - 7016768, - 5262448, - 5262464, - 6969504, - 5263152, - 5279008 + 6996560, + 7006960, + 5264960, + 5264976, + 6991792, + 5265680, + 5281536 ], "bases": [ { @@ -40599,15 +40457,15 @@ }, { "type_name": "CNetworkServerSpawnGroup_AllocatePrerequisite", - "vtable_address": 9712848, + "vtable_address": 9716080, "methods": [ - 7006912, - 7016784, - 5262448, - 5262464, - 6969888, - 5263136, - 5279008 + 6996576, + 7006976, + 5264960, + 5264976, + 6992448, + 5265664, + 5281536 ], "bases": [ { @@ -40640,15 +40498,15 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadEntitiesPrerequisite", - "vtable_address": 9712368, + "vtable_address": 9715600, "methods": [ - 7006880, - 7016752, - 5262448, - 5262464, - 6997648, - 5263184, - 5279008 + 6996544, + 7006944, + 5264960, + 5264976, + 6988240, + 5265712, + 5281536 ], "bases": [ { @@ -40681,18 +40539,18 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadPreviousLevelPrerequisite", - "vtable_address": 9712584, + "vtable_address": 9715816, "methods": [ - 7020800, - 7021328, - 5262448, - 5262464, - 6998784, - 5263264, - 5279008, - 6957984, - 6993664, - 6997504 + 7016880, + 7017408, + 5264960, + 5264976, + 6993216, + 5265792, + 5281536, + 6984304, + 6984320, + 6988096 ], "bases": [ { @@ -40736,18 +40594,18 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadSaveGamePrerequisite", - "vtable_address": 9712680, + "vtable_address": 9715912, "methods": [ - 7021856, - 7022384, - 5262448, - 5262464, - 6998784, - 5263248, - 5279008, - 6957984, - 6999248, - 6997504 + 7017936, + 7018464, + 5264960, + 5264976, + 6993216, + 5265776, + 5281536, + 6984304, + 6992176, + 6988096 ], "bases": [ { @@ -40791,7 +40649,7 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadSaveGamePrerequisiteBase", - "vtable_address": 9681216, + "vtable_address": 9683856, "methods": [], "bases": [ { @@ -40824,17 +40682,17 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 9677376, + "vtable_address": 9684064, "methods": [ - 6993280, - 6993616, - 5262448, - 5262464, - 6980352, - 5263168, - 5279008, - 6961248, - 6967792 + 7016496, + 7016832, + 5264960, + 5264976, + 7008384, + 5265696, + 5281536, + 6989376, + 6989568 ], "bases": [ { @@ -40888,10 +40746,10 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 9677464, + "vtable_address": 9684152, "methods": [ - 6970016, - 6967984 + 6992576, + 6989760 ], "bases": [ { @@ -40945,15 +40803,15 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForChildSpawnGroups", - "vtable_address": 9712440, + "vtable_address": 9715672, "methods": [ - 7006848, - 7016624, - 5262448, - 5262464, - 6997808, - 5263232, - 5279008 + 6996512, + 7006816, + 5264960, + 5264976, + 6988400, + 5265760, + 5281536 ], "bases": [ { @@ -40986,15 +40844,15 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForClients", - "vtable_address": 9681312, + "vtable_address": 9683952, "methods": [ - 6996864, - 7016656, - 5262448, - 5262464, - 6999536, - 5263200, - 5279008 + 6987904, + 7006848, + 5264960, + 5264976, + 6993696, + 5265728, + 5281536 ], "bases": [ { @@ -41027,15 +40885,15 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForOwnerSpawnGroupPrerequisite", - "vtable_address": 9712512, + "vtable_address": 9715744, "methods": [ - 7006864, - 7016640, - 5262448, - 5262464, - 7000768, - 5263216, - 5279008 + 6996528, + 7006832, + 5264960, + 5264976, + 6984528, + 5265744, + 5281536 ], "bases": [ { @@ -41068,33 +40926,33 @@ }, { "type_name": "CNetworkService", - "vtable_address": 9609080, - "methods": [ - 5838704, - 5839264, - 4737920, - 5846000, - 5834944, - 4730192, - 5845728, - 5307648, - 5839664, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5148704, - 5507776, - 5507792, - 5507808, - 5390416, - 5507824, - 5507840, - 5834880, - 5865040, - 5857984 + "vtable_address": 9612280, + "methods": [ + 5841200, + 5841760, + 4740256, + 5848496, + 5837440, + 4732560, + 5848224, + 5310144, + 5842160, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5151232, + 5510272, + 5510288, + 5510304, + 5392912, + 5510320, + 5510336, + 5837376, + 5867536, + 5860480 ], "bases": [ { @@ -41215,18 +41073,18 @@ }, { "type_name": "CNetworkStringDict", - "vtable_address": 9686256, + "vtable_address": 9688624, "methods": [ - 7301664, - 7311664, - 7296080, - 7301872, - 7296096, - 7296128, - 7316992, - 7313440, - 7296176, - 7296176 + 7291328, + 7299984, + 7282336, + 7291536, + 7282352, + 7282384, + 7305792, + 7304192, + 7282432, + 7282432 ], "bases": [ { @@ -41248,26 +41106,26 @@ }, { "type_name": "CNetworkStringTable", - "vtable_address": 9686056, - "methods": [ - 7312288, - 7313024, - 7296224, - 7296208, - 7335840, - 7296256, - 6447152, - 7296320, - 7314672, - 7335424, - 7344784, - 7335664, - 7358864, - 7301984, - 7311856, - 7296064, - 6281360, - 7296288 + "vtable_address": 9692224, + "methods": [ + 7345920, + 7346656, + 7323088, + 7323072, + 7323152, + 7323120, + 6450192, + 7323408, + 7343440, + 7323472, + 7336400, + 7323200, + 7344336, + 7323776, + 7345488, + 7282320, + 6283920, + 7323376 ], "bases": [ { @@ -41289,27 +41147,27 @@ }, { "type_name": "CNetworkStringTableContainer", - "vtable_address": 9689840, + "vtable_address": 9691888, "methods": [ - 7338272, - 7338400, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307648, - 7338608, - 4773136, - 4773088, - 7353280, - 7354048, - 7357968, - 7352800, - 7336720, - 7335904, - 7335936, - 7335888 + 7327152, + 7327264, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310144, + 7327472, + 4775568, + 4775520, + 7347168, + 7347936, + 7341504, + 7346704, + 7324336, + 7323728, + 7323760, + 7323712 ], "bases": [ { @@ -41408,9 +41266,9 @@ }, { "type_name": "COutOfPVSDeltaEntityHeaderWriter", - "vtable_address": 9713240, + "vtable_address": 9716472, "methods": [ - 7075904 + 7064672 ], "bases": [ { @@ -41432,20 +41290,20 @@ }, { "type_name": "CP4File", - "vtable_address": 9635368, - "methods": [ - 8635120, - 8635520, - 8623840, - 8623904, - 8649280, - 8649344, - 8649408, - 8623760, - 8649488, - 8649552, - 8649616, - 8657504 + "vtable_address": 9638568, + "methods": [ + 8638320, + 8638720, + 8627040, + 8627104, + 8652480, + 8652544, + 8652608, + 8626960, + 8652688, + 8652752, + 8652816, + 8660704 ], "bases": [], "model": { @@ -41456,40 +41314,40 @@ }, { "type_name": "CPVS", - "vtable_address": 9599984, - "methods": [ - 5543600, - 5543648, - 5548784, - 5554880, - 5544000, - 5554592, - 5541776, - 5541792, - 5561504, - 5542112, - 5542192, - 5544160, - 5544240, - 5541968, - 5542224, - 5542352, - 5544976, - 5554944, - 5542496, - 5544928, - 5562048, - 5560704, - 5547616, - 5544656, - 5544880, - 5548400, - 5542624, - 5542720, - 5542928, - 5542944, - 5545056, - 5543824 + "vtable_address": 9603184, + "methods": [ + 5546096, + 5546144, + 5551280, + 5557376, + 5546496, + 5557088, + 5544272, + 5544288, + 5564000, + 5544608, + 5544688, + 5546656, + 5546736, + 5544464, + 5544720, + 5544848, + 5547472, + 5557440, + 5544992, + 5547424, + 5564544, + 5563200, + 5550112, + 5547152, + 5547376, + 5550896, + 5545120, + 5545216, + 5545424, + 5545440, + 5547552, + 5546320 ], "bases": [ { @@ -41511,10 +41369,10 @@ }, { "type_name": "CPanoramaInputHandler", - "vtable_address": 9604160, + "vtable_address": 9607360, "methods": [ - 5704000, - 5149504 + 5706496, + 5152032 ], "bases": [ { @@ -41547,12 +41405,12 @@ }, { "type_name": "CPanoramaProceduralLayer", - "vtable_address": 9604112, + "vtable_address": 9607312, "methods": [ - 7598880, - 7570896, - 7612720, - 5703968 + 7597440, + 7609232, + 7613152, + 5706464 ], "bases": [ { @@ -41574,11 +41432,11 @@ }, { "type_name": "CParallelProcessorAbstract, 1> >", - "vtable_address": 9584448, + "vtable_address": 9587648, "methods": [ - 5276224, - 5286288, - 5267328 + 5278752, + 5288816, + 5269856 ], "bases": [ { @@ -41610,11 +41468,11 @@ }, { "type_name": "CParallelProcessorAbstract, 1> >", - "vtable_address": 9584408, + "vtable_address": 9587608, "methods": [ - 5276240, - 5286304, - 5267632 + 5278768, + 5288832, + 5270160 ], "bases": [ { @@ -41646,11 +41504,11 @@ }, { "type_name": "CParallelProcessorAbstract, 1> >", - "vtable_address": 9651600, + "vtable_address": 9654800, "methods": [ - 6447744, - 6499840, - 6486288 + 6496688, + 6502912, + 6489360 ], "bases": [ { @@ -41682,13 +41540,13 @@ }, { "type_name": "CPipedCommandLogRedirector", - "vtable_address": 9607888, + "vtable_address": 9611088, "methods": [ - 5804256, - 4730192, - 5148688, - 5148688, - 5148688 + 5806752, + 4732560, + 5151216, + 5151216, + 5151216 ], "bases": [ { @@ -41710,15 +41568,15 @@ }, { "type_name": "CPlayDemoClientPrerequisite", - "vtable_address": 9629328, + "vtable_address": 9632528, "methods": [ - 6005104, - 6018032, - 5262448, - 5262464, - 6013520, - 6003232, - 5279008 + 6007600, + 6020528, + 5264960, + 5264976, + 6016016, + 6005728, + 5281536 ], "bases": [ { @@ -41740,20 +41598,20 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 9705688, - "methods": [ - 8360192, - 8462800, - 8492304, - 8462704, - 8428272, - 8426896, - 5461440, - 8425760, - 4730112, - 4730112, - 5148704, - 5148704 + "vtable_address": 9708952, + "methods": [ + 8372224, + 8469824, + 8496112, + 8469728, + 8436560, + 8435648, + 5463936, + 8402000, + 4732480, + 4732480, + 5151232, + 5151232 ], "bases": [], "model": { @@ -41764,7 +41622,7 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 9789024, + "vtable_address": 9792224, "methods": [], "bases": [], "model": { @@ -41775,7 +41633,7 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 9789152, + "vtable_address": 9792352, "methods": [], "bases": [], "model": { @@ -41786,20 +41644,20 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 9705576, + "vtable_address": 9708840, "methods": [ - 8360208, - 8463152, - 8494736, - 8462720, - 8428272, - 8426896, - 5461440, - 8425760, - 4730112, - 4730112, - 5148704, - 5148704 + 8372240, + 8470176, + 8498544, + 8469744, + 8436560, + 8435648, + 5463936, + 8402000, + 4732480, + 4732480, + 5151232, + 5151232 ], "bases": [ { @@ -41821,7 +41679,7 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 9789632, + "vtable_address": 9792832, "methods": [], "bases": [], "model": { @@ -41832,23 +41690,23 @@ }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 9705440, - "methods": [ - 8360224, - 8463504, - 8496160, - 8462736, - 8428272, - 8426896, - 5461440, - 8425760, - 4730112, - 4730112, - 5148704, - 5148704, - 4730208, - 6527424, - 4730112 + "vtable_address": 9708704, + "methods": [ + 8372256, + 8470528, + 8499968, + 8469760, + 8436560, + 8435648, + 5463936, + 8402000, + 4732480, + 4732480, + 5151232, + 5151232, + 5264864, + 6530304, + 4732480 ], "bases": [ { @@ -41870,20 +41728,20 @@ }, { "type_name": "CPulseCell_Inflow_BaseEntrypoint", - "vtable_address": 9705328, + "vtable_address": 9708592, "methods": [ - 8360240, - 8469504, - 8463856, - 8462752, - 8428272, - 8426896, - 5461440, - 8425760, - 4730112, - 4730112, - 5148704, - 5148704 + 8372272, + 8476512, + 8504256, + 8469776, + 8436560, + 8435648, + 5463936, + 8402000, + 4732480, + 4732480, + 5151232, + 5151232 ], "bases": [ { @@ -41916,7 +41774,7 @@ }, { "type_name": "CPulseCell_Inflow_BaseEntrypoint", - "vtable_address": 9788528, + "vtable_address": 9791728, "methods": [], "bases": [], "model": { @@ -41927,20 +41785,20 @@ }, { "type_name": "CPulseCell_Inflow_Method", - "vtable_address": 9705960, + "vtable_address": 9709304, "methods": [ - 8360256, - 8500144, - 8524224, - 8462768, - 8428720, - 8426896, - 8438848, - 8425760, - 4730112, - 4730112, - 5148704, - 5148704 + 8372288, + 8507824, + 8537280, + 8469792, + 8437200, + 8435648, + 8450112, + 8402000, + 4732480, + 4732480, + 5151232, + 5151232 ], "bases": [ { @@ -41984,36 +41842,36 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 9702280, - "methods": [ - 8417008, - 8418016, - 8360016, - 8376784, - 8377744, - 8360032, - 8360064, - 8360096, - 8360128, - 8360096, - 8360128, - 8411168, - 8404256, - 8410400, - 8422800, - 8401712, - 8408064, - 8412288, - 8419152, - 8423808, - 8393792, - 8425696, - 8394048, - 8402448, - 8390816, - 8409152, - 8390640, - 8390656 + "vtable_address": 9705584, + "methods": [ + 8425872, + 8426880, + 8372048, + 8386048, + 8387008, + 8372064, + 8372096, + 8372128, + 8372160, + 8372128, + 8372160, + 8388352, + 8372992, + 8385824, + 8400832, + 8379616, + 8419520, + 8421152, + 8429008, + 8432672, + 8405088, + 8434560, + 8405344, + 8411216, + 8404944, + 8420608, + 8401824, + 8401840 ], "bases": [ { @@ -42066,13 +41924,13 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 9702520, + "vtable_address": 9705824, "methods": [ - 4730208, - 4730208, - 8360048, - 8360080, - 4730208 + 5264864, + 5264864, + 8372080, + 8372112, + 5264864 ], "bases": [ { @@ -42125,23 +41983,23 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 9702576, - "methods": [ - 8412256, - 8404432, - 8424880, - 8394016, - 8425728, - 8410512, - 8423776, - 8360112, - 8360144, - 8360160, - 8360176, - 8394496, - 8402848, - 8402080, - 8408544 + "vtable_address": 9705880, + "methods": [ + 8389440, + 8389504, + 8433744, + 8405312, + 8434592, + 8385936, + 8401808, + 8372144, + 8372176, + 8372192, + 8372208, + 8405792, + 8411616, + 8379984, + 8420000 ], "bases": [ { @@ -42194,9 +42052,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 9702152, + "vtable_address": 9705456, "methods": [ - 8359968 + 8372000 ], "bases": [ { @@ -42313,9 +42171,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 9702176, + "vtable_address": 9705480, "methods": [ - 8359888 + 8371920 ], "bases": [ { @@ -42432,9 +42290,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 9702200, + "vtable_address": 9705504, "methods": [ - 8360848 + 8372368 ], "bases": [ { @@ -42551,10 +42409,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 9702224, + "vtable_address": 9705528, "methods": [ - 8359904, - 8359936 + 8371936, + 8371968 ], "bases": [ { @@ -42671,9 +42529,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 9702256, + "vtable_address": 9705560, "methods": [ - 8363504 + 8372432 ], "bases": [ { @@ -42790,9 +42648,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 9702712, + "vtable_address": 9706016, "methods": [ - 8359968 + 8372000 ], "bases": [ { @@ -42888,9 +42746,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 9702736, + "vtable_address": 9706040, "methods": [ - 8359888 + 8371920 ], "bases": [ { @@ -42986,9 +42844,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 9702760, + "vtable_address": 9706064, "methods": [ - 8360912 + 8372944 ], "bases": [ { @@ -43084,10 +42942,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 9702784, + "vtable_address": 9706088, "methods": [ - 8359904, - 8359936 + 8371936, + 8371968 ], "bases": [ { @@ -43183,16 +43041,16 @@ }, { "type_name": "CPulseScopeEnumeratingTypeService", - "vtable_address": 9714440, + "vtable_address": 9717672, "methods": [ - 8359984, - 4730192, - 7681216, - 8360000, - 7681216, - 8370576, - 8360784, - 8382944 + 8372016, + 4732560, + 7662464, + 8372032, + 7662464, + 8381088, + 8372304, + 8389968 ], "bases": [ { @@ -43225,11 +43083,11 @@ }, { "type_name": "CRConClient", - "vtable_address": 9654688, + "vtable_address": 9657888, "methods": [ - 6484608, - 6484624, - 6484640 + 6487680, + 6487696, + 6487712 ], "bases": [ { @@ -43251,11 +43109,11 @@ }, { "type_name": "CRConServer", - "vtable_address": 9682928, + "vtable_address": 9686560, "methods": [ - 7163952, - 7202256, - 7184448 + 7154096, + 7195600, + 7175472 ], "bases": [ { @@ -43277,29 +43135,29 @@ }, { "type_name": "CRConVProfExport", - "vtable_address": 9654472, - "methods": [ - 6489328, - 6489440, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 6486192, - 6489648, - 4773136, - 4773088, - 5398912, - 5398912, - 5398912, - 5398912, - 6280768, - 6484560, - 6486208, - 6487056, - 6500096, - 6496096 + "vtable_address": 9657672, + "methods": [ + 6492400, + 6492512, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 6489264, + 6492720, + 4775568, + 4775520, + 5401408, + 5401408, + 5401408, + 5401408, + 6283328, + 6487632, + 6489280, + 6490128, + 6503168, + 6499168 ], "bases": [ { @@ -43397,10 +43255,10 @@ }, { "type_name": "CRConVProfExport", - "vtable_address": 9654656, + "vtable_address": 9657856, "methods": [ - 6502608, - 6487232 + 6505680, + 6490304 ], "bases": [ { @@ -43498,24 +43356,24 @@ }, { "type_name": "CRealMemoryDemoBuffer", - "vtable_address": 9559216, - "methods": [ - 4751248, - 4751360, - 4759680, - 4730128, - 4729920, - 4732240, - 4732208, - 4730064, - 4730080, - 4730096, - 4730192, - 4732176, - 4730480, - 4732256, - 4731184, - 4730496 + "vtable_address": 9562408, + "methods": [ + 4753664, + 4753776, + 4762112, + 4732496, + 4732288, + 4734592, + 4734560, + 4732432, + 4732448, + 4732464, + 4732560, + 4734528, + 4732832, + 4734608, + 4733536, + 4732848 ], "bases": [ { @@ -43537,10 +43395,10 @@ }, { "type_name": "CRefCounted1 >", - "vtable_address": 9671112, + "vtable_address": 9670736, "methods": [ - 6795920, - 6803856 + 6795728, + 6804080 ], "bases": [ { @@ -43572,12 +43430,12 @@ }, { "type_name": "CRefreshRateGetter", - "vtable_address": 9587472, + "vtable_address": 9590672, "methods": [ - 4730192, - 5399184, - 5399184, - 5399200 + 4732560, + 5401680, + 5401680, + 5401696 ], "bases": [ { @@ -43599,17 +43457,17 @@ }, { "type_name": "CRegistry", - "vtable_address": 9688256, + "vtable_address": 9690624, "methods": [ - 8681280, - 8658064, - 8658080, - 8658096, - 8658112, - 8737456, - 8737648, - 8737824, - 8738032 + 8684480, + 8661264, + 8661280, + 8661296, + 8661312, + 8740656, + 8740848, + 8741024, + 8741232 ], "bases": [ { @@ -43631,9 +43489,9 @@ }, { "type_name": "CRenderDevicePresentCallbackClientServer", - "vtable_address": 9598872, + "vtable_address": 9602072, "methods": [ - 5466608 + 5469104 ], "bases": [ { @@ -43655,47 +43513,47 @@ }, { "type_name": "CRenderService", - "vtable_address": 9635888, - "methods": [ - 6133680, - 6133792, - 4737920, - 6130048, - 6127040, - 4730192, - 4730208, - 5307648, - 6134000, - 4773136, - 4773088, - 4730208, - 5507744, - 5708608, - 6127152, - 5148704, - 5507776, - 5507792, - 5507808, - 6147024, - 5507824, - 5507840, - 6129472, - 6142912, - 6141312, - 6132480, - 6130336, - 6127456, - 6127136, - 6127744, - 6127664, - 6127728, - 6157376, - 6132896, - 6127472, - 6133104, - 6132688, - 6128064, - 6127488 + "vtable_address": 9639088, + "methods": [ + 6136208, + 6136320, + 4740256, + 6132576, + 6129568, + 4732560, + 5264864, + 5310144, + 6136528, + 4775568, + 4775520, + 5264864, + 5510240, + 5711104, + 6129680, + 5151232, + 5510272, + 5510288, + 5510304, + 6149552, + 5510320, + 5510336, + 6132000, + 6145440, + 6143840, + 6135008, + 6132864, + 6129984, + 6129664, + 6130272, + 6130192, + 6130256, + 6159872, + 6135424, + 6130000, + 6135632, + 6135216, + 6130592, + 6130016 ], "bases": [ { @@ -43826,12 +43684,12 @@ }, { "type_name": "CRenderService", - "vtable_address": 9636216, + "vtable_address": 9639416, "methods": [ - 5262848, - 6127568, - 6145008, - 6128416 + 5265360, + 6130096, + 6147536, + 6130944 ], "bases": [ { @@ -43962,51 +43820,51 @@ }, { "type_name": "CRenderingWorldSession", - "vtable_address": 9600880, - "methods": [ - 5589088, - 5589280, - 5585072, - 5583824, - 5589472, - 5590112, - 5583728, - 5583568, - 5584304, - 5590816, - 5584320, - 5655440, - 5588992, - 5584480, - 5589456, - 5584128, - 5584144, - 5584192, - 5584272, - 5584288, - 5584160, - 5584176, - 5583200, - 5583808, - 5629360, - 5594256, - 5630272, - 5584512, - 5629568, - 5583744, - 5583536, - 5583552, - 5629600, - 5629632, - 5629648, - 5630688, - 5629664, - 5629680, - 5629280, - 5584432, - 5584464, - 5592848, - 5593776 + "vtable_address": 9604080, + "methods": [ + 5591584, + 5591776, + 5587568, + 5586320, + 5591968, + 5592608, + 5586224, + 5586064, + 5586800, + 5593312, + 5586816, + 5657904, + 5591488, + 5586976, + 5591952, + 5586624, + 5586640, + 5586688, + 5586768, + 5586784, + 5586656, + 5586672, + 5585696, + 5586304, + 5631856, + 5596752, + 5632768, + 5587008, + 5632064, + 5586240, + 5586032, + 5586048, + 5632096, + 5632128, + 5632144, + 5633184, + 5632160, + 5632176, + 5631776, + 5586928, + 5586960, + 5595344, + 5596272 ], "bases": [ { @@ -44038,10 +43896,10 @@ }, { "type_name": "CRenderingWorldSession", - "vtable_address": 9601240, + "vtable_address": 9604440, "methods": [ - 5593760, - 5594240 + 5596256, + 5596736 ], "bases": [ { @@ -44073,15 +43931,15 @@ }, { "type_name": "CResourceManifestPrerequisite", - "vtable_address": 9588080, + "vtable_address": 9591280, "methods": [ - 5262656, - 5287408, - 5262448, - 5262464, - 5262528, - 5262640, - 5279936 + 5265168, + 5289936, + 5264960, + 5264976, + 5265040, + 5265152, + 5282464 ], "bases": [ { @@ -44103,26 +43961,26 @@ }, { "type_name": "CSVCMsgList_GameEvents", - "vtable_address": 9561688, - "methods": [ - 4874464, - 4874624, - 3320958, - 4819328, - 4879424, - 4773216, - 3323118, - 3319950, - 4864512, - 4731520, - 4888336, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 4858928, - 4857120 + "vtable_address": 9564888, + "methods": [ + 4876896, + 4877056, + 3323326, + 4821760, + 4881856, + 4775648, + 3325486, + 3322318, + 4866944, + 4733872, + 4890768, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 4861360, + 4859552 ], "bases": [ { @@ -44155,26 +44013,26 @@ }, { "type_name": "CSVCMsgList_GameEvents_event_t", - "vtable_address": 9561848, - "methods": [ - 4873600, - 4874032, - 3320958, - 4819312, - 4879344, - 4773216, - 3323118, - 3319950, - 4864384, - 4731504, - 4887744, - 4730112, - 4865248, - 3319860, - 3320126, - 4773392, - 4858896, - 4857104 + "vtable_address": 9565048, + "methods": [ + 4876032, + 4876464, + 3323326, + 4821744, + 4881776, + 4775648, + 3325486, + 3322318, + 4866816, + 4733856, + 4890176, + 4732480, + 4867680, + 3322228, + 3322494, + 4775824, + 4861328, + 4859536 ], "bases": [ { @@ -44207,26 +44065,26 @@ }, { "type_name": "CSVCMsg_BSPDecal", - "vtable_address": 9575168, + "vtable_address": 9578368, "methods": [ - 5026048, - 5026432, - 3320958, - 4902576, - 5030032, - 4773216, - 3323118, - 3319950, - 5006864, - 4731504, - 5013632, - 4730112, - 5000192, - 3319860, - 3320126, - 4773392, - 5003536, - 4996208 + 5028576, + 5028960, + 3323326, + 4905008, + 5032560, + 4775648, + 3325486, + 3322318, + 5009392, + 4733856, + 5016160, + 4732480, + 5002720, + 3322228, + 3322494, + 4775824, + 5006064, + 4998736 ], "bases": [ { @@ -44259,26 +44117,26 @@ }, { "type_name": "CSVCMsg_Broadcast_Command", - "vtable_address": 9568608, - "methods": [ - 5126496, - 5126640, - 3320958, - 4903232, - 5115264, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5118912, - 4730112, - 5111456, - 3319860, - 3320126, - 4773392, - 5111264, - 5104240 + "vtable_address": 9571808, + "methods": [ + 5129024, + 5129168, + 3323326, + 4905664, + 5117792, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5121440, + 4732480, + 5113984, + 3322228, + 3322494, + 4775824, + 5113792, + 5106768 ], "bases": [ { @@ -44311,14 +44169,14 @@ }, { "type_name": "CSVCMsg_Broadcast_Command_t", - "vtable_address": 9697904, + "vtable_address": 9699296, "methods": [ - 7430080, - 7430240, - 5346608, - 5346608, - 7421488, - 7442704 + 7418160, + 7418320, + 5349104, + 5349104, + 7406192, + 7429504 ], "bases": [ { @@ -44383,26 +44241,26 @@ }, { "type_name": "CSVCMsg_Broadcast_Command_t", - "vtable_address": 9697968, - "methods": [ - 7430400, - 7430560, - 3320958, - 4903232, - 5115264, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5118912, - 4730112, - 5111456, - 3319860, - 3320126, - 4773392, - 5111264, - 5104240 + "vtable_address": 9699360, + "methods": [ + 7418480, + 7418640, + 3323326, + 4905664, + 5117792, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5121440, + 4732480, + 5113984, + 3322228, + 3322494, + 4775824, + 5113792, + 5106768 ], "bases": [ { @@ -44467,26 +44325,26 @@ }, { "type_name": "CSVCMsg_ClassInfo", - "vtable_address": 9576768, + "vtable_address": 9579968, "methods": [ - 4992640, - 4992800, - 3320958, - 4902416, - 4995680, - 4773216, - 3323118, - 3319950, - 5001728, - 4731504, - 5007056, - 4730112, - 4996400, - 3319860, - 3320126, - 4773392, - 5003216, - 4996048 + 4995168, + 4995328, + 3323326, + 4904848, + 4998208, + 4775648, + 3325486, + 3322318, + 5004256, + 4733856, + 5009584, + 4732480, + 4998928, + 3322228, + 3322494, + 4775824, + 5005744, + 4998576 ], "bases": [ { @@ -44519,26 +44377,26 @@ }, { "type_name": "CSVCMsg_ClassInfo_class_t", - "vtable_address": 9576928, + "vtable_address": 9580128, "methods": [ - 4992336, - 4992480, - 3320958, - 4902400, - 4995408, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 4979472, - 4730112, - 4964288, - 3319860, - 3320126, - 4773392, - 4963616, - 4961904 + 4994864, + 4995008, + 3323326, + 4904832, + 4997936, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 4982000, + 4732480, + 4966720, + 3322228, + 3322494, + 4775824, + 4966048, + 4964336 ], "bases": [ { @@ -44571,14 +44429,14 @@ }, { "type_name": "CSVCMsg_ClassInfo_t", - "vtable_address": 9665640, + "vtable_address": 9668392, "methods": [ - 6720400, - 6720576, - 5346608, - 5346608, - 5966112, - 5995248 + 6721552, + 6721728, + 5349104, + 5349104, + 5968608, + 5997744 ], "bases": [ { @@ -44643,27 +44501,26 @@ }, { "type_name": "CSVCMsg_ClassInfo_t", - "vtable_address": 9665704, - "methods": [ - 6720768, - 6720944, - 3320958, - 4902416, - 4995680, - 4773216, - 3323118, - 3319950, - 5001728, - 4731504, - 5007056, - 4730112, - 4996400, - 3319860, - 3320126, - 4773392, - 5003216, - 4996048, - 6703280 + "vtable_address": 9668456, + "methods": [ + 6721920, + 6722096, + 3323326, + 4904848, + 4998208, + 4775648, + 3325486, + 3322318, + 5004256, + 4733856, + 5009584, + 4732480, + 4998928, + 3322228, + 3322494, + 4775824, + 5005744, + 4998576 ], "bases": [ { @@ -44728,26 +44585,26 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables", - "vtable_address": 9570848, + "vtable_address": 9574048, "methods": [ - 5097296, - 5097440, - 3320958, - 4903008, - 5102272, - 4773216, - 3323118, - 3319950, - 5075472, - 4731504, - 5083568, - 4730112, - 5072192, - 3319860, - 3320126, - 4773392, - 5074416, - 5068592 + 5099824, + 5099968, + 3323326, + 4905440, + 5104800, + 4775648, + 3325486, + 3322318, + 5078000, + 4733856, + 5086096, + 4732480, + 5074720, + 3322228, + 3322494, + 4775824, + 5076944, + 5071120 ], "bases": [ { @@ -44780,14 +44637,14 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables_t", - "vtable_address": 9680872, + "vtable_address": 9683512, "methods": [ - 7019136, - 7019296, - 5346608, - 5346608, - 5965952, - 5994736 + 7012896, + 7013056, + 5349104, + 5349104, + 5968448, + 5997232 ], "bases": [ { @@ -44852,26 +44709,26 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables_t", - "vtable_address": 9680936, - "methods": [ - 7019456, - 7019616, - 3320958, - 4903008, - 5102272, - 4773216, - 3323118, - 3319950, - 5075472, - 4731504, - 5083568, - 4730112, - 5072192, - 3319860, - 3320126, - 4773392, - 5074416, - 5068592 + "vtable_address": 9683576, + "methods": [ + 7013216, + 7013376, + 3323326, + 4905440, + 5104800, + 4775648, + 3325486, + 3322318, + 5078000, + 4733856, + 5086096, + 4732480, + 5074720, + 3322228, + 3322494, + 4775824, + 5076944, + 5071120 ], "bases": [ { @@ -44936,26 +44793,26 @@ }, { "type_name": "CSVCMsg_CmdKeyValues", - "vtable_address": 9571648, + "vtable_address": 9574848, "methods": [ - 5095312, - 5095456, - 3320958, - 4902928, - 5101040, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5080736, - 4730112, - 5071696, - 3319860, - 3320126, - 4773392, - 5074256, - 5068512 + 5097840, + 5097984, + 3323326, + 4905360, + 5103568, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5083264, + 4732480, + 5074224, + 3322228, + 3322494, + 4775824, + 5076784, + 5071040 ], "bases": [ { @@ -44988,14 +44845,14 @@ }, { "type_name": "CSVCMsg_CmdKeyValues_t", - "vtable_address": 9679752, + "vtable_address": 9681928, "methods": [ - 5352256, - 5352448, - 5347248, - 5347248, - 5347264, - 5366160 + 5354752, + 5354944, + 5349744, + 5349744, + 5349760, + 5368656 ], "bases": [ { @@ -45071,26 +44928,26 @@ }, { "type_name": "CSVCMsg_CmdKeyValues_t", - "vtable_address": 9679816, - "methods": [ - 5352656, - 5352848, - 3320958, - 4902928, - 5101040, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5080736, - 4730112, - 5071696, - 3319860, - 3320126, - 4773392, - 5074256, - 5068512 + "vtable_address": 9681992, + "methods": [ + 5355152, + 5355344, + 3323326, + 4905360, + 5103568, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5083264, + 4732480, + 5074224, + 3322228, + 3322494, + 4775824, + 5076784, + 5071040 ], "bases": [ { @@ -45166,26 +45023,26 @@ }, { "type_name": "CSVCMsg_CreateStringTable", - "vtable_address": 9572768, + "vtable_address": 9575968, "methods": [ - 5051856, - 5052016, - 3320958, - 4902816, - 5056272, - 4773216, - 3323118, - 3319950, - 5042800, - 4731504, - 5064304, - 4730112, - 5039392, - 3319860, - 3320126, - 4773392, - 5043632, - 5032656 + 5054384, + 5054544, + 3323326, + 4905248, + 5058800, + 4775648, + 3325486, + 3322318, + 5045328, + 4733856, + 5066832, + 4732480, + 5041920, + 3322228, + 3322494, + 4775824, + 5046160, + 5035184 ], "bases": [ { @@ -45218,14 +45075,14 @@ }, { "type_name": "CSVCMsg_CreateStringTable_t", - "vtable_address": 9651640, + "vtable_address": 9654840, "methods": [ - 6472592, - 6472752, - 5346608, - 5346608, - 5965872, - 5994352 + 6475664, + 6475824, + 5349104, + 5349104, + 5968368, + 5996848 ], "bases": [ { @@ -45290,26 +45147,26 @@ }, { "type_name": "CSVCMsg_CreateStringTable_t", - "vtable_address": 9651704, - "methods": [ - 6472928, - 6473088, - 3320958, - 4902816, - 5056272, - 4773216, - 3323118, - 3319950, - 5042800, - 4731504, - 5064304, - 4730112, - 5039392, - 3319860, - 3320126, - 4773392, - 5043632, - 5032656 + "vtable_address": 9654904, + "methods": [ + 6476000, + 6476160, + 3323326, + 4905248, + 5058800, + 4775648, + 3325486, + 3322318, + 5045328, + 4733856, + 5066832, + 4732480, + 5041920, + 3322228, + 3322494, + 4775824, + 5046160, + 5035184 ], "bases": [ { @@ -45374,26 +45231,26 @@ }, { "type_name": "CSVCMsg_CrosshairAngle", - "vtable_address": 9575328, + "vtable_address": 9578528, "methods": [ - 5025280, - 5025664, - 3320958, - 4902560, - 5029904, - 4773216, - 3323118, - 3319950, - 5001584, - 4731504, - 5013216, - 4730112, - 4996304, - 3319860, - 3320126, - 4773392, - 5003504, - 4996192 + 5027808, + 5028192, + 3323326, + 4904992, + 5032432, + 4775648, + 3325486, + 3322318, + 5004112, + 4733856, + 5015744, + 4732480, + 4998832, + 3322228, + 3322494, + 4775824, + 5006032, + 4998720 ], "bases": [ { @@ -45426,26 +45283,26 @@ }, { "type_name": "CSVCMsg_FixAngle", - "vtable_address": 9575488, + "vtable_address": 9578688, "methods": [ - 5024512, - 5024896, - 3320958, - 4902544, - 5029760, - 4773216, - 3323118, - 3319950, - 5001408, - 4731504, - 5012608, - 4730112, - 5000032, - 3319860, - 3320126, - 4773392, - 5003472, - 4996176 + 5027040, + 5027424, + 3323326, + 4904976, + 5032288, + 4775648, + 3325486, + 3322318, + 5003936, + 4733856, + 5015136, + 4732480, + 5002560, + 3322228, + 3322494, + 4775824, + 5006000, + 4998704 ], "bases": [ { @@ -45478,26 +45335,26 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer", - "vtable_address": 9570208, - "methods": [ - 5098496, - 5098688, - 3320958, - 4903072, - 5102912, - 4773216, - 3323118, - 3319950, - 5079168, - 4892576, - 5086640, - 4730112, - 5078816, - 3319860, - 3320126, - 5078800, - 5074544, - 5068656 + "vtable_address": 9573408, + "methods": [ + 5101024, + 5101216, + 3323326, + 4905504, + 5105440, + 4775648, + 3325486, + 3322318, + 5081696, + 4895008, + 5089168, + 4732480, + 5081344, + 3322228, + 3322494, + 5081328, + 5077072, + 5071184 ], "bases": [ { @@ -45530,26 +45387,26 @@ }, { "type_name": "CSVCMsg_FlattenedSerializerWrapper", - "vtable_address": 9616312, - "methods": [ - 5897376, - 5897568, - 3320958, - 4903072, - 5102912, - 4773216, - 3323118, - 3319950, - 5079168, - 4892576, - 5086640, - 4730112, - 5078816, - 3319860, - 3320126, - 5078800, - 5074544, - 5068656 + "vtable_address": 9619512, + "methods": [ + 5899872, + 5900064, + 3323326, + 4905504, + 5105440, + 4775648, + 3325486, + 3322318, + 5081696, + 4895008, + 5089168, + 4732480, + 5081344, + 3322228, + 3322494, + 5081328, + 5077072, + 5071184 ], "bases": [ { @@ -45593,14 +45450,14 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer_t", - "vtable_address": 9616088, + "vtable_address": 9619288, "methods": [ - 5896464, - 5896688, - 5347248, - 5347248, - 5922176, - 5925680 + 5898960, + 5899184, + 5349744, + 5349744, + 5924672, + 5928176 ], "bases": [ { @@ -45676,26 +45533,26 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer_t", - "vtable_address": 9616152, - "methods": [ - 5896928, - 5897136, - 3320958, - 4903072, - 5102912, - 4773216, - 3323118, - 3319950, - 5079168, - 4892576, - 5086640, - 4730112, - 5078816, - 3319860, - 3320126, - 5078800, - 5074544, - 5068656 + "vtable_address": 9619352, + "methods": [ + 5899424, + 5899632, + 3323326, + 4905504, + 5105440, + 4775648, + 3325486, + 3322318, + 5081696, + 4895008, + 5089168, + 4732480, + 5081344, + 3322228, + 3322494, + 5081328, + 5077072, + 5071184 ], "bases": [ { @@ -45771,26 +45628,26 @@ }, { "type_name": "CSVCMsg_FullFrameSplit", - "vtable_address": 9572128, + "vtable_address": 9575328, "methods": [ - 5053200, - 5053344, - 3320958, - 4902880, - 5057568, - 4773216, - 3323118, - 3319950, - 5043200, - 4731504, - 5067696, - 4730112, - 5041184, - 3319860, - 3320126, - 4773392, - 5043760, - 5032720 + 5055728, + 5055872, + 3323326, + 4905312, + 5060096, + 4775648, + 3325486, + 3322318, + 5045728, + 4733856, + 5070224, + 4732480, + 5043712, + 3322228, + 3322494, + 4775824, + 5046288, + 5035248 ], "bases": [ { @@ -45823,14 +45680,14 @@ }, { "type_name": "CSVCMsg_FullFrameSplit_t", - "vtable_address": 9696088, + "vtable_address": 9698360, "methods": [ - 6471952, - 6472112, - 5346608, - 5346608, - 5966592, - 5998768 + 6475024, + 6475184, + 5349104, + 5349104, + 5969088, + 6001264 ], "bases": [ { @@ -45895,26 +45752,26 @@ }, { "type_name": "CSVCMsg_FullFrameSplit_t", - "vtable_address": 9696152, - "methods": [ - 6472272, - 6472432, - 3320958, - 4902880, - 5057568, - 4773216, - 3323118, - 3319950, - 5043200, - 4731504, - 5067696, - 4730112, - 5041184, - 3319860, - 3320126, - 4773392, - 5043760, - 5032720 + "vtable_address": 9698424, + "methods": [ + 6475344, + 6475504, + 3323326, + 4905312, + 5060096, + 4775648, + 3325486, + 3322318, + 5045728, + 4733856, + 5070224, + 4732480, + 5043712, + 3322228, + 3322494, + 4775824, + 5046288, + 5035248 ], "bases": [ { @@ -45979,26 +45836,26 @@ }, { "type_name": "CSVCMsg_GameEvent", - "vtable_address": 9562008, - "methods": [ - 4873232, - 4873408, - 3320958, - 4819296, - 4878672, - 4773216, - 3323118, - 3319950, - 4863952, - 4731504, - 4887040, - 4730112, - 4864832, - 3319860, - 3320126, - 4773392, - 4858864, - 4857088 + "vtable_address": 9565208, + "methods": [ + 4875664, + 4875840, + 3323326, + 4821728, + 4881104, + 4775648, + 3325486, + 3322318, + 4866384, + 4733856, + 4889472, + 4732480, + 4867264, + 3322228, + 3322494, + 4775824, + 4861296, + 4859520 ], "bases": [ { @@ -46031,26 +45888,26 @@ }, { "type_name": "CSVCMsg_GameEventList", - "vtable_address": 9573728, + "vtable_address": 9576928, "methods": [ - 5050048, - 5050208, - 3320958, - 4902720, - 5054656, - 4773216, - 3323118, - 3319950, - 5042592, - 4731520, - 5059456, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 5043440, - 5032560 + 5052576, + 5052736, + 3323326, + 4905152, + 5057184, + 4775648, + 3325486, + 3322318, + 5045120, + 4733872, + 5061984, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 5045968, + 5035088 ], "bases": [ { @@ -46083,26 +45940,26 @@ }, { "type_name": "CSVCMsg_GameEventList_descriptor_t", - "vtable_address": 9573888, + "vtable_address": 9577088, "methods": [ - 5049680, - 5049856, - 3320958, - 4902704, - 5054080, - 4773216, - 3323118, - 3319950, - 5042304, - 4731504, - 5058736, - 4730112, - 5035072, - 3319860, - 3320126, - 4773392, - 5043408, - 5032544 + 5052208, + 5052384, + 3323326, + 4905136, + 5056608, + 4775648, + 3325486, + 3322318, + 5044832, + 4733856, + 5061264, + 4732480, + 5037600, + 3322228, + 3322494, + 4775824, + 5045936, + 5035072 ], "bases": [ { @@ -46135,26 +45992,26 @@ }, { "type_name": "CSVCMsg_GameEventList_key_t", - "vtable_address": 9574048, + "vtable_address": 9577248, "methods": [ - 5049376, - 5049520, - 3320958, - 4902688, - 5053808, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5058176, - 4730112, - 5034720, - 3319860, - 3320126, - 4773392, - 5043376, - 5032528 + 5051904, + 5052048, + 3323326, + 4905120, + 5056336, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5060704, + 4732480, + 5037248, + 3322228, + 3322494, + 4775824, + 5045904, + 5035056 ], "bases": [ { @@ -46187,26 +46044,26 @@ }, { "type_name": "CSVCMsg_GameEvent_key_t", - "vtable_address": 9562168, - "methods": [ - 4872928, - 4873072, - 3320958, - 4819280, - 4878368, - 4773216, - 3323118, - 3319950, - 4863712, - 4731504, - 4885856, - 4730112, - 4861568, - 3319860, - 3320126, - 4773392, - 4858832, - 4857072 + "vtable_address": 9565368, + "methods": [ + 4875360, + 4875504, + 3323326, + 4821712, + 4880800, + 4775648, + 3325486, + 3322318, + 4866144, + 4733856, + 4888288, + 4732480, + 4864000, + 3322228, + 3322494, + 4775824, + 4861264, + 4859504 ], "bases": [ { @@ -46239,26 +46096,26 @@ }, { "type_name": "CSVCMsg_GameSessionConfiguration", - "vtable_address": 9560728, - "methods": [ - 4908304, - 4908512, - 3320958, - 4819424, - 4911232, - 4773216, - 3323118, - 3319950, - 4898224, - 4731504, - 4915280, - 4730112, - 4895360, - 3319860, - 3320126, - 4773392, - 4900272, - 4891296 + "vtable_address": 9563928, + "methods": [ + 4910736, + 4910944, + 3323326, + 4821856, + 4913664, + 4775648, + 3325486, + 3322318, + 4900656, + 4733856, + 4917712, + 4732480, + 4897792, + 3322228, + 3322494, + 4775824, + 4902704, + 4893728 ], "bases": [ { @@ -46291,26 +46148,26 @@ }, { "type_name": "CSVCMsg_GetCvarValue", - "vtable_address": 9574848, + "vtable_address": 9578048, "methods": [ - 5027072, - 5027216, - 3320958, - 4902608, - 5030256, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5015376, - 4730112, - 5004416, - 3319860, - 3320126, - 4773392, - 5003600, - 4996240 + 5029600, + 5029744, + 3323326, + 4905040, + 5032784, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5017904, + 4732480, + 5006944, + 3322228, + 3322494, + 4775824, + 5006128, + 4998768 ], "bases": [ { @@ -46343,26 +46200,26 @@ }, { "type_name": "CSVCMsg_HLTVStatus", - "vtable_address": 9571968, + "vtable_address": 9575168, "methods": [ - 5053504, - 5053648, - 3320958, - 4902896, - 5057872, - 4773216, - 3323118, - 3319950, - 5043200, - 4731504, - 5079456, - 4730112, - 5071072, - 3319860, - 3320126, - 4773392, - 5074192, - 5068480 + 5056032, + 5056176, + 3323326, + 4905328, + 5060400, + 4775648, + 3325486, + 3322318, + 5045728, + 4733856, + 5081984, + 4732480, + 5073600, + 3322228, + 3322494, + 4775824, + 5076720, + 5071008 ], "bases": [ { @@ -46395,26 +46252,26 @@ }, { "type_name": "CSVCMsg_HltvFixupOperatorStatus", - "vtable_address": 9568288, - "methods": [ - 5127104, - 5127248, - 3320958, - 4903264, - 5116048, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 5120384, - 4730112, - 5112512, - 3319860, - 3320126, - 4773392, - 5111328, - 5104272 + "vtable_address": 9571488, + "methods": [ + 5129632, + 5129776, + 3323326, + 4905696, + 5118576, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 5122912, + 4732480, + 5115040, + 3322228, + 3322494, + 4775824, + 5113856, + 5106800 ], "bases": [ { @@ -46447,26 +46304,26 @@ }, { "type_name": "CSVCMsg_HltvReplay", - "vtable_address": 9568928, - "methods": [ - 5125984, - 5126112, - 3320958, - 4903200, - 5114160, - 4773216, - 3323118, - 3319950, - 5109408, - 4731504, - 5117056, - 4730112, - 5107296, - 3319860, - 3320126, - 4773392, - 5111200, - 5104208 + "vtable_address": 9572128, + "methods": [ + 5128512, + 5128640, + 3323326, + 4905632, + 5116688, + 4775648, + 3325486, + 3322318, + 5111936, + 4733856, + 5119584, + 4732480, + 5109824, + 3322228, + 3322494, + 4775824, + 5113728, + 5106736 ], "bases": [ { @@ -46499,14 +46356,14 @@ }, { "type_name": "CSVCMsg_HltvReplay_t", - "vtable_address": 9665416, + "vtable_address": 9668168, "methods": [ - 6721808, - 6721952, - 5346608, - 5346608, - 5966512, - 5998528 + 6722960, + 6723104, + 5349104, + 5349104, + 5969008, + 6001024 ], "bases": [ { @@ -46571,26 +46428,26 @@ }, { "type_name": "CSVCMsg_HltvReplay_t", - "vtable_address": 9665480, - "methods": [ - 6722096, - 6722224, - 3320958, - 4903200, - 5114160, - 4773216, - 3323118, - 3319950, - 5109408, - 4731504, - 5117056, - 4730112, - 5107296, - 3319860, - 3320126, - 4773392, - 5111200, - 5104208 + "vtable_address": 9668232, + "methods": [ + 6723248, + 6723376, + 3323326, + 4905632, + 5116688, + 4775648, + 3325486, + 3322318, + 5111936, + 4733856, + 5119584, + 4732480, + 5109824, + 3322228, + 3322494, + 4775824, + 5113728, + 5106736 ], "bases": [ { @@ -46655,26 +46512,26 @@ }, { "type_name": "CSVCMsg_Menu", - "vtable_address": 9574688, + "vtable_address": 9577888, "methods": [ - 5027376, - 5027520, - 3320958, - 4902624, - 5030528, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5015936, - 4730112, - 5004768, - 3319860, - 3320126, - 4773392, - 5003632, - 4996256 + 5029904, + 5030048, + 3323326, + 4905056, + 5033056, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5018464, + 4732480, + 5007296, + 3322228, + 3322494, + 4775824, + 5006160, + 4998784 ], "bases": [ { @@ -46707,26 +46564,26 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted", - "vtable_address": 9567808, + "vtable_address": 9571008, "methods": [ - 5128048, - 5128176, - 3320958, - 4903312, - 5114304, - 4773216, - 3323118, - 3319950, - 5109760, - 4731504, - 5121824, - 4730112, - 5109056, - 3319860, - 3320126, - 4773392, - 5111424, - 5104320 + 5130576, + 5130704, + 3323326, + 4905744, + 5116832, + 4775648, + 3325486, + 3322318, + 5112288, + 4733856, + 5124352, + 4732480, + 5111584, + 3322228, + 3322494, + 4775824, + 5113952, + 5106848 ], "bases": [ { @@ -46759,14 +46616,14 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted_t", - "vtable_address": 9593112, + "vtable_address": 9596312, "methods": [ - 5330768, - 5330912, - 5346608, - 5346608, - 5347168, - 5362736 + 5333264, + 5333408, + 5349104, + 5349104, + 5349664, + 5365232 ], "bases": [ { @@ -46831,26 +46688,26 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted_t", - "vtable_address": 9593176, - "methods": [ - 5331056, - 5331184, - 3320958, - 4903312, - 5114304, - 4773216, - 3323118, - 3319950, - 5109760, - 4731504, - 5121824, - 4730112, - 5109056, - 3319860, - 3320126, - 4773392, - 5111424, - 5104320 + "vtable_address": 9596376, + "methods": [ + 5333552, + 5333680, + 3323326, + 4905744, + 5116832, + 4775648, + 3325486, + 3322318, + 5112288, + 4733856, + 5124352, + 4732480, + 5111584, + 3322228, + 3322494, + 4775824, + 5113952, + 5106848 ], "bases": [ { @@ -46915,26 +46772,26 @@ }, { "type_name": "CSVCMsg_PacketEntities", - "vtable_address": 9573088, + "vtable_address": 9576288, "methods": [ - 5051248, - 5051392, - 3320958, - 4902784, - 5055376, - 4773216, - 3323118, - 3319950, - 5043792, - 4731504, - 5061616, - 4730112, - 5036224, - 3319860, - 3320126, - 4773392, - 5043568, - 5032624 + 5053776, + 5053920, + 3323326, + 4905216, + 5057904, + 4775648, + 3325486, + 3322318, + 5046320, + 4733856, + 5064144, + 4732480, + 5038752, + 3322228, + 3322494, + 4775824, + 5046096, + 5035152 ], "bases": [ { @@ -46967,26 +46824,26 @@ }, { "type_name": "CSVCMsg_PacketEntities_alternate_baseline_t", - "vtable_address": 9573568, + "vtable_address": 9576768, "methods": [ - 5050384, - 5050512, - 3320958, - 4902736, - 5054768, - 4773216, - 3323118, - 3319950, - 4936880, - 4731504, - 5059920, - 4730112, - 5032736, - 3319860, - 3320126, - 4773392, - 5043472, - 5032576 + 5052912, + 5053040, + 3323326, + 4905168, + 5057296, + 4775648, + 3325486, + 3322318, + 4939312, + 4733856, + 5062448, + 4732480, + 5035264, + 3322228, + 3322494, + 4775824, + 5046000, + 5035104 ], "bases": [ { @@ -47019,26 +46876,26 @@ }, { "type_name": "CSVCMsg_PacketEntities_non_transmitted_entities_t", - "vtable_address": 9573408, + "vtable_address": 9576608, "methods": [ - 5050640, - 5050784, - 3320958, - 4902752, - 5054832, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5060496, - 4730112, - 5035456, - 3319860, - 3320126, - 4773392, - 5043504, - 5032592 + 5053168, + 5053312, + 3323326, + 4905184, + 5057360, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5063024, + 4732480, + 5037984, + 3322228, + 3322494, + 4775824, + 5046032, + 5035120 ], "bases": [ { @@ -47071,26 +46928,26 @@ }, { "type_name": "CSVCMsg_PacketEntities_outofpvs_entity_updates_t", - "vtable_address": 9573248, + "vtable_address": 9576448, "methods": [ - 5050944, - 5051088, - 3320958, - 4902768, - 5055104, - 4773216, - 3323118, - 3319950, - 4814976, - 4731504, - 5061056, - 4730112, - 5035840, - 3319860, - 3320126, - 4773392, - 5043536, - 5032608 + 5053472, + 5053616, + 3323326, + 4905200, + 5057632, + 4775648, + 3325486, + 3322318, + 4817408, + 4733856, + 5063584, + 4732480, + 5038368, + 3322228, + 3322494, + 4775824, + 5046064, + 5035136 ], "bases": [ { @@ -47123,14 +46980,14 @@ }, { "type_name": "CSVCMsg_PacketEntities_t", - "vtable_address": 9674472, + "vtable_address": 9677008, "methods": [ - 6471280, - 6471440, - 5346608, - 5346608, - 5965152, - 5991136 + 6474352, + 6474512, + 5349104, + 5349104, + 5967648, + 5993632 ], "bases": [ { @@ -47195,26 +47052,26 @@ }, { "type_name": "CSVCMsg_PacketEntities_t", - "vtable_address": 9674536, - "methods": [ - 6471616, - 6471776, - 3320958, - 4902784, - 5055376, - 4773216, - 3323118, - 3319950, - 5043792, - 4731504, - 5061616, - 4730112, - 5036224, - 3319860, - 3320126, - 4773392, - 5043568, - 5032624 + "vtable_address": 9677072, + "methods": [ + 6474688, + 6474848, + 3323326, + 4905216, + 5057904, + 4775648, + 3325486, + 3322318, + 5046320, + 4733856, + 5064144, + 4732480, + 5038752, + 3322228, + 3322494, + 4775824, + 5046096, + 5035152 ], "bases": [ { @@ -47279,26 +47136,26 @@ }, { "type_name": "CSVCMsg_PacketReliable", - "vtable_address": 9572288, + "vtable_address": 9575488, "methods": [ - 5052944, - 5053072, - 3320958, - 4902864, - 5057504, - 4773216, - 3323118, - 3319950, - 5043104, - 4731504, - 5066976, - 4730112, - 5033984, - 3319860, - 3320126, - 4773392, - 5043728, - 5032704 + 5055472, + 5055600, + 3323326, + 4905296, + 5060032, + 4775648, + 3325486, + 3322318, + 5045632, + 4733856, + 5069504, + 4732480, + 5036512, + 3322228, + 3322494, + 4775824, + 5046256, + 5035232 ], "bases": [ { @@ -47331,14 +47188,14 @@ }, { "type_name": "CSVCMsg_PacketReliable_t", - "vtable_address": 9688632, + "vtable_address": 9693960, "methods": [ - 7361920, - 7362064, - 5346608, - 5346608, - 5964672, - 5989392 + 7391744, + 7391888, + 5349104, + 5349104, + 5967168, + 5991888 ], "bases": [ { @@ -47403,26 +47260,26 @@ }, { "type_name": "CSVCMsg_PacketReliable_t", - "vtable_address": 9688696, - "methods": [ - 7362208, - 7362336, - 3320958, - 4902864, - 5057504, - 4773216, - 3323118, - 3319950, - 5043104, - 4731504, - 5066976, - 4730112, - 5033984, - 3319860, - 3320126, - 4773392, - 5043728, - 5032704 + "vtable_address": 9694024, + "methods": [ + 7392032, + 7392160, + 3323326, + 4905296, + 5060032, + 4775648, + 3325486, + 3322318, + 5045632, + 4733856, + 5069504, + 4732480, + 5036512, + 3322228, + 3322494, + 4775824, + 5046256, + 5035232 ], "bases": [ { @@ -47487,26 +47344,26 @@ }, { "type_name": "CSVCMsg_PeerList", - "vtable_address": 9571008, + "vtable_address": 9574208, "methods": [ - 5096960, - 5097120, - 3320958, - 4902992, - 5102000, - 4773216, - 3323118, - 3319950, - 5075136, - 4731520, - 5083104, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 5074384, - 5068576 + 5099488, + 5099648, + 3323326, + 4905424, + 5104528, + 4775648, + 3325486, + 3322318, + 5077664, + 4733872, + 5085632, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 5076912, + 5071104 ], "bases": [ { @@ -47539,14 +47396,14 @@ }, { "type_name": "CSVCMsg_PeerList_t", - "vtable_address": 9670088, + "vtable_address": 9676120, "methods": [ - 6806384, - 6806560, - 5346608, - 5346608, - 5964752, - 5989632 + 6828304, + 6828480, + 5349104, + 5349104, + 5967248, + 5992128 ], "bases": [ { @@ -47611,26 +47468,26 @@ }, { "type_name": "CSVCMsg_PeerList_t", - "vtable_address": 9670152, - "methods": [ - 6806752, - 6806928, - 3320958, - 4902992, - 5102000, - 4773216, - 3323118, - 3319950, - 5075136, - 4731520, - 5083104, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 5074384, - 5068576 + "vtable_address": 9676184, + "methods": [ + 6828672, + 6828848, + 3323326, + 4905424, + 5104528, + 4775648, + 3325486, + 3322318, + 5077664, + 4733872, + 5085632, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 5076912, + 5071104 ], "bases": [ { @@ -47695,26 +47552,26 @@ }, { "type_name": "CSVCMsg_Prefetch", - "vtable_address": 9575808, + "vtable_address": 9579008, "methods": [ - 5024000, - 5024128, - 3320958, - 4902512, - 5029648, - 4773216, - 3323118, - 3319950, - 5002736, - 4731504, - 5011328, - 4730112, - 4999328, - 3319860, - 3320126, - 4773392, - 5003408, - 4996144 + 5026528, + 5026656, + 3323326, + 4904944, + 5032176, + 4775648, + 3325486, + 3322318, + 5005264, + 4733856, + 5013856, + 4732480, + 5001856, + 3322228, + 3322494, + 4775824, + 5005936, + 4998672 ], "bases": [ { @@ -47747,26 +47604,26 @@ }, { "type_name": "CSVCMsg_Print", - "vtable_address": 9576288, + "vtable_address": 9579488, "methods": [ - 5023104, - 5023248, - 3320958, - 4902464, - 5029008, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5008880, - 4730112, - 5004240, - 3319860, - 3320126, - 4773392, - 5003312, - 4996096 + 5025632, + 5025776, + 3323326, + 4904896, + 5031536, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5011408, + 4732480, + 5006768, + 3322228, + 3322494, + 4775824, + 5005840, + 4998624 ], "bases": [ { @@ -47799,14 +47656,14 @@ }, { "type_name": "CSVCMsg_Print_t", - "vtable_address": 9673176, + "vtable_address": 9676376, "methods": [ - 6878832, - 6878992, - 5346608, - 5346608, - 5965712, - 5993776 + 6872928, + 6873088, + 5349104, + 5349104, + 5968208, + 5996272 ], "bases": [ { @@ -47871,26 +47728,26 @@ }, { "type_name": "CSVCMsg_Print_t", - "vtable_address": 9673240, - "methods": [ - 6879152, - 6879312, - 3320958, - 4902464, - 5029008, - 4773216, - 3323118, - 3319950, - 4778560, - 4731504, - 5008880, - 4730112, - 5004240, - 3319860, - 3320126, - 4773392, - 5003312, - 4996096 + "vtable_address": 9676440, + "methods": [ + 6873248, + 6873408, + 3323326, + 4904896, + 5031536, + 4775648, + 3325486, + 3322318, + 4780992, + 4733856, + 5011408, + 4732480, + 5006768, + 3322228, + 3322494, + 4775824, + 5005840, + 4998624 ], "bases": [ { @@ -47955,26 +47812,26 @@ }, { "type_name": "CSVCMsg_RconServerDetails", - "vtable_address": 9571488, + "vtable_address": 9574688, "methods": [ - 5095616, - 5095776, - 3320958, - 4902944, - 5101296, - 4773216, - 3323118, - 3319950, - 4815392, - 4731504, - 5081136, - 4730112, - 5071888, - 3319860, - 3320126, - 4773392, - 5074288, - 5068528 + 5098144, + 5098304, + 3323326, + 4905376, + 5103824, + 4775648, + 3325486, + 3322318, + 4817824, + 4733856, + 5083664, + 4732480, + 5074416, + 3322228, + 3322494, + 4775824, + 5076816, + 5071056 ], "bases": [ { @@ -48007,14 +47864,14 @@ }, { "type_name": "CSVCMsg_RconServerDetails_t", - "vtable_address": 9682040, + "vtable_address": 9685032, "methods": [ - 7059632, - 7059792, - 5346608, - 5346608, - 5964832, - 5989984 + 7054528, + 7054688, + 5349104, + 5349104, + 5967328, + 5992480 ], "bases": [ { @@ -48079,26 +47936,26 @@ }, { "type_name": "CSVCMsg_RconServerDetails_t", - "vtable_address": 9682104, - "methods": [ - 7059968, - 7060128, - 3320958, - 4902944, - 5101296, - 4773216, - 3323118, - 3319950, - 4815392, - 4731504, - 5081136, - 4730112, - 5071888, - 3319860, - 3320126, - 4773392, - 5074288, - 5068528 + "vtable_address": 9685096, + "methods": [ + 7054864, + 7055024, + 3323326, + 4905376, + 5103824, + 4775648, + 3325486, + 3322318, + 4817824, + 4733856, + 5083664, + 4732480, + 5074416, + 3322228, + 3322494, + 4775824, + 5076816, + 5071056 ], "bases": [ { @@ -48163,26 +48020,26 @@ }, { "type_name": "CSVCMsg_SendTable", - "vtable_address": 9574208, + "vtable_address": 9577408, "methods": [ - 5028304, - 5028480, - 3320958, - 4902672, - 5031600, - 4773216, - 3323118, - 3319950, - 5041840, - 4731504, - 5018288, - 4730112, - 5034368, - 3319860, - 3320126, - 4773392, - 5043344, - 5032512 + 5030832, + 5031008, + 3323326, + 4905104, + 5034128, + 4775648, + 3325486, + 3322318, + 5044368, + 4733856, + 5020816, + 4732480, + 5036896, + 3322228, + 3322494, + 4775824, + 5045872, + 5035040 ], "bases": [ { @@ -48215,26 +48072,26 @@ }, { "type_name": "CSVCMsg_SendTable_sendprop_t", - "vtable_address": 9574368, + "vtable_address": 9577568, "methods": [ - 5027984, - 5028144, - 3320958, - 4902656, - 5031088, - 4773216, - 3323118, - 3319950, - 5002928, - 4731504, - 5017184, - 4730112, - 5005696, - 3319860, - 3320126, - 4773392, - 5003696, - 4996288 + 5030512, + 5030672, + 3323326, + 4905088, + 5033616, + 4775648, + 3325486, + 3322318, + 5005456, + 4733856, + 5019712, + 4732480, + 5008224, + 3322228, + 3322494, + 4775824, + 5006224, + 4998816 ], "bases": [ { @@ -48267,26 +48124,26 @@ }, { "type_name": "CSVCMsg_ServerInfo", - "vtable_address": 9577088, + "vtable_address": 9580288, "methods": [ - 4991856, - 4992096, - 3320958, - 4902384, - 4994704, - 4773216, - 3323118, - 3319950, - 4969760, - 4731504, - 4983168, - 4730112, - 4966720, - 3319860, - 3320126, - 4773392, - 4963584, - 4961888 + 4994384, + 4994624, + 3323326, + 4904816, + 4997232, + 4775648, + 3325486, + 3322318, + 4972192, + 4733856, + 4985696, + 4732480, + 4969152, + 3322228, + 3322494, + 4775824, + 4966016, + 4964320 ], "bases": [ { @@ -48319,14 +48176,14 @@ }, { "type_name": "CSVCMsg_ServerInfo_t", - "vtable_address": 9680648, + "vtable_address": 9683288, "methods": [ - 7019776, - 7020032, - 5346608, - 5346608, - 5966192, - 5995616 + 7013536, + 7013792, + 5349104, + 5349104, + 5968688, + 5998112 ], "bases": [ { @@ -48391,26 +48248,26 @@ }, { "type_name": "CSVCMsg_ServerInfo_t", - "vtable_address": 9680712, - "methods": [ - 7020304, - 7020544, - 3320958, - 4902384, - 4994704, - 4773216, - 3323118, - 3319950, - 4969760, - 4731504, - 4983168, - 4730112, - 4966720, - 3319860, - 3320126, - 4773392, - 4963584, - 4961888 + "vtable_address": 9683352, + "methods": [ + 7014064, + 7014304, + 3323326, + 4904816, + 4997232, + 4775648, + 3325486, + 3322318, + 4972192, + 4733856, + 4985696, + 4732480, + 4969152, + 3322228, + 3322494, + 4775824, + 4966016, + 4964320 ], "bases": [ { @@ -48475,26 +48332,26 @@ }, { "type_name": "CSVCMsg_ServerSteamID", - "vtable_address": 9571808, + "vtable_address": 9575008, "methods": [ - 5095056, - 5095184, - 3320958, - 4902912, - 5100992, - 4773216, - 3323118, - 3319950, - 5074800, - 4731504, - 5080256, - 4730112, - 5068800, - 3319860, - 3320126, - 4773392, - 5074224, - 5068496 + 5097584, + 5097712, + 3323326, + 4905344, + 5103520, + 4775648, + 3325486, + 3322318, + 5077328, + 4733856, + 5082784, + 4732480, + 5071328, + 3322228, + 3322494, + 4775824, + 5076752, + 5071024 ], "bases": [ { @@ -48527,14 +48384,14 @@ }, { "type_name": "CSVCMsg_ServerSteamID_t", - "vtable_address": 9684264, + "vtable_address": 9687688, "methods": [ - 6878272, - 6878416, - 5346608, - 5346608, - 5966672, - 5999088 + 6872368, + 6872512, + 5349104, + 5349104, + 5969168, + 6001584 ], "bases": [ { @@ -48599,26 +48456,26 @@ }, { "type_name": "CSVCMsg_ServerSteamID_t", - "vtable_address": 9684328, - "methods": [ - 6878560, - 6878688, - 3320958, - 4902912, - 5100992, - 4773216, - 3323118, - 3319950, - 5074800, - 4731504, - 5080256, - 4730112, - 5068800, - 3319860, - 3320126, - 4773392, - 5074224, - 5068496 + "vtable_address": 9687752, + "methods": [ + 6872656, + 6872784, + 3323326, + 4905344, + 5103520, + 4775648, + 3325486, + 3322318, + 5077328, + 4733856, + 5082784, + 4732480, + 5071328, + 3322228, + 3322494, + 4775824, + 5076752, + 5071024 ], "bases": [ { @@ -48683,26 +48540,26 @@ }, { "type_name": "CSVCMsg_SetPause", - "vtable_address": 9576608, + "vtable_address": 9579808, "methods": [ - 5022544, - 5022672, - 3320958, - 4902432, - 5028672, - 4773216, - 3323118, - 3319950, - 4935600, - 4731504, - 5007712, - 4730112, - 4996576, - 3319860, - 3320126, - 4773392, - 5003248, - 4996064 + 5025072, + 5025200, + 3323326, + 4904864, + 5031200, + 4775648, + 3325486, + 3322318, + 4938032, + 4733856, + 5010240, + 4732480, + 4999104, + 3322228, + 3322494, + 4775824, + 5005776, + 4998592 ], "bases": [ { @@ -48735,14 +48592,14 @@ }, { "type_name": "CSVCMsg_SetPause_t", - "vtable_address": 9650400, + "vtable_address": 9653616, "methods": [ - 6387056, - 6387200, - 5346608, - 5346608, - 5966032, - 5995024 + 6390032, + 6390176, + 5349104, + 5349104, + 5968528, + 5997520 ], "bases": [ { @@ -48807,26 +48664,26 @@ }, { "type_name": "CSVCMsg_SetPause_t", - "vtable_address": 9650464, - "methods": [ - 6387344, - 6387472, - 3320958, - 4902432, - 5028672, - 4773216, - 3323118, - 3319950, - 4935600, - 4731504, - 5007712, - 4730112, - 4996576, - 3319860, - 3320126, - 4773392, - 5003248, - 4996064 + "vtable_address": 9653680, + "methods": [ + 6390320, + 6390448, + 3323326, + 4904864, + 5031200, + 4775648, + 3325486, + 3322318, + 4938032, + 4733856, + 5010240, + 4732480, + 4999104, + 3322228, + 3322494, + 4775824, + 5005776, + 4998592 ], "bases": [ { @@ -48891,26 +48748,26 @@ }, { "type_name": "CSVCMsg_SetView", - "vtable_address": 9575648, + "vtable_address": 9578848, "methods": [ - 5024256, - 5024384, - 3320958, - 4902528, - 5029712, - 4773216, - 3323118, - 3319950, - 4936880, - 4731504, - 5012032, - 4730112, - 4999680, - 3319860, - 3320126, - 4773392, - 5003440, - 4996160 + 5026784, + 5026912, + 3323326, + 4904960, + 5032240, + 4775648, + 3325486, + 3322318, + 4939312, + 4733856, + 5014560, + 4732480, + 5002208, + 3322228, + 3322494, + 4775824, + 5005968, + 4998688 ], "bases": [ { @@ -48943,26 +48800,26 @@ }, { "type_name": "CSVCMsg_Sounds", - "vtable_address": 9575968, + "vtable_address": 9579168, "methods": [ - 5023664, - 5023824, - 3320958, - 4902496, - 5029392, - 4773216, - 3323118, - 3319950, - 5002608, - 4731504, - 5010672, - 4730112, - 4999152, - 3319860, - 3320126, - 4773392, - 5003376, - 4996128 + 5026192, + 5026352, + 3323326, + 4904928, + 5031920, + 4775648, + 3325486, + 3322318, + 5005136, + 4733856, + 5013200, + 4732480, + 5001680, + 3322228, + 3322494, + 4775824, + 5005904, + 4998656 ], "bases": [ { @@ -48995,26 +48852,26 @@ }, { "type_name": "CSVCMsg_Sounds_sounddata_t", - "vtable_address": 9576128, + "vtable_address": 9579328, "methods": [ - 5023408, - 5023536, - 3320958, - 4902480, - 5029264, - 4773216, - 3323118, - 3319950, - 5002064, - 4731504, - 5009280, - 4730112, - 4996704, - 3319860, - 3320126, - 4773392, - 5003344, - 4996112 + 5025936, + 5026064, + 3323326, + 4904912, + 5031792, + 4775648, + 3325486, + 3322318, + 5004592, + 4733856, + 5011808, + 4732480, + 4999232, + 3322228, + 3322494, + 4775824, + 5005872, + 4998640 ], "bases": [ { @@ -49047,26 +48904,26 @@ }, { "type_name": "CSVCMsg_SplitScreen", - "vtable_address": 9575008, + "vtable_address": 9578208, "methods": [ - 5026816, - 5026944, - 3320958, - 4902592, - 5030192, - 4773216, - 3323118, - 3319950, - 5002816, - 4731504, - 5014592, - 4730112, - 5000896, - 3319860, - 3320126, - 4773392, - 5003568, - 4996224 + 5029344, + 5029472, + 3323326, + 4905024, + 5032720, + 4775648, + 3325486, + 3322318, + 5005344, + 4733856, + 5017120, + 4732480, + 5003424, + 3322228, + 3322494, + 4775824, + 5006096, + 4998752 ], "bases": [ { @@ -49099,14 +48956,14 @@ }, { "type_name": "CSVCMsg_SplitScreen_t", - "vtable_address": 9648744, + "vtable_address": 9651960, "methods": [ - 6323888, - 6324032, - 5346608, - 5346608, - 5964992, - 5990624 + 6326448, + 6326592, + 5349104, + 5349104, + 5967488, + 5993120 ], "bases": [ { @@ -49171,26 +49028,26 @@ }, { "type_name": "CSVCMsg_SplitScreen_t", - "vtable_address": 9648808, - "methods": [ - 6324176, - 6324304, - 3320958, - 4902592, - 5030192, - 4773216, - 3323118, - 3319950, - 5002816, - 4731504, - 5014592, - 4730112, - 5000896, - 3319860, - 3320126, - 4773392, - 5003568, - 4996224 + "vtable_address": 9652024, + "methods": [ + 6326736, + 6326864, + 3323326, + 4905024, + 5032720, + 4775648, + 3325486, + 3322318, + 5005344, + 4733856, + 5017120, + 4732480, + 5003424, + 3322228, + 3322494, + 4775824, + 5006096, + 4998752 ], "bases": [ { @@ -49255,26 +49112,26 @@ }, { "type_name": "CSVCMsg_StopSound", - "vtable_address": 9570048, - "methods": [ - 5098912, - 5099040, - 3320958, - 4903088, - 5103152, - 4773216, - 3323118, - 3319950, - 5074768, - 4731504, - 5087360, - 4730112, - 5070176, - 3319860, - 3320126, - 4773392, - 5074576, - 5068672 + "vtable_address": 9573248, + "methods": [ + 5101440, + 5101568, + 3323326, + 4905520, + 5105680, + 4775648, + 3325486, + 3322318, + 5077296, + 4733856, + 5089888, + 4732480, + 5072704, + 3322228, + 3322494, + 4775824, + 5077104, + 5071200 ], "bases": [ { @@ -49307,26 +49164,26 @@ }, { "type_name": "CSVCMsg_TempEntities", - "vtable_address": 9572928, + "vtable_address": 9576128, "methods": [ - 5051552, - 5051696, - 3320958, - 4902800, - 5055984, - 4773216, - 3323118, - 3319950, - 5042704, - 4731504, - 5063616, - 4730112, - 5039008, - 3319860, - 3320126, - 4773392, - 5043600, - 5032640 + 5054080, + 5054224, + 3323326, + 4905232, + 5058512, + 4775648, + 3325486, + 3322318, + 5045232, + 4733856, + 5066144, + 4732480, + 5041536, + 3322228, + 3322494, + 4775824, + 5046128, + 5035168 ], "bases": [ { @@ -49359,26 +49216,26 @@ }, { "type_name": "CSVCMsg_UpdateStringTable", - "vtable_address": 9572608, + "vtable_address": 9575808, "methods": [ - 5052176, - 5052320, - 3320958, - 4902832, - 5056800, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5065216, - 4730112, - 5040672, - 3319860, - 3320126, - 4773392, - 5043664, - 5032672 + 5054704, + 5054848, + 3323326, + 4905264, + 5059328, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5067744, + 4732480, + 5043200, + 3322228, + 3322494, + 4775824, + 5046192, + 5035200 ], "bases": [ { @@ -49411,14 +49268,14 @@ }, { "type_name": "CSVCMsg_UpdateStringTable_t", - "vtable_address": 9689584, + "vtable_address": 9691616, "methods": [ - 7361280, - 7361440, - 5346608, - 5346608, - 5965792, - 5994048 + 7354752, + 7354912, + 5349104, + 5349104, + 5968288, + 5996544 ], "bases": [ { @@ -49483,26 +49340,26 @@ }, { "type_name": "CSVCMsg_UpdateStringTable_t", - "vtable_address": 9689648, - "methods": [ - 7361600, - 7361760, - 3320958, - 4902832, - 5056800, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5065216, - 4730112, - 5040672, - 3319860, - 3320126, - 4773392, - 5043664, - 5032672 + "vtable_address": 9691680, + "methods": [ + 7355072, + 7355232, + 3323326, + 4905264, + 5059328, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5067744, + 4732480, + 5043200, + 3322228, + 3322494, + 4775824, + 5046192, + 5035200 ], "bases": [ { @@ -49567,26 +49424,26 @@ }, { "type_name": "CSVCMsg_UserCommands", - "vtable_address": 9567968, - "methods": [ - 5127712, - 5127872, - 3320958, - 4903296, - 5116624, - 4773216, - 3323118, - 3319950, - 5110880, - 4731520, - 5146432, - 4730112, - 4817344, - 3319860, - 3320126, - 4817328, - 5111392, - 5104304 + "vtable_address": 9571168, + "methods": [ + 5130240, + 5130400, + 3323326, + 4905728, + 5119152, + 4775648, + 3325486, + 3322318, + 5113408, + 4733872, + 5148960, + 4732480, + 4819776, + 3322228, + 3322494, + 4819760, + 5113920, + 5106832 ], "bases": [ { @@ -49619,26 +49476,26 @@ }, { "type_name": "CSVCMsg_UserMessage", - "vtable_address": 9574528, + "vtable_address": 9577728, "methods": [ - 5027680, - 5027824, - 3320958, - 4902640, - 5030800, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5016496, - 4730112, - 5005152, - 3319860, - 3320126, - 4773392, - 5003664, - 4996272 + 5030208, + 5030352, + 3323326, + 4905072, + 5033328, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5019024, + 4732480, + 5007680, + 3322228, + 3322494, + 4775824, + 5006192, + 4998800 ], "bases": [ { @@ -49671,14 +49528,14 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 9681592, + "vtable_address": 9684584, "methods": [ - 7062272, - 7062432, - 5346608, - 5346608, - 6087888, - 6111424 + 7057168, + 7057328, + 5349104, + 5349104, + 6090448, + 6113984 ], "bases": [ { @@ -49743,26 +49600,26 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 9681656, - "methods": [ - 7062592, - 7062752, - 3320958, - 4902640, - 5030800, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5016496, - 4730112, - 5005152, - 3319860, - 3320126, - 4773392, - 5003664, - 4996272 + "vtable_address": 9684648, + "methods": [ + 7057488, + 7057648, + 3323326, + 4905072, + 5033328, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5019024, + 4732480, + 5007680, + 3322228, + 3322494, + 4775824, + 5006192, + 4998800 ], "bases": [ { @@ -49827,26 +49684,26 @@ }, { "type_name": "CSVCMsg_VoiceData", - "vtable_address": 9572448, + "vtable_address": 9575648, "methods": [ - 5052480, - 5052896, - 3320958, - 4902848, - 5057088, - 4773216, - 3323118, - 3319950, - 5044816, - 4731504, - 5065888, - 4730112, - 5033088, - 3319860, - 3320126, - 4773392, - 5043696, - 5032688 + 5055008, + 5055424, + 3323326, + 4905280, + 5059616, + 4775648, + 3325486, + 3322318, + 5047344, + 4733856, + 5068416, + 4732480, + 5035616, + 3322228, + 3322494, + 4775824, + 5046224, + 5035216 ], "bases": [ { @@ -49879,14 +49736,14 @@ }, { "type_name": "CSVCMsg_VoiceData_t", - "vtable_address": 9681816, + "vtable_address": 9684808, "methods": [ - 6877312, - 6879472, - 5346608, - 5346608, - 5965552, - 5999632 + 6903488, + 6910256, + 5349104, + 5349104, + 5968048, + 6002128 ], "bases": [ { @@ -49951,26 +49808,26 @@ }, { "type_name": "CSVCMsg_VoiceData_t", - "vtable_address": 9681880, - "methods": [ - 6871840, - 6879536, - 3320958, - 4902848, - 5057088, - 4773216, - 3323118, - 3319950, - 5044816, - 4731504, - 5065888, - 4730112, - 5033088, - 3319860, - 3320126, - 4773392, - 5043696, - 5032688 + "vtable_address": 9684872, + "methods": [ + 6898800, + 6910320, + 3323326, + 4905280, + 5059616, + 4775648, + 3325486, + 3322318, + 5047344, + 4733856, + 5068416, + 4732480, + 5035616, + 3322228, + 3322494, + 4775824, + 5046224, + 5035216 ], "bases": [ { @@ -50035,26 +49892,26 @@ }, { "type_name": "CSVCMsg_VoiceInit", - "vtable_address": 9576448, + "vtable_address": 9579648, "methods": [ - 5022800, - 5022944, - 3320958, - 4902448, - 5028720, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5008192, - 4730112, - 5003744, - 3319860, - 3320126, - 4773392, - 5003280, - 4996080 + 5025328, + 5025472, + 3323326, + 4904880, + 5031248, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5010720, + 4732480, + 5006272, + 3322228, + 3322494, + 4775824, + 5005808, + 4998608 ], "bases": [ { @@ -50087,14 +49944,14 @@ }, { "type_name": "CSVCMsg_VoiceInit_t", - "vtable_address": 9679976, + "vtable_address": 9682152, "methods": [ - 6977104, - 6977264, - 5346608, - 5346608, - 5965632, - 5993472 + 6959760, + 6959920, + 5349104, + 5349104, + 5968128, + 5995968 ], "bases": [ { @@ -50159,26 +50016,26 @@ }, { "type_name": "CSVCMsg_VoiceInit_t", - "vtable_address": 9680040, - "methods": [ - 6977424, - 6977584, - 3320958, - 4902448, - 5028720, - 4773216, - 3323118, - 3319950, - 5001936, - 4731504, - 5008192, - 4730112, - 5003744, - 3319860, - 3320126, - 4773392, - 5003280, - 4996080 + "vtable_address": 9682216, + "methods": [ + 6960080, + 6960240, + 3323326, + 4904880, + 5031248, + 4775648, + 3325486, + 3322318, + 5004464, + 4733856, + 5010720, + 4732480, + 5006272, + 3322228, + 3322494, + 4775824, + 5005808, + 4998608 ], "bases": [ { @@ -50243,9 +50100,9 @@ }, { "type_name": "CSceneViewDebugOverlaysListener", - "vtable_address": 9673776, + "vtable_address": 9676760, "methods": [ - 6934976 + 6937600 ], "bases": [ { @@ -50267,9 +50124,9 @@ }, { "type_name": "CSchemaInstallCallback", - "vtable_address": 9714368, + "vtable_address": 9717600, "methods": [ - 8662320 + 8665520 ], "bases": [ { @@ -50291,9 +50148,9 @@ }, { "type_name": "CSchemaRegistration_engine2", - "vtable_address": 9714576, + "vtable_address": 9717808, "methods": [ - 7596752 + 7590432 ], "bases": [ { @@ -50315,9 +50172,9 @@ }, { "type_name": "CSchemaRegistration_entity2", - "vtable_address": 9714416, + "vtable_address": 9717648, "methods": [ - 8622128 + 8625328 ], "bases": [ { @@ -50339,37 +50196,37 @@ }, { "type_name": "CScreenshotService", - "vtable_address": 9635016, - "methods": [ - 5508640, - 5508768, - 4737920, - 6130288, - 6159792, - 4730192, - 4730208, - 5307648, - 5508976, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5148704, - 5507776, - 5507792, - 5507808, - 6147872, - 5507824, - 5507840, - 6134144, - 6143088, - 6151488, - 6153264, - 6153760, - 5669776, - 5669808 + "vtable_address": 9638216, + "methods": [ + 5511136, + 5511264, + 4740256, + 6132816, + 6162288, + 4732560, + 5264864, + 5310144, + 5511472, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5151232, + 5510272, + 5510288, + 5510304, + 6150400, + 5510320, + 5510336, + 6136672, + 6145616, + 6154016, + 6155792, + 6156288, + 5672240, + 5672272 ], "bases": [ { @@ -50489,13 +50346,13 @@ }, { "type_name": "CScreenshotService", - "vtable_address": 9635264, + "vtable_address": 9638464, "methods": [ - 6153248, - 6153744, - 6154240, - 6128384, - 6128400 + 6155776, + 6156272, + 6156768, + 6130912, + 6130928 ], "bases": [ { @@ -50615,12 +50472,12 @@ }, { "type_name": "CScreenshotServiceReadTexturePixelsCallback", - "vtable_address": 9713040, + "vtable_address": 9716272, "methods": [ - 6142400, - 6143072, - 6128336, - 6143680 + 6144928, + 6145600, + 6130864, + 6146208 ], "bases": [ { @@ -50653,19 +50510,19 @@ }, { "type_name": "CSequentialPrerequisite", - "vtable_address": 9588152, - "methods": [ - 5265456, - 5286608, - 5262448, - 5262464, - 5269568, - 5262512, - 5279072, - 5269232, - 5268224, - 5262496, - 5266480 + "vtable_address": 9591352, + "methods": [ + 5267984, + 5289136, + 5264960, + 5264976, + 5272096, + 5265024, + 5281600, + 5271760, + 5270752, + 5265008, + 5269008 ], "bases": [ { @@ -50697,10 +50554,10 @@ }, { "type_name": "CSequentialPrerequisite", - "vtable_address": 9588256, + "vtable_address": 9591456, "methods": [ - 5269392, - 5268736 + 5271920, + 5271264 ], "bases": [ { @@ -50732,9 +50589,9 @@ }, { "type_name": "CSerializedEntityPolymorphicFieldsMetadataHelper", - "vtable_address": 9682552, + "vtable_address": 9685896, "methods": [ - 7076032 + 7064800 ], "bases": [ { @@ -50756,12 +50613,12 @@ }, { "type_name": "CServerConsoleRedirect", - "vtable_address": 9682880, + "vtable_address": 9686512, "methods": [ - 7170048, - 7169888, - 7183296, - 7170080 + 7200224, + 7200064, + 7203392, + 7200256 ], "bases": [ { @@ -50783,18 +50640,18 @@ }, { "type_name": "CServerGameSessionManifestPrerequisite", - "vtable_address": 9616768, + "vtable_address": 9619968, "methods": [ - 5904800, - 5905072, - 5262448, - 5262464, - 5262880, - 5835104, - 5281376, - 5865408, - 4730192, - 5835136 + 5907296, + 5907568, + 5264960, + 5264976, + 5265408, + 5837600, + 5283904, + 5867904, + 4732560, + 5837632 ], "bases": [ { @@ -50837,10 +50694,10 @@ }, { "type_name": "CServerGameSessionManifestPrerequisite", - "vtable_address": 9616864, + "vtable_address": 9620064, "methods": [ - 5835120, - 5835344 + 5837616, + 5837840 ], "bases": [ { @@ -50883,13 +50740,13 @@ }, { "type_name": "CServerMsg", - "vtable_address": 9657120, + "vtable_address": 9660320, "methods": [ - 6527360, - 6527376, - 6527392, - 6527424, - 6527408 + 6530240, + 6530256, + 6530272, + 6530304, + 6530288 ], "bases": [ { @@ -50911,19 +50768,19 @@ }, { "type_name": "CServerMsg_CheckReservation", - "vtable_address": 9657224, + "vtable_address": 9660424, "methods": [ - 6527360, - 6527376, - 6527392, - 6527424, - 6527408, - 6528128, - 6528592, - 6527840, - 6549424, - 6541616, - 6537744 + 6530240, + 6530256, + 6530272, + 6530304, + 6530288, + 6531008, + 6531472, + 6530720, + 6551392, + 6544496, + 6540624 ], "bases": [ { @@ -50956,19 +50813,19 @@ }, { "type_name": "CServerRemoteAccess", - "vtable_address": 9684752, + "vtable_address": 9686352, "methods": [ - 7210400, - 7226976, - 7169760, - 7171472, - 7168592, - 7164032, - 7164048, - 7170512, - 7164080, - 7164112, - 7164144 + 7195936, + 7206720, + 7223568, + 7204256, + 7196432, + 7195792, + 7195808, + 7201392, + 7195840, + 7195872, + 7195904 ], "bases": [ { @@ -51011,13 +50868,13 @@ }, { "type_name": "CServerRemoteAccess", - "vtable_address": 9684856, + "vtable_address": 9686456, "methods": [ - 7164064, - 7170992, - 7164096, - 7164128, - 7164160 + 7195824, + 7201872, + 7195856, + 7195888, + 7195920 ], "bases": [ { @@ -51060,89 +50917,89 @@ }, { "type_name": "CServerSideClient", - "vtable_address": 9675384, - "methods": [ - 7040208, - 7056896, - 7061376, - 7049328, - 7043600, - 7040512, - 6997024, - 7043904, - 7044400, - 7044688, - 7039392, - 7037504, - 6996992, - 6996944, - 7061888, - 7069856, - 7068880, - 6998528, - 7016800, - 6790256, - 7035312, - 7035792, - 7035728, - 6952032, - 6790288, - 7016272, - 7005328, - 7005696, - 6997056, - 7023664, + "vtable_address": 9677920, + "methods": [ + 7038544, + 7051376, + 7056272, + 7045616, + 7041424, + 7038832, + 6988064, 7041600, - 7034336, - 6997200, - 7050880, - 7048704, - 7043248, - 7066816, - 7035680, - 7037024, - 7042112, - 6567216, - 7039600, - 7036112, - 7047184, - 7046768, - 7039712, - 7063632, - 6328016, - 7039536, - 7001824, - 7047600, - 7072512, + 7042096, 7028672, - 7041360, - 7046592, - 7034672, - 6996976, - 7036528, - 7036320, - 7046336, - 7045680, - 7046208, - 7045056, - 7001424, - 7001152, - 7001712, - 6790304, - 7034912, - 7036080, - 7035456, - 7064896, + 7037936, + 7033952, + 6988032, + 6987984, + 7056784, + 7087232, + 7063136, + 6989120, + 7006992, + 6787872, + 7027840, + 7028352, + 7028288, + 6942336, + 6787904, + 7051904, + 7034448, + 7034880, + 7027040, + 7059104, + 7036000, + 7060704, + 7027184, + 7047168, + 7043696, + 7041072, + 7061072, + 7028240, + 7033472, + 7039936, + 6570224, + 7066656, + 7064112, + 7067184, + 7066768, + 7038080, + 7052288, + 6330576, + 7034816, + 7029072, + 7067600, + 7089888, + 7023616, + 7039696, 7066480, - 6905760, - 7046368, - 7043776, - 7074896, - 7056400, - 7048672, - 7036144, - 7064272, - 7043952 + 7027200, + 6988016, + 7036752, + 7036544, + 7043664, + 7043008, + 7043536, + 7042384, + 6994672, + 6994400, + 6994960, + 6787920, + 7027440, + 7028640, + 7027984, + 7082048, + 7084304, + 6898512, + 7065008, + 7064880, + 7039680, + 7068288, + 7068784, + 7064144, + 7052928, + 7041648 ], "bases": [ { @@ -51195,9 +51052,9 @@ }, { "type_name": "CServerSideClient", - "vtable_address": 9676048, + "vtable_address": 9678584, "methods": [ - 6998656 + 6989248 ], "bases": [ { @@ -51250,18 +51107,18 @@ }, { "type_name": "CServerSideClient::CSendJob_Empty", - "vtable_address": 9674376, + "vtable_address": 9682728, "methods": [ - 7086960, - 7096448, - 5311536, - 5311488, - 5262416, - 5268000, - 7078000, - 5629872, - 5629856, - 7036160 + 7071232, + 7084912, + 5314032, + 5313984, + 5264928, + 5270528, + 7070320, + 5632368, + 5632352, + 7064160 ], "bases": [ { @@ -51348,18 +51205,18 @@ }, { "type_name": "CServerSideClient::CSendJob_HltvReplay", - "vtable_address": 9674104, + "vtable_address": 9682456, "methods": [ - 7086832, - 7096304, - 5311536, - 5311488, - 5262416, - 5268000, - 7078144, - 5629872, - 5629856, - 7048288 + 7071104, + 7084768, + 5314032, + 5313984, + 5264928, + 5270528, + 7070464, + 5632368, + 5632352, + 7068816 ], "bases": [ { @@ -51446,18 +51303,18 @@ }, { "type_name": "CServerSideClient::CSendJob_HltvSource", - "vtable_address": 9674200, + "vtable_address": 9682552, "methods": [ - 7086704, - 7096160, - 5311536, - 5311488, - 5262416, - 5268000, - 7077744, - 5629872, - 5629856, - 7076864 + 7070976, + 7084624, + 5314032, + 5313984, + 5264928, + 5270528, + 7070064, + 5632368, + 5632352, + 7069216 ], "bases": [ { @@ -51544,18 +51401,18 @@ }, { "type_name": "CServerSideClient::CSendJob_Regular", - "vtable_address": 9608984, + "vtable_address": 9612184, "methods": [ - 5846080, - 5865136, - 5311536, - 5311488, - 5262416, - 5268000, - 7041184, - 5629872, - 7035664, - 7050912 + 5848576, + 5867632, + 5314032, + 5313984, + 5264928, + 5270528, + 7039504, + 5632368, + 7028224, + 7075424 ], "bases": [ { @@ -51631,9 +51488,9 @@ }, { "type_name": "CServerSideClientBase", - "vtable_address": 9674696, + "vtable_address": 9677232, "methods": [ - 7040208 + 7038544 ], "bases": [ { @@ -51675,9 +51532,9 @@ }, { "type_name": "CServerSideClientBase", - "vtable_address": 9675360, + "vtable_address": 9677896, "methods": [ - 6998656 + 6989248 ], "bases": [ { @@ -51717,15 +51574,57 @@ } } }, + { + "type_name": "CServerSideClientBase", + "vtable_address": 9692560, + "methods": [], + "bases": [ + { + "type_name": "CUtlSlot", + "details": { + "Itanium": { + "offset": 8, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "INetworkChannelNotify", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "INetworkMessageProcessingPreFilter", + "details": { + "Itanium": { + "offset": 48, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 1990680 + } + } + }, { "type_name": "CSimpleLoggingListener", - "vtable_address": 9714520, + "vtable_address": 9717752, "methods": [ - 7681888, - 7681968, - 5148688, - 5148688, - 5148688 + 7664112, + 7664192, + 5151216, + 5151216, + 5151216 ], "bases": [ { @@ -51747,13 +51646,13 @@ }, { "type_name": "CSimpleWindowsLoggingListener", - "vtable_address": 9587288, + "vtable_address": 9590488, "methods": [ - 7682000, - 4730192, - 5148688, - 5148688, - 5148688 + 7664224, + 4732560, + 5151216, + 5151216, + 5151216 ], "bases": [ { @@ -51775,46 +51674,46 @@ }, { "type_name": "CSoundService", - "vtable_address": 9638480, - "methods": [ - 6167440, - 6167552, - 4737920, - 6181536, - 6184384, - 4730192, - 4730208, - 5307648, - 6167760, - 4773136, - 4773088, - 4730208, - 5507744, - 5708608, - 6167152, - 6163808, - 5507776, - 5507792, - 5507808, - 6154256, - 5507824, - 5507840, - 6170432, - 6185328, - 6177408, - 6163824, + "vtable_address": 9641680, + "methods": [ + 6169936, + 6170048, + 4740256, + 6184032, + 6186880, + 4732560, + 5264864, + 5310144, + 6170256, + 4775568, + 4775520, + 5264864, + 5510240, + 5711104, + 6169648, + 6166304, + 5510272, + 5510288, + 5510304, + 6156784, + 5510320, + 5510336, + 6172928, + 6187824, 6179904, - 6180272, - 6128816, - 6128832, - 6129264, - 6134576, - 6128688, - 6163520, - 6134848, - 6129296, - 6133488, - 6167280 + 6166320, + 6182400, + 6182768, + 6131344, + 6131360, + 6131792, + 6137104, + 6131216, + 6166016, + 6137376, + 6131824, + 6136016, + 6169776 ], "bases": [ { @@ -51935,9 +51834,9 @@ }, { "type_name": "CSource1InputHandlerPostClientHandler", - "vtable_address": 9685984, + "vtable_address": 9688352, "methods": [ - 7269072 + 7287488 ], "bases": [ { @@ -51959,9 +51858,9 @@ }, { "type_name": "CSource1InputHandlerPreClientHandler", - "vtable_address": 9686032, + "vtable_address": 9688400, "methods": [ - 7268864 + 7287280 ], "bases": [ { @@ -51983,9 +51882,9 @@ }, { "type_name": "CSource1InputHandler_Client", - "vtable_address": 9686008, + "vtable_address": 9688376, "methods": [ - 7268560 + 7281744 ], "bases": [ { @@ -52007,26 +51906,26 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification", - "vtable_address": 9577248, - "methods": [ - 4991296, - 4991568, - 3320958, - 4902368, - 4994128, - 4773216, - 3323118, - 3319950, - 4969408, - 4731504, - 4978496, - 4730112, - 4965952, - 3319860, - 3320126, - 4773392, - 4963552, - 4961872 + "vtable_address": 9580448, + "methods": [ + 4993824, + 4994096, + 3323326, + 4904800, + 4996656, + 4775648, + 3325486, + 3322318, + 4971840, + 4733856, + 4981024, + 4732480, + 4968384, + 3322228, + 3322494, + 4775824, + 4965984, + 4964304 ], "bases": [ { @@ -52059,26 +51958,26 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification_Client", - "vtable_address": 9577408, - "methods": [ - 4989440, - 4990368, - 3320958, - 4902352, - 4993856, - 4773216, - 3323118, - 3319950, - 4969008, - 4731504, - 4977488, - 4730112, - 4965440, - 3319860, - 3320126, - 4773392, - 4963520, - 4961856 + "vtable_address": 9580608, + "methods": [ + 4991968, + 4992896, + 3323326, + 4904784, + 4996384, + 4775648, + 3325486, + 3322318, + 4971440, + 4733856, + 4980016, + 4732480, + 4967872, + 3322228, + 3322494, + 4775824, + 4965952, + 4964288 ], "bases": [ { @@ -52111,15 +52010,15 @@ }, { "type_name": "CSpawnServerPrerequisite", - "vtable_address": 9608832, + "vtable_address": 9612032, "methods": [ - 5836256, - 5865776, - 5262448, - 5262464, - 5846480, - 5835552, - 5279008 + 5838752, + 5868272, + 5264960, + 5264976, + 5848976, + 5838048, + 5281536 ], "bases": [ { @@ -52141,55 +52040,55 @@ }, { "type_name": "CSplitScreenService", - "vtable_address": 9637384, - "methods": [ - 6208752, - 6209216, - 4737920, - 6182928, - 6186096, - 4730192, - 4730208, - 5307648, - 6210096, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5148704, - 5507776, - 5507792, - 5507808, - 5390416, - 5507824, - 5507840, - 6167936, - 6222576, - 6202480, - 6168272, + "vtable_address": 9640584, + "methods": [ + 6211248, + 6211712, + 4740256, + 6185424, + 6188592, + 4732560, + 5264864, + 5310144, + 6212592, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5151232, + 5510272, + 5510288, + 5510304, + 5392912, + 5510320, + 5510336, + 6170432, + 6225072, + 6204976, + 6170768, + 6173632, + 6186416, + 6186496, + 6170800, + 6169600, + 6171040, + 6169584, + 6170832, + 6171008, + 6171232, + 6171280, + 6186688, + 6186784, + 6169568, + 6170880, 6171136, - 6183920, - 6184000, - 6168304, - 6167104, - 6168544, - 6167088, - 6168336, - 6168512, - 6168736, - 6168784, - 6184192, - 6184288, - 6167072, - 6168384, - 6168640, - 6170256, - 6195120, - 6169344, - 5398912, - 5398912 + 6172752, + 6197616, + 6171840, + 5401408, + 5401408 ], "bases": [ { @@ -52320,13 +52219,13 @@ }, { "type_name": "CSplitScreenService", - "vtable_address": 9637776, + "vtable_address": 9640976, "methods": [ - 6208432, - 6222896, - 6169360, - 6167120, - 6167136 + 6210928, + 6225392, + 6171856, + 6169616, + 6169632 ], "bases": [ { @@ -52457,40 +52356,40 @@ }, { "type_name": "CStatsService", - "vtable_address": 9642320, + "vtable_address": 9645520, "methods": [ - 6208864, - 6209440, - 4737920, - 6211056, - 6203440, - 4730192, - 4730208, - 5307648, - 6210192, - 4773136, - 4773088, - 6203536, - 5507744, - 6203552, 6211360, - 6212192, - 5507776, - 5507792, - 5507808, - 6238192, - 5507824, - 5507840, - 6223568, - 6224208, - 6203648, - 6204352, - 6203392, - 6203408, - 6203616, - 6203872, - 6204288, - 6203760 + 6211936, + 4740256, + 6213552, + 6205936, + 4732560, + 5264864, + 5310144, + 6212688, + 4775568, + 4775520, + 6206032, + 5510240, + 6206048, + 6213856, + 6214688, + 5510272, + 5510288, + 5510304, + 6240688, + 5510320, + 5510336, + 6226064, + 6226704, + 6206144, + 6206848, + 6205888, + 6205904, + 6206112, + 6206368, + 6206784, + 6206256 ], "bases": [ { @@ -52621,15 +52520,15 @@ }, { "type_name": "CStatsService", - "vtable_address": 9642592, + "vtable_address": 9645792, "methods": [ - 6224192, - 6224256, - 6203632, - 6204080, - 6204304, - 4730192, - 6210480 + 6226688, + 6226752, + 6206128, + 6206576, + 6206800, + 4732560, + 6212976 ], "bases": [ { @@ -52760,16 +52659,16 @@ }, { "type_name": "CStdFunctionJob", - "vtable_address": 9588368, + "vtable_address": 9591568, "methods": [ - 5268064, - 5286480, - 5311536, - 5311488, - 5262416, - 5268000, - 5268176, - 4730192 + 5270592, + 5289008, + 5314032, + 5313984, + 5264928, + 5270528, + 5270704, + 4732560 ], "bases": [ { @@ -52823,37 +52722,37 @@ }, { "type_name": "CTextConsole", - "vtable_address": 9586024, + "vtable_address": 9589224, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1940112 + "offset_to_top": 1940240 } } }, { "type_name": "CTextConsolePosix", - "vtable_address": 9586400, - "methods": [ - 7610240, - 7612944, - 7605472, - 7605360, - 7604272, - 4730112, - 4730112, - 4730192, - 7604080, - 7604784, - 7606064, - 7608688, - 7596720, - 7596736, - 5194544, - 5194544, - 5148704, - 7596704 + "vtable_address": 9589600, + "methods": [ + 7610528, + 7613376, + 7603920, + 7604512, + 7602832, + 4732480, + 4732480, + 4732560, + 7602640, + 7603344, + 7604624, + 7607248, + 7590400, + 7590416, + 5197040, + 5197040, + 5151232, + 7590384 ], "bases": [ { @@ -52875,13 +52774,13 @@ }, { "type_name": "CTextOnlyLoggingListener", - "vtable_address": 9603280, + "vtable_address": 9606480, "methods": [ - 5639008, - 4730192, - 5148688, - 5148688, - 5148688 + 5641488, + 4732560, + 5151216, + 5151216, + 5151216 ], "bases": [ { @@ -52903,7 +52802,7 @@ }, { "type_name": "CThreadEvent", - "vtable_address": 9559544, + "vtable_address": 9562736, "methods": [], "bases": [], "model": { @@ -52914,7 +52813,7 @@ }, { "type_name": "CThreadedDependentJob", - "vtable_address": 9601408, + "vtable_address": 9604608, "methods": [], "bases": [ { @@ -52962,20 +52861,20 @@ ], "model": { "Itanium": { - "offset_to_top": 1948176 + "offset_to_top": 1948304 } } }, { "type_name": "CThreadedFileLogger", - "vtable_address": 9710040, + "vtable_address": 9713272, "methods": [ - 8681344, - 8681840, - 8660544, - 8658336, - 8658304, - 8660720 + 8684544, + 8685040, + 8663744, + 8661536, + 8661504, + 8663920 ], "bases": [ { @@ -52997,7 +52896,7 @@ }, { "type_name": "CThreadedJob", - "vtable_address": 9588288, + "vtable_address": 9591488, "methods": [], "bases": [ { @@ -53038,63 +52937,20 @@ } } }, - { - "type_name": "CThreadedJob", - "vtable_address": 9682624, - "methods": [], - "bases": [ - { - "type_name": "CRefCounted1 >", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IRefCounted", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "CRefCountServiceBase", - "details": { - "Itanium": { - "offset": 8, - "flags": 2, - "bases": [] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 1987440 - } - } - }, { "type_name": "CThreadedJobWithDependencies", - "vtable_address": 9601424, + "vtable_address": 9604624, "methods": [ - 5631184, - 5633568, - 5311536, - 5311488, - 5262416, - 5268000, - 5630928, - 5629872, - 5629856, - 4730192 + 5633680, + 5636048, + 5314032, + 5313984, + 5264928, + 5270528, + 5633424, + 5632368, + 5632352, + 4732560 ], "bases": [ { @@ -53159,7 +53015,7 @@ }, { "type_name": "CThreadedLogger", - "vtable_address": 9709976, + "vtable_address": 9713208, "methods": [], "bases": [], "model": { @@ -53168,73 +53024,18 @@ } } }, - { - "type_name": "CTier1AppSystem", - "vtable_address": 9688616, - "methods": [], - "bases": [ - { - "type_name": "CTier0AppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseAppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "INetworkStringTableContainer", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "IAppSystem", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 1990080 - } - } - }, { "type_name": "CTier1AppSystemDict", - "vtable_address": 9584040, + "vtable_address": 9587240, "methods": [ - 5156624, - 5163840, - 5152816, - 5148720, - 5148736, - 4730112, - 7693232, - 4730192 + 5159120, + 5166336, + 5155312, + 5151248, + 5151264, + 4732480, + 7693504, + 4732560 ], "bases": [ { @@ -53256,72 +53057,71 @@ }, { "type_name": "CTier1Application", - "vtable_address": 9698992, - "methods": [ - 7683392, - 7681312, - 4737920, - 5267952, - 5262384, - 4730192, - 5150128, - 5262352, - 5267936, - 4773136, - 4773088, - 6611472, - 7691264, - 5152096, - 5152544, - 5152656, - 5152800, - 5152672, - 5152688, - 5147936, - 5148784, - 5148992, - 5149056, - 5149120, - 5149216, - 5149232, - 5149136, - 5149248, - 5149184, - 5149280, - 5149296, - 5149152, - 5149312, - 5149328, - 5149360, - 5152560, - 5149376, - 4730112, - 4730112, - 4730112, - 5149408, - 7681168, - 7681168, - 4729760, - 6790208, - 7681216, - 5149424, - 5149440, - 5149456, - 5148752, - 5148768, - 4730208, - 5149472, - 4730112, - 7681232, - 7681248, - 7681264, - 7681280, - 4730112, - 7681264, - 5149488, - 5149632, - 5149504, - 7681408 + "vtable_address": 9702136, + "methods": [ + 7698208, + 7694624, + 4740256, + 5270480, + 5264896, + 4732560, + 5152624, + 5264848, + 5270464, + 4775568, + 4775520, + 6614416, + 7728736, + 5154592, + 5155040, + 5155152, + 5155296, + 5155168, + 5155184, + 5150464, + 5151312, + 5151520, + 5151584, + 5151648, + 5151744, + 5151760, + 5151664, + 5151776, + 5151712, + 5151808, + 5151824, + 5151680, + 5151840, + 5151856, + 5151888, + 5155056, + 5151904, + 4732480, + 4732480, + 4732480, + 5151936, + 7662416, + 7662416, + 4732128, + 6787824, + 7662464, + 5151952, + 5151968, + 5151984, + 5151280, + 5151296, + 5264864, + 5152000, + 4732480, + 7662480, + 7662496, + 7662512, + 7662528, + 4732480, + 7662512, + 5152016, + 5152128, + 5152032 ], "bases": [ { @@ -53387,19 +53187,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9602360, + "vtable_address": 9605560, "methods": [ - 5673936, - 5674048, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5674256, - 4773136, - 4773088 + 5676432, + 5676544, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5676752, + 4775568, + 4775520 ], "bases": [ { @@ -53476,19 +53276,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9697136, + "vtable_address": 9701392, "methods": [ - 7561312, - 7561664, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 7562192, - 4773136, - 4773088 + 7594704, + 7595040, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 7595568, + 4775568, + 4775520 ], "bases": [ { @@ -53554,19 +53354,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9599192, + "vtable_address": 9602392, "methods": [ - 5508640, - 5508768, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5508976, - 4773136, - 4773088 + 5511136, + 5511264, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5511472, + 4775568, + 4775520 ], "bases": [ { @@ -53632,19 +53432,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9595256, + "vtable_address": 9598456, "methods": [ - 5311552, - 5311680, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5311888, - 4773136, - 4773088 + 5314048, + 5314176, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5314384, + 4775568, + 4775520 ], "bases": [ { @@ -53710,19 +53510,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9594536, + "vtable_address": 9597736, "methods": [ - 5349888, - 5350016, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5350224, - 4773136, - 4773088 + 5352384, + 5352512, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5352720, + 4775568, + 4775520 ], "bases": [ { @@ -53788,19 +53588,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9605088, + "vtable_address": 9608288, "methods": [ - 5705808, - 5706144, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5708512, - 4773136, - 4773088 + 5708304, + 5708640, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5711008, + 4775568, + 4775520 ], "bases": [ { @@ -53877,19 +53677,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9697424, + "vtable_address": 9701680, "methods": [ - 7561200, - 7561440, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 7562096, - 4773136, - 4773088 + 7594592, + 7594816, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 7595472, + 4775568, + 4775520 ], "bases": [ { @@ -53955,19 +53755,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9604192, + "vtable_address": 9607392, "methods": [ - 5746704, - 5746816, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5747024, - 4773136, - 4773088 + 5749200, + 5749312, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5749520, + 4775568, + 4775520 ], "bases": [ { @@ -54044,19 +53844,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9598400, + "vtable_address": 9601600, "methods": [ - 5391984, - 5392224, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5392656, - 4773136, - 4773088 + 5394480, + 5394720, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5395152, + 4775568, + 4775520 ], "bases": [ { @@ -54122,19 +53922,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9606240, + "vtable_address": 9609440, "methods": [ - 5838480, - 5838816, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5839472, - 4773136, - 4773088 + 5840976, + 5841312, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5841968, + 4775568, + 4775520 ], "bases": [ { @@ -54211,19 +54011,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9598096, + "vtable_address": 9601296, "methods": [ - 5392096, - 5392448, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5392752, - 4773136, - 4773088 + 5394592, + 5394944, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5395248, + 4775568, + 4775520 ], "bases": [ { @@ -54289,19 +54089,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9609512, + "vtable_address": 9612712, "methods": [ - 5838592, - 5839040, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5839568, - 4773136, - 4773088 + 5841088, + 5841536, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5842064, + 4775568, + 4775520 ], "bases": [ { @@ -54378,19 +54178,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9627680, + "vtable_address": 9630880, "methods": [ - 6045136, - 6045248, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6045456, - 4773136, - 4773088 + 6047664, + 6047776, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6047984, + 4775568, + 4775520 ], "bases": [ { @@ -54467,19 +54267,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9633832, + "vtable_address": 9637032, "methods": [ - 6093760, - 6093888, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6094096, - 4773136, - 4773088 + 6096320, + 6096448, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6096656, + 4775568, + 4775520 ], "bases": [ { @@ -54556,19 +54356,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9617632, + "vtable_address": 9620832, "methods": [ - 5883024, - 5883136, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5883344, - 4773136, - 4773088 + 5885520, + 5885632, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5885840, + 4775568, + 4775520 ], "bases": [ { @@ -54645,19 +54445,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9609296, + "vtable_address": 9612496, "methods": [ - 5838704, - 5839264, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 5839664, - 4773136, - 4773088 + 5841200, + 5841760, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 5842160, + 4775568, + 4775520 ], "bases": [ { @@ -54734,19 +54534,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9690008, + "vtable_address": 9692056, "methods": [ - 7338272, - 7338400, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 7338608, - 4773136, - 4773088 + 7327152, + 7327264, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 7327472, + 4775568, + 4775520 ], "bases": [ { @@ -54812,19 +54612,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9635512, + "vtable_address": 9638712, "methods": [ - 6133680, - 6133792, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6134000, - 4773136, - 4773088 + 6136208, + 6136320, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6136528, + 4775568, + 4775520 ], "bases": [ { @@ -54901,19 +54701,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9638112, - "methods": [ - 6167440, - 6167552, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6167760, - 4773136, - 4773088 + "vtable_address": 9641312, + "methods": [ + 6169936, + 6170048, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6170256, + 4775568, + 4775520 ], "bases": [ { @@ -54990,19 +54790,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9636960, + "vtable_address": 9640160, "methods": [ - 6208752, - 6209216, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6210096, - 4773136, - 4773088 + 6211248, + 6211712, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6212592, + 4775568, + 4775520 ], "bases": [ { @@ -55079,19 +54879,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9642024, + "vtable_address": 9645224, "methods": [ - 6208864, - 6209440, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6210192, - 4773136, - 4773088 + 6211360, + 6211936, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6212688, + 4775568, + 4775520 ], "bases": [ { @@ -55168,19 +54968,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9641272, + "vtable_address": 9644472, "methods": [ - 6208976, - 6209664, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6210288, - 4773136, - 4773088 + 6211472, + 6212160, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6212784, + 4775568, + 4775520 ], "bases": [ { @@ -55257,19 +55057,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9666128, + "vtable_address": 9671600, "methods": [ - 6758944, - 6759072, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6759280, - 4773136, - 4773088 + 6789664, + 6789792, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6790000, + 4775568, + 4775520 ], "bases": [ { @@ -55346,19 +55146,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9678736, - "methods": [ - 6967376, - 6967488, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6967696, - 4773136, - 4773088 + "vtable_address": 9680912, + "methods": [ + 6954176, + 6954304, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6954512, + 4775568, + 4775520 ], "bases": [ { @@ -55435,19 +55235,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9654304, + "vtable_address": 9657504, "methods": [ - 6489328, - 6489440, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6489648, - 4773136, - 4773088 + 6492400, + 6492512, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6492720, + 4775568, + 4775520 ], "bases": [ { @@ -55513,19 +55313,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 9639888, + "vtable_address": 9643088, "methods": [ - 6209088, - 6209888, - 4737920, - 5267952, - 5307520, - 4730192, - 4730208, - 5307664, - 6210384, - 4773136, - 4773088 + 6211584, + 6212384, + 4740256, + 5270480, + 5310016, + 4732560, + 5264864, + 5310160, + 6212880, + 4775568, + 4775520 ], "bases": [ { @@ -55602,16 +55402,16 @@ }, { "type_name": "CTier2AppSystemDict", - "vtable_address": 9583960, + "vtable_address": 9587160, "methods": [ - 5156640, - 5163888, - 5184464, - 5149584, - 5157248, - 5157552, - 5167488, - 5163664 + 5159136, + 5166384, + 5186960, + 5152112, + 5159744, + 5160048, + 5169984, + 5166160 ], "bases": [ { @@ -55644,71 +55444,71 @@ }, { "type_name": "CTier2Application", - "vtable_address": 9583368, - "methods": [ - 5154192, - 5154400, - 4737920, - 5267952, - 5262384, - 4730192, - 5150128, - 5262352, - 5154304, - 4773136, - 4773088, - 4738528, - 5286464, + "vtable_address": 9586568, + "methods": [ + 5156688, + 5156896, + 4740256, + 5270480, + 5264896, + 4732560, + 5152624, + 5264848, + 5156800, + 4775568, + 4775520, + 4740864, + 5288992, + 5154592, + 5155040, + 5155152, + 5155296, + 5155168, + 5155184, + 5150464, + 5151312, + 5151520, + 5151584, + 5151648, + 5151744, + 5151760, + 5151664, + 5151776, + 5151712, + 5151808, + 5151824, + 5151680, + 5151840, + 5151856, + 5151888, + 5155056, + 5151904, + 5195856, + 5157024, + 5157040, + 5157952, + 5169056, + 5169520, + 5158560, + 5158480, + 5195872, + 5151952, + 5151968, + 5151984, + 5151280, + 5151296, + 5152048, + 5158496, 5152096, - 5152544, - 5152656, - 5152800, - 5152672, - 5152688, - 5147936, - 5148784, - 5148992, - 5149056, - 5149120, - 5149216, - 5149232, - 5149136, - 5149248, - 5149184, - 5149280, - 5149296, - 5149152, - 5149312, - 5149328, - 5149360, - 5152560, - 5149376, - 5193360, - 5154528, - 5154544, - 5155456, - 5166560, - 5167024, - 5156064, - 5155984, - 5193376, - 5149424, - 5149440, - 5149456, - 5148752, - 5148768, - 5149520, - 5156000, - 5149568, - 5156080, - 5156112, - 5156176, - 5194144, - 5150704, - 5156208, - 5149488, - 5149632, - 5149504 + 5158576, + 5158608, + 5158672, + 5196640, + 5153200, + 5158704, + 5152016, + 5152128, + 5152032 ], "bases": [ { @@ -55783,102 +55583,179 @@ } } }, + { + "type_name": "CTier3AppSystem", + "vtable_address": 9700648, + "methods": [], + "bases": [ + { + "type_name": "CTier2AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CTier1AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CTier0AppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseAppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IGameUIFuncs", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "IAppSystem", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 1995368 + } + } + }, { "type_name": "CToolService", - "vtable_address": 9640520, - "methods": [ - 6208976, + "vtable_address": 9643720, + "methods": [ + 6211472, + 6212160, + 4740256, + 6213600, + 6207776, + 4732560, + 5264864, + 5310144, + 6212784, + 4775568, + 4775520, + 6207760, + 5510240, + 6207872, + 5151232, + 5881248, + 5510272, + 5510288, + 5510304, + 6241200, + 5510320, + 5510336, + 6207696, + 6225712, + 6217648, + 6247568, + 6207904, + 6207936, + 6207968, + 6208000, + 6208032, + 6208064, + 6208096, + 6208128, + 6208192, + 6208224, + 6208320, + 6208352, + 6208384, + 6208496, + 6208528, + 6208560, + 6208592, + 6208624, + 6208688, + 6208832, + 6208736, + 6208784, + 6208656, + 6208912, + 6208960, + 6209008, + 6209056, + 6209088, + 6209120, + 6209152, + 6209184, + 6208256, + 6208288, + 6218064, + 6245312, + 6246464, + 6208160, + 6209216, + 6209248, + 6209312, + 6215936, + 6227136, + 6247840, + 6209376, + 6209408, + 6209440, + 6209472, + 6209504, + 6209536, + 6209568, + 6209600, + 6209760, + 6209632, 6209664, - 4737920, - 6211104, - 6205280, - 4730192, - 4730208, - 5307648, - 6210288, - 4773136, - 4773088, - 6205264, - 5507744, - 6205376, - 5148704, - 5878752, - 5507776, - 5507792, - 5507808, - 6238704, - 5507824, - 5507840, - 6205200, - 6223216, - 6215152, - 6245072, - 6205408, - 6205440, - 6205472, - 6205504, - 6205536, - 6205568, - 6205600, - 6205632, - 6205696, - 6205728, - 6205824, - 6205856, - 6205888, - 6206000, - 6206032, - 6206064, - 6206096, - 6206128, - 6206192, - 6206336, - 6206240, - 6206288, - 6206160, - 6206416, - 6206464, - 6206512, - 6206560, - 6206592, - 6206624, - 6206656, - 6206688, - 6205760, - 6205792, - 6215568, - 6242816, - 6243968, - 6205664, - 6206720, - 6206752, - 6206816, - 6213440, - 6224640, - 6245344, - 6206880, - 6206912, - 6206944, - 6206976, - 6207008, - 6207040, - 6207072, - 6207104, - 6207264, - 6207136, - 6207168, - 6207200, - 6207232, - 6206384, - 6225072, - 6225392, - 6215696, - 6207296, - 6207328, - 6207360, - 6207392, - 6207424, - 6207456 + 6209696, + 6209728, + 6208880, + 6227568, + 6227888, + 6218192, + 6209792, + 6209824, + 6209856, + 6209888, + 6209920, + 6209952 ], "bases": [ { @@ -55999,24 +55876,24 @@ }, { "type_name": "CTvDirectDemoRecorder", - "vtable_address": 9676640, - "methods": [ - 7420832, - 5461440, - 4730208, - 7420816, - 7434064, - 7420864, - 7420896, - 4773136, - 7420928, - 7420960, - 5461440, - 7420752, - 7420784, - 7421232, - 7421328, - 7422112 + "vtable_address": 9679176, + "methods": [ + 7405536, + 5463936, + 5264864, + 7405520, + 7420944, + 7405568, + 7405600, + 4775568, + 7405632, + 7405664, + 5463936, + 7405456, + 7405488, + 7405936, + 7406032, + 7406560 ], "bases": [ { @@ -56058,18 +55935,18 @@ }, { "type_name": "CTvDirectDemoRecorder", - "vtable_address": 9676784, + "vtable_address": 9679320, "methods": [ - 7420880, - 7420912, - 7420736, - 7420800, - 7420944, - 7421088, - 7421216, - 7420768, - 7421280, - 7421392 + 7405584, + 7405616, + 7405440, + 7405504, + 7405648, + 7405792, + 7405920, + 7405472, + 7405984, + 7406096 ], "bases": [ { @@ -56111,9 +55988,9 @@ }, { "type_name": "CTvDirectDemoRecorder", - "vtable_address": 9676880, + "vtable_address": 9679416, "methods": [ - 7422192 + 7406640 ], "bases": [ { @@ -56155,9 +56032,9 @@ }, { "type_name": "CUGCAddonPathResolver", - "vtable_address": 9587400, + "vtable_address": 9590600, "methods": [ - 5226656 + 5229152 ], "bases": [ { @@ -56179,9 +56056,9 @@ }, { "type_name": "CVConActivateMessage", - "vtable_address": 9603456, + "vtable_address": 9606656, "methods": [ - 5724256 + 5726752 ], "bases": [ { @@ -56203,9 +56080,9 @@ }, { "type_name": "CVConAutoCompleteHelper", - "vtable_address": 9607496, + "vtable_address": 9610696, "methods": [ - 5781776 + 5784272 ], "bases": [ { @@ -56227,9 +56104,9 @@ }, { "type_name": "CVConCommandMessage", - "vtable_address": 9607520, + "vtable_address": 9610720, "methods": [ - 5769808 + 5772304 ], "bases": [ { @@ -56251,16 +56128,16 @@ }, { "type_name": "CVConsole2FlattenedSerializerListener", - "vtable_address": 9608904, + "vtable_address": 9612104, "methods": [ - 5835040, - 5865312, - 5966896, - 5967040, - 5967232, - 5967424, - 5966832, - 5967504 + 5837536, + 5867808, + 5969392, + 5969536, + 5969728, + 5969920, + 5969328, + 5970000 ], "bases": [ { @@ -56293,40 +56170,40 @@ }, { "type_name": "CVProfService", - "vtable_address": 9640168, - "methods": [ - 6209088, - 6209888, - 4737920, - 6211152, - 6207824, - 4730192, - 4730208, - 5307648, - 6210384, - 4773136, - 4773088, - 4730208, - 5507744, - 5507760, - 5148704, - 5148704, - 5507776, - 5507792, - 5507808, - 6239488, - 5507824, - 5507840, - 6207568, - 6223312, - 6208080, - 6208096, - 6225728, - 5669744, - 5669744, - 6226336, - 6208176, - 6224304 + "vtable_address": 9643368, + "methods": [ + 6211584, + 6212384, + 4740256, + 6213648, + 6210320, + 4732560, + 5264864, + 5310144, + 6212880, + 4775568, + 4775520, + 5264864, + 5510240, + 5510256, + 5151232, + 5151232, + 5510272, + 5510288, + 5510304, + 6241984, + 5510320, + 5510336, + 6210064, + 6225808, + 6210576, + 6210592, + 6228224, + 5672208, + 5672208, + 6228832, + 6210672, + 6226800 ], "bases": [ { @@ -56467,9 +56344,9 @@ }, { "type_name": "CVProfService", - "vtable_address": 9640440, + "vtable_address": 9643640, "methods": [ - 6224464 + 6226960 ], "bases": [ { @@ -56610,13 +56487,13 @@ }, { "type_name": "CVProfService", - "vtable_address": 9640464, + "vtable_address": 9643664, "methods": [ - 6226032, - 6208144, - 6208160, - 6226592, - 6208224 + 6228528, + 6210640, + 6210656, + 6229088, + 6210720 ], "bases": [ { @@ -56757,14 +56634,14 @@ }, { "type_name": "CVariantSaveDataOps", - "vtable_address": 9708968, + "vtable_address": 9712200, "methods": [ - 8626112, - 8624672, - 8621584, - 4730112, - 7681216, - 4730112 + 8629312, + 8627872, + 8624784, + 4732480, + 7662464, + 4732480 ], "bases": [ { @@ -56797,15 +56674,15 @@ }, { "type_name": "CVisRender", - "vtable_address": 9599848, + "vtable_address": 9603048, "methods": [ - 5544384, - 5565232, - 5541744, - 5601856, - 5541760, - 4730192, - 5147968 + 5546880, + 5567728, + 5544240, + 5604352, + 5544256, + 4732560, + 5150496 ], "bases": [ { @@ -56827,15 +56704,15 @@ }, { "type_name": "CWaitForGameServerStartupPrerequisite", - "vtable_address": 9627536, + "vtable_address": 9630736, "methods": [ - 5741104, - 6051088, - 5262448, - 5262464, - 6005376, - 6003328, - 6004928 + 5743600, + 6053648, + 5264960, + 5264976, + 6007872, + 6005824, + 6007424 ], "bases": [ { @@ -56857,15 +56734,15 @@ }, { "type_name": "CWaitForInitialSpawnGroupsPrerequisite", - "vtable_address": 9616696, + "vtable_address": 9619896, "methods": [ - 5879568, - 5887328, - 5262448, - 5262464, - 5877328, - 5835568, - 5279008 + 5882064, + 5889824, + 5264960, + 5264976, + 5879824, + 5838064, + 5281536 ], "bases": [ { @@ -56887,18 +56764,18 @@ }, { "type_name": "EntityIOTargetType_t", - "vtable_address": 9709360, + "vtable_address": 9712592, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9795232 + "offset_to_top": 9798432 } } }, { "type_name": "Etc::Block4x4Encoding", - "vtable_address": 9518600, + "vtable_address": 9521800, "methods": [], "bases": [], "model": { @@ -56909,28 +56786,28 @@ }, { "type_name": "Etc::Block4x4Encoding", - "vtable_address": 9518696, + "vtable_address": 9521896, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1886976 + "offset_to_top": 1887104 } } }, { "type_name": "Etc::Block4x4Encoding_ETC1", - "vtable_address": 9518712, + "vtable_address": 9521912, "methods": [ - 3542544, - 3542560, - 3542592, - 3561040, - 3557312, - 3559760, - 3561792, - 3561808, - 3561824 + 3544912, + 3544928, + 3544960, + 3563408, + 3559680, + 3562128, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -56952,7 +56829,7 @@ }, { "type_name": "Etc::Block4x4Encoding_ETC1", - "vtable_address": 9519032, + "vtable_address": 9522232, "methods": [], "bases": [ { @@ -56968,23 +56845,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1887248 + "offset_to_top": 1887376 } } }, { "type_name": "Etc::Block4x4Encoding_R11", - "vtable_address": 9518824, + "vtable_address": 9522024, "methods": [ - 3561872, - 3561904, - 3561936, - 3565488, - 3564912, - 3561984, - 3561792, - 3561808, - 3561824 + 3564240, + 3564272, + 3564304, + 3567856, + 3567280, + 3564352, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57028,7 +56905,7 @@ }, { "type_name": "Etc::Block4x4Encoding_R11", - "vtable_address": 9518920, + "vtable_address": 9522120, "methods": [], "bases": [ { @@ -57066,23 +56943,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1887168 + "offset_to_top": 1887296 } } }, { "type_name": "Etc::Block4x4Encoding_RG11", - "vtable_address": 9518936, + "vtable_address": 9522136, "methods": [ - 3566416, - 3566448, - 3566480, - 3570128, - 3569376, - 3566528, - 3561792, - 3561808, - 3561824 + 3568784, + 3568816, + 3568848, + 3572496, + 3571744, + 3568896, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57137,7 +57014,7 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8", - "vtable_address": 9518808, + "vtable_address": 9522008, "methods": [], "bases": [ { @@ -57164,23 +57041,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1887072 + "offset_to_top": 1887200 } } }, { "type_name": "Etc::Block4x4Encoding_RGB8", - "vtable_address": 9519048, + "vtable_address": 9522248, "methods": [ - 3571728, - 3571760, - 3542592, - 3592768, - 3601072, - 3587776, - 3561792, - 3561808, - 3561824 + 3574096, + 3574128, + 3544960, + 3595136, + 3603440, + 3590144, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57213,7 +57090,7 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1", - "vtable_address": 9519192, + "vtable_address": 9522392, "methods": [], "bases": [ { @@ -57251,23 +57128,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1887456 + "offset_to_top": 1887584 } } }, { "type_name": "Etc::Block4x4Encoding_RGB8A1", - "vtable_address": 9519208, + "vtable_address": 9522408, "methods": [ - 3601888, - 3601920, - 3601952, - 3606736, - 3621424, - 3624896, - 3561792, - 3561808, - 3561824 + 3604256, + 3604288, + 3604320, + 3609104, + 3623792, + 3627264, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57311,17 +57188,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Opaque", - "vtable_address": 9519296, + "vtable_address": 9522496, "methods": [ - 3626768, - 3626832, - 3601952, - 3606736, - 3626144, - 3624896, - 3561792, - 3561808, - 3561824 + 3629136, + 3629200, + 3604320, + 3609104, + 3628512, + 3627264, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57376,17 +57253,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Transparent", - "vtable_address": 9519384, + "vtable_address": 9522584, "methods": [ - 3626736, - 3626800, - 3601952, - 3606736, - 3602928, - 3624896, - 3561792, - 3561808, - 3561824 + 3629104, + 3629168, + 3604320, + 3609104, + 3605296, + 3627264, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57441,7 +57318,7 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8", - "vtable_address": 9519528, + "vtable_address": 9522728, "methods": [], "bases": [ { @@ -57479,23 +57356,23 @@ ], "model": { "Itanium": { - "offset_to_top": 1887616 + "offset_to_top": 1887744 } } }, { "type_name": "Etc::Block4x4Encoding_RGBA8", - "vtable_address": 9519544, + "vtable_address": 9522744, "methods": [ - 3626928, - 3626960, - 3626992, - 3629536, - 3631328, - 3631664, - 3561792, - 3561808, - 3561824 + 3629296, + 3629328, + 3629360, + 3631904, + 3633696, + 3634032, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57539,17 +57416,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Opaque", - "vtable_address": 9519632, + "vtable_address": 9522832, "methods": [ - 3632080, - 3632144, - 3626992, - 3629536, - 3631552, - 3631984, - 3561792, - 3561808, - 3561824 + 3634448, + 3634512, + 3629360, + 3631904, + 3633920, + 3634352, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57604,17 +57481,17 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Transparent", - "vtable_address": 9519720, + "vtable_address": 9522920, "methods": [ - 3632048, - 3632112, - 3626992, - 3629536, - 3627040, - 3632016, - 3561792, - 3561808, - 3561824 + 3634416, + 3634480, + 3629360, + 3631904, + 3629408, + 3634384, + 3564160, + 3564176, + 3564192 ], "bases": [ { @@ -57669,7 +57546,7 @@ }, { "type_name": "EventAdvanceTick_t", - "vtable_address": 9772448, + "vtable_address": 9775680, "methods": [], "bases": [], "model": { @@ -57680,7 +57557,7 @@ }, { "type_name": "EventAdvanceTick_t", - "vtable_address": 9777184, + "vtable_address": 9780416, "methods": [], "bases": [], "model": { @@ -57691,18 +57568,18 @@ }, { "type_name": "EventAppShutdown_t", - "vtable_address": 9698544, + "vtable_address": 9700976, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9773664 + "offset_to_top": 9776896 } } }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 9777056, + "vtable_address": 9780288, "methods": [], "bases": [], "model": { @@ -57713,7 +57590,7 @@ }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 9777440, + "vtable_address": 9780672, "methods": [], "bases": [], "model": { @@ -57724,7 +57601,7 @@ }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 9777824, + "vtable_address": 9781056, "methods": [], "bases": [], "model": { @@ -57735,7 +57612,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9772176, + "vtable_address": 9775408, "methods": [], "bases": [], "model": { @@ -57746,7 +57623,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9772576, + "vtable_address": 9775808, "methods": [], "bases": [], "model": { @@ -57757,7 +57634,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9772704, + "vtable_address": 9775936, "methods": [], "bases": [], "model": { @@ -57768,7 +57645,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9773056, + "vtable_address": 9776288, "methods": [], "bases": [], "model": { @@ -57779,7 +57656,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9775232, + "vtable_address": 9778464, "methods": [], "bases": [], "model": { @@ -57790,7 +57667,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9775360, + "vtable_address": 9778592, "methods": [], "bases": [], "model": { @@ -57801,7 +57678,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9775488, + "vtable_address": 9778720, "methods": [], "bases": [], "model": { @@ -57812,7 +57689,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9775776, + "vtable_address": 9779008, "methods": [], "bases": [], "model": { @@ -57823,7 +57700,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 9776064, + "vtable_address": 9779296, "methods": [], "bases": [], "model": { @@ -57834,26 +57711,26 @@ }, { "type_name": "GameSessionConfiguration_t", - "vtable_address": 9643896, - "methods": [ - 6265504, - 6265760, - 3320958, - 4819424, - 4911232, - 4773216, - 3323118, - 3319950, - 4898224, - 4731504, - 4915280, - 4730112, - 4895360, - 3319860, - 3320126, - 4773392, - 4900272, - 4891296 + "vtable_address": 9647096, + "methods": [ + 6268048, + 6268304, + 3323326, + 4821856, + 4913664, + 4775648, + 3325486, + 3322318, + 4900656, + 4733856, + 4917712, + 4732480, + 4897792, + 3322228, + 3322494, + 4775824, + 4902704, + 4893728 ], "bases": [ { @@ -57908,18 +57785,18 @@ }, { "type_name": "GameTick_t", - "vtable_address": 9709328, + "vtable_address": 9712560, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9796416 + "offset_to_top": 9799616 } } }, { "type_name": "IAssertionFailureListener", - "vtable_address": 9588448, + "vtable_address": 9591648, "methods": [], "bases": [], "model": { @@ -57930,29 +57807,29 @@ }, { "type_name": "IDebugVisualizer", - "vtable_address": 9583352, + "vtable_address": 9586552, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1938032 + "offset_to_top": 1938160 } } }, { "type_name": "IDebugVisualizer", - "vtable_address": 9599928, + "vtable_address": 9603128, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1947440 + "offset_to_top": 1947568 } } }, { "type_name": "IDemoMessage", - "vtable_address": 9557744, + "vtable_address": 9560944, "methods": [], "bases": [], "model": { @@ -57963,90 +57840,112 @@ }, { "type_name": "IDemoMessageSink", - "vtable_address": 9712120, + "vtable_address": 9715352, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2418496 + "offset_to_top": 2420704 + } + } + }, + { + "type_name": "IDemoRecorder", + "vtable_address": 9695168, + "methods": [], + "bases": [ + { + "type_name": "IDemoRecorderBase", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 1991088 } } }, { "type_name": "IEnginePVSManager", - "vtable_address": 9600808, + "vtable_address": 9604008, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1948000 + "offset_to_top": 1948128 } } }, { "type_name": "IInputHandler", - "vtable_address": 9603440, + "vtable_address": 9606640, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1949456 + "offset_to_top": 1949584 } } }, { "type_name": "IInputHandler", - "vtable_address": 9685968, + "vtable_address": 9688336, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1989280 + "offset_to_top": 1989216 } } }, { "type_name": "IKV3TransferInterface_EHandle_Save", - "vtable_address": 9709192, + "vtable_address": 9712424, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2291328 + "offset_to_top": 2293536 } } }, { "type_name": "ILoggingListener", - "vtable_address": 9602120, + "vtable_address": 9605320, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1949280 + "offset_to_top": 1949408 } } }, { "type_name": "IMatchEventsSink", - "vtable_address": 9585176, + "vtable_address": 9588376, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1939936 + "offset_to_top": 1940064 } } }, { "type_name": "IMobileEventListener", - "vtable_address": 9638056, + "vtable_address": 9641256, "methods": [ - 6167904, - 6186032, - 4730192, - 4730192, - 4730192 + 6170400, + 6188528, + 4732560, + 4732560, + 4732560 ], "bases": [], "model": { @@ -58057,7 +57956,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 9584280, + "vtable_address": 9587480, "methods": [], "bases": [], "model": { @@ -58068,7 +57967,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 9584368, + "vtable_address": 9587568, "methods": [], "bases": [], "model": { @@ -58079,7 +57978,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 9651336, + "vtable_address": 9654536, "methods": [], "bases": [], "model": { @@ -58090,95 +57989,95 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 9659608, + "vtable_address": 9662808, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1979712 + "offset_to_top": 1979840 } } }, { - "type_name": "IMultipleWorkerJob", - "vtable_address": 9695352, + "type_name": "INetPacketMemoryCustomAlloc", + "vtable_address": 9648776, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1993408 + "offset_to_top": 1972000 } } }, { - "type_name": "INetPacketMemoryCustomAlloc", - "vtable_address": 9645576, + "type_name": "INetworkMessageProcessingPreFilter", + "vtable_address": 9658064, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1971872 + "offset_to_top": 1977760 } } }, { - "type_name": "INetworkMessageProcessingPreFilter", - "vtable_address": 9654864, + "type_name": "INetworkStringTable", + "vtable_address": 9691600, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1977632 + "offset_to_top": 1989952 } } }, { - "type_name": "IPrintChangedConvarsWriter", - "vtable_address": 9584568, + "type_name": "IPolymorphicMetadataHelper", + "vtable_address": 9685688, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1939296 + "offset_to_top": 1987456 } } }, { - "type_name": "IProceduralLayerRenderer", - "vtable_address": 9606224, + "type_name": "IPrintChangedConvarsWriter", + "vtable_address": 9587768, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1951168 + "offset_to_top": 1939424 } } }, { - "type_name": "IProtobufBinding", - "vtable_address": 9589728, + "type_name": "IProceduralLayerRenderer", + "vtable_address": 9609424, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1942976 + "offset_to_top": 1951296 } } }, { "type_name": "IProtobufBinding", - "vtable_address": 9596312, + "vtable_address": 9592928, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1944320 + "offset_to_top": 1943104 } } }, { "type_name": "IProtobufBinding", - "vtable_address": 9596424, + "vtable_address": 9599512, "methods": [], "bases": [], "model": { @@ -58189,7 +58088,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9596536, + "vtable_address": 9599624, "methods": [], "bases": [], "model": { @@ -58200,7 +58099,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9596648, + "vtable_address": 9599736, "methods": [], "bases": [], "model": { @@ -58211,7 +58110,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9596760, + "vtable_address": 9599848, "methods": [], "bases": [], "model": { @@ -58222,7 +58121,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9596872, + "vtable_address": 9599960, "methods": [], "bases": [], "model": { @@ -58233,7 +58132,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9596984, + "vtable_address": 9600072, "methods": [], "bases": [], "model": { @@ -58244,7 +58143,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9597096, + "vtable_address": 9600184, "methods": [], "bases": [], "model": { @@ -58255,7 +58154,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9597208, + "vtable_address": 9600296, "methods": [], "bases": [], "model": { @@ -58266,7 +58165,7 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9597320, + "vtable_address": 9600408, "methods": [], "bases": [], "model": { @@ -58277,62 +58176,62 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9597432, + "vtable_address": 9600520, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1945632 + "offset_to_top": 1945600 } } }, { "type_name": "IProtobufBinding", - "vtable_address": 9597544, + "vtable_address": 9600632, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1945792 + "offset_to_top": 1945760 } } }, { "type_name": "IProtobufBinding", - "vtable_address": 9611312, + "vtable_address": 9600744, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1957536 + "offset_to_top": 1945920 } } }, { "type_name": "IProtobufBinding", - "vtable_address": 9624688, + "vtable_address": 9614512, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1962528 + "offset_to_top": 1957664 } } }, { "type_name": "IProtobufBinding", - "vtable_address": 9655600, + "vtable_address": 9627888, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1977920 + "offset_to_top": 1962656 } } }, { "type_name": "IProtobufBinding", - "vtable_address": 9655712, + "vtable_address": 9658800, "methods": [], "bases": [], "model": { @@ -58343,114 +58242,136 @@ }, { "type_name": "IProtobufBinding", - "vtable_address": 9692144, + "vtable_address": 9658912, + "methods": [], + "bases": [], + "model": { + "Itanium": { + "offset_to_top": 1978176 + } + } + }, + { + "type_name": "IProtobufBinding", + "vtable_address": 9694936, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1990656 + "offset_to_top": 1990720 } } }, { "type_name": "IRenderDevicePresentCallback", - "vtable_address": 9598856, + "vtable_address": 9602056, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1946848 + "offset_to_top": 1946976 } } }, { "type_name": "ISceneViewDebugOverlaysListener", - "vtable_address": 9673760, + "vtable_address": 9676744, + "methods": [], + "bases": [], + "model": { + "Itanium": { + "offset_to_top": 1983072 + } + } + }, + { + "type_name": "ISocketCreatorListener", + "vtable_address": 9589144, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1984288 + "offset_to_top": 1940208 } } }, { "type_name": "ISocketCreatorListener", - "vtable_address": 9585944, + "vtable_address": 9656072, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1940080 + "offset_to_top": 1977096 } } }, { "type_name": "ISocketCreatorListener", - "vtable_address": 9652872, + "vtable_address": 9686296, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1976968 + "offset_to_top": 1987984 } } }, { "type_name": "IUGCAddonPathResolver", - "vtable_address": 9587272, + "vtable_address": 9590472, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1941056 + "offset_to_top": 1941184 } } }, { "type_name": "IVConCommDataReceived", - "vtable_address": 9607480, + "vtable_address": 9610680, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1951424 + "offset_to_top": 1951552 } } }, { "type_name": "LC_NUMERIC", - "vtable_address": 9527528, + "vtable_address": 9530728, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1906955 + "offset_to_top": 1907083 } } }, { "type_name": "NetMessageConnectionClosed", - "vtable_address": 9664680, - "methods": [ - 7624400, - 7624544, - 3320958, - 6528064, - 7626144, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 7630448, - 4730112, - 7602432, - 3319860, - 3320126, - 4773392, - 7601024, - 7596640 + "vtable_address": 9667384, + "methods": [ + 7615952, + 7616096, + 3323326, + 6530944, + 7617696, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 7622000, + 4732480, + 7600992, + 3322228, + 3322494, + 4775824, + 7599584, + 7590320 ], "bases": [ { @@ -58483,26 +58404,26 @@ }, { "type_name": "NetMessageConnectionCrashed", - "vtable_address": 9659848, - "methods": [ - 7624704, - 7624848, - 3320958, - 6528080, - 7626416, - 4773216, - 3323118, - 3319950, - 4863328, - 4731504, - 7631008, - 4730112, - 7602752, - 3319860, - 3320126, - 4773392, - 7601056, - 7596656 + "vtable_address": 9663048, + "methods": [ + 7616256, + 7616400, + 3323326, + 6530960, + 7617968, + 4775648, + 3325486, + 3322318, + 4865760, + 4733856, + 7622560, + 4732480, + 7601312, + 3322228, + 3322494, + 4775824, + 7599616, + 7590336 ], "bases": [ { @@ -58535,26 +58456,26 @@ }, { "type_name": "NetMessagePacketEnd", - "vtable_address": 9660616, - "methods": [ - 7609888, - 7612864, - 3320958, - 6528112, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 7601120, - 7596688 + "vtable_address": 9663816, + "methods": [ + 7610192, + 7613296, + 3323326, + 6530992, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 7599680, + 7590368 ], "bases": [ { @@ -58598,26 +58519,26 @@ }, { "type_name": "NetMessagePacketStart", - "vtable_address": 9660232, - "methods": [ - 7609872, - 7612816, - 3320958, - 6528096, - 3241466, - 4773136, - 3323118, - 3319950, - 3241348, - 4773344, - 3241476, - 4730112, - 3241360, - 3319860, - 3320126, - 4773376, - 7601088, - 7596672 + "vtable_address": 9663432, + "methods": [ + 7610176, + 7613248, + 3323326, + 6530976, + 3243834, + 4775568, + 3325486, + 3322318, + 3243716, + 4775776, + 3243844, + 4732480, + 3243728, + 3322228, + 3322494, + 4775808, + 7599648, + 7590352 ], "bases": [ { @@ -58661,26 +58582,26 @@ }, { "type_name": "NetMessageSplitscreenUserChanged", - "vtable_address": 9664296, - "methods": [ - 7624144, - 7624272, - 3320958, - 6528048, - 7626096, - 4773216, - 3323118, - 3319950, - 4862752, - 4731504, - 7629968, - 4730112, - 7600576, - 3319860, - 3320126, - 4773392, - 7600992, - 7596624 + "vtable_address": 9667000, + "methods": [ + 7615696, + 7615824, + 3323326, + 6530928, + 7617648, + 4775648, + 3325486, + 3322318, + 4865184, + 4733856, + 7621520, + 4732480, + 7599136, + 3322228, + 3322494, + 4775824, + 7599552, + 7590304 ], "bases": [ { @@ -58713,11 +58634,11 @@ }, { "type_name": "NetPacketCustomAlloc_std_string", - "vtable_address": 9646520, + "vtable_address": 9649720, "methods": [ - 6434672, - 6434768, - 4730320 + 6437680, + 6437776, + 4732672 ], "bases": [ { @@ -58739,9 +58660,9 @@ }, { "type_name": "PacketEntitiesFilter", - "vtable_address": 9655320, + "vtable_address": 9658520, "methods": [ - 6528864 + 6531744 ], "bases": [ { @@ -58763,26 +58684,26 @@ }, { "type_name": "ProtoFlattenedSerializerField_t", - "vtable_address": 9570528, - "methods": [ - 5097856, - 5098016, - 3320958, - 4903040, - 5102608, - 4773216, - 3323118, - 3319950, - 5075552, - 4731504, - 5084720, - 4730112, - 5077024, - 3319860, - 3320126, - 4773392, - 5074480, - 5068624 + "vtable_address": 9573728, + "methods": [ + 5100384, + 5100544, + 3323326, + 4905472, + 5105136, + 4775648, + 3325486, + 3322318, + 5078080, + 4733856, + 5087248, + 4732480, + 5079552, + 3322228, + 3322494, + 4775824, + 5077008, + 5071152 ], "bases": [ { @@ -58815,26 +58736,26 @@ }, { "type_name": "ProtoFlattenedSerializerField_t_polymorphic_field_t", - "vtable_address": 9570688, - "methods": [ - 5097600, - 5097728, - 3320958, - 4903024, - 5102544, - 4773216, - 3323118, - 3319950, - 4936880, - 4731504, - 5084144, - 4730112, - 5069312, - 3319860, - 3320126, - 4773392, - 5074448, - 5068608 + "vtable_address": 9573888, + "methods": [ + 5100128, + 5100256, + 3323326, + 4905456, + 5105072, + 4775648, + 3325486, + 3322318, + 4939312, + 4733856, + 5086672, + 4732480, + 5071840, + 3322228, + 3322494, + 4775824, + 5076976, + 5071136 ], "bases": [ { @@ -58867,26 +58788,26 @@ }, { "type_name": "ProtoFlattenedSerializer_t", - "vtable_address": 9570368, - "methods": [ - 5098192, - 5098336, - 3320958, - 4903056, - 5102848, - 4773216, - 3323118, - 3319950, - 5078688, - 4731504, - 5085776, - 4730112, - 5069664, - 3319860, - 3320126, - 4773392, - 5074512, - 5068640 + "vtable_address": 9573568, + "methods": [ + 5100720, + 5100864, + 3323326, + 4905488, + 5105376, + 4775648, + 3325486, + 3322318, + 5081216, + 4733856, + 5088304, + 4732480, + 5072192, + 3322228, + 3322494, + 4775824, + 5077040, + 5071168 ], "bases": [ { @@ -58919,36 +58840,36 @@ }, { "type_name": "Stop without any wind-down.", - "vtable_address": 9702864, + "vtable_address": 9706160, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2506310 + "offset_to_top": 2508498 } } }, { "type_name": "Unknown", - "vtable_address": 9703792, + "vtable_address": 9707056, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2478144 + "offset_to_top": 2480355 } } }, { "type_name": "google::protobuf::DescriptorBuilder::OptionInterpreter::AggregateOptionFinder", - "vtable_address": 9506400, + "vtable_address": 9509600, "methods": [ - 3097024, - 3097040, - 3124492, - 3337606, - 3124690, - 3337078 + 3099392, + 3099408, + 3126860, + 3339974, + 3127058, + 3339446 ], "bases": [ { @@ -58970,26 +58891,26 @@ }, { "type_name": "google::protobuf::DescriptorDatabase", - "vtable_address": 9512552, + "vtable_address": 9515752, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1861888 + "offset_to_top": 1862016 } } }, { "type_name": "google::protobuf::DescriptorPoolDatabase", - "vtable_address": 9512712, + "vtable_address": 9515912, "methods": [ - 3204100, - 3204164, - 3213048, - 3213098, - 3213148, - 3211832, - 3215804 + 3206468, + 3206532, + 3215416, + 3215466, + 3215516, + 3214200, + 3218172 ], "bases": [ { @@ -59011,26 +58932,26 @@ }, { "type_name": "google::protobuf::DescriptorProto", - "vtable_address": 9508112, + "vtable_address": 9511312, "methods": [ - 3169852, - 3169898, - 3320958, - 4735392, - 3173130, - 3165082, - 3323118, - 3319950, - 3141200, - 3189568, - 3149208, - 4730112, - 3165398, - 3319860, - 3320126, - 3126636, - 3125152, - 3124832 + 3172220, + 3172266, + 3323326, + 4737744, + 3175498, + 3167450, + 3325486, + 3322318, + 3143568, + 3191936, + 3151576, + 4732480, + 3167766, + 3322228, + 3322494, + 3129004, + 3127520, + 3127200 ], "bases": [ { @@ -59063,26 +58984,26 @@ }, { "type_name": "google::protobuf::DescriptorProto_ExtensionRange", - "vtable_address": 9507792, - "methods": [ - 3169596, - 3169642, - 3320958, - 4735360, - 3171496, - 3160758, - 3323118, - 3319950, - 3138954, - 3189638, - 3143046, - 4730112, - 3135430, - 3319860, - 3320126, - 3126616, - 3125092, - 3124816 + "vtable_address": 9510992, + "methods": [ + 3171964, + 3172010, + 3323326, + 4737712, + 3173864, + 3163126, + 3325486, + 3322318, + 3141322, + 3192006, + 3145414, + 4732480, + 3137798, + 3322228, + 3322494, + 3128984, + 3127460, + 3127184 ], "bases": [ { @@ -59115,26 +59036,26 @@ }, { "type_name": "google::protobuf::DescriptorProto_ReservedRange", - "vtable_address": 9507952, - "methods": [ - 3169468, - 3169514, - 3320958, - 4735376, - 3171132, - 3125028, - 3323118, - 3319950, - 3125898, - 3189668, - 3143346, - 4730112, - 3135618, - 3319860, - 3320126, - 3126626, - 3125122, - 3124824 + "vtable_address": 9511152, + "methods": [ + 3171836, + 3171882, + 3323326, + 4737728, + 3173500, + 3127396, + 3325486, + 3322318, + 3128266, + 3192036, + 3145714, + 4732480, + 3137986, + 3322228, + 3322494, + 3128994, + 3127490, + 3127192 ], "bases": [ { @@ -59167,26 +59088,26 @@ }, { "type_name": "google::protobuf::DynamicMessage", - "vtable_address": 9512904, - "methods": [ - 3227778, - 3228362, - 3320958, - 3230798, - 3320062, - 3320068, - 3323118, - 3319950, - 3320086, - 3227342, - 3320074, - 4730112, - 3320080, - 3319860, - 3320126, - 3227346, - 3227328, - 3231390 + "vtable_address": 9516104, + "methods": [ + 3230146, + 3230730, + 3323326, + 3233166, + 3322430, + 3322436, + 3325486, + 3322318, + 3322454, + 3229710, + 3322442, + 4732480, + 3322448, + 3322228, + 3322494, + 3229714, + 3229696, + 3233758 ], "bases": [ { @@ -59219,11 +59140,11 @@ }, { "type_name": "google::protobuf::DynamicMessageFactory", - "vtable_address": 9513064, + "vtable_address": 9516264, "methods": [ - 3227574, - 3227760, - 3231272 + 3229942, + 3230128, + 3233640 ], "bases": [ { @@ -59245,15 +59166,15 @@ }, { "type_name": "google::protobuf::EncodedDescriptorDatabase", - "vtable_address": 9512640, + "vtable_address": 9515840, "methods": [ - 3205994, - 3206166, - 3211772, - 3211300, - 3211518, - 3212214, - 3206552 + 3208362, + 3208534, + 3214140, + 3213668, + 3213886, + 3214582, + 3208920 ], "bases": [ { @@ -59275,26 +59196,26 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto", - "vtable_address": 9508912, - "methods": [ - 3170236, - 3170282, - 3320958, - 4735472, - 3172922, - 3160970, - 3323118, - 3319950, - 3140918, - 3189578, - 3156530, - 4730112, - 3160230, - 3319860, - 3320126, - 3126686, - 3125302, - 3124872 + "vtable_address": 9512112, + "methods": [ + 3172604, + 3172650, + 3323326, + 4737824, + 3175290, + 3163338, + 3325486, + 3322318, + 3143286, + 3191946, + 3158898, + 4732480, + 3162598, + 3322228, + 3322494, + 3129054, + 3127670, + 3127240 ], "bases": [ { @@ -59327,26 +59248,26 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto_EnumReservedRange", - "vtable_address": 9508752, - "methods": [ - 3169660, - 3169706, - 3320958, - 4735456, - 3171204, - 3125028, - 3323118, - 3319950, - 3125972, - 3189728, - 3144914, - 4730112, - 3136576, - 3319860, - 3320126, - 3126676, - 3125272, - 3124864 + "vtable_address": 9511952, + "methods": [ + 3172028, + 3172074, + 3323326, + 4737808, + 3173572, + 3127396, + 3325486, + 3322318, + 3128340, + 3192096, + 3147282, + 4732480, + 3138944, + 3322228, + 3322494, + 3129044, + 3127640, + 3127232 ], "bases": [ { @@ -59379,26 +59300,26 @@ }, { "type_name": "google::protobuf::EnumOptions", - "vtable_address": 9510192, - "methods": [ - 3170172, - 3170218, - 3320958, - 4735600, - 3172640, - 3160938, - 3323118, - 3319950, - 3140574, - 3189718, - 3154740, - 4730112, - 3162032, - 3319860, - 3320126, - 3126766, - 3125542, - 3124936 + "vtable_address": 9513392, + "methods": [ + 3172540, + 3172586, + 3323326, + 4737952, + 3175008, + 3163306, + 3325486, + 3322318, + 3142942, + 3192086, + 3157108, + 4732480, + 3164400, + 3322228, + 3322494, + 3129134, + 3127910, + 3127304 ], "bases": [ { @@ -59431,26 +59352,26 @@ }, { "type_name": "google::protobuf::EnumValueDescriptorProto", - "vtable_address": 9509072, - "methods": [ - 3170364, - 3170410, - 3320958, - 4735488, - 3172734, - 3160910, - 3323118, - 3319950, - 3140810, - 3189708, - 3145184, - 4730112, - 3136720, - 3319860, - 3320126, - 3126696, - 3125332, - 3124880 + "vtable_address": 9512272, + "methods": [ + 3172732, + 3172778, + 3323326, + 4737840, + 3175102, + 3163278, + 3325486, + 3322318, + 3143178, + 3192076, + 3147552, + 4732480, + 3139088, + 3322228, + 3322494, + 3129064, + 3127700, + 3127248 ], "bases": [ { @@ -59483,26 +59404,26 @@ }, { "type_name": "google::protobuf::EnumValueOptions", - "vtable_address": 9510352, - "methods": [ - 3170300, - 3170346, - 3320958, - 4735616, - 3172688, - 3160878, - 3323118, - 3319950, - 3140700, - 3189738, - 3155190, - 4730112, - 3161802, - 3319860, - 3320126, - 3126776, - 3125572, - 3124944 + "vtable_address": 9513552, + "methods": [ + 3172668, + 3172714, + 3323326, + 4737968, + 3175056, + 3163246, + 3325486, + 3322318, + 3143068, + 3192106, + 3157558, + 4732480, + 3164170, + 3322228, + 3322494, + 3129144, + 3127940, + 3127312 ], "bases": [ { @@ -59535,26 +59456,26 @@ }, { "type_name": "google::protobuf::ExtensionRangeOptions", - "vtable_address": 9508272, - "methods": [ - 3169532, - 3169578, - 3320958, - 4735408, - 3171464, - 3160726, - 3323118, - 3319950, - 3138856, - 3189628, - 3150516, - 4730112, - 3164890, - 3319860, - 3320126, - 3126646, - 3125182, - 3124840 + "vtable_address": 9511472, + "methods": [ + 3171900, + 3171946, + 3323326, + 4737760, + 3173832, + 3163094, + 3325486, + 3322318, + 3141224, + 3191996, + 3152884, + 4732480, + 3167258, + 3322228, + 3322494, + 3129014, + 3127550, + 3127208 ], "bases": [ { @@ -59587,11 +59508,11 @@ }, { "type_name": "google::protobuf::FatalException", - "vtable_address": 9506312, + "vtable_address": 9509512, "methods": [ - 2939992, - 2940026, - 2939908 + 2942360, + 2942394, + 2942276 ], "bases": [], "model": { @@ -59602,26 +59523,26 @@ }, { "type_name": "google::protobuf::FieldDescriptorProto", - "vtable_address": 9508432, - "methods": [ - 3169980, - 3170026, - 3320958, - 4735424, - 3172140, - 3161242, - 3323118, - 3319950, - 3140092, - 3189598, - 3143616, - 4730112, - 3135762, - 3319860, - 3320126, - 3126656, - 3125212, - 3124848 + "vtable_address": 9511632, + "methods": [ + 3172348, + 3172394, + 3323326, + 4737776, + 3174508, + 3163610, + 3325486, + 3322318, + 3142460, + 3191966, + 3145984, + 4732480, + 3138130, + 3322228, + 3322494, + 3129024, + 3127580, + 3127216 ], "bases": [ { @@ -59654,26 +59575,26 @@ }, { "type_name": "google::protobuf::FieldOptions", - "vtable_address": 9509872, - "methods": [ - 3169916, - 3169962, - 3320958, - 4735568, - 3172030, - 3161210, - 3323118, - 3319950, - 3139830, - 3189688, - 3153422, - 4730112, - 3162494, - 3319860, - 3320126, - 3126746, - 3125482, - 3124920 + "vtable_address": 9513072, + "methods": [ + 3172284, + 3172330, + 3323326, + 4737920, + 3174398, + 3163578, + 3325486, + 3322318, + 3142198, + 3192056, + 3155790, + 4732480, + 3164862, + 3322228, + 3322494, + 3129114, + 3127850, + 3127288 ], "bases": [ { @@ -59706,26 +59627,26 @@ }, { "type_name": "google::protobuf::FileDescriptorProto", - "vtable_address": 9507632, - "methods": [ - 3170940, - 3170986, - 3320958, - 4735344, - 3174060, - 3165274, - 3323118, - 3319950, - 3142384, - 3189558, - 3147916, - 4730112, - 3166302, - 3319860, - 3320126, - 3126606, - 3125062, - 3124808 + "vtable_address": 9510832, + "methods": [ + 3173308, + 3173354, + 3323326, + 4737696, + 3176428, + 3167642, + 3325486, + 3322318, + 3144752, + 3191926, + 3150284, + 4732480, + 3168670, + 3322228, + 3322494, + 3128974, + 3127430, + 3127176 ], "bases": [ { @@ -59758,26 +59679,26 @@ }, { "type_name": "google::protobuf::FileDescriptorSet", - "vtable_address": 9507472, - "methods": [ - 3169404, - 3169450, - 3320958, - 4735328, - 3174476, - 3167332, - 3323118, - 3319950, - 3142956, - 3189818, - 3147594, - 4730112, - 3167376, - 3319860, - 3320126, - 3126596, - 3125032, - 3124800 + "vtable_address": 9510672, + "methods": [ + 3171772, + 3171818, + 3323326, + 4737680, + 3176844, + 3169700, + 3325486, + 3322318, + 3145324, + 3192186, + 3149962, + 4732480, + 3169744, + 3322228, + 3322494, + 3128964, + 3127400, + 3127168 ], "bases": [ { @@ -59810,26 +59731,26 @@ }, { "type_name": "google::protobuf::FileOptions", - "vtable_address": 9509552, - "methods": [ - 3169724, - 3169770, - 3320958, - 4735536, - 3171674, - 3161270, - 3323118, - 3319950, - 3139056, - 3189608, - 3150858, - 4730112, - 3163422, - 3319860, - 3320126, - 3126726, - 3125422, - 3124904 + "vtable_address": 9512752, + "methods": [ + 3172092, + 3172138, + 3323326, + 4737888, + 3174042, + 3163638, + 3325486, + 3322318, + 3141424, + 3191976, + 3153226, + 4732480, + 3165790, + 3322228, + 3322494, + 3129094, + 3127790, + 3127272 ], "bases": [ { @@ -59862,80 +59783,80 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo", - "vtable_address": 9511632, - "methods": [ - 3171068, - 3171114, - 3320958, - 4735744, - 3174600, - 3125028, - 3323118, - 3319950, - 3126506, - 3189808, - 3158790, - 4730112, - 3159112, - 3319860, - 3320126, - 3126856, - 3125812, - 3125020, - 3321688, - 3188930, - 3321688, - 3169160, - 3321688, - 3188066, - 3321688, - 3168692, - 3321688, - 3186982, - 3321688, - 3168226, - 3321688, - 3184424, - 3321688, - 3184200, - 3321688, - 3183674, - 3321688, - 3183436, - 3321688, - 3182948, - 3321688, - 3181990, - 3321688, - 3181314, - 3321688, - 3180362, - 3321688, - 3184628, - 3321688, - 3185984, - 3321688, - 3183864, - 3321688, - 3185392, - 3321688, - 3167908, - 3321688, - 3183122, - 3321688, - 3182374, - 3321688, - 3179894, - 3321688, - 3181538, - 3321688, - 3167638, - 3321688, - 3180068, - 3321688, - 3188220, - 3321688, - 3174758 + "vtable_address": 9514832, + "methods": [ + 3173436, + 3173482, + 3323326, + 4738096, + 3176968, + 3127396, + 3325486, + 3322318, + 3128874, + 3192176, + 3161158, + 4732480, + 3161480, + 3322228, + 3322494, + 3129224, + 3128180, + 3127388, + 3324056, + 3191298, + 3324056, + 3171528, + 3324056, + 3190434, + 3324056, + 3171060, + 3324056, + 3189350, + 3324056, + 3170594, + 3324056, + 3186792, + 3324056, + 3186568, + 3324056, + 3186042, + 3324056, + 3185804, + 3324056, + 3185316, + 3324056, + 3184358, + 3324056, + 3183682, + 3324056, + 3182730, + 3324056, + 3186996, + 3324056, + 3188352, + 3324056, + 3186232, + 3324056, + 3187760, + 3324056, + 3170276, + 3324056, + 3185490, + 3324056, + 3184742, + 3324056, + 3182262, + 3324056, + 3183906, + 3324056, + 3170006, + 3324056, + 3182436, + 3324056, + 3190588, + 3324056, + 3177126 ], "bases": [ { @@ -59968,26 +59889,26 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo_Annotation", - "vtable_address": 9511472, - "methods": [ - 3171004, - 3171050, - 3320958, - 4735728, - 3174500, - 3125028, - 3323118, - 3319950, - 3126046, - 3189798, - 3147132, - 4730112, - 3138376, - 3319860, - 3320126, - 3126846, - 3125782, - 3125012 + "vtable_address": 9514672, + "methods": [ + 3173372, + 3173418, + 3323326, + 4738080, + 3176868, + 3127396, + 3325486, + 3322318, + 3128414, + 3192166, + 3149500, + 4732480, + 3140744, + 3322228, + 3322494, + 3129214, + 3128150, + 3127380 ], "bases": [ { @@ -60020,15 +59941,15 @@ }, { "type_name": "google::protobuf::MergedDescriptorDatabase", - "vtable_address": 9512784, + "vtable_address": 9515984, "methods": [ - 3204250, - 3204276, - 3204102, - 3214030, - 3214224, - 3212478, - 3206566 + 3206618, + 3206644, + 3206470, + 3216398, + 3216592, + 3214846, + 3208934 ], "bases": [ { @@ -60050,7 +59971,7 @@ }, { "type_name": "google::protobuf::Message", - "vtable_address": 9507456, + "vtable_address": 9510656, "methods": [], "bases": [ { @@ -60066,13 +59987,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1861408 + "offset_to_top": 1861536 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 9512888, + "vtable_address": 9516088, "methods": [], "bases": [ { @@ -60088,13 +60009,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1862144 + "offset_to_top": 1862272 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 9513112, + "vtable_address": 9516312, "methods": [], "bases": [ { @@ -60110,13 +60031,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1862688 + "offset_to_top": 1862816 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 9514976, + "vtable_address": 9518176, "methods": [], "bases": [ { @@ -60138,7 +60059,7 @@ }, { "type_name": "google::protobuf::Message", - "vtable_address": 9552816, + "vtable_address": 9556016, "methods": [], "bases": [ { @@ -60154,13 +60075,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1930656 + "offset_to_top": 1930784 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 9560552, + "vtable_address": 9563752, "methods": [], "bases": [ { @@ -60176,13 +60097,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1932248 + "offset_to_top": 1932376 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 9567792, + "vtable_address": 9570992, "methods": [], "bases": [ { @@ -60198,13 +60119,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1935760 + "offset_to_top": 1935888 } } }, { "type_name": "google::protobuf::Message", - "vtable_address": 9661824, + "vtable_address": 9664976, "methods": [], "bases": [ { @@ -60220,24 +60141,24 @@ ], "model": { "Itanium": { - "offset_to_top": 1980464 + "offset_to_top": 1980528 } } }, { "type_name": "google::protobuf::MessageLite", - "vtable_address": 9504528, + "vtable_address": 9507728, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1851584 + "offset_to_top": 1851712 } } }, { "type_name": "google::protobuf::MessageLite", - "vtable_address": 9506048, + "vtable_address": 9509248, "methods": [], "bases": [], "model": { @@ -60248,26 +60169,26 @@ }, { "type_name": "google::protobuf::MessageOptions", - "vtable_address": 9509712, - "methods": [ - 3169788, - 3169834, - 3320958, - 4735552, - 3171982, - 3160846, - 3323118, - 3319950, - 3139684, - 3189648, - 3152888, - 4730112, - 3163078, - 3319860, - 3320126, - 3126736, - 3125452, - 3124912 + "vtable_address": 9512912, + "methods": [ + 3172156, + 3172202, + 3323326, + 4737904, + 3174350, + 3163214, + 3325486, + 3322318, + 3142052, + 3192016, + 3155256, + 4732480, + 3165446, + 3322228, + 3322494, + 3129104, + 3127820, + 3127280 ], "bases": [ { @@ -60300,26 +60221,26 @@ }, { "type_name": "google::protobuf::MethodDescriptorProto", - "vtable_address": 9509392, - "methods": [ - 3170620, - 3170666, - 3320958, - 4735520, - 3173502, - 3161076, - 3323118, - 3319950, - 3142068, - 3189748, - 3145576, - 4730112, - 3136940, - 3319860, - 3320126, - 3126716, - 3125392, - 3124896 + "vtable_address": 9512592, + "methods": [ + 3172988, + 3173034, + 3323326, + 4737872, + 3175870, + 3163444, + 3325486, + 3322318, + 3144436, + 3192116, + 3147944, + 4732480, + 3139308, + 3322228, + 3322494, + 3129084, + 3127760, + 3127264 ], "bases": [ { @@ -60352,26 +60273,26 @@ }, { "type_name": "google::protobuf::MethodOptions", - "vtable_address": 9510672, - "methods": [ - 3170556, - 3170602, - 3320958, - 4735648, - 3173446, - 3161044, - 3323118, - 3319950, - 3141934, - 3189768, - 3156020, - 4730112, - 3161302, - 3319860, - 3320126, - 3126796, - 3125632, - 3124960 + "vtable_address": 9513872, + "methods": [ + 3172924, + 3172970, + 3323326, + 4738000, + 3175814, + 3163412, + 3325486, + 3322318, + 3144302, + 3192136, + 3158388, + 4732480, + 3163670, + 3322228, + 3322494, + 3129164, + 3128000, + 3127328 ], "bases": [ { @@ -60404,26 +60325,26 @@ }, { "type_name": "google::protobuf::OneofDescriptorProto", - "vtable_address": 9508592, - "methods": [ - 3170108, - 3170154, - 3320958, - 4735440, - 3172460, - 3160818, - 3323118, - 3319950, - 3140484, - 3189658, - 3144562, - 4730112, - 3136392, - 3319860, - 3320126, - 3126666, - 3125242, - 3124856 + "vtable_address": 9511792, + "methods": [ + 3172476, + 3172522, + 3323326, + 4737792, + 3174828, + 3163186, + 3325486, + 3322318, + 3142852, + 3192026, + 3146930, + 4732480, + 3138760, + 3322228, + 3322494, + 3129034, + 3127610, + 3127224 ], "bases": [ { @@ -60456,26 +60377,26 @@ }, { "type_name": "google::protobuf::OneofOptions", - "vtable_address": 9510032, - "methods": [ - 3170044, - 3170090, - 3320958, - 4735584, - 3172428, - 3160786, - 3323118, - 3319950, - 3140386, - 3189698, - 3154398, - 4730112, - 3162302, - 3319860, - 3320126, - 3126756, - 3125512, - 3124928 + "vtable_address": 9513232, + "methods": [ + 3172412, + 3172458, + 3323326, + 4737936, + 3174796, + 3163154, + 3325486, + 3322318, + 3142754, + 3192066, + 3156766, + 4732480, + 3164670, + 3322228, + 3322494, + 3129124, + 3127880, + 3127296 ], "bases": [ { @@ -60508,26 +60429,26 @@ }, { "type_name": "google::protobuf::ServiceDescriptorProto", - "vtable_address": 9509232, - "methods": [ - 3170492, - 3170538, - 3320958, - 4735504, - 3173722, - 3161136, - 3323118, - 3319950, - 3142230, - 3189588, - 3157270, - 4730112, - 3159950, - 3319860, - 3320126, - 3126706, - 3125362, - 3124888 + "vtable_address": 9512432, + "methods": [ + 3172860, + 3172906, + 3323326, + 4737856, + 3176090, + 3163504, + 3325486, + 3322318, + 3144598, + 3191956, + 3159638, + 4732480, + 3162318, + 3322228, + 3322494, + 3129074, + 3127730, + 3127256 ], "bases": [ { @@ -60560,26 +60481,26 @@ }, { "type_name": "google::protobuf::ServiceOptions", - "vtable_address": 9510512, - "methods": [ - 3170428, - 3170474, - 3320958, - 4735632, - 3173400, - 3161104, - 3323118, - 3319950, - 3141824, - 3189758, - 3155604, - 4730112, - 3161572, - 3319860, - 3320126, - 3126786, - 3125602, - 3124952 + "vtable_address": 9513712, + "methods": [ + 3172796, + 3172842, + 3323326, + 4737984, + 3175768, + 3163472, + 3325486, + 3322318, + 3144192, + 3192126, + 3157972, + 4732480, + 3163940, + 3322228, + 3322494, + 3129154, + 3127970, + 3127320 ], "bases": [ { @@ -60612,15 +60533,15 @@ }, { "type_name": "google::protobuf::SimpleDescriptorDatabase", - "vtable_address": 9512568, + "vtable_address": 9515768, "methods": [ - 3215530, - 3215620, - 3205070, - 3205456, - 3207130, - 3212034, - 3206184 + 3217898, + 3217988, + 3207438, + 3207824, + 3209498, + 3214402, + 3208552 ], "bases": [ { @@ -60642,26 +60563,26 @@ }, { "type_name": "google::protobuf::SourceCodeInfo", - "vtable_address": 9511312, - "methods": [ - 3170876, - 3170922, - 3320958, - 4735712, - 3174036, - 3125028, - 3323118, - 3319950, - 3126416, - 3189618, - 3158468, - 4730112, - 3159276, - 3319860, - 3320126, - 3126836, - 3125752, - 3125004 + "vtable_address": 9514512, + "methods": [ + 3173244, + 3173290, + 3323326, + 4738064, + 3176404, + 3127396, + 3325486, + 3322318, + 3128784, + 3191986, + 3160836, + 4732480, + 3161644, + 3322228, + 3322494, + 3129204, + 3128120, + 3127372 ], "bases": [ { @@ -60694,26 +60615,26 @@ }, { "type_name": "google::protobuf::SourceCodeInfo_Location", - "vtable_address": 9511152, - "methods": [ - 3170812, - 3170858, - 3320958, - 4735696, - 3173912, - 3125028, - 3323118, - 3319950, - 3126186, - 3189788, - 3146504, - 4730112, - 3137502, - 3319860, - 3320126, - 3126826, - 3125722, - 3124996 + "vtable_address": 9514352, + "methods": [ + 3173180, + 3173226, + 3323326, + 4738048, + 3176280, + 3127396, + 3325486, + 3322318, + 3128554, + 3192156, + 3148872, + 4732480, + 3139870, + 3322228, + 3322494, + 3129194, + 3128090, + 3127364 ], "bases": [ { @@ -60746,36 +60667,36 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 9516488, + "vtable_address": 9519688, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1867328 + "offset_to_top": 1867456 } } }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 9517280, - "methods": [ - 3337100, - 3337208, - 3337132, - 3338798, - 3339026, - 3339274, - 3339504, - 3339754, - 3339950, - 3343076, - 3337102, - 3338786, - 3337108, - 3343292, - 3343516, - 3337128, - 3343660 + "vtable_address": 9520480, + "methods": [ + 3339468, + 3339576, + 3339500, + 3341166, + 3341394, + 3341642, + 3341872, + 3342122, + 3342318, + 3345444, + 3339470, + 3341154, + 3339476, + 3345660, + 3345884, + 3339496, + 3346028 ], "bases": [], "model": { @@ -60786,34 +60707,34 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 9557336, + "vtable_address": 9560536, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1931232 + "offset_to_top": 1931360 } } }, { "type_name": "google::protobuf::TextFormat::FieldValuePrinter", - "vtable_address": 9517144, - "methods": [ - 3337082, - 3337202, - 3337232, - 3338920, - 3339168, - 3339396, - 3339646, - 3339848, - 3340046, - 3343184, - 3337084, - 3341256, - 3343402, - 3343544, - 3343688 + "vtable_address": 9520344, + "methods": [ + 3339450, + 3339570, + 3339600, + 3341288, + 3341536, + 3341764, + 3342014, + 3342216, + 3342414, + 3345552, + 3339452, + 3343624, + 3345770, + 3345912, + 3346056 ], "bases": [], "model": { @@ -60824,12 +60745,12 @@ }, { "type_name": "google::protobuf::TextFormat::Parser::ParserImpl::ParserErrorCollector", - "vtable_address": 9516504, + "vtable_address": 9519704, "methods": [ - 3356038, - 3356054, - 3356582, - 3356956 + 3358406, + 3358422, + 3358950, + 3359324 ], "bases": [ { @@ -60851,25 +60772,25 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::DebugStringFieldValuePrinter", - "vtable_address": 9516616, - "methods": [ - 3355884, - 3355888, - 3337132, - 3338798, - 3339026, - 3339274, - 3339504, - 3339754, - 3339950, - 3343076, - 3337102, - 3338786, - 3337108, - 3343292, - 3365710, - 3337128, - 3343660 + "vtable_address": 9519816, + "methods": [ + 3358252, + 3358256, + 3339500, + 3341166, + 3341394, + 3341642, + 3341872, + 3342122, + 3342318, + 3345444, + 3339470, + 3341154, + 3339476, + 3345660, + 3368078, + 3339496, + 3346028 ], "bases": [ { @@ -60891,25 +60812,25 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::FastFieldValuePrinterUtf8Escaping", - "vtable_address": 9516768, - "methods": [ - 3355886, - 3355894, - 3337132, - 3338798, - 3339026, - 3339274, - 3339504, - 3339754, - 3339950, - 3365852, - 3365960, - 3338786, - 3337108, - 3343292, - 3365710, - 3337128, - 3343660 + "vtable_address": 9519968, + "methods": [ + 3358254, + 3358262, + 3339500, + 3341166, + 3341394, + 3341642, + 3341872, + 3342122, + 3342318, + 3368220, + 3368328, + 3341154, + 3339476, + 3345660, + 3368078, + 3339496, + 3346028 ], "bases": [ { @@ -60942,14 +60863,14 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::TextGenerator", - "vtable_address": 9516552, + "vtable_address": 9519752, "methods": [ - 3355838, - 3355900, - 3355872, - 3355918, - 3355876, - 3357414 + 3358206, + 3358268, + 3358240, + 3358286, + 3358244, + 3359782 ], "bases": [ { @@ -60971,26 +60892,26 @@ }, { "type_name": "google::protobuf::UninterpretedOption", - "vtable_address": 9510992, - "methods": [ - 3170748, - 3170794, - 3320958, - 4735680, - 3171352, - 3159440, - 3323118, - 3319950, - 3131438, - 3189678, - 3157774, - 4730112, - 3159484, - 3319860, - 3320126, - 3126816, - 3125692, - 3124988 + "vtable_address": 9514192, + "methods": [ + 3173116, + 3173162, + 3323326, + 4738032, + 3173720, + 3161808, + 3325486, + 3322318, + 3133806, + 3192046, + 3160142, + 4732480, + 3161852, + 3322228, + 3322494, + 3129184, + 3128060, + 3127356 ], "bases": [ { @@ -61023,26 +60944,26 @@ }, { "type_name": "google::protobuf::UninterpretedOption_NamePart", - "vtable_address": 9510832, - "methods": [ - 3170684, - 3170730, - 3320958, - 4735664, - 3171276, - 3124976, - 3323118, - 3319950, - 3131384, - 3189778, - 3146158, - 4730112, - 3137326, - 3319860, - 3320126, - 3126806, - 3125662, - 3124968 + "vtable_address": 9514032, + "methods": [ + 3173052, + 3173098, + 3323326, + 4738016, + 3173644, + 3127344, + 3325486, + 3322318, + 3133752, + 3192146, + 3148526, + 4732480, + 3139694, + 3322228, + 3322494, + 3129174, + 3128030, + 3127336 ], "bases": [ { @@ -61075,14 +60996,14 @@ }, { "type_name": "google::protobuf::ZeroCopyCodedInputStream", - "vtable_address": 9506168, + "vtable_address": 9509368, "methods": [ - 2905170, - 2905172, - 2905364, - 2905152, - 2905354, - 2905166 + 2907538, + 2907540, + 2907732, + 2907520, + 2907722, + 2907534 ], "bases": [ { @@ -61104,32 +61025,32 @@ }, { "type_name": "google::protobuf::internal::DynamicMapField", - "vtable_address": 9513688, - "methods": [ - 3298894, - 3302520, - 3298822, - 3298942, - 3303016, - 3312600, - 3303032, - 3300742, - 3302888, - 3303010, - 3297168, - 3298716, - 3299116, - 3299798, - 3301276, - 3303078, - 3303070, - 3305462, - 3315504, - 3297748, - 3297764, - 3297338, - 3298504, - 3298698 + "vtable_address": 9516888, + "methods": [ + 3301262, + 3304888, + 3301190, + 3301310, + 3305384, + 3314968, + 3305400, + 3303110, + 3305256, + 3305378, + 3299536, + 3301084, + 3301484, + 3302166, + 3303644, + 3305446, + 3305438, + 3307830, + 3317872, + 3300116, + 3300132, + 3299706, + 3300872, + 3301066 ], "bases": [ { @@ -61162,21 +61083,21 @@ }, { "type_name": "google::protobuf::internal::ImplicitWeakMessage", - "vtable_address": 9504544, + "vtable_address": 9507744, "methods": [ - 2883554, - 2883622, - 2883520, - 2883894, - 2883426, - 2883382, - 2899422, - 2883500, - 2883386, - 2883406, - 2883348, - 4730112, - 2883440 + 2885922, + 2885990, + 2885888, + 2886262, + 2885794, + 2885750, + 2901790, + 2885868, + 2885754, + 2885774, + 2885716, + 4732480, + 2885808 ], "bases": [ { @@ -61198,40 +61119,40 @@ }, { "type_name": "google::protobuf::internal::InternalMetadata::ContainerBase", - "vtable_address": 9565288, + "vtable_address": 9568488, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1932352 + "offset_to_top": 1932480 } } }, { "type_name": "google::protobuf::internal::MapFieldAccessor", - "vtable_address": 9514456, - "methods": [ - 3325946, - 3325964, - 3328102, - 3328478, - 3328390, - 3329194, - 3328650, - 3327098, - 3328694, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3324676, - 3325912, - 3327392, - 3327408, - 3324678 + "vtable_address": 9517656, + "methods": [ + 3328314, + 3328332, + 3330470, + 3330846, + 3330758, + 3331562, + 3331018, + 3329466, + 3331062, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327044, + 3328280, + 3329760, + 3329776, + 3327046 ], "bases": [ { @@ -61264,7 +61185,7 @@ }, { "type_name": "google::protobuf::internal::MapFieldBase", - "vtable_address": 9513520, + "vtable_address": 9516720, "methods": [], "bases": [], "model": { @@ -61275,26 +61196,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 9516136, - "methods": [ - 3324698, - 3324706, - 3325276, - 3324710, - 3325324, - 3325374, - 3327300, - 3326934, - 3326794, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3324718, - 3324722 + "vtable_address": 9519336, + "methods": [ + 3327066, + 3327074, + 3327644, + 3327078, + 3327692, + 3327742, + 3329668, + 3329302, + 3329162, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327086, + 3327090 ], "bases": [ { @@ -61338,26 +61259,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 9515976, - "methods": [ - 3324726, - 3324734, - 3325418, - 3324738, - 3325466, - 3324746, - 3327308, - 3326782, - 3326642, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3324792, - 3324798 + "vtable_address": 9519176, + "methods": [ + 3327094, + 3327102, + 3327786, + 3327106, + 3327834, + 3327114, + 3329676, + 3329150, + 3329010, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327160, + 3327166 ], "bases": [ { @@ -61401,26 +61322,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 9515816, - "methods": [ - 3324802, - 3324810, - 3325518, - 3324814, - 3325566, - 3324822, - 3327316, - 3326630, - 3326490, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3324868, - 3324874 + "vtable_address": 9519016, + "methods": [ + 3327170, + 3327178, + 3327886, + 3327182, + 3327934, + 3327190, + 3329684, + 3328998, + 3328858, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327236, + 3327242 ], "bases": [ { @@ -61464,26 +61385,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 9515176, - "methods": [ - 3325094, - 3325102, - 3325106, - 3325154, - 3325162, - 3325212, - 3327348, - 3327086, - 3326946, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3325256, - 3325260 + "vtable_address": 9518376, + "methods": [ + 3327462, + 3327470, + 3327474, + 3327522, + 3327530, + 3327580, + 3329716, + 3329454, + 3329314, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327624, + 3327628 ], "bases": [ { @@ -61527,26 +61448,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 9515496, - "methods": [ - 3324950, - 3324958, - 3325716, - 3324962, - 3325764, - 3324970, - 3327332, - 3326326, - 3326186, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3325014, - 3325018 + "vtable_address": 9518696, + "methods": [ + 3327318, + 3327326, + 3328084, + 3327330, + 3328132, + 3327338, + 3329700, + 3328694, + 3328554, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327382, + 3327386 ], "bases": [ { @@ -61590,26 +61511,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 9515336, - "methods": [ - 3325022, - 3325030, - 3325814, - 3325034, - 3325862, - 3325042, - 3327340, - 3326174, - 3326034, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3325086, - 3325090 + "vtable_address": 9518536, + "methods": [ + 3327390, + 3327398, + 3328182, + 3327402, + 3328230, + 3327410, + 3329708, + 3328542, + 3328402, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327454, + 3327458 ], "bases": [ { @@ -61653,26 +61574,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 9515656, - "methods": [ - 3324878, - 3324886, - 3325618, - 3324890, - 3325666, - 3324898, - 3327324, - 3326478, - 3326338, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3324942, - 3324946 + "vtable_address": 9518856, + "methods": [ + 3327246, + 3327254, + 3327986, + 3327258, + 3328034, + 3327266, + 3329692, + 3328846, + 3328706, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3327310, + 3327314 ], "bases": [ { @@ -61716,7 +61637,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldWrapper", - "vtable_address": 9514440, + "vtable_address": 9517640, "methods": [], "bases": [ { @@ -61743,13 +61664,13 @@ ], "model": { "Itanium": { - "offset_to_top": 1866528 + "offset_to_top": 1866656 } } }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 9504456, + "vtable_address": 9507656, "methods": [], "bases": [], "model": { @@ -61760,7 +61681,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 9504496, + "vtable_address": 9507696, "methods": [], "bases": [], "model": { @@ -61771,7 +61692,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 9513480, + "vtable_address": 9516680, "methods": [], "bases": [], "model": { @@ -61782,27 +61703,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldMessageAccessor", - "vtable_address": 9514808, - "methods": [ - 3325264, - 3325272, - 3328124, - 3328496, - 3328430, - 3329120, - 3328668, - 3327356, - 3328860, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3327400, - 3327416, - 3324686 + "vtable_address": 9518008, + "methods": [ + 3327632, + 3327640, + 3330492, + 3330864, + 3330798, + 3331488, + 3331036, + 3329724, + 3331228, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3329768, + 3329784, + 3327054 ], "bases": [ { @@ -61846,27 +61767,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldStringAccessor", - "vtable_address": 9514640, - "methods": [ - 3327292, - 3326026, - 3325978, - 3327284, - 3327236, - 3327168, - 3327160, - 3327148, - 3327506, - 3324630, - 3324634, - 3324646, - 3324650, - 3324656, - 3324664, - 3324666, - 3325918, - 3324690, - 3324682 + "vtable_address": 9517840, + "methods": [ + 3329660, + 3328394, + 3328346, + 3329652, + 3329604, + 3329536, + 3329528, + 3329516, + 3329874, + 3326998, + 3327002, + 3327014, + 3327018, + 3327024, + 3327032, + 3327034, + 3328286, + 3327058, + 3327050 ], "bases": [ { @@ -61910,7 +61831,7 @@ }, { "type_name": "google::protobuf::internal::ZeroFieldsBase", - "vtable_address": 9513128, + "vtable_address": 9516328, "methods": [], "bases": [ { @@ -61943,14 +61864,14 @@ }, { "type_name": "google::protobuf::io::ArrayInputStream", - "vtable_address": 9505600, + "vtable_address": 9508800, "methods": [ - 2899286, - 2899288, - 2895168, - 2895596, - 2895924, - 2895224 + 2901654, + 2901656, + 2897536, + 2897964, + 2898292, + 2897592 ], "bases": [ { @@ -61972,15 +61893,15 @@ }, { "type_name": "google::protobuf::io::ArrayOutputStream", - "vtable_address": 9505664, + "vtable_address": 9508864, "methods": [ - 2899284, - 2899300, - 2895230, - 2896090, - 2895286, - 2892396, - 2892496 + 2901652, + 2901668, + 2897598, + 2898458, + 2897654, + 2894764, + 2894864 ], "bases": [ { @@ -62002,14 +61923,14 @@ }, { "type_name": "google::protobuf::io::ConcatenatingInputStream", - "vtable_address": 9505376, + "vtable_address": 9508576, "methods": [ - 2895028, - 2895030, - 2892544, - 2893628, - 2892632, - 2893750 + 2897396, + 2897398, + 2894912, + 2895996, + 2895000, + 2896118 ], "bases": [ { @@ -62031,14 +61952,14 @@ }, { "type_name": "google::protobuf::io::CopyingInputStreamAdaptor", - "vtable_address": 9505808, + "vtable_address": 9509008, "methods": [ - 2897964, - 2898010, - 2899136, - 2897026, - 2897410, - 2895422 + 2900332, + 2900378, + 2901504, + 2899394, + 2899778, + 2897790 ], "bases": [ { @@ -62060,15 +61981,15 @@ }, { "type_name": "google::protobuf::io::CopyingOutputStreamAdaptor", - "vtable_address": 9505872, + "vtable_address": 9509072, "methods": [ - 2898272, - 2898322, - 2899026, - 2898346, - 2895434, - 2898698, - 2895024 + 2900640, + 2900690, + 2901394, + 2900714, + 2897802, + 2901066, + 2897392 ], "bases": [ { @@ -62090,25 +62011,25 @@ }, { "type_name": "google::protobuf::io::ErrorCollector", - "vtable_address": 9506384, + "vtable_address": 9509584, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1859072 + "offset_to_top": 1859200 } } }, { "type_name": "google::protobuf::io::FileInputStream", - "vtable_address": 9504928, + "vtable_address": 9508128, "methods": [ - 2895114, - 2895148, - 2894894, - 2894914, - 2894934, - 2894954 + 2897482, + 2897516, + 2897262, + 2897282, + 2897302, + 2897322 ], "bases": [ { @@ -62130,12 +62051,12 @@ }, { "type_name": "google::protobuf::io::FileInputStream::CopyingFileInputStream", - "vtable_address": 9504992, + "vtable_address": 9508192, "methods": [ - 2894032, - 2894240, - 2892904, - 2893090 + 2896400, + 2896608, + 2895272, + 2895458 ], "bases": [ { @@ -62157,15 +62078,15 @@ }, { "type_name": "google::protobuf::io::FileOutputStream", - "vtable_address": 9505040, + "vtable_address": 9508240, "methods": [ - 2894678, - 2894716, - 2899026, - 2898346, - 2895434, - 2898698, - 2895024 + 2897046, + 2897084, + 2901394, + 2900714, + 2897802, + 2901066, + 2897392 ], "bases": [ { @@ -62198,11 +62119,11 @@ }, { "type_name": "google::protobuf::io::FileOutputStream::CopyingFileOutputStream", - "vtable_address": 9505112, + "vtable_address": 9508312, "methods": [ - 2894548, - 2894734, - 2893274 + 2896916, + 2897102, + 2895642 ], "bases": [ { @@ -62224,14 +62145,14 @@ }, { "type_name": "google::protobuf::io::IstreamInputStream", - "vtable_address": 9505152, + "vtable_address": 9508352, "methods": [ - 2895076, - 2895096, - 2894904, - 2894924, - 2894944, - 2894964 + 2897444, + 2897464, + 2897272, + 2897292, + 2897312, + 2897332 ], "bases": [ { @@ -62253,12 +62174,12 @@ }, { "type_name": "google::protobuf::io::IstreamInputStream::CopyingIstreamInputStream", - "vtable_address": 9505216, + "vtable_address": 9508416, "methods": [ - 2892540, - 2892620, - 2893502, - 2895292 + 2894908, + 2894988, + 2895870, + 2897660 ], "bases": [ { @@ -62280,14 +62201,14 @@ }, { "type_name": "google::protobuf::io::LimitingInputStream", - "vtable_address": 9505944, + "vtable_address": 9509144, "methods": [ - 2895444, - 2897392, - 2897632, - 2895476, - 2895526, - 2897596 + 2897812, + 2899760, + 2900000, + 2897844, + 2897894, + 2899964 ], "bases": [ { @@ -62309,15 +62230,15 @@ }, { "type_name": "google::protobuf::io::OstreamOutputStream", - "vtable_address": 9505264, + "vtable_address": 9508464, "methods": [ - 2894974, - 2895006, - 2893560, - 2893570, - 2893580, - 2892396, - 2892496 + 2897342, + 2897374, + 2895928, + 2895938, + 2895948, + 2894764, + 2894864 ], "bases": [ { @@ -62339,11 +62260,11 @@ }, { "type_name": "google::protobuf::io::OstreamOutputStream::CopyingOstreamOutputStream", - "vtable_address": 9505336, + "vtable_address": 9508536, "methods": [ - 2892542, - 2892626, - 2893590 + 2894910, + 2894994, + 2895958 ], "bases": [ { @@ -62365,15 +62286,15 @@ }, { "type_name": "google::protobuf::io::StringOutputStream", - "vtable_address": 9505736, + "vtable_address": 9508936, "methods": [ - 2899282, - 2899294, - 2896786, - 2896462, - 2896328, - 2892396, - 2892496 + 2901650, + 2901662, + 2899154, + 2898830, + 2898696, + 2894764, + 2894864 ], "bases": [ { @@ -62395,40 +62316,40 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 9504912, + "vtable_address": 9508112, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1852448 + "offset_to_top": 1852576 } } }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 9505584, + "vtable_address": 9508784, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1852896 + "offset_to_top": 1853024 } } }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 9506032, + "vtable_address": 9509232, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 1852992 + "offset_to_top": 1853120 } } }, { "type_name": "sdt", - "vtable_address": 9778864, + "vtable_address": 9782096, "methods": [], "bases": [], "model": { @@ -62439,35 +62360,35 @@ }, { "type_name": "sdt", - "vtable_address": 9785816, + "vtable_address": 9789048, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 9655232 + "offset_to_top": 9658432 } } }, { "type_name": "sdt", - "vtable_address": 9786456, + "vtable_address": 9789640, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 2 + "offset_to_top": 5 } } }, { "type_name": "snappy::ByteArraySource", - "vtable_address": 9558208, + "vtable_address": 9561408, "methods": [ - 7684672, - 7691248, - 7681120, - 7681136, - 7681152 + 7674144, + 7691536, + 7662400, + 7662384, + 7662368 ], "bases": [ { @@ -62489,7 +62410,7 @@ }, { "type_name": "std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>", - "vtable_address": 9517480, + "vtable_address": 9520680, "methods": [], "bases": [ { @@ -62505,19 +62426,19 @@ ], "model": { "Itanium": { - "offset_to_top": 1883744 + "offset_to_top": 1883872 } } }, { "type_name": "std::_Sp_counted_ptr_inplace >, unsigned int>, std::allocator >, unsigned int> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 9518392, + "vtable_address": 9521592, "methods": [ - 3528304, - 3528464, - 3531088, - 3528512, - 3528720 + 3530672, + 3530832, + 3533456, + 3530880, + 3531088 ], "bases": [ { @@ -62550,13 +62471,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace >, void>, std::allocator >, void> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 9518280, + "vtable_address": 9521480, "methods": [ - 3528336, - 3528432, - 3530720, - 3528544, - 3528560 + 3530704, + 3530800, + 3533088, + 3530912, + 3530928 ], "bases": [ { @@ -62589,13 +62510,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace >, unsigned int>, std::allocator >, unsigned int> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 9518448, + "vtable_address": 9521648, "methods": [ - 3528288, - 3528480, - 3532096, - 3528496, - 3528800 + 3530656, + 3530848, + 3534464, + 3530864, + 3531168 ], "bases": [ { @@ -62628,13 +62549,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace >, void>, std::allocator >, void> >, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 9518336, + "vtable_address": 9521536, "methods": [ - 3528320, - 3528448, - 3531312, - 3528528, - 3528640 + 3530688, + 3530816, + 3533680, + 3530896, + 3531008 ], "bases": [ { @@ -62667,12 +62588,12 @@ }, { "type_name": "std::__future_base::_Async_state_commonV2", - "vtable_address": 9518000, + "vtable_address": 9521200, "methods": [ - 3529184, - 3531008, - 3528880, - 3527984 + 3531552, + 3533376, + 3531248, + 3530352 ], "bases": [ { @@ -62694,12 +62615,12 @@ }, { "type_name": "std::__future_base::_Async_state_impl >, unsigned int>", - "vtable_address": 9518184, + "vtable_address": 9521384, "methods": [ - 3531728, - 3531408, - 3528880, - 3527984 + 3534096, + 3533776, + 3531248, + 3530352 ], "bases": [ { @@ -62732,12 +62653,12 @@ }, { "type_name": "std::__future_base::_Async_state_impl >, void>", - "vtable_address": 9518088, + "vtable_address": 9521288, "methods": [ - 3531952, - 3530864, - 3528880, - 3527984 + 3534320, + 3533232, + 3531248, + 3530352 ], "bases": [ { @@ -62770,12 +62691,12 @@ }, { "type_name": "std::__future_base::_Deferred_state >, unsigned int>", - "vtable_address": 9518232, + "vtable_address": 9521432, "methods": [ - 3530560, - 3532256, - 3532432, - 3528352 + 3532928, + 3534624, + 3534800, + 3530720 ], "bases": [ { @@ -62797,12 +62718,12 @@ }, { "type_name": "std::__future_base::_Deferred_state >, void>", - "vtable_address": 9518136, + "vtable_address": 9521336, "methods": [ - 3530464, - 3531632, - 3529456, - 3528368 + 3532832, + 3534000, + 3531824, + 3530736 ], "bases": [ { @@ -62824,11 +62745,11 @@ }, { "type_name": "std::__future_base::_Result", - "vtable_address": 9518048, + "vtable_address": 9521248, "methods": [ - 3530400, - 3529120, - 3529152 + 3532768, + 3531488, + 3531520 ], "bases": [], "model": { @@ -62839,11 +62760,11 @@ }, { "type_name": "std::__future_base::_Result", - "vtable_address": 9517960, + "vtable_address": 9521160, "methods": [ - 3528000, - 3529056, - 3529088 + 3530368, + 3531424, + 3531456 ], "bases": [], "model": { @@ -62854,12 +62775,12 @@ }, { "type_name": "std::__future_base::_State_baseV2", - "vtable_address": 9517912, + "vtable_address": 9521112, "methods": [ - 3528112, - 3528384, - 3527968, - 3527984 + 3530480, + 3530752, + 3530336, + 3530352 ], "bases": [], "model": { @@ -62870,11 +62791,11 @@ }, { "type_name": "std::thread::_State_impl >, unsigned int>::_Async_state_impl(std::thread::_Invoker >&&)::{lambda()#1}> > >", - "vtable_address": 9518544, + "vtable_address": 9521744, "methods": [ - 3529328, - 3529360, - 3534368 + 3531696, + 3531728, + 3536736 ], "bases": [], "model": { @@ -62885,11 +62806,11 @@ }, { "type_name": "std::thread::_State_impl >, void>::_Async_state_impl(std::thread::_Invoker >&&)::{lambda()#1}> > >", - "vtable_address": 9518504, + "vtable_address": 9521704, "methods": [ - 3529392, - 3529424, - 3533840 + 3531760, + 3531792, + 3536208 ], "bases": [], "model": { diff --git a/dump/linux/vtables/engine2_short.txt b/dump/linux/vtables/engine2_short.txt index 207865e..1cc8008 100644 --- a/dump/linux/vtables/engine2_short.txt +++ b/dump/linux/vtables/engine2_short.txt @@ -5,6 +5,7 @@ C2S_CONNECT_Message_t [6] [18] C2S_CONNECT_SameProcessCheck [18] CAppSystemDict [8] CAsyncCallJob [10] +CAsyncCallJob [0] CAsyncShaderCompilePrerequisite [8] [1] CAttributeDictSaveDataOps [6] CBannedUsersFilter [5] @@ -14,7 +15,7 @@ CBaseCmdKeyValues [18] CBaseCmdKeyValues [18] CBaseEngineService [0] CBaseEngineService [0] -CBaseServerSpawnGroupCreatePrerequisite [0] [0] +CBaseServerSpawnGroupCreatePrerequisite [0] CBaseSpawnGroup [13] [1] [2] CBenchmarkService [25] CBidirMsg_PredictionEvent [18] @@ -23,7 +24,7 @@ CBidirMsg_RebroadcastGameEvent_t [6] [18] CBidirMsg_RebroadcastSource [18] CBidirMsg_RebroadcastSource_t [6] [18] CBreakpadPassiveAssertionFailureListener [4] -CBroadcastPlayer [49] [5] +CBroadcastPlayer [51] [5] CBugService [32] [1] [5] [2] CCLCMsg_BaselineAck [18] CCLCMsg_BaselineAck_t [6] [18] @@ -39,7 +40,7 @@ CCLCMsg_ListenEvents [18] CCLCMsg_LoadingProgress [18] CCLCMsg_LoadingProgress_t [6] [18] CCLCMsg_Move [20] -CCLCMsg_Move_t [6] [18] +CCLCMsg_Move_t [6] [19] CCLCMsg_RconServerDetails [18] CCLCMsg_RequestPause [18] CCLCMsg_RequestPause_t [6] [18] @@ -120,8 +121,8 @@ CDelayedCall2 [3] CDelayedCall2 [3] CDelayedCall2 [3] -CDelayedCall [0] CDelayedCallBase [0] +CDelayedCallBase [0] [0] CDeltaEntityHeaderReader [1] CDeltaEntityHeaderWriter [1] CDeltaEntityNonTransmitHeaderWriter [1] @@ -133,7 +134,7 @@ CDemoClassInfo_class_t [18] CDemoConsoleCmd [18] CDemoCustomData [18] CDemoCustomDataCallbacks [18] -CDemoFile [10] +CDemoFile [9] CDemoFileHeader [18] CDemoFileInfo [18] CDemoFullPacket [18] @@ -157,7 +158,7 @@ CDemoMessagePB<(EDemoCommands)7, CDemoPacket> [7] [18] CDemoMessagePB<(EDemoCommands)9, CDemoConsoleCmd> [7] [18] CDemoPacket [18] CDemoPlaybackLoop [5] -CDemoPlayer [44] [1] +CDemoPlayer [46] [1] CDemoRecorder [24] [1] CDemoRecovery [18] CDemoRecovery_DemoInitialSpawnGroupEntry [18] @@ -165,7 +166,7 @@ CDemoSaveGame [18] CDemoSendTables [18] CDemoSpawnGroups [18] CDemoStop [18] -CDemoStreamHttp [10] +CDemoStreamHttp [9] CDemoStreamHttp::CFragmentRequest [8] CDemoStreamHttp::CStartRequest [8] CDemoStreamHttp::CSyncRequest [8] @@ -192,7 +193,7 @@ CEngineWatchdogThread [2] CEntity2_EHandle_Restore [1] CEntity2_EHandle_Save [1] CEntityComponentHelperT > [6] -CEntityInfo [3] [0] +CEntityInfo [3] CEntityMETASpewFunctor [2] [1] CEntityMsg [18] CEntityOutputTemplate [0] @@ -233,7 +234,7 @@ CGenericExpr_IntLiteral [6] CGenericExpr_Property [6] CGenericExpr_StringLiteral [6] CGenericExpr_TernaryConditional [6] -CGenericExpr_Unary [6] +CGenericExpr_Unary [7] CGenericExpr_VariableReference [6] CHLTVBroadcast [2] CHLTVBroadcast::CHttpCallback [3] @@ -258,7 +259,7 @@ CHiddenFieldValuePrinter [17] CHostStateMgr [24] [1] CHostSubscribeForProfileEvents [1] CInputService [62] [1] -CInstantReplay [46] [3] +CInstantReplay [48] [3] CKV3TransferContextBase [6] [0] [0] CKV3TransferLoadContext [6] CKV3TransferSaveContext [6] @@ -356,7 +357,7 @@ CNetMessagePB<11, CNETMsg_SpawnGroup_SetCreationTick, (SignonGroup_t)15, (NetCha CNetMessagePB<11, CNETMsg_SpawnGroup_SetCreationTick, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<12, CNETMsg_SpawnGroup_Unload, (SignonGroup_t)15, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<12, CNETMsg_SpawnGroup_Unload, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding [9] -CNetMessagePB<13, CNETMsg_SpawnGroup_LoadCompleted, (SignonGroup_t)15, (NetChannelBufType_t)1, false> [6] [18] [0] +CNetMessagePB<13, CNETMsg_SpawnGroup_LoadCompleted, (SignonGroup_t)15, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<13, CNETMsg_SpawnGroup_LoadCompleted, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<15, CNETMsg_DebugOverlay, (SignonGroup_t)16, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<15, CNETMsg_DebugOverlay, (SignonGroup_t)16, (NetChannelBufType_t)1, false>::CProtobufBinding [9] @@ -408,7 +409,7 @@ CNetMessagePB<44, CSVCMsg_CreateStringTable, (SignonGroup_t)10, (NetChannelBufTy CNetMessagePB<44, CSVCMsg_CreateStringTable, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<45, CSVCMsg_UpdateStringTable, (SignonGroup_t)7, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<45, CSVCMsg_UpdateStringTable, (SignonGroup_t)7, (NetChannelBufType_t)1, false>::CProtobufBinding [9] -CNetMessagePB<46, CSVCMsg_VoiceInit, (SignonGroup_t)10, (NetChannelBufType_t)1, false> [6] [18] [0] +CNetMessagePB<46, CSVCMsg_VoiceInit, (SignonGroup_t)10, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<46, CSVCMsg_VoiceInit, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false> [6] [18] CNetMessagePB<47, CSVCMsg_VoiceData, (SignonGroup_t)6, (NetChannelBufType_t)0, false>::CProtobufBinding [9] @@ -438,7 +439,7 @@ CNetMessagePB<59, CSVCMsg_StopSound, (SignonGroup_t)4, (NetChannelBufType_t)1, f CNetMessagePB<59, CSVCMsg_StopSound, (SignonGroup_t)4, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<6, CNETMsg_SetConVar, (SignonGroup_t)9, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<6, CNETMsg_SetConVar, (SignonGroup_t)9, (NetChannelBufType_t)1, false>::CProtobufBinding [9] -CNetMessagePB<60, CSVCMsg_PeerList, (SignonGroup_t)0, (NetChannelBufType_t)1, false> [6] [18] +CNetMessagePB<60, CSVCMsg_PeerList, (SignonGroup_t)0, (NetChannelBufType_t)1, false> [6] [18] [0] CNetMessagePB<60, CSVCMsg_PeerList, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<61, CSVCMsg_PacketReliable, (SignonGroup_t)0, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<61, CSVCMsg_PacketReliable, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding [9] @@ -450,11 +451,11 @@ CNetMessagePB<7, CNETMsg_SignonState, (SignonGroup_t)10, (NetChannelBufType_t)1, CNetMessagePB<7, CNETMsg_SignonState, (SignonGroup_t)10, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<70, CSVCMsg_FullFrameSplit, (SignonGroup_t)0, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<70, CSVCMsg_FullFrameSplit, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding [9] -CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false> [6] [18] [0] +CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<71, CSVCMsg_RconServerDetails, (SignonGroup_t)0, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<72, CSVCMsg_UserMessage, (SignonGroup_t)13, (NetChannelBufType_t)1, false>::CProtobufBinding [9] -CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false> [6] [18] [0] +CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<74, CSVCMsg_Broadcast_Command, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<74, CSVCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<74, CSVCMsg_HltvReplay, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding [9] @@ -466,7 +467,7 @@ CNetMessagePB<77, CSVCMsg_NextMsgPredicted, (SignonGroup_t)17, (NetChannelBufTyp CNetMessagePB<77, CSVCMsg_NextMsgPredicted, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetMessagePB<8, CNETMsg_SpawnGroup_Load, (SignonGroup_t)15, (NetChannelBufType_t)1, false> [6] [18] CNetMessagePB<8, CNETMsg_SpawnGroup_Load, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding [9] -CNetMessagePB<9, CNETMsg_SpawnGroup_ManifestUpdate, (SignonGroup_t)15, (NetChannelBufType_t)1, false> [6] [18] +CNetMessagePB<9, CNETMsg_SpawnGroup_ManifestUpdate, (SignonGroup_t)15, (NetChannelBufType_t)1, false> [6] [18] [0] CNetMessagePB<9, CNETMsg_SpawnGroup_ManifestUpdate, (SignonGroup_t)15, (NetChannelBufType_t)1, false>::CProtobufBinding [9] CNetSupportImpl [22] CNetworkClientService [66] [1] @@ -482,7 +483,7 @@ CNetworkClientSpawnGroup_WaitForAssetLoadPrerequisite [9] [2] CNetworkClientSpawnGroup_WaitForChildSpawnGroups [7] CNetworkClientSpawnGroup_WaitForOwnerSpawnGroupPrerequisite [7] CNetworkGameClient [148] [1] [3] [1] [1] [1] -CNetworkGameClientBase [67] [1] [0] [1] [1] [0] +CNetworkGameClientBase [67] [1] [0] [1] [1] CNetworkGameServer [81] [3] [2] CNetworkGameServerBase [54] [0] [2] CNetworkP2PService [34] @@ -541,7 +542,7 @@ CSVCMsg_Broadcast_Command [18] CSVCMsg_Broadcast_Command_t [6] [18] CSVCMsg_ClassInfo [18] CSVCMsg_ClassInfo_class_t [18] -CSVCMsg_ClassInfo_t [6] [19] +CSVCMsg_ClassInfo_t [6] [18] CSVCMsg_ClearAllStringTables [18] CSVCMsg_ClearAllStringTables_t [6] [18] CSVCMsg_CmdKeyValues [18] @@ -625,7 +626,7 @@ CServerSideClient::CSendJob_Empty [10] CServerSideClient::CSendJob_HltvReplay [10] CServerSideClient::CSendJob_HltvSource [10] CServerSideClient::CSendJob_Regular [10] -CServerSideClientBase [1] [1] +CServerSideClientBase [1] [1] [0] CSimpleLoggingListener [5] CSimpleWindowsLoggingListener [5] CSoundService [38] @@ -644,12 +645,11 @@ CTextOnlyLoggingListener [5] CThreadEvent [0] CThreadedDependentJob [0] CThreadedFileLogger [6] -CThreadedJob [0] [0] +CThreadedJob [0] CThreadedJobWithDependencies [10] CThreadedLogger [0] -CTier1AppSystem [0] CTier1AppSystemDict [8] -CTier1Application [64] +CTier1Application [63] CTier2AppSystem [11] CTier2AppSystem [11] CTier2AppSystem [11] @@ -678,6 +678,7 @@ CTier2AppSystem [11] CTier2AppSystem [11] CTier2AppSystemDict [8] CTier2Application [63] +CTier3AppSystem [0] CToolService [92] CTvDirectDemoRecorder [16] [10] [1] CUGCAddonPathResolver [1] @@ -712,21 +713,24 @@ IAssertionFailureListener [0] IDebugVisualizer [0] [0] IDemoMessage [0] IDemoMessageSink [0] +IDemoRecorder [0] IEnginePVSManager [0] IInputHandler [0] [0] IKV3TransferInterface_EHandle_Save [0] ILoggingListener [0] IMatchEventsSink [0] IMobileEventListener [5] -IMultipleWorkerJob [0] [0] [0] [0] [0] +IMultipleWorkerJob [0] [0] [0] [0] INetPacketMemoryCustomAlloc [0] INetworkMessageProcessingPreFilter [0] +INetworkStringTable [0] +IPolymorphicMetadataHelper [0] IPrintChangedConvarsWriter [0] IProceduralLayerRenderer [0] IProtobufBinding [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] IRenderDevicePresentCallback [0] ISceneViewDebugOverlaysListener [0] -ISocketCreatorListener [0] [0] +ISocketCreatorListener [0] [0] [0] IUGCAddonPathResolver [0] IVConCommDataReceived [0] LC_NUMERIC [0] diff --git a/dump/linux/vtables/server.json b/dump/linux/vtables/server.json index bafae33..2ef60ea 100644 --- a/dump/linux/vtables/server.json +++ b/dump/linux/vtables/server.json @@ -1,34 +1,34 @@ [ { "type_name": "0 180", - "vtable_address": 31695760, + "vtable_address": 31695696, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8779105 + "offset_to_top": 8779116 } } }, { "type_name": "AccountActivity", - "vtable_address": 30827544, + "vtable_address": 30827480, "methods": [ 14752352, 14799216, - 24747814, + 24747750, 14341280, 14886496, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040192, 14062432, 14447904, 9474464, 14201184, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051696, 14021808 @@ -64,7 +64,7 @@ }, { "type_name": "AmmoTypeInfo_t", - "vtable_address": 30549896, + "vtable_address": 30549832, "methods": [ 13383840, 13443520, @@ -80,7 +80,7 @@ }, { "type_name": "Amount of angular slack the animation has when aligning to the navlink. 0 indicates that it must be strictly aligned.", - "vtable_address": 30796688, + "vtable_address": 30796624, "methods": [], "bases": [], "model": { @@ -91,11 +91,11 @@ }, { "type_name": "AnimGraphUtils::CTraceFilterAnimGraphSlope", - "vtable_address": 30512624, + "vtable_address": 30512560, "methods": [ 12429584, 12437040, - 18832128 + 18832000 ], "bases": [ { @@ -172,18 +172,18 @@ }, { "type_name": "ApproachAreaCost", - "vtable_address": 30317848, + "vtable_address": 30317784, "methods": [ 11654672, 11655232, 9447840, 9447792, - 28788416, + 28788352, 11654656, - 28788944, - 28788240, + 28788880, + 28788176, 9447824, - 28788224, + 28788160, 11656448, 11654640 ], @@ -218,7 +218,7 @@ }, { "type_name": "AttackState", - "vtable_address": 30277360, + "vtable_address": 30277296, "methods": [ 11369104, 11372016, @@ -245,18 +245,18 @@ }, { "type_name": "Body group to set when this damage level is broken.", - "vtable_address": 30656464, + "vtable_address": 30656400, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8620810 + "offset_to_top": 8620821 } } }, { "type_name": "BotBombStatusMeme", - "vtable_address": 30257528, + "vtable_address": 30257464, "methods": [ 10632128, 10634048, @@ -282,7 +282,7 @@ }, { "type_name": "BotBombsiteStatusMeme", - "vtable_address": 30257488, + "vtable_address": 30257424, "methods": [ 10632144, 10634064, @@ -308,7 +308,7 @@ }, { "type_name": "BotChatterInterface", - "vtable_address": 30257848, + "vtable_address": 30257784, "methods": [ 10634096, 10648000, @@ -327,7 +327,7 @@ }, { "type_name": "BotDefendHereMeme", - "vtable_address": 30257608, + "vtable_address": 30257544, "methods": [ 10632096, 10634016, @@ -353,7 +353,7 @@ }, { "type_name": "BotFollowMeme", - "vtable_address": 30257568, + "vtable_address": 30257504, "methods": [ 10632112, 10634032, @@ -379,7 +379,7 @@ }, { "type_name": "BotHeardNoiseMeme", - "vtable_address": 30257768, + "vtable_address": 30257704, "methods": [ 10632032, 10633952, @@ -405,7 +405,7 @@ }, { "type_name": "BotHelpMeme", - "vtable_address": 30257448, + "vtable_address": 30257384, "methods": [ 10632160, 10634080, @@ -431,7 +431,7 @@ }, { "type_name": "BotHostageBeingTakenMeme", - "vtable_address": 30257728, + "vtable_address": 30257664, "methods": [ 10632048, 10633968, @@ -457,7 +457,7 @@ }, { "type_name": "BotRequestReportMeme", - "vtable_address": 30257688, + "vtable_address": 30257624, "methods": [ 10632064, 10633984, @@ -483,7 +483,7 @@ }, { "type_name": "BotWarnSniperMeme", - "vtable_address": 30257808, + "vtable_address": 30257744, "methods": [ 10632016, 10633936, @@ -509,7 +509,7 @@ }, { "type_name": "BotWhereBombMeme", - "vtable_address": 30257648, + "vtable_address": 30257584, "methods": [ 10632080, 10634000, @@ -535,7 +535,7 @@ }, { "type_name": "BuyState", - "vtable_address": 30277408, + "vtable_address": 30277344, "methods": [ 11330016, 11351904, @@ -562,33 +562,33 @@ }, { "type_name": "CAI_ChangeHintGroup", - "vtable_address": 31852432, + "vtable_address": 31852368, "methods": [ 13506768, - 22267824, - 22267840, + 22267696, + 22267712, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 22272640, + 19933296, + 19829024, + 22272512, 9635872, 9665808, 9641296, @@ -599,21 +599,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263504, - 22541408, - 22267040, + 26427360, + 22263376, + 22541280, + 22266912, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -637,83 +637,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -721,16 +721,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -751,7 +751,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -764,28 +764,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -796,7 +796,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -807,7 +807,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -840,16 +840,16 @@ }, { "type_name": "CAI_Expresser", - "vtable_address": 31429816, + "vtable_address": 31429752, "methods": [ - 19840000, - 20112800, - 19831744, - 20081728, - 20083120, - 20132832, - 19828144, - 19902624 + 19839872, + 20112672, + 19831616, + 20081600, + 20082992, + 20132704, + 19828016, + 19902496 ], "bases": [ { @@ -871,7 +871,7 @@ }, { "type_name": "CAI_Expresser", - "vtable_address": 32816480, + "vtable_address": 32816416, "methods": [], "bases": [], "model": { @@ -882,32 +882,32 @@ }, { "type_name": "CAI_ExpresserHost", - "vtable_address": 30195008, + "vtable_address": 30194944, "methods": [ 13530976, 10061456, 10061488, - 19956928, - 19956992, + 19956800, + 19956864, + 19957472, + 18010736, + 19956944, + 26419568, + 18009424, + 26419136, + 20087856, + 20102336, + 18010928, + 19835264, + 19835200, + 18003392, + 19954640, + 18291584, 19957600, - 18010864, - 19957072, - 26419632, - 18009552, - 26419200, - 20087984, - 20102464, - 18011056, - 19835392, - 19835328, - 18003520, - 19954768, - 18291712, - 19957728, - 19957744, + 19957616, 11747408, - 19958160, - 19829152, + 19958032, + 19829024, 10056720, 9635872, 9665808, @@ -919,21 +919,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19951344, + 26427360, + 19951216, 13382848, 10061424, 9635312, 13440304, - 18308160, + 18308032, 9635328, - 20115072, - 19871664, + 20114944, + 19871536, 9637008, 9637024, 9837040, @@ -945,95 +945,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9891392, 9891456, 9636864, 9636912, - 19911552, + 19911424, 9603680, - 19961344, + 19961216, 11742320, - 18042720, - 19833152, - 19961264, + 18042592, + 19833024, + 19961136, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 9897072, - 19953152, - 19953488, + 19953024, + 19953360, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19961024, - 19834800, + 19960896, + 19834672, 9635776, 9637088, 9897056, 9902592, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20008800, + 20008672, 11749776, - 18014848, - 18211472, - 20026816, - 19911296, - 19962592, + 18014720, + 18211344, + 20026688, + 19911168, + 19962464, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, - 18122512, - 18009856, + 18122384, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -1041,23 +1041,23 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 18122800, + 19828528, + 18122672, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, 9636224, 9637248, - 18004864, + 18004736, 9636256, 9642208, 9636272, @@ -1071,43 +1071,43 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 10423184, 11753024, 11757136, - 18125328, - 18124928, - 18004880, - 18004912, + 18125200, + 18124800, + 18004752, + 18004784, 9636448, 9891472, 9636464, - 18010528, + 18010400, 9636480, - 19959200, - 19828576, + 19959072, + 19828448, 9641744, 9637200, - 19956880, - 19833072, - 21106016, + 19956752, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, - 18126944, - 20104112, + 18126816, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, - 18004864, + 19828688, + 19835152, + 19914928, + 18004736, 9636656, 9636672, 9636688, @@ -1115,8 +1115,8 @@ 9636720, 9636736, 9636752, - 18126720, - 21066880, + 18126592, + 21066752, 11742352, 11742320, 11742400, @@ -1127,105 +1127,105 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 20052016, - 18004240, - 18004224, + 18004096, + 18010896, + 20051888, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18256224, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18256096, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, - 19956704, - 18010448, - 18003632, - 18046256, - 18150272, + 19956576, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18124768, - 18003968, + 18094704, + 18124640, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19956496, - 19828528, - 19917152, - 19917696, - 9901232, - 19918560, + 19956368, + 19828400, + 19917024, 19917568, + 9901232, + 19918432, + 19917440, 9897040, 9897024, 9901360, 9901312, - 18122784, + 18122656, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19829440, + 19829312, 9890928, - 19960592, + 19960464, 9890992, 9891008, 9891024, @@ -1233,18 +1233,18 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, - 18121552, - 18122208, + 18121424, + 18122080, 9891168, 9891184, 9891200, @@ -1254,58 +1254,58 @@ 9891232, 10056992, 10057008, - 19952224, - 19953984, - 20032576, + 19952096, + 19953856, + 20032448, 9891248, - 18012624, - 19956512, - 20049888, + 18012496, + 19956384, + 20049760, 9891264, - 19955600, - 19829408, - 20017872, + 19955472, + 19829280, + 20017744, 9891280, - 18126864, + 18126736, 10075664, 10057024, 9891296, 9891312, - 18125808, - 18126048, - 18126272, - 18124672, + 18125680, + 18125920, + 18126144, + 18124544, 9891328, - 19962768, + 19962640, 9891344, - 19959712, - 19843792, - 19828896, - 19954720, - 19958944, + 19959584, + 19843664, + 19828768, + 19954592, + 19958816, 9891360, - 19959152, - 19959184, - 18124704, - 19958896, - 19960896, + 19959024, + 19959056, + 18124576, + 19958768, + 19960768, 9891376, - 19961440, - 19957392, - 19958224, - 19958480, + 19961312, + 19957264, + 19958096, + 19958352, 9603696, 10057040, - 18122672, + 18122544, 9891408, 9891424, 9891440, - 19963440, - 19829488, - 19963712, - 19963856, - 19962352, - 19964752, + 19963312, + 19829360, + 19963584, + 19963728, + 19962224, + 19964624, 9901136, 9907376, 9901008, @@ -1408,7 +1408,7 @@ }, { "type_name": "CAI_ExpresserHost", - "vtable_address": 30198440, + "vtable_address": 30198376, "methods": [ 9891504, 9891520, @@ -1511,33 +1511,33 @@ }, { "type_name": "CAI_ExpresserHost", - "vtable_address": 30289368, + "vtable_address": 30289304, "methods": [ 13533536, 11520304, 11520336, - 18377552, - 18065872, - 19916192, - 18010864, - 19913728, - 26419632, - 18009552, - 26419200, - 20087728, - 20102320, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18377424, + 18065744, + 19916064, + 18010736, + 19913600, + 26419568, + 18009424, + 26419136, + 20087600, + 20102192, 18010928, - 19909584, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 19909456, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -1548,21 +1548,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11519168, 11569648, 11519888, 9635312, 13441008, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -1574,95 +1574,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19911552, + 19911424, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 20084576, + 20084448, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19914928, - 19834800, + 19914800, + 19834672, 9635776, 9637088, 11519872, 11521840, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19922272, - 19911296, + 18014720, + 18211344, + 19922144, + 19911168, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -1670,17 +1670,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -1700,7 +1700,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11519856, 11753024, 11757136, @@ -1709,33 +1709,33 @@ 9641200, 9637232, 9636448, - 19917232, + 19917104, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 20104112, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, + 19828688, + 19835152, + 19914928, 11750032, 9636656, 9636672, @@ -1745,7 +1745,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -1756,93 +1756,93 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19912528, - 19828528, - 19917152, - 19917696, - 11519792, - 19918560, + 19912400, + 19828400, + 19917024, 19917568, + 11519792, + 19918432, + 19917440, 9897040, 9897024, 9901360, @@ -1850,11 +1850,11 @@ 11518784, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19911280, + 19911152, 9890928, - 19911024, + 19910896, 9890992, 9891008, 9891024, @@ -1862,14 +1862,14 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, 11519760, @@ -1974,7 +1974,7 @@ }, { "type_name": "CAI_ExpresserHost", - "vtable_address": 30292296, + "vtable_address": 30292232, "methods": [ 9891504, 9891520, @@ -2077,16 +2077,16 @@ }, { "type_name": "CAI_ExpresserWithFollowup", - "vtable_address": 31429576, + "vtable_address": 31429512, "methods": [ - 19840000, - 20112800, - 19831728, - 20083168, - 20083184, - 20133232, - 19828896, - 19902624 + 19839872, + 20112672, + 19831600, + 20083040, + 20083056, + 20133104, + 19828768, + 19902496 ], "bases": [ { @@ -2119,33 +2119,33 @@ }, { "type_name": "CAK47", - "vtable_address": 31098752, + "vtable_address": 31098688, "methods": [ 13528544, - 16930096, - 16930144, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16929968, + 16930016, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -2156,21 +2156,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914624, - 17172400, - 16918080, + 26427360, + 16914496, + 17172272, + 16917952, 9635312, - 16937072, - 18308160, + 16936944, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -2181,114 +2181,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -2302,47 +2302,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -2350,11 +2350,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -2364,223 +2364,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -2710,14 +2710,14 @@ }, { "type_name": "CAK47", - "vtable_address": 31102448, + "vtable_address": 31102384, "methods": [ - 16918096, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917968, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -2847,10 +2847,10 @@ }, { "type_name": "CAK47", - "vtable_address": 31102512, + "vtable_address": 31102448, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -2980,7 +2980,7 @@ }, { "type_name": "CAimTargetManager", - "vtable_address": 30510680, + "vtable_address": 30510616, "methods": [ 9634368, 9634384, @@ -3076,32 +3076,32 @@ }, { "type_name": "CAmbientGeneric", - "vtable_address": 30547904, + "vtable_address": 30547840, "methods": [ 11766592, 13384528, 13384560, 12023536, - 26419168, - 19906304, - 20141632, - 20142288, - 26419632, - 26419200, - 26419200, - 20139664, + 26419104, + 19906176, + 20141504, + 20142160, + 26419568, + 26419136, + 26419136, + 20139536, + 20141072, 20141200, - 20141328, - 19835392, - 19835328, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -3113,21 +3113,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19906048, + 26427360, + 19905920, 13384720, 13383824, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -3151,83 +3151,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19906832, + 19906704, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -3235,16 +3235,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -3265,7 +3265,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -3278,28 +3278,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -3310,7 +3310,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -3321,10 +3321,10 @@ 11742448, 9636784, 9636800, - 19857680, - 20022768, - 19907888, - 19832816 + 19857552, + 20022640, + 19907760, + 19832688 ], "bases": [ { @@ -3368,10 +3368,10 @@ }, { "type_name": "CAmmoDef", - "vtable_address": 31308800, + "vtable_address": 31308736, "methods": [ 12202560, - 18003136, + 18003008, 12202576 ], "bases": [ @@ -3394,20 +3394,20 @@ }, { "type_name": "CAmmoDefTyped", - "vtable_address": 30969672, + "vtable_address": 30969608, "methods": [ 12202560, - 18003136, + 18003008, 12202576, 15996544, 15997040, - 18003184, - 18003184, + 18003056, + 18003056, 15994064, 15974576, 15974592, - 18003152, - 16351744, + 18003024, + 16351616, 15985968 ], "bases": [ @@ -3441,13 +3441,13 @@ }, { "type_name": "CAnchorList", - "vtable_address": 31659744, + "vtable_address": 31659680, "methods": [ 9634368, 9634384, 9634400, 9634416, - 21094544, + 21094416, 9634448, 9634464, 9634480, @@ -3499,12 +3499,12 @@ 9635216, 9635232, 9635248, - 21088224, + 21088096, 9635280, - 21087808, - 21095888, - 21094640, - 21066304 + 21087680, + 21095760, + 21094512, + 21066176 ], "bases": [ { @@ -3537,7 +3537,7 @@ }, { "type_name": "CAnimEventListenerBase", - "vtable_address": 32266432, + "vtable_address": 32266368, "methods": [], "bases": [], "model": { @@ -3548,7 +3548,7 @@ }, { "type_name": "CAnimEventListenerBase", - "vtable_address": 32266560, + "vtable_address": 32266496, "methods": [], "bases": [], "model": { @@ -3559,7 +3559,7 @@ }, { "type_name": "CAnimGraphControllerBase", - "vtable_address": 30606696, + "vtable_address": 30606632, "methods": [], "bases": [], "model": { @@ -3570,9 +3570,9 @@ }, { "type_name": "CAnimGraphControllerBase", - "vtable_address": 31308920, + "vtable_address": 31308856, "methods": [ - 18013136 + 18013008 ], "bases": [], "model": { @@ -3583,7 +3583,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 30512016, + "vtable_address": 30511952, "methods": [ 9634368, 9634384, @@ -3690,7 +3690,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 30512544, + "vtable_address": 30512480, "methods": [ 9698336, 12584832 @@ -3735,7 +3735,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 30512576, + "vtable_address": 30512512, "methods": [ 12453904 ], @@ -3779,7 +3779,7 @@ }, { "type_name": "CAnimGraphNetworkedVariables", - "vtable_address": 30512664, + "vtable_address": 30512600, "methods": [ 12712128, 12723040, @@ -3865,23 +3865,23 @@ }, { "type_name": "CAnimGraphNetworkedVariables", - "vtable_address": 30784552, + "vtable_address": 30784488, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32473032 + "offset_to_top": 32472968 } } }, { "type_name": "CAnimGraphSaveRestoreOps", - "vtable_address": 31309072, + "vtable_address": 31309008, "methods": [ - 18041024, - 18254976, - 18003200, - 18004208, + 18040896, + 18254848, + 18003072, + 18004080, 9634272, 9634288 ], @@ -3916,11 +3916,11 @@ }, { "type_name": "CAnimGraphTraceFilter", - "vtable_address": 30509000, + "vtable_address": 30508936, "methods": [ 12431088, 12437024, - 18832128 + 18832000 ], "bases": [ { @@ -3997,7 +3997,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 30513184, + "vtable_address": 30513120, "methods": [ 12481968, 12433280, @@ -4044,7 +4044,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 30513224, + "vtable_address": 30513160, "methods": [ 12433296, 12437008 @@ -4090,7 +4090,7 @@ }, { "type_name": "CAnimPose", - "vtable_address": 30507688, + "vtable_address": 30507624, "methods": [ 12578512, 12578976 @@ -4115,11 +4115,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 31306208, + "vtable_address": 31306144, "methods": [ - 18039376, - 18040160, - 18023344 + 18039248, + 18040032, + 18023216 ], "bases": [ { @@ -4141,11 +4141,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 31306088, + "vtable_address": 31306024, "methods": [ - 18039136, - 18039872, - 18024352 + 18039008, + 18039744, + 18024224 ], "bases": [ { @@ -4167,11 +4167,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 31306168, + "vtable_address": 31306104, "methods": [ - 18039296, - 18040064, - 18023680 + 18039168, + 18039936, + 18023552 ], "bases": [ { @@ -4193,11 +4193,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 31306128, + "vtable_address": 31306064, "methods": [ - 18039216, - 18039968, - 18024016 + 18039088, + 18039840, + 18023888 ], "bases": [ { @@ -4219,11 +4219,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 31306248, + "vtable_address": 31306184, "methods": [ - 18039456, - 18040256, - 18023008 + 18039328, + 18040128, + 18022880 ], "bases": [ { @@ -4245,11 +4245,11 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 31305680, + "vtable_address": 31305616, "methods": [ - 18039536, - 18040352, - 18026320 + 18039408, + 18040224, + 18026192 ], "bases": [ { @@ -4271,27 +4271,27 @@ }, { "type_name": "CAnimationBucket", - "vtable_address": 31986808, - "methods": [ - 25181328, - 25181456, - 25186720, - 25187440, - 25188160, - 25185392, - 25188880, - 25189552, - 25190272, - 25190992, - 25183056, - 25183808, - 25184560, - 25186080, - 25181600, - 25181024, - 25181120, - 25181248, - 25181072 + "vtable_address": 31986744, + "methods": [ + 25181264, + 25181392, + 25186656, + 25187376, + 25188096, + 25185328, + 25188816, + 25189488, + 25190208, + 25190928, + 25182992, + 25183744, + 25184496, + 25186016, + 25181536, + 25180960, + 25181056, + 25181184, + 25181008 ], "bases": [], "model": { @@ -4302,18 +4302,18 @@ }, { "type_name": "CAttributeContainer", - "vtable_address": 31877160, + "vtable_address": 31877096, "methods": [ 11404272, - 22544624, - 22544192, + 22544496, + 22544064, 11401904, - 22544208, - 22556752, - 22558560, - 22674144, - 22570496, - 22694560 + 22544080, + 22556624, + 22558432, + 22674080, + 22570368, + 22694496 ], "bases": [ { @@ -4335,7 +4335,7 @@ }, { "type_name": "CAttributeContainer", - "vtable_address": 31888104, + "vtable_address": 31888040, "methods": [], "bases": [], "model": { @@ -4346,39 +4346,39 @@ }, { "type_name": "CAttributeContainer::NetworkVar_m_Item", - "vtable_address": 31876704, + "vtable_address": 31876640, "methods": [ 10059520, - 22547232, - 22547248, - 22969488, - 22601456, - 22600304, - 22628512, - 22629456, - 22619728, - 22620624, - 22633424, - 22606240, - 22544832, - 22605456, + 22547104, + 22547120, + 22969424, + 22601328, + 22600176, + 22628384, + 22629328, + 22619600, + 22620496, + 22633296, + 22606112, + 22544704, + 22605328, 10059440, 10056928, 10056912, - 22962864, - 22972144, - 22963008, - 22962736, - 22964960, + 22962800, + 22972080, + 22962944, + 22962672, + 22964896, 10056896, 10059376, - 22962416, - 22962544, - 22962640, - 22971728, - 22544256, + 22962352, + 22962480, + 22962576, + 22971664, + 22544128, 10056880, - 22544224 + 22544096 ], "bases": [ { @@ -4411,12 +4411,12 @@ }, { "type_name": "CAttributeDictSaveDataOps", - "vtable_address": 32017352, + "vtable_address": 32017288, "methods": [ - 26410496, - 26411456, - 26409152, - 26417232, + 26410432, + 26411392, + 26409088, + 26417168, 9634272, 9634288 ], @@ -4451,14 +4451,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 31886536, + "vtable_address": 31886472, "methods": [ - 22546016, - 22546960, - 22546112, - 22546128, - 22548080, - 22546144 + 22545888, + 22546832, + 22545984, + 22546000, + 22547952, + 22546016 ], "bases": [ { @@ -4480,14 +4480,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 31058264, + "vtable_address": 31058200, "methods": [ - 16729360, - 16730656, - 16730544, - 16730560, - 16732256, - 16730576 + 16729232, + 16730528, + 16730416, + 16730432, + 16732128, + 16730448 ], "bases": [ { @@ -4509,14 +4509,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue, Vec3D >", - "vtable_address": 31874400, + "vtable_address": 31874336, "methods": [ - 22546592, - 22546944, - 22546608, - 22546624, - 22546640, - 22546656 + 22546464, + 22546816, + 22546480, + 22546496, + 22546512, + 22546528 ], "bases": [ { @@ -4538,14 +4538,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 31080688, + "vtable_address": 31080624, "methods": [ - 16730064, - 16730672, - 16730368, - 16730384, - 16730432, - 16730448 + 16729936, + 16730544, + 16730240, + 16730256, + 16730304, + 16730320 ], "bases": [ { @@ -4567,14 +4567,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 31001520, + "vtable_address": 31001456, "methods": [ - 16501568, - 16502224, - 16502112, - 16502160, - 16502176, - 16502192 + 16501440, + 16502096, + 16501984, + 16502032, + 16502048, + 16502064 ], "bases": [ { @@ -4596,14 +4596,14 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 31001584, + "vtable_address": 31001520, "methods": [ - 16501584, - 16502208, - 16502016, - 16502064, + 16501456, 16502080, - 16502096 + 16501888, + 16501936, + 16501952, + 16501968 ], "bases": [ { @@ -4625,7 +4625,7 @@ }, { "type_name": "CAttributeIterator_HasAttribute", - "vtable_address": 30967968, + "vtable_address": 30967904, "methods": [ 15972752, 15975264, @@ -4666,12 +4666,12 @@ }, { "type_name": "CAttributeList", - "vtable_address": 31889232, + "vtable_address": 31889168, "methods": [ - 22959520, - 22957920, - 22957936, - 22957952 + 22959456, + 22957856, + 22957872, + 22957888 ], "bases": [], "model": { @@ -4682,18 +4682,18 @@ }, { "type_name": "CAttributeManager", - "vtable_address": 31877064, + "vtable_address": 31877000, "methods": [ - 22547296, - 22544608, - 22544144, - 22544160, - 22544176, + 22547168, + 22544480, + 22544016, + 22544032, + 22544048, + 22556896, 22557024, - 22557152, - 22664144, - 22569504, - 22694560 + 22664016, + 22569376, + 22694496 ], "bases": [], "model": { @@ -4704,23 +4704,23 @@ }, { "type_name": "CAttribute_String", - "vtable_address": 30842104, + "vtable_address": 30842040, "methods": [ 14763328, 14819056, - 24747814, + 24747750, 14356240, 14903552, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14065440, 14492944, 9474464, 14115264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054608, 14023264 @@ -4756,11 +4756,11 @@ }, { "type_name": "CAudioEventTagListener", - "vtable_address": 31309200, + "vtable_address": 31309136, "methods": [ - 18039616, - 18040448, - 18274736 + 18039488, + 18040320, + 18274608 ], "bases": [ { @@ -4782,7 +4782,7 @@ }, { "type_name": "CAutoGameSystem", - "vtable_address": 30137360, + "vtable_address": 30137296, "methods": [ 9634368, 9634384, @@ -4864,7 +4864,7 @@ }, { "type_name": "CAvatarOverrideMgr", - "vtable_address": 30180704, + "vtable_address": 30180640, "methods": [ 9634368, 9634384, @@ -4982,7 +4982,7 @@ }, { "type_name": "CAvatarOverrideMgr", - "vtable_address": 30181224, + "vtable_address": 30181160, "methods": [ 9904000, 9904272, @@ -5040,33 +5040,33 @@ }, { "type_name": "CBarnLight", - "vtable_address": 30305456, + "vtable_address": 30305392, "methods": [ 13522144, 11573952, 11574640, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 11649632, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11653424, 11654160, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -5077,21 +5077,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11570912, 11654288, 11571584, 9635312, 11582240, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -5115,25 +5115,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 11573200, @@ -5141,57 +5141,57 @@ 9654336, 11742336, 11572784, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 11570896, 11570928, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11570944, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -5199,16 +5199,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -5229,7 +5229,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -5242,28 +5242,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -5274,7 +5274,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -5285,35 +5285,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11572112, 11596992, 11612112 @@ -5360,33 +5360,33 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 30550096, + "vtable_address": 30550032, "methods": [ 13526704, - 18376064, - 18377456, - 18377552, - 18065872, - 18010880, - 18010864, - 18180144, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18375936, + 18377328, + 18377424, + 18065744, + 18010752, + 18010736, + 18180016, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -5397,21 +5397,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18069424, + 26427360, + 18069296, 13382848, 13383952, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -5423,95 +5423,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -5519,17 +5519,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -5549,7 +5549,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -5560,30 +5560,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -5594,7 +5594,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -5605,72 +5605,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -5714,7 +5714,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 30606168, + "vtable_address": 30606104, "methods": [], "bases": [], "model": { @@ -5725,7 +5725,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 32230784, + "vtable_address": 32230720, "methods": [], "bases": [], "model": { @@ -5736,7 +5736,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 32828704, + "vtable_address": 32828640, "methods": [], "bases": [], "model": { @@ -5747,12 +5747,12 @@ }, { "type_name": "CBaseAnimGraph::CRagdollAsyncConflictFixup", - "vtable_address": 31309848, + "vtable_address": 31309784, "methods": [ - 18327120, - 18002416, - 18001920, - 18002432 + 18326992, + 18002288, + 18001792, + 18002304 ], "bases": [ { @@ -5774,12 +5774,12 @@ }, { "type_name": "CBaseAnimGraph::NetworkVar_m_RagdollPose", - "vtable_address": 31306040, + "vtable_address": 31305976, "methods": [ 12371712, - 18146912, + 18146784, 12370784, - 18002384 + 18002256 ], "bases": [ { @@ -5801,7 +5801,7 @@ }, { "type_name": "CBaseAnimGraphAnimGraphController", - "vtable_address": 30549944, + "vtable_address": 30549880, "methods": [ 13383856, 13419552, @@ -5818,8 +5818,8 @@ 13382288, 13382304, 13382720, - 18003184, - 18083520 + 18003056, + 18083392 ], "bases": [ { @@ -5841,43 +5841,43 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 31310008, + "vtable_address": 31309944, "methods": [ 13383968, - 18010816, - 18004208, - 18190736, - 18295856, - 18089104, - 18004064, - 18002160, - 18091280, + 18010688, + 18004080, + 18190608, + 18295728, + 18088976, + 18003936, + 18002032, + 18091152, 12429360, - 18004128, - 18255296, - 18044656, + 18004000, + 18255168, + 18044528, 12429424, - 18220032, - 18085648, + 18219904, + 18085520, 12429440, + 18003952, + 18044608, + 18092064, + 18090288, 18004080, - 18044736, - 18092192, - 18090416, - 18004208, - 18004032, - 19565360, - 18298752, - 18002352, - 18085424, - 18218512, - 18002176, + 18003904, + 19565232, + 18298624, + 18002224, + 18085296, + 18218384, + 18002048, 13382704, - 18002192, - 18004112, - 18297488, + 18002064, + 18003984, + 18297360, 15970720, - 18276448 + 18276320 ], "bases": [ { @@ -5920,9 +5920,9 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 31310304, + "vtable_address": 31310240, "methods": [ - 18021632 + 18021504 ], "bases": [ { @@ -5965,7 +5965,7 @@ }, { "type_name": "CBaseAnimGraphController::NetworkVar_m_animGraphNetworkedVars", - "vtable_address": 31305160, + "vtable_address": 31305096, "methods": [ 12712128, 12723040, @@ -6027,9 +6027,9 @@ 12430960, 12431008, 12440064, - 18002240, + 18002112, 12429392, - 18002208 + 18002080 ], "bases": [ { @@ -6062,33 +6062,33 @@ }, { "type_name": "CBaseButton", - "vtable_address": 30586112, + "vtable_address": 30586048, "methods": [ 13522144, 13404128, 13413728, - 18377504, - 26419168, - 20153792, - 18010864, - 20145312, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 19993008, + 18377376, + 26419104, + 20153664, + 18010736, + 20145184, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 19992880, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19990608, + 18378400, + 19829024, + 19990480, 9635872, 9665808, 9641296, @@ -6099,21 +6099,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19987184, + 26427360, + 19987056, 13382848, 13384128, 9635312, 13440688, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -6137,83 +6137,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19843520, - 18042720, + 19843392, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -6221,16 +6221,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, - 19991568, - 19991632, - 19979760, - 19828656, - 21311696, + 19991440, + 19991504, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -6251,7 +6251,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -6264,28 +6264,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -6296,7 +6296,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -6307,45 +6307,45 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 19988000, - 18011024, - 18004224, - 19988368, - 18004224, + 19987872, + 18010896, + 18004096, + 19988240, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 19988944, - 19990176, - 19989968, - 19991408, - 19991760, - 19992400, - 19987872, - 19987888, - 19829840, - 19829856 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 19988816, + 19990048, + 19989840, + 19991280, + 19991632, + 19992272, + 19987744, + 19987760, + 19829712, + 19829728 ], "bases": [ { @@ -6400,7 +6400,7 @@ }, { "type_name": "CBaseButton", - "vtable_address": 32393504, + "vtable_address": 32393440, "methods": [], "bases": [], "model": { @@ -6411,7 +6411,7 @@ }, { "type_name": "CBaseButton", - "vtable_address": 32393632, + "vtable_address": 32393568, "methods": [], "bases": [], "model": { @@ -6422,33 +6422,33 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 31076752, + "vtable_address": 31076688, "methods": [ 13528544, - 16732416, - 16732464, - 18377552, - 18065872, - 16732784, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16732288, + 16732336, + 18377424, + 18065744, + 16732656, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -6459,21 +6459,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16729184, - 16913504, - 16731200, + 26427360, + 16729056, + 16913376, + 16731072, 9635312, - 16745984, - 18308160, + 16745856, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -6484,114 +6484,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -6605,47 +6605,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -6653,11 +6653,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -6667,227 +6667,227 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 16732672, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, - 16727344, + 16924176, + 16909216, + 16914016, + 16728448, + 16728464, + 18061024, + 16729216, + 16729120, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16728768, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 16732800, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 16909344, - 16914144, - 16728576, - 16728592, - 18061152, - 16729344, - 16729248, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16728896, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, - 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, 16924400, - 16942560, - 16727600, - 16727616, + 16914384, + 16924272, + 16942432, + 16727472, + 16727488, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 16741824, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, - 16728336, - 16914336, - 16914384, - 16732848, - 16728352, - 15970784, - 16914464, + 16797856, + 16740096, + 16810240, + 16810336, + 16912080, + 17035856, + 16797072, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 16741952, - 17042912, - 10057136, 16728432, - 16728448, - 16797984, - 16740224, - 16810368, - 16810464, - 16912208, - 17035984, - 16797200, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 16910976, - 16733696, - 17091632, - 16732880, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 16911872, + 16910848, + 16733568, + 17091504, + 16732752, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 16911744, 10057152, - 16728960, - 16728624, - 16810304, - 16728912, - 16793088, - 16728928, - 16728944, - 16729328 + 16728832, + 16728496, + 16810176, + 16728784, + 16792960, + 16728800, + 16728816, + 16729200 ], "bases": [ { @@ -7006,14 +7006,14 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 31080480, + "vtable_address": 31080416, "methods": [ - 16731216, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16731088, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -7132,10 +7132,10 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 31080544, + "vtable_address": 31080480, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -7254,7 +7254,7 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 32585088, + "vtable_address": 32585024, "methods": [], "bases": [], "model": { @@ -7265,7 +7265,7 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 32607424, + "vtable_address": 32607360, "methods": [], "bases": [], "model": { @@ -7276,7 +7276,7 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 32607808, + "vtable_address": 32607744, "methods": [], "bases": [], "model": { @@ -7287,7 +7287,7 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 32608992, + "vtable_address": 32608928, "methods": [], "bases": [], "model": { @@ -7298,7 +7298,7 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 32609344, + "vtable_address": 32609280, "methods": [], "bases": [], "model": { @@ -7309,33 +7309,33 @@ }, { "type_name": "CBaseCSGrenadeProjectile", - "vtable_address": 31058392, + "vtable_address": 31058328, "methods": [ 13528544, - 16739056, - 16739744, - 16730592, - 18065872, - 16452512, - 18010864, - 16903952, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16738928, + 16739616, + 16730464, + 18065744, + 16452384, + 18010736, + 16903824, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -7346,21 +7346,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16728704, - 16908544, - 16731120, + 26427360, + 16728576, + 16908416, + 16730992, 9635312, - 16746080, - 18308160, + 16745952, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -7372,95 +7372,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16730736, - 16730768, - 19834496, + 16730608, + 16730640, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 15971776, - 19833184, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -7468,17 +7468,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 16816528, - 19828912, - 18013520, + 16816400, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -7498,7 +7498,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -7509,30 +7509,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, - 16798448, - 19828816, - 19835280, + 16798320, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -7543,7 +7543,7 @@ 9636736, 9636752, 9636768, - 16820608, + 16820480, 11742352, 11742320, 11742400, @@ -7554,102 +7554,102 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, 11712016, - 16907168, + 16907040, 16039408, 16027440, 11712032, 15972736, 11712080, 15971760, - 16728640, + 16728512, 11712048, 11723632, 16012384, - 16733456, + 16733328, 11712064, - 16823008, - 16742256 + 16822880, + 16742128 ], "bases": [ { @@ -7747,7 +7747,7 @@ }, { "type_name": "CBaseCSGrenadeProjectile", - "vtable_address": 31061120, + "vtable_address": 31061056, "methods": [ 9837440, 9837456 @@ -7848,7 +7848,7 @@ }, { "type_name": "CBaseCSGrenadeProjectile", - "vtable_address": 32246624, + "vtable_address": 32246560, "methods": [], "bases": [], "model": { @@ -7859,7 +7859,7 @@ }, { "type_name": "CBaseCSIssue", - "vtable_address": 30229568, + "vtable_address": 30229504, "methods": [ 10429120 ], @@ -7883,33 +7883,33 @@ }, { "type_name": "CBaseClientUIEntity", - "vtable_address": 30139328, + "vtable_address": 30139264, "methods": [ 13522144, 9646272, 9646832, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -7920,21 +7920,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9637360, 9697008, 9639168, 9635312, 9657904, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -7958,83 +7958,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -8042,16 +8042,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -8072,7 +8072,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -8085,28 +8085,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -8117,7 +8117,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -8128,35 +8128,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 9637312, 9637328, 9637344 @@ -8203,23 +8203,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 30509040, + "vtable_address": 30508976, "methods": [ 12437536, 12458608, - 24747814, + 24747750, 12437520, 14900448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070256, 12437104, 14432416, 9474464, 14179360, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050768, 14018304 @@ -8266,23 +8266,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 30509512, + "vtable_address": 30509448, "methods": [ 12437632, 12458688, - 24747814, + 24747750, 12437616, 14900576, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080992, 12437120, 14432880, 9474464, 14217792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050800, 14018320 @@ -8329,23 +8329,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 31367432, + "vtable_address": 31367368, "methods": [ - 18825952, - 18846944, - 24747814, + 18825824, + 18846816, + 24747750, 15289344, 15741200, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15091264, 15076288, 15398400, 9474464, 15235920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071360, 15043808 @@ -8392,23 +8392,23 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 30509984, + "vtable_address": 30509920, "methods": [ 12437728, 12463168, - 24747814, + 24747750, 12437712, 15748720, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 12437136, 15470288, 9474464, 15176192, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075040, 15047920 @@ -8455,33 +8455,33 @@ }, { "type_name": "CBaseCombatCharacter", - "vtable_address": 30552584, + "vtable_address": 30552520, "methods": [ 13533536, - 19944992, - 19945232, - 18377552, - 18065872, - 19916192, - 18010864, - 19913728, - 26419632, - 18009552, - 26419200, - 20087728, - 20102320, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 19944864, + 19945104, + 18377424, + 18065744, + 19916064, + 18010736, + 19913600, + 26419568, + 18009424, + 26419136, + 20087600, + 20102192, 18010928, - 19909584, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 19909456, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -8492,21 +8492,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19908800, + 26427360, + 19908672, 13382848, 13383920, 9635312, 13441008, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -8518,95 +8518,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19911552, + 19911424, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 20084576, + 20084448, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19914928, - 19834800, + 19914800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19922272, - 19911296, + 18014720, + 18211344, + 19922144, + 19911168, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -8614,17 +8614,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -8644,7 +8644,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -8653,33 +8653,33 @@ 9641200, 9637232, 9636448, - 19917232, + 19917104, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 20104112, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, + 19828688, + 19835152, + 19914928, 11750032, 9636656, 9636672, @@ -8689,7 +8689,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -8700,93 +8700,93 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19912528, - 19828528, - 19917152, - 19917696, - 11518768, - 19918560, + 19912400, + 19828400, + 19917024, 19917568, + 11518768, + 19918432, + 19917440, 9897040, 9897024, 9901360, @@ -8794,11 +8794,11 @@ 11518784, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19911280, + 19911152, 9890928, - 19911024, + 19910896, 9890992, 9891008, 9891024, @@ -8806,14 +8806,14 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152 ], @@ -8881,7 +8881,7 @@ }, { "type_name": "CBaseCubemap", - "vtable_address": 30334376, + "vtable_address": 30334312, "methods": [ 11771344, 11771504, @@ -8913,32 +8913,32 @@ }, { "type_name": "CBaseDMStart", - "vtable_address": 31787792, + "vtable_address": 31787728, "methods": [ 11766592, - 22267888, - 22267920, + 22267760, + 22267792, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -8950,21 +8950,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262176, - 22268272, - 22266592, + 26427360, + 22262048, + 22268144, + 22266464, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -8988,83 +8988,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, - 22305392, + 22305264, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -9072,16 +9072,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -9102,7 +9102,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -9115,28 +9115,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -9147,7 +9147,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -9158,7 +9158,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -9202,32 +9202,32 @@ }, { "type_name": "CBaseDoor", - "vtable_address": 30610000, + "vtable_address": 30609936, "methods": [ 13522144, - 20278448, - 20279296, - 18377504, - 26419168, - 20159392, - 18010864, - 20324688, - 26419632, - 26419200, - 26419200, - 20281488, - 20159328, - 18011056, - 19835392, - 19835328, + 20278320, + 20279168, + 18377376, + 26419104, + 20159264, + 18010736, + 20324560, + 26419568, + 26419136, + 26419136, + 20281360, + 20159200, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 20181024, - 19829152, + 20180896, + 19829024, 13626864, 9635872, 9665808, @@ -9239,21 +9239,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20277056, + 26427360, + 20276928, 13625392, 13623200, 9635312, 13649840, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -9277,100 +9277,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20359504, - 18042720, + 20359376, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20284912, + 20284784, 9637216, 9636096, 11746864, 11746960, 11747104, 9636112, - 20184768, - 20283280, - 20184864, + 20184640, + 20283152, + 20184736, 9636160, 9636176, - 19979760, - 19828656, - 20161536, + 19979632, + 19828528, + 20161408, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -9391,7 +9391,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -9404,28 +9404,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -9436,7 +9436,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -9447,39 +9447,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13621680, - 20281184, + 20281056, 13621712, - 20188928 + 20188800 ], "bases": [ { @@ -9555,10 +9555,10 @@ }, { "type_name": "CBaseDoor", - "vtable_address": 30612224, + "vtable_address": 30612160, "methods": [ - 20279056, - 20279344, + 20278928, + 20279216, 13621696 ], "bases": [ @@ -9635,10 +9635,10 @@ }, { "type_name": "CBaseDynamicIOSignature", - "vtable_address": 32017136, + "vtable_address": 32017072, "methods": [ - 26341840, - 26342752 + 26341776, + 26342688 ], "bases": [], "model": { @@ -9649,33 +9649,33 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 30555472, + "vtable_address": 30555408, "methods": [ 13506768, - 19919280, - 19919840, + 19919152, + 19919712, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -9686,21 +9686,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19923248, + 26427360, + 19923120, 13382848, 13384208, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -9724,83 +9724,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -9808,16 +9808,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -9838,7 +9838,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -9851,28 +9851,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -9883,7 +9883,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -9894,7 +9894,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -9916,18 +9916,18 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 30602936, + "vtable_address": 30602872, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32404456 + "offset_to_top": 32404392 } } }, { "type_name": "CBaseEntity", - "vtable_address": 32190208, + "vtable_address": 32190144, "methods": [], "bases": [], "model": { @@ -9938,7 +9938,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 32264320, + "vtable_address": 32264256, "methods": [], "bases": [], "model": { @@ -9949,7 +9949,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 32350688, + "vtable_address": 32350624, "methods": [], "bases": [], "model": { @@ -9960,7 +9960,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 32404864, + "vtable_address": 32404800, "methods": [], "bases": [], "model": { @@ -9971,7 +9971,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 32556320, + "vtable_address": 32556256, "methods": [], "bases": [], "model": { @@ -9982,7 +9982,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 32556576, + "vtable_address": 32556512, "methods": [], "bases": [], "model": { @@ -9993,7 +9993,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 33111264, + "vtable_address": 33111200, "methods": [], "bases": [], "model": { @@ -10004,7 +10004,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 33145984, + "vtable_address": 33145920, "methods": [], "bases": [], "model": { @@ -10015,7 +10015,7 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 33256224, + "vtable_address": 33256160, "methods": [], "bases": [], "model": { @@ -10026,10 +10026,10 @@ }, { "type_name": "CBaseEntity::Cm_vecVelocityInitializer", - "vtable_address": 31428704, + "vtable_address": 31428640, "methods": [ - 20009072, - 19827840 + 20008944, + 19827712 ], "bases": [ { @@ -10051,32 +10051,32 @@ }, { "type_name": "CBaseFilter", - "vtable_address": 31345376, + "vtable_address": 31345312, "methods": [ 13506768, - 18417392, - 18431616, + 18417264, + 18431488, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -10088,21 +10088,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18386976, - 18400000, - 18396672, + 26427360, + 18386848, + 18399872, + 18396544, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -10126,83 +10126,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -10210,16 +10210,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -10240,7 +10240,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -10253,28 +10253,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -10285,7 +10285,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -10296,9 +10296,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18386992, - 18422960 + 19857552, + 18386864, + 18422832 ], "bases": [ { @@ -10353,7 +10353,7 @@ }, { "type_name": "CBaseFilter", - "vtable_address": 32692096, + "vtable_address": 32692032, "methods": [], "bases": [], "model": { @@ -10364,33 +10364,33 @@ }, { "type_name": "CBaseFlex", - "vtable_address": 30563344, + "vtable_address": 30563280, "methods": [ 13528544, - 19944496, - 19945424, - 18377552, - 18065872, - 18010880, - 18010864, - 18180144, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 19944368, + 19945296, + 18377424, + 18065744, + 18010752, + 18010736, + 18180016, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -10401,21 +10401,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19942944, + 26427360, + 19942816, 13382848, 13383936, 9635312, 13440016, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -10427,95 +10427,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -10523,17 +10523,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -10553,7 +10553,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -10564,30 +10564,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -10598,7 +10598,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -10609,84 +10609,84 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864 ], @@ -10743,33 +10743,33 @@ }, { "type_name": "CBaseFlexAlias_funCBaseFlex", - "vtable_address": 31432088, + "vtable_address": 31432024, "methods": [ 13528544, - 19945168, - 19945184, - 18377552, - 18065872, - 18010880, - 18010864, - 18180144, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 19945040, + 19945056, + 18377424, + 18065744, + 18010752, + 18010736, + 18180016, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -10780,21 +10780,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19829296, - 19837888, - 19831856, + 26427360, + 19829168, + 19837760, + 19831728, 9635312, 13440016, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -10806,95 +10806,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -10902,17 +10902,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -10932,7 +10932,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -10943,30 +10943,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -10977,7 +10977,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -10988,84 +10988,84 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864 ], @@ -11133,52 +11133,52 @@ }, { "type_name": "CBaseGameStats", - "vtable_address": 31376392, + "vtable_address": 31376328, "methods": [ 9893072, 9893088, 9893104, 9893120, 9893136, - 19275968, + 19275840, + 19014608, + 19014672, + 19276704, + 19275440, + 19014688, 19014736, - 19014800, - 19276832, - 19275568, - 19014816, - 19014864, 9893152, - 19130736, + 19130608, 9893168, 9893184, 9893200, - 18814896, - 18814912, + 18814768, + 18814784, 9893216, - 19275696, + 19275568, + 19015136, + 19015200, + 18812384, 19015264, - 19015328, - 18812512, - 19015392, - 19014912, - 19275872, - 19015152, - 19015168, - 18814928, - 19015472, - 19015568, - 18812512, - 19015216, + 19014784, + 19275744, + 19015024, + 19015040, + 18814800, + 19015344, + 19015440, + 18812384, + 19015088, + 19015552, + 19015616, 19015680, 19015744, - 19015808, - 19015872, 9893232, 9893248, - 19015920, - 19015936, - 18814944, - 18811952, + 19015792, + 19015808, + 18814816, + 18811824, 9893264, 9893280, 9893296, @@ -11199,12 +11199,12 @@ }, { "type_name": "CBaseGameStats_Driver", - "vtable_address": 31376840, + "vtable_address": 31376776, "methods": [ - 18863712, + 18863584, 9634384, - 19018592, - 19017312, + 19018464, + 19017184, 9634432, 9634448, 9634464, @@ -11213,7 +11213,7 @@ 9634512, 9634528, 9634544, - 19276160, + 19276032, 9634576, 9634592, 9634608, @@ -11232,7 +11232,7 @@ 9634816, 9634832, 9634848, - 18818768, + 18818640, 9634880, 9634896, 9634912, @@ -11248,8 +11248,8 @@ 9635072, 9635088, 9635104, - 19017648, - 19017728, + 19017520, + 19017600, 9635152, 9635168, 9635184, @@ -11257,12 +11257,12 @@ 9635216, 9635232, 9635248, - 18814864, + 18814736, 9635280, - 18814848, - 18825728, - 18842208, - 18814832 + 18814720, + 18825600, + 18842080, + 18814704 ], "bases": [ { @@ -11295,7 +11295,7 @@ }, { "type_name": "CBaseGameSystemFactory", - "vtable_address": 30508816, + "vtable_address": 30508752, "methods": [], "bases": [ { @@ -11317,33 +11317,33 @@ }, { "type_name": "CBaseGrenade", - "vtable_address": 30970496, + "vtable_address": 30970432, "methods": [ 13528544, 15995520, 15999936, - 18377552, - 18065872, - 16452512, - 18010864, - 16452864, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18377424, + 18065744, + 16452384, + 18010736, + 16452736, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -11354,21 +11354,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15971744, - 16456256, + 16456128, 15975344, 9635312, 16027184, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -11380,95 +11380,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 15971776, - 19833184, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -11476,17 +11476,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -11506,7 +11506,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -11517,30 +11517,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -11551,7 +11551,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -11562,84 +11562,84 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, 11712016, @@ -11740,7 +11740,7 @@ }, { "type_name": "CBaseGrenade", - "vtable_address": 30973192, + "vtable_address": 30973128, "methods": [ 9837440, 9837456 @@ -11830,7 +11830,7 @@ }, { "type_name": "CBaseIssue", - "vtable_address": 30225344, + "vtable_address": 30225280, "methods": [ 10429120 ], @@ -11843,7 +11843,7 @@ }, { "type_name": "CBaseLightProbeVolume", - "vtable_address": 30345920, + "vtable_address": 30345856, "methods": [ 12067824, 12068160, @@ -11875,33 +11875,33 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 30565944, + "vtable_address": 30565880, "methods": [ 13522144, - 18375264, - 18376016, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18375136, + 18375888, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -11912,21 +11912,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18103712, + 26427360, + 18103584, 13382848, 13384192, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -11950,83 +11950,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -12034,16 +12034,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -12064,7 +12064,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -12077,28 +12077,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -12109,7 +12109,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -12120,35 +12120,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -12181,18 +12181,18 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 30601320, + "vtable_address": 30601256, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32400928 + "offset_to_top": 32400864 } } }, { "type_name": "CBaseModelEntity", - "vtable_address": 32401248, + "vtable_address": 32401184, "methods": [], "bases": [], "model": { @@ -12203,7 +12203,7 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 32401376, + "vtable_address": 32401312, "methods": [], "bases": [], "model": { @@ -12214,7 +12214,7 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 32742336, + "vtable_address": 32742272, "methods": [], "bases": [], "model": { @@ -12225,7 +12225,7 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 32765984, + "vtable_address": 32765920, "methods": [], "bases": [], "model": { @@ -12236,7 +12236,7 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 32766112, + "vtable_address": 32766048, "methods": [], "bases": [], "model": { @@ -12247,7 +12247,7 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 32828448, + "vtable_address": 32828384, "methods": [], "bases": [], "model": { @@ -12258,7 +12258,7 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 33241664, + "vtable_address": 33241600, "methods": [], "bases": [], "model": { @@ -12269,10 +12269,10 @@ }, { "type_name": "CBaseModelEntity::Cm_vecViewOffsetInitializer", - "vtable_address": 31305128, + "vtable_address": 31305064, "methods": [ - 18178816, - 18002112 + 18178688, + 18001984 ], "bases": [ { @@ -12294,12 +12294,12 @@ }, { "type_name": "CBaseModelEntity::NetworkVar_m_Collision", - "vtable_address": 31305032, + "vtable_address": 31304968, "methods": [ 12334976, - 18147552, - 18002000, - 18002048 + 18147424, + 18001872, + 18001920 ], "bases": [ { @@ -12321,12 +12321,12 @@ }, { "type_name": "CBaseModelEntity::NetworkVar_m_Glow", - "vtable_address": 31305080, + "vtable_address": 31305016, "methods": [ 12335120, - 18147232, - 18002016, - 18002080 + 18147104, + 18001888, + 18001952 ], "bases": [ { @@ -12348,32 +12348,32 @@ }, { "type_name": "CBaseMoveBehavior", - "vtable_address": 31646768, + "vtable_address": 31646704, "methods": [ 13506768, - 21071568, - 21071600, + 21071440, + 21071472, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21094752, - 26419632, - 26419200, - 26419200, - 21160704, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21094624, + 26419568, + 26419136, + 26419136, + 21160576, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -12385,21 +12385,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21065696, - 21072672, - 21069616, + 26427360, + 21065568, + 21072544, + 21069488, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -12423,83 +12423,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -12507,16 +12507,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 21069360, - 19828656, - 21311696, + 21069232, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -12537,7 +12537,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -12550,28 +12550,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 21065712, - 21106016, + 21065584, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -12582,7 +12582,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -12593,9 +12593,9 @@ 11742448, 9636784, 9636800, - 19857680, - 21070400, - 21071200 + 19857552, + 21070272, + 21071072 ], "bases": [ { @@ -12661,33 +12661,33 @@ }, { "type_name": "CBasePlatTrain", - "vtable_address": 31804416, + "vtable_address": 31804352, "methods": [ 13522144, - 22303584, - 22304368, - 18377504, - 26419168, - 22305824, - 18010864, - 22331456, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 22303456, + 22304240, + 18377376, + 26419104, + 22305696, + 18010736, + 22331328, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -12698,21 +12698,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262752, - 22271952, - 22266784, + 26427360, + 22262624, + 22271824, + 22266656, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -12736,83 +12736,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -12820,16 +12820,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -12850,7 +12850,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -12863,28 +12863,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -12895,7 +12895,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -12906,36 +12906,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22262736 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22262608 ], "bases": [ { @@ -12990,34 +12990,34 @@ }, { "type_name": "CBasePlayerController", - "vtable_address": 31311520, + "vtable_address": 31311456, "methods": [ - 18268672, - 18038128, - 18038976, - 18377712, - 18011232, + 18268544, + 18038000, + 18038848, + 18377584, + 18011104, 12023584, - 20141632, - 18221648, - 26419632, - 26419200, - 26419200, - 18378400, - 18379264, - 20141328, - 19835392, - 19835328, + 20141504, + 18221520, + 26419568, + 26419136, + 26419136, + 18378272, + 18379136, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 18378784, - 19829152, - 17550512, - 17342896, + 18378656, + 19829024, + 17550384, + 17342768, 9665808, 9641296, 9639920, @@ -13027,21 +13027,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18004352, - 18383952, - 18009168, + 26427360, + 18004224, + 18383824, + 18009040, 9635312, - 18056560, + 18056432, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -13065,83 +13065,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 18011216, - 18004384, - 19834496, + 18011088, + 18004256, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 18057712, - 19834800, + 18057584, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, - 18004400, + 18004272, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -13149,16 +13149,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 18116640, + 19828528, + 18116512, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -13166,7 +13166,7 @@ 9636224, 9637248, 9636240, - 17342976, + 17342848, 9642208, 9636272, 9636288, @@ -13179,7 +13179,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -13192,30 +13192,30 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, - 18004256, + 18004128, 9636656, 9636672, 9636688, @@ -13224,7 +13224,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -13235,41 +13235,41 @@ 11742448, 9636784, 9636800, - 19857680, - 18004864, - 18003184, - 18112032, - 18014752, - 17342832, - 17342848, + 19857552, + 18004736, + 18003056, + 18111904, + 18014624, + 17342704, + 17342720, + 17342736, + 17342752, + 18213936, + 18032016, + 18213872, + 18380032, + 18056704, + 18037392, + 18002496, + 18002512, + 18058720, + 18002528, + 18004288, + 18038896, + 18004240, 17342864, + 18017664, + 18004320, 17342880, - 18214064, - 18032144, - 18214000, - 18380160, - 18056832, - 18037520, - 18002624, - 18002640, - 18058848, - 18002656, - 18004416, - 18039024, - 18004368, - 17342992, - 18017792, - 18004448, - 17343008, - 18015600, - 17343024, - 18002672, - 18003184, - 18003184, - 18002688, - 18302864, - 17343040, - 17343056 + 18015472, + 17342896, + 18002544, + 18003056, + 18003056, + 18002560, + 18302736, + 17342912, + 17342928 ], "bases": [ { @@ -13302,32 +13302,32 @@ }, { "type_name": "CBasePlayerPawn", - "vtable_address": 30572520, + "vtable_address": 30572456, "methods": [ 13530976, - 19951632, - 19951984, - 19956928, - 19956992, + 19951504, + 19951856, + 19956800, + 19956864, + 19957472, + 18010736, + 19956944, + 26419568, + 18009424, + 26419136, + 20087856, + 20102336, + 18010928, + 19835264, + 19835200, + 18003392, + 19954640, + 18291584, 19957600, - 18010864, - 19957072, - 26419632, - 18009552, - 26419200, - 20087984, - 20102464, - 18011056, - 19835392, - 19835328, - 18003520, - 19954768, - 18291712, - 19957728, - 19957744, + 19957616, 11747408, - 19958160, - 19829152, + 19958032, + 19829024, 10056720, 9635872, 9665808, @@ -13339,21 +13339,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19951344, + 26427360, + 19951216, 13382848, 10061424, 9635312, 13440304, - 18308160, + 18308032, 9635328, - 20115072, - 19871664, + 20114944, + 19871536, 9637008, 9637024, 9837040, @@ -13365,95 +13365,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9891392, 9891456, 9636864, 9636912, - 19911552, + 19911424, 9603680, - 19961344, + 19961216, 11742320, - 18042720, - 19833152, - 19961264, + 18042592, + 19833024, + 19961136, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 9897072, - 19953152, - 19953488, + 19953024, + 19953360, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19961024, - 19834800, + 19960896, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20008800, + 20008672, 11749776, - 18014848, - 18211472, - 20026816, - 19911296, - 19962592, + 18014720, + 18211344, + 20026688, + 19911168, + 19962464, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, - 18122512, - 18009856, + 18122384, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -13461,23 +13461,23 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 18122800, + 19828528, + 18122672, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, 9636224, 9637248, - 18004864, + 18004736, 9636256, 9642208, 9636272, @@ -13491,43 +13491,43 @@ 9636400, 9636416, 9636432, - 19829072, - 19961360, + 19828944, + 19961232, 11753024, 11757136, - 18125328, - 18124928, - 18004880, - 18004912, + 18125200, + 18124800, + 18004752, + 18004784, 9636448, 9891472, 9636464, - 18010528, + 18010400, 9636480, - 19959200, - 19828576, + 19959072, + 19828448, 9641744, 9637200, - 19956880, - 19833072, - 21106016, + 19956752, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, - 18126944, - 20104112, + 18126816, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, - 18004864, + 19828688, + 19835152, + 19914928, + 18004736, 9636656, 9636672, 9636688, @@ -13535,8 +13535,8 @@ 9636720, 9636736, 9636752, - 18126720, - 21066880, + 18126592, + 21066752, 11742352, 11742320, 11742400, @@ -13547,105 +13547,105 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 20052016, - 18004240, - 18004224, + 18004096, + 18010896, + 20051888, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18256224, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18256096, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, - 19956704, - 18010448, - 18003632, - 18046256, - 18150272, + 19956576, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18124768, - 18003968, + 18094704, + 18124640, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19956496, - 19828528, - 19917152, - 19917696, - 11518768, - 19918560, + 19956368, + 19828400, + 19917024, 19917568, + 11518768, + 19918432, + 19917440, 9897040, 9897024, 9901360, 9901312, - 18122784, + 18122656, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19829440, + 19829312, 9890928, - 19960592, + 19960464, 9890992, 9891008, 9891024, @@ -13653,18 +13653,18 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, - 18121552, - 18122208, + 18121424, + 18122080, 9891168, 9891184, 9891200, @@ -13674,58 +13674,58 @@ 9891232, 10056992, 10057008, - 19952224, - 19953984, - 20032576, + 19952096, + 19953856, + 20032448, 9891248, - 18012624, - 19956512, - 20049888, + 18012496, + 19956384, + 20049760, 9891264, - 19955600, - 19829408, - 20017872, + 19955472, + 19829280, + 20017744, 9891280, - 18126864, + 18126736, 10075664, 10057024, 9891296, 9891312, - 18125808, - 18126048, - 18126272, - 18124672, + 18125680, + 18125920, + 18126144, + 18124544, 9891328, - 19962768, + 19962640, 9891344, - 19959712, - 19843792, - 19828896, - 19954720, - 19958944, + 19959584, + 19843664, + 19828768, + 19954592, + 19958816, 9891360, - 19959152, - 19959184, - 18124704, - 19958896, - 19960896, + 19959024, + 19959056, + 18124576, + 19958768, + 19960768, 9891376, - 19961440, - 19957392, - 19958224, - 19958480, + 19961312, + 19957264, + 19958096, + 19958352, 9603696, 10057040, - 18122672, + 18122544, 9891408, 9891424, 9891440, - 19963440, - 19829488, - 19963712, - 19963856, - 19962352, - 19964752 + 19963312, + 19829360, + 19963584, + 19963728, + 19962224, + 19964624 ], "bases": [ { @@ -13802,7 +13802,7 @@ }, { "type_name": "CBasePlayerPawn", - "vtable_address": 30600392, + "vtable_address": 30600328, "methods": [], "bases": [], "model": { @@ -13813,12 +13813,12 @@ }, { "type_name": "CBasePlayerPawn::NetworkVar_m_skybox3d", - "vtable_address": 31428856, + "vtable_address": 31428792, "methods": [ 12335152, - 20002624, - 19827920, - 19828096 + 20002496, + 19827792, + 19827968 ], "bases": [ { @@ -13840,15 +13840,15 @@ }, { "type_name": "CBasePlayerVData", - "vtable_address": 31314368, + "vtable_address": 31314304, "methods": [ - 18025680, - 18025840, - 18009184, - 18130816, - 18171872, - 18002448, - 18012768 + 18025552, + 18025712, + 18009056, + 18130688, + 18171744, + 18002320, + 18012640 ], "bases": [ { @@ -13881,33 +13881,33 @@ }, { "type_name": "CBasePlayerWeapon", - "vtable_address": 31314440, + "vtable_address": 31314376, "methods": [ 13528544, + 18025920, 18026048, - 18026176, - 18377552, - 18065872, - 18010880, - 18010864, - 18221280, - 26419632, - 18009552, - 26419200, - 18378208, - 22948000, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18377424, + 18065744, + 18010752, + 18010736, + 18221152, + 26419568, + 18009424, + 26419136, + 18378080, + 22947936, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 18018848, + 19848592, + 19829024, + 18018720, 9635872, 9665808, 9641296, @@ -13918,21 +13918,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18005008, - 18383968, - 18009200, + 26427360, + 18004880, + 18383840, + 18009072, 9635312, - 18056688, - 18308160, + 18056560, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -13944,95 +13944,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 18031920, + 18031792, 9637216, 9636096, 11746864, @@ -14040,17 +14040,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -14064,13 +14064,13 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -14081,30 +14081,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -14112,11 +14112,11 @@ 9636688, 9636704, 9636720, - 18002464, - 18002480, - 18098912, - 21066880, - 18217488, + 18002336, + 18002352, + 18098784, + 21066752, + 18217360, 11742320, 11742400, 11742464, @@ -14126,143 +14126,143 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18037248, + 18037120, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 22544752, - 22544768, + 22544624, + 22544640, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 18002368, + 18209200, + 18027936, 16727296, - 16742560, - 22544720, + 16727312, + 18002384, 16727328, + 18002400, + 18002416, + 18002432, + 18010944, + 18004992, + 18061024, + 18061056, 16727344, - 16727360, - 16727376, - 22693520, - 22553408, - 18002496, - 18209328, - 18028064, - 16727424, - 16727440, - 18002512, - 16727456, - 18002528, - 18002544, - 18002560, - 18011072, - 18005120, + 18062672, + 18012832, + 18060976, + 18061088, + 18061120, 18061152, - 18061184, - 16727472, - 18062800, - 18012960, - 18061104, - 18061216, - 18061248, - 18061280, - 18002576, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, + 18002448, 18061312, - 18061376, - 16732976, - 16732912, - 16727488, + 11253728, 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 18062320, - 18005040, - 18036192 + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, + 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, + 16727376, + 18062192, + 18004912, + 18036064 ], "bases": [ { @@ -14359,14 +14359,14 @@ }, { "type_name": "CBasePlayerWeapon", - "vtable_address": 31317496, + "vtable_address": 31317432, "methods": [ - 18009216, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 18009088, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -14463,10 +14463,10 @@ }, { "type_name": "CBasePlayerWeapon", - "vtable_address": 31317560, + "vtable_address": 31317496, "methods": [ - 22553872, - 22553888 + 22553744, + 22553760 ], "bases": [ { @@ -14563,17 +14563,17 @@ }, { "type_name": "CBasePlayerWeaponVData", - "vtable_address": 31418856, + "vtable_address": 31418792, "methods": [ 11249184, 11255056, - 19522080, - 19691456, - 19708512, - 19512048, - 19563984, - 19512064, - 19512080 + 19521952, + 19691328, + 19708384, + 19511920, + 19563856, + 19511936, + 19511952 ], "bases": [ { @@ -14606,7 +14606,7 @@ }, { "type_name": "CBasePlayerWeaponVData", - "vtable_address": 31423368, + "vtable_address": 31423304, "methods": [], "bases": [], "model": { @@ -14617,33 +14617,33 @@ }, { "type_name": "CBaseProp", - "vtable_address": 30575912, + "vtable_address": 30575848, "methods": [ 13526704, 13386928, 13386944, - 18377552, - 18065872, - 18134272, - 18010864, - 18180832, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18291712, + 18377424, + 18065744, + 18134144, + 18010736, + 18180704, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -14654,21 +14654,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18134096, + 26427360, + 18133968, 13382848, 13383904, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -14680,95 +14680,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -14776,17 +14776,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -14806,7 +14806,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -14817,30 +14817,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -14851,7 +14851,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -14862,72 +14862,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 13382784, 11401920 ], @@ -14984,7 +14984,7 @@ }, { "type_name": "CBasePropDoor", - "vtable_address": 30578440, + "vtable_address": 30578376, "methods": [ 13526704 ], @@ -15116,7 +15116,7 @@ }, { "type_name": "CBasePropDoor", - "vtable_address": 30581248, + "vtable_address": 30581184, "methods": [ 11404800, 11401984 @@ -15249,7 +15249,7 @@ }, { "type_name": "CBasePropDoor", - "vtable_address": 30581280, + "vtable_address": 30581216, "methods": [], "bases": [ { @@ -15379,7 +15379,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 30961760, + "vtable_address": 30961696, "methods": [ 9634368, 9634384, @@ -15492,7 +15492,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 30962328, + "vtable_address": 30962264, "methods": [ 15852704, 15852736, @@ -15550,7 +15550,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 30962376, + "vtable_address": 30962312, "methods": [], "bases": [ { @@ -15603,14 +15603,14 @@ }, { "type_name": "CBasePulseGraphInstance", - "vtable_address": 31997000, + "vtable_address": 31996936, "methods": [ - 21599008, + 21598880, 15852400, 15852416, 15852432, 15852448, - 25787280 + 25787216 ], "bases": [ { @@ -15632,18 +15632,18 @@ }, { "type_name": "CBasePulseGraphInstance", - "vtable_address": 31999160, + "vtable_address": 31999096, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33298656 + "offset_to_top": 33298592 } } }, { "type_name": "CBaseTempEntity", - "vtable_address": 31029232, + "vtable_address": 31029168, "methods": [], "bases": [ { @@ -15665,33 +15665,33 @@ }, { "type_name": "CBaseToggle", - "vtable_address": 30581320, + "vtable_address": 30581256, "methods": [ 13522144, 13387584, 13387600, - 18377504, - 26419168, - 20153552, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 20153424, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -15702,21 +15702,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19978912, + 26427360, + 19978784, 13382848, 13384144, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -15740,83 +15740,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -15824,16 +15824,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -15854,7 +15854,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -15867,28 +15867,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -15899,7 +15899,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -15910,35 +15910,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -15982,32 +15982,32 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 30327552, + "vtable_address": 30327488, "methods": [ 11931776, 11763360, 11762880, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 11887456, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -16019,21 +16019,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11743968, 11746848, 11746032, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -16057,83 +16057,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -16141,16 +16141,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -16171,7 +16171,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -16184,28 +16184,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -16216,7 +16216,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -16227,35 +16227,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -16318,7 +16318,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 32188992, + "vtable_address": 32188928, "methods": [], "bases": [], "model": { @@ -16329,7 +16329,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 32189120, + "vtable_address": 32189056, "methods": [], "bases": [], "model": { @@ -16340,7 +16340,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 32463328, + "vtable_address": 32463264, "methods": [], "bases": [], "model": { @@ -16351,7 +16351,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 32575360, + "vtable_address": 32575296, "methods": [], "bases": [], "model": { @@ -16362,7 +16362,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 32828576, + "vtable_address": 32828512, "methods": [], "bases": [], "model": { @@ -16373,7 +16373,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 33214304, + "vtable_address": 33214240, "methods": [], "bases": [], "model": { @@ -16384,7 +16384,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 33215424, + "vtable_address": 33215360, "methods": [], "bases": [], "model": { @@ -16395,7 +16395,7 @@ }, { "type_name": "CBaseTrigger", - "vtable_address": 33215776, + "vtable_address": 33215712, "methods": [], "bases": [], "model": { @@ -16406,15 +16406,15 @@ }, { "type_name": "CBaseTypesafeVDataFileManager", - "vtable_address": 31326744, + "vtable_address": 31326680, "methods": [ 12202560, - 25567952, + 25567888, 12202576, - 18649264, - 18383984, - 18800128, - 18395856 + 18649136, + 18383856, + 18800000, + 18395728 ], "bases": [ { @@ -16447,15 +16447,15 @@ }, { "type_name": "CBaseTypesafeVDataFileManager", - "vtable_address": 32063976, + "vtable_address": 32063912, "methods": [ 12202560, - 25567952, + 25567888, 12202576, - 28540816, - 18383984, - 28553728, - 28534544 + 28540752, + 18383856, + 28553664, + 28534480 ], "bases": [ { @@ -16488,15 +16488,15 @@ }, { "type_name": "CBaseTypesafeVDataFileManager", - "vtable_address": 32063808, + "vtable_address": 32063744, "methods": [ 12202560, - 25567952, + 25567888, 12202576, - 28541552, - 18383984, - 28562560, - 28534576 + 28541488, + 18383856, + 28562496, + 28534512 ], "bases": [ { @@ -16529,23 +16529,23 @@ }, { "type_name": "CBaseUserCmdPB", - "vtable_address": 30787576, + "vtable_address": 30787512, "methods": [ 13980192, 13980928, - 24747814, + 24747750, 13975088, 13986080, 13969648, - 24749974, - 24746806, + 24749910, + 24746742, 13986720, 13970512, 13977296, 9474464, 13972384, - 24746716, - 24746982, + 24746652, + 24746918, 13970112, 13970416, 13969680 @@ -16581,13 +16581,13 @@ }, { "type_name": "CBaseVDataFileManager", - "vtable_address": 31993504, + "vtable_address": 31993440, "methods": [ 12202560, - 25567952, + 25567888, 12202576, - 25567968, - 18383984 + 25567904, + 18383856 ], "bases": [ { @@ -16609,7 +16609,7 @@ }, { "type_name": "CBaseVModuleMetadataProvider", - "vtable_address": 30107712, + "vtable_address": 30107648, "methods": [], "bases": [], "model": { @@ -16620,7 +16620,7 @@ }, { "type_name": "CBaseVModuleMetadataProvider", - "vtable_address": 32059832, + "vtable_address": 32059768, "methods": [], "bases": [], "model": { @@ -16631,32 +16631,32 @@ }, { "type_name": "CBeam", - "vtable_address": 30453792, + "vtable_address": 30453728, "methods": [ 13522144, 12343136, 12343312, - 18377504, - 26419168, - 20153600, - 18010864, - 20144608, - 26419632, - 26419200, - 26419200, - 19981040, - 19983840, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 19983600, + 18377376, + 26419104, + 20153472, + 18010736, + 20144480, + 26419568, + 26419136, + 26419136, + 19980912, + 19983712, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 19983472, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12336384, 9635872, 9665808, @@ -16668,21 +16668,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19980672, + 26427360, + 19980544, 12370720, 12334944, 9635312, 12347600, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -16706,83 +16706,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 12336192, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19983184, - 19983408, - 19983200, + 19983056, + 19983280, + 19983072, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -16790,16 +16790,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -16820,7 +16820,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -16833,28 +16833,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -16865,8 +16865,8 @@ 9636736, 9636752, 9636768, - 21066880, - 20037424, + 21066752, + 20037296, 11742320, 11742400, 11742464, @@ -16876,35 +16876,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 12334288 ], "bases": [ @@ -16949,7 +16949,7 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 30526392, + "vtable_address": 30526328, "methods": [ 12866624, 12866688, @@ -17021,23 +17021,23 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 30526456, + "vtable_address": 30526392, "methods": [ 12866656, 12866752, - 24747814, + 24747750, 12866416, 15737056, 15042752, - 24749974, - 24746806, + 24749910, + 24746742, 15122240, 12864992, 15378848, 9474464, 15204160, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070176, 15042736 @@ -17105,23 +17105,23 @@ }, { "type_name": "CBidirMsg_PredictionEvent", - "vtable_address": 30917168, + "vtable_address": 30917104, "methods": [ 15612800, 15654448, - 24747814, + 24747750, 12866416, 15737056, 15042752, - 24749974, - 24746806, + 24749910, + 24746742, 15122240, 12864992, 15378848, 9474464, 15204160, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070176, 15042736 @@ -17157,23 +17157,23 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent", - "vtable_address": 30916848, + "vtable_address": 30916784, "methods": [ 15612544, 15641584, - 24747814, + 24747750, 15283152, 15717408, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15053648, 15079152, 15377792, 9474464, 15179648, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070112, 15042704 @@ -17209,23 +17209,23 @@ }, { "type_name": "CBidirMsg_RebroadcastSource", - "vtable_address": 30917008, + "vtable_address": 30916944, "methods": [ 15612672, 15641712, - 24747814, + 24747750, 15283296, 15717472, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050240, 15079136, 15378368, 9474464, 15130464, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070144, 15042720 @@ -17261,32 +17261,32 @@ }, { "type_name": "CBlood", - "vtable_address": 31475184, + "vtable_address": 31475120, "methods": [ 11766592, - 20157248, - 20157280, + 20157120, + 20157152, 12023536, - 26419168, - 20159760, - 20141632, - 20188592, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20159632, + 20141504, + 20188464, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -17298,21 +17298,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154880, - 20157632, - 20156368, + 26427360, + 20154752, + 20157504, + 20156240, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -17336,83 +17336,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -17420,16 +17420,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -17450,7 +17450,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -17463,28 +17463,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -17495,7 +17495,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -17506,7 +17506,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -17550,7 +17550,7 @@ }, { "type_name": "CBodyComponent", - "vtable_address": 30154672, + "vtable_address": 30154608, "methods": [ 9700880, 9698672, @@ -17577,7 +17577,7 @@ }, { "type_name": "CBodyComponent", - "vtable_address": 30605008, + "vtable_address": 30604944, "methods": [], "bases": [], "model": { @@ -17588,7 +17588,7 @@ }, { "type_name": "CBodyComponentBaseAnimGraph", - "vtable_address": 30605336, + "vtable_address": 30605272, "methods": [], "bases": [], "model": { @@ -17599,12 +17599,12 @@ }, { "type_name": "CBodyComponentBaseAnimGraph", - "vtable_address": 31309896, + "vtable_address": 31309832, "methods": [ 13383984, - 18004048, - 18041104, - 18002368 + 18003920, + 18040976, + 18002240 ], "bases": [ { @@ -17648,43 +17648,43 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 31305720, + "vtable_address": 31305656, "methods": [ 13383968, - 18010816, - 18004208, - 18190736, - 18295856, - 18089104, - 18004064, - 18002160, - 18091280, + 18010688, + 18004080, + 18190608, + 18295728, + 18088976, + 18003936, + 18002032, + 18091152, 12429360, - 18004128, - 18255296, - 18044656, + 18004000, + 18255168, + 18044528, 12429424, - 18220032, - 18085648, + 18219904, + 18085520, 12429440, + 18003952, + 18044608, + 18092064, + 18090288, 18004080, - 18044736, - 18092192, - 18090416, - 18004208, - 18004032, - 19565360, - 18298752, - 18002352, - 18085424, - 18218512, - 18010688, + 18003904, + 19565232, + 18298624, + 18002224, + 18085296, + 18218384, + 18010560, 13382704, - 18010656, - 18004112, - 18297488, + 18010528, + 18003984, + 18297360, 15970720, - 18276448 + 18276320 ], "bases": [ { @@ -17738,9 +17738,9 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 31306016, + "vtable_address": 31305952, "methods": [ - 18021632 + 18021504 ], "bases": [ { @@ -17794,23 +17794,23 @@ }, { "type_name": "CBodyComponentBaseModelEntity", - "vtable_address": 30602504, + "vtable_address": 30602440, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32403344 + "offset_to_top": 32403280 } } }, { "type_name": "CBodyComponentBaseModelEntity", - "vtable_address": 31310328, + "vtable_address": 31310264, "methods": [ 13384256, - 18004192, - 18041472, - 18002032 + 18004064, + 18041344, + 18001904 ], "bases": [ { @@ -17854,10 +17854,10 @@ }, { "type_name": "CBodyComponentPoint", - "vtable_address": 30154896, + "vtable_address": 30154832, "methods": [ 9700976, - 18084320, + 18084192, 9768048, 9698528 ], @@ -17892,32 +17892,32 @@ }, { "type_name": "CBodyComponentPoint::NetworkVar_m_sceneNode", - "vtable_address": 30153488, + "vtable_address": 30153424, "methods": [ 9701504, 9701520, 9698368, - 19051776, - 19064560, - 18814752, - 19060144, - 19007328, + 19051648, + 19064432, + 18814624, + 19060016, + 19007200, 9698384, 9698400, - 19129424, - 18814784, - 18814784, - 18814800, - 18902544, + 19129296, + 18814656, + 18814656, + 18814672, + 18902416, 9698416, - 19121296, - 18907744, - 19060368, - 19062480, - 19006784, - 19011472, - 19013744, - 18901008, + 19121168, + 18907616, + 19060240, + 19062352, + 19006656, + 19011344, + 19013616, + 18900880, 9698432, 9701568, 9701408, @@ -17944,10 +17944,10 @@ }, { "type_name": "CBodyComponentSkeletonInstance", - "vtable_address": 30154784, + "vtable_address": 30154720, "methods": [ 9700928, - 18084336, + 18084208, 9767680, 9698512 ], @@ -17982,7 +17982,7 @@ }, { "type_name": "CBodyComponentSkeletonInstance", - "vtable_address": 32403488, + "vtable_address": 32403424, "methods": [], "bases": [], "model": { @@ -17993,38 +17993,38 @@ }, { "type_name": "CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", - "vtable_address": 30153736, + "vtable_address": 30153672, "methods": [ 9701216, 9701248, - 19512128, - 19729792, - 19729856, - 19730032, - 19730752, - 19731888, + 19512000, + 19729664, + 19729728, + 19729904, + 19730624, + 19731760, 9698480, 9698496, - 19733584, - 19733328, - 19733152, - 19733056, - 19732464, - 19512160, - 19739968, - 19730912, - 19731584, - 19062480, - 19729920, - 19734224, - 19733632, - 19732224, - 19571104, + 19733456, + 19733200, + 19733024, + 19732928, + 19732336, + 19512032, + 19739840, + 19730784, + 19731456, + 19062352, + 19729792, + 19734096, + 19733504, + 19732096, + 19570976, 9701472, 9701344, 9698464, 9701328, - 19656768 + 19656640 ], "bases": [ { @@ -18067,9 +18067,9 @@ }, { "type_name": "CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", - "vtable_address": 30153992, + "vtable_address": 30153928, "methods": [ - 19657408 + 19657280 ], "bases": [ { @@ -18112,7 +18112,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 30513352, + "vtable_address": 30513288, "methods": [ 9634368, 9634384, @@ -18219,7 +18219,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 30513880, + "vtable_address": 30513816, "methods": [ 9698336, 12834944 @@ -18264,7 +18264,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 30513912, + "vtable_address": 30513848, "methods": [ 12639680 ], @@ -18308,32 +18308,32 @@ }, { "type_name": "CBombTarget", - "vtable_address": 31033016, + "vtable_address": 31032952, "methods": [ 11931776, - 16671392, - 16672960, - 18377504, - 26419168, - 20153552, - 18010864, - 16691360, - 26419632, - 26419200, - 26419200, + 16671264, + 16672832, + 18377376, + 26419104, + 20153424, + 18010736, + 16691232, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -18345,21 +18345,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652368, - 16653680, - 16653696, + 26427360, + 16652240, + 16653552, + 16653568, 9635312, - 16670624, - 18308160, + 16670496, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -18383,100 +18383,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 16658000, + 16657872, 9637216, 9636096, 11929312, - 16696384, - 16694688, + 16696256, + 16694560, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -18497,7 +18497,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -18510,28 +18510,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -18542,7 +18542,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -18553,35 +18553,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -18590,9 +18590,9 @@ 11749904, 10058464, 11751552, - 16695456, - 16654752, - 16698128 + 16695328, + 16654624, + 16698000 ], "bases": [ { @@ -18669,7 +18669,7 @@ }, { "type_name": "CBombTargetShim", - "vtable_address": 31030680, + "vtable_address": 31030616, "methods": [ 11931776 ], @@ -18737,14 +18737,14 @@ }, { "type_name": "CBoneSetup", - "vtable_address": 31986976, + "vtable_address": 31986912, "methods": [ + 25180704, + 25180864, + 25180720, 25180768, - 25180928, - 25180784, - 25180832, - 25182336, - 25180848 + 25182272, + 25180784 ], "bases": [ { @@ -18766,7 +18766,7 @@ }, { "type_name": "CBot", - "vtable_address": 30274976, + "vtable_address": 30274912, "methods": [ 11247248, 11246272 @@ -18791,7 +18791,7 @@ }, { "type_name": "CBotBreakableEnumerator", - "vtable_address": 30255376, + "vtable_address": 30255312, "methods": [ 10631168, 10633904, @@ -18861,7 +18861,7 @@ }, { "type_name": "CBotDoorEnumerator", - "vtable_address": 30255416, + "vtable_address": 30255352, "methods": [ 10631184, 10633920, @@ -18931,7 +18931,7 @@ }, { "type_name": "CBotGameSystem", - "vtable_address": 30275320, + "vtable_address": 30275256, "methods": [ 9634368, 9634384, @@ -19016,7 +19016,7 @@ }, { "type_name": "CBotManager", - "vtable_address": 30275216, + "vtable_address": 30275152, "methods": [], "bases": [], "model": { @@ -19027,33 +19027,33 @@ }, { "type_name": "CBreakable", - "vtable_address": 30639912, + "vtable_address": 30639848, "methods": [ 13522144, 13638000, 13638336, - 18377504, - 26419168, - 20407184, - 18010864, - 20478032, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20406720, + 18377376, + 26419104, + 20407056, + 18010736, + 20477904, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20406592, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -19064,21 +19064,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20477728, + 26427360, + 20477600, 13700736, 13623408, 9635312, 13649456, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -19102,100 +19102,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20481696, - 18042720, + 20481568, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 20484464, - 19833664, + 20088096, + 19828496, + 19828672, + 20484336, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 20422736, + 18014720, + 18211344, + 19854832, + 20422608, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 20482480, + 20482352, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -19216,7 +19216,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -19229,39 +19229,39 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 20422880, - 20422256, + 20422752, + 20422128, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -19272,36 +19272,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 20485456, - 18011024, - 20407264, - 20483504, - 18004224, + 20485328, + 18010896, + 20407136, + 20483376, + 18004096, 9637120, 9637136, 9637152, - 20407312, + 20407184, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 20486672 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 20486544 ], "bases": [ { @@ -19366,7 +19366,7 @@ }, { "type_name": "CBreakable", - "vtable_address": 30642112, + "vtable_address": 30642048, "methods": [ 9837440, 9837456 @@ -19434,33 +19434,33 @@ }, { "type_name": "CBreakableProp", - "vtable_address": 30583512, + "vtable_address": 30583448, "methods": [ 13526704, 13403808, 13403472, - 18377552, - 18065872, - 18145824, - 18010864, - 18311056, - 26419632, - 18009552, - 26419200, - 18378208, - 18379856, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18291712, + 18377424, + 18065744, + 18145696, + 18010736, + 18310928, + 26419568, + 18009424, + 26419136, + 18378080, + 18379728, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -19471,21 +19471,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18141872, + 26427360, + 18141744, 13382848, 13383888, 9635312, 13440592, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -19497,113 +19497,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -19623,7 +19623,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -19634,41 +19634,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -19679,77 +19679,77 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 13382800, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, @@ -19841,7 +19841,7 @@ }, { "type_name": "CBreakableProp", - "vtable_address": 30586080, + "vtable_address": 30586016, "methods": [ 11404800, 11401984 @@ -19931,14 +19931,14 @@ }, { "type_name": "CBroadcastRecipientFilter", - "vtable_address": 30165048, + "vtable_address": 30164984, "methods": [ 9837408, 9838800, - 19464368, - 19464352, - 19464384, - 19464400 + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -19971,7 +19971,7 @@ }, { "type_name": "CBtActionAcquireItems", - "vtable_address": 30260712, + "vtable_address": 30260648, "methods": [ 9614880, 9615152, @@ -20005,7 +20005,7 @@ }, { "type_name": "CBtActionAim", - "vtable_address": 30260816, + "vtable_address": 30260752, "methods": [ 10983744, 10984240, @@ -20039,7 +20039,7 @@ }, { "type_name": "CBtActionAimProjectile", - "vtable_address": 30260920, + "vtable_address": 30260856, "methods": [ 9614880, 10985072, @@ -20073,7 +20073,7 @@ }, { "type_name": "CBtActionAttack", - "vtable_address": 30261024, + "vtable_address": 30260960, "methods": [ 9614880, 10985488, @@ -20107,7 +20107,7 @@ }, { "type_name": "CBtActionBuy", - "vtable_address": 30261128, + "vtable_address": 30261064, "methods": [ 9614880, 9615152, @@ -20141,7 +20141,7 @@ }, { "type_name": "CBtActionChooseBombSiteArea", - "vtable_address": 30261232, + "vtable_address": 30261168, "methods": [ 9614880, 9615152, @@ -20175,7 +20175,7 @@ }, { "type_name": "CBtActionChooseRandomWaypoint", - "vtable_address": 30261336, + "vtable_address": 30261272, "methods": [ 9614880, 9615152, @@ -20209,7 +20209,7 @@ }, { "type_name": "CBtActionChooseRandomWaypointWithinRadius", - "vtable_address": 30261440, + "vtable_address": 30261376, "methods": [ 9614880, 9615152, @@ -20243,7 +20243,7 @@ }, { "type_name": "CBtActionChooseTeamSpawnArea", - "vtable_address": 30261544, + "vtable_address": 30261480, "methods": [ 9614880, 9615152, @@ -20277,7 +20277,7 @@ }, { "type_name": "CBtActionCombatPositioning", - "vtable_address": 30261648, + "vtable_address": 30261584, "methods": [ 10983760, 10983808, @@ -20311,7 +20311,7 @@ }, { "type_name": "CBtActionCommitSuicide", - "vtable_address": 30261752, + "vtable_address": 30261688, "methods": [ 9614880, 9615152, @@ -20345,7 +20345,7 @@ }, { "type_name": "CBtActionCompareGlobalCounter", - "vtable_address": 30261856, + "vtable_address": 30261792, "methods": [ 9614880, 9615152, @@ -20379,7 +20379,7 @@ }, { "type_name": "CBtActionCoordinatedBuy", - "vtable_address": 30262616, + "vtable_address": 30262552, "methods": [ 9614880, 9615152, @@ -20413,7 +20413,7 @@ }, { "type_name": "CBtActionCrouch", - "vtable_address": 30262720, + "vtable_address": 30262656, "methods": [ 9614880, 11035952, @@ -20447,7 +20447,7 @@ }, { "type_name": "CBtActionCustomBuy", - "vtable_address": 30262824, + "vtable_address": 30262760, "methods": [ 9614880, 11037216, @@ -20481,7 +20481,7 @@ }, { "type_name": "CBtActionDropActiveWeapon", - "vtable_address": 30262928, + "vtable_address": 30262864, "methods": [ 9614880, 11037072, @@ -20515,7 +20515,7 @@ }, { "type_name": "CBtActionEquipItem", - "vtable_address": 30263032, + "vtable_address": 30262968, "methods": [ 9614880, 11036928, @@ -20549,7 +20549,7 @@ }, { "type_name": "CBtActionEquipWeapon", - "vtable_address": 30263136, + "vtable_address": 30263072, "methods": [ 9614880, 11036624, @@ -20583,7 +20583,7 @@ }, { "type_name": "CBtActionFleeAreaDamage", - "vtable_address": 30263240, + "vtable_address": 30263176, "methods": [ 9614880, 9615152, @@ -20617,7 +20617,7 @@ }, { "type_name": "CBtActionHide", - "vtable_address": 30263344, + "vtable_address": 30263280, "methods": [ 9614880, 9615152, @@ -20651,7 +20651,7 @@ }, { "type_name": "CBtActionInspectCurrentWeapon", - "vtable_address": 30263448, + "vtable_address": 30263384, "methods": [ 9614880, 11036784, @@ -20685,7 +20685,7 @@ }, { "type_name": "CBtActionJump", - "vtable_address": 30263552, + "vtable_address": 30263488, "methods": [ 9614880, 11036480, @@ -20719,7 +20719,7 @@ }, { "type_name": "CBtActionLookAt", - "vtable_address": 30263656, + "vtable_address": 30263592, "methods": [ 9614880, 11036336, @@ -20753,7 +20753,7 @@ }, { "type_name": "CBtActionMoveTo", - "vtable_address": 30263760, + "vtable_address": 30263696, "methods": [ 11035520, 11034544, @@ -20796,7 +20796,7 @@ }, { "type_name": "CBtActionParachutePositioning", - "vtable_address": 30264416, + "vtable_address": 30264352, "methods": [ 11078816, 11052560, @@ -20830,7 +20830,7 @@ }, { "type_name": "CBtActionPullTrigger", - "vtable_address": 30264520, + "vtable_address": 30264456, "methods": [ 9614880, 11081136, @@ -20864,7 +20864,7 @@ }, { "type_name": "CBtActionReload", - "vtable_address": 30264624, + "vtable_address": 30264560, "methods": [ 9614880, 11081952, @@ -20898,7 +20898,7 @@ }, { "type_name": "CBtActionSay", - "vtable_address": 30264728, + "vtable_address": 30264664, "methods": [ 9614880, 9615152, @@ -20932,7 +20932,7 @@ }, { "type_name": "CBtActionSecondaryAttack", - "vtable_address": 30264832, + "vtable_address": 30264768, "methods": [ 9614880, 11081808, @@ -20966,7 +20966,7 @@ }, { "type_name": "CBtActionSelectAreasWithinRadius", - "vtable_address": 30264936, + "vtable_address": 30264872, "methods": [ 9614880, 9615152, @@ -21000,7 +21000,7 @@ }, { "type_name": "CBtActionSetGlobalCounter", - "vtable_address": 30265040, + "vtable_address": 30264976, "methods": [ 9614880, 9615152, @@ -21034,7 +21034,7 @@ }, { "type_name": "CBtActionSetGlobalFlag", - "vtable_address": 30265144, + "vtable_address": 30265080, "methods": [ 9614880, 9615152, @@ -21068,7 +21068,7 @@ }, { "type_name": "CBtActionSetValueFloat", - "vtable_address": 30265248, + "vtable_address": 30265184, "methods": [ 9614880, 9615152, @@ -21102,7 +21102,7 @@ }, { "type_name": "CBtActionSetValueVector", - "vtable_address": 30265352, + "vtable_address": 30265288, "methods": [ 9614880, 9615152, @@ -21136,7 +21136,7 @@ }, { "type_name": "CBtActionStandUp", - "vtable_address": 30265456, + "vtable_address": 30265392, "methods": [ 9614880, 11081664, @@ -21170,7 +21170,7 @@ }, { "type_name": "CBtActionTeleport", - "vtable_address": 30265560, + "vtable_address": 30265496, "methods": [ 9614880, 9615152, @@ -21204,7 +21204,7 @@ }, { "type_name": "CBtActionUse", - "vtable_address": 30265664, + "vtable_address": 30265600, "methods": [ 9614880, 11081520, @@ -21238,7 +21238,7 @@ }, { "type_name": "CBtActionWait", - "vtable_address": 30265768, + "vtable_address": 30265704, "methods": [ 9614880, 9615152, @@ -21281,7 +21281,7 @@ }, { "type_name": "CBtAgentBot", - "vtable_address": 30126576, + "vtable_address": 30126512, "methods": [ 9605536, 9606656, @@ -21419,7 +21419,7 @@ }, { "type_name": "CBtDecoratorBotService", - "vtable_address": 30266960, + "vtable_address": 30266896, "methods": [ 9622976, 10903616, @@ -21464,7 +21464,7 @@ }, { "type_name": "CBtDecoratorBuyService", - "vtable_address": 30267064, + "vtable_address": 30267000, "methods": [ 9622976, 11109184, @@ -21509,7 +21509,7 @@ }, { "type_name": "CBtDecoratorDecGlobalCounter", - "vtable_address": 30267280, + "vtable_address": 30267216, "methods": [ 9622976, 10903616, @@ -21554,7 +21554,7 @@ }, { "type_name": "CBtDecoratorFindUtilityStrat", - "vtable_address": 30267384, + "vtable_address": 30267320, "methods": [ 9622976, 10903616, @@ -21599,7 +21599,7 @@ }, { "type_name": "CBtDecoratorHidingSpotService", - "vtable_address": 30267488, + "vtable_address": 30267424, "methods": [ 9622976, 11120448, @@ -21644,7 +21644,7 @@ }, { "type_name": "CBtDecoratorInvert", - "vtable_address": 30267592, + "vtable_address": 30267528, "methods": [ 9622976, 10903616, @@ -21689,7 +21689,7 @@ }, { "type_name": "CBtDecoratorMaybe", - "vtable_address": 30267808, + "vtable_address": 30267744, "methods": [ 9622976, 10903616, @@ -21734,7 +21734,7 @@ }, { "type_name": "CBtDecoratorMemory", - "vtable_address": 30272328, + "vtable_address": 30272264, "methods": [ 9622976, 10903616, @@ -21779,7 +21779,7 @@ }, { "type_name": "CBtDecoratorNeedHealing", - "vtable_address": 30267912, + "vtable_address": 30267848, "methods": [ 9622976, 10903616, @@ -21824,7 +21824,7 @@ }, { "type_name": "CBtDecoratorPicker", - "vtable_address": 30272432, + "vtable_address": 30272368, "methods": [ 9622976, 10903616, @@ -21865,7 +21865,7 @@ }, { "type_name": "CBtDecoratorPickerBlockedBySmoke", - "vtable_address": 30273168, + "vtable_address": 30273104, "methods": [ 9622976, 10903616, @@ -21922,7 +21922,7 @@ }, { "type_name": "CBtDecoratorPickerDeDup", - "vtable_address": 30273280, + "vtable_address": 30273216, "methods": [ 9622976, 10903616, @@ -21979,7 +21979,7 @@ }, { "type_name": "CBtDecoratorPickerGrenadeType", - "vtable_address": 30273392, + "vtable_address": 30273328, "methods": [ 9622976, 10903616, @@ -22036,7 +22036,7 @@ }, { "type_name": "CBtDecoratorPickerMaxScore", - "vtable_address": 30273504, + "vtable_address": 30273440, "methods": [ 9622976, 10903616, @@ -22093,7 +22093,7 @@ }, { "type_name": "CBtDecoratorPickerNearby", - "vtable_address": 30273616, + "vtable_address": 30273552, "methods": [ 9622976, 10903616, @@ -22150,7 +22150,7 @@ }, { "type_name": "CBtDecoratorPickerRandomByDistance", - "vtable_address": 30273728, + "vtable_address": 30273664, "methods": [ 9622976, 10903616, @@ -22207,7 +22207,7 @@ }, { "type_name": "CBtDecoratorPickerReactionTime", - "vtable_address": 30273840, + "vtable_address": 30273776, "methods": [ 9622976, 10903616, @@ -22264,7 +22264,7 @@ }, { "type_name": "CBtDecoratorPickerVisible", - "vtable_address": 30273952, + "vtable_address": 30273888, "methods": [ 9622976, 10903616, @@ -22321,7 +22321,7 @@ }, { "type_name": "CBtDecoratorPickerWeightAsDistance", - "vtable_address": 30274064, + "vtable_address": 30274000, "methods": [ 9622976, 10903616, @@ -22386,7 +22386,7 @@ }, { "type_name": "CBtDecoratorRandomApproachPoint", - "vtable_address": 30268016, + "vtable_address": 30267952, "methods": [ 9622976, 10903616, @@ -22431,7 +22431,7 @@ }, { "type_name": "CBtDecoratorRandomInt", - "vtable_address": 30268120, + "vtable_address": 30268056, "methods": [ 9622976, 10903616, @@ -22476,7 +22476,7 @@ }, { "type_name": "CBtDecoratorRanker", - "vtable_address": 30272544, + "vtable_address": 30272480, "methods": [ 9622976, 10903616, @@ -22517,7 +22517,7 @@ }, { "type_name": "CBtDecoratorRankerDist", - "vtable_address": 30128104, + "vtable_address": 30128040, "methods": [ 9622976, 10903616, @@ -22582,7 +22582,7 @@ }, { "type_name": "CBtDecoratorRemove", - "vtable_address": 30268224, + "vtable_address": 30268160, "methods": [ 9622976, 10903616, @@ -22627,7 +22627,7 @@ }, { "type_name": "CBtDecoratorRemoveKey", - "vtable_address": 30268816, + "vtable_address": 30268752, "methods": [ 9622976, 10903616, @@ -22672,7 +22672,7 @@ }, { "type_name": "CBtDecoratorRepeat", - "vtable_address": 30268920, + "vtable_address": 30268856, "methods": [ 9622976, 10903616, @@ -22717,7 +22717,7 @@ }, { "type_name": "CBtDecoratorRouteService", - "vtable_address": 30269024, + "vtable_address": 30268960, "methods": [ 9622976, 11176848, @@ -22762,7 +22762,7 @@ }, { "type_name": "CBtDecoratorRunOnce", - "vtable_address": 30269128, + "vtable_address": 30269064, "methods": [ 9622976, 11148448, @@ -22807,7 +22807,7 @@ }, { "type_name": "CBtDecoratorSensor", - "vtable_address": 30272656, + "vtable_address": 30272592, "methods": [ 9622976, 10903616, @@ -22860,7 +22860,7 @@ }, { "type_name": "CBtDecoratorSetBarrier", - "vtable_address": 30269232, + "vtable_address": 30269168, "methods": [ 9622976, 10903616, @@ -22905,7 +22905,7 @@ }, { "type_name": "CBtDecoratorSetReactionTime", - "vtable_address": 30269336, + "vtable_address": 30269272, "methods": [ 9622976, 10903616, @@ -22950,7 +22950,7 @@ }, { "type_name": "CBtDecoratorSucceed", - "vtable_address": 30269440, + "vtable_address": 30269376, "methods": [ 9622976, 10903616, @@ -22995,7 +22995,7 @@ }, { "type_name": "CBtDecoratorTagEntity", - "vtable_address": 30269544, + "vtable_address": 30269480, "methods": [ 9622976, 10903616, @@ -23040,7 +23040,7 @@ }, { "type_name": "CBtDecoratorTagThreshold", - "vtable_address": 30269648, + "vtable_address": 30269584, "methods": [ 9622976, 10903616, @@ -23085,7 +23085,7 @@ }, { "type_name": "CBtDecoratorTokenService", - "vtable_address": 30269752, + "vtable_address": 30269688, "methods": [ 9622976, 11176960, @@ -23130,7 +23130,7 @@ }, { "type_name": "CBtDecoratorTryLock", - "vtable_address": 30269856, + "vtable_address": 30269792, "methods": [ 9622976, 11148480, @@ -23175,7 +23175,7 @@ }, { "type_name": "CBtDecoratorWaitSuccess", - "vtable_address": 30269960, + "vtable_address": 30269896, "methods": [ 9622976, 10903616, @@ -23228,7 +23228,7 @@ }, { "type_name": "CBtNode", - "vtable_address": 30127680, + "vtable_address": 30127616, "methods": [ 9614880, 9615152, @@ -23247,7 +23247,7 @@ }, { "type_name": "CBtNode", - "vtable_address": 32221664, + "vtable_address": 32221600, "methods": [], "bases": [], "model": { @@ -23258,7 +23258,7 @@ }, { "type_name": "CBtNode", - "vtable_address": 32221792, + "vtable_address": 32221728, "methods": [], "bases": [], "model": { @@ -23269,7 +23269,7 @@ }, { "type_name": "CBtNodeComposite", - "vtable_address": 30259360, + "vtable_address": 30259296, "methods": [ 10904320, 10905920, @@ -23299,7 +23299,7 @@ }, { "type_name": "CBtNodeCondition", - "vtable_address": 30267168, + "vtable_address": 30267104, "methods": [ 10904640, 10903616, @@ -23340,7 +23340,7 @@ }, { "type_name": "CBtNodeCondition", - "vtable_address": 30268320, + "vtable_address": 30268256, "methods": [ 11108832, 11108784, @@ -23360,7 +23360,7 @@ }, { "type_name": "CBtNodeConditionBarrier", - "vtable_address": 30270568, + "vtable_address": 30270504, "methods": [ 10904640, 11191824, @@ -23417,7 +23417,7 @@ }, { "type_name": "CBtNodeConditionComparison", - "vtable_address": 30270680, + "vtable_address": 30270616, "methods": [ 10904640, 10903616, @@ -23469,7 +23469,7 @@ }, { "type_name": "CBtNodeConditionDistanceLess", - "vtable_address": 30270808, + "vtable_address": 30270744, "methods": [ 10904640, 10903616, @@ -23526,7 +23526,7 @@ }, { "type_name": "CBtNodeConditionHasParachute", - "vtable_address": 30270920, + "vtable_address": 30270856, "methods": [ 10904640, 11192368, @@ -23583,7 +23583,7 @@ }, { "type_name": "CBtNodeConditionInactive", - "vtable_address": 30271032, + "vtable_address": 30270968, "methods": [ 11193040, 10903616, @@ -23640,7 +23640,7 @@ }, { "type_name": "CBtNodeConditionIsAirborne", - "vtable_address": 30271144, + "vtable_address": 30271080, "methods": [ 10904640, 10903616, @@ -23697,7 +23697,7 @@ }, { "type_name": "CBtNodeConditionIsAtBombSite", - "vtable_address": 30271256, + "vtable_address": 30271192, "methods": [ 10904640, 10903616, @@ -23754,7 +23754,7 @@ }, { "type_name": "CBtNodeConditionIsEmpty", - "vtable_address": 30267696, + "vtable_address": 30267632, "methods": [ 10904640, 10903616, @@ -23811,7 +23811,7 @@ }, { "type_name": "CBtNodeConditionIsEqual", - "vtable_address": 30259760, + "vtable_address": 30259696, "methods": [ 10904640, 10903616, @@ -23881,7 +23881,7 @@ }, { "type_name": "CBtNodeConditionIsGreater", - "vtable_address": 30259504, + "vtable_address": 30259440, "methods": [ 10904640, 10903616, @@ -23951,7 +23951,7 @@ }, { "type_name": "CBtNodeConditionIsGreaterEqual", - "vtable_address": 30259632, + "vtable_address": 30259568, "methods": [ 10904640, 10903616, @@ -24021,7 +24021,7 @@ }, { "type_name": "CBtNodeConditionIsInvSlotEmpty", - "vtable_address": 30271368, + "vtable_address": 30271304, "methods": [ 10904640, 11192480, @@ -24078,7 +24078,7 @@ }, { "type_name": "CBtNodeConditionIsLess", - "vtable_address": 30259888, + "vtable_address": 30259824, "methods": [ 10904640, 10903616, @@ -24148,7 +24148,7 @@ }, { "type_name": "CBtNodeConditionIsLessEqual", - "vtable_address": 30260016, + "vtable_address": 30259952, "methods": [ 10904640, 10903616, @@ -24218,7 +24218,7 @@ }, { "type_name": "CBtNodeConditionIsReloading", - "vtable_address": 30271480, + "vtable_address": 30271416, "methods": [ 10904640, 10903616, @@ -24275,7 +24275,7 @@ }, { "type_name": "CBtNodeConditionIsWeaponEquipped", - "vtable_address": 30271592, + "vtable_address": 30271528, "methods": [ 10904640, 11192592, @@ -24332,7 +24332,7 @@ }, { "type_name": "CBtNodeConditionIsWeaponSuitable", - "vtable_address": 30271704, + "vtable_address": 30271640, "methods": [ 10904640, 11192704, @@ -24389,7 +24389,7 @@ }, { "type_name": "CBtNodeConditionOutOfAmmo", - "vtable_address": 30271816, + "vtable_address": 30271752, "methods": [ 10904640, 11192816, @@ -24446,7 +24446,7 @@ }, { "type_name": "CBtNodeConditionOwnsItem", - "vtable_address": 30271928, + "vtable_address": 30271864, "methods": [ 10904640, 11192928, @@ -24511,7 +24511,7 @@ }, { "type_name": "CBtNodeDecorator", - "vtable_address": 30259256, + "vtable_address": 30259192, "methods": [ 9622976, 10903616, @@ -24541,7 +24541,7 @@ }, { "type_name": "CBtNodeParallel", - "vtable_address": 30266144, + "vtable_address": 30266080, "methods": [ 10904320, 10905920, @@ -24586,7 +24586,7 @@ }, { "type_name": "CBtNodeSelector", - "vtable_address": 30266248, + "vtable_address": 30266184, "methods": [ 10904320, 10905920, @@ -24631,7 +24631,7 @@ }, { "type_name": "CBtNodeSequencer", - "vtable_address": 30266352, + "vtable_address": 30266288, "methods": [ 10904320, 10905920, @@ -24684,7 +24684,7 @@ }, { "type_name": "CBtNodeSubtree", - "vtable_address": 30127784, + "vtable_address": 30127720, "methods": [ 9614880, 9615248, @@ -24726,7 +24726,7 @@ }, { "type_name": "CBtSensorShapeFov", - "vtable_address": 30274432, + "vtable_address": 30274368, "methods": [ 11242336, 11242368, @@ -24752,7 +24752,7 @@ }, { "type_name": "CBtSensorShapeSphere", - "vtable_address": 30274472, + "vtable_address": 30274408, "methods": [ 11242320, 11242352, @@ -24786,7 +24786,7 @@ }, { "type_name": "CBtTree", - "vtable_address": 30259464, + "vtable_address": 30259400, "methods": [ 10906752, 10907168, @@ -24823,7 +24823,7 @@ }, { "type_name": "CBuoyancyHelper", - "vtable_address": 30329912, + "vtable_address": 30329848, "methods": [ 11742064, 11744048, @@ -24854,32 +24854,32 @@ }, { "type_name": "CBuyZone", - "vtable_address": 30236248, + "vtable_address": 30236184, "methods": [ 11931776, 10457760, 10458224, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 10503312, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -24891,21 +24891,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10427056, 10436064, 10429184, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -24929,83 +24929,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -25013,16 +25013,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -25043,7 +25043,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -25056,28 +25056,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -25088,7 +25088,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -25099,35 +25099,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 10453056, 11742352, 10451008, @@ -25201,33 +25201,33 @@ }, { "type_name": "CC4", - "vtable_address": 31091096, + "vtable_address": 31091032, "methods": [ 13528544, - 16929696, - 16929920, - 18377552, - 18065872, - 17166720, - 18010864, - 17171024, - 26419632, - 18009552, - 26419200, - 16960192, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16929568, + 16929792, + 18377424, + 18065744, + 17166592, + 18010736, + 17170896, + 26419568, + 18009424, + 26419136, + 16960064, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -25238,21 +25238,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914048, - 17172400, - 16916384, + 26427360, + 16913920, + 17172272, + 16916256, 9635312, - 16936912, - 18308160, + 16936784, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -25263,114 +25263,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16924160, - 16924272, - 19834496, + 16924032, + 16924144, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 16941648, - 21311696, + 16941520, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -25384,47 +25384,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -25432,11 +25432,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 16914080, - 17036992, + 16727392, + 16727408, + 18098784, + 16913952, + 17036864, 11742320, 11742400, 11742464, @@ -25446,223 +25446,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17078176, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, + 16924176, + 17087920, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17078304, + 17172160, + 18004912, + 18036064, 16727424, - 16727440, - 16924336, + 16913808, + 16735136, 16727456, - 16924304, - 17088048, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16913984, + 16914384, + 16913824, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16913936, - 16735264, - 16727584, - 16914112, - 16914512, - 16913952, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16926256, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16926384, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17167632, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 17127008, + 16914000, + 17072640, + 17035856, + 17127056, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17167760, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 17127136, - 16914128, - 17072768, - 17035984, - 17127184, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 17076160, - 17091984, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 17076032, + 17091856, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914064, - 16914512 + 16913488, + 16728496, + 16913936, + 16914384 ], "bases": [ { @@ -25781,14 +25781,14 @@ }, { "type_name": "CC4", - "vtable_address": 31094792, + "vtable_address": 31094728, "methods": [ - 16916400, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916272, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -25907,10 +25907,10 @@ }, { "type_name": "CC4", - "vtable_address": 31094856, + "vtable_address": 31094792, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -26029,12 +26029,12 @@ }, { "type_name": "CC4::NetworkVar_m_entitySpottedState", - "vtable_address": 31088312, + "vtable_address": 31088248, "methods": [ 9842944, - 17008736, + 17008608, 9837520, - 16913968 + 16913840 ], "bases": [ { @@ -26056,23 +26056,23 @@ }, { "type_name": "CCLCMsg_BaselineAck", - "vtable_address": 30906608, + "vtable_address": 30906544, "methods": [ 15604720, 15639408, - 24747814, + 24747750, 15273072, 15716048, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049408, 15079856, 15343360, 9474464, 15146336, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068064, 15041680 @@ -26108,23 +26108,23 @@ }, { "type_name": "CCLCMsg_ClientInfo", - "vtable_address": 30905968, + "vtable_address": 30905904, "methods": [ 15604272, 15650608, - 24747814, + 24747750, 15272448, 15729680, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15086176, 15079904, 15340544, 9474464, 15182400, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067936, 15041616 @@ -26160,23 +26160,23 @@ }, { "type_name": "CCLCMsg_CmdKeyValues", - "vtable_address": 30907888, + "vtable_address": 30907824, "methods": [ 15605808, 15651248, - 24747814, + 24747750, 15274272, 15730944, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15079728, 15347600, 9474464, 15136288, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068320, 15041808 @@ -26212,23 +26212,23 @@ }, { "type_name": "CCLCMsg_Diagnostic", - "vtable_address": 30909168, + "vtable_address": 30909104, "methods": [ 15704432, 15705216, - 24747814, + 24747750, 15275600, 15768640, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15115680, 15079696, 15498288, 9474464, 15081936, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068576, 15041936 @@ -26264,23 +26264,23 @@ }, { "type_name": "CCLCMsg_HltvFixupOperatorTick", - "vtable_address": 30918288, + "vtable_address": 30918224, "methods": [ 15613824, 15676016, - 24747814, + 24747750, 15284464, 15738192, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15084048, 15079056, 15382672, 9474464, 15223072, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070400, 15042864 @@ -26316,23 +26316,23 @@ }, { "type_name": "CCLCMsg_HltvReplay", - "vtable_address": 30917968, + "vtable_address": 30917904, "methods": [ 15613552, 15641968, - 24747814, + 24747750, 15284160, 15717600, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050528, 15079088, 15381584, 9474464, 15177568, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070336, 15042832 @@ -26368,23 +26368,23 @@ }, { "type_name": "CCLCMsg_ListenEvents", - "vtable_address": 30906768, + "vtable_address": 30906704, "methods": [ 15604848, 15650928, - 24747814, + 24747750, 15273232, 15716112, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15048896, 15079840, 15343936, 9474464, 15105280, - 24746716, - 24746982, + 24746652, + 24746918, 15048768, 15068096, 15041696 @@ -26420,23 +26420,23 @@ }, { "type_name": "CCLCMsg_LoadingProgress", - "vtable_address": 30907088, + "vtable_address": 30907024, "methods": [ 15605152, 15639536, - 24747814, + 24747750, 15273536, 15716144, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049488, 15079808, 15345072, 9474464, 15129792, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068160, 15041728 @@ -26472,23 +26472,23 @@ }, { "type_name": "CCLCMsg_Move", - "vtable_address": 30906128, + "vtable_address": 30906064, "methods": [ 15604416, 15650768, - 24747814, + 24747750, 15272592, 15729968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083168, 15079888, 15341168, 9474464, 15170240, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067968, 15041632 @@ -26524,23 +26524,23 @@ }, { "type_name": "CCLCMsg_RconServerDetails", - "vtable_address": 30908048, + "vtable_address": 30907984, "methods": [ 15605952, 15651408, - 24747814, + 24747750, 15274432, 15731200, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15079712, 15348000, 9474464, 15136480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068352, 15041824 @@ -26576,23 +26576,23 @@ }, { "type_name": "CCLCMsg_RequestPause", - "vtable_address": 30907728, + "vtable_address": 30907664, "methods": [ 15605680, 15639920, - 24747814, + 24747750, 15274112, 15716288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049584, 15079744, 15346912, 9474464, 15146688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068288, 15041792 @@ -26628,23 +26628,23 @@ }, { "type_name": "CCLCMsg_RespondCvarValue", - "vtable_address": 30906928, + "vtable_address": 30906864, "methods": [ 15604992, 15662400, - 24747814, + 24747750, 15273392, 15730544, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15086320, 15079824, 15344464, 9474464, 15190784, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068128, 15041712 @@ -26680,23 +26680,23 @@ }, { "type_name": "CCLCMsg_ServerStatus", - "vtable_address": 30907568, + "vtable_address": 30907504, "methods": [ 15605552, 15639792, - 24747814, + 24747750, 15273984, 15716240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049040, 15079760, 15346432, 9474464, 15109168, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068256, 15041776 @@ -26732,23 +26732,23 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect", - "vtable_address": 30907248, + "vtable_address": 30907184, "methods": [ 15605280, 15651088, - 24747814, + 24747750, 15273696, 15730688, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15079792, 15345552, 9474464, 15127984, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068192, 15041744 @@ -26784,23 +26784,23 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect", - "vtable_address": 30907408, + "vtable_address": 30907344, "methods": [ 15605424, 15639664, - 24747814, + 24747750, 15273840, 15716192, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049536, 15079776, 15345952, 9474464, 15130016, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068224, 15041760 @@ -26836,23 +26836,23 @@ }, { "type_name": "CCLCMsg_VoiceData", - "vtable_address": 30906448, + "vtable_address": 30906384, "methods": [ 15679680, 15694560, - 24747814, + 24747750, 15272944, 15772064, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15102272, 15079872, 15342752, 9474464, 15137472, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068032, 15041664 @@ -26888,25 +26888,25 @@ }, { "type_name": "CCS2ChickenGraphController", - "vtable_address": 31274504, - "methods": [ - 17254272, - 17262288, - 17261792, - 17290496, - 17253392, - 17288240, - 17288992, - 17316160, - 17291840, - 17261184, + "vtable_address": 31274440, + "methods": [ + 17254144, + 17262160, + 17261664, + 17290368, + 17253264, + 17288112, + 17288864, + 17316032, + 17291712, + 17261056, 13382256, 13382272, 13382288, 13382304, - 17253360, - 18003184, - 17256928 + 17253232, + 18003056, + 17256800 ], "bases": [ { @@ -26928,25 +26928,25 @@ }, { "type_name": "CCS2WeaponGraphController", - "vtable_address": 31298608, + "vtable_address": 31298544, "methods": [ - 17794304, - 17804000, - 17805312, - 17883232, - 17793504, - 17880096, - 17881120, - 17973232, - 17885696, - 17802528, + 17794176, + 17803872, + 17805184, + 17883104, + 17793376, + 17879968, + 17880992, + 17973104, + 17885568, + 17802400, 13382256, 13382272, 13382288, 13382304, - 17793488, - 18003184, - 17741056 + 17793360, + 18003056, + 17740928 ], "bases": [ { @@ -26968,7 +26968,7 @@ }, { "type_name": "CCSAddonManager", - "vtable_address": 30233672, + "vtable_address": 30233608, "methods": [ 10425328, 9634384, @@ -27064,20 +27064,20 @@ }, { "type_name": "CCSAmmoDef", - "vtable_address": 30969792, + "vtable_address": 30969728, "methods": [ 12202560, - 18003136, + 18003008, 12202576, 15996048, 15996288, - 16353040, - 18003184, + 16352912, + 18003056, 15994064, 15974576, 15974592, 15990368, - 16351744, + 16351616, 15985968 ], "bases": [ @@ -27122,7 +27122,7 @@ }, { "type_name": "CCSBaseScript", - "vtable_address": 30181296, + "vtable_address": 30181232, "methods": [ 9890768, 9890784, @@ -27159,7 +27159,7 @@ }, { "type_name": "CCSBaseScript", - "vtable_address": 30181504, + "vtable_address": 30181440, "methods": [], "bases": [ { @@ -27191,7 +27191,7 @@ }, { "type_name": "CCSBot", - "vtable_address": 30257192, + "vtable_address": 30257128, "methods": [ 10632448, 10631088, @@ -27255,7 +27255,7 @@ }, { "type_name": "CCSBotManager", - "vtable_address": 30257920, + "vtable_address": 30257856, "methods": [ 10648112, 10649728, @@ -27323,7 +27323,7 @@ }, { "type_name": "CCSBotManager::BombBeepEvent", - "vtable_address": 30255744, + "vtable_address": 30255680, "methods": [ 10637568, 10646032, @@ -27361,7 +27361,7 @@ }, { "type_name": "CCSBotManager::BombDefuseAbortEvent", - "vtable_address": 30255888, + "vtable_address": 30255824, "methods": [ 10637424, 10645792, @@ -27399,7 +27399,7 @@ }, { "type_name": "CCSBotManager::BombDefuseBeginEvent", - "vtable_address": 30255792, + "vtable_address": 30255728, "methods": [ 10637520, 10645952, @@ -27437,7 +27437,7 @@ }, { "type_name": "CCSBotManager::BombDefusedEvent", - "vtable_address": 30255840, + "vtable_address": 30255776, "methods": [ 10637472, 10645872, @@ -27475,7 +27475,7 @@ }, { "type_name": "CCSBotManager::BombExplodedEvent", - "vtable_address": 30255936, + "vtable_address": 30255872, "methods": [ 10637376, 10645712, @@ -27513,7 +27513,7 @@ }, { "type_name": "CCSBotManager::BombPickedUpEvent", - "vtable_address": 30255648, + "vtable_address": 30255584, "methods": [ 10637664, 10646192, @@ -27551,7 +27551,7 @@ }, { "type_name": "CCSBotManager::BombPlantedEvent", - "vtable_address": 30255696, + "vtable_address": 30255632, "methods": [ 10637616, 10646112, @@ -27589,7 +27589,7 @@ }, { "type_name": "CCSBotManager::BreakBreakableEvent", - "vtable_address": 30256224, + "vtable_address": 30256160, "methods": [ 10637088, 10645232, @@ -27627,7 +27627,7 @@ }, { "type_name": "CCSBotManager::BreakPropEvent", - "vtable_address": 30256176, + "vtable_address": 30256112, "methods": [ 10637136, 10645312, @@ -27665,7 +27665,7 @@ }, { "type_name": "CCSBotManager::BulletImpactEvent", - "vtable_address": 30256560, + "vtable_address": 30256496, "methods": [ 10636752, 10644672, @@ -27703,7 +27703,7 @@ }, { "type_name": "CCSBotManager::DecoyDetonateEvent", - "vtable_address": 30256800, + "vtable_address": 30256736, "methods": [ 10636512, 10644272, @@ -27741,7 +27741,7 @@ }, { "type_name": "CCSBotManager::DecoyFiringEvent", - "vtable_address": 30256848, + "vtable_address": 30256784, "methods": [ 10636464, 10644192, @@ -27779,7 +27779,7 @@ }, { "type_name": "CCSBotManager::DoorMovingEvent", - "vtable_address": 30256128, + "vtable_address": 30256064, "methods": [ 10637184, 10645392, @@ -27817,7 +27817,7 @@ }, { "type_name": "CCSBotManager::FlashbangDetonateEvent", - "vtable_address": 30256656, + "vtable_address": 30256592, "methods": [ 10636656, 10644512, @@ -27855,7 +27855,7 @@ }, { "type_name": "CCSBotManager::GrenadeBounceEvent", - "vtable_address": 30256896, + "vtable_address": 30256832, "methods": [ 10636416, 10644112, @@ -27893,7 +27893,7 @@ }, { "type_name": "CCSBotManager::HEGrenadeDetonateEvent", - "vtable_address": 30256608, + "vtable_address": 30256544, "methods": [ 10636704, 10644592, @@ -27931,7 +27931,7 @@ }, { "type_name": "CCSBotManager::HostageFollowsEvent", - "vtable_address": 30256272, + "vtable_address": 30256208, "methods": [ 10637040, 10645152, @@ -27969,7 +27969,7 @@ }, { "type_name": "CCSBotManager::HostageRescuedAllEvent", - "vtable_address": 30256320, + "vtable_address": 30256256, "methods": [ 10636992, 10645072, @@ -28007,7 +28007,7 @@ }, { "type_name": "CCSBotManager::MolotovDetonateEvent", - "vtable_address": 30256752, + "vtable_address": 30256688, "methods": [ 10636560, 10644352, @@ -28045,7 +28045,7 @@ }, { "type_name": "CCSBotManager::NavBlockedEvent", - "vtable_address": 30256944, + "vtable_address": 30256880, "methods": [ 10636368, 10644032, @@ -28083,7 +28083,7 @@ }, { "type_name": "CCSBotManager::PlayerDeathEvent", - "vtable_address": 30255552, + "vtable_address": 30255488, "methods": [ 10637760, 10646352, @@ -28121,7 +28121,7 @@ }, { "type_name": "CCSBotManager::PlayerFallDamageEvent", - "vtable_address": 30255600, + "vtable_address": 30255536, "methods": [ 10637712, 10646272, @@ -28159,7 +28159,7 @@ }, { "type_name": "CCSBotManager::PlayerFootstepEvent", - "vtable_address": 30255456, + "vtable_address": 30255392, "methods": [ 10637856, 10646512, @@ -28197,7 +28197,7 @@ }, { "type_name": "CCSBotManager::PlayerRadioEvent", - "vtable_address": 30255504, + "vtable_address": 30255440, "methods": [ 10637808, 10646432, @@ -28235,7 +28235,7 @@ }, { "type_name": "CCSBotManager::RoundEndEvent", - "vtable_address": 30255984, + "vtable_address": 30255920, "methods": [ 10637328, 10645632, @@ -28273,7 +28273,7 @@ }, { "type_name": "CCSBotManager::RoundFreezeEndEvent", - "vtable_address": 30256080, + "vtable_address": 30256016, "methods": [ 10637232, 10645472, @@ -28311,7 +28311,7 @@ }, { "type_name": "CCSBotManager::RoundPreStartEvent", - "vtable_address": 30256032, + "vtable_address": 30255968, "methods": [ 10637280, 10645552, @@ -28349,7 +28349,7 @@ }, { "type_name": "CCSBotManager::ServerShutdownEvent", - "vtable_address": 30256992, + "vtable_address": 30256928, "methods": [ 10636320, 10643952, @@ -28387,7 +28387,7 @@ }, { "type_name": "CCSBotManager::SmokeGrenadeDetonateEvent", - "vtable_address": 30256704, + "vtable_address": 30256640, "methods": [ 10636608, 10644432, @@ -28425,7 +28425,7 @@ }, { "type_name": "CCSBotManager::WeaponFireEvent", - "vtable_address": 30256368, + "vtable_address": 30256304, "methods": [ 10636944, 10644992, @@ -28463,7 +28463,7 @@ }, { "type_name": "CCSBotManager::WeaponFireOnEmptyEvent", - "vtable_address": 30256416, + "vtable_address": 30256352, "methods": [ 10636896, 10644912, @@ -28501,7 +28501,7 @@ }, { "type_name": "CCSBotManager::WeaponReloadEvent", - "vtable_address": 30256464, + "vtable_address": 30256400, "methods": [ 10636848, 10644832, @@ -28539,7 +28539,7 @@ }, { "type_name": "CCSBotManager::WeaponZoomEvent", - "vtable_address": 30256512, + "vtable_address": 30256448, "methods": [ 10636800, 10644752, @@ -28577,7 +28577,7 @@ }, { "type_name": "CCSChickenManager", - "vtable_address": 30279656, + "vtable_address": 30279592, "methods": [ 11414672, 9634384, @@ -28695,7 +28695,7 @@ }, { "type_name": "CCSChickenManager", - "vtable_address": 30280176, + "vtable_address": 30280112, "methods": [ 11409136, 11409840, @@ -28753,7 +28753,7 @@ }, { "type_name": "CCSEntitySpotting", - "vtable_address": 30182440, + "vtable_address": 30182376, "methods": [ 9892992, 9634384, @@ -28850,21 +28850,21 @@ }, { "type_name": "CCSEventLog", - "vtable_address": 30183056, + "vtable_address": 30182992, "methods": [ 9897504, 9897568, - 20409584, + 20409456, 9893008, 9893040, 9901904, 10054336, - 20410192, + 20410064, 10054288, - 20400432, - 20439648, - 20400432, - 20400432 + 20400304, + 20439520, + 20400304, + 20400304 ], "bases": [ { @@ -28918,7 +28918,7 @@ }, { "type_name": "CCSEventLog", - "vtable_address": 30183176, + "vtable_address": 30183112, "methods": [ 9634368, 9634384, @@ -29035,7 +29035,7 @@ }, { "type_name": "CCSFatDemoRecorder", - "vtable_address": 30276024, + "vtable_address": 30275960, "methods": [ 9634368, 11246592, @@ -29153,7 +29153,7 @@ }, { "type_name": "CCSFatDemoRecorder", - "vtable_address": 30276544, + "vtable_address": 30276480, "methods": [ 11251968, 11251792, @@ -29211,7 +29211,7 @@ }, { "type_name": "CCSFunFactMgr", - "vtable_address": 30240856, + "vtable_address": 30240792, "methods": [ 10546416, 10546752, @@ -29248,9 +29248,9 @@ }, { "type_name": "CCSGCServerSystem", - "vtable_address": 30166864, + "vtable_address": 30166800, "methods": [ - 22960512, + 22960448, 9885920, 9885984, 9634416, @@ -29296,7 +29296,7 @@ 9635056, 9635072, 9886480, - 22964800, + 22964736, 9635120, 9635136, 9635152, @@ -29312,12 +29312,12 @@ 9842224, 9842288, 9837568, - 22961552, - 22958720, - 22958592, - 22958592, - 22958592, - 22960592, + 22961488, + 22958656, + 22958528, + 22958528, + 22958528, + 22960528, 9837600, 9837616, 9837616, @@ -29391,13 +29391,13 @@ }, { "type_name": "CCSGCServerSystem", - "vtable_address": 30167504, + "vtable_address": 30167440, "methods": [ 9844208, 9845152, - 22963152, - 22963168, - 22963184 + 22963088, + 22963104, + 22963120 ], "bases": [ { @@ -29461,7 +29461,7 @@ }, { "type_name": "CCSGCServerSystem", - "vtable_address": 30167560, + "vtable_address": 30167496, "methods": [ 9844096, 9844112, @@ -29531,7 +29531,7 @@ }, { "type_name": "CCSGOPlayerAnimGraphState", - "vtable_address": 30194984, + "vtable_address": 30194920, "methods": [ 10060256 ], @@ -29544,7 +29544,7 @@ }, { "type_name": "CCSGOPlayerAnimGraphState", - "vtable_address": 31300040, + "vtable_address": 31299976, "methods": [], "bases": [], "model": { @@ -29555,9 +29555,9 @@ }, { "type_name": "CCSGOSteamWorksGameStatsServer", - "vtable_address": 30184896, + "vtable_address": 30184832, "methods": [ - 16655760, + 16655632, 9893456, 9893472, 9634416, @@ -29588,7 +29588,7 @@ 9634816, 9634832, 9893424, - 16685520, + 16685392, 9634880, 9893440, 9634912, @@ -29619,14 +29619,14 @@ 9897696, 9897776, 9894048, - 16686544, + 16686416, 10629616, 9893520, 9893536, - 16687472, + 16687344, 10427920, 10437616, - 16655952 + 16655824 ], "bases": [ { @@ -29702,11 +29702,11 @@ }, { "type_name": "CCSGOSteamWorksGameStatsServer", - "vtable_address": 30185472, + "vtable_address": 30185408, "methods": [ 9897728, 9897840, - 16689408 + 16689280 ], "bases": [ { @@ -29782,7 +29782,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 31019480, + "vtable_address": 31019416, "methods": [ 9634368, 9634384, @@ -29840,12 +29840,12 @@ 9635216, 9635232, 9635248, - 16604272, + 16604144, 9635280, - 16599408, - 16649824, - 16650224, - 16599392, + 16599280, + 16649696, + 16650096, + 16599264, 13035840, 13214208, 12857040, @@ -29863,8 +29863,8 @@ 12892496, 12857696, 12857712, - 16599424, - 16603392, + 16599296, + 16603264, 12855296 ], "bases": [ @@ -29908,7 +29908,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 31020152, + "vtable_address": 31020088, "methods": [ 13036048, 13214896, @@ -29969,7 +29969,7 @@ }, { "type_name": "CCSGO_TeamIntroCharacterPosition", - "vtable_address": 32567840, + "vtable_address": 32567776, "methods": [], "bases": [], "model": { @@ -29980,7 +29980,7 @@ }, { "type_name": "CCSGO_TeamIntroCharacterPosition", - "vtable_address": 32568032, + "vtable_address": 32567968, "methods": [], "bases": [], "model": { @@ -29991,7 +29991,7 @@ }, { "type_name": "CCSGO_TeamIntroCharacterPosition", - "vtable_address": 32568224, + "vtable_address": 32568160, "methods": [], "bases": [], "model": { @@ -30002,33 +30002,33 @@ }, { "type_name": "CCSGO_TeamIntroCounterTerroristPosition", - "vtable_address": 31013552, + "vtable_address": 31013488, "methods": [ 13506768, - 16607424, - 16608336, + 16607296, + 16608208, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16651456, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16651328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -30039,21 +30039,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16599344, - 16652080, - 16600480, + 26427360, + 16599216, + 16651952, + 16600352, 9635312, - 16611344, + 16611216, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -30077,83 +30077,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16602512, - 19840912, - 19834496, + 16602384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -30161,16 +30161,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -30191,7 +30191,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -30204,28 +30204,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -30236,7 +30236,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -30247,8 +30247,8 @@ 11742448, 9636784, 9636800, - 19857680, - 16599232 + 19857552, + 16599104 ], "bases": [ { @@ -30303,33 +30303,33 @@ }, { "type_name": "CCSGO_TeamIntroTerroristPosition", - "vtable_address": 31011576, + "vtable_address": 31011512, "methods": [ 13506768, - 16607280, - 16608176, + 16607152, + 16608048, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16651456, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16651328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -30340,21 +30340,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16599328, - 16652080, - 16600496, + 26427360, + 16599200, + 16651952, + 16600368, 9635312, - 16611216, + 16611088, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -30378,83 +30378,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16602512, - 19840912, - 19834496, + 16602384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -30462,16 +30462,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -30492,7 +30492,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -30505,28 +30505,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -30537,7 +30537,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -30548,8 +30548,8 @@ 11742448, 9636784, 9636800, - 19857680, - 16599232 + 19857552, + 16599104 ], "bases": [ { @@ -30604,7 +30604,7 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition", - "vtable_address": 31005648, + "vtable_address": 31005584, "methods": [ 13506768 ], @@ -30639,7 +30639,7 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition", - "vtable_address": 32568416, + "vtable_address": 32568352, "methods": [], "bases": [], "model": { @@ -30650,7 +30650,7 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition", - "vtable_address": 32568992, + "vtable_address": 32568928, "methods": [], "bases": [], "model": { @@ -30661,39 +30661,39 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_agentItem", - "vtable_address": 31004856, + "vtable_address": 31004792, "methods": [ 10059520, - 16602656, - 16602672, - 22969488, - 22601456, - 22600304, - 22628512, - 22629456, - 22619728, - 22620624, - 22633424, - 22606240, - 22544832, - 22605456, + 16602528, + 16602544, + 22969424, + 22601328, + 22600176, + 22628384, + 22629328, + 22619600, + 22620496, + 22633296, + 22606112, + 22544704, + 22605328, 10059440, 10056928, 10056912, - 22962864, - 22972144, - 22963008, - 22962736, - 22964960, + 22962800, + 22972080, + 22962944, + 22962672, + 22964896, 10056896, 10059376, - 22962416, - 22962544, - 22962640, - 22971728, - 16631488, + 22962352, + 22962480, + 22962576, + 22971664, + 16631360, 10056880, - 16599120 + 16598992 ], "bases": [ { @@ -30726,39 +30726,39 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_glovesItem", - "vtable_address": 31005120, + "vtable_address": 31005056, "methods": [ 10059520, - 16602592, - 16602608, - 22969488, - 22601456, - 22600304, - 22628512, - 22629456, - 22619728, - 22620624, - 22633424, - 22606240, - 22544832, - 22605456, + 16602464, + 16602480, + 22969424, + 22601328, + 22600176, + 22628384, + 22629328, + 22619600, + 22620496, + 22633296, + 22606112, + 22544704, + 22605328, 10059440, 10056928, 10056912, - 22962864, - 22972144, - 22963008, - 22962736, - 22964960, + 22962800, + 22972080, + 22962944, + 22962672, + 22964896, 10056896, 10059376, - 22962416, - 22962544, - 22962640, - 22971728, - 16631168, + 22962352, + 22962480, + 22962576, + 22971664, + 16631040, 10056880, - 16599152 + 16599024 ], "bases": [ { @@ -30791,39 +30791,39 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_weaponItem", - "vtable_address": 31005384, + "vtable_address": 31005320, "methods": [ 10059520, - 16602528, - 16602544, - 22969488, - 22601456, - 22600304, - 22628512, - 22629456, - 22619728, - 22620624, - 22633424, - 22606240, - 22544832, - 22605456, + 16602400, + 16602416, + 22969424, + 22601328, + 22600176, + 22628384, + 22629328, + 22619600, + 22620496, + 22633296, + 22606112, + 22544704, + 22605328, 10059440, 10056928, 10056912, - 22962864, - 22972144, - 22963008, - 22962736, - 22964960, + 22962800, + 22972080, + 22962944, + 22962672, + 22964896, 10056896, 10059376, - 22962416, - 22962544, - 22962640, - 22971728, - 16630848, + 22962352, + 22962480, + 22962576, + 22971664, + 16630720, 10056880, - 16599184 + 16599056 ], "bases": [ { @@ -30856,7 +30856,7 @@ }, { "type_name": "CCSGO_TeamSelectCharacterPosition", - "vtable_address": 32568608, + "vtable_address": 32568544, "methods": [], "bases": [], "model": { @@ -30867,7 +30867,7 @@ }, { "type_name": "CCSGO_TeamSelectCharacterPosition", - "vtable_address": 32568800, + "vtable_address": 32568736, "methods": [], "bases": [], "model": { @@ -30878,33 +30878,33 @@ }, { "type_name": "CCSGO_TeamSelectCounterTerroristPosition", - "vtable_address": 31009600, + "vtable_address": 31009536, "methods": [ 13506768, - 16607136, - 16608016, + 16607008, + 16607888, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16651456, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16651328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -30915,21 +30915,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16599312, - 16652080, - 16600512, + 26427360, + 16599184, + 16651952, + 16600384, 9635312, - 16611088, + 16610960, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -30953,83 +30953,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16602512, - 19840912, - 19834496, + 16602384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -31037,16 +31037,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -31067,7 +31067,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -31080,28 +31080,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -31112,7 +31112,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -31123,8 +31123,8 @@ 11742448, 9636784, 9636800, - 19857680, - 16599216 + 19857552, + 16599088 ], "bases": [ { @@ -31179,33 +31179,33 @@ }, { "type_name": "CCSGO_TeamSelectTerroristPosition", - "vtable_address": 31007624, + "vtable_address": 31007560, "methods": [ 13506768, - 16606992, - 16607856, + 16606864, + 16607728, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16651456, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16651328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -31216,21 +31216,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16599296, - 16652080, - 16600528, + 26427360, + 16599168, + 16651952, + 16600400, 9635312, - 16610960, + 16610832, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -31254,83 +31254,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16602512, - 19840912, - 19834496, + 16602384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -31338,16 +31338,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -31368,7 +31368,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -31381,28 +31381,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -31413,7 +31413,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -31424,8 +31424,8 @@ 11742448, 9636784, 9636800, - 19857680, - 16599216 + 19857552, + 16599088 ], "bases": [ { @@ -31480,7 +31480,7 @@ }, { "type_name": "CCSGO_WingmanIntroCharacterPosition", - "vtable_address": 32567456, + "vtable_address": 32567392, "methods": [], "bases": [], "model": { @@ -31491,7 +31491,7 @@ }, { "type_name": "CCSGO_WingmanIntroCharacterPosition", - "vtable_address": 32567648, + "vtable_address": 32567584, "methods": [], "bases": [], "model": { @@ -31502,33 +31502,33 @@ }, { "type_name": "CCSGO_WingmanIntroCounterTerroristPosition", - "vtable_address": 31017504, + "vtable_address": 31017440, "methods": [ 13506768, - 16607712, - 16608656, + 16607584, + 16608528, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16651456, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16651328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -31539,21 +31539,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16599376, - 16652080, - 16600448, + 26427360, + 16599248, + 16651952, + 16600320, 9635312, - 16611600, + 16611472, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -31577,83 +31577,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16602512, - 19840912, - 19834496, + 16602384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -31661,16 +31661,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -31691,7 +31691,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -31704,28 +31704,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -31736,7 +31736,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -31747,8 +31747,8 @@ 11742448, 9636784, 9636800, - 19857680, - 16599248 + 19857552, + 16599120 ], "bases": [ { @@ -31814,33 +31814,33 @@ }, { "type_name": "CCSGO_WingmanIntroTerroristPosition", - "vtable_address": 31015528, + "vtable_address": 31015464, "methods": [ 13506768, - 16607568, - 16608496, + 16607440, + 16608368, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16651456, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16651328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -31851,21 +31851,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16599360, - 16652080, - 16600464, + 26427360, + 16599232, + 16651952, + 16600336, 9635312, - 16611472, + 16611344, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -31889,83 +31889,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16602512, - 19840912, - 19834496, + 16602384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -31973,16 +31973,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -32003,7 +32003,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -32016,28 +32016,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -32048,7 +32048,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -32059,8 +32059,8 @@ 11742448, 9636784, 9636800, - 19857680, - 16599248 + 19857552, + 16599120 ], "bases": [ { @@ -32126,11 +32126,11 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 30975896, + "vtable_address": 30975832, "methods": [ 15983888, 15983760, - 18820032, + 18819904, 15982784, 15983568, 15974080, @@ -32139,46 +32139,46 @@ 15983440, 15974176, 15974208, - 18811872, + 18811744, 15972544, 16008336, - 19523552, - 19512208, + 19523424, + 19512080, 15972624, - 18811888, + 18811760, 15971408, 15971488, 15971504, 16026512, 15984848, - 19523520, - 18812000, + 19523392, + 18811872, 15982800, - 19512176, - 18844512, - 18814816, - 16305920, - 19742432, + 19512048, + 18844384, + 18814688, + 16305792, + 19742304, 15971520, - 18812080, + 18811952, 15971600, 15972560, 15972512, - 18811936, - 18811952, + 18811808, + 18811824, 15971424, 15984928, - 18811968, - 18819824, - 18811952, - 18811984, + 18811840, + 18819696, + 18811824, + 18811856, 16002032, 16002096, 15971632, 15971664, 15971456, - 19272432, - 18812048 + 19272304, + 18811920 ], "bases": [ { @@ -32331,11 +32331,11 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 30976320, + "vtable_address": 30976256, "methods": [ 15983952, 15983824, - 18842592, + 18842464, 15993904, 15983664, 15974096, @@ -32347,21 +32347,21 @@ 15971616, 16000128, 15993616, - 18838688, - 18838704, - 18838720, + 18838560, + 18838576, + 18838592, 15971440, 16005152, - 18838736, - 18840192, - 18838768, - 18838752, + 18838608, + 18840064, + 18838640, + 18838624, 16002160, 16002224, 15971648, 15971680, 15971472, - 19272496 + 19272368 ], "bases": [ { @@ -32514,7 +32514,7 @@ }, { "type_name": "CCSGameModeRules", - "vtable_address": 30973848, + "vtable_address": 30973784, "methods": [ 15975408, 15998640, @@ -32537,7 +32537,7 @@ }, { "type_name": "CCSGameModeRules", - "vtable_address": 32551840, + "vtable_address": 32551776, "methods": [], "bases": [], "model": { @@ -32548,19 +32548,19 @@ }, { "type_name": "CCSGameModeRules_ArmsRace", - "vtable_address": 30974056, + "vtable_address": 30973992, "methods": [ 15975376, 16000624, 16001040, 15971808, - 16472192, - 16462160, + 16472064, + 16462032, 15971856, 15975120, 16155872, 16018832, - 16308672 + 16308544 ], "bases": [ { @@ -32582,19 +32582,19 @@ }, { "type_name": "CCSGameModeRules_Deathmatch", - "vtable_address": 30974160, + "vtable_address": 30974096, "methods": [ 15975360, 16007872, 16007264, 15971808, - 16474880, - 16462480, + 16474752, + 16462352, 15971856, 16148736, 16156720, 10057520, - 16356240 + 16356112 ], "bases": [ { @@ -32616,7 +32616,7 @@ }, { "type_name": "CCSGameModeRules_Noop", - "vtable_address": 30973952, + "vtable_address": 30973888, "methods": [ 15975392, 15998704, @@ -32650,7 +32650,7 @@ }, { "type_name": "CCSGameRules", - "vtable_address": 30974576, + "vtable_address": 30974512, "methods": [ 15975520, 15970800, @@ -32659,7 +32659,7 @@ 15970832, 15970848, 15970864, - 16320096, + 16319968, 15972320, 15970880, 15970896, @@ -32671,23 +32671,23 @@ 15970960, 15978976, 15970976, - 16476912, - 16478144, - 21362512, + 16476784, + 16478016, + 21362384, 15981696, 15977776, 15970992, 15971008, - 20726240, - 21065744, - 21065760, - 21065776, + 20726112, + 21065616, + 21065632, + 21065648, 16025584, 15981568, 15972432, 15972448, 15971024, - 21065728, + 21065600, 15971040, 16048768, 15972496, @@ -32698,40 +32698,40 @@ 15971104, 12854896, 15971120, - 21072896, + 21072768, 16130624, 15972736, 15972080, - 16488944, - 20619088, + 16488816, + 20618960, 15992128, 15971136, 15971152, 15987296, - 21065728, - 21065792, + 21065600, + 21065664, 15981008, - 16462784, + 16462656, 15971168, 16024384, 15971184, - 16197296, + 16197328, 15971584, 16021632, 16127632, 15981904, 15971200, - 20655936, - 20653968, - 21065824, - 21065840, - 21068704, - 21072848, + 20655808, + 20653840, + 21065696, + 21065712, + 21068576, + 21072720, 15980832, 15981712, - 22307664, + 22307536, 15971216, - 16499696, + 16499568, 15971232, 15971248, 15971536, @@ -32742,33 +32742,33 @@ 16011376, 15992208, 15971264, - 20618416, + 20618288, 15971280, - 21065888, + 21065760, 16001984, 16004864, - 20628784, + 20628656, 15971296, - 20621600, + 20621472, 15971312, 15971328, 15971344, - 20624576, + 20624448, 16103360, - 20758288, - 20618560, - 20642800, - 20653824, - 20644352, - 20644128, - 20618576, + 20758160, + 20618432, + 20642672, + 20653696, + 20644224, + 20644000, + 20618448, + 20645088, + 20618464, 20645216, - 20618592, - 20645344, - 20757264, + 20757136, 15971360, - 20618624, - 20618640, + 20618496, + 20618512, 15982752, 15971376, 15971552, @@ -32779,8 +32779,8 @@ 16007712, 16016864, 16011936, - 16257648, - 16495744 + 16257712, + 16495616 ], "bases": [ { @@ -32844,7 +32844,7 @@ }, { "type_name": "CCSGameRules", - "vtable_address": 30975624, + "vtable_address": 30975560, "methods": [ 9890768, 9890784, @@ -32913,7 +32913,7 @@ }, { "type_name": "CCSGameRules*", - "vtable_address": 30991952, + "vtable_address": 30991888, "methods": [], "bases": [], "model": { @@ -32924,11 +32924,11 @@ }, { "type_name": "CCSGameRules::NetworkVar_m_RetakeRules", - "vtable_address": 30969600, + "vtable_address": 30969536, "methods": [ - 16224320, - 16224336, - 16581216, + 16224384, + 16224400, + 16581088, 15978944, 15977408, 15971392, @@ -32976,32 +32976,32 @@ }, { "type_name": "CCSGameRulesProxy", - "vtable_address": 30986408, + "vtable_address": 30986344, "methods": [ 13506768, 15983200, 15983232, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 12336352, 9635872, 9665808, @@ -33013,12 +33013,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15972064, 15983424, 15975504, @@ -33026,8 +33026,8 @@ 16027312, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -33051,83 +33051,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20723392, - 19840912, - 19834496, + 20723264, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -33135,16 +33135,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -33165,7 +33165,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -33178,28 +33178,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -33210,7 +33210,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -33221,7 +33221,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -33265,52 +33265,52 @@ }, { "type_name": "CCSGameStats", - "vtable_address": 30183784, + "vtable_address": 30183720, "methods": [ 9893072, 9893088, 9893104, 9893120, 9893136, - 19275968, - 19014736, - 19014800, + 19275840, + 19014608, + 19014672, 9896464, 9896528, - 19014816, - 19014864, + 19014688, + 19014736, 9893152, 9894304, 9893168, 9893184, 9893200, - 18814896, - 18814912, + 18814768, + 18814784, 9893216, 9909840, 9943408, 9943424, 9910208, 9948432, - 19014912, - 19275872, - 19015152, - 19015168, - 18814928, - 19015472, - 19015568, - 18812512, - 19015216, + 19014784, + 19275744, + 19015024, + 19015040, + 18814800, + 19015344, + 19015440, + 18812384, + 19015088, + 19015552, + 19015616, 19015680, 19015744, - 19015808, - 19015872, 9893232, 9893248, - 19015920, - 19015936, - 18814944, - 18811952, + 19015792, + 19015808, + 18814816, + 18811824, 9893264, 9893280, 9893296, @@ -33404,7 +33404,7 @@ }, { "type_name": "CCSGameStats", - "vtable_address": 30184312, + "vtable_address": 30184248, "methods": [ 10013600, 10013728, @@ -33482,7 +33482,7 @@ }, { "type_name": "CCSGameStats", - "vtable_address": 30184352, + "vtable_address": 30184288, "methods": [ 9893904, 9634384, @@ -33619,7 +33619,7 @@ }, { "type_name": "CCSGameStats", - "vtable_address": 30184864, + "vtable_address": 30184800, "methods": [ 9907264, 9901888 @@ -33696,52 +33696,52 @@ }, { "type_name": "CCSHLTVDirector", - "vtable_address": 30185704, + "vtable_address": 30185640, "methods": [ 9897120, 9897264, - 20861184, + 20861056, 9894176, 9894208, 9902064, - 20619184, + 20619056, 10055088, - 20866240, - 20619152, - 20637392, - 20619216, - 20619232, - 20619264, - 20619200, + 20866112, + 20619024, + 20637264, + 20619088, + 20619104, + 20619136, + 20619072, 9894256, - 20811824, - 20633296, + 20811696, + 20633168, 9894112, - 20687024, - 20686304, - 20634192, - 20641728, + 20686896, + 20686176, + 20634064, + 20641600, 9897088, - 20619136, - 20866160, - 20733024, - 20866448, + 20619008, + 20866032, + 20732896, + 20866320, 9894144, - 20867056, - 20742672, - 20812288, - 20742640, - 20743968, - 20812784, - 20814096, - 20732800, - 20665376, - 20662528, - 20816496, - 20866544, - 20815632, - 20653104, - 20745072, + 20866928, + 20742544, + 20812160, + 20742512, + 20743840, + 20812656, + 20813968, + 20732672, + 20665248, + 20662400, + 20816368, + 20866416, + 20815504, + 20652976, + 20744944, 10055632, 9894160 ], @@ -33807,11 +33807,11 @@ }, { "type_name": "CCSHLTVDirector", - "vtable_address": 30186088, + "vtable_address": 30186024, "methods": [ - 20643248, + 20643120, 9634384, - 20868096, + 20867968, 9634416, 9634432, 9634448, @@ -33825,7 +33825,7 @@ 9634576, 9634592, 9634608, - 20868000, + 20867872, 9634640, 9634656, 9634672, @@ -33840,7 +33840,7 @@ 9634816, 9634832, 9634848, - 20733504, + 20733376, 9634880, 9634896, 9634912, @@ -33934,27 +33934,27 @@ }, { "type_name": "CCSHLTVDirector", - "vtable_address": 30186600, + "vtable_address": 30186536, "methods": [ 9897168, 9897344, - 20644096, + 20643968, 10055616, - 20868176, - 20647728, - 20655568, - 20643600, - 20645968, - 20644112, - 20643584, + 20868048, + 20647600, + 20655440, + 20643472, + 20645840, + 20643984, + 20643456, 9901872, - 20817472, - 20646656, + 20817344, + 20646528, 9894128, - 20687904, - 20687008, - 20654672, - 20656512, + 20687776, + 20686880, + 20654544, + 20656384, 9897104 ], "bases": [ @@ -34019,10 +34019,10 @@ }, { "type_name": "CCSHitboxSystem", - "vtable_address": 31274656, + "vtable_address": 31274592, "methods": [ - 17305440, - 17264384 + 17305312, + 17264256 ], "bases": [ { @@ -34044,21 +34044,21 @@ }, { "type_name": "CCSInventoryManager", - "vtable_address": 31271392, + "vtable_address": 31271328, "methods": [ + 17244144, 17244272, - 17244400, - 17244496, - 17222912, + 17244368, + 17222784, 9634432, 9634448, 9634464, - 17226560, - 22622592, + 17226432, + 22622464, 9634512, 9634528, 9634544, - 22568752, + 22568624, 9634576, 9634592, 9634608, @@ -34102,16 +34102,16 @@ 9635216, 9635232, 9635248, - 17225440, + 17225312, 9635280, - 17225040, - 17253152, - 17253248, - 17222896, - 22544848, - 17222816, - 17222832, - 17222928 + 17224912, + 17253024, + 17253120, + 17222768, + 22544720, + 17222688, + 17222704, + 17222800 ], "bases": [ { @@ -34155,11 +34155,11 @@ }, { "type_name": "CCSMapEntityFilter", - "vtable_address": 30974472, + "vtable_address": 30974408, "methods": [ 15973792, 15975248, - 16262752 + 16262816 ], "bases": [ { @@ -34181,33 +34181,33 @@ }, { "type_name": "CCSMinimapBoundary", - "vtable_address": 30997584, + "vtable_address": 30997520, "methods": [ 13506768, - 16503024, - 16503040, + 16502896, + 16502912, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -34218,21 +34218,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16501312, - 16598832, - 16502368, + 26427360, + 16501184, + 16598704, + 16502240, 9635312, - 16508064, + 16507936, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -34256,83 +34256,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16503424, - 19840912, - 19834496, + 16503296, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -34340,16 +34340,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -34370,7 +34370,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -34383,28 +34383,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -34415,7 +34415,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -34426,7 +34426,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -34459,23 +34459,23 @@ }, { "type_name": "CCSNavArea", - "vtable_address": 30317400, + "vtable_address": 30317336, "methods": [ - 28810112, + 28810048, 10629424, 11658112, 11658448, - 28060960, - 28079664, + 28060896, + 28079600, 10427808, 9892912, 10628816, 11694720, - 28156000, + 28155936, 11654512, 11654512, 10425008, - 28063760, + 28063696, 10440176, 11667728, 11656048, @@ -34526,32 +34526,32 @@ }, { "type_name": "CCSObserverPawn", - "vtable_address": 30186776, + "vtable_address": 30186712, "methods": [ 13530976, 9896560, 9896592, - 19956928, - 19956992, - 19957600, + 19956800, + 19956864, + 19957472, 10302560, - 17342176, - 26419632, - 18009552, - 26419200, - 20087984, + 17342048, + 26419568, + 18009424, + 26419136, + 20087856, 10061136, 10084992, - 19835392, - 19835328, - 18003520, - 19954768, - 18291712, - 19957728, - 19957744, + 19835264, + 19835200, + 18003392, + 19954640, + 18291584, + 19957600, + 19957616, 11747408, - 19958160, - 19829152, + 19958032, + 19829024, 10056720, 9635872, 9665808, @@ -34563,21 +34563,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9894272, 10056688, 9896672, 9635312, 9911552, - 18308160, + 18308032, 9635328, - 20115072, - 19871664, + 20114944, + 19871536, 9637008, 9637024, 9837040, @@ -34589,95 +34589,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9891392, 9891456, 9636864, 9636912, - 19911552, + 19911424, 9603680, - 19961344, + 19961216, 11742320, - 18042720, - 19833152, - 19961264, + 18042592, + 19833024, + 19961136, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 9897072, - 19953152, - 19953488, + 19953024, + 19953360, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19961024, - 19834800, + 19960896, + 19834672, 10078704, 9637088, 9897056, 9902592, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20008800, + 20008672, 11749776, - 18014848, - 18211472, - 20026816, - 19911296, - 19962592, + 18014720, + 18211344, + 20026688, + 19911168, + 19962464, 9635968, 9635984, - 17694032, + 17693904, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, - 18122512, - 18009856, + 18122384, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -34685,23 +34685,23 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 18122800, + 19828528, + 18122672, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, 9636224, 9637248, - 18004864, + 18004736, 9636256, 9642208, 9636272, @@ -34715,43 +34715,43 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 10423200, 11753024, 11757136, - 18125328, - 18124928, - 18004880, - 18004912, + 18125200, + 18124800, + 18004752, + 18004784, 9636448, 9891472, 9636464, - 18010528, + 18010400, 9636480, - 19959200, - 19828576, + 19959072, + 19828448, 9641744, 9637200, - 19956880, - 19833072, - 21106016, + 19956752, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, - 18126944, - 20104112, + 18126816, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, - 18004864, + 19828688, + 19835152, + 19914928, + 18004736, 9636656, 9636672, 9636688, @@ -34759,8 +34759,8 @@ 9636720, 9636736, 9636752, - 18126720, - 21066880, + 18126592, + 21066752, 11742352, 11742320, 11742400, @@ -34771,105 +34771,105 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 20052016, - 18004240, - 18004224, + 18004096, + 18010896, + 20051888, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18256224, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18256096, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, - 19956704, - 18010448, - 18003632, + 19956576, + 18010320, + 18003504, 9892880, - 18150272, + 18150144, 9837232, - 18094832, - 18124768, - 18003968, + 18094704, + 18124640, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19956496, - 19828528, - 19917152, - 19917696, - 9901232, - 19918560, + 19956368, + 19828400, + 19917024, 19917568, + 9901232, + 19918432, + 19917440, 9897040, 9897024, 9901360, 9901312, - 18122784, + 18122656, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19829440, + 19829312, 9890928, - 19960592, + 19960464, 9890992, 9891008, 9891024, @@ -34877,14 +34877,14 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 9892896, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, 10071568, @@ -34892,72 +34892,72 @@ 9891168, 9891184, 9891200, - 17275152, + 17275024, 9891216, - 17275328, + 17275200, 9891232, - 17293648, - 17275264, - 19952224, - 19953984, + 17293520, + 17275136, + 19952096, + 19953856, 10319360, 9891248, - 18012624, - 17342224, + 18012496, + 17342096, 10264688, 9891264, - 19955600, - 19829408, - 20017872, + 19955472, + 19829280, + 20017744, 9891280, - 18126864, + 18126736, 9910032, 10057744, 9891296, 9891312, - 18125808, - 18126048, - 18126272, - 18124672, + 18125680, + 18125920, + 18126144, + 18124544, 9891328, - 19962768, + 19962640, 9891344, - 19959712, - 19843792, - 19828896, - 19954720, + 19959584, + 19843664, + 19828768, + 19954592, 10063776, 9891360, 10265424, - 19959184, - 18124704, - 19958896, + 19959056, + 18124576, + 19958768, 10061328, 9891376, 10057728, - 19957392, - 19958224, - 19958480, + 19957264, + 19958096, + 19958352, 9603696, 9908880, - 17586112, + 17585984, 9891408, 9891424, 9891440, - 19963440, - 19829488, - 19963712, - 19963856, - 19962352, + 19963312, + 19829360, + 19963584, + 19963728, + 19962224, 10061952, 9901136, 9907376, 9901008, 9907584, 9895008, - 17550688, - 17277792, - 17602784, + 17550560, + 17277664, + 17602656, 9909568, 10060800, 10308880, @@ -35082,7 +35082,7 @@ }, { "type_name": "CCSObserverPawn", - "vtable_address": 30190272, + "vtable_address": 30190208, "methods": [ 9891504, 9891520, @@ -35207,7 +35207,7 @@ }, { "type_name": "CCSObserverStatePickingTeam", - "vtable_address": 30190320, + "vtable_address": 30190256, "methods": [ 9891568, 9891584, @@ -35233,38 +35233,38 @@ }, { "type_name": "CCSObserver_CameraServices", - "vtable_address": 31274688, + "vtable_address": 31274624, "methods": [ - 17254288, - 17253440, - 17259760, - 17259856, - 19296480, - 17342768, + 17254160, + 17253312, + 17259632, + 17259728, + 19296352, + 17342640, 10057200, 10057216, 10057232, - 19296480, - 19369120, - 17253408, - 19405920, + 19296352, + 19368992, + 17253280, + 19405792, 10057312, 10057328, 10057344, 10057360, - 19304640, - 17254480, - 17260528, + 19304512, + 17254352, + 17260400, 12856192, - 19308816, - 19304448, - 17295200, - 17301936, - 19300192, - 17297264, - 19296496, - 19315248, - 17253424 + 19308688, + 19304320, + 17295072, + 17301808, + 19300064, + 17297136, + 19296368, + 19315120, + 17253296 ], "bases": [ { @@ -35308,52 +35308,52 @@ }, { "type_name": "CCSObserver_MovementServices", - "vtable_address": 31274944, + "vtable_address": 31274880, "methods": [ - 17254304, - 17253584, - 17259984, - 17260064, - 19296480, - 19364704, - 19299216, + 17254176, + 17253456, + 17259856, + 17259936, + 19296352, + 19364576, + 19299088, 10057216, - 19299120, + 19298992, 10057248, 10057264, 10057280, - 19366624, + 19366496, 10057312, 10057328, 10057344, 10057360, 10057376, - 17255168, - 17256112, - 17253456, - 17254704, - 19309312, - 19461168, - 17274624, - 19298880, - 17253472, - 17254528, - 17254768, - 17254880, - 19296512, - 19296528, - 17293728, - 17253488, - 17253504, - 19308320, - 19299376, - 17253568, - 17253520, - 19296544, - 19311728, - 17253536, - 19313504, - 17253552 + 17255040, + 17255984, + 17253328, + 17254576, + 19309184, + 19461040, + 17274496, + 19298752, + 17253344, + 17254400, + 17254640, + 17254752, + 19296384, + 19296400, + 17293600, + 17253360, + 17253376, + 19308192, + 19299248, + 17253440, + 17253392, + 19296416, + 19311600, + 17253408, + 19313376, + 17253424 ], "bases": [ { @@ -35386,18 +35386,18 @@ }, { "type_name": "CCSObserver_ObserverServices", - "vtable_address": 31275920, + "vtable_address": 31275856, "methods": [ - 17254320, - 17253600, - 17256224, - 17258736, + 17254192, + 17253472, + 17256096, + 17258608, 10057184, - 17339120, + 17338992, 10057200, 10057216, 10057232, - 19463968, + 19463840, 10057264, 10057280, 10057296, @@ -35406,22 +35406,22 @@ 10057344, 10057360, 10057376, - 17342144, - 17263232, - 19497408, + 17342016, + 17263104, + 19497280, 9908240, - 19471584, - 19463984, - 17339456, - 17338816, - 19468928, - 17336400, - 17260176, - 17270976, - 17335504, - 17339744, - 17338800, - 17340064 + 19471456, + 19463856, + 17339328, + 17338688, + 19468800, + 17336272, + 17260048, + 17270848, + 17335376, + 17339616, + 17338672, + 17339936 ], "bases": [ { @@ -35454,18 +35454,18 @@ }, { "type_name": "CCSObserver_UseServices", - "vtable_address": 31276272, + "vtable_address": 31276208, "methods": [ - 17254336, - 17253680, - 17255392, - 17255408, + 17254208, + 17253552, + 17255264, + 17255280, 10057184, - 17253376, + 17253248, 10057200, 10057216, 10057232, - 17270032, + 17269904, 10057264, 10057280, 10057296, @@ -35474,11 +35474,11 @@ 10057344, 10057360, 10057376, - 17342736, - 19466240, - 16914000, - 17253648, - 17253664 + 17342608, + 19466112, + 16913872, + 17253520, + 17253536 ], "bases": [ { @@ -35511,33 +35511,33 @@ }, { "type_name": "CCSPetPlacement", - "vtable_address": 30999552, + "vtable_address": 30999488, "methods": [ 13506768, - 16503088, - 16503104, + 16502960, + 16502976, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -35548,21 +35548,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16501328, - 16598832, - 16502384, + 26427360, + 16501200, + 16598704, + 16502256, 9635312, - 16508192, + 16508064, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -35586,83 +35586,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16503408, - 19840912, - 19834496, + 16503280, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -35670,16 +35670,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -35700,7 +35700,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -35713,28 +35713,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -35745,7 +35745,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -35756,7 +35756,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -35789,7 +35789,7 @@ }, { "type_name": "CCSPhysicsPushEntities", - "vtable_address": 30209432, + "vtable_address": 30209368, "methods": [ 10129232, 10130496, @@ -35815,32 +35815,32 @@ }, { "type_name": "CCSPlace", - "vtable_address": 30190360, + "vtable_address": 30190296, "methods": [ 13522144, 9906448, 9906816, - 18377504, - 26419168, + 18377376, + 26419104, 9896912, - 18010864, + 18010736, 9896848, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10056704, 9635872, 9665808, @@ -35852,21 +35852,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9894288, 9896960, 9896688, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -35890,83 +35890,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -35974,16 +35974,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -36004,7 +36004,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -36017,28 +36017,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -36049,7 +36049,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -36060,35 +36060,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -36153,7 +36153,7 @@ }, { "type_name": "CCSPlace", - "vtable_address": 30192552, + "vtable_address": 30192488, "methods": [ 9906624, 9907040 @@ -36221,38 +36221,38 @@ }, { "type_name": "CCSPlayerBase_CameraServices", - "vtable_address": 31279088, + "vtable_address": 31279024, "methods": [ - 17343856, - 17282544, - 17282800, - 17282896, - 19296480, - 17342768, + 17343728, + 17282416, + 17282672, + 17282768, + 19296352, + 17342640, 10057200, 10057216, 10057232, - 19296480, - 19369120, - 17253408, - 19405920, + 19296352, + 19368992, + 17253280, + 19405792, 10057312, 10057328, 10057344, 10057360, - 19304640, - 17534256, - 17260528, + 19304512, + 17534128, + 17260400, 12856192, - 19308816, - 19304448, - 17295200, - 17301936, - 19300192, - 17297264, - 19296496, - 19315248, - 17253424 + 19308688, + 19304320, + 17295072, + 17301808, + 19300064, + 17297136, + 19296368, + 19315120, + 17253296 ], "bases": [ { @@ -36285,7 +36285,7 @@ }, { "type_name": "CCSPlayerBase_CameraServices", - "vtable_address": 32615264, + "vtable_address": 32615200, "methods": [], "bases": [], "model": { @@ -36296,7 +36296,7 @@ }, { "type_name": "CCSPlayerBase_CameraServices", - "vtable_address": 32624128, + "vtable_address": 32624064, "methods": [], "bases": [], "model": { @@ -36307,34 +36307,34 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 31280664, + "vtable_address": 31280600, "methods": [ - 18268672, - 17482032, - 17482432, - 18377712, - 18011232, + 18268544, + 17481904, + 17482304, + 18377584, + 18011104, 12023584, - 20141632, - 17537184, - 26419632, - 26419200, - 26419200, - 18378400, - 17537392, - 20141328, - 19835392, - 19835328, + 20141504, + 17537056, + 26419568, + 26419136, + 26419136, + 18378272, + 17537264, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 18378784, - 19829152, - 17550512, - 17342896, + 18378656, + 19829024, + 17550384, + 17342768, 9665808, 9641296, 9639920, @@ -36344,21 +36344,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17343136, - 17549920, - 17343920, + 26427360, + 17343008, + 17549792, + 17343792, 9635312, - 17358288, + 17358160, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -36382,83 +36382,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 18011216, - 18004384, - 19834496, + 18011088, + 18004256, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 17539744, - 19834800, + 17539616, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, - 18004400, + 18004272, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -36466,16 +36466,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 18116640, + 19828528, + 18116512, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -36483,7 +36483,7 @@ 9636224, 9637248, 9636240, - 17342976, + 17342848, 9642208, 9636272, 9636288, @@ -36496,7 +36496,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -36509,30 +36509,30 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, - 18004256, + 18004128, 9636656, 9636672, 9636688, @@ -36541,7 +36541,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -36552,45 +36552,45 @@ 11742448, 9636784, 9636800, - 19857680, - 17536768, - 17537072, - 17549328, - 18014752, - 17342832, - 17342848, + 19857552, + 17536640, + 17536944, + 17549200, + 18014624, + 17342704, + 17342720, + 17342736, + 17342752, + 17537312, + 17537552, + 17537888, + 18380032, + 18056704, + 18037392, + 17353328, + 17447984, + 17549264, + 17436800, + 17354400, + 17352176, + 18004240, 17342864, + 18017664, + 17344768, 17342880, - 17537440, - 17537680, - 17538016, - 18380160, - 18056832, - 18037520, - 17353456, - 17448112, - 17549392, - 17436928, - 17354528, - 17352304, - 18004368, - 17342992, - 18017792, - 17344896, - 17343008, - 17549888, - 17343024, - 17422400, - 17350272, - 17549856, - 17343184, - 17539088, - 17343040, + 17549760, + 17342896, + 17422272, + 17350144, + 17549728, 17343056, - 17355360, - 17425136, - 17344640, - 17456752 + 17538960, + 17342912, + 17342928, + 17355232, + 17425008, + 17344512, + 17456624 ], "bases": [ { @@ -36655,11 +36655,11 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 31282936, + "vtable_address": 31282872, "methods": [ - 17482416, - 17482480, - 17351808 + 17482288, + 17482352, + 17351680 ], "bases": [ { @@ -36724,19 +36724,19 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices", - "vtable_address": 31299264, + "vtable_address": 31299200, "methods": [ - 17794336, - 17793664, - 17801904, - 17802480, - 17996608, - 17793408, - 17793424, - 17793440, - 17793456, - 17793648, - 17795008 + 17794208, + 17793536, + 17801776, + 17802352, + 17996480, + 17793280, + 17793296, + 17793312, + 17793328, + 17793520, + 17794880 ], "bases": [ { @@ -36758,12 +36758,12 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices::NetworkVar_m_matchStats", - "vtable_address": 31299208, + "vtable_address": 31299144, "methods": [ - 16600432, - 17794496, + 16600304, + 17794368, 15977504, - 17794992, + 17794864, 15980768 ], "bases": [ @@ -36797,19 +36797,19 @@ }, { "type_name": "CCSPlayerController_DamageServices", - "vtable_address": 31299368, + "vtable_address": 31299304, "methods": [ - 17794368, - 17793680, - 17800128, - 17800528, - 17793392, - 17793408, - 17793424, - 17793440, - 17793456, - 17793472, - 17795008 + 17794240, + 17793552, + 17800000, + 17800400, + 17793264, + 17793280, + 17793296, + 17793312, + 17793328, + 17793344, + 17794880 ], "bases": [ { @@ -36831,19 +36831,19 @@ }, { "type_name": "CCSPlayerController_InGameMoneyServices", - "vtable_address": 31299472, + "vtable_address": 31299408, "methods": [ - 17794384, - 17793696, - 17798896, - 17798976, - 17793392, - 17793408, - 17793424, - 17793440, - 17793456, - 17793472, - 17795008 + 17794256, + 17793568, + 17798768, + 17798848, + 17793264, + 17793280, + 17793296, + 17793312, + 17793328, + 17793344, + 17794880 ], "bases": [ { @@ -36865,19 +36865,19 @@ }, { "type_name": "CCSPlayerController_InventoryServices", - "vtable_address": 31299840, + "vtable_address": 31299776, "methods": [ - 17794416, - 17793712, - 17799680, - 17800080, - 17793392, - 17793408, - 17795600, - 17793440, - 17793456, - 17793472, - 17795008 + 17794288, + 17793584, + 17799552, + 17799952, + 17793264, + 17793280, + 17795472, + 17793312, + 17793328, + 17793344, + 17794880 ], "bases": [ { @@ -36899,33 +36899,33 @@ }, { "type_name": "CCSPlayerInventory", - "vtable_address": 31271936, + "vtable_address": 31271872, "methods": [ - 17244560, - 17244864, + 17244432, 17244736, - 22892944, - 22545024, - 17224224, - 17224240, - 17226368, - 17226272, - 17229888, - 17222768, - 17225088, - 17222864, - 17222960, - 22635872, - 17224976, - 22748096, - 17230592, - 22549552, - 17222944, - 17222784, - 17245040, - 17245056, - 17222800, - 22549408 + 17244608, + 22892880, + 22544896, + 17224096, + 17224112, + 17226240, + 17226144, + 17229760, + 17222640, + 17224960, + 17222736, + 17222832, + 22635744, + 17224848, + 22748032, + 17230464, + 22549424, + 17222816, + 17222656, + 17244912, + 17244928, + 17222672, + 22549280 ], "bases": [ { @@ -36958,32 +36958,32 @@ }, { "type_name": "CCSPlayerPawn", - "vtable_address": 30198920, + "vtable_address": 30198856, "methods": [ 13530976, 10200000, 10201040, 10060448, - 19956992, + 19956864, 10256000, 10302560, 10328000, - 26419632, - 18009552, - 26419200, + 26419568, + 18009424, + 26419136, 10080704, 10061184, 10084992, - 19835392, - 19835328, - 18003520, - 19954768, - 18291712, - 19957728, - 19957744, + 19835264, + 19835200, + 18003392, + 19954640, + 18291584, + 19957600, + 19957616, 11747408, - 19958160, - 19829152, + 19958032, + 19829024, 10064272, 9635872, 9665808, @@ -36995,21 +36995,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10057568, 10061264, 10059552, 9635312, 10094048, - 18308160, + 18308032, 9635328, 10286720, - 19871664, + 19871536, 9637008, 9637024, 9837040, @@ -37021,95 +37021,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, + 18003456, + 18020256, + 18020176, + 18009936, 10060560, 10060624, - 18326368, + 18326240, 9843056, 9891392, 9891456, 9636864, 9636912, - 19911552, + 19911424, 9603680, - 19961344, + 19961216, 11742320, - 18042720, - 19833152, - 19961264, + 18042592, + 19833024, + 19961136, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 17792464, - 18191008, + 19828752, + 17792336, + 18190880, 11742336, 10060400, 10060416, - 19953488, + 19953360, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19961024, - 19834800, + 19960896, + 19834672, 10282320, 9637088, 9897056, 9902592, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20008800, + 20008672, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 10368992, - 19911296, + 19911168, 10109104, 9635968, 9635984, - 17694032, + 17693904, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, - 18122512, - 18009856, + 18122384, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -37117,23 +37117,23 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 18122800, + 19828528, + 18122672, 9636192, - 21229072, - 19828912, - 17792576, + 21228944, + 19828784, + 17792448, 11742368, 11865936, 9636208, 9636224, 9637248, - 18004864, + 18004736, 9636256, 9642208, 9636272, @@ -37147,43 +37147,43 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 10423376, 11753024, 11757136, - 18125328, - 18124928, - 18004880, - 18004912, + 18125200, + 18124800, + 18004752, + 18004784, 9636448, 9891472, 9636464, - 18010528, + 18010400, 9636480, - 19959200, - 19828576, + 19959072, + 19828448, 9641744, 9637200, - 19956880, - 19833072, - 21106016, + 19956752, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, - 18126944, - 20104112, + 18126816, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, - 18004864, + 19828688, + 19835152, + 19914928, + 18004736, 9636656, 9636672, 9636688, @@ -37191,8 +37191,8 @@ 9636720, 9636736, 9636752, - 18126720, - 21066880, + 18126592, + 21066752, 11742352, 11742320, 11742400, @@ -37203,105 +37203,105 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 17611808, - 17614448, - 17614432, - 17614592, - 18004224, + 17611680, + 17614320, + 17614304, + 17614464, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18256224, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18256096, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, - 19956704, + 19956576, 10060672, - 18003632, - 18046256, - 18150272, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18124768, - 18003968, + 18094704, + 18124640, + 18003840, 9837248, - 18212000, + 18211872, 10057424, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19956496, - 19828528, - 19917152, - 19917696, - 9901232, - 19918560, + 19956368, + 19828400, + 19917024, 19917568, + 9901232, + 19918432, + 19917440, 9897040, 9897024, 9901360, 9901312, - 18122784, + 18122656, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19829440, + 19829312, 9890928, - 19960592, + 19960464, 9890992, 9891008, 9891024, @@ -37310,92 +37310,92 @@ 9891072, 9891088, 10310272, - 19914128, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, 10073440, 10071216, - 17603216, - 17602864, + 17603088, + 17602736, 9891200, 10056960, - 17602944, - 17603056, + 17602816, + 17602928, 9891232, - 17603152, - 17701776, - 19952224, + 17603024, + 17701648, + 19952096, 10075328, 10339888, 9891248, - 18012624, + 18012496, 10355104, 10355328, - 17658208, - 19955600, - 19829408, - 20017872, + 17658080, + 19955472, + 19829280, + 20017744, 9891280, - 18126864, + 18126736, 9910032, 10057744, 9891296, 9891312, - 18125808, - 18126048, - 18126272, - 18124672, + 18125680, + 18125920, + 18126144, + 18124544, 10057584, 10080784, 9891344, - 19959712, - 19843792, + 19959584, + 19843664, 10057472, 10064384, 10063776, 10087984, 10361984, - 19959184, - 18124704, - 19958896, + 19959056, + 18124576, + 19958768, 10061328, 9891376, 10057728, - 19957392, + 19957264, 10060736, 10060768, 9603696, 10078864, - 17586112, + 17585984, 10060496, 9891424, 9891440, - 19963440, - 19829488, - 19963712, - 19963856, - 19962352, + 19963312, + 19829360, + 19963584, + 19963728, + 19962224, 10061952, 9901136, 9907376, 9901008, 9907584, 9895008, - 17584080, - 17550688, - 17609936, + 17583952, + 17550560, + 17609808, 10307648, 10060800, 10330240, 10311392, 10063648, - 17611856 + 17611728 ], "bases": [ { @@ -37525,7 +37525,7 @@ }, { "type_name": "CCSPlayerPawn", - "vtable_address": 30202424, + "vtable_address": 30202360, "methods": [ 9891504, 9891520, @@ -37660,9 +37660,9 @@ }, { "type_name": "CCSPlayerPawn", - "vtable_address": 30202472, + "vtable_address": 30202408, "methods": [ - 17612256 + 17612128 ], "bases": [ { @@ -37792,36 +37792,36 @@ }, { "type_name": "CCSPlayerPawn::NetworkVar_m_EconGloves", - "vtable_address": 30198544, + "vtable_address": 30198480, "methods": [ 10059520, 10059456, 10059472, - 22969488, - 22601456, - 22600304, - 22628512, - 22629456, - 22619728, - 22620624, - 22633424, - 22606240, - 22544832, - 22605456, + 22969424, + 22601328, + 22600176, + 22628384, + 22629328, + 22619600, + 22620496, + 22633296, + 22606112, + 22544704, + 22605328, 10059440, 10056928, 10056912, - 22962864, - 22972144, - 22963008, - 22962736, - 22964960, + 22962800, + 22972080, + 22962944, + 22962672, + 22964896, 10056896, 10059376, - 22962416, - 22962544, - 22962640, - 22971728, + 22962352, + 22962480, + 22962576, + 22971664, 10193408, 10056880, 10057440 @@ -37857,7 +37857,7 @@ }, { "type_name": "CCSPlayerPawn::NetworkVar_m_entitySpottedState", - "vtable_address": 30198808, + "vtable_address": 30198744, "methods": [ 9842944, 10193088, @@ -37884,32 +37884,32 @@ }, { "type_name": "CCSPlayerPawnBase", - "vtable_address": 30202496, + "vtable_address": 30202432, "methods": [ 13530976, 10061552, 10061648, - 19956928, - 19956992, - 19957600, + 19956800, + 19956864, + 19957472, 10302560, 10300320, - 26419632, - 18009552, - 26419200, - 20087984, + 26419568, + 18009424, + 26419136, + 20087856, 10061136, 10084992, - 19835392, - 19835328, - 18003520, - 19954768, - 18291712, - 19957728, - 19957744, + 19835264, + 19835200, + 18003392, + 19954640, + 18291584, + 19957600, + 19957616, 11747408, - 19958160, - 19829152, + 19958032, + 19829024, 10056720, 9635872, 9665808, @@ -37921,21 +37921,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10057600, 10061264, 10059568, 9635312, 10094176, - 18308160, + 18308032, 9635328, - 20115072, - 19871664, + 20114944, + 19871536, 9637008, 9637024, 9837040, @@ -37947,95 +37947,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9891392, 9891456, 9636864, 9636912, - 19911552, + 19911424, 9603680, - 19961344, + 19961216, 11742320, - 18042720, - 19833152, - 19961264, + 18042592, + 19833024, + 19961136, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 9897072, - 19953152, - 19953488, + 19953024, + 19953360, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19961024, - 19834800, + 19960896, + 19834672, 10078704, 9637088, 9897056, 9902592, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20008800, + 20008672, 11749776, - 18014848, - 18211472, - 20026816, - 19911296, - 19962592, + 18014720, + 18211344, + 20026688, + 19911168, + 19962464, 9635968, 9635984, - 17694032, + 17693904, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, - 18122512, - 18009856, + 18122384, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -38043,23 +38043,23 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 18122800, + 19828528, + 18122672, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, 9636224, 9637248, - 18004864, + 18004736, 9636256, 9642208, 9636272, @@ -38073,43 +38073,43 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 10423200, 11753024, 11757136, - 18125328, - 18124928, - 18004880, - 18004912, + 18125200, + 18124800, + 18004752, + 18004784, 9636448, 9891472, 9636464, - 18010528, + 18010400, 9636480, - 19959200, - 19828576, + 19959072, + 19828448, 9641744, 9637200, - 19956880, - 19833072, - 21106016, + 19956752, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, - 18126944, - 20104112, + 18126816, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, - 18004864, + 19828688, + 19835152, + 19914928, + 18004736, 9636656, 9636672, 9636688, @@ -38117,8 +38117,8 @@ 9636720, 9636736, 9636752, - 18126720, - 21066880, + 18126592, + 21066752, 11742352, 11742320, 11742400, @@ -38129,105 +38129,105 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 20052016, - 18004240, - 18004224, + 18004096, + 18010896, + 20051888, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18256224, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18256096, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, - 19956704, - 18010448, - 18003632, - 18046256, - 18150272, + 19956576, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18124768, - 18003968, + 18094704, + 18124640, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19956496, - 19828528, - 19917152, - 19917696, - 9901232, - 19918560, + 19956368, + 19828400, + 19917024, 19917568, + 9901232, + 19918432, + 19917440, 9897040, 9897024, 9901360, 9901312, - 18122784, + 18122656, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19829440, + 19829312, 9890928, - 19960592, + 19960464, 9890992, 9891008, 9891024, @@ -38235,14 +38235,14 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, 10071568, @@ -38256,66 +38256,66 @@ 9891232, 10056992, 10057008, - 19952224, - 19953984, + 19952096, + 19953856, 10319360, 9891248, - 18012624, + 18012496, 10194368, 10264688, 9891264, - 19955600, - 19829408, - 20017872, + 19955472, + 19829280, + 20017744, 9891280, - 18126864, + 18126736, 9910032, 10057744, 9891296, 9891312, - 18125808, - 18126048, - 18126272, - 18124672, + 18125680, + 18125920, + 18126144, + 18124544, 9891328, - 19962768, + 19962640, 9891344, - 19959712, - 19843792, - 19828896, - 19954720, + 19959584, + 19843664, + 19828768, + 19954592, 10063776, 9891360, 10265424, - 19959184, - 18124704, - 19958896, + 19959056, + 18124576, + 19958768, 10061328, 9891376, 10057728, - 19957392, - 19958224, - 19958480, + 19957264, + 19958096, + 19958352, 9603696, 9908880, - 17586112, + 17585984, 9891408, 9891424, 9891440, - 19963440, - 19829488, - 19963712, - 19963856, - 19962352, + 19963312, + 19829360, + 19963584, + 19963728, + 19962224, 10061952, 9901136, 9907376, 9901008, 9907584, 9895008, - 17550688, - 17550688, - 17602784, + 17550560, + 17550560, + 17602656, 10057392, 10060800, 10308880, @@ -38429,7 +38429,7 @@ }, { "type_name": "CCSPlayerPawnBase", - "vtable_address": 30205992, + "vtable_address": 30205928, "methods": [ 9891504, 9891520, @@ -38543,7 +38543,7 @@ }, { "type_name": "CCSPlayerPawnStateActive", - "vtable_address": 30206200, + "vtable_address": 30206136, "methods": [ 10313040, 10081840, @@ -38569,33 +38569,33 @@ }, { "type_name": "CCSPlayerResource", - "vtable_address": 31292800, + "vtable_address": 31292736, "methods": [ 13506768, - 17552976, - 17552992, + 17552848, + 17552864, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 17672960, - 26419632, - 26419200, - 26419200, - 17553040, - 17553072, - 20141328, - 19835392, - 19835328, + 20141504, + 17672832, + 26419568, + 26419136, + 26419136, + 17552912, + 17552944, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 17552224, + 19933296, + 19829024, + 17552096, 9635872, 9665808, 9641296, @@ -38606,21 +38606,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17550736, - 17793008, - 17552304, + 26427360, + 17550608, + 17792880, + 17552176, 9635312, - 17561904, + 17561776, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -38644,83 +38644,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 17551408, - 19840912, - 19834496, + 17551280, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -38728,16 +38728,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -38758,7 +38758,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -38771,28 +38771,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -38803,7 +38803,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -38814,7 +38814,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -38847,7 +38847,7 @@ }, { "type_name": "CCSPlayerStateDeathAnim", - "vtable_address": 30206240, + "vtable_address": 30206176, "methods": [ 10314448, 9891584, @@ -38873,7 +38873,7 @@ }, { "type_name": "CCSPlayerStateDeathWaitForKey", - "vtable_address": 30206160, + "vtable_address": 30206096, "methods": [ 10061360, 9891584, @@ -38899,7 +38899,7 @@ }, { "type_name": "CCSPlayerStateDormant", - "vtable_address": 30194944, + "vtable_address": 30194880, "methods": [ 9891568, 9891584, @@ -38925,7 +38925,7 @@ }, { "type_name": "CCSPlayerStateGungameRespawn", - "vtable_address": 30206120, + "vtable_address": 30206056, "methods": [ 10303488, 9891584, @@ -38951,7 +38951,7 @@ }, { "type_name": "CCSPlayerStateObserverMode", - "vtable_address": 30206080, + "vtable_address": 30206016, "methods": [ 10116528, 10057760, @@ -38977,7 +38977,7 @@ }, { "type_name": "CCSPlayerStateWelcome", - "vtable_address": 30206040, + "vtable_address": 30205976, "methods": [ 10079072, 9891584, @@ -39003,10 +39003,10 @@ }, { "type_name": "CCSPlayerTakeDamageListenerEnemiesCount", - "vtable_address": 31283328, + "vtable_address": 31283264, "methods": [ - 17343200, - 17515120 + 17343072, + 17514992 ], "bases": [ { @@ -39028,14 +39028,14 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices", - "vtable_address": 31276672, + "vtable_address": 31276608, "methods": [ - 17254384, - 17253744, - 17292928, - 17293472, + 17254256, + 17253616, + 17292800, + 17293344, 10057184, - 17315664, + 17315536, 10057200, 10057216, 10057232, @@ -39047,8 +39047,8 @@ 10057328, 10057344, 10057360, - 17287008, - 17254512 + 17286880, + 17254384 ], "bases": [ { @@ -39070,12 +39070,12 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisMatch", - "vtable_address": 31276576, + "vtable_address": 31276512, "methods": [ - 17254368, - 17255072, - 17253712, - 17255536 + 17254240, + 17254944, + 17253584, + 17255408 ], "bases": [ { @@ -39097,12 +39097,12 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisRound", - "vtable_address": 31276624, + "vtable_address": 31276560, "methods": [ - 17254368, - 17254976, - 17253712, - 17255552 + 17254240, + 17254848, + 17253584, + 17255424 ], "bases": [ { @@ -39124,14 +39124,14 @@ }, { "type_name": "CCSPlayer_BulletServices", - "vtable_address": 31279344, + "vtable_address": 31279280, "methods": [ - 17343872, - 17343072, - 17354208, - 17355024, + 17343744, + 17342944, + 17354080, + 17354896, 10057184, - 17343088, + 17342960, 10057200, 10057216, 10057232, @@ -39144,7 +39144,7 @@ 10057344, 10057360, 10057376, - 17343984 + 17343856 ], "bases": [ { @@ -39166,14 +39166,14 @@ }, { "type_name": "CCSPlayer_BuyServices", - "vtable_address": 31279568, + "vtable_address": 31279504, "methods": [ - 17343904, - 17343104, - 17356560, - 17356928, + 17343776, + 17342976, + 17356432, + 17356800, 10057184, - 17344464, + 17344336, 10057200, 10057216, 10057232, @@ -39186,7 +39186,7 @@ 10057344, 10057360, 10057376, - 17343984 + 17343856 ], "bases": [ { @@ -39208,38 +39208,38 @@ }, { "type_name": "CCSPlayer_CameraServices", - "vtable_address": 31279736, + "vtable_address": 31279672, "methods": [ - 17343840, - 17343120, - 17344544, - 17344560, - 17344624, - 17342768, + 17343712, + 17342992, + 17344416, + 17344432, + 17344496, + 17342640, 10057200, 10057216, 10057232, - 19296480, - 19369120, - 17253408, - 19405920, + 19296352, + 19368992, + 17253280, + 19405792, 10057312, 10057328, 10057344, 10057360, - 19304640, - 17534288, - 17260528, + 19304512, + 17534160, + 17260400, 12856192, - 19308816, - 19304448, - 17353648, - 17301936, - 19300192, - 17297264, - 17354672, - 19315248, - 17352496 + 19308688, + 19304320, + 17353520, + 17301808, + 19300064, + 17297136, + 17354544, + 19315120, + 17352368 ], "bases": [ { @@ -39283,14 +39283,14 @@ }, { "type_name": "CCSPlayer_DamageReactServices", - "vtable_address": 31283360, + "vtable_address": 31283296, "methods": [ - 17343936, - 17343216, - 17351424, - 17351584, + 17343808, + 17343088, + 17351296, + 17351456, 10057184, - 17253376, + 17253248, 10057200, 10057216, 10057232, @@ -39303,7 +39303,7 @@ 10057344, 10057360, 10057376, - 17343984 + 17343856 ], "bases": [ { @@ -39325,9 +39325,9 @@ }, { "type_name": "CCSPlayer_DamageReactServices::ITakeDamageListener", - "vtable_address": 31282976, + "vtable_address": 31282912, "methods": [ - 17343200, + 17343072, 10427648 ], "bases": [], @@ -39339,14 +39339,14 @@ }, { "type_name": "CCSPlayer_HostageServices", - "vtable_address": 31283592, + "vtable_address": 31283528, "methods": [ - 17343952, - 17343232, - 17351504, - 17351696, + 17343824, + 17343104, + 17351376, + 17351568, 10057184, - 17426576, + 17426448, 10057200, 10057216, 10057232, @@ -39359,7 +39359,7 @@ 10057344, 10057360, 10057376, - 17343984 + 17343856 ], "bases": [ { @@ -39381,14 +39381,14 @@ }, { "type_name": "CCSPlayer_ItemServices", - "vtable_address": 31283760, + "vtable_address": 31283696, "methods": [ - 17343968, - 17343248, - 17345680, - 17345696, + 17343840, + 17343120, + 17345552, + 17345568, 10057184, - 17253376, + 17253248, 10057200, 10057216, 10057232, @@ -39401,12 +39401,12 @@ 10057344, 10057360, 10057376, - 17550480, - 17389184, - 17389200, - 17389232, - 17550160, - 17548944 + 17550352, + 17389056, + 17389072, + 17389104, + 17550032, + 17548816 ], "bases": [ { @@ -39439,63 +39439,63 @@ }, { "type_name": "CCSPlayer_MovementServices", - "vtable_address": 31290144, + "vtable_address": 31290080, "methods": [ - 17552256, - 17550624, + 17552128, + 17550496, + 17732080, 17732208, - 17732336, - 19296480, - 17786368, - 19299216, + 19296352, + 17786240, + 19299088, 10057216, - 19353632, - 19383344, - 19366704, - 17550544, - 19372704, + 19353504, + 19383216, + 19366576, + 17550416, + 19372576, 10057312, 10057328, 10057344, 10057360, - 19296496, - 17792432, - 17787456, - 17556080, - 17787344, - 19309312, - 19461168, - 17766384, - 19357664, - 17253472, - 17551568, - 17787568, - 17788416, - 17788848, - 17557168, - 17790032, - 17672304, - 17551760, - 19308320, - 17790960, - 19354480, - 17658960, - 19296544, - 19311728, - 17577024, - 19313504, - 17253552, - 17557216, - 19354176, - 17550560, - 17792352, - 17791744, - 19356864, - 19296560, - 17552016, - 17551824, - 17550576, - 17557744 + 19296368, + 17792304, + 17787328, + 17555952, + 17787216, + 19309184, + 19461040, + 17766256, + 19357536, + 17253344, + 17551440, + 17787440, + 17788288, + 17788720, + 17557040, + 17789904, + 17672176, + 17551632, + 19308192, + 17790832, + 19354352, + 17658832, + 19296416, + 19311600, + 17576896, + 19313376, + 17253424, + 17557088, + 19354048, + 17550432, + 17792224, + 17791616, + 19356736, + 19296432, + 17551888, + 17551696, + 17550448, + 17557616 ], "bases": [ { @@ -39539,14 +39539,14 @@ }, { "type_name": "CCSPlayer_PingServices", - "vtable_address": 31292632, + "vtable_address": 31292568, "methods": [ - 17552288, - 17550720, - 17555344, - 17555776, + 17552160, + 17550592, + 17555216, + 17555648, 10057184, - 17253376, + 17253248, 10057200, 10057216, 10057232, @@ -39559,7 +39559,7 @@ 10057344, 10057360, 10057376, - 17551744 + 17551616 ], "bases": [ { @@ -39581,7 +39581,7 @@ }, { "type_name": "CCSPlayer_RadioServices", - "vtable_address": 30206280, + "vtable_address": 30206216, "methods": [ 10059584, 10057776, @@ -39623,18 +39623,18 @@ }, { "type_name": "CCSPlayer_UseServices", - "vtable_address": 31294768, + "vtable_address": 31294704, "methods": [ - 17552320, - 17550800, - 17553104, - 17553120, + 17552192, + 17550672, + 17552976, + 17552992, 10057184, - 17554288, + 17554160, 10057200, 10057216, 10057232, - 17656320, + 17656192, 10057264, 10057280, 10057296, @@ -39643,11 +39643,11 @@ 10057344, 10057360, 10057376, - 17793328, - 17793024, - 16914000, - 17253648, - 17253664 + 17793200, + 17792896, + 16913872, + 17253520, + 17253536 ], "bases": [ { @@ -39680,18 +39680,18 @@ }, { "type_name": "CCSPlayer_WaterServices", - "vtable_address": 31294968, + "vtable_address": 31294904, "methods": [ - 17552336, - 17550816, - 17553184, - 17553200, + 17552208, + 17550688, + 17553056, + 17553072, 10057184, - 19466576, + 19466448, 10057200, 10057216, - 17550832, - 17626176, + 17550704, + 17626048, 10057264, 10057280, 10057296, @@ -39700,10 +39700,10 @@ 10057344, 10057360, 10057376, - 17793360, - 17561056, - 17550592, - 17550848 + 17793232, + 17560928, + 17550464, + 17550720 ], "bases": [ { @@ -39736,47 +39736,47 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 31298824, + "vtable_address": 31298760, "methods": [ - 17794320, - 17793632, - 18000896, - 18001552, - 17938160, - 17889248, - 19464144, + 17794192, + 17793504, + 18000768, + 18001424, + 17938032, + 17889120, + 19464016, 10057216, - 19473408, - 17799088, - 17794592, + 19473280, + 17798960, + 17794464, 10057280, 10057296, 10057312, 10057328, 10057344, 10057360, - 19471264, - 18001680, + 19471136, + 18001552, + 17793392, + 17891088, + 19464032, + 17794544, + 17800832, + 17898496, + 17930912, + 17886304, + 17793408, + 17796656, + 17793424, + 18001472, + 17793440, + 17793456, 17793520, - 17891216, - 19464160, - 17794672, - 17800960, - 17898624, - 17931040, - 17886432, - 17793536, - 17796784, - 17793552, - 18001600, - 17793568, - 17793584, - 17793648, - 19465360, - 17793600, - 17793616, - 17808336, - 17937968 + 19465232, + 17793472, + 17793488, + 17808208, + 17937840 ], "bases": [ { @@ -39829,9 +39829,9 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 31299152, + "vtable_address": 31299088, "methods": [ - 17805360 + 17805232 ], "bases": [ { @@ -39884,10 +39884,10 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 31299176, + "vtable_address": 31299112, "methods": [ 9698336, - 17938272 + 17938144 ], "bases": [ { @@ -39940,7 +39940,7 @@ }, { "type_name": "CCSPointPulseSystem", - "vtable_address": 30206544, + "vtable_address": 30206480, "methods": [ 10057840, 9634384, @@ -40058,7 +40058,7 @@ }, { "type_name": "CCSPointPulseSystem", - "vtable_address": 30207064, + "vtable_address": 30207000, "methods": [ 10068256, 10068448, @@ -40116,33 +40116,33 @@ }, { "type_name": "CCSPointScriptEntity", - "vtable_address": 30207424, + "vtable_address": 30207360, "methods": [ 13506768, 10077376, 10078032, 12023536, - 26419168, + 26419104, 10081600, - 20141632, + 20141504, 10083984, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 10424624, - 20140192, - 20141328, - 19835392, + 20140064, + 20141200, + 19835264, 10239328, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -40153,12 +40153,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10058400, 10424608, 10059600, @@ -40166,8 +40166,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -40191,83 +40191,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -40275,16 +40275,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, 10066496, - 21311696, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -40305,7 +40305,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -40318,28 +40318,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -40350,7 +40350,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -40361,7 +40361,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 10074192 ], "bases": [ @@ -40405,7 +40405,7 @@ }, { "type_name": "CCSPointScriptEntity", - "vtable_address": 30209400, + "vtable_address": 30209336, "methods": [ 9698336, 10075312 @@ -40451,23 +40451,23 @@ }, { "type_name": "CCSPredictionEvent_AddAimPunch", - "vtable_address": 30824984, + "vtable_address": 30824920, "methods": [ 14749920, 14847632, - 24747814, + 24747750, 14337920, 15028496, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15028864, 14066176, 14440384, 9474464, 14135584, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051184, 14018656 @@ -40503,23 +40503,23 @@ }, { "type_name": "CCSPredictionEvent_DamageTag", - "vtable_address": 30824824, + "vtable_address": 30824760, "methods": [ 14749792, 14798448, - 24747814, + 24747750, 14337760, 14886016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029856, 14066192, 14439968, 9474464, 14093536, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051152, 14018640 @@ -40555,23 +40555,23 @@ }, { "type_name": "CCSPredictionEvent_DamageTag_t", - "vtable_address": 31283168, + "vtable_address": 31283104, "methods": [ - 17345216, - 17345232, - 24747814, + 17345088, + 17345104, + 24747750, 14337760, 14886016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029856, 14066192, 14439968, 9474464, 14093536, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051152, 14018640 @@ -40629,7 +40629,7 @@ }, { "type_name": "CCSScript_EntityScript", - "vtable_address": 30207136, + "vtable_address": 30207072, "methods": [ 9890768, 9890784, @@ -40719,7 +40719,7 @@ }, { "type_name": "CCSScript_EntityScript", - "vtable_address": 30207352, + "vtable_address": 30207288, "methods": [ 10072320, 10076416 @@ -40786,7 +40786,7 @@ }, { "type_name": "CCSScript_EntityScript", - "vtable_address": 30207384, + "vtable_address": 30207320, "methods": [ 10072816, 10076928, @@ -40854,32 +40854,32 @@ }, { "type_name": "CCSSprite", - "vtable_address": 31053072, + "vtable_address": 31053008, "methods": [ 13522144, - 16662240, - 16655632, - 18377504, - 26419168, - 22305120, - 18010864, - 22486656, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 16662112, + 16655504, + 18377376, + 26419104, + 22304992, + 18010736, + 22486528, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 22485152, - 19829152, + 22485024, + 19829024, 12374128, 9635872, 9665808, @@ -40891,21 +40891,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652576, - 16655744, - 16653840, + 26427360, + 16652448, + 16655616, + 16653712, 9635312, 12387472, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -40929,83 +40929,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 22265696, + 22265568, 9635712, 9654336, 11742336, - 22266016, - 22262144, - 19834496, + 22265888, + 22262016, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22318496, + 22318368, 9637216, 9636096, 11746864, @@ -41013,16 +41013,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -41043,7 +41043,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -41056,28 +41056,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -41088,8 +41088,8 @@ 9636736, 9636752, 9636768, - 21066880, - 22361184, + 21066752, + 22361056, 11742320, 11742400, 11742464, @@ -41099,35 +41099,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -41182,33 +41182,33 @@ }, { "type_name": "CCSTeam", - "vtable_address": 30209472, + "vtable_address": 30209408, "methods": [ 13506768, 10070880, 10070720, 12023536, - 26419168, + 26419104, 10063472, - 20141632, + 20141504, 10063360, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12325856, 12270160, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -41219,12 +41219,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10058416, 10063488, 10059616, @@ -41232,8 +41232,8 @@ 10094304, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -41257,83 +41257,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12206720, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -41341,16 +41341,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, 12202704, - 21311696, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -41371,7 +41371,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -41384,28 +41384,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -41416,7 +41416,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -41427,7 +41427,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 10063408, 10298032, 10268528 @@ -41474,10 +41474,10 @@ }, { "type_name": "CCSTraceFilterSimple", - "vtable_address": 31287808, + "vtable_address": 31287744, "methods": [ - 17550656, - 17551504, + 17550528, + 17551376, 9698544 ], "bases": [ @@ -41522,23 +41522,23 @@ }, { "type_name": "CCSUsrMsgPreMatchSayText", - "vtable_address": 30867224, + "vtable_address": 30867160, "methods": [ 14783264, 14823696, - 24747814, + 24747750, 14382160, 14912256, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14078064, 14064032, 14571264, 9474464, 14162304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059632, 14027216 @@ -41574,23 +41574,23 @@ }, { "type_name": "CCSUsrMsg_AchievementEvent", - "vtable_address": 30859064, + "vtable_address": 30859000, "methods": [ 14777248, 14809456, - 24747814, + 24747750, 14374704, 14892688, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033488, 14064272, 14548048, 9474464, 14175776, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058000, 14026400 @@ -41626,23 +41626,23 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney", - "vtable_address": 30858264, + "vtable_address": 30858200, "methods": [ 14776608, 14808816, - 24747814, + 24747750, 9503264, 14892400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033232, 9484480, 14545616, 9474464, 14123296, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057840, 14026320 @@ -41678,10 +41678,10 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney_t", - "vtable_address": 31297880, + "vtable_address": 31297816, "methods": [ - 17795408, - 17795472, + 17795280, + 17795344, 9483520, 9483536, 9483552, @@ -41761,23 +41761,23 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney_t", - "vtable_address": 31297944, + "vtable_address": 31297880, "methods": [ - 17795440, - 17795536, - 24747814, + 17795312, + 17795408, + 24747750, 9503264, 14892400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033232, 9484480, 14545616, 9474464, 14123296, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057840, 14026320 @@ -41856,23 +41856,23 @@ }, { "type_name": "CCSUsrMsg_AmmoDenied", - "vtable_address": 30862424, + "vtable_address": 30862360, "methods": [ 14779744, 14810736, - 24747814, + 24747750, 14377648, 14893392, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034544, 14064176, 14558304, 9474464, 14123520, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058672, 14026736 @@ -41908,23 +41908,23 @@ }, { "type_name": "CCSUsrMsg_BarTime", - "vtable_address": 30862264, + "vtable_address": 30862200, "methods": [ 14779600, 14823216, - 24747814, + 24747750, 14377504, 14911344, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14064192, 14557904, 9474464, 14116320, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058640, 14026720 @@ -41960,23 +41960,23 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed", - "vtable_address": 30860504, + "vtable_address": 30860440, "methods": [ 14778176, 14810224, - 24747814, + 24747750, 9497664, 14893072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034000, 9484288, 14552320, 9474464, 14145280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058288, 14026544 @@ -42012,7 +42012,7 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed_t", - "vtable_address": 30223712, + "vtable_address": 30223648, "methods": [ 10434992, 10435056, @@ -42095,23 +42095,23 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed_t", - "vtable_address": 30223776, + "vtable_address": 30223712, "methods": [ 10435024, 10435120, - 24747814, + 24747750, 9497664, 14893072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034000, 9484288, 14552320, 9474464, 14145280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058288, 14026544 @@ -42190,23 +42190,23 @@ }, { "type_name": "CCSUsrMsg_ClientInfo", - "vtable_address": 30866904, + "vtable_address": 30866840, "methods": [ 14783136, 14813040, - 24747814, + 24747750, 14381872, 14894448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036160, 14064048, 14570176, 9474464, 14125088, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059568, 14027184 @@ -42242,23 +42242,23 @@ }, { "type_name": "CCSUsrMsg_CloseCaption", - "vtable_address": 30855384, + "vtable_address": 30855320, "methods": [ 14773968, 14821776, - 24747814, + 24747750, 14371296, 14908768, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076368, 14064368, 14536928, 9474464, 14195104, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057264, 14026032 @@ -42294,23 +42294,23 @@ }, { "type_name": "CCSUsrMsg_CloseCaptionDirect", - "vtable_address": 30855544, + "vtable_address": 30855480, "methods": [ 14774112, 14808048, - 24747814, + 24747750, 14371440, 14891936, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046480, 14064352, 14537552, 9474464, 14159488, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057296, 14026048 @@ -42346,23 +42346,23 @@ }, { "type_name": "CCSUsrMsg_CounterStrafe", - "vtable_address": 30867384, + "vtable_address": 30867320, "methods": [ 14783408, 14813168, - 24747814, + 24747750, 9841552, 14894496, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036208, 9840336, 14571872, 9474464, 14145984, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059664, 14027232 @@ -42398,7 +42398,7 @@ }, { "type_name": "CCSUsrMsg_CounterStrafe_t", - "vtable_address": 30166160, + "vtable_address": 30166096, "methods": [ 9841760, 9841824, @@ -42481,23 +42481,23 @@ }, { "type_name": "CCSUsrMsg_CounterStrafe_t", - "vtable_address": 30166224, + "vtable_address": 30166160, "methods": [ 9841792, 9841888, - 24747814, + 24747750, 9841552, 14894496, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036208, 9840336, 14571872, 9474464, 14145984, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059664, 14027232 @@ -42576,23 +42576,23 @@ }, { "type_name": "CCSUsrMsg_CurrentRoundOdds", - "vtable_address": 30865624, + "vtable_address": 30865560, "methods": [ 14782128, 14812272, - 24747814, + 24747750, 9488272, 14894160, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035920, 9483984, 14566880, 9474464, 14123968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059312, 14027056 @@ -42628,7 +42628,7 @@ }, { "type_name": "CCSUsrMsg_CurrentRoundOdds_t", - "vtable_address": 30225056, + "vtable_address": 30224992, "methods": [ 10437184, 10437248, @@ -42711,23 +42711,23 @@ }, { "type_name": "CCSUsrMsg_CurrentRoundOdds_t", - "vtable_address": 30225120, + "vtable_address": 30225056, "methods": [ 10437216, 10437312, - 24747814, + 24747750, 9488272, 14894160, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035920, 9483984, 14566880, 9474464, 14123968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059312, 14027056 @@ -42806,23 +42806,23 @@ }, { "type_name": "CCSUsrMsg_CurrentTimescale", - "vtable_address": 30858904, + "vtable_address": 30858840, "methods": [ 14777120, 14809328, - 24747814, + 24747750, 14374560, 14892640, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029824, 14064288, 14547728, 9474464, 14094096, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057968, 14026384 @@ -42858,23 +42858,23 @@ }, { "type_name": "CCSUsrMsg_Damage", - "vtable_address": 30856344, + "vtable_address": 30856280, "methods": [ 14774816, 14847984, - 24747814, + 24747750, 9503744, 15029488, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15033136, 9484496, 14539696, 9474464, 14155872, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057456, 14026128 @@ -42910,23 +42910,23 @@ }, { "type_name": "CCSUsrMsg_DamagePrediction", - "vtable_address": 30867544, + "vtable_address": 30867480, "methods": [ 14783536, 14846416, - 24747814, + 24747750, 14382400, 15029584, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15033296, 14064016, 14572448, 9474464, 14255520, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059696, 14027248 @@ -42962,10 +42962,10 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 31278416, + "vtable_address": 31278352, "methods": [ - 17345280, - 17345344, + 17345152, + 17345216, 9483632, 9483648, 9483664, @@ -43045,23 +43045,23 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 31278480, + "vtable_address": 31278416, "methods": [ - 17345312, - 17345408, - 24747814, + 17345184, + 17345280, + 24747750, 9503744, 15029488, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15033136, 9484496, 14539696, 9474464, 14155872, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057456, 14026128 @@ -43140,23 +43140,23 @@ }, { "type_name": "CCSUsrMsg_DeepStats", - "vtable_address": 30865784, + "vtable_address": 30865720, "methods": [ 14850864, 14853504, - 24747814, + 24747750, 9487792, 14939136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14086512, 9483968, 14567360, 9474464, 14068320, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059344, 14027072 @@ -43192,23 +43192,23 @@ }, { "type_name": "CCSUsrMsg_DesiredTimescale", - "vtable_address": 30858744, + "vtable_address": 30858680, "methods": [ 14776992, 14809200, - 24747814, + 24747750, 14374416, 14892576, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033392, 14064304, 14547136, 9474464, 14153120, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057936, 14026368 @@ -43244,23 +43244,23 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby", - "vtable_address": 30866744, + "vtable_address": 30866680, "methods": [ 14783008, 14812912, - 24747814, + 24747750, 9492976, 14894400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036112, 9484144, 14569696, 9474464, 14124864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059536, 14027168 @@ -43296,7 +43296,7 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby_t", - "vtable_address": 30165400, + "vtable_address": 30165336, "methods": [ 9841360, 9841424, @@ -43379,23 +43379,23 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby_t", - "vtable_address": 30165464, + "vtable_address": 30165400, "methods": [ 9841392, 9841488, - 24747814, + 24747750, 9492976, 14894400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036112, 9484144, 14569696, 9474464, 14124864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059536, 14027168 @@ -43474,23 +43474,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData", - "vtable_address": 30864344, + "vtable_address": 30864280, "methods": [ 14781328, 14842656, - 24747814, + 24747750, 9490144, 14939952, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077920, 9484048, 14659136, 9474464, 14132864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059056, 14026928 @@ -43526,23 +43526,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_Accolade", - "vtable_address": 30864024, + "vtable_address": 30863960, "methods": [ 14781200, 14811504, - 24747814, + 24747750, 14379168, 14893760, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035072, 14063136, 14563104, 9474464, 14155136, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058992, 14026896 @@ -43578,23 +43578,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData", - "vtable_address": 30864184, + "vtable_address": 30864120, "methods": [ 14851072, 14852224, - 24747814, + 24747750, 14379392, 14939680, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077536, 14063152, 14656144, 9474464, 14258336, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059024, 14026912 @@ -43630,7 +43630,7 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 30969376, + "vtable_address": 30969312, "methods": [ 15981120, 15981184, @@ -43713,23 +43713,23 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 30969440, + "vtable_address": 30969376, "methods": [ 15981152, 15981248, - 24747814, + 24747750, 9490144, 14939952, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077920, 9484048, 14659136, 9474464, 14132864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059056, 14026928 @@ -43808,23 +43808,23 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight", - "vtable_address": 30858104, + "vtable_address": 30858040, "methods": [ 14776480, 14808688, - 24747814, + 24747750, 9492016, 14892352, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033168, 9484112, 14545040, 9474464, 14132064, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057808, 14026304 @@ -43860,10 +43860,10 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight_t", - "vtable_address": 31083904, + "vtable_address": 31083840, "methods": [ - 16924768, - 16924832, + 16924640, + 16924704, 9480832, 9480848, 9480864, @@ -43943,23 +43943,23 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight_t", - "vtable_address": 31083968, + "vtable_address": 31083904, "methods": [ - 16924800, - 16924896, - 24747814, + 16924672, + 16924768, + 24747750, 9492016, 14892352, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033168, 9484112, 14545040, 9474464, 14132064, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057808, 14026304 @@ -44038,23 +44038,23 @@ }, { "type_name": "CCSUsrMsg_Fade", - "vtable_address": 30855064, + "vtable_address": 30855000, "methods": [ 14773680, 14847808, - 24747814, + 24747750, 14371024, 15037040, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15037552, 14064400, 14535696, 9474464, 14190112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057200, 14026000 @@ -44090,23 +44090,23 @@ }, { "type_name": "CCSUsrMsg_GameTitle", - "vtable_address": 30866264, + "vtable_address": 30866200, "methods": [ 14782624, 14812528, - 24747814, + 24747750, 14381312, 14894256, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035968, 14064096, 14568256, 9474464, 14124192, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059440, 14027120 @@ -44142,23 +44142,23 @@ }, { "type_name": "CCSUsrMsg_Geiger", - "vtable_address": 30854264, + "vtable_address": 30854200, "methods": [ 14772928, 14807536, - 24747814, + 24747750, 14370272, 14891712, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032336, 14064480, 14532816, 9474464, 14122848, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057040, 14025920 @@ -44194,23 +44194,23 @@ }, { "type_name": "CCSUsrMsg_HintText", - "vtable_address": 30856664, + "vtable_address": 30856600, "methods": [ 14775136, 14822256, - 24747814, + 24747750, 9487312, 14909920, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 9483952, 14540928, 9474464, 14115968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057520, 14026160 @@ -44246,10 +44246,10 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 31544928, + "vtable_address": 31544864, "methods": [ - 20633104, - 20633168, + 20632976, + 20633040, 9479712, 9479728, 9479744, @@ -44329,23 +44329,23 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 31544992, + "vtable_address": 31544928, "methods": [ - 20633136, - 20633232, - 24747814, + 20633008, + 20633104, + 24747750, 9487312, 14909920, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 9483952, 14540928, 9474464, 14115968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057520, 14026160 @@ -44424,23 +44424,23 @@ }, { "type_name": "CCSUsrMsg_HudMsg", - "vtable_address": 30854744, + "vtable_address": 30854680, "methods": [ 14773328, 14848160, - 24747814, + 24747750, 14370720, 15036816, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15037152, 14064432, 14534176, 9474464, 14256544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057136, 14025968 @@ -44476,23 +44476,23 @@ }, { "type_name": "CCSUsrMsg_HudText", - "vtable_address": 30854584, + "vtable_address": 30854520, "methods": [ 14773184, 14821616, - 24747814, + 24747750, 14370576, 14908512, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14064448, 14533776, 9474464, 14115616, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057104, 14025952 @@ -44528,23 +44528,23 @@ }, { "type_name": "CCSUsrMsg_ItemDrop", - "vtable_address": 30862904, + "vtable_address": 30862840, "methods": [ 14780160, 14810864, - 24747814, + 24747750, 14378128, 14893440, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034592, 14064128, 14559584, 9474464, 14132320, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058768, 14026784 @@ -44580,23 +44580,23 @@ }, { "type_name": "CCSUsrMsg_ItemPickup", - "vtable_address": 30861944, + "vtable_address": 30861880, "methods": [ 14779312, 14822896, - 24747814, + 24747750, 14377200, 14910800, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14064224, 14556960, 9474464, 14116144, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058576, 14026688 @@ -44632,23 +44632,23 @@ }, { "type_name": "CCSUsrMsg_KeyHintText", - "vtable_address": 30856824, + "vtable_address": 30856760, "methods": [ 14775280, 14822416, - 24747814, + 24747750, 9486848, 14892064, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 9483936, 14541328, 9474464, 14090208, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14057552, 14026176 @@ -44684,10 +44684,10 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 31003608, + "vtable_address": 31003544, "methods": [ - 16602720, - 16602784, + 16602592, + 16602656, 9479600, 9479616, 9479632, @@ -44767,23 +44767,23 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 31003672, + "vtable_address": 31003608, "methods": [ - 16602752, - 16602848, - 24747814, + 16602624, + 16602720, + 24747750, 9486848, 14892064, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 9483936, 14541328, 9474464, 14090208, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14057552, 14026176 @@ -44862,23 +44862,23 @@ }, { "type_name": "CCSUsrMsg_KillCam", - "vtable_address": 30858584, + "vtable_address": 30858520, "methods": [ 14776864, 14809072, - 24747814, + 24747750, 9501392, 14892512, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033280, 9484416, 14546544, 9474464, 14175264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057904, 14026352 @@ -44914,23 +44914,23 @@ }, { "type_name": "CCSUsrMsg_MarkAchievement", - "vtable_address": 30862584, + "vtable_address": 30862520, "methods": [ 14779872, 14823376, - 24747814, + 24747750, 14377808, 14911600, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14064160, 14558784, 9474464, 14116496, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058704, 14026752 @@ -44966,23 +44966,23 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions", - "vtable_address": 30859224, + "vtable_address": 30859160, "methods": [ 14777376, 14809584, - 24747814, + 24747750, 9490608, 14892752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033600, 9484064, 14548640, 9474464, 14187808, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058032, 14026416 @@ -45018,10 +45018,10 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 31278864, + "vtable_address": 31278800, "methods": [ - 17344704, - 17344768, + 17344576, + 17344640, 9480496, 9480512, 9480528, @@ -45101,23 +45101,23 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 31278928, + "vtable_address": 31278864, "methods": [ - 17344736, - 17344832, - 24747814, + 17344608, + 17344704, + 24747750, 9490608, 14892752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033600, 9484064, 14548640, 9474464, 14187808, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058032, 14026416 @@ -45196,23 +45196,23 @@ }, { "type_name": "CCSUsrMsg_MatchStatsUpdate", - "vtable_address": 30862744, + "vtable_address": 30862680, "methods": [ 14780016, 14823536, - 24747814, + 24747750, 14377968, 14911856, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14064144, 14559184, 9474464, 14116672, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058736, 14026768 @@ -45248,23 +45248,23 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature", - "vtable_address": 30860024, + "vtable_address": 30859960, "methods": [ 14857152, 14858784, - 24747814, + 24747750, 9492496, 14905648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082304, 9484128, 14550736, 9474464, 14068128, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058192, 14026496 @@ -45300,7 +45300,7 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature_t", - "vtable_address": 30165624, + "vtable_address": 30165560, "methods": [ 9841168, 9841232, @@ -45383,23 +45383,23 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature_t", - "vtable_address": 30165688, + "vtable_address": 30165624, "methods": [ 9841200, 9841296, - 24747814, + 24747750, 9492496, 14905648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082304, 9484128, 14550736, 9474464, 14068128, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058192, 14026496 @@ -45478,23 +45478,23 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate", - "vtable_address": 30859544, + "vtable_address": 30859480, "methods": [ 14777632, 14842304, - 24747814, + 24747750, 9500000, 14922016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14097088, 9484368, 14657104, 9474464, 14193440, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058096, 14026448 @@ -45530,23 +45530,23 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_Stat", - "vtable_address": 30859384, + "vtable_address": 30859320, "methods": [ 14777504, 14809712, - 24747814, + 24747750, 14374976, 14892816, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033728, 14063040, 14549184, 9474464, 14144576, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058064, 14026432 @@ -45582,7 +45582,7 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_t", - "vtable_address": 30180312, + "vtable_address": 30180248, "methods": [ 9896272, 9896336, @@ -45665,23 +45665,23 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_t", - "vtable_address": 30180376, + "vtable_address": 30180312, "methods": [ 9896304, 9896400, - 24747814, + 24747750, 9500000, 14922016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14097088, 9484368, 14657104, 9474464, 14193440, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058096, 14026448 @@ -45760,23 +45760,23 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport", - "vtable_address": 30865464, + "vtable_address": 30865400, "methods": [ 14782000, 14812144, - 24747814, + 24747750, 9485920, 14894096, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035696, 9483904, 14566144, 9474464, 14263008, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059280, 14027040 @@ -45812,10 +45812,10 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 31298328, + "vtable_address": 31298264, "methods": [ - 17795024, - 17795088, + 17794896, + 17794960, 9479376, 9479392, 9479408, @@ -45895,23 +45895,23 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 31298392, + "vtable_address": 31298328, "methods": [ - 17795056, - 17795152, - 24747814, + 17794928, + 17795024, + 24747750, 9485920, 14894096, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035696, 9483904, 14566144, 9474464, 14263008, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059280, 14027040 @@ -45990,23 +45990,23 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate", - "vtable_address": 30857144, + "vtable_address": 30857080, "methods": [ 14775552, 14841952, - 24747814, + 24747750, 9504208, 14922912, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14113504, 9484512, 14655008, 9474464, 14095072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057616, 14026208 @@ -46042,23 +46042,23 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate", - "vtable_address": 30856984, + "vtable_address": 30856920, "methods": [ 14775424, 14808304, - 24747814, + 24747750, 14372816, 14892128, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032704, 14063024, 14541728, 9474464, 14285792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057584, 14026192 @@ -46094,7 +46094,7 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_t", - "vtable_address": 30194272, + "vtable_address": 30194208, "methods": [ 10061760, 10061824, @@ -46177,23 +46177,23 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_t", - "vtable_address": 30194336, + "vtable_address": 30194272, "methods": [ 10061792, 10061888, - 24747814, + 24747750, 9504208, 14922912, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14113504, 9484512, 14655008, 9474464, 14095072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057616, 14026208 @@ -46272,23 +46272,23 @@ }, { "type_name": "CCSUsrMsg_QuestProgress", - "vtable_address": 30859704, + "vtable_address": 30859640, "methods": [ 14777792, 14809840, - 24747814, + 24747750, 9500928, 14892880, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046576, 9484400, 14549760, 9474464, 14191200, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058128, 14026464 @@ -46324,23 +46324,23 @@ }, { "type_name": "CCSUsrMsg_RadioText", - "vtable_address": 30856504, + "vtable_address": 30856440, "methods": [ 14774976, 14831056, - 24747814, + 24747750, 9502800, 14909632, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089344, 9484464, 14540272, 9474464, 14215936, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057488, 14026144 @@ -46376,7 +46376,7 @@ }, { "type_name": "CCSUsrMsg_RadioText_t", - "vtable_address": 30194496, + "vtable_address": 30194432, "methods": [ 10062016, 10062080, @@ -46459,23 +46459,23 @@ }, { "type_name": "CCSUsrMsg_RadioText_t", - "vtable_address": 30194560, + "vtable_address": 30194496, "methods": [ 10062048, 10062144, - 24747814, + 24747750, 9502800, 14909632, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089344, 9484464, 14540272, 9474464, 14215936, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057488, 14026144 @@ -46554,23 +46554,23 @@ }, { "type_name": "CCSUsrMsg_RawAudio", - "vtable_address": 30855864, + "vtable_address": 30855800, "methods": [ 14774384, 14822096, - 24747814, + 24747750, 9495328, 14909328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076512, 9484208, 14538528, 9474464, 14192832, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057360, 14026080 @@ -46606,7 +46606,7 @@ }, { "type_name": "CCSUsrMsg_RawAudio_t", - "vtable_address": 30255152, + "vtable_address": 30255088, "methods": [ 10635520, 10635584, @@ -46689,23 +46689,23 @@ }, { "type_name": "CCSUsrMsg_RawAudio_t", - "vtable_address": 30255216, + "vtable_address": 30255152, "methods": [ 10635552, 10635648, - 24747814, + 24747750, 9495328, 14909328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076512, 9484208, 14538528, 9474464, 14192832, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057360, 14026080 @@ -46784,23 +46784,23 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema", - "vtable_address": 30867704, + "vtable_address": 30867640, "methods": [ 14783760, 14823856, - 24747814, + 24747750, 9484992, 14912560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083328, 9483872, 14573360, 9474464, 14163040, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059728, 14027264 @@ -46836,23 +46836,23 @@ }, { "type_name": "CCSUsrMsg_ReloadEffect", - "vtable_address": 30857624, + "vtable_address": 30857560, "methods": [ 14776080, 14808432, - 24747814, + 24747750, 14373440, 14892208, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032944, 14064320, 14543184, 9474464, 14187264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057712, 14026256 @@ -46888,23 +46888,23 @@ }, { "type_name": "CCSUsrMsg_ReportHit", - "vtable_address": 30858424, + "vtable_address": 30858360, "methods": [ 14776736, 14808944, - 24747814, + 24747750, 9500464, 14892448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029936, 9484384, 14546096, 9474464, 14093776, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057872, 14026336 @@ -46940,10 +46940,10 @@ }, { "type_name": "CCSUsrMsg_ReportHit_t", - "vtable_address": 31278640, + "vtable_address": 31278576, "methods": [ - 17344144, - 17344208, + 17344016, + 17344080, 9482848, 9482864, 9482880, @@ -47023,23 +47023,23 @@ }, { "type_name": "CCSUsrMsg_ReportHit_t", - "vtable_address": 31278704, + "vtable_address": 31278640, "methods": [ - 17344176, - 17344272, - 24747814, + 17344048, + 17344144, + 24747750, 9500464, 14892448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029936, 9484384, 14546096, 9474464, 14093776, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057872, 14026336 @@ -47118,23 +47118,23 @@ }, { "type_name": "CCSUsrMsg_RequestState", - "vtable_address": 30866424, + "vtable_address": 30866360, "methods": [ 14782752, 14812656, - 24747814, + 24747750, 14381456, 14894304, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036016, 14064080, 14568736, 9474464, 14124416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059472, 14027136 @@ -47170,23 +47170,23 @@ }, { "type_name": "CCSUsrMsg_ResetHud", - "vtable_address": 30866104, + "vtable_address": 30866040, "methods": [ 14782496, 14812400, - 24747814, + 24747750, 14381168, 14894208, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029792, 14064112, 14567776, 9474464, 14094784, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059408, 14027104 @@ -47222,23 +47222,23 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames", - "vtable_address": 30863064, + "vtable_address": 30863000, "methods": [ 14780288, 14831376, - 24747814, + 24747750, 9498144, 14912112, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077360, 9484304, 14560160, 9474464, 14212544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058800, 14026800 @@ -47274,7 +47274,7 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 30969152, + "vtable_address": 30969088, "methods": [ 15984016, 15984080, @@ -47357,23 +47357,23 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 30969216, + "vtable_address": 30969152, "methods": [ 15984048, 15984144, - 24747814, + 24747750, 9498144, 14912112, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077360, 9484304, 14560160, 9474464, 14212544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058800, 14026800 @@ -47452,23 +47452,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData", - "vtable_address": 30865304, + "vtable_address": 30865240, "methods": [ 14850096, 14851840, - 24747814, + 24747750, 9488752, 14940752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14113344, 9484000, 14660656, 9474464, 14069264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059248, 14027024 @@ -47504,23 +47504,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_InitialConditions", - "vtable_address": 30865144, + "vtable_address": 30865080, "methods": [ 14781872, 14812016, - 24747814, + 24747750, 14380320, 14894032, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035584, 14063216, 14565552, 9474464, 14177312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059216, 14027008 @@ -47556,23 +47556,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent", - "vtable_address": 30864984, + "vtable_address": 30864920, "methods": [ 14859184, 14860208, - 24747814, + 24747750, 14380176, 14940400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14112736, 14063232, 14659792, 9474464, 14235936, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059184, 14026992 @@ -47608,23 +47608,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Damage", - "vtable_address": 30864824, + "vtable_address": 30864760, "methods": [ 14781744, 14811888, - 24747814, + 24747750, 14380000, 14893952, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035376, 14063200, 14564880, 9474464, 14251040, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059152, 14026976 @@ -47660,23 +47660,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Objective", - "vtable_address": 30864664, + "vtable_address": 30864600, "methods": [ 14781616, 14811760, - 24747814, + 24747750, 14379856, 14893904, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035328, 14063184, 14564400, 9474464, 14123744, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059120, 14026960 @@ -47712,23 +47712,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Victim", - "vtable_address": 30864504, + "vtable_address": 30864440, "methods": [ 14781488, 14811632, - 24747814, + 24747750, 14379712, 14893824, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035168, 14063168, 14563712, 9474464, 14238848, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059088, 14026944 @@ -47764,7 +47764,7 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_t", - "vtable_address": 30224832, + "vtable_address": 30224768, "methods": [ 10436992, 10437056, @@ -47847,23 +47847,23 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_t", - "vtable_address": 30224896, + "vtable_address": 30224832, "methods": [ 10437024, 10437120, - 24747814, + 24747750, 9488752, 14940752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14113344, 9484000, 14660656, 9474464, 14069264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059248, 14027024 @@ -47942,23 +47942,23 @@ }, { "type_name": "CCSUsrMsg_Rumble", - "vtable_address": 30855224, + "vtable_address": 30855160, "methods": [ 14773840, 14807920, - 24747814, + 24747750, 14371168, 14891872, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032512, 14064384, 14536336, 9474464, 14174752, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057232, 14026016 @@ -47994,23 +47994,23 @@ }, { "type_name": "CCSUsrMsg_SSUI", - "vtable_address": 30863224, + "vtable_address": 30863160, "methods": [ 14780448, 14810992, - 24747814, + 24747750, 9489216, 14893504, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030032, 9484016, 14560768, 9474464, 14094544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058832, 14026816 @@ -48046,23 +48046,23 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData", - "vtable_address": 30859864, + "vtable_address": 30859800, "methods": [ 14862320, 14862736, - 24747814, + 24747750, 9491072, 14926208, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14103984, 9484080, 14550320, 9474464, 14068032, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058160, 14026480 @@ -48098,23 +48098,23 @@ }, { "type_name": "CCSUsrMsg_SendAudio", - "vtable_address": 30855704, + "vtable_address": 30855640, "methods": [ 14774240, 14821936, - 24747814, + 24747750, 9502320, 14909072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 9484448, 14538128, 9474464, 14115792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057328, 14026064 @@ -48150,7 +48150,7 @@ }, { "type_name": "CCSUsrMsg_SendAudio_t", - "vtable_address": 30194720, + "vtable_address": 30194656, "methods": [ 10062240, 10062304, @@ -48233,23 +48233,23 @@ }, { "type_name": "CCSUsrMsg_SendAudio_t", - "vtable_address": 30194784, + "vtable_address": 30194720, "methods": [ 10062272, 10062368, - 24747814, + 24747750, 9502320, 14909072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 9484448, 14538128, 9474464, 14115792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057328, 14026064 @@ -48328,23 +48328,23 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient", - "vtable_address": 30861304, + "vtable_address": 30861240, "methods": [ 14778896, 14810480, - 24747814, + 24747750, 9501856, 14893264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034160, 9484432, 14555216, 9474464, 14250016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058448, 14026624 @@ -48380,10 +48380,10 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 31298104, + "vtable_address": 31298040, "methods": [ - 17795216, - 17795280, + 17795088, + 17795152, 9483184, 9483200, 9483216, @@ -48463,23 +48463,23 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 31298168, + "vtable_address": 31298104, "methods": [ - 17795248, - 17795344, - 24747814, + 17795120, + 17795216, + 24747750, 9501856, 14893264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034160, 9484432, 14555216, 9474464, 14250016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058448, 14026624 @@ -48558,23 +48558,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops", - "vtable_address": 30857304, + "vtable_address": 30857240, "methods": [ 14775712, 14842128, - 24747814, + 24747750, 9499072, 14935536, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074720, 9484336, 14655680, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14057648, 14026224 @@ -48610,7 +48610,7 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 30968928, + "vtable_address": 30968864, "methods": [ 15982080, 15982144, @@ -48693,23 +48693,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 30968992, + "vtable_address": 30968928, "methods": [ 15982112, 15982208, - 24747814, + 24747750, 9499072, 14935536, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074720, 9484336, 14655680, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14057648, 14026224 @@ -48788,23 +48788,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound", - "vtable_address": 30857464, + "vtable_address": 30857400, "methods": [ 14775872, 14853280, - 24747814, + 24747750, 9498608, 14935328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074832, 9484320, 14542592, 9474464, 14128128, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057680, 14026240 @@ -48840,7 +48840,7 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound_t", - "vtable_address": 30165176, + "vtable_address": 30165112, "methods": [ 9840352, 9840416, @@ -48923,23 +48923,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound_t", - "vtable_address": 30165240, + "vtable_address": 30165176, "methods": [ 9840384, 9840480, - 24747814, + 24747750, 9498608, 14935328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074832, 9484320, 14542592, 9474464, 14128128, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057680, 14026240 @@ -49018,23 +49018,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout", - "vtable_address": 30868024, + "vtable_address": 30867960, "methods": [ 14784112, 14842832, - 24747814, + 24747750, 9484528, 14935648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14102496, 9483856, 14662048, 9474464, 14133152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059792, 14027296 @@ -49070,23 +49070,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_LoadoutItem", - "vtable_address": 30867864, + "vtable_address": 30867800, "methods": [ 14783904, 14853728, - 24747814, + 24747750, 14382688, 14935424, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074960, 14063264, 14573936, 9474464, 14156288, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059760, 14027280 @@ -49122,10 +49122,10 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 31274280, + "vtable_address": 31274216, "methods": [ - 17255200, - 17255264, + 17255072, + 17255136, 9479040, 9479056, 9479072, @@ -49205,23 +49205,23 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 31274344, + "vtable_address": 31274280, "methods": [ - 17255232, - 17255328, - 24747814, + 17255104, + 17255200, + 24747750, 9484528, 14935648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14102496, 9483856, 14662048, 9474464, 14133152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059792, 14027296 @@ -49300,23 +49300,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll", - "vtable_address": 30867064, + "vtable_address": 30867000, "methods": [ 14865088, 14868448, - 24747814, + 24747750, 9499536, 14942976, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14228896, 9484352, 14570656, 9474464, 14128416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059600, 14027200 @@ -49352,7 +49352,7 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 30968704, + "vtable_address": 30968640, "methods": [ 15981312, 15981376, @@ -49435,23 +49435,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 30968768, + "vtable_address": 30968704, "methods": [ 15981344, 15981440, - 24747814, + 24747750, 9499536, 14942976, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14228896, 9484352, 14570656, 9474464, 14128416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059600, 14027200 @@ -49530,23 +49530,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate", - "vtable_address": 30861624, + "vtable_address": 30861560, "methods": [ 14779152, 14842480, - 24747814, + 24747750, 9494400, 14919984, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14108624, 9484176, 14657808, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14058512, 14026656 @@ -49582,23 +49582,23 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_RankUpdate", - "vtable_address": 30861464, + "vtable_address": 30861400, "methods": [ 14779024, 14810608, - 24747814, + 24747750, 14376768, 14893328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034368, 14063056, 14555888, 9474464, 14242720, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058480, 14026640 @@ -49634,23 +49634,23 @@ }, { "type_name": "CCSUsrMsg_Shake", - "vtable_address": 30854904, + "vtable_address": 30854840, "methods": [ 14773552, 14807792, - 24747814, + 24747750, 14370880, 14891808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032432, 14064416, 14535104, 9474464, 14152768, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057168, 14025984 @@ -49686,23 +49686,23 @@ }, { "type_name": "CCSUsrMsg_ShootInfo", - "vtable_address": 30865944, + "vtable_address": 30865880, "methods": [ 14782256, 14845904, - 24747814, + 24747750, 9485456, 15037744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15037936, 9483888, 14661232, 9474464, 14161952, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059376, 14027088 @@ -49738,10 +49738,10 @@ }, { "type_name": "CCSUsrMsg_ShootInfo_t", - "vtable_address": 31699104, + "vtable_address": 31699040, "methods": [ - 21372560, - 21372624, + 21372432, + 21372496, 9479264, 9479280, 9479296, @@ -49821,23 +49821,23 @@ }, { "type_name": "CCSUsrMsg_ShootInfo_t", - "vtable_address": 31699168, + "vtable_address": 31699104, "methods": [ - 21372592, - 21372688, - 24747814, + 21372464, + 21372560, + 24747750, 9485456, 15037744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15037936, 9483888, 14661232, 9474464, 14161952, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059376, 14027088 @@ -49916,23 +49916,23 @@ }, { "type_name": "CCSUsrMsg_ShowMenu", - "vtable_address": 30862104, + "vtable_address": 30862040, "methods": [ 14779456, 14823056, - 24747814, + 24747750, 14377344, 14911056, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077232, 14064208, 14557360, 9474464, 14180960, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058608, 14026704 @@ -49968,23 +49968,23 @@ }, { "type_name": "CCSUsrMsg_StopSpectatorMode", - "vtable_address": 30866584, + "vtable_address": 30866520, "methods": [ 14782880, 14812784, - 24747814, + 24747750, 14381600, 14894352, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036064, 14064064, 14569216, 9474464, 14124640, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059504, 14027152 @@ -50020,23 +50020,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats", - "vtable_address": 30863864, + "vtable_address": 30863800, "methods": [ 14780960, 14844032, - 24747814, + 24747750, 9494864, 14926288, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047760, 9484192, 14658272, 9474464, 14196768, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058960, 14026880 @@ -50072,23 +50072,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Damage", - "vtable_address": 30863704, + "vtable_address": 30863640, "methods": [ 14780832, 14811376, - 24747814, + 24747750, 14378864, 14893696, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034896, 14063120, 14562480, 9474464, 14235072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058928, 14026864 @@ -50124,23 +50124,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Fact", - "vtable_address": 30863384, + "vtable_address": 30863320, "methods": [ 14780576, 14811120, - 24747814, + 24747750, 14378560, 14893568, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034656, 14063088, 14561344, 9474464, 14188416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058864, 14026832 @@ -50176,23 +50176,23 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Placement", - "vtable_address": 30863544, + "vtable_address": 30863480, "methods": [ 14780704, 14811248, - 24747814, + 24747750, 14378720, 14893632, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034784, 14063104, 14561888, 9474464, 14176800, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058896, 14026848 @@ -50228,23 +50228,23 @@ }, { "type_name": "CCSUsrMsg_Train", - "vtable_address": 30854424, + "vtable_address": 30854360, "methods": [ 14773056, 14807664, - 24747814, + 24747750, 14370416, 14891760, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032384, 14064464, 14533296, 9474464, 14123072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057072, 14025936 @@ -50280,23 +50280,23 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar", - "vtable_address": 30857944, + "vtable_address": 30857880, "methods": [ 14776352, 14808560, - 24747814, + 24747750, 9489680, 14892272, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033056, 9484032, 14544384, 9474464, 14165024, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057776, 14026288 @@ -50332,23 +50332,23 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu", - "vtable_address": 30854104, + "vtable_address": 30854040, "methods": [ 14772752, 14834976, - 24747814, + 24747750, 9486384, 14930528, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14126016, 9483920, 14653696, 9474464, 14146688, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057008, 14025904 @@ -50384,23 +50384,23 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu_Keys", - "vtable_address": 30853944, + "vtable_address": 30853880, "methods": [ 14772592, 14830896, - 24747814, + 24747750, 14369952, 14908384, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070256, 14062992, 14532352, 9474464, 14140064, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056976, 14025888 @@ -50436,23 +50436,23 @@ }, { "type_name": "CCSUsrMsg_VoiceMask", - "vtable_address": 30856184, + "vtable_address": 30856120, "methods": [ 14774656, 14841776, - 24747814, + 24747750, 14372016, 14920928, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14096896, 14064336, 14654352, 9474464, 14094896, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057424, 14026112 @@ -50488,23 +50488,23 @@ }, { "type_name": "CCSUsrMsg_VoiceMask_PlayerMask", - "vtable_address": 30856024, + "vtable_address": 30855960, "methods": [ 14774528, 14808176, - 24747814, + 24747750, 14371840, 14892000, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032624, 14063008, 14539120, 9474464, 14144224, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057392, 14026096 @@ -50540,23 +50540,23 @@ }, { "type_name": "CCSUsrMsg_VoteFailed", - "vtable_address": 30860984, + "vtable_address": 30860920, "methods": [ 14778624, 14810352, - 24747814, + 24747750, 9496256, 14893136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034080, 9484240, 14554240, 9474464, 14145632, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058384, 14026592 @@ -50592,7 +50592,7 @@ }, { "type_name": "CCSUsrMsg_VoteFailed_t", - "vtable_address": 30224384, + "vtable_address": 30224320, "methods": [ 10435184, 10435248, @@ -50675,23 +50675,23 @@ }, { "type_name": "CCSUsrMsg_VoteFailed_t", - "vtable_address": 30224448, + "vtable_address": 30224384, "methods": [ 10435216, 10435312, - 24747814, + 24747750, 9496256, 14893136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034080, 9484240, 14554240, 9474464, 14145632, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058384, 14026592 @@ -50770,23 +50770,23 @@ }, { "type_name": "CCSUsrMsg_VotePass", - "vtable_address": 30860824, + "vtable_address": 30860760, "methods": [ 14778464, 14831216, - 24747814, + 24747750, 9496736, 14910656, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077056, 9484256, 14553632, 9474464, 14211968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058352, 14026576 @@ -50822,7 +50822,7 @@ }, { "type_name": "CCSUsrMsg_VotePass_t", - "vtable_address": 30224160, + "vtable_address": 30224096, "methods": [ 10435376, 10435440, @@ -50905,23 +50905,23 @@ }, { "type_name": "CCSUsrMsg_VotePass_t", - "vtable_address": 30224224, + "vtable_address": 30224160, "methods": [ 10435408, 10435504, - 24747814, + 24747750, 9496736, 14910656, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077056, 9484256, 14553632, 9474464, 14211968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058352, 14026576 @@ -51000,23 +51000,23 @@ }, { "type_name": "CCSUsrMsg_VoteSetup", - "vtable_address": 30861144, + "vtable_address": 30861080, "methods": [ 14778752, 14822736, - 24747814, + 24747750, 9495792, 14893200, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 9484224, 14554816, 9474464, 14090208, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14058416, 14026608 @@ -51052,7 +51052,7 @@ }, { "type_name": "CCSUsrMsg_VoteSetup_t", - "vtable_address": 30224608, + "vtable_address": 30224544, "methods": [ 10430000, 10430064, @@ -51135,23 +51135,23 @@ }, { "type_name": "CCSUsrMsg_VoteSetup_t", - "vtable_address": 30224672, + "vtable_address": 30224608, "methods": [ 10430032, 10430128, - 24747814, + 24747750, 9495792, 14893200, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 9484224, 14554816, 9474464, 14090208, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14058416, 14026608 @@ -51230,23 +51230,23 @@ }, { "type_name": "CCSUsrMsg_VoteStart", - "vtable_address": 30860664, + "vtable_address": 30860600, "methods": [ 14778304, 14833488, - 24747814, + 24747750, 9497200, 14910480, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076784, 9484272, 14552896, 9474464, 14302304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058320, 14026560 @@ -51282,7 +51282,7 @@ }, { "type_name": "CCSUsrMsg_VoteStart_t", - "vtable_address": 30223936, + "vtable_address": 30223872, "methods": [ 10434800, 10434864, @@ -51365,23 +51365,23 @@ }, { "type_name": "CCSUsrMsg_VoteStart_t", - "vtable_address": 30224000, + "vtable_address": 30223936, "methods": [ 10434832, 10434928, - 24747814, + 24747750, 9497200, 14910480, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076784, 9484272, 14552896, 9474464, 14302304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058320, 14026560 @@ -51460,23 +51460,23 @@ }, { "type_name": "CCSUsrMsg_WeaponSound", - "vtable_address": 30857784, + "vtable_address": 30857720, "methods": [ 14776208, 14822576, - 24747814, + 24747750, 9491552, 14910176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076640, 9484096, 14543728, 9474464, 14217152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057744, 14026272 @@ -51512,10 +51512,10 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 31084128, + "vtable_address": 31084064, "methods": [ - 16924576, - 16924640, + 16924448, + 16924512, 9480720, 9480736, 9480752, @@ -51595,23 +51595,23 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 31084192, + "vtable_address": 31084128, "methods": [ - 16924608, - 16924704, - 24747814, + 16924480, + 16924576, + 24747750, 9491552, 14910176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076640, 9484096, 14543728, 9474464, 14217152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057744, 14026272 @@ -51690,23 +51690,23 @@ }, { "type_name": "CCSUsrMsg_XRankGet", - "vtable_address": 30860184, + "vtable_address": 30860120, "methods": [ 14777920, 14809968, - 24747814, + 24747750, 14375632, 14892944, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033808, 14064256, 14551152, 9474464, 14144928, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058224, 14026512 @@ -51742,23 +51742,23 @@ }, { "type_name": "CCSUsrMsg_XRankUpd", - "vtable_address": 30860344, + "vtable_address": 30860280, "methods": [ 14778048, 14810096, - 24747814, + 24747750, 14375776, 14893008, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033888, 14064240, 14551728, 9474464, 14176288, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058256, 14026528 @@ -51794,23 +51794,23 @@ }, { "type_name": "CCSUsrMsg_XpUpdate", - "vtable_address": 30861784, + "vtable_address": 30861720, "methods": [ 14873728, 14876048, - 24747814, + 24747750, 9493920, 14922832, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14106160, 9484160, 14556544, 9474464, 14068224, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058544, 14026672 @@ -51846,33 +51846,33 @@ }, { "type_name": "CCSWeaponBase", - "vtable_address": 31094976, + "vtable_address": 31094912, "methods": [ 13528544, - 16929328, - 16929648, - 18377552, - 18065872, - 17165536, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16929200, + 16929520, + 18377424, + 18065744, + 17165408, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -51883,21 +51883,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914096, - 17172400, - 16918176, + 26427360, + 16913968, + 17172272, + 16918048, 9635312, - 16936992, - 18308160, + 16936864, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -51908,114 +51908,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -52029,47 +52029,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -52077,11 +52077,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -52091,221 +52091,221 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, + 16924176, + 17087920, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 17088048, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 16913472, + 16914000, + 17109936, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 16913600, - 16914128, - 17110064, - 17035984, - 16728496, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 17069440, - 17091984, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 17069312, + 17091856, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624 + 16913488, + 16728496 ], "bases": [ { @@ -52411,127 +52411,127 @@ } } }, + { + "type_name": "CCSWeaponBase", + "vtable_address": 31098592, + "methods": [ + 16918064, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 + ], + "bases": [ + { + "type_name": "CBasePlayerWeapon", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CEconEntity", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseFlex", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [ + { + "type_name": "CBaseAnimGraph", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseModelEntity", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseEntity", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CEntityInstance", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + } + ] + } + } + }, + { + "type_name": "IHasAttributes", + "details": { + "Itanium": { + "offset": 3632, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "IAttachmentOverride", + "details": { + "Itanium": { + "offset": 3640, + "flags": 2, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": -3632 + } + } + }, { "type_name": "CCSWeaponBase", "vtable_address": 31098656, "methods": [ - 16918192, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 - ], - "bases": [ - { - "type_name": "CBasePlayerWeapon", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CEconEntity", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseFlex", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [ - { - "type_name": "CBaseAnimGraph", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseModelEntity", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseEntity", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CEntityInstance", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - } - ] - } - } - }, - { - "type_name": "IHasAttributes", - "details": { - "Itanium": { - "offset": 3632, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "IAttachmentOverride", - "details": { - "Itanium": { - "offset": 3640, - "flags": 2, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": -3632 - } - } - }, - { - "type_name": "CCSWeaponBase", - "vtable_address": 31098720, - "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -52639,7 +52639,7 @@ }, { "type_name": "CCSWeaponBase", - "vtable_address": 32586176, + "vtable_address": 32586112, "methods": [], "bases": [], "model": { @@ -52650,33 +52650,33 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 31204928, + "vtable_address": 31204864, "methods": [ 13528544, - 16929968, - 16930016, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16929840, + 16929888, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -52687,21 +52687,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914608, - 17172400, - 16918128, + 26427360, + 16914480, + 17172272, + 16918000, 9635312, - 16939312, - 18308160, + 16939184, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -52712,114 +52712,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -52833,47 +52833,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -52881,11 +52881,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -52895,223 +52895,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -53230,14 +53230,14 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 31208624, + "vtable_address": 31208560, "methods": [ - 16918144, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16918016, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -53356,10 +53356,10 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 31208688, + "vtable_address": 31208624, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -53478,7 +53478,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32585344, + "vtable_address": 32585280, "methods": [], "bases": [], "model": { @@ -53489,7 +53489,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32587840, + "vtable_address": 32587776, "methods": [], "bases": [], "model": { @@ -53500,7 +53500,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32587968, + "vtable_address": 32587904, "methods": [], "bases": [], "model": { @@ -53511,7 +53511,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588096, + "vtable_address": 32588032, "methods": [], "bases": [], "model": { @@ -53522,7 +53522,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588224, + "vtable_address": 32588160, "methods": [], "bases": [], "model": { @@ -53533,7 +53533,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588352, + "vtable_address": 32588288, "methods": [], "bases": [], "model": { @@ -53544,7 +53544,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588480, + "vtable_address": 32588416, "methods": [], "bases": [], "model": { @@ -53555,7 +53555,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588608, + "vtable_address": 32588544, "methods": [], "bases": [], "model": { @@ -53566,7 +53566,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588736, + "vtable_address": 32588672, "methods": [], "bases": [], "model": { @@ -53577,7 +53577,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588864, + "vtable_address": 32588800, "methods": [], "bases": [], "model": { @@ -53588,7 +53588,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32588992, + "vtable_address": 32588928, "methods": [], "bases": [], "model": { @@ -53599,7 +53599,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32589120, + "vtable_address": 32589056, "methods": [], "bases": [], "model": { @@ -53610,7 +53610,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32589248, + "vtable_address": 32589184, "methods": [], "bases": [], "model": { @@ -53621,7 +53621,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32589376, + "vtable_address": 32589312, "methods": [], "bases": [], "model": { @@ -53632,7 +53632,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32589504, + "vtable_address": 32589440, "methods": [], "bases": [], "model": { @@ -53643,7 +53643,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32589632, + "vtable_address": 32589568, "methods": [], "bases": [], "model": { @@ -53654,7 +53654,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32589760, + "vtable_address": 32589696, "methods": [], "bases": [], "model": { @@ -53665,7 +53665,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32589888, + "vtable_address": 32589824, "methods": [], "bases": [], "model": { @@ -53676,7 +53676,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590016, + "vtable_address": 32589952, "methods": [], "bases": [], "model": { @@ -53687,7 +53687,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590144, + "vtable_address": 32590080, "methods": [], "bases": [], "model": { @@ -53698,7 +53698,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590272, + "vtable_address": 32590208, "methods": [], "bases": [], "model": { @@ -53709,7 +53709,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590400, + "vtable_address": 32590336, "methods": [], "bases": [], "model": { @@ -53720,7 +53720,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590528, + "vtable_address": 32590464, "methods": [], "bases": [], "model": { @@ -53731,7 +53731,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590656, + "vtable_address": 32590592, "methods": [], "bases": [], "model": { @@ -53742,7 +53742,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590784, + "vtable_address": 32590720, "methods": [], "bases": [], "model": { @@ -53753,7 +53753,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32590912, + "vtable_address": 32590848, "methods": [], "bases": [], "model": { @@ -53764,7 +53764,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32591040, + "vtable_address": 32590976, "methods": [], "bases": [], "model": { @@ -53775,7 +53775,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32591168, + "vtable_address": 32591104, "methods": [], "bases": [], "model": { @@ -53786,7 +53786,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32591296, + "vtable_address": 32591232, "methods": [], "bases": [], "model": { @@ -53797,7 +53797,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 32609600, + "vtable_address": 32609536, "methods": [], "bases": [], "model": { @@ -53808,33 +53808,33 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 31220048, + "vtable_address": 31219984, "methods": [ 13528544, - 16933936, - 16933984, - 18377552, - 18065872, - 17165536, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933808, + 16933856, + 18377424, + 18065744, + 17165408, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -53845,21 +53845,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915088, - 17172400, - 16916640, + 26427360, + 16914960, + 17172272, + 16916512, 9635312, - 16939632, - 18308160, + 16939504, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -53870,114 +53870,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -53991,47 +53991,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -54039,11 +54039,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -54053,221 +54053,221 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, + 16924176, + 17087920, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 17088048, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 16913472, + 16914000, + 17109936, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 16913600, - 16914128, - 17110064, - 17035984, - 16728496, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 17069440, - 17093728, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 17069312, + 17093600, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624 + 16913488, + 16728496 ], "bases": [ { @@ -54386,14 +54386,14 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 31223728, + "vtable_address": 31223664, "methods": [ - 16916656, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916528, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -54512,10 +54512,10 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 31223792, + "vtable_address": 31223728, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -54634,7 +54634,7 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 32586304, + "vtable_address": 32586240, "methods": [], "bases": [], "model": { @@ -54645,7 +54645,7 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 32586432, + "vtable_address": 32586368, "methods": [], "bases": [], "model": { @@ -54656,7 +54656,7 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 32586560, + "vtable_address": 32586496, "methods": [], "bases": [], "model": { @@ -54667,17 +54667,17 @@ }, { "type_name": "CCSWeaponBaseVData", - "vtable_address": 31094888, + "vtable_address": 31094824, "methods": [ - 16935104, - 16935936, - 16916432, - 16977312, - 17145824, - 16913536, - 16925040, - 16913552, - 16913568 + 16934976, + 16935808, + 16916304, + 16977184, + 17145696, + 16913408, + 16924912, + 16913424, + 16913440 ], "bases": [ { @@ -54721,11 +54721,11 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 31061152, + "vtable_address": 31061088, "methods": [ - 16833856, + 16833728, 9634384, - 16833920, + 16833792, 9634416, 9634432, 9634448, @@ -54779,13 +54779,13 @@ 9635216, 9635232, 9635248, - 16735520, + 16735392, 9635280, - 16735216, + 16735088, + 16834080, 16834208, - 16834336, - 16728752, - 16874896 + 16728624, + 16874768 ], "bases": [ { @@ -54828,9 +54828,9 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 31061672, + "vtable_address": 31061608, "methods": [ - 16876384 + 16876256 ], "bases": [ { @@ -54873,57 +54873,57 @@ }, { "type_name": "CCStrike15ItemDefinition", - "vtable_address": 31272152, + "vtable_address": 31272088, "methods": [ 9837344, - 17221904, + 17221776, 10424928, - 17221920, - 17222256, - 22545296, + 17221792, + 17222128, + 22545168, 10056832, - 22545344, - 17222208, - 17221968, - 17222016, - 17221952, - 22545232, - 17222048, + 22545216, 17222080, + 17221840, + 17221888, + 17221824, + 22545104, + 17221920, + 17221952, 10056800, - 17222320, - 17221984, - 17222272, - 17222288, - 22775200, - 17227968, - 17228256, - 17246032, - 17252832, - 17223488, - 22710976, - 22710656, - 22712400, - 17221936, + 17222192, + 17221856, + 17222144, + 17222160, + 22775136, + 17227840, + 17228128, + 17245904, + 17252704, + 17223360, + 22710912, + 22710592, + 22712336, + 17221808, 10056816, - 17222000, + 17221872, + 17221904, + 17221984, 17222032, + 17222048, + 22606864, + 22598544, + 22599632, + 22599088, + 22597008, + 22545136, + 22545152, + 17222064, + 17222096, 17222112, - 17222160, 17222176, - 22606992, - 22598672, - 22599760, - 22599216, - 22597136, - 22545264, - 22545280, - 17222192, - 17222224, - 17222240, - 17222304, - 22545248, - 17222336 + 22545120, + 17222208 ], "bases": [ { @@ -54956,71 +54956,71 @@ }, { "type_name": "CCStrike15ItemSchema", - "vtable_address": 31272560, + "vtable_address": 31272496, "methods": [ - 22549728, - 22895456, - 17222576, - 17222560, - 17224208, - 17222352, - 17222592, - 17222608, - 17222624, - 17222640, - 17222656, - 17222672, - 17222688, - 17222704, - 22551072, - 22545392, - 22553920, - 17222544, - 17222400, - 22557664, - 22557280, - 17222416, - 22568512, - 22567552, - 22584704, - 22567776, - 22558192, - 17224192, - 17222384, - 22554368, - 17235200, - 17224176, - 17225504, - 17238704, - 17222368, - 22749728, - 22564256, - 22878448, - 22810912, - 22829760, - 22820672, - 22547744, - 22566048, - 22557888, - 22557456, - 17222512, - 22554624, - 17229152, - 17228560, - 17222432, + 22549600, + 22895392, 17222448, + 17222432, + 17224080, + 17222224, 17222464, + 17222480, + 17222496, + 17222512, 17222528, - 17229728, - 17224128, - 17225568, - 22689168, - 22723456, - 22559632, - 22753392, - 22850304, - 22545376, - 17253136 + 17222544, + 17222560, + 17222576, + 22550944, + 22545264, + 22553792, + 17222416, + 17222272, + 22557536, + 22557152, + 17222288, + 22568384, + 22567424, + 22584576, + 22567648, + 22558064, + 17224064, + 17222256, + 22554240, + 17235072, + 17224048, + 17225376, + 17238576, + 17222240, + 22749664, + 22564128, + 22878384, + 22810848, + 22829696, + 22820608, + 22547616, + 22565920, + 22557760, + 22557328, + 17222384, + 22554496, + 17229024, + 17228432, + 17222304, + 17222320, + 17222336, + 17222400, + 17229600, + 17224000, + 17225440, + 22689104, + 22723392, + 22559504, + 22753328, + 22850240, + 22545248, + 17253008 ], "bases": [ { @@ -55053,15 +55053,15 @@ }, { "type_name": "CCStrike15ItemSystem", - "vtable_address": 31886392, + "vtable_address": 31886328, "methods": [ - 22544544, - 22544560, - 22544576, - 22544592, - 22545440, - 22547168, - 22544528 + 22544416, + 22544432, + 22544448, + 22544464, + 22545312, + 22547040, + 22544400 ], "bases": [ { @@ -55094,7 +55094,7 @@ }, { "type_name": "CCallResult", - "vtable_address": 30249624, + "vtable_address": 30249560, "methods": [ 10428560, 10438048, @@ -55120,11 +55120,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 31055304, + "vtable_address": 31055240, "methods": [ - 16653216, - 16656880, - 16653264 + 16653088, + 16656752, + 16653136 ], "bases": [ { @@ -55146,11 +55146,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 31055264, + "vtable_address": 31055200, "methods": [ - 16653280, - 16656944, - 16653328 + 16653152, + 16656816, + 16653200 ], "bases": [ { @@ -55172,7 +55172,7 @@ }, { "type_name": "CCallResult", - "vtable_address": 30233600, + "vtable_address": 30233536, "methods": [ 10428720, 10438112, @@ -55198,7 +55198,7 @@ }, { "type_name": "CCallback", - "vtable_address": 30181592, + "vtable_address": 30181528, "methods": [ 9895696, 9903520, @@ -55237,7 +55237,7 @@ }, { "type_name": "CCallback", - "vtable_address": 30181648, + "vtable_address": 30181584, "methods": [ 9895648, 9903584, @@ -55276,13 +55276,13 @@ }, { "type_name": "CCallback", - "vtable_address": 31890248, + "vtable_address": 31890184, "methods": [ - 22959232, + 22959168, 9903584, 9895680, - 22960416, - 22960448 + 22960352, + 22960384 ], "bases": [ { @@ -55315,13 +55315,13 @@ }, { "type_name": "CCallback", - "vtable_address": 31925088, + "vtable_address": 31925024, "methods": [ - 24077824, + 24077760, + 24077728, + 24077744, 24077792, - 24077808, - 24077856, - 24077888 + 24077824 ], "bases": [ { @@ -55354,21 +55354,21 @@ }, { "type_name": "CCallback", - "vtable_address": 31925144, - "methods": [ - 24077760, - 24077792, - 24077808, - 24077952, - 24077984, - 24077408, - 24077360, - 24077520, + "vtable_address": 31925080, + "methods": [ + 24077696, + 24077728, + 24077744, + 24077888, + 24077920, + 24077344, + 24077296, 24077456, - 24077616, - 24077568, - 24077712, - 24077664 + 24077392, + 24077552, + 24077504, + 24077648, + 24077600 ], "bases": [ { @@ -55401,13 +55401,13 @@ }, { "type_name": "CCallback", - "vtable_address": 32069880, + "vtable_address": 32069816, "methods": [ - 29187296, + 29187232, + 29187200, + 29187216, 29187264, - 29187280, - 29187328, - 29187360 + 29187296 ], "bases": [ { @@ -55440,13 +55440,13 @@ }, { "type_name": "CCallback", - "vtable_address": 32070048, + "vtable_address": 32069984, "methods": [ - 29187184, - 29191760, - 29187216, - 29187520, - 29187552 + 29187120, + 29191696, + 29187152, + 29187456, + 29187488 ], "bases": [ { @@ -55479,13 +55479,13 @@ }, { "type_name": "CCallback", - "vtable_address": 32070104, + "vtable_address": 32070040, "methods": [ - 29187152, + 29187088, 9903584, 9895680, - 29187616, - 29187648 + 29187552, + 29187584 ], "bases": [ { @@ -55518,13 +55518,13 @@ }, { "type_name": "CCallback", - "vtable_address": 32069936, + "vtable_address": 32069872, "methods": [ - 29187232, - 29187264, - 29187280, - 29187424, - 29187456 + 29187168, + 29187200, + 29187216, + 29187360, + 29187392 ], "bases": [ { @@ -55557,7 +55557,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 30179032, + "vtable_address": 30178968, "methods": [], "bases": [], "model": { @@ -55568,7 +55568,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 30179480, + "vtable_address": 30179416, "methods": [], "bases": [], "model": { @@ -55579,7 +55579,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 30222992, + "vtable_address": 30222928, "methods": [], "bases": [], "model": { @@ -55590,7 +55590,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 30223512, + "vtable_address": 30223448, "methods": [], "bases": [], "model": { @@ -55601,7 +55601,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 31028936, + "vtable_address": 31028872, "methods": [], "bases": [], "model": { @@ -55612,7 +55612,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 31028976, + "vtable_address": 31028912, "methods": [], "bases": [], "model": { @@ -55623,7 +55623,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 31924832, + "vtable_address": 31924768, "methods": [], "bases": [], "model": { @@ -55634,7 +55634,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 32069072, + "vtable_address": 32069008, "methods": [], "bases": [], "model": { @@ -55645,7 +55645,7 @@ }, { "type_name": "CCallbackBase", - "vtable_address": 32069160, + "vtable_address": 32069096, "methods": [], "bases": [], "model": { @@ -55656,7 +55656,7 @@ }, { "type_name": "CCallbackImpl<16>", - "vtable_address": 30181536, + "vtable_address": 30181472, "methods": [], "bases": [ { @@ -55678,7 +55678,7 @@ }, { "type_name": "CCallbackImpl<1>", - "vtable_address": 30180192, + "vtable_address": 30180128, "methods": [], "bases": [ { @@ -55700,7 +55700,7 @@ }, { "type_name": "CCallbackImpl<24>", - "vtable_address": 31925032, + "vtable_address": 31924968, "methods": [], "bases": [ { @@ -55722,7 +55722,7 @@ }, { "type_name": "CCallbackImpl<4>", - "vtable_address": 32069824, + "vtable_address": 32069760, "methods": [], "bases": [ { @@ -55744,7 +55744,7 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 32069992, + "vtable_address": 32069928, "methods": [], "bases": [ { @@ -55766,32 +55766,32 @@ }, { "type_name": "CChangeLevel", - "vtable_address": 30770680, + "vtable_address": 30770616, "methods": [ 11931776, 13879680, 13880256, - 18377504, - 26419168, - 20153552, - 18010864, - 22464032, - 26419632, - 26419200, - 26419200, - 22412592, + 18377376, + 26419104, + 20153424, + 18010736, + 22463904, + 26419568, + 26419136, + 26419136, + 22412464, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -55803,21 +55803,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22412176, + 26427360, + 22412048, 13867552, 13866192, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -55841,83 +55841,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -55925,16 +55925,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -55955,7 +55955,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -55968,28 +55968,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -56000,7 +56000,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -56011,38 +56011,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22413024, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22412896, 11742352, - 22413408, + 22413280, 10058448, 11742352, 11749904, @@ -56113,7 +56113,7 @@ }, { "type_name": "CChangeLevelIssue", - "vtable_address": 30230720, + "vtable_address": 30230656, "methods": [ 10429120, 10473168, @@ -56181,12 +56181,12 @@ }, { "type_name": "CCheckClient", - "vtable_address": 31872216, + "vtable_address": 31872152, "methods": [ 9634368, 9634384, 9634400, - 22284848, + 22284720, 9634432, 9634448, 9634464, @@ -56216,7 +56216,7 @@ 9634848, 9634864, 9634880, - 22326272, + 22326144, 9634912, 9634928, 9634944, @@ -56239,12 +56239,12 @@ 9635216, 9635232, 9635248, - 22263840, + 22263712, 9635280, - 22263824, - 22277104, - 22277120, - 22263808 + 22263696, + 22276976, + 22276992, + 22263680 ], "bases": [ { @@ -56277,32 +56277,32 @@ }, { "type_name": "CChicken", - "vtable_address": 30280216, + "vtable_address": 30280152, "methods": [ 13526704, 11405472, 11408144, - 18377552, - 18065872, + 18377424, + 18065744, 11510144, - 18010864, + 18010736, 11510256, - 26419632, - 18009552, - 26419200, - 18495392, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18502240, + 26419568, + 18009424, + 26419136, + 18495264, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18502112, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11404768, 9635872, 9665808, @@ -56314,21 +56314,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11402224, 11514544, 11403664, 9635312, 11415568, - 18308160, + 18308032, 9635328, 11514000, - 19871664, + 19871536, 9637008, 9637024, 9837040, @@ -56340,113 +56340,113 @@ 9635472, 9635488, 11402064, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 11512368, - 18161040, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -56456,7 +56456,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -56466,7 +56466,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -56477,41 +56477,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -56522,83 +56522,83 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, + 18004096, + 18010896, 11512352, - 18143760, - 18004224, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, 11402048, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 18495968, + 18495840, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 18502480, + 18275360, + 18502352, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 18405136, + 18405008, 11422480, 11416848, 11406640, @@ -56776,7 +56776,7 @@ }, { "type_name": "CChicken", - "vtable_address": 30283016, + "vtable_address": 30282952, "methods": [ 11404800, 11401984 @@ -56929,7 +56929,7 @@ }, { "type_name": "CChicken", - "vtable_address": 30283048, + "vtable_address": 30282984, "methods": [ 11408544, 11408352, @@ -57083,7 +57083,7 @@ }, { "type_name": "CChicken", - "vtable_address": 30283088, + "vtable_address": 30283024, "methods": [ 11407728, 11406592, @@ -57254,7 +57254,7 @@ }, { "type_name": "CChicken", - "vtable_address": 30283264, + "vtable_address": 30283200, "methods": [ 11403680, 11402096, @@ -57411,18 +57411,18 @@ }, { "type_name": "CChicken::NetworkVar_m_AttributeManager", - "vtable_address": 30279352, + "vtable_address": 30279288, "methods": [ 11404272, - 22544624, + 22544496, 11444704, 11401904, 11402176, 11404208, 11404224, - 22674144, - 22570496, - 22694560 + 22674080, + 22570368, + 22694496 ], "bases": [ { @@ -57455,23 +57455,23 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Request", - "vtable_address": 30924048, + "vtable_address": 30923984, "methods": [ 15618864, 15656528, - 24747814, + 24747750, 15290496, 15742336, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092800, 15078688, 15402528, 9474464, 15153664, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071552, 15044032 @@ -57507,23 +57507,23 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Response", - "vtable_address": 30924208, + "vtable_address": 30924144, "methods": [ 15619008, 15656688, - 24747814, + 24747750, 15290656, 15742640, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15078672, 15403120, 9474464, 15128688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071584, 15044048 @@ -57559,11 +57559,11 @@ }, { "type_name": "CChoreoActor", - "vtable_address": 31993672, + "vtable_address": 31993608, "methods": [ - 25569648, - 25569664, - 25569680 + 25569584, + 25569600, + 25569616 ], "bases": [ { @@ -57585,11 +57585,11 @@ }, { "type_name": "CChoreoChannel", - "vtable_address": 31993736, + "vtable_address": 31993672, "methods": [ - 25569648, - 25570640, - 25570624 + 25569584, + 25570576, + 25570560 ], "bases": [ { @@ -57611,19 +57611,19 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 31993984, - "methods": [ - 25576048, - 25569664, - 25570624, - 25580864, - 25581904, - 25576208, - 25576240, - 25576288, - 25576320, - 25576336, - 25576352 + "vtable_address": 31993920, + "methods": [ + 25575984, + 25569600, + 25570560, + 25580800, + 25581840, + 25576144, + 25576176, + 25576224, + 25576256, + 25576272, + 25576288 ], "bases": [ { @@ -57655,14 +57655,14 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 31994088, + "vtable_address": 31994024, "methods": [ - 25576576, - 25576608, - 25576736, + 25576512, 25576544, - 25576528, - 25576448 + 25576672, + 25576480, + 25576464, + 25576384 ], "bases": [ { @@ -57694,7 +57694,7 @@ }, { "type_name": "CChoreoObjectBase", - "vtable_address": 31993656, + "vtable_address": 31993592, "methods": [], "bases": [], "model": { @@ -57705,7 +57705,7 @@ }, { "type_name": "CChoreoObjectBase", - "vtable_address": 31993720, + "vtable_address": 31993656, "methods": [], "bases": [], "model": { @@ -57716,16 +57716,16 @@ }, { "type_name": "CChoreoScene", - "vtable_address": 31994904, + "vtable_address": 31994840, "methods": [ + 25591248, + 25591280, + 25591584, + 25591296, 25591312, - 25591344, - 25591648, - 25591360, - 25591376, - 25591392, - 25600768, - 25601360 + 25591328, + 25600704, + 25601296 ], "bases": [ { @@ -57747,12 +57747,12 @@ }, { "type_name": "CChoreoServicesSaveRestoreOps", - "vtable_address": 31309136, + "vtable_address": 31309072, "methods": [ - 18003216, - 18026656, - 18003312, - 18003376, + 18003088, + 18026528, + 18003184, + 18003248, 9634272, 9634288 ], @@ -57787,33 +57787,33 @@ }, { "type_name": "CCitadelSoundOpvarSetOBB", - "vtable_address": 31772512, + "vtable_address": 31772448, "methods": [ 13506768, - 21931840, - 21931856, + 21931712, + 21931728, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21931744, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21931616, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -57824,21 +57824,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21927888, - 22262128, - 21930704, + 26427360, + 21927760, + 22262000, + 21930576, 9635312, - 21983488, + 21983360, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -57862,83 +57862,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21931504, - 19840912, - 19834496, + 21931376, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -57946,16 +57946,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -57976,7 +57976,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -57989,28 +57989,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -58021,7 +58021,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -58032,7 +58032,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -58065,12 +58065,12 @@ }, { "type_name": "CClassAutoAllocatePtrSaveRestoreOps", - "vtable_address": 31317744, + "vtable_address": 31317680, "methods": [ - 18001904, - 18174928, - 18006816, - 18028592, + 18001776, + 18174800, + 18006688, + 18028464, 9634272, 9634288 ], @@ -58105,11 +58105,11 @@ }, { "type_name": "CCleanupRelationshipsGameSystem", - "vtable_address": 31431480, + "vtable_address": 31431416, "methods": [ 9634368, 9634384, - 19849968, + 19849840, 9634416, 9634432, 9634448, @@ -58163,12 +58163,12 @@ 9635216, 9635232, 9635248, - 19829120, + 19828992, 9635280, - 19829104, - 19832432, - 19832448, - 19829088 + 19828976, + 19832304, + 19832320, + 19828960 ], "bases": [ { @@ -58201,23 +58201,23 @@ }, { "type_name": "CClientHeaderOverwatchEvidence", - "vtable_address": 30837624, + "vtable_address": 30837560, "methods": [ 14759664, 14802416, - 24747814, + 24747750, 14351744, 14888560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043344, 14065696, 14483536, 9474464, 14143168, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053712, 14022816 @@ -58253,23 +58253,23 @@ }, { "type_name": "CClientMsg_ClientUIEvent", - "vtable_address": 30823224, + "vtable_address": 30823160, "methods": [ 14748544, 14828496, - 24747814, + 24747750, 9638624, 14900704, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14071616, 9638592, 14433424, 9474464, 14239648, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050832, 14018336 @@ -58305,23 +58305,23 @@ }, { "type_name": "CClientMsg_CustomGameEvent", - "vtable_address": 30822904, + "vtable_address": 30822840, "methods": [ 14748224, 14828176, - 24747814, + 24747750, 12437520, 14900448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070256, 12437104, 14432416, 9474464, 14179360, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050768, 14018304 @@ -58357,23 +58357,23 @@ }, { "type_name": "CClientMsg_CustomGameEventBounce", - "vtable_address": 30823064, + "vtable_address": 30823000, "methods": [ 14748384, 14828336, - 24747814, + 24747750, 12437616, 14900576, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080992, 12437120, 14432880, 9474464, 14217792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050800, 14018320 @@ -58409,23 +58409,23 @@ }, { "type_name": "CClientMsg_DevPaletteVisibilityChangedEvent", - "vtable_address": 30823384, + "vtable_address": 30823320, "methods": [ 14748704, 14797680, - 24747814, + 24747750, 14336192, 14885696, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029792, 14066320, 14434160, 9474464, 14094320, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050864, 14018352 @@ -58461,23 +58461,23 @@ }, { "type_name": "CClientMsg_ListenForResponseFound", - "vtable_address": 30823864, + "vtable_address": 30823800, "methods": [ 14749088, 14798064, - 24747814, + 24747750, 14336624, 14885856, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030832, 14066272, 14435552, 9474464, 14121504, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050960, 14018400 @@ -58513,23 +58513,23 @@ }, { "type_name": "CClientMsg_RotateAnchor", - "vtable_address": 30823704, + "vtable_address": 30823640, "methods": [ 14748960, 14797936, - 24747814, + 24747750, 14336480, 14885808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029824, 14066288, 14435232, 9474464, 14093312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050928, 14018384 @@ -58565,23 +58565,23 @@ }, { "type_name": "CClientMsg_WorldUIControllerHasPanelChangedEvent", - "vtable_address": 30823544, + "vtable_address": 30823480, "methods": [ 14748832, 14797808, - 24747814, + 24747750, 14336336, 14885744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039552, 14066304, 14434640, 9474464, 14156768, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050896, 14018368 @@ -58617,7 +58617,7 @@ }, { "type_name": "CClientUIDialogManager", - "vtable_address": 30138816, + "vtable_address": 30138752, "methods": [ 9634368, 9634384, @@ -58713,20 +58713,20 @@ }, { "type_name": "CCoJob", - "vtable_address": 31925280, + "vtable_address": 31925216, "methods": [ - 16729040, - 24098304, - 16729056, - 16729072, - 16729088, - 24094944, - 16729104, - 24100112, - 24100592, + 16728912, + 24098240, + 16728928, + 16728944, + 16728960, 24094880, - 16729120, - 24094912 + 16728976, + 24100048, + 24100528, + 24094816, + 16728992, + 24094848 ], "bases": [], "model": { @@ -58737,12 +58737,12 @@ }, { "type_name": "CCollisionProperty", - "vtable_address": 31450880, + "vtable_address": 31450816, "methods": [ 12334976, - 20153920, - 18002000, - 20153936 + 20153792, + 18001872, + 20153808 ], "bases": [], "model": { @@ -58753,12 +58753,12 @@ }, { "type_name": "CCollisionProperty::NetworkVar_m_collisionAttribute", - "vtable_address": 31450832, + "vtable_address": 31450768, "methods": [ 12334960, - 20153984, - 20153888, - 20153952 + 20153856, + 20153760, + 20153824 ], "bases": [ { @@ -58780,32 +58780,32 @@ }, { "type_name": "CColorCorrection", - "vtable_address": 30595200, + "vtable_address": 30595136, "methods": [ 13506768, 13384272, 13384288, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20347584, - 26419632, - 26419200, - 26419200, - 20308288, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20347456, + 26419568, + 26419136, + 26419136, + 20308160, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 13392464, 9635872, 9665808, @@ -58817,21 +58817,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20231808, + 26427360, + 20231680, 13382848, 13384000, 9635312, 13440784, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -58855,83 +58855,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20158560, - 19840912, - 19834496, + 20158432, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -58939,16 +58939,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -58969,7 +58969,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -58982,28 +58982,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -59014,7 +59014,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -59025,7 +59025,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -59058,12 +59058,12 @@ }, { "type_name": "CColorCorrectionSystem", - "vtable_address": 31457856, + "vtable_address": 31457792, "methods": [ 9634368, 9634384, 9634400, - 20164176, + 20164048, 9634432, 9634448, 9634464, @@ -59076,7 +59076,7 @@ 9634576, 9634592, 9634608, - 20232944, + 20232816, 9634640, 9634656, 9634672, @@ -59116,13 +59116,13 @@ 9635216, 9635232, 9635248, - 20154368, + 20154240, 9635280, - 20154352, - 20168304, - 20173216, - 20154336, - 20232928 + 20154224, + 20168176, + 20173088, + 20154208, + 20232800 ], "bases": [ { @@ -59176,11 +59176,11 @@ }, { "type_name": "CColorCorrectionSystem", - "vtable_address": 31458376, + "vtable_address": 31458312, "methods": [ - 20168400, - 20173328, - 20233008 + 20168272, + 20173200, + 20232880 ], "bases": [ { @@ -59234,33 +59234,33 @@ }, { "type_name": "CColorCorrectionVolume", - "vtable_address": 31458416, + "vtable_address": 31458352, "methods": [ 11931776, - 20190864, - 20191792, - 18377504, - 26419168, - 20153552, - 18010864, - 20359280, - 26419632, - 26419200, - 26419200, + 20190736, + 20191664, + 18377376, + 26419104, + 20153424, + 18010736, + 20359152, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 20161248, + 18378400, + 19829024, + 20161120, 9635872, 9665808, 9641296, @@ -59271,21 +59271,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154416, - 20159072, - 20156240, + 26427360, + 20154288, + 20158944, + 20156112, 9635312, - 20197568, - 18308160, + 20197440, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -59309,83 +59309,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20158512, - 19840912, - 19834496, + 20158384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -59393,16 +59393,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -59423,7 +59423,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -59436,28 +59436,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -59468,7 +59468,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -59479,41 +59479,41 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 20158912, - 11742352, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 20158784, - 20158848, 11742352, - 20154400, + 20158656, + 20158720, + 11742352, + 20154272, 10058464, 11751552 ], @@ -59581,12 +59581,12 @@ }, { "type_name": "CCommandQueueTester", - "vtable_address": 31704888, + "vtable_address": 31704824, "methods": [ 9634368, 9634384, 9634400, - 21593216, + 21593088, 9634432, 9634448, 9634464, @@ -59619,7 +59619,7 @@ 9634896, 9634912, 9634928, - 21522960, + 21522832, 9634960, 9634976, 9634992, @@ -59639,12 +59639,12 @@ 9635216, 9635232, 9635248, - 21367136, + 21367008, 9635280, - 21367120, - 21383728, - 21383264, - 21367104 + 21366992, + 21383600, + 21383136, + 21366976 ], "bases": [ { @@ -59677,33 +59677,33 @@ }, { "type_name": "CCommentaryAuto", - "vtable_address": 31466128, + "vtable_address": 31466064, "methods": [ 13506768, - 20177376, - 20177568, + 20177248, + 20177440, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20158640, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20158512, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -59714,21 +59714,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154576, - 20399920, - 20156304, + 26427360, + 20154448, + 20399792, + 20156176, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -59752,83 +59752,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -59836,16 +59836,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20181856, - 21311696, + 20181728, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -59866,7 +59866,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -59879,28 +59879,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -59911,7 +59911,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -59922,7 +59922,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -59955,12 +59955,12 @@ }, { "type_name": "CCommentarySystem", - "vtable_address": 31460768, + "vtable_address": 31460704, "methods": [ 9634368, 9634384, 9634400, - 20365904, + 20365776, 9634432, 9634448, 9634464, @@ -59969,11 +59969,11 @@ 9634512, 9634528, 9634544, - 20366624, + 20366496, 9634576, 9634592, 9634608, - 20237056, + 20236928, 9634640, 9634656, 9634672, @@ -60005,7 +60005,7 @@ 9635088, 9635104, 9635120, - 20162272, + 20162144, 9635152, 9635168, 9635184, @@ -60013,14 +60013,14 @@ 9635216, 9635232, 9635248, - 20154480, + 20154352, 9635280, - 20154464, + 20154336, + 20175952, 20176080, - 20176208, - 20154448, - 20156288, - 20154512 + 20154320, + 20156160, + 20154384 ], "bases": [ { @@ -60053,32 +60053,32 @@ }, { "type_name": "CCommentaryViewPosition", - "vtable_address": 31463936, + "vtable_address": 31463872, "methods": [ 13522144, - 20180544, - 20180912, - 18377504, - 26419168, - 20161264, - 18010864, - 20356720, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20180416, + 20180784, + 18377376, + 26419104, + 20161136, + 18010736, + 20356592, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 22485152, - 19829152, + 22485024, + 19829024, 12374128, 9635872, 9665808, @@ -60090,21 +60090,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154592, - 20159312, - 20156272, + 26427360, + 20154464, + 20159184, + 20156144, 9635312, 12387472, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -60128,83 +60128,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 22265696, + 22265568, 9635712, 9654336, 11742336, - 22266016, - 22262144, - 19834496, + 22265888, + 22262016, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22318496, + 22318368, 9637216, 9636096, 11746864, @@ -60212,16 +60212,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -60242,7 +60242,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -60255,28 +60255,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -60287,8 +60287,8 @@ 9636736, 9636752, 9636768, - 21066880, - 22361184, + 21066752, + 22361056, 11742320, 11742400, 11742464, @@ -60298,35 +60298,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -60381,16 +60381,16 @@ }, { "type_name": "CCommentary_SaveRestoreBlockHandler", - "vtable_address": 31461360, + "vtable_address": 31461296, "methods": [ - 20154560, + 20154432, 12427888, - 20189568, - 20194704, + 20189440, + 20194576, 12427904, 12427920, - 20194768, - 20364976, + 20194640, + 20364848, 12427936 ], "bases": [ @@ -60424,23 +60424,23 @@ }, { "type_name": "CCommunity_GamePersonalDataCategoryInfo", - "vtable_address": 30904848, + "vtable_address": 30904784, "methods": [ 15603232, 15664160, - 24747814, + 24747750, 15271136, 15729232, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15085856, 15076144, 15337232, 9474464, 15173008, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067712, 15040176 @@ -60476,23 +60476,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Request", - "vtable_address": 30905008, + "vtable_address": 30904944, "methods": [ 15603392, 15639024, - 24747814, + 24747750, 15271280, 15715888, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052864, 15080000, 15337744, 9474464, 15126432, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067744, 15040192 @@ -60528,23 +60528,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Response", - "vtable_address": 30905168, + "vtable_address": 30905104, "methods": [ 15603520, 15665600, - 24747814, + 24747750, 15271456, 15763104, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15122464, 15079984, 15496384, 9474464, 15136048, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067776, 15040208 @@ -60580,23 +60580,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Request", - "vtable_address": 30905328, + "vtable_address": 30905264, "methods": [ 15603696, 15662080, - 24747814, + 24747750, 15271616, 15729376, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15086016, 15079968, 15338224, 9474464, 15190208, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067808, 15040224 @@ -60632,23 +60632,23 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Response", - "vtable_address": 30905488, + "vtable_address": 30905424, "methods": [ 15603856, 15664336, - 24747814, + 24747750, 15271856, 15729536, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15100624, 15079952, 15338832, 9474464, 15186144, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067840, 15040240 @@ -60684,23 +60684,23 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Request", - "vtable_address": 30905648, + "vtable_address": 30905584, "methods": [ 15604016, 15639152, - 24747814, + 24747750, 15272016, 15715936, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052912, 15079936, 15339488, 9474464, 15145984, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067872, 15040256 @@ -60736,23 +60736,23 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Response", - "vtable_address": 30905808, + "vtable_address": 30905744, "methods": [ 15604144, 15639280, - 24747814, + 24747750, 15272160, 15716000, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052992, 15079920, 15340064, 9474464, 15126656, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067904, 15040272 @@ -60788,7 +60788,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 31985672, + "vtable_address": 31985608, "methods": [], "bases": [ { @@ -60810,7 +60810,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 31983992, + "vtable_address": 31983928, "methods": [], "bases": [ { @@ -60832,7 +60832,7 @@ }, { "type_name": "CCompressedAnim >", - "vtable_address": 31986032, + "vtable_address": 31985968, "methods": [], "bases": [ { @@ -60854,7 +60854,7 @@ }, { "type_name": "CCompressedAnim >", - "vtable_address": 31983272, + "vtable_address": 31983208, "methods": [], "bases": [ { @@ -60876,7 +60876,7 @@ }, { "type_name": "CCompressedAnim >", - "vtable_address": 31986392, + "vtable_address": 31986328, "methods": [], "bases": [ { @@ -60898,7 +60898,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 31985312, + "vtable_address": 31985248, "methods": [], "bases": [ { @@ -60920,7 +60920,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 31982912, + "vtable_address": 31982848, "methods": [], "bases": [ { @@ -60942,7 +60942,7 @@ }, { "type_name": "CCompressedAnim", - "vtable_address": 31984472, + "vtable_address": 31984408, "methods": [], "bases": [ { @@ -60964,21 +60964,21 @@ }, { "type_name": "CCompressedAnimQuaternion", - "vtable_address": 31984232, + "vtable_address": 31984168, "methods": [ - 25125184, - 25125200, - 25125216, - 25132416, - 25134784, - 25132928, - 25131392, - 25136592, - 25156176, - 25164352, - 25125232, - 25139968, - 25131472 + 25125120, + 25125136, + 25125152, + 25132352, + 25134720, + 25132864, + 25131328, + 25136528, + 25156112, + 25164288, + 25125168, + 25139904, + 25131408 ], "bases": [ { @@ -61011,21 +61011,21 @@ }, { "type_name": "CCompressedAnimVector3", - "vtable_address": 31983632, + "vtable_address": 31983568, "methods": [ - 25124976, - 25124992, - 25125008, - 25132496, - 25134720, - 25132800, - 25131520, - 25137040, - 25157456, - 25165568, - 25144304, - 25172080, - 25131632 + 25124912, + 25124928, + 25124944, + 25132432, + 25134656, + 25132736, + 25131456, + 25136976, + 25157392, + 25165504, + 25144240, + 25172016, + 25131568 ], "bases": [ { @@ -61058,21 +61058,21 @@ }, { "type_name": "CCompressedDeltaVector3", - "vtable_address": 31983752, + "vtable_address": 31983688, "methods": [ - 25125024, - 25125040, - 25125056, - 25138048, - 25134720, - 25132800, - 25131520, - 25137152, - 25157136, - 25165264, - 25142352, - 25170624, - 25131632 + 25124960, + 25124976, + 25124992, + 25137984, + 25134656, + 25132736, + 25131456, + 25137088, + 25157072, + 25165200, + 25142288, + 25170560, + 25131568 ], "bases": [ { @@ -61105,21 +61105,21 @@ }, { "type_name": "CCompressedFullBool", - "vtable_address": 31985552, + "vtable_address": 31985488, "methods": [ - 25125648, - 25125664, - 25125680, - 25127680, - 25134912, - 25136288, + 25125584, + 25125600, + 25125616, + 25127616, + 25134848, + 25136224, + 25128032, + 25135888, + 25153232, + 25161552, 25128096, - 25135952, - 25153296, - 25161616, - 25128160, - 25148480, - 25128176 + 25148416, + 25128112 ], "bases": [ { @@ -61163,21 +61163,21 @@ }, { "type_name": "CCompressedFullChar", - "vtable_address": 31984952, + "vtable_address": 31984888, "methods": [ - 25125456, - 25125472, - 25125488, - 25129440, - 25134848, - 25133152, - 25128864, - 25137488, - 25159696, - 25167696, - 25129984, - 25168832, - 25128944 + 25125392, + 25125408, + 25125424, + 25129376, + 25134784, + 25133088, + 25128800, + 25137424, + 25159632, + 25167632, + 25129920, + 25168768, + 25128880 ], "bases": [ { @@ -61221,21 +61221,21 @@ }, { "type_name": "CCompressedFullColor32", - "vtable_address": 31985912, + "vtable_address": 31985848, "methods": [ - 25125744, - 25125760, - 25125776, - 25127072, - 25134976, - 25133648, + 25125680, + 25125696, + 25125712, + 25127008, + 25134912, + 25133584, + 25127232, + 25136112, + 25153872, + 25162160, 25127296, - 25136176, - 25153936, - 25162224, - 25127360, - 25150400, - 25127376 + 25150336, + 25127312 ], "bases": [ { @@ -61279,21 +61279,21 @@ }, { "type_name": "CCompressedFullFloat", - "vtable_address": 31983152, + "vtable_address": 31983088, "methods": [ - 25124832, - 25124848, - 25124864, - 25132304, - 25134656, - 25131712, + 25124768, + 25124784, + 25124800, + 25132240, + 25134592, + 25131648, + 25131776, + 25135216, + 25152592, + 25160944, 25131840, - 25135280, - 25152656, - 25161008, - 25131904, - 25138368, - 25131968 + 25138304, + 25131904 ], "bases": [ { @@ -61337,21 +61337,21 @@ }, { "type_name": "CCompressedFullInt", - "vtable_address": 31985192, + "vtable_address": 31985128, "methods": [ - 25125552, - 25125568, - 25125584, - 25128640, - 25134848, - 25133152, + 25125488, + 25125504, + 25125520, + 25128576, + 25134784, + 25133088, + 25128800, + 25137872, + 25158352, + 25166416, 25128864, - 25137936, - 25158416, - 25166480, - 25128928, - 25175040, - 25128944 + 25174976, + 25128880 ], "bases": [ { @@ -61395,21 +61395,21 @@ }, { "type_name": "CCompressedFullQuaternion", - "vtable_address": 31984352, + "vtable_address": 31984288, "methods": [ - 25125248, - 25125264, - 25125280, - 25132128, - 25134784, - 25132928, - 25131392, - 25136704, - 25155856, - 25164048, - 25125296, - 25143680, - 25131472 + 25125184, + 25125200, + 25125216, + 25132064, + 25134720, + 25132864, + 25131328, + 25136640, + 25155792, + 25163984, + 25125232, + 25143616, + 25131408 ], "bases": [ { @@ -61442,21 +61442,21 @@ }, { "type_name": "CCompressedFullShort", - "vtable_address": 31985072, + "vtable_address": 31985008, "methods": [ - 25125504, - 25125520, - 25125536, - 25128960, - 25134848, - 25133152, - 25128864, - 25137600, - 25159056, - 25167088, - 25129376, - 25175552, - 25128944 + 25125440, + 25125456, + 25125472, + 25128896, + 25134784, + 25133088, + 25128800, + 25137536, + 25158992, + 25167024, + 25129312, + 25175488, + 25128880 ], "bases": [ { @@ -61500,21 +61500,21 @@ }, { "type_name": "CCompressedFullVector2D", - "vtable_address": 31986272, + "vtable_address": 31986208, "methods": [ - 25125840, - 25125856, - 25125872, - 25126704, - 25135040, - 25133952, + 25125776, + 25125792, + 25125808, + 25126640, + 25134976, + 25133888, + 25126720, + 25135440, + 25154512, + 25162768, 25126784, - 25135504, - 25154576, - 25162832, - 25126848, - 25149760, - 25126912 + 25149696, + 25126848 ], "bases": [ { @@ -61558,21 +61558,21 @@ }, { "type_name": "CCompressedFullVector3", - "vtable_address": 31983872, + "vtable_address": 31983808, "methods": [ - 25125072, - 25125088, - 25125104, - 25132192, - 25134720, - 25132800, - 25131520, - 25137264, - 25156816, - 25164960, - 25125120, - 25160384, - 25131632 + 25125008, + 25125024, + 25125040, + 25132128, + 25134656, + 25132736, + 25131456, + 25137200, + 25156752, + 25164896, + 25125056, + 25160320, + 25131568 ], "bases": [ { @@ -61605,21 +61605,21 @@ }, { "type_name": "CCompressedFullVector4D", - "vtable_address": 31986632, + "vtable_address": 31986568, "methods": [ - 25125936, - 25125952, - 25125968, - 25126240, - 25135104, - 25134080, - 25126336, - 25135728, - 25155216, - 25163440, - 25126416, - 25149120, - 25126512 + 25125872, + 25125888, + 25125904, + 25126176, + 25135040, + 25134016, + 25126272, + 25135664, + 25155152, + 25163376, + 25126352, + 25149056, + 25126448 ], "bases": [ { @@ -61663,7 +61663,7 @@ }, { "type_name": "CCompressedList, Vec4D >", - "vtable_address": 31982896, + "vtable_address": 31982832, "methods": [], "bases": [ { @@ -61696,21 +61696,21 @@ }, { "type_name": "CCompressedStaticBool", - "vtable_address": 31985432, + "vtable_address": 31985368, "methods": [ - 25125600, - 25125616, - 25125632, - 25128192, - 25134912, - 25136288, - 25128096, - 25135840, - 25153616, - 25161920, - 25128544, - 25145536, - 25128176 + 25125536, + 25125552, + 25125568, + 25128128, + 25134848, + 25136224, + 25128032, + 25135776, + 25153552, + 25161856, + 25128480, + 25145472, + 25128112 ], "bases": [ { @@ -61754,21 +61754,21 @@ }, { "type_name": "CCompressedStaticChar", - "vtable_address": 31984712, + "vtable_address": 31984648, "methods": [ - 25125360, - 25125376, - 25125392, - 25130528, - 25134848, - 25133152, - 25128864, - 25137376, - 25160016, - 25168000, - 25131040, - 25168320, - 25128944 + 25125296, + 25125312, + 25125328, + 25130464, + 25134784, + 25133088, + 25128800, + 25137312, + 25159952, + 25167936, + 25130976, + 25168256, + 25128880 ], "bases": [ { @@ -61812,21 +61812,21 @@ }, { "type_name": "CCompressedStaticColor32", - "vtable_address": 31985792, + "vtable_address": 31985728, "methods": [ - 25125696, - 25125712, - 25125728, - 25127392, - 25134976, - 25133648, - 25127296, - 25136064, - 25154256, - 25162528, - 25127584, - 25147296, - 25127376 + 25125632, + 25125648, + 25125664, + 25127328, + 25134912, + 25133584, + 25127232, + 25136000, + 25154192, + 25162464, + 25127520, + 25147232, + 25127312 ], "bases": [ { @@ -61870,21 +61870,21 @@ }, { "type_name": "CCompressedStaticFloat", - "vtable_address": 31983032, + "vtable_address": 31982968, "methods": [ - 25124784, - 25124800, - 25124816, - 25132368, - 25134656, - 25131712, - 25131840, - 25135168, - 25152976, - 25161312, - 25131984, - 25147872, - 25131968 + 25124720, + 25124736, + 25124752, + 25132304, + 25134592, + 25131648, + 25131776, + 25135104, + 25152912, + 25161248, + 25131920, + 25147808, + 25131904 ], "bases": [ { @@ -61928,21 +61928,21 @@ }, { "type_name": "CCompressedStaticFullVector3", - "vtable_address": 31983512, + "vtable_address": 31983448, "methods": [ - 25124928, - 25124944, - 25124960, - 25132256, - 25134720, - 25132800, - 25131520, - 25136928, - 25157776, - 25165872, - 25132608, - 25152064, - 25131632 + 25124864, + 25124880, + 25124896, + 25132192, + 25134656, + 25132736, + 25131456, + 25136864, + 25157712, + 25165808, + 25132544, + 25152000, + 25131568 ], "bases": [ { @@ -61975,21 +61975,21 @@ }, { "type_name": "CCompressedStaticInt", - "vtable_address": 31984592, + "vtable_address": 31984528, "methods": [ - 25125312, - 25125328, - 25125344, - 25131104, - 25134848, - 25133152, - 25128864, - 25137712, - 25158736, - 25166784, - 25131296, - 25169504, - 25128944 + 25125248, + 25125264, + 25125280, + 25131040, + 25134784, + 25133088, + 25128800, + 25137648, + 25158672, + 25166720, + 25131232, + 25169440, + 25128880 ], "bases": [ { @@ -62033,21 +62033,21 @@ }, { "type_name": "CCompressedStaticQuaternion", - "vtable_address": 31984112, + "vtable_address": 31984048, "methods": [ - 25125136, - 25125152, - 25125168, - 25132464, - 25134784, - 25132928, - 25131392, - 25136480, - 25156496, - 25164656, - 25138992, - 25151040, - 25131472 + 25125072, + 25125088, + 25125104, + 25132400, + 25134720, + 25132864, + 25131328, + 25136416, + 25156432, + 25164592, + 25138928, + 25150976, + 25131408 ], "bases": [ { @@ -62080,21 +62080,21 @@ }, { "type_name": "CCompressedStaticShort", - "vtable_address": 31984832, + "vtable_address": 31984768, "methods": [ - 25125408, - 25125424, - 25125440, - 25130048, - 25134848, - 25133152, - 25128864, - 25137824, - 25159376, - 25167392, - 25130448, - 25176000, - 25128944 + 25125344, + 25125360, + 25125376, + 25129984, + 25134784, + 25133088, + 25128800, + 25137760, + 25159312, + 25167328, + 25130384, + 25175936, + 25128880 ], "bases": [ { @@ -62138,21 +62138,21 @@ }, { "type_name": "CCompressedStaticVector2D", - "vtable_address": 31986152, + "vtable_address": 31986088, "methods": [ - 25125792, - 25125808, - 25125824, - 25126928, - 25135040, - 25133952, - 25126784, - 25135392, - 25154896, - 25163136, - 25126976, - 25146720, - 25126912 + 25125728, + 25125744, + 25125760, + 25126864, + 25134976, + 25133888, + 25126720, + 25135328, + 25154832, + 25163072, + 25126912, + 25146656, + 25126848 ], "bases": [ { @@ -62196,21 +62196,21 @@ }, { "type_name": "CCompressedStaticVector3", - "vtable_address": 31983392, + "vtable_address": 31983328, "methods": [ - 25124880, - 25124896, - 25124912, - 25132560, - 25134720, - 25132800, - 25131520, - 25136816, - 25158096, - 25166176, - 25141088, - 25173440, - 25131632 + 25124816, + 25124832, + 25124848, + 25132496, + 25134656, + 25132736, + 25131456, + 25136752, + 25158032, + 25166112, + 25141024, + 25173376, + 25131568 ], "bases": [ { @@ -62243,21 +62243,21 @@ }, { "type_name": "CCompressedStaticVector4D", - "vtable_address": 31986512, + "vtable_address": 31986448, "methods": [ - 25125888, - 25125904, - 25125920, + 25125824, + 25125840, + 25125856, + 25126464, + 25135040, + 25134016, + 25126272, + 25135552, + 25155472, + 25163680, 25126528, - 25135104, - 25134080, - 25126336, - 25135616, - 25155536, - 25163744, - 25126592, - 25146112, - 25126512 + 25146048, + 25126448 ], "bases": [ { @@ -62301,7 +62301,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 30508944, + "vtable_address": 30508880, "methods": [ 12436320, 12436352 @@ -62357,7 +62357,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 30508976, + "vtable_address": 30508912, "methods": [ 12436416 ], @@ -62412,10 +62412,10 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 31379432, + "vtable_address": 31379368, "methods": [ - 18816720, - 18816752 + 18816592, + 18816624 ], "bases": [ { @@ -62468,9 +62468,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 31379464, + "vtable_address": 31379400, "methods": [ - 18816816 + 18816688 ], "bases": [ { @@ -62523,7 +62523,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 30529520, + "vtable_address": 30529456, "methods": [ 12861728, 12861760 @@ -62579,7 +62579,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 30529552, + "vtable_address": 30529488, "methods": [ 12861824 ], @@ -62634,7 +62634,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 30529576, + "vtable_address": 30529512, "methods": [ 12861568, 12861600 @@ -62690,7 +62690,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 30529608, + "vtable_address": 30529544, "methods": [ 12861664 ], @@ -62745,13 +62745,13 @@ }, { "type_name": "CConstantForceController", - "vtable_address": 31653648, + "vtable_address": 31653584, "methods": [ 11742064, - 21065968, - 18001920, - 20399952, - 21069680 + 21065840, + 18001792, + 20399824, + 21069552 ], "bases": [ { @@ -62773,33 +62773,33 @@ }, { "type_name": "CConstraintAnchor", - "vtable_address": 31660544, + "vtable_address": 31660480, "methods": [ 13526704, - 21079728, - 21079744, - 18377552, - 18065872, - 18010880, - 18010864, - 21366224, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 21079600, + 21079616, + 18377424, + 18065744, + 18010752, + 18010736, + 21366096, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -62810,21 +62810,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066320, - 21363616, - 21069744, + 26427360, + 21066192, + 21363488, + 21069616, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -62836,95 +62836,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -62932,17 +62932,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -62962,7 +62962,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -62973,30 +62973,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -63007,7 +63007,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -63018,72 +63018,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -63138,18 +63138,18 @@ }, { "type_name": "CCopyRecipientFilter", - "vtable_address": 31775696, + "vtable_address": 31775632, "methods": [ - 21949648, - 21949936, - 21928080, - 21928112, - 21930496, - 21928096, - 21930720, - 21928128, - 22135024, - 22137168 + 21949520, + 21949808, + 21927952, + 21927984, + 21930368, + 21927968, + 21930592, + 21928000, + 22134896, + 22137040 ], "bases": [ { @@ -63171,32 +63171,32 @@ }, { "type_name": "CCredits", - "vtable_address": 31516704, + "vtable_address": 31516640, "methods": [ 11766592, - 20419904, - 20420256, + 20419776, + 20420128, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20405520, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20405392, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 20546960, - 19829152, + 20546832, + 19829024, 9640064, 9635872, 9665808, @@ -63208,21 +63208,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400128, - 20404352, - 20404032, + 26427360, + 20400000, + 20404224, + 20403904, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -63246,83 +63246,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -63330,16 +63330,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -63360,7 +63360,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -63373,28 +63373,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -63405,7 +63405,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -63416,7 +63416,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -63460,7 +63460,7 @@ }, { "type_name": "CCustomGameEventManager", - "vtable_address": 30514056, + "vtable_address": 30513992, "methods": [ 9634368, 9634384, @@ -63556,7 +63556,7 @@ }, { "type_name": "CCustomNavGenSystem", - "vtable_address": 30317720, + "vtable_address": 30317656, "methods": [ 11655760, 11655696, @@ -63659,33 +63659,33 @@ }, { "type_name": "CDEagle", - "vtable_address": 31227616, + "vtable_address": 31227552, "methods": [ 13528544, - 16933680, - 16933728, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933552, + 16933600, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -63696,21 +63696,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915184, - 17172400, - 16916688, + 26427360, + 16915056, + 17172272, + 16916560, 9635312, - 16939792, - 18308160, + 16939664, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -63721,114 +63721,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -63842,47 +63842,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -63890,11 +63890,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -63904,223 +63904,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -64250,14 +64250,14 @@ }, { "type_name": "CDEagle", - "vtable_address": 31231312, + "vtable_address": 31231248, "methods": [ - 16916704, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916576, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -64387,10 +64387,10 @@ }, { "type_name": "CDEagle", - "vtable_address": 31231376, + "vtable_address": 31231312, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -64520,13 +64520,13 @@ }, { "type_name": "CDamageRecord", - "vtable_address": 31298552, + "vtable_address": 31298488, "methods": [ - 17794352, - 17794432, + 17794224, + 17794304, + 17794672, 17794800, - 17794928, - 17794864 + 17794736 ], "bases": [], "model": { @@ -64537,23 +64537,23 @@ }, { "type_name": "CDataGCCStrike15_v2_MatchInfo", - "vtable_address": 30840024, + "vtable_address": 30839960, "methods": [ 14871888, 14872416, - 24747814, + 24747750, 14353984, 14946672, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14228400, 14062736, 14639008, 9474464, 14194016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054192, 14023056 @@ -64589,23 +64589,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup", - "vtable_address": 30840504, + "vtable_address": 30840440, "methods": [ 14762000, 14843536, - 24747814, + 24747750, 14354496, 14925184, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14095600, 14062704, 14639792, 9474464, 14279008, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054288, 14023104 @@ -64641,23 +64641,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroupTeam", - "vtable_address": 30840184, + "vtable_address": 30840120, "methods": [ 14761728, 14803312, - 24747814, + 24747750, 14354128, 14889040, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031552, 14062672, 14490560, 9474464, 14159104, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054224, 14023072 @@ -64693,23 +64693,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup_Picks", - "vtable_address": 30840344, + "vtable_address": 30840280, "methods": [ 14761856, 14818896, - 24747814, + 24747750, 14354288, 14889104, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14090448, 14062688, 14491136, 9474464, 14102784, - 24746716, - 24746982, + 24746652, + 24746918, 14029728, 14054256, 14023088 @@ -64745,23 +64745,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentInfo", - "vtable_address": 30840824, + "vtable_address": 30840760, "methods": [ 14854784, 14855824, - 24747814, + 24747750, 14354880, 14942240, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14223696, 14062752, 14641824, 9474464, 14069040, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054352, 14023136 @@ -64797,23 +64797,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft", - "vtable_address": 30831224, + "vtable_address": 30831160, "methods": [ 14755392, 14843776, - 24747814, + 24747750, 14345088, 14924000, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14099152, 14062208, 14625200, 9474464, 14312544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052432, 14022176 @@ -64849,23 +64849,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft_Entry", - "vtable_address": 30831064, + "vtable_address": 30831000, "methods": [ 14755264, 14800752, - 24747814, + 24747750, 14344896, 14887536, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031280, 14062192, 14461296, 9474464, 14142464, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052400, 14022160 @@ -64901,23 +64901,23 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentSection", - "vtable_address": 30840664, + "vtable_address": 30840600, "methods": [ 14762240, 14836128, - 24747814, + 24747750, 14354704, 14925552, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14096064, 14062720, 14641104, 9474464, 14197696, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054320, 14023120 @@ -64953,33 +64953,33 @@ }, { "type_name": "CDebugHistory", - "vtable_address": 31498056, + "vtable_address": 31497992, "methods": [ 13506768, - 20164240, - 20175984, + 20164112, + 20175856, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20184528, - 26419632, - 26419200, - 26419200, - 20139104, - 20177216, - 20141328, - 19835392, - 19835328, + 20141504, + 20184400, + 26419568, + 26419136, + 26419136, + 20138976, + 20177088, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 20299824, - 20300208, + 20299696, + 20300080, 11747408, - 19933424, - 19829152, - 20161232, + 19933296, + 19829024, + 20161104, 9635872, 9665808, 9641296, @@ -64990,21 +64990,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155136, - 20399920, - 20156544, + 26427360, + 20155008, + 20399792, + 20156416, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -65028,83 +65028,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -65112,16 +65112,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -65142,7 +65142,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -65155,28 +65155,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -65187,7 +65187,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -65198,7 +65198,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -65231,19 +65231,19 @@ }, { "type_name": "CDebugOverlayAIEventFilter", - "vtable_address": 31325304, + "vtable_address": 31325240, "methods": [ - 18386064, - 18386704, - 18549904, - 18386096, - 18472608, - 18386288, - 18386736, - 18386448, + 18385936, + 18386576, + 18549776, + 18385968, + 18472480, 18386160, - 18386176, - 18613232 + 18386608, + 18386320, + 18386032, + 18386048, + 18613104 ], "bases": [ { @@ -65265,7 +65265,7 @@ }, { "type_name": "CDebugOverlayBullets", - "vtable_address": 31020496, + "vtable_address": 31020432, "methods": [ 9634368, 9634384, @@ -65275,11 +65275,11 @@ 9634448, 9634464, 9634480, - 18386784, + 18386656, 9634512, 9634528, 9634544, - 18386800, + 18386672, 9634576, 9634592, 9634608, @@ -65288,7 +65288,7 @@ 9634656, 9634672, 9634688, - 18386864, + 18386736, 9634720, 9634736, 9634752, @@ -65303,9 +65303,9 @@ 9634896, 9634912, 9634928, - 16640448, + 16640320, 9634960, - 18760976, + 18760848, 9634992, 9635008, 9635024, @@ -65323,15 +65323,15 @@ 9635216, 9635232, 9635248, - 16604352, + 16604224, 9635280, - 16599456, - 16606304, - 16606944, - 16599440, - 16605424, - 16599280, - 16599280 + 16599328, + 16606176, + 16606816, + 16599312, + 16605296, + 16599152, + 16599152 ], "bases": [ { @@ -65375,19 +65375,19 @@ }, { "type_name": "CDebugOverlayCombinedFilter", - "vtable_address": 31324888, + "vtable_address": 31324824, "methods": [ - 18386064, - 18386576, - 18550544, - 18386096, - 18384144, - 18637744, - 18386624, + 18385936, 18386448, - 18386160, - 18386208, - 18617840 + 18550416, + 18385968, + 18384016, + 18637616, + 18386496, + 18386320, + 18386032, + 18386080, + 18617712 ], "bases": [ { @@ -65409,19 +65409,19 @@ }, { "type_name": "CDebugOverlayEntityFilter", - "vtable_address": 31324784, + "vtable_address": 31324720, "methods": [ - 18386848, - 18386512, - 18681120, - 18386096, - 18416336, - 18386288, - 18386544, - 18386448, + 18386720, + 18386384, + 18680992, + 18385968, + 18416208, 18386160, - 18386176, - 18608688 + 18386416, + 18386320, + 18386032, + 18386048, + 18608560 ], "bases": [ { @@ -65443,19 +65443,19 @@ }, { "type_name": "CDebugOverlayFilterBase", - "vtable_address": 31324576, + "vtable_address": 31324512, "methods": [ - 18386064, - 18386080, - 18549360, - 18386096, - 18386112, - 18386288, - 18386144, - 18386448, + 18385936, + 18385952, + 18549232, + 18385968, + 18385984, 18386160, - 18386176, - 18386192 + 18386016, + 18386320, + 18386032, + 18386048, + 18386064 ], "bases": [], "model": { @@ -65466,7 +65466,7 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 31323888, + "vtable_address": 31323824, "methods": [ 9634368, 9634384, @@ -65476,17 +65476,17 @@ 9634448, 9634464, 9634480, - 18636256, + 18636128, 9634512, 9634528, 9634544, - 18404576, + 18404448, 9634576, 9634592, - 18386864, + 18386736, 9634624, 9634640, - 18386864, + 18386736, 9634672, 9634688, 9634704, @@ -65524,19 +65524,19 @@ 9635216, 9635232, 9635248, - 18384112, + 18383984, 9635280, - 18384096, - 18791056, - 18792320, - 18384080, - 18384160, - 18418784, + 18383968, + 18790928, + 18792192, + 18383952, + 18384032, + 18418656, + 18384144, + 18384240, 18384272, - 18384368, - 18384400, - 18386864, - 18567216 + 18386736, + 18567088 ], "bases": [ { @@ -65599,15 +65599,15 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 31324456, + "vtable_address": 31324392, "methods": [ - 18792304, - 18792368, - 18419328, - 18417648, - 18417552, - 18416208, - 18410320 + 18792176, + 18792240, + 18419200, + 18417520, + 18417424, + 18416080, + 18410192 ], "bases": [ { @@ -65670,9 +65670,9 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 31324528, + "vtable_address": 31324464, "methods": [ - 18569936 + 18569808 ], "bases": [ { @@ -65735,9 +65735,9 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 31324552, + "vtable_address": 31324488, "methods": [ - 18409296 + 18409168 ], "bases": [ { @@ -65800,7 +65800,7 @@ }, { "type_name": "CDebugOverlayGrenades", - "vtable_address": 31029384, + "vtable_address": 31029320, "methods": [ 9634368, 9634384, @@ -65810,11 +65810,11 @@ 9634448, 9634464, 9634480, - 18386784, + 18386656, 9634512, 9634528, 9634544, - 18386800, + 18386672, 9634576, 9634592, 9634608, @@ -65823,7 +65823,7 @@ 9634656, 9634672, 9634688, - 18386864, + 18386736, 9634720, 9634736, 9634752, @@ -65840,7 +65840,7 @@ 9634928, 9634944, 9634960, - 18760976, + 18760848, 9634992, 9635008, 9635024, @@ -65858,31 +65858,31 @@ 9635216, 9635232, 9635248, - 16658064, + 16657936, 9635280, - 16652304, - 16653600, - 16653616, - 16652288, - 18760784, - 18444032, - 18443456, - 16702368, - 16659776, - 16652128, - 16652144, - 16652160, 16652176, + 16653472, + 16653488, + 16652160, + 18760656, + 18443904, + 18443328, + 16702240, + 16659648, + 16652000, + 16652016, + 16652032, + 16652048, + 16652064, + 16652080, + 16652096, + 16652112, + 16652128, 16652192, - 16652208, - 16652224, - 16652240, - 16652256, - 16652320, - 16652272, - 18417120, - 18470896, - 18410608 + 16652144, + 18416992, + 18470768, + 18410480 ], "bases": [ { @@ -65937,19 +65937,19 @@ }, { "type_name": "CDebugOverlayPathfindingFilter", - "vtable_address": 31325408, + "vtable_address": 31325344, "methods": [ - 18386064, - 18386224, - 18549360, + 18385936, 18386096, - 18474080, - 18386288, - 18386240, - 18386448, + 18549232, + 18385968, + 18473952, 18386160, - 18386176, - 18614128 + 18386112, + 18386320, + 18386032, + 18386048, + 18614000 ], "bases": [ { @@ -65971,7 +65971,7 @@ }, { "type_name": "CDebugOverlayRecorderBase", - "vtable_address": 31325512, + "vtable_address": 31325448, "methods": [ 9634368, 9634384, @@ -65981,11 +65981,11 @@ 9634448, 9634464, 9634480, - 18386784, + 18386656, 9634512, 9634528, 9634544, - 18386800, + 18386672, 9634576, 9634592, 9634608, @@ -65994,7 +65994,7 @@ 9634656, 9634672, 9634688, - 18386864, + 18386736, 9634720, 9634736, 9634752, @@ -66011,7 +66011,7 @@ 9634928, 9634944, 9634960, - 18760976, + 18760848, 9634992, 9635008, 9635024, @@ -66029,9 +66029,9 @@ 9635216, 9635232, 9635248, - 18384032, + 18383904, 9635280, - 18384016 + 18383888 ], "bases": [ { @@ -66075,19 +66075,19 @@ }, { "type_name": "CDebugOverlayScheduleFilter", - "vtable_address": 31325096, - "methods": [ - 18386064, - 18386464, - 18549872, - 18386096, - 18416976, - 18420368, - 18386672, - 18386448, - 18386160, - 18386176, - 18610912 + "vtable_address": 31325032, + "methods": [ + 18385936, + 18386336, + 18549744, + 18385968, + 18416848, + 18420240, + 18386544, + 18386320, + 18386032, + 18386048, + 18610784 ], "bases": [ { @@ -66109,19 +66109,19 @@ }, { "type_name": "CDebugOverlayTacticalFilter", - "vtable_address": 31324992, + "vtable_address": 31324928, "methods": [ - 18386064, - 18386640, - 18549856, - 18386096, - 18404480, - 18386288, - 18386656, - 18386448, + 18385936, + 18386512, + 18549728, + 18385968, + 18404352, 18386160, - 18386176, - 18610208 + 18386528, + 18386320, + 18386032, + 18386048, + 18610080 ], "bases": [ { @@ -66143,19 +66143,19 @@ }, { "type_name": "CDebugOverlayTaskFilter", - "vtable_address": 31325200, + "vtable_address": 31325136, "methods": [ - 18386064, - 18386464, - 18549888, - 18386096, - 18416832, - 18386288, - 18386672, - 18386448, + 18385936, + 18386336, + 18549760, + 18385968, + 18416704, 18386160, - 18386176, - 18612096 + 18386544, + 18386320, + 18386032, + 18386048, + 18611968 ], "bases": [ { @@ -66177,19 +66177,19 @@ }, { "type_name": "CDebugOverlayTextFilter", - "vtable_address": 31324680, + "vtable_address": 31324616, "methods": [ - 18386064, - 18386464, - 18550128, - 18409312, - 18386112, - 18386288, - 18386496, - 18386448, + 18385936, + 18386336, + 18550000, + 18409184, + 18385984, 18386160, - 18386176, - 18606720 + 18386368, + 18386320, + 18386032, + 18386048, + 18606592 ], "bases": [ { @@ -66211,7 +66211,7 @@ }, { "type_name": "CDebugOverlayWindow", - "vtable_address": 31326208, + "vtable_address": 31326144, "methods": [ 9634368, 9634384, @@ -66221,11 +66221,11 @@ 9634448, 9634464, 9634480, - 18386784, + 18386656, 9634512, 9634528, 9634544, - 18386800, + 18386672, 9634576, 9634592, 9634608, @@ -66234,7 +66234,7 @@ 9634656, 9634672, 9634688, - 18386864, + 18386736, 9634720, 9634736, 9634752, @@ -66251,7 +66251,7 @@ 9634928, 9634944, 9634960, - 18760976, + 18760848, 9634992, 9635008, 9635024, @@ -66269,9 +66269,9 @@ 9635216, 9635232, 9635248, - 18384032, + 18383904, 9635280, - 18384016 + 18383888 ], "bases": [ { @@ -66304,7 +66304,7 @@ }, { "type_name": "CDebugOverlayWorldModel", - "vtable_address": 31030144, + "vtable_address": 31030080, "methods": [ 9634368, 9634384, @@ -66314,11 +66314,11 @@ 9634448, 9634464, 9634480, - 18386784, + 18386656, 9634512, 9634528, 9634544, - 18386800, + 18386672, 9634576, 9634592, 9634608, @@ -66327,7 +66327,7 @@ 9634656, 9634672, 9634688, - 18386864, + 18386736, 9634720, 9634736, 9634752, @@ -66344,7 +66344,7 @@ 9634928, 9634944, 9634960, - 18760976, + 18760848, 9634992, 9635008, 9635024, @@ -66362,15 +66362,15 @@ 9635216, 9635232, 9635248, - 16658144, + 16658016, 9635280, - 16652352, - 16656592, - 16656608, - 16652336, - 16652640, - 18386848, - 18386848 + 16652224, + 16656464, + 16656480, + 16652208, + 16652512, + 18386720, + 18386720 ], "bases": [ { @@ -66414,10 +66414,10 @@ }, { "type_name": "CDebugSnapshotCache", - "vtable_address": 31326176, + "vtable_address": 31326112, "methods": [ 12436480, - 18642000 + 18641872 ], "bases": [ { @@ -66439,15 +66439,15 @@ }, { "type_name": "CDebugVisualizerAbsTime", - "vtable_address": 31987136, + "vtable_address": 31987072, "methods": [ + 25194576, + 25194816, + 25194624, 25194640, - 25194880, - 25194688, - 25194704, - 25194736, - 25194608, - 25194624 + 25194672, + 25194544, + 25194560 ], "bases": [ { @@ -66469,16 +66469,16 @@ }, { "type_name": "CDecalEmitterSystem", - "vtable_address": 31327008, + "vtable_address": 31326944, "methods": [ 9634368, 9634384, 9634400, 9634416, - 18650208, + 18650080, 9634448, 9634464, - 18386944, + 18386816, 9634496, 9634512, 9634528, @@ -66527,12 +66527,12 @@ 9635216, 9635232, 9635248, - 18386912, + 18386784, 9635280, - 18386896, - 18650368, - 18649424, - 18386880 + 18386768, + 18650240, + 18649296, + 18386752 ], "bases": [ { @@ -66565,7 +66565,7 @@ }, { "type_name": "CDecalGameSystem", - "vtable_address": 30516664, + "vtable_address": 30516600, "methods": [ 9634368, 9634384, @@ -66671,33 +66671,33 @@ }, { "type_name": "CDecoyGrenade", - "vtable_address": 31231408, + "vtable_address": 31231344, "methods": [ 13528544, - 16934448, - 16934512, - 18377552, - 18065872, - 16732784, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16934320, + 16934384, + 18377424, + 18065744, + 16732656, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -66708,21 +66708,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915232, - 16925232, - 16916448, + 26427360, + 16915104, + 16925104, + 16916320, 9635312, - 16939872, - 18308160, + 16939744, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -66733,114 +66733,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -66854,47 +66854,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -66902,11 +66902,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -66916,227 +66916,227 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 16732672, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, - 16727344, + 16924176, + 16909216, + 16914016, + 16728448, + 16728464, + 18061024, + 16729216, + 16729120, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16728768, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 16732800, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 16909344, - 16914144, - 16728576, - 16728592, - 18061152, - 16729344, - 16729248, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16728896, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, - 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, 16924400, - 16942560, - 16727600, - 16727616, + 16914384, + 16924272, + 16942432, + 16727472, + 16727488, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 16741824, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, - 16728336, - 16914336, - 16914384, - 16732848, - 16728352, - 15970784, - 16914464, + 16797856, + 16740096, + 16810240, + 16810336, + 16912080, + 17035856, + 16797072, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 16741952, - 17042912, - 10057136, 16728432, - 16728448, - 16797984, - 16740224, - 16810368, - 16810464, - 16912208, - 17035984, - 16797200, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 16910976, - 16733696, - 17091632, - 16732880, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 16911872, + 16910848, + 16733568, + 17091504, + 16732752, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 16911744, 10057152, - 16728960, - 16728624, - 16810304, - 16728912, - 16793088, - 16915216, - 16915200, - 16939952 + 16728832, + 16728496, + 16810176, + 16728784, + 16792960, + 16915088, + 16915072, + 16939824 ], "bases": [ { @@ -67266,14 +67266,14 @@ }, { "type_name": "CDecoyGrenade", - "vtable_address": 31235136, + "vtable_address": 31235072, "methods": [ - 16916464, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916336, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -67403,10 +67403,10 @@ }, { "type_name": "CDecoyGrenade", - "vtable_address": 31235200, + "vtable_address": 31235136, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -67536,33 +67536,33 @@ }, { "type_name": "CDecoyProjectile", - "vtable_address": 31061848, + "vtable_address": 31061784, "methods": [ 13528544, - 16740624, - 16741232, - 16730592, - 18065872, - 16452512, - 18010864, - 16904624, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16740496, + 16741104, + 16730464, + 18065744, + 16452384, + 18010736, + 16904496, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -67573,21 +67573,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16728784, - 16908544, - 16731104, + 26427360, + 16728656, + 16908416, + 16730976, 9635312, - 16745504, - 18308160, + 16745376, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -67599,95 +67599,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16730736, - 16730768, - 19834496, + 16730608, + 16730640, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 15971776, - 19833184, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -67695,17 +67695,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 16816528, - 19828912, - 18013520, + 16816400, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -67725,7 +67725,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -67736,30 +67736,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, - 16798448, - 19828816, - 19835280, + 16798320, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -67770,7 +67770,7 @@ 9636736, 9636752, 9636768, - 16820608, + 16820480, 11742352, 11742320, 11742400, @@ -67781,102 +67781,102 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, 11712016, - 16907232, + 16907104, 16039408, - 16728720, + 16728592, 11712032, - 16731024, + 16730896, 11712080, 15971760, - 16728768, + 16728640, 11712048, 11723632, 16012384, - 16733456, + 16733328, 11712064, - 16823008, - 16742256 + 16822880, + 16742128 ], "bases": [ { @@ -67995,7 +67995,7 @@ }, { "type_name": "CDecoyProjectile", - "vtable_address": 31064576, + "vtable_address": 31064512, "methods": [ 9837440, 9837456 @@ -68117,10 +68117,10 @@ }, { "type_name": "CDecoyProjectile", - "vtable_address": 31064608, + "vtable_address": 31064544, "methods": [ - 16740320, - 16740912 + 16740192, + 16740784 ], "bases": [ { @@ -68239,7 +68239,7 @@ }, { "type_name": "CDedicatedServerWorkshopManager", - "vtable_address": 30181800, + "vtable_address": 30181736, "methods": [ 9898176, 9634384, @@ -68346,7 +68346,7 @@ }, { "type_name": "CDedicatedServerWorkshopManager", - "vtable_address": 30182320, + "vtable_address": 30182256, "methods": [ 9910560 ], @@ -68391,7 +68391,7 @@ }, { "type_name": "CDefSaveRestoreOps", - "vtable_address": 32017336, + "vtable_address": 32017272, "methods": [], "bases": [ { @@ -68413,7 +68413,7 @@ }, { "type_name": "CDefSaveRestoreOps", - "vtable_address": 32018024, + "vtable_address": 32017960, "methods": [], "bases": [ { @@ -68435,12 +68435,12 @@ }, { "type_name": "CDefaultLagCompensation", - "vtable_address": 31704152, + "vtable_address": 31704088, "methods": [ - 21386480, - 21394656, - 21366928, - 21366944 + 21386352, + 21394528, + 21366800, + 21366816 ], "bases": [ { @@ -68462,17 +68462,17 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 31308144, + "vtable_address": 31308080, "methods": [ 9634368, 9634384, - 18028944, - 18017056, - 18244480, + 18028816, + 18016928, + 18244352, 9634448, 9634464, - 18319552, - 18002960, + 18319424, + 18002832, 9634512, 9634528, 9634544, @@ -68480,7 +68480,7 @@ 9634576, 9634592, 9634608, - 18002944, + 18002816, 9634640, 9634656, 9634672, @@ -68520,19 +68520,19 @@ 9635216, 9635232, 9635248, - 18002912, + 18002784, 9635280, - 18002896, - 18245072, - 18245872, + 18002768, + 18244944, + 18245744, + 18002752, + 18002992, + 18002848, + 18019680, 18002880, - 18003120, - 18002976, - 18019808, - 18003008, - 18021936, - 18003040, - 18003072 + 18021808, + 18002912, + 18002944 ], "bases": [ { @@ -68575,17 +68575,17 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 31308712, + "vtable_address": 31308648, "methods": [ - 18245472, - 18246272, - 18026032, - 18002992, - 18019856, - 18003024, - 18022000, - 18003088, - 18003056 + 18245344, + 18246144, + 18025904, + 18002864, + 18019728, + 18002896, + 18021872, + 18002960, + 18002928 ], "bases": [ { @@ -68628,16 +68628,16 @@ }, { "type_name": "CDefaultResponseSystemSaveRestoreBlockHandler", - "vtable_address": 31308056, + "vtable_address": 31307992, "methods": [ - 18003104, + 18002976, 12427888, - 18054528, - 18052640, + 18054400, + 18052512, 12427904, 12427920, - 18052800, - 18321040, + 18052672, + 18320912, 12427936 ], "bases": [ @@ -68671,7 +68671,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 30512600, + "vtable_address": 30512536, "methods": [ 12435552 ], @@ -68695,7 +68695,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 30325384, + "vtable_address": 30325320, "methods": [ 11742048 ], @@ -68719,9 +68719,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 31317592, + "vtable_address": 31317528, "methods": [ - 18006912 + 18006784 ], "bases": [ { @@ -68743,9 +68743,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 31295160, + "vtable_address": 31295096, "methods": [ - 17551328 + 17551200 ], "bases": [ { @@ -68767,9 +68767,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 31299944, + "vtable_address": 31299880, "methods": [ - 17794208 + 17794080 ], "bases": [ { @@ -68791,9 +68791,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 31699328, + "vtable_address": 31699264, "methods": [ - 21368768 + 21368640 ], "bases": [ { @@ -68815,9 +68815,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 31776816, + "vtable_address": 31776752, "methods": [ - 21929440 + 21929312 ], "bases": [ { @@ -68839,23 +68839,23 @@ }, { "type_name": "CDemoAnimationData", - "vtable_address": 30871064, + "vtable_address": 30871000, "methods": [ 14786464, 14825296, - 24747814, + 24747750, 12437264, 14915120, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083760, 12437088, 14583024, 9474464, 14266272, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060400, 14028064 @@ -68891,23 +68891,23 @@ }, { "type_name": "CDemoAnimationHeader", - "vtable_address": 30870904, + "vtable_address": 30870840, "methods": [ 14786320, 14825136, - 24747814, + 24747750, 12437248, 14914832, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083632, 12437072, 14582368, 9474464, 14216640, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060368, 14028048 @@ -68943,23 +68943,23 @@ }, { "type_name": "CDemoClassInfo", - "vtable_address": 30870424, + "vtable_address": 30870360, "methods": [ 14785872, 14843008, - 24747814, + 24747750, 14385392, 14929920, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14106240, 14063904, 14651936, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14060272, 14028000 @@ -68995,23 +68995,23 @@ }, { "type_name": "CDemoClassInfo_class_t", - "vtable_address": 30870264, + "vtable_address": 30870200, "methods": [ 14785712, 14831696, - 24747814, + 24747750, 14385216, 14914432, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14078928, 14063392, 14580832, 9474464, 14184704, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060240, 14027984 @@ -69047,23 +69047,23 @@ }, { "type_name": "CDemoConsoleCmd", - "vtable_address": 30869944, + "vtable_address": 30869880, "methods": [ 14785424, 14824496, - 24747814, + 24747750, 14384896, 14913920, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14063936, 14580032, 9474464, 14116848, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060176, 14027952 @@ -69099,23 +69099,23 @@ }, { "type_name": "CDemoCustomData", - "vtable_address": 30870584, + "vtable_address": 30870520, "methods": [ 14786032, 14824816, - 24747814, + 24747750, 14385536, 14914560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083536, 14063888, 14581392, 9474464, 14163392, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060304, 14028016 @@ -69151,23 +69151,23 @@ }, { "type_name": "CDemoCustomDataCallbacks", - "vtable_address": 30870744, + "vtable_address": 30870680, "methods": [ 14786176, 14824976, - 24747814, + 24747750, 14385696, 14894656, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 14063872, 14581968, 9474464, 14090208, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14060336, 14028032 @@ -69203,23 +69203,23 @@ }, { "type_name": "CDemoFileHeader", - "vtable_address": 30868184, + "vtable_address": 30868120, "methods": [ 14784272, 14837616, - 24747814, + 24747750, 14383184, 14912832, 14027776, - 24749974, - 24746806, + 24749910, + 24746742, 14078176, 14064000, 14574512, 9474464, 14303296, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059824, 14027760 @@ -69255,23 +69255,23 @@ }, { "type_name": "CDemoFileInfo", - "vtable_address": 30869144, + "vtable_address": 30869080, "methods": [ 14856720, 14856928, - 24747814, + 24747750, 14384144, 14943920, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14102320, 14063984, 14577856, 9474464, 14167904, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060016, 14027872 @@ -69307,23 +69307,23 @@ }, { "type_name": "CDemoFullPacket", - "vtable_address": 30869464, + "vtable_address": 30869400, "methods": [ 14880928, 14881504, - 24747814, + 24747750, 14384464, 14939408, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14135264, 14063968, 14578880, 9474464, 14068576, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060080, 14027904 @@ -69359,7 +69359,7 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)16, CDemoAnimationData>", - "vtable_address": 30511688, + "vtable_address": 30511624, "methods": [ 12445760, 12455808, @@ -69421,23 +69421,23 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)16, CDemoAnimationData>", - "vtable_address": 30511760, + "vtable_address": 30511696, "methods": [ 12445856, 12455904, - 24747814, + 24747750, 12437264, 14915120, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083760, 12437088, 14583024, 9474464, 14266272, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060400, 14028064 @@ -69494,7 +69494,7 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)17, CDemoAnimationHeader>", - "vtable_address": 30511456, + "vtable_address": 30511392, "methods": [ 12445536, 12455568, @@ -69556,23 +69556,23 @@ }, { "type_name": "CDemoMessagePB<(EDemoCommands)17, CDemoAnimationHeader>", - "vtable_address": 30511528, + "vtable_address": 30511464, "methods": [ 12445632, 12455664, - 24747814, + 24747750, 12437248, 14914832, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083632, 12437072, 14582368, 9474464, 14216640, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060368, 14028048 @@ -69629,23 +69629,23 @@ }, { "type_name": "CDemoPacket", - "vtable_address": 30869304, + "vtable_address": 30869240, "methods": [ 14785136, 14824176, - 24747814, + 24747750, 14384304, 14913360, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14063376, 14578480, 9474464, 14129152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060048, 14027888 @@ -69681,23 +69681,23 @@ }, { "type_name": "CDemoRecovery", - "vtable_address": 30872344, + "vtable_address": 30872280, "methods": [ 14848384, 14849104, - 24747814, + 24747750, 14387216, 14938576, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14107296, 14063808, 14585680, 9474464, 14152496, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060656, 14028192 @@ -69733,23 +69733,23 @@ }, { "type_name": "CDemoRecovery_DemoInitialSpawnGroupEntry", - "vtable_address": 30872184, + "vtable_address": 30872120, "methods": [ 14787424, 14813424, - 24747814, + 24747750, 14387072, 14894784, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046784, 14063440, 14585104, 9474464, 14129536, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060624, 14028176 @@ -69785,23 +69785,23 @@ }, { "type_name": "CDemoSaveGame", - "vtable_address": 30869624, + "vtable_address": 30869560, "methods": [ 14785280, 14824336, - 24747814, + 24747750, 14384608, 14913616, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083424, 14063952, 14579392, 9474464, 14210848, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060112, 14027920 @@ -69837,23 +69837,23 @@ }, { "type_name": "CDemoSendTables", - "vtable_address": 30870104, + "vtable_address": 30870040, "methods": [ 14785568, 14824656, - 24747814, + 24747750, 14385056, 14914176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14063920, 14580432, 9474464, 14129344, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060208, 14027968 @@ -69889,23 +69889,23 @@ }, { "type_name": "CDemoSpawnGroups", - "vtable_address": 30872024, + "vtable_address": 30871960, "methods": [ 14787280, 14825616, - 24747814, + 24747750, 14386944, 14894720, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 14063824, 14584704, 9474464, 14092144, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14060592, 14028160 @@ -69941,23 +69941,23 @@ }, { "type_name": "CDemoStop", - "vtable_address": 30871704, + "vtable_address": 30871640, "methods": [ 14091008, 14091024, - 24747814, + 24747750, 14386640, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14060528, 14028128 @@ -70004,23 +70004,23 @@ }, { "type_name": "CDemoStringTables", - "vtable_address": 30871544, + "vtable_address": 30871480, "methods": [ 14786976, 14843184, - 24747814, + 24747750, 14386512, 14934400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14135152, 14063360, 14653232, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14060496, 14028112 @@ -70056,23 +70056,23 @@ }, { "type_name": "CDemoStringTables_items_t", - "vtable_address": 30871224, + "vtable_address": 30871160, "methods": [ 14786608, 14831856, - 24747814, + 24747750, 14386112, 14915424, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070256, 14063408, 14583664, 9474464, 14179664, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060432, 14028080 @@ -70108,23 +70108,23 @@ }, { "type_name": "CDemoStringTables_table_t", - "vtable_address": 30871384, + "vtable_address": 30871320, "methods": [ 14786768, 14837392, - 24747814, + 24747750, 14386336, 14933376, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14134784, 14063424, 14652400, 9474464, 14186240, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060464, 14028096 @@ -70160,23 +70160,23 @@ }, { "type_name": "CDemoSyncTick", - "vtable_address": 30869784, + "vtable_address": 30869720, "methods": [ 14091072, 14091088, - 24747814, + 24747750, 14384736, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14060144, 14027936 @@ -70223,23 +70223,23 @@ }, { "type_name": "CDemoUserCmd", - "vtable_address": 30871864, + "vtable_address": 30871800, "methods": [ 14787136, 14825456, - 24747814, + 24747750, 14386784, 14915552, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083952, 14063840, 14584128, 9474464, 14163776, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060560, 14028144 @@ -70275,7 +70275,7 @@ }, { "type_name": "CDestructiblePartsSystemData", - "vtable_address": 30656200, + "vtable_address": 30656136, "methods": [], "bases": [], "model": { @@ -70286,13 +70286,13 @@ }, { "type_name": "CDirtySpatialPartitionEntityList", - "vtable_address": 31457248, + "vtable_address": 31457184, "methods": [ - 20154288, + 20154160, 9634384, - 20154320, - 20154304, - 20194848, + 20154192, + 20154176, + 20194720, 9634448, 9634464, 9634480, @@ -70344,12 +70344,12 @@ 9635216, 9635232, 9635248, - 20154256, + 20154128, 9635280, - 20154240, - 20174016, - 20173664, - 20154224 + 20154112, + 20173888, + 20173536, + 20154096 ], "bases": [ { @@ -70382,7 +70382,7 @@ }, { "type_name": "CDontUseThisGameSystem", - "vtable_address": 30508304, + "vtable_address": 30508240, "methods": [ 9634368, 9634384, @@ -70467,33 +70467,33 @@ }, { "type_name": "CDynamicLight", - "vtable_address": 31470976, + "vtable_address": 31470912, "methods": [ 13522144, - 20158944, - 20158960, - 18377504, - 26419168, - 18094240, - 18010864, - 20331632, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20158816, + 20158832, + 18377376, + 26419104, + 18094112, + 18010736, + 20331504, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -70504,21 +70504,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154864, - 20399936, - 20156336, + 26427360, + 20154736, + 20399808, + 20156208, 9635312, - 20197824, - 18308160, + 20197696, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -70542,83 +70542,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -70626,16 +70626,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -70656,7 +70656,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -70669,28 +70669,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -70701,7 +70701,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -70712,35 +70712,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -70784,32 +70784,32 @@ }, { "type_name": "CDynamicNavConnectionsVolume", - "vtable_address": 30706520, + "vtable_address": 30706456, "methods": [ 11931776, 13813456, 13812848, - 18377504, - 26419168, - 20153552, - 18010864, - 21362528, - 26419632, - 26419200, - 26419200, - 21362560, - 21363456, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 20153424, + 18010736, + 21362400, + 26419568, + 26419136, + 26419136, + 21362432, + 21363328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -70821,21 +70821,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21165408, + 26427360, + 21165280, 13797136, 13794880, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -70859,83 +70859,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -70943,16 +70943,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -70973,7 +70973,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -70986,28 +70986,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -71018,7 +71018,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -71029,41 +71029,41 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22271968, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22271840, 11742352, 10058432, 10058448, 11742352, - 21363504, + 21363376, 10058464, 11751552 ], @@ -71142,33 +71142,33 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 30612264, + "vtable_address": 30612200, "methods": [ 13526704, - 18494720, - 18495344, - 18377552, - 18065872, - 18145824, - 18010864, - 18713136, - 26419632, - 18009552, - 26419200, - 18495392, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18502240, + 18494592, + 18495216, + 18377424, + 18065744, + 18145696, + 18010736, + 18713008, + 26419568, + 18009424, + 26419136, + 18495264, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18502112, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -71179,21 +71179,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18494368, + 26427360, + 18494240, 13700720, 13623264, 9635312, 13649968, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -71204,114 +71204,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -71321,7 +71321,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -71331,7 +71331,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -71342,41 +71342,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -71387,83 +71387,83 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 18495968, + 18495840, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 18502480, + 18275360, + 18502352, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 18405136 + 18405008 ], "bases": [ { @@ -71561,7 +71561,7 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 30614840, + "vtable_address": 30614776, "methods": [ 11404800, 11401984 @@ -71662,7 +71662,7 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 32424512, + "vtable_address": 32424448, "methods": [], "bases": [], "model": { @@ -71673,7 +71673,7 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 32424704, + "vtable_address": 32424640, "methods": [], "bases": [], "model": { @@ -71684,7 +71684,7 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 32424896, + "vtable_address": 32424832, "methods": [], "bases": [], "model": { @@ -71695,7 +71695,7 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 32566592, + "vtable_address": 32566528, "methods": [], "bases": [], "model": { @@ -71706,33 +71706,33 @@ }, { "type_name": "CDynamicPropAlias_cable_dynamic", - "vtable_address": 30620088, + "vtable_address": 30620024, "methods": [ 13526704, 13625664, 13625696, - 18377552, - 18065872, - 18145824, - 18010864, - 18713136, - 26419632, - 18009552, - 26419200, - 18495392, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18502240, + 18377424, + 18065744, + 18145696, + 18010736, + 18713008, + 26419568, + 18009424, + 26419136, + 18495264, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18502112, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -71743,21 +71743,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13621760, 13700720, 13623216, 9635312, 13649968, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -71768,114 +71768,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -71885,7 +71885,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -71895,7 +71895,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -71906,41 +71906,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -71951,83 +71951,83 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 18495968, + 18495840, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 18502480, + 18275360, + 18502352, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 18405136 + 18405008 ], "bases": [ { @@ -72136,7 +72136,7 @@ }, { "type_name": "CDynamicPropAlias_cable_dynamic", - "vtable_address": 30622664, + "vtable_address": 30622600, "methods": [ 11404800, 11401984 @@ -72248,33 +72248,33 @@ }, { "type_name": "CDynamicPropAlias_dynamic_prop", - "vtable_address": 30614872, + "vtable_address": 30614808, "methods": [ 13526704, 13625856, 13625888, - 18377552, - 18065872, - 18145824, - 18010864, - 18713136, - 26419632, - 18009552, - 26419200, - 18495392, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18502240, + 18377424, + 18065744, + 18145696, + 18010736, + 18713008, + 26419568, + 18009424, + 26419136, + 18495264, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18502112, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -72285,21 +72285,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13621728, 13700720, 13623248, 9635312, 13649968, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -72310,114 +72310,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -72427,7 +72427,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -72437,7 +72437,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -72448,41 +72448,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -72493,83 +72493,83 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 18495968, + 18495840, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 18502480, + 18275360, + 18502352, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 18405136 + 18405008 ], "bases": [ { @@ -72678,7 +72678,7 @@ }, { "type_name": "CDynamicPropAlias_dynamic_prop", - "vtable_address": 30617448, + "vtable_address": 30617384, "methods": [ 11404800, 11401984 @@ -72790,33 +72790,33 @@ }, { "type_name": "CDynamicPropAlias_prop_dynamic_override", - "vtable_address": 30617480, + "vtable_address": 30617416, "methods": [ 13526704, 13625760, 13625792, - 18377552, - 18065872, - 18145824, - 18010864, - 18713136, - 26419632, - 18009552, - 26419200, - 18495392, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18502240, + 18377424, + 18065744, + 18145696, + 18010736, + 18713008, + 26419568, + 18009424, + 26419136, + 18495264, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18502112, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -72827,21 +72827,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13621744, 13700720, 13623232, 9635312, 13649968, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -72852,114 +72852,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -72969,7 +72969,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -72979,7 +72979,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -72990,41 +72990,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -73035,83 +73035,83 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 18495968, + 18495840, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 18502480, + 18275360, + 18502352, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 18405136 + 18405008 ], "bases": [ { @@ -73220,7 +73220,7 @@ }, { "type_name": "CDynamicPropAlias_prop_dynamic_override", - "vtable_address": 30620056, + "vtable_address": 30619992, "methods": [ 11404800, 11401984 @@ -73332,19 +73332,19 @@ }, { "type_name": "CEconAccountSeasonalOperationGS", - "vtable_address": 31881984, + "vtable_address": 31881920, "methods": [ - 22957344, - 22957376, - 22546352, - 29295200, + 22957280, + 22957312, + 22546224, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546368 + 29301360, + 29295200, + 29301568, + 22546240 ], "bases": [ { @@ -73388,11 +73388,11 @@ }, { "type_name": "CEconCraftingRecipeDefinition", - "vtable_address": 31884736, + "vtable_address": 31884672, "methods": [ - 22555552, - 22559888, - 22686208 + 22555424, + 22559760, + 22686144 ], "bases": [], "model": { @@ -73403,33 +73403,33 @@ }, { "type_name": "CEconEntity", - "vtable_address": 31877832, + "vtable_address": 31877768, "methods": [ 13528544, - 22558880, - 22556912, - 18377552, - 18065872, - 18010880, - 18010864, - 18180144, - 26419632, - 18009552, - 26419200, - 18378208, - 22948000, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 22558752, + 22556784, + 18377424, + 18065744, + 18010752, + 18010736, + 18180016, + 26419568, + 18009424, + 26419136, + 18378080, + 22947936, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -73440,21 +73440,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22544704, - 22948048, - 22547312, + 26427360, + 22544576, + 22947984, + 22547184, 9635312, - 22575184, - 18308160, + 22575056, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -73466,95 +73466,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 22544736, - 19834496, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -73562,17 +73562,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -73592,7 +73592,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -73603,30 +73603,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -73637,7 +73637,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -73648,102 +73648,102 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 22544752, - 22544768, + 22544624, + 22544640, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, - 16727296, - 16742560, - 22544720, - 16727328, - 16727344, - 16727360, - 16727376, - 22693520, - 22553408 + 16727248, + 22693456, + 22553280 ], "bases": [ { @@ -73829,14 +73829,14 @@ }, { "type_name": "CEconEntity", - "vtable_address": 31880560, + "vtable_address": 31880496, "methods": [ - 22547328, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 22547200, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -73922,10 +73922,10 @@ }, { "type_name": "CEconEntity", - "vtable_address": 31880624, + "vtable_address": 31880560, "methods": [ - 22553872, - 22553888 + 22553744, + 22553760 ], "bases": [ { @@ -74011,18 +74011,18 @@ }, { "type_name": "CEconEntity::NetworkVar_m_AttributeManager", - "vtable_address": 31876968, + "vtable_address": 31876904, "methods": [ 11404272, - 22544624, - 22624672, + 22544496, + 22624544, 11401904, - 22544352, - 22558400, - 22558720, - 22674144, - 22570496, - 22694560 + 22544224, + 22558272, + 22558592, + 22674080, + 22570368, + 22694496 ], "bases": [ { @@ -74055,19 +74055,19 @@ }, { "type_name": "CEconEquipSlot", - "vtable_address": 31876600, + "vtable_address": 31876536, "methods": [ - 22957728, - 22957760, - 22546560, - 29295200, + 22957664, + 22957696, + 22546432, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546576 + 29301360, + 29295200, + 29301568, + 22546448 ], "bases": [ { @@ -74111,19 +74111,19 @@ }, { "type_name": "CEconGameAccountSteamChina", - "vtable_address": 31881776, + "vtable_address": 31881712, "methods": [ - 22957536, - 22957568, - 22546384, - 29295200, + 22957472, + 22957504, + 22546256, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546400 + 29301360, + 29295200, + 29301568, + 22546272 ], "bases": [ { @@ -74167,39 +74167,39 @@ }, { "type_name": "CEconItem", - "vtable_address": 31880752, - "methods": [ - 22580880, - 22580944, - 17222720, - 22956400, - 22582144, - 22544816, - 22582176, - 22583872, - 22956720, - 22553232, - 22568944, - 17223456, - 22543968, - 22589904, - 17222736, + "vtable_address": 31880688, + "methods": [ + 22580752, + 22580816, + 17222592, + 22956336, + 22582016, + 22544688, + 22582048, + 22583744, + 22956656, + 22553104, + 22568816, + 17223328, + 22543840, + 22589776, + 17222608, + 22543856, + 22543888, + 22543920, + 22572672, + 22544656, + 22543952, 22543984, - 22544016, - 22544048, - 22572800, - 22544784, - 22544080, - 22544112, - 22602000, - 22602576, - 22572656, - 22544800, - 22621280, - 22620976, - 22606928, - 22956512, - 22956624 + 22601872, + 22602448, + 22572528, + 22544672, + 22621152, + 22620848, + 22606800, + 22956448, + 22956560 ], "bases": [ { @@ -74231,36 +74231,36 @@ }, { "type_name": "CEconItem", - "vtable_address": 31881016, - "methods": [ - 22547360, - 22581024, - 22581088, - 22600912, - 22601456, - 22600304, - 22628512, - 22629456, - 22621184, - 22620800, - 22633424, - 22606960, - 22544832, - 22605456, - 22569136, + "vtable_address": 31880952, + "methods": [ + 22547232, + 22580896, + 22580960, + 22600784, + 22601328, + 22600176, + 22628384, + 22629328, + 22621056, + 22620672, + 22633296, + 22606832, + 22544704, + 22605328, + 22569008, + 22543872, + 17222624, + 22543936, + 22573952, + 22543968, 22544000, - 17222752, - 22544064, - 22574080, - 22544096, - 22544128, - 22553904, - 22544032, - 22554352, - 22597488, - 22598080, - 22572704, - 22590400 + 22553776, + 22543904, + 22554224, + 22597360, + 22597952, + 22572576, + 22590272 ], "bases": [ { @@ -74292,13 +74292,13 @@ }, { "type_name": "CEconItemAttribute", - "vtable_address": 31889280, + "vtable_address": 31889216, "methods": [ - 22959504, - 22959472, 22959440, 22959408, - 22959376 + 22959376, + 22959344, + 22959312 ], "bases": [], "model": { @@ -74309,13 +74309,13 @@ }, { "type_name": "CEconItemAttributeDefinition", - "vtable_address": 31876440, + "vtable_address": 31876376, "methods": [ - 22543808, - 22543824, - 22543856, - 22543872, - 22543840 + 22543680, + 22543696, + 22543728, + 22543744, + 22543712 ], "bases": [ { @@ -74337,14 +74337,14 @@ }, { "type_name": "CEconItemAttributeIterator_ApplyAttributeFloat", - "vtable_address": 31877256, + "vtable_address": 31877192, "methods": [ - 22544672, - 22546928, - 22695600, - 22695920, - 22544640, - 22544656 + 22544544, + 22546800, + 22695536, + 22695856, + 22544512, + 22544528 ], "bases": [ { @@ -74366,57 +74366,57 @@ }, { "type_name": "CEconItemDefinition", - "vtable_address": 31885416, + "vtable_address": 31885352, "methods": [ 9837344, - 17221904, + 17221776, 10424928, - 17221920, - 17222256, - 22545296, + 17221792, + 17222128, + 22545168, 10056832, - 22545344, - 17222208, - 17221968, - 17222016, - 17221952, - 22545232, - 17222048, + 22545216, 17222080, + 17221840, + 17221888, + 17221824, + 22545104, + 17221920, + 17221952, 10056800, - 17222320, - 17221984, - 17222272, - 17222288, - 22775200, - 22636944, - 22638112, - 22782240, - 22705952, - 16913520, - 22710976, - 22710656, - 22712400, - 17221936, + 17222192, + 17221856, + 17222144, + 17222160, + 22775136, + 22636816, + 22637984, + 22782176, + 22705888, + 16913392, + 22710912, + 22710592, + 22712336, + 17221808, 10056816, - 17222000, + 17221872, + 17221904, + 17221984, 17222032, + 17222048, + 22606864, + 22598544, + 22599632, + 22599088, + 22597008, + 22545136, + 22545152, + 17222064, + 17222096, 17222112, - 17222160, 17222176, - 22606992, - 22598672, - 22599760, - 22599216, - 22597136, - 22545264, - 22545280, - 17222192, - 17222224, - 17222240, - 17222304, - 22545248, - 17222336 + 22545120, + 17222208 ], "bases": [ { @@ -74438,23 +74438,23 @@ }, { "type_name": "CEconItemPreviewDataBlock", - "vtable_address": 30838424, + "vtable_address": 30838360, "methods": [ 14760208, 14844272, - 24747814, + 24747750, 14352560, 14934512, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14073536, 14062640, 14636992, 9474464, 14317872, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053872, 14022896 @@ -74490,23 +74490,23 @@ }, { "type_name": "CEconItemPreviewDataBlock_Sticker", - "vtable_address": 30838264, + "vtable_address": 30838200, "methods": [ 14760080, 14802544, - 24747814, + 24747750, 14352368, 14888688, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043424, 14062624, 14485760, 9474464, 14275136, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053840, 14022880 @@ -74542,71 +74542,71 @@ }, { "type_name": "CEconItemSchema", - "vtable_address": 31885872, + "vtable_address": 31885808, "methods": [ - 22549728, - 22895456, - 17222576, - 17222560, - 17224208, - 17222352, - 17222592, - 17222608, - 17222624, - 17222640, - 17222656, - 17222672, - 17222688, - 17222704, - 22551072, - 22545392, - 22553920, - 17222544, - 17222400, - 22557664, - 22557280, - 17222416, - 22568512, - 22567552, - 22584704, - 22567776, - 22558192, - 17224192, - 17222384, - 22554368, - 17235200, - 17224176, - 17225504, - 17238704, - 17222368, - 22749728, - 22564256, - 22878448, - 22810912, - 22829760, - 22820672, - 22547744, - 22566048, - 22557888, - 22557456, - 17222512, - 22554624, - 22734304, - 22741712, - 17222432, + 22549600, + 22895392, 17222448, + 17222432, + 17224080, + 17222224, 17222464, + 17222480, + 17222496, + 17222512, 17222528, - 22570768, - 17224128, - 17225568, - 22689168, - 22723456, - 22559632, - 22753392, - 22850304, - 22545376, - 22938672 + 17222544, + 17222560, + 17222576, + 22550944, + 22545264, + 22553792, + 17222416, + 17222272, + 22557536, + 22557152, + 17222288, + 22568384, + 22567424, + 22584576, + 22567648, + 22558064, + 17224064, + 17222256, + 22554240, + 17235072, + 17224048, + 17225376, + 17238576, + 17222240, + 22749664, + 22564128, + 22878384, + 22810848, + 22829696, + 22820608, + 22547616, + 22565920, + 22557760, + 22557328, + 17222384, + 22554496, + 22734240, + 22741648, + 17222304, + 17222320, + 17222336, + 17222400, + 22570640, + 17224000, + 17225440, + 22689104, + 22723392, + 22559504, + 22753328, + 22850240, + 22545248, + 22938608 ], "bases": [ { @@ -74628,21 +74628,21 @@ }, { "type_name": "CEconItemSetDefinition", - "vtable_address": 31884496, + "vtable_address": 31884432, "methods": [ - 17342816, - 22543568, - 22543584, - 22543600, - 22543616, - 22543632, - 22543648, - 22543664, - 22616336, - 22552784, - 22543680, - 22569344, - 22852192 + 17342688, + 22543440, + 22543456, + 22543472, + 22543488, + 22543504, + 22543520, + 22543536, + 22616208, + 22552656, + 22543552, + 22569216, + 22852128 ], "bases": [ { @@ -74664,15 +74664,15 @@ }, { "type_name": "CEconItemSystem", - "vtable_address": 31886464, + "vtable_address": 31886400, "methods": [ - 22544544, - 22544560, - 22544576, - 22544592, - 22545520, - 22547104, - 22544528 + 22544416, + 22544432, + 22544448, + 22544464, + 22545392, + 22546976, + 22544400 ], "bases": [ { @@ -74694,39 +74694,39 @@ }, { "type_name": "CEconItemView", - "vtable_address": 31889864, + "vtable_address": 31889800, "methods": [ 10059520, - 22989120, - 22989600, - 22969488, - 22601456, - 22600304, - 22628512, - 22629456, - 22619728, - 22620624, - 22633424, - 22606240, - 22544832, - 22605456, + 22989056, + 22989536, + 22969424, + 22601328, + 22600176, + 22628384, + 22629328, + 22619600, + 22620496, + 22633296, + 22606112, + 22544704, + 22605328, 10059440, 10056928, 10056912, - 22962864, - 22972144, - 22963008, - 22962736, - 22964960, + 22962800, + 22972080, + 22962944, + 22962672, + 22964896, 10056896, 10059376, - 22962416, - 22962544, - 22962640, - 22971728, - 22957968, + 22962352, + 22962480, + 22962576, + 22971664, + 22957904, 10056880, - 22957984 + 22957920 ], "bases": [ { @@ -74748,23 +74748,23 @@ }, { "type_name": "CEconItemView", - "vtable_address": 31894504, + "vtable_address": 31894440, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8661094 + "offset_to_top": 8661105 } } }, { "type_name": "CEconItemView::NetworkVar_m_AttributeList", - "vtable_address": 31889336, + "vtable_address": 31889272, "methods": [ - 22959520, - 22958048, - 22957936, - 22958000 + 22959456, + 22957984, + 22957872, + 22957936 ], "bases": [ { @@ -74786,12 +74786,12 @@ }, { "type_name": "CEconItemView::NetworkVar_m_NetworkedDynamicAttributes", - "vtable_address": 31889384, + "vtable_address": 31889320, "methods": [ - 22959520, - 22958208, - 22957936, - 22958160 + 22959456, + 22958144, + 22957872, + 22958096 ], "bases": [ { @@ -74813,21 +74813,21 @@ }, { "type_name": "CEconLootListDefinition", - "vtable_address": 31884616, + "vtable_address": 31884552, "methods": [ - 22543696, - 22543712, - 22543728, - 22566272, - 22543760, - 22543776, - 22550432, - 22543792, - 22550544, - 22550608, - 22550640, - 22556608, - 22567152 + 22543568, + 22543584, + 22543600, + 22566144, + 22543632, + 22543648, + 22550304, + 22543664, + 22550416, + 22550480, + 22550512, + 22556480, + 22567024 ], "bases": [ { @@ -74849,19 +74849,19 @@ }, { "type_name": "CEconPersonaDataPublic", - "vtable_address": 31299680, + "vtable_address": 31299616, "methods": [ - 18001808, - 18001840, - 17794272, - 29295200, + 18001680, + 18001712, + 17794144, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 17794288 + 29301360, + 29295200, + 29301568, + 17794160 ], "bases": [ { @@ -74905,19 +74905,19 @@ }, { "type_name": "CEconQuestProgress", - "vtable_address": 31881360, + "vtable_address": 31881296, "methods": [ - 22957152, - 22957184, - 22546448, - 29295200, + 22957088, + 22957120, + 22546320, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546464 + 29301360, + 29295200, + 29301568, + 22546336 ], "bases": [ { @@ -74961,19 +74961,19 @@ }, { "type_name": "CEconRecurringMission", - "vtable_address": 31881568, + "vtable_address": 31881504, "methods": [ - 22956960, - 22956992, - 22546416, - 29295200, + 22956896, + 22956928, + 22546288, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546432 + 29301360, + 29295200, + 29301568, + 22546304 ], "bases": [ { @@ -75017,12 +75017,12 @@ }, { "type_name": "CEconStyleInfo", - "vtable_address": 31885824, + "vtable_address": 31885760, "methods": [ - 22556544, - 22556224, - 22708128, - 22708640 + 22556416, + 22556096, + 22708064, + 22708576 ], "bases": [], "model": { @@ -75033,15 +75033,15 @@ }, { "type_name": "CEconTool_BackpackExpander", - "vtable_address": 31883344, + "vtable_address": 31883280, "methods": [ - 22561584, - 22563584, - 22543888, - 22975840, - 22543904, - 22545072, - 22543936 + 22561456, + 22563456, + 22543760, + 22975776, + 22543776, + 22544944, + 22543808 ], "bases": [ { @@ -75063,15 +75063,15 @@ }, { "type_name": "CEconTool_Casket", - "vtable_address": 31889792, + "vtable_address": 31889728, "methods": [ - 22967808, - 22968224, - 22959344, - 22975840, - 22543904, - 22543920, - 22543936 + 22967744, + 22968160, + 22959280, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75093,15 +75093,15 @@ }, { "type_name": "CEconTool_Collection", - "vtable_address": 31889504, + "vtable_address": 31889440, "methods": [ - 22968064, - 22968608, - 22980096, - 22958368, - 22543904, - 22959280, - 22543936 + 22968000, + 22968544, + 22980032, + 22958304, + 22543776, + 22959216, + 22543808 ], "bases": [ { @@ -75123,15 +75123,15 @@ }, { "type_name": "CEconTool_CrateKey", - "vtable_address": 31884352, + "vtable_address": 31884288, "methods": [ - 22560464, - 22562240, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560336, + 22562112, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75153,15 +75153,15 @@ }, { "type_name": "CEconTool_CustomizeTexture", - "vtable_address": 31884280, + "vtable_address": 31884216, "methods": [ - 22560544, - 22562336, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560416, + 22562208, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75183,15 +75183,15 @@ }, { "type_name": "CEconTool_Default", - "vtable_address": 31884424, + "vtable_address": 31884360, "methods": [ - 22560384, - 22562144, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560256, + 22562016, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75213,15 +75213,15 @@ }, { "type_name": "CEconTool_DescTag", - "vtable_address": 31884136, + "vtable_address": 31884072, "methods": [ - 22560704, - 22562528, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560576, + 22562400, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75243,15 +75243,15 @@ }, { "type_name": "CEconTool_DuelingMinigame", - "vtable_address": 31882912, + "vtable_address": 31882848, "methods": [ - 22562064, - 22564160, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561936, + 22564032, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75273,15 +75273,15 @@ }, { "type_name": "CEconTool_FanToken", - "vtable_address": 31883776, + "vtable_address": 31883712, "methods": [ - 22561104, - 22563008, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560976, + 22562880, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75303,15 +75303,15 @@ }, { "type_name": "CEconTool_Gift", - "vtable_address": 31883416, + "vtable_address": 31883352, "methods": [ - 22561504, - 22563488, - 22543888, - 22975840, - 22543904, - 22545088, - 22543936 + 22561376, + 22563360, + 22543760, + 22975776, + 22543776, + 22544960, + 22543808 ], "bases": [ { @@ -75333,15 +75333,15 @@ }, { "type_name": "CEconTool_Keychain", - "vtable_address": 31889648, + "vtable_address": 31889584, "methods": [ - 22967936, - 22968416, - 22958480, - 22975840, - 22543904, - 22543920, - 22543936 + 22967872, + 22968352, + 22958416, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75363,15 +75363,15 @@ }, { "type_name": "CEconTool_KeychainToolCharges", - "vtable_address": 31883704, + "vtable_address": 31883640, "methods": [ - 22561184, - 22563104, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561056, + 22562976, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75393,15 +75393,15 @@ }, { "type_name": "CEconTool_NameTag", - "vtable_address": 31884064, + "vtable_address": 31884000, "methods": [ - 22560784, - 22562624, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560656, + 22562496, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75423,15 +75423,15 @@ }, { "type_name": "CEconTool_Noisemaker", - "vtable_address": 31882984, + "vtable_address": 31882920, "methods": [ - 22561984, - 22564064, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561856, + 22563936, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75453,15 +75453,15 @@ }, { "type_name": "CEconTool_PaintCan", - "vtable_address": 31883488, + "vtable_address": 31883424, "methods": [ - 22561424, - 22563392, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561296, + 22563264, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75483,15 +75483,15 @@ }, { "type_name": "CEconTool_PaintKit", - "vtable_address": 31883560, + "vtable_address": 31883496, "methods": [ - 22561344, - 22563296, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561216, + 22563168, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75513,15 +75513,15 @@ }, { "type_name": "CEconTool_Patch", - "vtable_address": 31889720, + "vtable_address": 31889656, "methods": [ - 22967872, - 22968320, - 22958384, - 22975840, - 22543904, - 22543920, - 22543936 + 22967808, + 22968256, + 22958320, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75543,15 +75543,15 @@ }, { "type_name": "CEconTool_Recipe", - "vtable_address": 31883992, + "vtable_address": 31883928, "methods": [ - 22560864, - 22562720, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560736, + 22562592, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75573,15 +75573,15 @@ }, { "type_name": "CEconTool_SeasonPass", - "vtable_address": 31883200, + "vtable_address": 31883136, "methods": [ - 22561664, - 22563680, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561536, + 22563552, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75603,15 +75603,15 @@ }, { "type_name": "CEconTool_SeasonTiers", - "vtable_address": 31883920, + "vtable_address": 31883856, "methods": [ - 22560944, - 22562816, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560816, + 22562688, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75633,15 +75633,15 @@ }, { "type_name": "CEconTool_Spray", - "vtable_address": 31883632, + "vtable_address": 31883568, "methods": [ - 22561264, - 22563200, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561136, + 22563072, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75663,15 +75663,15 @@ }, { "type_name": "CEconTool_StatTrakSwap", - "vtable_address": 31884208, + "vtable_address": 31884144, "methods": [ - 22560624, - 22562432, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560496, + 22562304, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75693,15 +75693,15 @@ }, { "type_name": "CEconTool_Sticker", - "vtable_address": 31889576, + "vtable_address": 31889512, "methods": [ - 22968000, - 22968512, - 22958384, - 22975840, - 22543904, - 22543920, - 22543936 + 22967936, + 22968448, + 22958320, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75723,15 +75723,15 @@ }, { "type_name": "CEconTool_WeddingRing", - "vtable_address": 31883128, + "vtable_address": 31883064, "methods": [ - 22561824, - 22563872, - 22543888, - 22975840, - 22545056, - 22543920, - 22543936 + 22561696, + 22563744, + 22543760, + 22975776, + 22544928, + 22543792, + 22543808 ], "bases": [ { @@ -75753,15 +75753,15 @@ }, { "type_name": "CEconTool_WrappedGift", - "vtable_address": 31883056, + "vtable_address": 31882992, "methods": [ - 22561904, - 22563968, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561776, + 22563840, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75783,15 +75783,15 @@ }, { "type_name": "CEconTool_XpGrant", - "vtable_address": 31883848, + "vtable_address": 31883784, "methods": [ - 22561024, - 22562912, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22560896, + 22562784, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75813,15 +75813,15 @@ }, { "type_name": "CEconTool_XpShopTicket", - "vtable_address": 31883272, + "vtable_address": 31883208, "methods": [ - 22561744, - 22563776, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22561616, + 22563648, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [ { @@ -75854,33 +75854,33 @@ }, { "type_name": "CEconWearable", - "vtable_address": 31890304, + "vtable_address": 31890240, "methods": [ 13528544, - 22960192, - 22960240, - 18377552, - 18065872, - 18010880, - 18010864, - 18180144, - 26419632, - 18009552, - 26419200, - 18378208, - 22948000, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 22960128, + 22960176, + 18377424, + 18065744, + 18010752, + 18010736, + 18180016, + 26419568, + 18009424, + 26419136, + 18378080, + 22947936, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -75891,21 +75891,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22958688, - 23018704, - 22959536, + 26427360, + 22958624, + 23018640, + 22959472, 9635312, - 22970304, - 18308160, + 22970240, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -75917,95 +75917,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 23018608, - 19834496, + 23018544, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -76013,17 +76013,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -76043,7 +76043,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -76054,30 +76054,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -76088,7 +76088,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -76099,113 +76099,113 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 22544752, - 22544768, - 22959920, - 22544736, + 22544624, + 22544640, + 22959856, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, + 16727216, 16727232, - 16727264, - 16740032, - 16727296, - 16742560, - 22544720, - 16727328, - 16727344, - 16727360, - 16727376, - 22693520, - 22553408, - 22958304, - 22960000, - 22958320, - 22965872, - 22960096, - 22958592, - 22972544, - 22958336, - 22958704, - 22967584, - 22958352 + 16727248, + 22693456, + 22553280, + 22958240, + 22959936, + 22958256, + 22965808, + 22960032, + 22958528, + 22972480, + 22958272, + 22958640, + 22967520, + 22958288 ], "bases": [ { @@ -76302,14 +76302,14 @@ }, { "type_name": "CEconWearable", - "vtable_address": 31893120, + "vtable_address": 31893056, "methods": [ - 22959552, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 22959488, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -76406,10 +76406,10 @@ }, { "type_name": "CEconWearable", - "vtable_address": 31893184, + "vtable_address": 31893120, "methods": [ - 22553872, - 22553888 + 22553744, + 22553760 ], "bases": [ { @@ -76506,7 +76506,7 @@ }, { "type_name": "CEffectData", - "vtable_address": 30325440, + "vtable_address": 30325376, "methods": [ 11520976, 11518896, @@ -76522,7 +76522,7 @@ }, { "type_name": "CEffectData", - "vtable_address": 30472616, + "vtable_address": 30472552, "methods": [], "bases": [], "model": { @@ -76533,18 +76533,18 @@ }, { "type_name": "CEmbeddedSubclass", - "vtable_address": 30136520, + "vtable_address": 30136456, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32371072 + "offset_to_top": 32371008 } } }, { "type_name": "CEmptyPhysicsBodyList", - "vtable_address": 30325528, + "vtable_address": 30325464, "methods": [ 11745936, 11747232, @@ -76572,34 +76572,38 @@ }, { "type_name": "CEmptySequence", - "vtable_address": 31980392, + "vtable_address": 31980328, "methods": [ - 25021248, - 25021264, - 25020416, - 25020928, - 25020752, - 25020896, + 25021184, + 25021200, + 25020352, + 25020864, + 25020688, + 25020832, + 25020160, + 25020176, + 25021120, + 25021152, + 25021168, + 25020208, 25020224, 25020240, - 25021184, - 25021216, - 25021232, + 25020256, 25020272, 25020288, 25020304, 25020320, 25020336, - 25020352, 25020368, 25020384, 25020400, + 25020416, 25020432, 25020448, - 25020464, 25020480, 25020496, 25020512, + 25020528, 25020544, 25020560, 25020576, @@ -76609,33 +76613,29 @@ 25020640, 25020656, 25020672, - 25020688, 25020704, 25020720, 25020736, + 25020752, 25020768, 25020784, 25020800, 25020816, - 25020832, - 25020848, - 25020864, 25020880, - 25020944, + 25020896, + 25020912, + 25020928, 25020960, - 25020976, 25020992, + 25021216, 25021024, + 25020192, 25021056, - 25021280, + 25021072, 25021088, - 25020256, - 25021120, - 25021136, - 25021152, - 25021168, - 25020912, - 25021200 + 25021104, + 25020848, + 25021136 ], "bases": [ { @@ -76668,32 +76668,32 @@ }, { "type_name": "CEmptyWorldService", - "vtable_address": 31004040, + "vtable_address": 31003976, "methods": [ + 16600640, + 16600704, + 16600080, + 16600528, + 16600432, + 16600096, + 16600112, + 16600128, + 16600576, + 16600144, + 16600160, + 16600176, + 16600192, + 16598864, 16600768, - 16600832, + 16598848, 16600208, - 16600656, - 16600560, 16600224, 16600240, + 16598832, 16600256, - 16600704, 16600272, - 16600288, - 16600304, - 16600320, - 16598992, - 16600896, - 16598976, - 16600336, - 16600352, - 16600368, - 16598960, - 16600384, - 16600400, - 16605008, - 16604912 + 16604880, + 16604784 ], "bases": [ { @@ -76803,33 +76803,33 @@ }, { "type_name": "CEnableMotionFixup", - "vtable_address": 31735664, + "vtable_address": 31735600, "methods": [ 13506768, - 21603904, - 21603920, + 21603776, + 21603792, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -76840,21 +76840,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21598976, - 21918960, - 21601392, + 26427360, + 21598848, + 21918832, + 21601264, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -76878,83 +76878,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -76962,16 +76962,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -76992,7 +76992,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -77005,28 +77005,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -77037,7 +77037,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -77048,7 +77048,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -77081,7 +77081,7 @@ }, { "type_name": "CEnduringClassMemoryPool", - "vtable_address": 30511432, + "vtable_address": 30511368, "methods": [ 12433264 ], @@ -77094,23 +77094,23 @@ }, { "type_name": "CEngineGotvSyncPacket", - "vtable_address": 30873304, + "vtable_address": 30873240, "methods": [ 14788272, 14813808, - 24747814, + 24747750, 14388160, 14895088, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046896, 14062864, 14589568, 9474464, 14286848, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060848, 14028416 @@ -77146,13 +77146,13 @@ }, { "type_name": "CEntFireAutoCompletionFunctor", - "vtable_address": 31431320, + "vtable_address": 31431256, "methods": [ 12774416, - 19835008, - 20043472, - 19853456, - 19828928 + 19834880, + 20043344, + 19853328, + 19828800 ], "bases": [ { @@ -77195,9 +77195,9 @@ }, { "type_name": "CEntFireAutoCompletionFunctor", - "vtable_address": 31431376, + "vtable_address": 31431312, "methods": [ - 20044448 + 20044320 ], "bases": [ { @@ -77240,13 +77240,13 @@ }, { "type_name": "CEntFireOutputAutoCompletionFunctor", - "vtable_address": 31431400, + "vtable_address": 31431336, "methods": [ 12774416, - 19848192, - 20043472, - 19850784, - 19828944 + 19848064, + 20043344, + 19850656, + 19828816 ], "bases": [ { @@ -77300,9 +77300,9 @@ }, { "type_name": "CEntFireOutputAutoCompletionFunctor", - "vtable_address": 31431456, + "vtable_address": 31431392, "methods": [ - 20044448 + 20044320 ], "bases": [ { @@ -77356,18 +77356,18 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 31369616, + "vtable_address": 31369552, "methods": [ - 18872848, - 18873376, - 18887008, - 18812496, - 18812512, - 18812528, - 18812480, - 19196304, - 19200128, - 18895168 + 18872720, + 18873248, + 18886880, + 18812368, + 18812384, + 18812400, + 18812352, + 19196176, + 19200000, + 18895040 ], "bases": [ { @@ -77399,12 +77399,12 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 31369712, + "vtable_address": 31369648, "methods": [ - 19196912, + 19196784, 9890784, - 19200464, - 18895408 + 19200336, + 18895280 ], "bases": [ { @@ -77436,52 +77436,52 @@ }, { "type_name": "CEntity2SaveRestore", - "vtable_address": 31356776, - "methods": [ - 18535040, - 18678688, - 18542928, - 18387600, - 18767104, - 18777024, - 18679584, - 18691376, - 18719280, - 18723616, - 18725808, - 18535024, - 18387568, - 18387584, - 18400672, - 18430192, - 18522288, - 18396688, - 18386752, - 18401008, - 18535760, - 18579424, - 18605952, - 18398256, - 18398368, - 18418336, - 18539200, - 18524752, - 18540096, - 18387664, - 18421376, - 18526880, - 18387680, - 18396720, - 18387728, - 18678848, - 18547120, - 18396704, - 18387520, - 18387616, - 18387632, - 18417200, + "vtable_address": 31356712, + "methods": [ + 18534912, + 18678560, + 18542800, + 18387472, + 18766976, + 18776896, + 18679456, + 18691248, + 18719152, + 18723488, + 18725680, + 18534896, + 18387440, + 18387456, + 18400544, + 18430064, + 18522160, + 18396560, + 18386624, + 18400880, + 18535632, + 18579296, + 18605824, + 18398128, + 18398240, + 18418208, + 18539072, + 18524624, + 18539968, + 18387536, + 18421248, + 18526752, 18387552, - 18716720 + 18396592, + 18387600, + 18678720, + 18546992, + 18396576, + 18387392, + 18387488, + 18387504, + 18417072, + 18387424, + 18716592 ], "bases": [ { @@ -77503,9 +77503,9 @@ }, { "type_name": "CEntity2_EHandle_Restore", - "vtable_address": 32017192, + "vtable_address": 32017128, "methods": [ - 26339648 + 26339584 ], "bases": [ { @@ -77527,9 +77527,9 @@ }, { "type_name": "CEntity2_EHandle_Save", - "vtable_address": 32017168, + "vtable_address": 32017104, "methods": [ - 26339296 + 26339232 ], "bases": [ { @@ -77551,7 +77551,7 @@ }, { "type_name": "CEntityAutoCompletionFunctor", - "vtable_address": 30517880, + "vtable_address": 30517816, "methods": [ 12774416, 12431520 @@ -77576,33 +77576,33 @@ }, { "type_name": "CEntityBlocker", - "vtable_address": 30622696, + "vtable_address": 30622632, "methods": [ 13522144, 13625952, 13625968, - 18377504, - 26419168, - 20292464, - 18010864, - 20292416, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 20292336, + 18010736, + 20292288, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -77613,21 +77613,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13621776, 13700736, 13623280, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -77651,83 +77651,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -77735,16 +77735,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -77765,7 +77765,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -77778,28 +77778,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -77810,7 +77810,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -77821,35 +77821,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -77893,7 +77893,7 @@ }, { "type_name": "CEntityClassPulseSignature", - "vtable_address": 32017272, + "vtable_address": 32017208, "methods": [], "bases": [ { @@ -77915,18 +77915,18 @@ }, { "type_name": "CEntityComponent", - "vtable_address": 32019720, + "vtable_address": 32019656, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33335264 + "offset_to_top": 33335200 } } }, { "type_name": "CEntityComponent", - "vtable_address": 33276160, + "vtable_address": 33276096, "methods": [], "bases": [], "model": { @@ -77937,10 +77937,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 31448912, + "vtable_address": 31448848, "methods": [ - 19830896, - 19831008, + 19830768, + 19830880, 10056736, 10056752, 9634272, @@ -77977,10 +77977,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 31318064, + "vtable_address": 31318000, "methods": [ - 18006320, - 18006432, + 18006192, + 18006304, 10056736, 10056752, 9634272, @@ -78017,7 +78017,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 30411768, + "vtable_address": 30411704, "methods": [ 12097808, 12097920, @@ -78057,10 +78057,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 31390808, + "vtable_address": 31390744, "methods": [ - 19301376, - 19304688, + 19301248, + 19304560, 10056736, 10056752, 9634272, @@ -78097,10 +78097,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 31318128, + "vtable_address": 31318064, "methods": [ - 18006096, - 18006208, + 18005968, + 18006080, 10056736, 10056752, 9634272, @@ -78137,10 +78137,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 31318000, + "vtable_address": 31317936, "methods": [ - 18006544, - 18006656, + 18006416, + 18006528, 10056736, 10056752, 9634272, @@ -78177,10 +78177,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 31448784, + "vtable_address": 31448720, "methods": [ - 19831136, - 19831200, + 19831008, + 19831072, 10056736, 10056752, 9634272, @@ -78217,7 +78217,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 30215976, + "vtable_address": 30215912, "methods": [ 10059056, 10059168, @@ -78257,7 +78257,7 @@ }, { "type_name": "CEntityComponentHelperReferenced", - "vtable_address": 32018944, + "vtable_address": 32018880, "methods": [], "bases": [ { @@ -78279,7 +78279,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 30154720, + "vtable_address": 30154656, "methods": [ 9701184, 9700160, @@ -78319,14 +78319,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 31309944, + "vtable_address": 31309880, "methods": [ 9701184, - 18007168, - 18010784, - 18007184, - 18225040, - 18243888 + 18007040, + 18010656, + 18007056, + 18224912, + 18243760 ], "bases": [ { @@ -78359,14 +78359,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 31310376, + "vtable_address": 31310312, "methods": [ 9701184, - 18007136, - 18010832, - 18007152, - 18020144, - 18015328 + 18007008, + 18010704, + 18007024, + 18020016, + 18015200 ], "bases": [ { @@ -78399,7 +78399,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 30154944, + "vtable_address": 30154880, "methods": [ 9701184, 9700096, @@ -78439,7 +78439,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 30154832, + "vtable_address": 30154768, "methods": [ 9701184, 9700128, @@ -78479,7 +78479,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 30155112, + "vtable_address": 30155048, "methods": [ 9701184, 9700064, @@ -78519,7 +78519,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 30155216, + "vtable_address": 30155152, "methods": [ 9701184, 9700032, @@ -78559,12 +78559,12 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 31388432, + "vtable_address": 31388368, "methods": [ 9701184, - 19297744, - 19298608, - 19297760, + 19297616, + 19298480, + 19297632, 9698304, 9698320 ], @@ -78599,7 +78599,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 30418056, + "vtable_address": 30417992, "methods": [ 9701184, 12204288, @@ -78639,7 +78639,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 30159944, + "vtable_address": 30159880, "methods": [ 9701184, 9699920, @@ -78679,14 +78679,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 32019000, + "vtable_address": 32018936, "methods": [ 9701184, - 26623008, - 26623088, + 26622944, 26623024, - 26623040, - 26623056 + 26622960, + 26622976, + 26622992 ], "bases": [ { @@ -78719,12 +78719,12 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 31895568, + "vtable_address": 31895504, "methods": [ 9701184, - 23020128, - 23020160, - 23020144, + 23020064, + 23020096, + 23020080, 9698304, 9698320 ], @@ -78759,13 +78759,13 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 31368480, + "vtable_address": 31368416, "methods": [ - 18859952, - 18831312, - 18847664, - 19285296, - 18834368 + 18859824, + 18831184, + 18847536, + 19285168, + 18834240 ], "bases": [ { @@ -78787,13 +78787,13 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 31368424, + "vtable_address": 31368360, "methods": [ - 18859760, - 18831104, - 18847808, - 19287152, - 18833664 + 18859632, + 18830976, + 18847680, + 19287024, + 18833536 ], "bases": [ { @@ -78815,13 +78815,13 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 31368536, + "vtable_address": 31368472, "methods": [ - 18860144, - 18831520, - 18847520, - 19283440, - 18835136 + 18860016, + 18831392, + 18847392, + 19283312, + 18835008 ], "bases": [ { @@ -78843,7 +78843,7 @@ }, { "type_name": "CEntityDebugGameSystem", - "vtable_address": 30517368, + "vtable_address": 30517304, "methods": [ 9634368, 9634384, @@ -78949,33 +78949,33 @@ }, { "type_name": "CEntityDissolve", - "vtable_address": 30624888, + "vtable_address": 30624824, "methods": [ 13522144, - 20292848, - 20292880, - 18377504, - 26419168, - 20292944, - 18010864, - 20348336, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20292720, + 20292752, + 18377376, + 26419104, + 20292816, + 18010736, + 20348208, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -78986,21 +78986,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20292512, + 26427360, + 20292384, 13700736, 13623296, 9635312, 13649072, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -79024,83 +79024,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -79108,16 +79108,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -79138,7 +79138,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -79151,28 +79151,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -79183,7 +79183,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -79194,35 +79194,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -79266,33 +79266,33 @@ }, { "type_name": "CEntityFlame", - "vtable_address": 30627080, + "vtable_address": 30627016, "methods": [ 13506768, 13626016, 13626032, 12023536, - 26419168, - 20296080, - 20141632, - 20296096, - 26419632, - 26419200, - 26419200, - 20296240, + 26419104, + 20295952, + 20141504, 20295968, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20296112, + 20295840, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -79303,21 +79303,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20295168, + 26427360, + 20295040, 13700752, 13623312, 9635312, 13649168, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -79341,83 +79341,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 13626976, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -79425,16 +79425,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -79455,7 +79455,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -79468,28 +79468,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -79500,7 +79500,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -79511,7 +79511,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -79544,12 +79544,12 @@ }, { "type_name": "CEntityIONotify", - "vtable_address": 31369760, + "vtable_address": 31369696, "methods": [ - 19027040, - 19032192, - 18822896, - 18829424 + 19026912, + 19032064, + 18822768, + 18829296 ], "bases": [ { @@ -79571,7 +79571,7 @@ }, { "type_name": "CEntityIOOutput", - "vtable_address": 30137328, + "vtable_address": 30137264, "methods": [ 9639088, 9634304 @@ -79585,63 +79585,63 @@ }, { "type_name": "CEntityIOOutput", - "vtable_address": 32020024, + "vtable_address": 32019960, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8782419 + "offset_to_top": 8782430 } } }, { "type_name": "CEntityInstance", - "vtable_address": 32017432, - "methods": [ - 26444480, - 26421136, - 26422672, - 26419152, - 26419168, - 26421968, - 26419184, - 26425008, - 26419632, - 26419200, - 26419200, - 26422416, - 26421472, - 26419328, - 26409104, - 26409120, + "vtable_address": 32017368, + "methods": [ + 26444416, + 26421072, + 26422608, + 26419088, + 26419104, + 26421904, + 26419120, + 26424944, + 26419568, + 26419136, + 26419136, + 26422352, + 26421408, + 26419264, + 26409040, + 26409056, 9634320, + 26418672, + 26418688, + 26418704, + 26418720, 26418736, 26418752, 26418768, 26418784, 26418800, + 26409072, 26418816, 26418832, 26418848, 26418864, - 26409136, 26418880, 26418896, + 9634336, 26418912, 26418928, 26418944, 26418960, - 9634336, 26418976, + 9634352, + 26427360, 26418992, 26419008, - 26419024, - 26419040, - 9634352, - 26427424, - 26419056, - 26419072, - 26419536 + 26419472 ], "bases": [], "model": { @@ -79652,7 +79652,7 @@ }, { "type_name": "CEntityInstance", - "vtable_address": 32019920, + "vtable_address": 32019856, "methods": [], "bases": [], "model": { @@ -79663,7 +79663,7 @@ }, { "type_name": "CEntityInstance", - "vtable_address": 33333064, + "vtable_address": 33333000, "methods": [], "bases": [], "model": { @@ -79674,7 +79674,7 @@ }, { "type_name": "CEntityInstancePolymorphicMetadataHelper", - "vtable_address": 30108104, + "vtable_address": 30108040, "methods": [ 9447648 ], @@ -79698,12 +79698,12 @@ }, { "type_name": "CEntityKeyValuesSaveRestoreOps", - "vtable_address": 31357232, + "vtable_address": 31357168, "methods": [ - 18446160, - 18445984, - 18400976, - 18401200, + 18446032, + 18445856, + 18400848, + 18401072, 9634272, 9634288 ], @@ -79748,7 +79748,7 @@ }, { "type_name": "CEntityLumpRequest", - "vtable_address": 30451216, + "vtable_address": 30451152, "methods": [ 12220240 ], @@ -79772,23 +79772,23 @@ }, { "type_name": "CEntityMessageDoSpark", - "vtable_address": 30933648, + "vtable_address": 30933584, "methods": [ 15701104, 15702208, - 24747814, + 24747750, 15303232, 15773488, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15189872, 15077856, 15439584, 9474464, 15194752, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073472, 15047136 @@ -79824,23 +79824,23 @@ }, { "type_name": "CEntityMessageFixAngle", - "vtable_address": 30933808, + "vtable_address": 30933744, "methods": [ 15700736, 15702576, - 24747814, + 24747750, 15303376, 15773168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15162064, 15077840, 15440400, 9474464, 15110080, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073504, 15047152 @@ -79876,23 +79876,23 @@ }, { "type_name": "CEntityMessagePlayJingle", - "vtable_address": 30933008, + "vtable_address": 30932944, "methods": [ 15689952, 15690368, - 24747814, + 24747750, 15302624, 15767776, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15124592, 15077920, 15437440, 9474464, 15081552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073344, 15047072 @@ -79928,23 +79928,23 @@ }, { "type_name": "CEntityMessagePropagateForce", - "vtable_address": 30933488, + "vtable_address": 30933424, "methods": [ 15701472, 15701840, - 24747814, + 24747750, 15303104, 15772672, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15152608, 15077872, 15439072, 9474464, 15081648, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073440, 15047120 @@ -79980,14 +79980,14 @@ }, { "type_name": "CEntityMessagePropagateForce_t", - "vtable_address": 31751104, + "vtable_address": 31751040, "methods": [ - 21931520, - 21931584, - 19517984, - 19518000, - 19518016, - 19527376 + 21931392, + 21931456, + 19517856, + 19517872, + 19517888, + 19527248 ], "bases": [ { @@ -80074,23 +80074,23 @@ }, { "type_name": "CEntityMessagePropagateForce_t", - "vtable_address": 31751168, + "vtable_address": 31751104, "methods": [ - 21931552, - 21931648, - 24747814, + 21931424, + 21931520, + 24747750, 15303104, 15772672, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15152608, 15077872, 15439072, 9474464, 15081648, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073440, 15047120 @@ -80180,23 +80180,23 @@ }, { "type_name": "CEntityMessageRemoveAllDecals", - "vtable_address": 30933328, + "vtable_address": 30933264, "methods": [ 15689120, 15691200, - 24747814, + 24747750, 15302944, 15768000, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15136992, 15077888, 15438464, 9474464, 15109920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073408, 15047104 @@ -80232,14 +80232,14 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 31429128, + "vtable_address": 31429064, "methods": [ - 19835024, - 19835088, - 19518096, - 19518112, - 19518128, - 19527824 + 19834896, + 19834960, + 19517968, + 19517984, + 19518000, + 19527696 ], "bases": [ { @@ -80326,23 +80326,23 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 31429192, + "vtable_address": 31429128, "methods": [ - 19835056, - 19835152, - 24747814, + 19834928, + 19835024, + 24747750, 15302944, 15768000, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15136992, 15077888, 15438464, 9474464, 15109920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073408, 15047104 @@ -80432,23 +80432,23 @@ }, { "type_name": "CEntityMessageScreenOverlay", - "vtable_address": 30933168, + "vtable_address": 30933104, "methods": [ 15689536, 15690784, - 24747814, + 24747750, 15302784, 15767888, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15136864, 15077904, 15437856, 9474464, 15109760, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073376, 15047088 @@ -80484,23 +80484,23 @@ }, { "type_name": "CEntityMsg", - "vtable_address": 30920208, + "vtable_address": 30920144, "methods": [ 15615408, 15642864, - 24747814, + 24747750, 15286480, 15718320, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15053840, 15076752, 15388880, 9474464, 15126880, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070784, 15043520 @@ -80536,18 +80536,18 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 32019648, + "vtable_address": 32019584, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33335232 + "offset_to_top": 33335168 } } }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 30225280, + "vtable_address": 30225216, "methods": [ 9639088, 9634304 @@ -80572,7 +80572,7 @@ }, { "type_name": "CEntityOutputTemplate >", - "vtable_address": 31560936, + "vtable_address": 31560872, "methods": [ 9639088, 9634304 @@ -80597,7 +80597,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 31587776, + "vtable_address": 31587712, "methods": [ 9639088, 9634304 @@ -80622,7 +80622,7 @@ }, { "type_name": "CEntityOutputTemplate >", - "vtable_address": 31587744, + "vtable_address": 31587680, "methods": [ 9639088, 9634304 @@ -80647,7 +80647,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 30547872, + "vtable_address": 30547808, "methods": [ 9639088, 9634304 @@ -80672,7 +80672,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 30225312, + "vtable_address": 30225248, "methods": [ 9639088, 9634304 @@ -80697,7 +80697,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 30429128, + "vtable_address": 30429064, "methods": [ 9639088, 9634304 @@ -80722,17 +80722,17 @@ }, { "type_name": "CEntitySaveRestoreBlockHandler", - "vtable_address": 31357296, + "vtable_address": 31357232, "methods": [ - 18387776, - 18542416, - 18562848, - 18452704, - 18387760, - 18401040, - 18439792, - 18696128, - 18401072 + 18387648, + 18542288, + 18562720, + 18452576, + 18387632, + 18400912, + 18439664, + 18696000, + 18400944 ], "bases": [ { @@ -80754,7 +80754,7 @@ }, { "type_name": "CEntitySharedPulseSignature", - "vtable_address": 30329992, + "vtable_address": 30329928, "methods": [ 11748960, 11748976, @@ -80791,7 +80791,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30518280, + "vtable_address": 30518216, "methods": [ 12460384, 12433904 @@ -80816,7 +80816,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30329880, + "vtable_address": 30329816, "methods": [ 11759280, 11745920 @@ -80841,10 +80841,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31435472, + "vtable_address": 31435408, "methods": [ - 19848848, - 19830832 + 19848720, + 19830704 ], "bases": [ { @@ -80866,10 +80866,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31276240, + "vtable_address": 31276176, "methods": [ - 17259568, - 17254160 + 17259440, + 17254032 ], "bases": [ { @@ -80891,10 +80891,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31280024, + "vtable_address": 31279960, "methods": [ - 17350880, - 17343664 + 17350752, + 17343536 ], "bases": [ { @@ -80916,7 +80916,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30198888, + "vtable_address": 30198824, "methods": [ 10071024, 10058928 @@ -80941,10 +80941,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31461328, + "vtable_address": 31461264, "methods": [ - 20174352, - 20155696 + 20174224, + 20155568 ], "bases": [ { @@ -80966,10 +80966,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31735632, + "vtable_address": 31735568, "methods": [ - 21624688, - 21599856 + 21624560, + 21599728 ], "bases": [ { @@ -80991,10 +80991,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31495928, + "vtable_address": 31495864, "methods": [ - 20174544, - 20155712 + 20174416, + 20155584 ], "bases": [ { @@ -81016,10 +81016,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31495992, + "vtable_address": 31495928, "methods": [ - 20174736, - 20155584 + 20174608, + 20155456 ], "bases": [ { @@ -81041,10 +81041,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31496056, + "vtable_address": 31495992, "methods": [ - 20174928, - 20155600 + 20174800, + 20155472 ], "bases": [ { @@ -81066,10 +81066,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30994728, + "vtable_address": 30994664, "methods": [ - 16506304, - 16502000 + 16506176, + 16501872 ], "bases": [ { @@ -81091,10 +81091,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31798896, + "vtable_address": 31798832, "methods": [ - 22301632, - 22264432 + 22301504, + 22264304 ], "bases": [ { @@ -81116,10 +81116,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31798960, + "vtable_address": 31798896, "methods": [ - 22301824, - 22264448 + 22301696, + 22264320 ], "bases": [ { @@ -81141,10 +81141,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31283560, + "vtable_address": 31283496, "methods": [ - 17351072, - 17343680 + 17350944, + 17343552 ], "bases": [ { @@ -81166,10 +81166,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31757072, + "vtable_address": 31757008, "methods": [ - 21946048, - 21929312 + 21945920, + 21929184 ], "bases": [ { @@ -81191,10 +81191,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31564968, + "vtable_address": 31564904, "methods": [ - 20930768, - 20905968 + 20930640, + 20905840 ], "bases": [ { @@ -81216,10 +81216,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31660448, + "vtable_address": 31660384, "methods": [ - 21097936, - 21068416 + 21097808, + 21068288 ], "bases": [ { @@ -81241,10 +81241,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31660384, + "vtable_address": 31660320, "methods": [ - 21097744, - 21068400 + 21097616, + 21068272 ], "bases": [ { @@ -81266,10 +81266,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31660512, + "vtable_address": 31660448, "methods": [ - 21098128, - 21068432 + 21098000, + 21068304 ], "bases": [ { @@ -81291,10 +81291,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31687408, + "vtable_address": 31687344, "methods": [ - 21098320, - 21068448 + 21098192, + 21068320 ], "bases": [ { @@ -81316,10 +81316,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31088392, + "vtable_address": 31088328, "methods": [ - 16928528, - 16916160 + 16928400, + 16916032 ], "bases": [ { @@ -81341,10 +81341,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31804384, + "vtable_address": 31804320, "methods": [ - 22302016, - 22264464 + 22301888, + 22264336 ], "bases": [ { @@ -81366,10 +81366,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31290632, + "vtable_address": 31290568, "methods": [ - 17555888, - 17551296 + 17555760, + 17551168 ], "bases": [ { @@ -81391,7 +81391,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30247360, + "vtable_address": 30247296, "methods": [ 10443872, 10428384 @@ -81416,10 +81416,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31032984, + "vtable_address": 31032920, "methods": [ - 16660640, - 16653200 + 16660512, + 16653072 ], "bases": [ { @@ -81441,7 +81441,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30963128, + "vtable_address": 30963064, "methods": [ 15860800, 15853728 @@ -81466,7 +81466,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30542968, + "vtable_address": 30542904, "methods": [ 12894960, 12860032 @@ -81491,10 +81491,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31546168, + "vtable_address": 31546104, "methods": [ - 20653360, - 20620272 + 20653232, + 20620144 ], "bases": [ { @@ -81516,10 +81516,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31783600, + "vtable_address": 31783536, "methods": [ - 22301440, - 22264288 + 22301312, + 22264160 ], "bases": [ { @@ -81541,7 +81541,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30974360, + "vtable_address": 30974296, "methods": [ 15997488, 15973680 @@ -81566,7 +81566,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30543104, + "vtable_address": 30543040, "methods": [ 12895152, 12859360 @@ -81591,7 +81591,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 30974544, + "vtable_address": 30974480, "methods": [ 15997296, 15973776 @@ -81616,10 +81616,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 31418976, + "vtable_address": 31418912, "methods": [ - 19565920, - 19513440 + 19565792, + 19513312 ], "bases": [ { @@ -81641,7 +81641,7 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 30543000, + "vtable_address": 30542936, "methods": [ 12898768, 12433904 @@ -81677,10 +81677,10 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 31699384, + "vtable_address": 31699320, "methods": [ - 21384736, - 21368752 + 21384608, + 21368624 ], "bases": [ { @@ -81713,7 +81713,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30518248, + "vtable_address": 30518184, "methods": [ 12442272, 12433904 @@ -81727,7 +81727,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30329848, + "vtable_address": 30329784, "methods": [ 11749584, 11745920 @@ -81741,10 +81741,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31435440, + "vtable_address": 31435376, "methods": [ - 19840624, - 19830832 + 19840496, + 19830704 ], "bases": [], "model": { @@ -81755,10 +81755,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31276208, + "vtable_address": 31276144, "methods": [ - 17255824, - 17254160 + 17255696, + 17254032 ], "bases": [], "model": { @@ -81769,10 +81769,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31279992, + "vtable_address": 31279928, "methods": [ - 17349424, - 17343664 + 17349296, + 17343536 ], "bases": [], "model": { @@ -81783,7 +81783,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30198856, + "vtable_address": 30198792, "methods": [ 10064016, 10058928 @@ -81797,10 +81797,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31461296, + "vtable_address": 31461232, "methods": [ - 20175120, - 20155696 + 20174992, + 20155568 ], "bases": [], "model": { @@ -81811,10 +81811,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31735600, + "vtable_address": 31735536, "methods": [ - 21624880, - 21599856 + 21624752, + 21599728 ], "bases": [], "model": { @@ -81825,10 +81825,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31495896, + "vtable_address": 31495832, "methods": [ - 20175312, - 20155712 + 20175184, + 20155584 ], "bases": [], "model": { @@ -81839,10 +81839,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31495960, + "vtable_address": 31495896, "methods": [ - 20175504, - 20155584 + 20175376, + 20155456 ], "bases": [], "model": { @@ -81853,10 +81853,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31496024, + "vtable_address": 31495960, "methods": [ - 20175696, - 20155600 + 20175568, + 20155472 ], "bases": [], "model": { @@ -81867,10 +81867,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30994696, + "vtable_address": 30994632, "methods": [ - 16504736, - 16502000 + 16504608, + 16501872 ], "bases": [], "model": { @@ -81881,10 +81881,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31798864, + "vtable_address": 31798800, "methods": [ - 22302400, - 22264432 + 22302272, + 22264304 ], "bases": [], "model": { @@ -81895,10 +81895,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31798928, + "vtable_address": 31798864, "methods": [ - 22302592, - 22264448 + 22302464, + 22264320 ], "bases": [], "model": { @@ -81909,10 +81909,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31283528, + "vtable_address": 31283464, "methods": [ - 17346608, - 17343680 + 17346480, + 17343552 ], "bases": [], "model": { @@ -81923,10 +81923,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31757040, + "vtable_address": 31756976, "methods": [ - 21946240, - 21929312 + 21946112, + 21929184 ], "bases": [], "model": { @@ -81937,10 +81937,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31564936, + "vtable_address": 31564872, "methods": [ - 20914816, - 20905968 + 20914688, + 20905840 ], "bases": [], "model": { @@ -81951,10 +81951,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31660416, + "vtable_address": 31660352, "methods": [ - 21099072, - 21068416 + 21098944, + 21068288 ], "bases": [], "model": { @@ -81965,10 +81965,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31660352, + "vtable_address": 31660288, "methods": [ - 21098880, - 21068400 + 21098752, + 21068272 ], "bases": [], "model": { @@ -81979,10 +81979,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31660480, + "vtable_address": 31660416, "methods": [ - 21099264, - 21068432 + 21099136, + 21068304 ], "bases": [], "model": { @@ -81993,10 +81993,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31687376, + "vtable_address": 31687312, "methods": [ - 21099456, - 21068448 + 21099328, + 21068320 ], "bases": [], "model": { @@ -82007,10 +82007,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31699352, + "vtable_address": 31699288, "methods": [ - 21375824, - 21368752 + 21375696, + 21368624 ], "bases": [], "model": { @@ -82021,10 +82021,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31088360, + "vtable_address": 31088296, "methods": [ - 16925824, - 16916160 + 16925696, + 16916032 ], "bases": [], "model": { @@ -82035,10 +82035,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31804352, + "vtable_address": 31804288, "methods": [ - 22302784, - 22264464 + 22302656, + 22264336 ], "bases": [], "model": { @@ -82049,10 +82049,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31290600, + "vtable_address": 31290536, "methods": [ - 17553488, - 17551296 + 17553360, + 17551168 ], "bases": [], "model": { @@ -82063,7 +82063,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30247328, + "vtable_address": 30247264, "methods": [ 10438176, 10428384 @@ -82077,10 +82077,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31032952, + "vtable_address": 31032888, "methods": [ - 16657008, - 16653200 + 16656880, + 16653072 ], "bases": [], "model": { @@ -82091,7 +82091,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30963096, + "vtable_address": 30963032, "methods": [ 15855728, 15853728 @@ -82105,7 +82105,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30542936, + "vtable_address": 30542872, "methods": [ 12895344, 12860032 @@ -82119,10 +82119,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31546136, + "vtable_address": 31546072, "methods": [ - 20635152, - 20620272 + 20635024, + 20620144 ], "bases": [], "model": { @@ -82133,10 +82133,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31783568, + "vtable_address": 31783504, "methods": [ - 22302208, - 22264288 + 22302080, + 22264160 ], "bases": [], "model": { @@ -82147,7 +82147,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30974328, + "vtable_address": 30974264, "methods": [ 15997872, 15973680 @@ -82161,7 +82161,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30543072, + "vtable_address": 30543008, "methods": [ 12876512, 12859360 @@ -82175,7 +82175,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 30974512, + "vtable_address": 30974448, "methods": [ 15997680, 15973776 @@ -82189,10 +82189,10 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 31418944, + "vtable_address": 31418880, "methods": [ - 19543424, - 19513440 + 19543296, + 19513312 ], "bases": [], "model": { @@ -82203,7 +82203,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 30518312, + "vtable_address": 30518248, "methods": [ 12689152, 9634384, @@ -82310,7 +82310,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 30518832, + "vtable_address": 30518768, "methods": [ 12202560, 12700624, @@ -82357,7 +82357,7 @@ }, { "type_name": "CEntitySubclassVDataBase", - "vtable_address": 30478192, + "vtable_address": 30478128, "methods": [ 12371600, 12384432, @@ -82387,7 +82387,7 @@ }, { "type_name": "CEntitySubclassVDataBase", - "vtable_address": 30497464, + "vtable_address": 30497400, "methods": [], "bases": [], "model": { @@ -82398,33 +82398,33 @@ }, { "type_name": "CEntitySystem", - "vtable_address": 32018104, - "methods": [ - 26564272, - 26563072, - 26460848, - 26460880, - 26460928, - 26563600, - 26562832, - 26463216, - 26463504, - 26460688, - 19071600, - 19075872, - 26459712, - 26544560, - 26498624, + "vtable_address": 32018040, + "methods": [ + 26564208, + 26563008, + 26460784, + 26460816, + 26460864, + 26563536, + 26562768, + 26463152, + 26463440, + 26460624, + 19071472, + 19075744, + 26459648, + 26544496, + 26498560, + 26459232, + 26459248, + 26459264, + 26459280, 26459296, - 26459312, - 26459328, - 26459344, - 26459360, - 26465136, - 26459728, - 26460128, - 26460272, - 26460384 + 26465072, + 26459664, + 26460064, + 26460208, + 26460320 ], "bases": [ { @@ -82446,32 +82446,32 @@ }, { "type_name": "CEnvBeam", - "vtable_address": 31512536, + "vtable_address": 31512472, "methods": [ 13522144, - 20427024, - 20427344, - 18377504, - 26419168, - 20421856, - 18010864, - 20548912, - 26419632, - 26419200, - 26419200, - 20554784, - 19983840, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 19983600, + 20426896, + 20427216, + 18377376, + 26419104, + 20421728, + 18010736, + 20548784, + 26419568, + 26419136, + 26419136, + 20554656, + 19983712, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 19983472, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12336384, 9635872, 9665808, @@ -82483,21 +82483,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400096, - 20404896, - 20404000, + 26427360, + 20399968, + 20404768, + 20403872, 9635312, 12347600, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -82521,83 +82521,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 12336192, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19983184, - 19983408, - 19983200, + 19983056, + 19983280, + 19983072, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -82605,16 +82605,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -82635,7 +82635,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -82648,28 +82648,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -82680,8 +82680,8 @@ 9636736, 9636752, 9636768, - 21066880, - 20037424, + 21066752, + 20037296, 11742320, 11742400, 11742464, @@ -82691,36 +82691,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 20400064 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 20399936 ], "bases": [ { @@ -82775,33 +82775,33 @@ }, { "type_name": "CEnvBeverage", - "vtable_address": 31477152, + "vtable_address": 31477088, "methods": [ 13506768, - 20156768, - 20156784, + 20156640, + 20156656, 12023536, - 26419168, - 20159840, - 20141632, - 20160064, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20159712, + 20141504, + 20159936, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -82812,21 +82812,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154896, - 20399920, - 20156384, + 26427360, + 20154768, + 20399792, + 20156256, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -82850,83 +82850,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20159888, + 20159760, 9637216, 9636096, 11746864, @@ -82934,16 +82934,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -82964,7 +82964,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -82977,28 +82977,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -83009,7 +83009,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -83020,7 +83020,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -83053,32 +83053,32 @@ }, { "type_name": "CEnvCombinedLightProbeVolume", - "vtable_address": 30330056, + "vtable_address": 30329992, "methods": [ 13506768, 11893104, 11900656, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 11882448, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11899584, 11748896, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, + 19933216, 11748944, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 11747904, 9635872, 9665808, @@ -83090,12 +83090,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11744448, 12023520, 11746096, @@ -83103,8 +83103,8 @@ 11775632, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -83128,83 +83128,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11747216, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -83212,16 +83212,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -83242,7 +83242,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -83255,28 +83255,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -83287,7 +83287,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -83298,7 +83298,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -83373,7 +83373,7 @@ }, { "type_name": "CEnvCombinedLightProbeVolume", - "vtable_address": 30332024, + "vtable_address": 30331960, "methods": [ 11902304, 11901840, @@ -83458,7 +83458,7 @@ }, { "type_name": "CEnvCombinedLightProbeVolume", - "vtable_address": 30332112, + "vtable_address": 30332048, "methods": [ 11902080, 11901600, @@ -83543,7 +83543,7 @@ }, { "type_name": "CEnvCombinedLightProbeVolume", - "vtable_address": 32253568, + "vtable_address": 32253504, "methods": [], "bases": [], "model": { @@ -83554,32 +83554,32 @@ }, { "type_name": "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 30332200, + "vtable_address": 30332136, "methods": [ 13506768, 11900912, 11902528, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 11882448, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11899584, 11748896, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, + 19933216, 11748944, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 11747904, 9635872, 9665808, @@ -83591,12 +83591,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11744464, 12023520, 11746080, @@ -83604,8 +83604,8 @@ 11775632, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -83629,83 +83629,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11747216, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -83713,16 +83713,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -83743,7 +83743,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -83756,28 +83756,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -83788,7 +83788,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -83799,7 +83799,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -83885,7 +83885,7 @@ }, { "type_name": "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 30334168, + "vtable_address": 30334104, "methods": [ 11901152, 11902784, @@ -83981,7 +83981,7 @@ }, { "type_name": "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 30334256, + "vtable_address": 30334192, "methods": [ 11901376, 11903024, @@ -84077,32 +84077,32 @@ }, { "type_name": "CEnvCubemap", - "vtable_address": 30334464, + "vtable_address": 30334400, "methods": [ 13506768, 11893344, 11898432, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 11868160, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11899216, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 11747888, 9635872, 9665808, @@ -84114,12 +84114,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11744480, 12023520, 11746064, @@ -84127,8 +84127,8 @@ 11775760, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -84152,83 +84152,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11747200, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -84236,16 +84236,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -84266,7 +84266,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -84279,28 +84279,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -84311,7 +84311,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -84322,7 +84322,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -84376,7 +84376,7 @@ }, { "type_name": "CEnvCubemap", - "vtable_address": 30336432, + "vtable_address": 30336368, "methods": [ 11898592, 11898736, @@ -84440,7 +84440,7 @@ }, { "type_name": "CEnvCubemap", - "vtable_address": 32250240, + "vtable_address": 32250176, "methods": [], "bases": [], "model": { @@ -84451,32 +84451,32 @@ }, { "type_name": "CEnvCubemapBox", - "vtable_address": 30336520, + "vtable_address": 30336456, "methods": [ 13506768, 11898128, 11898896, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 11868160, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11899216, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 11747888, 9635872, 9665808, @@ -84488,12 +84488,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11744512, 12023520, 11746048, @@ -84501,8 +84501,8 @@ 11775888, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -84526,83 +84526,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11747200, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -84610,16 +84610,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -84640,7 +84640,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -84653,28 +84653,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -84685,7 +84685,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -84696,7 +84696,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -84761,7 +84761,7 @@ }, { "type_name": "CEnvCubemapBox", - "vtable_address": 30338488, + "vtable_address": 30338424, "methods": [ 11898288, 11899056, @@ -84836,33 +84836,33 @@ }, { "type_name": "CEnvCubemapFog", - "vtable_address": 30341984, + "vtable_address": 30341920, "methods": [ 13506768, 12067712, 12068656, 12023536, - 26419168, + 26419104, 12024160, - 20141632, + 20141504, 11883280, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11973568, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -84873,12 +84873,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11848832, 12096352, 12025744, @@ -84886,8 +84886,8 @@ 12034464, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -84911,83 +84911,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11849312, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -84995,16 +84995,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -85025,7 +85025,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -85038,28 +85038,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -85070,7 +85070,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -85081,7 +85081,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -85114,7 +85114,7 @@ }, { "type_name": "CEnvCubemapToolsResourceListener", - "vtable_address": 30334344, + "vtable_address": 30334280, "methods": [ 9698336, 11744496 @@ -85139,33 +85139,33 @@ }, { "type_name": "CEnvDecal", - "vtable_address": 30629048, + "vtable_address": 30628984, "methods": [ 13522144, 13645840, 13645936, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -85176,21 +85176,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20301072, + 26427360, + 20300944, 13700736, 13623328, 9635312, 13649264, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -85214,83 +85214,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20158544, - 19840912, - 19834496, + 20158416, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -85298,16 +85298,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -85328,7 +85328,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -85341,28 +85341,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -85373,7 +85373,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -85384,35 +85384,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -85456,33 +85456,33 @@ }, { "type_name": "CEnvDetailController", - "vtable_address": 30455992, + "vtable_address": 30455928, "methods": [ 13506768, - 20301616, - 20301664, + 20301488, + 20301536, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -85493,21 +85493,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20301392, + 26427360, + 20301264, 12370736, 12334992, 9635312, 12347728, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -85531,83 +85531,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20158560, - 19840912, - 19834496, + 20158432, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -85615,16 +85615,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -85645,7 +85645,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -85658,28 +85658,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -85690,7 +85690,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -85701,7 +85701,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -85734,33 +85734,33 @@ }, { "type_name": "CEnvEntityIgniter", - "vtable_address": 31496088, + "vtable_address": 31496024, "methods": [ 13506768, - 20156896, - 20156912, + 20156768, + 20156784, 12023536, - 26419168, - 20161184, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20161056, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -85771,21 +85771,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155120, - 20399920, - 20156528, + 26427360, + 20154992, + 20399792, + 20156400, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -85809,83 +85809,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -85893,16 +85893,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -85923,7 +85923,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -85936,28 +85936,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -85968,7 +85968,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -85979,7 +85979,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -86012,32 +86012,32 @@ }, { "type_name": "CEnvEntityMaker", - "vtable_address": 31500024, + "vtable_address": 31499960, "methods": [ - 20387856, - 20176496, - 20176656, + 20387728, + 20176368, + 20176528, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20164096, - 26419632, - 26419200, - 26419200, - 20302496, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20163968, + 26419568, + 26419136, + 26419136, + 20302368, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -86049,21 +86049,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155152, - 20157632, - 20156560, + 26427360, + 20155024, + 20157504, + 20156432, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -86087,83 +86087,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -86171,16 +86171,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -86201,7 +86201,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -86214,28 +86214,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -86246,7 +86246,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -86257,7 +86257,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -86301,32 +86301,32 @@ }, { "type_name": "CEnvExplosion", - "vtable_address": 31527456, + "vtable_address": 31527392, "methods": [ 13522144, - 20404800, - 20404832, - 18377504, - 26419168, - 20406528, - 18010864, - 20430704, - 26419632, - 26419200, - 26419200, - 20434560, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20405408, + 20404672, + 20404704, + 18377376, + 26419104, + 20406400, + 18010736, + 20430576, + 26419568, + 26419136, + 26419136, + 20434432, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20405280, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10437760, 9635872, 9665808, @@ -86338,21 +86338,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400688, - 20406656, - 20404128, + 26427360, + 20400560, + 20406528, + 20404000, 9635312, 13440208, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -86376,83 +86376,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 18104832, - 19834496, + 18104704, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -86460,16 +86460,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -86490,7 +86490,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -86503,28 +86503,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -86535,7 +86535,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -86546,35 +86546,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, - 18004256, - 18261776, - 18057568, + 18045984, + 18004128, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -86629,32 +86629,32 @@ }, { "type_name": "CEnvFade", - "vtable_address": 31514736, + "vtable_address": 31514672, "methods": [ 13506768, - 20419792, - 20420128, + 20419664, + 20420000, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20403824, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20403696, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20404912, - 19933344, - 19877920, + 20404784, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -86666,21 +86666,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400112, - 20405504, - 20404016, + 26427360, + 20399984, + 20405376, + 20403888, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -86704,83 +86704,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -86788,16 +86788,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -86818,7 +86818,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -86831,28 +86831,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -86863,7 +86863,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -86874,7 +86874,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -86929,32 +86929,32 @@ }, { "type_name": "CEnvGlobal", - "vtable_address": 31597648, + "vtable_address": 31597584, "methods": [ 13506768, - 20939792, - 20940384, + 20939664, + 20940256, 12023536, - 26419168, - 20913088, - 20141632, - 20907472, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20912960, + 20141504, + 20907344, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20912016, - 19933344, - 19877920, + 20911888, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -86966,21 +86966,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903936, - 20910048, - 20906656, + 26427360, + 20903808, + 20909920, + 20906528, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -87004,83 +87004,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -87088,16 +87088,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -87118,7 +87118,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -87131,28 +87131,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -87163,7 +87163,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -87174,7 +87174,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -87229,32 +87229,32 @@ }, { "type_name": "CEnvHudHint", - "vtable_address": 30234280, + "vtable_address": 30234216, "methods": [ 11766592, 10428784, 10428960, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 10435856, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -87266,12 +87266,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10427040, 10436048, 10429168, @@ -87279,8 +87279,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -87304,83 +87304,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -87388,16 +87388,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -87418,7 +87418,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -87431,28 +87431,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -87463,7 +87463,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -87474,7 +87474,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -87518,32 +87518,32 @@ }, { "type_name": "CEnvInstructorHint", - "vtable_address": 31506584, + "vtable_address": 31506520, "methods": [ 11766592, - 20431600, - 20431664, + 20431472, + 20431536, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20403840, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20403712, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -87555,21 +87555,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20399968, - 20404352, - 20403952, + 26427360, + 20399840, + 20404224, + 20403824, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -87593,83 +87593,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -87677,16 +87677,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -87707,7 +87707,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -87720,28 +87720,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -87752,7 +87752,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -87763,7 +87763,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -87807,32 +87807,32 @@ }, { "type_name": "CEnvInstructorVRHint", - "vtable_address": 31508552, + "vtable_address": 31508488, "methods": [ 11766592, - 20433024, - 20433088, + 20432896, + 20432960, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20403808, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20403680, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -87844,21 +87844,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20399984, - 20404352, - 20403968, + 26427360, + 20399856, + 20404224, + 20403840, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -87882,83 +87882,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -87966,16 +87966,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -87996,7 +87996,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -88009,28 +88009,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -88041,7 +88041,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -88052,7 +88052,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -88096,32 +88096,32 @@ }, { "type_name": "CEnvLaser", - "vtable_address": 30631240, + "vtable_address": 30631176, "methods": [ 13522144, 13646848, 13646048, - 18377504, - 26419168, - 20459824, - 18010864, - 20548960, - 26419632, - 26419200, - 26419200, - 19981040, - 19983840, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 19983600, + 18377376, + 26419104, + 20459696, + 18010736, + 20548832, + 26419568, + 26419136, + 26419136, + 19980912, + 19983712, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 19983472, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12336384, 9635872, 9665808, @@ -88133,21 +88133,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20459584, + 26427360, + 20459456, 13626080, 13623344, 9635312, 12347600, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -88171,83 +88171,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 12336192, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19983184, - 19983408, - 19983200, + 19983056, + 19983280, + 19983072, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -88255,16 +88255,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -88285,7 +88285,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -88298,28 +88298,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -88330,8 +88330,8 @@ 9636736, 9636752, 9636768, - 21066880, - 20037424, + 21066752, + 20037296, 11742320, 11742400, 11742464, @@ -88341,35 +88341,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 12334288 ], "bases": [ @@ -88425,32 +88425,32 @@ }, { "type_name": "CEnvLightProbeVolume", - "vtable_address": 30346008, + "vtable_address": 30345944, "methods": [ 13506768, 12068208, 12074928, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12052400, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12074352, 12027248, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 12027600, 9635872, 9665808, @@ -88462,12 +88462,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024752, 12096352, 12025776, @@ -88475,8 +88475,8 @@ 12034656, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -88500,83 +88500,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027424, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -88584,16 +88584,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -88614,7 +88614,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -88627,28 +88627,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -88659,7 +88659,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -88670,7 +88670,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -88724,7 +88724,7 @@ }, { "type_name": "CEnvLightProbeVolume", - "vtable_address": 30347976, + "vtable_address": 30347912, "methods": [ 12075312, 12075120, @@ -88788,32 +88788,32 @@ }, { "type_name": "CEnvMuzzleFlash", - "vtable_address": 31489992, + "vtable_address": 31489928, "methods": [ 11766592, - 20157344, - 20157376, + 20157216, + 20157248, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20160320, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20160192, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -88825,21 +88825,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155056, - 20157632, - 20156480, + 26427360, + 20154928, + 20157504, + 20156352, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -88863,83 +88863,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -88947,16 +88947,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -88977,7 +88977,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -88990,28 +88990,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -89022,7 +89022,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -89033,7 +89033,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -89077,33 +89077,33 @@ }, { "type_name": "CEnvParticleGlow", - "vtable_address": 31382648, + "vtable_address": 31382584, "methods": [ - 19300896, - 19401248, - 19402640, - 18377504, - 26419168, - 19458864, - 18010864, - 19458928, - 26419632, - 26419200, - 26419200, - 19460496, - 19460768, - 18011056, - 19835392, - 19835328, + 19300768, + 19401120, + 19402512, + 18377376, + 26419104, + 19458736, + 18010736, + 19458800, + 26419568, + 26419136, + 26419136, + 19460368, + 19460640, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19298384, + 18378400, + 19829024, + 19298256, 9635872, 9665808, 9641296, @@ -89114,21 +89114,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19294384, - 19460784, - 19297856, + 26427360, + 19294256, + 19460656, + 19297728, 9635312, - 19322960, - 18308160, + 19322832, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -89152,83 +89152,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19298368, - 19840912, - 19308112, + 19298240, + 19840784, + 19307984, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -89236,16 +89236,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -89266,7 +89266,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -89279,28 +89279,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -89311,7 +89311,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -89322,35 +89322,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -89405,32 +89405,32 @@ }, { "type_name": "CEnvShake", - "vtable_address": 31518728, + "vtable_address": 31518664, "methods": [ 11766592, + 20403424, 20403552, - 20403680, 12023536, - 26419168, - 20405968, - 20141632, - 20410240, - 26419632, - 26419200, - 26419200, - 20139104, - 20405904, - 20141328, - 19835392, - 19835328, + 26419104, + 20405840, + 20141504, + 20410112, + 26419568, + 26419136, + 26419136, + 20138976, + 20405776, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20405056, - 19933344, - 19877920, + 20404928, + 19933216, + 19877792, 11747408, - 20405648, - 19829152, + 20405520, + 19829024, 9640064, 9635872, 9665808, @@ -89442,21 +89442,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400352, - 20404352, - 20404064, + 26427360, + 20400224, + 20404224, + 20403936, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -89480,83 +89480,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -89564,16 +89564,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20405984, - 21311696, + 20405856, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -89594,7 +89594,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -89607,28 +89607,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -89639,7 +89639,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -89650,7 +89650,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -89694,33 +89694,33 @@ }, { "type_name": "CEnvSky", - "vtable_address": 30350032, + "vtable_address": 30349968, "methods": [ 13522144, 12032032, 12032208, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 12059856, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12027296, 12027312, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -89731,21 +89731,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024800, 12096368, 12025808, 9635312, 12034848, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -89769,83 +89769,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027328, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12024816, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -89853,16 +89853,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -89883,7 +89883,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -89896,28 +89896,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -89928,7 +89928,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -89939,35 +89939,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -90011,33 +90011,33 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 30749096, + "vtable_address": 30749032, "methods": [ 13506768, 13010656, 13010768, 12023536, - 26419168, + 26419104, 13380576, - 20141632, + 20141504, 13308688, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 13380672, 13381744, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 13381840, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -90048,12 +90048,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13010256, 13914208, 13866064, @@ -90061,8 +90061,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -90086,83 +90086,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -90170,16 +90170,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -90200,7 +90200,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -90213,28 +90213,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -90245,7 +90245,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -90256,7 +90256,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -90289,7 +90289,7 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 32388064, + "vtable_address": 32388000, "methods": [], "bases": [], "model": { @@ -90300,7 +90300,7 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 32467040, + "vtable_address": 32466976, "methods": [], "bases": [], "model": { @@ -90311,33 +90311,33 @@ }, { "type_name": "CEnvSoundscapeAlias_snd_soundscape", - "vtable_address": 30535136, + "vtable_address": 30535072, "methods": [ 13506768, 12915680, 12916112, 12023536, - 26419168, + 26419104, 13380576, - 20141632, + 20141504, 13308688, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 13380672, 13381744, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 13381840, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -90348,12 +90348,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12856240, 12871280, 12865616, @@ -90361,8 +90361,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -90386,83 +90386,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -90470,16 +90470,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -90500,7 +90500,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -90513,28 +90513,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -90545,7 +90545,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -90556,7 +90556,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -90600,33 +90600,33 @@ }, { "type_name": "CEnvSoundscapeProxy", - "vtable_address": 30751064, + "vtable_address": 30751000, "methods": [ 13506768, 13867488, 13867504, 12023536, - 26419168, + 26419104, 13380656, - 20141632, + 20141504, 13308688, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 13380976, 13381744, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 13381840, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -90637,12 +90637,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13009152, 13914208, 13866048, @@ -90650,8 +90650,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -90675,83 +90675,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -90759,16 +90759,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -90789,7 +90789,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -90802,28 +90802,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -90834,7 +90834,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -90845,7 +90845,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -90889,7 +90889,7 @@ }, { "type_name": "CEnvSoundscapeProxy", - "vtable_address": 32388256, + "vtable_address": 32388192, "methods": [], "bases": [], "model": { @@ -90900,33 +90900,33 @@ }, { "type_name": "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", - "vtable_address": 30533168, + "vtable_address": 30533104, "methods": [ 13506768, 12915568, 12916000, 12023536, - 26419168, + 26419104, 13380656, - 20141632, + 20141504, 13308688, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 13380976, 13381744, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 13381840, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -90937,12 +90937,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12856224, 12871264, 12865600, @@ -90950,8 +90950,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -90975,83 +90975,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -91059,16 +91059,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -91089,7 +91089,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -91102,28 +91102,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -91134,7 +91134,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -91145,7 +91145,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -91200,33 +91200,33 @@ }, { "type_name": "CEnvSoundscapeTriggerable", - "vtable_address": 30753032, + "vtable_address": 30752968, "methods": [ 13506768, 13867424, 13867440, 12023536, - 26419168, + 26419104, 13380576, - 20141632, + 20141504, 13308688, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 13380672, 13381744, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 13381840, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -91237,12 +91237,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13013088, 13914208, 13866032, @@ -91250,8 +91250,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -91275,83 +91275,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -91359,16 +91359,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, 12855296, - 21311696, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -91389,7 +91389,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -91402,28 +91402,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -91434,7 +91434,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -91445,7 +91445,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -91489,7 +91489,7 @@ }, { "type_name": "CEnvSoundscapeTriggerable", - "vtable_address": 32387872, + "vtable_address": 32387808, "methods": [], "bases": [], "model": { @@ -91500,33 +91500,33 @@ }, { "type_name": "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", - "vtable_address": 30537104, + "vtable_address": 30537040, "methods": [ 13506768, 12915792, 12916224, 12023536, - 26419168, + 26419104, 13380576, - 20141632, + 20141504, 13308688, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 13380672, 13381744, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 13381840, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -91537,12 +91537,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12856256, 12871296, 12865632, @@ -91550,8 +91550,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -91575,83 +91575,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -91659,16 +91659,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, 12855296, - 21311696, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -91689,7 +91689,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -91702,28 +91702,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -91734,7 +91734,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -91745,7 +91745,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -91800,32 +91800,32 @@ }, { "type_name": "CEnvSpark", - "vtable_address": 31522664, + "vtable_address": 31522600, "methods": [ 11766592, - 20420016, - 20420384, + 20419888, + 20420256, 12023536, - 26419168, - 20405568, - 20141632, - 20404480, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20405440, + 20141504, + 20404352, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -91837,21 +91837,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400384, - 20404352, - 20404096, + 26427360, + 20400256, + 20404224, + 20403968, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -91875,83 +91875,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -91959,16 +91959,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -91989,7 +91989,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -92002,28 +92002,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -92034,7 +92034,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -92045,7 +92045,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -92089,32 +92089,32 @@ }, { "type_name": "CEnvSplash", - "vtable_address": 31491960, + "vtable_address": 31491896, "methods": [ 11766592, - 20157440, - 20157472, + 20157312, + 20157344, 12023536, - 26419168, - 20159728, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20159600, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -92126,21 +92126,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155072, - 20157632, - 20156496, + 26427360, + 20154944, + 20157504, + 20156368, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -92164,83 +92164,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -92248,16 +92248,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -92278,7 +92278,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -92291,28 +92291,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -92323,7 +92323,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -92334,7 +92334,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -92378,32 +92378,32 @@ }, { "type_name": "CEnvTilt", - "vtable_address": 31520696, + "vtable_address": 31520632, "methods": [ 11766592, - 20403584, - 20403744, + 20403456, + 20403616, 12023536, - 26419168, - 20405968, - 20141632, - 20413680, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20405840, + 20141504, + 20413552, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20405264, - 19933344, - 19877920, + 20405136, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -92415,21 +92415,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400368, - 20404352, - 20404080, + 26427360, + 20400240, + 20404224, + 20403952, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -92453,83 +92453,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -92537,16 +92537,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -92567,7 +92567,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -92580,28 +92580,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -92612,7 +92612,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -92623,7 +92623,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -92667,32 +92667,32 @@ }, { "type_name": "CEnvViewPunch", - "vtable_address": 31493928, + "vtable_address": 31493864, "methods": [ 11766592, - 20157536, - 20157568, + 20157408, + 20157440, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20158576, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20158448, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -92704,21 +92704,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155088, - 20157632, - 20156512, + 26427360, + 20154960, + 20157504, + 20156384, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -92742,83 +92742,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -92826,16 +92826,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -92856,7 +92856,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -92869,28 +92869,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -92901,7 +92901,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -92912,7 +92912,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -92956,33 +92956,33 @@ }, { "type_name": "CEnvVolumetricFogController", - "vtable_address": 30358416, + "vtable_address": 30358352, "methods": [ 13506768, 12067584, 12067648, 12023536, - 26419168, + 26419104, 12027472, - 20141632, + 20141504, 12062848, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12027216, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12027232, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -92993,12 +92993,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024880, 12096352, 12025872, @@ -93006,8 +93006,8 @@ 12035040, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -93031,83 +93031,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027376, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -93115,16 +93115,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -93145,7 +93145,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -93158,28 +93158,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -93190,7 +93190,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -93201,7 +93201,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -93234,33 +93234,33 @@ }, { "type_name": "CEnvVolumetricFogVolume", - "vtable_address": 30360384, + "vtable_address": 30360320, "methods": [ 13506768, 12025680, 12025696, 12023536, - 26419168, + 26419104, 12027472, - 20141632, + 20141504, 12060128, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12027216, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12027232, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -93271,12 +93271,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024896, 12096352, 12025888, @@ -93284,8 +93284,8 @@ 12035136, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -93309,83 +93309,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027344, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -93393,16 +93393,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -93423,7 +93423,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -93436,28 +93436,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -93468,7 +93468,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -93479,7 +93479,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -93512,33 +93512,33 @@ }, { "type_name": "CEnvWind", - "vtable_address": 31486056, + "vtable_address": 31485992, "methods": [ 13506768, - 20161040, - 20161104, + 20160912, + 20160976, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20189024, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20188896, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -93549,21 +93549,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155024, - 20399920, - 20156448, + 26427360, + 20154896, + 20399792, + 20156320, 9635312, - 20198208, + 20198080, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -93587,83 +93587,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20158560, - 19840912, - 19834496, + 20158432, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -93671,16 +93671,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -93701,7 +93701,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -93714,28 +93714,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -93746,7 +93746,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -93757,7 +93757,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -93790,12 +93790,12 @@ }, { "type_name": "CEnvWind::NetworkVar_m_EnvWindShared", - "vtable_address": 31473168, + "vtable_address": 31473104, "methods": [ 12027504, - 20305792, + 20305664, 12024912, - 20154992 + 20154864 ], "bases": [ { @@ -93817,33 +93817,33 @@ }, { "type_name": "CEnvWindController", - "vtable_address": 30363056, + "vtable_address": 30362992, "methods": [ 13506768, 12080992, 12081184, 12023536, - 26419168, + 26419104, 12027472, - 20141632, + 20141504, 12055984, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12027216, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12027232, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -93854,12 +93854,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024976, 12096352, 12025904, @@ -93867,8 +93867,8 @@ 12035232, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -93892,83 +93892,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027360, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -93976,16 +93976,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -94006,7 +94006,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -94019,28 +94019,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -94051,7 +94051,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -94062,7 +94062,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -94095,7 +94095,7 @@ }, { "type_name": "CEnvWindController::NetworkVar_m_EnvWindShared", - "vtable_address": 30362352, + "vtable_address": 30362288, "methods": [ 12027504, 12046400, @@ -94122,7 +94122,7 @@ }, { "type_name": "CEnvWindControllerSystem", - "vtable_address": 30362496, + "vtable_address": 30362432, "methods": [ 9634368, 9634384, @@ -94240,7 +94240,7 @@ }, { "type_name": "CEnvWindControllerSystem", - "vtable_address": 30363016, + "vtable_address": 30362952, "methods": [ 12027936, 12030096, @@ -94298,23 +94298,23 @@ }, { "type_name": "CEnvWindShared", - "vtable_address": 30472040, + "vtable_address": 30471976, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32354576 + "offset_to_top": 32354512 } } }, { "type_name": "CEnvWindShared", - "vtable_address": 31512488, + "vtable_address": 31512424, "methods": [ 12027504, - 20400032, + 20399904, 12024912, - 20400048 + 20399920 ], "bases": [], "model": { @@ -94325,33 +94325,33 @@ }, { "type_name": "CEnvWindVolume", - "vtable_address": 30372080, + "vtable_address": 30372016, "methods": [ 13506768, 12098704, 12098720, 12023536, - 26419168, + 26419104, 12098128, - 20141632, + 20141504, 12172656, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12098112, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12098592, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -94362,12 +94362,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096448, 12202528, 12099472, @@ -94375,8 +94375,8 @@ 12120208, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -94400,83 +94400,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12098544, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -94484,16 +94484,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -94514,7 +94514,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -94527,28 +94527,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -94559,7 +94559,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -94570,7 +94570,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -94603,21 +94603,21 @@ }, { "type_name": "CEventLog", - "vtable_address": 31524632, + "vtable_address": 31524568, "methods": [ - 20409776, - 20420512, - 20409584, - 20400400, - 20410976, - 20412320, - 20400448, - 20410192, - 20411968, - 20400432, - 20439648, - 20400432, - 20400432 + 20409648, + 20420384, + 20409456, + 20400272, + 20410848, + 20412192, + 20400320, + 20410064, + 20411840, + 20400304, + 20439520, + 20400304, + 20400304 ], "bases": [ { @@ -94660,12 +94660,12 @@ }, { "type_name": "CEventLog", - "vtable_address": 31524752, + "vtable_address": 31524688, "methods": [ 9634368, 9634384, 9634400, - 20400656, + 20400528, 9634432, 9634448, 9634464, @@ -94718,12 +94718,12 @@ 9635216, 9635232, 9635248, - 20412384, + 20412256, 9635280, - 20411024, - 20420624, - 20420720, - 20400416 + 20410896, + 20420496, + 20420592, + 20400288 ], "bases": [ { @@ -94766,16 +94766,16 @@ }, { "type_name": "CEventQueue_SaveRestoreBlockHandler", - "vtable_address": 31357144, + "vtable_address": 31357080, "methods": [ - 18387744, + 18387616, 12427888, - 18452672, - 18440208, + 18452544, + 18440080, 12427904, 12427920, - 18440272, - 18451520, + 18440144, + 18451392, 12427936 ], "bases": [ @@ -94809,14 +94809,14 @@ }, { "type_name": "CEventsSaveDataOps", - "vtable_address": 32018728, + "vtable_address": 32018664, "methods": [ - 26621520, - 26617504, - 26612288, - 26612256, - 26613088, - 26612272 + 26621456, + 26617440, + 26612224, + 26612192, + 26613024, + 26612208 ], "bases": [ { @@ -94838,7 +94838,7 @@ }, { "type_name": "CFieldPathHuffmanEncoder::INode", - "vtable_address": 32059728, + "vtable_address": 32059664, "methods": [], "bases": [], "model": { @@ -94849,11 +94849,11 @@ }, { "type_name": "CFieldPathHuffmanEncoder::InternalNode", - "vtable_address": 32059744, + "vtable_address": 32059680, "methods": [ - 27969392, - 27969552, - 27969472 + 27969328, + 27969488, + 27969408 ], "bases": [ { @@ -94875,11 +94875,11 @@ }, { "type_name": "CFieldPathHuffmanEncoder::LeafNode", - "vtable_address": 32059784, + "vtable_address": 32059720, "methods": [ - 27969504, - 27969520, - 27969488 + 27969440, + 27969456, + 27969424 ], "bases": [ { @@ -94901,32 +94901,32 @@ }, { "type_name": "CFilterAttributeInt", - "vtable_address": 31343392, + "vtable_address": 31343328, "methods": [ 13506768, - 18429392, - 18433856, + 18429264, + 18433728, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -94938,21 +94938,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387344, - 18400000, - 18396592, + 26427360, + 18387216, + 18399872, + 18396464, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -94976,83 +94976,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -95060,16 +95060,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -95090,7 +95090,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -95103,28 +95103,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -95135,7 +95135,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -95146,9 +95146,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18449856, - 18422960 + 19857552, + 18449728, + 18422832 ], "bases": [ { @@ -95214,32 +95214,32 @@ }, { "type_name": "CFilterClass", - "vtable_address": 31353312, + "vtable_address": 31353248, "methods": [ 13506768, - 18429552, - 18434032, + 18429424, + 18433904, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -95251,21 +95251,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387120, - 18400000, - 18396608, + 26427360, + 18386992, + 18399872, + 18396480, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -95289,83 +95289,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -95373,16 +95373,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -95403,7 +95403,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -95416,28 +95416,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -95448,7 +95448,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -95459,9 +95459,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18399488, - 18422960 + 19857552, + 18399360, + 18422832 ], "bases": [ { @@ -95527,32 +95527,32 @@ }, { "type_name": "CFilterContext", - "vtable_address": 31331488, + "vtable_address": 31331424, "methods": [ 13506768, - 18428432, - 18432800, + 18428304, + 18432672, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -95564,21 +95564,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387104, - 18400000, - 18396496, + 26427360, + 18386976, + 18399872, + 18396368, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -95602,83 +95602,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -95686,16 +95686,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -95716,7 +95716,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -95729,28 +95729,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -95761,7 +95761,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -95772,9 +95772,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18399552, - 18422960 + 19857552, + 18399424, + 18422832 ], "bases": [ { @@ -95840,32 +95840,32 @@ }, { "type_name": "CFilterEnemy", - "vtable_address": 31341408, + "vtable_address": 31341344, "methods": [ 13506768, - 18429232, - 18433680, + 18429104, + 18433552, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -95877,21 +95877,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387296, - 18400000, - 18396576, + 26427360, + 18387168, + 18399872, + 18396448, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -95915,83 +95915,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -95999,16 +95999,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -96029,7 +96029,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -96042,28 +96042,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -96074,7 +96074,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -96085,9 +96085,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18514560, - 18384144 + 19857552, + 18514432, + 18384016 ], "bases": [ { @@ -96153,32 +96153,32 @@ }, { "type_name": "CFilterLOS", - "vtable_address": 31351328, + "vtable_address": 31351264, "methods": [ 13506768, - 18429712, - 18434208, + 18429584, + 18434080, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -96190,21 +96190,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387328, - 18400000, - 18396624, + 26427360, + 18387200, + 18399872, + 18396496, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -96228,83 +96228,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -96312,16 +96312,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -96342,7 +96342,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -96355,28 +96355,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -96387,7 +96387,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -96398,9 +96398,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18436384, - 18422960 + 19857552, + 18436256, + 18422832 ], "bases": [ { @@ -96466,32 +96466,32 @@ }, { "type_name": "CFilterMassGreater", - "vtable_address": 31335456, + "vtable_address": 31335392, "methods": [ 13506768, - 18428752, - 18433152, + 18428624, + 18433024, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -96503,21 +96503,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387184, - 18400000, - 18396528, + 26427360, + 18387056, + 18399872, + 18396400, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -96541,83 +96541,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -96625,16 +96625,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -96655,7 +96655,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -96668,28 +96668,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -96700,7 +96700,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -96711,9 +96711,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18401232, - 18422960 + 19857552, + 18401104, + 18422832 ], "bases": [ { @@ -96779,32 +96779,32 @@ }, { "type_name": "CFilterModel", - "vtable_address": 31329504, + "vtable_address": 31329440, "methods": [ 13506768, - 18428272, - 18432624, + 18428144, + 18432496, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -96816,21 +96816,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387088, - 18400000, - 18396480, + 26427360, + 18386960, + 18399872, + 18396352, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -96854,83 +96854,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -96938,16 +96938,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -96968,7 +96968,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -96981,28 +96981,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -97013,7 +97013,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -97024,9 +97024,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18399280, - 18422960 + 19857552, + 18399152, + 18422832 ], "bases": [ { @@ -97092,32 +97092,32 @@ }, { "type_name": "CFilterMultiple", - "vtable_address": 31347360, + "vtable_address": 31347296, "methods": [ 13506768, - 18430032, - 18434560, + 18429904, + 18434432, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 18422624, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 18422496, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -97129,21 +97129,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387056, - 18400000, - 18396656, + 26427360, + 18386928, + 18399872, + 18396528, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -97167,83 +97167,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -97251,16 +97251,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -97281,7 +97281,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -97294,28 +97294,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -97326,7 +97326,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -97337,9 +97337,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18421680, - 18422032 + 19857552, + 18421552, + 18421904 ], "bases": [ { @@ -97405,32 +97405,32 @@ }, { "type_name": "CFilterName", - "vtable_address": 31327520, + "vtable_address": 31327456, "methods": [ 13506768, - 18428112, - 18432448, + 18427984, + 18432320, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -97442,21 +97442,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387072, - 18400000, - 18396464, + 26427360, + 18386944, + 18399872, + 18396336, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -97480,83 +97480,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -97564,16 +97564,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -97594,7 +97594,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -97607,28 +97607,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -97639,7 +97639,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -97650,9 +97650,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18401312, - 18422960 + 19857552, + 18401184, + 18422832 ], "bases": [ { @@ -97718,32 +97718,32 @@ }, { "type_name": "CFilterProximity", - "vtable_address": 31349344, + "vtable_address": 31349280, "methods": [ 13506768, - 18429872, - 18434384, + 18429744, + 18434256, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -97755,21 +97755,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387312, - 18400000, - 18396640, + 26427360, + 18387184, + 18399872, + 18396512, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -97793,83 +97793,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -97877,16 +97877,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -97907,7 +97907,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -97920,28 +97920,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -97952,7 +97952,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -97963,9 +97963,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18398000, - 18422960 + 19857552, + 18397872, + 18422832 ], "bases": [ { @@ -98031,32 +98031,32 @@ }, { "type_name": "CFilterTeam", - "vtable_address": 31333472, + "vtable_address": 31333408, "methods": [ 13506768, - 18428592, - 18432976, + 18428464, + 18432848, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -98068,21 +98068,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387168, - 18400000, - 18396512, + 26427360, + 18387040, + 18399872, + 18396384, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -98106,83 +98106,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -98190,16 +98190,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -98220,7 +98220,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -98233,28 +98233,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -98265,7 +98265,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -98276,9 +98276,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18387136, - 18422960 + 19857552, + 18387008, + 18422832 ], "bases": [ { @@ -98344,7 +98344,7 @@ }, { "type_name": "CFireBulletTakeDamageListener", - "vtable_address": 30240928, + "vtable_address": 30240864, "methods": [ 10581888, 10427648 @@ -98369,33 +98369,33 @@ }, { "type_name": "CFireCrackerBlast", - "vtable_address": 30285632, + "vtable_address": 30285568, "methods": [ 13522144, 11474208, 11474224, - 18377504, - 26419168, + 18377376, + 26419104, 11515344, - 18010864, + 18010736, 11517120, - 26419632, - 26419200, - 26419200, - 18377792, + 26419568, + 26419136, + 26419136, + 18377664, 11515040, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -98406,21 +98406,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11402480, 11518304, 11403712, 9635312, 11415824, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -98444,83 +98444,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11402400, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -98528,16 +98528,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -98558,7 +98558,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -98571,28 +98571,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -98603,7 +98603,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -98614,35 +98614,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11402416, 11412032, 11402512, @@ -98706,33 +98706,33 @@ }, { "type_name": "CFish", - "vtable_address": 30635408, + "vtable_address": 30635344, "methods": [ 13526704, - 20470512, - 20470608, - 18377552, - 18065872, - 18010880, - 18010864, - 20614832, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 20470384, + 20470480, + 18377424, + 18065744, + 18010752, + 18010736, + 20614704, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -98743,21 +98743,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20470032, + 26427360, + 20469904, 13701120, 13623376, 9635312, 13649360, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -98769,113 +98769,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 20470720, + 18014720, + 18211344, + 19854832, + 20470592, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, - 20537728, + 20537600, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -98895,7 +98895,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -98906,30 +98906,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -98940,7 +98940,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -98951,72 +98951,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -99071,33 +99071,33 @@ }, { "type_name": "CFishPool", - "vtable_address": 30637896, + "vtable_address": 30637832, "methods": [ 13506768, 13635472, 13637264, 12023536, - 26419168, - 20473792, - 20141632, - 20559840, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20473664, + 20141504, + 20559712, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -99108,21 +99108,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20473376, + 26427360, + 20473248, 13700768, 13623392, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -99146,83 +99146,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -99230,16 +99230,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -99260,7 +99260,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -99273,28 +99273,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -99305,7 +99305,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -99316,8 +99316,8 @@ 11742448, 9636784, 9636800, - 19857680, - 20473840 + 19857552, + 20473712 ], "bases": [ { @@ -99371,11 +99371,11 @@ }, { "type_name": "CFishPool", - "vtable_address": 30639872, + "vtable_address": 30639808, "methods": [ 13635632, 13637440, - 20477712 + 20477584 ], "bases": [ { @@ -99429,10 +99429,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 31298760, + "vtable_address": 31298696, "methods": [ - 17794176, - 17794160 + 17794048, + 17794032 ], "bases": [], "model": { @@ -99443,7 +99443,7 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 30508912, + "vtable_address": 30508848, "methods": [ 12436480, 12436496 @@ -99457,10 +99457,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 31298792, + "vtable_address": 31298728, "methods": [ - 17794144, - 17794128 + 17794016, + 17794000 ], "bases": [], "model": { @@ -99471,10 +99471,10 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 31083872, + "vtable_address": 31083808, "methods": [ - 16916144, - 16916128 + 16916016, + 16916000 ], "bases": [], "model": { @@ -99485,10 +99485,10 @@ }, { "type_name": "CFixedSizeCircularBuffer, 16, int>", - "vtable_address": 31071048, + "vtable_address": 31070984, "methods": [ - 16730096, - 16730080 + 16729968, + 16729952 ], "bases": [], "model": { @@ -99499,33 +99499,33 @@ }, { "type_name": "CFlashbang", - "vtable_address": 31243048, + "vtable_address": 31242984, "methods": [ 13528544, - 17173808, - 17173872, - 18377552, - 18065872, - 16732784, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17173680, + 17173744, + 18377424, + 18065744, + 16732656, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -99536,21 +99536,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172576, - 17176416, - 17174656, + 26427360, + 17172448, + 17176288, + 17174528, 9635312, - 17191360, - 18308160, + 17191232, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -99561,114 +99561,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -99682,47 +99682,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -99730,11 +99730,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -99744,227 +99744,227 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 16732672, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, - 16727344, + 16924176, + 16909216, + 16914016, + 16728448, + 16728464, + 18061024, + 16729216, + 16729120, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16728768, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 16732800, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 16909344, - 16914144, - 16728576, - 16728592, - 18061152, - 16729344, - 16729248, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16728896, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, - 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, 16924400, - 16942560, - 16727600, - 16727616, + 16914384, + 16924272, + 16942432, + 16727472, + 16727488, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 16741824, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, - 16728336, - 16914336, - 16914384, - 16732848, - 16728352, - 15970784, - 16914464, + 16797856, + 16740096, + 16810240, + 16810336, + 16912080, + 17035856, + 16797072, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 16741952, - 17042912, - 10057136, 16728432, - 16728448, - 16797984, - 16740224, - 16810368, - 16810464, - 16912208, - 17035984, - 16797200, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 16910976, - 16733696, - 17091632, - 16732880, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 16911872, + 16910848, + 16733568, + 17091504, + 16732752, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 16911744, 10057152, - 16728960, - 16728624, - 16810304, - 16728912, - 16793088, - 17172560, - 17172544, - 17183712 + 16728832, + 16728496, + 16810176, + 16728784, + 16792960, + 17172432, + 17172416, + 17183584 ], "bases": [ { @@ -100094,14 +100094,14 @@ }, { "type_name": "CFlashbang", - "vtable_address": 31246776, + "vtable_address": 31246712, "methods": [ - 17174672, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174544, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -100231,10 +100231,10 @@ }, { "type_name": "CFlashbang", - "vtable_address": 31246840, + "vtable_address": 31246776, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -100364,33 +100364,33 @@ }, { "type_name": "CFlashbangProjectile", - "vtable_address": 30318648, + "vtable_address": 30318584, "methods": [ 13528544, 11712848, 11712880, - 16730592, - 18065872, - 16452512, - 18010864, + 16730464, + 18065744, + 16452384, + 18010736, 11724432, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -100401,21 +100401,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11712128, 11713360, 11713040, 9635312, 11717168, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -100427,95 +100427,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16730736, - 16730768, - 19834496, + 16730608, + 16730640, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 15971776, - 19833184, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -100523,17 +100523,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 16816528, - 19828912, - 18013520, + 16816400, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -100553,7 +100553,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -100564,30 +100564,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, - 16798448, - 19828816, - 19835280, + 16798320, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -100598,7 +100598,7 @@ 9636736, 9636752, 9636768, - 16820608, + 16820480, 11742352, 11742320, 11742400, @@ -100609,88 +100609,88 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, 11712016, - 16907168, + 16907040, 16039408, 11736128, 11712032, @@ -100701,9 +100701,9 @@ 11712048, 11723632, 16012384, - 16733456, + 16733328, 11712064, - 16823008, + 16822880, 11712112 ], "bases": [ @@ -100813,7 +100813,7 @@ }, { "type_name": "CFlashbangProjectile", - "vtable_address": 30321376, + "vtable_address": 30321312, "methods": [ 9837440, 9837456 @@ -100925,13 +100925,13 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 31389144, + "vtable_address": 31389080, "methods": [ 9634368, 9634384, 9634400, - 19298944, - 19298976, + 19298816, + 19298848, 9634448, 9634464, 9634480, @@ -100983,14 +100983,14 @@ 9635216, 9635232, 9635248, - 19296384, + 19296256, 9635280, - 19296368, - 19307104, - 19306640, - 19296352, - 19412128, - 19309168 + 19296240, + 19306976, + 19306512, + 19296224, + 19412000, + 19309040 ], "bases": [ { @@ -101033,11 +101033,11 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 31389672, + "vtable_address": 31389608, "methods": [ 9890768, - 19307616, - 19307968, + 19307488, + 19307840, 9890816 ], "bases": [ @@ -101081,7 +101081,7 @@ }, { "type_name": "CFlattenedSerializerSpewFunc_Log", - "vtable_address": 30108056, + "vtable_address": 30107992, "methods": [ 9448288, 9448304, @@ -101108,16 +101108,16 @@ }, { "type_name": "CFlexAnimationTrack", - "vtable_address": 31993904, + "vtable_address": 31993840, "methods": [ - 25576064, - 25576096, - 25576656, - 25576464, + 25576000, + 25576032, + 25576592, 25576400, - 25576144, - 25576784, - 25576976 + 25576336, + 25576080, + 25576720, + 25576912 ], "bases": [ { @@ -101139,11 +101139,11 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 31767272, + "vtable_address": 31767208, "methods": [ - 21927280, + 21927152, 9634384, - 22116320, + 22116192, 9634416, 9634432, 9634448, @@ -101197,14 +101197,14 @@ 9635216, 9635232, 9635248, - 21927248, + 21927120, 9635280, - 21927232, - 22115744, - 22116032, - 21927216, - 21933920, - 22260144 + 21927104, + 22115616, + 22115904, + 21927088, + 21933792, + 22260016 ], "bases": [ { @@ -101247,9 +101247,9 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 31767800, + "vtable_address": 31767736, "methods": [ - 22261216 + 22261088 ], "bases": [ { @@ -101292,33 +101292,33 @@ }, { "type_name": "CFogController", - "vtable_address": 30376960, + "vtable_address": 30376896, "methods": [ 13506768, 12098768, 12098784, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12177504, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12180720, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12101872, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -101329,12 +101329,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096512, 12202528, 12099504, @@ -101342,8 +101342,8 @@ 12119248, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -101367,83 +101367,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12098544, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -101451,16 +101451,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -101481,7 +101481,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -101494,28 +101494,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -101526,7 +101526,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -101537,7 +101537,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -101570,7 +101570,7 @@ }, { "type_name": "CFogController::NetworkVar_m_fog", - "vtable_address": 30374048, + "vtable_address": 30373984, "methods": [ 12101744, 12145664, @@ -101597,7 +101597,7 @@ }, { "type_name": "CFogSystem", - "vtable_address": 30374192, + "vtable_address": 30374128, "methods": [ 9634368, 9634384, @@ -101693,32 +101693,32 @@ }, { "type_name": "CFogTrigger", - "vtable_address": 30374704, + "vtable_address": 30374640, "methods": [ 11931776, 12113344, 12113808, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 12161776, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -101730,21 +101730,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096528, 12102720, 12099488, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -101768,83 +101768,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -101852,16 +101852,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -101882,7 +101882,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -101895,28 +101895,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -101927,7 +101927,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -101938,35 +101938,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 12102240, @@ -102040,32 +102040,32 @@ }, { "type_name": "CFogVolume", - "vtable_address": 30797040, + "vtable_address": 30796976, "methods": [ 13522144, 14008272, 14009152, - 18377504, - 26419168, + 18377376, + 26419104, 14007808, - 18010864, + 18010736, 14007744, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 14009248, - 18378912, - 18011056, - 19835392, - 19835328, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10056704, 9635872, 9665808, @@ -102077,21 +102077,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 14007328, 14007872, 14007856, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -102115,83 +102115,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -102199,16 +102199,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -102229,7 +102229,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -102242,28 +102242,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -102274,7 +102274,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -102285,35 +102285,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 14007392, 14007344, 14007504, @@ -102376,11 +102376,11 @@ }, { "type_name": "CFootTrajectory", - "vtable_address": 31981056, + "vtable_address": 31980992, "methods": [ - 25113296, - 25113264, - 25113280 + 25113232, + 25113200, + 25113216 ], "bases": [ { @@ -102402,32 +102402,32 @@ }, { "type_name": "CFootstepControl", - "vtable_address": 31287888, + "vtable_address": 31287824, "methods": [ 11931776, - 17559088, - 17559552, - 18377504, - 26419168, - 20153552, - 18010864, - 17551424, - 26419632, - 26419200, - 26419200, - 17551472, - 17551488, - 18011056, - 19835392, - 19835328, + 17558960, + 17559424, + 18377376, + 26419104, + 20153424, + 18010736, + 17551296, + 26419568, + 26419136, + 26419136, + 17551344, + 17551360, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -102439,21 +102439,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17550608, - 17552784, - 17552240, + 26427360, + 17550480, + 17552656, + 17552112, 9635312, - 17561648, - 18308160, + 17561520, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -102477,83 +102477,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 17551392, - 19840912, - 19834496, + 17551264, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -102561,16 +102561,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -102591,7 +102591,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -102604,28 +102604,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -102636,7 +102636,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -102647,35 +102647,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -102749,7 +102749,7 @@ }, { "type_name": "CFunFact_GenericEvalFunction", - "vtable_address": 30240696, + "vtable_address": 30240632, "methods": [ 10428448, 10428944, @@ -102775,7 +102775,7 @@ }, { "type_name": "CFunFact_PlayerEvalFunction", - "vtable_address": 30240736, + "vtable_address": 30240672, "methods": [ 10428432, 10428928, @@ -102801,7 +102801,7 @@ }, { "type_name": "CFunFact_StatBest", - "vtable_address": 30240776, + "vtable_address": 30240712, "methods": [ 10428416, 10428912, @@ -102827,7 +102827,7 @@ }, { "type_name": "CFunFact_StatSum", - "vtable_address": 30240816, + "vtable_address": 30240752, "methods": [ 10428400, 10428896, @@ -102853,32 +102853,32 @@ }, { "type_name": "CFuncBrush", - "vtable_address": 30704304, + "vtable_address": 30704240, "methods": [ 13522144, 13795408, 13795424, - 18377504, - 26419168, - 21157424, - 18010864, - 21246992, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 21068832, + 18377376, + 26419104, + 21157296, + 18010736, + 21246864, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 21068704, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 13799632, 9635872, 9665808, @@ -102890,21 +102890,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21156736, + 26427360, + 21156608, 13865440, 13794848, 9635312, 13825376, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -102928,83 +102928,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21156992, - 18042720, + 21156864, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -103012,16 +103012,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -103042,7 +103042,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -103055,28 +103055,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -103087,7 +103087,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -103098,38 +103098,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 21157024, 21157152, - 21157280, - 21065616 + 21065488 ], "bases": [ { @@ -103173,33 +103173,33 @@ }, { "type_name": "CFuncConveyor", - "vtable_address": 30238504, + "vtable_address": 30238440, "methods": [ 13522144, 10450416, 10450512, - 18377504, - 26419168, + 18377376, + 26419104, 10436080, - 18010864, + 18010736, 10511568, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 10569328, - 18378912, - 18011056, - 19835392, - 19835328, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -103210,21 +103210,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10427184, 10628800, 10429200, 9635312, 10467088, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -103248,83 +103248,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 10436128, - 18042720, + 18042592, 11747344, 10455312, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -103332,16 +103332,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -103362,7 +103362,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -103375,28 +103375,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 10453632, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -103407,7 +103407,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -103418,35 +103418,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -103490,32 +103490,32 @@ }, { "type_name": "CFuncElectrifiedVolume", - "vtable_address": 31640392, + "vtable_address": 31640328, "methods": [ 13522144, - 21092288, - 21091824, - 18377504, - 26419168, - 21091200, - 18010864, - 21247312, - 26419632, - 26419200, - 26419200, - 18377792, - 21158320, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 21068832, + 21092160, + 21091696, + 18377376, + 26419104, + 21091072, + 18010736, + 21247184, + 26419568, + 26419136, + 26419136, + 18377664, + 21158192, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 21068704, + 18010800, + 19877792, 11747408, - 21069184, - 19829152, + 21069056, + 19829024, 13799632, 9635872, 9665808, @@ -103527,21 +103527,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21065648, - 21070288, - 21069584, + 26427360, + 21065520, + 21070160, + 21069456, 9635312, - 21152240, - 18308160, + 21152112, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -103565,100 +103565,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21100432, - 18042720, + 21100304, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21069200, - 19840912, - 19834496, + 21069072, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 21102336, + 21102208, 11746960, - 21085216, + 21085088, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -103679,7 +103679,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -103692,28 +103692,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -103724,7 +103724,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -103735,38 +103735,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 21158352, - 21095728, - 21065616 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 21158224, + 21095600, + 21065488 ], "bases": [ { @@ -103821,33 +103821,33 @@ }, { "type_name": "CFuncIllusionary", - "vtable_address": 31442080, + "vtable_address": 31442016, "methods": [ 13522144, - 19839072, - 19839088, - 18377504, - 26419168, - 20153648, - 18010864, - 20144960, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 19838944, + 19838960, + 18377376, + 26419104, + 20153520, + 18010736, + 20144832, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -103858,21 +103858,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19829792, - 20153840, - 19831792, + 26427360, + 19829664, + 20153712, + 19831664, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -103896,83 +103896,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -103980,16 +103980,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -104010,7 +104010,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -104023,28 +104023,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -104055,7 +104055,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -104066,35 +104066,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -104138,33 +104138,33 @@ }, { "type_name": "CFuncInteractionLayerClip", - "vtable_address": 31446464, + "vtable_address": 31446400, "methods": [ 13522144, - 19839200, - 19839216, - 18377504, - 26419168, - 20153696, - 18010864, - 20145200, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 19839072, + 19839088, + 18377376, + 26419104, + 20153568, + 18010736, + 20145072, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -104175,21 +104175,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19829776, - 20153840, - 19831760, + 26427360, + 19829648, + 20153712, + 19831632, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -104213,83 +104213,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19838496, - 18042720, + 19838368, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -104297,16 +104297,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -104327,7 +104327,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -104340,28 +104340,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -104372,7 +104372,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -104383,35 +104383,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -104455,33 +104455,33 @@ }, { "type_name": "CFuncLadder", - "vtable_address": 30459928, + "vtable_address": 30459864, "methods": [ 13522144, - 20489120, - 20489488, - 18377504, - 26419168, - 20406672, - 18010864, - 20542720, - 26419632, - 26419200, - 26419200, - 20563408, - 18378912, - 18011056, - 19835392, - 19835328, + 20488992, + 20489360, + 18377376, + 26419104, + 20406544, + 18010736, + 20542592, + 26419568, + 26419136, + 26419136, + 20563280, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 20428448, + 20428320, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -104492,21 +104492,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20489856, + 26427360, + 20489728, 12370720, 12335024, 9635312, 12347984, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -104530,83 +104530,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20407456, - 19840912, - 19834496, + 20407328, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -104614,16 +104614,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -104644,7 +104644,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -104657,28 +104657,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -104689,8 +104689,8 @@ 9636736, 9636752, 9636768, - 21066880, - 20545968, + 21066752, + 20545840, 11742320, 11742400, 11742464, @@ -104700,35 +104700,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -104772,7 +104772,7 @@ }, { "type_name": "CFuncLadder", - "vtable_address": 32884256, + "vtable_address": 32884192, "methods": [], "bases": [], "model": { @@ -104783,33 +104783,33 @@ }, { "type_name": "CFuncLadderAlias_func_useableladder", - "vtable_address": 31531880, + "vtable_address": 31531816, "methods": [ 13522144, - 20489424, - 20489440, - 18377504, - 26419168, - 20406672, - 18010864, - 20542720, - 26419632, - 26419200, - 26419200, - 20563408, - 18378912, - 18011056, - 19835392, - 19835328, + 20489296, + 20489312, + 18377376, + 26419104, + 20406544, + 18010736, + 20542592, + 26419568, + 26419136, + 26419136, + 20563280, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 20428448, + 20428320, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -104820,21 +104820,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20401152, - 20407504, - 20404160, + 26427360, + 20401024, + 20407376, + 20404032, 9635312, 12347984, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -104858,83 +104858,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20407456, - 19840912, - 19834496, + 20407328, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -104942,16 +104942,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -104972,7 +104972,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -104985,28 +104985,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -105017,8 +105017,8 @@ 9636736, 9636752, 9636768, - 21066880, - 20545968, + 21066752, + 20545840, 11742320, 11742400, 11742464, @@ -105028,35 +105028,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -105111,32 +105111,32 @@ }, { "type_name": "CFuncMonitor", - "vtable_address": 31534072, + "vtable_address": 31534008, "methods": [ 13522144, - 20407568, - 20415040, - 18377504, - 26419168, - 20407520, - 18010864, - 20529840, - 26419632, - 26419200, - 26419200, - 20491840, - 20429552, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 21068832, + 20407440, + 20414912, + 18377376, + 26419104, + 20407392, + 18010736, + 20529712, + 26419568, + 26419136, + 26419136, + 20491712, + 20429424, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 21068704, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 13799632, 9635872, 9665808, @@ -105148,21 +105148,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20401168, - 20407664, - 20404176, + 26427360, + 20401040, + 20407536, + 20404048, 9635312, - 20439520, - 18308160, + 20439392, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -105186,83 +105186,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21156992, - 18042720, + 21156864, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20407472, - 19840912, - 19834496, + 20407344, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -105270,16 +105270,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -105300,7 +105300,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -105313,28 +105313,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -105345,7 +105345,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -105356,38 +105356,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 21157024, 21157152, - 21157280, - 21065616 + 21065488 ], "bases": [ { @@ -105442,33 +105442,33 @@ }, { "type_name": "CFuncMoveLinear", - "vtable_address": 30642144, + "vtable_address": 30642080, "methods": [ 13522144, 13637840, 13638160, - 18377504, - 26419168, - 20433616, - 18010864, - 20599968, - 26419632, - 26419200, - 26419200, - 20418768, - 20407696, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20408080, + 18377376, + 26419104, + 20433488, + 18010736, + 20599840, + 26419568, + 26419136, + 26419136, + 20418640, + 20407568, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20407952, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 20409616, + 18378400, + 19829024, + 20409488, 9635872, 9665808, 9641296, @@ -105479,21 +105479,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20492320, + 26427360, + 20492192, 13625392, 13623424, 9635312, 13649552, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -105517,83 +105517,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20411792, - 18042720, + 20411664, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 13626944, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 13621792, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20493184, + 20493056, 9637216, 9636096, 11746864, @@ -105601,16 +105601,16 @@ 11747104, 9636112, 9636128, - 20423264, + 20423136, 9636144, 9636160, 9636176, - 20437440, - 19828656, - 21311696, + 20437312, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -105631,7 +105631,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -105644,28 +105644,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -105676,7 +105676,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -105687,36 +105687,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 20411344 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 20411216 ], "bases": [ { @@ -105771,7 +105771,7 @@ }, { "type_name": "CFuncMoveLinear", - "vtable_address": 32878912, + "vtable_address": 32878848, "methods": [], "bases": [], "model": { @@ -105782,33 +105782,33 @@ }, { "type_name": "CFuncMoveLinearAlias_momentary_door", - "vtable_address": 31536288, + "vtable_address": 31536224, "methods": [ 13522144, - 20420816, - 20421136, - 18377504, - 26419168, - 20433616, - 18010864, - 20599968, - 26419632, - 26419200, - 26419200, - 20418768, - 20407696, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20408080, + 20420688, + 20421008, + 18377376, + 26419104, + 20433488, + 18010736, + 20599840, + 26419568, + 26419136, + 26419136, + 20418640, + 20407568, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20407952, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 20409616, + 18378400, + 19829024, + 20409488, 9635872, 9665808, 9641296, @@ -105819,21 +105819,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20401184, - 20408544, - 20404192, + 26427360, + 20401056, + 20408416, + 20404064, 9635312, 13649552, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -105857,83 +105857,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20411792, - 18042720, + 20411664, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 13626944, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 13621792, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20493184, + 20493056, 9637216, 9636096, 11746864, @@ -105941,16 +105941,16 @@ 11747104, 9636112, 9636128, - 20423264, + 20423136, 9636144, 9636160, 9636176, - 20437440, - 19828656, - 21311696, + 20437312, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -105971,7 +105971,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -105984,28 +105984,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -106016,7 +106016,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -106027,36 +106027,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 20411344 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 20411216 ], "bases": [ { @@ -106122,33 +106122,33 @@ }, { "type_name": "CFuncMover", - "vtable_address": 30648408, + "vtable_address": 30648344, "methods": [ 13522144, 13639568, 13646224, - 18377504, - 26419168, - 20501440, - 18010864, - 20501488, - 26419632, - 26419200, - 26419200, - 20587088, - 20502112, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 20501312, + 18010736, + 20501360, + 26419568, + 26419136, + 26419136, + 20586960, + 20501984, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -106159,21 +106159,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20500608, + 26427360, + 20500480, 13700736, 13623472, 9635312, 13649648, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -106197,83 +106197,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20502512, - 18042720, + 20502384, + 18042592, 11747344, - 20502752, + 20502624, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 13626912, 9645040, 9644128, - 20501552, + 20501424, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 13621808, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -106281,16 +106281,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 20503856, + 21228944, + 20503728, 11962368, 11742368, 11865936, @@ -106311,7 +106311,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -106324,28 +106324,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 20401408, - 21106016, + 20401280, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -106356,7 +106356,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -106367,35 +106367,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -106439,7 +106439,7 @@ }, { "type_name": "CFuncMoverSystem", - "vtable_address": 31538488, + "vtable_address": 31538424, "methods": [ 9634368, 9634384, @@ -106472,7 +106472,7 @@ 9634816, 9634832, 9634848, - 20594448, + 20594320, 9634880, 9634896, 9634912, @@ -106497,12 +106497,12 @@ 9635216, 9635232, 9635248, - 20412256, + 20412128, 9635280, - 20411296, - 20417376, - 20416352, - 20401200 + 20411168, + 20417248, + 20416224, + 20401072 ], "bases": [ { @@ -106535,33 +106535,33 @@ }, { "type_name": "CFuncNavBlocker", - "vtable_address": 30790304, + "vtable_address": 30790240, "methods": [ 13522144, 13988352, 13988400, - 18377504, - 26419168, - 23293728, - 18010864, - 23292416, - 26419632, - 26419200, - 26419200, - 23293632, - 23292208, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 23291216, + 18377376, + 26419104, + 23293664, + 18010736, + 23292352, + 26419568, + 26419136, + 26419136, + 23293568, + 23292144, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 23291152, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -106572,21 +106572,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 23093744, + 26427360, + 23093680, 14007312, 13988256, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -106610,83 +106610,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -106694,16 +106694,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -106724,7 +106724,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -106737,28 +106737,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -106769,7 +106769,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -106780,36 +106780,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 23033440 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 23033376 ], "bases": [ { @@ -106874,11 +106874,11 @@ }, { "type_name": "CFuncNavBlocker", - "vtable_address": 30792504, + "vtable_address": 30792440, "methods": [ 13988368, 13988448, - 23043856 + 23043792 ], "bases": [ { @@ -106943,33 +106943,33 @@ }, { "type_name": "CFuncNavObstruction", - "vtable_address": 31900112, + "vtable_address": 31900048, "methods": [ 13522144, - 23032112, - 23032192, - 18377504, - 26419168, - 23293728, - 18010864, - 23292528, - 26419632, - 26419200, - 26419200, - 23293680, - 23292352, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 23292048, + 23032048, + 23032128, + 18377376, + 26419104, + 23293664, + 18010736, + 23292464, + 26419568, + 26419136, + 26419136, + 23293616, + 23292288, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 23291984, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -106980,21 +106980,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 23028192, - 23293776, - 23031072, + 26427360, + 23028128, + 23293712, + 23031008, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -107018,83 +107018,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -107102,16 +107102,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -107132,7 +107132,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -107145,28 +107145,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -107177,7 +107177,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -107188,43 +107188,43 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 23028032, + 23028064, 23028096, - 23028128, - 23028160, - 23031728, - 23031968, - 23041552, - 23041280, - 23042128 + 23031664, + 23031904, + 23041488, + 23041216, + 23042064 ], "bases": [ { @@ -107299,23 +107299,23 @@ }, { "type_name": "CFuncNavObstruction", - "vtable_address": 31902368, + "vtable_address": 31902304, "methods": [ - 23032128, - 23032240, - 23026480, + 23032064, + 23032176, + 23026416, 12334320, - 23031760, - 23046688, + 23031696, + 23046624, 12334336, - 23028112, + 23028048, 12334352, - 19829520, - 23026496, - 23028144, - 23041648, - 23041424, - 23028176 + 19829392, + 23026432, + 23028080, + 23041584, + 23041360, + 23028112 ], "bases": [ { @@ -107390,11 +107390,11 @@ }, { "type_name": "CFuncNavObstruction", - "vtable_address": 31902504, + "vtable_address": 31902440, "methods": [ - 23032160, - 23032304, - 23042800 + 23032096, + 23032240, + 23042736 ], "bases": [ { @@ -107469,33 +107469,33 @@ }, { "type_name": "CFuncPlat", - "vtable_address": 31806616, + "vtable_address": 31806552, "methods": [ 13522144, - 22303776, - 22304672, - 18377504, - 26419168, - 22305824, - 18010864, - 22466368, - 26419632, - 26419200, - 26419200, - 22380112, - 18378912, - 18011056, - 19835392, - 19835328, + 22303648, + 22304544, + 18377376, + 26419104, + 22305696, + 18010736, + 22466240, + 26419568, + 26419136, + 26419136, + 22379984, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -107506,21 +107506,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262816, - 22271952, - 22266768, + 26427360, + 22262688, + 22271824, + 22266640, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -107544,83 +107544,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 22285792, - 18042720, + 22285664, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -107628,16 +107628,16 @@ 11747104, 9636112, 9636128, - 22370384, + 22370256, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -107658,7 +107658,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -107671,28 +107671,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -107703,7 +107703,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -107714,40 +107714,40 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22262736, - 22306272, - 22306128, - 22347664, - 22346896 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22262608, + 22306144, + 22306000, + 22347536, + 22346768 ], "bases": [ { @@ -107813,33 +107813,33 @@ }, { "type_name": "CFuncPlatRot", - "vtable_address": 31811040, + "vtable_address": 31810976, "methods": [ 13522144, - 22303872, - 22304784, - 18377504, - 26419168, - 22305824, - 18010864, - 22466976, - 26419632, - 26419200, - 26419200, - 22380112, - 18378912, - 18011056, - 19835392, - 19835328, + 22303744, + 22304656, + 18377376, + 26419104, + 22305696, + 18010736, + 22466848, + 26419568, + 26419136, + 26419136, + 22379984, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -107850,21 +107850,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262848, - 22271952, - 22266752, + 26427360, + 22262720, + 22271824, + 22266624, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -107888,83 +107888,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 22285792, - 18042720, + 22285664, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -107972,16 +107972,16 @@ 11747104, 9636112, 9636128, - 22370384, + 22370256, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -108002,7 +108002,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -108015,28 +108015,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -108047,7 +108047,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -108058,40 +108058,40 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22262736, - 22321776, - 22321392, - 22348160, - 22347312 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22262608, + 22321648, + 22321264, + 22348032, + 22347184 ], "bases": [ { @@ -108168,33 +108168,33 @@ }, { "type_name": "CFuncPropRespawnZone", - "vtable_address": 31740240, + "vtable_address": 31740176, "methods": [ 13506768, - 21603968, - 21603984, + 21603840, + 21603856, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -108205,21 +108205,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21598992, - 21918960, - 21601424, + 26427360, + 21598864, + 21918832, + 21601296, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -108243,83 +108243,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -108327,16 +108327,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -108357,7 +108357,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -108370,28 +108370,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -108402,7 +108402,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -108413,7 +108413,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -108446,33 +108446,33 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 30994832, + "vtable_address": 30994768, "methods": [ 13526704, - 16507168, - 16507520, - 18377552, - 18065872, - 18145824, - 18010864, - 16597552, - 26419632, - 18009552, - 26419200, - 18495392, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18502240, + 16507040, + 16507392, + 18377424, + 18065744, + 18145696, + 18010736, + 16597424, + 26419568, + 18009424, + 26419136, + 18495264, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18502112, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -108483,21 +108483,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16501264, - 16598816, - 16502352, + 26427360, + 16501136, + 16598688, + 16502224, 9635312, - 16507936, - 18308160, + 16507808, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -108508,114 +108508,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -108625,7 +108625,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -108635,7 +108635,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -108646,41 +108646,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -108691,83 +108691,83 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 18495968, + 18495840, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 18502480, + 18275360, + 18502352, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 18405136 + 18405008 ], "bases": [ { @@ -108886,7 +108886,7 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 30997408, + "vtable_address": 30997344, "methods": [ 11404800, 11401984 @@ -109008,10 +109008,10 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 30997440, + "vtable_address": 30997376, "methods": [ - 16507344, - 16507728 + 16507216, + 16507600 ], "bases": [ { @@ -109130,33 +109130,33 @@ }, { "type_name": "CFuncRotating", - "vtable_address": 30650600, + "vtable_address": 30650536, "methods": [ 13522144, 13638512, 13638704, - 18377504, - 26419168, - 20406672, - 18010864, - 20602848, - 26419632, - 26419200, - 26419200, - 20520176, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20520592, + 18377376, + 26419104, + 20406544, + 18010736, + 20602720, + 26419568, + 26419136, + 26419136, + 20520048, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20520464, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 20520144, + 18378400, + 19829024, + 20520016, 9635872, 9665808, 9641296, @@ -109167,21 +109167,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20519568, + 26427360, + 20519440, 13700736, 13623488, 9635312, 13649744, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -109205,83 +109205,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20411632, - 18042720, + 20411504, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -109289,16 +109289,16 @@ 11747104, 9636112, 9636128, - 20520496, + 20520368, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -109319,7 +109319,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -109332,28 +109332,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -109364,7 +109364,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -109375,35 +109375,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -109447,33 +109447,33 @@ }, { "type_name": "CFuncRotator", - "vtable_address": 30663168, + "vtable_address": 30663104, "methods": [ 13522144, 13724416, 13731376, - 18377504, - 26419168, - 20895648, - 18010864, - 20766256, - 26419632, - 26419200, - 26419200, - 20689552, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 20895520, + 18010736, + 20766128, + 26419568, + 26419136, + 26419136, + 20689424, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -109484,21 +109484,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20688832, + 26427360, + 20688704, 13794048, 13704240, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -109522,83 +109522,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20689568, - 18042720, + 20689440, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 20767408, + 20767280, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -109606,16 +109606,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -109636,7 +109636,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -109649,28 +109649,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -109681,7 +109681,7 @@ 9636736, 9636752, 9636768, - 20689744, + 20689616, 11742352, 11742320, 11742400, @@ -109692,35 +109692,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -109764,33 +109764,33 @@ }, { "type_name": "CFuncShatterglass", - "vtable_address": 30464944, + "vtable_address": 30464880, "methods": [ 13522144, - 20750448, - 20750768, - 18377504, - 26419168, - 20895696, - 18010864, - 20847584, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20703328, + 20750320, + 20750640, + 18377376, + 26419104, + 20895568, + 18010736, + 20847456, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20703200, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 20706048, + 18378400, + 19829024, + 20705920, 9635872, 9665808, 9641296, @@ -109801,21 +109801,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20692592, + 26427360, + 20692464, 12370720, 12335088, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -109839,83 +109839,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -109923,16 +109923,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -109953,7 +109953,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -109966,28 +109966,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -109998,7 +109998,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -110009,35 +110009,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -110081,32 +110081,32 @@ }, { "type_name": "CFuncTankTrain", - "vtable_address": 31791768, + "vtable_address": 31791704, "methods": [ 13522144, - 22306416, - 22306688, - 18377504, - 26419168, - 22270592, - 18010864, - 22385760, - 26419632, - 26419200, - 26419200, - 22354016, - 22388512, - 18011056, - 19835392, - 19835328, - 9634320, - 22308816, - 22270288, + 22306288, + 22306560, + 18377376, + 26419104, + 22270464, + 18010736, + 22385632, + 26419568, + 26419136, + 26419136, + 22353888, + 22388384, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 22308688, + 22270160, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 13867680, 9635872, 9665808, @@ -110118,21 +110118,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262256, - 22269408, - 22266624, + 26427360, + 22262128, + 22269280, + 22266496, 9635312, 13883584, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -110156,83 +110156,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 22285632, - 18042720, + 22285504, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 22315728, + 18014720, + 18211344, + 19854832, + 22315600, 9635952, 9635968, 9635984, 11875584, 11742256, - 22284352, - 19831632, + 22284224, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22480832, + 22480704, 9637216, 9636096, 11746864, @@ -110240,16 +110240,16 @@ 11747104, 9636112, 9636128, - 22262240, + 22262112, 9636144, 9636160, 9636176, - 22262928, - 19828656, - 21311696, + 22262800, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -110270,7 +110270,7 @@ 13865520, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -110283,28 +110283,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -110315,7 +110315,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -110326,35 +110326,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 22269024, - 18011024, - 18004224, - 18004240, - 18004224, + 22268896, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -110409,33 +110409,33 @@ }, { "type_name": "CFuncTimescale", - "vtable_address": 31546200, + "vtable_address": 31546136, "methods": [ 13506768, - 20625088, - 20625104, + 20624960, + 20624976, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -110446,21 +110446,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20617008, - 20899920, - 20623536, + 26427360, + 20616880, + 20899792, + 20623408, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -110484,83 +110484,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -110568,16 +110568,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -110598,7 +110598,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -110611,28 +110611,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -110643,7 +110643,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -110654,7 +110654,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -110687,33 +110687,33 @@ }, { "type_name": "CFuncTrackAuto", - "vtable_address": 31819904, + "vtable_address": 31819840, "methods": [ 13522144, - 22304064, - 22305008, - 18377504, - 26419168, - 22306112, - 18010864, - 22466688, - 26419632, - 26419200, - 26419200, - 22380112, - 18378912, - 18011056, - 19835392, - 19835328, + 22303936, + 22304880, + 18377376, + 26419104, + 22305984, + 18010736, + 22466560, + 26419568, + 26419136, + 26419136, + 22379984, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -110724,21 +110724,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263056, - 22271952, - 22266720, + 26427360, + 22262928, + 22271824, + 22266592, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -110762,100 +110762,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 22285792, - 18042720, + 22285664, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22395248, + 22395120, 9637216, 9636096, 11746864, - 22262224, + 22262096, 11747104, 9636112, 9636128, - 22370384, + 22370256, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -110876,7 +110876,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -110889,28 +110889,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -110921,7 +110921,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -110932,41 +110932,41 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22263024, - 22397312, - 22396832, - 22348224, - 22347376, - 22480256 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22262896, + 22397184, + 22396704, + 22348096, + 22347248, + 22480128 ], "bases": [ { @@ -111065,33 +111065,33 @@ }, { "type_name": "CFuncTrackChange", - "vtable_address": 31817664, + "vtable_address": 31817600, "methods": [ 13522144, - 22303968, - 22304896, - 18377504, - 26419168, - 22306112, - 18010864, - 22466688, - 26419632, - 26419200, - 26419200, - 22380112, - 18378912, - 18011056, - 19835392, - 19835328, + 22303840, + 22304768, + 18377376, + 26419104, + 22305984, + 18010736, + 22466560, + 26419568, + 26419136, + 26419136, + 22379984, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -111102,21 +111102,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263040, - 22271952, - 22266736, + 26427360, + 22262912, + 22271824, + 22266608, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -111140,100 +111140,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 22285792, - 18042720, + 22285664, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22394960, + 22394832, 9637216, 9636096, 11746864, - 22262224, + 22262096, 11747104, 9636112, 9636128, - 22370384, + 22370256, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -111254,7 +111254,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -111267,28 +111267,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -111299,7 +111299,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -111310,41 +111310,41 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22263024, - 22397312, - 22396832, - 22348224, - 22347376, - 22462384 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22262896, + 22397184, + 22396704, + 22348096, + 22347248, + 22462256 ], "bases": [ { @@ -111432,7 +111432,7 @@ }, { "type_name": "CFuncTrackChange", - "vtable_address": 33241120, + "vtable_address": 33241056, "methods": [], "bases": [], "model": { @@ -111443,32 +111443,32 @@ }, { "type_name": "CFuncTrackTrain", - "vtable_address": 30757192, + "vtable_address": 30757128, "methods": [ 13522144, 13876096, 13876288, - 18377504, - 26419168, - 22270592, - 18010864, - 22384400, - 26419632, - 26419200, - 26419200, - 22354016, - 22388512, - 18011056, - 19835392, - 19835328, - 9634320, - 22308816, - 22270288, + 18377376, + 26419104, + 22270464, + 18010736, + 22384272, + 26419568, + 26419136, + 26419136, + 22353888, + 22388384, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 22308688, + 22270160, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 13867680, 9635872, 9665808, @@ -111480,21 +111480,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22383440, + 26427360, + 22383312, 13914192, 13866096, 9635312, 13883584, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -111518,83 +111518,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 22285632, - 18042720, + 22285504, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, - 22284352, - 19831632, + 22284224, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22480832, + 22480704, 9637216, 9636096, 11746864, @@ -111602,16 +111602,16 @@ 11747104, 9636112, 9636128, - 22386160, + 22386032, 9636144, 9636160, 9636176, - 22262928, - 19828656, - 21311696, + 22262800, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -111632,7 +111632,7 @@ 13865520, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -111645,28 +111645,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -111677,7 +111677,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -111688,35 +111688,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -111760,33 +111760,33 @@ }, { "type_name": "CFuncTrain", - "vtable_address": 31813272, + "vtable_address": 31813208, "methods": [ 13522144, - 22303680, - 22304560, - 18377504, - 26419168, - 22305824, - 18010864, - 22467296, - 26419632, - 26419200, - 26419200, - 22463392, - 18378912, - 18011056, - 19835392, - 19835328, + 22303552, + 22304432, + 18377376, + 26419104, + 22305696, + 18010736, + 22467168, + 26419568, + 26419136, + 26419136, + 22463264, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 22316304, - 19829152, - 19833424, + 22316176, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -111797,21 +111797,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262864, - 22271952, - 22266704, + 26427360, + 22262736, + 22271824, + 22266576, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -111835,83 +111835,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22471840, + 22471712, 9637216, 9636096, 11746864, @@ -111919,16 +111919,16 @@ 11747104, 9636112, 9636128, - 22370320, + 22370192, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -111949,7 +111949,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -111962,28 +111962,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -111994,7 +111994,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -112005,36 +112005,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22262736 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22262608 ], "bases": [ { @@ -112100,33 +112100,33 @@ }, { "type_name": "CFuncTrainControls", - "vtable_address": 31815472, + "vtable_address": 31815408, "methods": [ 13522144, - 22266432, - 22266448, - 18377504, - 26419168, - 18094240, - 18010864, - 22270000, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 22266304, + 22266320, + 18377376, + 26419104, + 18094112, + 18010736, + 22269872, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -112137,21 +112137,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263008, - 22542928, - 22266816, + 26427360, + 22262880, + 22542800, + 22266688, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -112175,83 +112175,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -112259,16 +112259,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -112289,7 +112289,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -112302,28 +112302,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -112334,7 +112334,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -112345,35 +112345,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -112417,33 +112417,33 @@ }, { "type_name": "CFuncVPhysicsClip", - "vtable_address": 31444272, + "vtable_address": 31444208, "methods": [ 13522144, - 19839136, - 19839152, - 18377504, - 26419168, - 20153744, - 18010864, - 20145024, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 19839008, + 19839024, + 18377376, + 26419104, + 20153616, + 18010736, + 20144896, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -112454,21 +112454,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19829760, - 20153840, - 19831776, + 26427360, + 19829632, + 20153712, + 19831648, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -112492,83 +112492,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19838416, - 18042720, + 19838288, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -112576,16 +112576,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -112606,7 +112606,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -112619,28 +112619,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -112651,7 +112651,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -112662,35 +112662,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -112734,33 +112734,33 @@ }, { "type_name": "CFuncVehicleClip", - "vtable_address": 31439888, + "vtable_address": 31439824, "methods": [ 13522144, - 19839008, - 19839024, - 18377504, - 26419168, - 20153648, - 18010864, - 20144800, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 19838880, + 19838896, + 18377376, + 26419104, + 20153520, + 18010736, + 20144672, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -112771,21 +112771,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19829744, - 20153840, - 19831808, + 26427360, + 19829616, + 20153712, + 19831680, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -112809,83 +112809,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19838336, - 18042720, + 19838208, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -112893,16 +112893,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -112923,7 +112923,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -112936,28 +112936,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -112968,7 +112968,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -112979,35 +112979,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -113051,33 +113051,33 @@ }, { "type_name": "CFuncWall", - "vtable_address": 31435504, + "vtable_address": 31435440, "methods": [ 13522144, - 19838880, - 19838896, - 18377504, - 26419168, - 20153648, - 18010864, - 20144640, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 19838752, + 19838768, + 18377376, + 26419104, + 20153520, + 18010736, + 20144512, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -113088,21 +113088,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19829712, - 20153840, - 19831840, + 26427360, + 19829584, + 20153712, + 19831712, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -113126,83 +113126,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19838288, - 18042720, + 19838160, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19845920, + 19845792, 9637216, 9636096, 11746864, @@ -113210,16 +113210,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -113240,7 +113240,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -113253,28 +113253,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -113285,7 +113285,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -113296,35 +113296,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -113368,7 +113368,7 @@ }, { "type_name": "CFuncWall", - "vtable_address": 32766240, + "vtable_address": 32766176, "methods": [], "bases": [], "model": { @@ -113379,33 +113379,33 @@ }, { "type_name": "CFuncWallToggle", - "vtable_address": 31437696, + "vtable_address": 31437632, "methods": [ 13522144, - 19838944, - 19838960, - 18377504, - 26419168, - 20153648, - 18010864, - 20149984, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 19838816, + 19838832, + 18377376, + 26419104, + 20153520, + 18010736, + 20149856, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -113416,21 +113416,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19829728, - 20153840, - 19831824, + 26427360, + 19829600, + 20153712, + 19831696, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -113454,83 +113454,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19838288, - 18042720, + 19838160, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19985184, + 19985056, 9637216, 9636096, 11746864, @@ -113538,16 +113538,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -113568,7 +113568,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -113581,28 +113581,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -113613,7 +113613,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -113624,35 +113624,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -113707,33 +113707,33 @@ }, { "type_name": "CFuncWater", - "vtable_address": 31048056, + "vtable_address": 31047992, "methods": [ 13522144, - 16661824, - 16661552, - 18377504, - 26419168, - 16708896, - 18010864, - 16677168, - 26419632, - 26419200, - 26419200, - 16655504, - 16655552, - 18011056, - 19835392, - 19835328, + 16661696, + 16661424, + 18377376, + 26419104, + 16708768, + 18010736, + 16677040, + 26419568, + 26419136, + 26419136, + 16655376, + 16655424, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -113744,21 +113744,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652512, - 16708944, - 16653808, + 26427360, + 16652384, + 16708816, + 16653680, 9635312, - 16671136, - 18308160, + 16671008, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -113782,100 +113782,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 16657456, + 16657328, 11746960, - 16657392, + 16657264, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -113896,7 +113896,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -113909,28 +113909,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -113941,7 +113941,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -113952,35 +113952,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -114024,18 +114024,18 @@ }, { "type_name": "CFuseSymbolTable", - "vtable_address": 31989360, + "vtable_address": 31989296, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33290816 + "offset_to_top": 33290752 } } }, { "type_name": "CGCClientJobServerUpdateVersion", - "vtable_address": 30167728, + "vtable_address": 30167664, "methods": [ 9840208, 9840224, @@ -114076,7 +114076,7 @@ }, { "type_name": "CGCClientJobServerWelcome", - "vtable_address": 30167616, + "vtable_address": 30167552, "methods": [ 9840144, 9840160, @@ -114117,11 +114117,11 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 31893216, + "vtable_address": 31893152, "methods": [ - 22960512, - 22958592, - 22960544, + 22960448, + 22958528, + 22960480, 9634416, 9634432, 9634448, @@ -114164,8 +114164,8 @@ 9635040, 9635056, 9635072, - 22963936, - 22964800, + 22963872, + 22964736, 9635120, 9635136, 9635152, @@ -114220,7 +114220,7 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 31893792, + "vtable_address": 31893728, "methods": [], "bases": [ { @@ -114263,14 +114263,14 @@ }, { "type_name": "CGCDev_NewItemRequestResponse", - "vtable_address": 31882624, + "vtable_address": 31882560, "methods": [ - 22549216, - 22549232, + 22549088, + 22549104, 9844000, 9839856, 9837392, - 22549104, + 22548976, 9837376 ], "bases": [ @@ -114304,7 +114304,7 @@ }, { "type_name": "CGCItemAcknowledged", - "vtable_address": 30166584, + "vtable_address": 30166520, "methods": [ 9840016, 9840032, @@ -114345,23 +114345,23 @@ }, { "type_name": "CGCStorePurchaseInit_LineItem", - "vtable_address": 30809624, + "vtable_address": 30809560, "methods": [ 14737440, 14792176, - 24747814, + 24747750, 14322960, 14882976, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036640, 14061712, 14393296, 9474464, 14231264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048112, 14016832 @@ -114397,23 +114397,23 @@ }, { "type_name": "CGCToGCMsgMasterAck", - "vtable_address": 30897808, + "vtable_address": 30897744, "methods": [ 15597808, 15637232, - 24747814, + 24747750, 15264048, 15714816, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051872, 15080416, 15321248, 9474464, 15141952, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066304, 15039232 @@ -114449,23 +114449,23 @@ }, { "type_name": "CGCToGCMsgMasterAck_Response", - "vtable_address": 30897968, + "vtable_address": 30897904, "methods": [ 15597936, 15637360, - 24747814, + 24747750, 15264192, 15714880, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049360, 15080400, 15321824, 9474464, 15129568, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066336, 15039248 @@ -114501,23 +114501,23 @@ }, { "type_name": "CGCToGCMsgMasterStartupComplete", - "vtable_address": 30898128, + "vtable_address": 30898064, "methods": [ 15103632, 15103648, - 24747814, + 24747750, 15264320, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15066368, 15039264 @@ -114564,23 +114564,23 @@ }, { "type_name": "CGCToGCMsgRouted", - "vtable_address": 30898288, + "vtable_address": 30898224, "methods": [ 15598064, 15648848, - 24747814, + 24747750, 15264448, 15726512, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15082944, 15080384, 15322304, 9474464, 15197088, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066400, 15039280 @@ -114616,23 +114616,23 @@ }, { "type_name": "CGCToGCMsgRoutedReply", - "vtable_address": 30898448, + "vtable_address": 30898384, "methods": [ 15598208, 15649008, - 24747814, + 24747750, 15264592, 15726800, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083072, 15080368, 15322960, 9474464, 15169888, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066432, 15039296 @@ -114668,26 +114668,26 @@ }, { "type_name": "CGameChoreoServices", - "vtable_address": 31548776, + "vtable_address": 31548712, "methods": [ - 20623552, - 20617312, - 20620288, - 20623312, - 20661040, + 20623424, + 20617184, + 20620160, + 20623184, + 20660912, 13719984, - 20680848, - 20661136, - 20668336, - 20682816, - 20617328, - 20674688, - 20669664, + 20680720, + 20661008, + 20668208, + 20682688, + 20617200, + 20674560, + 20669536, 13703088, - 20617264, - 20617280, - 20617296, - 20661232 + 20617136, + 20617152, + 20617168, + 20661104 ], "bases": [ { @@ -114709,12 +114709,12 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 31367752, + "vtable_address": 31367688, "methods": [ 15983888, 15983760, - 18820032, - 19035520, + 18819904, + 19035392, 15983568, 15974080, 15974112, @@ -114722,9 +114722,9 @@ 15983440, 15974176, 15974208, - 18811872, - 18913792, - 18895152 + 18811744, + 18913664, + 18895024 ], "bases": [ { @@ -114855,12 +114855,12 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 31368176, + "vtable_address": 31368112, "methods": [ 15983952, 15983824, - 18842592, - 19035648, + 18842464, + 19035520, 15983664, 15974096, 15974128, @@ -114868,24 +114868,24 @@ 15983504, 15974192, 15974224, - 18838656, - 18838672, - 18839808, - 18838688, - 18838704, - 18838720, + 18838528, + 18838544, + 18839680, + 18838560, + 18838576, + 18838592, 15971440, - 18852944, - 18838736, - 18840192, - 18838768, - 18838752, - 18020016, - 18020048, - 18810976, - 18811008, + 18852816, + 18838608, + 18840064, + 18838640, + 18838624, + 18019888, + 18019920, + 18810848, + 18810880, 15971472, - 19272496 + 19272368 ], "bases": [ { @@ -115016,33 +115016,33 @@ }, { "type_name": "CGameEnd", - "vtable_address": 31622192, + "vtable_address": 31622128, "methods": [ 13522144, - 20911200, - 20911232, - 18377504, - 26419168, - 18094240, - 18010864, - 20930688, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20911072, + 20911104, + 18377376, + 26419104, + 18094112, + 18010736, + 20930560, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -115053,21 +115053,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905328, - 20913408, - 20906864, + 26427360, + 20905200, + 20913280, + 20906736, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -115091,83 +115091,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20918784, + 20918656, 9637216, 9636096, 11746864, @@ -115175,16 +115175,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -115205,7 +115205,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -115218,28 +115218,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -115250,7 +115250,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -115261,35 +115261,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -115355,33 +115355,33 @@ }, { "type_name": "CGameEntitySystem", - "vtable_address": 31368592, + "vtable_address": 31368528, "methods": [ + 18821616, 18821744, - 18821872, - 19191008, - 18820816, - 18821984, - 18822080, - 18822176, - 26463216, - 26463504, - 18829040, - 19138336, - 19138720, - 18822448, - 18822464, - 18947408, - 18812368, - 18837872, - 18865120, - 18822480, - 18971008, - 18957664, - 18822496, - 18822784, - 18829152, - 18822848 + 19190880, + 18820688, + 18821856, + 18821952, + 18822048, + 26463152, + 26463440, + 18828912, + 19138208, + 19138592, + 18822320, + 18822336, + 18947280, + 18812240, + 18837744, + 18864992, + 18822352, + 18970880, + 18957536, + 18822368, + 18822656, + 18829024, + 18822720 ], "bases": [ { @@ -115414,43 +115414,43 @@ }, { "type_name": "CGameEvent", - "vtable_address": 31372184, + "vtable_address": 31372120, "methods": [ - 18822304, - 18822352, - 18829264, - 18812688, - 18812720, - 18812704, - 18853088, - 18823200, - 18823248, - 18823296, - 18823344, - 18823392, - 18823440, - 18840320, - 18900704, - 18864080, - 18858528, - 18859488, - 18917072, - 18916208, - 18918128, - 18823488, - 18823104, - 18823536, - 18823584, - 18823632, - 18823680, - 18823152, - 18893536, - 18919088, - 18846656, - 18888496, - 18851440, - 18894928, - 18812672 + 18822176, + 18822224, + 18829136, + 18812560, + 18812592, + 18812576, + 18852960, + 18823072, + 18823120, + 18823168, + 18823216, + 18823264, + 18823312, + 18840192, + 18900576, + 18863952, + 18858400, + 18859360, + 18916944, + 18916080, + 18918000, + 18823360, + 18822976, + 18823408, + 18823456, + 18823504, + 18823552, + 18823024, + 18893408, + 18918960, + 18846528, + 18888368, + 18851312, + 18894800, + 18812544 ], "bases": [ { @@ -115472,7 +115472,7 @@ }, { "type_name": "CGameEventListener", - "vtable_address": 30180536, + "vtable_address": 30180472, "methods": [], "bases": [ { @@ -115494,25 +115494,25 @@ }, { "type_name": "CGameEventManager", - "vtable_address": 31372480, - "methods": [ - 19097104, - 19098304, - 19260224, - 19095072, - 19202176, - 19202528, - 18847968, - 19201376, - 18981520, - 18981712, - 18975680, - 18823728, - 18921248, - 18977904, - 19201840, - 18919904, - 19201664 + "vtable_address": 31372416, + "methods": [ + 19096976, + 19098176, + 19260096, + 19094944, + 19202048, + 19202400, + 18847840, + 19201248, + 18981392, + 18981584, + 18975552, + 18823600, + 18921120, + 18977776, + 19201712, + 18919776, + 19201536 ], "bases": [ { @@ -115545,33 +115545,33 @@ }, { "type_name": "CGameGibManager", - "vtable_address": 30418680, + "vtable_address": 30418616, "methods": [ 13506768, 12214160, 12214512, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, 12209008, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -115582,12 +115582,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12202736, 12334272, 12204512, @@ -115595,8 +115595,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -115620,83 +115620,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -115704,16 +115704,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -115734,7 +115734,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -115747,28 +115747,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -115779,7 +115779,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -115790,7 +115790,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -115823,23 +115823,23 @@ }, { "type_name": "CGameInfo", - "vtable_address": 30868984, + "vtable_address": 30868920, "methods": [ 14856288, 14857952, - 24747814, + 24747750, 14384000, 14925056, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14102128, 14063344, 14577344, 9474464, 14068416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059984, 14027856 @@ -115875,23 +115875,23 @@ }, { "type_name": "CGameInfo_CCSGameInfo", - "vtable_address": 30868824, + "vtable_address": 30868760, "methods": [ 14784992, 14824016, - 24747814, + 24747750, 14383840, 14894624, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14090448, 14063328, 14576736, 9474464, 14103040, - 24746716, - 24746982, + 24746652, + 24746918, 14029728, 14059952, 14027840 @@ -115927,23 +115927,23 @@ }, { "type_name": "CGameInfo_CDotaGameInfo", - "vtable_address": 30868664, + "vtable_address": 30868600, "methods": [ 14784784, 14837840, - 24747814, + 24747750, 14383680, 14924720, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14101552, 14063312, 14650832, 9474464, 14320416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059920, 14027824 @@ -115979,23 +115979,23 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CHeroSelectEvent", - "vtable_address": 30868504, + "vtable_address": 30868440, "methods": [ 14784656, 14813296, - 24747814, + 24747750, 14383488, 14894560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046688, 14063296, 14576144, 9474464, 14159872, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059888, 14027808 @@ -116031,23 +116031,23 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CPlayerInfo", - "vtable_address": 30868344, + "vtable_address": 30868280, "methods": [ 14784496, 14831536, - 24747814, + 24747750, 14383344, 14913216, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14078752, 14063280, 14575520, 9474464, 14220288, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059856, 14027792 @@ -116083,11 +116083,11 @@ }, { "type_name": "CGameJobSystem", - "vtable_address": 31355392, + "vtable_address": 31355328, "methods": [ 9634368, 9634384, - 18518816, + 18518688, 9634416, 9634432, 9634448, @@ -116112,7 +116112,7 @@ 9634752, 9634768, 9634784, - 18518848, + 18518720, 9634816, 9634832, 9634848, @@ -116124,14 +116124,14 @@ 9634944, 9634960, 9634976, - 18518432, - 18518672, + 18518304, + 18518544, 9635024, 9635040, 9635056, 9635072, - 18410048, - 18518688, + 18409920, + 18518560, 9635120, 9635136, 9635152, @@ -116141,12 +116141,12 @@ 9635216, 9635232, 9635248, - 18387392, + 18387264, 9635280, - 18387376, - 18417760, - 18418032, - 18387360 + 18387248, + 18417632, + 18417904, + 18387232 ], "bases": [ { @@ -116179,7 +116179,7 @@ }, { "type_name": "CGameJournal", - "vtable_address": 31375080, + "vtable_address": 31375016, "methods": [], "bases": [ { @@ -116233,13 +116233,13 @@ }, { "type_name": "CGameJournal", - "vtable_address": 31375184, + "vtable_address": 31375120, "methods": [ 9634368, 9634384, 9634400, - 18983072, - 18839680, + 18982944, + 18839552, 9634448, 9634464, 9634480, @@ -116347,15 +116347,15 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 31356000, + "vtable_address": 31355936, "methods": [ - 18808288, - 18395584, - 18395600, - 18808272, - 18809632, - 18810128, - 18403248 + 18808160, + 18395456, + 18395472, + 18808144, + 18809504, + 18810000, + 18403120 ], "bases": [ { @@ -116387,33 +116387,33 @@ }, { "type_name": "CGameMoney", - "vtable_address": 30242976, + "vtable_address": 30242912, "methods": [ 13522144, 10446176, 10446768, - 18377504, - 26419168, - 18094240, - 18010864, - 20930688, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20930560, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -116424,21 +116424,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10427712, 10436944, 10429232, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -116462,83 +116462,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -116546,16 +116546,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -116576,7 +116576,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -116589,28 +116589,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -116621,7 +116621,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -116632,35 +116632,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -116726,12 +116726,12 @@ }, { "type_name": "CGameNetworkStringTables", - "vtable_address": 31379320, + "vtable_address": 31379256, "methods": [ - 19277776, - 18815024, - 18815632, - 18815008 + 19277648, + 18814896, + 18815504, + 18814880 ], "bases": [ { @@ -116753,19 +116753,19 @@ }, { "type_name": "CGameParticleManager", - "vtable_address": 31356072, - "methods": [ - 18519616, - 18519936, - 18401872, - 18653360, - 18655440, - 18387488, - 18673056, - 18404080, - 18652400, - 18400656, - 18423920 + "vtable_address": 31356008, + "methods": [ + 18519488, + 18519808, + 18401744, + 18653232, + 18655312, + 18387360, + 18672928, + 18403952, + 18652272, + 18400528, + 18423792 ], "bases": [], "model": { @@ -116776,13 +116776,13 @@ }, { "type_name": "CGameParticleManagerSystem", - "vtable_address": 31356176, + "vtable_address": 31356112, "methods": [ 9634368, 9634384, 9634400, - 18809584, - 18519984, + 18809456, + 18519856, 9634448, 9634464, 9634480, @@ -116799,7 +116799,7 @@ 9634656, 9634672, 9634688, - 18386864, + 18386736, 9634720, 9634736, 9634752, @@ -116834,12 +116834,12 @@ 9635216, 9635232, 9635248, - 18387456, + 18387328, 9635280, - 18387440, - 18397040, - 18397056, - 18387424 + 18387312, + 18396912, + 18396928, + 18387296 ], "bases": [ { @@ -116872,33 +116872,33 @@ }, { "type_name": "CGamePlayerEquip", - "vtable_address": 30695392, + "vtable_address": 30695328, "methods": [ 13522144, 13807136, 13806928, - 18377504, - 26419168, - 21013504, - 18010864, - 21014272, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 21013376, + 18010736, + 21014144, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -116909,21 +116909,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21013472, + 26427360, + 21013344, 13865440, 13794752, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -116947,100 +116947,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 21015712, + 21015584, 9637216, 9636096, - 21015456, + 21015328, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -117061,7 +117061,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -117074,28 +117074,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -117106,7 +117106,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -117117,35 +117117,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -117211,33 +117211,33 @@ }, { "type_name": "CGamePlayerZone", - "vtable_address": 31626576, + "vtable_address": 31626512, "methods": [ 13522144, - 20944160, - 20944976, - 18377504, - 26419168, - 18094240, - 18010864, - 20930624, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20944032, + 20944848, + 18377376, + 26419104, + 18094112, + 18010736, + 20930496, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -117248,21 +117248,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905360, - 20913392, - 20906832, + 26427360, + 20905232, + 20913264, + 20906704, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -117286,83 +117286,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -117370,16 +117370,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -117400,7 +117400,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -117413,28 +117413,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -117445,7 +117445,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -117456,35 +117456,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -117550,18 +117550,18 @@ }, { "type_name": "CGameResponseSystem", - "vtable_address": 31307136, + "vtable_address": 31307072, "methods": [ - 18007904, - 18026944, - 27945312, - 27924768, - 18002704, - 27943136, - 18002736, - 18002720, - 27924256, - 27924288 + 18007776, + 18026816, + 27945248, + 27924704, + 18002576, + 27943072, + 18002608, + 18002592, + 27924192, + 27924224 ], "bases": [ { @@ -117615,10 +117615,10 @@ }, { "type_name": "CGameResponseSystem", - "vtable_address": 31307232, + "vtable_address": 31307168, "methods": [ - 18008016, - 18027072 + 18007888, + 18026944 ], "bases": [ { @@ -117672,37 +117672,37 @@ }, { "type_name": "CGameRules", - "vtable_address": 30470760, + "vtable_address": 30470696, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32350152 + "offset_to_top": 32350088 } } }, { "type_name": "CGameRules", - "vtable_address": 31551648, + "vtable_address": 31551584, "methods": [ - 20633360, + 20633232, 15970800, - 20616368, + 20616240, 15970816, 15970832, 15970848, 15970864, - 20616384, - 20616400, + 20616256, + 20616272, 15970880, 15970896, 15970912, - 20616416, + 20616288, 15970928, 15970944, - 20632624, + 20632496, 15970960, - 20616432, + 20616304, 15970976 ], "bases": [], @@ -117714,7 +117714,7 @@ }, { "type_name": "CGameRules", - "vtable_address": 32349664, + "vtable_address": 32349600, "methods": [], "bases": [], "model": { @@ -117725,28 +117725,28 @@ }, { "type_name": "CGameRulesGameSystem", - "vtable_address": 31551040, + "vtable_address": 31550976, "methods": [ 9634368, - 20642288, + 20642160, 9634400, - 20652784, - 20642336, - 20639712, + 20652656, + 20642208, + 20639584, 9634464, - 20657904, - 20643008, + 20657776, + 20642880, 9634512, 9634528, 9634544, - 20642896, - 20639664, + 20642768, + 20639536, 9634592, - 20639616, - 20639568, - 20639520, - 20639472, - 20639424, + 20639488, + 20639440, + 20639392, + 20639344, + 20639296, 9634688, 9634704, 9634720, @@ -117757,10 +117757,10 @@ 9634800, 9634816, 9634832, - 20639232, - 20618352, + 20639104, + 20618224, 9634880, - 20639184, + 20639056, 9634912, 9634928, 9634944, @@ -117774,21 +117774,21 @@ 9635072, 9635088, 9635104, - 20639376, - 20639328, - 20639280, + 20639248, + 20639200, + 20639152, 9635168, 9635184, 9635200, 9635216, 9635232, 9635248, - 20618320, + 20618192, 9635280, - 20618304, - 20627808, - 20627824, - 20618288 + 20618176, + 20627680, + 20627696, + 20618160 ], "bases": [ { @@ -117810,32 +117810,32 @@ }, { "type_name": "CGameRulesProxy", - "vtable_address": 30467136, + "vtable_address": 30467072, "methods": [ 13506768, 12336112, 12336128, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 12336352, 9635872, 9665808, @@ -117847,12 +117847,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12334528, 12370736, 12335104, @@ -117860,8 +117860,8 @@ 12348240, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -117885,83 +117885,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20723392, - 19840912, - 19834496, + 20723264, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -117969,16 +117969,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -117999,7 +117999,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -118012,28 +118012,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -118044,7 +118044,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -118055,7 +118055,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -118088,7 +118088,7 @@ }, { "type_name": "CGameSceneNode", - "vtable_address": 30685096, + "vtable_address": 30685032, "methods": [], "bases": [], "model": { @@ -118099,37 +118099,37 @@ }, { "type_name": "CGameSceneNode", - "vtable_address": 31376048, + "vtable_address": 31375984, "methods": [ - 18820576, - 18863520, + 18820448, + 18863392, 9698368, - 19051776, - 19064560, - 18814752, - 19060144, - 19007328, + 19051648, + 19064432, + 18814624, + 19060016, + 19007200, 9698384, 9698400, - 19129424, - 18814784, - 18814784, - 18814800, - 18902544, + 19129296, + 18814656, + 18814656, + 18814672, + 18902416, 9698416, - 19121296, - 18907744, - 19060368, - 19062480, - 19006784, - 19011472, - 19013744, - 18901008, + 19121168, + 18907616, + 19060240, + 19062352, + 19006656, + 19011344, + 19013616, + 18900880, 9698432, 9701568, - 18810848, + 18810720, 9698448, - 18810864 + 18810736 ], "bases": [], "model": { @@ -118140,10 +118140,10 @@ }, { "type_name": "CGameSceneNode::Cm_vecOriginInitializer", - "vtable_address": 31363496, + "vtable_address": 31363432, "methods": [ - 19051552, - 18810800 + 19051424, + 18810672 ], "bases": [ { @@ -118165,12 +118165,12 @@ }, { "type_name": "CGameSceneNode::NetworkVar_m_hParent", - "vtable_address": 31363448, + "vtable_address": 31363384, "methods": [ 12437488, - 18810688, + 18810560, 12428192, - 18810640 + 18810512 ], "bases": [ { @@ -118192,7 +118192,7 @@ }, { "type_name": "CGameSceneNodeHandle", - "vtable_address": 30507720, + "vtable_address": 30507656, "methods": [ 12437488, 12428176, @@ -118208,34 +118208,34 @@ }, { "type_name": "CGameSceneNodeHandle", - "vtable_address": 30685592, + "vtable_address": 30685528, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32440428 + "offset_to_top": 32440364 } } }, { "type_name": "CGameServers_AggregationQuery_Request", - "vtable_address": 30901648, + "vtable_address": 30901584, "methods": [ 15600544, 15661760, - 24747814, + 24747750, 15267776, 15728528, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15100000, 15080176, 15329936, 9474464, 15131952, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067072, 15039616 @@ -118271,23 +118271,23 @@ }, { "type_name": "CGameServers_AggregationQuery_Response", - "vtable_address": 30901968, + "vtable_address": 30901904, "methods": [ 15600848, 15669024, - 24747814, + 24747750, 15268144, 15753424, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15100512, 15080160, 15492496, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15067136, 15039648 @@ -118323,23 +118323,23 @@ }, { "type_name": "CGameServers_AggregationQuery_Response_Group", - "vtable_address": 30901808, + "vtable_address": 30901744, "methods": [ 15600704, 15650128, - 24747814, + 24747750, 15267968, 15715248, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15100192, 15076032, 15330480, 9474464, 15210368, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067104, 15039632 @@ -118375,12 +118375,12 @@ }, { "type_name": "CGameSurfacePropertiesList", - "vtable_address": 31375840, + "vtable_address": 31375776, "methods": [ - 19287808, - 18816992, - 18923840, - 18824800 + 19287680, + 18816864, + 18923712, + 18824672 ], "bases": [ { @@ -118424,7 +118424,7 @@ }, { "type_name": "CGameSystemAbstractFactory", - "vtable_address": 30543960, + "vtable_address": 30543896, "methods": [ 12860640, 12860656, @@ -118457,7 +118457,7 @@ }, { "type_name": "CGameSystemEventDispatcher", - "vtable_address": 30518896, + "vtable_address": 30518832, "methods": [ 12793088, 12450704 @@ -118482,7 +118482,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30511192, + "vtable_address": 30511128, "methods": [ 12435840, 12435856, @@ -118526,7 +118526,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30511920, + "vtable_address": 30511856, "methods": [ 12435616, 12435632, @@ -118570,7 +118570,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30513256, + "vtable_address": 30513192, "methods": [ 12435408, 12435424, @@ -118614,7 +118614,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30275832, + "vtable_address": 30275768, "methods": [ 11247120, 11247136, @@ -118658,7 +118658,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30182960, + "vtable_address": 30182896, "methods": [ 9895344, 9895360, @@ -118702,18 +118702,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31020304, + "vtable_address": 31020240, "methods": [ - 16600000, - 16600016, - 16600032, - 16604432, - 16603984, - 16600048, - 16600064, - 16600080, - 16600096, - 16600112 + 16599872, + 16599888, + 16599904, + 16604304, + 16603856, + 16599920, + 16599936, + 16599952, + 16599968, + 16599984 ], "bases": [ { @@ -118746,18 +118746,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31872728, - "methods": [ - 22265040, - 22265056, - 22265072, - 22296752, - 22297696, - 22265088, - 22265104, - 22265120, - 22265136, - 22265152 + "vtable_address": 31872664, + "methods": [ + 22264912, + 22264928, + 22264944, + 22296624, + 22297568, + 22264960, + 22264976, + 22264992, + 22265008, + 22265024 ], "bases": [ { @@ -118790,18 +118790,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31457760, + "vtable_address": 31457696, "methods": [ - 20155968, - 20155984, - 20156000, - 20170992, - 20173440, - 20156016, - 20156032, - 20156048, - 20156064, - 20156080 + 20155840, + 20155856, + 20155872, + 20170864, + 20173312, + 20155888, + 20155904, + 20155920, + 20155936, + 20155952 ], "bases": [ { @@ -118834,18 +118834,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31460672, + "vtable_address": 31460608, "methods": [ - 20155840, - 20155856, - 20155872, - 20171104, - 20171264, - 20155888, - 20155904, - 20155920, - 20155936, - 20155952 + 20155712, + 20155728, + 20155744, + 20170976, + 20171136, + 20155760, + 20155776, + 20155792, + 20155808, + 20155824 ], "bases": [ { @@ -118878,18 +118878,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31020400, + "vtable_address": 31020336, "methods": [ - 16599872, - 16599888, - 16599904, - 16605952, - 16604128, - 16599920, - 16599936, - 16599952, - 16599968, - 16599984 + 16599744, + 16599760, + 16599776, + 16605824, + 16604000, + 16599792, + 16599808, + 16599824, + 16599840, + 16599856 ], "bases": [ { @@ -118922,18 +118922,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31323792, + "vtable_address": 31323728, "methods": [ - 18395888, - 18395904, - 18395920, - 18790960, - 18416096, - 18395936, - 18395952, - 18395968, - 18395984, - 18396000 + 18395760, + 18395776, + 18395792, + 18790832, + 18415968, + 18395808, + 18395824, + 18395840, + 18395856, + 18395872 ], "bases": [ { @@ -118966,18 +118966,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31029288, + "vtable_address": 31029224, "methods": [ - 16653472, - 16653488, - 16653504, - 16658224, - 16658512, - 16653520, - 16653536, - 16653552, - 16653568, - 16653584 + 16653344, + 16653360, + 16653376, + 16658096, + 16658384, + 16653392, + 16653408, + 16653424, + 16653440, + 16653456 ], "bases": [ { @@ -119010,18 +119010,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31030048, + "vtable_address": 31029984, "methods": [ - 16653344, - 16653360, - 16653376, - 16658368, - 16657856, - 16653392, - 16653408, - 16653424, - 16653440, - 16653456 + 16653216, + 16653232, + 16653248, + 16658240, + 16657728, + 16653264, + 16653280, + 16653296, + 16653312, + 16653328 ], "bases": [ { @@ -119054,7 +119054,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30517176, + "vtable_address": 30517112, "methods": [ 12434272, 12434288, @@ -119098,7 +119098,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30517272, + "vtable_address": 30517208, "methods": [ 12434144, 12434160, @@ -119142,18 +119142,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31551552, + "vtable_address": 31551488, "methods": [ - 20620592, - 20620608, - 20620624, - 20648352, - 20648448, - 20620640, - 20620656, - 20620672, - 20620688, - 20620704 + 20620464, + 20620480, + 20620496, + 20648224, + 20648320, + 20620512, + 20620528, + 20620544, + 20620560, + 20620576 ], "bases": [ { @@ -119186,18 +119186,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31555672, + "vtable_address": 31555608, "methods": [ - 20620384, - 20620400, - 20620416, - 20670832, - 20652544, - 20620432, - 20620448, - 20620464, - 20620480, - 20620496 + 20620256, + 20620272, + 20620288, + 20670704, + 20652416, + 20620304, + 20620320, + 20620336, + 20620352, + 20620368 ], "bases": [ { @@ -119230,7 +119230,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30519440, + "vtable_address": 30519376, "methods": [ 12433776, 12433792, @@ -119274,18 +119274,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31629280, - "methods": [ - 20906112, - 20906128, - 20906144, - 20940912, - 20927936, - 20906160, - 20906176, - 20906192, - 20906208, - 20906224 + "vtable_address": 31629216, + "methods": [ + 20905984, + 20906000, + 20906016, + 20940784, + 20927808, + 20906032, + 20906048, + 20906064, + 20906080, + 20906096 ], "bases": [ { @@ -119318,18 +119318,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31902616, + "vtable_address": 31902552, "methods": [ + 23029056, + 23029072, + 23032528, + 23057568, + 23044752, + 23029088, + 23029104, 23029120, 23029136, - 23032592, - 23057632, - 23044816, - 23029152, - 23029168, - 23029184, - 23029200, - 23029216 + 23029152 ], "bases": [ { @@ -119362,7 +119362,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30520048, + "vtable_address": 30519984, "methods": [ 12433632, 12433648, @@ -119406,18 +119406,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31744656, - "methods": [ - 21600896, - 21600912, - 21600928, - 21619920, - 21620064, - 21600944, - 21600960, - 21600976, - 21601008, - 21601024 + "vtable_address": 31744592, + "methods": [ + 21600768, + 21600784, + 21600800, + 21619792, + 21619936, + 21600816, + 21600832, + 21600848, + 21600880, + 21600896 ], "bases": [ { @@ -119450,7 +119450,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30529664, + "vtable_address": 30529600, "methods": [ 12861440, 12861456, @@ -119494,18 +119494,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31725432, + "vtable_address": 31725368, "methods": [ - 21368368, - 21368384, - 21368400, - 21382512, - 21382624, - 21368416, - 21368432, - 21368448, - 21368464, - 21368480 + 21368240, + 21368256, + 21368272, + 21382384, + 21382496, + 21368288, + 21368304, + 21368320, + 21368336, + 21368352 ], "bases": [ { @@ -119538,7 +119538,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30417920, + "vtable_address": 30417856, "methods": [ 12204320, 12204336, @@ -119582,18 +119582,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31751328, + "vtable_address": 31751264, "methods": [ - 21930240, - 21930256, - 21930272, - 21943936, - 21943488, - 21930288, - 21930304, - 21930320, - 21930336, - 21930352 + 21930112, + 21930128, + 21930144, + 21943808, + 21943360, + 21930160, + 21930176, + 21930192, + 21930208, + 21930224 ], "bases": [ { @@ -119626,7 +119626,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30530328, + "vtable_address": 30530264, "methods": [ 12861312, 12861328, @@ -119670,18 +119670,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31757104, + "vtable_address": 31757040, "methods": [ - 21930016, - 21930032, - 21930048, - 21943248, - 21943600, - 21930064, - 21930080, - 21930096, - 21930128, - 21930144 + 21929888, + 21929904, + 21929920, + 21943120, + 21943472, + 21929936, + 21929952, + 21929968, + 21930000, + 21930016 ], "bases": [ { @@ -119714,18 +119714,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31307776, + "vtable_address": 31307712, "methods": [ - 18007376, - 18007392, - 18007408, - 18045968, - 18025216, - 18007424, - 18007440, - 18007456, - 18007472, - 18007488 + 18007248, + 18007264, + 18007280, + 18045840, + 18025088, + 18007296, + 18007312, + 18007328, + 18007344, + 18007360 ], "bases": [ { @@ -119758,7 +119758,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30961664, + "vtable_address": 30961600, "methods": [ 15853760, 15853776, @@ -119802,18 +119802,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31619808, + "vtable_address": 31619744, "methods": [ - 20906240, - 20906256, - 20906272, - 20928048, - 20927824, - 20906288, - 20906304, - 20906320, - 20906336, - 20906352 + 20906112, + 20906128, + 20906144, + 20927920, + 20927696, + 20906160, + 20906176, + 20906192, + 20906208, + 20906224 ], "bases": [ { @@ -119846,18 +119846,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31774992, + "vtable_address": 31774928, "methods": [ - 21929680, - 21929696, - 21929712, - 21948288, - 21943824, - 21929728, - 21929744, - 21929760, - 21929776, - 21929792 + 21929552, + 21929568, + 21929584, + 21948160, + 21943696, + 21929600, + 21929616, + 21929632, + 21929648, + 21929664 ], "bases": [ { @@ -119890,18 +119890,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31772416, + "vtable_address": 31772352, "methods": [ - 21929808, - 21929824, - 21929840, - 21943152, - 21943712, - 21929856, - 21929872, - 21929888, - 21929904, - 21929920 + 21929680, + 21929696, + 21929712, + 21943024, + 21943584, + 21929728, + 21929744, + 21929760, + 21929776, + 21929792 ], "bases": [ { @@ -119934,7 +119934,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30541328, + "vtable_address": 30541264, "methods": [ 12860944, 12860960, @@ -119978,18 +119978,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31373184, + "vtable_address": 31373120, "methods": [ - 18817424, - 18817440, - 18817456, - 18844832, - 18843616, - 18817472, - 18817488, - 18817504, - 18817520, - 18817536 + 18817296, + 18817312, + 18817328, + 18844704, + 18843488, + 18817344, + 18817360, + 18817376, + 18817392, + 18817408 ], "bases": [ { @@ -120022,18 +120022,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31370320, + "vtable_address": 31370256, "methods": [ - 19248704, - 18818016, - 18975456, - 18843168, - 18843392, - 18818032, - 18818048, - 18818064, - 18818080, - 18818096 + 19248576, + 18817888, + 18975328, + 18843040, + 18843264, + 18817904, + 18817920, + 18817936, + 18817952, + 18817968 ], "bases": [ { @@ -120066,18 +120066,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31370928, + "vtable_address": 31370864, "methods": [ - 18817904, - 18817920, - 18828560, - 18843072, - 18843504, - 18817936, - 18817952, - 18817968, - 18817984, - 18818000 + 18817776, + 18817792, + 18828432, + 18842944, + 18843376, + 18817808, + 18817824, + 18817840, + 18817856, + 18817872 ], "bases": [ { @@ -120110,18 +120110,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31369320, + "vtable_address": 31369256, "methods": [ - 18818112, - 18818128, - 18818144, - 18844384, - 18843280, - 18818160, - 18818176, - 18818192, - 18818208, - 18818224 + 18817984, + 18818000, + 18818016, + 18844256, + 18843152, + 18818032, + 18818048, + 18818064, + 18818080, + 18818096 ], "bases": [ { @@ -120154,7 +120154,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30541936, + "vtable_address": 30541872, "methods": [ 12860816, 12860832, @@ -120198,18 +120198,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31280568, + "vtable_address": 31280504, "methods": [ - 17343712, - 17343728, - 17343744, + 17343584, + 17343600, + 17343616, + 17349840, 17349968, - 17350096, - 17343760, - 17343776, - 17343792, - 17343808, - 17343824 + 17343632, + 17343648, + 17343664, + 17343680, + 17343696 ], "bases": [ { @@ -120242,7 +120242,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 30544056, + "vtable_address": 30543992, "methods": [ 12860512, 12860528, @@ -120286,18 +120286,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 31374304, + "vtable_address": 31374240, "methods": [ - 18817280, - 18817328, - 18818384, - 18842976, - 18843728, - 18817344, - 18817360, - 18817376, - 18817392, - 18817408 + 18817152, + 18817200, + 18818256, + 18842848, + 18843600, + 18817216, + 18817232, + 18817248, + 18817264, + 18817280 ], "bases": [ { @@ -120330,18 +120330,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31660256, - "methods": [ - 21087760, - 21087904, - 21087856, - 21092592, - 21092496, - 21068560, - 21068576, - 21068592, - 21068608, - 21068624 + "vtable_address": 31660192, + "methods": [ + 21087632, + 21087776, + 21087728, + 21092464, + 21092368, + 21068432, + 21068448, + 21068464, + 21068480, + 21068496 ], "bases": [ { @@ -120374,7 +120374,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30180608, + "vtable_address": 30180544, "methods": [ 9900576, 9900672, @@ -120418,18 +120418,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31376296, + "vtable_address": 31376232, "methods": [ - 18816880, - 18838048, - 18816896, - 18842880, - 18842704, - 18816912, - 18816928, - 18816944, - 18816960, - 18816976 + 18816752, + 18837920, + 18816768, + 18842752, + 18842576, + 18816784, + 18816800, + 18816816, + 18816832, + 18816848 ], "bases": [ { @@ -120462,7 +120462,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30234184, + "vtable_address": 30234120, "methods": [ 10440848, 10440128, @@ -120506,7 +120506,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30279448, + "vtable_address": 30279384, "methods": [ 11415104, 11406240, @@ -120550,7 +120550,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30182344, + "vtable_address": 30182280, "methods": [ 9901680, 9900816, @@ -120594,7 +120594,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30275928, + "vtable_address": 30275864, "methods": [ 11248848, 11249120, @@ -120638,7 +120638,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30166768, + "vtable_address": 30166704, "methods": [ 9838464, 9885936, @@ -120682,7 +120682,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30185512, + "vtable_address": 30185448, "methods": [ 9895136, 9900960, @@ -120726,7 +120726,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30183688, + "vtable_address": 30183624, "methods": [ 9895232, 9900864, @@ -120770,7 +120770,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30185608, + "vtable_address": 30185544, "methods": [ 9895024, 9898544, @@ -120814,18 +120814,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31271296, + "vtable_address": 31271232, "methods": [ - 17244320, - 17244432, - 17244512, - 17226128, - 17226032, - 17223376, - 17223392, - 17223408, - 17223424, - 17223440 + 17244192, + 17244304, + 17244384, + 17226000, + 17225904, + 17223248, + 17223264, + 17223280, + 17223296, + 17223312 ], "bases": [ { @@ -120858,7 +120858,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30206448, + "vtable_address": 30206384, "methods": [ 10071680, 10067072, @@ -120902,18 +120902,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31061696, - "methods": [ - 16834000, - 16735360, - 16834096, - 16736576, - 16736480, - 16730464, - 16730480, - 16730496, - 16730512, - 16730528 + "vtable_address": 31061632, + "methods": [ + 16833872, + 16735232, + 16833968, + 16736448, + 16736352, + 16730336, + 16730352, + 16730368, + 16730384, + 16730400 ], "bases": [ { @@ -120946,18 +120946,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31431992, + "vtable_address": 31431928, "methods": [ - 19843136, - 19843472, - 19844496, - 19846800, - 19846448, - 19831392, - 19831408, - 19831424, - 19831440, - 19831456 + 19843008, + 19843344, + 19844368, + 19846672, + 19846320, + 19831264, + 19831280, + 19831296, + 19831312, + 19831328 ], "bases": [ { @@ -120990,7 +120990,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30138720, + "vtable_address": 30138656, "methods": [ 9643936, 9644080, @@ -121034,18 +121034,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31705400, + "vtable_address": 31705336, "methods": [ - 21376528, - 21376480, - 21376432, - 21382416, - 21382144, - 21368496, - 21368512, - 21368528, - 21368544, - 21368560 + 21376400, + 21376352, + 21376304, + 21382288, + 21382016, + 21368368, + 21368384, + 21368400, + 21368416, + 21368432 ], "bases": [ { @@ -121078,7 +121078,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30513960, + "vtable_address": 30513896, "methods": [ 12451824, 12452880, @@ -121122,18 +121122,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31326912, + "vtable_address": 31326848, "methods": [ - 18408800, - 18408944, - 18408896, - 18415808, - 18415568, - 18395776, - 18395792, - 18395808, - 18395824, - 18395840 + 18408672, + 18408816, + 18408768, + 18415680, + 18415440, + 18395648, + 18395664, + 18395680, + 18395696, + 18395712 ], "bases": [ { @@ -121166,7 +121166,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30181704, + "vtable_address": 30181640, "methods": [ 9902496, 9900720, @@ -121210,18 +121210,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31307960, + "vtable_address": 31307896, "methods": [ - 18018704, - 18019504, - 18029136, - 18022496, - 18022256, - 18007280, - 18007296, - 18007312, - 18007344, - 18007360 + 18018576, + 18019376, + 18029008, + 18022368, + 18022128, + 18007152, + 18007168, + 18007184, + 18007216, + 18007232 ], "bases": [ { @@ -121254,18 +121254,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31457152, + "vtable_address": 31457088, "methods": [ - 20164384, - 20164336, - 20164432, - 20170800, - 20170640, - 20156096, - 20156112, - 20156128, - 20156144, - 20156160 + 20164256, + 20164208, + 20164304, + 20170672, + 20170512, + 20155968, + 20155984, + 20156000, + 20156016, + 20156032 ], "bases": [ { @@ -121298,7 +121298,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30517912, + "vtable_address": 30517848, "methods": [ 12434032, 12446608, @@ -121342,7 +121342,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30362400, + "vtable_address": 30362336, "methods": [ 12028816, 12029152, @@ -121386,18 +121386,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31389048, + "vtable_address": 31388984, "methods": [ - 19302544, - 19302496, - 19302448, - 19306544, - 19306368, - 19297632, - 19297648, - 19297664, - 19297680, - 19297696 + 19302416, + 19302368, + 19302320, + 19306416, + 19306240, + 19297504, + 19297520, + 19297536, + 19297552, + 19297568 ], "bases": [ { @@ -121430,18 +121430,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31767824, + "vtable_address": 31767760, "methods": [ - 21948976, - 21940928, - 22115360, - 21942576, - 21942320, - 21929936, - 21929952, - 21929968, - 21929984, - 21930000 + 21948848, + 21940800, + 22115232, + 21942448, + 21942192, + 21929808, + 21929824, + 21929840, + 21929856, + 21929872 ], "bases": [ { @@ -121474,7 +121474,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30374096, + "vtable_address": 30374032, "methods": [ 12105888, 12106784, @@ -121518,18 +121518,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31539000, - "methods": [ - 20411248, - 20411584, - 20411536, - 20418256, - 20417584, - 20403440, - 20403456, - 20403472, - 20403488, - 20403504 + "vtable_address": 31538936, + "methods": [ + 20411120, + 20411456, + 20411408, + 20418128, + 20417456, + 20403312, + 20403328, + 20403344, + 20403360, + 20403376 ], "bases": [ { @@ -121562,18 +121562,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31355296, + "vtable_address": 31355232, "methods": [ - 18408848, - 18408992, - 18518880, - 18415904, - 18415648, - 18395696, - 18395712, - 18395728, - 18395744, - 18395760 + 18408720, + 18408864, + 18518752, + 18415776, + 18415520, + 18395568, + 18395584, + 18395600, + 18395616, + 18395632 ], "bases": [ { @@ -121606,18 +121606,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31355904, + "vtable_address": 31355840, "methods": [ - 18405088, - 18405040, - 18404992, - 18416000, - 18415728, - 18395616, - 18395632, - 18395648, - 18395664, - 18395680 + 18404960, + 18404912, + 18404864, + 18415872, + 18415600, + 18395488, + 18395504, + 18395520, + 18395536, + 18395552 ], "bases": [ { @@ -121650,18 +121650,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31548168, + "vtable_address": 31548104, "methods": [ - 20652256, - 20642080, - 20652672, - 20648160, - 20647840, - 20621088, - 20621104, - 20621120, - 20621136, - 20621152 + 20652128, + 20641952, + 20652544, + 20648032, + 20647712, + 20620960, + 20620976, + 20620992, + 20621008, + 20621024 ], "bases": [ { @@ -121694,18 +121694,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31552600, + "vtable_address": 31552536, "methods": [ - 20639856, - 20639808, - 20639760, - 20648256, - 20647920, - 20620512, - 20620528, - 20620544, - 20620560, - 20620576 + 20639728, + 20639680, + 20639632, + 20648128, + 20647792, + 20620384, + 20620400, + 20620416, + 20620432, + 20620448 ], "bases": [ { @@ -121738,18 +121738,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31880656, + "vtable_address": 31880592, "methods": [ - 22552592, - 22552736, - 22552688, - 22555408, - 22555312, - 22546480, - 22546496, - 22546512, - 22546528, - 22546544 + 22552464, + 22552608, + 22552560, + 22555280, + 22555184, + 22546352, + 22546368, + 22546384, + 22546400, + 22546416 ], "bases": [ { @@ -121782,18 +121782,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31703352, - "methods": [ - 21377472, - 21378048, - 21518544, - 21382224, - 21381984, - 21368656, - 21368672, - 21368688, - 21368720, - 21368736 + "vtable_address": 31703288, + "methods": [ + 21377344, + 21377920, + 21518416, + 21382096, + 21381856, + 21368528, + 21368544, + 21368560, + 21368592, + 21368608 ], "bases": [ { @@ -121826,18 +121826,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31908432, + "vtable_address": 31908368, "methods": [ - 23747792, - 23747936, - 23747888, - 23749280, - 23749184, - 23741712, - 23741728, - 23741744, - 23741760, - 23741776 + 23747728, + 23747872, + 23747824, + 23749216, + 23749120, + 23741648, + 23741664, + 23741680, + 23741696, + 23741712 ], "bases": [ { @@ -121870,18 +121870,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31435200, - "methods": [ - 19842832, - 19842784, - 19842736, - 19846896, - 19846528, - 19831312, - 19831328, - 19831344, - 19831360, - 19831376 + "vtable_address": 31435136, + "methods": [ + 19842704, + 19842656, + 19842608, + 19846768, + 19846400, + 19831184, + 19831200, + 19831216, + 19831232, + 19831248 ], "bases": [ { @@ -121914,18 +121914,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31375696, + "vtable_address": 31375632, "methods": [ - 18817040, - 18817056, + 18816912, + 18816928, + 18816944, + 18816960, + 18817024, 18817072, 18817088, - 18817152, - 18817200, - 18817216, - 18817232, - 18817248, - 18817264 + 18817104, + 18817120, + 18817136 ], "bases": [ { @@ -121958,18 +121958,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31387544, + "vtable_address": 31387480, "methods": [ - 19304304, - 19304400, - 19304352, - 19306448, - 19306288, - 19297776, - 19297792, - 19297808, - 19297824, - 19297840 + 19304176, + 19304272, + 19304224, + 19306320, + 19306160, + 19297648, + 19297664, + 19297680, + 19297696, + 19297712 ], "bases": [ { @@ -122002,18 +122002,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31395968, + "vtable_address": 31395904, "methods": [ - 19466384, - 19466528, - 19466480, - 19468112, - 19468016, - 19464928, - 19464944, - 19464960, - 19464976, - 19464992 + 19466256, + 19466400, + 19466352, + 19467984, + 19467888, + 19464800, + 19464816, + 19464832, + 19464848, + 19464864 ], "bases": [ { @@ -122046,18 +122046,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31704712, - "methods": [ - 21377520, - 21378144, - 21378096, - 21382320, - 21382064, - 21368576, - 21368592, - 21368608, - 21368624, - 21368640 + "vtable_address": 31704648, + "methods": [ + 21377392, + 21378016, + 21377968, + 21382192, + 21381936, + 21368448, + 21368464, + 21368480, + 21368496, + 21368512 ], "bases": [ { @@ -122090,18 +122090,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31823344, + "vtable_address": 31823280, "methods": [ - 22282304, - 22282256, - 22282208, - 22296656, - 22296384, - 22265168, - 22265184, - 22265200, - 22265216, - 22265232 + 22282176, + 22282128, + 22282080, + 22296528, + 22296256, + 22265040, + 22265056, + 22265072, + 22265088, + 22265104 ], "bases": [ { @@ -122134,18 +122134,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31751936, + "vtable_address": 31751872, "methods": [ + 21940576, + 21940752, 21940704, - 21940880, - 21940832, - 21942480, - 21942240, - 21930160, - 21930176, - 21930192, - 21930208, - 21930224 + 21942352, + 21942112, + 21930032, + 21930048, + 21930064, + 21930080, + 21930096 ], "bases": [ { @@ -122178,18 +122178,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31309240, - "methods": [ - 18018800, - 18019600, - 18019552, - 18022592, - 18022336, - 18007200, - 18007216, - 18007232, - 18007248, - 18007264 + "vtable_address": 31309176, + "methods": [ + 18018672, + 18019472, + 18019424, + 18022464, + 18022208, + 18007072, + 18007088, + 18007104, + 18007120, + 18007136 ], "bases": [ { @@ -122222,7 +122222,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30423128, + "vtable_address": 30423064, "methods": [ 12210144, 12210240, @@ -122266,18 +122266,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31430488, - "methods": [ - 19843040, - 19843328, - 19843280, - 19846608, - 19846288, - 19831552, - 19831568, - 19831584, - 19831600, - 19831616 + "vtable_address": 31430424, + "methods": [ + 19842912, + 19843200, + 19843152, + 19846480, + 19846160, + 19831424, + 19831440, + 19831456, + 19831472, + 19831488 ], "bases": [ { @@ -122310,7 +122310,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30531112, + "vtable_address": 30531048, "methods": [ 12887936, 12888144, @@ -122354,18 +122354,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31275824, + "vtable_address": 31275760, "methods": [ - 17257184, - 17257328, - 17257280, - 17259248, - 17259152, - 17254192, - 17254208, - 17254224, - 17254240, - 17254256 + 17257056, + 17257200, + 17257152, + 17259120, + 17259024, + 17254064, + 17254080, + 17254096, + 17254112, + 17254128 ], "bases": [ { @@ -122398,7 +122398,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30249664, + "vtable_address": 30249600, "methods": [ 10440080, 10439680, @@ -122442,18 +122442,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31314272, - "methods": [ - 18015136, - 18015088, - 18015040, - 18022688, - 18022416, - 18006976, - 18006992, - 18007008, - 18007024, - 18007040 + "vtable_address": 31314208, + "methods": [ + 18015008, + 18014960, + 18014912, + 18022560, + 18022288, + 18006848, + 18006864, + 18006880, + 18006896, + 18006912 ], "bases": [ { @@ -122486,18 +122486,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31545944, + "vtable_address": 31545880, "methods": [ - 20641680, - 20642032, - 20641984, - 20648064, - 20647760, - 20621168, - 20621184, - 20621200, - 20621216, - 20621232 + 20641552, + 20641904, + 20641856, + 20647936, + 20647632, + 20621040, + 20621056, + 20621072, + 20621088, + 20621104 ], "bases": [ { @@ -122530,7 +122530,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30531768, + "vtable_address": 30531704, "methods": [ 12880192, 12888240, @@ -122574,18 +122574,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31004248, + "vtable_address": 31004184, "methods": [ - 16603840, - 16603936, - 16603888, - 16604816, - 16604736, - 16600128, - 16600144, - 16600160, - 16600176, - 16600192 + 16603712, + 16603808, + 16603760, + 16604688, + 16604608, + 16600000, + 16600016, + 16600032, + 16600048, + 16600064 ], "bases": [ { @@ -122618,18 +122618,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31776592, + "vtable_address": 31776528, "methods": [ - 21936800, - 21936752, - 21936704, - 21945136, - 21945056, - 21929520, - 21929536, - 21929552, - 21929568, - 21929584 + 21936672, + 21936624, + 21936576, + 21945008, + 21944928, + 21929392, + 21929408, + 21929424, + 21929440, + 21929456 ], "bases": [ { @@ -122662,18 +122662,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31775600, - "methods": [ - 21940752, - 21941024, - 21940976, - 21942672, - 21942400, - 21929600, - 21929616, - 21929632, - 21929648, - 21929664 + "vtable_address": 31775536, + "methods": [ + 21940624, + 21940896, + 21940848, + 21942544, + 21942272, + 21929472, + 21929488, + 21929504, + 21929520, + 21929536 ], "bases": [ { @@ -122706,7 +122706,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30533072, + "vtable_address": 30533008, "methods": [ 12888832, 12880144, @@ -122750,18 +122750,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31431096, + "vtable_address": 31431032, "methods": [ - 19843088, - 19843424, - 19843376, - 19846704, - 19846368, - 19831472, - 19831488, - 19831504, - 19831520, - 19831536 + 19842960, + 19843296, + 19843248, + 19846576, + 19846240, + 19831344, + 19831360, + 19831376, + 19831392, + 19831408 ], "bases": [ { @@ -122794,18 +122794,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31802928, + "vtable_address": 31802864, "methods": [ - 22284752, - 22284992, - 22284944, - 22296464, - 22296224, - 22265328, - 22265344, - 22265360, - 22265376, - 22265392 + 22284624, + 22284864, + 22284816, + 22296336, + 22296096, + 22265200, + 22265216, + 22265232, + 22265248, + 22265264 ], "bases": [ { @@ -122838,18 +122838,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31822144, + "vtable_address": 31822080, "methods": [ - 22284800, - 22285088, - 22285040, - 22296560, - 22296304, - 22265248, - 22265264, - 22265280, - 22265296, - 22265312 + 22284672, + 22284960, + 22284912, + 22296432, + 22296176, + 22265120, + 22265136, + 22265152, + 22265168, + 22265184 ], "bases": [ { @@ -122882,18 +122882,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31311424, + "vtable_address": 31311360, "methods": [ - 18022128, - 18019648, - 18022192, - 18025936, - 18025776, - 18007056, - 18007072, - 18007088, - 18007104, - 18007120 + 18022000, + 18019520, + 18022064, + 18025808, + 18025648, + 18006928, + 18006944, + 18006960, + 18006976, + 18006992 ], "bases": [ { @@ -122926,18 +122926,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 31468096, - "methods": [ - 20162704, - 20162864, - 20162752, - 20170896, - 20170720, - 20155760, - 20155776, - 20155792, - 20155808, - 20155824 + "vtable_address": 31468032, + "methods": [ + 20162576, + 20162736, + 20162624, + 20170768, + 20170592, + 20155632, + 20155648, + 20155664, + 20155680, + 20155696 ], "bases": [ { @@ -122970,7 +122970,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 30159760, + "vtable_address": 30159696, "methods": [ 9706576, 9706672, @@ -123014,33 +123014,33 @@ }, { "type_name": "CGameText", - "vtable_address": 31624384, + "vtable_address": 31624320, "methods": [ 13522144, - 20911296, - 20911328, - 18377504, - 26419168, - 18094240, - 18010864, - 20964208, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20911168, + 20911200, + 18377376, + 26419104, + 18094112, + 18010736, + 20964080, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -123051,21 +123051,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905344, - 20913408, - 20906880, + 26427360, + 20905216, + 20913280, + 20906752, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -123089,83 +123089,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20967872, + 20967744, 9637216, 9636096, 11746864, @@ -123173,16 +123173,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -123203,7 +123203,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -123216,28 +123216,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -123248,7 +123248,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -123259,35 +123259,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -123353,13 +123353,13 @@ }, { "type_name": "CGameTimescale", - "vtable_address": 31548264, + "vtable_address": 31548200, "methods": [ - 20617024, + 20616896, 9634384, - 20617104, + 20616976, 9634416, - 20617184, + 20617056, 9634448, 9634464, 9634480, @@ -123371,7 +123371,7 @@ 9634576, 9634592, 9634608, - 20617184, + 20617056, 9634640, 9634656, 9634672, @@ -123386,7 +123386,7 @@ 9634816, 9634832, 9634848, - 20656176, + 20656048, 9634880, 9634896, 9634912, @@ -123411,12 +123411,12 @@ 9635216, 9635232, 9635248, - 20616976, + 20616848, 9635280, - 20616960, - 20627872, - 20627888, - 20616944 + 20616832, + 20627744, + 20627760, + 20616816 ], "bases": [ { @@ -123449,32 +123449,32 @@ }, { "type_name": "CGenericConstraint", - "vtable_address": 31681144, + "vtable_address": 31681080, "methods": [ 13506768, - 21114000, - 21114288, + 21113872, + 21114160, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21250896, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21250768, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -123486,21 +123486,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066656, - 21072672, - 21069792, + 26427360, + 21066528, + 21072544, + 21069664, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -123524,83 +123524,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -123608,16 +123608,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -123638,7 +123638,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -123651,28 +123651,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -123683,7 +123683,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -123694,11 +123694,11 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21316368, - 21073664, - 21083072 + 19857552, + 21244944, + 21316240, + 21073536, + 21082944 ], "bases": [ { @@ -123785,12 +123785,12 @@ }, { "type_name": "CGenericConstraint", - "vtable_address": 31683144, + "vtable_address": 31683080, "methods": [ - 21113712, - 21114592, - 21110128, - 21065552 + 21113584, + 21114464, + 21110000, + 21065424 ], "bases": [ { @@ -123877,7 +123877,7 @@ }, { "type_name": "CGenericExprPart", - "vtable_address": 31988520, + "vtable_address": 31988456, "methods": [], "bases": [], "model": { @@ -123888,14 +123888,14 @@ }, { "type_name": "CGenericExpr_Binary", - "vtable_address": 31988600, + "vtable_address": 31988536, "methods": [ - 25343408, - 25347616, - 25346048, - 25343488, - 25343584, - 25343600 + 25343344, + 25347552, + 25345984, + 25343424, + 25343520, + 25343536 ], "bases": [ { @@ -123917,14 +123917,14 @@ }, { "type_name": "CGenericExpr_BoolLiteral", - "vtable_address": 31988920, + "vtable_address": 31988856, "methods": [ - 25344032, - 25345616, - 25345248, - 25343936, - 25343296, - 25343312 + 25343968, + 25345552, + 25345184, + 25343872, + 25343232, + 25343248 ], "bases": [ { @@ -123946,14 +123946,14 @@ }, { "type_name": "CGenericExpr_FloatLiteral", - "vtable_address": 31988792, + "vtable_address": 31988728, "methods": [ - 25344064, - 25345648, - 25345328, - 25343872, - 25343296, - 25343312 + 25344000, + 25345584, + 25345264, + 25343808, + 25343232, + 25343248 ], "bases": [ { @@ -123975,23 +123975,23 @@ }, { "type_name": "CGenericExpr_FunctionCall", - "vtable_address": 31989112, + "vtable_address": 31989048, "methods": [ - 25347952, - 25347792, - 25345360, - 25345008, - 25347424, - 25344000, - 25243264, - 25243280, - 25356960, - 25351200, - 25352160, - 25353824, - 25355552, - 25356352, - 25348928 + 25347888, + 25347728, + 25345296, + 25344944, + 25347360, + 25343936, + 25243200, + 25243216, + 25356896, + 25351136, + 25352096, + 25353760, + 25355488, + 25356288, + 25348864 ], "bases": [ { @@ -124013,14 +124013,14 @@ }, { "type_name": "CGenericExpr_IntLiteral", - "vtable_address": 31988856, + "vtable_address": 31988792, "methods": [ - 25344048, - 25345632, - 25345296, - 25343904, - 25343296, - 25343312 + 25343984, + 25345568, + 25345232, + 25343840, + 25343232, + 25343248 ], "bases": [ { @@ -124042,14 +124042,14 @@ }, { "type_name": "CGenericExpr_Property", - "vtable_address": 31989048, + "vtable_address": 31988984, "methods": [ - 25345728, - 25347536, - 25345424, - 25344832, - 25343968, - 25343984 + 25345664, + 25347472, + 25345360, + 25344768, + 25343904, + 25343920 ], "bases": [ { @@ -124071,14 +124071,14 @@ }, { "type_name": "CGenericExpr_StringLiteral", - "vtable_address": 31988728, + "vtable_address": 31988664, "methods": [ - 25345888, - 25345920, - 25345552, - 25347216, - 25343296, - 25343312 + 25345824, + 25345856, + 25345488, + 25347152, + 25343232, + 25343248 ], "bases": [ { @@ -124100,14 +124100,14 @@ }, { "type_name": "CGenericExpr_TernaryConditional", - "vtable_address": 31988664, + "vtable_address": 31988600, "methods": [ - 25343616, - 25347696, - 25345984, - 25343712, - 25343824, - 25343840 + 25343552, + 25347632, + 25345920, + 25343648, + 25343760, + 25343776 ], "bases": [ { @@ -124129,14 +124129,14 @@ }, { "type_name": "CGenericExpr_Unary", - "vtable_address": 31988536, + "vtable_address": 31988472, "methods": [ - 25343328, - 25345664, - 25346880, - 25347376, - 25343376, - 25343392 + 25343264, + 25345600, + 25346816, + 25347312, + 25343312, + 25343328 ], "bases": [ { @@ -124158,14 +124158,14 @@ }, { "type_name": "CGenericExpr_VariableReference", - "vtable_address": 31988984, + "vtable_address": 31988920, "methods": [ - 25345792, - 25345824, - 25345488, - 25347072, - 25343296, - 25343312 + 25345728, + 25345760, + 25345424, + 25347008, + 25343232, + 25343248 ], "bases": [ { @@ -124187,13 +124187,13 @@ }, { "type_name": "CGlobalState", - "vtable_address": 31552696, + "vtable_address": 31552632, "methods": [ 9634368, 9634384, 9634400, - 20618736, - 20618816, + 20618608, + 20618688, 9634448, 9634464, 9634480, @@ -124204,10 +124204,10 @@ 9634560, 9634576, 9634592, - 20618752, - 20618768, - 20618784, - 20618800, + 20618624, + 20618640, + 20618656, + 20618672, 9634672, 9634688, 9634704, @@ -124245,28 +124245,28 @@ 9635216, 9635232, 9635248, - 20618704, + 20618576, 9635280, - 20618688, - 20654992, + 20618560, 20654864, - 20618672, - 20618832, - 20636912, - 20807680, - 20618880, - 20632960, - 20618896, - 20637056, - 20637136, - 20618944, - 20618992, - 20636992, - 20619040, - 20619056, - 20654752, - 20655120, - 20619072 + 20654736, + 20618544, + 20618704, + 20636784, + 20807552, + 20618752, + 20632832, + 20618768, + 20636928, + 20637008, + 20618816, + 20618864, + 20636864, + 20618912, + 20618928, + 20654624, + 20654992, + 20618944 ], "bases": [ { @@ -124309,24 +124309,24 @@ }, { "type_name": "CGlobalState", - "vtable_address": 31553336, - "methods": [ - 20652368, - 20652464, - 20808064, - 20643552, - 20655648, - 20648000, - 20652112, - 20652192, - 20648032, - 20652416, - 20653040, - 20643568, - 20644080, - 20653552, - 20653648, - 20643168 + "vtable_address": 31553272, + "methods": [ + 20652240, + 20652336, + 20807936, + 20643424, + 20655520, + 20647872, + 20651984, + 20652064, + 20647904, + 20652288, + 20652912, + 20643440, + 20643952, + 20653424, + 20653520, + 20643040 ], "bases": [ { @@ -124369,12 +124369,12 @@ }, { "type_name": "CGlowProperty", - "vtable_address": 31542512, + "vtable_address": 31542448, "methods": [ 12335120, - 20616336, - 18002016, - 20616352 + 20616208, + 18001888, + 20616224 ], "bases": [], "model": { @@ -124385,33 +124385,33 @@ }, { "type_name": "CGradientFog", - "vtable_address": 30343952, + "vtable_address": 30343888, "methods": [ 13506768, 12067456, 12067520, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12048800, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12060400, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12027232, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -124422,12 +124422,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024736, 12096352, 12025760, @@ -124435,8 +124435,8 @@ 12034560, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -124460,83 +124460,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027440, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -124544,16 +124544,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -124574,7 +124574,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -124587,28 +124587,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -124619,7 +124619,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -124630,7 +124630,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -124663,33 +124663,33 @@ }, { "type_name": "CGunTarget", - "vtable_address": 31553480, + "vtable_address": 31553416, "methods": [ 13522144, - 20646544, - 20646688, - 18377504, - 26419168, - 20153552, - 18010864, - 20754256, - 26419632, - 26419200, - 26419200, - 20668176, - 18378912, - 18011056, - 19835392, - 19835328, + 20646416, + 20646560, + 18377376, + 26419104, + 20153424, + 18010736, + 20754128, + 26419568, + 26419136, + 26419136, + 20668048, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -124700,21 +124700,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20619120, - 20633088, - 20623568, + 26427360, + 20618992, + 20632960, + 20623440, 9635312, 13440496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -124735,86 +124735,86 @@ 9635584, 9635600, 9635616, - 20619104, + 20618976, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20642128, - 18042720, + 20642000, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 20662256, - 19833184, + 18014720, + 18211344, + 20662128, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -124822,16 +124822,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -124852,7 +124852,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -124865,28 +124865,28 @@ 9636464, 11871168, 10057552, - 20621568, - 19828576, + 20621440, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -124897,7 +124897,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -124908,35 +124908,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -124991,33 +124991,33 @@ }, { "type_name": "CHEGrenade", - "vtable_address": 31246872, + "vtable_address": 31246808, "methods": [ 13528544, - 17173968, - 17174032, - 18377552, - 18065872, - 16732784, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17173840, + 17173904, + 18377424, + 18065744, + 16732656, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -125028,21 +125028,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172624, - 17176416, - 17174704, + 26427360, + 17172496, + 17176288, + 17174576, 9635312, - 17191488, - 18308160, + 17191360, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -125053,114 +125053,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -125174,47 +125174,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -125222,11 +125222,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -125236,227 +125236,227 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 16732672, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, - 16727344, + 16924176, + 16909216, + 16914016, + 16728448, + 16728464, + 18061024, + 16729216, + 16729120, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16728768, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 16732800, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 16909344, - 16914144, - 16728576, - 16728592, - 18061152, - 16729344, - 16729248, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16728896, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, - 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, 16924400, - 16942560, - 16727600, - 16727616, + 16914384, + 16924272, + 16942432, + 16727472, + 16727488, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 16741824, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, - 16728336, - 16914336, - 16914384, - 16732848, - 16728352, - 15970784, - 16914464, + 16797856, + 16740096, + 16810240, + 16810336, + 16912080, + 17035856, + 16797072, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 16741952, - 17042912, - 10057136, 16728432, - 16728448, - 16797984, - 16740224, - 16810368, - 16810464, - 16912208, - 17035984, - 16797200, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 16910976, - 16733696, - 17091632, - 16732880, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 16911872, + 16910848, + 16733568, + 17091504, + 16732752, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 16911744, 10057152, - 16728960, - 16728624, - 16810304, - 16728912, - 16793088, - 17172608, - 17172592, - 17185408 + 16728832, + 16728496, + 16810176, + 16728784, + 16792960, + 17172480, + 17172464, + 17185280 ], "bases": [ { @@ -125586,14 +125586,14 @@ }, { "type_name": "CHEGrenade", - "vtable_address": 31250600, + "vtable_address": 31250536, "methods": [ - 17174720, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174592, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -125723,10 +125723,10 @@ }, { "type_name": "CHEGrenade", - "vtable_address": 31250664, + "vtable_address": 31250600, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -125856,33 +125856,33 @@ }, { "type_name": "CHEGrenadeProjectile", - "vtable_address": 30321408, + "vtable_address": 30321344, "methods": [ 13528544, 11712944, 11712976, - 16730592, - 18065872, - 16452512, - 18010864, + 16730464, + 18065744, + 16452384, + 18010736, 11712704, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -125893,21 +125893,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11712208, 11713360, 11713056, 9635312, 11717296, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -125919,95 +125919,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16730736, - 16730768, - 19834496, + 16730608, + 16730640, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 15971776, - 19833184, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -126015,17 +126015,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 16816528, - 19828912, - 18013520, + 16816400, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -126045,7 +126045,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -126056,30 +126056,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, - 16798448, - 19828816, - 19835280, + 16798320, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -126090,7 +126090,7 @@ 9636736, 9636752, 9636768, - 16820608, + 16820480, 11742352, 11742320, 11742400, @@ -126101,88 +126101,88 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, 11712016, - 16907168, + 16907040, 16039408, 11729808, 11712032, @@ -126193,9 +126193,9 @@ 11712048, 11723632, 11714752, - 16733456, + 16733328, 11712064, - 16823008, + 16822880, 11712192, 11712176, 11713888 @@ -126307,7 +126307,7 @@ }, { "type_name": "CHEGrenadeProjectile", - "vtable_address": 30324152, + "vtable_address": 30324088, "methods": [ 9837440, 9837456, @@ -126427,53 +126427,53 @@ }, { "type_name": "CHLTVDirector", - "vtable_address": 31555768, + "vtable_address": 31555704, "methods": [ - 20660096, - 20660544, - 20861184, - 20617376, - 20617408, - 20617440, - 20619184, - 20818240, - 20866240, - 20619152, - 20637392, - 20619216, - 20619232, - 20619264, - 20619200, - 20619296, - 20811824, - 20633296, - 9894112, - 20687024, - 20686304, - 20634192, - 20641728, - 20617504, + 20659968, + 20660416, + 20861056, + 20617248, + 20617280, + 20617312, + 20619056, + 20818112, + 20866112, + 20619024, + 20637264, + 20619088, + 20619104, 20619136, - 20866160, - 20733024, - 20866448, + 20619072, + 20619168, + 20811696, + 20633168, + 9894112, + 20686896, + 20686176, + 20634064, + 20641600, + 20617376, + 20619008, + 20866032, + 20732896, + 20866320, 9894144, - 20867056, - 20742672, - 20812288, - 20742640, - 20743968, - 20812784, - 20814096, - 20732800, - 20665376, - 20662528, - 20816496, - 20866544, - 20815632, - 20653104, - 20745072, - 20742880, + 20866928, + 20742544, + 20812160, + 20742512, + 20743840, + 20812656, + 20813968, + 20732672, + 20665248, + 20662400, + 20816368, + 20866416, + 20815504, + 20652976, + 20744944, + 20742752, 9894160 ], "bases": [ @@ -126527,11 +126527,11 @@ }, { "type_name": "CHLTVDirector", - "vtable_address": 31556152, + "vtable_address": 31556088, "methods": [ - 20643248, + 20643120, 9634384, - 20868096, + 20867968, 9634416, 9634432, 9634448, @@ -126545,7 +126545,7 @@ 9634576, 9634592, 9634608, - 20868000, + 20867872, 9634640, 9634656, 9634672, @@ -126560,7 +126560,7 @@ 9634816, 9634832, 9634848, - 20733504, + 20733376, 9634880, 9634896, 9634912, @@ -126585,12 +126585,12 @@ 9635216, 9635232, 9635248, - 20617472, + 20617344, 9635280, - 20617424, + 20617296, + 20660384, 20660512, - 20660640, - 20617392 + 20617264 ], "bases": [ { @@ -126643,28 +126643,28 @@ }, { "type_name": "CHLTVDirector", - "vtable_address": 31556664, - "methods": [ - 20660528, - 20660592, - 20644096, - 20818800, - 20868176, - 20647728, - 20655568, - 20643600, - 20645968, - 20644112, - 20643584, - 20643264, - 20817472, - 20646656, + "vtable_address": 31556600, + "methods": [ + 20660400, + 20660464, + 20643968, + 20818672, + 20868048, + 20647600, + 20655440, + 20643472, + 20645840, + 20643984, + 20643456, + 20643136, + 20817344, + 20646528, 9894128, - 20687904, - 20687008, - 20654672, - 20656512, - 20617520 + 20687776, + 20686880, + 20654544, + 20656384, + 20617392 ], "bases": [ { @@ -126717,14 +126717,14 @@ }, { "type_name": "CHLTVRecipientFilter", - "vtable_address": 31698816, + "vtable_address": 31698752, "methods": [ - 21367088, - 21370368, - 19464368, - 19464352, - 19464384, - 19464400 + 21366960, + 21370240, + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -126757,33 +126757,33 @@ }, { "type_name": "CHandleDummy", - "vtable_address": 31800960, + "vtable_address": 31800896, "methods": [ 13506768, - 22267760, - 22267776, + 22267632, + 22267648, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -126794,21 +126794,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262416, - 22541408, - 22266688, + 26427360, + 22262288, + 22541280, + 22266560, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -126832,83 +126832,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -126916,16 +126916,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -126946,7 +126946,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -126959,28 +126959,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -126991,7 +126991,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -127002,7 +127002,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -127035,33 +127035,33 @@ }, { "type_name": "CHandleTest", - "vtable_address": 31798992, + "vtable_address": 31798928, "methods": [ 13506768, - 22267696, - 22267712, + 22267568, + 22267584, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -127072,21 +127072,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262400, - 22541408, - 22266672, + 26427360, + 22262272, + 22541280, + 22266544, 9635312, - 22353632, + 22353504, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -127110,83 +127110,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22266080, - 19840912, - 22328464, + 22265952, + 19840784, + 22328336, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -127194,16 +127194,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -127224,7 +127224,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -127237,28 +127237,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -127269,7 +127269,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -127280,7 +127280,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -127313,10 +127313,12 @@ }, { "type_name": "CHiddenFieldValuePrinter", - "vtable_address": 31924480, + "vtable_address": 31924416, "methods": [ - 23988000, - 23988016, + 23987936, + 23987952, + 23987104, + 23987136, 23987168, 23987200, 23987232, @@ -127325,13 +127327,11 @@ 23987328, 23987360, 23987392, + 24763900, + 24770084, 23987424, 23987456, - 24763964, - 24770148, - 23987488, - 23987520, - 23987536 + 23987472 ], "bases": [ { @@ -127353,7 +127353,7 @@ }, { "type_name": "CHitboxComponent", - "vtable_address": 30155040, + "vtable_address": 30154976, "methods": [ 9701024, 9699312, @@ -127383,7 +127383,7 @@ }, { "type_name": "CHitboxSystem", - "vtable_address": 30155008, + "vtable_address": 30154944, "methods": [ 9701632, 9719936 @@ -127397,12 +127397,12 @@ }, { "type_name": "CHitgroupDisableListSaveRestoreOps", - "vtable_address": 31310440, + "vtable_address": 31310376, "methods": [ - 18020656, - 18020464, - 18020096, - 18020080, + 18020528, + 18020336, + 18019968, + 18019952, 9634272, 9634288 ], @@ -127437,32 +127437,32 @@ }, { "type_name": "CHostage", - "vtable_address": 30297840, + "vtable_address": 30297776, "methods": [ 11553072, 11523072, 11523504, - 18377552, - 18065872, + 18377424, + 18065744, 11520816, 11519616, 11541792, - 26419632, - 18009552, - 26419200, - 20087728, - 20102320, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 20087600, + 20102192, 18010928, - 19909584, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 19909456, 11747408, - 19848720, - 19829152, + 19848592, + 19829024, 11519632, 9635872, 9665808, @@ -127474,21 +127474,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11518960, 11569664, 11519920, 9635312, 11525136, - 18308160, + 18308032, 9635328, 11519648, - 19871664, + 19871536, 9637008, 9637024, 9837040, @@ -127500,95 +127500,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 11518816, 9636864, 9636912, - 19911552, + 19911424, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 20084576, + 20084448, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19914928, - 19834800, + 19914800, + 19834672, 9635776, 9637088, 11519872, 11521840, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 11528656, - 19911296, + 19911168, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -127596,17 +127596,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, + 19828528, 11521056, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -127626,7 +127626,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11520896, 11753024, 11757136, @@ -127635,33 +127635,33 @@ 9641200, 9637232, 9636448, - 19917232, + 19917104, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 20104112, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, + 19828688, + 19835152, + 19914928, 11750032, 9636656, 9636672, @@ -127671,7 +127671,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -127682,93 +127682,93 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, + 18004096, + 18010896, 11522496, 11531600, - 18004224, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19912528, - 19828528, - 19917152, - 19917696, - 11519792, - 19918560, + 19912400, + 19828400, + 19917024, 19917568, + 11519792, + 19918432, + 19917440, 9897040, 9897024, 9901360, @@ -127776,11 +127776,11 @@ 11518784, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19911280, + 19911152, 9890928, - 19911024, + 19910896, 9890992, 9891008, 9891024, @@ -127788,14 +127788,14 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, 11519760, @@ -127824,7 +127824,7 @@ 11519136, 11519152, 11520752, - 16541616 + 16541488 ], "bases": [ { @@ -127943,7 +127943,7 @@ }, { "type_name": "CHostage", - "vtable_address": 30300944, + "vtable_address": 30300880, "methods": [ 9891504, 9891520, @@ -128067,7 +128067,7 @@ }, { "type_name": "CHostage", - "vtable_address": 30300992, + "vtable_address": 30300928, "methods": [ 11523680, 11522256, @@ -128207,7 +128207,7 @@ }, { "type_name": "CHostage", - "vtable_address": 32229216, + "vtable_address": 32229152, "methods": [], "bases": [], "model": { @@ -128218,7 +128218,7 @@ }, { "type_name": "CHostage::NetworkVar_m_entitySpottedState", - "vtable_address": 30292344, + "vtable_address": 30292280, "methods": [ 9842944, 11528352, @@ -128245,7 +128245,7 @@ }, { "type_name": "CHostage::NetworkVar_m_reuseTimer", - "vtable_address": 30292392, + "vtable_address": 30292328, "methods": [ 11520720, 11528032, @@ -128272,32 +128272,32 @@ }, { "type_name": "CHostageAlias_info_hostage_spawn", - "vtable_address": 30301168, + "vtable_address": 30301104, "methods": [ 11553072, 11523552, 11523600, - 18377552, - 18065872, + 18377424, + 18065744, 11520816, 11519616, 11541792, - 26419632, - 18009552, - 26419200, - 20087728, - 20102320, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 20087600, + 20102192, 18010928, - 19909584, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 19909456, 11747408, - 19848720, - 19829152, + 19848592, + 19829024, 11519632, 9635872, 9665808, @@ -128309,21 +128309,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11519184, 11570864, 11519904, 9635312, 11525136, - 18308160, + 18308032, 9635328, 11519648, - 19871664, + 19871536, 9637008, 9637024, 9837040, @@ -128335,95 +128335,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 11518816, 9636864, 9636912, - 19911552, + 19911424, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 20084576, + 20084448, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19914928, - 19834800, + 19914800, + 19834672, 9635776, 9637088, 11519872, 11521840, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 11528656, - 19911296, + 19911168, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -128431,17 +128431,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, + 19828528, 11521056, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -128461,7 +128461,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11520896, 11753024, 11757136, @@ -128470,33 +128470,33 @@ 9641200, 9637232, 9636448, - 19917232, + 19917104, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 20104112, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, + 19828688, + 19835152, + 19914928, 11750032, 9636656, 9636672, @@ -128506,7 +128506,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -128517,93 +128517,93 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, + 18004096, + 18010896, 11522496, 11531600, - 18004224, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19912528, - 19828528, - 19917152, - 19917696, - 11519792, - 19918560, + 19912400, + 19828400, + 19917024, 19917568, + 11519792, + 19918432, + 19917440, 9897040, 9897024, 9901360, @@ -128611,11 +128611,11 @@ 11518784, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19911280, + 19911152, 9890928, - 19911024, + 19910896, 9890992, 9891008, 9891024, @@ -128623,14 +128623,14 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152, 11519760, @@ -128659,7 +128659,7 @@ 11519136, 11519152, 11520752, - 16541616 + 16541488 ], "bases": [ { @@ -128789,7 +128789,7 @@ }, { "type_name": "CHostageAlias_info_hostage_spawn", - "vtable_address": 30304272, + "vtable_address": 30304208, "methods": [ 9891504, 9891520, @@ -128924,7 +128924,7 @@ }, { "type_name": "CHostageAlias_info_hostage_spawn", - "vtable_address": 30304320, + "vtable_address": 30304256, "methods": [ 11523680, 11522256, @@ -129075,33 +129075,33 @@ }, { "type_name": "CHostageCarriableProp", - "vtable_address": 30295352, + "vtable_address": 30295288, "methods": [ 13526704, 11521104, 11521120, - 18377552, - 18065872, - 18010880, - 18010864, - 18180144, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18377424, + 18065744, + 18010752, + 18010736, + 18180016, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -129112,21 +129112,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11518944, 11570880, 11519936, 9635312, 11525008, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -129138,95 +129138,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -129234,17 +129234,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -129264,7 +129264,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -129275,30 +129275,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -129309,7 +129309,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -129320,72 +129320,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -129440,33 +129440,33 @@ }, { "type_name": "CHostageExpresserShim", - "vtable_address": 30292464, + "vtable_address": 30292400, "methods": [ 13533536, 11520240, 11520256, - 18377552, - 18065872, - 19916192, - 18010864, - 19913728, - 26419632, - 18009552, - 26419200, - 20087728, - 20102320, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18377424, + 18065744, + 19916064, + 18010736, + 19913600, + 26419568, + 18009424, + 26419136, + 20087600, + 20102192, 18010928, - 19909584, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 19909456, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -129477,21 +129477,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11519168, 11569648, 11519888, 9635312, 13441008, - 18308160, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -129503,95 +129503,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19911552, + 19911424, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 20084576, + 20084448, 11763824, - 18009568, - 19828624, - 20051008, - 19912544, - 19833664, + 18009440, + 19828496, + 20050880, + 19912416, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, - 19914928, - 19834800, + 19914800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19922272, - 19911296, + 18014720, + 18211344, + 19922144, + 19911168, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -129599,17 +129599,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -129629,7 +129629,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -129638,33 +129638,33 @@ 9641200, 9637232, 9636448, - 19917232, + 19917104, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 20104112, + 20103984, 9896976, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, - 19915056, + 19828688, + 19835152, + 19914928, 11750032, 9636656, 9636672, @@ -129674,7 +129674,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -129685,93 +129685,93 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 19912528, - 19828528, - 19917152, - 19917696, - 11518768, - 19918560, + 19912400, + 19828400, + 19917024, 19917568, + 11518768, + 19918432, + 19917440, 9897040, 9897024, 9901360, @@ -129779,11 +129779,11 @@ 11518784, 9890880, 9890896, - 19910000, + 19909872, 9890912, - 19911280, + 19911152, 9890928, - 19911024, + 19910896, 9890992, 9891008, 9891024, @@ -129791,14 +129791,14 @@ 9891056, 9891072, 9891088, - 19914784, - 19914128, + 19914656, + 19914000, 10056944, 9891104, 9891120, - 19915504, + 19915376, 9896992, - 19862336, + 19862208, 9891136, 9891152 ], @@ -129877,32 +129877,32 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 31041528, + "vtable_address": 31041464, "methods": [ 11931776, - 16671664, - 16672016, - 18377504, - 26419168, - 20153552, - 18010864, - 16654832, - 26419632, - 26419200, - 26419200, + 16671536, + 16671888, + 18377376, + 26419104, + 20153424, + 18010736, + 16654704, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -129914,21 +129914,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652464, - 16653664, - 16653744, + 26427360, + 16652336, + 16653536, + 16653616, 9635312, - 16670752, - 18308160, + 16670624, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -129952,100 +129952,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, - 16652416, + 16652288, 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -130066,7 +130066,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -130079,28 +130079,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -130111,7 +130111,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -130122,45 +130122,45 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, - 16697376, + 16697248, 11742352, 11749904, 10058464, 11751552, - 16662512, - 16663520 + 16662384, + 16663392 ], "bases": [ { @@ -130247,10 +130247,10 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 31043800, + "vtable_address": 31043736, "methods": [ - 16671840, - 16672224 + 16671712, + 16672096 ], "bases": [ { @@ -130337,32 +130337,32 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 31039264, + "vtable_address": 31039200, "methods": [ 11931776, - 16671600, - 16671616, - 18377504, - 26419168, - 20153552, - 18010864, + 16671472, + 16671488, + 18377376, + 26419104, + 20153424, + 18010736, 11887456, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -130374,21 +130374,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652448, - 16653664, - 16653760, + 26427360, + 16652320, + 16653536, + 16653632, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -130412,100 +130412,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, - 16652416, + 16652288, 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -130526,7 +130526,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -130539,28 +130539,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -130571,7 +130571,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -130582,35 +130582,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -130619,7 +130619,7 @@ 11749904, 10058464, 11751552, - 16652432 + 16652304 ], "bases": [ { @@ -130685,7 +130685,7 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 32575232, + "vtable_address": 32575168, "methods": [], "bases": [], "model": { @@ -130696,7 +130696,7 @@ }, { "type_name": "CInButtonState", - "vtable_address": 30661176, + "vtable_address": 30661112, "methods": [ 13704384 ], @@ -130709,23 +130709,23 @@ }, { "type_name": "CInButtonStatePB", - "vtable_address": 30787256, + "vtable_address": 30787192, "methods": [ 13979936, 13980672, - 24747814, + 24747750, 13974736, 13981520, 13969648, - 24749974, - 24746806, + 24749910, + 24746742, 13970128, 13970480, 13975392, 9474464, 13971328, - 24746716, - 24746982, + 24746652, + 24746918, 13970112, 13970352, 13969632 @@ -130761,33 +130761,33 @@ }, { "type_name": "CIncendiaryGrenade", - "vtable_address": 31258344, + "vtable_address": 31258280, "methods": [ 13528544, - 17174288, - 17174352, - 18377552, - 18065872, - 17176880, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17174160, + 17174224, + 18377424, + 18065744, + 17176752, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -130798,21 +130798,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172800, - 17176416, - 17174816, + 26427360, + 17172672, + 17176288, + 17174688, 9635312, - 17191872, - 18308160, + 17191744, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -130823,114 +130823,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -130944,47 +130944,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -130992,11 +130992,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -131006,227 +131006,227 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 16732672, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, - 16727344, + 16924176, + 16909216, + 16914016, + 16728448, + 16728464, + 18061024, + 16729216, + 16729120, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16728768, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 16732800, + 17172160, + 18004912, + 18036064, 16727424, - 16727440, - 16924336, + 17172624, + 16735136, 16727456, - 16924304, - 16909344, - 16914144, - 16728576, - 16728592, - 18061152, - 16729344, - 16729248, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16728896, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, - 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 17172752, - 16735264, - 16727584, - 16924528, - 16914512, 16924400, - 16942560, - 16727600, - 16727616, + 16914384, + 16924272, + 16942432, + 16727472, + 16727488, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 16741824, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, - 16728336, - 16914336, - 16914384, - 16732848, - 16728352, - 15970784, - 16914464, + 16797856, + 16740096, + 16810240, + 16810336, + 16912080, + 17035856, + 16797072, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 16741952, - 17042912, - 10057136, 16728432, - 16728448, - 16797984, - 16740224, - 16810368, - 16810464, - 16912208, - 17035984, - 16797200, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 16910976, - 16733696, - 17091632, - 16732880, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 16911872, + 16910848, + 16733568, + 17091504, + 16732752, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 16911744, 10057152, - 16728960, - 16728624, - 16810304, - 17172768, - 16793088, - 16728928, - 17172720, - 17188832 + 16728832, + 16728496, + 16810176, + 17172640, + 16792960, + 16728800, + 17172592, + 17188704 ], "bases": [ { @@ -131367,14 +131367,14 @@ }, { "type_name": "CIncendiaryGrenade", - "vtable_address": 31262072, + "vtable_address": 31262008, "methods": [ - 17174832, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174704, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -131515,10 +131515,10 @@ }, { "type_name": "CIncendiaryGrenade", - "vtable_address": 31262136, + "vtable_address": 31262072, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -131659,33 +131659,33 @@ }, { "type_name": "CInferno", - "vtable_address": 30283368, + "vtable_address": 30283304, "methods": [ 13522144, 11473936, 11474160, - 18377504, - 26419168, + 18377376, + 26419104, 11515344, - 18010864, + 18010736, 11515520, - 26419632, - 26419200, - 26419200, - 18377792, + 26419568, + 26419136, + 26419136, + 18377664, 11515040, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -131696,21 +131696,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11402464, 11517840, 11403728, 9635312, 11415696, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -131734,83 +131734,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11402400, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -131818,16 +131818,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -131848,7 +131848,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -131861,28 +131861,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -131893,7 +131893,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -131904,35 +131904,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11402416, 11412032, 11407536, @@ -131985,7 +131985,7 @@ }, { "type_name": "CInferno", - "vtable_address": 32225440, + "vtable_address": 32225376, "methods": [], "bases": [], "model": { @@ -131996,7 +131996,7 @@ }, { "type_name": "CInfernoLOSTraceFilter", - "vtable_address": 30283328, + "vtable_address": 30283264, "methods": [ 11402496, 11404176, @@ -132055,32 +132055,32 @@ }, { "type_name": "CInfoData", - "vtable_address": 30665360, + "vtable_address": 30665296, "methods": [ 13784224, 13704496, 13717840, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 13736848, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -132092,12 +132092,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13703104, 13708768, 13704320, @@ -132105,8 +132105,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -132130,83 +132130,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -132214,16 +132214,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -132244,7 +132244,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -132257,28 +132257,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -132289,7 +132289,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -132300,7 +132300,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -132344,32 +132344,32 @@ }, { "type_name": "CInfoDeathmatchSpawn", - "vtable_address": 30980504, + "vtable_address": 30980440, "methods": [ 13506768, 15983104, 15983136, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16318288, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16318160, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -132381,12 +132381,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15972720, 15983408, 15975456, @@ -132394,8 +132394,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -132419,83 +132419,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -132503,16 +132503,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -132533,7 +132533,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -132546,28 +132546,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -132578,7 +132578,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -132589,7 +132589,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -132655,32 +132655,32 @@ }, { "type_name": "CInfoDynamicShadowHint", - "vtable_address": 30155280, + "vtable_address": 30155216, "methods": [ 11766592, 9701920, 9701952, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 9719552, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 9705888, 9705760, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -132692,12 +132692,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9699376, 9702384, 9701104, @@ -132705,8 +132705,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -132730,83 +132730,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -132814,16 +132814,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -132844,7 +132844,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -132857,28 +132857,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -132889,7 +132889,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -132900,7 +132900,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9701824, 9716416 ], @@ -132946,32 +132946,32 @@ }, { "type_name": "CInfoDynamicShadowHintBox", - "vtable_address": 30157264, + "vtable_address": 30157200, "methods": [ 11766592, 9702016, 9702048, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 9719552, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 9705888, 9705760, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -132983,12 +132983,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9699392, 9702384, 9701088, @@ -132996,8 +132996,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -133021,83 +133021,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -133105,16 +133105,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -133135,7 +133135,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -133148,28 +133148,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -133180,7 +133180,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -133191,7 +133191,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9703616, 9716912 ], @@ -133248,32 +133248,32 @@ }, { "type_name": "CInfoFan", - "vtable_address": 30446992, + "vtable_address": 30446928, "methods": [ 11766592, 12213728, 12213888, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12273344, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12258208, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -133285,12 +133285,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203248, 12208032, 12204736, @@ -133298,8 +133298,8 @@ 12238176, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -133323,83 +133323,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -133407,16 +133407,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -133437,7 +133437,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -133450,28 +133450,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -133482,7 +133482,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -133493,7 +133493,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -133537,32 +133537,32 @@ }, { "type_name": "CInfoGameEventProxy", - "vtable_address": 31419008, + "vtable_address": 31418944, "methods": [ 11766592, - 19543056, - 19543088, + 19542928, + 19542960, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 19542560, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 19542432, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -133574,21 +133574,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19512240, - 19543152, - 19522096, + 26427360, + 19512112, + 19543024, + 19521968, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -133612,83 +133612,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19542656, + 19542528, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -133696,16 +133696,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -133726,7 +133726,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -133739,28 +133739,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -133771,7 +133771,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -133782,7 +133782,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -133826,32 +133826,32 @@ }, { "type_name": "CInfoInstructorHintBombTargetA", - "vtable_address": 31035296, + "vtable_address": 31035232, "methods": [ 11766592, - 16654928, - 16654960, + 16654800, + 16654832, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16654784, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16654656, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -133863,21 +133863,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652384, - 16655216, - 16653712, + 26427360, + 16652256, + 16655088, + 16653584, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -133901,83 +133901,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16656576, + 16656448, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -133985,16 +133985,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -134015,7 +134015,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -134028,28 +134028,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -134060,7 +134060,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -134071,7 +134071,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -134115,32 +134115,32 @@ }, { "type_name": "CInfoInstructorHintBombTargetB", - "vtable_address": 31037264, + "vtable_address": 31037200, "methods": [ 11766592, - 16655024, - 16655056, + 16654896, + 16654928, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16654784, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16654656, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -134152,21 +134152,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652400, - 16655216, - 16653728, + 26427360, + 16652272, + 16655088, + 16653600, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -134190,83 +134190,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16656560, + 16656432, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -134274,16 +134274,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -134304,7 +134304,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -134317,28 +134317,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -134349,7 +134349,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -134360,7 +134360,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -134404,32 +134404,32 @@ }, { "type_name": "CInfoInstructorHintHostageRescueZone", - "vtable_address": 31043832, + "vtable_address": 31043768, "methods": [ 11766592, - 16655120, - 16655152, + 16654992, + 16655024, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 16655232, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 16655104, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -134441,21 +134441,310 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652480, - 16655216, - 16653776, + 26427360, + 16652352, + 16655088, + 16653648, 9635312, - 16670880, + 16670752, + 11860496, + 9635328, + 19919104, + 19871536, + 9635344, + 9635360, + 9635376, + 9635392, + 9635408, + 9635424, + 9635440, + 9635456, + 9635472, + 9635488, + 9635504, + 9635520, + 9635536, + 9635552, + 9635568, + 11742240, + 11742240, + 9635584, + 9635600, + 9635616, + 9635632, + 9636864, + 9636912, + 19840896, + 9603680, + 11742384, + 11742320, + 20115632, + 11747344, + 11791664, + 11763824, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, + 9635648, + 19840688, + 9635664, + 9635680, + 11787440, + 19828736, + 9635696, + 9607568, + 19828752, + 9635712, + 9654336, + 11742336, + 16656416, + 11810544, + 19834368, + 9635728, + 9645040, + 9644128, + 19828416, + 9646112, + 9635744, + 9635760, + 11768784, + 19834672, + 9635776, + 9635792, + 9635808, + 19828752, + 9635824, + 9635840, + 11742320, + 9635856, + 20090560, + 19853632, + 19828832, + 9635888, + 9635904, + 19843056, + 9649504, + 9650096, + 19854960, + 9635920, + 20043120, + 11749776, + 9635936, + 11750000, + 19854832, + 19833056, + 9635952, + 9635968, + 9635984, + 11875584, + 11742256, + 9636000, + 19831504, + 9636016, + 9636032, + 19833968, + 19840016, + 9641232, + 9636048, + 9636064, + 9636080, + 19839920, + 9637216, + 9636096, + 11746864, + 11746960, + 11747104, + 9636112, + 9636128, + 19832832, + 9636144, + 9636160, + 9636176, + 9636816, + 19828528, + 21311568, + 9636192, + 21228944, + 19828784, + 11962368, + 11742368, + 11865936, + 9636208, + 9636224, + 9637248, + 9636240, + 9636256, + 9642208, + 9636272, + 9636288, + 9636304, + 9636320, + 9636336, + 9636352, + 9636368, + 9636384, + 9636400, + 9636416, + 9636432, + 19828944, + 11753680, + 11753024, + 11757136, + 9640192, + 9640160, + 9641200, + 9637232, + 9636448, + 9640128, + 9636464, + 11871168, + 9636480, + 19828432, + 19828448, + 9637264, + 9637280, + 11766432, + 19832944, + 21105888, + 9636496, + 21085344, + 9636512, + 9636528, + 9636544, + 9636560, + 9636576, + 19852912, + 19834016, + 9636592, + 9636608, + 9636624, + 9636640, + 19828688, + 19835152, + 9654048, + 11750032, + 9636656, + 9636672, + 9636688, + 9636704, + 9636720, + 9636736, + 9636752, + 9636768, + 21066752, + 11742352, + 11742320, + 11742400, + 11742464, + 11742416, + 11742432, + 11742416, + 11742448, + 9636784, + 9636800, + 19857552 + ], + "bases": [ + { + "type_name": "CPointEntity", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CBaseEntity", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "CEntityInstance", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "CInfoInstructorHintTarget", + "vtable_address": 31504552, + "methods": [ + 11766592, + 20403392, + 20403488, + 12023536, + 26419104, + 12023584, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, + 9634320, + 11802176, + 11966912, + 19933216, + 19877792, + 11747408, + 19933296, + 19829024, + 9640064, + 9635872, + 9665808, + 9641296, + 9639920, + 9636960, + 11760240, + 9636992, + 9636976, + 9634336, + 9641264, + 19849328, + 9645600, + 9645312, + 9640928, + 9634352, + 26427360, + 20399888, + 20404224, + 20403808, + 9635312, + 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -134479,372 +134768,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 16656544, + 20407360, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, - 9635920, - 20043248, - 11749776, - 9635936, - 11750000, 19854960, - 19833184, - 9635952, - 9635968, - 9635984, - 11875584, - 11742256, - 9636000, - 19831632, - 9636016, - 9636032, - 19834096, - 19840144, - 9641232, - 9636048, - 9636064, - 9636080, - 19840048, - 9637216, - 9636096, - 11746864, - 11746960, - 11747104, - 9636112, - 9636128, - 19832960, - 9636144, - 9636160, - 9636176, - 9636816, - 19828656, - 21311696, - 9636192, - 21229072, - 19828912, - 11962368, - 11742368, - 11865936, - 9636208, - 9636224, - 9637248, - 9636240, - 9636256, - 9642208, - 9636272, - 9636288, - 9636304, - 9636320, - 9636336, - 9636352, - 9636368, - 9636384, - 9636400, - 9636416, - 9636432, - 19829072, - 11753680, - 11753024, - 11757136, - 9640192, - 9640160, - 9641200, - 9637232, - 9636448, - 9640128, - 9636464, - 11871168, - 9636480, - 19828560, - 19828576, - 9637264, - 9637280, - 11766432, - 19833072, - 21106016, - 9636496, - 21085472, - 9636512, - 9636528, - 9636544, - 9636560, - 9636576, - 19853040, - 19834144, - 9636592, - 9636608, - 9636624, - 9636640, - 19828816, - 19835280, - 9654048, - 11750032, - 9636656, - 9636672, - 9636688, - 9636704, - 9636720, - 9636736, - 9636752, - 9636768, - 21066880, - 11742352, - 11742320, - 11742400, - 11742464, - 11742416, - 11742432, - 11742416, - 11742448, - 9636784, - 9636800, - 19857680 - ], - "bases": [ - { - "type_name": "CPointEntity", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CBaseEntity", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "CEntityInstance", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "CInfoInstructorHintTarget", - "vtable_address": 31504616, - "methods": [ - 11766592, - 20403520, - 20403616, - 12023536, - 26419168, - 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, - 9634320, - 11802176, - 11966912, - 19933344, - 19877920, - 11747408, - 19933424, - 19829152, - 9640064, - 9635872, - 9665808, - 9641296, - 9639920, - 9636960, - 11760240, - 9636992, - 9636976, - 9634336, - 9641264, - 19849456, - 9645600, - 9645312, - 9640928, - 9634352, - 26427424, - 20400016, - 20404352, - 20403936, - 9635312, - 11775376, - 11860496, - 9635328, - 19919232, - 19871664, - 9635344, - 9635360, - 9635376, - 9635392, - 9635408, - 9635424, - 9635440, - 9635456, - 9635472, - 9635488, - 9635504, - 9635520, - 9635536, - 9635552, - 9635568, - 11742240, - 11742240, - 9635584, - 9635600, - 9635616, - 9635632, - 9636864, - 9636912, - 19841024, - 9603680, - 11742384, - 11742320, - 20115760, - 11747344, - 11791664, - 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, - 9635648, - 19840816, - 9635664, - 9635680, - 11787440, - 19828864, - 9635696, - 9607568, - 19828880, - 9635712, - 9654336, - 11742336, - 20407488, - 11810544, - 19834496, - 9635728, - 9645040, - 9644128, - 19828544, - 9646112, - 9635744, - 9635760, - 11768784, - 19834800, - 9635776, - 9635792, - 9635808, - 19828880, - 9635824, - 9635840, - 11742320, - 9635856, - 20090688, - 19853760, - 19828960, - 9635888, - 9635904, - 19843184, - 9649504, - 9650096, - 19855088, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -134852,16 +134852,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -134882,7 +134882,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -134895,28 +134895,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -134927,7 +134927,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -134938,7 +134938,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -134982,33 +134982,33 @@ }, { "type_name": "CInfoLadderDismount", - "vtable_address": 30457960, + "vtable_address": 30457896, "methods": [ 13506768, 12336048, 12336064, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, - 20490112, + 20489984, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -135019,12 +135019,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12334304, 12370736, 12335008, @@ -135032,8 +135032,8 @@ 12347856, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -135057,83 +135057,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -135141,16 +135141,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -135171,7 +135171,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -135184,28 +135184,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -135216,7 +135216,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -135227,7 +135227,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -135260,32 +135260,32 @@ }, { "type_name": "CInfoLandmark", - "vtable_address": 31789760, + "vtable_address": 31789696, "methods": [ 11766592, - 22267984, - 22268016, + 22267856, + 22267888, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -135297,21 +135297,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262208, - 22268272, - 22266608, + 26427360, + 22262080, + 22268144, + 22266480, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -135335,83 +135335,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -135419,16 +135419,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -135449,7 +135449,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -135462,28 +135462,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -135494,7 +135494,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -135505,7 +135505,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -135549,32 +135549,32 @@ }, { "type_name": "CInfoOffscreenPanoramaTexture", - "vtable_address": 30141544, + "vtable_address": 30141480, "methods": [ 11766592, 9648720, 9648304, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, 9673936, 9639952, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -135586,12 +135586,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9637376, 9640000, 9639184, @@ -135599,8 +135599,8 @@ 9658032, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -135624,83 +135624,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 9639968, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -135708,16 +135708,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -135738,7 +135738,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -135751,28 +135751,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -135783,7 +135783,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -135794,7 +135794,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -135838,32 +135838,32 @@ }, { "type_name": "CInfoParticleTarget", - "vtable_address": 30382864, + "vtable_address": 30382800, "methods": [ 11766592, 12099184, 12099216, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12098400, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -135875,12 +135875,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096576, 12102800, 12099552, @@ -135888,8 +135888,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -135913,83 +135913,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12102736, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -135997,16 +135997,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -136027,7 +136027,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -136040,28 +136040,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -136072,7 +136072,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -136083,7 +136083,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -136127,32 +136127,32 @@ }, { "type_name": "CInfoPlayerCounterterrorist", - "vtable_address": 30978536, + "vtable_address": 30978472, "methods": [ 13506768, 15983008, 15983040, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16318288, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16318160, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -136164,12 +136164,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15972704, 15983408, 15975440, @@ -136177,8 +136177,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -136202,83 +136202,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -136286,16 +136286,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -136316,7 +136316,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -136329,28 +136329,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -136361,7 +136361,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -136372,7 +136372,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -136438,32 +136438,32 @@ }, { "type_name": "CInfoPlayerStart", - "vtable_address": 31556840, + "vtable_address": 31556776, "methods": [ 11766592, - 20625152, - 20625184, + 20625024, + 20625056, 12023536, - 26419168, - 20633328, - 20141632, - 20621520, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20633200, + 20141504, + 20621392, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20624976, - 19933344, - 19877920, + 20624848, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -136475,21 +136475,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20619312, - 20633344, - 20623584, + 26427360, + 20619184, + 20633216, + 20623456, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -136513,83 +136513,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -136597,16 +136597,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -136627,7 +136627,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -136640,28 +136640,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -136672,7 +136672,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -136683,7 +136683,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -136727,32 +136727,32 @@ }, { "type_name": "CInfoPlayerTerrorist", - "vtable_address": 30976568, + "vtable_address": 30976504, "methods": [ 13506768, 15982912, 15982944, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16318288, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16318160, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -136764,12 +136764,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15972688, 15983408, 15975424, @@ -136777,8 +136777,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -136802,83 +136802,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -136886,16 +136886,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -136916,7 +136916,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -136929,28 +136929,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -136961,7 +136961,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -136972,7 +136972,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -137038,32 +137038,32 @@ }, { "type_name": "CInfoSpawnGroupLandmark", - "vtable_address": 31560968, + "vtable_address": 31560904, "methods": [ 11766592, - 20909744, - 20909776, + 20909616, + 20909648, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -137075,21 +137075,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903344, - 20910032, - 20906368, + 26427360, + 20903216, + 20909904, + 20906240, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -137113,83 +137113,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -137197,16 +137197,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -137227,7 +137227,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -137240,28 +137240,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -137272,7 +137272,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -137283,7 +137283,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -137327,32 +137327,32 @@ }, { "type_name": "CInfoSpawnGroupLoadUnload", - "vtable_address": 31562936, + "vtable_address": 31562872, "methods": [ 13506768, - 20946144, - 20945776, + 20946016, + 20945648, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20907216, - 26419632, - 26419200, - 26419200, - 20914688, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20907088, + 26419568, + 26419136, + 26419136, + 20914560, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -137364,21 +137364,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903312, - 20910048, - 20906384, + 26427360, + 20903184, + 20909920, + 20906256, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -137402,83 +137402,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -137486,16 +137486,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -137516,7 +137516,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -137529,28 +137529,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -137561,7 +137561,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -137572,11 +137572,11 @@ 11742448, 9636784, 9636800, - 19857680, - 20965376, - 20915920, - 20964560, - 20969472 + 19857552, + 20965248, + 20915792, + 20964432, + 20969344 ], "bases": [ { @@ -137631,32 +137631,32 @@ }, { "type_name": "CInfoTarget", - "vtable_address": 30378928, + "vtable_address": 30378864, "methods": [ 11766592, 12099088, 12099120, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12098464, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -137668,12 +137668,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096544, 12102800, 12099520, @@ -137681,8 +137681,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -137706,83 +137706,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12105056, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -137790,16 +137790,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -137820,7 +137820,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -137833,28 +137833,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -137865,7 +137865,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -137876,7 +137876,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -137920,32 +137920,32 @@ }, { "type_name": "CInfoTargetServerOnly", - "vtable_address": 30380896, + "vtable_address": 30380832, "methods": [ 13506768, 12099376, 12099408, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -137957,12 +137957,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096560, 12102816, 12099536, @@ -137970,8 +137970,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -137995,83 +137995,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -138079,16 +138079,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -138109,7 +138109,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -138122,28 +138122,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -138154,7 +138154,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -138165,7 +138165,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -138220,32 +138220,32 @@ }, { "type_name": "CInfoTeleportDestination", - "vtable_address": 31843696, + "vtable_address": 31843632, "methods": [ 11766592, - 22268080, - 22268112, + 22267952, + 22267984, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -138257,21 +138257,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263760, - 22268272, - 22266976, + 26427360, + 22263632, + 22268144, + 22266848, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -138295,83 +138295,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -138379,16 +138379,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -138409,7 +138409,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -138422,28 +138422,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -138454,7 +138454,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -138465,7 +138465,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -138509,33 +138509,33 @@ }, { "type_name": "CInfoVisibilityBox", - "vtable_address": 30384832, + "vtable_address": 30384768, "methods": [ 13506768, 12098832, 12098848, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12162032, - 26419632, - 26419200, - 26419200, - 20139104, + 26419568, + 26419136, + 26419136, + 20138976, 12165072, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12101776, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -138546,12 +138546,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096592, 12202528, 12099568, @@ -138559,8 +138559,8 @@ 12119344, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -138584,83 +138584,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12098544, - 19840912, + 19840784, 12102832, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -138668,16 +138668,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -138698,7 +138698,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -138711,28 +138711,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -138743,7 +138743,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -138754,7 +138754,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -138787,33 +138787,33 @@ }, { "type_name": "CInfoWorldLayer", - "vtable_address": 30386800, + "vtable_address": 30386736, "methods": [ 12187600, 12110864, 12110960, 12023536, - 26419168, + 26419104, 12098144, - 20141632, + 20141504, 12176000, - 26419632, - 26419200, - 26419200, - 20139104, + 26419568, + 26419136, + 26419136, + 20138976, 12110544, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -138824,12 +138824,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096608, 12202528, 12099584, @@ -138837,8 +138837,8 @@ 12119440, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -138862,83 +138862,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12098544, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -138946,16 +138946,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -138976,7 +138976,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -138989,28 +138989,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -139021,7 +139021,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -139032,7 +139032,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -139065,17 +139065,17 @@ }, { "type_name": "CInstancedResponseSystem", - "vtable_address": 31307872, + "vtable_address": 31307808, "methods": [ - 18029008, - 18029056, - 18008736, - 18002816, - 18019904, - 18002832, - 18022064, - 18002864, - 18002848 + 18028880, + 18028928, + 18008608, + 18002688, + 18019776, + 18002704, + 18021936, + 18002736, + 18002720 ], "bases": [ { @@ -139097,32 +139097,32 @@ }, { "type_name": "CInstancedSceneEntity", - "vtable_address": 31760416, + "vtable_address": 31760352, "methods": [ - 22105952, - 22150400, - 22150432, + 22105824, + 22150272, + 22150304, 12023536, - 26419168, - 21935632, - 20141632, - 21976720, - 26419632, - 26419200, - 26419200, - 22110640, - 22039072, - 20141328, - 19835392, - 19835328, + 26419104, + 21935504, + 20141504, + 21976592, + 26419568, + 26419136, + 26419136, + 22110512, + 22038944, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21933344, - 21978992, - 21975136, + 21933216, + 21978864, + 21975008, 11747408, - 22058928, - 19829152, + 22058800, + 19829024, 9640064, 9635872, 9665808, @@ -139134,21 +139134,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21927104, - 21933536, - 21930624, + 26427360, + 21926976, + 21933408, + 21930496, 9635312, - 21983360, + 21983232, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -139172,83 +139172,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21974032, - 21955760, - 19834496, + 21973904, + 21955632, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -139256,16 +139256,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21926896, - 21311696, + 21926768, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -139286,7 +139286,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -139299,28 +139299,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -139331,7 +139331,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -139342,63 +139342,63 @@ 11742448, 9636784, 9636800, - 19857680, - 22074400, - 21959456, - 21978512, - 22255312, - 22070624, - 22171136, - 22076816, - 21940800, - 21961200, - 22111072, - 21961696, - 22171024, - 21974704, - 22059072, - 22072064, - 22072272, - 22055984, - 22087632, - 21931904, - 21931968, - 21931904, - 21931968, - 21931904, - 21931984, - 22156240, - 21932944, - 21927072, - 21927088, - 21935760, - 21935760, - 21935408, - 21935312, - 21932016, - 21932208, - 21932352, - 21932544, - 21934864, - 22072960, - 21934816, - 22191408, - 21931984, - 21933040, - 21933024, - 22057616, - 21935808, - 21949456, - 21948768, - 21927024, - 22247168, - 21933280, - 21962144, - 22190560, - 21969648, - 22190832, - 21927040, - 21927056 + 19857552, + 22074272, + 21959328, + 21978384, + 22255184, + 22070496, + 22171008, + 22076688, + 21940672, + 21961072, + 22110944, + 21961568, + 22170896, + 21974576, + 22058944, + 22071936, + 22072144, + 22055856, + 22087504, + 21931776, + 21931840, + 21931776, + 21931840, + 21931776, + 21931856, + 22156112, + 21932816, + 21926944, + 21926960, + 21935632, + 21935632, + 21935280, + 21935184, + 21931888, + 21932080, + 21932224, + 21932416, + 21934736, + 22072832, + 21934688, + 22191280, + 21931856, + 21932912, + 21932896, + 22057488, + 21935680, + 21949328, + 21948640, + 21926896, + 22247040, + 21933152, + 21962016, + 22190432, + 21969520, + 22190704, + 21926912, + 21926928 ], "bases": [ { @@ -139463,11 +139463,11 @@ }, { "type_name": "CInstancedSceneEntity", - "vtable_address": 31762832, + "vtable_address": 31762768, "methods": [ - 22076800, - 21960512, - 21974288 + 22076672, + 21960384, + 21974160 ], "bases": [ { @@ -139532,32 +139532,32 @@ }, { "type_name": "CInstructorEventEntity", - "vtable_address": 31510520, + "vtable_address": 31510456, "methods": [ 11766592, - 20447744, - 20447840, + 20447616, + 20447712, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20403808, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20403680, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -139569,21 +139569,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400000, - 20404352, - 20403984, + 26427360, + 20399872, + 20404224, + 20403856, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -139607,83 +139607,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -139691,16 +139691,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -139721,7 +139721,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -139734,28 +139734,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -139766,7 +139766,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -139777,7 +139777,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -139821,7 +139821,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 30154016, + "vtable_address": 30153952, "methods": [], "bases": [ { @@ -139843,7 +139843,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 31401456, + "vtable_address": 31401392, "methods": [], "bases": [ { @@ -139865,7 +139865,7 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 30154344, + "vtable_address": 30154280, "methods": [ 9716128, 9717408, @@ -139960,47 +139960,47 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 31401784, - "methods": [ - 19567808, - 19568096, - 19521792, - 19544128, - 19544224, - 19565664, - 19564576, - 19543616, - 19720000, - 19711376, - 19566464, - 19521936, - 19566112, - 19516880, - 19717984, - 19516896, - 19516928, - 19711472, - 19516944, + "vtable_address": 31401720, + "methods": [ + 19567680, + 19567968, + 19521664, + 19544000, + 19544096, + 19565536, + 19564448, + 19543488, + 19719872, + 19711248, + 19566336, + 19521808, + 19565984, + 19516752, + 19717856, + 19516768, + 19516800, + 19711344, + 19516816, + 19516960, + 19563504, + 19564672, + 19516976, + 19564112, + 19544160, + 19522288, + 19615616, + 19616128, + 19711136, + 19516992, + 19725600, + 19725584, + 19517008, + 19517072, 19517088, - 19563632, - 19564800, 19517104, - 19564240, - 19544288, - 19522416, - 19615744, - 19616256, - 19711264, - 19517120, - 19725728, - 19725712, - 19517136, - 19517200, - 19517216, - 19517232, - 19517280, - 19544336, - 19517296 + 19517152, + 19544208, + 19517168 ], "bases": [ { @@ -140055,21 +140055,21 @@ }, { "type_name": "CInventoryManager", - "vtable_address": 31882088, + "vtable_address": 31882024, "methods": [ - 22548192, - 22623680, - 22544928, + 22548064, + 22623552, + 22544800, 9634416, 9634432, 9634448, 9634464, 9634480, - 22622592, + 22622464, 9634512, 9634528, 9634544, - 22568752, + 22568624, 9634576, 9634592, 9634608, @@ -140148,9 +140148,9 @@ }, { "type_name": "CIronSightController", - "vtable_address": 31239232, + "vtable_address": 31239168, "methods": [ - 17174752 + 17174624 ], "bases": [], "model": { @@ -140161,32 +140161,32 @@ }, { "type_name": "CItem", - "vtable_address": 30672120, + "vtable_address": 30672056, "methods": [ 13526704, - 20983888, - 20985168, - 18377552, - 18065872, - 21065440, - 18010864, - 21060784, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 20983760, + 20985040, + 18377424, + 18065744, + 21065312, + 18010736, + 21060656, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9890752, 9635872, 9665808, @@ -140198,21 +140198,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20983344, + 26427360, + 20983216, 13794064, 13704368, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -140224,95 +140224,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -140320,17 +140320,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -140350,7 +140350,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -140361,30 +140361,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -140395,7 +140395,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -140406,80 +140406,80 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9837472, - 20910544, - 20910848, + 20910416, + 20910720, 9837488, - 20985216, - 20918288, - 20941808, - 20910368 + 20985088, + 20918160, + 20941680, + 20910240 ], "bases": [ { @@ -140555,7 +140555,7 @@ }, { "type_name": "CItem", - "vtable_address": 30674672, + "vtable_address": 30674608, "methods": [ 9837440, 9837456 @@ -140634,32 +140634,32 @@ }, { "type_name": "CItemAssaultSuit", - "vtable_address": 30167840, + "vtable_address": 30167776, "methods": [ 13526704, 9842496, 9842528, - 18377552, - 18065872, - 21065440, - 18010864, + 18377424, + 18065744, + 21065312, + 18010736, 9890000, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9890752, 9635872, 9665808, @@ -140671,21 +140671,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9837648, 9887760, 9842880, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -140697,95 +140697,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -140793,17 +140793,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -140823,7 +140823,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -140834,30 +140834,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -140868,7 +140868,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -140879,80 +140879,80 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9837472, - 20910544, - 20910848, + 20910416, + 20910720, 9864736, - 20985216, - 20918288, - 20941808, - 20910368 + 20985088, + 20918160, + 20941680, + 20910240 ], "bases": [ { @@ -141039,7 +141039,7 @@ }, { "type_name": "CItemAssaultSuit", - "vtable_address": 30170392, + "vtable_address": 30170328, "methods": [ 9837440, 9837456 @@ -141129,43 +141129,43 @@ }, { "type_name": "CItemDefuser", - "vtable_address": 30135128, + "vtable_address": 30135064, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32183328 + "offset_to_top": 32183264 } } }, { "type_name": "CItemDefuser", - "vtable_address": 30173008, + "vtable_address": 30172944, "methods": [ 13526704, 9842688, 9842720, - 18377552, - 18065872, + 18377424, + 18065744, 9843360, - 18010864, + 18010736, 9887776, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9890752, 9635872, 9665808, @@ -141177,21 +141177,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9837664, 9887760, 9842912, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -141203,95 +141203,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -141299,17 +141299,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -141329,7 +141329,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -141340,30 +141340,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -141374,7 +141374,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -141385,80 +141385,80 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9837472, - 20910544, - 20910848, + 20910416, + 20910720, 9837488, - 20985216, - 20918288, - 20941808, - 20910368 + 20985088, + 20918160, + 20941680, + 20910240 ], "bases": [ { @@ -141545,7 +141545,7 @@ }, { "type_name": "CItemDefuser", - "vtable_address": 30175560, + "vtable_address": 30175496, "methods": [ 9837440, 9837456 @@ -141635,7 +141635,7 @@ }, { "type_name": "CItemDefuser", - "vtable_address": 32183904, + "vtable_address": 32183840, "methods": [], "bases": [], "model": { @@ -141646,32 +141646,32 @@ }, { "type_name": "CItemDefuserAlias_item_defuser", - "vtable_address": 30170424, + "vtable_address": 30170360, "methods": [ 13526704, 9842784, 9842816, - 18377552, - 18065872, + 18377424, + 18065744, 9843360, - 18010864, + 18010736, 9887776, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9890752, 9635872, 9665808, @@ -141683,21 +141683,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9837680, 9887760, 9842896, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -141709,95 +141709,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -141805,17 +141805,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -141835,7 +141835,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -141846,30 +141846,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -141880,7 +141880,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -141891,80 +141891,80 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9837472, - 20910544, - 20910848, + 20910416, + 20910720, 9837488, - 20985216, - 20918288, - 20941808, - 20910368 + 20985088, + 20918160, + 20941680, + 20910240 ], "bases": [ { @@ -142062,7 +142062,7 @@ }, { "type_name": "CItemDefuserAlias_item_defuser", - "vtable_address": 30172976, + "vtable_address": 30172912, "methods": [ 9837440, 9837456 @@ -142163,33 +142163,33 @@ }, { "type_name": "CItemDogtags", - "vtable_address": 31064640, + "vtable_address": 31064576, "methods": [ 13526704, - 16732320, - 16732352, - 18377552, - 18065872, - 16909280, - 18010864, - 16908880, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16732192, + 16732224, + 18377424, + 18065744, + 16909152, + 18010736, + 16908752, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 16733072, + 18378400, + 19829024, + 16732944, 9635872, 9665808, 9641296, @@ -142200,21 +142200,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16728816, - 16909328, - 16731136, + 26427360, + 16728688, + 16909200, + 16731008, 9635312, - 16745600, - 18308160, + 16745472, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -142226,95 +142226,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16728832, + 16728704, 9637216, 9636096, 11746864, @@ -142322,17 +142322,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -142352,7 +142352,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -142363,30 +142363,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -142397,7 +142397,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -142408,81 +142408,81 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9837472, - 20910544, - 20910848, - 16765264, - 20985216, - 20918288, - 20941808, - 20910368, - 16765168 + 20910416, + 20910720, + 16765136, + 20985088, + 20918160, + 20941680, + 20910240, + 16765040 ], "bases": [ { @@ -142569,7 +142569,7 @@ }, { "type_name": "CItemDogtags", - "vtable_address": 31067200, + "vtable_address": 31067136, "methods": [ 9837440, 9837456 @@ -142659,7 +142659,7 @@ }, { "type_name": "CItemGeneration", - "vtable_address": 31877320, + "vtable_address": 31877256, "methods": [ 9634368, 9634384, @@ -142717,12 +142717,12 @@ 9635216, 9635232, 9635248, - 22554432, + 22554304, 9635280, - 22552640, - 22547680, - 22547696, - 22544688 + 22552512, + 22547552, + 22547568, + 22544560 ], "bases": [ { @@ -142755,33 +142755,33 @@ }, { "type_name": "CItemGeneric", - "vtable_address": 30669520, + "vtable_address": 30669456, "methods": [ 13526704, 13730864, 13727024, - 18377552, - 18065872, - 21065456, - 18010864, - 21060944, - 26419632, - 18009552, - 26419200, - 20982160, - 20981840, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18377424, + 18065744, + 21065328, + 18010736, + 21060816, + 26419568, + 18009424, + 26419136, + 20982032, + 20981712, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 20981920, + 18378400, + 19829024, + 20981792, 9635872, 9665808, 9641296, @@ -142792,21 +142792,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20980032, + 26427360, + 20979904, 13794064, 13704352, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -142818,95 +142818,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 20982208, + 20982080, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 20981952, + 20981824, 9637216, 9636096, 11746864, @@ -142914,17 +142914,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -142944,7 +142944,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -142955,30 +142955,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -142989,7 +142989,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -143000,82 +143000,82 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 13703136, - 20910544, - 20910848, + 20910416, + 20910720, 9837488, - 20985216, - 20918288, - 20941808, - 20981120, - 20903328, - 20981456 + 20985088, + 20918160, + 20941680, + 20980992, + 20903200, + 20981328 ], "bases": [ { @@ -143162,7 +143162,7 @@ }, { "type_name": "CItemGeneric", - "vtable_address": 30672088, + "vtable_address": 30672024, "methods": [ 9837440, 9837456 @@ -143252,33 +143252,33 @@ }, { "type_name": "CItemGenericTriggerHelper", - "vtable_address": 30667328, + "vtable_address": 30667264, "methods": [ 13522144, 13704800, 13704816, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -143289,21 +143289,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20982464, + 26427360, + 20982336, 13794048, 13704336, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -143327,100 +143327,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 20983024, + 20982896, 11746960, - 20983152, + 20983024, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -143441,7 +143441,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -143454,28 +143454,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -143486,7 +143486,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -143497,35 +143497,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -143569,32 +143569,32 @@ }, { "type_name": "CItemKevlar", - "vtable_address": 30175592, + "vtable_address": 30175528, "methods": [ 13526704, 9842592, 9842624, - 18377552, - 18065872, - 21065440, - 18010864, + 18377424, + 18065744, + 21065312, + 18010736, 9889248, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9890752, 9635872, 9665808, @@ -143606,21 +143606,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9837696, 9887760, 9842928, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -143632,95 +143632,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -143728,17 +143728,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -143758,7 +143758,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -143769,30 +143769,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -143803,7 +143803,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -143814,80 +143814,80 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9837472, - 20910544, - 20910848, + 20910416, + 20910720, 9858528, - 20985216, - 20918288, - 20941808, - 20910368 + 20985088, + 20918160, + 20941680, + 20910240 ], "bases": [ { @@ -143974,7 +143974,7 @@ }, { "type_name": "CItemKevlar", - "vtable_address": 30178144, + "vtable_address": 30178080, "methods": [ 9837440, 9837456 @@ -144064,7 +144064,7 @@ }, { "type_name": "CItemSelectionCriteria::CCondition", - "vtable_address": 31894080, + "vtable_address": 31894016, "methods": [], "bases": [], "model": { @@ -144075,14 +144075,14 @@ }, { "type_name": "CItemSelectionCriteria::CFloatCondition", - "vtable_address": 31894016, + "vtable_address": 31893952, "methods": [ - 22959728, - 22959776, - 22969776, - 22957824, - 22957856, - 22960880 + 22959664, + 22959712, + 22969712, + 22957760, + 22957792, + 22960816 ], "bases": [ { @@ -144104,14 +144104,14 @@ }, { "type_name": "CItemSelectionCriteria::CSetCondition", - "vtable_address": 31893952, + "vtable_address": 31893888, "methods": [ - 22959840, - 22963840, - 22967136, - 22957824, - 22957856, - 22961680 + 22959776, + 22963776, + 22967072, + 22957760, + 22957792, + 22961616 ], "bases": [ { @@ -144133,14 +144133,14 @@ }, { "type_name": "CItemSelectionCriteria::CStringCondition", - "vtable_address": 31893888, + "vtable_address": 31893824, "methods": [ - 22965712, - 22965552, - 22966672, - 22957824, - 22957872, - 22965184 + 22965648, + 22965488, + 22966608, + 22957760, + 22957808, + 22965120 ], "bases": [ { @@ -144162,33 +144162,33 @@ }, { "type_name": "CItemSoda", - "vtable_address": 31479120, + "vtable_address": 31479056, "methods": [ 13526704, - 20159248, - 20159264, - 18377552, - 18065872, - 20399856, - 18010864, - 20399584, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 20159120, + 20159136, + 18377424, + 18065744, + 20399728, + 18010736, + 20399456, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -144199,21 +144199,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154912, - 20399904, - 20156400, + 26427360, + 20154784, + 20399776, + 20156272, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -144225,95 +144225,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 20319808, - 19833664, + 18009440, + 19828496, + 19828672, + 20319680, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -144321,17 +144321,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -144351,7 +144351,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -144362,30 +144362,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -144396,7 +144396,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -144407,72 +144407,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -144527,33 +144527,33 @@ }, { "type_name": "CItem_Healthshot", - "vtable_address": 31067232, + "vtable_address": 31067168, "methods": [ 13528544, - 16732544, - 16732608, - 18377552, - 18065872, - 17165536, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 17034752, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16732416, + 16732480, + 18377424, + 18065744, + 17165408, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 17034624, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -144564,21 +144564,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16728848, - 16732704, - 16731152, + 26427360, + 16728720, + 16732576, + 16731024, 9635312, - 16745696, - 18308160, + 16745568, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -144589,114 +144589,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -144710,47 +144710,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -144758,11 +144758,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -144772,226 +144772,226 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 16728544, 16727328, + 16924176, + 17089104, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16728672, + 16735136, 16727456, - 16924304, - 17089232, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 17072352, + 16924432, + 17110624, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 17072480, - 16924560, - 17110752, - 17035984, + 17070560, + 17086960, + 17091504, + 16728736, + 16945760, + 16957616, + 17025248, + 17085392, + 17080400, + 17081536, + 10057152, + 16728560, 16728496, - 16728512, 16728528, - 9603712, - 16728544, - 16728560, - 17070688, - 17087088, - 17091632, - 16728864, - 16945888, - 16957744, - 17025376, - 17085520, - 17080528, - 17081664, - 10057152, - 16728688, - 16728624, - 16728656, - 16914496, - 16736720, - 16733408, - 16792256 + 16914368, + 16736592, + 16733280, + 16792128 ], "bases": [ { @@ -145121,14 +145121,14 @@ }, { "type_name": "CItem_Healthshot", - "vtable_address": 31070952, + "vtable_address": 31070888, "methods": [ - 16731168, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16731040, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -145258,10 +145258,10 @@ }, { "type_name": "CItem_Healthshot", - "vtable_address": 31071016, + "vtable_address": 31070952, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -145391,12 +145391,12 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 31364672, + "vtable_address": 31364608, "methods": [ - 18904720, - 18848656, - 18839392, - 18839232 + 18904592, + 18848528, + 18839264, + 18839104 ], "bases": [ { @@ -145448,9 +145448,9 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 31364720, + "vtable_address": 31364656, "methods": [ - 18848816 + 18848688 ], "bases": [ { @@ -145502,10 +145502,10 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 31364744, + "vtable_address": 31364680, "methods": [ - 18856992, - 18857120 + 18856864, + 18856992 ], "bases": [ { @@ -145557,12 +145557,12 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 31364568, + "vtable_address": 31364504, "methods": [ - 18891312, - 18850736, - 18811328, - 18811360 + 18891184, + 18850608, + 18811200, + 18811232 ], "bases": [ { @@ -145614,9 +145614,9 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 31364616, + "vtable_address": 31364552, "methods": [ - 18851248 + 18851120 ], "bases": [ { @@ -145668,10 +145668,10 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 31364640, + "vtable_address": 31364576, "methods": [ - 18839904, - 18839840 + 18839776, + 18839712 ], "bases": [ { @@ -145723,18 +145723,18 @@ }, { "type_name": "CKV3MemberNameWithStorage", - "vtable_address": 31998904, + "vtable_address": 31998840, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33329600 + "offset_to_top": 33329536 } } }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 31926112, + "vtable_address": 31926048, "methods": [], "bases": [ { @@ -145756,11 +145756,11 @@ }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 31926128, + "vtable_address": 31926064, "methods": [ - 24216864, + 24216800, 9449408, - 24216528, + 24216464, 9447168, 9447184, 9447200 @@ -145785,7 +145785,7 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Load_NoOp", - "vtable_address": 31750856, + "vtable_address": 31750792, "methods": [ 12105264 ], @@ -145809,7 +145809,7 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Save_NoOp", - "vtable_address": 31750832, + "vtable_address": 31750768, "methods": [ 12102944 ], @@ -145833,12 +145833,12 @@ }, { "type_name": "CKV3TransferLoadContext", - "vtable_address": 31926192, + "vtable_address": 31926128, "methods": [ - 24216864, + 24216800, 9449408, - 24216528, - 24216544, + 24216464, + 24216480, 9447184, 9447200 ], @@ -145873,11 +145873,11 @@ }, { "type_name": "CKV3TransferSaveContext", - "vtable_address": 30325320, + "vtable_address": 30325256, "methods": [ - 24216864, + 24216800, 9449408, - 24216528, + 24216464, 9447168, 9447184, 9447200 @@ -145913,9 +145913,9 @@ }, { "type_name": "CKV3Transfer_AssertAlreadyLoadedResourceLoadInterface", - "vtable_address": 31323232, + "vtable_address": 31323168, "methods": [ - 18424032 + 18423904 ], "bases": [ { @@ -145948,9 +145948,9 @@ }, { "type_name": "CKV3Transfer_EmptyResourceLoadInterface", - "vtable_address": 31729712, + "vtable_address": 31729648, "methods": [ - 21640400 + 21640272 ], "bases": [ { @@ -145972,9 +145972,9 @@ }, { "type_name": "CKV3Transfer_ResourceLoadInterface", - "vtable_address": 31995672, + "vtable_address": 31995608, "methods": [ - 25677232 + 25677168 ], "bases": [ { @@ -145996,7 +145996,7 @@ }, { "type_name": "CKV3Transfer_UtlSymbolLargeInterface >", - "vtable_address": 30518872, + "vtable_address": 30518808, "methods": [ 12840576 ], @@ -146020,32 +146020,32 @@ }, { "type_name": "CKeepUpright", - "vtable_address": 31657672, + "vtable_address": 31657608, "methods": [ 11766592, - 21071664, - 21071712, + 21071536, + 21071584, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21075456, - 26419632, - 26419200, - 26419200, - 21248032, - 21073392, - 20141328, - 19835392, - 19835328, + 20141504, + 21075328, + 26419568, + 26419136, + 26419136, + 21247904, + 21073264, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -146057,21 +146057,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066288, - 21073296, - 21069728, + 26427360, + 21066160, + 21073168, + 21069600, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -146095,83 +146095,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -146179,16 +146179,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -146209,7 +146209,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -146222,28 +146222,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -146254,7 +146254,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -146265,8 +146265,8 @@ 11742448, 9636784, 9636800, - 19857680, - 21180080 + 19857552, + 21179952 ], "bases": [ { @@ -146320,12 +146320,12 @@ }, { "type_name": "CKeepUpright", - "vtable_address": 31659648, + "vtable_address": 31659584, "methods": [ 11742064, - 21180480, - 18001920, - 20399952 + 21180352, + 18001792, + 20399824 ], "bases": [ { @@ -146379,7 +146379,7 @@ }, { "type_name": "CKickIssue", - "vtable_address": 30230144, + "vtable_address": 30230080, "methods": [ 10429120, 10473440, @@ -146447,33 +146447,33 @@ }, { "type_name": "CKnife", - "vtable_address": 31250736, + "vtable_address": 31250672, "methods": [ 13528544, - 17173360, - 17173408, - 18377552, - 18065872, - 17176432, - 18010864, - 17176464, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17173232, + 17173280, + 18377424, + 18065744, + 17176304, + 18010736, + 17176336, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -146484,21 +146484,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172688, - 17221888, - 17174768, + 26427360, + 17172560, + 17221760, + 17174640, 9635312, - 17191616, - 18308160, + 17191488, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -146509,114 +146509,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -146630,47 +146630,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -146678,11 +146678,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -146692,222 +146692,222 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 17172544, 16727328, + 16924176, + 17220592, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 17172512, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 17172672, + 16735136, 16727456, - 16924304, - 17220720, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 17172640, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 17213072, + 17213088, + 17109936, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 17213200, - 17213216, - 17110064, - 17035984, - 16728496, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 17069440, - 17091984, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 17069312, + 17091856, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 17172656 + 16913488, + 16728496, + 17172528 ], "bases": [ { @@ -147026,14 +147026,14 @@ }, { "type_name": "CKnife", - "vtable_address": 31254424, + "vtable_address": 31254360, "methods": [ - 17174784, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174656, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -147152,10 +147152,10 @@ }, { "type_name": "CKnife", - "vtable_address": 31254488, + "vtable_address": 31254424, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -147274,22 +147274,22 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 31987208, + "vtable_address": 31987144, "methods": [ - 25194752, - 25194944, 25194688, - 25194704, - 25194736, - 25194608, + 25194880, 25194624, - 25195104, - 25194848, - 25203504, - 25201776, - 25199344, - 25200720, - 25207040 + 25194640, + 25194672, + 25194544, + 25194560, + 25195040, + 25194784, + 25203440, + 25201712, + 25199280, + 25200656, + 25206976 ], "bases": [ { @@ -147332,17 +147332,17 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 31987336, + "vtable_address": 31987272, "methods": [ - 25194800, - 25195008, - 25203536, - 25201824, - 25199488, - 25200880, - 25207216, - 25195840, - 25196192 + 25194736, + 25194944, + 25203472, + 25201760, + 25199424, + 25200816, + 25207152, + 25195776, + 25196128 ], "bases": [ { @@ -147385,18 +147385,18 @@ }, { "type_name": "CLadderConnectPhysicsInterface", - "vtable_address": 31909344, + "vtable_address": 31909280, "methods": [ - 23741536, - 23741936, + 23741472, + 23741872, + 23740672, + 23740704, 23740736, 23740768, 23740800, + 23740816, 23740832, - 23740864, - 23740880, - 23740896, - 23740512 + 23740448 ], "bases": [ { @@ -147418,13 +147418,13 @@ }, { "type_name": "CLagCompensationManager", - "vtable_address": 31703448, + "vtable_address": 31703384, "methods": [ 9634368, 9634384, - 21518512, + 21518384, 9634416, - 21518528, + 21518400, 9634448, 9634464, 9634480, @@ -147451,7 +147451,7 @@ 9634816, 9634832, 9634848, - 21557888, + 21557760, 9634880, 9634896, 9634912, @@ -147476,23 +147476,23 @@ 9635216, 9635232, 9635248, - 21366832, + 21366704, 9635280, - 21366816, - 21388144, - 21382784, - 21366800, - 21443120, - 21442720, - 21366960, - 21568368, - 21527808, - 21366896, - 21441616, - 21404560, - 21519872, - 21366864, - 21378192 + 21366688, + 21388016, + 21382656, + 21366672, + 21442992, + 21442592, + 21366832, + 21568240, + 21527680, + 21366768, + 21441488, + 21404432, + 21519744, + 21366736, + 21378064 ], "bases": [ { @@ -147535,19 +147535,19 @@ }, { "type_name": "CLagCompensationManager", - "vtable_address": 31704048, + "vtable_address": 31703984, "methods": [ - 21442848, - 21443376, - 21386192, - 21576736, - 21528096, - 21384928, - 21442128, - 21404672, - 21522144, - 21366880, - 21378256 + 21442720, + 21443248, + 21386064, + 21576608, + 21527968, + 21384800, + 21442000, + 21404544, + 21522016, + 21366752, + 21378128 ], "bases": [ { @@ -147590,7 +147590,7 @@ }, { "type_name": "CLegacyCollisionData", - "vtable_address": 30325488, + "vtable_address": 30325424, "methods": [ 11742144, 11742176, @@ -147616,7 +147616,7 @@ }, { "type_name": "CLightComponent", - "vtable_address": 30155176, + "vtable_address": 30155112, "methods": [ 9701072, 9699360, @@ -147652,32 +147652,32 @@ }, { "type_name": "CLightDirectionalEntity", - "vtable_address": 30395344, + "vtable_address": 30395280, "methods": [ 13522144, 12102464, 12102480, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 12104496, - 26419632, + 26419568, 12104416, - 26419200, + 26419136, 12104336, 12104272, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12103632, 9635872, 9665808, @@ -147689,21 +147689,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096704, 12202544, 12099616, 9635312, 12119824, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -147727,25 +147727,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 12103648, @@ -147753,57 +147753,57 @@ 9654336, 11742336, 12098576, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 12096624, 12160848, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096640, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -147811,16 +147811,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -147841,7 +147841,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -147854,28 +147854,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -147886,7 +147886,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -147897,35 +147897,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -147980,7 +147980,7 @@ }, { "type_name": "CLightDirectionalEntity", - "vtable_address": 32307008, + "vtable_address": 32306944, "methods": [], "bases": [], "model": { @@ -147991,32 +147991,32 @@ }, { "type_name": "CLightEntity", - "vtable_address": 30388768, + "vtable_address": 30388704, "methods": [ 13522144, 12102400, 12102416, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 12104496, - 26419632, + 26419568, 12104416, - 26419200, + 26419136, 12104336, 12104272, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12103632, 9635872, 9665808, @@ -148028,21 +148028,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096656, 12202544, 12099664, 9635312, 12119536, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -148066,25 +148066,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 12103648, @@ -148092,57 +148092,57 @@ 9654336, 11742336, 12098576, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 12096624, 12160848, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096640, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -148150,16 +148150,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -148180,7 +148180,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -148193,28 +148193,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -148225,7 +148225,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -148236,35 +148236,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -148308,7 +148308,7 @@ }, { "type_name": "CLightEntity", - "vtable_address": 32307136, + "vtable_address": 32307072, "methods": [], "bases": [], "model": { @@ -148319,7 +148319,7 @@ }, { "type_name": "CLightEntity", - "vtable_address": 32307264, + "vtable_address": 32307200, "methods": [], "bases": [], "model": { @@ -148330,7 +148330,7 @@ }, { "type_name": "CLightEntity", - "vtable_address": 32307392, + "vtable_address": 32307328, "methods": [], "bases": [], "model": { @@ -148341,32 +148341,32 @@ }, { "type_name": "CLightEnvironmentEntity", - "vtable_address": 30397536, + "vtable_address": 30397472, "methods": [ 13522144, 12102528, 12102544, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 12104496, - 26419632, + 26419568, 12104416, - 26419200, + 26419136, 12104336, 12104272, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12103632, 9635872, 9665808, @@ -148378,21 +148378,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096720, 12202544, 12099600, 9635312, 12119920, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -148416,25 +148416,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 12103648, @@ -148442,57 +148442,57 @@ 9654336, 11742336, 12098560, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 12096624, 12160848, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096640, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -148500,16 +148500,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -148530,7 +148530,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -148543,28 +148543,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -148575,7 +148575,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -148586,35 +148586,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -148680,32 +148680,32 @@ }, { "type_name": "CLightOrthoEntity", - "vtable_address": 30393152, + "vtable_address": 30393088, "methods": [ 13522144, 12102592, 12102608, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 12104496, - 26419632, + 26419568, 12104416, - 26419200, + 26419136, 12104336, 12104272, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12103632, 9635872, 9665808, @@ -148717,21 +148717,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096688, 12202544, 12099632, 9635312, 12119728, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -148755,25 +148755,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 12103648, @@ -148781,57 +148781,57 @@ 9654336, 11742336, 12098576, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 12096624, 12160848, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096640, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -148839,16 +148839,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -148869,7 +148869,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -148882,28 +148882,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -148914,7 +148914,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -148925,35 +148925,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -149008,7 +149008,7 @@ }, { "type_name": "CLightQueryGameSystem", - "vtable_address": 30519536, + "vtable_address": 30519472, "methods": [ 9634368, 9634384, @@ -149093,32 +149093,32 @@ }, { "type_name": "CLightSpotEntity", - "vtable_address": 30390960, + "vtable_address": 30390896, "methods": [ 13522144, 12102656, 12102672, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 12104496, - 26419632, + 26419568, 12104416, - 26419200, + 26419136, 12104336, 12104272, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 12103632, 9635872, 9665808, @@ -149130,21 +149130,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096672, 12202544, 12099648, 9635312, 12119632, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -149168,25 +149168,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 12103648, @@ -149194,57 +149194,57 @@ 9654336, 11742336, 12098576, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 12096624, 12160848, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096640, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -149252,16 +149252,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -149282,7 +149282,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -149295,28 +149295,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -149327,7 +149327,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -149338,35 +149338,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -149421,7 +149421,7 @@ }, { "type_name": "CLightStyle", - "vtable_address": 30312104, + "vtable_address": 30312040, "methods": [ 9698336, 11595104 @@ -149446,7 +149446,7 @@ }, { "type_name": "CLoadBackupIssue", - "vtable_address": 30230432, + "vtable_address": 30230368, "methods": [ 10429120, 10473232, @@ -149514,10 +149514,10 @@ }, { "type_name": "CLoadingEntityListener", - "vtable_address": 31369568, + "vtable_address": 31369504, "methods": [ 9890768, - 19093472, + 19093344, 9890800, 9890816 ], @@ -149541,25 +149541,25 @@ }, { "type_name": "CLoadingSpawnGroup", - "vtable_address": 31369416, + "vtable_address": 31369352, "methods": [ + 18812048, + 18812064, + 18848848, + 18812128, + 18819712, + 18819632, + 18812144, 18812176, - 18812192, - 18848976, - 18812256, - 18819840, - 18819760, - 18812272, - 18812304, - 18812160, - 19086208, - 18878160, - 18879600, + 18812032, + 19086080, + 18878032, + 18879472, + 18812096, + 18878560, + 18812208, 18812224, - 18878688, - 18812336, - 18812352, - 18812208 + 18812080 ], "bases": [ { @@ -149581,32 +149581,32 @@ }, { "type_name": "CLogicAchievement", - "vtable_address": 31567584, + "vtable_address": 31567520, "methods": [ 13506768, - 20939568, - 20940128, + 20939440, + 20940000, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -149618,21 +149618,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903392, - 20910048, - 20906416, + 26427360, + 20903264, + 20909920, + 20906288, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -149656,83 +149656,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -149740,16 +149740,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -149770,7 +149770,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -149783,28 +149783,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -149815,7 +149815,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -149826,7 +149826,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -149881,32 +149881,32 @@ }, { "type_name": "CLogicActiveAutosave", - "vtable_address": 31609456, + "vtable_address": 31609392, "methods": [ 13506768, - 20909360, - 20909392, + 20909232, + 20909264, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -149918,21 +149918,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905088, - 20910048, - 20906736, + 26427360, + 20904960, + 20909920, + 20906608, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -149956,83 +149956,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -150040,16 +150040,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -150070,7 +150070,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -150083,28 +150083,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -150115,7 +150115,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -150126,7 +150126,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -150192,33 +150192,33 @@ }, { "type_name": "CLogicAuto", - "vtable_address": 31585776, + "vtable_address": 31585712, "methods": [ 13506768, - 20954640, - 20954064, + 20954512, + 20953936, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20908480, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20908352, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 20910096, + 19933296, + 19829024, + 20909968, 9635872, 9665808, 9641296, @@ -150229,21 +150229,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903808, - 21065504, - 20906560, + 26427360, + 20903680, + 21065376, + 20906432, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -150267,83 +150267,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20914368, - 19840912, - 19834496, + 20914240, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -150351,16 +150351,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20973072, - 21311696, + 20972944, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -150381,7 +150381,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -150394,28 +150394,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -150426,7 +150426,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -150437,7 +150437,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -150470,32 +150470,32 @@ }, { "type_name": "CLogicAutosave", - "vtable_address": 31607488, + "vtable_address": 31607424, "methods": [ 13506768, - 20909264, - 20909296, + 20909136, + 20909168, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -150507,21 +150507,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20904992, - 20910048, - 20906752, + 26427360, + 20904864, + 20909920, + 20906624, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -150545,83 +150545,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -150629,16 +150629,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -150659,7 +150659,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -150672,28 +150672,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -150704,7 +150704,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -150715,7 +150715,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -150770,32 +150770,32 @@ }, { "type_name": "CLogicBranch", - "vtable_address": 30674704, + "vtable_address": 30674640, "methods": [ 13506768, 13719552, 13719760, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 21001296, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 21001168, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21002000, - 19933344, - 19877920, + 21001872, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -150807,21 +150807,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21001072, + 26427360, + 21000944, 13709040, 13704304, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -150845,83 +150845,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -150929,16 +150929,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -150959,7 +150959,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -150972,28 +150972,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -151004,7 +151004,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -151015,7 +151015,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -151070,32 +151070,32 @@ }, { "type_name": "CLogicBranchList", - "vtable_address": 31615360, + "vtable_address": 31615296, "methods": [ 13506768, - 20945248, - 20945504, + 20945120, + 20945376, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20907200, - 26419632, - 26419200, - 26419200, - 21034816, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20907072, + 26419568, + 26419136, + 26419136, + 21034688, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20942288, - 19933344, - 19877920, + 20942160, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -151107,21 +151107,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905200, - 20910048, - 20906800, + 26427360, + 20905072, + 20909920, + 20906672, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -151145,83 +151145,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -151229,16 +151229,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -151259,7 +151259,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -151272,28 +151272,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -151304,7 +151304,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -151315,7 +151315,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -151370,32 +151370,32 @@ }, { "type_name": "CLogicCase", - "vtable_address": 31603552, + "vtable_address": 31603488, "methods": [ 13506768, - 20942080, - 20942560, + 20941952, + 20942432, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20907152, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20907024, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -151407,21 +151407,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20904864, - 20910048, - 20906704, + 26427360, + 20904736, + 20909920, + 20906576, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -151445,83 +151445,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -151529,16 +151529,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -151559,7 +151559,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -151572,28 +151572,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -151604,7 +151604,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -151615,7 +151615,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -151670,32 +151670,32 @@ }, { "type_name": "CLogicCollisionPair", - "vtable_address": 31613392, + "vtable_address": 31613328, "methods": [ 13506768, - 20909552, - 20909584, + 20909424, + 20909456, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21042080, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21041952, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -151707,21 +151707,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905184, - 20910048, - 20906784, + 26427360, + 20905056, + 20909920, + 20906656, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -151745,83 +151745,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 21042224, + 21042096, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -151829,16 +151829,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -151859,7 +151859,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -151872,28 +151872,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -151904,7 +151904,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -151915,7 +151915,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -151970,32 +151970,32 @@ }, { "type_name": "CLogicCompare", - "vtable_address": 31605520, + "vtable_address": 31605456, "methods": [ 13506768, - 20943616, - 20944432, + 20943488, + 20944304, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20911648, - 19933344, - 19877920, + 20911520, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -152007,21 +152007,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20904880, - 20910048, - 20906720, + 26427360, + 20904752, + 20909920, + 20906592, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -152045,83 +152045,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -152129,16 +152129,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -152159,7 +152159,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -152172,28 +152172,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -152204,7 +152204,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -152215,7 +152215,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -152270,32 +152270,32 @@ }, { "type_name": "CLogicDistanceAutosave", - "vtable_address": 31611424, + "vtable_address": 31611360, "methods": [ 13506768, - 20909456, - 20909488, + 20909328, + 20909360, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -152307,21 +152307,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905168, - 20910048, - 20906768, + 26427360, + 20905040, + 20909920, + 20906640, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -152345,83 +152345,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -152429,16 +152429,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -152459,7 +152459,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -152472,28 +152472,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -152504,7 +152504,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -152515,7 +152515,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -152570,32 +152570,32 @@ }, { "type_name": "CLogicDistanceCheck", - "vtable_address": 30676672, + "vtable_address": 30676608, "methods": [ 13506768, 13719120, 13719328, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -152607,21 +152607,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21006912, + 26427360, + 21006784, 13709040, 13704288, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -152645,83 +152645,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -152729,16 +152729,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -152759,7 +152759,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -152772,28 +152772,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -152804,7 +152804,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -152815,7 +152815,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -152870,32 +152870,32 @@ }, { "type_name": "CLogicEventListener", - "vtable_address": 30240960, + "vtable_address": 30240896, "methods": [ 13506768, 10445984, 10446368, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 10429872, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -152907,12 +152907,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10427664, 10436928, 10429216, @@ -152920,8 +152920,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -152945,83 +152945,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -153029,16 +153029,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -153059,7 +153059,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -153072,28 +153072,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -153104,7 +153104,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -153115,7 +153115,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 10462448 ], "bases": [ @@ -153192,7 +153192,7 @@ }, { "type_name": "CLogicEventListener", - "vtable_address": 30242936, + "vtable_address": 30242872, "methods": [ 10445808, 10446576, @@ -153272,32 +153272,32 @@ }, { "type_name": "CLogicGameEvent", - "vtable_address": 31617328, + "vtable_address": 31617264, "methods": [ 13506768, - 20909648, - 20909680, + 20909520, + 20909552, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -153309,21 +153309,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905216, - 20910048, - 20906816, + 26427360, + 20905088, + 20909920, + 20906688, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -153347,83 +153347,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -153431,16 +153431,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -153461,7 +153461,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -153474,28 +153474,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -153506,7 +153506,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -153517,7 +153517,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -153572,32 +153572,32 @@ }, { "type_name": "CLogicGameEventListener", - "vtable_address": 31569552, + "vtable_address": 31569488, "methods": [ 13506768, - 20941264, - 20941440, + 20941136, + 20941312, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21026576, - 26419632, - 26419200, - 26419200, - 20907376, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21026448, + 26419568, + 26419136, + 26419136, + 20907248, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -153609,21 +153609,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903456, - 20910048, - 20906432, + 26427360, + 20903328, + 20909920, + 20906304, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -153647,83 +153647,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -153731,16 +153731,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -153761,7 +153761,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -153774,28 +153774,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -153806,7 +153806,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -153817,8 +153817,8 @@ 11742448, 9636784, 9636800, - 19857680, - 21025120 + 19857552, + 21024992 ], "bases": [ { @@ -153894,11 +153894,11 @@ }, { "type_name": "CLogicGameEventListener", - "vtable_address": 31571528, + "vtable_address": 31571464, "methods": [ - 20941104, - 20941632, - 20959168 + 20940976, + 20941504, + 20959040 ], "bases": [ { @@ -153974,32 +153974,32 @@ }, { "type_name": "CLogicLineToEntity", - "vtable_address": 31591744, + "vtable_address": 31591680, "methods": [ 13506768, - 20939904, - 20940512, + 20939776, + 20940384, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20908544, - 26419632, - 26419200, - 26419200, - 20966336, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20908416, + 26419568, + 26419136, + 26419136, + 20966208, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -154011,21 +154011,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903856, - 20910048, - 20906608, + 26427360, + 20903728, + 20909920, + 20906480, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -154049,83 +154049,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -154133,16 +154133,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20960208, - 21311696, + 20960080, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -154163,7 +154163,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -154176,28 +154176,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -154208,7 +154208,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -154219,7 +154219,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -154274,32 +154274,32 @@ }, { "type_name": "CLogicMeasureMovement", - "vtable_address": 31573824, + "vtable_address": 31573760, "methods": [ 13506768, - 20909056, - 20909088, + 20908928, + 20908960, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20990656, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20990528, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -154311,21 +154311,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903488, - 20910048, - 20906464, + 26427360, + 20903360, + 20909920, + 20906336, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -154349,83 +154349,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -154433,16 +154433,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -154463,7 +154463,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -154476,28 +154476,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -154508,7 +154508,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -154519,7 +154519,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -154574,33 +154574,33 @@ }, { "type_name": "CLogicNPCCounter", - "vtable_address": 31577816, + "vtable_address": 31577752, "methods": [ 13506768, - 20960784, - 20961648, + 20960656, + 20961520, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20908848, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20908720, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -154611,21 +154611,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903568, - 21065504, - 20906528, + 26427360, + 20903440, + 21065376, + 20906400, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -154649,83 +154649,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -154733,16 +154733,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -154763,7 +154763,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -154776,28 +154776,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -154808,7 +154808,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -154819,10 +154819,10 @@ 11742448, 9636784, 9636800, - 19857680, - 20911488, - 20930960, - 20903328 + 19857552, + 20911360, + 20930832, + 20903200 ], "bases": [ { @@ -154855,33 +154855,33 @@ }, { "type_name": "CLogicNPCCounterAABB", - "vtable_address": 31579808, + "vtable_address": 31579744, "methods": [ 13506768, - 20961696, - 20961712, + 20961568, + 20961584, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20936512, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20936384, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -154892,21 +154892,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903648, - 21065504, - 20906512, + 26427360, + 20903520, + 21065376, + 20906384, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -154930,83 +154930,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -155014,16 +155014,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -155044,7 +155044,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -155057,28 +155057,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -155089,7 +155089,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -155100,11 +155100,11 @@ 11742448, 9636784, 9636800, - 19857680, - 20911568, - 20938736, - 20903328, - 20917952 + 19857552, + 20911440, + 20938608, + 20903200, + 20917824 ], "bases": [ { @@ -155148,7 +155148,7 @@ }, { "type_name": "CLogicNPCCounterAABB", - "vtable_address": 32993088, + "vtable_address": 32993024, "methods": [], "bases": [], "model": { @@ -155159,33 +155159,33 @@ }, { "type_name": "CLogicNPCCounterOBB", - "vtable_address": 31581808, + "vtable_address": 31581744, "methods": [ 13506768, - 20961760, - 20961776, + 20961632, + 20961648, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20936656, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20936528, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -155196,21 +155196,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903664, - 21065504, - 20906496, + 26427360, + 20903536, + 21065376, + 20906368, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -155234,83 +155234,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -155318,16 +155318,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -155348,7 +155348,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -155361,28 +155361,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -155393,7 +155393,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -155404,11 +155404,11 @@ 11742448, 9636784, 9636800, - 19857680, - 20911600, - 20937904, - 20903328, - 20903680 + 19857552, + 20911472, + 20937776, + 20903200, + 20903552 ], "bases": [ { @@ -155463,32 +155463,32 @@ }, { "type_name": "CLogicNavigation", - "vtable_address": 31575792, + "vtable_address": 31575728, "methods": [ 13506768, - 20909152, - 20909200, + 20909024, + 20909072, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20955488, - 26419632, - 26419200, - 26419200, - 21028048, - 20911408, - 20141328, - 19835392, - 19835328, + 20141504, + 20955360, + 26419568, + 26419136, + 26419136, + 21027920, + 20911280, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -155500,21 +155500,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903552, - 20910048, - 20906480, + 26427360, + 20903424, + 20909920, + 20906352, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -155538,83 +155538,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -155622,16 +155622,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -155652,7 +155652,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -155665,28 +155665,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -155697,7 +155697,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -155708,8 +155708,8 @@ 11742448, 9636784, 9636800, - 19857680, - 20915008 + 19857552, + 20914880 ], "bases": [ { @@ -155774,10 +155774,10 @@ }, { "type_name": "CLogicNavigation", - "vtable_address": 31577768, + "vtable_address": 31577704, "methods": [ 9890768, - 20934512, + 20934384, 9890800, 9890816 ], @@ -155844,32 +155844,32 @@ }, { "type_name": "CLogicPlayerProxy", - "vtable_address": 31583808, + "vtable_address": 31583744, "methods": [ 13506768, - 20943888, - 20944704, + 20943760, + 20944576, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20962032, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20961904, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -155881,21 +155881,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903792, - 20910048, - 20906544, + 26427360, + 20903664, + 20909920, + 20906416, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -155919,83 +155919,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 20949648, + 20949520, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -156003,16 +156003,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -156033,7 +156033,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -156046,28 +156046,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -156078,7 +156078,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -156089,7 +156089,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -156144,32 +156144,32 @@ }, { "type_name": "CLogicProximity", - "vtable_address": 31856656, + "vtable_address": 31856592, "methods": [ 11766592, - 22268176, - 22268208, + 22268048, + 22268080, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -156181,21 +156181,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263776, - 22268272, - 22267072, + 26427360, + 22263648, + 22268144, + 22266944, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -156219,83 +156219,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -156303,16 +156303,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -156333,7 +156333,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -156346,28 +156346,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -156378,7 +156378,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -156389,7 +156389,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -156433,32 +156433,32 @@ }, { "type_name": "CLogicRelay", - "vtable_address": 30680608, + "vtable_address": 30680544, "methods": [ 13780032, 13704400, 13704432, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 19020912, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 19020784, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 19021136, - 19933344, - 19877920, + 19021008, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -156470,21 +156470,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19020688, + 26427360, + 19020560, 13709040, 13704256, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -156508,83 +156508,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -156592,16 +156592,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19021008, - 21311696, + 19020880, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -156622,7 +156622,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -156635,28 +156635,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -156667,7 +156667,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -156678,7 +156678,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -156733,32 +156733,32 @@ }, { "type_name": "CLogicScript", - "vtable_address": 31587808, + "vtable_address": 31587744, "methods": [ - 20965184, - 20909840, - 20909872, + 20965056, + 20909712, + 20909744, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20962752, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20962624, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -156770,21 +156770,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903824, - 20910032, - 20906576, + 26427360, + 20903696, + 20909904, + 20906448, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -156808,83 +156808,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -156892,16 +156892,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -156922,7 +156922,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -156935,28 +156935,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -156967,7 +156967,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -156978,7 +156978,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -157022,32 +157022,32 @@ }, { "type_name": "CLogicalEntity", - "vtable_address": 30561376, + "vtable_address": 30561312, "methods": [ 13506768, 13384400, 13384416, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -157059,21 +157059,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19939200, + 26427360, + 19939072, 13382848, 13384016, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -157097,83 +157097,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -157181,16 +157181,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -157211,7 +157211,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -157224,28 +157224,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -157256,7 +157256,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -157267,7 +157267,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -157311,13 +157311,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 31379488, + "vtable_address": 31379424, "methods": [ - 19281840, - 18904384, - 19023232, - 18874752, - 18816704 + 19281712, + 18904256, + 19023104, + 18874624, + 18816576 ], "bases": [ { @@ -157339,26 +157339,26 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 31379584, - "methods": [ - 19136960, - 19024288, - 19035776, - 19023936, - 19281632, - 18815248, - 18826032, - 18810624, - 18815216, - 18815232, - 18901056, - 18815152, - 18815168, - 18815136, - 18815200, - 18873424, - 18873568, - 18874704 + "vtable_address": 31379520, + "methods": [ + 19136832, + 19024160, + 19035648, + 19023808, + 19281504, + 18815120, + 18825904, + 18810496, + 18815088, + 18815104, + 18900928, + 18815024, + 18815040, + 18815008, + 18815072, + 18873296, + 18873440, + 18874576 ], "bases": [ { @@ -157401,16 +157401,16 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 31379744, + "vtable_address": 31379680, "methods": [ - 18839776, - 18839792, - 18902064, - 18839712, - 18839728, - 18839696, - 18839760, - 18860336 + 18839648, + 18839664, + 18901936, + 18839584, + 18839600, + 18839568, + 18839632, + 18860208 ], "bases": [ { @@ -157453,32 +157453,32 @@ }, { "type_name": "CMapInfo", - "vtable_address": 30245168, + "vtable_address": 30245104, "methods": [ 11766592, 10428816, 10429024, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 10461696, - 26419632, - 26419200, - 26419200, - 20139104, + 26419568, + 26419136, + 26419136, + 20138976, 10436960, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -157490,12 +157490,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10427792, 10436048, 10429248, @@ -157503,8 +157503,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -157528,83 +157528,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -157612,16 +157612,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -157642,7 +157642,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -157655,28 +157655,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -157687,7 +157687,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -157698,7 +157698,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -157742,11 +157742,11 @@ }, { "type_name": "CMapLoadEntityFilter", - "vtable_address": 31379544, + "vtable_address": 31379480, "methods": [ - 18816624, - 18819488, - 19087376 + 18816496, + 18819360, + 19087248 ], "bases": [ { @@ -157768,32 +157768,32 @@ }, { "type_name": "CMapSharedEnvironment", - "vtable_address": 30689040, + "vtable_address": 30688976, "methods": [ 13506768, - 21010400, - 21010688, + 21010272, + 21010560, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21046544, - 26419632, - 26419200, - 26419200, - 20139104, - 21011008, - 20141328, - 19835392, - 19835328, + 20141504, + 21046416, + 26419568, + 26419136, + 26419136, + 20138976, + 21010880, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -157805,21 +157805,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21010256, + 26427360, + 21010128, 13795200, 13794736, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -157843,83 +157843,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -157927,16 +157927,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -157957,7 +157957,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -157970,28 +157970,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -158002,7 +158002,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -158013,7 +158013,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -158068,33 +158068,33 @@ }, { "type_name": "CMapVetoPickController", - "vtable_address": 30227600, + "vtable_address": 30227536, "methods": [ 13506768, 10447680, 10448160, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 10444976, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -158105,12 +158105,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10425376, 10628784, 10429152, @@ -158118,8 +158118,8 @@ 10466960, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -158143,83 +158143,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 10429968, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -158227,16 +158227,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -158257,7 +158257,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -158270,28 +158270,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -158302,7 +158302,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -158313,7 +158313,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -158346,7 +158346,7 @@ }, { "type_name": "CMarkupManager", - "vtable_address": 31628768, + "vtable_address": 31628704, "methods": [ 9634368, 9634384, @@ -158361,12 +158361,12 @@ 9634528, 9634544, 9634560, - 20905488, + 20905360, 9634592, 9634608, 9634624, 9634640, - 20928896, + 20928768, 9634672, 9634688, 9634704, @@ -158404,12 +158404,12 @@ 9635216, 9635232, 9635248, - 20905456, + 20905328, 9635280, - 20905440, - 20935600, - 20936048, - 20905424 + 20905312, + 20935472, + 20935920, + 20905296 ], "bases": [ { @@ -158442,33 +158442,33 @@ }, { "type_name": "CMarkupVolume", - "vtable_address": 30697584, + "vtable_address": 30697520, "methods": [ 13522144, 13795344, 13795360, - 18377504, - 26419168, - 20913344, - 18010864, - 21017680, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 20913216, + 18010736, + 21017552, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -158479,21 +158479,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21017536, + 26427360, + 21017408, 13865440, 13794832, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -158517,83 +158517,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -158601,16 +158601,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -158631,7 +158631,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -158644,28 +158644,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -158676,7 +158676,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -158687,35 +158687,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13794128, 13794144 ], @@ -158761,33 +158761,33 @@ }, { "type_name": "CMarkupVolumeTagged", - "vtable_address": 30699792, + "vtable_address": 30699728, "methods": [ 13839968, 13807328, 13808720, - 18377504, - 26419168, - 20913344, - 21043488, - 21044032, - 26419632, - 26419200, - 26419200, - 21052240, - 21053584, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20912272, + 18377376, + 26419104, + 20913216, + 21043360, + 21043904, + 26419568, + 26419136, + 26419136, + 21052112, + 21053456, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20912144, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -158798,21 +158798,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21021488, + 26427360, + 21021360, 13865440, 13794816, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -158836,83 +158836,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -158920,16 +158920,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -158950,7 +158950,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -158963,28 +158963,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -158995,7 +158995,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -159006,38 +159006,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13794128, 13794144, - 21018672, + 21018544, 13794160, 13794176 ], @@ -159094,7 +159094,7 @@ }, { "type_name": "CMarkupVolumeTagged", - "vtable_address": 32950272, + "vtable_address": 32950208, "methods": [], "bases": [], "model": { @@ -159105,33 +159105,33 @@ }, { "type_name": "CMarkupVolumeTagged_Nav", - "vtable_address": 31631608, + "vtable_address": 31631544, "methods": [ 13839968, - 20934000, - 20934336, - 18377504, - 26419168, - 20913344, - 21043488, - 21044768, - 26419632, - 26419200, - 26419200, - 21052288, - 21054464, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20912272, + 20933872, + 20934208, + 18377376, + 26419104, + 20913216, + 21043360, + 21044640, + 26419568, + 26419136, + 26419136, + 21052160, + 21054336, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20912144, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -159142,21 +159142,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905392, - 20914128, - 20906912, + 26427360, + 20905264, + 20914000, + 20906784, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -159180,83 +159180,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -159264,16 +159264,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -159294,7 +159294,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -159307,28 +159307,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -159339,7 +159339,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -159350,38 +159350,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13794128, 13794144, - 21018672, + 21018544, 13794160, 13794176 ], @@ -159449,33 +159449,33 @@ }, { "type_name": "CMarkupVolumeTagged_NavGame", - "vtable_address": 31633840, + "vtable_address": 31633776, "methods": [ 13839968, - 20932864, - 20933184, - 18377504, - 26419168, - 20913344, - 21043488, - 21044912, - 26419632, - 26419200, - 26419200, - 21052720, - 21050448, - 18011056, - 19835392, - 19835328, - 9634320, - 20913424, - 20912720, + 20932736, + 20933056, + 18377376, + 26419104, + 20913216, + 21043360, + 21044784, + 26419568, + 26419136, + 26419136, + 21052592, + 21050320, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 20913296, + 20912592, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -159486,21 +159486,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905408, - 20914144, - 20906928, + 26427360, + 20905280, + 20914016, + 20906800, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -159524,83 +159524,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -159608,16 +159608,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -159638,7 +159638,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -159651,28 +159651,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -159683,7 +159683,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -159694,41 +159694,41 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13794128, 13794144, - 21019952, + 21019824, 13794160, 13794176, - 20933360 + 20933232 ], "bases": [ { @@ -159826,11 +159826,11 @@ }, { "type_name": "CMarkupVolumeTagged_NavGame", - "vtable_address": 31636080, + "vtable_address": 31636016, "methods": [ - 20932704, - 20933024, - 20933552 + 20932576, + 20932896, + 20933424 ], "bases": [ { @@ -159928,33 +159928,33 @@ }, { "type_name": "CMarkupVolumeWithRef", - "vtable_address": 30702024, + "vtable_address": 30701960, "methods": [ 13839968, 13808416, 13808880, - 18377504, - 26419168, - 20913344, - 21043488, - 21044032, - 26419632, - 26419200, - 26419200, - 21052400, - 21054016, - 18011056, - 19835392, - 19835328, - 9634320, - 20913424, - 20912720, + 18377376, + 26419104, + 20913216, + 21043360, + 21043904, + 26419568, + 26419136, + 26419136, + 21052272, + 21053888, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 20913296, + 20912592, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -159965,21 +159965,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21022032, + 26427360, + 21021904, 13865440, 13794800, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -160003,83 +160003,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -160087,16 +160087,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -160117,7 +160117,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -160130,28 +160130,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -160162,7 +160162,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -160173,41 +160173,41 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13794128, 13794144, - 21019952, + 21019824, 13794160, 13794176, - 20933360 + 20933232 ], "bases": [ { @@ -160294,11 +160294,11 @@ }, { "type_name": "CMarkupVolumeWithRef", - "vtable_address": 30704264, + "vtable_address": 30704200, "methods": [ 13808576, 13809040, - 20933552 + 20933424 ], "bases": [ { @@ -160385,32 +160385,32 @@ }, { "type_name": "CMathColorBlend", - "vtable_address": 31595680, + "vtable_address": 31595616, "methods": [ 13506768, - 20940016, - 20940640, + 20939888, + 20940512, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20907056, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20906928, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -160422,21 +160422,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903920, - 20910048, - 20906640, + 26427360, + 20903792, + 20909920, + 20906512, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -160460,83 +160460,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -160544,16 +160544,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -160574,7 +160574,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -160587,28 +160587,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -160619,7 +160619,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -160630,7 +160630,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -160685,32 +160685,32 @@ }, { "type_name": "CMathCounter", - "vtable_address": 31601584, + "vtable_address": 31601520, "methods": [ 13506768, - 20948576, - 20948192, + 20948448, + 20948064, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21031008, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21030880, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21030768, - 19933344, - 19877920, + 21030640, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -160722,21 +160722,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20904816, - 20910048, - 20906688, + 26427360, + 20904688, + 20909920, + 20906560, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -160760,83 +160760,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -160844,16 +160844,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -160874,7 +160874,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -160887,28 +160887,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -160919,7 +160919,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -160930,7 +160930,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -160985,32 +160985,32 @@ }, { "type_name": "CMathRemap", - "vtable_address": 31593712, + "vtable_address": 31593648, "methods": [ 13506768, - 20946496, - 20946816, + 20946368, + 20946688, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20906960, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20906832, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -161022,21 +161022,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903872, - 20910048, - 20906624, + 26427360, + 20903744, + 20909920, + 20906496, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -161060,83 +161060,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -161144,16 +161144,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -161174,7 +161174,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -161187,28 +161187,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -161219,7 +161219,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -161230,7 +161230,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -161285,32 +161285,32 @@ }, { "type_name": "CMessage", - "vtable_address": 30633440, + "vtable_address": 30633376, "methods": [ 11766592, 13637600, 13637712, 12023536, - 26419168, - 20461424, - 20141632, - 20461264, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20461296, + 20141504, + 20461136, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -161322,21 +161322,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20461056, + 26427360, + 20460928, 13626096, 13623360, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -161360,83 +161360,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20461440, + 20461312, 9637216, 9636096, 11746864, @@ -161444,16 +161444,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -161474,7 +161474,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -161487,28 +161487,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -161519,7 +161519,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -161530,7 +161530,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -161574,32 +161574,32 @@ }, { "type_name": "CMessageEntity", - "vtable_address": 31636120, + "vtable_address": 31636056, "methods": [ 11766592, - 20909936, - 20909968, + 20909808, + 20909840, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20908608, - 26419632, - 26419200, - 26419200, - 20951328, - 20948944, - 20141328, - 19835392, - 19835328, + 20141504, + 20908480, + 26419568, + 26419136, + 26419136, + 20951200, + 20948816, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -161611,21 +161611,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905520, - 20910032, - 20906944, + 26427360, + 20905392, + 20909904, + 20906816, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -161649,83 +161649,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -161733,16 +161733,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20914160, - 21311696, + 20914032, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -161763,7 +161763,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -161776,28 +161776,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -161808,7 +161808,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -161819,7 +161819,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -161863,32 +161863,32 @@ }, { "type_name": "CModelPointEntity", - "vtable_address": 30570328, + "vtable_address": 30570264, "methods": [ 13522144, 13387648, 13387664, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10437760, 9635872, 9665808, @@ -161900,21 +161900,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18093456, + 26427360, + 18093328, 13382848, 13384160, 9635312, 13440208, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -161938,83 +161938,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 18104832, - 19834496, + 18104704, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -162022,16 +162022,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -162052,7 +162052,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -162065,28 +162065,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -162097,7 +162097,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -162108,35 +162108,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, - 18004256, - 18261776, - 18057568, + 18045984, + 18004128, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -162180,7 +162180,7 @@ }, { "type_name": "CModelPointEntity", - "vtable_address": 32894976, + "vtable_address": 32894912, "methods": [], "bases": [], "model": { @@ -162191,11 +162191,11 @@ }, { "type_name": "CModelState", - "vtable_address": 31402112, + "vtable_address": 31402048, "methods": [ - 19511760, + 19511632, 13865504, - 19511776, + 19511648, 13865984 ], "bases": [], @@ -162207,9 +162207,9 @@ }, { "type_name": "CModuleMetadataProvider_ResourceManifests", - "vtable_address": 32059848, + "vtable_address": 32059784, "methods": [ - 27981728 + 27981664 ], "bases": [ { @@ -162231,33 +162231,33 @@ }, { "type_name": "CMolotovGrenade", - "vtable_address": 31254520, + "vtable_address": 31254456, "methods": [ 13528544, - 17174128, - 17174192, - 18377552, - 18065872, - 17176880, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17174000, + 17174064, + 18377424, + 18065744, + 17176752, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -162268,21 +162268,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172784, - 17176416, - 17174864, + 26427360, + 17172656, + 17176288, + 17174736, 9635312, - 17191744, - 18308160, + 17191616, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -162293,114 +162293,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -162414,47 +162414,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -162462,11 +162462,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -162476,227 +162476,227 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 16732672, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, - 16727344, + 16924176, + 16909216, + 16914016, + 16728448, + 16728464, + 18061024, + 16729216, + 16729120, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16728768, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 16732800, + 17172160, + 18004912, + 18036064, 16727424, - 16727440, - 16924336, + 17172608, + 16735136, 16727456, - 16924304, - 16909344, - 16914144, - 16728576, - 16728592, - 18061152, - 16729344, - 16729248, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16728896, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, - 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 17172736, - 16735264, - 16727584, - 16924528, - 16914512, 16924400, - 16942560, - 16727600, - 16727616, + 16914384, + 16924272, + 16942432, + 16727472, + 16727488, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 16741824, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, - 16728336, - 16914336, - 16914384, - 16732848, - 16728352, - 15970784, - 16914464, + 16797856, + 16740096, + 16810240, + 16810336, + 16912080, + 17035856, + 16797072, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 16741952, - 17042912, - 10057136, 16728432, - 16728448, - 16797984, - 16740224, - 16810368, - 16810464, - 16912208, - 17035984, - 16797200, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 16910976, - 16733696, - 17091632, - 16732880, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 16911872, + 16910848, + 16733568, + 17091504, + 16732752, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 16911744, 10057152, - 16728960, - 16728624, - 16810304, - 17172528, - 16793088, - 16728928, - 17172720, - 17187120 + 16728832, + 16728496, + 16810176, + 17172400, + 16792960, + 16728800, + 17172592, + 17186992 ], "bases": [ { @@ -162826,14 +162826,14 @@ }, { "type_name": "CMolotovGrenade", - "vtable_address": 31258248, + "vtable_address": 31258184, "methods": [ - 17174880, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174752, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -162963,10 +162963,10 @@ }, { "type_name": "CMolotovGrenade", - "vtable_address": 31258312, + "vtable_address": 31258248, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -163096,7 +163096,7 @@ }, { "type_name": "CMolotovGrenade", - "vtable_address": 32607680, + "vtable_address": 32607616, "methods": [], "bases": [], "model": { @@ -163107,33 +163107,33 @@ }, { "type_name": "CMolotovProjectile", - "vtable_address": 31071120, + "vtable_address": 31071056, "methods": [ 13528544, - 16739616, - 16739888, - 16730592, - 18065872, - 16452512, - 18010864, - 16904672, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16739488, + 16739760, + 16730464, + 18065744, + 16452384, + 18010736, + 16904544, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -163144,21 +163144,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16728976, - 16908560, - 16731088, + 26427360, + 16728848, + 16908432, + 16730960, 9635312, - 16745792, - 18308160, + 16745664, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -163170,95 +163170,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16730736, - 16730768, - 19834496, + 16730608, + 16730640, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 15971776, - 19833184, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -163266,17 +163266,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 16816528, - 19828912, - 18013520, + 16816400, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -163296,7 +163296,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -163307,30 +163307,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, - 16798448, - 19828816, - 19835280, + 16798320, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -163341,7 +163341,7 @@ 9636736, 9636752, 9636768, - 16820608, + 16820480, 11742352, 11742320, 11742400, @@ -163352,102 +163352,102 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, 11712016, - 16907168, - 16787296, - 16803392, + 16907040, + 16787168, + 16803264, 11712032, - 16733552, + 16733424, 11712080, 15971760, - 16728880, + 16728752, 11712048, 11723632, 16012384, - 16755776, + 16755648, 11712064, - 16823008, - 16742256 + 16822880, + 16742128 ], "bases": [ { @@ -163556,7 +163556,7 @@ }, { "type_name": "CMolotovProjectile", - "vtable_address": 31073848, + "vtable_address": 31073784, "methods": [ 9837440, 9837456 @@ -163668,33 +163668,33 @@ }, { "type_name": "CMomentaryRotButton", - "vtable_address": 30592928, + "vtable_address": 30592864, "methods": [ 13522144, 13417616, 13418192, - 18377504, - 26419168, - 20153792, - 18010864, - 20148496, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20000848, + 18377376, + 26419104, + 20153664, + 18010736, + 20148368, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20000720, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19998816, + 18378400, + 19829024, + 19998688, 9635872, 9665808, 9641296, @@ -163705,21 +163705,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19998352, + 26427360, + 19998224, 13382848, 13384080, 9635312, 13440688, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -163743,83 +163743,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19843520, - 18042720, + 19843392, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20001552, + 20001424, 9637216, 9636096, 11746864, @@ -163827,16 +163827,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, - 19991568, - 19991632, - 19979760, - 19828656, - 21311696, + 19991440, + 19991504, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -163857,7 +163857,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -163870,28 +163870,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -163902,7 +163902,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -163913,45 +163913,45 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 19988000, - 18011024, - 18004224, - 19988368, - 18004224, + 19987872, + 18010896, + 18004096, + 19988240, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 19988944, - 19990176, - 19989968, - 19991408, - 19991760, - 19992400, - 19999952, - 20000112, - 19829840, - 19829856 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 19988816, + 19990048, + 19989840, + 19991280, + 19991632, + 19992272, + 19999824, + 19999984, + 19829712, + 19829728 ], "bases": [ { @@ -164028,7 +164028,7 @@ }, { "type_name": "CMotorController", - "vtable_address": 30716984, + "vtable_address": 30716920, "methods": [ 13795136 ], @@ -164041,7 +164041,7 @@ }, { "type_name": "CMovementStatsProperty", - "vtable_address": 31428736, + "vtable_address": 31428672, "methods": [ 13794864 ], @@ -164054,32 +164054,32 @@ }, { "type_name": "CMoverPathNode", - "vtable_address": 30644344, + "vtable_address": 30644280, "methods": [ 11766592, 13638912, 13639232, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20494816, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20494688, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -164091,21 +164091,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20494304, + 26427360, + 20494176, 13626096, 13623440, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -164129,83 +164129,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -164213,17 +164213,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 20498560, + 21228944, + 19828784, + 20498432, 11742368, 11865936, 9636208, @@ -164243,7 +164243,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -164256,28 +164256,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -164288,7 +164288,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -164299,7 +164299,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -164343,23 +164343,23 @@ }, { "type_name": "CMsgAccountDetails", - "vtable_address": 30897328, + "vtable_address": 30897264, "methods": [ 15597376, 15648688, - 24747814, + 24747750, 15263600, 15725840, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15084832, 15080464, 15318576, 9474464, 15231456, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066208, 15039184 @@ -164395,23 +164395,23 @@ }, { "type_name": "CMsgAcknowledgeRentalExpiration", - "vtable_address": 30822744, + "vtable_address": 30822680, "methods": [ 14748096, 14797552, - 24747814, + 24747750, 14335392, 14885648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030784, 14066336, 14431936, 9474464, 14121280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050736, 14018160 @@ -164447,23 +164447,23 @@ }, { "type_name": "CMsgAdjustEquipSlot", - "vtable_address": 30822104, + "vtable_address": 30822040, "methods": [ 14747552, 14797168, - 24747814, + 24747750, 14334800, 14885456, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039184, 14061872, 14430160, 9474464, 14170816, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050608, 14018096 @@ -164499,23 +164499,23 @@ }, { "type_name": "CMsgAdjustEquipSlots", - "vtable_address": 30822264, + "vtable_address": 30822200, "methods": [ 14747680, 14838784, - 24747814, + 24747750, 14334976, 14920160, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14098112, 14066384, 14610304, 9474464, 14130080, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050640, 14018112 @@ -164551,23 +164551,23 @@ }, { "type_name": "CMsgApplyEggEssence", - "vtable_address": 30813464, + "vtable_address": 30813400, "methods": [ 14740576, 14793840, - 24747814, + 24747750, 14326640, 14883808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030416, 14067072, 14404128, 9474464, 14141056, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048880, 14017232 @@ -164603,23 +164603,23 @@ }, { "type_name": "CMsgApplyPennantUpgrade", - "vtable_address": 30813304, + "vtable_address": 30813240, "methods": [ 14740448, 14793712, - 24747814, + 24747750, 14326480, 14883744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030336, 14067088, 14403552, 9474464, 14140704, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048848, 14017216 @@ -164655,23 +164655,23 @@ }, { "type_name": "CMsgApplyStatTrakSwap", - "vtable_address": 30812984, + "vtable_address": 30812920, "methods": [ 14740192, 14793456, - 24747814, + 24747750, 14326160, 14883616, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030144, 14067120, 14402320, 9474464, 14169344, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048784, 14017184 @@ -164707,23 +164707,23 @@ }, { "type_name": "CMsgApplySticker", - "vtable_address": 30812664, + "vtable_address": 30812600, "methods": [ 14739936, 14793200, - 24747814, + 24747750, 14325856, 14883456, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037296, 14067152, 14400944, 9474464, 14267104, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048720, 14017152 @@ -164759,23 +164759,23 @@ }, { "type_name": "CMsgApplyStrangePart", - "vtable_address": 30813144, + "vtable_address": 30813080, "methods": [ 14740320, 14793584, - 24747814, + 24747750, 14326320, 14883680, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030256, 14067104, 14402976, 9474464, 14140352, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048816, 14017200 @@ -164811,23 +164811,23 @@ }, { "type_name": "CMsgCStrike15Welcome", - "vtable_address": 30842584, + "vtable_address": 30842520, "methods": [ 14763616, 14803696, - 24747814, + 24747750, 14356720, 14889264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043888, 14065408, 14493840, 9474464, 14264160, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054704, 14023312 @@ -164863,23 +164863,23 @@ }, { "type_name": "CMsgCasketItem", - "vtable_address": 30872824, + "vtable_address": 30872760, "methods": [ 14787856, 14813552, - 24747814, + 24747750, 14387728, 14894912, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036288, 14063760, 14587664, 9474464, 14146336, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060752, 14028336 @@ -164915,23 +164915,23 @@ }, { "type_name": "CMsgClearDecalsForEntityEvent", - "vtable_address": 30875704, + "vtable_address": 30875640, "methods": [ 14790416, 14814192, - 24747814, + 24747750, 12438496, 14895360, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047232, 12437168, 14597440, 9474464, 14139424, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061328, 14029104 @@ -164967,23 +164967,23 @@ }, { "type_name": "CMsgClearEntityDecalsEvent", - "vtable_address": 30875544, + "vtable_address": 30875480, "methods": [ 14790288, 14814064, - 24747814, + 24747750, 12439456, 14895312, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047184, 12437200, 14596960, 9474464, 14120384, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061296, 14029088 @@ -165019,23 +165019,23 @@ }, { "type_name": "CMsgClearWorldDecalsEvent", - "vtable_address": 30875384, + "vtable_address": 30875320, "methods": [ 14790160, 14813936, - 24747814, + 24747750, 12438976, 14895264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047136, 12437184, 14596480, 9474464, 14120160, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061264, 14029072 @@ -165071,23 +165071,23 @@ }, { "type_name": "CMsgClientHello", - "vtable_address": 30899248, + "vtable_address": 30899184, "methods": [ 15598736, 15668672, - 24747814, + 24747750, 15265360, 15769360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15119344, 15080304, 15487424, 9474464, 15220768, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066592, 15039376 @@ -165123,23 +165123,23 @@ }, { "type_name": "CMsgClientWelcome", - "vtable_address": 30899728, + "vtable_address": 30899664, "methods": [ 15686560, 15687040, - 24747814, + 24747750, 15265888, 15774448, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15114464, 15080272, 15489216, 9474464, 15230304, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066688, 15039424 @@ -165175,23 +165175,23 @@ }, { "type_name": "CMsgClientWelcome_Location", - "vtable_address": 30899568, + "vtable_address": 30899504, "methods": [ 15599088, 15649168, - 24747814, + 24747750, 15265712, 15727072, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15085136, 15075936, 15325072, 9474464, 15137120, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066656, 15039408 @@ -165227,23 +165227,23 @@ }, { "type_name": "CMsgConVarValue", - "vtable_address": 30815224, + "vtable_address": 30815160, "methods": [ 14742144, 14827856, - 24747814, + 24747750, 14328272, 14898000, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070256, 14061808, 14408944, 9474464, 14139776, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049232, 14017408 @@ -165279,23 +165279,23 @@ }, { "type_name": "CMsgConnectionStatus", - "vtable_address": 30899888, + "vtable_address": 30899824, "methods": [ 15599232, 15637872, - 24747814, + 24747750, 15266032, 15715088, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051952, 15080256, 15325568, 9474464, 15204768, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066720, 15039440 @@ -165331,23 +165331,23 @@ }, { "type_name": "CMsgConsumableExhausted", - "vtable_address": 30815864, + "vtable_address": 30815800, "methods": [ 14742768, 14794352, - 24747814, + 24747750, 14328928, 14884128, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030560, 14066912, 14410848, 9474464, 14120608, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049360, 14017472 @@ -165383,23 +165383,23 @@ }, { "type_name": "CMsgCsgoSteamUserStatChange", - "vtable_address": 30828184, + "vtable_address": 30828120, "methods": [ 14752896, 14799600, - 24747814, + 24747750, 14341904, 14886688, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031024, 14062048, 14451136, 9474464, 14158720, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051824, 14021872 @@ -165435,23 +165435,23 @@ }, { "type_name": "CMsgDevNewItemRequest", - "vtable_address": 30812344, + "vtable_address": 30812280, "methods": [ 14874656, 14875120, - 24747814, + 24747750, 14325584, 14937936, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14110560, 14067184, 14399888, 9474464, 14092928, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048656, 14017120 @@ -165487,23 +165487,23 @@ }, { "type_name": "CMsgEffectData", - "vtable_address": 30925808, + "vtable_address": 30925744, "methods": [ 15619984, 15683568, - 24747814, + 24747750, 15293264, 15719712, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058848, 15076720, 15409616, 9474464, 15241984, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071904, 15044624 @@ -165539,23 +165539,23 @@ }, { "type_name": "CMsgGCBannedWord", - "vtable_address": 30819224, + "vtable_address": 30819160, "methods": [ 14745520, 14816336, - 24747814, + 24747750, 14332112, 14899472, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14071072, 14061840, 14421584, 9474464, 14180448, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050032, 14017808 @@ -165591,23 +165591,23 @@ }, { "type_name": "CMsgGCBannedWordListRequest", - "vtable_address": 30818744, + "vtable_address": 30818680, "methods": [ 14745216, 14795888, - 24747814, + 24747750, 14331680, 14884848, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038624, 14066640, 14420480, 9474464, 14136256, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049936, 14017760 @@ -165643,23 +165643,23 @@ }, { "type_name": "CMsgGCBannedWordListResponse", - "vtable_address": 30819384, + "vtable_address": 30819320, "methods": [ 14745664, 14838608, - 24747814, + 24747750, 14332288, 14926928, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14103280, 14061856, 14609648, 9474464, 14129792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050064, 14017824 @@ -165695,23 +165695,23 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats", - "vtable_address": 30836024, + "vtable_address": 30835960, "methods": [ 14850480, 14851456, - 24747814, + 24747750, 14350128, 14938736, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14086304, 14063248, 14634000, 9474464, 14146976, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053392, 14022656 @@ -165747,23 +165747,23 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch", - "vtable_address": 30835864, + "vtable_address": 30835800, "methods": [ 14853952, 14854368, - 24747814, + 24747750, 14349952, 14928176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14086144, 14062512, 14633424, 9474464, 14068864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053360, 14022640 @@ -165799,23 +165799,23 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsRange", - "vtable_address": 30835704, + "vtable_address": 30835640, "methods": [ 14758208, 14801776, - 24747814, + 24747750, 14349776, 14888112, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14042432, 14062496, 14478208, 9474464, 14157184, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053328, 14022624 @@ -165851,23 +165851,23 @@ }, { "type_name": "CMsgGCCStrike15_GotvSyncPacket", - "vtable_address": 30848184, + "vtable_address": 30848120, "methods": [ 14846864, 14863984, - 24747814, + 24747750, 14361904, 14944816, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047680, 14064912, 14513808, 9474464, 14067936, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055824, 14023872 @@ -165903,23 +165903,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings", - "vtable_address": 30832984, + "vtable_address": 30832920, "methods": [ 14756320, 14839312, - 24747814, + 24747750, 14347072, 14919440, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14096544, 14066048, 14632960, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14052784, 14022352 @@ -165955,23 +165955,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings_Setting", - "vtable_address": 30832824, + "vtable_address": 30832760, "methods": [ 14756192, 14801008, - 24747814, + 24747750, 14346896, 14887648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14041440, 14062448, 14468800, 9474464, 14137312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052752, 14022336 @@ -166007,23 +166007,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays", - "vtable_address": 30850104, + "vtable_address": 30850040, "methods": [ 14769280, 14841072, - 24747814, + 24747750, 14363888, 14920736, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14097680, 14064768, 14647216, 9474464, 14131520, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056208, 14024064 @@ -166059,23 +166059,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays_Player", - "vtable_address": 30849944, + "vtable_address": 30849880, "methods": [ 14769152, 14806768, - 24747814, + 24747750, 14363712, 14891280, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046224, 14062912, 14521312, 9474464, 14157568, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056176, 14024048 @@ -166111,23 +166111,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_AcknowledgePenalty", - "vtable_address": 30847064, + "vtable_address": 30847000, "methods": [ 14766896, 14805744, - 24747814, + 24747750, 14360896, 14890656, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032032, 14065024, 14509984, 9474464, 14122624, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055600, 14023760 @@ -166163,23 +166163,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_BetaEnrollment", - "vtable_address": 30848664, + "vtable_address": 30848600, "methods": [ 14768016, 14806256, - 24747814, + 24747750, 14362400, 14890880, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045616, 14064880, 14516448, 9474464, 14119712, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055920, 14023920 @@ -166215,23 +166215,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest", - "vtable_address": 30838904, + "vtable_address": 30838840, "methods": [ 14760880, 14802672, - 24747814, + 24747750, 14352976, 14888768, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031360, 14065600, 14487472, 9474464, 14203104, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053968, 14022944 @@ -166267,23 +166267,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse", - "vtable_address": 30839064, + "vtable_address": 30839000, "methods": [ 14761008, 14853056, - 24747814, + 24747750, 14353104, 14935248, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074640, 14065584, 14488048, 9474464, 14067840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054000, 14022960 @@ -166319,23 +166319,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin", - "vtable_address": 30847224, + "vtable_address": 30847160, "methods": [ 14767024, 14805872, - 24747814, + 24747750, 14361040, 14890704, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045440, 14065008, 14510464, 9474464, 14203808, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055632, 14023776 @@ -166371,23 +166371,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCStreamUnlock", - "vtable_address": 30847384, + "vtable_address": 30847320, "methods": [ 14767152, 14806000, - 24747814, + 24747750, 14361200, 14890768, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032080, 14064992, 14511024, 9474464, 14143520, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055664, 14023792 @@ -166423,23 +166423,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCTextMsg", - "vtable_address": 30837944, + "vtable_address": 30837880, "methods": [ 14759936, 14818736, - 24747814, + 24747750, 14352080, 14888624, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089744, 14065664, 14484656, 9474464, 14151072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053776, 14022848 @@ -166475,23 +166475,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GcAckXPShopTracks", - "vtable_address": 30846264, + "vtable_address": 30846200, "methods": [ 14091264, 14091280, - 24747814, + 24747750, 14360176, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14055440, 14023680 @@ -166538,23 +166538,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAccountBalance", - "vtable_address": 30850904, + "vtable_address": 30850840, "methods": [ 14769856, 14820816, - 24747814, + 24747750, 14364608, 14906416, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075728, 14064704, 14523504, 9474464, 14150016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056368, 14024144 @@ -166590,23 +166590,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAuthKeyCode", - "vtable_address": 30848024, + "vtable_address": 30847960, "methods": [ 14767696, 14820176, - 24747814, + 24747750, 14361776, 14904944, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075408, 14064928, 14513232, 9474464, 14134464, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055792, 14023856 @@ -166642,23 +166642,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientCommendPlayer", - "vtable_address": 30833944, + "vtable_address": 30833880, "methods": [ 14845488, 14863152, - 24747814, + 24747750, 14348016, 14940080, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047312, 14065952, 14471840, 9474464, 14189568, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052976, 14022448 @@ -166694,23 +166694,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientGCRankUpdate", - "vtable_address": 30833304, + "vtable_address": 30833240, "methods": [ 14756480, 14839488, - 24747814, + 24747750, 14347392, 14923888, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14104992, 14066016, 14628064, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14052848, 14022384 @@ -166746,23 +166746,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientLogonFatalError", - "vtable_address": 30848824, + "vtable_address": 30848760, "methods": [ 14768144, 14829936, - 24747814, + 24747750, 14362560, 14905728, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075504, 14064864, 14516928, 9474464, 14183232, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055952, 14023936 @@ -166798,23 +166798,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientNetworkConfig", - "vtable_address": 30835544, + "vtable_address": 30835480, "methods": [ 14758064, 14818096, - 24747814, + 24747750, 14349632, 14902672, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14065824, 14477808, 9474464, 14128960, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053296, 14022608 @@ -166850,23 +166850,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyJoinRelay", - "vtable_address": 30851064, + "vtable_address": 30851000, "methods": [ 14770000, 14807024, - 24747814, + 24747750, 14364768, 14891408, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046320, 14064688, 14524080, 9474464, 14143872, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056400, 14024160 @@ -166902,23 +166902,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning", - "vtable_address": 30851384, + "vtable_address": 30851320, "methods": [ 14770256, 14841248, - 24747814, + 24747750, 14365072, 14919808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14096720, 14064672, 14647872, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14056464, 14024192 @@ -166954,23 +166954,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning_Entry", - "vtable_address": 30851224, + "vtable_address": 30851160, "methods": [ 14770128, 14807152, - 24747814, + 24747750, 14364896, 14891472, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046400, 14062928, 14524656, 9474464, 14139072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056432, 14024176 @@ -167006,23 +167006,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport", - "vtable_address": 30852184, + "vtable_address": 30852120, "methods": [ 14770992, 14841424, - 24747814, + 24747750, 14365872, 14935872, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14113856, 14064608, 14648336, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14056624, 14024272 @@ -167058,23 +167058,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport_Entry", - "vtable_address": 30852024, + "vtable_address": 30851960, "methods": [ 14770832, 14830416, - 24747814, + 24747750, 14365696, 14906816, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082448, 14062944, 14526864, 9474464, 14271648, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056592, 14024256 @@ -167110,23 +167110,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPlayerDecalSign", - "vtable_address": 30848504, + "vtable_address": 30848440, "methods": [ 14857552, 14858384, - 24747814, + 24747750, 14362256, 14905568, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082176, 14064896, 14515856, 9474464, 14127840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055888, 14023904 @@ -167162,23 +167162,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPollState", - "vtable_address": 30848984, + "vtable_address": 30848920, "methods": [ 14768304, 14830096, - 24747814, + 24747750, 14362784, 14890928, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14090816, 14064848, 14517488, 9474464, 14185632, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055984, 14023952 @@ -167214,23 +167214,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportPlayer", - "vtable_address": 30833784, + "vtable_address": 30833720, "methods": [ 14756912, 14801264, - 24747814, + 24747750, 14347872, 14887776, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14041632, 14065968, 14470992, 9474464, 14283712, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052944, 14022432 @@ -167266,23 +167266,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportResponse", - "vtable_address": 30834264, + "vtable_address": 30834200, "methods": [ 14757168, 14801520, - 24747814, + 24747750, 14348336, 14887920, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14042080, 14065920, 14473168, 9474464, 14249152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053040, 14022480 @@ -167318,23 +167318,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportServer", - "vtable_address": 30834104, + "vtable_address": 30834040, "methods": [ 14757040, 14801392, - 24747814, + 24747750, 14348176, 14887856, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14041888, 14065936, 14472496, 9474464, 14248288, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053008, 14022464 @@ -167370,23 +167370,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportValidation", - "vtable_address": 30852504, + "vtable_address": 30852440, "methods": [ 14771296, 14836752, - 24747814, + 24747750, 14366208, 14931984, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14111824, 14064592, 14648800, 9474464, 14319312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056688, 14024304 @@ -167422,23 +167422,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinFriendData", - "vtable_address": 30834744, + "vtable_address": 30834680, "methods": [ 14866144, 14866368, - 24747814, + 24747750, 14348848, 14944528, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14226448, 14065888, 14474864, 9474464, 14243616, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053136, 14022528 @@ -167474,23 +167474,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinServerData", - "vtable_address": 30834904, + "vtable_address": 30834840, "methods": [ 14865920, 14866608, - 24747814, + 24747750, 14348992, 14944672, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14226720, 14065872, 14475616, 9474464, 14257408, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053168, 14022544 @@ -167526,23 +167526,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestOffers", - "vtable_address": 30850584, + "vtable_address": 30850520, "methods": [ 14091200, 14091216, - 24747814, + 24747750, 14364320, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14056304, 14024112 @@ -167589,23 +167589,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestPlayersProfile", - "vtable_address": 30836344, + "vtable_address": 30836280, "methods": [ 14758512, 14818256, - 24747814, + 24747750, 14350480, 14888176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14086592, 14065792, 14478784, 9474464, 14205664, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053456, 14022688 @@ -167641,23 +167641,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestSouvenir", - "vtable_address": 30850744, + "vtable_address": 30850680, "methods": [ 14769728, 14806896, - 24747814, + 24747750, 14364464, 14891344, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032160, 14064720, 14522848, 9474464, 14174240, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056336, 14024128 @@ -167693,23 +167693,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends", - "vtable_address": 30834424, + "vtable_address": 30834360, "methods": [ 14757296, 14834592, - 24747814, + 24747750, 14348528, 14926704, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14104064, 14065904, 14620976, 9474464, 14245088, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053072, 14022496 @@ -167745,23 +167745,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientSubmitSurveyVote", - "vtable_address": 30843544, + "vtable_address": 30843480, "methods": [ 14764352, 14803952, - 24747814, + 24747750, 14357664, 14889488, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044176, 14065344, 14496736, 9474464, 14138016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054896, 14023408 @@ -167797,23 +167797,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCChat", - "vtable_address": 30847704, + "vtable_address": 30847640, "methods": [ 14767408, 14819856, - 24747814, + 24747750, 14361488, 14904400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075216, 14064960, 14512080, 9474464, 14149664, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055728, 14023824 @@ -167849,23 +167849,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestElevate", - "vtable_address": 30847544, + "vtable_address": 30847480, "methods": [ 14767280, 14806128, - 24747814, + 24747750, 14361344, 14890832, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045568, 14064976, 14511600, 9474464, 14119488, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055696, 14023808 @@ -167901,23 +167901,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestTicket", - "vtable_address": 30850264, + "vtable_address": 30850200, "methods": [ 14769440, 14820496, - 24747814, + 24747750, 14364032, 14905856, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075632, 14064752, 14521888, 9474464, 14152112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056240, 14024080 @@ -167953,23 +167953,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientVarValueNotificationInfo", - "vtable_address": 30842744, + "vtable_address": 30842680, "methods": [ 14763744, 14829296, - 24747814, + 24747750, 14356944, 14904096, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089072, 14065392, 14494576, 9474464, 14241120, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054736, 14023328 @@ -168005,23 +168005,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy", - "vtable_address": 30841944, + "vtable_address": 30841880, "methods": [ 14763168, 14840544, - 24747814, + 24747750, 14356080, 14918960, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14098608, 14065456, 14645392, 9474464, 14131232, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054576, 14023248 @@ -168057,23 +168057,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasySlot", - "vtable_address": 30841624, + "vtable_address": 30841560, "methods": [ 14762880, 14803568, - 24747814, + 24747750, 14355728, 14889200, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031824, 14062784, 14492368, 9474464, 14173248, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054512, 14023216 @@ -168109,23 +168109,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasyTeam", - "vtable_address": 30841784, + "vtable_address": 30841720, "methods": [ 14763008, 14840368, - 24747814, + 24747750, 14355904, 14920544, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14098352, 14062800, 14644736, 9474464, 14132576, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054544, 14023232 @@ -168161,23 +168161,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem", - "vtable_address": 30852984, + "vtable_address": 30852920, "methods": [ 14771792, 14836336, - 24747814, + 24747750, 14366672, 14907664, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082656, 14064544, 14529600, 9474464, 14272480, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056784, 14024352 @@ -168213,23 +168213,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem_Response", - "vtable_address": 30853144, + "vtable_address": 30853080, "methods": [ 14771984, 14830736, - 24747814, + 24747750, 14366832, 14907952, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082992, 14064528, 14530320, 9474464, 14301344, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056816, 14024368 @@ -168265,23 +168265,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientNotifyXPShop", - "vtable_address": 30846104, + "vtable_address": 30846040, "methods": [ 14861232, 14861776, - 24747814, + 24747750, 14360048, 14946000, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087136, 14065104, 14507152, 9474464, 14168384, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055408, 14023664 @@ -168317,23 +168317,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode", - "vtable_address": 30852664, + "vtable_address": 30852600, "methods": [ 14771488, 14830576, - 24747814, + 24747750, 14366368, 14907248, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076096, 14064576, 14528144, 9474464, 14244416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056720, 14024320 @@ -168369,23 +168369,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRequestValidation", - "vtable_address": 30852824, + "vtable_address": 30852760, "methods": [ 14771648, 14821136, - 24747814, + 24747750, 14366512, 14907392, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076288, 14064560, 14529008, 9474464, 14127360, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056752, 14024336 @@ -168421,23 +168421,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTextMsg", - "vtable_address": 30837784, + "vtable_address": 30837720, "methods": [ 14759792, 14818576, - 24747814, + 24747750, 14351888, 14903264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14081728, 14065680, 14484112, 9474464, 14215424, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053744, 14022832 @@ -168473,23 +168473,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTournamentInfo", - "vtable_address": 30843864, + "vtable_address": 30843800, "methods": [ 14764608, 14819376, - 24747814, + 24747750, 14357968, 14889600, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14086880, 14065312, 14497792, 9474464, 14206368, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054960, 14023440 @@ -168525,23 +168525,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ServerReservationUpdate", - "vtable_address": 30830104, + "vtable_address": 30830040, "methods": [ 14754608, 14800368, - 24747814, + 24747750, 14343840, 14887360, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14041312, 14066128, 14458432, 9474464, 14136960, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052208, 14022064 @@ -168577,23 +168577,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GCToClientChat", - "vtable_address": 30847864, + "vtable_address": 30847800, "methods": [ 14767552, 14820016, - 24747814, + 24747750, 14361632, 14904672, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075312, 14064944, 14512656, 9474464, 14134144, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055760, 14023840 @@ -168629,23 +168629,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Request", - "vtable_address": 30851704, + "vtable_address": 30851640, "methods": [ 14770544, 14807408, - 24747814, + 24747750, 14365376, 14891600, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029792, 14064640, 14525808, 9474464, 14094432, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056528, 14024224 @@ -168681,23 +168681,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Response", - "vtable_address": 30851864, + "vtable_address": 30851800, "methods": [ 14770672, 14830256, - 24747814, + 24747750, 14365536, 14906688, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075824, 14064624, 14526288, 9474464, 14155536, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056560, 14024240 @@ -168733,23 +168733,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardRequest", - "vtable_address": 30843064, + "vtable_address": 30843000, "methods": [ 14091328, 14091344, - 24747814, + 24747750, 14357232, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14054800, 14023360 @@ -168796,23 +168796,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse", - "vtable_address": 30843384, + "vtable_address": 30843320, "methods": [ 14764192, 14840720, - 24747814, + 24747750, 14357536, 14921808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14097376, 14065360, 14646048, 9474464, 14218304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054864, 14023392 @@ -168848,23 +168848,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry", - "vtable_address": 30843224, + "vtable_address": 30843160, "methods": [ 14764064, 14803824, - 24747814, + 24747750, 14357360, 14889424, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044096, 14062832, 14496160, 9474464, 14137664, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054832, 14023376 @@ -168900,23 +168900,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRewardDropsNotification", - "vtable_address": 30838584, + "vtable_address": 30838520, "methods": [ 14760464, 14852608, - 24747814, + 24747750, 14352688, 14935088, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074480, 14065632, 14486640, 9474464, 14067648, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053904, 14022912 @@ -168952,23 +168952,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRunRewardDrops", - "vtable_address": 30838104, + "vtable_address": 30838040, "methods": [ 14877008, 14877280, - 24747814, + 24747750, 14352240, 14943328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14225680, 14065648, 14485248, 9474464, 14067488, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053808, 14022864 @@ -169004,23 +169004,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchList", - "vtable_address": 30840984, + "vtable_address": 30840920, "methods": [ 14855248, 14855520, - 24747814, + 24747750, 14355072, 14947584, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14230288, 14065504, 14642560, 9474464, 14218976, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054384, 14023152 @@ -169056,23 +169056,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames", - "vtable_address": 30839224, + "vtable_address": 30839160, "methods": [ 14091392, 14091408, - 24747814, + 24747750, 14353232, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14054032, 14022976 @@ -169119,23 +169119,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestFullGameInfo", - "vtable_address": 30839864, + "vtable_address": 30839800, "methods": [ 14761600, 14803184, - 24747814, + 24747750, 14353808, 14888976, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043776, 14065520, 14489904, 9474464, 14172736, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054160, 14023040 @@ -169171,23 +169171,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser", - "vtable_address": 30839384, + "vtable_address": 30839320, "methods": [ 14761216, 14802800, - 24747814, + 24747750, 14353376, 14888832, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043680, 14065568, 14488464, 9474464, 14118592, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054064, 14022992 @@ -169223,23 +169223,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestRecentUserGames", - "vtable_address": 30839544, + "vtable_address": 30839480, "methods": [ 14761344, 14802928, - 24747814, + 24747750, 14353520, 14888880, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043728, 14065552, 14488944, 9474464, 14118816, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054096, 14023008 @@ -169275,23 +169275,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestTournamentGames", - "vtable_address": 30839704, + "vtable_address": 30839640, "methods": [ 14761472, 14803056, - 24747814, + 24747750, 14353664, 14888928, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031504, 14065536, 14489424, 9474464, 14121952, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054128, 14023024 @@ -169327,23 +169327,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt", - "vtable_address": 30841144, + "vtable_address": 30841080, "methods": [ 14762432, 14840016, - 24747814, + 24747750, 14355248, 14947808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14228704, 14065488, 14643472, 9474464, 14161504, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054416, 14023168 @@ -169379,23 +169379,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2GCHello", - "vtable_address": 30832504, + "vtable_address": 30832440, "methods": [ 14091456, 14091472, - 24747814, + 24747750, 14346592, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14052688, 14022304 @@ -169442,23 +169442,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2ServerPing", - "vtable_address": 30830744, + "vtable_address": 30830680, "methods": [ 14754992, 14844528, - 24747814, + 24747750, 14344512, 14931168, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14107472, 14066080, 14621968, 9474464, 14273280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052336, 14022128 @@ -169494,23 +169494,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon", - "vtable_address": 30833144, + "vtable_address": 30833080, "methods": [ 14865712, 14866848, - 24747814, + 24747750, 14347216, 14944416, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14226272, 14066032, 14469376, 9474464, 14189024, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052816, 14022368 @@ -169546,23 +169546,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientHello", - "vtable_address": 30832664, + "vtable_address": 30832600, "methods": [ 14880320, 14880464, - 24747814, + 24747750, 14346768, 14947952, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14229024, 14062544, 14630880, 9474464, 14316688, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052720, 14022320 @@ -169598,23 +169598,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve", - "vtable_address": 30832024, + "vtable_address": 30831960, "methods": [ 14865296, 14867552, - 24747814, + 24747750, 14346032, 14944144, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14225840, 14062384, 14464112, 9474464, 14294368, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052592, 14022256 @@ -169650,23 +169650,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats", - "vtable_address": 30846424, + "vtable_address": 30846360, "methods": [ 14766384, 14805232, - 24747814, + 24747750, 14360320, 14890432, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045184, 14065088, 14507808, 9474464, 14222368, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055472, 14023696 @@ -169702,23 +169702,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate", - "vtable_address": 30830904, + "vtable_address": 30830840, "methods": [ 14878064, 14878800, - 24747814, + 24747750, 14344768, 14946224, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14109296, 14066064, 14623040, 9474464, 14310080, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052368, 14022144 @@ -169754,23 +169754,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note", - "vtable_address": 30830584, + "vtable_address": 30830520, "methods": [ 14754864, 14800624, - 24747814, + 24747750, 14344320, 14887472, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031168, 14062144, 14460624, 9474464, 14164544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052304, 14022112 @@ -169806,23 +169806,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm", - "vtable_address": 30829944, + "vtable_address": 30829880, "methods": [ 14754480, 14800240, - 24747814, + 24747750, 14343712, 14887296, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14041184, 14062352, 14457856, 9474464, 14202496, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052176, 14022048 @@ -169858,23 +169858,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve", - "vtable_address": 30831704, + "vtable_address": 30831640, "methods": [ 14864400, 14868672, - 24747814, + 24747750, 14345664, 14942432, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14223952, 14062320, 14628528, 9474464, 14314784, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052528, 14022224 @@ -169910,23 +169910,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate", - "vtable_address": 30833464, + "vtable_address": 30833400, "methods": [ 14756640, 14817776, - 24747814, + 24747750, 14347552, 14902208, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14066000, 14470032, 9474464, 14115088, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052880, 14022400 @@ -169962,23 +169962,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerReservationResponse", - "vtable_address": 30831864, + "vtable_address": 30831800, "methods": [ 14867072, 14867968, - 24747814, + 24747750, 14345856, 14943056, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14224928, 14062592, 14462464, 9474464, 14292992, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052560, 14022240 @@ -170014,23 +170014,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats", - "vtable_address": 30832344, + "vtable_address": 30832280, "methods": [ 14871104, 14872944, - 24747814, + 24747750, 14346464, 14943440, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14227024, 14062656, 14465488, 9474464, 14295328, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052656, 14022288 @@ -170066,23 +170066,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo", - "vtable_address": 30832184, + "vtable_address": 30832120, "methods": [ 14756064, 14800880, - 24747814, + 24747750, 14346176, 14887600, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14041392, 14062368, 14465008, 9474464, 14118368, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052624, 14022272 @@ -170118,23 +170118,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStart", - "vtable_address": 30830264, + "vtable_address": 30830200, "methods": [ 14848736, 14849728, - 24747814, + 24747750, 14344016, 14939216, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14088016, 14066112, 14459008, 9474464, 14269344, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052240, 14022080 @@ -170170,23 +170170,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStop", - "vtable_address": 30830424, + "vtable_address": 30830360, "methods": [ 14754736, 14800496, - 24747814, + 24747750, 14344160, 14887424, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031120, 14066096, 14460144, 9474464, 14121728, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052272, 14022096 @@ -170222,23 +170222,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Invite", - "vtable_address": 30849784, + "vtable_address": 30849720, "methods": [ 14769024, 14806640, - 24747814, + 24747750, 14363568, 14891216, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046144, 14064784, 14520736, 9474464, 14138720, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056144, 14024032 @@ -170274,23 +170274,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Register", - "vtable_address": 30849144, + "vtable_address": 30849080, "methods": [ 14768464, 14806384, - 24747814, + 24747750, 14362944, 14891008, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045664, 14064832, 14518224, 9474464, 14276096, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056016, 14023968 @@ -170326,23 +170326,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Search", - "vtable_address": 30849304, + "vtable_address": 30849240, "methods": [ 14768592, 14820336, - 24747814, + 24747750, 14363104, 14891072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087584, 14064816, 14519072, 9474464, 14252064, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056048, 14023984 @@ -170378,23 +170378,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults", - "vtable_address": 30849624, + "vtable_address": 30849560, "methods": [ 14768864, 14840896, - 24747814, + 24747750, 14363440, 14919616, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14111504, 14064800, 14646752, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14056112, 14024016 @@ -170430,23 +170430,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults_Entry", - "vtable_address": 30849464, + "vtable_address": 30849400, "methods": [ 14768736, 14806512, - 24747814, + 24747750, 14363264, 14891152, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045936, 14062896, 14520000, 9474464, 14260288, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056080, 14024000 @@ -170482,23 +170482,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment", - "vtable_address": 30837304, + "vtable_address": 30837240, "methods": [ 14759392, 14818416, - 24747814, + 24747750, 14351424, 14902928, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14073184, 14065728, 14481984, 9474464, 14300480, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053648, 14022784 @@ -170534,23 +170534,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus", - "vtable_address": 30837464, + "vtable_address": 30837400, "methods": [ 14759536, 14802288, - 24747814, + 24747750, 14351584, 14888496, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043264, 14065712, 14482960, 9474464, 14142816, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053680, 14022800 @@ -170586,23 +170586,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate", - "vtable_address": 30837144, + "vtable_address": 30837080, "methods": [ 14759264, 14802160, - 24747814, + 24747750, 14351280, 14888416, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14043024, 14065744, 14481200, 9474464, 14284736, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053616, 14022768 @@ -170638,23 +170638,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayersProfile", - "vtable_address": 30836504, + "vtable_address": 30836440, "methods": [ 14758656, 14839840, - 24747814, + 24747750, 14350656, 14948608, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14230144, 14065776, 14635568, 9474464, 14130656, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053488, 14022704 @@ -170690,23 +170690,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions", - "vtable_address": 30841464, + "vtable_address": 30841400, "methods": [ 14762720, 14840192, - 24747814, + 24747750, 14355568, 14920352, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14108016, 14065472, 14644080, 9474464, 14130944, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054480, 14023200 @@ -170742,23 +170742,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick", - "vtable_address": 30841304, + "vtable_address": 30841240, "methods": [ 14762592, 14803440, - 24747814, + 24747750, 14355392, 14889136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031648, 14062768, 14491744, 9474464, 14234208, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054448, 14023184 @@ -170794,23 +170794,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary", - "vtable_address": 30836984, + "vtable_address": 30836920, "methods": [ 14759072, 14836960, - 24747814, + 24747750, 14351120, 14931648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14101200, 14065760, 14636224, 9474464, 14179968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053584, 14022752 @@ -170846,23 +170846,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap", - "vtable_address": 30836824, + "vtable_address": 30836760, "methods": [ 14758944, 14802032, - 24747814, + 24747750, 14350944, 14888320, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14042624, 14062576, 14480128, 9474464, 14274336, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053552, 14022736 @@ -170898,23 +170898,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek", - "vtable_address": 30836664, + "vtable_address": 30836600, "methods": [ 14758816, 14801904, - 24747814, + 24747750, 14350816, 14888256, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14042528, 14062560, 14479536, 9474464, 14172256, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053520, 14022720 @@ -170950,23 +170950,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_Server2GCClientValidate", - "vtable_address": 30843704, + "vtable_address": 30843640, "methods": [ 14764480, 14804080, - 24747814, + 24747750, 14357808, 14889552, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044256, 14065328, 14497312, 9474464, 14119040, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054928, 14023424 @@ -171002,23 +171002,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerNotificationForUserPenalty", - "vtable_address": 30833624, + "vtable_address": 30833560, "methods": [ 14756784, 14801136, - 24747814, + 24747750, 14347712, 14887712, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14041520, 14065984, 14470432, 9474464, 14190688, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052912, 14022416 @@ -171054,23 +171054,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerVarValueNotificationInfo", - "vtable_address": 30842904, + "vtable_address": 30842840, "methods": [ 14763904, 14829456, - 24747814, + 24747750, 14357104, 14889344, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14086736, 14065376, 14495280, 9474464, 14210112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054768, 14023344 @@ -171106,23 +171106,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetEventFavorite", - "vtable_address": 30851544, + "vtable_address": 30851480, "methods": [ 14770416, 14807280, - 24747814, + 24747750, 14365232, 14891536, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14032272, 14064656, 14525232, 9474464, 14131808, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056496, 14024208 @@ -171158,23 +171158,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName", - "vtable_address": 30853304, + "vtable_address": 30853240, "methods": [ 14772144, 14821296, - 24747814, + 24747750, 14366992, 14908128, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14064512, 14531360, 9474464, 14115440, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056848, 14024384 @@ -171210,23 +171210,23 @@ }, { "type_name": "CMsgGCCStrike15_v2_WatchInfoUsers", - "vtable_address": 30836184, + "vtable_address": 30836120, "methods": [ 14758336, 14834784, - 24747814, + 24747750, 14350320, 14944976, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14088320, 14065808, 14634704, 9474464, 14194496, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053424, 14022672 @@ -171262,23 +171262,23 @@ }, { "type_name": "CMsgGCClientDisplayNotification", - "vtable_address": 30816984, + "vtable_address": 30816920, "methods": [ 14743744, 14833664, - 24747814, + 24747750, 14330096, 14899168, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14088528, 14066816, 14414512, 9474464, 14209424, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049584, 14017584 @@ -171314,23 +171314,23 @@ }, { "type_name": "CMsgGCClientVersionUpdated", - "vtable_address": 30821304, + "vtable_address": 30821240, "methods": [ 14747024, 14796784, - 24747814, + 24747750, 14334032, 14885280, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038880, 14066448, 14427120, 9474464, 14118144, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050448, 14018016 @@ -171366,23 +171366,23 @@ }, { "type_name": "CMsgGCCollectItem", - "vtable_address": 30820184, + "vtable_address": 30820120, "methods": [ 14746224, 14796272, - 24747814, + 24747750, 14333024, 14885072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030704, 14066544, 14424464, 9474464, 14141760, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050224, 14017904 @@ -171418,23 +171418,23 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemFreeReward", - "vtable_address": 30835224, + "vtable_address": 30835160, "methods": [ 14757760, 14817936, - 24747814, + 24747750, 14349280, 14888048, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084560, 14065840, 14477056, 9474464, 14177824, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053232, 14022576 @@ -171470,23 +171470,23 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemMissionReward", - "vtable_address": 30835064, + "vtable_address": 30835000, "methods": [ 14757632, 14801648, - 24747814, + 24747750, 14349136, 14887984, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14042272, 14065856, 14476432, 9474464, 14233472, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053200, 14022560 @@ -171522,23 +171522,23 @@ }, { "type_name": "CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded", - "vtable_address": 30835384, + "vtable_address": 30835320, "methods": [ 14757904, 14839664, - 24747814, + 24747750, 14349472, 14922608, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14105728, 14063072, 14618112, 9474464, 14309056, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053264, 14022592 @@ -171574,23 +171574,23 @@ }, { "type_name": "CMsgGCDev_SchemaReservationRequest", - "vtable_address": 30872664, + "vtable_address": 30872600, "methods": [ 14787696, 14832016, - 24747814, + 24747750, 14387568, 14915824, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14079056, 14063776, 14587072, 9474464, 14213120, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060720, 14028320 @@ -171626,23 +171626,23 @@ }, { "type_name": "CMsgGCError", - "vtable_address": 30814904, + "vtable_address": 30814840, "methods": [ 14742000, 14815376, - 24747814, + 24747750, 14327984, 14897744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14066976, 14408544, 9474464, 14114560, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049168, 14017376 @@ -171678,23 +171678,23 @@ }, { "type_name": "CMsgGCGiftedItems", - "vtable_address": 30872504, + "vtable_address": 30872440, "methods": [ 14787552, 14825776, - 24747814, + 24747750, 14387408, 14894848, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087776, 14063792, 14586224, 9474464, 14236672, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060688, 14028304 @@ -171730,23 +171730,23 @@ }, { "type_name": "CMsgGCHAccountPhoneNumberChange", - "vtable_address": 30903888, + "vtable_address": 30903824, "methods": [ 15602400, 15638384, - 24747814, + 24747750, 15270144, 15715568, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052384, 15080080, 15334176, 9474464, 15180704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067520, 15040080 @@ -171782,23 +171782,23 @@ }, { "type_name": "CMsgGCHInviteUserToLobby", - "vtable_address": 30904048, + "vtable_address": 30903984, "methods": [ 15602528, 15638512, - 24747814, + 24747750, 15270304, 15715632, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052496, 15080064, 15334784, 9474464, 15151552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067552, 15040096 @@ -171834,23 +171834,23 @@ }, { "type_name": "CMsgGCHRecurringSubscriptionStatusChange", - "vtable_address": 30904208, + "vtable_address": 30904144, "methods": [ 15602656, 15638640, - 24747814, + 24747750, 15270448, 15715696, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052608, 15080048, 15335392, 9474464, 15155936, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067584, 15040112 @@ -171886,23 +171886,23 @@ }, { "type_name": "CMsgGCHVacVerificationChange", - "vtable_address": 30903728, + "vtable_address": 30903664, "methods": [ 15602272, 15638256, - 24747814, + 24747750, 15270000, 15715504, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052304, 15080096, 15333568, 9474464, 15143360, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067488, 15040064 @@ -171938,23 +171938,23 @@ }, { "type_name": "CMsgGCIncrementKillCountResponse", - "vtable_address": 30817304, + "vtable_address": 30817240, "methods": [ 14744048, 14794864, - 24747814, + 24747750, 14330384, 14884352, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038032, 14066784, 14415520, 9474464, 14198752, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049648, 14017616 @@ -171990,23 +171990,23 @@ }, { "type_name": "CMsgGCItemCustomizationNotification", - "vtable_address": 30873144, + "vtable_address": 30873080, "methods": [ 14788112, 14832176, - 24747814, + 24747750, 14388032, 14895024, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084784, 14063728, 14588720, 9474464, 14182624, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060816, 14028368 @@ -172042,23 +172042,23 @@ }, { "type_name": "CMsgGCItemPreviewItemBoughtNotification", - "vtable_address": 30817944, + "vtable_address": 30817880, "methods": [ 14744560, 14795376, - 24747814, + 24747750, 14331008, 14884608, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038528, 14066720, 14417856, 9474464, 14117248, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049776, 14017680 @@ -172094,23 +172094,23 @@ }, { "type_name": "CMsgGCMultiplexMessage", - "vtable_address": 30897488, + "vtable_address": 30897424, "methods": [ 15597520, 15661600, - 24747814, + 24747750, 15263776, 15726208, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15082832, 15080448, 15320000, 9474464, 15193536, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066240, 15039200 @@ -172146,23 +172146,23 @@ }, { "type_name": "CMsgGCMultiplexMessage_Response", - "vtable_address": 30897648, + "vtable_address": 30897584, "methods": [ 15597680, 15637104, - 24747814, + 24747750, 15263920, 15714768, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051824, 15080432, 15320768, 9474464, 15126208, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066272, 15039216 @@ -172198,23 +172198,23 @@ }, { "type_name": "CMsgGCNameItemNotification", - "vtable_address": 30816824, + "vtable_address": 30816760, "methods": [ 14743600, 14816016, - 24747814, + 24747750, 14329824, 14898864, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070784, 14066832, 14413936, 9474464, 14158336, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049552, 14017568 @@ -172250,23 +172250,23 @@ }, { "type_name": "CMsgGCReportAbuse", - "vtable_address": 30816504, + "vtable_address": 30816440, "methods": [ 14743312, 14815696, - 24747814, + 24747750, 14329568, 14898256, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070496, 14066864, 14412640, 9474464, 14253024, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049488, 14017536 @@ -172302,23 +172302,23 @@ }, { "type_name": "CMsgGCReportAbuseResponse", - "vtable_address": 30816664, + "vtable_address": 30816600, "methods": [ 14743456, 14815856, - 24747814, + 24747750, 14329696, 14898560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070688, 14066848, 14413360, 9474464, 14157952, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049520, 14017552 @@ -172354,23 +172354,23 @@ }, { "type_name": "CMsgGCRequestAnnouncements", - "vtable_address": 30818904, + "vtable_address": 30818840, "methods": [ 14091648, 14091664, - 24747814, + 24747750, 14331808, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14049968, 14017776 @@ -172417,23 +172417,23 @@ }, { "type_name": "CMsgGCRequestAnnouncementsResponse", - "vtable_address": 30819064, + "vtable_address": 30819000, "methods": [ 14745344, 14833840, - 24747814, + 24747750, 14331968, 14899312, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070880, 14066624, 14421056, 9474464, 14204416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050000, 14017792 @@ -172469,23 +172469,23 @@ }, { "type_name": "CMsgGCRequestSessionIP", - "vtable_address": 30898768, + "vtable_address": 30898704, "methods": [ 15598480, 15637616, - 24747814, + 24747750, 15264880, 15714992, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15048912, 15080336, 15323936, 9474464, 15104640, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066496, 15039328 @@ -172521,23 +172521,23 @@ }, { "type_name": "CMsgGCRequestSessionIPResponse", - "vtable_address": 30898928, + "vtable_address": 30898864, "methods": [ 15598608, 15637744, - 24747814, + 24747750, 15265024, 15715040, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15080320, 15324256, 9474464, 15104752, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066528, 15039344 @@ -172573,23 +172573,23 @@ }, { "type_name": "CMsgGCServerVersionUpdated", - "vtable_address": 30821144, + "vtable_address": 30821080, "methods": [ 14746896, 14796656, - 24747814, + 24747750, 14333888, 14885232, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038832, 14066464, 14426640, 9474464, 14117920, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050416, 14018000 @@ -172625,23 +172625,23 @@ }, { "type_name": "CMsgGCShowItemsPickedUp", - "vtable_address": 30817144, + "vtable_address": 30817080, "methods": [ 14743920, 14794736, - 24747814, + 24747750, 14330224, 14884304, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029760, 14066800, 14415200, 9474464, 14093088, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049616, 14017600 @@ -172677,23 +172677,23 @@ }, { "type_name": "CMsgGCStorePurchaseCancel", - "vtable_address": 30818104, + "vtable_address": 30818040, "methods": [ 14744688, 14795504, - 24747814, + 24747750, 14331136, 14884656, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030608, 14066704, 14418336, 9474464, 14120832, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049808, 14017696 @@ -172729,23 +172729,23 @@ }, { "type_name": "CMsgGCStorePurchaseCancelResponse", - "vtable_address": 30818264, + "vtable_address": 30818200, "methods": [ 14744816, 14795632, - 24747814, + 24747750, 14331280, 14884704, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038576, 14066688, 14418816, 9474464, 14117472, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049840, 14017712 @@ -172781,23 +172781,23 @@ }, { "type_name": "CMsgGCStorePurchaseFinalize", - "vtable_address": 30818424, + "vtable_address": 30818360, "methods": [ 14744944, 14795760, - 24747814, + 24747750, 14331408, 14884752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030656, 14066672, 14419296, 9474464, 14121056, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049872, 14017728 @@ -172833,23 +172833,23 @@ }, { "type_name": "CMsgGCStorePurchaseFinalizeResponse", - "vtable_address": 30818584, + "vtable_address": 30818520, "methods": [ 14745072, 14816176, - 24747814, + 24747750, 14331552, 14884800, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084400, 14066656, 14419776, 9474464, 14147616, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049904, 14017744 @@ -172885,23 +172885,23 @@ }, { "type_name": "CMsgGCStorePurchaseInit", - "vtable_address": 30809784, + "vtable_address": 30809720, "methods": [ 14737568, 14834016, - 24747814, + 24747750, 14323152, 14923104, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14108912, 14067376, 14603840, 9474464, 14196192, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048144, 14016864 @@ -172937,23 +172937,23 @@ }, { "type_name": "CMsgGCStorePurchaseInitResponse", - "vtable_address": 30809944, + "vtable_address": 30809880, "methods": [ 14737744, 14827216, - 24747814, + 24747750, 14323328, 14895568, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084896, 14067360, 14393920, 9474464, 14211328, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048176, 14016880 @@ -172989,23 +172989,23 @@ }, { "type_name": "CMsgGCToClientSteamDatagramTicket", - "vtable_address": 30850424, + "vtable_address": 30850360, "methods": [ 14769584, 14820656, - 24747814, + 24747750, 14364192, 14906160, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082384, 14064736, 14522448, 9474464, 14126304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056272, 14024096 @@ -173041,23 +173041,23 @@ }, { "type_name": "CMsgGCToGCBannedWordListBroadcast", - "vtable_address": 30819544, + "vtable_address": 30819480, "methods": [ 14874192, 14875584, - 24747814, + 24747750, 14332416, 14927360, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14103536, 14066608, 14422288, 9474464, 14067392, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050096, 14017840 @@ -173093,23 +173093,23 @@ }, { "type_name": "CMsgGCToGCBannedWordListUpdated", - "vtable_address": 30819704, + "vtable_address": 30819640, "methods": [ 14745824, 14796016, - 24747814, + 24747750, 14332560, 14884912, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038704, 14066592, 14422704, 9474464, 14117696, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050128, 14017856 @@ -173145,23 +173145,23 @@ }, { "type_name": "CMsgGCToGCBroadcastConsoleCommand", - "vtable_address": 30820984, + "vtable_address": 30820920, "methods": [ 14746752, 14816816, - 24747814, + 24747750, 14333744, 14900016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14066480, 14426240, 9474464, 14114912, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050384, 14017984 @@ -173197,23 +173197,23 @@ }, { "type_name": "CMsgGCToGCDirtyMultipleSDOCache", - "vtable_address": 30820024, + "vtable_address": 30819960, "methods": [ 14746080, 14816496, - 24747814, + 24747750, 14332864, 14885024, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084480, 14066560, 14423760, 9474464, 14148032, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050192, 14017888 @@ -173249,23 +173249,23 @@ }, { "type_name": "CMsgGCToGCDirtySDOCache", - "vtable_address": 30819864, + "vtable_address": 30819800, "methods": [ 14745952, 14796144, - 24747814, + 24747750, 14332720, 14884960, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038752, 14066576, 14423184, 9474464, 14141408, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050160, 14017872 @@ -173301,23 +173301,23 @@ }, { "type_name": "CMsgGCToGCIsTrustedServer", - "vtable_address": 30820664, + "vtable_address": 30820600, "methods": [ 14746496, 14796400, - 24747814, + 24747750, 14333440, 14885136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029760, 14066512, 14425440, 9474464, 14093200, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050320, 14017952 @@ -173353,23 +173353,23 @@ }, { "type_name": "CMsgGCToGCIsTrustedServerResponse", - "vtable_address": 30820824, + "vtable_address": 30820760, "methods": [ 14746624, 14796528, - 24747814, + 24747750, 14333584, 14885184, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029792, 14066496, 14425760, 9474464, 14094208, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050352, 14017968 @@ -173405,23 +173405,23 @@ }, { "type_name": "CMsgGCToGCRequestPassportItemGrant", - "vtable_address": 30821624, + "vtable_address": 30821560, "methods": [ 14747152, 14796912, - 24747814, + 24747750, 14334320, 14885328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038928, 14066432, 14427600, 9474464, 14154304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050512, 14018048 @@ -173457,23 +173457,23 @@ }, { "type_name": "CMsgGCToGCUpdateSQLKeyValue", - "vtable_address": 30820504, + "vtable_address": 30820440, "methods": [ 14746352, 14816656, - 24747814, + 24747750, 14333312, 14899760, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14066528, 14425040, 9474464, 14114736, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050288, 14017936 @@ -173509,23 +173509,23 @@ }, { "type_name": "CMsgGCToGCWebAPIAccountChanged", - "vtable_address": 30821464, + "vtable_address": 30821400, "methods": [ 14091520, 14091536, - 24747814, + 24747750, 14334160, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14050480, 14018032 @@ -173572,23 +173572,23 @@ }, { "type_name": "CMsgGCUpdateSessionIP", - "vtable_address": 30898608, + "vtable_address": 30898544, "methods": [ 15598352, 15637488, - 24747814, + 24747750, 15264752, 15714928, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15048944, 15080352, 15323536, 9474464, 15104464, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066464, 15039312 @@ -173624,23 +173624,23 @@ }, { "type_name": "CMsgGCUserTrackTimePlayedConsecutively", - "vtable_address": 30872984, + "vtable_address": 30872920, "methods": [ 14787984, 14813680, - 24747814, + 24747750, 14387872, 14894976, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046848, 14063744, 14588240, 9474464, 14119936, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060784, 14028352 @@ -173676,23 +173676,23 @@ }, { "type_name": "CMsgGC_GlobalGame_Play", - "vtable_address": 30846904, + "vtable_address": 30846840, "methods": [ 14766768, 14805616, - 24747814, + 24747750, 14360752, 14890592, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045344, 14065040, 14509392, 9474464, 14173760, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055568, 14023744 @@ -173728,23 +173728,23 @@ }, { "type_name": "CMsgGC_GlobalGame_Subscribe", - "vtable_address": 30846584, + "vtable_address": 30846520, "methods": [ 14766512, 14805360, - 24747814, + 24747750, 14360448, 14890496, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031936, 14065072, 14508432, 9474464, 14122176, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055504, 14023712 @@ -173780,23 +173780,23 @@ }, { "type_name": "CMsgGC_GlobalGame_Unsubscribe", - "vtable_address": 30846744, + "vtable_address": 30846680, "methods": [ 14766640, 14805488, - 24747814, + 24747750, 14360592, 14890544, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14031984, 14065056, 14508912, 9474464, 14122400, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055536, 14023728 @@ -173832,23 +173832,23 @@ }, { "type_name": "CMsgGC_ServerQuestUpdateData", - "vtable_address": 30829784, + "vtable_address": 30829720, "methods": [ 14876512, 14877568, - 24747814, + 24747750, 14343568, 14927984, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14107008, 14062608, 14620192, 9474464, 14246016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052144, 14022032 @@ -173884,23 +173884,23 @@ }, { "type_name": "CMsgGameServerInfo", - "vtable_address": 30821784, + "vtable_address": 30821720, "methods": [ 14747280, 14816976, - 24747814, + 24747750, 14334496, 14900272, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14071184, 14066416, 14428192, 9474464, 14289904, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050544, 14018064 @@ -173936,23 +173936,23 @@ }, { "type_name": "CMsgIPCAddress", - "vtable_address": 30915408, + "vtable_address": 30915344, "methods": [ 15611360, 15641200, - 24747814, + 24747750, 15281680, 15717168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15053584, 15076464, 15374352, 9474464, 15131136, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069824, 15042560 @@ -173988,23 +173988,23 @@ }, { "type_name": "CMsgIncrementKillCountAttribute", - "vtable_address": 30812504, + "vtable_address": 30812440, "methods": [ 14739808, 14793072, - 24747814, + 24747750, 14325728, 14883392, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037152, 14067168, 14400384, 9474464, 14198176, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048688, 14017136 @@ -174040,23 +174040,23 @@ }, { "type_name": "CMsgInvitationCreated", - "vtable_address": 30810744, + "vtable_address": 30810680, "methods": [ 14738464, 14792432, - 24747814, + 24747750, 14324064, 14883104, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030080, 14067280, 14396912, 9474464, 14126528, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048336, 14016960 @@ -174092,23 +174092,23 @@ }, { "type_name": "CMsgInviteToParty", - "vtable_address": 30810584, + "vtable_address": 30810520, "methods": [ 14738336, 14792304, - 24747814, + 24747750, 14323904, 14883040, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036800, 14067296, 14396320, 9474464, 14153504, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048304, 14016944 @@ -174144,23 +174144,23 @@ }, { "type_name": "CMsgItemAcknowledged", - "vtable_address": 30838744, + "vtable_address": 30838680, "methods": [ 14760672, 14852832, - 24747814, + 24747750, 14352816, 14935168, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074560, 14065616, 14487056, 9474464, 14067744, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053936, 14022928 @@ -174196,23 +174196,23 @@ }, { "type_name": "CMsgItemAcknowledged__DEPRECATED", - "vtable_address": 30816024, + "vtable_address": 30815960, "methods": [ 14742896, 14794480, - 24747814, + 24747750, 14329088, 14884176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037728, 14066896, 14411328, 9474464, 14262016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049392, 14017488 @@ -174248,23 +174248,23 @@ }, { "type_name": "CMsgKickFromParty", - "vtable_address": 30811064, + "vtable_address": 30811000, "methods": [ 14738720, 14792688, - 24747814, + 24747750, 14324336, 14883232, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029760, 14067248, 14398000, 9474464, 14092704, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048400, 14016992 @@ -174300,23 +174300,23 @@ }, { "type_name": "CMsgLANServerAvailable", - "vtable_address": 30811544, + "vtable_address": 30811480, "methods": [ 14738848, 14792816, - 24747814, + 24747750, 14324720, 14883280, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029760, 14067232, 14398320, 9474464, 14092816, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048496, 14017040 @@ -174352,23 +174352,23 @@ }, { "type_name": "CMsgLeaveParty", - "vtable_address": 30811224, + "vtable_address": 30811160, "methods": [ 14091840, 14091856, - 24747814, + 24747750, 14324464, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14048432, 14017008 @@ -174415,23 +174415,23 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome", - "vtable_address": 30842424, + "vtable_address": 30842360, "methods": [ 14859728, 14860752, - 24747814, + 24747750, 14356560, 15035760, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15036224, 14065424, 14602720, 9474464, 14277120, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054672, 14023296 @@ -174467,23 +174467,23 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome_Location", - "vtable_address": 30842264, + "vtable_address": 30842200, "methods": [ 14763472, 14819216, - 24747814, + 24747750, 14356384, 14903808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075120, 14062816, 14493344, 9474464, 14133440, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054640, 14023280 @@ -174519,23 +174519,23 @@ }, { "type_name": "CMsgModifyItemAttribute", - "vtable_address": 30812824, + "vtable_address": 30812760, "methods": [ 14740064, 14793328, - 24747814, + 24747750, 14326016, 14883552, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037504, 14067136, 14401728, 9474464, 14168864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048752, 14017168 @@ -174571,23 +174571,23 @@ }, { "type_name": "CMsgOpenCrate", - "vtable_address": 30822424, + "vtable_address": 30822360, "methods": [ 14747840, 14797296, - 24747814, + 24747750, 14335120, 14885520, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039280, 14066368, 14430736, 9474464, 14192256, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050672, 14018128 @@ -174623,23 +174623,23 @@ }, { "type_name": "CMsgPartyInviteResponse", - "vtable_address": 30810904, + "vtable_address": 30810840, "methods": [ 14738592, 14792560, - 24747814, + 24747750, 14324208, 14883168, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036896, 14067264, 14397408, 9474464, 14191712, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048368, 14016976 @@ -174675,23 +174675,23 @@ }, { "type_name": "CMsgPlaceDecalEvent", - "vtable_address": 30875224, + "vtable_address": 30875160, "methods": [ 14789936, 14846640, - 24747814, + 24747750, 12437840, 15031968, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15035216, 12437152, 14595248, 9474464, 14287840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061232, 14029056 @@ -174727,23 +174727,23 @@ }, { "type_name": "CMsgPlayerBulletHit", - "vtable_address": 30824664, + "vtable_address": 30824600, "methods": [ 14749632, 14847456, - 24747814, + 24747750, 14337520, 15029360, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15032864, 14066208, 14439168, 9474464, 14253888, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051120, 14018576 @@ -174779,23 +174779,23 @@ }, { "type_name": "CMsgPlayerInfo", - "vtable_address": 30920048, + "vtable_address": 30919984, "methods": [ 15615264, 15655408, - 24747814, + 24747750, 15286336, 15738960, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089456, 15078960, 15388208, 9474464, 15189344, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070752, 15043504 @@ -174831,23 +174831,23 @@ }, { "type_name": "CMsgProtoBufHeader", - "vtable_address": 30923888, + "vtable_address": 30923824, "methods": [ 15618704, 15663200, - 24747814, + 24747750, 15290368, 15742176, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092480, 15078704, 15401488, 9474464, 15247232, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071520, 15044016 @@ -174883,23 +174883,23 @@ }, { "type_name": "CMsgQAngle", - "vtable_address": 30919408, + "vtable_address": 30919344, "methods": [ 15614880, 15642480, - 24747814, + 24747750, 15285728, 15717968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049232, 15076336, 15386208, 9474464, 15106080, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070624, 15043440 @@ -174935,23 +174935,23 @@ }, { "type_name": "CMsgQuaternion", - "vtable_address": 30919568, + "vtable_address": 30919504, "methods": [ 15615008, 15642608, - 24747814, + 24747750, 15285888, 15718192, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049072, 15076592, 15386624, 9474464, 15106320, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070656, 15043456 @@ -174987,23 +174987,23 @@ }, { "type_name": "CMsgRGBA", - "vtable_address": 30919888, + "vtable_address": 30919824, "methods": [ 15615136, 15642736, - 24747814, + 24747750, 15286192, 15718256, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050640, 15076688, 15387648, 9474464, 15183488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070720, 15043488 @@ -175039,23 +175039,23 @@ }, { "type_name": "CMsgRecurringMissionSchema", - "vtable_address": 30853784, + "vtable_address": 30853720, "methods": [ 14772432, 14841600, - 24747814, + 24747750, 14367488, 14918816, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14090096, 14064496, 14650368, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14056944, 14024432 @@ -175091,23 +175091,23 @@ }, { "type_name": "CMsgRecurringMissionSchema_MissionTemplateList", - "vtable_address": 30853624, + "vtable_address": 30853560, "methods": [ 14772288, 14821456, - 24747814, + 24747750, 14367312, 14891648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089920, 14062976, 14531760, 9474464, 14151456, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056912, 14024416 @@ -175143,23 +175143,23 @@ }, { "type_name": "CMsgReplayUploadedToYouTube", - "vtable_address": 30815704, + "vtable_address": 30815640, "methods": [ 14742608, 14828016, - 24747814, + 24747750, 14328784, 14898128, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070368, 14066928, 14410208, 9474464, 14184224, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049328, 14017456 @@ -175195,23 +175195,23 @@ }, { "type_name": "CMsgReplicateConVars", - "vtable_address": 30815384, + "vtable_address": 30815320, "methods": [ 14742304, 14838256, - 24747814, + 24747750, 14328448, 14928432, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14114176, 14066960, 14608720, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14049264, 14017424 @@ -175247,23 +175247,23 @@ }, { "type_name": "CMsgRequestInventoryRefresh", - "vtable_address": 30815064, + "vtable_address": 30815000, "methods": [ 14091712, 14091728, - 24747814, + 24747750, 14328112, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14049200, 14017392 @@ -175310,23 +175310,23 @@ }, { "type_name": "CMsgRequestRecurringMissionSchedule", - "vtable_address": 30853464, + "vtable_address": 30853400, "methods": [ 14091136, 14091152, - 24747814, + 24747750, 14367120, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14056880, 14024400 @@ -175373,23 +175373,23 @@ }, { "type_name": "CMsgSDONoMemcached", - "vtable_address": 30820344, + "vtable_address": 30820280, "methods": [ 14091584, 14091600, - 24747814, + 24747750, 14333152, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14050256, 14017920 @@ -175436,23 +175436,23 @@ }, { "type_name": "CMsgSOCacheHaveVersion", - "vtable_address": 30899088, + "vtable_address": 30899024, "methods": [ 15695456, 15698368, - 24747814, + 24747750, 15265184, 15774064, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057344, 15075888, 15324576, 9474464, 15104864, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066560, 15039360 @@ -175488,23 +175488,23 @@ }, { "type_name": "CMsgSOCacheSubscribed", - "vtable_address": 30896528, + "vtable_address": 30896464, "methods": [ 15706784, 15707936, - 24747814, + 24747750, 15262912, 15774208, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15099280, 15075904, 15486784, 9474464, 15108944, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066048, 15039104 @@ -175540,23 +175540,23 @@ }, { "type_name": "CMsgSOCacheSubscribed_SubscribedType", - "vtable_address": 30896368, + "vtable_address": 30896304, "methods": [ 15597104, 15648528, - 24747814, + 24747750, 15262736, 15714656, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15099104, 15075872, 15316336, 9474464, 15150688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066016, 15039088 @@ -175592,23 +175592,23 @@ }, { "type_name": "CMsgSOCacheSubscriptionCheck", - "vtable_address": 30896848, + "vtable_address": 30896784, "methods": [ 15696288, 15697536, - 24747814, + 24747750, 15263200, 15773920, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057168, 15075920, 15317344, 9474464, 15104192, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066112, 15039136 @@ -175644,23 +175644,23 @@ }, { "type_name": "CMsgSOCacheSubscriptionRefresh", - "vtable_address": 30897008, + "vtable_address": 30896944, "methods": [ 15695872, 15697952, - 24747814, + 24747750, 15263328, 15773792, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057264, 15080496, 15317840, 9474464, 15080656, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066144, 15039152 @@ -175696,23 +175696,23 @@ }, { "type_name": "CMsgSOCacheUnsubscribed", - "vtable_address": 30896688, + "vtable_address": 30896624, "methods": [ 15696704, 15697120, - 24747814, + 24747750, 15263040, 15773664, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057088, 15080512, 15316928, 9474464, 15080560, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066080, 15039120 @@ -175748,23 +175748,23 @@ }, { "type_name": "CMsgSOCacheVersion", - "vtable_address": 30897168, + "vtable_address": 30897104, "methods": [ 15597248, 15636976, - 24747814, + 24747750, 15263456, 15714720, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15048912, 15080480, 15318256, 9474464, 15104352, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066176, 15039168 @@ -175800,23 +175800,23 @@ }, { "type_name": "CMsgSOIDOwner", - "vtable_address": 30895728, + "vtable_address": 30895664, "methods": [ 15596832, 15636848, - 24747814, + 24747750, 15262080, 15714592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051744, 15075840, 15314544, 9474464, 15144928, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15065888, 15039024 @@ -175852,23 +175852,23 @@ }, { "type_name": "CMsgSOMultipleObjects", - "vtable_address": 30896208, + "vtable_address": 30896144, "methods": [ 15707168, 15707552, - 24747814, + 24747750, 15262544, 15775520, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15115120, 15080528, 15486144, 9474464, 15108720, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15065984, 15039072 @@ -175904,23 +175904,23 @@ }, { "type_name": "CMsgSOMultipleObjects_SingleObject", - "vtable_address": 30896048, + "vtable_address": 30895984, "methods": [ 15596960, 15648368, - 24747814, + 24747750, 15262368, 15725568, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15082736, 15075856, 15315760, 9474464, 15169504, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15065952, 15039056 @@ -175956,23 +175956,23 @@ }, { "type_name": "CMsgSOSingleObject", - "vtable_address": 30895888, + "vtable_address": 30895824, "methods": [ 15702944, 15703296, - 24747814, + 24747750, 15262224, 15775968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15082544, 15080544, 15315120, 9474464, 15191360, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15065920, 15039040 @@ -176008,23 +176008,23 @@ }, { "type_name": "CMsgSerializedSOCache", - "vtable_address": 30903568, + "vtable_address": 30903504, "methods": [ 15602112, 15669376, - 24747814, + 24747750, 15269776, 15755024, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15112448, 15080112, 15494960, 9474464, 15160864, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067456, 15039808 @@ -176060,23 +176060,23 @@ }, { "type_name": "CMsgSerializedSOCache_Cache", - "vtable_address": 30903408, + "vtable_address": 30903344, "methods": [ 15601920, 15667168, - 24747814, + 24747750, 15269600, 15754704, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15112112, 15076112, 15494192, 9474464, 15175424, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067424, 15039792 @@ -176112,23 +176112,23 @@ }, { "type_name": "CMsgSerializedSOCache_Cache_Version", - "vtable_address": 30903248, + "vtable_address": 30903184, "methods": [ 15601792, 15638128, - 24747814, + 24747750, 15269408, 15715440, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052224, 15076080, 15332992, 9474464, 15145280, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067392, 15039776 @@ -176164,23 +176164,23 @@ }, { "type_name": "CMsgSerializedSOCache_TypeCache", - "vtable_address": 30903088, + "vtable_address": 30903024, "methods": [ 15601648, 15650448, - 24747814, + 24747750, 15269248, 15715344, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15099472, 15076096, 15332336, 9474464, 15172480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067360, 15039760 @@ -176216,23 +176216,23 @@ }, { "type_name": "CMsgServerAvailable", - "vtable_address": 30811384, + "vtable_address": 30811320, "methods": [ 14091776, 14091792, - 24747814, + 24747750, 14324592, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 14048464, 14017024 @@ -176279,23 +176279,23 @@ }, { "type_name": "CMsgServerHello", - "vtable_address": 30899408, + "vtable_address": 30899344, "methods": [ 15598896, 15666560, - 24747814, + 24747750, 15265568, 15770832, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15119776, 15080288, 15488352, 9474464, 15229344, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066624, 15039392 @@ -176331,23 +176331,23 @@ }, { "type_name": "CMsgServerNetworkStats", - "vtable_address": 30917648, + "vtable_address": 30917584, "methods": [ 15613232, 15667376, - 24747814, + 24747750, 15283856, 15761024, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15120912, 15079120, 15508304, 9474464, 15255040, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070272, 15042800 @@ -176383,23 +176383,23 @@ }, { "type_name": "CMsgServerNetworkStats_Player", - "vtable_address": 30917488, + "vtable_address": 30917424, "methods": [ 15613088, 15654768, - 24747814, + 24747750, 15283696, 15737632, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089168, 15076560, 15380048, 9474464, 15205728, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070240, 15042784 @@ -176435,23 +176435,23 @@ }, { "type_name": "CMsgServerNetworkStats_Port", - "vtable_address": 30917328, + "vtable_address": 30917264, "methods": [ 15612944, 15654608, - 24747814, + 24747750, 15283552, 15737360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089072, 15076544, 15379472, 9474464, 15139904, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070208, 15042768 @@ -176487,23 +176487,23 @@ }, { "type_name": "CMsgServerPeer", - "vtable_address": 30915568, + "vtable_address": 30915504, "methods": [ 15674960, 15692864, - 24747814, + 24747750, 15281840, 15764016, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15122768, 15076480, 15374848, 9474464, 15181184, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069856, 15042576 @@ -176539,23 +176539,23 @@ }, { "type_name": "CMsgServerUserCmd", - "vtable_address": 30918608, + "vtable_address": 30918544, "methods": [ 15614192, 15655248, - 24747814, + 24747750, 15284752, 15738656, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15084432, 15076576, 15384144, 9474464, 15213312, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070464, 15042896 @@ -176591,23 +176591,23 @@ }, { "type_name": "CMsgSetItemPositions", - "vtable_address": 30816344, + "vtable_address": 30816280, "methods": [ 14743152, 14838432, - 24747814, + 24747750, 14329424, 14919264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14097904, 14066880, 14609184, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14049456, 14017520 @@ -176643,23 +176643,23 @@ }, { "type_name": "CMsgSetItemPositions_ItemPosition", - "vtable_address": 30816184, + "vtable_address": 30816120, "methods": [ 14743024, 14794608, - 24747814, + 24747750, 14329248, 14884240, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037936, 14061824, 14412064, 9474464, 14169856, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049424, 14017504 @@ -176695,23 +176695,23 @@ }, { "type_name": "CMsgSortItems", - "vtable_address": 30814104, + "vtable_address": 30814040, "methods": [ 14741280, 14794096, - 24747814, + 24747750, 14327248, 14883936, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037680, 14067056, 14405824, 9474464, 14117024, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049008, 14017296 @@ -176747,23 +176747,23 @@ }, { "type_name": "CMsgSosSetLibraryStackFields", - "vtable_address": 30877464, + "vtable_address": 30877400, "methods": [ 14792032, 14827056, - 24747814, + 24747750, 12870352, 14918288, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084320, 12865072, 14602272, 9474464, 14151840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061680, 14029280 @@ -176799,7 +176799,7 @@ }, { "type_name": "CMsgSosSetLibraryStackFields_t", - "vtable_address": 30529136, + "vtable_address": 30529072, "methods": [ 12870560, 12870624, @@ -176871,23 +176871,23 @@ }, { "type_name": "CMsgSosSetLibraryStackFields_t", - "vtable_address": 30529200, + "vtable_address": 30529136, "methods": [ 12870592, 12870688, - 24747814, + 24747750, 12870352, 14918288, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084320, 12865072, 14602272, 9474464, 14151840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061680, 14029280 @@ -176955,23 +176955,23 @@ }, { "type_name": "CMsgSosSetSoundEventParams", - "vtable_address": 30877304, + "vtable_address": 30877240, "methods": [ 14791888, 14826896, - 24747814, + 24747750, 12869696, 14918016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084224, 12865056, 14601696, 9474464, 14164160, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061648, 14029264 @@ -177007,7 +177007,7 @@ }, { "type_name": "CMsgSosSetSoundEventParams_t", - "vtable_address": 30528600, + "vtable_address": 30528536, "methods": [ 12869904, 12869968, @@ -177079,23 +177079,23 @@ }, { "type_name": "CMsgSosSetSoundEventParams_t", - "vtable_address": 30528664, + "vtable_address": 30528600, "methods": [ 12869936, 12870032, - 24747814, + 24747750, 12869696, 14918016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084224, 12865056, 14601696, 9474464, 14164160, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061648, 14029264 @@ -177163,23 +177163,23 @@ }, { "type_name": "CMsgSosStartSoundEvent", - "vtable_address": 30876824, + "vtable_address": 30876760, "methods": [ 14791488, 14826736, - 24747814, + 24747750, 12867696, 14917712, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084048, 12865008, 14600080, 9474464, 14261280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061552, 14029216 @@ -177215,7 +177215,7 @@ }, { "type_name": "CMsgSosStartSoundEvent_t", - "vtable_address": 30526992, + "vtable_address": 30526928, "methods": [ 12867904, 12867968, @@ -177287,23 +177287,23 @@ }, { "type_name": "CMsgSosStartSoundEvent_t", - "vtable_address": 30527056, + "vtable_address": 30526992, "methods": [ 12867936, 12868032, - 24747814, + 24747750, 12867696, 14917712, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084048, 12865008, 14600080, 9474464, 14261280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061552, 14029216 @@ -177371,23 +177371,23 @@ }, { "type_name": "CMsgSosStopSoundEvent", - "vtable_address": 30876984, + "vtable_address": 30876920, "methods": [ 14791632, 14814320, - 24747814, + 24747750, 12868352, 14895456, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036528, 12865024, 14600720, 9474464, 14125312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061584, 14029232 @@ -177423,23 +177423,23 @@ }, { "type_name": "CMsgSosStopSoundEventHash", - "vtable_address": 30877144, + "vtable_address": 30877080, "methods": [ 14791760, 14814448, - 24747814, + 24747750, 12869024, 14895504, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036576, 12865040, 14601200, 9474464, 14127072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061616, 14029248 @@ -177475,7 +177475,7 @@ }, { "type_name": "CMsgSosStopSoundEventHash_t", - "vtable_address": 30528064, + "vtable_address": 30528000, "methods": [ 12869232, 12869296, @@ -177547,23 +177547,23 @@ }, { "type_name": "CMsgSosStopSoundEventHash_t", - "vtable_address": 30528128, + "vtable_address": 30528064, "methods": [ 12869264, 12869360, - 24747814, + 24747750, 12869024, 14895504, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036576, 12865040, 14601200, 9474464, 14127072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061616, 14029248 @@ -177631,7 +177631,7 @@ }, { "type_name": "CMsgSosStopSoundEvent_t", - "vtable_address": 30527528, + "vtable_address": 30527464, "methods": [ 12868560, 12868624, @@ -177703,23 +177703,23 @@ }, { "type_name": "CMsgSosStopSoundEvent_t", - "vtable_address": 30527592, + "vtable_address": 30527528, "methods": [ 12868592, 12868688, - 24747814, + 24747750, 12868352, 14895456, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036528, 12865024, 14600720, 9474464, 14125312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061584, 14029232 @@ -177787,23 +177787,23 @@ }, { "type_name": "CMsgSource1LegacyGameEvent", - "vtable_address": 30876664, + "vtable_address": 30876600, "methods": [ 14791312, 14835552, - 24747814, + 24747750, 14392240, 14929040, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14125520, 14063616, 14612048, 9474464, 14219616, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061520, 14029200 @@ -177839,23 +177839,23 @@ }, { "type_name": "CMsgSource1LegacyGameEventList", - "vtable_address": 30876184, + "vtable_address": 30876120, "methods": [ 14790864, 14843360, - 24747814, + 24747750, 14391744, 14921696, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14099040, 14063648, 14611584, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14061424, 14029152 @@ -177891,23 +177891,23 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_descriptor_t", - "vtable_address": 30876024, + "vtable_address": 30875960, "methods": [ 14790688, 14835360, - 24747814, + 24747750, 14391568, 14921312, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14098752, 14063584, 14610960, 9474464, 14162656, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061392, 14029136 @@ -177943,23 +177943,23 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_key_t", - "vtable_address": 30875864, + "vtable_address": 30875800, "methods": [ 14790544, 14826256, - 24747814, + 24747750, 14391376, 14917136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080224, 14063568, 14598016, 9474464, 14150720, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061360, 14029120 @@ -177995,23 +177995,23 @@ }, { "type_name": "CMsgSource1LegacyGameEvent_key_t", - "vtable_address": 30876504, + "vtable_address": 30876440, "methods": [ 14791168, 14826576, - 24747814, + 24747750, 14392032, 14917408, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080320, 14063600, 14599296, 9474464, 14265216, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061488, 14029184 @@ -178047,23 +178047,23 @@ }, { "type_name": "CMsgSource1LegacyListenEvents", - "vtable_address": 30876344, + "vtable_address": 30876280, "methods": [ 14791024, 14826416, - 24747814, + 24747750, 14391888, 14895408, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087936, 14063632, 14598592, 9474464, 14149248, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061456, 14029168 @@ -178099,23 +178099,23 @@ }, { "type_name": "CMsgSource2NetworkFlowQuality", - "vtable_address": 30908688, + "vtable_address": 30908624, "methods": [ 15606416, 15640048, - 24747814, + 24747750, 15275104, 15716352, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055616, 15076240, 15350880, 9474464, 15238096, - 24746716, - 24746982, + 24746652, + 24746918, 15048784, 15068480, 15041888 @@ -178151,23 +178151,23 @@ }, { "type_name": "CMsgSource2PerfIntervalSample", - "vtable_address": 30909008, + "vtable_address": 30908944, "methods": [ 15606688, 15669552, - 24747814, + 24747750, 15275424, 15752288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15115392, 15076256, 15497616, 9474464, 15179168, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068544, 15041920 @@ -178203,23 +178203,23 @@ }, { "type_name": "CMsgSource2PerfIntervalSample_Tag", - "vtable_address": 30908848, + "vtable_address": 30908784, "methods": [ 15606544, 15651728, - 24747814, + 24747750, 15275248, 15732144, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15087744, 15076192, 15354016, 9474464, 15138496, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068512, 15041904 @@ -178255,23 +178255,23 @@ }, { "type_name": "CMsgSource2SystemSpecs", - "vtable_address": 30908208, + "vtable_address": 30908144, "methods": [ 15606096, 15664864, - 24747814, + 24747750, 15274592, 15731456, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15086496, 15076208, 15348400, 9474464, 15232464, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068384, 15041840 @@ -178307,23 +178307,23 @@ }, { "type_name": "CMsgSource2VProfLiteReport", - "vtable_address": 30908528, + "vtable_address": 30908464, "methods": [ 15682592, 15684288, - 24747814, + 24747750, 15274944, 15768112, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15087536, 15076224, 15496928, 9474464, 15149088, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068448, 15041872 @@ -178359,23 +178359,23 @@ }, { "type_name": "CMsgSource2VProfLiteReportItem", - "vtable_address": 30908368, + "vtable_address": 30908304, "methods": [ 15606272, 15651568, - 24747814, + 24747750, 15274768, 15731776, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15086976, 15076176, 15349504, 9474464, 15233584, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068416, 15041856 @@ -178411,23 +178411,23 @@ }, { "type_name": "CMsgStoreGetUserData", - "vtable_address": 30814424, + "vtable_address": 30814360, "methods": [ 14741552, 14794224, - 24747814, + 24747750, 14327504, 14883984, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030496, 14067024, 14406928, 9474464, 14126784, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049072, 14017328 @@ -178463,23 +178463,23 @@ }, { "type_name": "CMsgStoreGetUserDataResponse", - "vtable_address": 30814584, + "vtable_address": 30814520, "methods": [ 14741680, 14827536, - 24747814, + 24747750, 14327664, 14897456, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080672, 14067008, 14407424, 9474464, 14254848, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049104, 14017344 @@ -178515,23 +178515,23 @@ }, { "type_name": "CMsgSystemBroadcast", - "vtable_address": 30810424, + "vtable_address": 30810360, "methods": [ 14738192, 14814896, - 24747814, + 24747750, 14323744, 14896448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 14067312, 14395920, 9474464, 14114384, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048272, 14016928 @@ -178567,23 +178567,23 @@ }, { "type_name": "CMsgTEArmorRicochet", - "vtable_address": 30924368, + "vtable_address": 30924304, "methods": [ 15619152, 15672192, - 24747814, + 24747750, 15291888, 15718800, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057984, 15078656, 15403520, 9474464, 15080944, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071616, 15044480 @@ -178619,23 +178619,23 @@ }, { "type_name": "CMsgTEBaseBeam", - "vtable_address": 30924528, + "vtable_address": 30924464, "methods": [ 15619328, 15643504, - 24747814, + 24747750, 15292016, 15718912, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054128, 15076704, 15404032, 9474464, 15217376, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071648, 15044496 @@ -178671,23 +178671,23 @@ }, { "type_name": "CMsgTEBeamEntPoint", - "vtable_address": 30924688, + "vtable_address": 30924624, "methods": [ 15687920, 15688320, - 24747814, + 24747750, 15292176, 15719008, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15064896, 15078640, 15404880, 9474464, 15178656, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071680, 15044512 @@ -178723,23 +178723,23 @@ }, { "type_name": "CMsgTEBeamEnts", - "vtable_address": 30924848, + "vtable_address": 30924784, "methods": [ 15676880, 15693280, - 24747814, + 24747750, 15292336, 15775168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065184, 15078624, 15405632, 9474464, 15156288, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071712, 15044528 @@ -178775,23 +178775,23 @@ }, { "type_name": "CMsgTEBeamPoints", - "vtable_address": 30925008, + "vtable_address": 30924944, "methods": [ 15687520, 15688720, - 24747814, + 24747750, 15292480, 15719152, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065328, 15078608, 15406320, 9474464, 15081104, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071744, 15044544 @@ -178827,23 +178827,23 @@ }, { "type_name": "CMsgTEBeamRing", - "vtable_address": 30925168, + "vtable_address": 30925104, "methods": [ 15676464, 15693696, - 24747814, + 24747750, 15292640, 15775344, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065536, 15078592, 15406912, 9474464, 15156704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071776, 15044560 @@ -178879,23 +178879,23 @@ }, { "type_name": "CMsgTEBloodStream", - "vtable_address": 30927088, + "vtable_address": 30927024, "methods": [ 15621488, 15673536, - 24747814, + 24747750, 15294384, 15720848, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060592, 15078432, 15415728, 9474464, 15155552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072160, 15044752 @@ -178931,23 +178931,23 @@ }, { "type_name": "CMsgTEBubbleTrail", - "vtable_address": 30925488, + "vtable_address": 30925424, "methods": [ 15619632, 15672576, - 24747814, + 24747750, 15292960, 15719424, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058368, 15078560, 15408256, 9474464, 15164704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071840, 15044592 @@ -178983,23 +178983,23 @@ }, { "type_name": "CMsgTEBubbles", - "vtable_address": 30925328, + "vtable_address": 30925264, "methods": [ 15619456, 15672384, - 24747814, + 24747750, 15292800, 15719280, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058144, 15078576, 15407600, 9474464, 15164256, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071808, 15044576 @@ -179035,23 +179035,23 @@ }, { "type_name": "CMsgTEDecal", - "vtable_address": 30925648, + "vtable_address": 30925584, "methods": [ 15619808, 15672768, - 24747814, + 24747750, 12441072, 15719568, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058592, 12437232, 15408912, 9474464, 15184832, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071872, 15044608 @@ -179087,23 +179087,23 @@ }, { "type_name": "CMsgTEDust", - "vtable_address": 30927408, + "vtable_address": 30927344, "methods": [ 15621888, 15673728, - 24747814, + 24747750, 15294672, 15720992, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060800, 15078400, 15417456, 9474464, 15107056, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072224, 15044784 @@ -179139,23 +179139,23 @@ }, { "type_name": "CMsgTEEffectDispatch", - "vtable_address": 30925968, + "vtable_address": 30925904, "methods": [ 15620224, 15680128, - 24747814, + 24747750, 15293392, 15719968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065680, 15078544, 15411024, 9474464, 15081296, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071936, 15044640 @@ -179191,23 +179191,23 @@ }, { "type_name": "CMsgTEEnergySplash", - "vtable_address": 30926128, + "vtable_address": 30926064, "methods": [ 15620432, 15672960, - 24747814, + 24747750, 15293536, 15720048, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15059504, 15078528, 15411440, 9474464, 15109552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071968, 15044656 @@ -179243,23 +179243,23 @@ }, { "type_name": "CMsgTEExplosion", - "vtable_address": 30927248, + "vtable_address": 30927184, "methods": [ 15621664, 15676240, - 24747814, + 24747750, 15294528, 15742896, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092960, 15078416, 15416368, 9474464, 15218496, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072192, 15044768 @@ -179295,23 +179295,23 @@ }, { "type_name": "CMsgTEFireBullets", - "vtable_address": 30824504, + "vtable_address": 30824440, "methods": [ 14882080, 14882528, - 24747814, + 24747750, 14337360, 15029008, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15032176, 14066224, 14437728, 9474464, 14280112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051088, 14018560 @@ -179347,23 +179347,23 @@ }, { "type_name": "CMsgTEFireBullets_Extra", - "vtable_address": 30824344, + "vtable_address": 30824280, "methods": [ 14749472, 14847280, - 24747814, + 24747750, 14337184, 15028384, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15028608, 14061888, 14436944, 9474464, 14241888, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051056, 14018544 @@ -179399,23 +179399,23 @@ }, { "type_name": "CMsgTEFizz", - "vtable_address": 30926288, + "vtable_address": 30926224, "methods": [ 15620608, 15643632, - 24747814, + 24747750, 15293680, 15720176, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054384, 15078512, 15412112, 9474464, 15167488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072000, 15044672 @@ -179451,23 +179451,23 @@ }, { "type_name": "CMsgTEGlowSprite", - "vtable_address": 30926608, + "vtable_address": 30926544, "methods": [ 15620976, 15677472, - 24747814, + 24747750, 15293952, 15720464, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060064, 15078480, 15413744, 9474464, 15152800, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072064, 15044704 @@ -179503,23 +179503,23 @@ }, { "type_name": "CMsgTEImpact", - "vtable_address": 30926768, + "vtable_address": 30926704, "methods": [ 15621136, 15673152, - 24747814, + 24747750, 15294096, 15720576, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060192, 15078464, 15414416, 9474464, 15143680, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072096, 15044720 @@ -179555,23 +179555,23 @@ }, { "type_name": "CMsgTELargeFunnel", - "vtable_address": 30927568, + "vtable_address": 30927504, "methods": [ 15622064, 15677648, - 24747814, + 24747750, 15294832, 15721136, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060992, 15078384, 15418080, 9474464, 15132320, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072256, 15044800 @@ -179607,23 +179607,23 @@ }, { "type_name": "CMsgTEMuzzleFlash", - "vtable_address": 30926928, + "vtable_address": 30926864, "methods": [ 15621312, 15673344, - 24747814, + 24747750, 15294240, 15720704, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060384, 15078448, 15415088, 9474464, 15155168, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072128, 15044736 @@ -179659,23 +179659,23 @@ }, { "type_name": "CMsgTEPhysicsProp", - "vtable_address": 30927888, + "vtable_address": 30927824, "methods": [ 15622400, 15656848, - 24747814, + 24747750, 15295136, 15721360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061344, 15078352, 15419328, 9474464, 15221984, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072320, 15044832 @@ -179711,23 +179711,23 @@ }, { "type_name": "CMsgTEPlayerAnimEvent", - "vtable_address": 30824024, + "vtable_address": 30823960, "methods": [ 14749216, 14798192, - 24747814, + 24747750, 14336880, 14885904, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039632, 14066256, 14436032, 9474464, 14154720, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050992, 14018512 @@ -179763,23 +179763,23 @@ }, { "type_name": "CMsgTERadioIcon", - "vtable_address": 30824184, + "vtable_address": 30824120, "methods": [ 14749344, 14798320, - 24747814, + 24747750, 14337024, 14885968, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029824, 14066240, 14436624, 9474464, 14093424, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051024, 14018528 @@ -179815,23 +179815,23 @@ }, { "type_name": "CMsgTEShatterSurface", - "vtable_address": 30926448, + "vtable_address": 30926384, "methods": [ 15620736, 15683808, - 24747814, + 24747750, 15293808, 15720240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15059680, 15078496, 15412816, 9474464, 15198464, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072032, 15044688 @@ -179867,23 +179867,23 @@ }, { "type_name": "CMsgTESmoke", - "vtable_address": 30928048, + "vtable_address": 30927984, "methods": [ 15622640, 15677824, - 24747814, + 24747750, 15295296, 15721632, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061872, 15078336, 15420624, 9474464, 15107312, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072352, 15044848 @@ -179919,23 +179919,23 @@ }, { "type_name": "CMsgTESparks", - "vtable_address": 30927728, + "vtable_address": 30927664, "methods": [ 15622224, 15673920, - 24747814, + 24747750, 15294976, 15721216, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061120, 15078368, 15418672, 9474464, 15165152, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072288, 15044816 @@ -179971,23 +179971,23 @@ }, { "type_name": "CMsgTEWorldDecal", - "vtable_address": 30928208, + "vtable_address": 30928144, "methods": [ 15622800, 15674112, - 24747814, + 24747750, 12440608, 15721712, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061968, 12437216, 15421120, 9474464, 15144000, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072384, 15044864 @@ -180023,23 +180023,23 @@ }, { "type_name": "CMsgTransform", - "vtable_address": 30919728, + "vtable_address": 30919664, "methods": [ 15681104, 15681472, - 24747814, + 24747750, 15286032, 15772288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15064512, 15078976, 15387072, 9474464, 15106640, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070688, 15043472 @@ -180075,23 +180075,23 @@ }, { "type_name": "CMsgUpdateItemSchema", - "vtable_address": 30814744, + "vtable_address": 30814680, "methods": [ 14741840, 14827696, - 24747814, + 24747750, 14327824, 14897616, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080864, 14066992, 14408048, 9474464, 14197312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049136, 14017360 @@ -180127,23 +180127,23 @@ }, { "type_name": "CMsgUseItem", - "vtable_address": 30815544, + "vtable_address": 30815480, "methods": [ 14742464, 14815536, - 24747814, + 24747750, 14328624, 14884048, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14085056, 14066944, 14409408, 9474464, 14204992, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049296, 14017440 @@ -180179,23 +180179,23 @@ }, { "type_name": "CMsgVDebugGameSessionIDEvent", - "vtable_address": 30875064, + "vtable_address": 30875000, "methods": [ 14789792, 14826096, - 24747814, + 24747750, 14390720, 14916864, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080128, 14063664, 14594672, 9474464, 14150368, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061200, 14029040 @@ -180231,23 +180231,23 @@ }, { "type_name": "CMsgVector", - "vtable_address": 30919088, + "vtable_address": 30919024, "methods": [ 15614624, 15642224, - 24747814, + 24747750, 15285456, 15717728, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049072, 15076352, 15385360, 9474464, 15105584, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070560, 15043392 @@ -180283,23 +180283,23 @@ }, { "type_name": "CMsgVector2D", - "vtable_address": 30919248, + "vtable_address": 30919184, "methods": [ 15614752, 15642352, - 24747814, + 24747750, 15285584, 15717904, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049168, 15078992, 15385808, 9474464, 15105904, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070592, 15043424 @@ -180335,23 +180335,23 @@ }, { "type_name": "CMsgVoiceAudio", - "vtable_address": 30906288, + "vtable_address": 30906224, "methods": [ 15604560, 15662240, - 24747814, + 24747750, 15272800, 15730240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101968, 15076160, 15341728, 9474464, 15226912, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068000, 15041648 @@ -180387,23 +180387,23 @@ }, { "type_name": "CMsg_CVars", - "vtable_address": 30920528, + "vtable_address": 30920464, "methods": [ 15615696, 15670784, - 24747814, + 24747750, 15286816, 15759296, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15124384, 15076624, 15482976, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15070848, 15043552 @@ -180439,23 +180439,23 @@ }, { "type_name": "CMsg_CVars_CVar", - "vtable_address": 30920368, + "vtable_address": 30920304, "methods": [ 15615536, 15663040, - 24747814, + 24747750, 15286640, 15739264, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 15076608, 15389360, 9474464, 15149712, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070816, 15043536 @@ -180491,32 +180491,32 @@ }, { "type_name": "CMultiLightProxy", - "vtable_address": 30399728, + "vtable_address": 30399664, "methods": [ 13506768, 12112208, 12112320, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12098352, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12190944, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 12112432, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -180528,12 +180528,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12096736, 12102928, 12099680, @@ -180541,8 +180541,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -180566,83 +180566,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -180650,16 +180650,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -180680,7 +180680,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -180693,28 +180693,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -180725,7 +180725,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -180736,7 +180736,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -180791,33 +180791,33 @@ }, { "type_name": "CMultiSource", - "vtable_address": 31599616, + "vtable_address": 31599552, "methods": [ 13506768, - 20939680, - 20940256, + 20939552, + 20940128, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21028784, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21028656, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 20910112, + 19933296, + 19829024, + 20909984, 9635872, 9665808, 9641296, @@ -180828,21 +180828,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20904656, - 20910048, - 20906672, + 26427360, + 20904528, + 20909920, + 20906544, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -180866,83 +180866,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, - 20904672, + 20904544, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20973664, + 20973536, 9637216, 9636096, 11746864, @@ -180950,16 +180950,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -180980,7 +180980,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -180993,28 +180993,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -181025,7 +181025,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -181036,7 +181036,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -181091,37 +181091,37 @@ }, { "type_name": "CMultiplayRules", - "vtable_address": 30470376, + "vtable_address": 30470312, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32349384 + "offset_to_top": 32349320 } } }, { "type_name": "CMultiplayRules", - "vtable_address": 31648752, + "vtable_address": 31648688, "methods": [ - 21080800, + 21080672, 15970800, - 20616368, + 20616240, 15970816, 15970832, 15970848, 15970864, - 20616384, - 20616400, + 20616256, + 20616272, 15970880, 15970896, 15970912, - 20616416, + 20616288, 15970928, 15970944, - 20632624, + 20632496, 15970960, - 20616432, + 20616304, 15970976 ], "bases": [ @@ -181154,7 +181154,7 @@ }, { "type_name": "CMultiplayRules", - "vtable_address": 32359520, + "vtable_address": 32359456, "methods": [], "bases": [], "model": { @@ -181165,16 +181165,16 @@ }, { "type_name": "CMultiplayer_Expresser", - "vtable_address": 31429896, + "vtable_address": 31429832, "methods": [ - 19840000, - 20112800, - 19831712, - 20083232, - 20083248, - 20133232, - 19828896, - 19902928 + 19839872, + 20112672, + 19831584, + 20083104, + 20083120, + 20133104, + 19828768, + 19902800 ], "bases": [ { @@ -181218,23 +181218,23 @@ }, { "type_name": "CNETMsg_DebugOverlay", - "vtable_address": 30923248, + "vtable_address": 30923184, "methods": [ 15617968, 15671728, - 24747814, + 24747750, 15289552, 15772816, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15162624, 15078768, 15484560, 9474464, 15207360, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071392, 15043824 @@ -181270,23 +181270,23 @@ }, { "type_name": "CNETMsg_NOP", - "vtable_address": 30920688, + "vtable_address": 30920624, "methods": [ 15103376, 15103392, - 24747814, + 24747750, 15286944, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15070880, 15043568 @@ -181333,23 +181333,23 @@ }, { "type_name": "CNETMsg_SetConVar", - "vtable_address": 30921328, + "vtable_address": 30921264, "methods": [ 15698784, 15699248, - 24747814, + 24747750, 15287504, 15764912, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15157920, 15078896, 15391792, 9474464, 15080848, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071008, 15043632 @@ -181385,23 +181385,23 @@ }, { "type_name": "CNETMsg_SignonState", - "vtable_address": 30921488, + "vtable_address": 30921424, "methods": [ 15616272, 15664512, - 24747814, + 24747750, 15287744, 15739984, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15100880, 15078880, 15392208, 9474464, 15208480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071040, 15043648 @@ -181437,23 +181437,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load", - "vtable_address": 30922288, + "vtable_address": 30922224, "methods": [ 15616912, 15617184, - 24747814, + 24747750, 15288592, 15740448, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15090368, 15078848, 15394416, 9474464, 15246112, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071200, 15043728 @@ -181489,23 +181489,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted", - "vtable_address": 30922928, + "vtable_address": 30922864, "methods": [ 15617632, 15643376, - 24747814, + 24747750, 15289168, 15718544, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054080, 15078784, 15397920, 9474464, 15127104, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071328, 15043792 @@ -181541,23 +181541,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate", - "vtable_address": 30922448, + "vtable_address": 30922384, "methods": [ 15617232, 15656048, - 24747814, + 24747750, 15288736, 15740896, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15084624, 15078832, 15395824, 9474464, 15182016, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071232, 15043744 @@ -181593,23 +181593,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick", - "vtable_address": 30922608, + "vtable_address": 30922544, "methods": [ 15617376, 15643120, - 24747814, + 24747750, 15288880, 15718416, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15053888, 15078816, 15396512, 9474464, 15166528, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071264, 15043760 @@ -181645,23 +181645,23 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload", - "vtable_address": 30922768, + "vtable_address": 30922704, "methods": [ 15617504, 15643248, - 24747814, + 24747750, 15289024, 15718480, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15053984, 15078800, 15397216, 9474464, 15167008, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071296, 15043776 @@ -181697,23 +181697,23 @@ }, { "type_name": "CNETMsg_SplitScreenUser", - "vtable_address": 30920848, + "vtable_address": 30920784, "methods": [ 15615856, 15642992, - 24747814, + 24747750, 15287088, 15718368, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050784, 15078944, 15389824, 9474464, 15130688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070912, 15043584 @@ -181749,23 +181749,23 @@ }, { "type_name": "CNETMsg_StringCmd", - "vtable_address": 30921168, + "vtable_address": 30921104, "methods": [ 15616128, 15655728, - 24747814, + 24747750, 15287376, 15739712, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15090032, 15078912, 15391232, 9474464, 15140576, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070976, 15043616 @@ -181801,23 +181801,23 @@ }, { "type_name": "CNETMsg_Tick", - "vtable_address": 30921008, + "vtable_address": 30920944, "methods": [ 15615984, 15655568, - 24747814, + 24747750, 15287232, 15739392, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089712, 15078928, 15390304, 9474464, 15234592, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070944, 15043600 @@ -181853,12 +181853,12 @@ }, { "type_name": "CNamedCooldownsDataOps", - "vtable_address": 31429656, + "vtable_address": 31429592, "methods": [ - 19859792, - 20131616, - 19828240, - 19828224, + 19859664, + 20131488, + 19828112, + 19828096, 9634272, 9634288 ], @@ -181893,24 +181893,24 @@ }, { "type_name": "CNavArea", - "vtable_address": 32060632, - "methods": [ - 28810112, - 28809824, - 28067616, - 28067792, - 28060960, - 28079664, - 28060928, - 28060944, - 28151632, - 28171456, - 28156000, + "vtable_address": 32060568, + "methods": [ + 28810048, + 28809760, + 28067552, + 28067728, + 28060896, + 28079600, + 28060864, + 28060880, + 28151568, + 28171392, + 28155936, 10424976, 10424992, 10425008, - 28063760, - 28060992, + 28063696, + 28060928, 10425024 ], "bases": [ @@ -181933,14 +181933,14 @@ }, { "type_name": "CNavAreaBuildPathTest", - "vtable_address": 31909552, + "vtable_address": 31909488, "methods": [ + 23740864, + 23740880, + 23740912, 23740928, - 23740944, - 23740976, - 23740992, - 23748240, - 23774912 + 23748176, + 23774848 ], "bases": [ { @@ -181962,9 +181962,9 @@ }, { "type_name": "CNavAreaExtended", - "vtable_address": 30247136, + "vtable_address": 30247072, "methods": [ - 28810112, + 28810048, 10629424 ], "bases": [ @@ -181998,11 +181998,11 @@ }, { "type_name": "CNavAttributeObstacle", - "vtable_address": 31905360, + "vtable_address": 31905296, "methods": [ - 23295680, - 23295696, - 23332496 + 23295616, + 23295632, + 23332432 ], "bases": [ { @@ -182024,10 +182024,10 @@ }, { "type_name": "CNavChangeMgr", - "vtable_address": 31906448, + "vtable_address": 31906384, "methods": [ - 23295840, - 23295392 + 23295776, + 23295328 ], "bases": [ { @@ -182049,22 +182049,22 @@ }, { "type_name": "CNavDraw", - "vtable_address": 31897216, + "vtable_address": 31897152, "methods": [ - 23026192, - 23026240, - 23049760, - 23026080, - 23031792, - 23075616, - 23031632, - 23029344, - 23026528, - 23026624, - 23030416, - 23027088, - 23026336, - 23032784 + 23026128, + 23026176, + 23049696, + 23026016, + 23031728, + 23075552, + 23031568, + 23029280, + 23026464, + 23026560, + 23030352, + 23027024, + 23026272, + 23032720 ], "bases": [ { @@ -182086,12 +182086,12 @@ }, { "type_name": "CNavDrawArea", - "vtable_address": 31897344, + "vtable_address": 31897280, "methods": [ - 23047200, - 23077120, - 23172304, - 23042704 + 23047136, + 23077056, + 23172240, + 23042640 ], "bases": [ { @@ -182113,9 +182113,9 @@ }, { "type_name": "CNavDrawMesh", - "vtable_address": 31897392, + "vtable_address": 31897328, "methods": [ - 23027392 + 23027328 ], "bases": [ { @@ -182137,13 +182137,13 @@ }, { "type_name": "CNavDynamicConnectionsManager", - "vtable_address": 31897416, + "vtable_address": 31897352, "methods": [ - 23044032, - 23043936, - 23027872, - 23027888, - 23027904 + 23043968, + 23043872, + 23027808, + 23027824, + 23027840 ], "bases": [ { @@ -182165,23 +182165,23 @@ }, { "type_name": "CNavEditObstacle", - "vtable_address": 31897472, + "vtable_address": 31897408, "methods": [ - 23028016, - 23029296, - 23026480, + 23027952, + 23029232, + 23026416, 12334320, - 23031440, - 23031312, + 23031376, + 23031248, 12334336, + 23027856, 23027920, - 23027984, - 19829520, - 23028000, + 19829392, 23027936, - 23027952, - 23027968, - 23026512 + 23027872, + 23027888, + 23027904, + 23026448 ], "bases": [ { @@ -182203,12 +182203,12 @@ }, { "type_name": "CNavEditor", - "vtable_address": 31897608, + "vtable_address": 31897544, "methods": [ - 23050320, - 23143664, - 23035680, - 23044448 + 23050256, + 23143600, + 23035616, + 23044384 ], "bases": [ { @@ -182230,11 +182230,11 @@ }, { "type_name": "CNavEntityInterface", - "vtable_address": 31900072, + "vtable_address": 31900008, "methods": [ - 23029088, - 23029328, - 23046832 + 23029024, + 23029264, + 23046768 ], "bases": [ { @@ -182256,13 +182256,13 @@ }, { "type_name": "CNavGameSystem", - "vtable_address": 31902712, + "vtable_address": 31902648, "methods": [ 9634368, 9634384, 9634400, - 23032624, - 23032704, + 23032560, + 23032640, 9634448, 9634464, 9634480, @@ -182273,11 +182273,11 @@ 9634560, 9634576, 9634592, - 23209120, - 23100496, + 23209056, + 23100432, 9634640, - 23200608, - 23101168, + 23200544, + 23101104, 9634688, 9634704, 9634720, @@ -182306,7 +182306,7 @@ 9635088, 9635104, 9635120, - 23158144, + 23158080, 9635152, 9635168, 9635184, @@ -182314,12 +182314,12 @@ 9635216, 9635232, 9635248, - 23042064, + 23042000, 9635280, - 23041184, - 23041760, - 23042016, - 23026064 + 23041120, + 23041696, + 23041952, + 23026000 ], "bases": [ { @@ -182341,25 +182341,25 @@ }, { "type_name": "CNavGameTest", - "vtable_address": 31909680, + "vtable_address": 31909616, "methods": [ - 23743392, 23743328, + 23743264, + 23741536, + 23743216, + 23743120, + 23741552, + 23741568, + 23741584, + 23743056, 23741600, - 23743280, - 23743184, 23741616, - 23741632, - 23741648, - 23743120, - 23741664, - 23741680, - 23856016, - 23744416, - 23746736, - 23744176, - 23744576, - 23744368 + 23855952, + 23744352, + 23746672, + 23744112, + 23744512, + 23744304 ], "bases": [ { @@ -182447,21 +182447,21 @@ }, { "type_name": "CNavGenOrientedMeshTile", - "vtable_address": 32061040, + "vtable_address": 32060976, "methods": [ - 28214448, - 28214576, + 28214384, + 28214512, 12442256, 11404720, 12427952, 12437312, - 28213744, + 28213680, 12427984, - 28214304, - 28214352, - 28214400, - 28214160, - 28214112 + 28214240, + 28214288, + 28214336, + 28214096, + 28214048 ], "bases": [ { @@ -182515,11 +182515,11 @@ }, { "type_name": "CNavGenPolyProcessorStage1", - "vtable_address": 32062584, + "vtable_address": 32062520, "methods": [ - 28277504, - 28280880, - 28277728 + 28277440, + 28280816, + 28277664 ], "bases": [ { @@ -182541,11 +182541,11 @@ }, { "type_name": "CNavGenPolyProcessorStage2", - "vtable_address": 32062624, + "vtable_address": 32062560, "methods": [ - 28277600, - 28280976, - 28277776 + 28277536, + 28280912, + 28277712 ], "bases": [ { @@ -182567,7 +182567,7 @@ }, { "type_name": "CNavGenPolyProcessorStageBase", - "vtable_address": 32062544, + "vtable_address": 32062480, "methods": [], "bases": [], "model": { @@ -182578,15 +182578,15 @@ }, { "type_name": "CNavGenRecastTile", - "vtable_address": 32063480, + "vtable_address": 32063416, "methods": [ - 28507120, - 28507312, + 28507056, + 28507248, 12442256, 11404720, 12427952, 12437312, - 28509072, + 28509008, 12427984 ], "bases": [ @@ -182641,15 +182641,15 @@ }, { "type_name": "CNavGenRtJob", - "vtable_address": 31903224, + "vtable_address": 31903160, "methods": [ - 23051680, - 23051984, + 23051616, + 23051920, 12442256, 11404720, 12427952, 12437312, - 23123360, + 23123296, 12427984 ], "bases": [ @@ -182704,28 +182704,28 @@ }, { "type_name": "CNavHullPresetVData", - "vtable_address": 32066632, + "vtable_address": 32066568, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33387296 + "offset_to_top": 33387232 } } }, { "type_name": "CNavHullPresetVDataFileManager", - "vtable_address": 32064056, + "vtable_address": 32063992, "methods": [ 12202560, - 25567952, + 25567888, 12202576, - 28540816, - 18383984, - 28553728, - 28534544, - 28535184, - 28534560 + 28540752, + 18383856, + 28553664, + 28534480, + 28535120, + 28534496 ], "bases": [ { @@ -182780,17 +182780,17 @@ }, { "type_name": "CNavHullVDataFileManager", - "vtable_address": 32063888, + "vtable_address": 32063824, "methods": [ 12202560, - 25567952, + 25567888, 12202576, - 28541552, - 18383984, - 28562560, - 28534576, - 28535984, - 28534592 + 28541488, + 18383856, + 28562496, + 28534512, + 28535920, + 28534528 ], "bases": [ { @@ -182845,32 +182845,32 @@ }, { "type_name": "CNavLinkAreaEntity", - "vtable_address": 30792544, + "vtable_address": 30792480, "methods": [ 11766592, 13991248, 13990976, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 23292656, - 26419632, - 26419200, - 26419200, - 23293792, - 23294848, - 20141328, - 19835392, - 19835328, + 20141504, + 23292592, + 26419568, + 26419136, + 26419136, + 23293728, + 23294784, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -182882,21 +182882,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 23106992, + 26427360, + 23106928, 13988336, 13988272, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -182920,83 +182920,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -183004,16 +183004,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -183034,7 +183034,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -183047,28 +183047,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -183079,7 +183079,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -183090,7 +183090,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -183134,12 +183134,12 @@ }, { "type_name": "CNavLinkManager", - "vtable_address": 31903304, + "vtable_address": 31903240, "methods": [ - 23211488, - 23115168, - 23189344, - 23188160 + 23211424, + 23115104, + 23189280, + 23188096 ], "bases": [ { @@ -183161,10 +183161,10 @@ }, { "type_name": "CNavLinkMovementDataSchema", - "vtable_address": 31903352, + "vtable_address": 31903288, "methods": [ 12202560, - 23165600, + 23165536, 12202576 ], "bases": [ @@ -183187,12 +183187,12 @@ }, { "type_name": "CNavMarkupManager", - "vtable_address": 31903392, + "vtable_address": 31903328, "methods": [ - 23049264, - 23049440, - 23252128, - 23192064 + 23049200, + 23049376, + 23252064, + 23192000 ], "bases": [ { @@ -183214,36 +183214,36 @@ }, { "type_name": "CNavMesh", - "vtable_address": 32064184, + "vtable_address": 32064120, "methods": [ - 28694160, - 28696592, + 28694096, + 28696528, 11654336, 11654352, - 28617312, - 28616528, - 28606800, - 28621872, - 28619552, - 28610464, - 28610352, - 28610176, - 28179776, - 28157536, - 23026016, - 28148416, - 28148432, - 28148448, + 28617248, + 28616464, + 28606736, + 28621808, + 28619488, + 28610400, + 28610288, + 28610112, + 28179712, + 28157472, + 23025952, + 28148352, + 28148368, + 28148384, 11654368, 11654384, - 28651024, - 28606304, - 28610128, - 28705456, - 23026032, - 28613952, - 28617728, - 28606208, + 28650960, + 28606240, + 28610064, + 28705392, + 23025968, + 28613888, + 28617664, + 28606144, 11654400, 11654416, 11654432, @@ -183261,12 +183261,12 @@ }, { "type_name": "CNavMeshGameEventListener", - "vtable_address": 31902544, + "vtable_address": 31902480, "methods": [ - 23042640, - 23033520, - 23033616, - 23043504 + 23042576, + 23033456, + 23033552, + 23043440 ], "bases": [ { @@ -183309,9 +183309,9 @@ }, { "type_name": "CNavMeshGameEventListener", - "vtable_address": 31902592, + "vtable_address": 31902528, "methods": [ - 23044976 + 23044912 ], "bases": [ { @@ -183354,25 +183354,25 @@ }, { "type_name": "CNavObstacleAvoidMgr", - "vtable_address": 31905992, + "vtable_address": 31905928, "methods": [ - 23295584, - 23295600, - 23365824, - 23365904, - 23360800, - 23319616, - 23532576, - 23532992, + 23295520, + 23295536, + 23365760, + 23365840, + 23360736, + 23319552, + 23532512, + 23532928, + 23295408, + 23295424, + 23295440, + 23432832, 23295472, 23295488, - 23295504, - 23432896, - 23295536, - 23295552, - 23320128, - 23319616, - 23295632 + 23320064, + 23319552, + 23295568 ], "bases": [ { @@ -183405,25 +183405,25 @@ }, { "type_name": "CNavObstacleConnectionMgr", - "vtable_address": 31906144, + "vtable_address": 31906080, "methods": [ - 23628864, - 23295600, - 23631616, - 23632448, - 23409664, + 23628800, + 23295536, + 23631552, + 23632384, + 23409600, + 23295360, + 23295376, + 23295392, + 23295408, 23295424, 23295440, - 23295456, + 23624848, 23295472, 23295488, - 23295504, - 23624912, - 23295536, + 23630336, 23295552, - 23630400, - 23295616, - 23295632 + 23295568 ], "bases": [ { @@ -183456,24 +183456,24 @@ }, { "type_name": "CNavObstacleEntity", - "vtable_address": 31905400, - "methods": [ - 23296400, - 23296800, - 23319520, - 23319520, - 23323584, - 23332960, - 23343360, - 23295760, - 23295792, - 19829520, - 23295808, - 23295776, - 23319744, - 23319920, - 23323264, - 23319168 + "vtable_address": 31905336, + "methods": [ + 23296336, + 23296736, + 23319456, + 23319456, + 23323520, + 23332896, + 23343296, + 23295696, + 23295728, + 19829392, + 23295744, + 23295712, + 23319680, + 23319856, + 23323200, + 23319104 ], "bases": [ { @@ -183495,24 +183495,24 @@ }, { "type_name": "CNavObstacleEntityDoor", - "vtable_address": 31435296, - "methods": [ - 19830848, - 19832224, - 23319520, - 23319520, - 23323584, - 19838176, - 23343360, - 23295760, - 19829536, - 19829520, - 23295808, - 23295776, - 23319744, - 23319920, - 23323264, - 19849040 + "vtable_address": 31435232, + "methods": [ + 19830720, + 19832096, + 23319456, + 23319456, + 23323520, + 19838048, + 23343296, + 23295696, + 19829408, + 19829392, + 23295744, + 23295712, + 23319680, + 23319856, + 23323200, + 19848912 ], "bases": [ { @@ -183545,28 +183545,28 @@ }, { "type_name": "CNavObstacleSplitMgr", - "vtable_address": 31905584, - "methods": [ - 23681664, - 23682784, - 23731856, - 23731936, - 23406944, - 23686736, - 23686704, - 23686720, - 23295472, + "vtable_address": 31905520, + "methods": [ + 23681600, + 23682720, + 23731792, + 23731872, + 23406880, + 23686672, + 23686640, + 23686656, + 23295408, + 23295424, + 23295440, + 23573728, + 23434592, 23295488, - 23295504, - 23573792, - 23434656, - 23295552, - 23439264, - 23686752, - 23734144, - 23564160, - 23430048, - 23557440 + 23439200, + 23686688, + 23734080, + 23564096, + 23429984, + 23557376 ], "bases": [ { @@ -183609,11 +183609,11 @@ }, { "type_name": "CNavObstacleSplitMgr", - "vtable_address": 31905760, + "vtable_address": 31905696, "methods": [ - 23567712, - 23558144, - 23430528 + 23567648, + 23558080, + 23430464 ], "bases": [ { @@ -183656,25 +183656,25 @@ }, { "type_name": "CNavObstructionManager", - "vtable_address": 31905840, - "methods": [ - 23301856, - 23307712, - 23732064, - 23732864, - 23403632, - 23687152, - 23687776, - 23687536, - 23437376, - 23437376, - 23424848, - 23625088, - 23308048, - 23550016, - 23326368, - 23686768, - 23307888 + "vtable_address": 31905776, + "methods": [ + 23301792, + 23307648, + 23732000, + 23732800, + 23403568, + 23687088, + 23687712, + 23687472, + 23437312, + 23437312, + 23424784, + 23625024, + 23307984, + 23549952, + 23326304, + 23686704, + 23307824 ], "bases": [ { @@ -183707,7 +183707,7 @@ }, { "type_name": "CNavOverlapMgr", - "vtable_address": 31905320, + "vtable_address": 31905256, "methods": [], "bases": [], "model": { @@ -183718,20 +183718,20 @@ }, { "type_name": "CNavPathCost", - "vtable_address": 30108128, + "vtable_address": 30108064, "methods": [ 9448272, 9448320, 9447840, 9447792, - 28788416, + 28788352, 9447808, - 28788944, - 28788240, + 28788880, + 28788176, 9447824, - 28788224, - 28788464, - 28788320, + 28788160, + 28788400, + 28788256, 9447920, 9447872, 9448032, @@ -183761,20 +183761,20 @@ }, { "type_name": "CNavPathCostForTests", - "vtable_address": 31909440, + "vtable_address": 31909376, "methods": [ + 23749360, 23749424, - 23749488, 9447840, 9447792, - 28788416, + 28788352, 9447808, - 28788944, - 28788240, + 28788880, + 28788176, 9447824, - 28788224, - 23742320, - 28788320 + 28788160, + 23742256, + 28788256 ], "bases": [ { @@ -183807,21 +183807,21 @@ }, { "type_name": "CNavPathCostGame", - "vtable_address": 31906648, + "vtable_address": 31906584, "methods": [ 11246288, 11256624, - 23308208, + 23308144, 9447792, - 23298208, - 23323920, - 28788944, - 28788240, - 23299088, - 23298176, - 28788464, - 28788320, - 23297984 + 23298144, + 23323856, + 28788880, + 28788176, + 23299024, + 23298112, + 28788400, + 28788256, + 23297920 ], "bases": [ { @@ -183854,13 +183854,13 @@ }, { "type_name": "CNavPathData", - "vtable_address": 31906480, + "vtable_address": 31906416, "methods": [ - 23324368, - 23324800, - 23301776, - 23295856, - 23335520 + 23324304, + 23324736, + 23301712, + 23295792, + 23335456 ], "bases": [], "model": { @@ -183871,18 +183871,18 @@ }, { "type_name": "CNavPhysicsInterface", - "vtable_address": 31897736, + "vtable_address": 31897672, "methods": [ - 23029104, - 23029312, - 23057152, - 23031184, - 23056688, - 23031088, - 23032720, - 23069104, - 23049488, - 23028048 + 23029040, + 23029248, + 23057088, + 23031120, + 23056624, + 23031024, + 23032656, + 23069040, + 23049424, + 23027984 ], "bases": [ { @@ -183904,7 +183904,7 @@ }, { "type_name": "CNavPoly", - "vtable_address": 32060616, + "vtable_address": 32060552, "methods": [], "bases": [], "model": { @@ -183915,10 +183915,10 @@ }, { "type_name": "CNavPoly", - "vtable_address": 32065096, + "vtable_address": 32065032, "methods": [ - 28810112, - 28809824 + 28810048, + 28809760 ], "bases": [], "model": { @@ -183929,23 +183929,23 @@ }, { "type_name": "CNavSpace", - "vtable_address": 32065432, - "methods": [ - 28848960, - 28849968, - 28836608, + "vtable_address": 32065368, + "methods": [ + 28848896, + 28849904, + 28836544, + 28836496, + 28836512, + 28853632, + 28848864, + 28836528, + 28838704, + 28837040, + 28836896, 28836560, - 28836576, - 28853696, - 28848928, - 28836592, - 28838768, - 28837104, - 28836960, - 28836624, - 28836816, - 28836672, - 28838720 + 28836752, + 28836608, + 28838656 ], "bases": [], "model": { @@ -183956,12 +183956,12 @@ }, { "type_name": "CNavSpaceBuildLocker", - "vtable_address": 31908528, + "vtable_address": 31908464, "methods": [ 9634368, 9634384, 9634400, - 23747984, + 23747920, 9634432, 9634448, 9634464, @@ -183988,7 +183988,7 @@ 9634800, 9634816, 9634832, - 23740608, + 23740544, 9634864, 9634880, 9634896, @@ -183997,8 +183997,8 @@ 9634944, 9634960, 9634976, - 23743872, - 23748080, + 23743808, + 23748016, 9635024, 9635040, 9635056, @@ -184014,12 +184014,12 @@ 9635216, 9635232, 9635248, - 23748176, + 23748112, 9635280, - 23747840, - 23743456, - 23743472, - 23740592 + 23747776, + 23743392, + 23743408, + 23740528 ], "bases": [ { @@ -184041,15 +184041,15 @@ }, { "type_name": "CNavSpaceBuildTreeJob", - "vtable_address": 32065712, + "vtable_address": 32065648, "methods": [ - 28863072, - 28863184, + 28863008, + 28863120, 12442256, 11404720, 12427952, 12437312, - 28869472, + 28869408, 12427984 ], "bases": [ @@ -184104,22 +184104,22 @@ }, { "type_name": "CNavSpaceCalcBlocksJob", - "vtable_address": 32065792, + "vtable_address": 32065728, "methods": [ - 28862912, - 28862992, + 28862848, + 28862928, 12442256, 11404720, 12427952, 12437312, - 28862288, + 28862224, 12427984, - 28862544, - 28862752, - 28862704, - 28862352, - 28862304, - 28862400 + 28862480, + 28862688, + 28862640, + 28862288, + 28862240, + 28862336 ], "bases": [ { @@ -184173,16 +184173,16 @@ }, { "type_name": "CNavSpaceGame", - "vtable_address": 31909040, + "vtable_address": 31908976, "methods": [ - 23084400, - 23043616, - 23882928, - 23742720, - 23742752, - 23882880, - 23882896, - 23742464 + 23084336, + 23043552, + 23882864, + 23742656, + 23742688, + 23882816, + 23882832, + 23742400 ], "bases": [ { @@ -184204,32 +184204,32 @@ }, { "type_name": "CNavSpaceInfo", - "vtable_address": 30794512, + "vtable_address": 30794448, "methods": [ 11766592, 13988144, 13988176, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -184241,21 +184241,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 23768320, + 26427360, + 23768256, 13988336, 13988288, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -184279,83 +184279,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -184363,16 +184363,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -184393,7 +184393,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -184406,28 +184406,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -184438,7 +184438,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -184449,7 +184449,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -184493,11 +184493,11 @@ }, { "type_name": "CNavSplitBlockMgr", - "vtable_address": 31905800, + "vtable_address": 31905736, "methods": [ - 23337888, - 23557376, - 23295744 + 23337824, + 23557312, + 23295680 ], "bases": [ { @@ -184519,25 +184519,25 @@ }, { "type_name": "CNavTacticalSearchAnnotationMgr", - "vtable_address": 31906296, + "vtable_address": 31906232, "methods": [ + 23295520, + 23295536, + 23646128, + 23646208, + 23328992, 23295584, - 23295600, - 23646192, - 23646272, - 23329056, - 23295648, + 23295376, + 23295392, + 23295408, + 23295424, 23295440, - 23295456, + 23637376, 23295472, - 23295488, + 23638912, 23295504, - 23637440, - 23295536, - 23638976, - 23295568, - 23295664, - 23295632 + 23295600, + 23295568 ], "bases": [ { @@ -184570,18 +184570,18 @@ }, { "type_name": "CNavToolsPhysicsInterface", - "vtable_address": 32066040, - "methods": [ - 28921904, - 28921920, - 28925392, - 28926112, - 28924128, - 28924720, - 28921936, + "vtable_address": 32065976, + "methods": [ + 28921840, + 28921856, + 28925328, + 28926048, + 28924064, + 28924656, 28921872, - 28921888, - 23740512 + 28921808, + 28921824, + 23740448 ], "bases": [ { @@ -184603,9 +184603,9 @@ }, { "type_name": "CNavVolume", - "vtable_address": 32066184, + "vtable_address": 32066120, "methods": [ - 28931200 + 28931136 ], "bases": [], "model": { @@ -184616,18 +184616,18 @@ }, { "type_name": "CNavVolume", - "vtable_address": 32067512, + "vtable_address": 32067448, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33386688 + "offset_to_top": 33386624 } } }, { "type_name": "CNavVolume", - "vtable_address": 32475200, + "vtable_address": 32475136, "methods": [], "bases": [], "model": { @@ -184638,7 +184638,7 @@ }, { "type_name": "CNavVolume", - "vtable_address": 32475328, + "vtable_address": 32475264, "methods": [], "bases": [], "model": { @@ -184649,20 +184649,20 @@ }, { "type_name": "CNavVolumeMarkupVolume", - "vtable_address": 31909120, + "vtable_address": 31909056, "methods": [ 13988304, - 23741552, - 23741856, - 23743744, - 28932672, - 28930880, - 28930640, - 23752928, - 23740528, - 23742784, - 28931424, - 23740624 + 23741488, + 23741792, + 23743680, + 28932608, + 28930816, + 28930576, + 23752864, + 23740464, + 23742720, + 28931360, + 23740560 ], "bases": [ { @@ -184684,7 +184684,7 @@ }, { "type_name": "CNavVolumeVector", - "vtable_address": 33386816, + "vtable_address": 33386752, "methods": [], "bases": [], "model": { @@ -184695,32 +184695,32 @@ }, { "type_name": "CNavWalkable", - "vtable_address": 30788336, + "vtable_address": 30788272, "methods": [ 11766592, 13988048, 13988080, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -184732,21 +184732,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 23093296, + 26427360, + 23093232, 13988336, 13988240, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -184770,83 +184770,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -184854,16 +184854,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -184884,7 +184884,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -184897,28 +184897,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -184929,7 +184929,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -184940,7 +184940,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -184984,7 +184984,7 @@ }, { "type_name": "CNetMessage", - "vtable_address": 30112864, + "vtable_address": 30112800, "methods": [], "bases": [], "model": { @@ -184995,14 +184995,14 @@ }, { "type_name": "CNetMessagePB<101, CUserMessageAchievementEvent, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31306688, + "vtable_address": 31306624, "methods": [ - 18011408, - 18011472, - 18007504, - 18007520, - 18007536, - 18011792 + 18011280, + 18011344, + 18007376, + 18007392, + 18007408, + 18011664 ], "bases": [ { @@ -185056,23 +185056,23 @@ }, { "type_name": "CNetMessagePB<101, CUserMessageAchievementEvent, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31306752, + "vtable_address": 31306688, "methods": [ - 18011440, - 18011536, - 24747814, + 18011312, + 18011408, + 24747750, 15298224, 15721840, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054496, 15078320, 15421792, 9474464, 15127328, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072416, 15046608 @@ -185129,17 +185129,17 @@ }, { "type_name": "CNetMessagePB<101, CUserMessageAchievementEvent, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31306600, + "vtable_address": 31306536, "methods": [ - 18382688, - 18007616, - 18148160, - 18007632, - 18018544, - 18007648, - 18011936, - 18007664, - 18007680 + 18382560, + 18007488, + 18148032, + 18007504, + 18018416, + 18007520, + 18011808, + 18007536, + 18007552 ], "bases": [ { @@ -185161,14 +185161,14 @@ }, { "type_name": "CNetMessagePB<102, CUserMessageCloseCaption, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31407872, + "vtable_address": 31407808, "methods": [ - 19531696, - 19531760, - 19519216, - 19519232, - 19519248, - 19531888 + 19531568, + 19531632, + 19519088, + 19519104, + 19519120, + 19531760 ], "bases": [ { @@ -185222,23 +185222,23 @@ }, { "type_name": "CNetMessagePB<102, CUserMessageCloseCaption, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31407936, + "vtable_address": 31407872, "methods": [ - 19531728, - 19531824, - 24747814, + 19531600, + 19531696, + 24747750, 15298384, 15721888, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050832, 15078304, 15422272, 9474464, 15161312, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072448, 15046624 @@ -185295,17 +185295,17 @@ }, { "type_name": "CNetMessagePB<102, CUserMessageCloseCaption, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31407784, + "vtable_address": 31407720, "methods": [ - 19763712, - 19515328, - 19764272, - 19515344, - 19559712, - 19515360, - 19532032, - 19515376, - 19515392 + 19763584, + 19515200, + 19764144, + 19515216, + 19559584, + 19515232, + 19531904, + 19515248, + 19515264 ], "bases": [ { @@ -185327,14 +185327,14 @@ }, { "type_name": "CNetMessagePB<103, CUserMessageCloseCaptionDirect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31408184, + "vtable_address": 31408120, "methods": [ - 19531248, - 19531312, - 19519104, - 19519120, - 19519136, - 19531440 + 19531120, + 19531184, + 19518976, + 19518992, + 19519008, + 19531312 ], "bases": [ { @@ -185388,23 +185388,23 @@ }, { "type_name": "CNetMessagePB<103, CUserMessageCloseCaptionDirect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31408248, + "vtable_address": 31408184, "methods": [ - 19531280, - 19531376, - 24747814, + 19531152, + 19531248, + 24747750, 15298544, 15721968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050944, 15078288, 15422960, 9474464, 15161696, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072480, 15046640 @@ -185461,17 +185461,17 @@ }, { "type_name": "CNetMessagePB<103, CUserMessageCloseCaptionDirect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31408096, + "vtable_address": 31408032, "methods": [ - 19762464, - 19515248, - 19763024, - 19515264, - 19559872, - 19515280, - 19531584, - 19515296, - 19515312 + 19762336, + 19515120, + 19762896, + 19515136, + 19559744, + 19515152, + 19531456, + 19515168, + 19515184 ], "bases": [ { @@ -185493,14 +185493,14 @@ }, { "type_name": "CNetMessagePB<104, CUserMessageCurrentTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31402344, + "vtable_address": 31402280, "methods": [ - 19539408, - 19539472, - 19521008, - 19521024, - 19521040, - 19539600 + 19539280, + 19539344, + 19520880, + 19520896, + 19520912, + 19539472 ], "bases": [ { @@ -185554,23 +185554,23 @@ }, { "type_name": "CNetMessagePB<104, CUserMessageCurrentTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31402408, + "vtable_address": 31402344, "methods": [ - 19539440, - 19539536, - 24747814, + 19539312, + 19539408, + 24747750, 15298832, 15722048, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15078256, 15424304, 9474464, 15107488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072544, 15046672 @@ -185627,17 +185627,17 @@ }, { "type_name": "CNetMessagePB<104, CUserMessageCurrentTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31402256, + "vtable_address": 31402192, "methods": [ - 19782432, - 19516800, - 19782976, - 19516816, - 19556992, - 19516832, - 19539744, - 19516848, - 19516864 + 19782304, + 19516672, + 19782848, + 19516688, + 19556864, + 19516704, + 19539616, + 19516720, + 19516736 ], "bases": [ { @@ -185659,14 +185659,14 @@ }, { "type_name": "CNetMessagePB<105, CUserMessageDesiredTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31402656, + "vtable_address": 31402592, "methods": [ - 19538960, - 19539024, - 19520896, - 19520912, - 19520928, - 19539152 + 19538832, + 19538896, + 19520768, + 19520784, + 19520800, + 19539024 ], "bases": [ { @@ -185720,23 +185720,23 @@ }, { "type_name": "CNetMessagePB<105, CUserMessageDesiredTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31402720, + "vtable_address": 31402656, "methods": [ - 19538992, - 19539088, - 24747814, + 19538864, + 19538960, + 24747750, 15298992, 15722096, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049072, 15078240, 15424624, 9474464, 15107600, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072576, 15046688 @@ -185793,17 +185793,17 @@ }, { "type_name": "CNetMessagePB<105, CUserMessageDesiredTimescale, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31402568, + "vtable_address": 31402504, "methods": [ - 19781184, - 19516720, - 19781744, - 19516736, - 19557152, - 19516752, - 19539296, - 19516768, - 19516784 + 19781056, + 19516592, + 19781616, + 19516608, + 19557024, + 19516624, + 19539168, + 19516640, + 19516656 ], "bases": [ { @@ -185825,14 +185825,14 @@ }, { "type_name": "CNetMessagePB<106, CUserMessageFade, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31406088, + "vtable_address": 31406024, "methods": [ - 19533488, - 19533552, - 19519664, - 19519680, - 19519696, - 19533680 + 19533360, + 19533424, + 19519536, + 19519552, + 19519568, + 19533552 ], "bases": [ { @@ -185886,23 +185886,23 @@ }, { "type_name": "CNetMessagePB<106, CUserMessageFade, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31406152, + "vtable_address": 31406088, "methods": [ - 19533520, - 19533616, - 24747814, + 19533392, + 19533488, + 24747750, 15299152, 15722160, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054544, 15078224, 15425072, 9474464, 15176512, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072608, 15046704 @@ -185959,17 +185959,17 @@ }, { "type_name": "CNetMessagePB<106, CUserMessageFade, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31406000, - "methods": [ - 19768704, - 19515840, - 19769264, - 19515856, - 19558912, - 19515872, - 19533824, - 19515888, - 19515904 + "vtable_address": 31405936, + "methods": [ + 19768576, + 19515712, + 19769136, + 19515728, + 19558784, + 19515744, + 19533696, + 19515760, + 19515776 ], "bases": [ { @@ -185991,14 +185991,14 @@ }, { "type_name": "CNetMessagePB<110, CUserMessageHudMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31409432, + "vtable_address": 31409368, "methods": [ - 19529456, - 19529520, - 19518656, - 19518672, - 19518688, - 19529648 + 19529328, + 19529392, + 19518528, + 19518544, + 19518560, + 19529520 ], "bases": [ { @@ -186052,23 +186052,23 @@ }, { "type_name": "CNetMessagePB<110, CUserMessageHudMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31409496, + "vtable_address": 31409432, "methods": [ - 19529488, - 19529584, - 24747814, + 19529360, + 19529456, + 24747750, 15300288, 15743936, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093920, 15078128, 15429408, 9474464, 15194080, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072832, 15046816 @@ -186125,17 +186125,17 @@ }, { "type_name": "CNetMessagePB<110, CUserMessageHudMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31409344, + "vtable_address": 31409280, "methods": [ - 19757472, - 19514928, - 19758032, - 19514944, - 19560512, - 19514960, - 19529792, - 19514976, - 19514992 + 19757344, + 19514800, + 19757904, + 19514816, + 19560384, + 19514832, + 19529664, + 19514848, + 19514864 ], "bases": [ { @@ -186157,14 +186157,14 @@ }, { "type_name": "CNetMessagePB<111, CUserMessageHudText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31409744, + "vtable_address": 31409680, "methods": [ - 19528992, - 19529056, - 19518544, - 19518560, - 19518576, - 19529184 + 19528864, + 19528928, + 19518416, + 19518432, + 19518448, + 19529056 ], "bases": [ { @@ -186218,23 +186218,23 @@ }, { "type_name": "CNetMessagePB<111, CUserMessageHudText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31409808, + "vtable_address": 31409744, "methods": [ - 19529024, - 19529120, - 24747814, + 19528896, + 19528992, + 24747750, 15300448, 15744240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15078112, 15430096, 9474464, 15128864, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072864, 15046832 @@ -186291,17 +186291,17 @@ }, { "type_name": "CNetMessagePB<111, CUserMessageHudText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31409656, + "vtable_address": 31409592, "methods": [ - 19756224, - 19514848, - 19756768, - 19514864, - 19560672, - 19514880, - 19529328, - 19514896, - 19514912 + 19756096, + 19514720, + 19756640, + 19514736, + 19560544, + 19514752, + 19529200, + 19514768, + 19514784 ], "bases": [ { @@ -186323,14 +186323,14 @@ }, { "type_name": "CNetMessagePB<113, CUserMessageColoredText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31404528, + "vtable_address": 31404464, "methods": [ - 19535728, - 19535792, - 19520224, - 19520240, - 19520256, - 19535920 + 19535600, + 19535664, + 19520096, + 19520112, + 19520128, + 19535792 ], "bases": [ { @@ -186384,23 +186384,23 @@ }, { "type_name": "CNetMessagePB<113, CUserMessageColoredText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31404592, + "vtable_address": 31404528, "methods": [ - 19535760, - 19535856, - 24747814, + 19535632, + 19535728, + 24747750, 15301920, 15745056, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094208, 15078000, 15434624, 9474464, 15202688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073184, 15046992 @@ -186457,17 +186457,17 @@ }, { "type_name": "CNetMessagePB<113, CUserMessageColoredText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31404440, + "vtable_address": 31404376, "methods": [ - 19774944, - 19516240, - 19775504, - 19516256, - 19558112, - 19516272, - 19536064, - 19516288, - 19516304 + 19774816, + 19516112, + 19775376, + 19516128, + 19557984, + 19516144, + 19535936, + 19516160, + 19516176 ], "bases": [ { @@ -186489,14 +186489,14 @@ }, { "type_name": "CNetMessagePB<114, CUserMessageRequestState, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31402968, + "vtable_address": 31402904, "methods": [ - 19538208, - 19538288, - 19520784, - 19520800, - 19520816, - 19538688 + 19538080, + 19538160, + 19520656, + 19520672, + 19520688, + 19538560 ], "bases": [ { @@ -186561,23 +186561,23 @@ }, { "type_name": "CNetMessagePB<114, CUserMessageRequestState, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31403032, + "vtable_address": 31402968, "methods": [ - 19538256, - 19538352, - 24747814, + 19538128, + 19538224, + 24747750, 15301488, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15073088, 15046944 @@ -186645,17 +186645,17 @@ }, { "type_name": "CNetMessagePB<114, CUserMessageRequestState, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31402880, + "vtable_address": 31402816, "methods": [ - 19636704, - 19516640, - 19708528, - 19516656, - 19557312, - 19516672, - 19538832, - 19516688, - 19516704 + 19636576, + 19516512, + 19708400, + 19516528, + 19557184, + 19516544, + 19538704, + 19516560, + 19516576 ], "bases": [ { @@ -186677,14 +186677,14 @@ }, { "type_name": "CNetMessagePB<115, CUserMessageResetHUD, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31410056, + "vtable_address": 31409992, "methods": [ - 19538000, - 19538080, - 19518432, - 19518448, - 19518464, - 19538416 + 19537872, + 19537952, + 19518304, + 19518320, + 19518336, + 19538288 ], "bases": [ { @@ -186749,23 +186749,23 @@ }, { "type_name": "CNetMessagePB<115, CUserMessageResetHUD, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31410120, + "vtable_address": 31410056, "methods": [ - 19538048, - 19538144, - 24747814, + 19537920, + 19538016, + 24747750, 15300896, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15072960, 15046880 @@ -186833,17 +186833,17 @@ }, { "type_name": "CNetMessagePB<115, CUserMessageResetHUD, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31409968, + "vtable_address": 31409904, "methods": [ - 19636144, - 19514768, - 19709248, - 19514784, - 19560832, - 19514800, - 19538560, - 19514816, - 19514832 + 19636016, + 19514640, + 19709120, + 19514656, + 19560704, + 19514672, + 19538432, + 19514688, + 19514704 ], "bases": [ { @@ -186865,14 +186865,14 @@ }, { "type_name": "CNetMessagePB<116, CUserMessageRumble, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31406936, + "vtable_address": 31406872, "methods": [ - 19533040, - 19533104, - 19519552, - 19519568, - 19519584, - 19533232 + 19532912, + 19532976, + 19519424, + 19519440, + 19519456, + 19533104 ], "bases": [ { @@ -186926,23 +186926,23 @@ }, { "type_name": "CNetMessagePB<116, CUserMessageRumble, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31407000, + "vtable_address": 31406936, "methods": [ - 19533072, - 19533168, - 24747814, + 19532944, + 19533040, + 24747750, 15301632, 15722640, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051056, 15078032, 15433248, 9474464, 15167968, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073120, 15046960 @@ -186999,17 +186999,17 @@ }, { "type_name": "CNetMessagePB<116, CUserMessageRumble, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31406848, + "vtable_address": 31406784, "methods": [ - 19767456, - 19515568, - 19768016, - 19515584, - 19559232, - 19515600, - 19533376, - 19515616, - 19515632 + 19767328, + 19515440, + 19767888, + 19515456, + 19559104, + 19515472, + 19533248, + 19515488, + 19515504 ], "bases": [ { @@ -187031,14 +187031,14 @@ }, { "type_name": "CNetMessagePB<117, CUserMessageSayText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31404216, + "vtable_address": 31404152, "methods": [ - 19536176, - 19536240, - 19520336, - 19520352, - 19520368, - 19536368 + 19536048, + 19536112, + 19520208, + 19520224, + 19520240, + 19536240 ], "bases": [ { @@ -187092,23 +187092,23 @@ }, { "type_name": "CNetMessagePB<117, CUserMessageSayText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31404280, + "vtable_address": 31404216, "methods": [ - 19536208, - 19536304, - 24747814, + 19536080, + 19536176, + 24747750, 15299920, 15743440, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093536, 15078160, 15428080, 9474464, 15158560, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072768, 15046784 @@ -187165,17 +187165,17 @@ }, { "type_name": "CNetMessagePB<117, CUserMessageSayText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31404128, + "vtable_address": 31404064, "methods": [ - 19776192, - 19516320, - 19776752, - 19516336, - 19557952, - 19516352, - 19536512, - 19516368, - 19516384 + 19776064, + 19516192, + 19776624, + 19516208, + 19557824, + 19516224, + 19536384, + 19516240, + 19516256 ], "bases": [ { @@ -187197,14 +187197,14 @@ }, { "type_name": "CNetMessagePB<118, CUserMessageSayText2, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31363656, + "vtable_address": 31363592, "methods": [ - 18828592, - 18828656, - 18818432, - 18818448, - 18818464, - 18828784 + 18828464, + 18828528, + 18818304, + 18818320, + 18818336, + 18828656 ], "bases": [ { @@ -187258,23 +187258,23 @@ }, { "type_name": "CNetMessagePB<118, CUserMessageSayText2, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31363720, + "vtable_address": 31363656, "methods": [ - 18828624, - 18828720, - 24747814, + 18828496, + 18828592, + 24747750, 15300144, 15743712, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093632, 15078144, 15428768, 9474464, 15212480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072800, 15046800 @@ -187331,17 +187331,17 @@ }, { "type_name": "CNetMessagePB<118, CUserMessageSayText2, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31363568, + "vtable_address": 31363504, "methods": [ - 19292896, - 18818304, - 19030208, - 18818320, - 18837232, - 18818336, - 18828928, - 18818352, - 18818368 + 19292768, + 18818176, + 19030080, + 18818192, + 18837104, + 18818208, + 18828800, + 18818224, + 18818240 ], "bases": [ { @@ -187363,14 +187363,14 @@ }, { "type_name": "CNetMessagePB<119, CUserMessageSayTextChannel, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31404840, + "vtable_address": 31404776, "methods": [ - 19535280, - 19535344, - 19520112, - 19520128, - 19520144, - 19535472 + 19535152, + 19535216, + 19519984, + 19520000, + 19520016, + 19535344 ], "bases": [ { @@ -187424,23 +187424,23 @@ }, { "type_name": "CNetMessagePB<119, CUserMessageSayTextChannel, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31404904, + "vtable_address": 31404840, "methods": [ - 19535312, - 19535408, - 24747814, + 19535184, + 19535280, + 24747750, 15301776, 15744768, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094080, 15078016, 15433952, 9474464, 15174464, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073152, 15046976 @@ -187497,17 +187497,17 @@ }, { "type_name": "CNetMessagePB<119, CUserMessageSayTextChannel, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31404752, + "vtable_address": 31404688, "methods": [ - 19773696, - 19516160, - 19774256, - 19516176, - 19558272, - 19516192, - 19535616, - 19516208, - 19516224 + 19773568, + 19516032, + 19774128, + 19516048, + 19558144, + 19516064, + 19535488, + 19516080, + 19516096 ], "bases": [ { @@ -187529,14 +187529,14 @@ }, { "type_name": "CNetMessagePB<120, CUserMessageShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31405152, + "vtable_address": 31405088, "methods": [ - 19534832, - 19534896, - 19520000, - 19520016, - 19520032, - 19535024 + 19534704, + 19534768, + 19519872, + 19519888, + 19519904, + 19534896 ], "bases": [ { @@ -187590,23 +187590,23 @@ }, { "type_name": "CNetMessagePB<120, CUserMessageShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31405216, + "vtable_address": 31405152, "methods": [ - 19534864, - 19534960, - 24747814, + 19534736, + 19534832, + 24747750, 15299312, 15722224, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054656, 15076736, 15425744, 9474464, 15151904, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072640, 15046720 @@ -187663,17 +187663,17 @@ }, { "type_name": "CNetMessagePB<120, CUserMessageShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31405064, + "vtable_address": 31405000, "methods": [ - 19772448, - 19516080, - 19773008, - 19516096, - 19558432, - 19516112, - 19535168, - 19516128, - 19516144 + 19772320, + 19515952, + 19772880, + 19515968, + 19558304, + 19515984, + 19535040, + 19516000, + 19516016 ], "bases": [ { @@ -187695,14 +187695,14 @@ }, { "type_name": "CNetMessagePB<121, CUserMessageShakeDir, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31405464, + "vtable_address": 31405400, "methods": [ - 19534384, - 19534448, - 19519888, - 19519904, - 19519920, - 19534576 + 19534256, + 19534320, + 19519760, + 19519776, + 19519792, + 19534448 ], "bases": [ { @@ -187756,23 +187756,23 @@ }, { "type_name": "CNetMessagePB<121, CUserMessageShakeDir, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31405528, + "vtable_address": 31405464, "methods": [ - 19534416, - 19534512, - 24747814, + 19534288, + 19534384, + 24747750, 15299472, 15765536, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15125168, 15078208, 15426336, 9474464, 15081392, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072672, 15046736 @@ -187829,17 +187829,17 @@ }, { "type_name": "CNetMessagePB<121, CUserMessageShakeDir, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31405376, + "vtable_address": 31405312, "methods": [ - 19771200, - 19516000, - 19771760, - 19516016, - 19558592, - 19516032, - 19534720, - 19516048, - 19516064 + 19771072, + 19515872, + 19771632, + 19515888, + 19558464, + 19515904, + 19534592, + 19515920, + 19515936 ], "bases": [ { @@ -187861,14 +187861,14 @@ }, { "type_name": "CNetMessagePB<122, CUserMessageWaterShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31405776, + "vtable_address": 31405712, "methods": [ - 19533936, - 19534000, - 19519776, - 19519792, - 19519808, - 19534128 + 19533808, + 19533872, + 19519648, + 19519664, + 19519680, + 19534000 ], "bases": [ { @@ -187922,23 +187922,23 @@ }, { "type_name": "CNetMessagePB<122, CUserMessageWaterShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31405840, + "vtable_address": 31405776, "methods": [ - 19533968, - 19534064, - 24747814, + 19533840, + 19533936, + 24747750, 15299632, 15722288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054736, 15078192, 15426848, 9474464, 15152256, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072704, 15046752 @@ -187995,17 +187995,17 @@ }, { "type_name": "CNetMessagePB<122, CUserMessageWaterShake, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31405688, + "vtable_address": 31405624, "methods": [ - 19769952, - 19515920, - 19770512, - 19515936, - 19558752, - 19515952, - 19534272, - 19515968, - 19515984 + 19769824, + 19515792, + 19770384, + 19515808, + 19558624, + 19515824, + 19534144, + 19515840, + 19515856 ], "bases": [ { @@ -188027,14 +188027,14 @@ }, { "type_name": "CNetMessagePB<124, CUserMessageTextMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31406400, + "vtable_address": 31406336, "methods": [ - 19523952, - 19524016, - 19515648, - 19515664, - 19515680, - 19523808 + 19523824, + 19523888, + 19515520, + 19515536, + 19515552, + 19523680 ], "bases": [ { @@ -188088,23 +188088,23 @@ }, { "type_name": "CNetMessagePB<124, CUserMessageTextMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31406464, + "vtable_address": 31406400, "methods": [ - 19523984, - 19524080, - 24747814, + 19523856, + 19523952, + 24747750, 15300640, 15722464, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101200, 15078096, 15430496, 9474464, 15150304, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072896, 15046848 @@ -188161,17 +188161,17 @@ }, { "type_name": "CNetMessagePB<124, CUserMessageTextMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31406312, + "vtable_address": 31406248, "methods": [ - 19742496, - 19515760, - 19743056, - 19515776, - 19559072, - 19515792, - 19524336, - 19515808, - 19515824 + 19742368, + 19515632, + 19742928, + 19515648, + 19558944, + 19515664, + 19524208, + 19515680, + 19515696 ], "bases": [ { @@ -188193,14 +188193,14 @@ }, { "type_name": "CNetMessagePB<125, CUserMessageScreenTilt, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31407248, + "vtable_address": 31407184, "methods": [ - 19532592, - 19532656, - 19519440, - 19519456, - 19519472, - 19532784 + 19532464, + 19532528, + 19519312, + 19519328, + 19519344, + 19532656 ], "bases": [ { @@ -188254,23 +188254,23 @@ }, { "type_name": "CNetMessagePB<125, CUserMessageScreenTilt, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31407312, + "vtable_address": 31407248, "methods": [ - 19532624, - 19532720, - 24747814, + 19532496, + 19532592, + 24747750, 15299776, 15722352, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15062160, 15078176, 15427440, 9474464, 15165600, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072736, 15046768 @@ -188327,17 +188327,17 @@ }, { "type_name": "CNetMessagePB<125, CUserMessageScreenTilt, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31407160, + "vtable_address": 31407096, "methods": [ - 19766208, - 19515488, - 19766768, - 19515504, - 19559392, - 19515520, - 19532928, - 19515536, - 19515552 + 19766080, + 19515360, + 19766640, + 19515376, + 19559264, + 19515392, + 19532800, + 19515408, + 19515424 ], "bases": [ { @@ -188359,14 +188359,14 @@ }, { "type_name": "CNetMessagePB<128, CUserMessageVoiceMask, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31403280, + "vtable_address": 31403216, "methods": [ - 19537552, - 19537616, - 19520672, - 19520688, - 19520704, - 19537744 + 19537424, + 19537488, + 19520544, + 19520560, + 19520576, + 19537616 ], "bases": [ { @@ -188420,23 +188420,23 @@ }, { "type_name": "CNetMessagePB<128, CUserMessageVoiceMask, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31403344, + "vtable_address": 31403280, "methods": [ - 19537584, - 19537680, - 24747814, + 19537456, + 19537552, + 24747750, 15301360, 15722592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101872, 15078048, 15432336, 9474464, 15121760, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073056, 15046928 @@ -188493,17 +188493,17 @@ }, { "type_name": "CNetMessagePB<128, CUserMessageVoiceMask, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31403192, + "vtable_address": 31403128, "methods": [ - 19779936, - 19516560, - 19780496, - 19516576, - 19557472, - 19516592, - 19537888, - 19516608, - 19516624 + 19779808, + 19516432, + 19780368, + 19516448, + 19557344, + 19516464, + 19537760, + 19516480, + 19516496 ], "bases": [ { @@ -188525,7 +188525,7 @@ }, { "type_name": "CNetMessagePB<130, CUserMessageSendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30968256, + "vtable_address": 30968192, "methods": [ 15979296, 15979360, @@ -188586,23 +188586,23 @@ }, { "type_name": "CNetMessagePB<130, CUserMessageSendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30968320, + "vtable_address": 30968256, "methods": [ 15979328, 15979424, - 24747814, + 24747750, 15301040, 15744496, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088992, 15078080, 15431088, 9474464, 15134928, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072992, 15046896 @@ -188659,11 +188659,11 @@ }, { "type_name": "CNetMessagePB<130, CUserMessageSendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30968168, + "vtable_address": 30968104, "methods": [ - 16478176, + 16478048, 15974736, - 16479456, + 16479328, 15974752, 15991024, 15974768, @@ -188691,14 +188691,14 @@ }, { "type_name": "CNetMessagePB<131, CUserMessageItemPickup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31403592, + "vtable_address": 31403528, "methods": [ - 19537088, - 19537152, - 19520560, - 19520576, - 19520592, - 19537280 + 19536960, + 19537024, + 19520432, + 19520448, + 19520464, + 19537152 ], "bases": [ { @@ -188752,23 +188752,23 @@ }, { "type_name": "CNetMessagePB<131, CUserMessageItemPickup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31403656, + "vtable_address": 31403592, "methods": [ - 19537120, - 19537216, - 24747814, + 19536992, + 19537088, + 24747750, 15302080, 15745360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15077984, 15435312, 9474464, 15129040, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073216, 15047008 @@ -188825,17 +188825,17 @@ }, { "type_name": "CNetMessagePB<131, CUserMessageItemPickup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31403504, + "vtable_address": 31403440, "methods": [ - 19778688, - 19516480, - 19779232, - 19516496, - 19557632, - 19516512, - 19537424, - 19516528, - 19516544 + 19778560, + 19516352, + 19779104, + 19516368, + 19557504, + 19516384, + 19537296, + 19516400, + 19516416 ], "bases": [ { @@ -188857,14 +188857,14 @@ }, { "type_name": "CNetMessagePB<132, CUserMessageAmmoDenied, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31403904, + "vtable_address": 31403840, "methods": [ - 19536624, - 19536688, - 19520448, - 19520464, - 19520480, - 19536816 + 19536496, + 19536560, + 19520320, + 19520336, + 19520352, + 19536688 ], "bases": [ { @@ -188918,23 +188918,23 @@ }, { "type_name": "CNetMessagePB<132, CUserMessageAmmoDenied, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31403968, + "vtable_address": 31403904, "methods": [ - 19536656, - 19536752, - 24747814, + 19536528, + 19536624, + 24747750, 15302224, 15722704, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054928, 15077968, 15435712, 9474464, 15127552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073248, 15047024 @@ -188991,17 +188991,17 @@ }, { "type_name": "CNetMessagePB<132, CUserMessageAmmoDenied, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31403816, + "vtable_address": 31403752, "methods": [ - 19777440, - 19516400, - 19777984, - 19516416, - 19557792, - 19516432, - 19536960, - 19516448, - 19516464 + 19777312, + 19516272, + 19777856, + 19516288, + 19557664, + 19516304, + 19536832, + 19516320, + 19516336 ], "bases": [ { @@ -189023,14 +189023,14 @@ }, { "type_name": "CNetMessagePB<134, CUserMessageShowMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31407560, + "vtable_address": 31407496, "methods": [ - 19532144, - 19532208, - 19519328, - 19519344, - 19519360, - 19532336 + 19532016, + 19532080, + 19519200, + 19519216, + 19519232, + 19532208 ], "bases": [ { @@ -189084,23 +189084,23 @@ }, { "type_name": "CNetMessagePB<134, CUserMessageShowMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31407624, + "vtable_address": 31407560, "methods": [ - 19532176, - 19532272, - 24747814, + 19532048, + 19532144, + 24747750, 15302352, 15745616, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094400, 15077952, 15436192, 9474464, 15178112, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073280, 15047040 @@ -189157,17 +189157,17 @@ }, { "type_name": "CNetMessagePB<134, CUserMessageShowMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31407472, + "vtable_address": 31407408, "methods": [ - 19764960, - 19515408, - 19765520, - 19515424, - 19559552, - 19515440, - 19532480, - 19515456, - 19515472 + 19764832, + 19515280, + 19765392, + 19515296, + 19559424, + 19515312, + 19532352, + 19515328, + 19515344 ], "bases": [ { @@ -189189,14 +189189,14 @@ }, { "type_name": "CNetMessagePB<135, CUserMessageCreditsMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31410368, + "vtable_address": 31410304, "methods": [ - 19528528, - 19528592, - 19518320, - 19518336, - 19518352, - 19528720 + 19528400, + 19528464, + 19518192, + 19518208, + 19518224, + 19528592 ], "bases": [ { @@ -189250,23 +189250,23 @@ }, { "type_name": "CNetMessagePB<135, CUserMessageCreditsMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31410432, + "vtable_address": 31410368, "methods": [ - 19528560, - 19528656, - 24747814, + 19528432, + 19528528, + 24747750, 15302496, 15722752, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051168, 15077936, 15436816, 9474464, 15131680, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073312, 15047056 @@ -189323,17 +189323,17 @@ }, { "type_name": "CNetMessagePB<135, CUserMessageCreditsMsg, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31410280, + "vtable_address": 31410216, "methods": [ - 19754976, - 19514688, - 19755520, - 19514704, - 19560992, - 19514720, - 19528864, - 19514736, - 19514752 + 19754848, + 19514560, + 19755392, + 19514576, + 19560864, + 19514592, + 19528736, + 19514608, + 19514624 ], "bases": [ { @@ -189355,14 +189355,14 @@ }, { "type_name": "CNetMessagePB<137, CEntityMessageScreenOverlay, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31410680, + "vtable_address": 31410616, "methods": [ - 19528080, - 19528144, - 19518208, - 19518224, - 19518240, - 19528272 + 19527952, + 19528016, + 19518080, + 19518096, + 19518112, + 19528144 ], "bases": [ { @@ -189416,23 +189416,23 @@ }, { "type_name": "CNetMessagePB<137, CEntityMessageScreenOverlay, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31410744, + "vtable_address": 31410680, "methods": [ - 19528112, - 19528208, - 24747814, + 19527984, + 19528080, + 24747750, 15302784, 15767888, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15136864, 15077904, 15437856, 9474464, 15109760, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073376, 15047088 @@ -189489,17 +189489,17 @@ }, { "type_name": "CNetMessagePB<137, CEntityMessageScreenOverlay, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31410592, + "vtable_address": 31410528, "methods": [ - 19753728, - 19514608, - 19754288, - 19514624, - 19561152, - 19514640, - 19528416, - 19514656, - 19514672 + 19753600, + 19514480, + 19754160, + 19514496, + 19561024, + 19514512, + 19528288, + 19514528, + 19514544 ], "bases": [ { @@ -189521,14 +189521,14 @@ }, { "type_name": "CNetMessagePB<138, CEntityMessageRemoveAllDecals, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31410992, + "vtable_address": 31410928, "methods": [ - 19527632, - 19527696, - 19518096, - 19518112, - 19518128, - 19527824 + 19527504, + 19527568, + 19517968, + 19517984, + 19518000, + 19527696 ], "bases": [ { @@ -189582,23 +189582,23 @@ }, { "type_name": "CNetMessagePB<138, CEntityMessageRemoveAllDecals, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31411056, + "vtable_address": 31410992, "methods": [ - 19527664, - 19527760, - 24747814, + 19527536, + 19527632, + 24747750, 15302944, 15768000, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15136992, 15077888, 15438464, 9474464, 15109920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073408, 15047104 @@ -189655,17 +189655,17 @@ }, { "type_name": "CNetMessagePB<138, CEntityMessageRemoveAllDecals, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31410904, + "vtable_address": 31410840, "methods": [ - 19752480, - 19514528, - 19753040, - 19514544, - 19561312, - 19514560, - 19527968, - 19514576, - 19514592 + 19752352, + 19514400, + 19752912, + 19514416, + 19561184, + 19514432, + 19527840, + 19514448, + 19514464 ], "bases": [ { @@ -189687,14 +189687,14 @@ }, { "type_name": "CNetMessagePB<139, CEntityMessagePropagateForce, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31411304, + "vtable_address": 31411240, "methods": [ - 19527184, - 19527248, - 19517984, - 19518000, - 19518016, - 19527376 + 19527056, + 19527120, + 19517856, + 19517872, + 19517888, + 19527248 ], "bases": [ { @@ -189748,23 +189748,23 @@ }, { "type_name": "CNetMessagePB<139, CEntityMessagePropagateForce, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31411368, + "vtable_address": 31411304, "methods": [ - 19527216, - 19527312, - 24747814, + 19527088, + 19527184, + 24747750, 15303104, 15772672, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15152608, 15077872, 15439072, 9474464, 15081648, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073440, 15047120 @@ -189821,17 +189821,17 @@ }, { "type_name": "CNetMessagePB<139, CEntityMessagePropagateForce, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31411216, + "vtable_address": 31411152, "methods": [ - 19751232, - 19514448, - 19751792, - 19514464, - 19561472, - 19514480, - 19527520, - 19514496, - 19514512 + 19751104, + 19514320, + 19751664, + 19514336, + 19561344, + 19514352, + 19527392, + 19514368, + 19514384 ], "bases": [ { @@ -189853,14 +189853,14 @@ }, { "type_name": "CNetMessagePB<140, CEntityMessageDoSpark, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31411616, + "vtable_address": 31411552, "methods": [ - 19526736, - 19526800, - 19517872, - 19517888, - 19517904, - 19526928 + 19526608, + 19526672, + 19517744, + 19517760, + 19517776, + 19526800 ], "bases": [ { @@ -189914,23 +189914,23 @@ }, { "type_name": "CNetMessagePB<140, CEntityMessageDoSpark, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31411680, + "vtable_address": 31411616, "methods": [ - 19526768, - 19526864, - 24747814, + 19526640, + 19526736, + 24747750, 15303232, 15773488, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15189872, 15077856, 15439584, 9474464, 15194752, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073472, 15047136 @@ -189987,17 +189987,17 @@ }, { "type_name": "CNetMessagePB<140, CEntityMessageDoSpark, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31411528, + "vtable_address": 31411464, "methods": [ - 19749984, - 19514368, - 19750544, - 19514384, - 19561632, - 19514400, - 19527072, - 19514416, - 19514432 + 19749856, + 19514240, + 19750416, + 19514256, + 19561504, + 19514272, + 19526944, + 19514288, + 19514304 ], "bases": [ { @@ -190019,14 +190019,14 @@ }, { "type_name": "CNetMessagePB<142, CUserMessageCloseCaptionPlaceholder, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31408496, + "vtable_address": 31408432, "methods": [ - 19530800, - 19530864, - 19518992, - 19519008, - 19519024, - 19530992 + 19530672, + 19530736, + 19518864, + 19518880, + 19518896, + 19530864 ], "bases": [ { @@ -190080,23 +190080,23 @@ }, { "type_name": "CNetMessagePB<142, CUserMessageCloseCaptionPlaceholder, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31408560, + "vtable_address": 31408496, "methods": [ - 19530832, - 19530928, - 24747814, + 19530704, + 19530800, + 24747750, 15298688, 15743136, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093424, 15078272, 15423648, 9474464, 15174976, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072512, 15046656 @@ -190153,17 +190153,17 @@ }, { "type_name": "CNetMessagePB<142, CUserMessageCloseCaptionPlaceholder, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31408408, + "vtable_address": 31408344, "methods": [ - 19761216, - 19515168, - 19761776, - 19515184, - 19560032, - 19515200, - 19531136, - 19515216, - 19515232 + 19761088, + 19515040, + 19761648, + 19515056, + 19559904, + 19515072, + 19531008, + 19515088, + 19515104 ], "bases": [ { @@ -190185,14 +190185,14 @@ }, { "type_name": "CNetMessagePB<143, CUserMessageCameraTransition, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31408808, + "vtable_address": 31408744, "methods": [ - 19530352, - 19530416, - 19518880, - 19518896, - 19518912, - 19530544 + 19530224, + 19530288, + 19518752, + 19518768, + 19518784, + 19530416 ], "bases": [ { @@ -190246,23 +190246,23 @@ }, { "type_name": "CNetMessagePB<143, CUserMessageCameraTransition, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31408872, + "vtable_address": 31408808, "methods": [ - 19530384, - 19530480, - 24747814, + 19530256, + 19530352, + 24747750, 15303680, 15765680, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094624, 15077824, 15441680, 9474464, 15137824, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073568, 15047184 @@ -190319,17 +190319,17 @@ }, { "type_name": "CNetMessagePB<143, CUserMessageCameraTransition, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31408720, + "vtable_address": 31408656, "methods": [ - 19759968, - 19515088, - 19760528, - 19515104, - 19560192, - 19515120, - 19530688, - 19515136, - 19515152 + 19759840, + 19514960, + 19760400, + 19514976, + 19560064, + 19514992, + 19530560, + 19515008, + 19515024 ], "bases": [ { @@ -190351,14 +190351,14 @@ }, { "type_name": "CNetMessagePB<144, CUserMessageAudioParameter, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31409120, + "vtable_address": 31409056, "methods": [ - 19529904, - 19529968, - 19518768, - 19518784, - 19518800, - 19530096 + 19529776, + 19529840, + 19518640, + 19518656, + 19518672, + 19529968 ], "bases": [ { @@ -190412,23 +190412,23 @@ }, { "type_name": "CNetMessagePB<144, CUserMessageAudioParameter, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31409184, + "vtable_address": 31409120, "methods": [ - 19529936, - 19530032, - 24747814, + 19529808, + 19529904, + 24747750, 15301200, 15722528, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054816, 15078064, 15431664, 9474464, 15177024, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073024, 15046912 @@ -190485,17 +190485,17 @@ }, { "type_name": "CNetMessagePB<144, CUserMessageAudioParameter, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31409032, + "vtable_address": 31408968, "methods": [ - 19758720, - 19515008, - 19759280, - 19515024, - 19560352, - 19515040, - 19530240, - 19515056, - 19515072 + 19758592, + 19514880, + 19759152, + 19514896, + 19560224, + 19514912, + 19530112, + 19514928, + 19514944 ], "bases": [ { @@ -190517,14 +190517,14 @@ }, { "type_name": "CNetMessagePB<145, CUserMsg_ParticleManager, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31323344, + "vtable_address": 31323280, "methods": [ - 18400016, - 18400080, - 18396016, - 18396032, - 18396048, - 18400400 + 18399888, + 18399952, + 18395888, + 18395904, + 18395920, + 18400272 ], "bases": [ { @@ -190578,23 +190578,23 @@ }, { "type_name": "CNetMessagePB<145, CUserMsg_ParticleManager, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31323408, + "vtable_address": 31323344, "methods": [ - 18400048, - 18400144, - 24747814, + 18399920, + 18400016, + 24747750, 15310320, 15776752, 15103920, - 24749974, - 24746806, + 24749910, + 24746742, 15223936, 15077808, 15465776, 9474464, 15243024, - 24746716, - 24746982, + 24746652, + 24746918, 15048864, 15074976, 15047888 @@ -190651,17 +190651,17 @@ }, { "type_name": "CNetMessagePB<145, CUserMsg_ParticleManager, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31323256, - "methods": [ - 18806928, - 18396128, - 18551856, - 18396144, - 18408640, - 18396160, - 18400544, - 18396176, - 18396192 + "vtable_address": 31323192, + "methods": [ + 18806800, + 18396000, + 18551728, + 18396016, + 18408512, + 18396032, + 18400416, + 18396048, + 18396064 ], "bases": [ { @@ -190683,14 +190683,14 @@ }, { "type_name": "CNetMessagePB<146, CUserMsg_HudError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31411928, + "vtable_address": 31411864, "methods": [ - 19526272, - 19526336, - 19517760, - 19517776, - 19517792, - 19526464 + 19526144, + 19526208, + 19517632, + 19517648, + 19517664, + 19526336 ], "bases": [ { @@ -190744,23 +190744,23 @@ }, { "type_name": "CNetMessagePB<146, CUserMsg_HudError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31411992, + "vtable_address": 31411928, "methods": [ - 19526304, - 19526400, - 24747814, + 19526176, + 19526272, + 24747750, 15310464, 15725056, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051328, 15077792, 15469808, 9474464, 15130912, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075008, 15047904 @@ -190817,17 +190817,17 @@ }, { "type_name": "CNetMessagePB<146, CUserMsg_HudError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31411840, + "vtable_address": 31411776, "methods": [ - 19748736, - 19514288, - 19749280, - 19514304, - 19561792, - 19514320, - 19526608, - 19514336, - 19514352 + 19748608, + 19514160, + 19749152, + 19514176, + 19561664, + 19514192, + 19526480, + 19514208, + 19514224 ], "bases": [ { @@ -190849,7 +190849,7 @@ }, { "type_name": "CNetMessagePB<148, CBaseCmdKeyValues, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30510232, + "vtable_address": 30510168, "methods": [ 12461728, 12463248, @@ -190921,23 +190921,23 @@ }, { "type_name": "CNetMessagePB<148, CBaseCmdKeyValues, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30510296, + "vtable_address": 30510232, "methods": [ 12461808, 12463344, - 24747814, + 24747750, 12437712, 15748720, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 12437136, 15470288, 9474464, 15176192, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075040, 15047920 @@ -191005,7 +191005,7 @@ }, { "type_name": "CNetMessagePB<148, CBaseCmdKeyValues, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30510144, + "vtable_address": 30510080, "methods": [ 12835424, 12436080, @@ -191037,14 +191037,14 @@ }, { "type_name": "CNetMessagePB<150, CUserMessageHapticsManagerPulse, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31412240, + "vtable_address": 31412176, "methods": [ - 19525824, - 19525888, - 19517648, - 19517664, - 19517680, - 19526016 + 19525696, + 19525760, + 19517520, + 19517536, + 19517552, + 19525888 ], "bases": [ { @@ -191098,23 +191098,23 @@ }, { "type_name": "CNetMessagePB<150, CUserMessageHapticsManagerPulse, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31412304, + "vtable_address": 31412240, "methods": [ - 19525856, - 19525952, - 24747814, + 19525728, + 19525824, + 24747750, 15310768, 15725104, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051376, 15077776, 15470752, 9474464, 15154816, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075072, 15047936 @@ -191171,17 +191171,17 @@ }, { "type_name": "CNetMessagePB<150, CUserMessageHapticsManagerPulse, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31412152, + "vtable_address": 31412088, "methods": [ - 19747488, - 19514208, - 19748048, - 19514224, - 19561952, - 19514240, - 19526160, - 19514256, - 19514272 + 19747360, + 19514080, + 19747920, + 19514096, + 19561824, + 19514112, + 19526032, + 19514128, + 19514144 ], "bases": [ { @@ -191203,14 +191203,14 @@ }, { "type_name": "CNetMessagePB<151, CUserMessageHapticsManagerEffect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31412552, + "vtable_address": 31412488, "methods": [ - 19525376, - 19525440, - 19517536, - 19517552, - 19517568, - 19525568 + 19525248, + 19525312, + 19517408, + 19517424, + 19517440, + 19525440 ], "bases": [ { @@ -191264,23 +191264,23 @@ }, { "type_name": "CNetMessagePB<151, CUserMessageHapticsManagerEffect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31412616, + "vtable_address": 31412552, "methods": [ - 19525408, - 19525504, - 24747814, + 19525280, + 19525376, + 24747750, 15310912, 15725168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055520, 15077760, 15471344, 9474464, 15157536, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075104, 15047952 @@ -191337,17 +191337,17 @@ }, { "type_name": "CNetMessagePB<151, CUserMessageHapticsManagerEffect, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31412464, + "vtable_address": 31412400, "methods": [ - 19746240, - 19514128, - 19746800, - 19514144, - 19562112, - 19514160, - 19525712, - 19514176, - 19514192 + 19746112, + 19514000, + 19746672, + 19514016, + 19561984, + 19514032, + 19525584, + 19514048, + 19514064 ], "bases": [ { @@ -191369,7 +191369,7 @@ }, { "type_name": "CNetMessagePB<153, CUserMessageUpdateCssClasses, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30138272, + "vtable_address": 30138208, "methods": [ 9640288, 9640352, @@ -191430,23 +191430,23 @@ }, { "type_name": "CNetMessagePB<153, CUserMessageUpdateCssClasses, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30138336, + "vtable_address": 30138272, "methods": [ 9640320, 9640416, - 24747814, + 24747750, 9640272, 15749120, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15096144, 9638608, 15472544, 9474464, 15159328, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075168, 15047984 @@ -191503,7 +191503,7 @@ }, { "type_name": "CNetMessagePB<153, CUserMessageUpdateCssClasses, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30138184, + "vtable_address": 30138120, "methods": [ 9697024, 9638256, @@ -191535,14 +191535,14 @@ }, { "type_name": "CNetMessagePB<154, CUserMessageServerFrameTime, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31412864, + "vtable_address": 31412800, "methods": [ - 19524912, - 19524976, - 19517424, - 19517440, - 19517456, - 19525104 + 19524784, + 19524848, + 19517296, + 19517312, + 19517328, + 19524976 ], "bases": [ { @@ -191596,23 +191596,23 @@ }, { "type_name": "CNetMessagePB<154, CUserMessageServerFrameTime, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31412928, + "vtable_address": 31412864, "methods": [ - 19524944, - 19525040, - 24747814, + 19524816, + 19524912, + 24747750, 15311328, 15725232, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077728, 15473232, 9474464, 15108496, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075200, 15048000 @@ -191661,38 +191661,99 @@ } } ], - "model": { - "Itanium": { - "offset_to_top": -48 - } - } - }, - { - "type_name": "CNetMessagePB<154, CUserMessageServerFrameTime, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31412776, - "methods": [ - 19744992, - 19514048, - 19745536, - 19514064, - 19562272, - 19514080, - 19525248, - 19514096, - 19514112 - ], - "bases": [ - { - "type_name": "IProtobufBinding", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ], + "model": { + "Itanium": { + "offset_to_top": -48 + } + } + }, + { + "type_name": "CNetMessagePB<154, CUserMessageServerFrameTime, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", + "vtable_address": 31412712, + "methods": [ + 19744864, + 19513920, + 19745408, + 19513936, + 19562144, + 19513952, + 19525120, + 19513968, + 19513984 + ], + "bases": [ + { + "type_name": "IProtobufBinding", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ], + "model": { + "Itanium": { + "offset_to_top": 0 + } + } + }, + { + "type_name": "CNetMessagePB<155, CUserMessageLagCompensationError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", + "vtable_address": 31413112, + "methods": [ + 19524320, + 19524384, + 19517184, + 19517200, + 19517216, + 19524512 + ], + "bases": [ + { + "type_name": "CNetMessage", + "details": { + "Itanium": { + "offset": 0, + "flags": 2, + "bases": [] + } + } + }, + { + "type_name": "CUserMessageLagCompensationError", + "details": { + "Itanium": { + "offset": 48, + "flags": 2, + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [ + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Itanium": { + "offset": 0, + "flags": 0, + "bases": [] + } + } + } + ] + } + } + } + ] + } + } + } + ], "model": { "Itanium": { "offset_to_top": 0 @@ -191703,82 +191764,21 @@ "type_name": "CNetMessagePB<155, CUserMessageLagCompensationError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", "vtable_address": 31413176, "methods": [ + 19524352, 19524448, - 19524512, - 19517312, - 19517328, - 19517344, - 19524640 - ], - "bases": [ - { - "type_name": "CNetMessage", - "details": { - "Itanium": { - "offset": 0, - "flags": 2, - "bases": [] - } - } - }, - { - "type_name": "CUserMessageLagCompensationError", - "details": { - "Itanium": { - "offset": 48, - "flags": 2, - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [ - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Itanium": { - "offset": 0, - "flags": 0, - "bases": [] - } - } - } - ] - } - } - } - ] - } - } - } - ], - "model": { - "Itanium": { - "offset_to_top": 0 - } - } - }, - { - "type_name": "CNetMessagePB<155, CUserMessageLagCompensationError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31413240, - "methods": [ - 19524480, - 19524576, - 24747814, + 24747750, 15311472, 15725280, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077712, 15473552, 9474464, 15108608, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075232, 15048016 @@ -191835,17 +191835,17 @@ }, { "type_name": "CNetMessagePB<155, CUserMessageLagCompensationError, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31413088, + "vtable_address": 31413024, "methods": [ - 19743744, - 19513968, - 19744288, - 19513984, - 19562432, - 19514000, - 19524784, - 19514016, - 19514032 + 19743616, + 19513840, + 19744160, + 19513856, + 19562304, + 19513872, + 19524656, + 19513888, + 19513904 ], "bases": [ { @@ -191867,14 +191867,14 @@ }, { "type_name": "CNetMessagePB<156, CUserMessageRequestDllStatus, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31413488, + "vtable_address": 31413424, "methods": [ - 19542112, - 19542176, - 19521680, - 19521696, - 19521712, - 19542304 + 19541984, + 19542048, + 19521552, + 19521568, + 19521584, + 19542176 ], "bases": [ { @@ -191928,23 +191928,23 @@ }, { "type_name": "CNetMessagePB<156, CUserMessageRequestDllStatus, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31413552, + "vtable_address": 31413488, "methods": [ - 19542144, - 19542240, - 24747814, + 19542016, + 19542112, + 24747750, 15311616, 15749424, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088992, 15077696, 15473872, 9474464, 15135376, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075264, 15048032 @@ -192001,17 +192001,17 @@ }, { "type_name": "CNetMessagePB<156, CUserMessageRequestDllStatus, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31413400, + "vtable_address": 31413336, "methods": [ - 19789920, - 19513888, - 19790480, - 19513904, - 19562592, - 19513920, - 19542448, - 19513936, - 19513952 + 19789792, + 19513760, + 19790352, + 19513776, + 19562464, + 19513792, + 19542320, + 19513808, + 19513824 ], "bases": [ { @@ -192033,14 +192033,14 @@ }, { "type_name": "CNetMessagePB<157, CUserMessageRequestUtilAction, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31413800, + "vtable_address": 31413736, "methods": [ - 19541664, - 19541728, - 19521568, - 19521584, - 19521600, - 19541856 + 19541536, + 19541600, + 19521440, + 19521456, + 19521472, + 19541728 ], "bases": [ { @@ -192094,23 +192094,23 @@ }, { "type_name": "CNetMessagePB<157, CUserMessageRequestUtilAction, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31413864, + "vtable_address": 31413800, "methods": [ - 19541696, - 19541792, - 24747814, + 19541568, + 19541664, + 24747750, 15311760, 15725328, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051456, 15077680, 15474448, 9474464, 15195456, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075296, 15048048 @@ -192167,17 +192167,17 @@ }, { "type_name": "CNetMessagePB<157, CUserMessageRequestUtilAction, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31413712, + "vtable_address": 31413648, "methods": [ - 19788672, - 19513808, - 19789232, - 19513824, - 19562752, - 19513840, - 19542000, - 19513856, - 19513872 + 19788544, + 19513680, + 19789104, + 19513696, + 19562624, + 19513712, + 19541872, + 19513728, + 19513744 ], "bases": [ { @@ -192199,14 +192199,14 @@ }, { "type_name": "CNetMessagePB<160, CUserMessageRequestInventory, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31414112, + "vtable_address": 31414048, "methods": [ - 19541216, - 19541280, - 19521456, - 19521472, - 19521488, - 19541408 + 19541088, + 19541152, + 19521328, + 19521344, + 19521360, + 19541280 ], "bases": [ { @@ -192260,23 +192260,23 @@ }, { "type_name": "CNetMessagePB<160, CUserMessageRequestInventory, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31414176, + "vtable_address": 31414112, "methods": [ - 19541248, - 19541344, - 24747814, + 19541120, + 19541216, + 24747750, 15312656, 15725392, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051632, 15077632, 15476944, 9474464, 15168992, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075488, 15048144 @@ -192333,17 +192333,17 @@ }, { "type_name": "CNetMessagePB<160, CUserMessageRequestInventory, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31414024, + "vtable_address": 31413960, "methods": [ - 19787424, - 19513728, - 19787984, - 19513744, - 19562912, - 19513760, - 19541552, - 19513776, - 19513792 + 19787296, + 19513600, + 19787856, + 19513616, + 19562784, + 19513632, + 19541424, + 19513648, + 19513664 ], "bases": [ { @@ -192365,14 +192365,14 @@ }, { "type_name": "CNetMessagePB<162, CUserMessageRequestDiagnostic, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31414424, + "vtable_address": 31414360, "methods": [ - 19540768, - 19540832, - 19521344, - 19521360, - 19521376, - 19540960 + 19540640, + 19540704, + 19521216, + 19521232, + 19521248, + 19540832 ], "bases": [ { @@ -192426,23 +192426,23 @@ }, { "type_name": "CNetMessagePB<162, CUserMessageRequestDiagnostic, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31414488, + "vtable_address": 31414424, "methods": [ - 19540800, - 19540896, - 24747814, + 19540672, + 19540768, + 24747750, 15313360, 15766832, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15098064, 15077600, 15515200, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15075616, 15048208 @@ -192499,17 +192499,17 @@ }, { "type_name": "CNetMessagePB<162, CUserMessageRequestDiagnostic, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31414336, + "vtable_address": 31414272, "methods": [ - 19786176, - 19513648, - 19786736, - 19513664, - 19563072, - 19513680, - 19541104, - 19513696, - 19513712 + 19786048, + 19513520, + 19786608, + 19513536, + 19562944, + 19513552, + 19540976, + 19513568, + 19513584 ], "bases": [ { @@ -192531,14 +192531,14 @@ }, { "type_name": "CNetMessagePB<165, CUserMessage_NotifyResponseFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31414736, + "vtable_address": 31414672, "methods": [ - 19540320, - 19540384, - 19521232, - 19521248, - 19521264, - 19540512 + 19540192, + 19540256, + 19521104, + 19521120, + 19521136, + 19540384 ], "bases": [ { @@ -192592,23 +192592,23 @@ }, { "type_name": "CNetMessagePB<165, CUserMessage_NotifyResponseFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31414800, + "vtable_address": 31414736, "methods": [ - 19540352, - 19540448, - 24747814, + 19540224, + 19540320, + 24747750, 15314336, 15754128, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15120224, 15077552, 15516416, 9474464, 15259392, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075776, 15048288 @@ -192665,17 +192665,17 @@ }, { "type_name": "CNetMessagePB<165, CUserMessage_NotifyResponseFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31414648, + "vtable_address": 31414584, "methods": [ - 19784928, - 19513568, - 19785488, - 19513584, - 19563232, - 19513600, - 19540656, - 19513616, - 19513632 + 19784800, + 19513440, + 19785360, + 19513456, + 19563104, + 19513472, + 19540528, + 19513488, + 19513504 ], "bases": [ { @@ -192697,14 +192697,14 @@ }, { "type_name": "CNetMessagePB<166, CUserMessage_PlayResponseConditional, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31415048, + "vtable_address": 31414984, "methods": [ - 19539872, - 19539936, - 19521120, - 19521136, - 19521152, - 19540064 + 19539744, + 19539808, + 19520992, + 19521008, + 19521024, + 19539936 ], "bases": [ { @@ -192758,23 +192758,23 @@ }, { "type_name": "CNetMessagePB<166, CUserMessage_PlayResponseConditional, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 31415112, + "vtable_address": 31415048, "methods": [ - 19539904, - 19540000, - 24747814, + 19539776, + 19539872, + 24747750, 15314528, 15751776, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15102752, 15077536, 15482000, 9474464, 15197664, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075808, 15048304 @@ -192831,17 +192831,17 @@ }, { "type_name": "CNetMessagePB<166, CUserMessage_PlayResponseConditional, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31414960, + "vtable_address": 31414896, "methods": [ - 19783680, - 19513488, - 19784240, - 19513504, - 19563392, - 19513520, - 19540208, - 19513536, - 19513552 + 19783552, + 19513360, + 19784112, + 19513376, + 19563264, + 19513392, + 19540080, + 19513408, + 19513424 ], "bases": [ { @@ -192863,7 +192863,7 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>", - "vtable_address": 30526168, + "vtable_address": 30526104, "methods": [ 12866432, 12866496, @@ -192924,23 +192924,23 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>", - "vtable_address": 30526232, + "vtable_address": 30526168, "methods": [ 12866464, 12866560, - 24747814, + 24747750, 12866416, 15737056, 15042752, - 24749974, - 24746806, + 24749910, + 24746742, 15122240, 12864992, 15378848, 9474464, 15204160, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070176, 15042736 @@ -192997,7 +192997,7 @@ }, { "type_name": "CNetMessagePB<19, CBidirMsg_PredictionEvent, (SignonGroup_t)0, (NetChannelBufType_t)0, false>::CProtobufBinding", - "vtable_address": 30526080, + "vtable_address": 30526016, "methods": [ 13361392, 12862960, @@ -193029,7 +193029,7 @@ }, { "type_name": "CNetMessagePB<201, CMsgPlaceDecalEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30514656, + "vtable_address": 30514592, "methods": [ 12437856, 12437920, @@ -193090,23 +193090,23 @@ }, { "type_name": "CNetMessagePB<201, CMsgPlaceDecalEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30514720, + "vtable_address": 30514656, "methods": [ 12437888, 12437984, - 24747814, + 24747750, 12437840, 15031968, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15035216, 12437152, 14595248, 9474464, 14287840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061232, 14029056 @@ -193163,7 +193163,7 @@ }, { "type_name": "CNetMessagePB<201, CMsgPlaceDecalEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30514568, + "vtable_address": 30514504, "methods": [ 12844880, 12435248, @@ -193195,7 +193195,7 @@ }, { "type_name": "CNetMessagePB<202, CMsgClearWorldDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30515192, + "vtable_address": 30515128, "methods": [ 12438992, 12439056, @@ -193256,23 +193256,23 @@ }, { "type_name": "CNetMessagePB<202, CMsgClearWorldDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30515256, + "vtable_address": 30515192, "methods": [ 12439024, 12439120, - 24747814, + 24747750, 12438976, 14895264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047136, 12437184, 14596480, 9474464, 14120160, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061264, 14029072 @@ -193329,7 +193329,7 @@ }, { "type_name": "CNetMessagePB<202, CMsgClearWorldDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30515104, + "vtable_address": 30515040, "methods": [ 12848176, 12435056, @@ -193361,7 +193361,7 @@ }, { "type_name": "CNetMessagePB<203, CMsgClearEntityDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30515504, + "vtable_address": 30515440, "methods": [ 12439472, 12439536, @@ -193422,23 +193422,23 @@ }, { "type_name": "CNetMessagePB<203, CMsgClearEntityDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30515568, + "vtable_address": 30515504, "methods": [ 12439504, 12439600, - 24747814, + 24747750, 12439456, 14895312, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047184, 12437200, 14596960, 9474464, 14120384, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061296, 14029088 @@ -193495,7 +193495,7 @@ }, { "type_name": "CNetMessagePB<203, CMsgClearEntityDecalsEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30515416, + "vtable_address": 30515352, "methods": [ 12849808, 12434864, @@ -193527,7 +193527,7 @@ }, { "type_name": "CNetMessagePB<204, CMsgClearDecalsForEntityEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30515816, + "vtable_address": 30515752, "methods": [ 12438512, 12438576, @@ -193588,23 +193588,23 @@ }, { "type_name": "CNetMessagePB<204, CMsgClearDecalsForEntityEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>", - "vtable_address": 30515880, + "vtable_address": 30515816, "methods": [ 12438544, 12438640, - 24747814, + 24747750, 12438496, 14895360, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047232, 12437168, 14597440, 9474464, 14139424, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061328, 14029104 @@ -193661,7 +193661,7 @@ }, { "type_name": "CNetMessagePB<204, CMsgClearDecalsForEntityEvent, (SignonGroup_t)12, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30515728, + "vtable_address": 30515664, "methods": [ 12846544, 12434672, @@ -193693,14 +193693,14 @@ }, { "type_name": "CNetMessagePB<205, CMsgSource1LegacyGameEventList, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 31371112, + "vtable_address": 31371048, "methods": [ - 18826336, - 18826400, - 18818656, - 18818672, - 18818688, - 18826528 + 18826208, + 18826272, + 18818528, + 18818544, + 18818560, + 18826400 ], "bases": [ { @@ -193754,23 +193754,23 @@ }, { "type_name": "CNetMessagePB<205, CMsgSource1LegacyGameEventList, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 31371176, + "vtable_address": 31371112, "methods": [ - 18826368, - 18826464, - 24747814, + 18826240, + 18826336, + 24747750, 14391744, 14921696, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14099040, 14063648, 14611584, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14061424, 14029152 @@ -193827,17 +193827,17 @@ }, { "type_name": "CNetMessagePB<205, CMsgSource1LegacyGameEventList, (SignonGroup_t)10, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31371024, + "vtable_address": 31370960, "methods": [ - 19290336, - 18817824, - 19029600, - 18817840, - 18837392, - 18817856, - 18826672, - 18817872, - 18817888 + 19290208, + 18817696, + 19029472, + 18817712, + 18837264, + 18817728, + 18826544, + 18817744, + 18817760 ], "bases": [ { @@ -193859,14 +193859,14 @@ }, { "type_name": "CNetMessagePB<206, CMsgSource1LegacyListenEvents, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 31371424, + "vtable_address": 31371360, "methods": [ - 18826784, - 18826848, - 18818544, - 18818560, - 18818576, - 18826976 + 18826656, + 18826720, + 18818416, + 18818432, + 18818448, + 18826848 ], "bases": [ { @@ -193920,23 +193920,23 @@ }, { "type_name": "CNetMessagePB<206, CMsgSource1LegacyListenEvents, (SignonGroup_t)10, (NetChannelBufType_t)1, true>", - "vtable_address": 31371488, + "vtable_address": 31371424, "methods": [ - 18826816, - 18826912, - 24747814, + 18826688, + 18826784, + 24747750, 14391888, 14895408, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087936, 14063632, 14598592, 9474464, 14149248, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061456, 14029168 @@ -193993,17 +193993,17 @@ }, { "type_name": "CNetMessagePB<206, CMsgSource1LegacyListenEvents, (SignonGroup_t)10, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31371336, - "methods": [ - 19291616, - 18817744, - 19029904, - 18817760, - 18837552, - 18817776, - 18827120, - 18817792, - 18817808 + "vtable_address": 31371272, + "methods": [ + 19291488, + 18817616, + 19029776, + 18817632, + 18837424, + 18817648, + 18826992, + 18817664, + 18817680 ], "bases": [ { @@ -194025,14 +194025,14 @@ }, { "type_name": "CNetMessagePB<207, CMsgSource1LegacyGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 31371736, + "vtable_address": 31371672, "methods": [ - 18823936, - 18824000, - 18817552, - 18817568, - 18817584, - 18824320 + 18823808, + 18823872, + 18817424, + 18817440, + 18817456, + 18824192 ], "bases": [ { @@ -194086,23 +194086,23 @@ }, { "type_name": "CNetMessagePB<207, CMsgSource1LegacyGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>", - "vtable_address": 31371800, + "vtable_address": 31371736, "methods": [ - 18823968, - 18824064, - 24747814, + 18823840, + 18823936, + 24747750, 14392240, 14929040, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14125520, 14063616, 14612048, 9474464, 14219616, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061520, 14029200 @@ -194159,17 +194159,17 @@ }, { "type_name": "CNetMessagePB<207, CMsgSource1LegacyGameEvent, (SignonGroup_t)5, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31371648, + "vtable_address": 31371584, "methods": [ - 19289040, - 18817664, - 19029296, - 18817680, - 18837712, - 18817696, - 18824464, - 18817712, - 18817728 + 19288912, + 18817536, + 19029168, + 18817552, + 18837584, + 18817568, + 18824336, + 18817584, + 18817600 ], "bases": [ { @@ -194191,7 +194191,7 @@ }, { "type_name": "CNetMessagePB<208, CMsgSosStartSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30526768, + "vtable_address": 30526704, "methods": [ 12867712, 12867776, @@ -194252,23 +194252,23 @@ }, { "type_name": "CNetMessagePB<208, CMsgSosStartSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30526832, + "vtable_address": 30526768, "methods": [ 12867744, 12867840, - 24747814, + 24747750, 12867696, 14917712, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084048, 12865008, 14600080, 9474464, 14261280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061552, 14029216 @@ -194325,7 +194325,7 @@ }, { "type_name": "CNetMessagePB<208, CMsgSosStartSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30526680, + "vtable_address": 30526616, "methods": [ 13364624, 12862768, @@ -194357,7 +194357,7 @@ }, { "type_name": "CNetMessagePB<209, CMsgSosStopSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30527304, + "vtable_address": 30527240, "methods": [ 12868368, 12868432, @@ -194418,23 +194418,23 @@ }, { "type_name": "CNetMessagePB<209, CMsgSosStopSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30527368, + "vtable_address": 30527304, "methods": [ 12868400, 12868496, - 24747814, + 24747750, 12868352, 14895456, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036528, 12865024, 14600720, 9474464, 14125312, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061584, 14029232 @@ -194491,7 +194491,7 @@ }, { "type_name": "CNetMessagePB<209, CMsgSosStopSoundEvent, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30527216, + "vtable_address": 30527152, "methods": [ 13367872, 12862576, @@ -194523,7 +194523,7 @@ }, { "type_name": "CNetMessagePB<210, CMsgSosSetSoundEventParams, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30528376, + "vtable_address": 30528312, "methods": [ 12869712, 12869776, @@ -194584,23 +194584,23 @@ }, { "type_name": "CNetMessagePB<210, CMsgSosSetSoundEventParams, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30528440, + "vtable_address": 30528376, "methods": [ 12869744, 12869840, - 24747814, + 24747750, 12869696, 14918016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084224, 12865056, 14601696, 9474464, 14164160, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061648, 14029264 @@ -194657,7 +194657,7 @@ }, { "type_name": "CNetMessagePB<210, CMsgSosSetSoundEventParams, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30528288, + "vtable_address": 30528224, "methods": [ 13374112, 12862192, @@ -194689,7 +194689,7 @@ }, { "type_name": "CNetMessagePB<211, CMsgSosSetLibraryStackFields, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30528912, + "vtable_address": 30528848, "methods": [ 12870368, 12870432, @@ -194750,23 +194750,23 @@ }, { "type_name": "CNetMessagePB<211, CMsgSosSetLibraryStackFields, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30528976, + "vtable_address": 30528912, "methods": [ 12870400, 12870496, - 24747814, + 24747750, 12870352, 14918288, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084320, 12865072, 14602272, 9474464, 14151840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061680, 14029280 @@ -194823,7 +194823,7 @@ }, { "type_name": "CNetMessagePB<211, CMsgSosSetLibraryStackFields, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30528824, + "vtable_address": 30528760, "methods": [ 13377344, 12862000, @@ -194855,7 +194855,7 @@ }, { "type_name": "CNetMessagePB<212, CMsgSosStopSoundEventHash, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30527840, + "vtable_address": 30527776, "methods": [ 12869040, 12869104, @@ -194916,23 +194916,23 @@ }, { "type_name": "CNetMessagePB<212, CMsgSosStopSoundEventHash, (SignonGroup_t)4, (NetChannelBufType_t)1, true>", - "vtable_address": 30527904, + "vtable_address": 30527840, "methods": [ 12869072, 12869168, - 24747814, + 24747750, 12869024, 14895504, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036576, 12865040, 14601200, 9474464, 14127072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061616, 14029248 @@ -194989,7 +194989,7 @@ }, { "type_name": "CNetMessagePB<212, CMsgSosStopSoundEventHash, (SignonGroup_t)4, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30527752, + "vtable_address": 30527688, "methods": [ 13370992, 12862384, @@ -195021,7 +195021,7 @@ }, { "type_name": "CNetMessagePB<280, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 30509288, + "vtable_address": 30509224, "methods": [ 12458288, 12458944, @@ -195093,23 +195093,23 @@ }, { "type_name": "CNetMessagePB<280, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 30509352, + "vtable_address": 30509288, "methods": [ 12458368, 12459040, - 24747814, + 24747750, 12437520, 14900448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070256, 12437104, 14432416, 9474464, 14179360, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050768, 14018304 @@ -195177,7 +195177,7 @@ }, { "type_name": "CNetMessagePB<280, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30509200, + "vtable_address": 30509136, "methods": [ 12837168, 12436240, @@ -195209,7 +195209,7 @@ }, { "type_name": "CNetMessagePB<281, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 30509760, + "vtable_address": 30509696, "methods": [ 12458448, 12459152, @@ -195281,23 +195281,23 @@ }, { "type_name": "CNetMessagePB<281, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 30509824, + "vtable_address": 30509760, "methods": [ 12458528, 12459248, - 24747814, + 24747750, 12437616, 14900576, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080992, 12437120, 14432880, 9474464, 14217792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050800, 14018320 @@ -195365,7 +195365,7 @@ }, { "type_name": "CNetMessagePB<281, CBaseCmdKeyValues, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30509672, + "vtable_address": 30509608, "methods": [ 12836176, 12436160, @@ -195397,7 +195397,7 @@ }, { "type_name": "CNetMessagePB<282, CClientMsg_ClientUIEvent, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 30137960, + "vtable_address": 30137896, "methods": [ 9638640, 9638704, @@ -195458,23 +195458,23 @@ }, { "type_name": "CNetMessagePB<282, CClientMsg_ClientUIEvent, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 30138024, + "vtable_address": 30137960, "methods": [ 9638672, 9638768, - 24747814, + 24747750, 9638624, 14900704, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14071616, 9638592, 14433424, 9474464, 14239648, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050832, 14018336 @@ -195531,7 +195531,7 @@ }, { "type_name": "CNetMessagePB<282, CClientMsg_ClientUIEvent, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30137872, + "vtable_address": 30137808, "methods": [ 9695696, 9638336, @@ -195563,14 +195563,14 @@ }, { "type_name": "CNetMessagePB<286, CClientMsg_ListenForResponseFound, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 31306376, + "vtable_address": 31306312, "methods": [ - 18008272, - 18008336, - 18007776, - 18007792, - 18007808, - 18008464 + 18008144, + 18008208, + 18007648, + 18007664, + 18007680, + 18008336 ], "bases": [ { @@ -195624,23 +195624,23 @@ }, { "type_name": "CNetMessagePB<286, CClientMsg_ListenForResponseFound, (SignonGroup_t)14, (NetChannelBufType_t)1, true>", - "vtable_address": 31306440, + "vtable_address": 31306376, "methods": [ - 18008304, - 18008400, - 24747814, + 18008176, + 18008272, + 24747750, 14336624, 14885856, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030832, 14066272, 14435552, 9474464, 14121504, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050960, 14018400 @@ -195697,17 +195697,17 @@ }, { "type_name": "CNetMessagePB<286, CClientMsg_ListenForResponseFound, (SignonGroup_t)14, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31306288, - "methods": [ - 18374000, - 18007696, - 18147856, - 18007712, - 18018384, - 18007728, - 18008608, - 18007744, - 18007760 + "vtable_address": 31306224, + "methods": [ + 18373872, + 18007568, + 18147728, + 18007584, + 18018256, + 18007600, + 18008480, + 18007616, + 18007632 ], "bases": [ { @@ -195729,7 +195729,7 @@ }, { "type_name": "CNetMessagePB<301, CCSUsrMsg_VGUIMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30124872, + "vtable_address": 30124808, "methods": [ 9486400, 9486464, @@ -195790,23 +195790,23 @@ }, { "type_name": "CNetMessagePB<301, CCSUsrMsg_VGUIMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30124936, + "vtable_address": 30124872, "methods": [ 9486432, 9486528, - 24747814, + 24747750, 9486384, 14930528, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14126016, 9483920, 14653696, 9474464, 14146688, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057008, 14025904 @@ -195863,7 +195863,7 @@ }, { "type_name": "CNetMessagePB<301, CCSUsrMsg_VGUIMenu, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30124784, + "vtable_address": 30124720, "methods": [ 9542432, 9475920, @@ -195895,7 +195895,7 @@ }, { "type_name": "CNetMessagePB<317, CCSUsrMsg_SendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30114264, + "vtable_address": 30114200, "methods": [ 9502336, 9502400, @@ -195956,23 +195956,23 @@ }, { "type_name": "CNetMessagePB<317, CCSUsrMsg_SendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30114328, + "vtable_address": 30114264, "methods": [ 9502368, 9502464, - 24747814, + 24747750, 9502320, 14909072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 9484448, 14538128, 9474464, 14115792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057328, 14026064 @@ -196029,7 +196029,7 @@ }, { "type_name": "CNetMessagePB<317, CCSUsrMsg_SendAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30114176, + "vtable_address": 30114112, "methods": [ 9595808, 9478640, @@ -196061,7 +196061,7 @@ }, { "type_name": "CNetMessagePB<318, CCSUsrMsg_RawAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30118944, + "vtable_address": 30118880, "methods": [ 9495344, 9495408, @@ -196122,23 +196122,23 @@ }, { "type_name": "CNetMessagePB<318, CCSUsrMsg_RawAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30119008, + "vtable_address": 30118944, "methods": [ 9495376, 9495472, - 24747814, + 24747750, 9495328, 14909328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076512, 9484208, 14538528, 9474464, 14192832, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057360, 14026080 @@ -196195,7 +196195,7 @@ }, { "type_name": "CNetMessagePB<318, CCSUsrMsg_RawAudio, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30118856, + "vtable_address": 30118792, "methods": [ 9572256, 9477440, @@ -196227,7 +196227,7 @@ }, { "type_name": "CNetMessagePB<321, CCSUsrMsg_Damage, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30113328, + "vtable_address": 30113264, "methods": [ 9503760, 9503824, @@ -196288,23 +196288,23 @@ }, { "type_name": "CNetMessagePB<321, CCSUsrMsg_Damage, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30113392, + "vtable_address": 30113328, "methods": [ 9503792, 9503888, - 24747814, + 24747750, 9503744, 15029488, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15033136, 9484496, 14539696, 9474464, 14155872, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057456, 14026128 @@ -196361,7 +196361,7 @@ }, { "type_name": "CNetMessagePB<321, CCSUsrMsg_Damage, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30113240, + "vtable_address": 30113176, "methods": [ 9600512, 9478880, @@ -196393,7 +196393,7 @@ }, { "type_name": "CNetMessagePB<322, CCSUsrMsg_RadioText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30113952, + "vtable_address": 30113888, "methods": [ 9502816, 9502880, @@ -196454,23 +196454,23 @@ }, { "type_name": "CNetMessagePB<322, CCSUsrMsg_RadioText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30114016, + "vtable_address": 30113952, "methods": [ 9502848, 9502944, - 24747814, + 24747750, 9502800, 14909632, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089344, 9484464, 14540272, 9474464, 14215936, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057488, 14026144 @@ -196527,7 +196527,7 @@ }, { "type_name": "CNetMessagePB<322, CCSUsrMsg_RadioText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30113864, + "vtable_address": 30113800, "methods": [ 9597360, 9478720, @@ -196559,7 +196559,7 @@ }, { "type_name": "CNetMessagePB<323, CCSUsrMsg_HintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30124248, + "vtable_address": 30124184, "methods": [ 9487328, 9487392, @@ -196620,23 +196620,23 @@ }, { "type_name": "CNetMessagePB<323, CCSUsrMsg_HintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30124312, + "vtable_address": 30124248, "methods": [ 9487360, 9487456, - 24747814, + 24747750, 9487312, 14909920, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069872, 9483952, 14540928, 9474464, 14115968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057520, 14026160 @@ -196693,7 +196693,7 @@ }, { "type_name": "CNetMessagePB<323, CCSUsrMsg_HintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30124160, + "vtable_address": 30124096, "methods": [ 9545600, 9476080, @@ -196725,7 +196725,7 @@ }, { "type_name": "CNetMessagePB<324, CCSUsrMsg_KeyHintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30124560, + "vtable_address": 30124496, "methods": [ 9486864, 9486928, @@ -196786,23 +196786,23 @@ }, { "type_name": "CNetMessagePB<324, CCSUsrMsg_KeyHintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30124624, + "vtable_address": 30124560, "methods": [ 9486896, 9486992, - 24747814, + 24747750, 9486848, 14892064, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 9483936, 14541328, 9474464, 14090208, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14057552, 14026176 @@ -196859,7 +196859,7 @@ }, { "type_name": "CNetMessagePB<324, CCSUsrMsg_KeyHintText, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30124472, + "vtable_address": 30124408, "methods": [ 9544032, 9476000, @@ -196891,7 +196891,7 @@ }, { "type_name": "CNetMessagePB<325, CCSUsrMsg_ProcessSpottedEntityUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30113016, + "vtable_address": 30112952, "methods": [ 9504224, 9504288, @@ -196952,23 +196952,23 @@ }, { "type_name": "CNetMessagePB<325, CCSUsrMsg_ProcessSpottedEntityUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30113080, + "vtable_address": 30113016, "methods": [ 9504256, 9504352, - 24747814, + 24747750, 9504208, 14922912, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14113504, 9484512, 14655008, 9474464, 14095072, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057616, 14026208 @@ -197025,7 +197025,7 @@ }, { "type_name": "CNetMessagePB<325, CCSUsrMsg_ProcessSpottedEntityUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30112928, + "vtable_address": 30112864, "methods": [ 9602080, 9478960, @@ -197057,7 +197057,7 @@ }, { "type_name": "CNetMessagePB<327, CCSUsrMsg_AdjustMoney, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30113640, + "vtable_address": 30113576, "methods": [ 9503280, 9503344, @@ -197118,23 +197118,23 @@ }, { "type_name": "CNetMessagePB<327, CCSUsrMsg_AdjustMoney, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30113704, + "vtable_address": 30113640, "methods": [ 9503312, 9503408, - 24747814, + 24747750, 9503264, 14892400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033232, 9484480, 14545616, 9474464, 14123296, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057840, 14026320 @@ -197191,7 +197191,7 @@ }, { "type_name": "CNetMessagePB<327, CCSUsrMsg_AdjustMoney, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30113552, + "vtable_address": 30113488, "methods": [ 9598960, 9478800, @@ -197223,7 +197223,7 @@ }, { "type_name": "CNetMessagePB<330, CCSUsrMsg_KillCam, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30114888, + "vtable_address": 30114824, "methods": [ 9501408, 9501472, @@ -197284,23 +197284,23 @@ }, { "type_name": "CNetMessagePB<330, CCSUsrMsg_KillCam, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30114952, + "vtable_address": 30114888, "methods": [ 9501440, 9501536, - 24747814, + 24747750, 9501392, 14892512, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033280, 9484416, 14546544, 9474464, 14175264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057904, 14026352 @@ -197357,7 +197357,7 @@ }, { "type_name": "CNetMessagePB<330, CCSUsrMsg_KillCam, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30114800, + "vtable_address": 30114736, "methods": [ 9592672, 9478480, @@ -197389,7 +197389,7 @@ }, { "type_name": "CNetMessagePB<334, CCSUsrMsg_MatchEndConditions, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30122064, + "vtable_address": 30122000, "methods": [ 9490624, 9490688, @@ -197450,23 +197450,23 @@ }, { "type_name": "CNetMessagePB<334, CCSUsrMsg_MatchEndConditions, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30122128, + "vtable_address": 30122064, "methods": [ 9490656, 9490752, - 24747814, + 24747750, 9490608, 14892752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033600, 9484064, 14548640, 9474464, 14187808, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058032, 14026416 @@ -197523,7 +197523,7 @@ }, { "type_name": "CNetMessagePB<334, CCSUsrMsg_MatchEndConditions, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30121976, + "vtable_address": 30121912, "methods": [ 9556592, 9476640, @@ -197555,7 +197555,7 @@ }, { "type_name": "CNetMessagePB<335, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30120192, + "vtable_address": 30120128, "methods": [ 9493184, 9493248, @@ -197616,23 +197616,23 @@ }, { "type_name": "CNetMessagePB<335, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30120256, + "vtable_address": 30120192, "methods": [ 9493216, 9493312, - 24747814, + 24747750, 9492976, 14894400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036112, 9484144, 14569696, 9474464, 14124864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059536, 14027168 @@ -197689,7 +197689,7 @@ }, { "type_name": "CNetMessagePB<335, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30120104, + "vtable_address": 30120040, "methods": [ 9565200, 9477120, @@ -197721,7 +197721,7 @@ }, { "type_name": "CNetMessagePB<336, CCSUsrMsg_PlayerStatsUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30115824, + "vtable_address": 30115760, "methods": [ 9500016, 9500080, @@ -197782,23 +197782,23 @@ }, { "type_name": "CNetMessagePB<336, CCSUsrMsg_PlayerStatsUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30115888, + "vtable_address": 30115824, "methods": [ 9500048, 9500144, - 24747814, + 24747750, 9500000, 14922016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14097088, 9484368, 14657104, 9474464, 14193440, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058096, 14026448 @@ -197855,7 +197855,7 @@ }, { "type_name": "CNetMessagePB<336, CCSUsrMsg_PlayerStatsUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30115736, + "vtable_address": 30115672, "methods": [ 9587936, 9478240, @@ -197887,7 +197887,7 @@ }, { "type_name": "CNetMessagePB<345, CCSUsrMsg_CallVoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30117384, + "vtable_address": 30117320, "methods": [ 9497680, 9497744, @@ -197948,23 +197948,23 @@ }, { "type_name": "CNetMessagePB<345, CCSUsrMsg_CallVoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30117448, + "vtable_address": 30117384, "methods": [ 9497712, 9497808, - 24747814, + 24747750, 9497664, 14893072, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034000, 9484288, 14552320, 9474464, 14145280, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058288, 14026544 @@ -198021,7 +198021,7 @@ }, { "type_name": "CNetMessagePB<345, CCSUsrMsg_CallVoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30117296, + "vtable_address": 30117232, "methods": [ 9580112, 9477840, @@ -198053,7 +198053,7 @@ }, { "type_name": "CNetMessagePB<346, CCSUsrMsg_VoteStart, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30117696, + "vtable_address": 30117632, "methods": [ 9497216, 9497280, @@ -198114,23 +198114,23 @@ }, { "type_name": "CNetMessagePB<346, CCSUsrMsg_VoteStart, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30117760, + "vtable_address": 30117696, "methods": [ 9497248, 9497344, - 24747814, + 24747750, 9497200, 14910480, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076784, 9484272, 14552896, 9474464, 14302304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058320, 14026560 @@ -198187,7 +198187,7 @@ }, { "type_name": "CNetMessagePB<346, CCSUsrMsg_VoteStart, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30117608, + "vtable_address": 30117544, "methods": [ 9578512, 9477760, @@ -198219,7 +198219,7 @@ }, { "type_name": "CNetMessagePB<347, CCSUsrMsg_VotePass, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30118008, + "vtable_address": 30117944, "methods": [ 9496752, 9496816, @@ -198280,23 +198280,23 @@ }, { "type_name": "CNetMessagePB<347, CCSUsrMsg_VotePass, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30118072, + "vtable_address": 30118008, "methods": [ 9496784, 9496880, - 24747814, + 24747750, 9496736, 14910656, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077056, 9484256, 14553632, 9474464, 14211968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058352, 14026576 @@ -198353,7 +198353,7 @@ }, { "type_name": "CNetMessagePB<347, CCSUsrMsg_VotePass, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30117920, + "vtable_address": 30117856, "methods": [ 9576944, 9477680, @@ -198385,7 +198385,7 @@ }, { "type_name": "CNetMessagePB<348, CCSUsrMsg_VoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30118320, + "vtable_address": 30118256, "methods": [ 9496272, 9496336, @@ -198446,23 +198446,23 @@ }, { "type_name": "CNetMessagePB<348, CCSUsrMsg_VoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30118384, + "vtable_address": 30118320, "methods": [ 9496304, 9496400, - 24747814, + 24747750, 9496256, 14893136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034080, 9484240, 14554240, 9474464, 14145632, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058384, 14026592 @@ -198519,7 +198519,7 @@ }, { "type_name": "CNetMessagePB<348, CCSUsrMsg_VoteFailed, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30118232, + "vtable_address": 30118168, "methods": [ 9575392, 9477600, @@ -198551,7 +198551,7 @@ }, { "type_name": "CNetMessagePB<349, CCSUsrMsg_VoteSetup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30118632, + "vtable_address": 30118568, "methods": [ 9495808, 9495872, @@ -198612,23 +198612,23 @@ }, { "type_name": "CNetMessagePB<349, CCSUsrMsg_VoteSetup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30118696, + "vtable_address": 30118632, "methods": [ 9495840, 9495936, - 24747814, + 24747750, 9495792, 14893200, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14089600, 9484224, 14554816, 9474464, 14090208, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14058416, 14026608 @@ -198685,7 +198685,7 @@ }, { "type_name": "CNetMessagePB<349, CCSUsrMsg_VoteSetup, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30118544, + "vtable_address": 30118480, "methods": [ 9573824, 9477520, @@ -198717,7 +198717,7 @@ }, { "type_name": "CNetMessagePB<350, CCSUsrMsg_ServerRankRevealAll, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30116136, + "vtable_address": 30116072, "methods": [ 9499552, 9499616, @@ -198778,23 +198778,23 @@ }, { "type_name": "CNetMessagePB<350, CCSUsrMsg_ServerRankRevealAll, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30116200, + "vtable_address": 30116136, "methods": [ 9499584, 9499680, - 24747814, + 24747750, 9499536, 14942976, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14228896, 9484352, 14570656, 9474464, 14128416, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059600, 14027200 @@ -198851,7 +198851,7 @@ }, { "type_name": "CNetMessagePB<350, CCSUsrMsg_ServerRankRevealAll, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30116048, + "vtable_address": 30115984, "methods": [ 9586368, 9478160, @@ -198883,7 +198883,7 @@ }, { "type_name": "CNetMessagePB<351, CCSUsrMsg_SendLastKillerDamageToClient, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30114576, + "vtable_address": 30114512, "methods": [ 9501872, 9501936, @@ -198944,23 +198944,23 @@ }, { "type_name": "CNetMessagePB<351, CCSUsrMsg_SendLastKillerDamageToClient, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30114640, + "vtable_address": 30114576, "methods": [ 9501904, 9502000, - 24747814, + 24747750, 9501856, 14893264, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14034160, 9484432, 14555216, 9474464, 14250016, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058448, 14026624 @@ -199017,7 +199017,7 @@ }, { "type_name": "CNetMessagePB<351, CCSUsrMsg_SendLastKillerDamageToClient, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30114488, + "vtable_address": 30114424, "methods": [ 9594240, 9478560, @@ -199049,7 +199049,7 @@ }, { "type_name": "CNetMessagePB<352, CCSUsrMsg_ServerRankUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30119568, + "vtable_address": 30119504, "methods": [ 9494416, 9494480, @@ -199110,23 +199110,23 @@ }, { "type_name": "CNetMessagePB<352, CCSUsrMsg_ServerRankUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30119632, + "vtable_address": 30119568, "methods": [ 9494448, 9494544, - 24747814, + 24747750, 9494400, 14919984, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14108624, 9484176, 14657808, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14058512, 14026656 @@ -199183,7 +199183,7 @@ }, { "type_name": "CNetMessagePB<352, CCSUsrMsg_ServerRankUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30119480, + "vtable_address": 30119416, "methods": [ 9569072, 9477280, @@ -199215,7 +199215,7 @@ }, { "type_name": "CNetMessagePB<361, CCSUsrMsg_SendPlayerItemDrops, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30116448, + "vtable_address": 30116384, "methods": [ 9499088, 9499152, @@ -199276,23 +199276,23 @@ }, { "type_name": "CNetMessagePB<361, CCSUsrMsg_SendPlayerItemDrops, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30116512, + "vtable_address": 30116448, "methods": [ 9499120, 9499216, - 24747814, + 24747750, 9499072, 14935536, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074720, 9484336, 14655680, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14057648, 14026224 @@ -199349,7 +199349,7 @@ }, { "type_name": "CNetMessagePB<361, CCSUsrMsg_SendPlayerItemDrops, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30116360, + "vtable_address": 30116296, "methods": [ 9584800, 9478080, @@ -199381,7 +199381,7 @@ }, { "type_name": "CNetMessagePB<362, CCSUsrMsg_RoundBackupFilenames, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30117072, + "vtable_address": 30117008, "methods": [ 9498160, 9498224, @@ -199442,23 +199442,23 @@ }, { "type_name": "CNetMessagePB<362, CCSUsrMsg_RoundBackupFilenames, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30117136, + "vtable_address": 30117072, "methods": [ 9498192, 9498288, - 24747814, + 24747750, 9498144, 14912112, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077360, 9484304, 14560160, 9474464, 14212544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058800, 14026800 @@ -199515,7 +199515,7 @@ }, { "type_name": "CNetMessagePB<362, CCSUsrMsg_RoundBackupFilenames, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30116984, + "vtable_address": 30116920, "methods": [ 9581664, 9477920, @@ -199547,7 +199547,7 @@ }, { "type_name": "CNetMessagePB<363, CCSUsrMsg_SendPlayerItemFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30116760, + "vtable_address": 30116696, "methods": [ 9498624, 9498688, @@ -199608,23 +199608,23 @@ }, { "type_name": "CNetMessagePB<363, CCSUsrMsg_SendPlayerItemFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30116824, + "vtable_address": 30116760, "methods": [ 9498656, 9498752, - 24747814, + 24747750, 9498608, 14935328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14074832, 9484320, 14542592, 9474464, 14128128, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057680, 14026240 @@ -199681,7 +199681,7 @@ }, { "type_name": "CNetMessagePB<363, CCSUsrMsg_SendPlayerItemFound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30116672, + "vtable_address": 30116608, "methods": [ 9583232, 9478000, @@ -199713,7 +199713,7 @@ }, { "type_name": "CNetMessagePB<364, CCSUsrMsg_ReportHit, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30115512, + "vtable_address": 30115448, "methods": [ 9500480, 9500544, @@ -199774,23 +199774,23 @@ }, { "type_name": "CNetMessagePB<364, CCSUsrMsg_ReportHit, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30115576, + "vtable_address": 30115512, "methods": [ 9500512, 9500608, - 24747814, + 24747750, 9500464, 14892448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029936, 9484384, 14546096, 9474464, 14093776, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057872, 14026336 @@ -199847,7 +199847,7 @@ }, { "type_name": "CNetMessagePB<364, CCSUsrMsg_ReportHit, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30115424, + "vtable_address": 30115360, "methods": [ 9589536, 9478320, @@ -199879,7 +199879,7 @@ }, { "type_name": "CNetMessagePB<365, CCSUsrMsg_XpUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30119880, + "vtable_address": 30119816, "methods": [ 9493936, 9494000, @@ -199940,23 +199940,23 @@ }, { "type_name": "CNetMessagePB<365, CCSUsrMsg_XpUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30119944, + "vtable_address": 30119880, "methods": [ 9493968, 9494064, - 24747814, + 24747750, 9493920, 14922832, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14106160, 9484160, 14556544, 9474464, 14068224, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058544, 14026672 @@ -200013,7 +200013,7 @@ }, { "type_name": "CNetMessagePB<365, CCSUsrMsg_XpUpdate, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30119792, + "vtable_address": 30119728, "methods": [ 9567520, 9477200, @@ -200045,7 +200045,7 @@ }, { "type_name": "CNetMessagePB<366, CCSUsrMsg_QuestProgress, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30115200, + "vtable_address": 30115136, "methods": [ 9500944, 9501008, @@ -200106,23 +200106,23 @@ }, { "type_name": "CNetMessagePB<366, CCSUsrMsg_QuestProgress, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30115264, + "vtable_address": 30115200, "methods": [ 9500976, 9501072, - 24747814, + 24747750, 9500928, 14892880, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14046576, 9484400, 14549760, 9474464, 14191200, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058128, 14026464 @@ -200179,7 +200179,7 @@ }, { "type_name": "CNetMessagePB<366, CCSUsrMsg_QuestProgress, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30115112, + "vtable_address": 30115048, "methods": [ 9591104, 9478400, @@ -200211,7 +200211,7 @@ }, { "type_name": "CNetMessagePB<367, CCSUsrMsg_ScoreLeaderboardData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30121752, + "vtable_address": 30121688, "methods": [ 9491088, 9491152, @@ -200272,23 +200272,23 @@ }, { "type_name": "CNetMessagePB<367, CCSUsrMsg_ScoreLeaderboardData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30121816, + "vtable_address": 30121752, "methods": [ 9491120, 9491216, - 24747814, + 24747750, 9491072, 14926208, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14103984, 9484080, 14550320, 9474464, 14068032, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058160, 14026480 @@ -200345,7 +200345,7 @@ }, { "type_name": "CNetMessagePB<367, CCSUsrMsg_ScoreLeaderboardData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30121664, + "vtable_address": 30121600, "methods": [ 9558160, 9476720, @@ -200377,7 +200377,7 @@ }, { "type_name": "CNetMessagePB<368, CCSUsrMsg_PlayerDecalDigitalSignature, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30120816, + "vtable_address": 30120752, "methods": [ 9492512, 9492576, @@ -200438,23 +200438,23 @@ }, { "type_name": "CNetMessagePB<368, CCSUsrMsg_PlayerDecalDigitalSignature, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30120880, + "vtable_address": 30120816, "methods": [ 9492544, 9492640, - 24747814, + 24747750, 9492496, 14905648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14082304, 9484128, 14550736, 9474464, 14068128, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058192, 14026496 @@ -200511,7 +200511,7 @@ }, { "type_name": "CNetMessagePB<368, CCSUsrMsg_PlayerDecalDigitalSignature, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30120728, + "vtable_address": 30120664, "methods": [ 9562864, 9476960, @@ -200543,7 +200543,7 @@ }, { "type_name": "CNetMessagePB<369, CCSUsrMsg_WeaponSound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30121440, + "vtable_address": 30121376, "methods": [ 9491568, 9491632, @@ -200604,23 +200604,23 @@ }, { "type_name": "CNetMessagePB<369, CCSUsrMsg_WeaponSound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30121504, + "vtable_address": 30121440, "methods": [ 9491600, 9491696, - 24747814, + 24747750, 9491552, 14910176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14076640, 9484096, 14543728, 9474464, 14217152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057744, 14026272 @@ -200677,7 +200677,7 @@ }, { "type_name": "CNetMessagePB<369, CCSUsrMsg_WeaponSound, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30121352, + "vtable_address": 30121288, "methods": [ 9559712, 9476800, @@ -200709,7 +200709,7 @@ }, { "type_name": "CNetMessagePB<370, CCSUsrMsg_UpdateScreenHealthBar, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30122688, + "vtable_address": 30122624, "methods": [ 9489696, 9489760, @@ -200770,23 +200770,23 @@ }, { "type_name": "CNetMessagePB<370, CCSUsrMsg_UpdateScreenHealthBar, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30122752, + "vtable_address": 30122688, "methods": [ 9489728, 9489824, - 24747814, + 24747750, 9489680, 14892272, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033056, 9484032, 14544384, 9474464, 14165024, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057776, 14026288 @@ -200843,7 +200843,7 @@ }, { "type_name": "CNetMessagePB<370, CCSUsrMsg_UpdateScreenHealthBar, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30122600, + "vtable_address": 30122536, "methods": [ 9553424, 9476480, @@ -200875,7 +200875,7 @@ }, { "type_name": "CNetMessagePB<371, CCSUsrMsg_EntityOutlineHighlight, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30121128, + "vtable_address": 30121064, "methods": [ 9492032, 9492096, @@ -200936,23 +200936,23 @@ }, { "type_name": "CNetMessagePB<371, CCSUsrMsg_EntityOutlineHighlight, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30121192, + "vtable_address": 30121128, "methods": [ 9492064, 9492160, - 24747814, + 24747750, 9492016, 14892352, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14033168, 9484112, 14545040, 9474464, 14132064, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14057808, 14026304 @@ -201009,7 +201009,7 @@ }, { "type_name": "CNetMessagePB<371, CCSUsrMsg_EntityOutlineHighlight, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30121040, + "vtable_address": 30120976, "methods": [ 9561312, 9476880, @@ -201041,7 +201041,7 @@ }, { "type_name": "CNetMessagePB<372, CCSUsrMsg_SSUI, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30123000, + "vtable_address": 30122936, "methods": [ 9489232, 9489296, @@ -201102,23 +201102,23 @@ }, { "type_name": "CNetMessagePB<372, CCSUsrMsg_SSUI, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30123064, + "vtable_address": 30123000, "methods": [ 9489264, 9489360, - 24747814, + 24747750, 9489216, 14893504, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030032, 9484016, 14560768, 9474464, 14094544, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058832, 14026816 @@ -201175,7 +201175,7 @@ }, { "type_name": "CNetMessagePB<372, CCSUsrMsg_SSUI, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30122912, + "vtable_address": 30122848, "methods": [ 9551856, 9476400, @@ -201207,7 +201207,7 @@ }, { "type_name": "CNetMessagePB<373, CCSUsrMsg_SurvivalStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30119256, + "vtable_address": 30119192, "methods": [ 9494880, 9494944, @@ -201268,23 +201268,23 @@ }, { "type_name": "CNetMessagePB<373, CCSUsrMsg_SurvivalStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30119320, + "vtable_address": 30119256, "methods": [ 9494912, 9495008, - 24747814, + 24747750, 9494864, 14926288, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047760, 9484192, 14658272, 9474464, 14196768, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14058960, 14026880 @@ -201341,7 +201341,7 @@ }, { "type_name": "CNetMessagePB<373, CCSUsrMsg_SurvivalStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30119168, + "vtable_address": 30119104, "methods": [ 9570640, 9477360, @@ -201373,7 +201373,7 @@ }, { "type_name": "CNetMessagePB<374, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30120504, + "vtable_address": 30120440, "methods": [ 9492992, 9493056, @@ -201434,23 +201434,23 @@ }, { "type_name": "CNetMessagePB<374, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30120568, + "vtable_address": 30120504, "methods": [ 9493024, 9493120, - 24747814, + 24747750, 9492976, 14894400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036112, 9484144, 14569696, 9474464, 14124864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059536, 14027168 @@ -201507,7 +201507,7 @@ }, { "type_name": "CNetMessagePB<374, CCSUsrMsg_DisconnectToLobby, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30120416, + "vtable_address": 30120352, "methods": [ 9564416, 9477040, @@ -201539,7 +201539,7 @@ }, { "type_name": "CNetMessagePB<375, CCSUsrMsg_EndOfMatchAllPlayersData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30122376, + "vtable_address": 30122312, "methods": [ 9490160, 9490224, @@ -201600,23 +201600,23 @@ }, { "type_name": "CNetMessagePB<375, CCSUsrMsg_EndOfMatchAllPlayersData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30122440, + "vtable_address": 30122376, "methods": [ 9490192, 9490288, - 24747814, + 24747750, 9490144, 14939952, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14077920, 9484048, 14659136, 9474464, 14132864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059056, 14026928 @@ -201673,7 +201673,7 @@ }, { "type_name": "CNetMessagePB<375, CCSUsrMsg_EndOfMatchAllPlayersData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30122288, + "vtable_address": 30122224, "methods": [ 9554992, 9476560, @@ -201705,7 +201705,7 @@ }, { "type_name": "CNetMessagePB<376, CCSUsrMsg_PostRoundDamageReport, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30125184, + "vtable_address": 30125120, "methods": [ 9485936, 9486000, @@ -201766,23 +201766,23 @@ }, { "type_name": "CNetMessagePB<376, CCSUsrMsg_PostRoundDamageReport, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30125248, + "vtable_address": 30125184, "methods": [ 9485968, 9486064, - 24747814, + 24747750, 9485920, 14894096, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035696, 9483904, 14566144, 9474464, 14263008, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059280, 14027040 @@ -201839,7 +201839,7 @@ }, { "type_name": "CNetMessagePB<376, CCSUsrMsg_PostRoundDamageReport, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30125096, + "vtable_address": 30125032, "methods": [ 9540832, 9475840, @@ -201871,7 +201871,7 @@ }, { "type_name": "CNetMessagePB<379, CCSUsrMsg_RoundEndReportData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30123312, + "vtable_address": 30123248, "methods": [ 9488768, 9488832, @@ -201932,23 +201932,23 @@ }, { "type_name": "CNetMessagePB<379, CCSUsrMsg_RoundEndReportData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30123376, + "vtable_address": 30123312, "methods": [ 9488800, 9488896, - 24747814, + 24747750, 9488752, 14940752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14113344, 9484000, 14660656, 9474464, 14069264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059248, 14027024 @@ -202005,7 +202005,7 @@ }, { "type_name": "CNetMessagePB<379, CCSUsrMsg_RoundEndReportData, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30123224, + "vtable_address": 30123160, "methods": [ 9550256, 9476320, @@ -202037,7 +202037,7 @@ }, { "type_name": "CNetMessagePB<380, CCSUsrMsg_CurrentRoundOdds, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30123624, + "vtable_address": 30123560, "methods": [ 9488288, 9488352, @@ -202098,23 +202098,23 @@ }, { "type_name": "CNetMessagePB<380, CCSUsrMsg_CurrentRoundOdds, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30123688, + "vtable_address": 30123624, "methods": [ 9488320, 9488416, - 24747814, + 24747750, 9488272, 14894160, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14035920, 9483984, 14566880, 9474464, 14123968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059312, 14027056 @@ -202171,7 +202171,7 @@ }, { "type_name": "CNetMessagePB<380, CCSUsrMsg_CurrentRoundOdds, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30123536, + "vtable_address": 30123472, "methods": [ 9548704, 9476240, @@ -202203,7 +202203,7 @@ }, { "type_name": "CNetMessagePB<381, CCSUsrMsg_DeepStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30123936, + "vtable_address": 30123872, "methods": [ 9487808, 9487872, @@ -202264,23 +202264,23 @@ }, { "type_name": "CNetMessagePB<381, CCSUsrMsg_DeepStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30124000, + "vtable_address": 30123936, "methods": [ 9487840, 9487936, - 24747814, + 24747750, 9487792, 14939136, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14086512, 9483968, 14567360, 9474464, 14068320, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059344, 14027072 @@ -202337,7 +202337,7 @@ }, { "type_name": "CNetMessagePB<381, CCSUsrMsg_DeepStats, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30123848, + "vtable_address": 30123784, "methods": [ 9547152, 9476160, @@ -202369,7 +202369,7 @@ }, { "type_name": "CNetMessagePB<383, CCSUsrMsg_ShootInfo, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30125496, + "vtable_address": 30125432, "methods": [ 9485472, 9485536, @@ -202430,23 +202430,23 @@ }, { "type_name": "CNetMessagePB<383, CCSUsrMsg_ShootInfo, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30125560, + "vtable_address": 30125496, "methods": [ 9485504, 9485600, - 24747814, + 24747750, 9485456, 15037744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15037936, 9483888, 14661232, 9474464, 14161952, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059376, 14027088 @@ -202503,7 +202503,7 @@ }, { "type_name": "CNetMessagePB<383, CCSUsrMsg_ShootInfo, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30125408, + "vtable_address": 30125344, "methods": [ 9539232, 9475760, @@ -202535,7 +202535,7 @@ }, { "type_name": "CNetMessagePB<385, CCSUsrMsg_CounterStrafe, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30165936, + "vtable_address": 30165872, "methods": [ 9841568, 9841632, @@ -202596,23 +202596,23 @@ }, { "type_name": "CNetMessagePB<385, CCSUsrMsg_CounterStrafe, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30166000, + "vtable_address": 30165936, "methods": [ 9841600, 9841696, - 24747814, + 24747750, 9841552, 14894496, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036208, 9840336, 14571872, 9474464, 14145984, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059664, 14027232 @@ -202669,7 +202669,7 @@ }, { "type_name": "CNetMessagePB<385, CCSUsrMsg_CounterStrafe, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30165848, + "vtable_address": 30165784, "methods": [ 9884416, 9838720, @@ -202701,7 +202701,7 @@ }, { "type_name": "CNetMessagePB<387, CCSUsrMsg_RecurringMissionSchema, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30125808, + "vtable_address": 30125744, "methods": [ 9485008, 9485072, @@ -202762,23 +202762,23 @@ }, { "type_name": "CNetMessagePB<387, CCSUsrMsg_RecurringMissionSchema, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30125872, + "vtable_address": 30125808, "methods": [ 9485040, 9485136, - 24747814, + 24747750, 9484992, 14912560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14083328, 9483872, 14573360, 9474464, 14163040, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059728, 14027264 @@ -202835,7 +202835,7 @@ }, { "type_name": "CNetMessagePB<387, CCSUsrMsg_RecurringMissionSchema, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30125720, + "vtable_address": 30125656, "methods": [ 9537664, 9475680, @@ -202867,7 +202867,7 @@ }, { "type_name": "CNetMessagePB<388, CCSUsrMsg_SendPlayerLoadout, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30126120, + "vtable_address": 30126056, "methods": [ 9484544, 9484608, @@ -202928,23 +202928,23 @@ }, { "type_name": "CNetMessagePB<388, CCSUsrMsg_SendPlayerLoadout, (SignonGroup_t)13, (NetChannelBufType_t)1, true>", - "vtable_address": 30126184, + "vtable_address": 30126120, "methods": [ 9484576, 9484672, - 24747814, + 24747750, 9484528, 14935648, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14102496, 9483856, 14662048, 9474464, 14133152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14059792, 14027296, @@ -203009,7 +203009,7 @@ }, { "type_name": "CNetMessagePB<388, CCSUsrMsg_SendPlayerLoadout, (SignonGroup_t)13, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 30126032, + "vtable_address": 30125968, "methods": [ 9536064, 9475600, @@ -203041,14 +203041,14 @@ }, { "type_name": "CNetMessagePB<400, CMsgTEEffectDispatch, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31917760, + "vtable_address": 31917696, "methods": [ + 23934768, 23934832, - 23934896, - 23934640, - 23934656, - 23934672, - 23935216 + 23934576, + 23934592, + 23934608, + 23935152 ], "bases": [ { @@ -203102,23 +203102,23 @@ }, { "type_name": "CNetMessagePB<400, CMsgTEEffectDispatch, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31917824, + "vtable_address": 31917760, "methods": [ - 23934864, - 23934960, - 24747814, + 23934800, + 23934896, + 24747750, 15293392, 15719968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065680, 15078544, 15411024, 9474464, 15081296, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071936, 15044640 @@ -203175,17 +203175,17 @@ }, { "type_name": "CNetMessagePB<400, CMsgTEEffectDispatch, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31917672, + "vtable_address": 31917608, "methods": [ - 23968784, - 23934752, - 23969456, - 23934768, - 23942720, - 23934784, - 23935360, - 23934800, - 23934816 + 23968720, + 23934688, + 23969392, + 23934704, + 23942656, + 23934720, + 23935296, + 23934736, + 23934752 ], "bases": [ { @@ -203207,14 +203207,14 @@ }, { "type_name": "CNetMessagePB<401, CMsgTEArmorRicochet, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31911400, + "vtable_address": 31911336, "methods": [ + 23885104, 23885168, - 23885232, - 23884976, - 23884992, - 23885008, - 23885552 + 23884912, + 23884928, + 23884944, + 23885488 ], "bases": [ { @@ -203268,23 +203268,23 @@ }, { "type_name": "CNetMessagePB<401, CMsgTEArmorRicochet, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31911464, + "vtable_address": 31911400, "methods": [ - 23885200, - 23885296, - 24747814, + 23885136, + 23885232, + 24747750, 15291888, 15718800, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057984, 15078656, 15403520, 9474464, 15080944, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071616, 15044480 @@ -203341,17 +203341,17 @@ }, { "type_name": "CNetMessagePB<401, CMsgTEArmorRicochet, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31911312, + "vtable_address": 31911248, "methods": [ - 23915648, - 23885088, - 23916672, - 23885104, - 23891120, - 23885120, - 23885696, - 23885136, - 23885152 + 23915584, + 23885024, + 23916608, + 23885040, + 23891056, + 23885056, + 23885632, + 23885072, + 23885088 ], "bases": [ { @@ -203373,14 +203373,14 @@ }, { "type_name": "CNetMessagePB<402, CMsgTEBeamEntPoint, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31911992, + "vtable_address": 31911928, "methods": [ + 23885744, 23885808, - 23885872, - 23884784, - 23884800, - 23884816, - 23886192 + 23884720, + 23884736, + 23884752, + 23886128 ], "bases": [ { @@ -203434,23 +203434,23 @@ }, { "type_name": "CNetMessagePB<402, CMsgTEBeamEntPoint, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31912056, + "vtable_address": 31911992, "methods": [ - 23885840, - 23885936, - 24747814, + 23885776, + 23885872, + 24747750, 15292176, 15719008, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15064896, 15078640, 15404880, 9474464, 15178656, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071680, 15044512 @@ -203507,17 +203507,17 @@ }, { "type_name": "CNetMessagePB<402, CMsgTEBeamEntPoint, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31911904, + "vtable_address": 31911840, "methods": [ - 23917680, - 23884896, - 23918720, - 23884912, - 23891280, - 23884928, - 23886336, - 23884944, - 23884960 + 23917616, + 23884832, + 23918656, + 23884848, + 23891216, + 23884864, + 23886272, + 23884880, + 23884896 ], "bases": [ { @@ -203539,14 +203539,14 @@ }, { "type_name": "CNetMessagePB<403, CMsgTEBeamEnts, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31912584, + "vtable_address": 31912520, "methods": [ + 23886384, 23886448, - 23886512, - 23884592, - 23884608, - 23884624, - 23886832 + 23884528, + 23884544, + 23884560, + 23886768 ], "bases": [ { @@ -203600,23 +203600,23 @@ }, { "type_name": "CNetMessagePB<403, CMsgTEBeamEnts, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31912648, + "vtable_address": 31912584, "methods": [ - 23886480, - 23886576, - 24747814, + 23886416, + 23886512, + 24747750, 15292336, 15775168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065184, 15078624, 15405632, 9474464, 15156288, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071712, 15044528 @@ -203673,17 +203673,17 @@ }, { "type_name": "CNetMessagePB<403, CMsgTEBeamEnts, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31912496, + "vtable_address": 31912432, "methods": [ - 23919728, - 23884704, - 23920752, - 23884720, - 23891440, - 23884736, - 23886976, - 23884752, - 23884768 + 23919664, + 23884640, + 23920688, + 23884656, + 23891376, + 23884672, + 23886912, + 23884688, + 23884704 ], "bases": [ { @@ -203705,14 +203705,14 @@ }, { "type_name": "CNetMessagePB<404, CMsgTEBeamPoints, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31913176, + "vtable_address": 31913112, "methods": [ + 23887024, 23887088, - 23887152, - 23884400, - 23884416, - 23884432, - 23887472 + 23884336, + 23884352, + 23884368, + 23887408 ], "bases": [ { @@ -203766,23 +203766,23 @@ }, { "type_name": "CNetMessagePB<404, CMsgTEBeamPoints, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31913240, + "vtable_address": 31913176, "methods": [ - 23887120, - 23887216, - 24747814, + 23887056, + 23887152, + 24747750, 15292480, 15719152, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065328, 15078608, 15406320, 9474464, 15081104, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071744, 15044544 @@ -203839,17 +203839,17 @@ }, { "type_name": "CNetMessagePB<404, CMsgTEBeamPoints, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31913088, + "vtable_address": 31913024, "methods": [ - 23921760, - 23884512, - 23922784, - 23884528, - 23891600, - 23884544, - 23887616, - 23884560, - 23884576 + 23921696, + 23884448, + 23922720, + 23884464, + 23891536, + 23884480, + 23887552, + 23884496, + 23884512 ], "bases": [ { @@ -203871,14 +203871,14 @@ }, { "type_name": "CNetMessagePB<405, CMsgTEBeamRing, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31913768, + "vtable_address": 31913704, "methods": [ + 23887664, 23887728, - 23887792, - 23884208, - 23884224, - 23884240, - 23888112 + 23884144, + 23884160, + 23884176, + 23888048 ], "bases": [ { @@ -203932,23 +203932,23 @@ }, { "type_name": "CNetMessagePB<405, CMsgTEBeamRing, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31913832, + "vtable_address": 31913768, "methods": [ - 23887760, - 23887856, - 24747814, + 23887696, + 23887792, + 24747750, 15292640, 15775344, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065536, 15078592, 15406912, 9474464, 15156704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071776, 15044560 @@ -204005,17 +204005,17 @@ }, { "type_name": "CNetMessagePB<405, CMsgTEBeamRing, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31913680, + "vtable_address": 31913616, "methods": [ - 23923776, - 23884320, - 23924800, - 23884336, - 23891760, - 23884352, - 23888256, - 23884368, - 23884384 + 23923712, + 23884256, + 23924736, + 23884272, + 23891696, + 23884288, + 23888192, + 23884304, + 23884320 ], "bases": [ { @@ -204037,14 +204037,14 @@ }, { "type_name": "CNetMessagePB<408, CMsgTEBubbles, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31914952, + "vtable_address": 31914888, "methods": [ + 23888944, 23889008, - 23889072, - 23883824, - 23883840, - 23883856, - 23889392 + 23883760, + 23883776, + 23883792, + 23889328 ], "bases": [ { @@ -204098,23 +204098,23 @@ }, { "type_name": "CNetMessagePB<408, CMsgTEBubbles, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31915016, + "vtable_address": 31914952, "methods": [ - 23889040, - 23889136, - 24747814, + 23888976, + 23889072, + 24747750, 15292800, 15719280, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058144, 15078576, 15407600, 9474464, 15164256, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071808, 15044576 @@ -204171,17 +204171,17 @@ }, { "type_name": "CNetMessagePB<408, CMsgTEBubbles, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31914864, + "vtable_address": 31914800, "methods": [ - 23927808, - 23883936, - 23928848, - 23883952, - 23892080, - 23883968, - 23889536, - 23883984, - 23884000 + 23927744, + 23883872, + 23928784, + 23883888, + 23892016, + 23883904, + 23889472, + 23883920, + 23883936 ], "bases": [ { @@ -204203,14 +204203,14 @@ }, { "type_name": "CNetMessagePB<409, CMsgTEBubbleTrail, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31915544, + "vtable_address": 31915480, "methods": [ + 23889584, 23889648, - 23889712, - 23883632, - 23883648, - 23883664, - 23890032 + 23883568, + 23883584, + 23883600, + 23889968 ], "bases": [ { @@ -204264,23 +204264,23 @@ }, { "type_name": "CNetMessagePB<409, CMsgTEBubbleTrail, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31915608, + "vtable_address": 31915544, "methods": [ - 23889680, - 23889776, - 24747814, + 23889616, + 23889712, + 24747750, 15292960, 15719424, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058368, 15078560, 15408256, 9474464, 15164704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071840, 15044592 @@ -204337,17 +204337,17 @@ }, { "type_name": "CNetMessagePB<409, CMsgTEBubbleTrail, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31915456, + "vtable_address": 31915392, "methods": [ - 23929840, - 23883744, - 23930880, - 23883760, - 23892240, - 23883776, - 23890176, - 23883792, - 23883808 + 23929776, + 23883680, + 23930816, + 23883696, + 23892176, + 23883712, + 23890112, + 23883728, + 23883744 ], "bases": [ { @@ -204369,7 +204369,7 @@ }, { "type_name": "CNetMessagePB<410, CMsgTEDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30516128, + "vtable_address": 30516064, "methods": [ 12441088, 12441152, @@ -204430,23 +204430,23 @@ }, { "type_name": "CNetMessagePB<410, CMsgTEDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30516192, + "vtable_address": 30516128, "methods": [ 12441120, 12441216, - 24747814, + 24747750, 12441072, 15719568, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058592, 12437232, 15408912, 9474464, 15184832, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071872, 15044608 @@ -204503,7 +204503,7 @@ }, { "type_name": "CNetMessagePB<410, CMsgTEDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 30516040, + "vtable_address": 30515976, "methods": [ 12853088, 12434480, @@ -204535,7 +204535,7 @@ }, { "type_name": "CNetMessagePB<411, CMsgTEWorldDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30516440, + "vtable_address": 30516376, "methods": [ 12440624, 12440688, @@ -204596,23 +204596,23 @@ }, { "type_name": "CNetMessagePB<411, CMsgTEWorldDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30516504, + "vtable_address": 30516440, "methods": [ 12440656, 12440752, - 24747814, + 24747750, 12440608, 15721712, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061968, 12437216, 15421120, 9474464, 15144000, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072384, 15044864 @@ -204669,7 +204669,7 @@ }, { "type_name": "CNetMessagePB<411, CMsgTEWorldDecal, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 30516352, + "vtable_address": 30516288, "methods": [ 12851440, 12434400, @@ -204701,14 +204701,14 @@ }, { "type_name": "CNetMessagePB<412, CMsgTEEnergySplash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31918352, + "vtable_address": 31918288, "methods": [ + 23935424, 23935488, - 23935552, - 23934448, - 23934464, - 23934480, - 23935872 + 23934384, + 23934400, + 23934416, + 23935808 ], "bases": [ { @@ -204762,23 +204762,23 @@ }, { "type_name": "CNetMessagePB<412, CMsgTEEnergySplash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31918416, + "vtable_address": 31918352, "methods": [ - 23935520, - 23935616, - 24747814, + 23935456, + 23935552, + 24747750, 15293536, 15720048, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15059504, 15078528, 15411440, 9474464, 15109552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071968, 15044656 @@ -204835,17 +204835,17 @@ }, { "type_name": "CNetMessagePB<412, CMsgTEEnergySplash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31918264, + "vtable_address": 31918200, "methods": [ - 23970464, - 23934560, - 23971168, - 23934576, - 23942880, - 23934592, - 23936016, - 23934608, - 23934624 + 23970400, + 23934496, + 23971104, + 23934512, + 23942816, + 23934528, + 23935952, + 23934544, + 23934560 ], "bases": [ { @@ -204867,14 +204867,14 @@ }, { "type_name": "CNetMessagePB<413, CMsgTEFizz, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31919008, + "vtable_address": 31918944, "methods": [ + 23936064, 23936128, - 23936192, - 23934256, - 23934272, - 23934288, - 23936512 + 23934192, + 23934208, + 23934224, + 23936448 ], "bases": [ { @@ -204928,23 +204928,23 @@ }, { "type_name": "CNetMessagePB<413, CMsgTEFizz, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31919072, + "vtable_address": 31919008, "methods": [ - 23936160, - 23936256, - 24747814, + 23936096, + 23936192, + 24747750, 15293680, 15720176, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054384, 15078512, 15412112, 9474464, 15167488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072000, 15044672 @@ -205001,17 +205001,17 @@ }, { "type_name": "CNetMessagePB<413, CMsgTEFizz, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31918920, + "vtable_address": 31918856, "methods": [ - 23972160, - 23934368, - 23972864, - 23934384, - 23943040, - 23934400, - 23936656, - 23934416, - 23934432 + 23972096, + 23934304, + 23972800, + 23934320, + 23942976, + 23934336, + 23936592, + 23934352, + 23934368 ], "bases": [ { @@ -205033,14 +205033,14 @@ }, { "type_name": "CNetMessagePB<415, CMsgTEGlowSprite, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31920192, + "vtable_address": 31920128, "methods": [ + 23937344, 23937408, - 23937472, - 23933872, - 23933888, - 23933904, - 23937792 + 23933808, + 23933824, + 23933840, + 23937728 ], "bases": [ { @@ -205094,23 +205094,23 @@ }, { "type_name": "CNetMessagePB<415, CMsgTEGlowSprite, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31920256, + "vtable_address": 31920192, "methods": [ - 23937440, - 23937536, - 24747814, + 23937376, + 23937472, + 24747750, 15293952, 15720464, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060064, 15078480, 15413744, 9474464, 15152800, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072064, 15044704 @@ -205167,17 +205167,17 @@ }, { "type_name": "CNetMessagePB<415, CMsgTEGlowSprite, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31920104, + "vtable_address": 31920040, "methods": [ - 23975520, - 23933984, - 23976192, - 23934000, - 23943360, - 23934016, - 23937936, - 23934032, - 23934048 + 23975456, + 23933920, + 23976128, + 23933936, + 23943296, + 23933952, + 23937872, + 23933968, + 23933984 ], "bases": [ { @@ -205199,14 +205199,14 @@ }, { "type_name": "CNetMessagePB<416, CMsgTEImpact, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31920784, + "vtable_address": 31920720, "methods": [ + 23937984, 23938048, - 23938112, - 23933680, - 23933696, - 23933712, - 23938432 + 23933616, + 23933632, + 23933648, + 23938368 ], "bases": [ { @@ -205260,23 +205260,23 @@ }, { "type_name": "CNetMessagePB<416, CMsgTEImpact, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31920848, + "vtable_address": 31920784, "methods": [ - 23938080, - 23938176, - 24747814, + 23938016, + 23938112, + 24747750, 15294096, 15720576, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060192, 15078464, 15414416, 9474464, 15143680, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072096, 15044720 @@ -205333,17 +205333,17 @@ }, { "type_name": "CNetMessagePB<416, CMsgTEImpact, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31920696, + "vtable_address": 31920632, "methods": [ - 23977184, - 23933792, - 23977856, - 23933808, - 23943520, - 23933824, - 23938576, - 23933840, - 23933856 + 23977120, + 23933728, + 23977792, + 23933744, + 23943456, + 23933760, + 23938512, + 23933776, + 23933792 ], "bases": [ { @@ -205365,14 +205365,14 @@ }, { "type_name": "CNetMessagePB<417, CMsgTEMuzzleFlash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31921984, + "vtable_address": 31921920, "methods": [ + 23939264, 23939328, - 23939392, - 23933296, - 23933312, - 23933328, - 23939712 + 23933232, + 23933248, + 23933264, + 23939648 ], "bases": [ { @@ -205426,23 +205426,23 @@ }, { "type_name": "CNetMessagePB<417, CMsgTEMuzzleFlash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31922048, + "vtable_address": 31921984, "methods": [ - 23939360, - 23939456, - 24747814, + 23939296, + 23939392, + 24747750, 15294240, 15720704, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060384, 15078448, 15415088, 9474464, 15155168, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072128, 15044736 @@ -205499,17 +205499,17 @@ }, { "type_name": "CNetMessagePB<417, CMsgTEMuzzleFlash, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31921896, + "vtable_address": 31921832, "methods": [ - 23980512, - 23933408, - 23981184, - 23933424, - 23943840, - 23933440, - 23939856, - 23933456, - 23933472 + 23980448, + 23933344, + 23981120, + 23933360, + 23943776, + 23933376, + 23939792, + 23933392, + 23933408 ], "bases": [ { @@ -205531,14 +205531,14 @@ }, { "type_name": "CNetMessagePB<418, CMsgTEBloodStream, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31914360, + "vtable_address": 31914296, "methods": [ + 23888304, 23888368, - 23888432, - 23884016, - 23884032, - 23884048, - 23888752 + 23883952, + 23883968, + 23883984, + 23888688 ], "bases": [ { @@ -205592,23 +205592,23 @@ }, { "type_name": "CNetMessagePB<418, CMsgTEBloodStream, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31914424, + "vtable_address": 31914360, "methods": [ - 23888400, - 23888496, - 24747814, + 23888336, + 23888432, + 24747750, 15294384, 15720848, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060592, 15078432, 15415728, 9474464, 15155552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072160, 15044752 @@ -205665,17 +205665,17 @@ }, { "type_name": "CNetMessagePB<418, CMsgTEBloodStream, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31914272, + "vtable_address": 31914208, "methods": [ - 23925792, - 23884128, - 23926816, - 23884144, - 23891920, - 23884160, - 23888896, - 23884176, - 23884192 + 23925728, + 23884064, + 23926752, + 23884080, + 23891856, + 23884096, + 23888832, + 23884112, + 23884128 ], "bases": [ { @@ -205697,7 +205697,7 @@ }, { "type_name": "CNetMessagePB<419, CMsgTEExplosion, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30970048, + "vtable_address": 30969984, "methods": [ 15975840, 15975904, @@ -205758,23 +205758,23 @@ }, { "type_name": "CNetMessagePB<419, CMsgTEExplosion, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30970112, + "vtable_address": 30970048, "methods": [ 15975872, 15975968, - 24747814, + 24747750, 15294528, 15742896, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092960, 15078416, 15416368, 9474464, 15218496, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072192, 15044768 @@ -205831,11 +205831,11 @@ }, { "type_name": "CNetMessagePB<419, CMsgTEExplosion, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 30969960, + "vtable_address": 30969896, "methods": [ - 16449568, + 16449440, 15975040, - 16450864, + 16450736, 15975056, 15990864, 15975072, @@ -205863,14 +205863,14 @@ }, { "type_name": "CNetMessagePB<420, CMsgTEDust, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31919600, + "vtable_address": 31919536, "methods": [ + 23936704, 23936768, - 23936832, - 23934064, - 23934080, - 23934096, - 23937152 + 23934000, + 23934016, + 23934032, + 23937088 ], "bases": [ { @@ -205924,23 +205924,23 @@ }, { "type_name": "CNetMessagePB<420, CMsgTEDust, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31919664, + "vtable_address": 31919600, "methods": [ - 23936800, - 23936896, - 24747814, + 23936736, + 23936832, + 24747750, 15294672, 15720992, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060800, 15078400, 15417456, 9474464, 15107056, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072224, 15044784 @@ -205997,17 +205997,17 @@ }, { "type_name": "CNetMessagePB<420, CMsgTEDust, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31919512, + "vtable_address": 31919448, "methods": [ - 23973856, - 23934176, - 23974528, - 23934192, - 23943200, - 23934208, - 23937296, - 23934224, - 23934240 + 23973792, + 23934112, + 23974464, + 23934128, + 23943136, + 23934144, + 23937232, + 23934160, + 23934176 ], "bases": [ { @@ -206029,14 +206029,14 @@ }, { "type_name": "CNetMessagePB<421, CMsgTELargeFunnel, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31921392, + "vtable_address": 31921328, "methods": [ + 23938624, 23938688, - 23938752, - 23933488, - 23933504, - 23933520, - 23939072 + 23933424, + 23933440, + 23933456, + 23939008 ], "bases": [ { @@ -206090,23 +206090,23 @@ }, { "type_name": "CNetMessagePB<421, CMsgTELargeFunnel, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31921456, + "vtable_address": 31921392, "methods": [ - 23938720, - 23938816, - 24747814, + 23938656, + 23938752, + 24747750, 15294832, 15721136, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060992, 15078384, 15418080, 9474464, 15132320, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072256, 15044800 @@ -206163,17 +206163,17 @@ }, { "type_name": "CNetMessagePB<421, CMsgTELargeFunnel, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31921304, + "vtable_address": 31921240, "methods": [ - 23978848, - 23933600, - 23979520, - 23933616, - 23943680, - 23933632, - 23939216, - 23933648, - 23933664 + 23978784, + 23933536, + 23979456, + 23933552, + 23943616, + 23933568, + 23939152, + 23933584, + 23933600 ], "bases": [ { @@ -206195,14 +206195,14 @@ }, { "type_name": "CNetMessagePB<422, CMsgTESparks, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31923760, + "vtable_address": 31923696, "methods": [ + 23941184, 23941248, - 23941312, - 23932720, - 23932736, - 23932752, - 23941632 + 23932656, + 23932672, + 23932688, + 23941568 ], "bases": [ { @@ -206256,23 +206256,23 @@ }, { "type_name": "CNetMessagePB<422, CMsgTESparks, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31923824, + "vtable_address": 31923760, "methods": [ - 23941280, - 23941376, - 24747814, + 23941216, + 23941312, + 24747750, 15294976, 15721216, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061120, 15078368, 15418672, 9474464, 15165152, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072288, 15044816 @@ -206329,17 +206329,17 @@ }, { "type_name": "CNetMessagePB<422, CMsgTESparks, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31923672, + "vtable_address": 31923608, "methods": [ - 23985504, - 23932832, - 23986176, - 23932848, - 23944320, - 23932864, - 23941776, - 23932880, - 23932896 + 23985440, + 23932768, + 23986112, + 23932784, + 23944256, + 23932800, + 23941712, + 23932816, + 23932832 ], "bases": [ { @@ -206361,14 +206361,14 @@ }, { "type_name": "CNetMessagePB<423, CMsgTEPhysicsProp, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31922576, + "vtable_address": 31922512, "methods": [ + 23939904, 23939968, - 23940032, - 23933104, - 23933120, - 23933136, - 23940352 + 23933040, + 23933056, + 23933072, + 23940288 ], "bases": [ { @@ -206422,23 +206422,23 @@ }, { "type_name": "CNetMessagePB<423, CMsgTEPhysicsProp, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31922640, + "vtable_address": 31922576, "methods": [ - 23940000, - 23940096, - 24747814, + 23939936, + 23940032, + 24747750, 15295136, 15721360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061344, 15078352, 15419328, 9474464, 15221984, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072320, 15044832 @@ -206495,17 +206495,17 @@ }, { "type_name": "CNetMessagePB<423, CMsgTEPhysicsProp, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31922488, + "vtable_address": 31922424, "methods": [ - 23982176, - 23933216, - 23982848, - 23933232, - 23944000, - 23933248, - 23940496, - 23933264, - 23933280 + 23982112, + 23933152, + 23982784, + 23933168, + 23943936, + 23933184, + 23940432, + 23933200, + 23933216 ], "bases": [ { @@ -206527,14 +206527,14 @@ }, { "type_name": "CNetMessagePB<426, CMsgTESmoke, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31923168, + "vtable_address": 31923104, "methods": [ + 23940544, 23940608, - 23940672, - 23932912, - 23932928, - 23932944, - 23940992 + 23932848, + 23932864, + 23932880, + 23940928 ], "bases": [ { @@ -206588,23 +206588,23 @@ }, { "type_name": "CNetMessagePB<426, CMsgTESmoke, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 31923232, + "vtable_address": 31923168, "methods": [ - 23940640, - 23940736, - 24747814, + 23940576, + 23940672, + 24747750, 15295296, 15721632, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061872, 15078336, 15420624, 9474464, 15107312, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072352, 15044848 @@ -206661,17 +206661,17 @@ }, { "type_name": "CNetMessagePB<426, CMsgTESmoke, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 31923080, + "vtable_address": 31923016, "methods": [ - 23983840, - 23933024, - 23984512, - 23933040, - 23944160, - 23933056, - 23941136, - 23933072, - 23933088 + 23983776, + 23932960, + 23984448, + 23932976, + 23944096, + 23932992, + 23941072, + 23933008, + 23933024 ], "bases": [ { @@ -206693,7 +206693,7 @@ }, { "type_name": "CNetMessagePB<452, CMsgTEFireBullets, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30973312, + "vtable_address": 30973248, "methods": [ 15976480, 15976544, @@ -206754,23 +206754,23 @@ }, { "type_name": "CNetMessagePB<452, CMsgTEFireBullets, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30973376, + "vtable_address": 30973312, "methods": [ 15976512, 15976608, - 24747814, + 24747750, 14337360, 15029008, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15032176, 14066224, 14437728, 9474464, 14280112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051088, 14018560 @@ -206827,11 +206827,11 @@ }, { "type_name": "CNetMessagePB<452, CMsgTEFireBullets, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 30973224, + "vtable_address": 30973160, "methods": [ - 16456272, + 16456144, 15974384, - 16457568, + 16457440, 15974400, 15991184, 15974416, @@ -206859,7 +206859,7 @@ }, { "type_name": "CNetMessagePB<453, CMsgPlayerBulletHit, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30973624, + "vtable_address": 30973560, "methods": [ 15976928, 15976992, @@ -206920,23 +206920,23 @@ }, { "type_name": "CNetMessagePB<453, CMsgPlayerBulletHit, (SignonGroup_t)5, (NetChannelBufType_t)0, true>", - "vtable_address": 30973688, + "vtable_address": 30973624, "methods": [ 15976960, 15977056, - 24747814, + 24747750, 14337520, 15029360, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15032864, 14066208, 14439168, 9474464, 14253888, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051120, 14018576 @@ -206993,11 +206993,11 @@ }, { "type_name": "CNetMessagePB<453, CMsgPlayerBulletHit, (SignonGroup_t)5, (NetChannelBufType_t)0, true>::CProtobufBinding", - "vtable_address": 30973536, + "vtable_address": 30973472, "methods": [ - 16459216, + 16459088, 15974304, - 16460512, + 16460384, 15974320, 15991344, 15974336, @@ -207025,14 +207025,14 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 31542648, + "vtable_address": 31542584, "methods": [ - 20631824, - 20631888, - 20621328, - 20621344, - 20621360, - 20632208 + 20631696, + 20631760, + 20621200, + 20621216, + 20621232, + 20632080 ], "bases": [ { @@ -207086,23 +207086,23 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>", - "vtable_address": 31542712, + "vtable_address": 31542648, "methods": [ - 20631856, - 20631952, - 24747814, + 20631728, + 20631824, + 24747750, 15281072, 15736096, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088848, 15079280, 15372384, 9474464, 15186816, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069696, 15042496 @@ -207159,17 +207159,17 @@ }, { "type_name": "CNetMessagePB<62, CSVCMsg_HLTVStatus, (SignonGroup_t)0, (NetChannelBufType_t)1, true>::CProtobufBinding", - "vtable_address": 31542560, + "vtable_address": 31542496, "methods": [ - 20899936, - 20621440, - 20901216, - 20621456, - 20641520, - 20621472, - 20632352, - 20621488, - 20621504 + 20899808, + 20621312, + 20901088, + 20621328, + 20641392, + 20621344, + 20632224, + 20621360, + 20621376 ], "bases": [ { @@ -207191,14 +207191,14 @@ }, { "type_name": "CNetMessagePB<76, CSVCMsg_UserCommands, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 31698368, + "vtable_address": 31698304, "methods": [ - 21374128, - 21374192, - 21368832, - 21368848, - 21368864, - 21374512 + 21374000, + 21374064, + 21368704, + 21368720, + 21368736, + 21374384 ], "bases": [ { @@ -207252,23 +207252,23 @@ }, { "type_name": "CNetMessagePB<76, CSVCMsg_UserCommands, (SignonGroup_t)17, (NetChannelBufType_t)1, false>", - "vtable_address": 31698432, + "vtable_address": 31698368, "methods": [ - 21374160, - 21374256, - 24747814, + 21374032, + 21374128, + 24747750, 15284928, 15756912, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15122992, 15079024, 15510112, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15070496, 15042912 @@ -207325,17 +207325,17 @@ }, { "type_name": "CNetMessagePB<76, CSVCMsg_UserCommands, (SignonGroup_t)17, (NetChannelBufType_t)1, false>::CProtobufBinding", - "vtable_address": 31698280, + "vtable_address": 31698216, "methods": [ - 21597296, - 21368944, - 21487328, - 21368960, - 21377312, - 21368976, - 21374656, - 21368992, - 21369008 + 21597168, + 21368816, + 21487200, + 21368832, + 21377184, + 21368848, + 21374528, + 21368864, + 21368880 ], "bases": [ { @@ -207357,14 +207357,14 @@ }, { "type_name": "CNetworkFieldScratchData", - "vtable_address": 32018040, + "vtable_address": 32017976, "methods": [ - 26468096, - 26467728, - 26468480, - 26495616, - 26461056, - 26459376 + 26468032, + 26467664, + 26468416, + 26495552, + 26460992, + 26459312 ], "bases": [ { @@ -207386,13 +207386,13 @@ }, { "type_name": "CNetworkPVSModifierEntityManager", - "vtable_address": 31434688, + "vtable_address": 31434624, "methods": [ 9634368, 9634384, 9634400, - 19829376, - 19829392, + 19829248, + 19829264, 9634448, 9634464, 9634480, @@ -207433,7 +207433,7 @@ 9635040, 9635056, 9635072, - 19853072, + 19852944, 9635104, 9635120, 9635136, @@ -207444,12 +207444,12 @@ 9635216, 9635232, 9635248, - 19829344, + 19829216, 9635280, - 19829328, + 19829200, + 19847744, 19847872, - 19848000, - 19829312 + 19829184 ], "bases": [ { @@ -207482,14 +207482,14 @@ }, { "type_name": "CNetworkSerializerBindingBuildFilter", - "vtable_address": 32018584, + "vtable_address": 32018520, "methods": [ - 26610064, - 26610080, - 26610512, - 26610048, - 26610096, - 26610272 + 26610000, + 26610016, + 26610448, + 26609984, + 26610032, + 26610208 ], "bases": [ { @@ -207511,7 +207511,7 @@ }, { "type_name": "CNetworkTransmitComponent", - "vtable_address": 30159856, + "vtable_address": 30159792, "methods": [ 9717888, 9701120, @@ -207538,7 +207538,7 @@ }, { "type_name": "CNextLevelIssue", - "vtable_address": 30231008, + "vtable_address": 30230944, "methods": [ 10429120, 10472960, @@ -207606,23 +207606,23 @@ }, { "type_name": "CNmAdditiveBlendTask", - "vtable_address": 32020752, + "vtable_address": 32020688, "methods": [ - 26711536, - 26714496, - 26715664, - 26703664, - 26698768, + 26711472, + 26714432, + 26715600, + 26703600, + 26698704, 15919936, 15919952, - 26698656, - 26711680, - 26731520, - 26698736, - 26703520, + 26698592, + 26711616, + 26731456, 26698672, - 26698688, - 26713920 + 26703456, + 26698608, + 26698624, + 26713856 ], "bases": [ { @@ -207655,7 +207655,7 @@ }, { "type_name": "CNmAimCSNode", - "vtable_address": 30964912, + "vtable_address": 30964848, "methods": [ 15922512, 15922544, @@ -207666,7 +207666,7 @@ 15930992, 15921328, 15921360, - 27026848, + 27026784, 15921088, 15959968, 15919904 @@ -207713,7 +207713,7 @@ }, { "type_name": "CNmAimCSNode::CDefinition", - "vtable_address": 30965032, + "vtable_address": 30964968, "methods": [ 15921536, 15939808, @@ -207766,13 +207766,13 @@ }, { "type_name": "CNmAimCSTask", - "vtable_address": 30965312, + "vtable_address": 30965248, "methods": [ 15921568, 15930224, 15930576, 15959344, - 26805664, + 26805600, 15919936, 15919952, 15920032, @@ -207804,20 +207804,20 @@ }, { "type_name": "CNmAndNode", - "vtable_address": 32024160, + "vtable_address": 32024096, "methods": [ - 26902224, - 26902320, - 26835568, + 26902160, + 26902256, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, 26900928, - 27145424, - 27145456, - 27145744, - 26900992, - 26901264, - 26901968, - 26901488, - 26888128 + 26901200, + 26901904, + 26901424, + 26888064 ], "bases": [ { @@ -207861,16 +207861,16 @@ }, { "type_name": "CNmAndNode::CDefinition", - "vtable_address": 32044096, + "vtable_address": 32044032, "methods": [ - 27436128, - 27439408, - 27441360, - 27436000, - 27436320, - 27436480, - 26902432, - 27436016 + 27436064, + 27439344, + 27441296, + 27435936, + 27436256, + 27436416, + 26902368, + 27435952 ], "bases": [ { @@ -207914,20 +207914,20 @@ }, { "type_name": "CNmAnimationPoseNode", - "vtable_address": 32032240, + "vtable_address": 32032176, "methods": [ - 27027536, - 27027568, - 27027328, + 27027472, + 27027504, + 27027264, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27027488, - 27027312, - 27027408, - 27033248, + 27027424, + 27027248, + 27027344, + 27033184, 15919904 ], "bases": [ @@ -207961,16 +207961,16 @@ }, { "type_name": "CNmAnimationPoseNode::CDefinition", - "vtable_address": 32052728, + "vtable_address": 32052664, "methods": [ - 27692576, - 27697472, - 27705088, + 27692512, + 27697408, + 27705024, + 27692352, 27692416, - 27692480, - 27692528, - 27027968, - 27692432 + 27692464, + 27027904, + 27692368 ], "bases": [ { @@ -208003,20 +208003,20 @@ }, { "type_name": "CNmBlend1DNode", - "vtable_address": 32022808, + "vtable_address": 32022744, "methods": [ - 26839552, - 26840384, - 26835728, + 26839488, + 26840320, + 26835664, 15919920, 15921296, - 26835776, - 26836720, + 26835712, + 26836656, 15921328, - 26835616, - 26835584, - 26850032, - 26856192, + 26835552, + 26835520, + 26849968, + 26856128, 15919904 ], "bases": [ @@ -208061,16 +208061,16 @@ }, { "type_name": "CNmBlend1DNode::CDefinition", - "vtable_address": 32043104, + "vtable_address": 32043040, "methods": [ - 27372048, - 27400832, - 27399680, - 27371968, - 27373760, - 27373952, - 26850272, - 27371984 + 27371984, + 27400768, + 27399616, + 27371904, + 27373696, + 27373888, + 26850208, + 27371920 ], "bases": [ { @@ -208114,20 +208114,20 @@ }, { "type_name": "CNmBlend2DNode", - "vtable_address": 32023240, + "vtable_address": 32023176, "methods": [ - 26867376, - 26867600, - 26863056, + 26867312, + 26867536, + 26862992, 15919920, 15921296, - 26863216, - 26865760, + 26863152, + 26865696, 15921328, - 26862896, - 26862880, - 26877040, - 26879200, + 26862832, + 26862816, + 26876976, + 26879136, 15919904 ], "bases": [ @@ -208161,16 +208161,16 @@ }, { "type_name": "CNmBlend2DNode::CDefinition", - "vtable_address": 32043368, + "vtable_address": 32043304, "methods": [ - 27401136, - 27404992, - 27414800, - 27401104, - 27402176, - 27402736, - 26870336, - 27401120 + 27401072, + 27404928, + 27414736, + 27401040, + 27402112, + 27402672, + 26870272, + 27401056 ], "bases": [ { @@ -208203,23 +208203,23 @@ }, { "type_name": "CNmBlendTask", - "vtable_address": 32020480, + "vtable_address": 32020416, "methods": [ - 26711600, - 26715072, - 26716272, - 26698864, - 26698768, + 26711536, + 26715008, + 26716208, + 26698800, + 26698704, 15919936, 15919952, - 26698656, - 26711680, - 26731520, - 26698704, - 26703264, - 26698672, - 26698688, - 26713920 + 26698592, + 26711616, + 26731456, + 26698640, + 26703200, + 26698608, + 26698624, + 26713856 ], "bases": [ { @@ -208252,7 +208252,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 32020328, + "vtable_address": 32020264, "methods": [], "bases": [ { @@ -208274,9 +208274,9 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 32020344, + "vtable_address": 32020280, "methods": [ - 26711632 + 26711568 ], "bases": [ { @@ -208298,7 +208298,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 33344192, + "vtable_address": 33344128, "methods": [], "bases": [], "model": { @@ -208309,7 +208309,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 33344320, + "vtable_address": 33344256, "methods": [], "bases": [], "model": { @@ -208320,7 +208320,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 33344448, + "vtable_address": 33344384, "methods": [], "bases": [], "model": { @@ -208331,7 +208331,7 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 33344576, + "vtable_address": 33344512, "methods": [], "bases": [], "model": { @@ -208342,16 +208342,16 @@ }, { "type_name": "CNmBodyGroupEvent", - "vtable_address": 32040168, + "vtable_address": 32040104, "methods": [ - 27306096, - 27306464, - 27308096, - 27305968, - 27305984, 27306032, - 27236192, - 27306112 + 27306400, + 27308032, + 27305904, + 27305920, + 27305968, + 27236128, + 27306048 ], "bases": [ { @@ -208373,20 +208373,20 @@ }, { "type_name": "CNmBoneMaskBlendNode", - "vtable_address": 32023840, - "methods": [ - 26888496, - 26888784, - 26835568, - 26888144, - 27145424, - 27145456, - 27145744, - 26888176, - 26888304, + "vtable_address": 32023776, + "methods": [ + 26888432, + 26888720, + 26835504, + 26888080, + 27145360, + 27145392, + 27145680, 26888112, - 26895600, - 26888128 + 26888240, + 26888048, + 26895536, + 26888064 ], "bases": [ { @@ -208430,16 +208430,16 @@ }, { "type_name": "CNmBoneMaskBlendNode::CDefinition", - "vtable_address": 32043776, + "vtable_address": 32043712, "methods": [ - 27415136, - 27422768, - 27423936, - 27414944, - 27415040, - 27415088, - 26900080, - 27414960 + 27415072, + 27422704, + 27423872, + 27414880, + 27414976, + 27415024, + 26900016, + 27414896 ], "bases": [ { @@ -208483,20 +208483,20 @@ }, { "type_name": "CNmBoneMaskNode", - "vtable_address": 32023616, - "methods": [ - 26888688, - 26889008, - 26835568, - 26888144, - 27145424, - 27145456, - 27145744, - 26888160, - 27145376, - 26888112, - 26888256, - 26888128 + "vtable_address": 32023552, + "methods": [ + 26888624, + 26888944, + 26835504, + 26888080, + 27145360, + 27145392, + 27145680, + 26888096, + 27145312, + 26888048, + 26888192, + 26888064 ], "bases": [ { @@ -208540,16 +208540,16 @@ }, { "type_name": "CNmBoneMaskNode::CDefinition", - "vtable_address": 32043616, + "vtable_address": 32043552, "methods": [ - 27415104, - 27417376, - 27419200, - 27414880, - 27415008, - 27415056, - 26898480, - 27414896 + 27415040, + 27417312, + 27419136, + 27414816, + 27414944, + 27414992, + 26898416, + 27414832 ], "bases": [ { @@ -208593,20 +208593,20 @@ }, { "type_name": "CNmBoneMaskSelectorNode", - "vtable_address": 32023952, - "methods": [ - 26889584, - 26889360, - 26835568, - 26888144, - 27145424, - 26889808, - 26890752, - 26889120, - 26888368, - 26888112, - 26892016, - 26888128 + "vtable_address": 32023888, + "methods": [ + 26889520, + 26889296, + 26835504, + 26888080, + 27145360, + 26889744, + 26890688, + 26889056, + 26888304, + 26888048, + 26891952, + 26888064 ], "bases": [ { @@ -208650,16 +208650,16 @@ }, { "type_name": "CNmBoneMaskSelectorNode::CDefinition", - "vtable_address": 32043856, + "vtable_address": 32043792, "methods": [ - 27415152, - 27428288, - 27435360, - 27414976, - 27415664, - 27415936, - 26900224, - 27414992 + 27415088, + 27428224, + 27435296, + 27414912, + 27415600, + 27415872, + 26900160, + 27414928 ], "bases": [ { @@ -208703,7 +208703,7 @@ }, { "type_name": "CNmBoneMaskValueNode", - "vtable_address": 32023488, + "vtable_address": 32023424, "methods": [], "bases": [ { @@ -208736,7 +208736,7 @@ }, { "type_name": "CNmBoneMaskValueNode", - "vtable_address": 32026544, + "vtable_address": 32026480, "methods": [], "bases": [ { @@ -208769,7 +208769,7 @@ }, { "type_name": "CNmBoneMaskValueNode::CDefinition", - "vtable_address": 32043600, + "vtable_address": 32043536, "methods": [], "bases": [ { @@ -208802,7 +208802,7 @@ }, { "type_name": "CNmBoneMaskValueNode::CDefinition", - "vtable_address": 32046312, + "vtable_address": 32046248, "methods": [], "bases": [ { @@ -208835,7 +208835,7 @@ }, { "type_name": "CNmBoolValueNode", - "vtable_address": 32024144, + "vtable_address": 32024080, "methods": [], "bases": [ { @@ -208868,7 +208868,7 @@ }, { "type_name": "CNmBoolValueNode", - "vtable_address": 32034088, + "vtable_address": 32034024, "methods": [], "bases": [ { @@ -208901,7 +208901,7 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 32044080, + "vtable_address": 32044016, "methods": [], "bases": [ { @@ -208934,7 +208934,7 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 32054664, + "vtable_address": 32054600, "methods": [], "bases": [ { @@ -208967,9 +208967,9 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 33359744, + "vtable_address": 33359680, "methods": [ - 27501920 + 27501856 ], "bases": [], "model": { @@ -208980,9 +208980,9 @@ }, { "type_name": "CNmBoolValueNode::CDefinition", - "vtable_address": 33374240, + "vtable_address": 33374176, "methods": [ - 27795008 + 27794944 ], "bases": [], "model": { @@ -208993,20 +208993,20 @@ }, { "type_name": "CNmCachedBoolNode", - "vtable_address": 32024712, + "vtable_address": 32024648, "methods": [ - 26905168, - 26905184, - 26835568, - 26900928, - 27145424, - 26906112, - 26906880, - 26907760, - 26904816, - 26901968, - 26913168, - 26888128 + 26905104, + 26905120, + 26835504, + 26900864, + 27145360, + 26906048, + 26906816, + 26907696, + 26904752, + 26901904, + 26913104, + 26888064 ], "bases": [ { @@ -209050,16 +209050,16 @@ }, { "type_name": "CNmCachedBoolNode::CDefinition", - "vtable_address": 32044600, + "vtable_address": 32044536, "methods": [ - 27447808, - 27449584, - 27450752, - 27447488, - 27447648, - 27447728, - 26919040, - 27447504 + 27447744, + 27449520, + 27450688, + 27447424, + 27447584, + 27447664, + 26918976, + 27447440 ], "bases": [ { @@ -209103,20 +209103,20 @@ }, { "type_name": "CNmCachedFloatNode", - "vtable_address": 32024936, + "vtable_address": 32024872, "methods": [ - 26905296, - 26905312, - 26835568, - 26904768, - 27145424, - 26906432, - 26909792, - 26907408, - 26904816, - 26905792, - 26912912, - 26888128 + 26905232, + 26905248, + 26835504, + 26904704, + 27145360, + 26906368, + 26909728, + 26907344, + 26904752, + 26905728, + 26912848, + 26888064 ], "bases": [ { @@ -209160,16 +209160,16 @@ }, { "type_name": "CNmCachedFloatNode::CDefinition", - "vtable_address": 32044760, + "vtable_address": 32044696, "methods": [ - 27448288, - 27456976, - 27458144, - 27447552, - 27447680, - 27447760, - 26919216, - 27447568 + 27448224, + 27456912, + 27458080, + 27447488, + 27447616, + 27447696, + 26919152, + 27447504 ], "bases": [ { @@ -209213,20 +209213,20 @@ }, { "type_name": "CNmCachedIDNode", - "vtable_address": 32024824, + "vtable_address": 32024760, "methods": [ - 26905232, - 26905248, - 26835568, + 26905168, + 26905184, + 26835504, + 26904688, + 27145360, + 26905824, + 26915088, + 26908032, 26904752, - 27145424, - 26905888, - 26915152, - 26908096, - 26904816, - 26905840, - 26914464, - 26888128 + 26905776, + 26914400, + 26888064 ], "bases": [ { @@ -209270,16 +209270,16 @@ }, { "type_name": "CNmCachedIDNode::CDefinition", - "vtable_address": 32044680, + "vtable_address": 32044616, "methods": [ - 27448048, - 27453280, - 27454448, - 27447520, - 27447664, - 27447744, - 26919136, - 27447536 + 27447984, + 27453216, + 27454384, + 27447456, + 27447600, + 27447680, + 26919072, + 27447472 ], "bases": [ { @@ -209323,23 +209323,23 @@ }, { "type_name": "CNmCachedPoseReadTask", - "vtable_address": 32021208, + "vtable_address": 32021144, "methods": [ - 26733152, - 26735040, - 26735392, - 26732912, - 26805664, + 26733088, + 26734976, + 26735328, + 26732848, + 26805600, 15919936, 15919952, - 26732400, - 26733248, - 26732448, - 26732416, + 26732336, + 26733184, + 26732384, + 26732352, 15919968, - 26732432, + 26732368, 15920000, - 26806560 + 26806496 ], "bases": [ { @@ -209361,23 +209361,23 @@ }, { "type_name": "CNmCachedPoseWriteTask", - "vtable_address": 32021072, + "vtable_address": 32021008, "methods": [ - 26733184, - 26735216, - 26735600, - 26732720, - 26805664, + 26733120, + 26735152, + 26735536, + 26732656, + 26805600, 15919936, 15919952, - 26732352, - 26733888, - 26736256, - 26732368, + 26732288, + 26733824, + 26736192, + 26732304, 15919968, - 26732384, + 26732320, 15920000, - 26806560 + 26806496 ], "bases": [ { @@ -209399,20 +209399,20 @@ }, { "type_name": "CNmCachedTargetNode", - "vtable_address": 32025160, + "vtable_address": 32025096, "methods": [ + 26905360, + 26905376, + 26835504, + 26904736, + 27145360, + 26910288, + 26915424, 26905424, - 26905440, - 26835568, 26904800, - 27145424, - 26910352, - 26915488, - 26905488, - 26904864, - 26905664, - 26904912, - 26888128 + 26905600, + 26904848, + 26888064 ], "bases": [ { @@ -209456,16 +209456,16 @@ }, { "type_name": "CNmCachedTargetNode::CDefinition", - "vtable_address": 32044920, + "vtable_address": 32044856, "methods": [ - 27448768, - 27464368, - 27465536, - 27447616, - 27447712, - 27447792, - 26919392, - 27447632 + 27448704, + 27464304, + 27465472, + 27447552, + 27447648, + 27447728, + 26919328, + 27447568 ], "bases": [ { @@ -209509,20 +209509,20 @@ }, { "type_name": "CNmCachedVectorNode", - "vtable_address": 32025048, + "vtable_address": 32024984, "methods": [ - 26905360, - 26905376, - 26835568, - 26904784, - 27145424, - 26908448, - 26913408, - 26909392, - 26904816, - 26905744, - 26914720, - 26888128 + 26905296, + 26905312, + 26835504, + 26904720, + 27145360, + 26908384, + 26913344, + 26909328, + 26904752, + 26905680, + 26914656, + 26888064 ], "bases": [ { @@ -209566,16 +209566,16 @@ }, { "type_name": "CNmCachedVectorNode::CDefinition", - "vtable_address": 32044840, + "vtable_address": 32044776, "methods": [ - 27448528, - 27460672, - 27461840, - 27447584, - 27447696, - 27447776, - 26919312, - 27447600 + 27448464, + 27460608, + 27461776, + 27447520, + 27447632, + 27447712, + 26919248, + 27447536 ], "bases": [ { @@ -209619,20 +209619,20 @@ }, { "type_name": "CNmChainLookatNode", - "vtable_address": 32025296, + "vtable_address": 32025232, "methods": [ - 26919632, - 26919664, + 26919568, + 26919600, 15920016, 15919920, 15921296, - 26920224, - 26921296, + 26920160, + 26921232, 15921328, - 26919568, - 27026848, - 26919744, - 26923072, + 26919504, + 27026784, + 26919680, + 26923008, 15919904 ], "bases": [ @@ -209677,16 +209677,16 @@ }, { "type_name": "CNmChainLookatNode::CDefinition", - "vtable_address": 32045192, + "vtable_address": 32045128, "methods": [ - 27467616, - 27469328, - 27475568, 27467552, - 27467584, - 27467600, - 26925616, - 27467568 + 27469264, + 27475504, + 27467488, + 27467520, + 27467536, + 26925552, + 27467504 ], "bases": [ { @@ -209730,23 +209730,23 @@ }, { "type_name": "CNmChainLookatTask", - "vtable_address": 32021368, + "vtable_address": 32021304, "methods": [ - 26736896, - 26740960, - 26741136, - 26743552, - 26805664, + 26736832, + 26740896, + 26741072, + 26743488, + 26805600, 15919936, 15919952, - 26736848, - 26737280, - 26741760, - 26736864, + 26736784, + 26737216, + 26741696, + 26736800, 15919968, - 26736880, + 26736816, 15920000, - 26736928 + 26736864 ], "bases": [ { @@ -209768,23 +209768,23 @@ }, { "type_name": "CNmChainSolverTask", - "vtable_address": 32021528, + "vtable_address": 32021464, "methods": [ - 26749584, - 26750576, - 26750752, - 26768320, - 26805664, + 26749520, + 26750512, + 26750688, + 26768256, + 26805600, 15919936, 15919952, - 26749456, - 26750976, - 26763008, - 26749472, - 26749504, - 26749488, + 26749392, + 26750912, + 26762944, + 26749408, + 26749440, + 26749424, 15920000, - 26749616 + 26749552 ], "bases": [ { @@ -209806,25 +209806,25 @@ }, { "type_name": "CNmClipNode", - "vtable_address": 32025464, + "vtable_address": 32025400, "methods": [ - 26925904, - 26926896, - 26928208, + 26925840, + 26926832, + 26928144, 15919920, 15921296, - 26926032, - 26926352, + 26925968, + 26926288, 15921328, - 26925840, - 26928432, - 26928576, - 26945456, + 26925776, + 26928368, + 26928512, + 26945392, 15919904, - 26928320, - 26835600, - 26925808, - 26925824 + 26928256, + 26835536, + 26925744, + 26925760 ], "bases": [ { @@ -209868,16 +209868,16 @@ }, { "type_name": "CNmClipNode::CDefinition", - "vtable_address": 32045344, + "vtable_address": 32045280, "methods": [ - 27475712, - 27477392, - 27484320, 27475648, - 27475696, - 27475744, - 26929456, - 27475664 + 27477328, + 27484256, + 27475584, + 27475632, + 27475680, + 26929392, + 27475600 ], "bases": [ { @@ -209921,7 +209921,7 @@ }, { "type_name": "CNmClipReferenceNode", - "vtable_address": 32025448, + "vtable_address": 32025384, "methods": [], "bases": [ { @@ -209954,7 +209954,7 @@ }, { "type_name": "CNmClipReferenceNode", - "vtable_address": 32032872, + "vtable_address": 32032808, "methods": [], "bases": [ { @@ -209987,7 +209987,7 @@ }, { "type_name": "CNmClipReferenceNode::CDefinition", - "vtable_address": 32045328, + "vtable_address": 32045264, "methods": [], "bases": [ { @@ -210020,7 +210020,7 @@ }, { "type_name": "CNmClipReferenceNode::CDefinition", - "vtable_address": 32053504, + "vtable_address": 32053440, "methods": [], "bases": [ { @@ -210053,25 +210053,25 @@ }, { "type_name": "CNmClipSelectorNode", - "vtable_address": 32033008, + "vtable_address": 32032944, "methods": [ - 27052064, - 27052768, - 27049760, + 27052000, + 27052704, + 27049696, 15919920, 15921296, - 27053520, - 27055168, + 27053456, + 27055104, 15921328, - 27050224, - 27049776, - 27060256, - 27050672, + 27050160, + 27049712, + 27060192, + 27050608, 15919904, + 27049840, + 27049872, 27049904, - 27049936, - 27049968, - 27050000 + 27049936 ], "bases": [ { @@ -210115,16 +210115,16 @@ }, { "type_name": "CNmClipSelectorNode::CDefinition", - "vtable_address": 32053600, + "vtable_address": 32053536, "methods": [ - 27723136, - 27734176, - 27735488, - 27723024, - 27723312, - 27723824, - 27058592, - 27723040 + 27723072, + 27734112, + 27735424, + 27722960, + 27723248, + 27723760, + 27058528, + 27722976 ], "bases": [ { @@ -210168,20 +210168,20 @@ }, { "type_name": "CNmConstBoolNode", - "vtable_address": 32025736, + "vtable_address": 32025672, "methods": [ - 26946624, - 26946640, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, + 26946560, + 26946576, + 26835504, + 26900864, 27145360, - 27145376, - 26901968, - 26946320, - 26888128 + 27145392, + 27145680, + 27145296, + 27145312, + 26901904, + 26946256, + 26888064 ], "bases": [ { @@ -210225,16 +210225,16 @@ }, { "type_name": "CNmConstBoolNode::CDefinition", - "vtable_address": 32045576, + "vtable_address": 32045512, "methods": [ - 27484720, - 27486368, - 27487984, - 27484400, - 27484560, - 27484640, - 26946944, - 27484416 + 27484656, + 27486304, + 27487920, + 27484336, + 27484496, + 27484576, + 26946880, + 27484352 ], "bases": [ { @@ -210278,20 +210278,20 @@ }, { "type_name": "CNmConstFloatNode", - "vtable_address": 32025960, + "vtable_address": 32025896, "methods": [ - 26946752, - 26946768, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, + 26946688, + 26946704, + 26835504, + 26904704, 27145360, - 27145376, - 26905792, - 26946416, - 26888128 + 27145392, + 27145680, + 27145296, + 27145312, + 26905728, + 26946352, + 26888064 ], "bases": [ { @@ -210335,16 +210335,16 @@ }, { "type_name": "CNmConstFloatNode::CDefinition", - "vtable_address": 32045736, + "vtable_address": 32045672, "methods": [ - 27484752, - 27485728, - 27491600, - 27484464, - 27484592, - 27484672, - 26947040, - 27484480 + 27484688, + 27485664, + 27491536, + 27484400, + 27484528, + 27484608, + 26946976, + 27484416 ], "bases": [ { @@ -210388,20 +210388,20 @@ }, { "type_name": "CNmConstIDNode", - "vtable_address": 32025848, + "vtable_address": 32025784, "methods": [ - 26946688, - 26946704, - 26835568, - 26904752, - 27145424, - 27145456, - 27145744, + 26946624, + 26946640, + 26835504, + 26904688, 27145360, - 27145376, - 26905840, - 26946368, - 26888128 + 27145392, + 27145680, + 27145296, + 27145312, + 26905776, + 26946304, + 26888064 ], "bases": [ { @@ -210445,16 +210445,16 @@ }, { "type_name": "CNmConstIDNode::CDefinition", - "vtable_address": 32045656, + "vtable_address": 32045592, "methods": [ - 27484736, - 27486160, - 27489760, - 27484432, - 27484576, - 27484656, - 26946992, - 27484448 + 27484672, + 27486096, + 27489696, + 27484368, + 27484512, + 27484592, + 26946928, + 27484384 ], "bases": [ { @@ -210498,20 +210498,20 @@ }, { "type_name": "CNmConstTargetNode", - "vtable_address": 32026184, + "vtable_address": 32026120, "methods": [ - 26946880, - 26946896, - 26835568, - 26904800, - 27145424, - 27145456, - 27145744, + 26946816, + 26946832, + 26835504, + 26904736, 27145360, - 27145376, - 26905664, - 26946528, - 26888128 + 27145392, + 27145680, + 27145296, + 27145312, + 26905600, + 26946464, + 26888064 ], "bases": [ { @@ -210555,16 +210555,16 @@ }, { "type_name": "CNmConstTargetNode::CDefinition", - "vtable_address": 32045896, + "vtable_address": 32045832, "methods": [ - 27484784, - 27496784, - 27496064, - 27484528, - 27484624, - 27484704, - 26947136, - 27484544 + 27484720, + 27496720, + 27496000, + 27484464, + 27484560, + 27484640, + 26947072, + 27484480 ], "bases": [ { @@ -210608,20 +210608,20 @@ }, { "type_name": "CNmConstVectorNode", - "vtable_address": 32026072, + "vtable_address": 32026008, "methods": [ - 26946816, - 26946832, - 26835568, - 26904784, - 27145424, - 27145456, - 27145744, + 26946752, + 26946768, + 26835504, + 26904720, 27145360, - 27145376, - 26905744, - 26946464, - 26888128 + 27145392, + 27145680, + 27145296, + 27145312, + 26905680, + 26946400, + 26888064 ], "bases": [ { @@ -210665,16 +210665,16 @@ }, { "type_name": "CNmConstVectorNode::CDefinition", - "vtable_address": 32045816, + "vtable_address": 32045752, "methods": [ - 27484768, - 27485968, - 27494064, - 27484496, - 27484608, - 27484688, - 26947088, - 27484512 + 27484704, + 27485904, + 27494000, + 27484432, + 27484544, + 27484624, + 26947024, + 27484448 ], "bases": [ { @@ -210718,20 +210718,20 @@ }, { "type_name": "CNmControlParameterBoolNode", - "vtable_address": 32026560, + "vtable_address": 32026496, "methods": [ - 26948816, - 26948832, - 26835568, - 26900928, - 27145424, - 26951008, - 26951184, + 26948752, + 26948768, + 26835504, + 26900864, 27145360, - 27145376, - 26901968, - 26947664, - 26947248 + 26950944, + 26951120, + 27145296, + 27145312, + 26901904, + 26947600, + 26947184 ], "bases": [ { @@ -210775,16 +210775,16 @@ }, { "type_name": "CNmControlParameterBoolNode::CDefinition", - "vtable_address": 32046328, + "vtable_address": 32046264, "methods": [ - 27497744, - 27497920, - 27502032, - 27497040, - 27497392, - 27497568, - 26959792, - 27497056 + 27497680, + 27497856, + 27501968, + 27496976, + 27497328, + 27497504, + 26959728, + 27496992 ], "bases": [ { @@ -210828,20 +210828,20 @@ }, { "type_name": "CNmControlParameterFloatNode", - "vtable_address": 32026784, + "vtable_address": 32026720, "methods": [ - 26949072, - 26949088, - 26835568, - 26904768, - 27145424, - 26951504, - 26952656, + 26949008, + 26949024, + 26835504, + 26904704, 27145360, - 27145376, - 26905792, - 26947760, - 26947280 + 26951440, + 26952592, + 27145296, + 27145312, + 26905728, + 26947696, + 26947216 ], "bases": [ { @@ -210885,16 +210885,16 @@ }, { "type_name": "CNmControlParameterFloatNode::CDefinition", - "vtable_address": 32046488, + "vtable_address": 32046424, "methods": [ - 27497776, - 27497920, - 27504592, - 27497104, - 27497424, - 27497632, - 26959920, - 27497120 + 27497712, + 27497856, + 27504528, + 27497040, + 27497360, + 27497568, + 26959856, + 27497056 ], "bases": [ { @@ -210938,20 +210938,20 @@ }, { "type_name": "CNmControlParameterIDNode", - "vtable_address": 32026672, + "vtable_address": 32026608, "methods": [ - 26948944, - 26948960, - 26835568, - 26904752, - 27145424, - 26948592, - 26956400, + 26948880, + 26948896, + 26835504, + 26904688, 27145360, - 27145376, - 26905840, - 26947712, - 26947264 + 26948528, + 26956336, + 27145296, + 27145312, + 26905776, + 26947648, + 26947200 ], "bases": [ { @@ -210995,16 +210995,16 @@ }, { "type_name": "CNmControlParameterIDNode::CDefinition", - "vtable_address": 32046408, + "vtable_address": 32046344, "methods": [ - 27497760, - 27497920, - 27503312, - 27497072, - 27497408, - 27497600, - 26959856, - 27497088 + 27497696, + 27497856, + 27503248, + 27497008, + 27497344, + 27497536, + 26959792, + 27497024 ], "bases": [ { @@ -211048,20 +211048,20 @@ }, { "type_name": "CNmControlParameterTargetNode", - "vtable_address": 32027008, + "vtable_address": 32026944, "methods": [ - 26949328, - 26949344, - 26835568, - 26904800, - 27145424, - 26952992, - 26956464, + 26949264, + 26949280, + 26835504, + 26904736, 27145360, - 27145376, - 26905664, - 26947856, - 26947312 + 26952928, + 26956400, + 27145296, + 27145312, + 26905600, + 26947792, + 26947248 ], "bases": [ { @@ -211105,16 +211105,16 @@ }, { "type_name": "CNmControlParameterTargetNode::CDefinition", - "vtable_address": 32046648, + "vtable_address": 32046584, "methods": [ - 27497808, - 27497920, - 27507152, - 27497168, - 27497456, - 27497696, - 26960048, - 27497184 + 27497744, + 27497856, + 27507088, + 27497104, + 27497392, + 27497632, + 26959984, + 27497120 ], "bases": [ { @@ -211158,20 +211158,20 @@ }, { "type_name": "CNmControlParameterVectorNode", - "vtable_address": 32026896, + "vtable_address": 32026832, "methods": [ - 26949200, - 26949216, - 26835568, - 26904784, - 27145424, - 26951824, - 26955568, + 26949136, + 26949152, + 26835504, + 26904720, 27145360, - 27145376, - 26905744, - 26947808, - 26947296 + 26951760, + 26955504, + 27145296, + 27145312, + 26905680, + 26947744, + 26947232 ], "bases": [ { @@ -211215,16 +211215,16 @@ }, { "type_name": "CNmControlParameterVectorNode::CDefinition", - "vtable_address": 32046568, + "vtable_address": 32046504, "methods": [ - 27497792, - 27497920, - 27505872, - 27497136, - 27497440, - 27497664, - 26959984, - 27497152 + 27497728, + 27497856, + 27505808, + 27497072, + 27497376, + 27497600, + 26959920, + 27497088 ], "bases": [ { @@ -211268,20 +211268,20 @@ }, { "type_name": "CNmCurrentSyncEventIDNode", - "vtable_address": 32028976, + "vtable_address": 32028912, "methods": [ - 26961296, - 26961312, - 26835568, - 26904752, - 27145424, - 27145456, - 27145744, - 26960880, - 27145376, - 26905840, - 26969728, - 26888128 + 26961232, + 26961248, + 26835504, + 26904688, + 27145360, + 27145392, + 27145680, + 26960816, + 27145312, + 26905776, + 26969664, + 26888064 ], "bases": [ { @@ -211325,16 +211325,16 @@ }, { "type_name": "CNmCurrentSyncEventIDNode::CDefinition", - "vtable_address": 32048448, + "vtable_address": 32048384, "methods": [ - 27524528, - 27529328, - 27548032, - 27523952, - 27524176, - 27524336, - 26969104, - 27523968 + 27524464, + 27529264, + 27547968, + 27523888, + 27524112, + 27524272, + 26969040, + 27523904 ], "bases": [ { @@ -211378,20 +211378,20 @@ }, { "type_name": "CNmCurrentSyncEventNode", - "vtable_address": 32029088, + "vtable_address": 32029024, "methods": [ - 26961552, - 26961568, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26960800, - 27145376, - 26905792, - 26969920, - 26888128 + 26961488, + 26961504, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26960736, + 27145312, + 26905728, + 26969856, + 26888064 ], "bases": [ { @@ -211435,16 +211435,16 @@ }, { "type_name": "CNmCurrentSyncEventNode::CDefinition", - "vtable_address": 32048528, + "vtable_address": 32048464, "methods": [ - 27524544, - 27549728, - 27557520, - 27523984, - 27524192, - 27524368, - 26969200, - 27524000 + 27524480, + 27549664, + 27557456, + 27523920, + 27524128, + 27524304, + 26969136, + 27523936 ], "bases": [ { @@ -211488,22 +211488,22 @@ }, { "type_name": "CNmDurationScaleNode", - "vtable_address": 32033656, + "vtable_address": 32033592, "methods": [ - 27066656, - 27066688, + 27066592, + 27066624, 15920016, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27066288, - 27026848, - 27066160, - 27065632, + 27066224, + 27026784, + 27066096, + 27065568, 15919904, - 27066336 + 27066272 ], "bases": [ { @@ -211558,16 +211558,16 @@ }, { "type_name": "CNmDurationScaleNode::CDefinition", - "vtable_address": 32054160, + "vtable_address": 32054096, "methods": [ - 27751408, - 27752496, - 27758336, - 27751008, - 27751104, - 27751360, - 27067440, - 27751024 + 27751344, + 27752432, + 27758272, + 27750944, + 27751040, + 27751296, + 27067376, + 27750960 ], "bases": [ { @@ -211622,7 +211622,7 @@ }, { "type_name": "CNmEntityAttributeEventBase", - "vtable_address": 32041032, + "vtable_address": 32040968, "methods": [], "bases": [ { @@ -211644,16 +211644,16 @@ }, { "type_name": "CNmEntityAttributeEventBase", - "vtable_address": 32041048, - "methods": [ - 27329392, - 27330896, - 27333712, - 27328832, - 27329136, - 27329184, - 27236192, - 27329536 + "vtable_address": 32040984, + "methods": [ + 27329328, + 27330832, + 27333648, + 27328768, + 27329072, + 27329120, + 27236128, + 27329472 ], "bases": [ { @@ -211675,16 +211675,16 @@ }, { "type_name": "CNmEntityAttributeFloatEvent", - "vtable_address": 32041208, - "methods": [ - 27329360, - 27338480, - 27338464, - 27328864, - 27329952, - 27330112, - 27236192, - 27329408 + "vtable_address": 32041144, + "methods": [ + 27329296, + 27338416, + 27338400, + 27328800, + 27329888, + 27330048, + 27236128, + 27329344 ], "bases": [ { @@ -211717,16 +211717,16 @@ }, { "type_name": "CNmEntityAttributeIntEvent", - "vtable_address": 32041128, + "vtable_address": 32041064, "methods": [ - 27329376, - 27331312, - 27335200, - 27328848, - 27329248, - 27329296, - 27236192, - 27329472 + 27329312, + 27331248, + 27335136, + 27328784, + 27329184, + 27329232, + 27236128, + 27329408 ], "bases": [ { @@ -211759,12 +211759,12 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32038000, + "vtable_address": 32037936, "methods": [ - 27236224, - 27237152, - 27239872, - 27236176 + 27236160, + 27237088, + 27239808, + 27236112 ], "bases": [], "model": { @@ -211775,7 +211775,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32039696, + "vtable_address": 32039632, "methods": [], "bases": [], "model": { @@ -211786,7 +211786,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32040152, + "vtable_address": 32040088, "methods": [], "bases": [], "model": { @@ -211797,7 +211797,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32040280, + "vtable_address": 32040216, "methods": [], "bases": [], "model": { @@ -211808,7 +211808,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32040408, + "vtable_address": 32040344, "methods": [], "bases": [], "model": { @@ -211819,7 +211819,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32040600, + "vtable_address": 32040536, "methods": [], "bases": [], "model": { @@ -211830,7 +211830,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32040728, + "vtable_address": 32040664, "methods": [], "bases": [], "model": { @@ -211841,7 +211841,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32040856, + "vtable_address": 32040792, "methods": [], "bases": [], "model": { @@ -211852,7 +211852,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32041352, + "vtable_address": 32041288, "methods": [], "bases": [], "model": { @@ -211863,7 +211863,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32041560, + "vtable_address": 32041496, "methods": [], "bases": [], "model": { @@ -211874,7 +211874,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32041688, + "vtable_address": 32041624, "methods": [], "bases": [], "model": { @@ -211885,7 +211885,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32041976, + "vtable_address": 32041912, "methods": [], "bases": [], "model": { @@ -211896,7 +211896,7 @@ }, { "type_name": "CNmEvent", - "vtable_address": 32042464, + "vtable_address": 32042400, "methods": [], "bases": [], "model": { @@ -211907,9 +211907,9 @@ }, { "type_name": "CNmEvent", - "vtable_address": 33351456, + "vtable_address": 33351392, "methods": [ - 27367872 + 27367808 ], "bases": [], "model": { @@ -211920,7 +211920,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 32471712, + "vtable_address": 32471648, "methods": [ 13922128 ], @@ -211933,7 +211933,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 32471872, + "vtable_address": 32471808, "methods": [ 13920896 ], @@ -211946,7 +211946,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 32472032, + "vtable_address": 32471968, "methods": [ 13919664 ], @@ -211959,7 +211959,7 @@ }, { "type_name": "CNmEventConsumer", - "vtable_address": 32472192, + "vtable_address": 32472128, "methods": [ 13918432 ], @@ -211972,7 +211972,7 @@ }, { "type_name": "CNmEventConsumerAttributes", - "vtable_address": 30781440, + "vtable_address": 30781376, "methods": [ 13914816, 13914240, @@ -211980,7 +211980,7 @@ 13914272, 13916528, 13916816, - 19823328, + 19823200, 13914288 ], "bases": [ @@ -212003,7 +212003,7 @@ }, { "type_name": "CNmEventConsumerLegacy", - "vtable_address": 30781520, + "vtable_address": 30781456, "methods": [ 13914800, 13914240, @@ -212011,7 +212011,7 @@ 13914304, 13914320, 13914832, - 19806464 + 19806336 ], "bases": [ { @@ -212033,7 +212033,7 @@ }, { "type_name": "CNmEventConsumerParticle", - "vtable_address": 30781592, + "vtable_address": 30781528, "methods": [ 13914784, 13914240, @@ -212041,7 +212041,7 @@ 13914336, 13915952, 13916432, - 19811536 + 19811408 ], "bases": [ { @@ -212063,7 +212063,7 @@ }, { "type_name": "CNmEventConsumerSound", - "vtable_address": 30781664, + "vtable_address": 30781600, "methods": [ 13914768, 13914240, @@ -212071,7 +212071,7 @@ 13914352, 13916016, 13915856, - 19812384 + 19812256 ], "bases": [ { @@ -212093,20 +212093,20 @@ }, { "type_name": "CNmExternalGraphNode", - "vtable_address": 32029448, + "vtable_address": 32029384, "methods": [ - 26970112, - 26970144, - 26835568, + 26970048, + 26970080, + 26835504, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27145376, - 26971920, - 26970208, - 26970320, + 27145312, + 26971856, + 26970144, + 26970256, 15919904 ], "bases": [ @@ -212140,16 +212140,16 @@ }, { "type_name": "CNmExternalGraphNode::CDefinition", - "vtable_address": 32047416, + "vtable_address": 32047352, "methods": [ - 27522176, - 27522192, - 27523520, 27522112, - 27522144, - 27522160, - 26972048, - 27522128 + 27522128, + 27523456, + 27522048, + 27522080, + 27522096, + 26971984, + 27522064 ], "bases": [ { @@ -212182,20 +212182,20 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode", - "vtable_address": 32023728, - "methods": [ - 26888592, - 26888896, - 26835568, - 26888144, - 27145424, - 27145456, - 27145744, - 26888160, - 27145376, - 26888112, - 26888256, - 26888128 + "vtable_address": 32023664, + "methods": [ + 26888528, + 26888832, + 26835504, + 26888080, + 27145360, + 27145392, + 27145680, + 26888096, + 27145312, + 26888048, + 26888192, + 26888064 ], "bases": [ { @@ -212239,16 +212239,16 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode::CDefinition", - "vtable_address": 32043696, + "vtable_address": 32043632, "methods": [ - 27415120, - 27417584, - 27421040, - 27414912, - 27415024, - 27415072, - 26899616, - 27414928 + 27415056, + 27417520, + 27420976, + 27414848, + 27414960, + 27415008, + 26899552, + 27414864 ], "bases": [ { @@ -212292,20 +212292,20 @@ }, { "type_name": "CNmFloatAngleMathNode", - "vtable_address": 32030704, + "vtable_address": 32030640, "methods": [ - 26978832, - 26978848, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26972608, - 26972928, - 26905792, - 26974064, - 26888128 + 26978768, + 26978784, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26972544, + 26972864, + 26905728, + 26974000, + 26888064 ], "bases": [ { @@ -212349,16 +212349,16 @@ }, { "type_name": "CNmFloatAngleMathNode::CDefinition", - "vtable_address": 32050304, + "vtable_address": 32050240, "methods": [ - 27574752, - 27605248, - 27617184, - 27574304, - 27574480, - 27574576, - 26985168, - 27574320 + 27574688, + 27605184, + 27617120, + 27574240, + 27574416, + 27574512, + 26985104, + 27574256 ], "bases": [ { @@ -212402,20 +212402,20 @@ }, { "type_name": "CNmFloatClampNode", - "vtable_address": 32030032, + "vtable_address": 32029968, "methods": [ - 26979024, - 26979040, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26972320, - 26972928, - 26905792, - 26973504, - 26888128 + 26978960, + 26978976, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26972256, + 26972864, + 26905728, + 26973440, + 26888064 ], "bases": [ { @@ -212459,16 +212459,16 @@ }, { "type_name": "CNmFloatClampNode::CDefinition", - "vtable_address": 32049744, + "vtable_address": 32049680, "methods": [ - 27574640, - 27588112, - 27621552, - 27574080, - 27574384, - 27574512, - 26984560, - 27574096 + 27574576, + 27588048, + 27621488, + 27574016, + 27574320, + 27574448, + 26984496, + 27574032 ], "bases": [ { @@ -212512,20 +212512,20 @@ }, { "type_name": "CNmFloatComparisonNode", - "vtable_address": 32030480, + "vtable_address": 32030416, "methods": [ - 26979280, - 26979296, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26972496, - 26972976, - 26901968, - 26973632, - 26888128 + 26979216, + 26979232, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26972432, + 26972912, + 26901904, + 26973568, + 26888064 ], "bases": [ { @@ -212569,16 +212569,16 @@ }, { "type_name": "CNmFloatComparisonNode::CDefinition", - "vtable_address": 32050064, + "vtable_address": 32050000, "methods": [ - 27574704, - 27598784, - 27613792, - 27574208, - 27574432, - 27574592, - 26984976, - 27574224 + 27574640, + 27598720, + 27613728, + 27574144, + 27574368, + 27574528, + 26984912, + 27574160 ], "bases": [ { @@ -212622,16 +212622,16 @@ }, { "type_name": "CNmFloatCurveEvent", - "vtable_address": 32040296, + "vtable_address": 32040232, "methods": [ - 27308592, - 27310048, - 27312144, - 27308576, - 27308672, - 27308800, - 27236192, - 27308608 + 27308528, + 27309984, + 27312080, + 27308512, + 27308608, + 27308736, + 27236128, + 27308544 ], "bases": [ { @@ -212653,20 +212653,20 @@ }, { "type_name": "CNmFloatCurveEventNode", - "vtable_address": 32029312, + "vtable_address": 32029248, "methods": [ - 26961488, - 26961504, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26960832, - 26960928, - 26905792, - 26961744, - 26888128 + 26961424, + 26961440, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26960768, + 26960864, + 26905728, + 26961680, + 26888064 ], "bases": [ { @@ -212710,16 +212710,16 @@ }, { "type_name": "CNmFloatCurveEventNode::CDefinition", - "vtable_address": 32048688, + "vtable_address": 32048624, "methods": [ - 27524576, - 27554288, - 27559408, - 27524048, - 27524224, - 27524384, - 26969392, - 27524064 + 27524512, + 27554224, + 27559344, + 27523984, + 27524160, + 27524320, + 26969328, + 27524000 ], "bases": [ { @@ -212763,20 +212763,20 @@ }, { "type_name": "CNmFloatCurveNode", - "vtable_address": 32030256, + "vtable_address": 32030192, "methods": [ - 26979520, - 26979648, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26972368, - 26972928, - 26905792, - 26978112, - 26888128 + 26979456, + 26979584, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26972304, + 26972864, + 26905728, + 26978048, + 26888064 ], "bases": [ { @@ -212820,16 +212820,16 @@ }, { "type_name": "CNmFloatCurveNode::CDefinition", - "vtable_address": 32049904, + "vtable_address": 32049840, "methods": [ - 27574672, - 27592288, - 27595024, - 27574144, - 27578160, - 27578288, - 26984736, - 27574160 + 27574608, + 27592224, + 27594960, + 27574080, + 27578096, + 27578224, + 26984672, + 27574096 ], "bases": [ { @@ -212873,20 +212873,20 @@ }, { "type_name": "CNmFloatEaseNode", - "vtable_address": 32030144, + "vtable_address": 32030080, "methods": [ - 26978960, - 26978976, - 26835568, - 26904768, - 27145424, - 26980880, - 26983056, - 26972656, - 26972928, - 26905792, - 26974624, - 26888128 + 26978896, + 26978912, + 26835504, + 26904704, + 27145360, + 26980816, + 26982992, + 26972592, + 26972864, + 26905728, + 26974560, + 26888064 ], "bases": [ { @@ -212930,16 +212930,16 @@ }, { "type_name": "CNmFloatEaseNode::CDefinition", - "vtable_address": 32049824, + "vtable_address": 32049760, "methods": [ - 27574656, - 27590496, - 27610704, - 27574112, - 27574400, - 27574528, - 26984656, - 27574128 + 27574592, + 27590432, + 27610640, + 27574048, + 27574336, + 27574464, + 26984592, + 27574064 ], "bases": [ { @@ -212983,20 +212983,20 @@ }, { "type_name": "CNmFloatMathNode", - "vtable_address": 32030368, + "vtable_address": 32030304, "methods": [ - 26978896, - 26978912, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26972416, - 26972976, - 26905792, - 26978224, - 26888128 + 26978832, + 26978848, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26972352, + 26972912, + 26905728, + 26978160, + 26888064 ], "bases": [ { @@ -213040,16 +213040,16 @@ }, { "type_name": "CNmFloatMathNode::CDefinition", - "vtable_address": 32049984, + "vtable_address": 32049920, "methods": [ - 27574688, - 27596400, - 27612496, - 27574176, - 27574416, - 27574544, - 26984864, - 27574192 + 27574624, + 27596336, + 27612432, + 27574112, + 27574352, + 27574480, + 26984800, + 27574128 ], "bases": [ { @@ -213093,20 +213093,20 @@ }, { "type_name": "CNmFloatRangeComparisonNode", - "vtable_address": 32030592, + "vtable_address": 32030528, "methods": [ - 26979216, - 26979232, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26972560, - 26972928, - 26901968, - 26973904, - 26888128 + 26979152, + 26979168, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26972496, + 26972864, + 26901904, + 26973840, + 26888064 ], "bases": [ { @@ -213150,16 +213150,16 @@ }, { "type_name": "CNmFloatRangeComparisonNode::CDefinition", - "vtable_address": 32050144, + "vtable_address": 32050080, "methods": [ - 27574720, - 27601232, - 27619568, - 27574240, - 27574448, - 27574608, - 26985088, - 27574256 + 27574656, + 27601168, + 27619504, + 27574176, + 27574384, + 27574544, + 26985024, + 27574192 ], "bases": [ { @@ -213203,20 +213203,20 @@ }, { "type_name": "CNmFloatRemapNode", - "vtable_address": 32029920, + "vtable_address": 32029856, "methods": [ - 26979088, - 26979104, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26972272, - 26972928, - 26905792, - 26973296, - 26888128 + 26979024, + 26979040, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26972208, + 26972864, + 26905728, + 26973232, + 26888064 ], "bases": [ { @@ -213260,16 +213260,16 @@ }, { "type_name": "CNmFloatRemapNode::CDefinition", - "vtable_address": 32049664, + "vtable_address": 32049600, "methods": [ - 27574624, - 27584048, - 27586992, - 27574048, - 27574368, - 27574496, - 26984464, - 27574064 + 27574560, + 27583984, + 27586928, + 27573984, + 27574304, + 27574432, + 26984400, + 27574000 ], "bases": [ { @@ -213313,20 +213313,20 @@ }, { "type_name": "CNmFloatSelectorNode", - "vtable_address": 32030816, + "vtable_address": 32030752, "methods": [ - 26984128, - 26979344, - 26835568, - 26904768, - 27145424, - 26979792, - 26981968, - 26972768, - 26973040, - 26905792, - 26976336, - 26888128 + 26984064, + 26979280, + 26835504, + 26904704, + 27145360, + 26979728, + 26981904, + 26972704, + 26972976, + 26905728, + 26976272, + 26888064 ], "bases": [ { @@ -213370,16 +213370,16 @@ }, { "type_name": "CNmFloatSelectorNode::CDefinition", - "vtable_address": 32050384, + "vtable_address": 32050320, "methods": [ - 27574768, - 27607600, - 27624224, - 27574336, - 27578912, - 27579184, - 26985280, - 27574352 + 27574704, + 27607536, + 27624160, + 27574272, + 27578848, + 27579120, + 26985216, + 27574288 ], "bases": [ { @@ -213423,20 +213423,20 @@ }, { "type_name": "CNmFloatSwitchNode", - "vtable_address": 32029808, + "vtable_address": 32029744, "methods": [ - 26979152, - 26979168, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26972176, - 26972848, - 26905792, - 26973120, - 26888128 + 26979088, + 26979104, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26972112, + 26972784, + 26905728, + 26973056, + 26888064 ], "bases": [ { @@ -213480,16 +213480,16 @@ }, { "type_name": "CNmFloatSwitchNode::CDefinition", - "vtable_address": 32050224, + "vtable_address": 32050160, "methods": [ - 27574736, - 27603488, - 27616192, - 27574272, - 27574464, - 27574560, - 26984304, - 27574288 + 27574672, + 27603424, + 27616128, + 27574208, + 27574400, + 27574496, + 26984240, + 27574224 ], "bases": [ { @@ -213533,7 +213533,7 @@ }, { "type_name": "CNmFloatValueNode", - "vtable_address": 32028064, + "vtable_address": 32028000, "methods": [], "bases": [ { @@ -213566,7 +213566,7 @@ }, { "type_name": "CNmFloatValueNode", - "vtable_address": 32029792, + "vtable_address": 32029728, "methods": [], "bases": [ { @@ -213599,7 +213599,7 @@ }, { "type_name": "CNmFloatValueNode::CDefinition", - "vtable_address": 32047792, + "vtable_address": 32047728, "methods": [], "bases": [ { @@ -213632,7 +213632,7 @@ }, { "type_name": "CNmFloatValueNode::CDefinition", - "vtable_address": 32049648, + "vtable_address": 32049584, "methods": [], "bases": [ { @@ -213665,9 +213665,9 @@ }, { "type_name": "CNmFloatValueNode::CDefinition", - "vtable_address": 33359424, + "vtable_address": 33359360, "methods": [ - 27504480 + 27504416 ], "bases": [], "model": { @@ -213678,20 +213678,20 @@ }, { "type_name": "CNmFollowBoneNode", - "vtable_address": 32030952, + "vtable_address": 32030888, "methods": [ - 26986000, + 26985936, + 26985968, 26986032, - 26986096, 15919920, 15921296, - 26986736, - 26987264, + 26986672, + 26987200, 15921328, - 26985936, - 27026848, - 26986176, - 26988000, + 26985872, + 27026784, + 26986112, + 26987936, 15919904 ], "bases": [ @@ -213736,16 +213736,16 @@ }, { "type_name": "CNmFollowBoneNode::CDefinition", - "vtable_address": 32051336, + "vtable_address": 32051272, "methods": [ - 27624784, - 27626064, - 27629744, 27624720, - 27624752, - 27624768, - 26990320, - 27624736 + 27626000, + 27629680, + 27624656, + 27624688, + 27624704, + 26990256, + 27624672 ], "bases": [ { @@ -213789,23 +213789,23 @@ }, { "type_name": "CNmFollowBoneTask", - "vtable_address": 32022008, + "vtable_address": 32021944, "methods": [ - 26775472, - 26775504, - 26775680, - 26774704, - 26805664, + 26775408, + 26775440, + 26775616, + 26774640, + 26805600, 15919936, 15919952, - 26774656, - 26775936, - 26778304, - 26774672, - 26775392, - 26774688, + 26774592, + 26775872, + 26778240, + 26774608, + 26775328, + 26774624, 15920000, - 26806560 + 26806496 ], "bases": [ { @@ -213827,27 +213827,27 @@ }, { "type_name": "CNmFollowBoneTask", - "vtable_address": 32039536, + "vtable_address": 32039472, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33346112 + "offset_to_top": 33346048 } } }, { "type_name": "CNmFootEvent", - "vtable_address": 32039712, + "vtable_address": 32039648, "methods": [ - 27302912, - 27303728, - 27305888, - 27302864, - 27302880, - 27302896, - 27236192, - 27302928 + 27302848, + 27303664, + 27305824, + 27302800, + 27302816, + 27302832, + 27236128, + 27302864 ], "bases": [ { @@ -213869,20 +213869,20 @@ }, { "type_name": "CNmFootEventConditionNode", - "vtable_address": 32028528, + "vtable_address": 32028464, "methods": [ - 26961104, - 26961120, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26960768, - 27145376, - 26901968, - 26963424, - 26888128 + 26961040, + 26961056, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26960704, + 27145312, + 26901904, + 26963360, + 26888064 ], "bases": [ { @@ -213926,16 +213926,16 @@ }, { "type_name": "CNmFootEventConditionNode::CDefinition", - "vtable_address": 32048128, + "vtable_address": 32048064, "methods": [ - 27524464, - 27539520, - 27569488, - 27523824, - 27524112, - 27524256, - 26968736, - 27523840 + 27524400, + 27539456, + 27569424, + 27523760, + 27524048, + 27524192, + 26968672, + 27523776 ], "bases": [ { @@ -213979,20 +213979,20 @@ }, { "type_name": "CNmFootstepEventIDNode", - "vtable_address": 32028752, + "vtable_address": 32028688, "methods": [ - 26961360, - 26961376, - 26835568, - 26904752, - 27145424, - 27145456, - 27145744, - 26960880, - 27145376, - 26905840, - 26964784, - 26888128 + 26961296, + 26961312, + 26835504, + 26904688, + 27145360, + 27145392, + 27145680, + 26960816, + 27145312, + 26905776, + 26964720, + 26888064 ], "bases": [ { @@ -214036,16 +214036,16 @@ }, { "type_name": "CNmFootstepEventIDNode::CDefinition", - "vtable_address": 32048288, + "vtable_address": 32048224, "methods": [ - 27524496, - 27543504, - 27559424, - 27523888, - 27524144, - 27524320, - 26968928, - 27523904 + 27524432, + 27543440, + 27559360, + 27523824, + 27524080, + 27524256, + 26968864, + 27523840 ], "bases": [ { @@ -214089,20 +214089,20 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode", - "vtable_address": 32028640, + "vtable_address": 32028576, "methods": [ - 26961616, - 26961632, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26960800, - 27145376, - 26905792, - 26966208, - 26888128 + 26961552, + 26961568, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26960736, + 27145312, + 26905728, + 26966144, + 26888064 ], "bases": [ { @@ -214146,16 +214146,16 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode::CDefinition", - "vtable_address": 32048208, + "vtable_address": 32048144, "methods": [ - 27524480, - 27541712, - 27568608, - 27523856, - 27524128, - 27524352, - 26968832, - 27523872 + 27524416, + 27541648, + 27568544, + 27523792, + 27524064, + 27524288, + 26968768, + 27523808 ], "bases": [ { @@ -214199,16 +214199,16 @@ }, { "type_name": "CNmFrameSnapEvent", - "vtable_address": 32040424, + "vtable_address": 32040360, "methods": [ - 27312272, - 27313072, - 27315184, - 27312224, - 27312240, - 27312256, - 27236192, - 27312288 + 27312208, + 27313008, + 27315120, + 27312160, + 27312176, + 27312192, + 27236128, + 27312224 ], "bases": [ { @@ -214230,20 +214230,20 @@ }, { "type_name": "CNmGraphEventConditionNode", - "vtable_address": 32028416, + "vtable_address": 32028352, "methods": [ - 26961168, - 26961184, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26960768, - 27145376, - 26901968, - 26968640, - 26888128 + 26961104, + 26961120, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26960704, + 27145312, + 26901904, + 26968576, + 26888064 ], "bases": [ { @@ -214287,16 +214287,16 @@ }, { "type_name": "CNmGraphEventConditionNode::CDefinition", - "vtable_address": 32048048, + "vtable_address": 32047984, "methods": [ - 27524448, - 27538496, - 27573376, - 27523792, - 27528896, - 27529168, - 26968128, - 27523808 + 27524384, + 27538432, + 27573312, + 27523728, + 27528832, + 27529104, + 26968064, + 27523744 ], "bases": [ { @@ -214340,7 +214340,7 @@ }, { "type_name": "CNmGraphNode", - "vtable_address": 32035880, + "vtable_address": 32035816, "methods": [], "bases": [], "model": { @@ -214351,7 +214351,7 @@ }, { "type_name": "CNmGraphNode::CDefinition", - "vtable_address": 33379648, + "vtable_address": 33379584, "methods": [], "bases": [], "model": { @@ -214362,7 +214362,7 @@ }, { "type_name": "CNmGraphNode::CDefinition", - "vtable_address": 33379776, + "vtable_address": 33379712, "methods": [], "bases": [], "model": { @@ -214373,20 +214373,20 @@ }, { "type_name": "CNmIDComparisonNode", - "vtable_address": 32031168, + "vtable_address": 32031104, "methods": [ - 26991776, - 26991792, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26990480, - 26990752, - 26901968, - 26991136, - 26888128 + 26991712, + 26991728, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26990416, + 26990688, + 26901904, + 26991072, + 26888064 ], "bases": [ { @@ -214430,16 +214430,16 @@ }, { "type_name": "CNmIDComparisonNode::CDefinition", - "vtable_address": 32051536, + "vtable_address": 32051472, "methods": [ - 27629984, - 27641072, - 27645600, - 27629824, - 27630224, - 27630304, - 26992960, - 27629840 + 27629920, + 27641008, + 27645536, + 27629760, + 27630160, + 27630240, + 26992896, + 27629776 ], "bases": [ { @@ -214483,16 +214483,16 @@ }, { "type_name": "CNmIDEvent", - "vtable_address": 32040616, + "vtable_address": 32040552, "methods": [ - 27315312, - 27316080, - 27318032, - 27315264, - 27315280, - 27315296, - 27236192, - 27315328 + 27315248, + 27316016, + 27317968, + 27315200, + 27315216, + 27315232, + 27236128, + 27315264 ], "bases": [ { @@ -214514,20 +214514,20 @@ }, { "type_name": "CNmIDEventConditionNode", - "vtable_address": 32028080, + "vtable_address": 32028016, "methods": [ - 26961232, - 26961248, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26960768, - 26960912, - 26901968, - 26967840, - 26888128 + 26961168, + 26961184, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26960704, + 26960848, + 26901904, + 26967776, + 26888064 ], "bases": [ { @@ -214571,16 +214571,16 @@ }, { "type_name": "CNmIDEventConditionNode::CDefinition", - "vtable_address": 32047808, + "vtable_address": 32047744, "methods": [ - 27524400, - 27530480, - 27570976, - 27523696, - 27528784, - 27529008, - 26967200, - 27523712 + 27524336, + 27530416, + 27570912, + 27523632, + 27528720, + 27528944, + 26967136, + 27523648 ], "bases": [ { @@ -214624,20 +214624,20 @@ }, { "type_name": "CNmIDEventNode", - "vtable_address": 32028192, + "vtable_address": 32028128, "methods": [ - 26961424, - 26961440, - 26835568, - 26904752, - 27145424, - 27145456, - 27145744, - 26960880, - 26960912, - 26905840, - 26965488, - 26888128 + 26961360, + 26961376, + 26835504, + 26904688, + 27145360, + 27145392, + 27145680, + 26960816, + 26960848, + 26905776, + 26965424, + 26888064 ], "bases": [ { @@ -214681,16 +214681,16 @@ }, { "type_name": "CNmIDEventNode::CDefinition", - "vtable_address": 32047888, + "vtable_address": 32047824, "methods": [ - 27524416, - 27531296, - 27559920, - 27523728, - 27524080, - 27524304, - 26967936, - 27523744 + 27524352, + 27531232, + 27559856, + 27523664, + 27524016, + 27524240, + 26967872, + 27523680 ], "bases": [ { @@ -214734,20 +214734,20 @@ }, { "type_name": "CNmIDEventPercentageThroughNode", - "vtable_address": 32028304, + "vtable_address": 32028240, "methods": [ - 26961680, - 26961696, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26960800, - 27145376, - 26905792, - 26963936, - 26888128 + 26961616, + 26961632, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26960736, + 27145312, + 26905728, + 26963872, + 26888064 ], "bases": [ { @@ -214791,16 +214791,16 @@ }, { "type_name": "CNmIDEventPercentageThroughNode::CDefinition", - "vtable_address": 32047968, + "vtable_address": 32047904, "methods": [ - 27524432, - 27533280, - 27560736, - 27523760, - 27524096, - 27524240, - 26968032, - 27523776 + 27524368, + 27533216, + 27560672, + 27523696, + 27524032, + 27524176, + 26967968, + 27523712 ], "bases": [ { @@ -214844,20 +214844,20 @@ }, { "type_name": "CNmIDSelectorNode", - "vtable_address": 32031504, + "vtable_address": 32031440, "methods": [ - 26992144, - 26991968, - 26835568, - 26904752, - 27145424, - 26991712, - 26992896, - 26990672, - 26990880, - 26905840, - 26992320, - 26888128 + 26992080, + 26991904, + 26835504, + 26904688, + 27145360, + 26991648, + 26992832, + 26990608, + 26990816, + 26905776, + 26992256, + 26888064 ], "bases": [ { @@ -214901,16 +214901,16 @@ }, { "type_name": "CNmIDSelectorNode::CDefinition", - "vtable_address": 32051776, + "vtable_address": 32051712, "methods": [ - 27630032, - 27659184, - 27662912, - 27629920, - 27636800, - 27637072, - 26993312, - 27629936 + 27629968, + 27659120, + 27662848, + 27629856, + 27636736, + 27637008, + 26993248, + 27629872 ], "bases": [ { @@ -214954,20 +214954,20 @@ }, { "type_name": "CNmIDSwitchNode", - "vtable_address": 32031392, + "vtable_address": 32031328, "methods": [ - 26991904, - 26991920, - 26835568, - 26904752, - 27145424, - 27145456, - 27145744, - 26990528, - 26990800, - 26905840, - 26990960, - 26888128 + 26991840, + 26991856, + 26835504, + 26904688, + 27145360, + 27145392, + 27145680, + 26990464, + 26990736, + 26905776, + 26990896, + 26888064 ], "bases": [ { @@ -215011,16 +215011,16 @@ }, { "type_name": "CNmIDSwitchNode::CDefinition", - "vtable_address": 32051696, + "vtable_address": 32051632, "methods": [ - 27630016, - 27653344, - 27658448, - 27629888, 27629952, - 27629968, - 26993136, - 27629904 + 27653280, + 27658384, + 27629824, + 27629888, + 27629904, + 26993072, + 27629840 ], "bases": [ { @@ -215064,20 +215064,20 @@ }, { "type_name": "CNmIDToFloatNode", - "vtable_address": 32031280, + "vtable_address": 32031216, "methods": [ - 26991840, - 26991856, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26990624, - 26990752, - 26905792, - 26991472, - 26888128 + 26991776, + 26991792, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26990560, + 26990688, + 26905728, + 26991408, + 26888064 ], "bases": [ { @@ -215121,16 +215121,16 @@ }, { "type_name": "CNmIDToFloatNode::CDefinition", - "vtable_address": 32051616, + "vtable_address": 32051552, "methods": [ - 27630000, - 27646608, - 27652368, - 27629856, - 27630384, - 27630512, - 26993040, - 27629872 + 27629936, + 27646544, + 27652304, + 27629792, + 27630320, + 27630448, + 26992976, + 27629808 ], "bases": [ { @@ -215174,7 +215174,7 @@ }, { "type_name": "CNmIDValueNode", - "vtable_address": 32031152, + "vtable_address": 32031088, "methods": [], "bases": [ { @@ -215207,7 +215207,7 @@ }, { "type_name": "CNmIDValueNode::CDefinition", - "vtable_address": 32051520, + "vtable_address": 32051456, "methods": [], "bases": [ { @@ -215240,9 +215240,9 @@ }, { "type_name": "CNmIDValueNode::CDefinition", - "vtable_address": 33359584, + "vtable_address": 33359520, "methods": [ - 27503200 + 27503136 ], "bases": [], "model": { @@ -215253,27 +215253,27 @@ }, { "type_name": "CNmIKRig", - "vtable_address": 32037416, + "vtable_address": 32037352, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33381472 + "offset_to_top": 33381408 } } }, { "type_name": "CNmIsInactiveBranchConditionNode::CDefinition", - "vtable_address": 32054760, + "vtable_address": 32054696, "methods": [ - 27788160, - 27788192, - 27795120, - 27787984, - 27788064, - 27788112, - 27076560, - 27788000 + 27788096, + 27788128, + 27795056, + 27787920, + 27788000, + 27788048, + 27076496, + 27787936 ], "bases": [ { @@ -215317,20 +215317,20 @@ }, { "type_name": "CNmIsTargetSetNode", - "vtable_address": 32034568, + "vtable_address": 32034504, "methods": [ - 27087136, - 27087152, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 27086544, - 27086736, - 26901968, - 27088640, - 26888128 + 27087072, + 27087088, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 27086480, + 27086672, + 26901904, + 27088576, + 26888064 ], "bases": [ { @@ -215374,16 +215374,16 @@ }, { "type_name": "CNmIsTargetSetNode::CDefinition", - "vtable_address": 32055472, + "vtable_address": 32055408, "methods": [ - 27830576, - 27831376, - 27832976, - 27830320, - 27830448, 27830512, - 27090112, - 27830336 + 27831312, + 27832912, + 27830256, + 27830384, + 27830448, + 27090048, + 27830272 ], "bases": [ { @@ -215427,20 +215427,20 @@ }, { "type_name": "CNmLayerBlendNode", - "vtable_address": 32031640, + "vtable_address": 32031576, "methods": [ - 26995152, - 26995040, - 26993968, + 26995088, + 26994976, + 26993904, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 26994880, - 26995248, - 26993984, - 27010096, + 26994816, + 26995184, + 26993920, + 27010032, 15919904 ], "bases": [ @@ -215474,16 +215474,16 @@ }, { "type_name": "CNmLayerBlendNode::CDefinition", - "vtable_address": 32052008, + "vtable_address": 32051944, "methods": [ - 27663248, - 27677104, - 27681984, - 27662992, + 27663184, + 27677040, + 27681920, + 27662928, + 27663200, 27663264, - 27663328, - 26995424, - 27663008 + 26995360, + 27662944 ], "bases": [ { @@ -215516,16 +215516,16 @@ }, { "type_name": "CNmLegacyEvent", - "vtable_address": 32040744, + "vtable_address": 32040680, "methods": [ - 27318192, - 27319024, - 27321040, - 27318112, 27318128, - 27318208, - 27236192, - 26834496 + 27318960, + 27320976, + 27318048, + 27318064, + 27318144, + 27236128, + 26834432 ], "bases": [ { @@ -215547,16 +215547,16 @@ }, { "type_name": "CNmMaterialAttributeEvent", - "vtable_address": 32040872, + "vtable_address": 32040808, "methods": [ - 27321136, - 27324320, - 27328752, - 27321120, - 27321216, - 27322064, - 27236192, - 27321152 + 27321072, + 27324256, + 27328688, + 27321056, + 27321152, + 27322000, + 27236128, + 27321088 ], "bases": [ { @@ -215578,23 +215578,23 @@ }, { "type_name": "CNmModelSpaceBlendTask", - "vtable_address": 32020888, + "vtable_address": 32020824, "methods": [ - 26711504, - 26714208, - 26715360, - 26720768, - 26698768, + 26711440, + 26714144, + 26715296, + 26720704, + 26698704, 15919936, 15919952, - 26698656, - 26711680, - 26731520, - 26698752, - 15919968, - 26698672, + 26698592, + 26711616, + 26731456, 26698688, - 26713920 + 15919968, + 26698608, + 26698624, + 26713856 ], "bases": [ { @@ -215627,20 +215627,20 @@ }, { "type_name": "CNmNotNode", - "vtable_address": 32024384, + "vtable_address": 32024320, "methods": [ + 26901840, + 26901856, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26900880, + 26901152, 26901904, - 26901920, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26900944, - 26901216, - 26901968, - 26901376, - 26888128 + 26901312, + 26888064 ], "bases": [ { @@ -215684,16 +215684,16 @@ }, { "type_name": "CNmNotNode::CDefinition", - "vtable_address": 32044256, + "vtable_address": 32044192, "methods": [ - 27436160, - 27439184, - 27446352, - 27436064, 27436096, - 27436112, - 26904608, - 27436080 + 27439120, + 27446288, + 27436000, + 27436032, + 27436048, + 26904544, + 27436016 ], "bases": [ { @@ -215737,20 +215737,20 @@ }, { "type_name": "CNmOrNode", - "vtable_address": 32024272, + "vtable_address": 32024208, "methods": [ - 26902128, - 26902016, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26901104, - 26901264, - 26901968, - 26901696, - 26888128 + 26902064, + 26901952, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26901040, + 26901200, + 26901904, + 26901632, + 26888064 ], "bases": [ { @@ -215794,16 +215794,16 @@ }, { "type_name": "CNmOrNode::CDefinition", - "vtable_address": 32044176, + "vtable_address": 32044112, "methods": [ - 27436144, - 27439648, - 27443904, - 27436032, - 27436400, - 27436560, - 26903520, - 27436048 + 27436080, + 27439584, + 27443840, + 27435968, + 27436336, + 27436496, + 26903456, + 27435984 ], "bases": [ { @@ -215847,16 +215847,16 @@ }, { "type_name": "CNmOrientationWarpEvent", - "vtable_address": 32042480, + "vtable_address": 32042416, "methods": [ - 27366192, - 27366544, - 27367984, - 27366096, 27366128, - 27366160, - 27236192, - 27366560 + 27366480, + 27367920, + 27366032, + 27366064, + 27366096, + 27236128, + 27366496 ], "bases": [ { @@ -215878,21 +215878,21 @@ }, { "type_name": "CNmOrientationWarpNode", - "vtable_address": 32031784, + "vtable_address": 32031720, "methods": [ - 27012528, - 27012416, - 27011888, + 27012464, + 27012352, + 27011824, 15919920, 15921296, - 27012624, - 27014928, + 27012560, + 27014864, 15921328, - 27012096, - 27011872, - 27011904, - 27021312, - 27012176 + 27012032, + 27011808, + 27011840, + 27021248, + 27012112 ], "bases": [ { @@ -215925,16 +215925,16 @@ }, { "type_name": "CNmOrientationWarpNode::CDefinition", - "vtable_address": 32052264, + "vtable_address": 32052200, "methods": [ - 27682128, - 27683536, - 27688160, 27682064, - 27682096, - 27682112, - 27017520, - 27682080 + 27683472, + 27688096, + 27682000, + 27682032, + 27682048, + 27017456, + 27682016 ], "bases": [ { @@ -215967,23 +215967,23 @@ }, { "type_name": "CNmOverlayBlendTask", - "vtable_address": 32020616, + "vtable_address": 32020552, "methods": [ - 26711568, - 26714784, - 26715968, - 26716592, - 26698768, + 26711504, + 26714720, + 26715904, + 26716528, + 26698704, 15919936, 15919952, + 26698592, + 26711616, + 26731456, 26698656, - 26711680, - 26731520, - 26698720, - 26703392, - 26698672, - 26698688, - 26713920 + 26703328, + 26698608, + 26698624, + 26713856 ], "bases": [ { @@ -216016,7 +216016,7 @@ }, { "type_name": "CNmParameterizedBlendNode", - "vtable_address": 32022792, + "vtable_address": 32022728, "methods": [], "bases": [ { @@ -216049,20 +216049,20 @@ }, { "type_name": "CNmParameterizedBlendNode", - "vtable_address": 32022928, + "vtable_address": 32022864, "methods": [ - 26839280, - 26840096, - 26835728, + 26839216, + 26840032, + 26835664, 15919920, 15921296, - 26835776, - 26836720, + 26835712, + 26836656, 15921328, - 26835616, - 26835584, - 26850032, - 26856192, + 26835552, + 26835520, + 26849968, + 26856128, 15919904 ], "bases": [ @@ -216096,7 +216096,7 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 32043008, + "vtable_address": 32042944, "methods": [], "bases": [ { @@ -216129,16 +216129,16 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 32043024, + "vtable_address": 32042960, "methods": [ - 27372064, - 27378224, - 27399552, - 27371936, - 27373216, - 27373440, - 26844416, - 27371952 + 27372000, + 27378160, + 27399488, + 27371872, + 27373152, + 27373376, + 26844352, + 27371888 ], "bases": [ { @@ -216171,9 +216171,9 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 33351808, + "vtable_address": 33351744, "methods": [ - 27397248 + 27397184 ], "bases": [], "model": { @@ -216184,25 +216184,25 @@ }, { "type_name": "CNmParameterizedClipSelectorNode", - "vtable_address": 32033280, + "vtable_address": 32033216, "methods": [ - 27052304, - 27052512, - 27049856, + 27052240, + 27052448, + 27049792, 15919920, 15921296, - 27052912, - 27051408, + 27052848, + 27051344, 15921328, - 27050352, - 27049872, - 27063584, - 27051168, + 27050288, + 27049808, + 27063520, + 27051104, 15919904, + 27049968, + 27050000, 27050032, - 27050064, - 27050096, - 27050128 + 27050064 ], "bases": [ { @@ -216246,16 +216246,16 @@ }, { "type_name": "CNmParameterizedClipSelectorNode::CDefinition", - "vtable_address": 32053760, + "vtable_address": 32053696, "methods": [ - 27723168, - 27745344, - 27750864, - 27723088, - 27723568, - 27724080, - 27061312, - 27723104 + 27723104, + 27745280, + 27750800, + 27723024, + 27723504, + 27724016, + 27061248, + 27723040 ], "bases": [ { @@ -216299,20 +216299,20 @@ }, { "type_name": "CNmParameterizedSelectorNode", - "vtable_address": 32033160, + "vtable_address": 32033096, "methods": [ - 27052208, - 27052400, - 27049808, + 27052144, + 27052336, + 27049744, 15919920, 15921296, - 27053824, - 27054656, + 27053760, + 27054592, 15921328, - 27050288, - 27049824, - 27065296, - 27050928, + 27050224, + 27049760, + 27065232, + 27050864, 15919904 ], "bases": [ @@ -216346,16 +216346,16 @@ }, { "type_name": "CNmParameterizedSelectorNode::CDefinition", - "vtable_address": 32053680, + "vtable_address": 32053616, "methods": [ - 27723152, - 27738656, - 27744176, - 27723056, - 27723440, - 27723952, - 27060544, - 27723072 + 27723088, + 27738592, + 27744112, + 27722992, + 27723376, + 27723888, + 27060480, + 27723008 ], "bases": [ { @@ -216388,16 +216388,16 @@ }, { "type_name": "CNmParticleEvent", - "vtable_address": 32041368, + "vtable_address": 32041304, "methods": [ - 27338752, - 27343536, - 27351296, - 27338736, - 27338832, - 27339008, - 27236192, - 27338768 + 27338688, + 27343472, + 27351232, + 27338672, + 27338768, + 27338944, + 27236128, + 27338704 ], "bases": [ { @@ -216419,7 +216419,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 32025280, + "vtable_address": 32025216, "methods": [], "bases": [ { @@ -216452,7 +216452,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 32030936, + "vtable_address": 32030872, "methods": [], "bases": [ { @@ -216485,7 +216485,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 32032512, + "vtable_address": 32032448, "methods": [], "bases": [ { @@ -216518,7 +216518,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 32032656, + "vtable_address": 32032592, "methods": [], "bases": [ { @@ -216551,7 +216551,7 @@ }, { "type_name": "CNmPassthroughNode", - "vtable_address": 32035312, + "vtable_address": 32035248, "methods": [], "bases": [ { @@ -216584,7 +216584,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 32045176, + "vtable_address": 32045112, "methods": [], "bases": [ { @@ -216617,7 +216617,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 32051320, + "vtable_address": 32051256, "methods": [], "bases": [ { @@ -216650,16 +216650,16 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 32052392, + "vtable_address": 32052328, "methods": [ - 27688304, - 27688496, - 27690096, 27688240, - 27688272, - 27688288, - 27027184, - 27688256 + 27688432, + 27690032, + 27688176, + 27688208, + 27688224, + 27027120, + 27688192 ], "bases": [ { @@ -216692,7 +216692,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 32053000, + "vtable_address": 32052936, "methods": [], "bases": [ { @@ -216725,7 +216725,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 32053304, + "vtable_address": 32053240, "methods": [], "bases": [ { @@ -216758,7 +216758,7 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 32056696, + "vtable_address": 32056632, "methods": [], "bases": [ { @@ -216791,7 +216791,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32023224, + "vtable_address": 32023160, "methods": [], "bases": [ { @@ -216813,7 +216813,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32029432, + "vtable_address": 32029368, "methods": [], "bases": [ { @@ -216835,7 +216835,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32031624, + "vtable_address": 32031560, "methods": [], "bases": [ { @@ -216857,7 +216857,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32031768, + "vtable_address": 32031704, "methods": [], "bases": [ { @@ -216879,7 +216879,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32031984, + "vtable_address": 32031920, "methods": [], "bases": [ { @@ -216901,7 +216901,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32032368, + "vtable_address": 32032304, "methods": [], "bases": [ { @@ -216923,7 +216923,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32033920, + "vtable_address": 32033856, "methods": [], "bases": [ { @@ -216945,7 +216945,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32034336, + "vtable_address": 32034272, "methods": [], "bases": [ { @@ -216967,7 +216967,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32035024, + "vtable_address": 32034960, "methods": [], "bases": [ { @@ -216989,7 +216989,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32035168, + "vtable_address": 32035104, "methods": [], "bases": [ { @@ -217011,7 +217011,7 @@ }, { "type_name": "CNmPoseNode", - "vtable_address": 32035896, + "vtable_address": 32035832, "methods": [], "bases": [ { @@ -217033,7 +217033,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32043352, + "vtable_address": 32043288, "methods": [], "bases": [ { @@ -217055,7 +217055,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32047400, + "vtable_address": 32047336, "methods": [], "bases": [ { @@ -217077,7 +217077,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32051992, + "vtable_address": 32051928, "methods": [], "bases": [ { @@ -217099,7 +217099,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32052248, + "vtable_address": 32052184, "methods": [], "bases": [ { @@ -217121,7 +217121,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32052376, + "vtable_address": 32052312, "methods": [], "bases": [ { @@ -217143,7 +217143,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32052552, + "vtable_address": 32052488, "methods": [], "bases": [ { @@ -217165,7 +217165,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32052872, + "vtable_address": 32052808, "methods": [], "bases": [ { @@ -217187,7 +217187,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32054392, + "vtable_address": 32054328, "methods": [], "bases": [ { @@ -217209,7 +217209,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32055224, + "vtable_address": 32055160, "methods": [], "bases": [ { @@ -217231,7 +217231,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32056120, + "vtable_address": 32056056, "methods": [], "bases": [ { @@ -217253,7 +217253,7 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 32056248, + "vtable_address": 32056184, "methods": [], "bases": [ { @@ -217275,9 +217275,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 33356832, + "vtable_address": 33356768, "methods": [ - 27475680 + 27475616 ], "bases": [], "model": { @@ -217288,9 +217288,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 33359904, + "vtable_address": 33359840, "methods": [ - 27523408 + 27523344 ], "bases": [], "model": { @@ -217301,9 +217301,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 33370016, + "vtable_address": 33369952, "methods": [ - 27695520 + 27695456 ], "bases": [], "model": { @@ -217314,9 +217314,9 @@ }, { "type_name": "CNmPoseNode::CDefinition", - "vtable_address": 33370176, + "vtable_address": 33370112, "methods": [ - 27694240 + 27694176 ], "bases": [], "model": { @@ -217327,7 +217327,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32021056, + "vtable_address": 32020992, "methods": [], "bases": [], "model": { @@ -217338,7 +217338,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32021352, + "vtable_address": 32021288, "methods": [], "bases": [], "model": { @@ -217349,7 +217349,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32021512, + "vtable_address": 32021448, "methods": [], "bases": [], "model": { @@ -217360,7 +217360,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32021696, + "vtable_address": 32021632, "methods": [], "bases": [], "model": { @@ -217371,7 +217371,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32021992, + "vtable_address": 32021928, "methods": [], "bases": [], "model": { @@ -217382,7 +217382,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32022152, + "vtable_address": 32022088, "methods": [], "bases": [], "model": { @@ -217393,7 +217393,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32022312, + "vtable_address": 32022248, "methods": [], "bases": [], "model": { @@ -217404,9 +217404,9 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32022480, + "vtable_address": 32022416, "methods": [ - 26805728 + 26805664 ], "bases": [], "model": { @@ -217417,7 +217417,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32540864, + "vtable_address": 32540800, "methods": [], "bases": [], "model": { @@ -217428,7 +217428,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 32540992, + "vtable_address": 32540928, "methods": [], "bases": [], "model": { @@ -217439,7 +217439,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33344704, + "vtable_address": 33344640, "methods": [], "bases": [], "model": { @@ -217450,7 +217450,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33344832, + "vtable_address": 33344768, "methods": [], "bases": [], "model": { @@ -217461,7 +217461,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33344960, + "vtable_address": 33344896, "methods": [], "bases": [], "model": { @@ -217472,7 +217472,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33346112, + "vtable_address": 33346048, "methods": [], "bases": [], "model": { @@ -217483,7 +217483,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33346240, + "vtable_address": 33346176, "methods": [], "bases": [], "model": { @@ -217494,7 +217494,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33346368, + "vtable_address": 33346304, "methods": [], "bases": [], "model": { @@ -217505,7 +217505,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33346592, + "vtable_address": 33346528, "methods": [], "bases": [], "model": { @@ -217516,7 +217516,7 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 33346720, + "vtable_address": 33346656, "methods": [], "bases": [], "model": { @@ -217527,20 +217527,20 @@ }, { "type_name": "CNmReferencePoseNode", - "vtable_address": 32032120, + "vtable_address": 32032056, "methods": [ - 27027632, - 27027664, - 26835568, + 27027568, + 27027600, + 26835504, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27145376, + 27145312, + 27027232, 27027296, - 27027360, - 27030880, + 27030816, 15919904 ], "bases": [ @@ -217574,16 +217574,16 @@ }, { "type_name": "CNmReferencePoseNode::CDefinition", - "vtable_address": 32052648, + "vtable_address": 32052584, "methods": [ - 27692560, - 27692880, - 27695632, - 27692384, - 27692464, - 27692512, - 27027888, - 27692400 + 27692496, + 27692816, + 27695568, + 27692320, + 27692400, + 27692448, + 27027824, + 27692336 ], "bases": [ { @@ -217616,23 +217616,23 @@ }, { "type_name": "CNmReferencePoseTask", - "vtable_address": 32021712, + "vtable_address": 32021648, "methods": [ - 26773632, - 26773808, - 26773984, - 26773664, - 26805664, + 26773568, + 26773744, + 26773920, + 26773600, + 26805600, 15919936, 15919952, - 26773296, - 26773312, - 26773328, - 26773344, + 26773232, + 26773248, + 26773264, + 26773280, 15919968, - 26773360, + 26773296, 15920000, - 26806560 + 26806496 ], "bases": [ { @@ -217654,20 +217654,20 @@ }, { "type_name": "CNmReferencedGraphNode", - "vtable_address": 32032384, + "vtable_address": 32032320, "methods": [ - 27036336, - 27036224, - 27035808, + 27036272, + 27036160, + 27035744, 15919920, 15921296, - 27036144, - 27036048, + 27036080, + 27035984, 15921328, - 27035968, - 27035856, - 27038384, - 27038720, + 27035904, + 27035792, + 27038320, + 27038656, 15919904 ], "bases": [ @@ -217701,16 +217701,16 @@ }, { "type_name": "CNmReferencedGraphNode::CDefinition", - "vtable_address": 32052888, + "vtable_address": 32052824, "methods": [ - 27705232, - 27705840, - 27707024, 27705168, - 27705200, - 27705216, - 27036480, - 27705184 + 27705776, + 27706960, + 27705104, + 27705136, + 27705152, + 27036416, + 27705120 ], "bases": [ { @@ -217743,16 +217743,16 @@ }, { "type_name": "CNmRootMotionEvent", - "vtable_address": 32041576, + "vtable_address": 32041512, "methods": [ - 27351424, - 27351712, - 27353376, - 27351376, - 27351392, - 27351408, - 27236192, - 27351440 + 27351360, + 27351648, + 27353312, + 27351312, + 27351328, + 27351344, + 27236128, + 27351376 ], "bases": [ { @@ -217774,20 +217774,20 @@ }, { "type_name": "CNmRootMotionOverrideNode", - "vtable_address": 32032528, + "vtable_address": 32032464, "methods": [ - 27040720, - 27040752, + 27040656, + 27040688, 15920016, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27040624, - 27026848, - 27040512, - 27046592, + 27040560, + 27026784, + 27040448, + 27046528, 15919904 ], "bases": [ @@ -217832,16 +217832,16 @@ }, { "type_name": "CNmRootMotionOverrideNode::CDefinition", - "vtable_address": 32053016, + "vtable_address": 32052952, "methods": [ - 27709184, - 27711168, - 27719008, 27709120, - 27709152, - 27709168, - 27046720, - 27709136 + 27711104, + 27718944, + 27709056, + 27709088, + 27709104, + 27046656, + 27709072 ], "bases": [ { @@ -217885,23 +217885,23 @@ }, { "type_name": "CNmSampleTask", - "vtable_address": 32022168, - "methods": [ - 26779712, - 26783488, - 26783664, - 26781584, - 26805664, - 26786944, + "vtable_address": 32022104, + "methods": [ + 26779648, + 26783424, + 26783600, + 26781520, + 26805600, + 26786880, 15919952, + 26778688, + 26779968, 26778752, - 26780032, - 26778816, - 26778768, - 26782704, - 26778784, - 26778800, - 26806560 + 26778704, + 26782640, + 26778720, + 26778736, + 26806496 ], "bases": [ { @@ -217923,20 +217923,20 @@ }, { "type_name": "CNmScaleNode", - "vtable_address": 32032672, + "vtable_address": 32032608, "methods": [ - 27047056, - 27047088, + 27046992, + 27047024, 15920016, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27046992, - 27026848, - 27046912, - 27047152, + 27046928, + 27026784, + 27046848, + 27047088, 15919904 ], "bases": [ @@ -217981,16 +217981,16 @@ }, { "type_name": "CNmScaleNode::CDefinition", - "vtable_address": 32053320, + "vtable_address": 32053256, "methods": [ - 27719152, - 27719728, - 27720896, 27719088, - 27719120, - 27719136, - 27049536, - 27719104 + 27719664, + 27720832, + 27719024, + 27719056, + 27719072, + 27049472, + 27719040 ], "bases": [ { @@ -218034,23 +218034,23 @@ }, { "type_name": "CNmScaleTask", - "vtable_address": 32022328, + "vtable_address": 32022264, "methods": [ + 26787136, + 26787776, + 26788016, 26787200, - 26787840, - 26788080, - 26787264, - 26805664, + 26805600, 15919936, 15919952, - 26787152, - 26788352, - 26790464, - 26787168, + 26787088, + 26788288, + 26790400, + 26787104, 15919968, - 26787184, + 26787120, 15920000, - 26806560 + 26806496 ], "bases": [ { @@ -218072,20 +218072,20 @@ }, { "type_name": "CNmSelectorNode", - "vtable_address": 32032888, + "vtable_address": 32032824, "methods": [ - 27051920, - 27052624, - 27049712, + 27051856, + 27052560, + 27049648, 15919920, 15921296, - 27053216, - 27054128, + 27053152, + 27054064, 15921328, - 27050160, - 27049728, - 27058304, - 27050416, + 27050096, + 27049664, + 27058240, + 27050352, 15919904 ], "bases": [ @@ -218119,16 +218119,16 @@ }, { "type_name": "CNmSelectorNode::CDefinition", - "vtable_address": 32053520, + "vtable_address": 32053456, "methods": [ + 27723056, + 27730320, + 27731632, + 27722928, 27723120, - 27730384, - 27731696, - 27722992, - 27723184, - 27723696, - 27056640, - 27723008 + 27723632, + 27056576, + 27722944 ], "bases": [ { @@ -218161,7 +218161,7 @@ }, { "type_name": "CNmSnapWeaponNode", - "vtable_address": 30965112, + "vtable_address": 30965048, "methods": [ 15922416, 15922448, @@ -218172,7 +218172,7 @@ 15931920, 15921328, 15921440, - 27026848, + 27026784, 15934144, 15962624, 15919904 @@ -218219,7 +218219,7 @@ }, { "type_name": "CNmSnapWeaponNode::CDefinition", - "vtable_address": 30965232, + "vtable_address": 30965168, "methods": [ 15921552, 15946800, @@ -218272,13 +218272,13 @@ }, { "type_name": "CNmSnapWeaponTask", - "vtable_address": 30965448, + "vtable_address": 30965384, "methods": [ 15921584, 15930400, 15930784, 15935872, - 26805664, + 26805600, 15919936, 15919952, 15920208, @@ -218288,7 +218288,7 @@ 15919968, 15920240, 15920000, - 26806560 + 26806496 ], "bases": [ { @@ -218310,16 +218310,16 @@ }, { "type_name": "CNmSoundEvent", - "vtable_address": 32041704, + "vtable_address": 32041640, "methods": [ - 27354672, - 27357008, - 27362304, - 27354560, - 27354576, - 27354752, - 27236192, - 27354688 + 27354608, + 27356944, + 27362240, + 27354496, + 27354512, + 27354688, + 27236128, + 27354624 ], "bases": [ { @@ -218341,7 +218341,7 @@ }, { "type_name": "CNmSpeedScaleBaseNode", - "vtable_address": 32033512, + "vtable_address": 32033448, "methods": [], "bases": [ { @@ -218385,7 +218385,7 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 32053984, + "vtable_address": 32053920, "methods": [], "bases": [ { @@ -218429,16 +218429,16 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 32054000, + "vtable_address": 32053936, "methods": [ - 27751440, - 27752464, - 27755840, - 27750944, - 27751072, - 27751328, - 27027184, - 27750960 + 27751376, + 27752400, + 27755776, + 27750880, + 27751008, + 27751264, + 27027120, + 27750896 ], "bases": [ { @@ -218482,9 +218482,9 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 33372352, + "vtable_address": 33372288, "methods": [ - 27759520 + 27759456 ], "bases": [], "model": { @@ -218495,9 +218495,9 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 33372512, + "vtable_address": 33372448, "methods": [ - 27758224 + 27758160 ], "bases": [], "model": { @@ -218508,9 +218508,9 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 33372672, + "vtable_address": 33372608, "methods": [ - 27756928 + 27756864 ], "bases": [], "model": { @@ -218521,22 +218521,22 @@ }, { "type_name": "CNmSpeedScaleNode", - "vtable_address": 32033528, + "vtable_address": 32033464, "methods": [ - 27066752, - 27066784, + 27066688, + 27066720, 15920016, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27066288, - 27026848, - 27066096, - 27065632, + 27066224, + 27026784, + 27066032, + 27065568, 15919904, - 27066848 + 27066784 ], "bases": [ { @@ -218591,16 +218591,16 @@ }, { "type_name": "CNmSpeedScaleNode::CDefinition", - "vtable_address": 32054080, + "vtable_address": 32054016, "methods": [ - 27751424, - 27752480, - 27757040, - 27750976, - 27751088, - 27751376, - 27067328, - 27750992 + 27751360, + 27752416, + 27756976, + 27750912, + 27751024, + 27751312, + 27067264, + 27750928 ], "bases": [ { @@ -218655,20 +218655,20 @@ }, { "type_name": "CNmStateCompletedConditionNode", - "vtable_address": 32034104, + "vtable_address": 32034040, "methods": [ - 27076384, - 27076400, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 27075904, - 27076000, - 26901968, - 27076048, - 26888128 + 27076320, + 27076336, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 27075840, + 27075936, + 26901904, + 27075984, + 26888064 ], "bases": [ { @@ -218712,16 +218712,16 @@ }, { "type_name": "CNmStateCompletedConditionNode::CDefinition", - "vtable_address": 32054680, + "vtable_address": 32054616, "methods": [ - 27788144, - 27789584, - 27793952, - 27787952, - 27788048, - 27788096, - 27076448, - 27787968 + 27788080, + 27789520, + 27793888, + 27787888, + 27787984, + 27788032, + 27076384, + 27787904 ], "bases": [ { @@ -218765,20 +218765,20 @@ }, { "type_name": "CNmStateMachineNode", - "vtable_address": 32034352, + "vtable_address": 32034288, "methods": [ - 27077488, - 27077152, - 27077120, + 27077424, + 27077088, + 27077056, 15919920, 15921296, - 27077792, - 27079872, + 27077728, + 27079808, 15921328, - 27083840, - 27086032, - 27083504, - 27086112, + 27083776, + 27085968, + 27083440, + 27086048, 15919904 ], "bases": [ @@ -218812,16 +218812,16 @@ }, { "type_name": "CNmStateMachineNode::CDefinition", - "vtable_address": 32055240, + "vtable_address": 32055176, "methods": [ - 27802752, - 27817760, - 27830240, - 27802720, - 27803328, - 27803600, - 27081280, - 27802736 + 27802688, + 27817696, + 27830176, + 27802656, + 27803264, + 27803536, + 27081216, + 27802672 ], "bases": [ { @@ -218854,20 +218854,20 @@ }, { "type_name": "CNmStateNode", - "vtable_address": 32033936, + "vtable_address": 32033872, "methods": [ - 27067984, - 27068016, - 27067664, + 27067920, + 27067952, + 27067600, 15919920, 15921296, - 27069056, - 27068160, + 27068992, + 27068096, 15921328, - 27067904, - 27068080, - 27067696, - 27075520, + 27067840, + 27068016, + 27067632, + 27075456, 15919904 ], "bases": [ @@ -218901,16 +218901,16 @@ }, { "type_name": "CNmStateNode::CDefinition", - "vtable_address": 32054408, + "vtable_address": 32054344, "methods": [ - 27759840, - 27774320, - 27787872, - 27759808, - 27760080, - 27760320, - 27069744, - 27759824 + 27759776, + 27774256, + 27787808, + 27759744, + 27760016, + 27760256, + 27069680, + 27759760 ], "bases": [ { @@ -218943,20 +218943,20 @@ }, { "type_name": "CNmSyncEventIndexConditionNode", - "vtable_address": 32028864, + "vtable_address": 32028800, "methods": [ - 26961040, - 26961056, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26960768, - 27145376, - 26901968, - 26969552, - 26888128 + 26960976, + 26960992, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26960704, + 27145312, + 26901904, + 26969488, + 26888064 ], "bases": [ { @@ -219000,16 +219000,16 @@ }, { "type_name": "CNmSyncEventIndexConditionNode::CDefinition", - "vtable_address": 32048368, + "vtable_address": 32048304, "methods": [ - 27524512, - 27545456, - 27567728, - 27523920, - 27524160, - 27524272, - 26969024, - 27523936 + 27524448, + 27545392, + 27567664, + 27523856, + 27524096, + 27524208, + 26968960, + 27523872 ], "bases": [ { @@ -219053,20 +219053,20 @@ }, { "type_name": "CNmTargetInfoNode", - "vtable_address": 32034680, + "vtable_address": 32034616, "methods": [ - 27087200, - 27087216, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 27086592, - 27086736, - 26905792, - 27087392, - 26888128 + 27087136, + 27087152, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 27086528, + 27086672, + 26905728, + 27087328, + 26888064 ], "bases": [ { @@ -219110,16 +219110,16 @@ }, { "type_name": "CNmTargetInfoNode::CDefinition", - "vtable_address": 32055552, + "vtable_address": 32055488, "methods": [ - 27830592, - 27834816, - 27838288, - 27830352, - 27830464, 27830528, - 27090192, - 27830368 + 27834752, + 27838224, + 27830288, + 27830400, + 27830464, + 27090128, + 27830304 ], "bases": [ { @@ -219163,20 +219163,20 @@ }, { "type_name": "CNmTargetOffsetNode", - "vtable_address": 32034904, + "vtable_address": 32034840, "methods": [ - 27087328, - 27087344, - 26835568, - 26904800, - 27145424, - 27145456, - 27145744, - 27086688, - 27086784, - 26905664, - 27089056, - 26888128 + 27087264, + 27087280, + 26835504, + 26904736, + 27145360, + 27145392, + 27145680, + 27086624, + 27086720, + 26905600, + 27088992, + 26888064 ], "bases": [ { @@ -219220,16 +219220,16 @@ }, { "type_name": "CNmTargetOffsetNode::CDefinition", - "vtable_address": 32055712, + "vtable_address": 32055648, "methods": [ - 27830624, - 27842048, - 27845248, - 27830416, - 27830496, 27830560, - 27090368, - 27830432 + 27841984, + 27845184, + 27830352, + 27830432, + 27830496, + 27090304, + 27830368 ], "bases": [ { @@ -219273,20 +219273,20 @@ }, { "type_name": "CNmTargetPointNode", - "vtable_address": 32034792, + "vtable_address": 32034728, "methods": [ - 27087264, - 27087280, - 26835568, - 26904784, - 27145424, - 27145456, - 27145744, - 27086640, - 27086736, - 26905744, - 27086832, - 26888128 + 27087200, + 27087216, + 26835504, + 26904720, + 27145360, + 27145392, + 27145680, + 27086576, + 27086672, + 26905680, + 27086768, + 26888064 ], "bases": [ { @@ -219330,16 +219330,16 @@ }, { "type_name": "CNmTargetPointNode::CDefinition", - "vtable_address": 32055632, + "vtable_address": 32055568, "methods": [ - 27830608, - 27838720, - 27841296, - 27830384, - 27830480, 27830544, - 27090288, - 27830400 + 27838656, + 27841232, + 27830320, + 27830416, + 27830480, + 27090224, + 27830336 ], "bases": [ { @@ -219383,7 +219383,7 @@ }, { "type_name": "CNmTargetValueNode", - "vtable_address": 32024696, + "vtable_address": 32024632, "methods": [], "bases": [ { @@ -219416,7 +219416,7 @@ }, { "type_name": "CNmTargetValueNode", - "vtable_address": 32025720, + "vtable_address": 32025656, "methods": [], "bases": [ { @@ -219449,7 +219449,7 @@ }, { "type_name": "CNmTargetValueNode", - "vtable_address": 32034552, + "vtable_address": 32034488, "methods": [], "bases": [ { @@ -219482,7 +219482,7 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 32044584, + "vtable_address": 32044520, "methods": [], "bases": [ { @@ -219515,7 +219515,7 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 32045560, + "vtable_address": 32045496, "methods": [], "bases": [ { @@ -219548,7 +219548,7 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 32055456, + "vtable_address": 32055392, "methods": [], "bases": [ { @@ -219581,9 +219581,9 @@ }, { "type_name": "CNmTargetValueNode::CDefinition", - "vtable_address": 33359104, + "vtable_address": 33359040, "methods": [ - 27507040 + 27506976 ], "bases": [], "model": { @@ -219594,16 +219594,16 @@ }, { "type_name": "CNmTargetWarpEvent", - "vtable_address": 32042560, + "vtable_address": 32042496, "methods": [ - 27366208, - 27368848, - 27371856, - 27366112, 27366144, - 27366176, - 27236192, - 26835424 + 27368784, + 27371792, + 27366048, + 27366080, + 27366112, + 27236128, + 26835360 ], "bases": [ { @@ -219625,21 +219625,21 @@ }, { "type_name": "CNmTargetWarpNode", - "vtable_address": 32035040, + "vtable_address": 32034976, "methods": [ - 27096000, - 27090592, - 27090560, + 27095936, + 27090528, + 27090496, 15919920, 15921296, - 27091120, - 27093424, + 27091056, + 27093360, 15921328, - 27101936, - 27090544, - 27101776, - 27103344, - 27090576 + 27101872, + 27090480, + 27101712, + 27103280, + 27090512 ], "bases": [ { @@ -219672,16 +219672,16 @@ }, { "type_name": "CNmTargetWarpNode::CDefinition", - "vtable_address": 32056136, + "vtable_address": 32056072, "methods": [ - 27845392, - 27847648, - 27857216, 27845328, - 27845360, - 27845376, - 27101216, - 27845344 + 27847584, + 27857152, + 27845264, + 27845296, + 27845312, + 27101152, + 27845280 ], "bases": [ { @@ -219714,20 +219714,20 @@ }, { "type_name": "CNmTimeConditionNode", - "vtable_address": 32034216, + "vtable_address": 32034152, "methods": [ - 27076320, - 27076336, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 27075968, - 27145376, - 26901968, - 27076800, - 26888128 + 27076256, + 27076272, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 27075904, + 27145312, + 26901904, + 27076736, + 26888064 ], "bases": [ { @@ -219771,16 +219771,16 @@ }, { "type_name": "CNmTimeConditionNode::CDefinition", - "vtable_address": 32054840, + "vtable_address": 32054776, "methods": [ - 27788176, - 27796560, - 27802640, + 27788112, + 27796496, + 27802576, + 27787952, 27788016, - 27788080, - 27788128, - 27076624, - 27788032 + 27788064, + 27076560, + 27787968 ], "bases": [ { @@ -219824,16 +219824,16 @@ }, { "type_name": "CNmTransitionEvent", - "vtable_address": 32041992, + "vtable_address": 32041928, "methods": [ - 27362432, - 27363392, - 27366016, - 27362384, - 27362400, - 27362416, - 27236192, - 26834960 + 27362368, + 27363328, + 27365952, + 27362320, + 27362336, + 27362352, + 27236128, + 26834896 ], "bases": [ { @@ -219855,20 +219855,20 @@ }, { "type_name": "CNmTransitionEventConditionNode", - "vtable_address": 32029200, + "vtable_address": 32029136, "methods": [ - 26960976, - 26960992, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26960768, - 27145376, - 26901968, - 26962816, - 26888128 + 26960912, + 26960928, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26960704, + 27145312, + 26901904, + 26962752, + 26888064 ], "bases": [ { @@ -219912,16 +219912,16 @@ }, { "type_name": "CNmTransitionEventConditionNode::CDefinition", - "vtable_address": 32048608, + "vtable_address": 32048544, "methods": [ - 27524560, - 27552096, - 27566224, - 27524016, - 27524208, - 27524288, - 26969296, - 27524032 + 27524496, + 27552032, + 27566160, + 27523952, + 27524144, + 27524224, + 26969232, + 27523968 ], "bases": [ { @@ -219965,20 +219965,20 @@ }, { "type_name": "CNmTransitionNode", - "vtable_address": 32035184, + "vtable_address": 32035120, "methods": [ - 27104048, - 27104192, - 26835568, + 27103984, + 27104128, + 26835504, 15919920, 15921296, - 27104352, - 27106144, + 27104288, + 27106080, 15921328, - 27103856, - 27103664, - 27103680, - 27130112, + 27103792, + 27103600, + 27103616, + 27130048, 15919904 ], "bases": [ @@ -220012,16 +220012,16 @@ }, { "type_name": "CNmTransitionNode::CDefinition", - "vtable_address": 32056264, + "vtable_address": 32056200, "methods": [ - 27857360, - 27860912, - 27871824, 27857296, - 27857328, - 27857344, - 27111264, - 27857312 + 27860848, + 27871760, + 27857232, + 27857264, + 27857280, + 27111200, + 27857248 ], "bases": [ { @@ -220054,20 +220054,20 @@ }, { "type_name": "CNmTwoBoneIKNode", - "vtable_address": 32035328, + "vtable_address": 32035264, "methods": [ - 27136752, - 27136784, + 27136688, + 27136720, 15920016, 15919920, 15921296, - 27137424, - 27138496, + 27137360, + 27138432, 15921328, - 27136688, - 27026848, - 27136864, - 27139776, + 27136624, + 27026784, + 27136800, + 27139712, 15919904 ], "bases": [ @@ -220112,16 +220112,16 @@ }, { "type_name": "CNmTwoBoneIKNode::CDefinition", - "vtable_address": 32056712, + "vtable_address": 32056648, "methods": [ - 27871968, - 27873664, - 27879520, 27871904, - 27871936, - 27871952, - 27142848, - 27871920 + 27873600, + 27879456, + 27871840, + 27871872, + 27871888, + 27142784, + 27871856 ], "bases": [ { @@ -220165,7 +220165,7 @@ }, { "type_name": "CNmValueNode", - "vtable_address": 32023504, + "vtable_address": 32023440, "methods": [], "bases": [ { @@ -220187,7 +220187,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 33378880, + "vtable_address": 33378816, "methods": [], "bases": [], "model": { @@ -220198,7 +220198,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 33379008, + "vtable_address": 33378944, "methods": [], "bases": [], "model": { @@ -220209,7 +220209,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 33379136, + "vtable_address": 33379072, "methods": [], "bases": [], "model": { @@ -220220,7 +220220,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 33379264, + "vtable_address": 33379200, "methods": [], "bases": [], "model": { @@ -220231,7 +220231,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 33379392, + "vtable_address": 33379328, "methods": [], "bases": [], "model": { @@ -220242,7 +220242,7 @@ }, { "type_name": "CNmValueNode::CDefinition", - "vtable_address": 33379520, + "vtable_address": 33379456, "methods": [], "bases": [], "model": { @@ -220253,20 +220253,20 @@ }, { "type_name": "CNmVectorCreateNode", - "vtable_address": 32035632, + "vtable_address": 32035568, "methods": [ - 27143872, - 27143888, - 26835568, - 26904784, - 27145424, - 27145456, - 27145744, - 27143088, - 27143296, - 26905744, - 27143392, - 26888128 + 27143808, + 27143824, + 26835504, + 26904720, + 27145360, + 27145392, + 27145680, + 27143024, + 27143232, + 26905680, + 27143328, + 26888064 ], "bases": [ { @@ -220310,16 +220310,16 @@ }, { "type_name": "CNmVectorCreateNode::CDefinition", - "vtable_address": 32056968, + "vtable_address": 32056904, "methods": [ - 27879808, - 27885056, - 27886240, - 27879632, - 27879712, - 27879760, - 27145024, - 27879648 + 27879744, + 27884992, + 27886176, + 27879568, + 27879648, + 27879696, + 27144960, + 27879584 ], "bases": [ { @@ -220363,20 +220363,20 @@ }, { "type_name": "CNmVectorInfoNode", - "vtable_address": 32035520, + "vtable_address": 32035456, "methods": [ - 27143744, - 27143760, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 27143040, - 27143248, - 26905792, - 27143936, - 26888128 + 27143680, + 27143696, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 27142976, + 27143184, + 26905728, + 27143872, + 26888064 ], "bases": [ { @@ -220420,16 +220420,16 @@ }, { "type_name": "CNmVectorInfoNode::CDefinition", - "vtable_address": 32056888, + "vtable_address": 32056824, "methods": [ - 27879792, - 27881200, - 27884272, - 27879600, - 27879696, - 27879744, - 27144928, - 27879616 + 27879728, + 27881136, + 27884208, + 27879536, + 27879632, + 27879680, + 27144864, + 27879552 ], "bases": [ { @@ -220473,20 +220473,20 @@ }, { "type_name": "CNmVectorNegateNode", - "vtable_address": 32035744, + "vtable_address": 32035680, "methods": [ - 27143808, - 27143824, - 26835568, - 26904784, - 27145424, - 27145456, - 27145744, - 27143200, - 27143248, - 26905744, - 27143616, - 26888128 + 27143744, + 27143760, + 26835504, + 26904720, + 27145360, + 27145392, + 27145680, + 27143136, + 27143184, + 26905680, + 27143552, + 26888064 ], "bases": [ { @@ -220530,16 +220530,16 @@ }, { "type_name": "CNmVectorNegateNode::CDefinition", - "vtable_address": 32057048, + "vtable_address": 32056984, "methods": [ - 27879824, - 27880400, - 27891680, + 27879760, + 27880336, + 27891616, + 27879600, 27879664, - 27879728, - 27879776, - 27145216, - 27879680 + 27879712, + 27145152, + 27879616 ], "bases": [ { @@ -220583,7 +220583,7 @@ }, { "type_name": "CNmVectorValueNode", - "vtable_address": 32035504, + "vtable_address": 32035440, "methods": [], "bases": [ { @@ -220616,7 +220616,7 @@ }, { "type_name": "CNmVectorValueNode::CDefinition", - "vtable_address": 32056872, + "vtable_address": 32056808, "methods": [], "bases": [ { @@ -220649,9 +220649,9 @@ }, { "type_name": "CNmVectorValueNode::CDefinition", - "vtable_address": 33359264, + "vtable_address": 33359200, "methods": [ - 27505760 + 27505696 ], "bases": [], "model": { @@ -220662,22 +220662,22 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode", - "vtable_address": 32033784, + "vtable_address": 32033720, "methods": [ - 27066560, - 27066592, + 27066496, + 27066528, 15920016, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27066288, - 27026848, 27066224, - 27065632, + 27026784, + 27066160, + 27065568, 15919904, - 27066992 + 27066928 ], "bases": [ { @@ -220732,16 +220732,16 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode::CDefinition", - "vtable_address": 32054240, + "vtable_address": 32054176, "methods": [ - 27751392, - 27752512, - 27759632, - 27751040, - 27751120, - 27751344, - 27067552, - 27751056 + 27751328, + 27752448, + 27759568, + 27750976, + 27751056, + 27751280, + 27067488, + 27750992 ], "bases": [ { @@ -220796,20 +220796,20 @@ }, { "type_name": "CNmVelocityBlendNode", - "vtable_address": 32023048, + "vtable_address": 32022984, "methods": [ - 26839824, - 26840672, - 26835728, + 26839760, + 26840608, + 26835664, 15919920, 15921296, - 26835776, - 26853840, + 26835712, + 26853776, 15921328, - 26835616, - 26835584, - 26853600, - 26856192, + 26835552, + 26835520, + 26853536, + 26856128, 15919904 ], "bases": [ @@ -220854,16 +220854,16 @@ }, { "type_name": "CNmVelocityBlendNode::CDefinition", - "vtable_address": 32043184, + "vtable_address": 32043120, "methods": [ - 27372032, - 27378240, - 27399568, - 27372000, - 27373328, - 27373600, - 26851264, - 27372016 + 27371968, + 27378176, + 27399504, + 27371936, + 27373264, + 27373536, + 26851200, + 27371952 ], "bases": [ { @@ -220907,20 +220907,20 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode", - "vtable_address": 32027680, - "methods": [ - 26950912, - 26949392, - 26835568, - 26888144, - 27145424, - 27145456, - 27145744, - 26947616, - 26948656, - 26888112, - 26949504, - 26888128 + "vtable_address": 32027616, + "methods": [ + 26950848, + 26949328, + 26835504, + 26888080, + 27145360, + 27145392, + 27145680, + 26947552, + 26948592, + 26888048, + 26949440, + 26888064 ], "bases": [ { @@ -220964,16 +220964,16 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode::CDefinition", - "vtable_address": 32047128, + "vtable_address": 32047064, "methods": [ - 27497904, - 27499520, - 27520960, - 27497360, - 27497552, - 27497728, - 26960608, - 27497376 + 27497840, + 27499456, + 27520896, + 27497296, + 27497488, + 27497664, + 26960544, + 27497312 ], "bases": [ { @@ -221017,20 +221017,20 @@ }, { "type_name": "CNmVirtualParameterBoolNode", - "vtable_address": 32027120, + "vtable_address": 32027056, "methods": [ - 26948752, - 26948768, - 26835568, - 26900928, - 27145424, - 27145456, - 27145744, - 26947376, - 26948656, - 26901968, - 26947968, - 26888128 + 26948688, + 26948704, + 26835504, + 26900864, + 27145360, + 27145392, + 27145680, + 26947312, + 26948592, + 26901904, + 26947904, + 26888064 ], "bases": [ { @@ -221074,16 +221074,16 @@ }, { "type_name": "CNmVirtualParameterBoolNode::CDefinition", - "vtable_address": 32046728, + "vtable_address": 32046664, "methods": [ - 27497824, - 27499744, - 27508640, - 27497200, - 27497472, - 27497584, - 26960144, - 27497216 + 27497760, + 27499680, + 27508576, + 27497136, + 27497408, + 27497520, + 26960080, + 27497152 ], "bases": [ { @@ -221127,20 +221127,20 @@ }, { "type_name": "CNmVirtualParameterFloatNode", - "vtable_address": 32027344, + "vtable_address": 32027280, "methods": [ - 26949008, - 26949024, - 26835568, - 26904768, - 27145424, - 27145456, - 27145744, - 26947472, - 26948656, - 26905792, - 26948176, - 26888128 + 26948944, + 26948960, + 26835504, + 26904704, + 27145360, + 27145392, + 27145680, + 26947408, + 26948592, + 26905728, + 26948112, + 26888064 ], "bases": [ { @@ -221184,16 +221184,16 @@ }, { "type_name": "CNmVirtualParameterFloatNode::CDefinition", - "vtable_address": 32046888, + "vtable_address": 32046824, "methods": [ - 27497856, - 27500192, - 27513568, - 27497264, - 27497504, - 27497648, - 26960320, - 27497280 + 27497792, + 27500128, + 27513504, + 27497200, + 27497440, + 27497584, + 26960256, + 27497216 ], "bases": [ { @@ -221237,20 +221237,20 @@ }, { "type_name": "CNmVirtualParameterIDNode", - "vtable_address": 32027232, + "vtable_address": 32027168, "methods": [ - 26948880, - 26948896, - 26835568, - 26904752, - 27145424, - 27145456, - 27145744, - 26947424, - 26948656, - 26905840, - 26948064, - 26888128 + 26948816, + 26948832, + 26835504, + 26904688, + 27145360, + 27145392, + 27145680, + 26947360, + 26948592, + 26905776, + 26948000, + 26888064 ], "bases": [ { @@ -221294,16 +221294,16 @@ }, { "type_name": "CNmVirtualParameterIDNode::CDefinition", - "vtable_address": 32046808, + "vtable_address": 32046744, "methods": [ - 27497840, - 27499968, - 27511104, - 27497232, - 27497488, - 27497616, - 26960224, - 27497248 + 27497776, + 27499904, + 27511040, + 27497168, + 27497424, + 27497552, + 26960160, + 27497184 ], "bases": [ { @@ -221347,20 +221347,20 @@ }, { "type_name": "CNmVirtualParameterTargetNode", - "vtable_address": 32027568, + "vtable_address": 32027504, "methods": [ - 26949264, - 26949280, - 26835568, - 26904800, - 27145424, - 27145456, - 27145744, - 26947568, - 26948704, - 26905664, - 26948384, - 26888128 + 26949200, + 26949216, + 26835504, + 26904736, + 27145360, + 27145392, + 27145680, + 26947504, + 26948640, + 26905600, + 26948320, + 26888064 ], "bases": [ { @@ -221404,16 +221404,16 @@ }, { "type_name": "CNmVirtualParameterTargetNode::CDefinition", - "vtable_address": 32047048, + "vtable_address": 32046984, "methods": [ - 27497888, - 27500640, - 27518496, - 27497328, - 27497536, - 27497712, - 26960496, - 27497344 + 27497824, + 27500576, + 27518432, + 27497264, + 27497472, + 27497648, + 26960432, + 27497280 ], "bases": [ { @@ -221457,20 +221457,20 @@ }, { "type_name": "CNmVirtualParameterVectorNode", - "vtable_address": 32027456, + "vtable_address": 32027392, "methods": [ - 26949136, - 26949152, - 26835568, - 26904784, - 27145424, - 27145456, - 27145744, - 26947520, - 26948656, - 26905744, - 26948272, - 26888128 + 26949072, + 26949088, + 26835504, + 26904720, + 27145360, + 27145392, + 27145680, + 26947456, + 26948592, + 26905680, + 26948208, + 26888064 ], "bases": [ { @@ -221514,16 +221514,16 @@ }, { "type_name": "CNmVirtualParameterVectorNode::CDefinition", - "vtable_address": 32046968, + "vtable_address": 32046904, "methods": [ - 27497872, - 27500416, - 27516032, - 27497296, - 27497520, - 27497680, - 26960416, - 27497312 + 27497808, + 27500352, + 27515968, + 27497232, + 27497456, + 27497616, + 26960352, + 27497248 ], "bases": [ { @@ -221567,20 +221567,20 @@ }, { "type_name": "CNmZeroPoseNode", - "vtable_address": 32032000, + "vtable_address": 32031936, "methods": [ - 27027728, - 27027760, - 26835568, + 27027664, + 27027696, + 26835504, 15919920, 15921296, - 27146096, - 27147168, + 27146032, + 27147104, 15921328, - 27145376, - 27027280, - 27027360, - 27028544, + 27145312, + 27027216, + 27027296, + 27028480, 15919904 ], "bases": [ @@ -221614,16 +221614,16 @@ }, { "type_name": "CNmZeroPoseNode::CDefinition", - "vtable_address": 32052568, + "vtable_address": 32052504, "methods": [ - 27692544, - 27692880, - 27694352, - 27692352, - 27692448, - 27692496, - 27027824, - 27692368 + 27692480, + 27692816, + 27694288, + 27692288, + 27692384, + 27692432, + 27027760, + 27692304 ], "bases": [ { @@ -221656,23 +221656,23 @@ }, { "type_name": "CNmZeroPoseTask", - "vtable_address": 32021848, + "vtable_address": 32021784, "methods": [ - 26773600, - 26774192, - 26774368, - 26773456, - 26805664, + 26773536, + 26774128, + 26774304, + 26773392, + 26805600, 15919936, 15919952, - 26773376, - 26773392, - 26773408, - 26773424, + 26773312, + 26773328, + 26773344, + 26773360, 15919968, - 26773440, + 26773376, 15920000, - 26806560 + 26806496 ], "bases": [ { @@ -221694,7 +221694,7 @@ }, { "type_name": "CNonDamagingScan", - "vtable_address": 30277600, + "vtable_address": 30277536, "methods": [ 11308848, 11309376, @@ -221709,7 +221709,7 @@ }, { "type_name": "CNotReadyForMatchIssue", - "vtable_address": 30232736, + "vtable_address": 30232672, "methods": [ 10429120, 10472576, @@ -221777,7 +221777,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 30520144, + "vtable_address": 30520080, "methods": [ 9634368, 9634384, @@ -221900,7 +221900,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 30520712, + "vtable_address": 30520648, "methods": [ 12654416, 12467424, @@ -221959,7 +221959,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 30520768, + "vtable_address": 30520704, "methods": [ 12687280, 9890784, @@ -222017,33 +222017,33 @@ }, { "type_name": "CNullEntity", - "vtable_address": 31785824, + "vtable_address": 31785760, "methods": [ 13506768, - 22267632, - 22267648, + 22267504, + 22267520, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22266336, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22266208, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -222054,21 +222054,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262192, - 22541408, - 22266576, + 26427360, + 22262064, + 22541280, + 22266448, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -222092,83 +222092,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -222176,16 +222176,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -222206,7 +222206,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -222219,28 +222219,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -222251,7 +222251,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -222262,7 +222262,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -222295,23 +222295,23 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 31374400, + "vtable_address": 31374336, "methods": [ - 18982880, - 18982944, - 19170800, - 18813008, - 18813168, - 18813072, - 18813088, - 18813104, - 18813120, - 18813136, - 18813152, + 18982752, + 18982816, + 19170672, 18812880, - 18812912, + 18813040, 18812944, - 18813040 + 18812960, + 18812976, + 18812992, + 18813008, + 18813024, + 18812752, + 18812784, + 18812816, + 18812912 ], "bases": [ { @@ -222376,13 +222376,13 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 31374536, + "vtable_address": 31374472, "methods": [ 9634368, 9634384, 9634400, - 18813024, - 18839680, + 18812896, + 18839552, 9634448, 9634464, 9634480, @@ -222414,7 +222414,7 @@ 9634896, 9634912, 9634928, - 18813056, + 18812928, 9634960, 9634976, 9634992, @@ -222434,12 +222434,12 @@ 9635216, 9635232, 9635248, - 18812976, + 18812848, 9635280, - 18812928, - 18982912, - 18983008, - 18812896 + 18812800, + 18982784, + 18982880, + 18812768 ], "bases": [ { @@ -222504,33 +222504,33 @@ }, { "type_name": "COmniLight", - "vtable_address": 30309888, + "vtable_address": 30309824, "methods": [ 13522144, 11574688, 11574704, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 11649632, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11653424, 11654160, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -222541,21 +222541,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11570976, 11654288, 11571552, 9635312, 11582496, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -222579,25 +222579,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 11573200, @@ -222605,57 +222605,57 @@ 9654336, 11742336, 11572784, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 11570896, 11570928, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11570944, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -222663,16 +222663,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -222693,7 +222693,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -222706,28 +222706,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -222738,7 +222738,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -222749,35 +222749,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11572432, 11599776, 11610112 @@ -222835,33 +222835,33 @@ }, { "type_name": "COrnamentProp", - "vtable_address": 31737632, + "vtable_address": 31737568, "methods": [ 13526704, - 21601120, - 21601152, - 18377552, - 18065872, - 18145824, - 18010864, - 21918720, - 26419632, - 18009552, - 26419200, - 21918800, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 18502240, + 21600992, + 21601024, + 18377424, + 18065744, + 18145696, + 18010736, + 21918592, + 26419568, + 18009424, + 26419136, + 21918672, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 18502112, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -222872,21 +222872,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21598960, - 21918976, - 21601408, + 26427360, + 21598832, + 21918848, + 21601280, 9635312, 13649968, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -222897,114 +222897,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -223014,7 +223014,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -223024,7 +223024,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -223035,41 +223035,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -223080,83 +223080,83 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 18495968, + 18495840, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 18502480, + 18275360, + 18502352, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 18405136 + 18405008 ], "bases": [ { @@ -223265,7 +223265,7 @@ }, { "type_name": "COrnamentProp", - "vtable_address": 31740208, + "vtable_address": 31740144, "methods": [ 11404800, 11401984 @@ -223377,14 +223377,14 @@ }, { "type_name": "CPASAttenuationFilter", - "vtable_address": 31058328, + "vtable_address": 31058264, "methods": [ - 16728800, - 16730688, - 19464368, - 19464352, - 19464384, - 19464400 + 16728672, + 16730560, + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -223428,14 +223428,14 @@ }, { "type_name": "CPASFilter", - "vtable_address": 30526616, + "vtable_address": 30526552, "methods": [ 12854752, 12863728, - 19464368, - 19464352, - 19464384, - 19464400 + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -223468,14 +223468,14 @@ }, { "type_name": "CPVSFilter", - "vtable_address": 30968104, + "vtable_address": 30968040, "methods": [ 15971728, 15975280, - 19464368, - 19464352, - 19464384, - 19464400 + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -223508,7 +223508,7 @@ }, { "type_name": "CPVSManager", - "vtable_address": 31744752, + "vtable_address": 31744688, "methods": [ 9634368, 9634384, @@ -223529,7 +223529,7 @@ 9634624, 9634640, 9634656, - 21610544, + 21610416, 9634688, 9634704, 9634720, @@ -223566,22 +223566,22 @@ 9635216, 9635232, 9635248, - 21617312, + 21617184, 9635280, - 21615424, - 21610640, - 21610672, - 21599360, - 21603600, - 21640992, - 21641792, - 21641360, - 21641648, - 21641504, - 21641936, + 21615296, + 21610512, + 21610544, + 21599232, + 21603472, + 21640864, + 21641664, 21641232, + 21641520, + 21641376, + 21641808, 21641104, - 21599376 + 21640976, + 21599248 ], "bases": [ { @@ -223624,18 +223624,18 @@ }, { "type_name": "CPVSManager", - "vtable_address": 31745344, + "vtable_address": 31745280, "methods": [ - 21622336, + 21622208, + 21639248, + 21639824, + 21639536, 21639376, - 21639952, - 21639664, - 21639504, - 21640096, - 21640240, - 21639232, - 21639808, - 21618880 + 21639968, + 21640112, + 21639104, + 21639680, + 21618752 ], "bases": [ { @@ -223678,11 +223678,11 @@ }, { "type_name": "CParallelProcessorAbstract, 1> >", - "vtable_address": 31745512, + "vtable_address": 31745448, "methods": [ - 21600880, - 21601312, - 21612288 + 21600752, + 21601184, + 21612160 ], "bases": [ { @@ -223714,33 +223714,33 @@ }, { "type_name": "CParticleSystem", - "vtable_address": 31384840, - "methods": [ - 19300896, - 19401120, - 19401184, - 18377504, - 26419168, - 19458864, - 18010864, - 19458928, - 26419632, - 26419200, - 26419200, - 19460224, - 19460768, - 18011056, - 19835392, - 19835328, + "vtable_address": 31384776, + "methods": [ + 19300768, + 19400992, + 19401056, + 18377376, + 26419104, + 19458736, + 18010736, + 19458800, + 26419568, + 26419136, + 26419136, + 19460096, + 19460640, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19298384, + 18378400, + 19829024, + 19298256, 9635872, 9665808, 9641296, @@ -223751,21 +223751,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19294368, - 19460784, - 19297872, + 26427360, + 19294240, + 19460656, + 19297744, 9635312, - 19323088, - 18308160, + 19322960, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -223789,83 +223789,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19298368, - 19840912, - 19308112, + 19298240, + 19840784, + 19307984, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -223873,16 +223873,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -223903,7 +223903,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -223916,28 +223916,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -223948,7 +223948,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -223959,35 +223959,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -224031,100 +224031,100 @@ }, { "type_name": "CParticleSystemQuery", - "vtable_address": 31387640, + "vtable_address": 31387576, "methods": [ - 19296176, - 19296208, - 19296224, - 19294512, - 19301520, - 19295232, - 19298416, - 19298480, - 19294592, - 19295168, - 19295184, - 19295200, - 19295216, + 19296048, + 19296080, + 19296096, + 19294384, + 19301392, + 19295104, + 19298288, + 19298352, + 19294464, + 19295040, + 19295056, + 19295072, + 19295088, + 19295088, + 19295120, 19295216, + 19312832, + 19313104, + 19314208, + 19294416, + 19295600, + 19295616, + 19295632, + 19295264, + 19295280, + 19295648, 19295248, + 19295232, + 19296384, + 19296368, + 19295296, + 19296368, + 19295312, + 19296368, + 19295328, + 19296368, 19295344, - 19312960, - 19313232, - 19314336, - 19294544, - 19295728, - 19295744, - 19295760, - 19295392, - 19295408, - 19295776, - 19295376, 19295360, - 19296512, - 19296496, - 19295424, - 19296496, - 19295440, - 19296496, - 19295456, - 19296496, - 19295472, - 19295488, - 19295664, - 19296512, - 19296496, - 19294192, - 19294208, + 19295536, + 19296384, + 19296368, + 19294064, + 19294080, + 19295568, + 19295584, + 19295680, + 19304704, 19295696, 19295712, - 19295808, - 19304832, - 19295824, - 19295840, + 19294272, + 19294288, + 19295152, 19294400, - 19294416, - 19295280, - 19294528, + 19295728, + 19295744, + 19295760, + 19295552, + 19295840, + 19296400, 19295856, + 19296368, 19295872, - 19295888, - 19295680, + 19294096, + 19295904, + 19295920, + 19295936, + 19295952, 19295968, - 19296528, - 19295984, - 19296496, + 19294112, 19296000, - 19294224, + 19300128, + 19296016, 19296032, - 19296048, - 19296064, - 19296080, - 19296096, - 19294240, - 19296128, - 19300256, - 19296144, - 19296160, - 19294256, - 19296160, + 19294128, + 19296032, + 19295376, + 19295392, + 19295456, + 19295488, 19295504, + 19295424, + 19295408, + 19295440, 19295520, - 19295584, - 19295616, - 19295632, - 19295552, - 19295536, - 19295568, - 19295648, - 19295600, - 19296496, - 19296496, - 19296016, - 19296496, - 19298576, - 19296240, - 19295792 + 19295472, + 19296368, + 19296368, + 19295888, + 19296368, + 19298448, + 19296112, + 19295664 ], "bases": [ { @@ -224157,7 +224157,7 @@ }, { "type_name": "CParticleSystemQueryGameSystem", - "vtable_address": 31387032, + "vtable_address": 31386968, "methods": [ 9634368, 9634384, @@ -224174,10 +224174,10 @@ 9634560, 9634576, 9634592, - 19419008, + 19418880, 9634624, 9634640, - 19407744, + 19407616, 9634672, 9634688, 9634704, @@ -224188,7 +224188,7 @@ 9634784, 9634800, 9634816, - 19297984, + 19297856, 9634848, 9634864, 9634880, @@ -224215,12 +224215,12 @@ 9635216, 9635232, 9635248, - 19294480, + 19294352, 9635280, - 19294464, - 19400560, - 19400832, - 19294448 + 19294336, + 19400432, + 19400704, + 19294320 ], "bases": [ { @@ -224253,14 +224253,14 @@ }, { "type_name": "CPath", - "vtable_address": 31906536, + "vtable_address": 31906472, "methods": [ - 23324496, - 23324624, - 23301776, - 23295856, - 23335520, - 23319344 + 23324432, + 23324560, + 23301712, + 23295792, + 23335456, + 23319280 ], "bases": [ { @@ -224282,32 +224282,32 @@ }, { "type_name": "CPathCorner", - "vtable_address": 31651680, + "vtable_address": 31651616, "methods": [ 11766592, - 21094064, - 21094288, + 21093936, + 21094160, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21068752, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21068624, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, - 21073008, - 21069008, - 19933344, - 19877920, + 21072880, + 21068880, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -224319,21 +224319,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21065936, - 21073296, - 21069664, + 26427360, + 21065808, + 21073168, + 21069536, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -224357,83 +224357,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 21065920, + 21065792, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, - 21065904, + 21065776, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -224441,16 +224441,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -224471,7 +224471,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -224484,28 +224484,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -224516,7 +224516,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -224527,7 +224527,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -224571,7 +224571,7 @@ }, { "type_name": "CPathCorner", - "vtable_address": 33077472, + "vtable_address": 33077408, "methods": [], "bases": [], "model": { @@ -224582,32 +224582,32 @@ }, { "type_name": "CPathCornerCrash", - "vtable_address": 31649712, + "vtable_address": 31649648, "methods": [ 11766592, - 21094176, - 21094416, + 21094048, + 21094288, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21068752, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21068624, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, - 21073008, - 21069008, - 19933344, - 19877920, + 21072880, + 21068880, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -224619,21 +224619,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21065952, - 21073296, - 21069648, + 26427360, + 21065824, + 21073168, + 21069520, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -224657,83 +224657,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 21065920, + 21065792, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, - 21065904, + 21065776, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -224741,16 +224741,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -224771,7 +224771,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -224784,28 +224784,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -224816,7 +224816,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -224827,7 +224827,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -224882,32 +224882,32 @@ }, { "type_name": "CPathKeyFrame", - "vtable_address": 31644800, + "vtable_address": 31644736, "methods": [ 13506768, - 21071472, - 21071504, + 21071344, + 21071376, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21070304, - 26419632, - 26419200, - 26419200, - 21160544, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21070176, + 26419568, + 26419136, + 26419136, + 21160416, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -224919,21 +224919,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21065680, - 21072672, - 21069632, + 26427360, + 21065552, + 21072544, + 21069504, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -224957,83 +224957,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -225041,16 +225041,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -225071,7 +225071,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -225084,28 +225084,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -225116,7 +225116,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -225127,7 +225127,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -225182,33 +225182,33 @@ }, { "type_name": "CPathMover", - "vtable_address": 30646312, + "vtable_address": 30646248, "methods": [ 13506768, 13640176, 13641200, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20615616, - 26419632, - 26419200, - 26419200, - 19461056, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20615488, + 26419568, + 26419136, + 26419136, + 19460928, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -225219,21 +225219,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20495808, + 26427360, + 20495680, 13626112, 13623456, 9635312, 13824896, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -225257,83 +225257,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20496096, - 19840912, - 19834496, + 20495968, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -225341,16 +225341,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -225371,7 +225371,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -225384,28 +225384,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -225416,7 +225416,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -225427,14 +225427,14 @@ 11742448, 9636784, 9636800, - 19857680, - 20498688, - 19300368, - 19343296, - 19343936, - 19344544, - 19345136, - 20500400 + 19857552, + 20498560, + 19300240, + 19343168, + 19343808, + 19344416, + 19345008, + 20500272 ], "bases": [ { @@ -225488,15 +225488,15 @@ }, { "type_name": "CPathMover", - "vtable_address": 30648336, + "vtable_address": 30648272, "methods": [ 13640704, 13641728, - 19343216, - 19343920, - 19344512, - 19345120, - 19346112 + 19343088, + 19343792, + 19344384, + 19344992, + 19345984 ], "bases": [ { @@ -225550,7 +225550,7 @@ }, { "type_name": "CPathOptimizer", - "vtable_address": 30257040, + "vtable_address": 30256976, "methods": [ 10631072, 10646592, @@ -225565,12 +225565,12 @@ }, { "type_name": "CPathOptimizerNavmesh", - "vtable_address": 31906600, + "vtable_address": 31906536, "methods": [ - 23456080, - 23309584, - 23309712, - 23464384 + 23456016, + 23309520, + 23309648, + 23464320 ], "bases": [ { @@ -225603,33 +225603,33 @@ }, { "type_name": "CPathParticleRope", - "vtable_address": 30708776, + "vtable_address": 30708712, "methods": [ 13506768, - 19401376, - 19401808, + 19401248, + 19401680, 12023536, - 26419168, - 19333008, - 20141632, - 19458992, - 26419632, - 26419200, - 26419200, - 19460800, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 19332880, + 20141504, + 19458864, + 26419568, + 26419136, + 26419136, + 19460672, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -225640,21 +225640,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19332224, + 26427360, + 19332096, 13865456, 13794912, 9635312, 13824800, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -225678,83 +225678,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19333136, - 19840912, - 19333152, + 19333008, + 19840784, + 19333024, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -225762,16 +225762,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19371904, - 21311696, + 19371776, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -225792,7 +225792,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -225805,28 +225805,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -225837,7 +225837,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -225848,11 +225848,11 @@ 11742448, 9636784, 9636800, - 19857680, - 19296480, - 19405376, - 19405568, - 19405760 + 19857552, + 19296352, + 19405248, + 19405440, + 19405632 ], "bases": [ { @@ -225895,14 +225895,14 @@ }, { "type_name": "CPathParticleRope", - "vtable_address": 30710776, - "methods": [ - 19401792, - 19401856, - 19333248, - 19404736, - 19404928, - 19405120, + "vtable_address": 30710712, + "methods": [ + 19401664, + 19401728, + 19333120, + 19404608, + 19404800, + 19404992, 13794080 ], "bases": [ @@ -225946,7 +225946,7 @@ }, { "type_name": "CPathParticleRope", - "vtable_address": 32455872, + "vtable_address": 32455808, "methods": [], "bases": [], "model": { @@ -225957,33 +225957,33 @@ }, { "type_name": "CPathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 30710848, + "vtable_address": 30710784, "methods": [ 13506768, 13797968, 13798048, 12023536, - 26419168, - 19333008, - 20141632, - 19458992, - 26419632, - 26419200, - 26419200, - 19460800, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 19332880, + 20141504, + 19458864, + 26419568, + 26419136, + 26419136, + 19460672, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -225994,12 +225994,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13794192, 13865456, 13794896, @@ -226007,8 +226007,8 @@ 13824800, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -226032,83 +226032,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19333136, - 19840912, - 19333152, + 19333008, + 19840784, + 19333024, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -226116,16 +226116,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19371904, - 21311696, + 19371776, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -226146,7 +226146,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -226159,28 +226159,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -226191,7 +226191,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -226202,11 +226202,11 @@ 11742448, 9636784, 9636800, - 19857680, - 19296480, - 19405376, - 19405568, - 19405760 + 19857552, + 19296352, + 19405248, + 19405440, + 19405632 ], "bases": [ { @@ -226260,14 +226260,14 @@ }, { "type_name": "CPathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 30712848, + "vtable_address": 30712784, "methods": [ 13798000, 13798112, - 19333248, - 19404736, - 19404928, - 19405120, + 19333120, + 19404608, + 19404800, + 19404992, 13794080 ], "bases": [ @@ -226322,22 +226322,22 @@ }, { "type_name": "CPathQueryComponent", - "vtable_address": 30741608, + "vtable_address": 30741544, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32455200 + "offset_to_top": 32455136 } } }, { "type_name": "CPathQueryComponent", - "vtable_address": 31388392, + "vtable_address": 31388328, "methods": [ 13794928, - 19296256, - 19313968 + 19296128, + 19313840 ], "bases": [ { @@ -226369,7 +226369,7 @@ }, { "type_name": "CPathQueryUtil", - "vtable_address": 32455392, + "vtable_address": 32455328, "methods": [], "bases": [], "model": { @@ -226380,33 +226380,33 @@ }, { "type_name": "CPathSimple", - "vtable_address": 30712920, + "vtable_address": 30712856, "methods": [ 13506768, 13809472, 13811040, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 19459840, - 26419632, - 26419200, - 26419200, - 19461056, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 19459712, + 26419568, + 26419136, + 26419136, + 19460928, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -226417,21 +226417,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19342672, + 26427360, + 19342544, 13865456, 13794944, 9635312, 13824896, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -226455,83 +226455,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19333136, - 19840912, - 19834496, + 19333008, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -226539,16 +226539,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -226569,7 +226569,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -226582,28 +226582,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -226614,7 +226614,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -226625,13 +226625,13 @@ 11742448, 9636784, 9636800, - 19857680, - 19441248, - 19300368, - 19343296, - 19343936, - 19344544, - 19345136, + 19857552, + 19441120, + 19300240, + 19343168, + 19343808, + 19344416, + 19345008, 13794208 ], "bases": [ @@ -226675,15 +226675,15 @@ }, { "type_name": "CPathSimple", - "vtable_address": 30714944, + "vtable_address": 30714880, "methods": [ 13809872, 13811456, - 19343216, - 19343920, - 19344512, - 19345120, - 19346112 + 19343088, + 19343792, + 19344384, + 19344992, + 19345984 ], "bases": [ { @@ -226726,32 +226726,32 @@ }, { "type_name": "CPathTrack", - "vtable_address": 30715016, + "vtable_address": 30714952, "methods": [ 11766592, 13810240, 13810464, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21167600, - 26419632, - 26419200, - 26419200, - 21168192, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21167472, + 26419568, + 26419136, + 26419136, + 21168064, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, - 21168256, + 21168128, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -226763,21 +226763,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21167264, + 26427360, + 21167136, 13799120, 13794992, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -226801,83 +226801,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -226885,16 +226885,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -226915,7 +226915,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -226928,28 +226928,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -226960,7 +226960,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -226971,7 +226971,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -227015,14 +227015,14 @@ }, { "type_name": "CPathfindGenericTest", - "vtable_address": 31909616, + "vtable_address": 31909552, "methods": [ - 23741008, - 23741056, - 23741024, - 23741040, - 23740912, - 23819648 + 23740944, + 23740992, + 23740960, + 23740976, + 23740848, + 23819584 ], "bases": [ { @@ -227044,7 +227044,7 @@ }, { "type_name": "CPauseMatchIssue", - "vtable_address": 30231584, + "vtable_address": 30231520, "methods": [ 10429120, 10472832, @@ -227112,13 +227112,13 @@ }, { "type_name": "CPawnListGameSystem", - "vtable_address": 31395456, + "vtable_address": 31395392, "methods": [ 9634368, 9634384, 9634400, 9634416, - 19465920, + 19465792, 9634448, 9634464, 9634480, @@ -227170,12 +227170,12 @@ 9635216, 9635232, 9635248, - 19466784, + 19466656, 9635280, - 19466432, - 19465408, - 19465424, - 19464240 + 19466304, + 19465280, + 19465296, + 19464112 ], "bases": [ { @@ -227208,32 +227208,32 @@ }, { "type_name": "CPerFrameConCommandSystem", - "vtable_address": 31388496, + "vtable_address": 31388432, "methods": [ - 16600768, - 16600832, + 16600640, + 16600704, + 16600080, + 16600528, + 16600432, + 16600096, + 16600112, + 16600128, + 16600576, + 16600144, + 16600160, + 16600176, + 16600192, + 19296144, + 19297584, + 19297600, 16600208, - 16600656, - 16600560, 16600224, 16600240, + 19457888, 16600256, - 16600704, 16600272, - 16600288, - 16600304, - 16600320, - 19296272, - 19297712, - 19297728, - 16600336, - 16600352, - 16600368, - 19458016, - 16600384, - 16600400, - 19411072, - 19411232 + 19410944, + 19411104 ], "bases": [ { @@ -227343,32 +227343,32 @@ }, { "type_name": "CPhysBallSocket", - "vtable_address": 31669136, + "vtable_address": 31669072, "methods": [ 13506768, - 21106672, - 21107344, + 21106544, + 21107216, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21250832, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21250704, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -227380,21 +227380,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066560, - 21072672, - 21069888, + 26427360, + 21066432, + 21072544, + 21069760, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -227418,83 +227418,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -227502,16 +227502,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -227532,7 +227532,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -227545,28 +227545,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -227577,7 +227577,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -227588,10 +227588,10 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21190720, - 21092736 + 19857552, + 21244944, + 21190592, + 21092608 ], "bases": [ { @@ -227657,33 +227657,33 @@ }, { "type_name": "CPhysBox", - "vtable_address": 30730048, + "vtable_address": 30729984, "methods": [ 13522144, 13812352, 13811840, - 18377504, - 26419168, - 20407184, - 18010864, - 21594784, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 21595600, + 18377376, + 26419104, + 20407056, + 18010736, + 21594656, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 21595472, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 21434416, + 18378400, + 19829024, + 21434288, 9635872, 9665808, 9641296, @@ -227694,21 +227694,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21433712, + 26427360, + 21433584, 13799616, 13795040, 9635312, 13825184, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -227732,100 +227732,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21434000, - 18042720, + 21433872, + 18042592, 11747344, - 21500720, + 21500592, 11763824, - 20088224, - 19828624, - 19828800, - 21595712, - 19833664, + 20088096, + 19828496, + 19828672, + 21595584, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 20422736, + 18014720, + 18211344, + 19854832, + 20422608, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 21434480, + 21434352, 9637216, 9636096, - 21595968, + 21595840, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -227846,7 +227846,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -227859,39 +227859,39 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 20422880, - 20422256, + 20422752, + 20422128, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -227902,36 +227902,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 20485456, - 21434624, - 20407264, - 21596560, - 18004224, + 20485328, + 21434496, + 20407136, + 21596432, + 18004096, 9637120, 9637136, 9637152, - 20407312, + 20407184, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 20486672 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 20486544 ], "bases": [ { @@ -228007,7 +228007,7 @@ }, { "type_name": "CPhysBox", - "vtable_address": 30732248, + "vtable_address": 30732184, "methods": [ 9837440, 9837456 @@ -228086,7 +228086,7 @@ }, { "type_name": "CPhysConstraint", - "vtable_address": 31663032, + "vtable_address": 31662968, "methods": [ 13506768 ], @@ -228143,32 +228143,32 @@ }, { "type_name": "CPhysExplosion", - "vtable_address": 30732280, + "vtable_address": 30732216, "methods": [ 11766592, 13810352, 13810592, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21435136, - 26419632, - 26419200, - 26419200, - 21438848, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21435008, + 26419568, + 26419136, + 26419136, + 21438720, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21438928, - 19933344, - 19877920, + 21438800, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -228180,21 +228180,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21434896, + 26427360, + 21434768, 13799120, 13794976, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -228218,83 +228218,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -228302,16 +228302,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -228332,7 +228332,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -228345,28 +228345,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -228377,7 +228377,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -228388,7 +228388,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -228432,32 +228432,32 @@ }, { "type_name": "CPhysFixed", - "vtable_address": 31673176, + "vtable_address": 31673112, "methods": [ 13506768, - 21106784, - 21107472, + 21106656, + 21107344, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21250832, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21250704, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -228469,21 +228469,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066592, - 21072672, - 21069856, + 26427360, + 21066464, + 21072544, + 21069728, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -228507,83 +228507,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -228591,16 +228591,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -228621,7 +228621,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -228634,28 +228634,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -228666,7 +228666,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -228677,10 +228677,10 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21190720, - 21243792 + 19857552, + 21244944, + 21190592, + 21243664 ], "bases": [ { @@ -228746,32 +228746,32 @@ }, { "type_name": "CPhysHinge", - "vtable_address": 31665024, + "vtable_address": 31664960, "methods": [ 13506768, - 21117152, - 21119840, + 21117024, + 21119712, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21135680, - 26419632, - 26419200, - 26419200, - 21251040, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 21135552, + 26419568, + 26419136, + 26419136, + 21250912, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -228783,21 +228783,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066544, - 21072672, - 21069920, + 26427360, + 21066416, + 21072544, + 21069792, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -228821,83 +228821,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -228905,16 +228905,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -228935,7 +228935,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -228948,28 +228948,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -228980,7 +228980,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -228991,12 +228991,12 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21316080, - 21122848, - 21082000, - 21137280 + 19857552, + 21244944, + 21315952, + 21122720, + 21081872, + 21137152 ], "bases": [ { @@ -229083,12 +229083,12 @@ }, { "type_name": "CPhysHinge", - "vtable_address": 31667032, + "vtable_address": 31666968, "methods": [ - 21116768, - 21120240, - 21138736, - 21082160 + 21116640, + 21120112, + 21138608, + 21082032 ], "bases": [ { @@ -229175,7 +229175,7 @@ }, { "type_name": "CPhysHinge", - "vtable_address": 33036480, + "vtable_address": 33036416, "methods": [], "bases": [], "model": { @@ -229186,32 +229186,32 @@ }, { "type_name": "CPhysHingeAlias_phys_hinge_local", - "vtable_address": 31667080, + "vtable_address": 31667016, "methods": [ 13506768, - 21117552, - 21120656, + 21117424, + 21120528, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21135680, - 26419632, - 26419200, - 26419200, - 21251040, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 21135552, + 26419568, + 26419136, + 26419136, + 21250912, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -229223,21 +229223,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066832, - 21072672, - 21069904, + 26427360, + 21066704, + 21072544, + 21069776, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -229261,83 +229261,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -229345,16 +229345,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -229375,7 +229375,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -229388,28 +229388,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -229420,7 +229420,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -229431,12 +229431,12 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21316080, - 21122848, - 21082000, - 21137280 + 19857552, + 21244944, + 21315952, + 21122720, + 21081872, + 21137152 ], "bases": [ { @@ -229534,12 +229534,12 @@ }, { "type_name": "CPhysHingeAlias_phys_hinge_local", - "vtable_address": 31669088, + "vtable_address": 31669024, "methods": [ - 21117952, - 21121056, - 21138736, - 21082160 + 21117824, + 21120928, + 21138608, + 21082032 ], "bases": [ { @@ -229637,32 +229637,32 @@ }, { "type_name": "CPhysImpact", - "vtable_address": 30734248, + "vtable_address": 30734184, "methods": [ 11766592, 13798192, 13798224, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21439328, - 26419632, - 26419200, - 26419200, - 21439312, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21439200, + 26419568, + 26419136, + 26419136, + 21439184, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -229674,21 +229674,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21439088, + 26427360, + 21438960, 13799120, 13794960, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -229712,83 +229712,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -229796,16 +229796,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -229826,7 +229826,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -229839,28 +229839,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -229871,7 +229871,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -229882,7 +229882,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -229926,32 +229926,32 @@ }, { "type_name": "CPhysLength", - "vtable_address": 31677160, + "vtable_address": 31677096, "methods": [ 13506768, - 21107008, - 21107728, + 21106880, + 21107600, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21250832, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21250704, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -229963,21 +229963,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066624, - 21072672, - 21069824, + 26427360, + 21066496, + 21072544, + 21069696, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -230001,83 +230001,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -230085,16 +230085,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -230115,7 +230115,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -230128,28 +230128,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -230160,7 +230160,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -230171,10 +230171,10 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21190720, - 21106112 + 19857552, + 21244944, + 21190592, + 21105984 ], "bases": [ { @@ -230240,33 +230240,33 @@ }, { "type_name": "CPhysMagnet", - "vtable_address": 30736216, + "vtable_address": 30736152, "methods": [ 13526704, - 21440000, - 21440208, - 18377552, - 18065872, - 21597232, - 18010864, - 21596960, - 26419632, - 18009552, - 26419200, - 18378208, - 21440624, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 21439872, + 21440080, + 18377424, + 18065744, + 21597104, + 18010736, + 21596832, + 26419568, + 18009424, + 26419136, + 18378080, + 21440496, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -230277,21 +230277,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21439504, + 26427360, + 21439376, 13865472, 13795056, 9635312, 13825280, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -230303,113 +230303,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 21531616, - 19833664, + 18009440, + 19828496, + 19828672, + 21531488, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, - 21366752, + 21366624, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -230429,7 +230429,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -230440,30 +230440,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -230474,7 +230474,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -230485,72 +230485,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -230605,32 +230605,32 @@ }, { "type_name": "CPhysMotor", - "vtable_address": 30717008, + "vtable_address": 30716944, "methods": [ 13506768, - 21177536, - 21177568, + 21177408, + 21177440, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21177824, - 26419632, - 26419200, - 26419200, - 21242224, - 21177632, - 20141328, - 19835392, - 19835328, + 20141504, + 21177696, + 26419568, + 26419136, + 26419136, + 21242096, + 21177504, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21178608, - 19933344, - 19877920, + 21178480, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -230642,21 +230642,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21175280, + 26427360, + 21175152, 13795200, 13795024, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -230680,83 +230680,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -230764,16 +230764,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21178288, - 21311696, + 21178160, + 21311568, 9636192, - 21229072, - 21181616, + 21228944, + 21181488, 11962368, 11742368, 11865936, @@ -230794,7 +230794,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -230807,28 +230807,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -230839,7 +230839,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -230850,7 +230850,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -230905,7 +230905,7 @@ }, { "type_name": "CPhysMotor", - "vtable_address": 30741352, + "vtable_address": 30741288, "methods": [], "bases": [], "model": { @@ -230916,12 +230916,12 @@ }, { "type_name": "CPhysObjSaveRestoreOps", - "vtable_address": 31694792, + "vtable_address": 31694728, "methods": [ - 21152512, - 21326240, - 21067232, - 21068640, + 21152384, + 21326112, + 21067104, + 21068512, 9634272, 9634288 ], @@ -230956,32 +230956,32 @@ }, { "type_name": "CPhysPulley", - "vtable_address": 31675168, + "vtable_address": 31675104, "methods": [ 13506768, - 21106896, - 21107600, + 21106768, + 21107472, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21250832, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21250704, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -230993,21 +230993,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066608, - 21072672, - 21069840, + 26427360, + 21066480, + 21072544, + 21069712, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -231031,83 +231031,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -231115,16 +231115,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -231145,7 +231145,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -231158,28 +231158,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -231190,7 +231190,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -231201,10 +231201,10 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21190720, - 21112288 + 19857552, + 21244944, + 21190592, + 21112160 ], "bases": [ { @@ -231270,19 +231270,19 @@ }, { "type_name": "CPhysSaveRestoreBlockHandler", - "vtable_address": 31694640, + "vtable_address": 31694576, "methods": [ + 21066944, + 21066960, + 21321600, + 21133408, + 21066992, + 21080704, + 21133504, + 21142176, + 21294880, 21067072, - 21067088, - 21321728, - 21133536, - 21067120, - 21080832, - 21133632, - 21142304, - 21295008, - 21067200, - 21330464 + 21330336 ], "bases": [ { @@ -231325,11 +231325,11 @@ }, { "type_name": "CPhysSaveRestoreBlockHandler", - "vtable_address": 31694744, + "vtable_address": 31694680, "methods": [ - 21067216, + 21067088, 9890784, - 21330832, + 21330704, 9890816 ], "bases": [ @@ -231373,32 +231373,32 @@ }, { "type_name": "CPhysSlideConstraint", - "vtable_address": 31671128, + "vtable_address": 31671064, "methods": [ 13506768, - 21108528, - 21108720, + 21108400, + 21108592, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21251184, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21251056, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -231410,21 +231410,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066576, - 21072672, - 21069872, + 26427360, + 21066448, + 21072544, + 21069744, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -231448,83 +231448,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -231532,16 +231532,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -231562,7 +231562,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -231575,28 +231575,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -231607,7 +231607,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -231618,11 +231618,11 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21315808, - 21118336, - 21081264 + 19857552, + 21244944, + 21315680, + 21118208, + 21081136 ], "bases": [ { @@ -231709,12 +231709,12 @@ }, { "type_name": "CPhysSlideConstraint", - "vtable_address": 31673128, + "vtable_address": 31673064, "methods": [ - 21108336, - 21108928, - 21081888, - 21065552 + 21108208, + 21108800, + 21081760, + 21065424 ], "bases": [ { @@ -231801,32 +231801,32 @@ }, { "type_name": "CPhysThruster", - "vtable_address": 31653704, + "vtable_address": 31653640, "methods": [ 11766592, - 21071776, - 21071808, + 21071648, + 21071680, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21068768, - 26419632, - 26419200, - 26419200, - 21139200, - 21073312, - 20141328, - 19835392, - 19835328, + 20141504, + 21068640, + 26419568, + 26419136, + 26419136, + 21139072, + 21073184, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073472, - 19829152, + 21073344, + 19829024, 9640064, 9635872, 9665808, @@ -231838,21 +231838,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066176, - 21073296, - 21069712, + 26427360, + 21066048, + 21073168, + 21069584, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -231876,83 +231876,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -231960,16 +231960,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -231990,7 +231990,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -232003,28 +232003,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -232035,7 +232035,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -232046,9 +232046,9 @@ 11742448, 9636784, 9636800, - 19857680, - 21173824, - 21113424 + 19857552, + 21173696, + 21113296 ], "bases": [ { @@ -232103,32 +232103,32 @@ }, { "type_name": "CPhysTorque", - "vtable_address": 31655688, + "vtable_address": 31655624, "methods": [ 11766592, - 21071872, - 21071904, + 21071744, + 21071776, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21074272, - 26419632, - 26419200, - 26419200, - 21139200, - 21073312, - 20141328, - 19835392, - 19835328, + 20141504, + 21074144, + 26419568, + 26419136, + 26419136, + 21139072, + 21073184, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073472, - 19829152, + 21073344, + 19829024, 9640064, 9635872, 9665808, @@ -232140,21 +232140,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066192, - 21073296, - 21069696, + 26427360, + 21066064, + 21073168, + 21069568, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -232178,83 +232178,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -232262,16 +232262,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -232292,7 +232292,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -232305,28 +232305,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -232337,7 +232337,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -232348,9 +232348,9 @@ 11742448, 9636784, 9636800, - 19857680, - 21127824, - 21066160 + 19857552, + 21127696, + 21066032 ], "bases": [ { @@ -232405,32 +232405,32 @@ }, { "type_name": "CPhysWheelConstraint", - "vtable_address": 31685232, + "vtable_address": 31685168, "methods": [ 13506768, - 21107232, - 21107984, + 21107104, + 21107856, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21250832, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21250704, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21200240, - 19829152, + 21200112, + 19829024, 10437776, 9635872, 9665808, @@ -232442,21 +232442,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066816, - 21072672, - 21069760, + 26427360, + 21066688, + 21072544, + 21069632, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -232480,83 +232480,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -232564,16 +232564,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -232594,7 +232594,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -232607,28 +232607,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -232639,7 +232639,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -232650,10 +232650,10 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21190720, - 21115520 + 19857552, + 21244944, + 21190592, + 21115392 ], "bases": [ { @@ -232719,33 +232719,33 @@ }, { "type_name": "CPhysicalButton", - "vtable_address": 30588384, + "vtable_address": 30588320, "methods": [ 13522144, 13413424, 13414368, - 18377504, - 26419168, - 20153792, - 18010864, - 20146976, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 19993008, + 18377376, + 26419104, + 20153664, + 18010736, + 20146848, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 19992880, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19990608, + 18378400, + 19829024, + 19990480, 9635872, 9665808, 9641296, @@ -232756,21 +232756,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19993216, + 26427360, + 19993088, 13382848, 13384112, 9635312, 13440688, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -232794,100 +232794,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19993504, - 18042720, + 19993376, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, 11746960, - 19997280, + 19997152, 9636112, 9636128, - 19832960, + 19832832, 9636144, - 19991568, - 19991632, - 19979760, - 19828656, - 21311696, + 19991440, + 19991504, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -232908,7 +232908,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -232921,28 +232921,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -232953,7 +232953,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -232964,45 +232964,45 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 19988000, - 18011024, - 18004224, - 19988368, - 18004224, + 19987872, + 18010896, + 18004096, + 19988240, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13382992, - 19997408, - 19996960, - 19997520, - 19998032, - 20042656, - 19987872, - 19987888, - 19829840, - 19829856 + 19997280, + 19996832, + 19997392, + 19997904, + 20042528, + 19987744, + 19987760, + 19829712, + 19829728 ], "bases": [ { @@ -233068,44 +233068,44 @@ }, { "type_name": "CPhysicsBodyGameMarkupData", - "vtable_address": 30602376, + "vtable_address": 30602312, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32402920 + "offset_to_top": 32402856 } } }, { "type_name": "CPhysicsEntitySolver", - "vtable_address": 31687440, + "vtable_address": 31687376, "methods": [ 13506768, - 21098512, - 21099648, + 21098384, + 21099520, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21240144, - 26419632, - 26419200, - 26419200, - 20139104, - 21242752, - 20141328, - 19835392, - 19835328, + 20141504, + 21240016, + 26419568, + 26419136, + 26419136, + 20138976, + 21242624, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 21080224, + 19933296, + 19829024, + 21080096, 9635872, 9665808, 9641296, @@ -233116,21 +233116,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066896, - 21072672, - 21069952, + 26427360, + 21066768, + 21072544, + 21069824, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -233154,83 +233154,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -233238,16 +233238,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21075440, - 21311696, + 21075312, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -233268,7 +233268,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -233281,28 +233281,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -233313,7 +233313,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -233324,7 +233324,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -233389,10 +233389,10 @@ }, { "type_name": "CPhysicsEntitySolver", - "vtable_address": 31689408, + "vtable_address": 31689344, "methods": [ - 21098688, - 21099872 + 21098560, + 21099744 ], "bases": [ { @@ -233457,7 +233457,7 @@ }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 30529760, + "vtable_address": 30529696, "methods": [ 9634368, 9634384, @@ -233553,7 +233553,7 @@ }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 30530280, + "vtable_address": 30530216, "methods": [ 12937616 ], @@ -233587,7 +233587,7 @@ }, { "type_name": "CPhysicsGameSystem::PhysicsWorld_t", - "vtable_address": 30529632, + "vtable_address": 30529568, "methods": [ 12855120, 12863616 @@ -233601,10 +233601,10 @@ }, { "type_name": "CPhysicsGrab", - "vtable_address": 31803024, + "vtable_address": 31802960, "methods": [ - 22279088, - 22266192 + 22278960, + 22266064 ], "bases": [ { @@ -233626,33 +233626,33 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 30721576, + "vtable_address": 30721512, "methods": [ 13841968, 13814048, 13814784, - 18377552, - 18065872, - 21421312, - 18010864, - 21499072, - 26419632, - 18009552, - 26419200, - 21421328, - 21421152, - 18011056, - 19835392, - 19835328, - 18003520, - 21429104, - 21429648, + 18377424, + 18065744, + 21421184, + 18010736, + 21498944, + 26419568, + 18009424, + 26419136, + 21421200, + 21421024, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 21428976, + 21429520, + 18010800, + 18035072, 11747408, - 21421296, - 19829152, - 21423968, + 21421168, + 19829024, + 21423840, 9635872, 9665808, 9641296, @@ -233663,21 +233663,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21420160, + 26427360, + 21420032, 13799600, 13795104, 9635312, 13825088, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -233689,113 +233689,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21421424, - 18042720, + 21421296, + 18042592, 11747344, - 21500960, + 21500832, 11763824, - 18009568, - 19828624, - 19828800, - 21426672, - 19833664, + 18009440, + 19828496, + 19828672, + 21426544, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 21428896, + 18014720, + 18211344, + 18145168, + 21428768, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 21424032, + 21423904, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -233815,7 +233815,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -233826,41 +233826,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -233871,91 +233871,91 @@ 11742448, 9636784, 9636800, - 19857680, - 21560736, - 18327344, + 19857552, + 21560608, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 21430448, - 21428336, - 21428544, - 18004224, + 18004096, + 21430320, + 21428208, + 21428416, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 21428320, - 21369984, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 21428192, + 21369856, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21422432, + 18275360, + 21422304, 12334368, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, - 21427296, - 21428992, + 21427168, + 21428864, 12336320, - 21425120, - 21425184, + 21424992, + 21425056, 12334384, 12334416, 12334448, - 21424464, - 21369904, - 21523136, + 21424336, + 21369776, + 21523008, 12337360, 12337088 ], @@ -234065,7 +234065,7 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 30724232, + "vtable_address": 30724168, "methods": [ 11404800, 11401984 @@ -234176,23 +234176,23 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 30724264, + "vtable_address": 30724200, "methods": [ 13814768, 13814832, 12336336, 12334320, - 21425152, - 21425328, + 21425024, + 21425200, 12334336, 12334400, 12334352, 12334432, 12334464, - 21424784, + 21424656, 12337456, 12337232, - 21424384 + 21424256 ], "bases": [ { @@ -234300,7 +234300,7 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 32448832, + "vtable_address": 32448768, "methods": [], "bases": [], "model": { @@ -234311,7 +234311,7 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 32573504, + "vtable_address": 32573440, "methods": [], "bases": [], "model": { @@ -234322,33 +234322,33 @@ }, { "type_name": "CPhysicsPropMultiplayer", - "vtable_address": 31050248, + "vtable_address": 31050184, "methods": [ 13841968, - 16667760, - 16669168, - 18377552, - 18065872, - 21421312, - 18010864, - 21499072, - 26419632, - 18009552, - 26419200, - 16662080, - 21421152, - 18011056, - 19835392, - 19835328, - 18003520, - 21429104, - 21429648, + 16667632, + 16669040, + 18377424, + 18065744, + 21421184, + 18010736, + 21498944, + 26419568, + 18009424, + 26419136, + 16661952, + 21421024, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 21428976, + 21429520, + 18010800, + 18035072, 11747408, - 21421296, - 19829152, - 21423968, + 21421168, + 19829024, + 21423840, 9635872, 9665808, 9641296, @@ -234359,21 +234359,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652560, - 16655616, - 16653824, + 26427360, + 16652432, + 16655488, + 16653696, 9635312, - 16671264, - 18308160, + 16671136, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -234385,113 +234385,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21421424, - 18042720, + 21421296, + 18042592, 11747344, - 16655600, + 16655472, 11763824, - 18009568, - 19828624, - 19828800, - 21426672, - 19833664, + 18009440, + 19828496, + 19828672, + 21426544, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 21428896, + 18014720, + 18211344, + 18145168, + 21428768, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 21424032, + 21423904, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -234511,7 +234511,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -234522,41 +234522,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -234567,91 +234567,91 @@ 11742448, 9636784, 9636800, - 19857680, - 21560736, - 18327344, + 19857552, + 21560608, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 21430448, - 21428336, - 21428544, - 18004224, + 18004096, + 21430320, + 21428208, + 21428416, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 21428320, - 21369984, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 21428192, + 21369856, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21422432, + 18275360, + 21422304, 12334368, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, - 21427296, - 21428992, + 21427168, + 21428864, 12336320, - 21425120, - 21425184, + 21424992, + 21425056, 12334384, 12334416, 12334448, - 21424464, - 21369904, - 21523136, + 21424336, + 21369776, + 21523008, 12337360, 12337088 ], @@ -234772,7 +234772,7 @@ }, { "type_name": "CPhysicsPropMultiplayer", - "vtable_address": 31052904, + "vtable_address": 31052840, "methods": [ 11404800, 11401984 @@ -234894,23 +234894,23 @@ }, { "type_name": "CPhysicsPropMultiplayer", - "vtable_address": 31052936, + "vtable_address": 31052872, "methods": [ - 16668480, - 16669904, + 16668352, + 16669776, 12336336, 12334320, - 21425152, - 21425328, + 21425024, + 21425200, 12334336, 12334400, 12334352, 12334432, 12334464, - 21424784, + 21424656, 12337456, 12337232, - 21424384 + 21424256 ], "bases": [ { @@ -235029,33 +235029,33 @@ }, { "type_name": "CPhysicsPropOverride", - "vtable_address": 30724400, + "vtable_address": 30724336, "methods": [ 13841968, 13815136, 13815232, - 18377552, - 18065872, - 21421312, - 18010864, - 21499072, - 26419632, - 18009552, - 26419200, - 21421328, - 21421152, - 18011056, - 19835392, - 19835328, - 18003520, - 21429104, - 21429648, + 18377424, + 18065744, + 21421184, + 18010736, + 21498944, + 26419568, + 18009424, + 26419136, + 21421200, + 21421024, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 21428976, + 21429520, + 18010800, + 18035072, 11747408, - 21421296, - 19829152, - 21423968, + 21421168, + 19829024, + 21423840, 9635872, 9665808, 9641296, @@ -235066,21 +235066,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 13794304, 13799600, 13795088, 9635312, 13825088, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -235092,113 +235092,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21421424, - 18042720, + 21421296, + 18042592, 11747344, - 21500960, + 21500832, 11763824, - 18009568, - 19828624, - 19828800, - 21426672, - 19833664, + 18009440, + 19828496, + 19828672, + 21426544, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 21428896, + 18014720, + 18211344, + 18145168, + 21428768, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 21424032, + 21423904, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -235218,7 +235218,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -235229,41 +235229,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -235274,91 +235274,91 @@ 11742448, 9636784, 9636800, - 19857680, - 21560736, - 18327344, + 19857552, + 21560608, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 21430448, - 21428336, - 21428544, - 18004224, + 18004096, + 21430320, + 21428208, + 21428416, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 21428320, - 21369984, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 21428192, + 21369856, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21422432, + 18275360, + 21422304, 12334368, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, - 21427296, - 21428992, + 21427168, + 21428864, 12336320, - 21425120, - 21425184, + 21424992, + 21425056, 12334384, 12334416, 12334448, - 21424464, - 21369904, - 21523136, + 21424336, + 21369776, + 21523008, 12337360, 12337088 ], @@ -235479,7 +235479,7 @@ }, { "type_name": "CPhysicsPropOverride", - "vtable_address": 30727056, + "vtable_address": 30726992, "methods": [ 11404800, 11401984 @@ -235601,23 +235601,23 @@ }, { "type_name": "CPhysicsPropOverride", - "vtable_address": 30727088, + "vtable_address": 30727024, "methods": [ 13815184, 13815312, 12336336, 12334320, - 21425152, - 21425328, + 21425024, + 21425200, 12334336, 12334400, 12334352, 12334432, 12334464, - 21424784, + 21424656, 12337456, 12337232, - 21424384 + 21424256 ], "bases": [ { @@ -235736,33 +235736,33 @@ }, { "type_name": "CPhysicsPropRespawnable", - "vtable_address": 30727224, + "vtable_address": 30727160, "methods": [ 13841968, 13814880, 13814976, - 18377552, - 18065872, - 21421312, - 18010864, - 21500544, - 26419632, - 18009552, - 26419200, - 21421328, - 21421152, - 18011056, - 19835392, - 19835328, - 18003520, - 21429104, - 21429648, + 18377424, + 18065744, + 21421184, + 18010736, + 21500416, + 26419568, + 18009424, + 26419136, + 21421200, + 21421024, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 21428976, + 21429520, + 18010800, + 18035072, 11747408, - 21421296, - 19829152, - 21423968, + 21421168, + 19829024, + 21423840, 9635872, 9665808, 9641296, @@ -235773,21 +235773,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21430464, + 26427360, + 21430336, 13799600, 13795072, 9635312, 13825088, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -235799,113 +235799,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21421424, - 18042720, + 21421296, + 18042592, 11747344, - 21500960, + 21500832, 11763824, - 18009568, - 19828624, - 19828800, - 21426672, - 19833664, + 18009440, + 19828496, + 19828672, + 21426544, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 21431168, + 18014720, + 18211344, + 18145168, + 21431040, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 21424032, + 21423904, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -235925,7 +235925,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -235936,41 +235936,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -235981,91 +235981,91 @@ 11742448, 9636784, 9636800, - 19857680, - 21560736, - 18327344, + 19857552, + 21560608, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 21430448, - 21428336, - 21428544, - 18004224, + 18004096, + 21430320, + 21428208, + 21428416, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 21428320, - 21369984, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 21428192, + 21369856, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21422432, + 18275360, + 21422304, 12334368, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, - 21427296, - 21428992, + 21427168, + 21428864, 12336320, - 21425120, - 21425184, + 21424992, + 21425056, 12334384, 12334416, 12334448, - 21424464, - 21369904, - 21523136, + 21424336, + 21369776, + 21523008, 12337360, 12337088 ], @@ -236186,7 +236186,7 @@ }, { "type_name": "CPhysicsPropRespawnable", - "vtable_address": 30729880, + "vtable_address": 30729816, "methods": [ 11404800, 11401984 @@ -236308,23 +236308,23 @@ }, { "type_name": "CPhysicsPropRespawnable", - "vtable_address": 30729912, + "vtable_address": 30729848, "methods": [ 13814928, 13815056, 12336336, 12334320, - 21425152, - 21425328, + 21425024, + 21425200, 12334336, 12334400, 12334352, 12334432, 12334464, - 21424784, + 21424656, 12337456, 12337232, - 21424384 + 21424256 ], "bases": [ { @@ -236443,11 +236443,11 @@ }, { "type_name": "CPhysicsPushedEntities", - "vtable_address": 31687304, + "vtable_address": 31687240, "methods": [ - 21216032, - 21216240, - 21122384 + 21215904, + 21216112, + 21122256 ], "bases": [], "model": { @@ -236458,13 +236458,13 @@ }, { "type_name": "CPhysicsShake", - "vtable_address": 31518672, + "vtable_address": 31518608, "methods": [ 11742064, - 20400192, - 18001920, - 20399952, - 20404048 + 20400064, + 18001792, + 20399824, + 20403920 ], "bases": [ { @@ -236486,33 +236486,33 @@ }, { "type_name": "CPhysicsSpring", - "vtable_address": 31699416, + "vtable_address": 31699352, "methods": [ 13506768, - 21370384, - 21370400, + 21370256, + 21370272, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21397008, - 26419632, - 26419200, - 26419200, - 21432624, - 21370800, - 20141328, - 19835392, - 19835328, + 20141504, + 21396880, + 26419568, + 26419136, + 26419136, + 21432496, + 21370672, + 20141200, + 19835264, + 19835200, 9634320, - 21371760, 21371632, - 19933344, - 19877920, + 21371504, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -236523,21 +236523,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21366736, - 21597280, - 21369024, + 26427360, + 21366608, + 21597152, + 21368896, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -236561,83 +236561,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -236645,16 +236645,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21371968, + 21228944, + 21371840, 11962368, 11742368, 11865936, @@ -236675,7 +236675,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -236688,28 +236688,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -236720,7 +236720,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -236731,7 +236731,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -236764,33 +236764,33 @@ }, { "type_name": "CPhysicsWire", - "vtable_address": 31488024, + "vtable_address": 31487960, "methods": [ 13506768, - 20156832, - 20156848, + 20156704, + 20156720, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -236801,21 +236801,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155040, - 20399920, - 20156464, + 26427360, + 20154912, + 20399792, + 20156336, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -236839,83 +236839,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -236923,16 +236923,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -236953,7 +236953,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -236966,28 +236966,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -236998,7 +236998,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -237009,7 +237009,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -237042,33 +237042,33 @@ }, { "type_name": "CPlantedC4", - "vtable_address": 31088472, + "vtable_address": 31088408, "methods": [ 13526704, - 16928720, - 16929072, - 18377552, - 18065872, - 17164752, - 18010864, - 17163296, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16928592, + 16928944, + 18377424, + 18065744, + 17164624, + 18010736, + 17163168, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 17172416, + 18378400, + 19829024, + 17172288, 9635872, 9665808, 9641296, @@ -237079,21 +237079,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914016, - 17168480, - 16916336, + 26427360, + 16913888, + 17168352, + 16916208, 9635312, - 16936832, - 18308160, + 16936704, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -237105,95 +237105,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16913696, + 16913568, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16924144, - 16914032, - 16924176, + 16924016, + 16913904, + 16924048, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 17034576, + 17034448, 9637216, 9636096, 11746864, @@ -237201,17 +237201,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -237231,7 +237231,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -237242,30 +237242,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -237276,7 +237276,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -237287,81 +237287,81 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, + 16913616, + 16913648, + 16913680, + 16913712, 16913744, - 16913776, - 16913808, - 16913840, - 16913872, - 17044368, - 16952640, - 17116976, - 16945856 + 17044240, + 16952512, + 17116848, + 16945728 ], "bases": [ { @@ -237426,14 +237426,14 @@ }, { "type_name": "CPlantedC4", - "vtable_address": 31091032, + "vtable_address": 31090968, "methods": [ - 16916352, - 16913760, - 16913792, - 16913824, - 16913856, - 16913888 + 16916224, + 16913632, + 16913664, + 16913696, + 16913728, + 16913760 ], "bases": [ { @@ -237498,18 +237498,18 @@ }, { "type_name": "CPlantedC4::NetworkVar_m_AttributeManager", - "vtable_address": 31088168, + "vtable_address": 31088104, "methods": [ 11404272, - 22544624, - 17009376, + 22544496, + 17009248, 11401904, - 16913712, - 16923984, - 16924000, - 22674144, - 22570496, - 22694560 + 16913584, + 16923856, + 16923872, + 22674080, + 22570368, + 22694496 ], "bases": [ { @@ -237542,12 +237542,12 @@ }, { "type_name": "CPlantedC4::NetworkVar_m_entitySpottedState", - "vtable_address": 31088264, + "vtable_address": 31088200, "methods": [ 9842944, - 17009056, + 17008928, 9837520, - 16913904 + 16913776 ], "bases": [ { @@ -237569,33 +237569,33 @@ }, { "type_name": "CPlatTrigger", - "vtable_address": 31808848, + "vtable_address": 31808784, "methods": [ 13522144, - 22266368, - 22266384, - 18377504, - 26419168, - 18094240, - 18010864, - 22270128, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 22266240, + 22266256, + 18377376, + 26419104, + 18094112, + 18010736, + 22270000, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 22272672, + 18378400, + 19829024, + 22272544, 9635872, 9665808, 9641296, @@ -237606,21 +237606,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262832, - 22542928, - 22266800, + 26427360, + 22262704, + 22542800, + 22266672, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -237644,100 +237644,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, - 22319936, + 22319808, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -237758,7 +237758,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -237771,28 +237771,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -237803,7 +237803,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -237814,35 +237814,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -237886,16 +237886,16 @@ }, { "type_name": "CPlayerCommandQueue", - "vtable_address": 31704808, - "methods": [ - 21493440, - 21538496, - 21542816, - 21376272, - 21374080, - 21394048, - 21367072, - 21372944 + "vtable_address": 31704744, + "methods": [ + 21493312, + 21538368, + 21542688, + 21376144, + 21373952, + 21393920, + 21366944, + 21372816 ], "bases": [ { @@ -237917,19 +237917,19 @@ }, { "type_name": "CPlayerControllerComponent", - "vtable_address": 31395184, + "vtable_address": 31395120, "methods": [ - 19465088, - 19464192, - 19469472, - 19469920, - 17793392, - 17793408, - 17793424, - 17793440, - 17793456, - 17793472, - 19463856 + 19464960, + 19464064, + 19469344, + 19469792, + 17793264, + 17793280, + 17793296, + 17793312, + 17793328, + 17793344, + 19463728 ], "bases": [], "model": { @@ -237940,13 +237940,13 @@ }, { "type_name": "CPlayerInventory", - "vtable_address": 31882696, + "vtable_address": 31882632, "methods": [ - 22892336, - 22892576, - 22571584, - 22892944, - 22545024 + 22892272, + 22892512, + 22571456, + 22892880, + 22544896 ], "bases": [ { @@ -237968,14 +237968,14 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 31395288, + "vtable_address": 31395224, "methods": [ - 19465104, - 19464208, - 19469216, - 19469536, + 19464976, + 19464080, + 19469088, + 19469408, 10057184, - 17253376, + 17253248, 10057200, 10057216, 10057232, @@ -237988,7 +237988,7 @@ 10057344, 10057360, 10057376, - 19463872 + 19463744 ], "bases": [], "model": { @@ -237999,7 +237999,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 32617536, + "vtable_address": 32617472, "methods": [], "bases": [], "model": { @@ -238010,7 +238010,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 32722400, + "vtable_address": 32722336, "methods": [], "bases": [], "model": { @@ -238021,7 +238021,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 32725952, + "vtable_address": 32725888, "methods": [], "bases": [], "model": { @@ -238032,7 +238032,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 32738944, + "vtable_address": 32738880, "methods": [], "bases": [], "model": { @@ -238043,7 +238043,7 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 32739136, + "vtable_address": 32739072, "methods": [], "bases": [], "model": { @@ -238054,33 +238054,33 @@ }, { "type_name": "CPlayerPing", - "vtable_address": 31290664, + "vtable_address": 31290600, "methods": [ 13506768, - 17552912, - 17552928, + 17552784, + 17552800, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 17660656, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 17660528, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -238091,21 +238091,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17550704, - 17793008, - 17552272, + 26427360, + 17550576, + 17792880, + 17552144, 9635312, - 17561776, + 17561648, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -238129,83 +238129,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 17551408, - 17562032, - 19834496, + 17551280, + 17561904, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -238213,16 +238213,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -238243,7 +238243,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -238256,28 +238256,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -238288,7 +238288,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -238299,7 +238299,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -238332,32 +238332,32 @@ }, { "type_name": "CPlayerSprayDecal", - "vtable_address": 30247392, + "vtable_address": 30247328, "methods": [ 13522144, 10440896, 10443344, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10437760, 9635872, 9665808, @@ -238369,21 +238369,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10427840, 10436976, 10429264, 9635312, 10467216, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -238407,83 +238407,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 10429984, - 18104832, - 19834496, + 18104704, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -238491,16 +238491,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -238521,7 +238521,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -238534,28 +238534,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -238566,7 +238566,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -238577,35 +238577,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, - 18004256, - 18261776, - 18057568, + 18045984, + 18004128, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -238660,33 +238660,33 @@ }, { "type_name": "CPlayerVisibility", - "vtable_address": 30348064, + "vtable_address": 30348000, "methods": [ 13506768, 12025488, 12025504, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12059568, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12052672, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -238697,12 +238697,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024784, 12096352, 12025792, @@ -238710,8 +238710,8 @@ 12034752, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -238735,83 +238735,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027408, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -238819,16 +238819,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -238849,7 +238849,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -238862,28 +238862,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -238894,7 +238894,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -238905,7 +238905,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -238938,13 +238938,13 @@ }, { "type_name": "CPlayerVoiceListener", - "vtable_address": 31704200, + "vtable_address": 31704136, "methods": [ 9634368, 9634384, 9634400, - 21386256, - 21386368, + 21386128, + 21386240, 9634448, 9634464, 9634480, @@ -238958,7 +238958,7 @@ 9634608, 9634624, 9634640, - 21372544, + 21372416, 9634672, 9634688, 9634704, @@ -238996,12 +238996,12 @@ 9635216, 9635232, 9635248, - 21367040, + 21366912, 9635280, - 21367024, - 21375664, - 21375680, - 21367008 + 21366896, + 21375536, + 21375552, + 21366880 ], "bases": [ { @@ -239034,37 +239034,37 @@ }, { "type_name": "CPlayer_CameraServices", - "vtable_address": 31388800, + "vtable_address": 31388736, "methods": [ - 19297920, - 19296336, - 19307296, - 19307552, - 19296480, - 19383696, + 19297792, + 19296208, + 19307168, + 19307424, + 19296352, + 19383568, 10057200, 10057216, 10057232, - 19296480, - 19369120, - 17253408, - 19405920, + 19296352, + 19368992, + 17253280, + 19405792, 10057312, 10057328, 10057344, 10057360, - 19304640, - 19298656, - 17260528, + 19304512, + 19298528, + 17260400, 12856192, - 19308816, - 19304448, - 19350192, - 19307200, - 19300192, - 19296320, - 19296496, - 19315248 + 19308688, + 19304320, + 19350064, + 19307072, + 19300064, + 19296192, + 19296368, + 19315120 ], "bases": [ { @@ -239086,12 +239086,12 @@ }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_PlayerFog", - "vtable_address": 31388704, + "vtable_address": 31388640, "methods": [ 12335136, - 19298688, - 19294288, - 19298848 + 19298560, + 19294160, + 19298720 ], "bases": [ { @@ -239113,12 +239113,12 @@ }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_audio", - "vtable_address": 31388752, + "vtable_address": 31388688, "methods": [ - 19297904, - 19298752, - 19296304, - 19298864 + 19297776, + 19298624, + 19296176, + 19298736 ], "bases": [ { @@ -239140,14 +239140,14 @@ }, { "type_name": "CPlayer_ItemServices", - "vtable_address": 31389720, + "vtable_address": 31389656, "methods": [ - 19297952, - 19296432, - 19308656, - 19308944, + 19297824, + 19296304, + 19308528, + 19308816, 10057184, - 17253376, + 17253248, 10057200, 10057216, 10057232, @@ -239160,12 +239160,12 @@ 10057344, 10057360, 10057376, - 19298656, - 19323264, - 19296416, - 19318848, - 19296448, - 19299008 + 19298528, + 19323136, + 19296288, + 19318720, + 19296320, + 19298880 ], "bases": [ { @@ -239187,52 +239187,52 @@ }, { "type_name": "CPlayer_MovementServices", - "vtable_address": 31389928, - "methods": [ - 19297968, - 19296464, - 19308736, - 19309056, - 19296480, - 19364704, - 19299216, + "vtable_address": 31389864, + "methods": [ + 19297840, + 19296336, + 19308608, + 19308928, + 19296352, + 19364576, + 19299088, 10057216, - 19299120, + 19298992, 10057248, 10057264, 10057280, - 19366624, + 19366496, 10057312, 10057328, 10057344, 10057360, 10057376, - 19298656, - 19382528, - 17253456, - 19396880, - 19309312, - 19461168, - 19294320, - 19298880, - 17253472, - 19294336, - 19415376, - 19296496, - 19296512, - 19296528, - 19328160, - 17253488, - 17253504, - 19308320, - 19299376, - 19294352, - 17253520, - 19296544, - 19311728, - 17253536, - 19313504, - 17253552 + 19298528, + 19382400, + 17253328, + 19396752, + 19309184, + 19461040, + 19294192, + 19298752, + 17253344, + 19294208, + 19415248, + 19296368, + 19296384, + 19296400, + 19328032, + 17253360, + 17253376, + 19308192, + 19299248, + 19294224, + 17253392, + 19296416, + 19311600, + 17253408, + 19313376, + 17253424 ], "bases": [ { @@ -239254,7 +239254,7 @@ }, { "type_name": "CPlayer_MovementServices", - "vtable_address": 32615072, + "vtable_address": 32615008, "methods": [], "bases": [], "model": { @@ -239265,62 +239265,62 @@ }, { "type_name": "CPlayer_MovementServices_Humanoid", - "vtable_address": 31393744, + "vtable_address": 31393680, "methods": [ - 19465008, - 19352736, - 19353440, - 19353520, - 19296480, - 19379744, - 19299216, + 19464880, + 19352608, + 19353312, + 19353392, + 19296352, + 19379616, + 19299088, 10057216, - 19353632, - 19383344, - 19366704, - 17550544, - 19372704, + 19353504, + 19383216, + 19366576, + 17550416, + 19372576, 10057312, 10057328, 10057344, 10057360, - 19296496, - 19511712, - 19382528, - 17253456, - 19396880, - 19309312, - 19461168, - 19294320, - 19357664, - 17253472, - 19294336, - 19415376, - 19296496, - 19296512, - 19296528, - 19328160, - 17253488, - 17253504, - 19308320, - 19299376, - 19354480, - 17253520, - 19296544, - 19311728, - 19357712, - 19313504, - 17253552, - 19368144, - 19354176, - 17550560, - 19354816, - 19356560, - 19356864, - 19296560, - 19357472, - 19354864, - 17550576 + 19296368, + 19511584, + 19382400, + 17253328, + 19396752, + 19309184, + 19461040, + 19294192, + 19357536, + 17253344, + 19294208, + 19415248, + 19296368, + 19296384, + 19296400, + 19328032, + 17253360, + 17253376, + 19308192, + 19299248, + 19354352, + 17253392, + 19296416, + 19311600, + 19357584, + 19313376, + 17253424, + 19368016, + 19354048, + 17550432, + 19354688, + 19356432, + 19356736, + 19296432, + 19357344, + 19354736, + 17550448 ], "bases": [ { @@ -239353,18 +239353,18 @@ }, { "type_name": "CPlayer_ObserverServices", - "vtable_address": 31394192, + "vtable_address": 31394128, "methods": [ - 19465024, - 19463952, - 19469280, - 19469632, + 19464896, + 19463824, + 19469152, + 19469504, 10057184, - 19470016, + 19469888, 10057200, 10057216, 10057232, - 19463968, + 19463840, 10057264, 10057280, 10057296, @@ -239373,22 +239373,22 @@ 10057344, 10057360, 10057376, - 19464224, + 19464096, 10629856, - 19497408, + 19497280, 9908240, - 19471584, - 19463984, - 19498480, - 19492688, - 19468928, - 19492496, - 19465168, - 19471376, - 19470960, - 19493040, - 19492528, - 19494032 + 19471456, + 19463856, + 19498352, + 19492560, + 19468800, + 19492368, + 19465040, + 19471248, + 19470832, + 19492912, + 19492400, + 19493904 ], "bases": [ { @@ -239410,14 +239410,14 @@ }, { "type_name": "CPlayer_UseServices", - "vtable_address": 31394480, + "vtable_address": 31394416, "methods": [ - 19465040, - 19464080, - 19469344, - 19469728, + 19464912, + 19463952, + 19469216, + 19469600, 10057184, - 17253376, + 17253248, 10057200, 10057216, 10057232, @@ -239430,11 +239430,11 @@ 10057344, 10057360, 10057376, - 19464224, - 19466240, - 16914000, - 17253648, - 17253664 + 19464096, + 19466112, + 16913872, + 17253520, + 17253536 ], "bases": [ { @@ -239456,7 +239456,7 @@ }, { "type_name": "CPlayer_UseServices", - "vtable_address": 32614592, + "vtable_address": 32614528, "methods": [], "bases": [], "model": { @@ -239467,14 +239467,14 @@ }, { "type_name": "CPlayer_WaterServices", - "vtable_address": 31394680, + "vtable_address": 31394616, "methods": [ - 19465056, - 19464112, - 19469408, - 19469824, + 19464928, + 19463984, + 19469280, + 19469696, 10057184, - 19466576, + 19466448, 10057200, 10057216, 10057232, @@ -239487,10 +239487,10 @@ 10057344, 10057360, 10057376, - 19464224, - 18004848, - 17550592, - 19464096 + 19464096, + 18004720, + 17550464, + 19463968 ], "bases": [ { @@ -239512,17 +239512,17 @@ }, { "type_name": "CPlayer_WeaponServices", - "vtable_address": 31394872, + "vtable_address": 31394808, "methods": [ - 19465072, - 19464128, - 19470384, - 19468784, + 19464944, + 19464000, + 19470256, + 19468656, 10057184, - 19464224, - 19464144, + 19464096, + 19464016, 10057216, - 19473408, + 19473280, 10057248, 10057264, 10057280, @@ -239531,26 +239531,26 @@ 10057328, 10057344, 10057360, - 19471264, - 19464224, - 17793520, - 17891216, - 19464160, - 19464176, - 19463888, - 16598944, - 18004336, - 19463904, - 17793536, - 19463920, - 17793552, - 19473056, - 17793568, - 17793584, - 19463936, - 19465360, - 17793600, - 17793616 + 19471136, + 19464096, + 17793392, + 17891088, + 19464032, + 19464048, + 19463760, + 16598816, + 18004208, + 19463776, + 17793408, + 19463792, + 17793424, + 19472928, + 17793440, + 17793456, + 19463808, + 19465232, + 17793472, + 17793488 ], "bases": [ { @@ -239572,32 +239572,32 @@ }, { "type_name": "CPointAngleSensor", - "vtable_address": 31713624, + "vtable_address": 31713560, "methods": [ 11766592, - 21388720, - 21388992, + 21388592, + 21388864, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21396576, - 26419632, - 26419200, - 26419200, - 21409936, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21396448, + 26419568, + 26419136, + 26419136, + 21409808, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21474432, - 19933344, - 19877920, + 21474304, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -239609,21 +239609,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367248, - 21372528, - 21369120, + 26427360, + 21367120, + 21372400, + 21368992, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -239647,83 +239647,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -239731,16 +239731,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21475248, - 21311696, + 21475120, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -239761,7 +239761,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -239774,28 +239774,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -239806,7 +239806,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -239817,7 +239817,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -239861,32 +239861,32 @@ }, { "type_name": "CPointAngularVelocitySensor", - "vtable_address": 31717560, + "vtable_address": 31717496, "methods": [ 11766592, - 21389648, - 21389264, + 21389520, + 21389136, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21371792, - 26419632, - 26419200, - 26419200, - 21393392, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21371664, + 26419568, + 26419136, + 26419136, + 21393264, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -239898,21 +239898,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367280, - 21372528, - 21369152, + 26427360, + 21367152, + 21372400, + 21369024, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -239936,83 +239936,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -240020,16 +240020,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21481424, - 21311696, + 21481296, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -240050,7 +240050,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -240063,28 +240063,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -240095,7 +240095,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -240106,7 +240106,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -240150,32 +240150,32 @@ }, { "type_name": "CPointBroadcastClientCommand", - "vtable_address": 31455184, + "vtable_address": 31455120, "methods": [ 11766592, - 20157152, - 20157184, + 20157024, + 20157056, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -240187,21 +240187,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154160, - 20157632, - 20156224, + 26427360, + 20154032, + 20157504, + 20156096, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -240225,83 +240225,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -240309,16 +240309,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -240339,7 +240339,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -240352,28 +240352,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -240384,7 +240384,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -240395,7 +240395,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -240439,33 +240439,33 @@ }, { "type_name": "CPointCamera", - "vtable_address": 30401912, + "vtable_address": 30401848, "methods": [ 13506768, 12098896, 12098912, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12158432, - 26419632, - 26419200, - 26419200, - 20139104, + 26419568, + 26419136, + 26419136, + 20138976, 12105152, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -240476,12 +240476,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12097008, 12202528, 12099728, @@ -240489,8 +240489,8 @@ 12120016, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -240514,83 +240514,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12105088, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096976, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -240598,16 +240598,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -240628,7 +240628,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -240641,28 +240641,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -240673,7 +240673,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -240684,7 +240684,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -240717,33 +240717,33 @@ }, { "type_name": "CPointCameraVFOV", - "vtable_address": 30403880, + "vtable_address": 30403816, "methods": [ 13506768, 12098960, 12098976, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12180304, - 26419632, - 26419200, - 26419200, - 20139104, + 26419568, + 26419136, + 26419136, + 20138976, 12105152, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -240754,12 +240754,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12097024, 12202528, 12099712, @@ -240767,8 +240767,8 @@ 12120016, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -240792,83 +240792,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12105088, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096976, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -240876,16 +240876,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -240906,7 +240906,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -240919,28 +240919,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -240951,7 +240951,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -240962,7 +240962,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -241006,32 +241006,32 @@ }, { "type_name": "CPointChildModifier", - "vtable_address": 30405848, + "vtable_address": 30405784, "methods": [ 11766592, 12099280, 12099312, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, 12111072, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -241043,12 +241043,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12097056, 12102800, 12099744, @@ -241056,8 +241056,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -241081,83 +241081,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -241165,16 +241165,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -241195,7 +241195,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -241208,28 +241208,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -241240,7 +241240,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -241251,7 +241251,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -241295,32 +241295,32 @@ }, { "type_name": "CPointClientCommand", - "vtable_address": 31451248, + "vtable_address": 31451184, "methods": [ 11766592, - 20156960, - 20156992, + 20156832, + 20156864, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -241332,21 +241332,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154128, - 20157632, - 20156192, + 26427360, + 20154000, + 20157504, + 20156064, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -241370,83 +241370,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -241454,16 +241454,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -241484,7 +241484,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -241497,28 +241497,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -241529,7 +241529,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -241540,7 +241540,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -241584,32 +241584,32 @@ }, { "type_name": "CPointClientUIDialog", - "vtable_address": 30143512, + "vtable_address": 30143448, "methods": [ 13522144, 9646880, 9646896, - 18377504, - 26419168, + 18377376, + 26419104, 9640016, - 18010864, + 18010736, 9659504, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9642032, 9635872, 9665808, @@ -241621,21 +241621,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9637392, 9697008, 9639152, 9635312, 9658160, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -241659,83 +241659,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -241743,16 +241743,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -241773,7 +241773,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -241786,28 +241786,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -241818,7 +241818,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -241829,35 +241829,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 9655264, 9637408, 9637440 @@ -241915,32 +241915,32 @@ }, { "type_name": "CPointClientUIWorldPanel", - "vtable_address": 30145728, + "vtable_address": 30145664, "methods": [ 9678752, 9646944, 9647040, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 9683728, - 26419632, - 26419200, - 26419200, - 18377792, + 26419568, + 26419136, + 26419136, + 18377664, 9648528, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9640080, 9635872, 9665808, @@ -241952,21 +241952,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9637520, 9697008, 9639136, 9635312, 9657712, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -241990,83 +241990,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 9639984, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 9637488, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -242074,16 +242074,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -242104,7 +242104,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -242117,28 +242117,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -242149,7 +242149,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -242160,35 +242160,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 9637312, 9653472, 9653760, @@ -242247,32 +242247,32 @@ }, { "type_name": "CPointClientUIWorldTextPanel", - "vtable_address": 30147952, + "vtable_address": 30147888, "methods": [ 9678752, 9647152, 9647248, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 9683728, - 26419632, - 26419200, - 26419200, - 18377792, + 26419568, + 26419136, + 26419136, + 18377664, 9648528, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9640080, 9635872, 9665808, @@ -242284,21 +242284,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 9637552, 9697008, 9639120, 9635312, 9657808, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -242322,83 +242322,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 9639984, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 9637488, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -242406,16 +242406,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -242436,7 +242436,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -242449,28 +242449,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -242481,7 +242481,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -242492,35 +242492,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 9637312, 9653472, 9653760, @@ -242590,33 +242590,33 @@ }, { "type_name": "CPointCommentaryNode", - "vtable_address": 31461448, + "vtable_address": 31461384, "methods": [ 13526704, - 20176352, - 20176832, - 18377552, - 18065872, - 20399728, - 18010864, - 20399136, - 26419632, - 18009552, - 26419200, - 20380960, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 20176224, + 20176704, + 18377424, + 18065744, + 20399600, + 18010736, + 20399008, + 26419568, + 18009424, + 26419136, + 20380832, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -242627,21 +242627,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154432, - 20399904, - 20156256, + 26427360, + 20154304, + 20399776, + 20156128, 9635312, - 20197696, - 18308160, + 20197568, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -242653,95 +242653,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 20158528, - 19840912, - 20193232, + 20158400, + 19840784, + 20193104, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -242749,17 +242749,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -242779,7 +242779,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -242790,30 +242790,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -242824,7 +242824,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -242835,72 +242835,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -242955,32 +242955,32 @@ }, { "type_name": "CPointEntity", - "vtable_address": 30325584, + "vtable_address": 30325520, "methods": [ 11766592, 11747472, 11747488, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -242992,12 +242992,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11743952, 12023520, 11746016, @@ -243005,8 +243005,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -243030,83 +243030,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -243114,16 +243114,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -243144,7 +243144,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -243157,28 +243157,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -243189,7 +243189,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -243200,7 +243200,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -243233,7 +243233,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32313536, + "vtable_address": 32313472, "methods": [], "bases": [], "model": { @@ -243244,7 +243244,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32575104, + "vtable_address": 32575040, "methods": [], "bases": [], "model": { @@ -243255,7 +243255,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32576096, + "vtable_address": 32576032, "methods": [], "bases": [], "model": { @@ -243266,7 +243266,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32576224, + "vtable_address": 32576160, "methods": [], "bases": [], "model": { @@ -243277,7 +243277,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32859872, + "vtable_address": 32859808, "methods": [], "bases": [], "model": { @@ -243288,7 +243288,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32860000, + "vtable_address": 32859936, "methods": [], "bases": [], "model": { @@ -243299,7 +243299,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32860128, + "vtable_address": 32860064, "methods": [], "bases": [], "model": { @@ -243310,7 +243310,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32915264, + "vtable_address": 32915200, "methods": [], "bases": [], "model": { @@ -243321,7 +243321,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 32963008, + "vtable_address": 32962944, "methods": [], "bases": [], "model": { @@ -243332,7 +243332,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 33017152, + "vtable_address": 33017088, "methods": [], "bases": [], "model": { @@ -243343,7 +243343,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 33214752, + "vtable_address": 33214688, "methods": [], "bases": [], "model": { @@ -243354,7 +243354,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 33215968, + "vtable_address": 33215904, "methods": [], "bases": [], "model": { @@ -243365,7 +243365,7 @@ }, { "type_name": "CPointEntity", - "vtable_address": 33264704, + "vtable_address": 33264640, "methods": [], "bases": [], "model": { @@ -243376,33 +243376,33 @@ }, { "type_name": "CPointEntityFinder", - "vtable_address": 31705496, + "vtable_address": 31705432, "methods": [ 13506768, - 21387456, - 21387776, + 21387328, + 21387648, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21396320, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21396192, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -243413,21 +243413,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367168, - 21597280, - 21369056, + 26427360, + 21367040, + 21597152, + 21368928, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -243451,83 +243451,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -243535,16 +243535,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -243565,7 +243565,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -243578,28 +243578,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -243610,7 +243610,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -243621,7 +243621,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -243654,32 +243654,32 @@ }, { "type_name": "CPointGamestatsCounter", - "vtable_address": 31377352, + "vtable_address": 31377288, "methods": [ 11766592, - 18825840, - 18825872, + 18825712, + 18825744, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -243691,21 +243691,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18814960, - 18825936, - 18825104, + 26427360, + 18814832, + 18825808, + 18824976, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -243729,83 +243729,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -243813,16 +243813,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -243843,7 +243843,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -243856,28 +243856,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -243888,7 +243888,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -243899,7 +243899,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -243943,32 +243943,32 @@ }, { "type_name": "CPointGiveAmmo", - "vtable_address": 30982472, + "vtable_address": 30982408, "methods": [ 11766592, 15983296, 15983328, 12023536, - 26419168, + 26419104, 15977760, - 20141632, + 20141504, 15991504, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -243980,12 +243980,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15972048, 15983392, 15975472, @@ -243993,8 +243993,8 @@ 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -244018,83 +244018,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -244102,16 +244102,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -244132,7 +244132,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -244145,28 +244145,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -244177,7 +244177,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -244188,7 +244188,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -244232,32 +244232,32 @@ }, { "type_name": "CPointHurt", - "vtable_address": 31721496, + "vtable_address": 31721432, "methods": [ 11766592, - 21370608, - 21370640, + 21370480, + 21370512, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21377568, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21377440, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -244269,21 +244269,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367328, - 21372528, - 21369184, + 26427360, + 21367200, + 21372400, + 21369056, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -244307,83 +244307,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -244391,16 +244391,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -244421,7 +244421,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -244434,28 +244434,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -244466,7 +244466,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -244477,7 +244477,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -244521,33 +244521,33 @@ }, { "type_name": "CPointOrient", - "vtable_address": 30407816, + "vtable_address": 30407752, "methods": [ 13506768, 12099024, 12099040, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, 12143952, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -244558,12 +244558,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12097072, 12202528, 12099760, @@ -244571,8 +244571,8 @@ 12120112, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -244596,83 +244596,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12098544, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 12096976, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -244680,16 +244680,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -244710,7 +244710,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -244723,28 +244723,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -244755,7 +244755,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -244766,7 +244766,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -244799,32 +244799,32 @@ }, { "type_name": "CPointPrefab", - "vtable_address": 30738704, + "vtable_address": 30738640, "methods": [ 13506768, - 21455600, - 21455696, + 21455472, + 21455568, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21580192, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 21455808, - 21455824, + 20141504, + 21580064, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 21455680, + 21455696, 9634320, 11802176, 11966912, - 21529280, - 21579456, + 21529152, + 21579328, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -244836,21 +244836,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21455264, + 26427360, + 21455136, 13865488, 13795008, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -244874,83 +244874,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -244958,16 +244958,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -244988,7 +244988,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -245001,28 +245001,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -245033,7 +245033,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -245044,7 +245044,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -245099,10 +245099,10 @@ }, { "type_name": "CPointPrefabDynamicIOSignature", - "vtable_address": 31707464, + "vtable_address": 31707400, "methods": [ - 21384384, - 21384976 + 21384256, + 21384848 ], "bases": [ { @@ -245124,32 +245124,32 @@ }, { "type_name": "CPointProximitySensor", - "vtable_address": 31715592, + "vtable_address": 31715528, "methods": [ 11766592, - 21387552, - 21387888, + 21387424, + 21387760, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21400400, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21400272, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -245161,21 +245161,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367264, - 21372528, - 21369136, + 26427360, + 21367136, + 21372400, + 21369008, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -245199,83 +245199,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -245283,16 +245283,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21399408, - 21311696, + 21399280, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -245313,7 +245313,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -245326,28 +245326,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -245358,7 +245358,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -245369,7 +245369,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -245413,33 +245413,33 @@ }, { "type_name": "CPointPulse", - "vtable_address": 31707496, + "vtable_address": 31707432, "methods": [ 13506768, - 21370448, - 21370464, + 21370320, + 21370336, 12023536, - 26419168, - 21395904, - 20141632, - 21401056, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 21395776, + 20141504, + 21400928, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -245450,21 +245450,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367184, - 21597280, - 21369072, + 26427360, + 21367056, + 21597152, + 21368944, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -245488,83 +245488,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -245572,16 +245572,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -245602,7 +245602,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -245615,28 +245615,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -245647,7 +245647,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -245658,7 +245658,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -245691,32 +245691,32 @@ }, { "type_name": "CPointPush", - "vtable_address": 31701384, + "vtable_address": 31701320, "methods": [ 11766592, - 21370512, - 21370544, + 21370384, + 21370416, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21399104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21398976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, - 21372352, + 21372224, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -245728,21 +245728,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21366784, - 21372528, - 21369040, + 26427360, + 21366656, + 21372400, + 21368912, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -245766,83 +245766,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -245850,16 +245850,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -245880,7 +245880,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -245893,28 +245893,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -245925,7 +245925,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -245936,7 +245936,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -245980,32 +245980,32 @@ }, { "type_name": "CPointServerCommand", - "vtable_address": 31453216, + "vtable_address": 31453152, "methods": [ 11766592, - 20157056, - 20157088, + 20156928, + 20156960, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -246017,21 +246017,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154144, - 20157632, - 20156208, + 26427360, + 20154016, + 20157504, + 20156080, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -246055,83 +246055,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -246139,16 +246139,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -246169,7 +246169,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -246182,28 +246182,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -246214,7 +246214,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -246225,7 +246225,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -246269,33 +246269,33 @@ }, { "type_name": "CPointTeleport", - "vtable_address": 31723464, + "vtable_address": 31723400, "methods": [ 13506768, - 21370704, - 21370736, + 21370576, + 21370608, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21390928, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21390800, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 21369888, + 19933296, + 19829024, + 21369760, 9635872, 9665808, 9641296, @@ -246306,21 +246306,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367344, - 21374912, - 21369200, + 26427360, + 21367216, + 21374784, + 21369072, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -246344,83 +246344,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -246428,16 +246428,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -246458,7 +246458,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -246471,28 +246471,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -246503,7 +246503,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -246514,7 +246514,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -246569,32 +246569,32 @@ }, { "type_name": "CPointTemplate", - "vtable_address": 30409784, + "vtable_address": 30409720, "methods": [ 12190192, 12114288, 12115264, 12023536, - 26419168, + 26419104, 12105936, - 20141632, + 20141504, 12106608, - 26419632, - 26419200, - 26419200, - 20139104, + 26419568, + 26419136, + 26419136, + 20138976, 12144800, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -246606,12 +246606,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12097136, 12102928, 12099776, @@ -246619,8 +246619,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -246644,83 +246644,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 12097104, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -246728,16 +246728,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -246758,7 +246758,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -246771,28 +246771,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -246803,7 +246803,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -246814,7 +246814,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12097088, 12097120 ], @@ -246871,33 +246871,33 @@ }, { "type_name": "CPointValueRemapper", - "vtable_address": 31709464, + "vtable_address": 31709400, "methods": [ 13506768, - 21390480, - 21390016, + 21390352, + 21389888, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21371888, - 26419632, - 26419200, - 26419200, - 21533664, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21371760, + 26419568, + 26419136, + 26419136, + 21533536, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21371648, - 19933344, - 19877920, + 21371520, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -246908,21 +246908,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367200, - 21597280, - 21369088, + 26427360, + 21367072, + 21597152, + 21368960, 9635312, - 21405984, + 21405856, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -246946,83 +246946,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21374768, - 19840912, - 19834496, + 21374640, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -247030,16 +247030,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21468784, + 21228944, + 21468656, 11962368, 11742368, 11865936, @@ -247060,7 +247060,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -247073,28 +247073,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -247105,7 +247105,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -247116,7 +247116,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -247149,32 +247149,32 @@ }, { "type_name": "CPointVelocitySensor", - "vtable_address": 31719528, + "vtable_address": 31719464, "methods": [ 11766592, - 21387664, - 21388016, + 21387536, + 21387888, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 21372144, - 26419632, - 26419200, - 26419200, - 21396032, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 21372016, + 26419568, + 26419136, + 26419136, + 21395904, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -247186,21 +247186,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367296, - 21372528, - 21369168, + 26427360, + 21367168, + 21372400, + 21369040, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -247224,83 +247224,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -247308,16 +247308,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21517568, - 21311696, + 21517440, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -247338,7 +247338,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -247351,28 +247351,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -247383,7 +247383,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -247394,7 +247394,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -247438,32 +247438,32 @@ }, { "type_name": "CPointWorldText", - "vtable_address": 31711432, - "methods": [ - 21535840, - 21374800, - 21374832, - 18377504, - 26419168, - 18094240, - 18010864, - 21371776, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + "vtable_address": 31711368, + "methods": [ + 21535712, + 21374672, + 21374704, + 18377376, + 26419104, + 18094112, + 18010736, + 21371648, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10437760, 9635872, 9665808, @@ -247475,21 +247475,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21367232, - 21374896, - 21369104, + 26427360, + 21367104, + 21374768, + 21368976, 9635312, - 21406112, - 18308160, + 21405984, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -247513,83 +247513,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21374784, - 18104832, - 19834496, + 21374656, + 18104704, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 21367216, + 21367088, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -247597,16 +247597,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -247627,7 +247627,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -247640,28 +247640,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -247672,7 +247672,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -247683,35 +247683,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, - 18004256, - 18261776, - 18057568, + 18045984, + 18004128, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -247766,7 +247766,7 @@ }, { "type_name": "CPostConnectCallback", - "vtable_address": 31926272, + "vtable_address": 31926208, "methods": [], "bases": [], "model": { @@ -247777,7 +247777,7 @@ }, { "type_name": "CPostConnectCallback", - "vtable_address": 32060456, + "vtable_address": 32060392, "methods": [], "bases": [], "model": { @@ -247788,32 +247788,32 @@ }, { "type_name": "CPostProcessingVolume", - "vtable_address": 30415616, + "vtable_address": 30415552, "methods": [ 11931776, 12226192, 12226816, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 12206640, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12219184, 12217200, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -247825,21 +247825,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12202656, 12206736, 12204448, 9635312, 12238368, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -247863,83 +247863,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12206704, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -247947,16 +247947,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -247977,7 +247977,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -247990,28 +247990,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -248022,7 +248022,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -248033,35 +248033,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 12202672, 11742352, 12208816, @@ -248157,7 +248157,7 @@ }, { "type_name": "CPostProcessingVolume", - "vtable_address": 30417880, + "vtable_address": 30417816, "methods": [ 12225600, 12227456, @@ -248248,23 +248248,23 @@ }, { "type_name": "CPreMatchInfoData", - "vtable_address": 30831544, + "vtable_address": 30831480, "methods": [ 14755808, 14844800, - 24747814, + 24747750, 14345456, 14924320, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14099904, 14062288, 14627120, 9474464, 14183680, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052496, 14022208 @@ -248300,23 +248300,23 @@ }, { "type_name": "CPreMatchInfoData_TeamStats", - "vtable_address": 30831384, + "vtable_address": 30831320, "methods": [ 14755648, 14829136, - 24747814, + 24747750, 14345280, 14901936, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14088848, 14062224, 14461872, 9474464, 14186688, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052464, 14022192 @@ -248352,17 +248352,17 @@ }, { "type_name": "CPrecacheRegister", - "vtable_address": 31725528, + "vtable_address": 31725464, "methods": [ 9634368, 9634384, 9634400, - 21375552, - 21366752, + 21375424, + 21366624, 9634448, 9634464, 9634480, - 21366752, + 21366624, 9634512, 9634528, 9634544, @@ -248410,12 +248410,12 @@ 9635216, 9635232, 9635248, - 21367392, + 21367264, 9635280, - 21367376, - 21375600, - 21375616, - 21367360 + 21367248, + 21375472, + 21375488, + 21367232 ], "bases": [ { @@ -248448,32 +248448,32 @@ }, { "type_name": "CPrecipitation", - "vtable_address": 31481608, + "vtable_address": 31481544, "methods": [ 11931776, - 20191328, - 20192272, - 18377504, - 26419168, - 20160160, - 18010864, - 20352384, - 26419632, - 26419200, - 26419200, + 20191200, + 20192144, + 18377376, + 26419104, + 20160032, + 18010736, + 20352256, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -248485,21 +248485,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154960, - 20159072, - 20156416, + 26427360, + 20154832, + 20158944, + 20156288, 9635312, - 20197952, - 18308160, + 20197824, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -248523,83 +248523,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20158512, - 19840912, - 19834496, + 20158384, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -248607,16 +248607,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -248637,7 +248637,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -248650,28 +248650,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -248679,10 +248679,10 @@ 9636688, 9636704, 9636720, - 20154928, - 20154944, + 20154800, + 20154816, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -248693,35 +248693,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -248795,33 +248795,33 @@ }, { "type_name": "CPrecipitationBlocker", - "vtable_address": 31483864, + "vtable_address": 31483800, "methods": [ 13522144, - 20159008, - 20159024, - 18377504, - 26419168, - 20160208, - 18010864, - 20351904, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20158880, + 20158896, + 18377376, + 26419104, + 20160080, + 18010736, + 20351776, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -248832,21 +248832,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154976, - 20399936, - 20156432, + 26427360, + 20154848, + 20399808, + 20156304, 9635312, - 20198080, - 18308160, + 20197952, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -248870,83 +248870,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 20158544, - 19840912, - 19834496, + 20158416, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -248954,16 +248954,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -248984,7 +248984,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -248997,28 +248997,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -249029,7 +249029,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -249040,35 +249040,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -249112,7 +249112,7 @@ }, { "type_name": "CPrecipitationVData", - "vtable_address": 30478120, + "vtable_address": 30478056, "methods": [ 12384976, 12385104, @@ -249153,23 +249153,23 @@ }, { "type_name": "CPredictionEventPB<(unsigned int)1, CCSPredictionEvent_DamageTag, CCSPredictionEvent_DamageTag>", - "vtable_address": 31283008, + "vtable_address": 31282944, "methods": [ - 17345152, - 17345168, - 24747814, + 17345024, + 17345040, + 24747750, 14337760, 14886016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14029856, 14066192, 14439968, 9474464, 14093536, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051152, 14018640 @@ -249216,23 +249216,23 @@ }, { "type_name": "CPredictionEventPB<(unsigned int)128, CPredictionEvent_StringCommand, CPredictionEvent_StringCommand>", - "vtable_address": 31310504, + "vtable_address": 31310440, "methods": [ - 18011280, - 18011296, - 24747814, + 18011152, + 18011168, + 24747750, 15289952, 15741920, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15078736, 15400256, 9474464, 15128512, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071456, 15043920 @@ -249279,23 +249279,23 @@ }, { "type_name": "CPredictionEventPB<(unsigned int)130, CPredictionEvent_Teleport, CPredictionEvent_Teleport>", - "vtable_address": 31450928, + "vtable_address": 31450864, "methods": [ - 20156576, - 20156592, - 24747814, + 20156448, + 20156464, + 24747750, 15289792, 15718592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057808, 15078752, 15399680, 9474464, 15106848, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071424, 15043904 @@ -249342,23 +249342,23 @@ }, { "type_name": "CPredictionEvent_Diagnostic", - "vtable_address": 30923728, + "vtable_address": 30923664, "methods": [ 15618560, 15656368, - 24747814, + 24747750, 15290112, 15718720, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101728, 15078720, 15400656, 9474464, 15184192, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071488, 15043936 @@ -249394,23 +249394,23 @@ }, { "type_name": "CPredictionEvent_StringCommand", - "vtable_address": 30923568, + "vtable_address": 30923504, "methods": [ 15618416, 15656208, - 24747814, + 24747750, 15289952, 15741920, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15078736, 15400256, 9474464, 15128512, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071456, 15043920 @@ -249446,23 +249446,23 @@ }, { "type_name": "CPredictionEvent_StringCommand_t", - "vtable_address": 31310664, + "vtable_address": 31310600, "methods": [ - 18011344, - 18011360, - 24747814, + 18011216, + 18011232, + 24747750, 15289952, 15741920, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15078736, 15400256, 9474464, 15128512, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071456, 15043920 @@ -249520,23 +249520,23 @@ }, { "type_name": "CPredictionEvent_Teleport", - "vtable_address": 30923408, + "vtable_address": 30923344, "methods": [ 15618240, 15672000, - 24747814, + 24747750, 15289792, 15718592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057808, 15078752, 15399680, 9474464, 15106848, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071424, 15043904 @@ -249572,23 +249572,23 @@ }, { "type_name": "CPredictionEvent_Teleport_t", - "vtable_address": 31451088, + "vtable_address": 31451024, "methods": [ - 20156640, - 20156656, - 24747814, + 20156512, + 20156528, + 24747750, 15289792, 15718592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057808, 15078752, 15399680, 9474464, 15106848, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071424, 15043904 @@ -249646,14 +249646,14 @@ }, { "type_name": "CPredictionSuppressEffects", - "vtable_address": 31396064, + "vtable_address": 31396000, "methods": [ - 19464288, - 19464304, - 19464320, - 19464336, - 19464256, - 19464272 + 19464160, + 19464176, + 19464192, + 19464208, + 19464128, + 19464144 ], "bases": [ { @@ -249675,7 +249675,7 @@ }, { "type_name": "CPreloaderGameSystem", - "vtable_address": 31822832, + "vtable_address": 31822768, "methods": [ 9634368, 9634384, @@ -249707,7 +249707,7 @@ 9634800, 9634816, 9634832, - 22534624, + 22534496, 9634864, 9634880, 9634896, @@ -249733,12 +249733,12 @@ 9635216, 9635232, 9635248, - 22263392, + 22263264, 9635280, - 22263376, - 22299408, - 22299136, - 22263360 + 22263248, + 22299280, + 22299008, + 22263232 ], "bases": [ { @@ -249771,23 +249771,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request", - "vtable_address": 30902768, + "vtable_address": 30902704, "methods": [ 15601488, 15669200, - 24747814, + 24747750, 15268928, 15755936, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15124976, 15080128, 15493520, 9474464, 15163488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067296, 15039728 @@ -249823,23 +249823,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_LanguageSection", - "vtable_address": 30902608, + "vtable_address": 30902544, "methods": [ 15601312, 15665408, - 24747814, + 24747750, 15268752, 15760368, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15124704, 15076064, 15492960, 9474464, 15135824, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067264, 15039712 @@ -249875,23 +249875,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_Token", - "vtable_address": 30902448, + "vtable_address": 30902384, "methods": [ 15601152, 15661920, - 24747814, + 24747750, 15268576, 15729104, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 15076048, 15331872, 9474464, 15149424, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067232, 15039696 @@ -249927,23 +249927,23 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Response", - "vtable_address": 30902928, + "vtable_address": 30902864, "methods": [ 15103440, 15103456, - 24747814, + 24747750, 15269056, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15067328, 15039744 @@ -249990,7 +249990,7 @@ }, { "type_name": "CPropData", - "vtable_address": 30418120, + "vtable_address": 30418056, "methods": [ 9634368, 9634384, @@ -250097,7 +250097,7 @@ }, { "type_name": "CPropData", - "vtable_address": 30418640, + "vtable_address": 30418576, "methods": [ 12202560, 12214784, @@ -250144,7 +250144,7 @@ }, { "type_name": "CPropDataComponent", - "vtable_address": 30418016, + "vtable_address": 30417952, "methods": [ 12204496, 12202720, @@ -250170,33 +250170,33 @@ }, { "type_name": "CPropDoorRotating", - "vtable_address": 31729776, + "vtable_address": 31729712, "methods": [ 13526704, - 21718944, - 21719088, - 18377552, - 18065872, - 20153376, - 18010864, - 21721424, - 26419632, - 18009552, - 26419200, - 20152208, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 21615472, + 21718816, + 21718960, + 18377424, + 18065744, + 20153248, + 18010736, + 21721296, + 26419568, + 18009424, + 26419136, + 20152080, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 21615344, + 18010800, + 18035072, 11747408, - 21721856, - 19829152, - 19967408, + 21721728, + 19829024, + 19967280, 9635872, 9665808, 9641296, @@ -250207,21 +250207,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21598656, - 21603408, - 21601376, + 26427360, + 21598528, + 21603280, + 21601248, 9635312, - 21689120, - 18308160, + 21688992, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -250232,114 +250232,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 13382880, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 18161040, + 18014720, + 18211344, + 18145168, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19973728, + 19973600, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, - 19977952, - 19978208, - 19978448, + 19977824, + 19978080, + 19978320, 9636160, 9636176, - 21601904, - 19828656, - 21311696, + 21601776, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -250349,7 +250349,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -250359,7 +250359,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -250370,41 +250370,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 13382976, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -250415,116 +250415,116 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18143008, - 18143760, - 18004224, + 18004096, + 18010896, + 18142880, + 18143632, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 20153168, + 20153040, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21598624, + 18275360, + 21598496, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 19966080, + 19965952, 13382896, - 19828896, + 19828768, 10629872, 13382912, - 21726032, - 21725120, + 21725904, + 21724992, 13382960, - 21602368, - 21722000, - 19967520, - 19854288, - 21694224, - 21694560, - 19854816, - 19855216, - 21727584, - 21724656, - 21602032, - 21598864, - 21793328, - 19973856, - 19974368, - 19966656, - 20010640, - 20035200, - 19975584, - 19976160, - 19977104, - 19832864, - 21726160, - 21602080, - 21598672, - 21615152 + 21602240, + 21721872, + 19967392, + 19854160, + 21694096, + 21694432, + 19854688, + 19855088, + 21727456, + 21724528, + 21601904, + 21598736, + 21793200, + 19973728, + 19974240, + 19966528, + 20010512, + 20035072, + 19975456, + 19976032, + 19976976, + 19832736, + 21726032, + 21601952, + 21598544, + 21615024 ], "bases": [ { @@ -250665,7 +250665,7 @@ }, { "type_name": "CPropDoorRotating", - "vtable_address": 31732616, + "vtable_address": 31732552, "methods": [ 11404800, 11401984 @@ -250809,11 +250809,11 @@ }, { "type_name": "CPropDoorRotating", - "vtable_address": 31732648, + "vtable_address": 31732584, "methods": [ - 21719248, - 21719392, - 19966640 + 21719120, + 21719264, + 19966512 ], "bases": [ { @@ -250954,33 +250954,33 @@ }, { "type_name": "CPropDoorRotatingBreakable", - "vtable_address": 31732688, + "vtable_address": 31732624, "methods": [ 13526704, - 21719792, - 21720256, - 18377552, - 18065872, - 21649584, - 18010864, - 21832272, - 26419632, - 18009552, - 26419200, - 20152208, - 18495616, - 18011056, - 19835392, - 19835328, - 18003520, - 18135232, - 21625072, + 21719664, + 21720128, + 18377424, + 18065744, + 21649456, + 18010736, + 21832144, + 26419568, + 18009424, + 26419136, + 20152080, + 18495488, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18135104, + 21624944, + 18010800, + 18035072, 11747408, - 21721856, - 19829152, - 19967408, + 21721728, + 19829024, + 19967280, 9635872, 9665808, 9641296, @@ -250991,21 +250991,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21598896, - 21603408, - 21601360, + 26427360, + 21598768, + 21603280, + 21601232, 9635312, - 21689120, - 18308160, + 21688992, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -251016,114 +251016,114 @@ 9837088, 9635472, 9635488, - 18497152, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18497024, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 13382880, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 18495680, - 18042720, + 18495552, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, - 18497040, - 18497072, + 18496912, + 18496944, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 21817504, - 18161040, + 18014720, + 18211344, + 21817376, + 18160912, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19973728, + 19973600, 9637216, 9636096, - 18142368, + 18142240, 11746960, 11747104, 9636112, - 19977952, - 19978208, - 19978448, + 19977824, + 19978080, + 19978320, 9636160, 9636176, - 21601904, - 19828656, - 21311696, + 21601776, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -251133,7 +251133,7 @@ 9636256, 9642208, 9636272, - 18502208, + 18502080, 9636304, 9636320, 9636336, @@ -251143,7 +251143,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -251154,41 +251154,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 13382976, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -251199,116 +251199,116 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 21611296, - 21818624, - 18004224, + 18004096, + 18010896, + 21611168, + 21818496, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18139936, - 18046592, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18139808, + 18046464, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, - 18496704, + 18297392, + 18003808, + 18496576, 9837152, - 20153168, + 20153040, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21598624, + 18275360, + 21598496, 11401920, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, 11402032, 11404832, - 19966080, - 21598944, - 19828896, + 19965952, + 21598816, + 19828768, 10629872, 13382912, - 21726032, - 21725120, + 21725904, + 21724992, 13382960, - 21602368, - 21722000, - 19967520, - 19854288, - 21694224, - 21694560, - 19854816, - 19855216, - 21727584, - 21724656, - 21602032, - 21598864, - 21793328, - 19973856, - 19974368, - 19966656, - 20010640, - 20035200, - 19975584, - 19976160, - 19977104, - 19832864, - 21726160, - 21602080, - 21598672, - 21615152 + 21602240, + 21721872, + 19967392, + 19854160, + 21694096, + 21694432, + 19854688, + 19855088, + 21727456, + 21724528, + 21601904, + 21598736, + 21793200, + 19973728, + 19974240, + 19966528, + 20010512, + 20035072, + 19975456, + 19976032, + 19976976, + 19832736, + 21726032, + 21601952, + 21598544, + 21615024 ], "bases": [ { @@ -251460,7 +251460,7 @@ }, { "type_name": "CPropDoorRotatingBreakable", - "vtable_address": 31735528, + "vtable_address": 31735464, "methods": [ 11404800, 11401984 @@ -251615,11 +251615,11 @@ }, { "type_name": "CPropDoorRotatingBreakable", - "vtable_address": 31735560, + "vtable_address": 31735496, "methods": [ - 21719552, - 21720016, - 19966640 + 21719424, + 21719888, + 19966512 ], "bases": [ { @@ -251771,7 +251771,7 @@ }, { "type_name": "CPropsBreakableSystem", - "vtable_address": 30329808, + "vtable_address": 30329744, "methods": [ 11759472, 11759728, @@ -251797,15 +251797,15 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 32008232, + "vtable_address": 32008168, "methods": [ - 26137696, - 26143904, - 26195200, - 26136624, - 25853792, - 25853872, - 25853648, + 26137632, + 26143840, + 26195136, + 26136560, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -251821,9 +251821,9 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 33318464, + "vtable_address": 33318400, "methods": [ - 26177248 + 26177184 ], "bases": [], "model": { @@ -251834,9 +251834,9 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 33320608, + "vtable_address": 33320544, "methods": [ - 26166256 + 26166192 ], "bases": [], "model": { @@ -251847,9 +251847,9 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 33320768, + "vtable_address": 33320704, "methods": [ - 26165200 + 26165136 ], "bases": [], "model": { @@ -251860,15 +251860,15 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 32008344, - "methods": [ - 26137680, - 26144128, - 26195280, - 26136640, - 25853792, - 25853872, - 25853648, + "vtable_address": 32008280, + "methods": [ + 26137616, + 26144064, + 26195216, + 26136576, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -251895,9 +251895,9 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 33315232, + "vtable_address": 33315168, "methods": [ - 26188288 + 26188224 ], "bases": [], "model": { @@ -251908,9 +251908,9 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 33319040, + "vtable_address": 33318976, "methods": [ - 26137136 + 26137072 ], "bases": [], "model": { @@ -251921,29 +251921,29 @@ }, { "type_name": "CPulseCell_BaseLerp", - "vtable_address": 32009264, + "vtable_address": 32009200, "methods": [ - 26137568, - 26158224, - 26196528, - 26136848, - 25853792, - 25853872, - 25853648, + 26137504, + 26158160, + 26196464, + 26136784, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25858096, + 25858032, 12096880, - 25857680, + 25857616, 12096896, 12096912, - 26137248, - 26137344, - 26194576, - 26175936, + 26137184, + 26137280, + 26194512, + 26175872, 12096928, 12096944 ], @@ -251989,23 +251989,23 @@ }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 32008456, - "methods": [ - 26137424, - 26144800, - 26195808, - 26136656, - 25853792, - 25853872, - 25853648, + "vtable_address": 32008392, + "methods": [ + 26137360, + 26144736, + 26195744, + 26136592, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 26136672, - 26136688, - 26136704 + 26136608, + 26136624, + 26136640 ], "bases": [ { @@ -252027,20 +252027,20 @@ }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 32011592, + "vtable_address": 32011528, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33320448 + "offset_to_top": 33320384 } } }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 33324096, + "vtable_address": 33324032, "methods": [ - 26268176 + 26268112 ], "bases": [], "model": { @@ -252051,15 +252051,15 @@ }, { "type_name": "CPulseCell_BaseValue", - "vtable_address": 32009480, + "vtable_address": 32009416, "methods": [ - 26137408, - 26145024, - 26195984, - 26136864, - 25853792, - 25853872, - 25853648, + 26137344, + 26144960, + 26195920, + 26136800, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -252086,40 +252086,40 @@ }, { "type_name": "CPulseCell_BaseYieldingInflow", - "vtable_address": 32011400, + "vtable_address": 32011336, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33318880 + "offset_to_top": 33318816 } } }, { "type_name": "CPulseCell_BooleanSwitchState", - "vtable_address": 32014968, - "methods": [ - 26295648, - 26307248, - 26316048, + "vtable_address": 32014904, + "methods": [ + 26295584, + 26307184, + 26315984, + 26295360, + 25853728, + 25853808, + 25853584, + 26295408, 26295424, - 25853792, - 25853872, - 25853648, - 26295472, - 26295488, - 26295504, - 26300688, - 26300464, - 25881744, + 26295440, + 26300624, + 26300400, + 25881680, 12096880, 15852496, - 25882128, + 25882064, 12096912, - 26136816, - 26136832, - 26295440, - 26295456, + 26136752, + 26136768, + 26295376, + 26295392, 12096928 ], "bases": [ @@ -252175,43 +252175,43 @@ }, { "type_name": "CPulseCell_CursorQueue", - "vtable_address": 31998752, + "vtable_address": 31998688, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33327872 + "offset_to_top": 33327808 } } }, { "type_name": "CPulseCell_CursorQueue", - "vtable_address": 32015960, - "methods": [ - 26317392, - 26328864, - 26337488, - 26317248, - 25853792, - 25853872, - 25853648, + "vtable_address": 32015896, + "methods": [ + 26317328, + 26328800, + 26337424, + 26317184, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25878704, - 25879408, + 25878640, + 25879344, 15852496, 12096896, 12096912, - 26318480, - 26318528, - 25877408, - 25878032, + 26318416, + 26318464, + 25877344, + 25877968, 12096928, - 25880000, - 25880016 + 25879936, + 25879952 ], "bases": [ { @@ -252266,29 +252266,29 @@ }, { "type_name": "CPulseCell_FireCursors", - "vtable_address": 32012168, - "methods": [ - 26219264, - 26222224, - 26225984, - 26219104, - 25853792, - 25853872, - 25853648, + "vtable_address": 32012104, + "methods": [ + 26219200, + 26222160, + 26225920, + 26219040, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25865536, - 25865712, + 25865472, + 25865648, 15852496, 12096896, 12096912, - 26136816, - 26136832, - 26219120, - 26219136, + 26136752, + 26136768, + 26219056, + 26219072, 12096928 ], "bases": [ @@ -252333,15 +252333,15 @@ }, { "type_name": "CPulseCell_Inflow_BaseEntrypoint", - "vtable_address": 32008592, + "vtable_address": 32008528, "methods": [ - 26137664, - 26154368, - 26198080, - 26136720, - 25853792, - 25853872, - 25853648, + 26137600, + 26154304, + 26198016, + 26136656, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -252379,15 +252379,15 @@ }, { "type_name": "CPulseCell_Inflow_EntOutputHandler", - "vtable_address": 32009040, + "vtable_address": 32008976, "methods": [ - 26137600, - 26157424, - 26198560, - 26136784, - 25856304, - 25853872, - 25862720, + 26137536, + 26157360, + 26198496, + 26136720, + 25856240, + 25853808, + 25862656, 12096800, 12096816, 12096832, @@ -252436,26 +252436,26 @@ }, { "type_name": "CPulseCell_Inflow_EntOutputHandler", - "vtable_address": 32011448, + "vtable_address": 32011384, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33319264 + "offset_to_top": 33319200 } } }, { "type_name": "CPulseCell_Inflow_EventHandler", - "vtable_address": 32008816, + "vtable_address": 32008752, "methods": [ - 26137632, - 26154384, - 26202448, - 26136752, - 25855760, - 25853872, - 25853648, + 26137568, + 26154320, + 26202384, + 26136688, + 25855696, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -252504,26 +252504,26 @@ }, { "type_name": "CPulseCell_Inflow_EventHandler", - "vtable_address": 32011512, + "vtable_address": 32011448, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33319712 + "offset_to_top": 33319648 } } }, { "type_name": "CPulseCell_Inflow_GraphHook", - "vtable_address": 32008928, + "vtable_address": 32008864, "methods": [ - 26137616, - 26154592, - 26202848, - 26136768, - 25856032, - 25853872, - 25853648, + 26137552, + 26154528, + 26202784, + 26136704, + 25855968, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -252572,26 +252572,26 @@ }, { "type_name": "CPulseCell_Inflow_GraphHook", - "vtable_address": 32011480, + "vtable_address": 32011416, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33319520 + "offset_to_top": 33319456 } } }, { "type_name": "CPulseCell_Inflow_Method", - "vtable_address": 32008704, + "vtable_address": 32008640, "methods": [ - 26137648, - 26156928, - 26201248, - 26136736, - 25855600, - 25853872, - 25860544, + 26137584, + 26156864, + 26201184, + 26136672, + 25855536, + 25853808, + 25860480, 12096800, 12096816, 12096832, @@ -252640,26 +252640,26 @@ }, { "type_name": "CPulseCell_Inflow_Method", - "vtable_address": 32011544, + "vtable_address": 32011480, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33319904 + "offset_to_top": 33319840 } } }, { "type_name": "CPulseCell_Inflow_ObservableVariableListener", - "vtable_address": 32009152, + "vtable_address": 32009088, "methods": [ - 26137584, - 26157872, - 26202432, - 26136800, - 25857136, - 25853872, - 25853648, + 26137520, + 26157808, + 26202368, + 26136736, + 25857072, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -252708,29 +252708,29 @@ }, { "type_name": "CPulseCell_Inflow_Wait", - "vtable_address": 32009896, + "vtable_address": 32009832, "methods": [ - 26137536, - 26160080, - 26197152, - 26136944, - 25855296, - 25853872, - 25853648, + 26137472, + 26160016, + 26197088, + 26136880, + 25855232, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25854208, + 25854144, 12096880, - 25855264, + 25855200, 12096896, 12096912, - 26136816, - 26136832, - 25855424, - 25855424, + 26136752, + 26136768, + 25855360, + 25855360, 12096928 ], "bases": [ @@ -252775,29 +252775,29 @@ }, { "type_name": "CPulseCell_Inflow_Yield", - "vtable_address": 32009704, + "vtable_address": 32009640, "methods": [ - 26137552, - 26159744, - 26196784, - 26136896, - 25854240, - 25853872, - 25853648, + 26137488, + 26159680, + 26196720, + 26136832, + 25854176, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25854208, + 25854144, 12096880, 15852496, 12096896, 12096912, - 26136816, - 26136832, - 26136912, - 26136928, + 26136752, + 26136768, + 26136848, + 26136864, 12096928 ], "bases": [ @@ -252842,15 +252842,15 @@ }, { "type_name": "CPulseCell_InlineNodeSkipSelector", - "vtable_address": 32013616, + "vtable_address": 32013552, "methods": [ - 26245760, - 26270208, - 26279824, - 26245392, - 25853792, - 25853872, - 25853648, + 26245696, + 26270144, + 26279760, + 26245328, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -252888,29 +252888,29 @@ }, { "type_name": "CPulseCell_IntervalTimer", - "vtable_address": 32012680, - "methods": [ - 26231328, - 26234800, - 26237312, - 26231136, - 25853792, - 25853872, - 25853648, + "vtable_address": 32012616, + "methods": [ + 26231264, + 26234736, + 26237248, + 26231072, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25867568, + 25867504, 12096880, - 25867088, + 25867024, 12096896, 12096912, - 26231264, - 26231296, - 26244608, - 26243888, + 26231200, + 26231232, + 26244544, + 26243824, 12096928 ], "bases": [ @@ -252955,23 +252955,23 @@ }, { "type_name": "CPulseCell_IsRequirementValid", - "vtable_address": 32013480, - "methods": [ - 26245744, - 26245856, - 26268288, - 26245376, - 25853792, - 25853872, - 25853648, + "vtable_address": 32013416, + "methods": [ + 26245680, + 26245792, + 26268224, + 26245312, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 26245632, - 26245792, - 26245664 + 26245568, + 26245728, + 26245600 ], "bases": [ { @@ -253004,7 +253004,7 @@ }, { "type_name": "CPulseCell_IsRequirementValid::Criteria_t", - "vtable_address": 32013960, + "vtable_address": 32013896, "methods": [], "bases": [], "model": { @@ -253015,23 +253015,23 @@ }, { "type_name": "CPulseCell_LerpCameraSettings", - "vtable_address": 30401696, + "vtable_address": 30401632, "methods": [ 12099696, 12136704, 12148656, 12097040, - 25853792, - 25853872, - 25853648, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25858096, + 25858032, 12096880, - 25857680, + 25857616, 12096896, 12096912, 12098608, @@ -253096,23 +253096,23 @@ }, { "type_name": "CPulseCell_LimitCount", - "vtable_address": 32013344, - "methods": [ - 26245728, - 26252128, - 26263280, - 26245312, - 25853792, - 25853872, - 25853648, - 26245328, - 26245344, - 26245360, - 26266880, - 26253376, - 26245600, - 26245824, - 26245696 + "vtable_address": 32013280, + "methods": [ + 26245664, + 26252064, + 26263216, + 26245248, + 25853728, + 25853808, + 25853584, + 26245264, + 26245280, + 26245296, + 26266816, + 26253312, + 26245536, + 26245760, + 26245632 ], "bases": [ { @@ -253145,31 +253145,31 @@ }, { "type_name": "CPulseCell_LimitCount::Criteria_t", - "vtable_address": 32014024, + "vtable_address": 32013960, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33324288 + "offset_to_top": 33324224 } } }, { "type_name": "CPulseCell_Outflow_CycleOrdered", - "vtable_address": 32010088, + "vtable_address": 32010024, "methods": [ - 26137488, - 26160592, - 26206816, - 26136960, - 25853792, - 25853872, - 25853648, - 26136976, - 26136992, - 26137008, - 26206448, - 26191616 + 26137424, + 26160528, + 26206752, + 26136896, + 25853728, + 25853808, + 25853584, + 26136912, + 26136928, + 26136944, + 26206384, + 26191552 ], "bases": [ { @@ -253202,15 +253202,15 @@ }, { "type_name": "CPulseCell_Outflow_CycleRandom", - "vtable_address": 32010200, + "vtable_address": 32010136, "methods": [ - 26137472, - 26161104, - 26207568, - 26137024, - 25853792, - 25853872, - 25853648, + 26137408, + 26161040, + 26207504, + 26136960, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -253248,20 +253248,20 @@ }, { "type_name": "CPulseCell_Outflow_CycleShuffled", - "vtable_address": 32010312, + "vtable_address": 32010248, "methods": [ - 26137456, - 26161616, - 26208320, - 26137040, - 25853792, - 25853872, - 25853648, - 26137056, - 26139552, - 26139600, - 26210864, - 26191072 + 26137392, + 26161552, + 26208256, + 26136976, + 25853728, + 25853808, + 25853584, + 26136992, + 26139488, + 26139536, + 26210800, + 26191008 ], "bases": [ { @@ -253294,30 +253294,30 @@ }, { "type_name": "CPulseCell_Outflow_ListenForAnimgraphTag", - "vtable_address": 31742248, + "vtable_address": 31742184, "methods": [ - 21601440, - 21735648, - 21822080, - 21599216, - 25853792, - 25853872, - 25853648, + 21601312, + 21735520, + 21821952, + 21599088, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 21599232, + 21599104, 12096880, 15852496, 12096896, 12096912, - 21602576, - 21623808, - 21841376, - 21730448, - 21732368 + 21602448, + 21623680, + 21841248, + 21730320, + 21732240 ], "bases": [ { @@ -253361,11 +253361,11 @@ }, { "type_name": "CPulseCell_Outflow_ListenForAnimgraphTag::CursorState_t", - "vtable_address": 31742208, + "vtable_address": 31742144, "methods": [ - 21621984, - 21622064, - 21689248 + 21621856, + 21621936, + 21689120 ], "bases": [ { @@ -253387,29 +253387,29 @@ }, { "type_name": "CPulseCell_Outflow_ListenForEntityOutput", - "vtable_address": 31744352, + "vtable_address": 31744288, "methods": [ - 21601568, - 21784480, - 21824944, - 21599184, - 25853792, - 25853872, - 25853648, + 21601440, + 21784352, + 21824816, + 21599056, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 21599328, + 21599200, 12096880, 15852496, 12096896, - 21784976, - 21602480, - 21601216, - 21840832, - 21823216, + 21784848, + 21602352, + 21601088, + 21840704, + 21823088, 12096928 ], "bases": [ @@ -253454,29 +253454,29 @@ }, { "type_name": "CPulseCell_Outflow_PlaySceneBase", - "vtable_address": 31742440, - "methods": [ - 21601488, - 21901248, - 21908032, - 21599264, - 25853792, - 25853872, - 25853648, + "vtable_address": 31742376, + "methods": [ + 21601360, + 21901120, + 21907904, + 21599136, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 21690176, + 21690048, 12096880, 15852496, 12096896, - 21687136, - 21602512, - 21601280, - 21841920, - 21799920, + 21687008, + 21602384, + 21601152, + 21841792, + 21799792, 12096928 ], "bases": [ @@ -253521,29 +253521,29 @@ }, { "type_name": "CPulseCell_Outflow_PlaySequence", - "vtable_address": 31742824, + "vtable_address": 31742760, "methods": [ - 21601456, - 21903616, - 21908704, - 21599296, - 25853792, - 25853872, - 25853648, + 21601328, + 21903488, + 21908576, + 21599168, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 21690176, + 21690048, 12096880, 15852496, 12096896, - 21687136, - 21602512, - 21601280, - 21841920, - 21799920, + 21687008, + 21602384, + 21601152, + 21841792, + 21799792, 12096928 ], "bases": [ @@ -253599,29 +253599,29 @@ }, { "type_name": "CPulseCell_Outflow_PlayVCD", - "vtable_address": 31742632, + "vtable_address": 31742568, "methods": [ - 21601472, - 21901648, - 21908688, - 21599280, - 25853792, - 25853872, - 25853648, + 21601344, + 21901520, + 21908560, + 21599152, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 21690176, + 21690048, 12096880, 15852496, 12096896, - 21687136, - 21602512, - 21601280, - 21841920, - 21799920, + 21687008, + 21602384, + 21601152, + 21841792, + 21799792, 12096928 ], "bases": [ @@ -253677,29 +253677,29 @@ }, { "type_name": "CPulseCell_Outflow_ScriptedSequence", - "vtable_address": 31743016, + "vtable_address": 31742952, "methods": [ - 21601504, - 21898208, - 21911904, - 21599312, - 25853792, - 25853872, - 25853648, + 21601376, + 21898080, + 21911776, + 21599184, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 21649392, + 21649264, 12096880, 15852496, 12096896, - 21694928, - 21602544, - 21601248, - 21842784, - 21822656, + 21694800, + 21602416, + 21601120, + 21842656, + 21822528, 12096928 ], "bases": [ @@ -253744,15 +253744,15 @@ }, { "type_name": "CPulseCell_PickBestOutflowSelector", - "vtable_address": 32013728, - "methods": [ - 26245776, - 26273072, - 26277792, - 26245408, - 25853792, - 25853872, - 25853648, + "vtable_address": 32013664, + "methods": [ + 26245712, + 26273008, + 26277728, + 26245344, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -253790,15 +253790,15 @@ }, { "type_name": "CPulseCell_PlaySequence", - "vtable_address": 30963944, + "vtable_address": 30963880, "methods": [ 15854224, 15888624, 15891936, 15852544, - 25853792, - 25853872, - 25853648, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -253857,15 +253857,15 @@ }, { "type_name": "CPulseCell_SoundEventStart", - "vtable_address": 31744544, + "vtable_address": 31744480, "methods": [ - 21601520, - 21785584, - 21815456, - 21599200, - 25853792, - 25853872, - 25853648, + 21601392, + 21785456, + 21815328, + 21599072, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -253903,29 +253903,29 @@ }, { "type_name": "CPulseCell_Step_CallExternalMethod", - "vtable_address": 32010760, + "vtable_address": 32010696, "methods": [ - 26137520, - 26163216, - 26205904, - 26137120, - 25854560, - 25853872, - 25853648, + 26137456, + 26163152, + 26205840, + 26137056, + 25854496, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25859344, - 25859552, + 25859280, + 25859488, 15852496, 12096896, 12096912, - 26137280, - 26137312, - 25860272, - 25854608, + 26137216, + 26137248, + 25860208, + 25854544, 12096928 ], "bases": [ @@ -253970,15 +253970,15 @@ }, { "type_name": "CPulseCell_Step_DebugLog", - "vtable_address": 32010648, + "vtable_address": 32010584, "methods": [ - 26137440, - 26144576, - 26196384, - 26137104, - 25853792, - 25853872, - 25853648, + 26137376, + 26144512, + 26196320, + 26137040, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254016,15 +254016,15 @@ }, { "type_name": "CPulseCell_Step_EntFire", - "vtable_address": 30963832, + "vtable_address": 30963768, "methods": [ 15854208, 15868432, 15886896, 15852528, - 25853792, - 25853872, - 25853648, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254062,15 +254062,15 @@ }, { "type_name": "CPulseCell_Step_FollowEntity", - "vtable_address": 31744128, + "vtable_address": 31744064, "methods": [ - 21601552, - 21688752, - 21807952, - 21599152, - 25853792, - 25853872, - 25853648, + 21601424, + 21688624, + 21807824, + 21599024, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254108,15 +254108,15 @@ }, { "type_name": "CPulseCell_Step_PublicOutput", - "vtable_address": 32009592, + "vtable_address": 32009528, "methods": [ - 26137504, - 26145904, - 26206480, - 26136880, - 25853792, - 25853872, - 25853648, + 26137440, + 26145840, + 26206416, + 26136816, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254154,15 +254154,15 @@ }, { "type_name": "CPulseCell_Step_SetAnimGraphParam", - "vtable_address": 31744240, + "vtable_address": 31744176, "methods": [ - 21601536, - 21688544, - 21810096, - 21599168, - 25853792, - 25853872, - 25853648, + 21601408, + 21688416, + 21809968, + 21599040, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254200,29 +254200,29 @@ }, { "type_name": "CPulseCell_Timeline", - "vtable_address": 32014424, - "methods": [ - 26282912, - 26286768, - 26293808, - 26282720, - 25853792, - 25853872, - 25853648, + "vtable_address": 32014360, + "methods": [ + 26282848, + 26286704, + 26293744, + 26282656, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25875040, - 25876160, - 25876144, + 25874976, + 25876096, + 25876080, 12096896, 12096912, - 26282848, - 26282880, - 25876592, - 25874320, + 26282784, + 26282816, + 25876528, + 25874256, 12096928 ], "bases": [ @@ -254267,15 +254267,15 @@ }, { "type_name": "CPulseCell_Unknown", - "vtable_address": 31997576, - "methods": [ - 25853760, - 25863728, - 25863776, - 25853632, - 25853792, - 25853872, - 25853648, + "vtable_address": 31997512, + "methods": [ + 25853696, + 25863664, + 25863712, + 25853568, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254302,15 +254302,15 @@ }, { "type_name": "CPulseCell_Value_Curve", - "vtable_address": 32011960, - "methods": [ - 26214368, - 26218464, - 26218160, - 26214256, - 25853792, - 25853872, - 25853648, + "vtable_address": 32011896, + "methods": [ + 26214304, + 26218400, + 26218096, + 26214192, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254348,15 +254348,15 @@ }, { "type_name": "CPulseCell_Value_Gradient", - "vtable_address": 32012456, - "methods": [ - 26226544, - 26230496, - 26230192, - 26226432, - 25853792, - 25853872, - 25853648, + "vtable_address": 32012392, + "methods": [ + 26226480, + 26230432, + 26230128, + 26226368, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254394,15 +254394,15 @@ }, { "type_name": "CPulseCell_Value_RandomFloat", - "vtable_address": 32010536, + "vtable_address": 32010472, "methods": [ - 26137376, - 26145472, - 26196240, - 26137088, - 25853792, - 25853872, - 25853648, + 26137312, + 26145408, + 26196176, + 26137024, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254440,15 +254440,15 @@ }, { "type_name": "CPulseCell_Value_RandomInt", - "vtable_address": 32010424, + "vtable_address": 32010360, "methods": [ - 26137392, - 26145248, - 26196096, - 26137072, - 25853792, - 25853872, - 25853648, + 26137328, + 26145184, + 26196032, + 26137008, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, @@ -254486,32 +254486,32 @@ }, { "type_name": "CPulseCell_WaitForCursorsWithTag", - "vtable_address": 32015752, - "methods": [ - 26317408, - 26332768, - 26335648, - 26317232, - 25853792, - 25853872, - 25853648, + "vtable_address": 32015688, + "methods": [ + 26317344, + 26332704, + 26335584, + 26317168, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25878704, - 25879408, + 25878640, + 25879344, 15852496, 12096896, 12096912, - 26318480, - 26318528, - 25877408, - 25878032, + 26318416, + 26318464, + 25877344, + 25877968, 12096928, - 25879648, - 25879808 + 25879584, + 25879744 ], "bases": [ { @@ -254566,32 +254566,32 @@ }, { "type_name": "CPulseCell_WaitForCursorsWithTagBase", - "vtable_address": 32015544, - "methods": [ - 26317424, - 26328848, - 26332144, - 26317216, - 25853792, - 25853872, - 25853648, + "vtable_address": 32015480, + "methods": [ + 26317360, + 26328784, + 26332080, + 26317152, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25878704, - 25879408, + 25878640, + 25879344, 15852496, 12096896, 12096912, - 26318480, - 26318528, - 25877408, - 25878032, + 26318416, + 26318464, + 25877344, + 25877968, 12096928, - 25879648, - 25879664 + 25879584, + 25879600 ], "bases": [ { @@ -254635,29 +254635,29 @@ }, { "type_name": "CPulseCell_WaitForObservable", - "vtable_address": 32014776, - "methods": [ - 26295632, - 26303872, - 26314656, - 26295376, - 25853792, - 25853872, - 25853648, + "vtable_address": 32014712, + "methods": [ + 26295568, + 26303808, + 26314592, + 26295312, + 25853728, + 25853808, + 25853584, 12096800, 12096816, 12096832, 12096848, 12096864, - 25881264, + 25881200, 12096880, 15852496, - 25880848, + 25880784, 12096912, - 26136816, - 26136832, - 26295392, - 26295408, + 26136752, + 26136768, + 26295328, + 26295344, 12096928 ], "bases": [ @@ -254702,27 +254702,27 @@ }, { "type_name": "CPulseDomainScopeLoader", - "vtable_address": 31995776, - "methods": [ - 25685280, - 25685248, - 25673424, - 25676240, - 25676192, - 25673472, - 25678272, - 25673584, - 25675136, - 25674976, - 25676288, + "vtable_address": 31995712, + "methods": [ + 25685216, + 25685184, + 25673360, + 25676176, + 25676128, + 25673408, + 25678208, + 25673520, + 25675072, + 25674912, + 25676224, + 25676480, + 25676608, 25676544, + 25676032, 25676672, - 25676608, - 25676096, - 25676736, - 25676496, - 25676864, - 25674528 + 25676432, + 25676800, + 25674464 ], "bases": [ { @@ -254754,7 +254754,7 @@ }, { "type_name": "CPulseEntityFindFilter", - "vtable_address": 30330032, + "vtable_address": 30329968, "methods": [ 11748608 ], @@ -254778,36 +254778,36 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 31996176, + "vtable_address": 31996112, "methods": [ - 25729616, - 25730640, - 25693696, - 25705408, - 25705840, - 21599024, - 21599056, - 21609728, + 25729552, + 25730576, + 25693632, + 25705344, + 25705776, + 21598896, + 21598928, + 21609600, 12106880, - 21604032, + 21603904, 12106848, - 25718512, - 25723136, - 25709536, - 25733792, - 25694256, - 25709200, - 25726944, - 25736192, - 25695168, - 25693488, - 25723936, - 25697216, - 25732064, - 25693280, - 25717216, - 25693104, - 25693120 + 25718448, + 25723072, + 25709472, + 25733728, + 25694192, + 25709136, + 25726880, + 25736128, + 25695104, + 25693424, + 25723872, + 25697152, + 25732000, + 25693216, + 25717152, + 25693040, + 25693056 ], "bases": [ { @@ -254860,12 +254860,12 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 31996416, + "vtable_address": 31996352, "methods": [ - 21599008, + 21598880, 15852400, - 21599040, - 21599072, + 21598912, + 21598944, 15852448 ], "bases": [ @@ -254919,23 +254919,23 @@ }, { "type_name": "CPulseExecCursor", - "vtable_address": 31996472, - "methods": [ - 25719056, - 25724000, - 25696496, - 25693680, - 25723968, - 25709808, - 25734432, - 21609744, + "vtable_address": 31996408, + "methods": [ + 25718992, + 25723936, + 25696432, + 25693616, + 25723904, + 25709744, + 25734368, + 21609616, 12106864, - 21604048, + 21603920, 12106832, - 25697808, - 25732416, - 25694624, - 25724240 + 25697744, + 25732352, + 25694560, + 25724176 ], "bases": [ { @@ -254988,32 +254988,32 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 30959664, + "vtable_address": 30959600, "methods": [ 13506768, 15854928, 15860064, 12023536, - 26419168, + 26419104, 15918976, - 20141632, + 20141504, 15919040, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 15919360, 15919776, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 15919744, 15919760, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 15919888, 9635872, 9665808, @@ -255025,12 +255025,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15852800, 15919872, 15854192, @@ -255038,8 +255038,8 @@ 15868832, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -255063,83 +255063,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 15855552, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -255147,16 +255147,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -255177,7 +255177,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -255190,28 +255190,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -255222,7 +255222,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -255277,7 +255277,7 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 30961640, + "vtable_address": 30961576, "methods": [ 15897936 ], @@ -255322,31 +255322,31 @@ }, { "type_name": "CPulseGraphDef", - "vtable_address": 31996704, - "methods": [ - 25755568, - 21610384, - 25755616, - 25779776, - 25768512, - 25756576, - 25755936, + "vtable_address": 31996640, + "methods": [ + 25755504, + 21610256, 25755552, - 25773952, - 25755776, - 25756048, - 25755664, - 25755728, - 25755296, + 25779712, + 25768448, + 25756512, + 25755872, + 25755488, + 25773888, + 25755712, 25755984, + 25755600, + 25755664, + 25755232, + 25755920, + 25755280, 25755344, - 25755408, - 25755456, - 25755504, - 25756192, - 25756992, - 25756352, - 25756416 + 25755392, + 25755440, + 25756128, + 25756928, + 25756288, + 25756352 ], "bases": [ { @@ -255368,11 +255368,11 @@ }, { "type_name": "CPulseGraphIOSignature", - "vtable_address": 31743208, + "vtable_address": 31743144, "methods": [ - 21625520, - 21625840, - 21743584 + 21625392, + 21625712, + 21743456 ], "bases": [ { @@ -255404,10 +255404,10 @@ }, { "type_name": "CPulseGraphIOSignature", - "vtable_address": 31743248, + "vtable_address": 31743184, "methods": [ 9698336, - 21743648 + 21743520 ], "bases": [ { @@ -255439,7 +255439,7 @@ }, { "type_name": "CPulseGraphInstance_GameBlackboard", - "vtable_address": 30959112, + "vtable_address": 30959048, "methods": [ 15852624, 15852400, @@ -255450,35 +255450,35 @@ 15852640, 15858624, 15860656, - 21629008, + 21628880, 15853952, 15854032, + 21926016, + 25787328, 21926144, - 25787392, + 21926192, + 25797376, + 21925776, + 25797632, 21926272, - 21926320, - 25797440, - 21925904, - 25797696, - 21926400, - 21610416, - 21640816, - 21920736, - 21921712, - 25787488, - 25786896, - 21925200, - 21925520, - 21689616, + 21610288, + 21640688, + 21920608, + 21921584, + 25787424, + 25786832, + 21925072, + 21925392, + 21689488, 15852656, - 21693936, - 21610336, - 25797200, - 25803792, - 25804416, - 21638720, - 21609760, - 21622400 + 21693808, + 21610208, + 25797136, + 25803728, + 25804352, + 21638592, + 21609632, + 21622272 ], "bases": [ { @@ -255553,11 +255553,11 @@ }, { "type_name": "CPulseGraphInstance_GameBlackboard", - "vtable_address": 30959432, + "vtable_address": 30959368, "methods": [ - 21638816, - 21610320, - 21624352 + 21638688, + 21610192, + 21624224 ], "bases": [ { @@ -255632,15 +255632,15 @@ }, { "type_name": "CPulseGraphInstance_GameBlackboard", - "vtable_address": 30959472, + "vtable_address": 30959408, "methods": [ 15853984, 15854096, - 25664000, 25663936, - 25664176, - 25663952, - 25663968, + 25663872, + 25664112, + 25663888, + 25663904, 15852464, 15852480 ], @@ -255717,46 +255717,46 @@ }, { "type_name": "CPulseGraphInstance_ServerEntity", - "vtable_address": 31743768, + "vtable_address": 31743704, "methods": [ 15852624, 15852400, 15852416, 15852432, 15852448, - 21601600, - 21599120, - 21625664, - 21623952, - 21629008, - 21626176, - 21626480, + 21601472, + 21598992, + 21625536, + 21623824, + 21628880, + 21626048, + 21626352, + 21926016, + 25787328, 21926144, - 25787392, + 21926192, + 25797376, + 21925776, + 25797632, 21926272, - 21926320, - 25797440, - 21925904, - 25797696, - 21926400, - 21610416, - 21640816, - 21920736, - 21921712, - 25787488, - 25786896, - 21925200, - 21925520, - 21689616, - 21599136, - 21693936, - 21610336, - 25797200, - 25803792, - 25804416, - 21638720, - 21609760, - 21622400 + 21610288, + 21640688, + 21920608, + 21921584, + 25787424, + 25786832, + 21925072, + 21925392, + 21689488, + 21599008, + 21693808, + 21610208, + 25797136, + 25803728, + 25804352, + 21638592, + 21609632, + 21622272 ], "bases": [ { @@ -255799,11 +255799,11 @@ }, { "type_name": "CPulseGraphInstance_ServerEntity", - "vtable_address": 31744088, + "vtable_address": 31744024, "methods": [ - 21638816, - 21610320, - 21624352 + 21638688, + 21610192, + 21624224 ], "bases": [ { @@ -255846,7 +255846,7 @@ }, { "type_name": "CPulseGraphInstance_ServerEntity", - "vtable_address": 32540256, + "vtable_address": 32540192, "methods": [], "bases": [], "model": { @@ -255857,7 +255857,7 @@ }, { "type_name": "CPulseInputHost", - "vtable_address": 30325408, + "vtable_address": 30325344, "methods": [ 11742112, 11742128 @@ -255882,7 +255882,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 30963384, + "vtable_address": 30963320, "methods": [ 15913088, 15853056, @@ -255951,7 +255951,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 30963448, + "vtable_address": 30963384, "methods": [ 15860176 ], @@ -256015,7 +256015,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 30963472, + "vtable_address": 30963408, "methods": [ 15861984 ], @@ -256079,7 +256079,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 30963496, + "vtable_address": 30963432, "methods": [ 15861696, 15861824 @@ -256144,7 +256144,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 30963528, + "vtable_address": 30963464, "methods": [ 15855120 ], @@ -256208,7 +256208,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 30963552, + "vtable_address": 30963488, "methods": [ 15853088, 15853104, @@ -256277,7 +256277,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 30963616, + "vtable_address": 30963552, "methods": [ 15858224 ], @@ -256341,7 +256341,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 30963640, + "vtable_address": 30963576, "methods": [ 15860560 ], @@ -256405,7 +256405,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 30963664, + "vtable_address": 30963600, "methods": [ 15858608, 15858560 @@ -256470,7 +256470,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 30963696, + "vtable_address": 30963632, "methods": [ 15855056 ], @@ -256534,7 +256534,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_Blackboard", - "vtable_address": 30959560, + "vtable_address": 30959496, "methods": [ 15852816, 15854736, @@ -256581,7 +256581,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_Blackboard", - "vtable_address": 30959608, + "vtable_address": 30959544, "methods": [ 15854832 ], @@ -256625,7 +256625,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_Blackboard", - "vtable_address": 30959632, + "vtable_address": 30959568, "methods": [ 15852864, 15852912 @@ -256670,7 +256670,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 30963248, + "vtable_address": 30963184, "methods": [ 15913088, 15852560, @@ -256728,7 +256728,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 30963304, + "vtable_address": 30963240, "methods": [ 15852592 ], @@ -256782,7 +256782,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 30963328, + "vtable_address": 30963264, "methods": [ 15861472 ], @@ -256836,7 +256836,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 30963352, + "vtable_address": 30963288, "methods": [ 15858592, 15858528 @@ -256891,12 +256891,12 @@ }, { "type_name": "CPulseInstanceSaveRestoreOps", - "vtable_address": 31431256, + "vtable_address": 31431192, "methods": [ - 19833392, - 19833296, - 19828784, - 19828736, + 19833264, + 19833168, + 19828656, + 19828608, 9634272, 9634288 ], @@ -256931,9 +256931,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 31995320, + "vtable_address": 31995256, "methods": [ - 25663920 + 25663856 ], "bases": [ { @@ -257050,9 +257050,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 31995344, + "vtable_address": 31995280, "methods": [ - 20616240 + 20616112 ], "bases": [ { @@ -257169,7 +257169,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 31995368, + "vtable_address": 31995304, "methods": [ 12105264 ], @@ -257288,10 +257288,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 31995392, + "vtable_address": 31995328, "methods": [ - 20616304, - 25663888 + 20616176, + 25663824 ], "bases": [ { @@ -257408,9 +257408,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 31995424, + "vtable_address": 31995360, "methods": [ - 21640400 + 21640272 ], "bases": [ { @@ -257527,7 +257527,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 30963720, + "vtable_address": 30963656, "methods": [ 15852512, 15894496 @@ -257615,7 +257615,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 30963752, + "vtable_address": 30963688, "methods": [ 15852320 ], @@ -257702,7 +257702,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 30963776, + "vtable_address": 30963712, "methods": [ 15894816 ], @@ -257789,7 +257789,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 30963800, + "vtable_address": 30963736, "methods": [ 15852336, 15852368 @@ -257877,7 +257877,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 31995448, + "vtable_address": 31995384, "methods": [ 15852512 ], @@ -257975,7 +257975,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 31995472, + "vtable_address": 31995408, "methods": [ 15852320 ], @@ -258073,7 +258073,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 31995496, + "vtable_address": 31995432, "methods": [ 12102944 ], @@ -258171,7 +258171,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 31995520, + "vtable_address": 31995456, "methods": [ 15852336, 15852368 @@ -258270,16 +258270,16 @@ }, { "type_name": "CPulseScopeEnumeratingTypeService", - "vtable_address": 31995696, + "vtable_address": 31995632, "methods": [ + 25673280, + 25673296, + 25673312, + 25673328, 25673344, - 25673360, + 25673632, 25673376, - 25673392, - 25673408, - 25673696, - 25673440, - 25675296 + 25675232 ], "bases": [ { @@ -258312,39 +258312,39 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 31743280, + "vtable_address": 31743216, "methods": [ - 25729616, - 25730640, - 21601584, - 21610736, - 21610800, - 21599024, - 21599056, - 21609728, + 25729552, + 25730576, + 21601456, + 21610608, + 21610672, + 21598896, + 21598928, + 21609600, 12106880, - 21604032, + 21603904, 12106848, - 25718512, - 25723136, - 25709536, - 25733792, - 25694256, - 25709200, - 21918992, - 21919584, - 25695168, - 25693488, - 25723936, - 25697216, - 25732064, - 25693280, - 25717216, - 25693104, - 25693120, - 21599088, - 21699360, - 21699488 + 25718448, + 25723072, + 25709472, + 25733728, + 25694192, + 25709136, + 21918864, + 21919456, + 25695104, + 25693424, + 25723872, + 25697152, + 25732000, + 25693216, + 25717152, + 25693040, + 25693056, + 21598960, + 21699232, + 21699360 ], "bases": [ { @@ -258418,12 +258418,12 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 31743544, + "vtable_address": 31743480, "methods": [ - 21599008, - 21599104, - 21599040, - 21599072, + 21598880, + 21598976, + 21598912, + 21598944, 15852448 ], "bases": [ @@ -258498,23 +258498,23 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 31743600, - "methods": [ - 25719056, - 25724000, - 25696496, - 25693680, - 25723968, - 25709808, - 25734432, - 21609744, + "vtable_address": 31743536, + "methods": [ + 25718992, + 25723936, + 25696432, + 25693616, + 25723904, + 25709744, + 25734368, + 21609616, 12106864, - 21604048, + 21603920, 12106832, - 25697808, - 25732416, - 25694624, - 25724240 + 25697744, + 25732352, + 25694560, + 25724176 ], "bases": [ { @@ -258588,10 +258588,10 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 31743736, + "vtable_address": 31743672, "methods": [ - 21645296, - 21645472 + 21645168, + 21645344 ], "bases": [ { @@ -258665,7 +258665,7 @@ }, { "type_name": "CPulseSharedEHandleService", - "vtable_address": 30964136, + "vtable_address": 30964072, "methods": [ 15853200, 15853216, @@ -258707,7 +258707,7 @@ }, { "type_name": "CPulseSharedSaveRestoreBlockHandler", - "vtable_address": 30963160, + "vtable_address": 30963096, "methods": [ 15852944, 15852960, @@ -258750,7 +258750,7 @@ }, { "type_name": "CPulse_OutflowConnection", - "vtable_address": 33309504, + "vtable_address": 33309440, "methods": [], "bases": [], "model": { @@ -258761,7 +258761,7 @@ }, { "type_name": "CPulse_OutflowConnection", - "vtable_address": 33309632, + "vtable_address": 33309568, "methods": [], "bases": [], "model": { @@ -258772,7 +258772,7 @@ }, { "type_name": "CPulse_ResumePoint", - "vtable_address": 33309376, + "vtable_address": 33309312, "methods": [], "bases": [], "model": { @@ -258783,33 +258783,33 @@ }, { "type_name": "CPushable", - "vtable_address": 31529648, + "vtable_address": 31529584, "methods": [ 13522144, - 20420976, - 20421312, - 18377504, - 26419168, - 20407184, - 18010864, - 20481344, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20406720, + 20420848, + 20421184, + 18377376, + 26419104, + 20407056, + 18010736, + 20481216, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20406592, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 20407680, + 18378400, + 19829024, + 20407552, 9635872, 9665808, 9641296, @@ -258820,21 +258820,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20401104, - 20407440, - 20404144, + 26427360, + 20400976, + 20407312, + 20404016, 9635312, 13649456, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -258858,100 +258858,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20407088, - 18042720, + 20406960, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 20485360, - 19833664, + 20088096, + 19828496, + 19828672, + 20485232, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 20422736, + 18014720, + 18211344, + 19854832, + 20422608, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20407424, + 20407296, 9637216, 9636096, - 20482480, + 20482352, 11746960, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -258972,7 +258972,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -258985,39 +258985,39 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 20422880, - 20422256, + 20422752, + 20422128, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -259028,36 +259028,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 20410352, - 18011024, - 20407264, - 20483504, - 18004224, + 20410224, + 18010896, + 20407136, + 20483376, + 18004096, 9637120, 9637136, 9637152, - 20407312, + 20407184, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 20486672 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 20486544 ], "bases": [ { @@ -259133,7 +259133,7 @@ }, { "type_name": "CPushable", - "vtable_address": 31531848, + "vtable_address": 31531784, "methods": [ 9837440, 9837456 @@ -259212,23 +259212,23 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request", - "vtable_address": 30904528, + "vtable_address": 30904464, "methods": [ 15602912, 15666768, - 24747814, + 24747750, 15270816, 15753840, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15113072, 15080032, 15495568, 9474464, 15209472, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067648, 15040144 @@ -259264,23 +259264,23 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute", - "vtable_address": 30904368, + "vtable_address": 30904304, "methods": [ 15602784, 15638768, - 24747814, + 24747750, 15270608, 15715760, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052704, 15076128, 15336080, 9474464, 15145632, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067616, 15040128 @@ -259316,23 +259316,23 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Response", - "vtable_address": 30904688, + "vtable_address": 30904624, "methods": [ 15603104, 15638896, - 24747814, + 24747750, 15270944, 15715824, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052784, 15080016, 15336656, 9474464, 15142656, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067680, 15040160 @@ -259368,11 +259368,11 @@ }, { "type_name": "CRadiusDamageInfo", - "vtable_address": 31791728, + "vtable_address": 31791664, "methods": [ 12371904, 12417840, - 22491232 + 22491104 ], "bases": [ { @@ -259394,32 +259394,32 @@ }, { "type_name": "CRagdollConstraint", - "vtable_address": 31679152, + "vtable_address": 31679088, "methods": [ 13506768, - 21107120, - 21107856, + 21106992, + 21107728, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21250832, - 21245360, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21250704, + 21245232, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -259431,21 +259431,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066640, - 21072672, - 21069808, + 26427360, + 21066512, + 21072544, + 21069680, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -259469,83 +259469,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -259553,16 +259553,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21280272, + 21228944, + 21280144, 11962368, 11742368, 11865936, @@ -259583,7 +259583,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -259596,28 +259596,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -259628,7 +259628,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -259639,10 +259639,10 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21190720, - 21111504 + 19857552, + 21244944, + 21190592, + 21111376 ], "bases": [ { @@ -259708,7 +259708,7 @@ }, { "type_name": "CRagdollGameSystem", - "vtable_address": 31751424, + "vtable_address": 31751360, "methods": [ 9634368, 9634384, @@ -259725,11 +259725,11 @@ 9634560, 9634576, 9634592, - 21940128, - 21940032, + 21940000, + 21939904, 9634640, 9634656, - 21952160, + 21952032, 9634688, 9634704, 9634720, @@ -259766,12 +259766,12 @@ 9635216, 9635232, 9635248, - 21926752, + 21926624, 9635280, - 21926736, - 21944656, - 21944080, - 21926720 + 21926608, + 21944528, + 21943952, + 21926592 ], "bases": [ { @@ -259804,12 +259804,12 @@ }, { "type_name": "CRagdollLRURetirement", - "vtable_address": 31752032, + "vtable_address": 31751968, "methods": [ 9634368, 9634384, 9634400, - 21957328, + 21957200, 9634432, 9634448, 9634464, @@ -259833,11 +259833,11 @@ 9634752, 9634768, 9634784, - 22147680, + 22147552, 9634816, 9634832, 9634848, - 21926784, + 21926656, 9634880, 9634896, 9634912, @@ -259862,12 +259862,12 @@ 9635216, 9635232, 9635248, - 21926688, + 21926560, 9635280, - 21926672, - 21958240, - 21958672, - 21926656 + 21926544, + 21958112, + 21958544, + 21926528 ], "bases": [ { @@ -259900,32 +259900,32 @@ }, { "type_name": "CRagdollMagnet", - "vtable_address": 30597168, + "vtable_address": 30597104, "methods": [ 11766592, 13384624, 13384656, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -259937,21 +259937,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20239760, + 26427360, + 20239632, 13384720, 13384064, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -259975,83 +259975,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -260059,16 +260059,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -260089,7 +260089,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -260102,28 +260102,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -260134,7 +260134,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -260145,7 +260145,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -260189,33 +260189,33 @@ }, { "type_name": "CRagdollManager", - "vtable_address": 30420648, + "vtable_address": 30420584, "methods": [ 13506768, 12206928, 12206944, 12023536, - 26419168, + 26419104, 12023584, 12207344, - 20141696, - 26419632, - 26419200, - 26419200, + 20141568, + 26419568, + 26419136, + 26419136, 12281216, 12207392, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 12207440, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -260226,12 +260226,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12202864, 12334272, 12204528, @@ -260239,8 +260239,8 @@ 12237216, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -260264,83 +260264,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12206720, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -260348,16 +260348,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -260378,7 +260378,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -260391,28 +260391,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -260423,7 +260423,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -260434,7 +260434,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -260467,15 +260467,15 @@ }, { "type_name": "CRagdollPoseControlSystem", - "vtable_address": 31309336, + "vtable_address": 31309272, "methods": [ 9634368, 9634384, 9634400, 9634416, 9634432, - 18009008, - 18014000, + 18008880, + 18013872, 9634480, 9634496, 9634512, @@ -260525,12 +260525,12 @@ 9635216, 9635232, 9635248, - 18003488, + 18003360, 9635280, - 18003472, - 18027856, - 18027952, - 18003456 + 18003344, + 18027728, + 18027824, + 18003328 ], "bases": [ { @@ -260563,33 +260563,33 @@ }, { "type_name": "CRagdollProp", - "vtable_address": 30718976, + "vtable_address": 30718912, "methods": [ 13526704, - 21234752, - 21235632, - 18377552, - 18065872, - 21080160, - 18010864, - 21363632, - 26419632, - 18009552, - 26419200, - 21353744, - 21080144, - 18011056, - 19835392, - 19835328, - 18003520, - 21253328, - 21080304, + 21234624, + 21235504, + 18377424, + 18065744, + 21080032, + 18010736, + 21363504, + 26419568, + 18009424, + 26419136, + 21353616, + 21080016, 18010928, - 18035200, - 21080096, - 21357120, - 19829152, - 21080208, + 19835264, + 19835200, + 18003392, + 21253200, + 21080176, + 18010800, + 18035072, + 21079968, + 21356992, + 19829024, + 21080080, 9635872, 9665808, 9641296, @@ -260600,21 +260600,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21233040, + 26427360, + 21232912, 13865472, 13795120, 9635312, 13824992, - 18308160, + 18308032, 9635328, - 21079920, - 19871664, + 21079792, + 19871536, 9637008, 9637024, 9837040, @@ -260626,95 +260626,95 @@ 9635472, 9635488, 13794240, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 21282192, + 21282064, 11763824, - 18009568, - 21103824, - 19828800, - 21207728, - 19833664, + 18009440, + 21103696, + 19828672, + 21207600, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 13794272, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 21080240, + 18014720, + 18211344, + 19854832, + 21080112, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -260722,21 +260722,21 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21290960, - 21290352, - 21108224, + 21228944, + 21290832, + 21290224, + 21108096, 11865936, - 21066912, - 21066944, + 21066784, + 21066816, 9637248, 9636240, 9636256, @@ -260752,8 +260752,8 @@ 9636400, 9636416, 9636432, - 19829072, - 21081104, + 19828944, + 21080976, 11753024, 11757136, 9640192, @@ -260763,41 +260763,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 21109136, - 21108112, + 21109008, + 21107984, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -260808,75 +260808,75 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 21080288, - 18011024, - 21122656, - 21080656, - 18004224, + 21080160, + 18010896, + 21122528, + 21080528, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 13794256, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21113152, - 21067024, - 21067040, + 18275360, + 21113024, + 21066896, + 21066912, 13794288 ], "bases": [ @@ -260963,7 +260963,7 @@ }, { "type_name": "CRagdollProp", - "vtable_address": 30721496, + "vtable_address": 30721432, "methods": [ 9837440, 9837456 @@ -261052,12 +261052,12 @@ }, { "type_name": "CRagdollProp", - "vtable_address": 30721528, + "vtable_address": 30721464, "methods": [ - 21088016, + 21087888, 13794096, 13794112, - 21088032 + 21087904 ], "bases": [ { @@ -261143,7 +261143,7 @@ }, { "type_name": "CRagdollProp", - "vtable_address": 33022176, + "vtable_address": 33022112, "methods": [], "bases": [], "model": { @@ -261154,33 +261154,33 @@ }, { "type_name": "CRagdollPropAlias_physics_prop_ragdoll", - "vtable_address": 31689440, + "vtable_address": 31689376, "methods": [ 13526704, - 21235280, - 21235328, - 18377552, - 18065872, - 21080160, - 18010864, - 21363632, - 26419632, - 18009552, - 26419200, - 21353744, - 21080144, - 18011056, - 19835392, - 19835328, - 18003520, - 21253328, - 21080304, + 21235152, + 21235200, + 18377424, + 18065744, + 21080032, + 18010736, + 21363504, + 26419568, + 18009424, + 26419136, + 21353616, + 21080016, 18010928, - 18035200, - 21080096, - 21357120, - 19829152, - 21080208, + 19835264, + 19835200, + 18003392, + 21253200, + 21080176, + 18010800, + 18035072, + 21079968, + 21356992, + 19829024, + 21080080, 9635872, 9665808, 9641296, @@ -261191,21 +261191,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21067056, - 21080672, - 21069984, + 26427360, + 21066928, + 21080544, + 21069856, 9635312, 13824992, - 18308160, + 18308032, 9635328, - 21079920, - 19871664, + 21079792, + 19871536, 9637008, 9637024, 9837040, @@ -261217,95 +261217,95 @@ 9635472, 9635488, 13794240, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 21282192, + 21282064, 11763824, - 18009568, - 21103824, - 19828800, - 21207728, - 19833664, + 18009440, + 21103696, + 19828672, + 21207600, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 13794272, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 21080240, + 18014720, + 18211344, + 19854832, + 21080112, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -261313,21 +261313,21 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21290960, - 21290352, - 21108224, + 21228944, + 21290832, + 21290224, + 21108096, 11865936, - 21066912, - 21066944, + 21066784, + 21066816, 9637248, 9636240, 9636256, @@ -261343,8 +261343,8 @@ 9636400, 9636416, 9636432, - 19829072, - 21081104, + 19828944, + 21080976, 11753024, 11757136, 9640192, @@ -261354,41 +261354,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 21109136, - 21108112, + 21109008, + 21107984, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -261399,75 +261399,75 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 21080288, - 18011024, - 21122656, - 21080656, - 18004224, + 21080160, + 18010896, + 21122528, + 21080528, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 13794256, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21113152, - 21067024, - 21067040, + 18275360, + 21113024, + 21066896, + 21066912, 13794288 ], "bases": [ @@ -261565,7 +261565,7 @@ }, { "type_name": "CRagdollPropAlias_physics_prop_ragdoll", - "vtable_address": 31691960, + "vtable_address": 31691896, "methods": [ 9837440, 9837456 @@ -261665,12 +261665,12 @@ }, { "type_name": "CRagdollPropAlias_physics_prop_ragdoll", - "vtable_address": 31691992, + "vtable_address": 31691928, "methods": [ - 21088016, + 21087888, 13794096, 13794112, - 21088032 + 21087904 ], "bases": [ { @@ -261767,33 +261767,33 @@ }, { "type_name": "CRagdollPropAttached", - "vtable_address": 31692040, + "vtable_address": 31691976, "methods": [ 13526704, - 21235408, - 21235520, - 18377552, - 18065872, - 21080160, - 18010864, - 21365712, - 26419632, - 18009552, - 26419200, - 21356896, - 21080144, - 18011056, - 19835392, - 19835328, - 18003520, - 21253328, - 21080304, + 21235280, + 21235392, + 18377424, + 18065744, + 21080032, + 18010736, + 21365584, + 26419568, + 18009424, + 26419136, + 21356768, + 21080016, 18010928, - 18035200, - 21080096, - 21357120, - 19829152, - 21080208, + 19835264, + 19835200, + 18003392, + 21253200, + 21080176, + 18010800, + 18035072, + 21079968, + 21356992, + 19829024, + 21080080, 9635872, 9665808, 9641296, @@ -261804,21 +261804,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21067008, - 21080672, - 21069968, + 26427360, + 21066880, + 21080544, + 21069840, 9635312, - 21152368, - 18308160, + 21152240, + 18308032, 9635328, - 21079920, - 19871664, + 21079792, + 19871536, 9637008, 9637024, 9837040, @@ -261830,95 +261830,95 @@ 9635472, 9635488, 13794240, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, - 21290896, + 21290768, 11763824, - 18009568, - 21103824, - 19828800, - 21207728, - 19833664, + 18009440, + 21103696, + 19828672, + 21207600, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 13794272, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 21080240, + 18014720, + 18211344, + 19854832, + 21080112, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -261926,21 +261926,21 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21290960, - 21290352, - 21108224, + 21228944, + 21290832, + 21290224, + 21108096, 11865936, - 21066912, - 21066944, + 21066784, + 21066816, 9637248, 9636240, 9636256, @@ -261956,8 +261956,8 @@ 9636400, 9636416, 9636432, - 19829072, - 21081104, + 19828944, + 21080976, 11753024, 11757136, 9640192, @@ -261967,41 +261967,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 21109136, - 21108112, + 21109008, + 21107984, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -262012,76 +262012,76 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 21080288, - 18011024, - 21122656, - 21080656, - 18004224, + 21080160, + 18010896, + 21122528, + 21080528, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 13794256, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21113152, - 21067024, - 21067040, - 21066976 + 18275360, + 21113024, + 21066896, + 21066912, + 21066848 ], "bases": [ { @@ -262178,7 +262178,7 @@ }, { "type_name": "CRagdollPropAttached", - "vtable_address": 31694560, + "vtable_address": 31694496, "methods": [ 9837440, 9837456 @@ -262278,12 +262278,12 @@ }, { "type_name": "CRagdollPropAttached", - "vtable_address": 31694592, + "vtable_address": 31694528, "methods": [ - 21088016, + 21087888, 13794096, 13794112, - 21088032 + 21087904 ], "bases": [ { @@ -262380,18 +262380,18 @@ }, { "type_name": "CRangeInt", - "vtable_address": 32060544, + "vtable_address": 32060480, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33384832 + "offset_to_top": 33384768 } } }, { "type_name": "CReadyForMatchIssue", - "vtable_address": 30232448, + "vtable_address": 30232384, "methods": [ 10429120, 10472640, @@ -262459,14 +262459,14 @@ }, { "type_name": "CRecipientFilter", - "vtable_address": 31396128, + "vtable_address": 31396064, "methods": [ - 19463840, - 19465120, - 19464368, - 19464352, - 19464384, - 19464400 + 19463712, + 19464992, + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -262488,33 +262488,33 @@ }, { "type_name": "CRectLight", - "vtable_address": 30307672, + "vtable_address": 30307608, "methods": [ 13522144, 11574752, 11574768, - 18377504, - 26419168, - 18094240, - 18010864, + 18377376, + 26419104, + 18094112, + 18010736, 11649632, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11653424, 11654160, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -262525,21 +262525,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 11570960, 11654288, 11571568, 9635312, 11582368, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -262563,25 +262563,25 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, 11573200, @@ -262589,57 +262589,57 @@ 9654336, 11742336, 11572784, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 11570896, 11570928, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11570944, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -262647,16 +262647,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -262677,7 +262677,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -262690,28 +262690,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -262722,7 +262722,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -262733,35 +262733,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11572320, 11598528, 11614096 @@ -262819,14 +262819,14 @@ }, { "type_name": "CReliableBroadcastRecipientFilter", - "vtable_address": 30165112, + "vtable_address": 30165048, "methods": [ 9837424, 9838816, - 19464368, - 19464352, - 19464384, - 19464400 + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -262870,14 +262870,14 @@ }, { "type_name": "CReliableSingleUserRecipientFilter", - "vtable_address": 30968040, + "vtable_address": 30967976, "methods": [ 15971936, 15975296, - 19464368, - 19464352, - 19464384, - 19464400 + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -262921,7 +262921,7 @@ }, { "type_name": "CReloadMatchFilter", - "vtable_address": 30513936, + "vtable_address": 30513872, "methods": [ 12431168 ], @@ -262945,7 +262945,7 @@ }, { "type_name": "CRender", - "vtable_address": 30531056, + "vtable_address": 30530992, "methods": [ 12855696, 12928752, @@ -262962,7 +262962,7 @@ }, { "type_name": "CRenderComponent", - "vtable_address": 30159904, + "vtable_address": 30159840, "methods": [ 9701168, 9699488, @@ -262988,7 +262988,7 @@ }, { "type_name": "CRenderComponentToolsResourceListener", - "vtable_address": 30160008, + "vtable_address": 30159944, "methods": [ 9698336, 9699504 @@ -263013,7 +263013,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 30530424, + "vtable_address": 30530360, "methods": [ 9634368, 9634384, @@ -263125,7 +263125,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 30530992, + "vtable_address": 30530928, "methods": [ 12855408 ], @@ -263169,7 +263169,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 30531016, + "vtable_address": 30530952, "methods": [ 12855504, 12855040, @@ -263215,7 +263215,7 @@ }, { "type_name": "CResourceManifestPrerequisite", - "vtable_address": 30507616, + "vtable_address": 30507552, "methods": [ 12458128, 12461264, @@ -263245,7 +263245,7 @@ }, { "type_name": "CResourcePrecacherGameSystem", - "vtable_address": 30422616, + "vtable_address": 30422552, "methods": [ 9634368, 9634384, @@ -263341,7 +263341,7 @@ }, { "type_name": "CResponseCriteriaSet", - "vtable_address": 30194248, + "vtable_address": 30194184, "methods": [ 10062208 ], @@ -263354,7 +263354,7 @@ }, { "type_name": "CResponseCriteriaSet", - "vtable_address": 30953416, + "vtable_address": 30953352, "methods": [], "bases": [], "model": { @@ -263365,13 +263365,13 @@ }, { "type_name": "CResponseQueueManager", - "vtable_address": 31429976, + "vtable_address": 31429912, "methods": [ 9634368, 9634384, 9634400, - 20071280, - 20071600, + 20071152, + 20071472, 9634448, 9634464, 9634480, @@ -263379,7 +263379,7 @@ 9634512, 9634528, 9634544, - 20071344, + 20071216, 9634576, 9634592, 9634608, @@ -263398,7 +263398,7 @@ 9634816, 9634832, 9634848, - 20080528, + 20080400, 9634880, 9634896, 9634912, @@ -263423,12 +263423,12 @@ 9635216, 9635232, 9635248, - 19828192, + 19828064, 9635280, - 19828176, - 20071984, - 20072384, - 19828160 + 19828048, + 20071856, + 20072256, + 19828032 ], "bases": [ { @@ -263461,18 +263461,18 @@ }, { "type_name": "CResponseSystem", - "vtable_address": 32058168, + "vtable_address": 32058104, "methods": [ - 27938656, - 27940048, - 27945312, - 27924768, - 18002704, - 27943136, - 27924592, - 18002720, - 27924256, - 27924288 + 27938592, + 27939984, + 27945248, + 27924704, + 18002576, + 27943072, + 27924528, + 18002592, + 27924192, + 27924224 ], "bases": [ { @@ -263515,10 +263515,10 @@ }, { "type_name": "CResponseSystem", - "vtable_address": 32058264, + "vtable_address": 32058200, "methods": [ - 27940032, - 27940096 + 27939968, + 27940032 ], "bases": [ { @@ -263561,7 +263561,7 @@ }, { "type_name": "CRestartGameIssue", - "vtable_address": 30229856, + "vtable_address": 30229792, "methods": [ 10429120, 10473504, @@ -263629,87 +263629,87 @@ }, { "type_name": "CRestore", - "vtable_address": 31366136, + "vtable_address": 31366072, "methods": [ - 18880784, - 18881888, - 18811744, - 18811792, - 18021776, - 19183712, - 19024784, - 18853008, - 18854208, - 18820272, - 18888896, - 18853760, - 18883056, - 18884320, - 18885584, - 18865328, - 18870608, - 18866592, - 18867856, - 18869152, - 18853904, - 18911568, - 18860480, - 18853488, - 18856496, - 18857280, - 18856736, - 18856240, - 18861808, - 18857728, - 18855264, - 18855504, - 18855504, - 18855760, - 18859152, - 18871872, - 18908064, - 18908608, - 18902640, - 18838096, - 18864656, - 18890880, - 18925616, - 18862304, - 18856000, - 18858768, - 18859152, - 18811728, - 19076304, - 19079408, - 18811728, - 19171232, - 18864240, - 18810880, - 15858032, - 18409184, - 18409216, - 18811696, - 19030720, - 18811680, + 18880656, + 18881760, 18811616, - 18811632, - 18811712, - 18811712, - 18819568, - 18811648, 18811664, + 18021648, + 19183584, + 19024656, + 18852880, + 18854080, + 18820144, + 18888768, + 18853632, + 18882928, + 18884192, + 18885456, + 18865200, + 18870480, + 18866464, + 18867728, + 18869024, + 18853776, + 18911440, + 18860352, + 18853360, + 18856368, + 18857152, + 18856608, + 18856112, + 18861680, + 18857600, + 18855136, + 18855376, + 18855376, + 18855632, + 18859024, + 18871744, + 18907936, + 18908480, + 18902512, + 18837968, + 18864528, + 18890752, + 18925488, + 18862176, + 18855872, + 18858640, + 18859024, + 18811600, + 19076176, + 19079280, + 18811600, + 19171104, + 18864112, + 18810752, + 15858032, 18409056, - 18904112, - 18902080, + 18409088, + 18811568, + 19030592, + 18811552, + 18811488, + 18811504, + 18811584, + 18811584, + 18819440, + 18811520, + 18811536, + 18408928, + 18903984, + 18901952, 12210336, - 18853616, - 18819904, - 18819952, - 18820272, - 18820272, - 18810912, - 18900528, - 18832736 + 18853488, + 18819776, + 18819824, + 18820144, + 18820144, + 18810784, + 18900400, + 18832608 ], "bases": [ { @@ -263763,87 +263763,87 @@ }, { "type_name": "CRestore", - "vtable_address": 31366784, - "methods": [ - 18880864, - 18881984, - 18847472, - 18846336, - 18021760, - 19184128, - 19026288, - 18854128, - 18858400, - 18840032, - 18889312, - 18879088, - 18884304, - 18885568, - 18886832, - 18866576, - 18871856, - 18867840, - 18869136, - 18870592, - 18854112, - 18897104, - 18861792, - 18872064, - 18856720, - 18857584, - 18856976, - 18856480, - 18862288, - 18857952, - 18855488, - 18855744, - 18855728, - 18896016, - 18896560, - 18904096, - 18838560, - 18865104, - 18891296, - 18925968, - 18855984, - 18863344, - 18856224, - 18859136, - 18859472, - 18859456, - 18879232, - 18838624, - 19079392, - 19080368, - 18838640, - 19172976, - 18864640, - 18810896, + "vtable_address": 31366720, + "methods": [ + 18880736, + 18881856, + 18847344, + 18846208, + 18021632, + 19184000, + 19026160, + 18854000, + 18858272, + 18839904, + 18889184, + 18878960, + 18884176, + 18885440, + 18886704, + 18866448, + 18871728, + 18867712, + 18869008, + 18870464, + 18853984, + 18896976, + 18861664, + 18871936, + 18856592, + 18857456, + 18856848, + 18856352, + 18862160, + 18857824, + 18855360, + 18855616, + 18855600, + 18895888, + 18896432, + 18903968, + 18838432, + 18864976, + 18891168, + 18925840, + 18855856, + 18863216, + 18856096, + 18859008, + 18859344, + 18859328, + 18879104, + 18838496, + 19079264, + 19080240, + 18838512, + 19172848, + 18864512, + 18810768, 15858016, - 18409168, - 18409200, - 18839888, - 19030752, - 18839664, - 18839632, - 18839648, - 18839600, - 18839616, - 18840688, - 18839952, - 18839968, 18409040, - 18891568, - 18893712, - 18893296, - 18847024, + 18409072, + 18839760, + 19030624, + 18839536, + 18839504, + 18839520, + 18839472, + 18839488, + 18840560, + 18839824, + 18839840, + 18408912, + 18891440, + 18893584, + 18893168, + 18846896, 12210320, - 18886848, - 18842832, - 18847392, - 18840048, - 18840064, - 18810928 + 18886720, + 18842704, + 18847264, + 18839920, + 18839936, + 18810800 ], "bases": [ { @@ -263897,15 +263897,15 @@ }, { "type_name": "CRetakeGameRules", - "vtable_address": 30994760, + "vtable_address": 30994696, "methods": [ - 16222720, - 16224272, - 16581216, + 16222784, + 16224336, + 16581088, 15978944, - 16501232, + 16501104, 15971392, - 16501248 + 16501120 ], "bases": [ { @@ -263938,7 +263938,7 @@ }, { "type_name": "CRetakeGameRules", - "vtable_address": 31002288, + "vtable_address": 31002224, "methods": [], "bases": [], "model": { @@ -263949,32 +263949,32 @@ }, { "type_name": "CRevertSaved", - "vtable_address": 31752544, + "vtable_address": 31752480, "methods": [ 13522144, - 21931376, - 21931408, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 21931248, + 21931280, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10437760, 9635872, 9665808, @@ -263986,21 +263986,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21926816, - 21931472, - 21930576, + 26427360, + 21926688, + 21931344, + 21930448, 9635312, 13440208, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -264024,83 +264024,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 18104832, - 19834496, + 18104704, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 21931168, + 21931040, 9637216, 9636096, 11746864, @@ -264108,16 +264108,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -264138,7 +264138,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -264151,28 +264151,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -264183,7 +264183,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -264194,35 +264194,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, - 18004256, - 18261776, - 18057568, + 18045984, + 18004128, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -264277,32 +264277,32 @@ }, { "type_name": "CRopeKeyframe", - "vtable_address": 30742912, + "vtable_address": 30742848, "methods": [ 13522144, 13876496, 13870960, - 18377504, - 26419168, - 22081008, - 18010864, - 22034880, - 26419632, - 26419200, - 26419200, - 22044864, - 22044800, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 22080880, + 18010736, + 22034752, + 26419568, + 26419136, + 26419136, + 22044736, + 22044672, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 13867664, 9635872, 9665808, @@ -264314,21 +264314,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21991904, + 26427360, + 21991776, 13914192, 13865952, 9635312, 13883200, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -264352,83 +264352,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21931488, - 19840912, - 21972752, + 21931360, + 19840784, + 21972624, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -264436,16 +264436,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -264466,7 +264466,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -264479,28 +264479,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -264511,7 +264511,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -264522,37 +264522,37 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 21931712, - 18011024, - 18004224, - 22031408, - 18004224, + 21931584, + 18010896, + 18004096, + 22031280, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22039568, - 22064384 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22039440, + 22064256 ], "bases": [ { @@ -264617,11 +264617,11 @@ }, { "type_name": "CRopeKeyframe", - "vtable_address": 30745120, + "vtable_address": 30745056, "methods": [ 13876608, 13870832, - 22040736 + 22040608 ], "bases": [ { @@ -264686,7 +264686,7 @@ }, { "type_name": "CRopeKeyframe", - "vtable_address": 33205440, + "vtable_address": 33205376, "methods": [], "bases": [], "model": { @@ -264697,32 +264697,32 @@ }, { "type_name": "CRopeKeyframeAlias_move_rope", - "vtable_address": 31754736, + "vtable_address": 31754672, "methods": [ 13522144, - 21948544, - 21942112, - 18377504, - 26419168, - 22081008, - 18010864, - 22034880, - 26419632, - 26419200, - 26419200, - 22044864, - 22044800, - 18011056, - 19835392, - 19835328, + 21948416, + 21941984, + 18377376, + 26419104, + 22080880, + 18010736, + 22034752, + 26419568, + 26419136, + 26419136, + 22044736, + 22044672, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 13867664, 9635872, 9665808, @@ -264734,21 +264734,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21926832, - 21931760, - 21930592, + 26427360, + 21926704, + 21931632, + 21930464, 9635312, 13883200, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -264772,83 +264772,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21931488, - 19840912, - 21972752, + 21931360, + 19840784, + 21972624, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -264856,16 +264856,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -264886,7 +264886,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -264899,28 +264899,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -264931,7 +264931,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -264942,37 +264942,37 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 21931712, - 18011024, - 18004224, - 22031408, - 18004224, + 21931584, + 18010896, + 18004096, + 22031280, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22039568, - 22064384 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22039440, + 22064256 ], "bases": [ { @@ -265048,11 +265048,11 @@ }, { "type_name": "CRopeKeyframeAlias_move_rope", - "vtable_address": 31756944, + "vtable_address": 31756880, "methods": [ - 21948656, - 21941984, - 22040736 + 21948528, + 21941856, + 22040608 ], "bases": [ { @@ -265128,33 +265128,33 @@ }, { "type_name": "CRotButton", - "vtable_address": 30590656, + "vtable_address": 30590592, "methods": [ 13522144, 13413120, 13414048, - 18377504, - 26419168, - 20153792, - 18010864, - 20147584, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 19993008, + 18377376, + 26419104, + 20153664, + 18010736, + 20147456, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 19992880, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19990608, + 18378400, + 19829024, + 19990480, 9635872, 9665808, 9641296, @@ -265165,21 +265165,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19998336, + 26427360, + 19998208, 13382848, 13384096, 9635312, 13440688, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -265203,83 +265203,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 19843520, - 18042720, + 19843392, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -265287,16 +265287,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, - 19991568, - 19991632, - 19979760, - 19828656, - 21311696, + 19991440, + 19991504, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -265317,7 +265317,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -265330,28 +265330,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -265362,7 +265362,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -265373,45 +265373,45 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 19988000, - 18011024, - 18004224, - 19988368, - 18004224, + 19987872, + 18010896, + 18004096, + 19988240, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 19988944, - 19990176, - 19989968, - 19991408, - 19991760, - 19992400, - 19987872, - 19987888, - 19829840, - 19829856 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 19988816, + 19990048, + 19989840, + 19991280, + 19991632, + 19992272, + 19987744, + 19987760, + 19829712, + 19829728 ], "bases": [ { @@ -265477,32 +265477,32 @@ }, { "type_name": "CRotDoor", - "vtable_address": 31468712, + "vtable_address": 31468648, "methods": [ 13522144, - 20279072, - 20279152, - 18377504, - 26419168, - 20159392, - 18010864, - 20326752, - 26419632, - 26419200, - 26419200, - 20281488, - 20159328, - 18011056, - 19835392, - 19835328, + 20278944, + 20279024, + 18377376, + 26419104, + 20159264, + 18010736, + 20326624, + 26419568, + 26419136, + 26419136, + 20281360, + 20159200, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 20181024, - 19829152, + 20180896, + 19829024, 13626864, 9635872, 9665808, @@ -265514,21 +265514,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20154848, - 20159712, - 20156320, + 26427360, + 20154720, + 20159584, + 20156192, 9635312, 13649840, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -265552,100 +265552,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 20359664, - 18042720, + 20359536, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20284912, + 20284784, 9637216, 9636096, 11746864, 11746960, 11747104, 9636112, - 20184768, - 20283280, - 20184864, + 20184640, + 20283152, + 20184736, 9636160, 9636176, - 19979760, - 19828656, - 20161536, + 19979632, + 19828528, + 20161408, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -265666,7 +265666,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -265679,28 +265679,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -265711,7 +265711,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -265722,39 +265722,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13621680, - 20161600, - 20154832, - 20188928 + 20161472, + 20154704, + 20188800 ], "bases": [ { @@ -265841,10 +265841,10 @@ }, { "type_name": "CRotDoor", - "vtable_address": 31470936, + "vtable_address": 31470872, "methods": [ - 20279104, - 20279216, + 20278976, + 20279088, 13621696 ], "bases": [ @@ -265932,32 +265932,32 @@ }, { "type_name": "CRotatorTarget", - "vtable_address": 30661200, + "vtable_address": 30661136, "methods": [ 11766592, 13718880, 13718992, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -265969,21 +265969,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20688672, + 26427360, + 20688544, 13704784, 13704224, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -266007,83 +266007,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -266091,16 +266091,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -266121,7 +266121,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -266134,28 +266134,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -266166,7 +266166,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -266177,7 +266177,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -266221,7 +266221,7 @@ }, { "type_name": "CRoundEndReport", - "vtable_address": 30249584, + "vtable_address": 30249520, "methods": [ 10444064, 10444208, @@ -266258,33 +266258,33 @@ }, { "type_name": "CRuleBrushEntity", - "vtable_address": 31620000, + "vtable_address": 31619936, "methods": [ 13522144, - 20911104, - 20911136, - 18377504, - 26419168, - 18094240, - 18010864, - 20930624, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20910976, + 20911008, + 18377376, + 26419104, + 18094112, + 18010736, + 20930496, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -266295,21 +266295,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905376, - 20913392, - 20906848, + 26427360, + 20905248, + 20913264, + 20906720, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -266333,83 +266333,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -266417,16 +266417,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -266447,7 +266447,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -266460,28 +266460,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -266492,7 +266492,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -266503,35 +266503,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -266586,33 +266586,33 @@ }, { "type_name": "CRuleEntity", - "vtable_address": 30691008, + "vtable_address": 30690944, "methods": [ 13522144, 13795216, 13795232, - 18377504, - 26419168, - 18094240, - 18010864, - 21011392, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 21011264, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -266623,21 +266623,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21011248, + 26427360, + 21011120, 13865440, 13794784, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -266661,83 +266661,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -266745,16 +266745,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -266775,7 +266775,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -266788,28 +266788,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -266820,7 +266820,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -266831,35 +266831,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -266903,7 +266903,7 @@ }, { "type_name": "CRuleEntity", - "vtable_address": 32954496, + "vtable_address": 32954432, "methods": [], "bases": [], "model": { @@ -266914,33 +266914,33 @@ }, { "type_name": "CRulePointEntity", - "vtable_address": 30693200, + "vtable_address": 30693136, "methods": [ 13522144, 13795280, 13795296, - 18377504, - 26419168, - 18094240, - 18010864, - 20930688, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20930560, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -266951,21 +266951,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21011440, + 26427360, + 21011312, 13865440, 13794768, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -266989,83 +266989,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -267073,16 +267073,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -267103,7 +267103,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -267116,28 +267116,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -267148,7 +267148,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -267159,35 +267159,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -267242,7 +267242,7 @@ }, { "type_name": "CRulePointEntity", - "vtable_address": 32459232, + "vtable_address": 32459168, "methods": [], "bases": [], "model": { @@ -267253,7 +267253,7 @@ }, { "type_name": "CRulePointEntity", - "vtable_address": 32954304, + "vtable_address": 32954240, "methods": [], "bases": [], "model": { @@ -267264,26 +267264,26 @@ }, { "type_name": "CSGOInputHistoryEntryPB", - "vtable_address": 31056928, - "methods": [ - 16719920, - 16720720, - 24747814, - 16713536, - 16724976, - 16709056, - 24749974, - 24746806, - 16725552, - 16709824, - 16714688, + "vtable_address": 31056864, + "methods": [ + 16719792, + 16720592, + 24747750, + 16713408, + 16724848, + 16708928, + 24749910, + 24746742, + 16725424, + 16709696, + 16714560, 9474464, - 16711712, - 24746716, - 24746982, - 16709520, - 16709728, - 16709088 + 16711584, + 24746652, + 24746918, + 16709392, + 16709600, + 16708960 ], "bases": [ { @@ -267316,26 +267316,26 @@ }, { "type_name": "CSGOInterpolationInfoPB", - "vtable_address": 31056608, - "methods": [ - 16719664, - 16720464, - 24747814, - 16713216, - 16721296, - 16709056, - 24749974, - 24746806, - 16709568, - 16709808, - 16713744, + "vtable_address": 31056544, + "methods": [ + 16719536, + 16720336, + 24747750, + 16713088, + 16721168, + 16708928, + 24749910, + 24746742, + 16709440, + 16709680, + 16713616, 9474464, - 16710560, - 24746716, - 24746982, - 16709520, - 16709664, - 16709040 + 16710432, + 24746652, + 24746918, + 16709392, + 16709536, + 16708912 ], "bases": [ { @@ -267368,26 +267368,26 @@ }, { "type_name": "CSGOInterpolationInfoPB_CL", - "vtable_address": 31056768, + "vtable_address": 31056704, "methods": [ - 16719792, - 16720592, - 24747814, - 16713360, - 16721360, - 16709056, - 24749974, - 24746806, - 16709536, - 16709792, - 16714368, + 16719664, + 16720464, + 24747750, + 16713232, + 16721232, + 16708928, + 24749910, + 24746742, + 16709408, + 16709664, + 16714240, 9474464, - 16710096, - 24746716, - 24746982, - 16709520, - 16709696, - 16709072 + 16709968, + 24746652, + 24746918, + 16709392, + 16709568, + 16708944 ], "bases": [ { @@ -267420,34 +267420,34 @@ }, { "type_name": "CSGOUserCmdPB", - "vtable_address": 31057088, + "vtable_address": 31057024, "methods": [ - 16720272, - 16721088, - 24747814, + 16720144, + 16720960, + 24747750, 10634336, - 16726288, - 16709056, - 24749974, - 24746806, - 16726928, + 16726160, + 16708928, + 24749910, + 24746742, + 16726800, 10634320, - 16716400, + 16716272, 9474464, - 16710976, - 24746716, - 24746982, - 16709520, - 16709760, - 16709104, - 24748544, - 16721568, - 24748544, - 16717984, - 24748544, - 16717888, - 24748544, - 16717744 + 16710848, + 24746652, + 24746918, + 16709392, + 16709632, + 16708976, + 24748480, + 16721440, + 24748480, + 16717856, + 24748480, + 16717760, + 24748480, + 16717616 ], "bases": [ { @@ -267480,7 +267480,7 @@ }, { "type_name": "CSHA1", - "vtable_address": 30240896, + "vtable_address": 30240832, "methods": [ 10427632, 10428880 @@ -267494,9 +267494,9 @@ }, { "type_name": "CSMatchStats_t", - "vtable_address": 31003552, + "vtable_address": 31003488, "methods": [ - 16600432, + 16600304, 15977376, 15977504, 15978896, @@ -267522,7 +267522,7 @@ }, { "type_name": "CSNavMesh", - "vtable_address": 30317960, + "vtable_address": 30317896, "methods": [ 11658784, 11659088, @@ -267530,11 +267530,11 @@ 11654352, 11686992, 11710224, - 28606800, - 28621872, + 28606736, + 28621808, 11710240, - 28610464, - 28610352, + 28610400, + 28610288, 11710816, 11711440, 11711456, @@ -267544,14 +267544,14 @@ 11698464, 11654368, 11654384, - 28651024, - 28606304, - 28610128, - 28705456, + 28650960, + 28606240, + 28610064, + 28705392, 11686832, 11711888, - 28617728, - 28606208, + 28617664, + 28606144, 11654400, 11654416, 11654432, @@ -267580,23 +267580,23 @@ }, { "type_name": "CSOAccountItemPersonalStore", - "vtable_address": 30844184, + "vtable_address": 30844120, "methods": [ 14764880, 14819536, - 24747814, + 24747750, 14358256, 14889744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14084672, 14065280, 14499168, 9474464, 14178336, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055024, 14023472 @@ -267632,23 +267632,23 @@ }, { "type_name": "CSOAccountKeychainRemoveToolCharges", - "vtable_address": 30844984, + "vtable_address": 30844920, "methods": [ 14765616, 14804464, - 24747814, + 24747750, 14359024, 14890064, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044528, 14065216, 14502928, 9474464, 14119264, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055184, 14023552 @@ -267684,23 +267684,23 @@ }, { "type_name": "CSOAccountRecurringMission", - "vtable_address": 30845944, + "vtable_address": 30845880, "methods": [ 14766256, 14805104, - 24747814, + 24747750, 14359904, 14890368, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14045056, 14065120, 14506592, 9474464, 14200576, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055376, 14023648 @@ -267736,23 +267736,23 @@ }, { "type_name": "CSOAccountRecurringSubscription", - "vtable_address": 30845464, + "vtable_address": 30845400, "methods": [ 14766000, 14804848, - 24747814, + 24747750, 14359456, 14890240, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044880, 14065168, 14504736, 9474464, 14138368, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055280, 14023600 @@ -267788,23 +267788,23 @@ }, { "type_name": "CSOAccountSeasonalOperation", - "vtable_address": 30845304, + "vtable_address": 30845240, "methods": [ 14765872, 14804720, - 24747814, + 24747750, 14359328, 14890176, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044672, 14065184, 14504000, 9474464, 14259296, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055248, 14023584 @@ -267840,23 +267840,23 @@ }, { "type_name": "CSOAccountXpShop", - "vtable_address": 30844344, + "vtable_address": 30844280, "methods": [ 14765024, 14819696, - 24747814, + 24747750, 14358400, 14889808, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087024, 14062848, 14499920, 9474464, 14178848, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055056, 14023488 @@ -267892,23 +267892,23 @@ }, { "type_name": "CSOAccountXpShopBids", - "vtable_address": 30844504, + "vtable_address": 30844440, "methods": [ 14765168, 14804336, - 24747814, + 24747750, 14358560, 14889872, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044400, 14065264, 14500656, 9474464, 14199968, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055088, 14023504 @@ -267944,23 +267944,23 @@ }, { "type_name": "CSOEconClaimCode", - "vtable_address": 30814264, + "vtable_address": 30814200, "methods": [ 14741408, 14815216, - 24747814, + 24747750, 14327376, 14897152, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14070112, 14067040, 14406304, 9474464, 14207008, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049040, 14017312 @@ -267996,23 +267996,23 @@ }, { "type_name": "CSOEconCoupon", - "vtable_address": 30844024, + "vtable_address": 30843960, "methods": [ 14764752, 14804208, - 24747814, + 24747750, 14358112, 14889680, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044304, 14065296, 14498544, 9474464, 14153920, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14054992, 14023456 @@ -268048,23 +268048,23 @@ }, { "type_name": "CSOEconEquipSlot", - "vtable_address": 30821944, + "vtable_address": 30821880, "methods": [ 14747424, 14797040, - 24747814, + 24747750, 14334640, 14885392, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039024, 14066400, 14429536, 9474464, 14232000, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050576, 14018080 @@ -268100,23 +268100,23 @@ }, { "type_name": "CSOEconGameAccountClient", - "vtable_address": 30811704, + "vtable_address": 30811640, "methods": [ 14738976, 14792944, - 24747814, + 24747750, 14324864, 14883328, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037008, 14067216, 14398640, 9474464, 14220960, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048528, 14017056 @@ -268152,23 +268152,23 @@ }, { "type_name": "CSOEconItem", - "vtable_address": 30813944, + "vtable_address": 30813880, "methods": [ 14740976, 14880608, - 24747814, + 24747750, 14327104, 14932656, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14100352, 14061776, 14607120, 9474464, 14307088, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048976, 14017280 @@ -268204,23 +268204,23 @@ }, { "type_name": "CSOEconItemAttribute", - "vtable_address": 30813624, + "vtable_address": 30813560, "methods": [ 14740704, 14815056, - 24747814, + 24747750, 14326784, 14896864, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14080560, 14061760, 14404704, 9474464, 14214912, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048912, 14017248 @@ -268256,23 +268256,23 @@ }, { "type_name": "CSOEconItemDropRateBonus", - "vtable_address": 30817464, + "vtable_address": 30817400, "methods": [ 14744176, 14794992, - 24747814, + 24747750, 14330544, 14884416, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038160, 14066768, 14416080, 9474464, 14221664, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049680, 14017632 @@ -268308,23 +268308,23 @@ }, { "type_name": "CSOEconItemEquipped", - "vtable_address": 30813784, + "vtable_address": 30813720, "methods": [ 14740848, 14793968, - 24747814, + 24747750, 14326912, 14883872, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14037600, 14061792, 14405248, 9474464, 14135904, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048944, 14017264 @@ -268360,23 +268360,23 @@ }, { "type_name": "CSOEconItemEventTicket", - "vtable_address": 30817784, + "vtable_address": 30817720, "methods": [ 14744432, 14795248, - 24747814, + 24747750, 14330864, 14884544, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038432, 14066736, 14417280, 9474464, 14170336, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049744, 14017664 @@ -268412,23 +268412,23 @@ }, { "type_name": "CSOEconItemLeagueViewPass", - "vtable_address": 30817624, + "vtable_address": 30817560, "methods": [ 14744304, 14795120, - 24747814, + 24747750, 14330704, 14884480, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14038304, 14066752, 14416720, 9474464, 14199360, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14049712, 14017648 @@ -268464,23 +268464,23 @@ }, { "type_name": "CSOEconRentalHistory", - "vtable_address": 30822584, + "vtable_address": 30822520, "methods": [ 14747968, 14797424, - 24747814, + 24747750, 14335264, 14885584, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039392, 14066352, 14431312, 9474464, 14232736, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14050704, 14018144 @@ -268516,23 +268516,23 @@ }, { "type_name": "CSOGameAccountSteamChina", - "vtable_address": 30845624, + "vtable_address": 30845560, "methods": [ 14766128, 14804976, - 24747814, + 24747750, 14359600, 14890304, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044960, 14065152, 14505312, 9474464, 14167424, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055312, 14023616 @@ -268568,23 +268568,23 @@ }, { "type_name": "CSOItemCriteria", - "vtable_address": 30812024, + "vtable_address": 30811960, "methods": [ 14739264, 14838080, - 24747814, + 24747750, 14325200, 14937200, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14110064, 14061744, 14604560, 9474464, 14305120, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048592, 14017088 @@ -268620,23 +268620,23 @@ }, { "type_name": "CSOItemCriteriaCondition", - "vtable_address": 30811864, + "vtable_address": 30811800, "methods": [ 14739104, 14827376, - 24747814, + 24747750, 14325024, 14896704, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069936, 14061728, 14399280, 9474464, 14213728, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048560, 14017072 @@ -268672,23 +268672,23 @@ }, { "type_name": "CSOItemRecipe", - "vtable_address": 30812184, + "vtable_address": 30812120, "methods": [ 14739424, 14739760, - 24747814, + 24747750, 14325424, 14938016, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14110656, 14067200, 14605600, 9474464, 14306048, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048624, 14017104 @@ -268724,23 +268724,23 @@ }, { "type_name": "CSOLobbyInvite", - "vtable_address": 30810264, + "vtable_address": 30810200, "methods": [ 14738048, 14814736, - 24747814, + 24747750, 14323584, 14896160, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069760, 14067328, 14395328, 9474464, 14160672, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048240, 14016912 @@ -268776,23 +268776,23 @@ }, { "type_name": "CSOPartyInvite", - "vtable_address": 30810104, + "vtable_address": 30810040, "methods": [ 14737904, 14814576, - 24747814, + 24747750, 14323456, 14895872, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14069648, 14067344, 14394736, 9474464, 14160288, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14048208, 14016896 @@ -268828,23 +268828,23 @@ }, { "type_name": "CSOPersonaDataPublic", - "vtable_address": 30845784, + "vtable_address": 30845720, "methods": [ 14845072, 14863568, - 24747814, + 24747750, 14359744, 14940240, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14047488, 14065136, 14505904, 9474464, 14207616, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055344, 14023632 @@ -268880,23 +268880,23 @@ }, { "type_name": "CSOQuestProgress", - "vtable_address": 30845144, + "vtable_address": 30845080, "methods": [ 14765744, 14804592, - 24747814, + 24747750, 14359168, 14890112, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14044576, 14065200, 14503408, 9474464, 14166944, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055216, 14023568 @@ -268932,23 +268932,23 @@ }, { "type_name": "CSOVolatileItemClaimedRewards", - "vtable_address": 30844824, + "vtable_address": 30844760, "methods": [ 14765456, 14829776, - 24747814, + 24747750, 14358880, 14890000, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087472, 14065232, 14502096, 9474464, 14182048, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055152, 14023536 @@ -268984,23 +268984,23 @@ }, { "type_name": "CSOVolatileItemOffer", - "vtable_address": 30844664, + "vtable_address": 30844600, "methods": [ 14765296, 14829616, - 24747814, + 24747750, 14358720, 14889936, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14087360, 14065248, 14501216, 9474464, 14181472, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055120, 14023520 @@ -269036,7 +269036,7 @@ }, { "type_name": "CSPerRoundStats_t", - "vtable_address": 30967912, + "vtable_address": 30967848, "methods": [ 15980800, 15977376, @@ -269053,7 +269053,7 @@ }, { "type_name": "CSPerRoundStats_t", - "vtable_address": 31022184, + "vtable_address": 31022120, "methods": [], "bases": [], "model": { @@ -269064,23 +269064,23 @@ }, { "type_name": "CSVCMsgList_GameEvents", - "vtable_address": 30922128, + "vtable_address": 30922064, "methods": [ 15616752, 15670960, - 24747814, + 24747750, 15288416, 15758640, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15125968, 15078864, 15484096, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15071168, 15043712 @@ -269116,23 +269116,23 @@ }, { "type_name": "CSVCMsgList_GameEvents_event_t", - "vtable_address": 30921968, + "vtable_address": 30921904, "methods": [ 15684704, 15685184, - 24747814, + 24747750, 15288240, 15758560, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15125840, 15076672, 15393808, 9474464, 15133120, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071136, 15043696 @@ -269168,23 +269168,23 @@ }, { "type_name": "CSVCMsg_BSPDecal", - "vtable_address": 30911568, + "vtable_address": 30911504, "methods": [ 15608112, 15677296, - 24747814, + 24747750, 15278016, 15717792, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057616, 15079504, 15361600, 9474464, 15185440, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069056, 15042176 @@ -269220,23 +269220,23 @@ }, { "type_name": "CSVCMsg_Broadcast_Command", - "vtable_address": 30918128, + "vtable_address": 30918064, "methods": [ 15613680, 15654928, - 24747814, + 24747750, 15284320, 15737936, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15079072, 15382272, 9474464, 15128336, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070368, 15042848 @@ -269272,23 +269272,23 @@ }, { "type_name": "CSVCMsg_ClassInfo", - "vtable_address": 30909968, + "vtable_address": 30909904, "methods": [ 15606992, 15669728, - 24747814, + 24747750, 15276480, 15751920, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15113472, 15079648, 15500928, 9474464, 15111408, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068736, 15042016 @@ -269324,23 +269324,23 @@ }, { "type_name": "CSVCMsg_ClassInfo_class_t", - "vtable_address": 30909808, + "vtable_address": 30909744, "methods": [ 15606848, 15651888, - 24747814, + 24747750, 15276304, 15732416, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15087840, 15076304, 15355760, 9474464, 15138848, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068704, 15042000 @@ -269376,23 +269376,23 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables", - "vtable_address": 30915888, + "vtable_address": 30915824, "methods": [ 15611648, 15654128, - 24747814, + 24747750, 15282160, 15736784, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088992, 15079200, 15375584, 9474464, 15134704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069920, 15042608 @@ -269428,23 +269428,23 @@ }, { "type_name": "CSVCMsg_CmdKeyValues", - "vtable_address": 30915088, + "vtable_address": 30915024, "methods": [ 15611056, 15653968, - 24747814, + 24747750, 15281360, 15736400, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15079248, 15373488, 9474464, 15136672, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069760, 15042528 @@ -269480,23 +269480,23 @@ }, { "type_name": "CSVCMsg_CreateStringTable", - "vtable_address": 30913968, + "vtable_address": 30913904, "methods": [ 15610208, 15662720, - 24747814, + 24747750, 15280400, 15735328, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088544, 15079360, 15368656, 9474464, 15228160, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069536, 15042416 @@ -269532,23 +269532,23 @@ }, { "type_name": "CSVCMsg_CrosshairAngle", - "vtable_address": 30911408, + "vtable_address": 30911344, "methods": [ 15708320, 15709568, - 24747814, + 24747750, 15277856, 15718112, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057536, 15079520, 15361184, 9474464, 15080752, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069024, 15042160 @@ -269584,23 +269584,23 @@ }, { "type_name": "CSVCMsg_FixAngle", - "vtable_address": 30911248, + "vtable_address": 30911184, "methods": [ 15708736, 15709152, - 24747814, + 24747750, 15277728, 15718032, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057440, 15079536, 15360576, 9474464, 15109392, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068992, 15042144 @@ -269636,23 +269636,23 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer", - "vtable_address": 30916528, + "vtable_address": 30916464, "methods": [ 15612224, 15668000, - 24747814, + 24747750, 15282864, 15753600, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15114176, 15079184, 15507584, 9474464, 15101376, - 24746716, - 24746982, + 24746652, + 24746918, 15048800, 15070048, 15042672 @@ -269688,23 +269688,23 @@ }, { "type_name": "CSVCMsg_FullFrameSplit", - "vtable_address": 30914608, + "vtable_address": 30914544, "methods": [ 15610640, 15653648, - 24747814, + 24747750, 15280944, 15735792, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083904, 15079296, 15371760, 9474464, 15203488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069664, 15042480 @@ -269740,23 +269740,23 @@ }, { "type_name": "CSVCMsg_GameEvent", - "vtable_address": 30921808, + "vtable_address": 30921744, "methods": [ 15616576, 15666176, - 24747814, + 24747750, 15288080, 15758080, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15125408, 15076656, 15483440, 9474464, 15159712, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071104, 15043680 @@ -269792,23 +269792,23 @@ }, { "type_name": "CSVCMsg_GameEventList", - "vtable_address": 30913008, + "vtable_address": 30912944, "methods": [ 15609488, 15670080, - 24747814, + 24747750, 15279456, 15753072, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15117040, 15079408, 15503616, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15069344, 15042320 @@ -269844,23 +269844,23 @@ }, { "type_name": "CSVCMsg_GameEventList_descriptor_t", - "vtable_address": 30912848, + "vtable_address": 30912784, "methods": [ 15609312, 15665984, - 24747814, + 24747750, 15279280, 15752688, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15116752, 15076400, 15502992, 9474464, 15160128, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069312, 15042304 @@ -269896,23 +269896,23 @@ }, { "type_name": "CSVCMsg_GameEventList_key_t", - "vtable_address": 30912688, + "vtable_address": 30912624, "methods": [ 15609168, 15652848, - 24747814, + 24747750, 15279088, 15734224, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088448, 15076384, 15365664, 9474464, 15139552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069280, 15042288 @@ -269948,23 +269948,23 @@ }, { "type_name": "CSVCMsg_GameEvent_key_t", - "vtable_address": 30921648, + "vtable_address": 30921584, "methods": [ 15616432, 15655888, - 24747814, + 24747750, 15287888, 15740144, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15090128, 15076640, 15393024, 9474464, 15211424, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071072, 15043664 @@ -270000,23 +270000,23 @@ }, { "type_name": "CSVCMsg_GameSessionConfiguration", - "vtable_address": 30923088, + "vtable_address": 30923024, "methods": [ 15617760, 15667776, - 24747814, + 24747750, 15289344, 15741200, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15091264, 15076288, 15398400, 9474464, 15235920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071360, 15043808 @@ -270052,23 +270052,23 @@ }, { "type_name": "CSVCMsg_GetCvarValue", - "vtable_address": 30911888, + "vtable_address": 30911824, "methods": [ 15608400, 15652368, - 24747814, + 24747750, 15278304, 15733232, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088064, 15079472, 15363008, 9474464, 15139200, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069120, 15042208 @@ -270104,23 +270104,23 @@ }, { "type_name": "CSVCMsg_HLTVStatus", - "vtable_address": 30914768, + "vtable_address": 30914704, "methods": [ 15610784, 15653808, - 24747814, + 24747750, 15281072, 15736096, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088848, 15079280, 15372384, 9474464, 15186816, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069696, 15042496 @@ -270156,14 +270156,14 @@ }, { "type_name": "CSVCMsg_HLTVStatus_t", - "vtable_address": 31542872, + "vtable_address": 31542808, "methods": [ - 20632016, - 20632080, - 20621328, - 20621344, - 20621360, - 20632208 + 20631888, + 20631952, + 20621200, + 20621216, + 20621232, + 20632080 ], "bases": [ { @@ -270228,23 +270228,23 @@ }, { "type_name": "CSVCMsg_HLTVStatus_t", - "vtable_address": 31542936, + "vtable_address": 31542872, "methods": [ - 20632048, - 20632144, - 24747814, + 20631920, + 20632016, + 24747750, 15281072, 15736096, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088848, 15079280, 15372384, 9474464, 15186816, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069696, 15042496 @@ -270312,23 +270312,23 @@ }, { "type_name": "CSVCMsg_HltvFixupOperatorStatus", - "vtable_address": 30918448, + "vtable_address": 30918384, "methods": [ 15614048, 15655088, - 24747814, + 24747750, 15284608, 15738384, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089360, 15079040, 15383568, 9474464, 15140256, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070432, 15042880 @@ -270364,23 +270364,23 @@ }, { "type_name": "CSVCMsg_HltvReplay", - "vtable_address": 30917808, + "vtable_address": 30917744, "methods": [ 15613424, 15641840, - 24747814, + 24747750, 15284000, 15717520, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050288, 15079104, 15380816, 9474464, 15215136, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070304, 15042816 @@ -270416,23 +270416,23 @@ }, { "type_name": "CSVCMsg_Menu", - "vtable_address": 30912048, + "vtable_address": 30911984, "methods": [ 15608544, 15652528, - 24747814, + 24747750, 15278448, 15733504, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083264, 15079456, 15363584, 9474464, 15170560, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069152, 15042224 @@ -270468,23 +270468,23 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted", - "vtable_address": 30918928, + "vtable_address": 30918864, "methods": [ 15614496, 15642096, - 24747814, + 24747750, 15285072, 15717664, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15053760, 15079008, 15384784, 9474464, 15148448, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070528, 15042928 @@ -270520,23 +270520,23 @@ }, { "type_name": "CSVCMsg_PacketEntities", - "vtable_address": 30913648, + "vtable_address": 30913584, "methods": [ 15691616, 15692240, - 24747814, + 24747750, 15280096, 15771152, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15117552, 15079392, 15504080, 9474464, 15252128, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069472, 15042384 @@ -270572,23 +270572,23 @@ }, { "type_name": "CSVCMsg_PacketEntities_alternate_baseline_t", - "vtable_address": 30913168, + "vtable_address": 30913104, "methods": [ 15609648, 15640816, - 24747814, + 24747750, 15279584, 15716992, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049936, 15076416, 15366240, 9474464, 15147744, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069376, 15042336 @@ -270624,23 +270624,23 @@ }, { "type_name": "CSVCMsg_PacketEntities_non_transmitted_entities_t", - "vtable_address": 30913328, + "vtable_address": 30913264, "methods": [ 15609776, 15653008, - 24747814, + 24747750, 15279728, 15734496, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083488, 15076432, 15366816, 9474464, 15170944, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069408, 15042352 @@ -270676,23 +270676,23 @@ }, { "type_name": "CSVCMsg_PacketEntities_outofpvs_entity_updates_t", - "vtable_address": 30913488, + "vtable_address": 30913424, "methods": [ 15609920, 15653168, - 24747814, + 24747750, 15279872, 15734768, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083584, 15076448, 15367392, 9474464, 15171328, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069440, 15042368 @@ -270728,23 +270728,23 @@ }, { "type_name": "CSVCMsg_PacketReliable", - "vtable_address": 30914448, + "vtable_address": 30914384, "methods": [ 15610512, 15640944, - 24747814, + 24747750, 15280816, 15717056, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050016, 15079312, 15371040, 9474464, 15163104, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069632, 15042464 @@ -270780,23 +270780,23 @@ }, { "type_name": "CSVCMsg_PeerList", - "vtable_address": 30915728, + "vtable_address": 30915664, "methods": [ 15611488, 15670256, - 24747814, + 24747750, 15282016, 15757344, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15119008, 15079216, 15506064, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15069888, 15042592 @@ -270832,23 +270832,23 @@ }, { "type_name": "CSVCMsg_Prefetch", - "vtable_address": 30910928, + "vtable_address": 30910864, "methods": [ 15607856, 15640432, - 24747814, + 24747750, 15277408, 15716816, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049664, 15079568, 15359296, 9474464, 15147040, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068928, 15042112 @@ -270884,23 +270884,23 @@ }, { "type_name": "CSVCMsg_Print", - "vtable_address": 30910448, + "vtable_address": 30910384, "methods": [ 15607424, 15652208, - 24747814, + 24747750, 15276928, 15732976, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15079600, 15357504, 9474464, 15128160, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068832, 15042064 @@ -270936,23 +270936,23 @@ }, { "type_name": "CSVCMsg_RconServerDetails", - "vtable_address": 30915248, + "vtable_address": 30915184, "methods": [ 15611200, 15662880, - 24747814, + 24747750, 15281520, 15736656, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 15079232, 15373888, 9474464, 15175888, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069792, 15042544 @@ -270988,23 +270988,23 @@ }, { "type_name": "CSVCMsg_SendTable", - "vtable_address": 30912528, + "vtable_address": 30912464, "methods": [ 15608992, 15665792, - 24747814, + 24747750, 15278944, 15764192, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15151072, 15079424, 15502272, 9474464, 15163920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069248, 15042272 @@ -271040,23 +271040,23 @@ }, { "type_name": "CSVCMsg_SendTable_sendprop_t", - "vtable_address": 30912368, + "vtable_address": 30912304, "methods": [ 15608832, 15662560, - 24747814, + 24747750, 15278752, 15734064, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088160, 15076368, 15364848, 9474464, 15219584, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069216, 15042256 @@ -271092,23 +271092,23 @@ }, { "type_name": "CSVCMsg_ServerInfo", - "vtable_address": 30909648, + "vtable_address": 30909584, "methods": [ 15699712, 15700224, - 24747814, + 24747750, 15276160, 15741584, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15091840, 15079664, 15354576, 9474464, 15245072, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068672, 15041984 @@ -271144,23 +271144,23 @@ }, { "type_name": "CSVCMsg_ServerSteamID", - "vtable_address": 30914928, + "vtable_address": 30914864, "methods": [ 15610928, 15641072, - 24747814, + 24747750, 15281200, 15717120, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050112, 15079264, 15373008, 9474464, 15130240, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069728, 15042512 @@ -271196,23 +271196,23 @@ }, { "type_name": "CSVCMsg_SetPause", - "vtable_address": 30910128, + "vtable_address": 30910064, "methods": [ 15607152, 15640176, - 24747814, + 24747750, 15276624, 15716640, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049040, 15079632, 15356336, 9474464, 15109280, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068768, 15042032 @@ -271248,23 +271248,23 @@ }, { "type_name": "CSVCMsg_SetView", - "vtable_address": 30911088, + "vtable_address": 30911024, "methods": [ 15607984, 15640560, - 24747814, + 24747750, 15277568, 15716880, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049744, 15079552, 15360000, 9474464, 15147392, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068960, 15042128 @@ -271300,23 +271300,23 @@ }, { "type_name": "CSVCMsg_Sounds", - "vtable_address": 30910768, + "vtable_address": 30910704, "methods": [ 15607696, 15669904, - 24747814, + 24747750, 15277280, 15762848, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065760, 15079584, 15501600, 9474464, 15111584, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068896, 15042096 @@ -271352,23 +271352,23 @@ }, { "type_name": "CSVCMsg_Sounds_sounddata_t", - "vtable_address": 30910608, + "vtable_address": 30910544, "methods": [ 15607568, 15640304, - 24747814, + 24747750, 15277104, 15716688, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15053040, 15076320, 15357904, 9474464, 15240864, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068864, 15042080 @@ -271404,23 +271404,23 @@ }, { "type_name": "CSVCMsg_SplitScreen", - "vtable_address": 30911728, + "vtable_address": 30911664, "methods": [ 15608272, 15640688, - 24747814, + 24747750, 15278160, 15716928, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049824, 15079488, 15362272, 9474464, 15166016, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069088, 15042192 @@ -271456,23 +271456,23 @@ }, { "type_name": "CSVCMsg_StopSound", - "vtable_address": 30916688, + "vtable_address": 30916624, "methods": [ 15612416, 15641456, - 24747814, + 24747750, 15283008, 15717360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15079168, 15377472, 9474464, 15105472, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070080, 15042688 @@ -271508,23 +271508,23 @@ }, { "type_name": "CSVCMsg_TempEntities", - "vtable_address": 30913808, + "vtable_address": 30913744, "methods": [ 15610064, 15653328, - 24747814, + 24747750, 15280240, 15735040, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083680, 15079376, 15367968, 9474464, 15181632, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069504, 15042400 @@ -271560,23 +271560,23 @@ }, { "type_name": "CSVCMsg_UpdateStringTable", - "vtable_address": 30914128, + "vtable_address": 30914064, "methods": [ 15610368, 15653488, - 24747814, + 24747750, 15280544, 15735504, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083776, 15079344, 15369568, 9474464, 15192384, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069568, 15042432 @@ -271612,23 +271612,23 @@ }, { "type_name": "CSVCMsg_UserCommands", - "vtable_address": 30918768, + "vtable_address": 30918704, "methods": [ 15614336, 15670608, - 24747814, + 24747750, 15284928, 15756912, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15122992, 15079024, 15510112, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15070496, 15042912 @@ -271664,14 +271664,14 @@ }, { "type_name": "CSVCMsg_UserCommands_t", - "vtable_address": 31698592, + "vtable_address": 31698528, "methods": [ - 21374320, - 21374384, - 21368832, - 21368848, - 21368864, - 21374512 + 21374192, + 21374256, + 21368704, + 21368720, + 21368736, + 21374384 ], "bases": [ { @@ -271736,23 +271736,23 @@ }, { "type_name": "CSVCMsg_UserCommands_t", - "vtable_address": 31698656, + "vtable_address": 31698592, "methods": [ - 21374352, - 21374448, - 24747814, + 21374224, + 21374320, + 24747750, 15284928, 15756912, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15122992, 15079024, 15510112, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15070496, 15042912 @@ -271820,23 +271820,23 @@ }, { "type_name": "CSVCMsg_UserMessage", - "vtable_address": 30912208, + "vtable_address": 30912144, "methods": [ 15608688, 15652688, - 24747814, + 24747750, 15278592, 15733776, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15083360, 15079440, 15364160, 9474464, 15191840, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069184, 15042240 @@ -271872,23 +271872,23 @@ }, { "type_name": "CSVCMsg_VoiceData", - "vtable_address": 30914288, + "vtable_address": 30914224, "methods": [ 15679232, 15695008, - 24747814, + 24747750, 15280672, 15772448, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15102400, 15079328, 15370240, 9474464, 15200064, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069600, 15042448 @@ -271924,23 +271924,23 @@ }, { "type_name": "CSVCMsg_VoiceInit", - "vtable_address": 30910288, + "vtable_address": 30910224, "methods": [ 15607280, 15652048, - 24747814, + 24747750, 15276768, 15732688, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15087936, 15079616, 15356816, 9474464, 15173952, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068800, 15042048 @@ -271976,88 +271976,88 @@ }, { "type_name": "CSave", - "vtable_address": 31364776, + "vtable_address": 31364712, "methods": [ - 18880944, - 18882080, - 18811424, + 18880816, + 18881952, + 18811296, + 18811344, + 18021680, + 19183184, + 18930288, + 18819680, + 18939184, + 18943232, + 18945008, + 18940336, + 18942656, + 18943808, + 18942080, + 18941504, + 18939760, + 18944400, + 18940912, + 18926320, + 18934432, + 18926704, + 18938608, + 18938608, + 18938048, + 19137152, + 18926912, + 18937536, + 18933824, + 18937024, + 18934128, + 18936496, + 18933520, + 18936496, + 18935968, + 18934912, + 18929728, + 18931360, + 18925856, + 18930000, + 18811408, + 18930928, + 18945584, + 18946432, + 18935968, + 18935440, + 18935440, + 18934912, + 18811456, 18811472, - 18021808, - 19183312, - 18930416, - 18819808, - 18939312, - 18943360, - 18945136, - 18940464, - 18942784, - 18943936, - 18942208, - 18941632, - 18939888, - 18944528, - 18941040, - 18926448, - 18934560, - 18926832, - 18938736, - 18938736, - 18938176, - 19137280, - 18927040, - 18937664, - 18933952, - 18937152, - 18934256, - 18936624, - 18933648, - 18936624, - 18936096, - 18935040, - 18929856, - 18931488, - 18925984, - 18930128, + 19080256, + 19172864, + 18811456, + 18408992, + 18408960, + 18409024, + 18811264, + 18819760, + 18889200, + 18902176, + 19030576, + 18811552, + 18811488, + 18811504, + 19081792, + 18840080, + 18811280, + 18811280, + 18819424, + 18811520, 18811536, - 18931056, - 18945712, - 18946560, - 18936096, - 18935568, - 18935568, - 18935040, - 18811584, - 18811600, - 19080384, - 19172992, - 18811584, - 18409120, - 18409088, - 18409152, - 18811392, - 18819888, - 18889328, - 18902304, - 19030704, - 18811680, - 18811616, - 18811632, - 19081920, - 18840208, - 18811408, - 18811408, - 18819552, - 18811648, - 18811664, - 18819584, - 18832576, + 18819456, + 18832448, 12210304, - 18829376, - 18927664, - 18819632, + 18829248, + 18927536, + 18819504, + 18819552, + 18819680, 18819680, - 18819808, - 18819808, 15858000 ], "bases": [ @@ -272112,88 +272112,88 @@ }, { "type_name": "CSave", - "vtable_address": 31365440, + "vtable_address": 31365376, "methods": [ - 18881424, - 18882576, - 18847264, - 18846272, - 18021792, - 19183552, - 18929584, - 18839984, - 18939872, - 18943920, - 18945696, - 18941024, - 18943344, - 18944512, - 18942768, - 18942192, - 18940448, - 18945120, - 18941616, - 18926640, - 18935024, - 18927248, - 18939296, - 18939280, - 18938720, - 19138112, - 18927456, - 18938160, - 18928672, - 18937648, - 18928976, - 18937136, - 18929280, - 18937120, - 18936608, - 18935552, - 18928112, - 18932640, - 18926432, - 18928384, - 18863648, - 18931472, - 18946544, - 18947392, - 18936592, - 18936080, - 18936064, - 18935536, - 18838576, - 18838592, - 19081424, - 19174080, - 18838608, - 18409104, - 18409072, - 18409136, - 18839872, - 19030736, - 18839552, - 18839568, - 18839584, - 19082096, - 18840080, - 18839520, - 18839536, - 18840672, - 18839920, - 18839936, - 18847216, - 18842688, - 18889456, - 18893056, - 18848496, + 18881296, + 18882448, + 18847136, + 18846144, + 18021664, + 19183424, + 18929456, + 18839856, + 18939744, + 18943792, + 18945568, + 18940896, + 18943216, + 18944384, + 18942640, + 18942064, + 18940320, + 18944992, + 18941488, + 18926512, + 18934896, + 18927120, + 18939168, + 18939152, + 18938592, + 19137984, + 18927328, + 18938032, + 18928544, + 18937520, + 18928848, + 18937008, + 18929152, + 18936992, + 18936480, + 18935424, + 18927984, + 18932512, + 18926304, + 18928256, + 18863520, + 18931344, + 18946416, + 18947264, + 18936464, + 18935952, + 18935936, + 18935408, + 18838448, + 18838464, + 19081296, + 19173952, + 18838480, + 18408976, + 18408944, + 18409008, + 18839744, + 19030608, + 18839424, + 18839440, + 18839456, + 19081968, + 18839952, + 18839392, + 18839408, + 18840544, + 18839792, + 18839808, + 18847088, + 18842560, + 18889328, + 18892928, + 18848368, 12210288, - 18842640, - 18927888, - 18842784, - 18847312, - 18840000, - 18840016, + 18842512, + 18927760, + 18842656, + 18847184, + 18839872, + 18839888, 15857984 ], "bases": [ @@ -272248,20 +272248,20 @@ }, { "type_name": "CSaveRestoreBlockSet", - "vtable_address": 31357384, + "vtable_address": 31357320, "methods": [ + 18387664, + 18387696, + 18422976, + 18437424, 18387792, - 18387824, - 18423104, - 18437552, - 18387920, - 18388016, - 18439344, - 18424448, - 18388096, - 18407648, - 18407504, - 18438720 + 18387888, + 18439216, + 18424320, + 18387968, + 18407520, + 18407376, + 18438592 ], "bases": [ { @@ -272294,17 +272294,17 @@ }, { "type_name": "CSaveRestoreFileData", - "vtable_address": 31356688, + "vtable_address": 31356624, "methods": [ - 18763296, - 18716144, - 18716432, - 18676080, - 18387504, - 18675104, - 18716640, - 18676368, - 18675552 + 18763168, + 18716016, + 18716304, + 18675952, + 18387376, + 18674976, + 18716512, + 18676240, + 18675424 ], "bases": [ { @@ -272326,26 +272326,26 @@ }, { "type_name": "CSaveRestoreFileSystemPassthrough", - "vtable_address": 31364408, + "vtable_address": 31364344, "methods": [ - 18811120, - 18811152, - 18811168, - 18811184, - 18811216, - 18811232, - 18811264, - 18811296, + 18810992, 18811024, - 18811088, + 18811040, 18811056, - 18843840, - 18851520, - 19027984, - 18824576, - 18828016, - 18819408, - 18819376 + 18811088, + 18811104, + 18811136, + 18811168, + 18810896, + 18810960, + 18810928, + 18843712, + 18851392, + 19027856, + 18824448, + 18827888, + 18819280, + 18819248 ], "bases": [ { @@ -272367,10 +272367,10 @@ }, { "type_name": "CSaveRestoreShared", - "vtable_address": 31366104, + "vtable_address": 31366040, "methods": [ - 18880096, - 18880736 + 18879968, + 18880608 ], "bases": [], "model": { @@ -272381,32 +272381,32 @@ }, { "type_name": "CSceneEntity", - "vtable_address": 31764840, + "vtable_address": 31764776, "methods": [ - 22105952, - 22148928, - 22150256, + 22105824, + 22148800, + 22150128, 12023536, - 26419168, - 21935632, - 20141632, - 21976272, - 26419632, - 26419200, - 26419200, - 22110640, - 22039072, - 20141328, - 19835392, - 19835328, + 26419104, + 21935504, + 20141504, + 21976144, + 26419568, + 26419136, + 26419136, + 22110512, + 22038944, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21933344, - 21978992, - 21975136, + 21933216, + 21978864, + 21975008, 11747408, - 22058000, - 19829152, + 22057872, + 19829024, 9640064, 9635872, 9665808, @@ -272418,21 +272418,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21926912, - 21933536, - 21930656, + 26427360, + 21926784, + 21933408, + 21930528, 9635312, - 21983360, + 21983232, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -272456,83 +272456,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21974032, - 21955760, - 19834496, + 21973904, + 21955632, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -272540,16 +272540,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21926896, - 21311696, + 21926768, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -272570,7 +272570,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -272583,28 +272583,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -272615,7 +272615,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -272626,60 +272626,60 @@ 11742448, 9636784, 9636800, - 19857680, - 22074400, - 21959456, - 21978512, - 22252544, - 22070624, - 22066320, - 22076816, - 21940800, - 21961200, - 22111072, - 21961696, - 22169536, - 21974704, - 22059072, - 22072064, - 22072272, - 22055984, - 22087632, - 21931904, - 21931968, - 21931904, - 21931968, - 21931904, - 21931984, - 22156240, - 21932944, - 21931936, - 21931984, - 21931904, - 21931984, - 21935408, - 21935312, - 21932016, - 21932208, - 21932352, - 21932544, - 21934864, - 22072960, - 21934816, - 22191408, - 21931984, - 21933040, - 21933024, - 22057616, + 19857552, + 22074272, + 21959328, + 21978384, + 22252416, + 22070496, + 22066192, + 22076688, + 21940672, + 21961072, + 22110944, + 21961568, + 22169408, + 21974576, + 22058944, + 22071936, + 22072144, + 22055856, + 22087504, + 21931776, + 21931840, + 21931776, + 21931840, + 21931776, + 21931856, + 22156112, + 21932816, + 21931808, + 21931856, + 21931776, + 21931856, 21935280, - 21949456, - 21948160, - 21926880, - 22247168, - 21933280, - 22191072, - 22190560, - 21969648 + 21935184, + 21931888, + 21932080, + 21932224, + 21932416, + 21934736, + 22072832, + 21934688, + 22191280, + 21931856, + 21932912, + 21932896, + 22057488, + 21935152, + 21949328, + 21948032, + 21926752, + 22247040, + 21933152, + 22190944, + 22190432, + 21969520 ], "bases": [ { @@ -272733,11 +272733,11 @@ }, { "type_name": "CSceneEntity", - "vtable_address": 31767232, + "vtable_address": 31767168, "methods": [ - 22076800, - 21960512, - 21974288 + 22076672, + 21960384, + 21974160 ], "bases": [ { @@ -272791,7 +272791,7 @@ }, { "type_name": "CSceneEntity", - "vtable_address": 33192320, + "vtable_address": 33192256, "methods": [], "bases": [], "model": { @@ -272802,32 +272802,32 @@ }, { "type_name": "CSceneEntityAlias_logic_choreographed_scene", - "vtable_address": 31757984, + "vtable_address": 31757920, "methods": [ - 22105952, - 22150304, - 22150336, + 22105824, + 22150176, + 22150208, 12023536, - 26419168, - 21935632, - 20141632, - 21976272, - 26419632, - 26419200, - 26419200, - 22110640, - 22039072, - 20141328, - 19835392, - 19835328, + 26419104, + 21935504, + 20141504, + 21976144, + 26419568, + 26419136, + 26419136, + 22110512, + 22038944, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 21933344, - 21978992, - 21975136, + 21933216, + 21978864, + 21975008, 11747408, - 22058000, - 19829152, + 22057872, + 19829024, 9640064, 9635872, 9665808, @@ -272839,21 +272839,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21927200, - 21933536, - 21930608, + 26427360, + 21927072, + 21933408, + 21930480, 9635312, - 21983360, + 21983232, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -272877,83 +272877,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21974032, - 21955760, - 19834496, + 21973904, + 21955632, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -272961,16 +272961,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 21926896, - 21311696, + 21926768, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -272991,7 +272991,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -273004,28 +273004,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -273036,7 +273036,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -273047,60 +273047,60 @@ 11742448, 9636784, 9636800, - 19857680, - 22074400, - 21959456, - 21978512, - 22252544, - 22070624, - 22066320, - 22076816, - 21940800, - 21961200, - 22111072, - 21961696, - 22169536, - 21974704, - 22059072, - 22072064, - 22072272, - 22055984, - 22087632, - 21931904, - 21931968, - 21931904, - 21931968, - 21931904, - 21931984, - 22156240, - 21932944, - 21931936, - 21931984, - 21931904, - 21931984, - 21935408, - 21935312, - 21932016, - 21932208, - 21932352, - 21932544, - 21934864, - 22072960, - 21934816, - 22191408, - 21931984, - 21933040, - 21933024, - 22057616, + 19857552, + 22074272, + 21959328, + 21978384, + 22252416, + 22070496, + 22066192, + 22076688, + 21940672, + 21961072, + 22110944, + 21961568, + 22169408, + 21974576, + 22058944, + 22071936, + 22072144, + 22055856, + 22087504, + 21931776, + 21931840, + 21931776, + 21931840, + 21931776, + 21931856, + 22156112, + 21932816, + 21931808, + 21931856, + 21931776, + 21931856, 21935280, - 21949456, - 21948160, - 21926880, - 22247168, - 21933280, - 22191072, - 22190560, - 21969648 + 21935184, + 21931888, + 21932080, + 21932224, + 21932416, + 21934736, + 22072832, + 21934688, + 22191280, + 21931856, + 21932912, + 21932896, + 22057488, + 21935152, + 21949328, + 21948032, + 21926752, + 22247040, + 21933152, + 22190944, + 22190432, + 21969520 ], "bases": [ { @@ -273165,11 +273165,11 @@ }, { "type_name": "CSceneEntityAlias_logic_choreographed_scene", - "vtable_address": 31760376, + "vtable_address": 31760312, "methods": [ - 22076800, - 21960512, - 21974288 + 22076672, + 21960384, + 21974160 ], "bases": [ { @@ -273234,9 +273234,9 @@ }, { "type_name": "CSceneFindMarkFilter", - "vtable_address": 31757016, + "vtable_address": 31756952, "methods": [ - 21983616 + 21983488 ], "bases": [ { @@ -273258,32 +273258,32 @@ }, { "type_name": "CSceneListManager", - "vtable_address": 31762872, + "vtable_address": 31762808, "methods": [ 13506768, - 21944752, - 21944192, + 21944624, + 21944064, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 22112864, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 22112736, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -273295,21 +273295,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21927184, - 21933520, - 21930640, + 26427360, + 21927056, + 21933392, + 21930512, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -273333,83 +273333,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -273417,16 +273417,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -273447,7 +273447,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -273460,28 +273460,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -273492,7 +273492,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -273503,7 +273503,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -273558,13 +273558,13 @@ }, { "type_name": "CSceneManager", - "vtable_address": 31757200, + "vtable_address": 31757136, "methods": [ 9634368, 9634384, 9634400, - 22100544, - 21947888, + 22100416, + 21947760, 9634448, 9634464, 9634480, @@ -273590,7 +273590,7 @@ 9634800, 9634816, 9634832, - 21957632, + 21957504, 9634864, 9634880, 9634896, @@ -273616,28 +273616,28 @@ 9635216, 9635232, 9635248, - 21927152, + 21927024, 9635280, - 21927136, - 21945232, - 21946000, - 21927120, - 22110112, - 21961344, - 21962944, - 22055248, - 22073136, - 21965152, - 21959120, - 21965632, - 21961776, - 21962560, - 21967552, - 21967968, - 21969216, - 21970272, - 22154912, - 22152784 + 21927008, + 21945104, + 21945872, + 21926992, + 22109984, + 21961216, + 21962816, + 22055120, + 22073008, + 21965024, + 21958992, + 21965504, + 21961648, + 21962432, + 21967424, + 21967840, + 21969088, + 21970144, + 22154784, + 22152656 ], "bases": [ { @@ -273680,24 +273680,24 @@ }, { "type_name": "CSceneManager", - "vtable_address": 31757840, - "methods": [ - 22110304, - 21961520, - 21963456, - 22055968, - 22073696, - 21965616, - 21959440, - 21966096, - 21962128, - 21962912, - 21967952, - 21968336, - 21969632, - 21970624, - 22155648, - 22153200 + "vtable_address": 31757776, + "methods": [ + 22110176, + 21961392, + 21963328, + 22055840, + 22073568, + 21965488, + 21959312, + 21965968, + 21962000, + 21962784, + 21967824, + 21968208, + 21969504, + 21970496, + 22155520, + 22153072 ], "bases": [ { @@ -273740,7 +273740,7 @@ }, { "type_name": "CScenePrecacheSystem", - "vtable_address": 31307264, + "vtable_address": 31307200, "methods": [ 9634368, 9634384, @@ -273759,7 +273759,7 @@ 9634592, 9634608, 9634624, - 18172208, + 18172080, 9634656, 9634672, 9634688, @@ -273798,12 +273798,12 @@ 9635216, 9635232, 9635248, - 18002784, + 18002656, 9635280, - 18002768, - 18172224, - 18172336, - 18002752 + 18002640, + 18172096, + 18172208, + 18002624 ], "bases": [ { @@ -273836,22 +273836,22 @@ }, { "type_name": "CSchemaAttributeType_Default", - "vtable_address": 31885288, + "vtable_address": 31885224, "methods": [ + 22545904, + 22546896, + 22556192, + 22590288, 22546032, - 22547024, - 22556320, - 22590416, - 22546160, - 22549632, - 22679200, - 22591120, - 22545968, - 22546176, - 22546192, - 22545216, - 22681040, - 22547936 + 22549504, + 22679136, + 22590992, + 22545840, + 22546048, + 22546064, + 22545088, + 22680976, + 22547808 ], "bases": [ { @@ -273895,22 +273895,22 @@ }, { "type_name": "CSchemaAttributeType_Float", - "vtable_address": 31885160, + "vtable_address": 31885096, "methods": [ - 22546048, - 22547056, - 22546704, - 22683856, - 22682816, - 22549584, - 22678624, - 22675296, - 22546208, - 22546256, - 22545200, - 22545184, - 22681872, - 22545168 + 22545920, + 22546928, + 22546576, + 22683792, + 22682752, + 22549456, + 22678560, + 22675232, + 22546080, + 22546128, + 22545072, + 22545056, + 22681808, + 22545040 ], "bases": [ { @@ -273954,22 +273954,22 @@ }, { "type_name": "CSchemaAttributeType_String", - "vtable_address": 31884776, - "methods": [ - 22546096, - 22547072, - 22556432, - 22951408, - 22553360, - 22948608, - 22574096, - 22952400, - 22548000, - 22546288, - 22546336, - 22543952, - 22547968, - 22547984 + "vtable_address": 31884712, + "methods": [ + 22545968, + 22546944, + 22556304, + 22951344, + 22553232, + 22948544, + 22573968, + 22952336, + 22547872, + 22546160, + 22546208, + 22543824, + 22547840, + 22547856 ], "bases": [ { @@ -274024,22 +274024,22 @@ }, { "type_name": "CSchemaAttributeType_Uint32", - "vtable_address": 31885032, + "vtable_address": 31884968, "methods": [ + 22545936, + 22546912, + 22556192, + 22590288, + 22546032, + 22548016, + 22677984, + 22590992, + 22545840, + 22546048, 22546064, - 22547040, - 22556320, - 22590416, - 22546160, - 22548144, - 22678048, - 22591120, - 22545968, - 22546176, - 22546192, - 22545152, - 22681456, - 22545136 + 22545024, + 22681392, + 22545008 ], "bases": [ { @@ -274083,22 +274083,22 @@ }, { "type_name": "CSchemaAttributeType_Vector", - "vtable_address": 31884904, + "vtable_address": 31884840, "methods": [ - 22546080, - 22547088, - 22546816, - 22676416, - 22683280, - 22556048, - 22677648, - 22684960, - 22547520, - 22546976, - 22546272, - 22543952, - 22682304, - 22545120 + 22545952, + 22546960, + 22546688, + 22676352, + 22683216, + 22555920, + 22677584, + 22684896, + 22547392, + 22546848, + 22546144, + 22543824, + 22682240, + 22544992 ], "bases": [ { @@ -274142,9 +274142,9 @@ }, { "type_name": "CSchemaInstallCallback", - "vtable_address": 32060472, + "vtable_address": 32060408, "methods": [ - 28053200 + 28053136 ], "bases": [ { @@ -274166,7 +274166,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 31989256, + "vtable_address": 31989192, "methods": [], "bases": [], "model": { @@ -274177,7 +274177,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 31997952, + "vtable_address": 31997888, "methods": [], "bases": [], "model": { @@ -274188,7 +274188,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 32019384, + "vtable_address": 32019320, "methods": [], "bases": [], "model": { @@ -274199,7 +274199,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 32036024, + "vtable_address": 32035960, "methods": [], "bases": [], "model": { @@ -274210,7 +274210,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 32060504, + "vtable_address": 32060440, "methods": [], "bases": [], "model": { @@ -274221,7 +274221,7 @@ }, { "type_name": "CSchemaRegistration", - "vtable_address": 32066520, + "vtable_address": 32066456, "methods": [], "bases": [], "model": { @@ -274232,9 +274232,9 @@ }, { "type_name": "CSchemaRegistration_animlib", - "vtable_address": 32036040, + "vtable_address": 32035976, "methods": [ - 27201024 + 27200960 ], "bases": [ { @@ -274256,9 +274256,9 @@ }, { "type_name": "CSchemaRegistration_entity2", - "vtable_address": 32019400, + "vtable_address": 32019336, "methods": [ - 26658928 + 26658864 ], "bases": [ { @@ -274280,9 +274280,9 @@ }, { "type_name": "CSchemaRegistration_mathlib_extended", - "vtable_address": 31989272, + "vtable_address": 31989208, "methods": [ - 25357472 + 25357408 ], "bases": [ { @@ -274304,9 +274304,9 @@ }, { "type_name": "CSchemaRegistration_navlib", - "vtable_address": 32066536, + "vtable_address": 32066472, "methods": [ - 29045536 + 29045472 ], "bases": [ { @@ -274328,9 +274328,9 @@ }, { "type_name": "CSchemaRegistration_pulse_runtime_lib", - "vtable_address": 31997968, + "vtable_address": 31997904, "methods": [ - 25912576 + 25912512 ], "bases": [ { @@ -274352,7 +274352,7 @@ }, { "type_name": "CSchemaRegistration_server", - "vtable_address": 30128448, + "vtable_address": 30128384, "methods": [ 9630224 ], @@ -274376,9 +274376,9 @@ }, { "type_name": "CSchemaRegistration_tier2", - "vtable_address": 32060520, + "vtable_address": 32060456, "methods": [ - 28056096 + 28056032 ], "bases": [ { @@ -274400,7 +274400,7 @@ }, { "type_name": "CScrambleTeams", - "vtable_address": 30231296, + "vtable_address": 30231232, "methods": [ 10429120, 10472896, @@ -274468,11 +274468,11 @@ }, { "type_name": "CScriptComponent", - "vtable_address": 32018960, + "vtable_address": 32018896, "methods": [ - 26623120, - 26662288, - 26626144 + 26623056, + 26662224, + 26626080 ], "bases": [ { @@ -274526,7 +274526,7 @@ }, { "type_name": "CScriptComponent", - "vtable_address": 32020168, + "vtable_address": 32020104, "methods": [], "bases": [], "model": { @@ -274537,7 +274537,7 @@ }, { "type_name": "CScriptConsoleCommand", - "vtable_address": 30542856, + "vtable_address": 30542792, "methods": [ 12927296, 12872832, @@ -274563,32 +274563,32 @@ }, { "type_name": "CScriptItem", - "vtable_address": 31565000, + "vtable_address": 31564936, "methods": [ 13526704, - 20984208, - 20984240, - 18377552, - 18065872, - 21065456, - 18010864, - 21064656, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 20984080, + 20984112, + 18377424, + 18065744, + 21065328, + 18010736, + 21064528, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 9890752, 9635872, 9665808, @@ -274600,21 +274600,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903376, - 20910992, - 20906400, + 26427360, + 20903248, + 20910864, + 20906272, 9635312, 13440880, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -274626,95 +274626,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 20910432, + 19833968, + 20910304, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -274722,17 +274722,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -274752,7 +274752,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -274763,30 +274763,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -274797,7 +274797,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -274808,80 +274808,80 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9837472, - 20910544, - 20910848, - 20903360, - 20941888, - 20918288, - 20941808, - 20910368 + 20910416, + 20910720, + 20903232, + 20941760, + 20918160, + 20941680, + 20910240 ], "bases": [ { @@ -274968,7 +274968,7 @@ }, { "type_name": "CScriptItem", - "vtable_address": 31567552, + "vtable_address": 31567488, "methods": [ 9837440, 9837456 @@ -275058,33 +275058,33 @@ }, { "type_name": "CScriptNavBlocker", - "vtable_address": 31897832, + "vtable_address": 31897768, "methods": [ 13522144, + 23032304, 23032368, - 23032432, - 18377504, - 26419168, - 23293728, - 18010864, - 23293152, - 26419632, - 26419200, - 26419200, - 23293632, - 23292208, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 23291216, + 18377376, + 26419104, + 23293664, + 18010736, + 23293088, + 26419568, + 26419136, + 26419136, + 23293568, + 23292144, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 23291152, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -275095,21 +275095,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 23028080, - 23032560, - 23031056, + 26427360, + 23028016, + 23032496, + 23030992, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -275133,83 +275133,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -275217,16 +275217,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -275247,7 +275247,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -275260,28 +275260,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -275292,7 +275292,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -275303,36 +275303,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 23033440 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 23033376 ], "bases": [ { @@ -275408,11 +275408,11 @@ }, { "type_name": "CScriptNavBlocker", - "vtable_address": 31900032, + "vtable_address": 31899968, "methods": [ - 23032400, - 23032496, - 23043856 + 23032336, + 23032432, + 23043792 ], "bases": [ { @@ -275488,7 +275488,7 @@ }, { "type_name": "CScriptSpawnGroupEntityFilterProxy", - "vtable_address": 30543032, + "vtable_address": 30542968, "methods": [ 12860448, 12863696, @@ -275514,32 +275514,32 @@ }, { "type_name": "CScriptTriggerHurt", - "vtable_address": 31825696, + "vtable_address": 31825632, "methods": [ 11931776, - 22402160, - 22402704, - 18377504, - 26419168, - 20153552, - 18010864, - 22463088, - 26419632, - 26419200, - 26419200, + 22402032, + 22402576, + 18377376, + 26419104, + 20153424, + 18010736, + 22462960, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -275551,21 +275551,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263248, - 22274752, - 22266848, + 26427360, + 22263120, + 22274624, + 22266720, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -275589,83 +275589,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -275673,16 +275673,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -275703,7 +275703,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -275716,28 +275716,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -275748,7 +275748,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -275759,45 +275759,45 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22279728, - 22498448, + 22279600, + 22498320, 11742352, 11749904, 10058464, 11751552, 13865536, - 22497616 + 22497488 ], "bases": [ { @@ -275874,32 +275874,32 @@ }, { "type_name": "CScriptTriggerMultiple", - "vtable_address": 31827968, + "vtable_address": 31827904, "methods": [ 11931776, - 22401488, - 22401824, - 18377504, - 26419168, - 20153552, - 18010864, - 22303360, - 26419632, - 26419200, - 26419200, + 22401360, + 22401696, + 18377376, + 26419104, + 20153424, + 18010736, + 22303232, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -275911,21 +275911,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263264, - 22274768, - 22266864, + 26427360, + 22263136, + 22274640, + 22266736, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -275949,83 +275949,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -276033,16 +276033,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -276063,7 +276063,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -276076,28 +276076,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -276108,7 +276108,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -276119,36 +276119,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22271968, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22271840, 11742352, 10058432, 10058448, @@ -276232,32 +276232,32 @@ }, { "type_name": "CScriptTriggerOnce", - "vtable_address": 31832480, + "vtable_address": 31832416, "methods": [ 11931776, - 22401712, - 22402048, - 18377504, - 26419168, - 20153552, - 18010864, - 22304160, - 26419632, - 26419200, - 26419200, + 22401584, + 22401920, + 18377376, + 26419104, + 20153424, + 18010736, + 22304032, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -276269,21 +276269,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263296, - 22274768, - 22266896, + 26427360, + 22263168, + 22274640, + 22266768, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -276307,83 +276307,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -276391,16 +276391,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -276421,7 +276421,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -276434,28 +276434,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -276466,7 +276466,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -276477,36 +276477,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22271968, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22271840, 11742352, 10058432, 10058448, @@ -276601,32 +276601,32 @@ }, { "type_name": "CScriptTriggerPush", - "vtable_address": 31841440, + "vtable_address": 31841376, "methods": [ 11931776, - 22399488, - 22399504, - 18377504, - 26419168, - 20153552, - 18010864, - 22469248, - 26419632, - 26419200, - 26419200, + 22399360, + 22399376, + 18377376, + 26419104, + 20153424, + 18010736, + 22469120, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 22279312, + 22279184, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -276638,21 +276638,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263440, - 22274736, - 22266944, + 26427360, + 22263312, + 22274608, + 22266816, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -276676,100 +276676,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, - 22419712, + 22419584, 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -276790,7 +276790,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -276803,28 +276803,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -276835,7 +276835,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -276846,38 +276846,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22311184, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22311056, 11742352, - 22419120, + 22418992, 10058448, 11742352, 11749904, @@ -276959,7 +276959,7 @@ }, { "type_name": "CScriptUniformRandomStream", - "vtable_address": 30542808, + "vtable_address": 30542744, "methods": [ 12865664, 12888944, @@ -276975,33 +276975,33 @@ }, { "type_name": "CScriptedSequence", - "vtable_address": 31767920, + "vtable_address": 31767856, "methods": [ 13506768, - 21953040, - 21953520, + 21952912, + 21953392, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22005984, - 26419632, - 26419200, - 26419200, - 21963952, - 22008320, - 20141328, - 19835392, - 19835328, + 20141504, + 22005856, + 26419568, + 26419136, + 26419136, + 21963824, + 22008192, + 20141200, + 19835264, + 19835200, 9634320, - 21962352, - 21977024, - 19933344, - 19877920, + 21962224, + 21976896, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 21933872, + 19933296, + 19829024, + 21933744, 9635872, 9665808, 9641296, @@ -277012,21 +277012,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21927408, - 22262128, - 21930672, + 26427360, + 21927280, + 22262000, + 21930544, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -277050,100 +277050,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, - 21928064, + 21927936, 11747104, 9636112, 9636128, - 21928064, + 21927936, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -277154,7 +277154,7 @@ 9636256, 9642208, 9636272, - 21927392, + 21927264, 9636304, 9636320, 9636336, @@ -277164,7 +277164,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -277177,28 +277177,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -277209,7 +277209,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -277220,7 +277220,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -277253,7 +277253,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 30531208, + "vtable_address": 30531144, "methods": [ 9634368, 9634384, @@ -277372,7 +277372,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 30531736, + "vtable_address": 30531672, "methods": [ 13103488, 12888912 @@ -277429,13 +277429,13 @@ }, { "type_name": "CSendPlayerLoadoutHelper", - "vtable_address": 31275312, + "vtable_address": 31275248, "methods": [ 9634368, 9634384, 9634400, 9634416, - 17253632, + 17253504, 9634448, 9634464, 9634480, @@ -277465,7 +277465,7 @@ 9634864, 9634880, 9634896, - 17341200, + 17341072, 9634928, 9634944, 9634960, @@ -277487,12 +277487,12 @@ 9635216, 9635232, 9635248, - 17257536, + 17257408, 9635280, - 17257232, - 17258640, - 17258176, - 17253616 + 17257104, + 17258512, + 17258048, + 17253488 ], "bases": [ { @@ -277525,7 +277525,7 @@ }, { "type_name": "CServerEntitySubclassUtils", - "vtable_address": 30518128, + "vtable_address": 30518064, "methods": [ 12453920, 12454016, @@ -277638,7 +277638,7 @@ }, { "type_name": "CServerLogHTTPDispatcher", - "vtable_address": 30249760, + "vtable_address": 30249696, "methods": [ 9634368, 9634384, @@ -277734,32 +277734,32 @@ }, { "type_name": "CServerOnlyEntity", - "vtable_address": 30557440, + "vtable_address": 30557376, "methods": [ 13506768, 13384336, 13384352, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -277771,21 +277771,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19939168, + 26427360, + 19939040, 13382848, 13384048, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -277809,83 +277809,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -277893,16 +277893,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -277923,7 +277923,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -277936,28 +277936,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -277968,7 +277968,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -277979,7 +277979,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -278012,7 +278012,7 @@ }, { "type_name": "CServerOnlyEntity", - "vtable_address": 32404608, + "vtable_address": 32404544, "methods": [], "bases": [], "model": { @@ -278023,7 +278023,7 @@ }, { "type_name": "CServerOnlyEntity", - "vtable_address": 32404736, + "vtable_address": 32404672, "methods": [], "bases": [], "model": { @@ -278034,32 +278034,32 @@ }, { "type_name": "CServerOnlyModelEntity", - "vtable_address": 30568136, + "vtable_address": 30568072, "methods": [ 13522144, 13387712, 13387728, - 18377504, - 26419168, - 18094240, - 18010864, - 20141696, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 20141568, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 10056704, 9635872, 9665808, @@ -278071,21 +278071,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18103696, + 26427360, + 18103568, 13382848, 13384176, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -278109,83 +278109,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -278193,16 +278193,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -278223,7 +278223,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -278236,28 +278236,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -278268,7 +278268,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -278279,35 +278279,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -278351,32 +278351,32 @@ }, { "type_name": "CServerOnlyPointEntity", - "vtable_address": 30559408, + "vtable_address": 30559344, "methods": [ 13506768, 13384464, 13384480, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -278388,21 +278388,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19939184, + 26427360, + 19939056, 13382848, 13384032, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -278426,83 +278426,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -278510,16 +278510,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -278540,7 +278540,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -278553,28 +278553,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -278585,7 +278585,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -278596,7 +278596,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -278640,7 +278640,7 @@ }, { "type_name": "CServerOnlyPointEntity", - "vtable_address": 32313728, + "vtable_address": 32313664, "methods": [], "bases": [], "model": { @@ -278651,7 +278651,7 @@ }, { "type_name": "CServerPulseGameSystem", - "vtable_address": 30962424, + "vtable_address": 30962360, "methods": [ 9634368, 9634384, @@ -278786,7 +278786,7 @@ }, { "type_name": "CServerPulseGameSystem", - "vtable_address": 30963000, + "vtable_address": 30962936, "methods": [ 15852704, 15852736, @@ -278855,7 +278855,7 @@ }, { "type_name": "CServerPulseGameSystem", - "vtable_address": 30963048, + "vtable_address": 30962984, "methods": [ 15866944, 15879808, @@ -278924,32 +278924,32 @@ }, { "type_name": "CServerRagdollTrigger", - "vtable_address": 31860880, + "vtable_address": 31860816, "methods": [ 11931776, - 22399840, - 22399856, - 18377504, - 26419168, - 20153552, - 18010864, - 22272304, - 26419632, - 26419200, - 26419200, + 22399712, + 22399728, + 18377376, + 26419104, + 20153424, + 18010736, + 22272176, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -278961,21 +278961,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263792, - 22274736, - 22267104, + 26427360, + 22263664, + 22274608, + 22266976, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -278999,83 +278999,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -279083,16 +279083,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -279113,7 +279113,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -279126,28 +279126,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -279158,7 +279158,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -279169,39 +279169,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22277776, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22277648, 11742352, - 22263600, - 22263632, + 22263472, + 22263504, 11742352, 11749904, 10058464, @@ -279271,21 +279271,21 @@ }, { "type_name": "CServerToolsInfo", - "vtable_address": 31550920, + "vtable_address": 31550856, "methods": [ - 20644928, - 20646144, - 20620720, - 20633408, - 20633392, - 20620736, - 20634912, - 20620752, - 20630400, - 20620768, - 20620784, - 20655424, - 20655840 + 20644800, + 20646016, + 20620592, + 20633280, + 20633264, + 20620608, + 20634784, + 20620624, + 20630272, + 20620640, + 20620656, + 20655296, + 20655712 ], "bases": [ { @@ -279384,12 +279384,12 @@ }, { "type_name": "CServerViewAngleChangeSystem", - "vtable_address": 31313760, + "vtable_address": 31313696, "methods": [ 9634368, 9634384, 9634400, - 18004992, + 18004864, 9634432, 9634448, 9634464, @@ -279442,12 +279442,12 @@ 9635216, 9635232, 9635248, - 18004960, + 18004832, 9635280, - 18004944, - 18013072, - 18013088, - 18004928 + 18004816, + 18012944, + 18012960, + 18004800 ], "bases": [ { @@ -279480,10 +279480,10 @@ }, { "type_name": "CShadowCastingLightTracker", - "vtable_address": 31745440, + "vtable_address": 31745376, "methods": [ - 21864640, - 21869776 + 21864512, + 21869648 ], "bases": [ { @@ -279505,12 +279505,12 @@ }, { "type_name": "CSharedEnvironmentEntityFilter", - "vtable_address": 31619904, + "vtable_address": 31619840, "methods": [ - 20905312, - 20909024, - 20958304, - 20905296 + 20905184, + 20908896, + 20958176, + 20905168 ], "bases": [ { @@ -279532,12 +279532,12 @@ }, { "type_name": "CSharedEnvironmentEntityFilter_PreviewLighting", - "vtable_address": 31619952, + "vtable_address": 31619888, "methods": [ - 20906080, - 20909040, - 20958304, - 20968224 + 20905952, + 20908912, + 20958176, + 20968096 ], "bases": [ { @@ -279570,13 +279570,13 @@ }, { "type_name": "CSharedMapManager", - "vtable_address": 31619296, + "vtable_address": 31619232, "methods": [ 9634368, 9634384, 9634400, 9634416, - 20927648, + 20927520, 9634448, 9634464, 9634480, @@ -279628,12 +279628,12 @@ 9635216, 9635232, 9635248, - 20905264, + 20905136, 9635280, - 20905248, - 20928720, - 20928176, - 20905232 + 20905120, + 20928592, + 20928048, + 20905104 ], "bases": [ { @@ -279666,11 +279666,11 @@ }, { "type_name": "CShatterGlassBreakableSystem", - "vtable_address": 31546096, + "vtable_address": 31546032, "methods": [ - 20740240, - 20740592, - 20801088 + 20740112, + 20740464, + 20800960 ], "bases": [ { @@ -279692,13 +279692,13 @@ }, { "type_name": "CShatterGlassGameSystem", - "vtable_address": 31545432, + "vtable_address": 31545368, "methods": [ 9634368, 9634384, 9634400, 9634416, - 20624720, + 20624592, 9634448, 9634464, 9634480, @@ -279730,7 +279730,7 @@ 9634896, 9634912, 9634928, - 20706592, + 20706464, 9634960, 9634976, 9634992, @@ -279750,12 +279750,12 @@ 9635216, 9635232, 9635248, - 20616896, + 20616768, 9635280, - 20616880, - 20627936, - 20627952, - 20616864 + 20616752, + 20627808, + 20627824, + 20616736 ], "bases": [ { @@ -279788,11 +279788,11 @@ }, { "type_name": "CShatterGlassShard", - "vtable_address": 31545392, + "vtable_address": 31545328, "methods": [ - 20703792, + 20703664, 12335072, - 20616848 + 20616720 ], "bases": [ { @@ -279814,22 +279814,22 @@ }, { "type_name": "CShatterGlassShardMgr", - "vtable_address": 31545208, + "vtable_address": 31545144, "methods": [ - 20616832, + 20616704, 12427888, - 20676896, - 20676224, + 20676768, + 20676096, 12427904, 12427920, - 20676288, - 20836736, + 20676160, + 20836608, 12427936, - 20833568, - 20747904, - 20659408, - 20660688, - 20616800 + 20833440, + 20747776, + 20659280, + 20660560, + 20616672 ], "bases": [ { @@ -279872,13 +279872,13 @@ }, { "type_name": "CShatterGlassShardMgr", - "vtable_address": 31545336, + "vtable_address": 31545272, "methods": [ - 20833920, - 20672960, - 20658608, - 20658944, - 20616816 + 20833792, + 20672832, + 20658480, + 20658816, + 20616688 ], "bases": [ { @@ -279921,33 +279921,33 @@ }, { "type_name": "CShatterGlassShardPhysics", - "vtable_address": 30462120, + "vtable_address": 30462056, "methods": [ 13841968, 12344496, 12346560, - 18377552, - 18065872, - 20898560, - 18010864, - 20896064, - 26419632, - 18009552, - 26419200, - 21421328, - 21421152, - 18011056, - 19835392, - 19835328, - 18003520, - 21429104, - 21429648, - 20694352, - 18035200, + 18377424, + 18065744, + 20898432, + 18010736, + 20895936, + 26419568, + 18009424, + 26419136, + 21421200, + 21421024, + 18010928, + 19835264, + 19835200, + 18003392, + 21428976, + 21429520, + 20694224, + 18035072, 11747408, - 20898864, - 19829152, - 20895744, + 20898736, + 19829024, + 20895616, 9635872, 9665808, 9641296, @@ -279958,21 +279958,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20694192, + 26427360, + 20694064, 12336176, 12335056, 9635312, 12348112, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -279984,113 +279984,113 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, - 21421424, - 18042720, + 21421296, + 18042592, 11747344, - 21500960, + 21500832, 11763824, - 18009568, - 19828624, - 19828800, - 20869216, - 19833664, + 18009440, + 19828496, + 19828672, + 20869088, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, 11401936, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 18145296, - 21428896, + 18014720, + 18211344, + 18145168, + 21428768, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 21424032, + 21423904, 9637216, 9636096, - 18142368, - 20844864, + 18142240, + 20844736, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -280110,7 +280110,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -280121,41 +280121,41 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, 9636672, 9636688, - 18145584, + 18145456, 9636720, 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -280166,91 +280166,91 @@ 11742448, 9636784, 9636800, - 19857680, - 21560736, - 18327344, + 19857552, + 21560608, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 21430448, - 20899328, - 21428544, - 18004224, + 18004096, + 21430320, + 20899200, + 21428416, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 21428320, - 21369984, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 21428192, + 21369856, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, - 21422432, + 18275360, + 21422304, 12334368, - 18145744, - 18004208, - 18010640, + 18145616, + 18004080, + 18010512, 11404784, 11401952, 11402016, - 21427296, - 21428992, + 21427168, + 21428864, 12336320, - 21425120, - 21425184, + 21424992, + 21425056, 12334384, 12334416, 12334448, - 21424464, - 21369904, - 21523136, + 21424336, + 21369776, + 21523008, 12337360, 12337088 ], @@ -280371,7 +280371,7 @@ }, { "type_name": "CShatterGlassShardPhysics", - "vtable_address": 30464776, + "vtable_address": 30464712, "methods": [ 11404800, 11401984 @@ -280493,23 +280493,23 @@ }, { "type_name": "CShatterGlassShardPhysics", - "vtable_address": 30464808, + "vtable_address": 30464744, "methods": [ 12343488, 12345536, 12336336, 12334320, - 21425152, - 21425328, + 21425024, + 21425200, 12334336, 12334400, 12334352, 12334432, 12334464, - 21424784, + 21424656, 12337456, 12337232, - 21424384 + 21424256 ], "bases": [ { @@ -280628,13 +280628,13 @@ }, { "type_name": "CShatterGlassShardPhysics::NetworkVar_m_ShardDesc", - "vtable_address": 31545152, + "vtable_address": 31545088, "methods": [ 12335040, 12353792, 12334480, 12334496, - 20616928 + 20616800 ], "bases": [ { @@ -280656,33 +280656,33 @@ }, { "type_name": "CShower", - "vtable_address": 31525264, + "vtable_address": 31525200, "methods": [ 13522144, - 20404704, - 20404736, - 18377504, - 26419168, - 18094240, - 18010864, - 20524864, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 20404576, + 20404608, + 18377376, + 26419104, + 18094112, + 18010736, + 20524736, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 20400672, + 18378400, + 19829024, + 20400544, 9635872, 9665808, 9641296, @@ -280693,21 +280693,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20400704, - 20406656, - 20404112, + 26427360, + 20400576, + 20406528, + 20403984, 9635312, 13440208, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -280731,83 +280731,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 20525392, - 19833664, + 20088096, + 19828496, + 19828672, + 20525264, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 18104832, - 19834496, + 18104704, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -280815,16 +280815,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20529232, - 21311696, + 20529104, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -280845,7 +280845,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -280858,28 +280858,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -280890,7 +280890,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -280901,35 +280901,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, - 18004256, - 18261776, - 18057568, + 18045984, + 18004128, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -280984,10 +280984,10 @@ }, { "type_name": "CSimSequenceSetup", - "vtable_address": 31415792, + "vtable_address": 31415728, "methods": [ - 19523264, - 19523136 + 19523136, + 19523008 ], "bases": [ { @@ -281009,7 +281009,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 30531864, + "vtable_address": 30531800, "methods": [ 9634368, 9634384, @@ -281121,7 +281121,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 30532424, + "vtable_address": 30532360, "methods": [ 12926880, 13107456, @@ -281171,33 +281171,33 @@ }, { "type_name": "CSimpleMarkupVolumeTagged", - "vtable_address": 31629376, + "vtable_address": 31629312, "methods": [ 13839968, - 20933840, - 20934160, - 18377504, - 26419168, - 20913344, - 21043488, - 21045328, - 26419632, - 26419200, - 26419200, - 21052240, - 21053584, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 20912272, + 20933712, + 20934032, + 18377376, + 26419104, + 20913216, + 21043360, + 21045200, + 26419568, + 26419136, + 26419136, + 21052112, + 21053456, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 20912144, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -281208,21 +281208,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20905504, - 20914128, - 20906896, + 26427360, + 20905376, + 20914000, + 20906768, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -281246,83 +281246,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -281330,16 +281330,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -281360,7 +281360,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -281373,28 +281373,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -281405,7 +281405,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -281416,38 +281416,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 13794128, 13794144, - 21018672, + 21018544, 13794160, 13794176 ], @@ -281515,14 +281515,14 @@ }, { "type_name": "CSingleUserPlusObserversFilter", - "vtable_address": 31393680, + "vtable_address": 31393616, "methods": [ - 19464880, - 19465152, - 19464368, - 19464352, - 19464384, - 19464400 + 19464752, + 19465024, + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -281555,14 +281555,14 @@ }, { "type_name": "CSingleUserRecipientFilter", - "vtable_address": 30180248, + "vtable_address": 30180184, "methods": [ 9891488, 9895872, - 19464368, - 19464352, - 19464384, - 19464400 + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -281595,20 +281595,20 @@ }, { "type_name": "CSkeletonAnimationController", - "vtable_address": 30779720, + "vtable_address": 30779656, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32469528 + "offset_to_top": 32469464 } } }, { "type_name": "CSkeletonAnimationController", - "vtable_address": 31415272, + "vtable_address": 31415208, "methods": [ - 19543168 + 19543040 ], "bases": [ { @@ -281630,7 +281630,7 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 30778760, + "vtable_address": 30778696, "methods": [], "bases": [], "model": { @@ -281641,38 +281641,38 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 31415512, - "methods": [ - 19576544, - 19576832, - 19512128, - 19729792, - 19729856, - 19730032, - 19730752, - 19731888, + "vtable_address": 31415448, + "methods": [ + 19576416, + 19576704, + 19512000, + 19729664, + 19729728, + 19729904, + 19730624, + 19731760, 9698480, 9698496, - 19733584, - 19733328, - 19733152, - 19733056, - 19732464, - 19512160, - 19739968, - 19730912, - 19731584, - 19062480, - 19729920, - 19734224, - 19733632, - 19732224, - 19571104, + 19733456, + 19733200, + 19733024, + 19732928, + 19732336, + 19512032, + 19739840, + 19730784, + 19731456, + 19062352, + 19729792, + 19734096, + 19733504, + 19732096, + 19570976, 9701472, - 19511792, + 19511664, 9698464, - 19511808, - 19656768 + 19511680, + 19656640 ], "bases": [ { @@ -281704,9 +281704,9 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 31415768, + "vtable_address": 31415704, "methods": [ - 19657408 + 19657280 ], "bases": [ { @@ -281738,11 +281738,11 @@ }, { "type_name": "CSkeletonInstance::NetworkVar_m_modelState", - "vtable_address": 31402160, + "vtable_address": 31402096, "methods": [ - 19511872, + 19511744, 13865504, - 19511824, + 19511696, 13865984 ], "bases": [ @@ -281765,33 +281765,33 @@ }, { "type_name": "CSkyCamera", - "vtable_address": 30747128, + "vtable_address": 30747064, "methods": [ 13506768, + 22011808, 22011936, - 22012064, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22049408, - 26419632, - 26419200, - 26419200, - 22056752, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22049280, + 26419568, + 26419136, + 26419136, + 22056624, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -281802,21 +281802,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22011648, + 26427360, + 22011520, 13914208, 13866016, 9635312, 13883328, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -281840,83 +281840,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -281924,16 +281924,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -281954,7 +281954,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -281967,28 +281967,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -281999,7 +281999,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -282010,7 +282010,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -282043,12 +282043,12 @@ }, { "type_name": "CSkyCamera::NetworkVar_m_skyboxData", - "vtable_address": 31769888, + "vtable_address": 31769824, "methods": [ 12335152, - 22029792, - 19827920, - 21927440 + 22029664, + 19827792, + 21927312 ], "bases": [ { @@ -282070,33 +282070,33 @@ }, { "type_name": "CSkyboxReference", - "vtable_address": 30745160, + "vtable_address": 30745096, "methods": [ 13506768, - 22011184, - 22011216, + 22011056, + 22011088, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22011392, - 26419632, - 26419200, - 26419200, - 22011536, - 22011280, - 20141328, - 19835392, - 19835328, + 20141504, + 22011264, + 26419568, + 26419136, + 26419136, + 22011408, + 22011152, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -282107,21 +282107,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22010976, + 26427360, + 22010848, 13914208, 13866000, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -282145,83 +282145,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -282229,16 +282229,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -282259,7 +282259,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -282272,28 +282272,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -282304,7 +282304,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -282315,7 +282315,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -282348,33 +282348,33 @@ }, { "type_name": "CSmokeGrenade", - "vtable_address": 31262168, + "vtable_address": 31262104, "methods": [ 13528544, - 17174448, - 17174512, - 18377552, - 18065872, - 16732784, - 18010864, - 17190544, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17174320, + 17174384, + 18377424, + 18065744, + 16732656, + 18010736, + 17190416, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -282385,21 +282385,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172848, - 17176416, - 17174912, + 26427360, + 17172720, + 17176288, + 17174784, 9635312, - 17192000, - 18308160, + 17191872, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -282410,114 +282410,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -282531,47 +282531,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -282579,11 +282579,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -282593,227 +282593,227 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 16732672, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, - 16727344, + 16924176, + 16909216, + 16914016, + 16728448, + 16728464, + 18061024, + 16729216, + 16729120, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16728768, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 16736768, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 16732800, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 16909344, - 16914144, - 16728576, - 16728592, - 18061152, - 16729344, - 16729248, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16728896, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, - 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 16736896, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, 16924400, - 16942560, - 16727600, - 16727616, + 16914384, + 16924272, + 16942432, + 16727472, + 16727488, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 16741824, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, - 16728336, - 16914336, - 16914384, - 16732848, - 16728352, - 15970784, - 16914464, + 16797856, + 16740096, + 16810240, + 16810336, + 16912080, + 17035856, + 16797072, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 16741952, - 17042912, - 10057136, 16728432, - 16728448, - 16797984, - 16740224, - 16810368, - 16810464, - 16912208, - 17035984, - 16797200, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 16910976, - 16733696, - 17091632, - 16732880, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 16911872, + 16910848, + 16733568, + 17091504, + 16732752, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 16911744, 10057152, - 16728960, - 16728624, - 16810304, - 16728912, - 16793088, - 17172816, - 17172832, - 17178176 + 16728832, + 16728496, + 16810176, + 16728784, + 16792960, + 17172688, + 17172704, + 17178048 ], "bases": [ { @@ -282943,14 +282943,14 @@ }, { "type_name": "CSmokeGrenade", - "vtable_address": 31265896, + "vtable_address": 31265832, "methods": [ - 17174928, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174800, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -283080,10 +283080,10 @@ }, { "type_name": "CSmokeGrenade", - "vtable_address": 31265960, + "vtable_address": 31265896, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -283213,33 +283213,33 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 31073912, + "vtable_address": 31073848, "methods": [ 13528544, - 16781376, - 16781856, - 16730592, - 18065872, - 16452512, - 18010864, - 16905888, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16781248, + 16781728, + 16730464, + 18065744, + 16452384, + 18010736, + 16905760, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 19833424, + 19848592, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -283250,21 +283250,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16729152, - 16908544, - 16731072, + 26427360, + 16729024, + 16908416, + 16730944, 9635312, - 16745888, - 18308160, + 16745760, + 18308032, 9635328, - 20114848, - 19871664, + 20114720, + 19871536, 9637008, 9637024, 9837040, @@ -283276,95 +283276,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 16730752, - 16730768, - 19834496, + 16730624, + 16730640, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, + 18014720, + 18211344, 15971776, - 19833184, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -283372,17 +283372,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 16816528, - 19828912, - 18013520, + 16816400, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -283402,7 +283402,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -283413,30 +283413,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, - 16798448, - 19828816, - 19835280, + 16798320, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -283447,7 +283447,7 @@ 9636736, 9636752, 9636768, - 16820608, + 16820480, 11742352, 11742320, 11742400, @@ -283458,103 +283458,103 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, 11712016, - 16907168, + 16907040, 16039408, - 16728720, + 16728592, 11712032, - 16733632, + 16733504, 11712080, 15971760, - 16729136, + 16729008, 11712048, 11723632, 16012384, - 16733456, - 16886112, - 16823008, - 16742256, - 16854720 + 16733328, + 16885984, + 16822880, + 16742128, + 16854592 ], "bases": [ { @@ -283694,7 +283694,7 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 31076648, + "vtable_address": 31076584, "methods": [ 9837440, 9837456 @@ -283837,11 +283837,11 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 31076680, + "vtable_address": 31076616, "methods": [ + 16781696, 16781824, - 16781952, - 16856224 + 16856096 ], "bases": [ { @@ -283981,10 +283981,10 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 31076720, + "vtable_address": 31076656, "methods": [ - 16781840, - 16781904 + 16781712, + 16781776 ], "bases": [ { @@ -284124,13 +284124,13 @@ }, { "type_name": "CSmokeVolumeSystem", - "vtable_address": 31004344, + "vtable_address": 31004280, "methods": [ 9634368, 9634384, 9634400, - 16599088, - 16599088, + 16598960, + 16598960, 9634448, 9634464, 9634480, @@ -284156,13 +284156,13 @@ 9634800, 9634816, 9634832, - 16599104, - 16639824, + 16598976, + 16639696, 9634880, 9634896, 9634912, 9634928, - 16599104, + 16598976, 9634960, 9634976, 9634992, @@ -284182,12 +284182,12 @@ 9635216, 9635232, 9635248, - 16599056, + 16598928, 9635280, - 16599040, - 16604576, - 16603696, - 16599024 + 16598912, + 16604448, + 16603568, + 16598896 ], "bases": [ { @@ -284220,7 +284220,7 @@ }, { "type_name": "CSosCopyRecipientFilter", - "vtable_address": 30532488, + "vtable_address": 30532424, "methods": [ 12854784, 12863712, @@ -284250,7 +284250,7 @@ }, { "type_name": "CSosEventInfoWithFieldData_t", - "vtable_address": 30525888, + "vtable_address": 30525824, "methods": [ 12901984, 12902992 @@ -284275,7 +284275,7 @@ }, { "type_name": "CSosFilterSetLibraryStackFieldsInfo_t", - "vtable_address": 30529488, + "vtable_address": 30529424, "methods": [ 12902272, 12903248 @@ -284332,7 +284332,7 @@ }, { "type_name": "CSosFilterSetSoundEventFieldsInfo_t", - "vtable_address": 30529456, + "vtable_address": 30529392, "methods": [ 12902560, 12903504 @@ -284389,7 +284389,7 @@ }, { "type_name": "CSosFilterStartSoundEventInfo_t", - "vtable_address": 30529360, + "vtable_address": 30529296, "methods": [ 12902848, 12903760 @@ -284446,7 +284446,7 @@ }, { "type_name": "CSosFilterStopSoundEventHashInfo_t", - "vtable_address": 30529424, + "vtable_address": 30529360, "methods": [ 12860464, 12863744 @@ -284492,7 +284492,7 @@ }, { "type_name": "CSosFilterStopSoundEventInfo_t", - "vtable_address": 30529392, + "vtable_address": 30529328, "methods": [ 12860480, 12863760 @@ -284538,7 +284538,7 @@ }, { "type_name": "CSosSetLibraryStackFieldsInfo_t", - "vtable_address": 30526048, + "vtable_address": 30525984, "methods": [ 12902128, 12903120 @@ -284574,7 +284574,7 @@ }, { "type_name": "CSosSetSoundEventFieldsInfo_t", - "vtable_address": 30526016, + "vtable_address": 30525952, "methods": [ 12902416, 12903376 @@ -284610,7 +284610,7 @@ }, { "type_name": "CSosStartSoundEventInfo_t", - "vtable_address": 30525920, + "vtable_address": 30525856, "methods": [ 12902704, 12903632 @@ -284646,7 +284646,7 @@ }, { "type_name": "CSosStopSoundEventHashInfo_t", - "vtable_address": 30525984, + "vtable_address": 30525920, "methods": [ 12854816, 12863632 @@ -284671,7 +284671,7 @@ }, { "type_name": "CSosStopSoundEventInfo_t", - "vtable_address": 30525952, + "vtable_address": 30525888, "methods": [ 12854800, 12863648 @@ -284696,33 +284696,33 @@ }, { "type_name": "CSoundAreaEntityBase", - "vtable_address": 30423224, + "vtable_address": 30423160, "methods": [ 13506768, 12206992, 12207008, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -284733,12 +284733,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12202944, 12334272, 12204576, @@ -284746,8 +284746,8 @@ 12237312, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -284771,83 +284771,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12206720, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -284855,16 +284855,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -284885,7 +284885,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -284898,28 +284898,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -284930,7 +284930,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -284941,7 +284941,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -284974,33 +284974,33 @@ }, { "type_name": "CSoundAreaEntityOrientedBox", - "vtable_address": 30427160, + "vtable_address": 30427096, "methods": [ 13506768, 12207120, 12207136, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -285011,12 +285011,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12202976, 12334272, 12204544, @@ -285024,8 +285024,8 @@ 12237504, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -285049,83 +285049,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12206720, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -285133,16 +285133,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -285163,7 +285163,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -285176,28 +285176,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -285208,7 +285208,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -285219,7 +285219,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -285263,33 +285263,33 @@ }, { "type_name": "CSoundAreaEntitySphere", - "vtable_address": 30425192, + "vtable_address": 30425128, "methods": [ 13506768, 12207056, 12207072, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -285300,12 +285300,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12202960, 12334272, 12204560, @@ -285313,8 +285313,8 @@ 12237408, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -285338,83 +285338,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12206720, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -285422,16 +285422,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -285452,7 +285452,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -285465,28 +285465,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -285497,7 +285497,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -285508,7 +285508,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -285552,38 +285552,38 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 31775824, - "methods": [ - 21947680, - 22027888, - 22141152, - 21977856, - 21936848, - 22028512, - 22135920, - 22136336, - 22136752, - 22028624, - 22024848, - 21975504, - 22025136, - 21928688, - 21928704, - 21970640, - 21928720, - 22137408, - 21928288, - 21928320, - 21928352, - 21935856, + "vtable_address": 31775760, + "methods": [ + 21947552, + 22027760, + 22141024, + 21977728, + 21936720, + 22028384, + 22135792, + 22136208, + 22136624, + 22028496, + 22024720, + 21975376, + 22025008, + 21928560, + 21928576, + 21970512, + 21928592, + 22137280, 21928160, 21928192, 21928224, - 22054240, - 21928368, - 21928416, - 21947152, - 21947488 + 21935728, + 21928032, + 21928064, + 21928096, + 22054112, + 21928240, + 21928288, + 21947024, + 21947360 ], "bases": [ { @@ -285626,7 +285626,7 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 31776080, + "vtable_address": 31776016, "methods": [ 9634368, 9634384, @@ -285640,7 +285640,7 @@ 9634512, 9634528, 9634544, - 21928432, + 21928304, 9634576, 9634592, 9634608, @@ -285661,7 +285661,7 @@ 9634848, 9634864, 9634880, - 21928384, + 21928256, 9634912, 9634928, 9634944, @@ -285676,7 +285676,7 @@ 9635088, 9635104, 9635120, - 22054080, + 22053952, 9635152, 9635168, 9635184, @@ -285684,12 +285684,12 @@ 9635216, 9635232, 9635248, - 21928256, + 21928128, 9635280, - 21928208, - 21946992, - 21947312, - 21928176 + 21928080, + 21946864, + 21947184, + 21928048 ], "bases": [ { @@ -285732,12 +285732,12 @@ }, { "type_name": "CSoundEmitterSystem", - "vtable_address": 31775088, + "vtable_address": 31775024, "methods": [ - 21927984, + 21927856, 9634384, 9634400, - 21928000, + 21927872, 9634432, 9634448, 9634464, @@ -285790,12 +285790,12 @@ 9635216, 9635232, 9635248, - 21927952, + 21927824, 9635280, - 21927936, - 21933744, - 21933760, - 21927920 + 21927808, + 21933616, + 21933632, + 21927792 ], "bases": [ { @@ -285817,33 +285817,33 @@ }, { "type_name": "CSoundEventAABBEntity", - "vtable_address": 30435080, + "vtable_address": 30435016, "methods": [ 13506768, 12262160, 12263328, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12207584, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12210352, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 12207536, - 19877920, + 19877792, 12207600, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -285854,12 +285854,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203040, 12334272, 12204656, @@ -285867,8 +285867,8 @@ 12237696, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -285892,34 +285892,34 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12207744, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, @@ -285928,47 +285928,47 @@ 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -285976,16 +285976,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -286006,7 +286006,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -286019,28 +286019,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -286051,7 +286051,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -286062,7 +286062,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12260912 ], "bases": [ @@ -286107,33 +286107,33 @@ }, { "type_name": "CSoundEventEntity", - "vtable_address": 30431128, + "vtable_address": 30431064, "methods": [ 13506768, 12261488, 12262608, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12207584, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12210352, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 12207536, - 19877920, + 19877792, 12207600, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -286144,12 +286144,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203008, 12334272, 12204688, @@ -286157,8 +286157,8 @@ 12237600, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -286182,34 +286182,34 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12207744, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, @@ -286218,47 +286218,47 @@ 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -286266,16 +286266,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -286296,7 +286296,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -286309,28 +286309,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -286341,7 +286341,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -286352,7 +286352,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12260880 ], "bases": [ @@ -286386,7 +286386,7 @@ }, { "type_name": "CSoundEventEntity", - "vtable_address": 32330304, + "vtable_address": 32330240, "methods": [], "bases": [], "model": { @@ -286397,33 +286397,33 @@ }, { "type_name": "CSoundEventEntityAlias_snd_event_point", - "vtable_address": 30433104, + "vtable_address": 30433040, "methods": [ 13506768, 12262384, 12263568, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12207584, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12210352, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 12207536, - 19877920, + 19877792, 12207600, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -286434,12 +286434,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203152, 12334272, 12204672, @@ -286447,8 +286447,8 @@ 12237600, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -286472,34 +286472,34 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12207744, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, @@ -286508,47 +286508,47 @@ 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -286556,16 +286556,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -286586,7 +286586,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -286599,28 +286599,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -286631,7 +286631,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -286642,7 +286642,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12260880 ], "bases": [ @@ -286687,33 +286687,33 @@ }, { "type_name": "CSoundEventOBBEntity", - "vtable_address": 30437056, + "vtable_address": 30436992, "methods": [ 13506768, 12261936, 12263088, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12207824, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12210352, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 12207536, - 19877920, + 19877792, 12207600, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -286724,12 +286724,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203056, 12334272, 12204640, @@ -286737,8 +286737,8 @@ 12237792, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -286762,34 +286762,34 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12207744, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, @@ -286798,47 +286798,47 @@ 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -286846,16 +286846,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -286876,7 +286876,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -286889,28 +286889,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -286921,7 +286921,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -286932,7 +286932,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12260976 ], "bases": [ @@ -286977,33 +286977,33 @@ }, { "type_name": "CSoundEventParameter", - "vtable_address": 30442992, + "vtable_address": 30442928, "methods": [ 13506768, 12207184, 12207200, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, 12206912, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -287014,12 +287014,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203136, 12334272, 12204704, @@ -287027,8 +287027,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -287052,83 +287052,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -287136,16 +287136,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -287166,7 +287166,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -287179,28 +287179,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -287211,7 +287211,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -287222,7 +287222,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -287255,33 +287255,33 @@ }, { "type_name": "CSoundEventPathCornerEntity", - "vtable_address": 30441008, + "vtable_address": 30440944, "methods": [ 13506768, 12263808, 12264464, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12301568, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12210352, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 12207536, - 19877920, + 19877792, 12207600, 12301760, - 19829152, - 19833424, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -287292,12 +287292,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203088, 12334272, 12204608, @@ -287305,8 +287305,8 @@ 12237984, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -287330,34 +287330,34 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12207744, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, @@ -287366,47 +287366,47 @@ 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -287414,16 +287414,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -287444,7 +287444,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -287457,28 +287457,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -287489,7 +287489,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -287500,7 +287500,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12203104, 12203120 ], @@ -287546,33 +287546,33 @@ }, { "type_name": "CSoundEventSphereEntity", - "vtable_address": 30439032, + "vtable_address": 30438968, "methods": [ 13506768, 12261712, 12262848, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12207920, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12210352, - 20140192, - 20141328, - 19835392, - 19835328, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 12207536, - 19877920, + 19877792, 12207600, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -287583,12 +287583,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203072, 12334272, 12204624, @@ -287596,8 +287596,8 @@ 12237888, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -287621,34 +287621,34 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12207744, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, @@ -287657,47 +287657,47 @@ 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -287705,16 +287705,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -287735,7 +287735,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -287748,28 +287748,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -287780,7 +287780,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -287791,7 +287791,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12260880 ], "bases": [ @@ -287836,7 +287836,7 @@ }, { "type_name": "CSoundOpGameSystem", - "vtable_address": 30532560, + "vtable_address": 30532496, "methods": [ 12856160, 9634384, @@ -287942,33 +287942,33 @@ }, { "type_name": "CSoundOpvarSetAABBEntity", - "vtable_address": 30482216, + "vtable_address": 30482152, "methods": [ 13506768, 12373344, 12373360, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22176240, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22176112, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 22016400, - 19829152, - 19833424, + 22016272, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -287979,21 +287979,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22016816, + 26427360, + 22016688, 12427840, 12371824, 9635312, 12386832, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -288017,83 +288017,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -288101,16 +288101,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -288131,7 +288131,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -288144,28 +288144,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -288176,7 +288176,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -288187,13 +288187,13 @@ 11742448, 9636784, 9636800, - 19857680, - 22215680, - 22017760, - 22017776, - 22017856, - 22017072, - 22017744 + 19857552, + 22215552, + 22017632, + 22017648, + 22017728, + 22016944, + 22017616 ], "bases": [ { @@ -288248,7 +288248,7 @@ }, { "type_name": "CSoundOpvarSetAABBEntity", - "vtable_address": 32364032, + "vtable_address": 32363968, "methods": [], "bases": [], "model": { @@ -288259,33 +288259,33 @@ }, { "type_name": "CSoundOpvarSetAutoRoomEntity", - "vtable_address": 30488224, + "vtable_address": 30488160, "methods": [ 13506768, 12384672, 12384816, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22176880, - 26419632, - 26419200, - 26419200, - 22020688, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22176752, + 26419568, + 26419136, + 26419136, + 22020560, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 22016400, - 19829152, - 19833424, + 22016272, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -288296,21 +288296,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22020336, + 26427360, + 22020208, 12427840, 12371776, 9635312, 12387216, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -288334,83 +288334,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 22020672, + 22020544, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -288418,16 +288418,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -288448,7 +288448,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -288461,28 +288461,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -288493,7 +288493,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -288504,8 +288504,8 @@ 11742448, 9636784, 9636800, - 19857680, - 22221504 + 19857552, + 22221376 ], "bases": [ { @@ -288560,33 +288560,33 @@ }, { "type_name": "CSoundOpvarSetEntity", - "vtable_address": 31769936, + "vtable_address": 31769872, "methods": [ 13506768, - 21931776, - 21931792, + 21931648, + 21931664, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22013856, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22013728, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -288597,21 +288597,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21927472, - 22262128, - 21930688, + 26427360, + 21927344, + 22262000, + 21930560, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -288635,83 +288635,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 21933552, - 19840912, - 19834496, + 21933424, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -288719,16 +288719,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -288749,7 +288749,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -288762,28 +288762,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -288794,7 +288794,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -288805,7 +288805,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -288838,33 +288838,33 @@ }, { "type_name": "CSoundOpvarSetOBBEntity", - "vtable_address": 30484232, + "vtable_address": 30484168, "methods": [ 13506768, 12373408, 12373424, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22176512, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22176384, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 22016400, - 19829152, - 19833424, + 22016272, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -288875,21 +288875,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22018112, + 26427360, + 22017984, 12427840, 12371808, 9635312, 12386960, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -288913,83 +288913,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -288997,16 +288997,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -289027,7 +289027,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -289040,28 +289040,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -289072,7 +289072,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -289083,13 +289083,13 @@ 11742448, 9636784, 9636800, - 19857680, - 22215680, - 22018272, - 22018448, - 22018624, - 21927712, - 22019056 + 19857552, + 22215552, + 22018144, + 22018320, + 22018496, + 21927584, + 22018928 ], "bases": [ { @@ -289155,33 +289155,33 @@ }, { "type_name": "CSoundOpvarSetOBBWindEntity", - "vtable_address": 30490200, + "vtable_address": 30490136, "methods": [ 13506768, 12373280, 12373296, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22177216, - 26419632, - 26419200, - 26419200, - 22163104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22177088, + 26419568, + 26419136, + 26419136, + 22162976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -289192,21 +289192,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22020704, + 26427360, + 22020576, 12427840, 12371760, 9635312, 12387344, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -289230,83 +289230,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 22163504, + 22163376, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -289314,16 +289314,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -289344,7 +289344,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -289357,28 +289357,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -289389,7 +289389,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -289400,11 +289400,11 @@ 11742448, 9636784, 9636800, - 19857680, - 22177552, - 21933568, - 21927712, - 22020944 + 19857552, + 22177424, + 21933440, + 21927584, + 22020816 ], "bases": [ { @@ -289448,33 +289448,33 @@ }, { "type_name": "CSoundOpvarSetPathCornerEntity", - "vtable_address": 30486248, + "vtable_address": 30486184, "methods": [ 13506768, 12380416, 12380304, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22176688, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22176560, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 22019904, - 19829152, - 19833424, + 22019776, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -289485,21 +289485,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22019088, + 26427360, + 22018960, 12427840, 12371792, 9635312, 12387088, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -289523,83 +289523,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 22019872, + 22019744, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -289607,16 +289607,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -289637,7 +289637,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -289650,28 +289650,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -289682,7 +289682,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -289693,8 +289693,8 @@ 11742448, 9636784, 9636800, - 19857680, - 22217984 + 19857552, + 22217856 ], "bases": [ { @@ -289749,33 +289749,33 @@ }, { "type_name": "CSoundOpvarSetPointBase", - "vtable_address": 30478264, + "vtable_address": 30478200, "methods": [ 13506768, - 22014880, - 22015120, + 22014752, + 22014992, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22175280, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22175152, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -289786,21 +289786,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22014416, + 26427360, + 22014288, 12427840, 12371856, 9635312, 12386576, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -289824,83 +289824,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -289908,16 +289908,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -289938,7 +289938,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -289951,28 +289951,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -289983,7 +289983,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -289994,8 +289994,8 @@ 11742448, 9636784, 9636800, - 19857680, - 21985328 + 19857552, + 21985200 ], "bases": [ { @@ -290028,33 +290028,33 @@ }, { "type_name": "CSoundOpvarSetPointEntity", - "vtable_address": 30480240, + "vtable_address": 30480176, "methods": [ 13506768, - 22016160, - 22016352, + 22016032, + 22016224, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22175872, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22175744, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 22016400, - 19829152, - 19833424, + 22016272, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -290065,21 +290065,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22015376, + 26427360, + 22015248, 12427840, 12371840, 9635312, 12386704, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -290103,83 +290103,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 22012192, - 19840912, - 19834496, + 22012064, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -290187,16 +290187,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -290217,7 +290217,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -290230,28 +290230,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -290262,7 +290262,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -290273,8 +290273,8 @@ 11742448, 9636784, 9636800, - 19857680, - 22210096 + 19857552, + 22209968 ], "bases": [ { @@ -290318,13 +290318,13 @@ }, { "type_name": "CSoundOpvarSetPointManager", - "vtable_address": 31774480, + "vtable_address": 31774416, "methods": [ 9634368, 9634384, 9634400, - 21927904, - 22134640, + 21927776, + 22134512, 9634448, 9634464, 9634480, @@ -290332,7 +290332,7 @@ 9634512, 9634528, 9634544, - 22233040, + 22232912, 9634576, 9634592, 9634608, @@ -290350,7 +290350,7 @@ 9634800, 9634816, 9634832, - 22233056, + 22232928, 9634864, 9634880, 9634896, @@ -290367,8 +290367,8 @@ 9635072, 9635088, 9635104, - 22194864, - 22206160, + 22194736, + 22206032, 9635152, 9635168, 9635184, @@ -290376,12 +290376,12 @@ 9635216, 9635232, 9635248, - 21927584, + 21927456, 9635280, - 21927568, - 22092560, - 22092944, - 21927552 + 21927440, + 22092432, + 22092816, + 21927424 ], "bases": [ { @@ -290414,7 +290414,7 @@ }, { "type_name": "CSoundOpvarSetPointManager_MP", - "vtable_address": 31771904, + "vtable_address": 31771840, "methods": [ 9634368, 9634384, @@ -290472,12 +290472,12 @@ 9635216, 9635232, 9635248, - 21927856, + 21927728, 9635280, - 21927840, - 21933808, - 21933824, - 21927824 + 21927712, + 21933680, + 21933696, + 21927696 ], "bases": [ { @@ -290510,10 +290510,10 @@ }, { "type_name": "CSoundPatch", - "vtable_address": 31775792, + "vtable_address": 31775728, "methods": [ - 21930736, - 21928144 + 21930608, + 21928016 ], "bases": [], "model": { @@ -290524,12 +290524,12 @@ }, { "type_name": "CSoundPatchSaveRestoreOps", - "vtable_address": 31776688, + "vtable_address": 31776624, "methods": [ - 22029360, - 22140960, - 21926592, - 21930368, + 22029232, + 22140832, + 21926464, + 21930240, 9634272, 9634288 ], @@ -290575,32 +290575,32 @@ }, { "type_name": "CSoundStackSave", - "vtable_address": 30429160, + "vtable_address": 30429096, "methods": [ 13506768, 12207248, 12207280, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, 12210816, 12210544, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -290612,12 +290612,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12202992, 12208016, 12204592, @@ -290625,8 +290625,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -290650,83 +290650,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -290734,16 +290734,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -290764,7 +290764,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -290777,28 +290777,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -290809,7 +290809,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -290820,7 +290820,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -290875,7 +290875,7 @@ }, { "type_name": "CSoundscapeSystem", - "vtable_address": 30541424, + "vtable_address": 30541360, "methods": [ 9634368, 9634384, @@ -290971,12 +290971,12 @@ }, { "type_name": "CSource1GameConfiguration", - "vtable_address": 31415824, + "vtable_address": 31415760, "methods": [ 15983888, 15983760, - 18820032, - 19740320, + 18819904, + 19740192, 15983568, 15974080, 15974112, @@ -290984,46 +290984,46 @@ 15983440, 15974176, 15974208, - 18811872, - 18913792, - 18895152, - 19523552, - 19512208, - 18814768, - 18811888, + 18811744, + 18913664, + 18895024, + 19523424, + 19512080, + 18814640, + 18811760, 15971408, 15971488, 15971504, - 18953088, - 19740496, - 19523520, - 18812000, - 18812032, - 19512176, - 18844512, - 18814816, - 19740832, - 19742432, - 15971520, - 18812080, - 18811856, + 18952960, + 19740368, + 19523392, 18811872, 18811904, - 18811936, + 19512048, + 18844384, + 18814688, + 19740704, + 19742304, + 15971520, 18811952, + 18811728, + 18811744, + 18811776, + 18811808, + 18811824, 15971424, - 18829312, - 18811968, - 18819824, - 18811952, - 18811984, - 18020032, - 18020064, - 18810960, - 18810992, + 18829184, + 18811840, + 18819696, + 18811824, + 18811856, + 18019904, + 18019936, + 18810832, + 18810864, 15971456, - 19272432, - 18812048 + 19272304, + 18811920 ], "bases": [ { @@ -291165,12 +291165,12 @@ }, { "type_name": "CSource1GameConfiguration", - "vtable_address": 31416248, + "vtable_address": 31416184, "methods": [ 15983952, 15983824, - 18842592, - 19740400, + 18842464, + 19740272, 15983664, 15974096, 15974128, @@ -291178,24 +291178,24 @@ 15983504, 15974192, 15974224, - 18838656, - 18838672, - 18839808, - 18838688, - 18838704, - 18838720, + 18838528, + 18838544, + 18839680, + 18838560, + 18838576, + 18838592, 15971440, - 18852944, - 18838736, - 18840192, - 18838768, - 18838752, - 18020016, - 18020048, - 18810976, - 18811008, + 18852816, + 18838608, + 18840064, + 18838640, + 18838624, + 18019888, + 18019920, + 18810848, + 18810880, 15971472, - 19272496 + 19272368 ], "bases": [ { @@ -291337,13 +291337,13 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem", - "vtable_address": 31372672, + "vtable_address": 31372608, "methods": [ 9634368, 9634384, 9634400, - 18858176, - 18853184, + 18858048, + 18853056, 9634448, 9634464, 9634480, @@ -291395,12 +291395,12 @@ 9635216, 9635232, 9635248, - 18812768, + 18812640, 9635280, - 18812752, - 18849088, - 18849520, - 18812736 + 18812624, + 18848960, + 18849392, + 18812608 ], "bases": [ { @@ -291443,11 +291443,11 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem::CServerSideClient_GameEventLegacyProxy", - "vtable_address": 31372632, + "vtable_address": 31372568, "methods": [ - 18812800, - 18819472, - 18838800 + 18812672, + 18819344, + 18838672 ], "bases": [ { @@ -291469,7 +291469,7 @@ }, { "type_name": "CSource2EntitySystem", - "vtable_address": 31369808, + "vtable_address": 31369744, "methods": [ 9634368, 9634384, @@ -291527,12 +291527,12 @@ 9635216, 9635232, 9635248, - 18812576, + 18812448, 9635280, - 18812560, - 18820688, - 18820704, - 18812544 + 18812432, + 18820560, + 18820576, + 18812416 ], "bases": [ { @@ -291565,7 +291565,7 @@ }, { "type_name": "CSource2EntitySystemDeallocator", - "vtable_address": 31370416, + "vtable_address": 31370352, "methods": [ 9634368, 9634384, @@ -291623,12 +291623,12 @@ 9635216, 9635232, 9635248, - 18812640, + 18812512, 9635280, - 18812624, - 18820752, - 18820768, - 18812608 + 18812496, + 18820624, + 18820640, + 18812480 ], "bases": [ { @@ -291661,52 +291661,52 @@ }, { "type_name": "CSource2GameClients", - "vtable_address": 31550432, + "vtable_address": 31550368, "methods": [ - 20645024, - 20645984, - 20620832, - 20626576, - 20625632, - 20620848, - 20620864, - 20620880, - 20630496, - 20620896, - 20620912, - 20685136, - 20630976, - 20631168, - 20676448, - 20673936, - 20684000, - 20740928, + 20644896, + 20645856, + 20620704, + 20626448, + 20625504, + 20620720, + 20620736, + 20620752, + 20630368, + 20620768, + 20620784, + 20685008, + 20630848, + 20631040, + 20676320, + 20673808, + 20683872, + 20740800, + 20631280, + 20629696, + 20682160, + 20648432, + 20629744, 20631408, - 20629824, - 20682288, - 20648560, - 20629872, - 20631536, - 20629904, - 20635696, - 20636464, - 20631728, - 20639104, - 20805408, + 20629776, + 20635568, + 20636336, + 20631600, + 20638976, + 20805280, 9851360, 9851376, 9851392, - 20643296, - 20810912, - 20631792, - 20632464, - 20632512, - 20647392, - 20631648, - 20671152, + 20643168, + 20810784, + 20631664, + 20632336, + 20632384, + 20647264, + 20631520, + 20671024, 9851408, - 20618128, - 20630688 + 20618000, + 20630560 ], "bases": [ { @@ -291805,28 +291805,28 @@ }, { "type_name": "CSource2GameEntities", - "vtable_address": 31550208, + "vtable_address": 31550144, "methods": [ - 20645120, - 20646064, - 20620928, - 20626624, - 20651152, - 20620944, - 20620960, - 20620976, - 20630592, - 20620992, - 20621008, - 20659744, - 20659920, - 20889664, - 20629776, - 20638768, - 20630880, - 20641328, - 20635984, - 20630720 + 20644992, + 20645936, + 20620800, + 20626496, + 20651024, + 20620816, + 20620832, + 20620848, + 20630464, + 20620864, + 20620880, + 20659616, + 20659792, + 20889536, + 20629648, + 20638640, + 20630752, + 20641200, + 20635856, + 20630592 ], "bases": [ { @@ -291935,11 +291935,11 @@ }, { "type_name": "CSource2GameEntities", - "vtable_address": 31550384, + "vtable_address": 31550320, "methods": [ 9890768, - 20636112, - 20630800, + 20635984, + 20630672, 9890816 ], "bases": [ @@ -292049,23 +292049,23 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification", - "vtable_address": 30909488, + "vtable_address": 30909424, "methods": [ 15683008, 15683280, - 24747814, + 24747750, 15275984, 15769120, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15116400, 15079680, 15500080, 9474464, 15201920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068640, 15041968 @@ -292101,23 +292101,23 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification_Client", - "vtable_address": 30909328, + "vtable_address": 30909264, "methods": [ 15703648, 15706000, - 24747814, + 24747750, 15275776, 15768848, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15116000, 15076272, 15499120, 9474464, 15182976, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15068608, 15041952 @@ -292153,106 +292153,106 @@ }, { "type_name": "CSource2Server", - "vtable_address": 31549224, + "vtable_address": 31549160, "methods": [ - 20649584, - 20646224, - 20617552, - 20626720, - 20627200, - 20634000, - 20634272, - 20621040, - 20630304, - 20621056, - 20621072, + 20649456, + 20646096, + 20617424, + 20626592, + 20627072, + 20633872, + 20634144, + 20620912, + 20630176, + 20620928, + 20620944, 9850496, - 20617808, - 20628624, - 20627568, - 20635776, - 20617744, - 20617776, + 20617680, + 20628496, + 20627440, + 20635648, + 20617616, + 20617648, 9860496, - 20750816, - 20617712, - 20618528, - 20617728, - 20618624, - 9850992, - 20638944, - 20639056, - 20659296, - 20638992, - 20617568, - 20628832, - 20617872, - 20617904, - 20618528, - 20628896, - 20628912, - 20628928, - 20617920, - 20618528, - 20645568, - 20617936, - 20634128, - 20628336, - 20683824, - 20642624, - 20628416, - 20618624, - 20672240, - 20760608, - 20679184, - 20623328, - 20651616, - 20624480, + 20750688, + 20617584, + 20618400, 20617600, - 20617632, + 20618496, + 9850992, + 20638816, + 20638928, + 20659168, + 20638864, + 20617440, + 20628704, + 20617744, + 20617776, + 20618400, + 20628768, + 20628784, + 20628800, + 20617792, + 20618400, + 20645440, + 20617808, + 20634000, + 20628208, + 20683696, + 20642496, + 20628288, + 20618496, + 20672112, + 20760480, + 20679056, + 20623200, + 20651488, + 20624352, + 20617472, + 20617504, + 20635216, 20635344, 20635472, - 20635600, - 20617952, - 20618048, - 20618000, - 20628944, + 20617824, + 20617920, + 20617872, + 20628816, + 20628912, 20629040, 20629168, - 20629296, - 20629344, - 20629488, - 20629536, + 20629216, + 20629360, + 20629408, 9882256, - 20629392, - 20629440, + 20629264, + 20629312, 9850976, - 20638720, - 20628608, - 20629968, - 20624784, - 20624832, + 20638592, + 20628480, + 20629840, + 20624656, + 20624704, 9851296, - 20618528, - 20640672, - 20638640, - 20642560, - 20735328, - 20629952, + 20618400, + 20640544, + 20638512, + 20642432, + 20735200, + 20629824, 9850512, 9850528, 9850592, 9850960, 9877616, 9851312, - 20618528, - 20618096, - 20617936, - 20618528, - 20630032, - 20628192, - 20628272, - 20628000 + 20618400, + 20617968, + 20617808, + 20618400, + 20629904, + 20628064, + 20628144, + 20627872 ], "bases": [ { @@ -292361,9 +292361,9 @@ }, { "type_name": "CSource2Server", - "vtable_address": 31550024, + "vtable_address": 31549960, "methods": [ - 20651920 + 20651792 ], "bases": [ { @@ -292472,18 +292472,18 @@ }, { "type_name": "CSpaceAgnosticBoneAccessor", - "vtable_address": 31987464, - "methods": [ - 25209440, - 25209920, - 25208816, + "vtable_address": 31987400, + "methods": [ + 25209376, + 25209856, + 25208752, + 25208768, + 25212160, + 25208800, 25208832, - 25212224, - 25208864, - 25208896, - 25208976, - 25211904, - 25209056 + 25208912, + 25211840, + 25208992 ], "bases": [ { @@ -292505,7 +292505,7 @@ }, { "type_name": "CSpawnGroupCompletionCallbackGameSystem", - "vtable_address": 31368808, + "vtable_address": 31368744, "methods": [ 9634368, 9634384, @@ -292521,9 +292521,9 @@ 9634544, 9634560, 9634576, - 19031104, + 19030976, 9634608, - 19092224, + 19092096, 9634640, 9634656, 9634672, @@ -292533,11 +292533,11 @@ 9634736, 9634752, 9634768, - 18815296, + 18815168, 9634800, 9634816, 9634832, - 18840960, + 18840832, 9634864, 9634880, 9634896, @@ -292563,12 +292563,12 @@ 9635216, 9635232, 9635248, - 18812128, + 18812000, 9635280, - 18812112, - 18850928, - 18850400, - 18812096 + 18811984, + 18850800, + 18850272, + 18811968 ], "bases": [ { @@ -292601,7 +292601,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 30542032, + "vtable_address": 30541968, "methods": [ 13294592, 13298960, @@ -292676,7 +292676,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 30542296, + "vtable_address": 30542232, "methods": [ 9634368, 9634384, @@ -292782,32 +292782,32 @@ }, { "type_name": "CSplineConstraint", - "vtable_address": 31683192, + "vtable_address": 31683128, "methods": [ 13506768, - 21125152, - 21125696, + 21125024, + 21125568, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 21319232, - 21294096, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 21319104, + 21293968, + 20141200, + 19835264, + 19835200, 9634320, - 21080688, + 21080560, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 21073536, - 19829152, + 21073408, + 19829024, 10437776, 9635872, 9665808, @@ -292819,21 +292819,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21066672, - 21072672, - 21069776, + 26427360, + 21066544, + 21072544, + 21069648, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -292857,83 +292857,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -292941,16 +292941,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 21281472, + 21228944, + 21281344, 11962368, 11742368, 11865936, @@ -292971,7 +292971,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -292984,28 +292984,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -293016,7 +293016,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -293027,11 +293027,11 @@ 11742448, 9636784, 9636800, - 19857680, - 21245072, - 21190720, - 21066688, - 21109296 + 19857552, + 21244944, + 21190592, + 21066560, + 21109168 ], "bases": [ { @@ -293118,11 +293118,11 @@ }, { "type_name": "CSplineConstraint", - "vtable_address": 31685192, + "vtable_address": 31685128, "methods": [ - 21125440, - 21126000, - 21109520 + 21125312, + 21125872, + 21109392 ], "bases": [ { @@ -293209,32 +293209,32 @@ }, { "type_name": "CSpotlightEnd", - "vtable_address": 30755000, + "vtable_address": 30754936, "methods": [ 13522144, 13866272, 13866288, - 18377504, - 26419168, - 18094240, - 18010864, - 22358688, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 18094112, + 18010736, + 22358560, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 13867632, 9635872, 9665808, @@ -293246,21 +293246,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22358512, + 26427360, + 22358384, 13914192, 13866080, 9635312, 13883456, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -293284,83 +293284,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -293368,16 +293368,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -293398,7 +293398,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -293411,28 +293411,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -293443,7 +293443,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -293454,35 +293454,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -293526,32 +293526,32 @@ }, { "type_name": "CSprite", - "vtable_address": 30492200, + "vtable_address": 30492136, "methods": [ 13522144, 12386272, 12386464, - 18377504, - 26419168, - 22305120, - 18010864, - 22486656, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 22304992, + 18010736, + 22486528, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 22485152, - 19829152, + 22485024, + 19829024, 12374128, 9635872, 9665808, @@ -293563,21 +293563,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22359360, + 26427360, + 22359232, 12427856, 12371888, 9635312, 12387472, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -293601,83 +293601,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 22265696, + 22265568, 9635712, 9654336, 11742336, - 22266016, - 22262144, - 19834496, + 22265888, + 22262016, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22318496, + 22318368, 9637216, 9636096, 11746864, @@ -293685,16 +293685,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -293715,7 +293715,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -293728,28 +293728,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -293760,8 +293760,8 @@ 9636736, 9636752, 9636768, - 21066880, - 22361184, + 21066752, + 22361056, 11742320, 11742400, 11742464, @@ -293771,35 +293771,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -293843,7 +293843,7 @@ }, { "type_name": "CSprite", - "vtable_address": 32361536, + "vtable_address": 32361472, "methods": [], "bases": [], "model": { @@ -293854,7 +293854,7 @@ }, { "type_name": "CSprite", - "vtable_address": 32573376, + "vtable_address": 32573312, "methods": [], "bases": [], "model": { @@ -293865,7 +293865,7 @@ }, { "type_name": "CSprite", - "vtable_address": 32844224, + "vtable_address": 32844160, "methods": [], "bases": [], "model": { @@ -293876,7 +293876,7 @@ }, { "type_name": "CSprite", - "vtable_address": 33265728, + "vtable_address": 33265664, "methods": [], "bases": [], "model": { @@ -293887,32 +293887,32 @@ }, { "type_name": "CSpriteAlias_env_glow", - "vtable_address": 31783632, + "vtable_address": 31783568, "methods": [ 13522144, - 22314816, - 22315280, - 18377504, - 26419168, - 22305120, - 18010864, - 22486656, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 22314688, + 22315152, + 18377376, + 26419104, + 22304992, + 18010736, + 22486528, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 22485152, - 19829152, + 22485024, + 19829024, 12374128, 9635872, 9665808, @@ -293924,21 +293924,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262160, - 22267616, - 22266560, + 26427360, + 22262032, + 22267488, + 22266432, 9635312, 12387472, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -293962,83 +293962,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 22265696, + 22265568, 9635712, 9654336, 11742336, - 22266016, - 22262144, - 19834496, + 22265888, + 22262016, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22318496, + 22318368, 9637216, 9636096, 11746864, @@ -294046,16 +294046,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -294076,7 +294076,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -294089,28 +294089,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -294121,8 +294121,8 @@ 9636736, 9636752, 9636768, - 21066880, - 22361184, + 21066752, + 22361056, 11742320, 11742400, 11742464, @@ -294132,35 +294132,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -294215,32 +294215,32 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 30494392, + "vtable_address": 30494328, "methods": [ 13522144, 12386368, 12373856, - 18377504, - 26419168, - 22305120, - 18010864, - 22488336, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 18377376, + 26419104, + 22304992, + 18010736, + 22488208, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 22485152, - 19829152, + 22485024, + 19829024, 12374128, 9635872, 9665808, @@ -294252,21 +294252,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12371184, 12427856, 12371872, 9635312, 12387600, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -294290,83 +294290,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 22265696, + 22265568, 9635712, 9654336, 11742336, - 22266016, - 22262144, - 19834496, + 22265888, + 22262016, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22318496, + 22318368, 9637216, 9636096, 11746864, @@ -294374,16 +294374,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -294404,7 +294404,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -294417,28 +294417,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -294449,8 +294449,8 @@ 9636736, 9636752, 9636768, - 21066880, - 22361184, + 21066752, + 22361056, 11742320, 11742400, 11742464, @@ -294460,35 +294460,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -294543,7 +294543,7 @@ }, { "type_name": "CStartTimeOutIssue", - "vtable_address": 30232160, + "vtable_address": 30232096, "methods": [ 10429120, 10472704, @@ -294611,7 +294611,7 @@ }, { "type_name": "CStartupHookGameSystem", - "vtable_address": 31373280, + "vtable_address": 31373216, "methods": [ 9634368, 9634384, @@ -294693,11 +294693,11 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 31416496, + "vtable_address": 31416432, "methods": [ - 19618560, - 19618896, - 19619488 + 19618432, + 19618768, + 19619360 ], "bases": [ { @@ -294740,11 +294740,11 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 31416536, + "vtable_address": 31416472, "methods": [ - 19618720, - 19619072, - 19620384 + 19618592, + 19618944, + 19620256 ], "bases": [ { @@ -294787,7 +294787,7 @@ }, { "type_name": "CStdFunctionJob", - "vtable_address": 30507536, + "vtable_address": 30507472, "methods": [ 12437376, 12458000, @@ -294850,9 +294850,9 @@ }, { "type_name": "CSteamWorksGameStatsServer", - "vtable_address": 30250272, + "vtable_address": 30250208, "methods": [ - 16655760, + 16655632, 9893456, 9893472, 9634416, @@ -294883,7 +294883,7 @@ 9634816, 9634832, 9893424, - 16685520, + 16685392, 9634880, 9893440, 9634912, @@ -294975,7 +294975,7 @@ }, { "type_name": "CSteamWorksGameStatsServer", - "vtable_address": 30250848, + "vtable_address": 30250784, "methods": [], "bases": [ { @@ -295040,9 +295040,9 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 31055344, + "vtable_address": 31055280, "methods": [ - 16655760, + 16655632, 9893456, 9893472, 9634416, @@ -295073,7 +295073,7 @@ 9634816, 9634832, 9893424, - 16685520, + 16685392, 9634880, 9893440, 9634912, @@ -295154,7 +295154,7 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 31055920, + "vtable_address": 31055856, "methods": [], "bases": [ { @@ -295208,7 +295208,7 @@ }, { "type_name": "CStopwatchBase", - "vtable_address": 32366848, + "vtable_address": 32366784, "methods": [], "bases": [], "model": { @@ -295219,13 +295219,13 @@ }, { "type_name": "CStressDamageSystem", - "vtable_address": 31430584, + "vtable_address": 31430520, "methods": [ 9634368, 9634384, 9634400, 9634416, - 19828512, + 19828384, 9634448, 9634464, 9634480, @@ -295252,7 +295252,7 @@ 9634816, 9634832, 9634848, - 19912352, + 19912224, 9634880, 9634896, 9634912, @@ -295277,12 +295277,12 @@ 9635216, 9635232, 9635248, - 19828480, + 19828352, 9635280, - 19828464, - 19847776, - 19847200, - 19828448 + 19828336, + 19847648, + 19847072, + 19828320 ], "bases": [ { @@ -295315,12 +295315,12 @@ }, { "type_name": "CStringTableSaveRestoreOps", - "vtable_address": 31549160, + "vtable_address": 31549096, "methods": [ - 20672064, - 20671872, - 20617360, - 20617344, + 20671936, + 20671744, + 20617232, + 20617216, 9634272, 9634288 ], @@ -295355,9 +295355,9 @@ }, { "type_name": "CStructuredReport, Vec3D, float, float, Vec3D, float, bool, bool, bool, bool, float, float, float>", - "vtable_address": 31287720, + "vtable_address": 31287656, "methods": [ - 17550880 + 17550752 ], "bases": [], "model": { @@ -295368,9 +295368,9 @@ }, { "type_name": "CStructuredReport, Vec3D, Vec3D, Vec3D, float, float, float, float, bool, bool>", - "vtable_address": 31287744, + "vtable_address": 31287680, "methods": [ - 17550864 + 17550736 ], "bases": [], "model": { @@ -295381,23 +295381,23 @@ }, { "type_name": "CSubtickMoveStep", - "vtable_address": 30787416, + "vtable_address": 30787352, "methods": [ 13980064, 13980800, - 24747814, + 24747750, 13974896, 13981584, 13969648, - 24749974, - 24746806, + 24749910, + 24746742, 13970240, 13970496, 13976112, 9474464, 13971840, - 24746716, - 24746982, + 24746652, + 24746918, 13970112, 13970384, 13969664 @@ -295433,10 +295433,10 @@ }, { "type_name": "CSurfacePropReloadableDataTable", - "vtable_address": 31375792, + "vtable_address": 31375728, "methods": [ - 19287808, - 18816992 + 19287680, + 18816864 ], "bases": [ { @@ -295469,7 +295469,7 @@ }, { "type_name": "CSurfacePropReloadableDataTableBase", - "vtable_address": 31993336, + "vtable_address": 31993272, "methods": [], "bases": [ { @@ -295491,7 +295491,7 @@ }, { "type_name": "CSurrender", - "vtable_address": 30233312, + "vtable_address": 30233248, "methods": [ 10429120, 10472448, @@ -295559,7 +295559,7 @@ }, { "type_name": "CSwapTeams", - "vtable_address": 30233024, + "vtable_address": 30232960, "methods": [ 10429120, 10472512, @@ -295627,13 +295627,13 @@ }, { "type_name": "CTEArmorRicochet", - "vtable_address": 31911848, + "vtable_address": 31911784, "methods": [ - 23897776, - 23900272, - 23892752, - 23882976, - 16652112 + 23897712, + 23900208, + 23892688, + 23882912, + 16651984 ], "bases": [ { @@ -295666,13 +295666,13 @@ }, { "type_name": "CTEBeamEntPoint", - "vtable_address": 31912440, + "vtable_address": 31912376, "methods": [ - 23895312, - 23898128, - 23892880, - 23882992, - 16652112 + 23895248, + 23898064, + 23892816, + 23882928, + 16651984 ], "bases": [ { @@ -295716,13 +295716,13 @@ }, { "type_name": "CTEBeamEnts", - "vtable_address": 31913032, + "vtable_address": 31912968, "methods": [ - 23896368, - 23899136, - 23893008, - 23883008, - 16652112 + 23896304, + 23899072, + 23892944, + 23882944, + 16651984 ], "bases": [ { @@ -295766,13 +295766,13 @@ }, { "type_name": "CTEBeamPoints", - "vtable_address": 31913624, + "vtable_address": 31913560, "methods": [ - 23896016, - 23898800, - 23893136, - 23883024, - 16652112 + 23895952, + 23898736, + 23893072, + 23882960, + 16651984 ], "bases": [ { @@ -295816,13 +295816,13 @@ }, { "type_name": "CTEBeamRing", - "vtable_address": 31914216, + "vtable_address": 31914152, "methods": [ - 23895664, - 23898464, - 23893264, - 23883040, - 16652112 + 23895600, + 23898400, + 23893200, + 23882976, + 16651984 ], "bases": [ { @@ -295866,13 +295866,13 @@ }, { "type_name": "CTEBloodStream", - "vtable_address": 31914808, + "vtable_address": 31914744, "methods": [ - 23897424, - 23900176, - 23893392, - 23883056, - 16652112 + 23897360, + 23900112, + 23893328, + 23882992, + 16651984 ], "bases": [ { @@ -295905,21 +295905,21 @@ }, { "type_name": "CTEBubbleTrail", - "vtable_address": 31915992, + "vtable_address": 31915928, "methods": [ - 23896720, - 23899472, - 23893648, - 23883088, - 16652112, - 23883280, - 23883232, - 23883392, + 23896656, + 23899408, + 23893584, + 23883024, + 16651984, + 23883216, + 23883168, 23883328, - 23883488, - 23883440, - 23883584, - 23883536 + 23883264, + 23883424, + 23883376, + 23883520, + 23883472 ], "bases": [ { @@ -295952,13 +295952,13 @@ }, { "type_name": "CTEBubbles", - "vtable_address": 31915400, + "vtable_address": 31915336, "methods": [ - 23897072, - 23900080, - 23893520, - 23883072, - 16652112 + 23897008, + 23900016, + 23893456, + 23883008, + 16651984 ], "bases": [ { @@ -295991,13 +295991,13 @@ }, { "type_name": "CTEDust", - "vtable_address": 31920048, + "vtable_address": 31919984, "methods": [ - 23951744, - 23955360, - 23945216, - 23931952, - 16652112 + 23951680, + 23955296, + 23945152, + 23931888, + 16651984 ], "bases": [ { @@ -296030,13 +296030,13 @@ }, { "type_name": "CTEEffectDispatch", - "vtable_address": 31918208, + "vtable_address": 31918144, "methods": [ - 23952800, - 23955648, - 23946240, - 23931872, - 16652112 + 23952736, + 23955584, + 23946176, + 23931808, + 16651984 ], "bases": [ { @@ -296069,13 +296069,13 @@ }, { "type_name": "CTEEnergySplash", - "vtable_address": 31918800, + "vtable_address": 31918736, "methods": [ - 23952448, - 23955552, - 23944832, - 23931888, - 16652112 + 23952384, + 23955488, + 23944768, + 23931824, + 16651984 ], "bases": [ { @@ -296108,14 +296108,14 @@ }, { "type_name": "CTEExplosion", - "vtable_address": 31918856, + "vtable_address": 31918792, "methods": [ - 23948928, - 23953152, - 23944960, - 23931904, - 16652112, - 23931920 + 23948864, + 23953088, + 23944896, + 23931840, + 16651984, + 23931856 ], "bases": [ { @@ -296148,13 +296148,13 @@ }, { "type_name": "CTEFireBullets", - "vtable_address": 31056184, + "vtable_address": 31056120, "methods": [ - 16662624, - 16660304, - 16659824, - 16652624, - 16652112 + 16662496, + 16660176, + 16659696, + 16652496, + 16651984 ], "bases": [ { @@ -296187,13 +296187,13 @@ }, { "type_name": "CTEFizz", - "vtable_address": 31919456, + "vtable_address": 31919392, "methods": [ - 23952096, - 23955456, - 23945088, - 23931936, - 16652112 + 23952032, + 23955392, + 23945024, + 23931872, + 16651984 ], "bases": [ { @@ -296226,13 +296226,13 @@ }, { "type_name": "CTEGlowSprite", - "vtable_address": 31920640, + "vtable_address": 31920576, "methods": [ - 23951392, - 23955264, - 23945344, - 23931968, - 16652112 + 23951328, + 23955200, + 23945280, + 23931904, + 16651984 ], "bases": [ { @@ -296265,15 +296265,15 @@ }, { "type_name": "CTEImpact", - "vtable_address": 31921232, + "vtable_address": 31921168, "methods": [ - 23951040, - 23955168, - 23945472, - 23931984, - 16652112, - 23932000, - 23932016 + 23950976, + 23955104, + 23945408, + 23931920, + 16651984, + 23931936, + 23931952 ], "bases": [ { @@ -296306,13 +296306,13 @@ }, { "type_name": "CTELargeFunnel", - "vtable_address": 31921840, + "vtable_address": 31921776, "methods": [ - 23950688, - 23954832, - 23945600, - 23932032, - 16652112 + 23950624, + 23954768, + 23945536, + 23931968, + 16651984 ], "bases": [ { @@ -296345,13 +296345,13 @@ }, { "type_name": "CTEMuzzleFlash", - "vtable_address": 31922432, + "vtable_address": 31922368, "methods": [ - 23950336, - 23954496, - 23945728, - 23932048, - 16652112 + 23950272, + 23954432, + 23945664, + 23931984, + 16651984 ], "bases": [ { @@ -296384,13 +296384,13 @@ }, { "type_name": "CTEPhysicsProp", - "vtable_address": 31923024, + "vtable_address": 31922960, "methods": [ - 23949984, - 23954160, - 23945856, - 23932064, - 23932080 + 23949920, + 23954096, + 23945792, + 23932000, + 23932016 ], "bases": [ { @@ -296423,13 +296423,13 @@ }, { "type_name": "CTESmoke", - "vtable_address": 31923616, + "vtable_address": 31923552, "methods": [ - 23949632, - 23953824, - 23945984, - 23932096, - 16652112 + 23949568, + 23953760, + 23945920, + 23932032, + 16651984 ], "bases": [ { @@ -296462,21 +296462,21 @@ }, { "type_name": "CTESparks", - "vtable_address": 31924208, + "vtable_address": 31924144, "methods": [ - 23949280, - 23953488, - 23946112, - 23932112, - 16652112, - 23932368, - 23932320, - 23932480, + 23949216, + 23953424, + 23946048, + 23932048, + 16651984, + 23932304, + 23932256, 23932416, - 23932576, - 23932528, - 23932672, - 23932624 + 23932352, + 23932512, + 23932464, + 23932608, + 23932560 ], "bases": [ { @@ -296509,11 +296509,11 @@ }, { "type_name": "CTakeDamageInfo", - "vtable_address": 30496584, + "vtable_address": 30496520, "methods": [ 12371904, 12417840, - 22493760 + 22493632 ], "bases": [], "model": { @@ -296524,32 +296524,32 @@ }, { "type_name": "CTankTargetChange", - "vtable_address": 31793960, + "vtable_address": 31793896, "methods": [ 11766592, - 22300128, - 22303072, + 22300000, + 22302944, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 22265408, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 22265280, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -296561,21 +296561,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262272, - 22268272, - 22266640, + 26427360, + 22262144, + 22268144, + 22266512, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -296599,83 +296599,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 22269056, + 22268928, 9637216, 9636096, 11746864, @@ -296683,16 +296683,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -296713,7 +296713,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -296726,28 +296726,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -296758,7 +296758,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -296769,7 +296769,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -296813,32 +296813,32 @@ }, { "type_name": "CTankTrainAI", - "vtable_address": 31795928, + "vtable_address": 31795864, "methods": [ 11766592, - 22269280, - 22306960, + 22269152, + 22306832, 12023536, - 26419168, - 22269392, - 20141632, - 22284880, - 26419632, - 26419200, - 26419200, - 22322896, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 22269264, + 20141504, + 22284752, + 26419568, + 26419136, + 26419136, + 22322768, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 9640064, 9635872, 9665808, @@ -296850,21 +296850,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22262288, - 22268272, - 22266656, + 26427360, + 22262160, + 22268144, + 22266528, 9635312, 11775376, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -296888,83 +296888,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, 11810544, - 19834496, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -296972,16 +296972,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 22478048, - 21311696, + 22477920, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -297002,7 +297002,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -297015,28 +297015,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -297047,7 +297047,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -297058,7 +297058,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -297102,33 +297102,33 @@ }, { "type_name": "CTeam", - "vtable_address": 30444960, + "vtable_address": 30444896, "methods": [ 13506768, 12215728, 12215568, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, 12325856, 12270160, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -297139,12 +297139,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203168, 12334272, 12204720, @@ -297152,8 +297152,8 @@ 12238080, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -297177,83 +297177,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12206720, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -297261,16 +297261,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, 12202704, - 21311696, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -297291,7 +297291,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -297304,28 +297304,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -297336,7 +297336,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -297347,7 +297347,7 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 12203184, 12279104 ], @@ -297382,7 +297382,7 @@ }, { "type_name": "CTeamColorsAssignedSystem", - "vtable_address": 31280056, + "vtable_address": 31279992, "methods": [ 9634368, 9634384, @@ -297440,12 +297440,12 @@ 9635216, 9635232, 9635248, - 17348528, + 17348400, 9635280, - 17348480, - 17346544, - 17346560, - 17343152 + 17348352, + 17346416, + 17346432, + 17343024 ], "bases": [ { @@ -297478,14 +297478,14 @@ }, { "type_name": "CTeamRecipientFilter", - "vtable_address": 31393616, + "vtable_address": 31393552, "methods": [ - 19464896, - 19465136, - 19464368, - 19464352, - 19464384, - 19464400 + 19464768, + 19465008, + 19464240, + 19464224, + 19464256, + 19464272 ], "bases": [ { @@ -297518,37 +297518,37 @@ }, { "type_name": "CTeamplayRules", - "vtable_address": 30496616, + "vtable_address": 30496552, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 22493760 + "offset_to_top": 22493632 } } }, { "type_name": "CTeamplayRules", - "vtable_address": 31797896, + "vtable_address": 31797832, "methods": [ - 22277168, + 22277040, 15970800, - 20616368, + 20616240, 15970816, 15970832, 15970848, 15970864, - 20616384, - 20616400, + 20616256, + 20616272, 15970880, 15970896, 15970912, - 20616416, + 20616288, 15970928, 15970944, - 20632624, + 20632496, 15970960, - 20616432, + 20616304, 15970976 ], "bases": [ @@ -297592,11 +297592,11 @@ }, { "type_name": "CTempEntsSystem", - "vtable_address": 31911272, + "vtable_address": 31911208, "methods": [ - 23908800, - 23882944, - 23882960 + 23908736, + 23882880, + 23882896 ], "bases": [ { @@ -297618,33 +297618,33 @@ }, { "type_name": "CTestEffect", - "vtable_address": 31473216, + "vtable_address": 31473152, "methods": [ 13506768, - 20156704, - 20156720, + 20156576, + 20156592, 12023536, - 26419168, - 20159792, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419104, + 20159664, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -297655,21 +297655,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20155104, - 20399920, - 20156352, + 26427360, + 20154976, + 20399792, + 20156224, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -297693,83 +297693,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 20158704, + 20158576, 9637216, 9636096, 11746864, @@ -297777,16 +297777,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20350128, - 21311696, + 20350000, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -297807,7 +297807,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -297820,28 +297820,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -297852,7 +297852,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -297863,7 +297863,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -297896,32 +297896,32 @@ }, { "type_name": "CTestPulseIO", - "vtable_address": 30678640, + "vtable_address": 30678576, "methods": [ 13506768, 13720512, 13720080, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -297933,21 +297933,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21008000, + 26427360, + 21007872, 13709040, 13704272, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -297971,83 +297971,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -298055,16 +298055,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -298085,7 +298085,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -298098,28 +298098,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -298130,7 +298130,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -298141,7 +298141,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -298196,33 +298196,33 @@ }, { "type_name": "CTextureBasedAnimatable", - "vtable_address": 31416576, + "vtable_address": 31416512, "methods": [ 13522144, - 19571120, - 19571296, - 18377504, - 26419168, - 19523568, - 18010864, - 19523616, - 26419632, - 26419200, - 26419200, - 19623504, - 18378912, - 18011056, - 19835392, - 19835328, + 19570992, + 19571168, + 18377376, + 26419104, + 19523440, + 18010736, + 19523488, + 26419568, + 26419136, + 26419136, + 19623376, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, - 19631456, - 18378528, - 19829152, - 19833424, + 18010800, + 19877792, + 19631328, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -298233,21 +298233,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19512224, - 19742480, - 19522064, + 26427360, + 19512096, + 19742352, + 19521936, 9635312, - 19574304, - 18308160, + 19574176, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -298271,83 +298271,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -298355,16 +298355,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -298385,7 +298385,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -298398,28 +298398,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -298430,7 +298430,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -298441,35 +298441,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -298513,12 +298513,12 @@ }, { "type_name": "CThinkContextsSaveDataOps", - "vtable_address": 31431192, + "vtable_address": 31431128, "methods": [ - 19894048, - 20136528, - 19828704, - 19828720, + 19893920, + 20136400, + 19828576, + 19828592, 9634272, 9634288 ], @@ -298553,7 +298553,7 @@ }, { "type_name": "CThreadEvent", - "vtable_address": 30153464, + "vtable_address": 30153400, "methods": [], "bases": [], "model": { @@ -298564,7 +298564,7 @@ }, { "type_name": "CThreadedJob", - "vtable_address": 30507456, + "vtable_address": 30507392, "methods": [], "bases": [ { @@ -298607,7 +298607,7 @@ }, { "type_name": "CThreadedJob", - "vtable_address": 32063384, + "vtable_address": 32063320, "methods": [], "bases": [ { @@ -298650,7 +298650,7 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 30317592, + "vtable_address": 30317528, "methods": [ 11655760, 11655696, @@ -298728,19 +298728,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31003832, + "vtable_address": 31003768, "methods": [ - 16600768, - 16600832, - 16600208, - 16600656, - 16600560, - 16600224, - 16600240, - 16600416, + 16600640, 16600704, - 16600272, - 16600288 + 16600080, + 16600528, + 16600432, + 16600096, + 16600112, + 16600288, + 16600576, + 16600144, + 16600160 ], "bases": [ { @@ -298806,16 +298806,16 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31363880, + "vtable_address": 31363816, "methods": [ 15983888, 15983760, - 18818240, - 18820416, + 18818112, + 18820288, 15983568, 15974080, 15974112, - 18818272, + 18818144, 15983440, 15974176, 15974208 @@ -298916,16 +298916,16 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31364160, + "vtable_address": 31364096, "methods": [ 15983952, 15983824, - 18818256, - 18820464, + 18818128, + 18820336, 15983664, 15974096, 15974128, - 18818288, + 18818160, 15983504, 15974192, 15974224 @@ -299026,19 +299026,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31909232, + "vtable_address": 31909168, "methods": [ - 23743392, 23743328, - 23741600, - 23743280, - 23743184, - 23741616, - 23741632, - 23741696, + 23743264, + 23741536, + 23743216, 23743120, - 23741664, - 23741680 + 23741552, + 23741568, + 23741632, + 23743056, + 23741600, + 23741616 ], "bases": [ { @@ -299104,7 +299104,7 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 30518008, + "vtable_address": 30517944, "methods": [ 12440464, 12440400, @@ -299182,21 +299182,21 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31550800, + "vtable_address": 31550736, "methods": [ - 20626464, - 20626208, - 20620720, - 20626672, - 20625824, - 20620736, - 20620800, - 20620816, - 20630240, - 20620768, - 20620784, - 20655360, - 20655744 + 20626336, + 20626080, + 20620592, + 20626544, + 20625696, + 20620608, + 20620672, + 20620688, + 20630112, + 20620640, + 20620656, + 20655232, + 20655616 ], "bases": [ { @@ -299262,19 +299262,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31543096, + "vtable_address": 31543032, "methods": [ - 20626336, - 20626080, - 20620832, - 20626576, - 20625632, - 20620848, - 20620864, - 20621312, - 20630048, - 20620896, - 20620912 + 20626208, + 20625952, + 20620704, + 20626448, + 20625504, + 20620720, + 20620736, + 20621184, + 20629920, + 20620768, + 20620784 ], "bases": [ { @@ -299340,19 +299340,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31550048, + "vtable_address": 31549984, "methods": [ - 20626400, - 20626144, - 20620928, - 20626624, - 20625728, - 20620944, - 20620960, - 20621024, - 20630112, - 20620992, - 20621008 + 20626272, + 20626016, + 20620800, + 20626496, + 20625600, + 20620816, + 20620832, + 20620896, + 20629984, + 20620864, + 20620880 ], "bases": [ { @@ -299418,19 +299418,19 @@ }, { "type_name": "CTier2AppSystem", - "vtable_address": 31543464, + "vtable_address": 31543400, "methods": [ - 20626272, - 20626016, - 20621248, - 20626528, - 20625920, - 20621264, - 20621280, - 20621296, - 20630176, - 20621056, - 20621072 + 20626144, + 20625888, + 20621120, + 20626400, + 20625792, + 20621136, + 20621152, + 20621168, + 20630048, + 20620928, + 20620944 ], "bases": [ { @@ -299496,32 +299496,32 @@ }, { "type_name": "CTimerEntity", - "vtable_address": 31589776, + "vtable_address": 31589712, "methods": [ 13506768, - 20942976, - 20943184, + 20942848, + 20943056, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20936992, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20936864, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, - 20911792, - 19933344, - 19877920, + 20911664, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -299533,21 +299533,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903840, - 20910048, - 20906592, + 26427360, + 20903712, + 20909920, + 20906464, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -299571,83 +299571,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -299655,16 +299655,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 20975920, - 21311696, + 20975792, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -299685,7 +299685,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -299698,28 +299698,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -299730,7 +299730,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -299741,7 +299741,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -299796,33 +299796,33 @@ }, { "type_name": "CTonemapController2", - "vtable_address": 30354192, + "vtable_address": 30354128, "methods": [ 13506768, 12025552, 12025568, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12031936, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12084032, 12087168, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -299833,12 +299833,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024832, 12096352, 12025840, @@ -299846,8 +299846,8 @@ 12034944, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -299871,83 +299871,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027392, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -299955,16 +299955,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -299985,7 +299985,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -299998,28 +299998,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -300030,7 +300030,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -300041,7 +300041,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -300074,7 +300074,7 @@ }, { "type_name": "CTonemapController2", - "vtable_address": 32279328, + "vtable_address": 32279264, "methods": [], "bases": [], "model": { @@ -300085,33 +300085,33 @@ }, { "type_name": "CTonemapController2Alias_env_tonemap_controller2", - "vtable_address": 30352224, + "vtable_address": 30352160, "methods": [ 13506768, 12025616, 12025632, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 12031936, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12084032, 12087168, - 20141328, - 19835392, - 19835328, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -300122,12 +300122,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024864, 12096352, 12025824, @@ -300135,8 +300135,8 @@ 12034944, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -300160,83 +300160,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 12027392, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -300244,16 +300244,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -300274,7 +300274,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -300287,28 +300287,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -300319,7 +300319,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -300330,7 +300330,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -300374,32 +300374,32 @@ }, { "type_name": "CTonemapTrigger", - "vtable_address": 30356160, + "vtable_address": 30356096, "methods": [ 11931776, 12030992, 12031456, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 12054912, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -300411,21 +300411,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12024848, 12027456, 12025856, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -300449,83 +300449,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -300533,16 +300533,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -300563,7 +300563,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -300576,28 +300576,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -300608,7 +300608,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -300619,35 +300619,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 12030800, @@ -300721,13 +300721,13 @@ }, { "type_name": "CToolGameSimulationAPI", - "vtable_address": 31803056, + "vtable_address": 31802992, "methods": [ 9634368, 9634384, 9634400, - 22277920, - 22277840, + 22277792, + 22277712, 9634448, 9634464, 9634480, @@ -300779,58 +300779,58 @@ 9635216, 9635232, 9635248, - 22262464, + 22262336, 9635280, + 22262320, + 22312672, + 22312944, + 22262304, + 22286384, + 22300208, + 22320608, + 22318752, + 22306944, + 22313792, + 22307024, + 22313984, + 22341072, + 22269328, + 22542448, + 22486240, + 22285824, + 22262368, 22262448, - 22312800, - 22313072, - 22262432, - 22286512, - 22300336, - 22320736, - 22318880, - 22307072, - 22313920, - 22307152, - 22314112, - 22341200, - 22269456, - 22542576, - 22486368, - 22285952, - 22262496, - 22262576, - 22262592, - 22262608, - 22376640, - 22311504, - 22262656, - 22309184, - 22309296, - 22310704, - 22310592, - 22309408, - 22314928, - 22307232, - 22310080, - 22311920, - 22314560, - 22309504, - 22309616, - 22354256, - 22501888, - 22502784, - 22262672, - 22313648, - 22315392, - 22334944, - 22498720, - 22305552, - 22311072, - 22325328, - 22313360, - 22508736, - 22332800 + 22262464, + 22262480, + 22376512, + 22311376, + 22262528, + 22309056, + 22309168, + 22310576, + 22310464, + 22309280, + 22314800, + 22307104, + 22309952, + 22311792, + 22314432, + 22309376, + 22309488, + 22354128, + 22501760, + 22502656, + 22262544, + 22313520, + 22315264, + 22334816, + 22498592, + 22305424, + 22310944, + 22325200, + 22313232, + 22508608, + 22332672 ], "bases": [ { @@ -300883,52 +300883,52 @@ }, { "type_name": "CToolGameSimulationAPI", - "vtable_address": 31803936, - "methods": [ - 22287024, - 22300880, - 22321376, - 22319360, - 22308000, - 22312128, - 22308080, - 22312320, - 22344304, - 22269968, - 22542912, - 22486448, - 22299664, - 22304480, - 22286480, - 22286496, - 22298512, - 22376864, - 22311712, - 22286464, - 22310176, - 22310288, - 22310944, - 22310832, - 22310400, - 22315104, - 22307648, - 22310496, - 22312512, - 22314304, - 22309792, - 22309904, - 22355792, - 22502752, - 22503408, - 22300224, - 22313904, - 22315712, - 22335392, - 22498960, - 22305808, - 22311392, - 22326256, - 22313504 + "vtable_address": 31803872, + "methods": [ + 22286896, + 22300752, + 22321248, + 22319232, + 22307872, + 22312000, + 22307952, + 22312192, + 22344176, + 22269840, + 22542784, + 22486320, + 22299536, + 22304352, + 22286352, + 22286368, + 22298384, + 22376736, + 22311584, + 22286336, + 22310048, + 22310160, + 22310816, + 22310704, + 22310272, + 22314976, + 22307520, + 22310368, + 22312384, + 22314176, + 22309664, + 22309776, + 22355664, + 22502624, + 22503280, + 22300096, + 22313776, + 22315584, + 22335264, + 22498832, + 22305680, + 22311264, + 22326128, + 22313376 ], "bases": [ { @@ -300981,11 +300981,11 @@ }, { "type_name": "CToolGameSimulationAPI", - "vtable_address": 31804304, + "vtable_address": 31804240, "methods": [ 9890768, - 22508976, - 22333440, + 22508848, + 22333312, 9890816 ], "bases": [ @@ -301039,11 +301039,11 @@ }, { "type_name": "CTouchExpansionComponent", - "vtable_address": 31895528, + "vtable_address": 31895464, "methods": [ - 23020192, - 23019712, - 23020880 + 23020128, + 23019648, + 23020816 ], "bases": [ { @@ -301065,7 +301065,7 @@ }, { "type_name": "CTraceFilter", - "vtable_address": 30180152, + "vtable_address": 30180088, "methods": [ 9890832, 9895856, @@ -301102,11 +301102,11 @@ }, { "type_name": "CTraceFilterDoor", - "vtable_address": 31729736, + "vtable_address": 31729672, "methods": [ - 21598640, - 21601328, - 21601760 + 21598512, + 21601200, + 21601632 ], "bases": [ { @@ -301161,11 +301161,11 @@ }, { "type_name": "CTraceFilterEntityPush", - "vtable_address": 31376008, + "vtable_address": 31375944, "methods": [ - 18813376, - 18819520, - 18813360 + 18813248, + 18819392, + 18813232 ], "bases": [ { @@ -301220,11 +301220,11 @@ }, { "type_name": "CTraceFilterEntitySweep", - "vtable_address": 31375968, + "vtable_address": 31375904, "methods": [ - 18813344, - 18819504, - 18813360 + 18813216, + 18819376, + 18813232 ], "bases": [ { @@ -301279,11 +301279,11 @@ }, { "type_name": "CTraceFilterForPlayerHeadCollision", - "vtable_address": 31287848, + "vtable_address": 31287784, "methods": [ - 17550672, - 17551552, - 17563344 + 17550544, + 17551424, + 17563216 ], "bases": [ { @@ -301338,11 +301338,11 @@ }, { "type_name": "CTraceFilterGroundEntities", - "vtable_address": 31905280, + "vtable_address": 31905216, "methods": [ - 23296416, - 23296784, - 23296624 + 23296352, + 23296720, + 23296560 ], "bases": [ { @@ -301408,11 +301408,11 @@ }, { "type_name": "CTraceFilterIngnoreGrenades", - "vtable_address": 31071080, + "vtable_address": 31071016, "methods": [ - 16729024, - 16730640, - 16730960 + 16728896, + 16730512, + 16730832 ], "bases": [ { @@ -301467,11 +301467,11 @@ }, { "type_name": "CTraceFilterKnifeIgnoreTeammates", - "vtable_address": 31250696, + "vtable_address": 31250632, "methods": [ - 17172704, - 17173328, - 17182464 + 17172576, + 17173200, + 17182336 ], "bases": [ { @@ -301526,10 +301526,10 @@ }, { "type_name": "CTraceFilterLOS", - "vtable_address": 31363528, + "vtable_address": 31363464, "methods": [ - 18816656, - 18819424, + 18816528, + 18819296, 9698544 ], "bases": [ @@ -301574,11 +301574,11 @@ }, { "type_name": "CTraceFilterList", - "vtable_address": 31375928, + "vtable_address": 31375864, "methods": [ - 18844752, - 18844288, - 18813280 + 18844624, + 18844160, + 18813152 ], "bases": [ { @@ -301633,11 +301633,11 @@ }, { "type_name": "CTraceFilterNoNPCsOrPlayer", - "vtable_address": 31375888, + "vtable_address": 31375824, "methods": [ - 18816640, - 18819536, - 18813184 + 18816512, + 18819408, + 18813056 ], "bases": [ { @@ -301692,7 +301692,7 @@ }, { "type_name": "CTraceFilterNoPlayersAndFlashbangPassableAnims", - "vtable_address": 30318608, + "vtable_address": 30318544, "methods": [ 11712144, 11712624, @@ -301751,11 +301751,11 @@ }, { "type_name": "CTraceFilterPlayerMovementCS", - "vtable_address": 31287768, + "vtable_address": 31287704, "methods": [ - 17550640, - 17551536, - 17563728 + 17550512, + 17551408, + 17563600 ], "bases": [ { @@ -301810,11 +301810,11 @@ }, { "type_name": "CTraceFilterPushFinal", - "vtable_address": 31687264, + "vtable_address": 31687200, "methods": [ - 21066848, - 21069552, - 21126272 + 21066720, + 21069424, + 21126144 ], "bases": [ { @@ -301869,11 +301869,11 @@ }, { "type_name": "CTraceFilterPushMove", - "vtable_address": 31687224, + "vtable_address": 31687160, "methods": [ - 21066864, - 21069568, - 21079792 + 21066736, + 21069440, + 21079664 ], "bases": [ { @@ -301928,11 +301928,11 @@ }, { "type_name": "CTraceFilterQueryCache", - "vtable_address": 31745472, + "vtable_address": 31745408, "methods": [ - 21599440, - 21601344, - 21599408 + 21599312, + 21601216, + 21599280 ], "bases": [ { @@ -301987,11 +301987,11 @@ }, { "type_name": "CTraceFilterTaserIgnoreTeammates", - "vtable_address": 31265992, + "vtable_address": 31265928, "methods": [ - 17172896, - 17173344, - 17182576 + 17172768, + 17173216, + 17182448 ], "bases": [ { @@ -302046,11 +302046,11 @@ }, { "type_name": "CTraceFilterWalkableEntities", - "vtable_address": 31897696, + "vtable_address": 31897632, "methods": [ - 23026432, - 23029264, - 23057872 + 23026368, + 23029200, + 23057808 ], "bases": [ { @@ -302105,32 +302105,32 @@ }, { "type_name": "CTriggerActiveWeaponDetect", - "vtable_address": 31863136, + "vtable_address": 31863072, "methods": [ 11931776, - 22399904, - 22400832, - 18377504, - 26419168, - 20153552, - 18010864, - 22272304, - 26419632, - 26419200, - 26419200, + 22399776, + 22400704, + 18377376, + 26419104, + 20153424, + 18010736, + 22272176, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -302142,21 +302142,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263696, - 22274736, - 22267120, + 26427360, + 22263568, + 22274608, + 22266992, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -302180,83 +302180,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -302264,16 +302264,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -302294,7 +302294,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -302307,28 +302307,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -302339,7 +302339,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -302350,38 +302350,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22263664, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22263536, 11742352, - 22332736, + 22332608, 10058448, 11742352, 11749904, @@ -302452,11 +302452,11 @@ }, { "type_name": "CTriggerAsyncQueryComponent", - "vtable_address": 31822752, + "vtable_address": 31822688, "methods": [ - 22317024, - 22317680, - 22327872 + 22316896, + 22317552, + 22327744 ], "bases": [ { @@ -302489,13 +302489,13 @@ }, { "type_name": "CTriggerAsyncQuerySystem", - "vtable_address": 31822240, + "vtable_address": 31822176, "methods": [ 9634368, 9634384, 9634400, 9634416, - 22263136, + 22263008, 9634448, 9634464, 9634480, @@ -302521,7 +302521,7 @@ 9634800, 9634816, 9634832, - 22505136, + 22505008, 9634864, 9634880, 9634896, @@ -302547,12 +302547,12 @@ 9635216, 9635232, 9635248, - 22263104, + 22262976, 9635280, - 22263088, - 22298272, - 22297808, - 22263072 + 22262960, + 22298144, + 22297680, + 22262944 ], "bases": [ { @@ -302585,32 +302585,32 @@ }, { "type_name": "CTriggerBombReset", - "vtable_address": 30211464, + "vtable_address": 30211400, "methods": [ 11931776, 10082096, 10083024, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 10271472, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -302622,21 +302622,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10058496, 10063568, 10059632, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -302660,83 +302660,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 10063504, @@ -302744,16 +302744,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -302774,7 +302774,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -302787,28 +302787,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -302819,7 +302819,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -302830,35 +302830,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -302932,33 +302932,33 @@ }, { "type_name": "CTriggerBrush", - "vtable_address": 31642608, + "vtable_address": 31642544, "methods": [ 13522144, - 21095984, - 21096176, - 18377504, - 26419168, - 18094240, - 18010864, - 21069216, - 26419632, - 26419200, - 26419200, - 18377792, - 18378912, - 18011056, - 19835392, - 19835328, + 21095856, + 21096048, + 18377376, + 26419104, + 18094112, + 18010736, + 21069088, + 26419568, + 26419136, + 26419136, + 18377664, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -302969,21 +302969,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 21065664, - 21362496, - 21069600, + 26427360, + 21065536, + 21362368, + 21069472, 9635312, 13440112, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -303007,100 +303007,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 21122080, + 21121952, 9637216, 9636096, - 21121472, + 21121344, 11746960, - 21121776, + 21121648, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -303121,7 +303121,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -303134,28 +303134,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -303166,7 +303166,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -303177,35 +303177,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -303249,32 +303249,32 @@ }, { "type_name": "CTriggerBuoyancy", - "vtable_address": 31045800, + "vtable_address": 31045736, "methods": [ 11931776, - 16672432, - 16672688, - 18377504, - 26419168, - 20153552, - 18010864, - 16692976, - 26419632, - 26419200, - 26419200, - 16655280, - 16655360, - 18011056, - 19835392, - 19835328, + 16672304, + 16672560, + 18377376, + 26419104, + 20153424, + 18010736, + 16692848, + 26419568, + 26419136, + 26419136, + 16655152, + 16655232, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -303286,21 +303286,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16652496, + 26427360, + 16652368, + 16653536, 16653664, - 16653792, 9635312, - 16671008, - 18308160, + 16670880, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -303324,83 +303324,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -303408,16 +303408,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -303438,7 +303438,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -303451,28 +303451,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -303483,7 +303483,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -303494,39 +303494,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 16655408, - 16655456, + 16655280, + 16655328, 11742352, 11749904, 10058464, @@ -303596,32 +303596,32 @@ }, { "type_name": "CTriggerCallback", - "vtable_address": 30766168, + "vtable_address": 30766104, "methods": [ 11931776, 13876720, 13877648, - 18377504, - 26419168, - 20153552, - 18010864, - 22463216, - 26419632, - 26419200, - 26419200, + 18377376, + 26419104, + 20153424, + 18010736, + 22463088, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -303633,21 +303633,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22433984, + 26427360, + 22433856, 13867552, 13866160, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -303671,83 +303671,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -303755,16 +303755,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -303785,7 +303785,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -303798,28 +303798,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -303830,7 +303830,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -303841,38 +303841,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22433872, + 22433744, 10058448, 11742352, 11749904, @@ -303943,32 +303943,32 @@ }, { "type_name": "CTriggerDetectBulletFire", - "vtable_address": 31867704, + "vtable_address": 31867640, "methods": [ 11931776, - 22400096, - 22400944, - 18377504, - 26419168, - 20153552, - 18010864, - 22272144, - 26419632, - 26419200, - 26419200, + 22399968, + 22400816, + 18377376, + 26419104, + 20153424, + 18010736, + 22272016, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -303980,21 +303980,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263728, - 22274736, - 22267152, + 26427360, + 22263600, + 22274608, + 22267024, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -304018,83 +304018,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -304102,16 +304102,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -304132,7 +304132,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -304145,28 +304145,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -304177,7 +304177,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -304188,35 +304188,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 22322736, - 18004224, - 18004240, - 18004224, + 18004096, + 22322608, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -304290,32 +304290,32 @@ }, { "type_name": "CTriggerDetectExplosion", - "vtable_address": 31869960, + "vtable_address": 31869896, "methods": [ 11931776, - 22400192, - 22401056, - 18377504, - 26419168, - 20153552, - 18010864, - 22272304, - 26419632, - 26419200, - 26419200, - 22282992, - 22298560, - 18011056, - 19835392, - 19835328, + 22400064, + 22400928, + 18377376, + 26419104, + 20153424, + 18010736, + 22272176, + 26419568, + 26419136, + 26419136, + 22282864, + 22298432, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -304327,21 +304327,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263744, - 22274736, - 22267168, + 26427360, + 22263616, + 22274608, + 22267040, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -304365,83 +304365,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -304449,16 +304449,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -304479,7 +304479,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -304492,28 +304492,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -304524,7 +304524,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -304535,35 +304535,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -304647,32 +304647,32 @@ }, { "type_name": "CTriggerFan", - "vtable_address": 30448960, + "vtable_address": 30448896, "methods": [ 11931776, 12224656, 12225120, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 12284736, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -304684,21 +304684,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12203264, 12273104, 12204752, 9635312, 12238272, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -304722,83 +304722,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -304806,16 +304806,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -304836,7 +304836,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -304849,28 +304849,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -304881,7 +304881,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -304892,35 +304892,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 12203280, @@ -304994,7 +304994,7 @@ }, { "type_name": "CTriggerFan::NetworkVar_m_RampTimer", - "vtable_address": 30446944, + "vtable_address": 30446880, "methods": [ 11520720, 12257312, @@ -305021,32 +305021,32 @@ }, { "type_name": "CTriggerGameEvent", - "vtable_address": 31571568, + "vtable_address": 31571504, "methods": [ 11931776, - 20952960, - 20953504, - 18377504, - 26419168, - 20153552, - 18010864, - 20911008, - 26419632, - 26419200, - 26419200, + 20952832, + 20953376, + 18377376, + 26419104, + 20153424, + 18010736, + 20910880, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -305058,21 +305058,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 20903472, - 20911392, - 20906448, + 26427360, + 20903344, + 20911264, + 20906320, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -305096,83 +305096,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -305180,16 +305180,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -305210,7 +305210,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -305223,28 +305223,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -305255,7 +305255,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -305266,39 +305266,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 20956976, - 20956272, + 20956848, + 20956144, 11742352, 11749904, 10058464, @@ -305368,32 +305368,32 @@ }, { "type_name": "CTriggerGravity", - "vtable_address": 31850176, + "vtable_address": 31850112, "methods": [ 11931776, - 22399680, - 22399696, - 18377504, - 26419168, - 20153552, - 18010864, - 22272208, - 26419632, - 26419200, - 26419200, + 22399552, + 22399568, + 18377376, + 26419104, + 20153424, + 18010736, + 22272080, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -305405,21 +305405,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263488, - 22274736, - 22267024, + 26427360, + 22263360, + 22274608, + 22266896, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -305443,83 +305443,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -305527,16 +305527,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -305557,7 +305557,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -305570,28 +305570,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -305602,7 +305602,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -305613,35 +305613,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -305715,32 +305715,32 @@ }, { "type_name": "CTriggerHostageReset", - "vtable_address": 30213720, + "vtable_address": 30213656, "methods": [ 11931776, 10082560, 10083504, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 10272720, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -305752,21 +305752,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10058512, 10063568, 10059648, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -305790,83 +305790,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 10075760, @@ -305874,16 +305874,16 @@ 10074112, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -305904,7 +305904,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -305917,28 +305917,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -305949,7 +305949,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -305960,35 +305960,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 10058432, @@ -306062,32 +306062,32 @@ }, { "type_name": "CTriggerHurt", - "vtable_address": 30763896, + "vtable_address": 30763832, "methods": [ 11931776, 13881920, 13882560, - 18377504, - 26419168, - 20153552, - 18010864, - 22462688, - 26419632, - 26419200, - 26419200, + 18377376, + 26419104, + 20153424, + 18010736, + 22462560, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -306099,21 +306099,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22403856, + 26427360, + 22403728, 13867552, 13866144, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -306137,83 +306137,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -306221,16 +306221,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -306251,7 +306251,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -306264,28 +306264,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -306296,7 +306296,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -306307,45 +306307,45 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22279728, - 22498448, + 22279600, + 22498320, 11742352, 11749904, 10058464, 11751552, 13865536, - 22497616 + 22497488 ], "bases": [ { @@ -306411,32 +306411,32 @@ }, { "type_name": "CTriggerImpact", - "vtable_address": 31858624, + "vtable_address": 31858560, "methods": [ 11931776, - 22402368, - 22402528, - 18377504, - 26419168, - 20153552, - 18010864, - 22303168, - 26419632, - 26419200, - 26419200, + 22402240, + 22402400, + 18377376, + 26419104, + 20153424, + 18010736, + 22303040, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 22278000, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 22277872, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -306448,21 +306448,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263536, - 22274768, - 22267088, + 26427360, + 22263408, + 22274640, + 22266960, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -306486,83 +306486,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -306570,16 +306570,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -306600,7 +306600,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -306613,28 +306613,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -306645,7 +306645,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -306656,38 +306656,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22269424, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22269296, 11742352, - 22272816, + 22272688, 10058448, 11742352, 11749904, @@ -306769,32 +306769,32 @@ }, { "type_name": "CTriggerLerpObject", - "vtable_address": 30768424, + "vtable_address": 30768360, "methods": [ 11931776, 13894560, 13894816, - 18377504, - 26419168, - 22435504, - 18010864, - 22272304, - 26419632, - 26419200, - 26419200, - 22435568, + 18377376, + 26419104, + 22435376, + 18010736, + 22272176, + 26419568, + 26419136, + 26419136, + 22435440, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -306806,21 +306806,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22434896, + 26427360, + 22434768, 13867552, 13866176, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -306844,83 +306844,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -306928,16 +306928,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -306958,7 +306958,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -306971,28 +306971,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -307003,7 +307003,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -307014,39 +307014,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22499184, - 22435888, + 22499056, + 22435760, 11742352, 11749904, 10058464, @@ -307116,32 +307116,32 @@ }, { "type_name": "CTriggerLook", - "vtable_address": 31834736, + "vtable_address": 31834672, "methods": [ 11931776, - 22402912, - 22403184, - 18377504, - 26419168, - 20153552, - 18010864, - 22463760, - 26419632, - 26419200, - 26419200, + 22402784, + 22403056, + 18377376, + 26419104, + 20153424, + 18010736, + 22463632, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, - 9634320, - 18013008, - 22278112, 18010928, - 19877920, + 19835264, + 19835200, + 9634320, + 18012880, + 22277984, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -307153,21 +307153,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263312, - 22274768, - 22266880, + 26427360, + 22263184, + 22274640, + 22266752, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -307191,100 +307191,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, - 22411600, + 22411472, 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -307305,7 +307305,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -307318,28 +307318,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -307350,7 +307350,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -307361,39 +307361,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22263328, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22263200, 11742352, - 22325104, - 22265536, + 22324976, + 22265408, 11742352, 11749904, 10058464, @@ -307485,32 +307485,32 @@ }, { "type_name": "CTriggerMultiple", - "vtable_address": 30759384, + "vtable_address": 30759320, "methods": [ 11931776, 13878608, 13879136, - 18377504, - 26419168, - 20153552, - 18010864, - 22407248, - 26419632, - 26419200, - 26419200, + 18377376, + 26419104, + 20153424, + 18010736, + 22407120, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -307522,21 +307522,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22406464, + 26427360, + 22406336, 13867552, 13866112, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -307560,83 +307560,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -307644,16 +307644,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -307674,7 +307674,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -307687,28 +307687,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -307719,7 +307719,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -307730,36 +307730,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22271968, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22271840, 11742352, 10058432, 10058448, @@ -307832,7 +307832,7 @@ }, { "type_name": "CTriggerMultiple", - "vtable_address": 33217568, + "vtable_address": 33217504, "methods": [], "bases": [], "model": { @@ -307843,32 +307843,32 @@ }, { "type_name": "CTriggerOnce", - "vtable_address": 31830224, + "vtable_address": 31830160, "methods": [ 11931776, - 22401600, - 22401936, - 18377504, - 26419168, - 20153552, - 18010864, - 22302976, - 26419632, - 26419200, - 26419200, + 22401472, + 22401808, + 18377376, + 26419104, + 20153424, + 18010736, + 22302848, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -307880,21 +307880,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263280, - 22274768, - 22266912, + 26427360, + 22263152, + 22274640, + 22266784, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -307918,83 +307918,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -308002,16 +308002,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -308032,7 +308032,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -308045,28 +308045,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -308077,7 +308077,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -308088,36 +308088,36 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22271968, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22271840, 11742352, 10058432, 10058448, @@ -308201,32 +308201,32 @@ }, { "type_name": "CTriggerPhysics", - "vtable_address": 31865392, + "vtable_address": 31865328, "methods": [ 11931776, - 22400000, - 22400032, - 18377504, - 26419168, - 22269984, - 18010864, - 22464832, - 26419632, - 26419200, - 26419200, + 22399872, + 22399904, + 18377376, + 26419104, + 22269856, + 18010736, + 22464704, + 26419568, + 26419136, + 26419136, 11765824, - 22273280, - 18011056, - 19835392, - 19835328, + 22273152, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 22266096, - 19829152, + 22265968, + 19829024, 11747872, 9635872, 9665808, @@ -308238,21 +308238,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263712, - 22274736, - 22267136, + 26427360, + 22263584, + 22274608, + 22267008, 9635312, - 22353888, - 18308160, + 22353760, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -308276,83 +308276,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -308360,16 +308360,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -308390,7 +308390,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -308403,28 +308403,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -308435,7 +308435,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -308446,44 +308446,44 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22273360, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22273232, 11742352, - 22285136, - 22308144, + 22285008, + 22308016, 11742352, 11749904, 10058464, 11751552, - 22273440 + 22273312 ], "bases": [ { @@ -308559,12 +308559,12 @@ }, { "type_name": "CTriggerPhysics", - "vtable_address": 31867656, + "vtable_address": 31867592, "methods": [ 11742064, - 22274720, - 18001920, - 20399952 + 22274592, + 18001792, + 20399824 ], "bases": [ { @@ -308640,32 +308640,32 @@ }, { "type_name": "CTriggerProximity", - "vtable_address": 31854400, + "vtable_address": 31854336, "methods": [ 11931776, - 22399744, - 22400720, - 18377504, - 26419168, - 20153552, - 18010864, - 22272064, - 26419632, - 26419200, - 26419200, - 22316752, + 22399616, + 22400592, + 18377376, + 26419104, + 20153424, + 18010736, + 22271936, + 26419568, + 26419136, + 26419136, + 22316624, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -308677,21 +308677,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263520, - 22274736, - 22267056, + 26427360, + 22263392, + 22274608, + 22266928, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -308715,83 +308715,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -308799,16 +308799,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -308829,7 +308829,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -308842,28 +308842,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -308874,7 +308874,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -308885,39 +308885,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22265616, - 22278256, + 22265488, + 22278128, 11742352, 11749904, 10058464, @@ -308987,32 +308987,32 @@ }, { "type_name": "CTriggerPush", - "vtable_address": 31839184, + "vtable_address": 31839120, "methods": [ 11931776, - 22399424, - 22399440, - 18377504, - 26419168, - 20153552, - 18010864, - 22468992, - 26419632, - 26419200, - 26419200, + 22399296, + 22399312, + 18377376, + 26419104, + 20153424, + 18010736, + 22468864, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 22279312, + 22279184, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -309024,21 +309024,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263424, - 22274736, - 22266960, + 26427360, + 22263296, + 22274608, + 22266832, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -309062,100 +309062,100 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, - 22419712, + 22419584, 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -309176,7 +309176,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -309189,28 +309189,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -309221,7 +309221,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -309232,38 +309232,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22311184, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22311056, 11742352, - 22419120, + 22418992, 10058448, 11742352, 11749904, @@ -309334,32 +309334,32 @@ }, { "type_name": "CTriggerRemove", - "vtable_address": 31823440, + "vtable_address": 31823376, "methods": [ 11931776, - 22399328, - 22400608, - 18377504, - 26419168, - 20153552, - 18010864, - 22272304, - 26419632, - 26419200, - 26419200, + 22399200, + 22400480, + 18377376, + 26419104, + 20153424, + 18010736, + 22272176, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -309371,21 +309371,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263232, - 22274736, - 22266832, + 26427360, + 22263104, + 22274608, + 22266704, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -309409,83 +309409,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -309493,16 +309493,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -309523,7 +309523,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -309536,28 +309536,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -309568,7 +309568,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -309579,38 +309579,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22266320, + 22266192, 10058448, 11742352, 11749904, @@ -309681,32 +309681,32 @@ }, { "type_name": "CTriggerSave", - "vtable_address": 31847920, + "vtable_address": 31847856, "methods": [ 11931776, - 22399616, - 22399632, - 18377504, - 26419168, - 20153552, - 18010864, - 22464640, - 26419632, - 26419200, - 26419200, + 22399488, + 22399504, + 18377376, + 26419104, + 20153424, + 18010736, + 22464512, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -309718,21 +309718,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263472, - 22274736, - 22267008, + 26427360, + 22263344, + 22274608, + 22266880, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -309756,83 +309756,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -309840,16 +309840,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -309870,7 +309870,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -309883,28 +309883,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -309915,7 +309915,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -309926,38 +309926,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22263328, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22263200, 11742352, - 22298656, + 22298528, 10058448, 11742352, 11749904, @@ -310028,32 +310028,32 @@ }, { "type_name": "CTriggerSndSosOpvar", - "vtable_address": 30761640, + "vtable_address": 30761576, "methods": [ 11931776, 13880848, 13881376, - 18377504, - 26419168, - 20153552, - 18010864, - 22405024, - 26419632, - 26419200, - 26419200, + 18377376, + 26419104, + 20153424, + 18010736, + 22404896, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -310065,21 +310065,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22404768, + 26427360, + 22404640, 13867552, 13866128, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -310103,83 +310103,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -310187,16 +310187,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -310217,7 +310217,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -310230,28 +310230,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -310262,7 +310262,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -310273,39 +310273,39 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22495744, - 22405520, + 22495616, + 22405392, 11742352, 11749904, 10058464, @@ -310375,32 +310375,32 @@ }, { "type_name": "CTriggerSoundscape", - "vtable_address": 30539072, + "vtable_address": 30539008, "methods": [ 11931776, 12929600, 12930128, - 18377504, - 26419168, - 20153552, - 18010864, + 18377376, + 26419104, + 20153424, + 18010736, 12871152, - 26419632, - 26419200, - 26419200, + 26419568, + 26419136, + 26419136, 12920464, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -310412,21 +310412,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 12856208, 12871312, 12865648, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -310450,83 +310450,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -310534,16 +310534,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -310564,7 +310564,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -310577,28 +310577,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -310609,7 +310609,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -310620,35 +310620,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, 13079856, @@ -310722,32 +310722,32 @@ }, { "type_name": "CTriggerTeleport", - "vtable_address": 30772936, + "vtable_address": 30772872, "methods": [ 11931776, 13877184, 13878128, - 18377504, - 26419168, - 20153552, - 18010864, - 22272304, - 26419632, - 26419200, - 26419200, + 18377376, + 26419104, + 20153424, + 18010736, + 22272176, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -310759,21 +310759,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22421008, + 26427360, + 22420880, 13867552, 13866208, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -310797,83 +310797,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -310881,16 +310881,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -310911,7 +310911,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -310924,28 +310924,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -310956,7 +310956,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -310967,38 +310967,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, 11766784, 11742352, - 22429056, + 22428928, 10058448, 11742352, 11749904, @@ -311069,32 +311069,32 @@ }, { "type_name": "CTriggerToggleSave", - "vtable_address": 31845664, + "vtable_address": 31845600, "methods": [ 11931776, - 22399552, - 22399568, - 18377504, - 26419168, - 20153552, - 18010864, - 22271984, - 26419632, - 26419200, - 26419200, + 22399424, + 22399440, + 18377376, + 26419104, + 20153424, + 18010736, + 22271856, + 26419568, + 26419136, + 26419136, 11765824, 11747808, - 18011056, - 19835392, - 19835328, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11973056, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, + 18378400, + 19829024, 11747872, 9635872, 9665808, @@ -311106,21 +311106,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263456, - 22274736, - 22266992, + 26427360, + 22263328, + 22274608, + 22266864, 9635312, 11775504, - 18308160, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -311144,83 +311144,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11758320, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 10057536, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11929312, @@ -311228,16 +311228,16 @@ 11762784, 10058480, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, - 19979760, - 19828656, - 21311696, + 19979632, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -311258,7 +311258,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -311271,28 +311271,28 @@ 9636464, 11871168, 10057552, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -311303,7 +311303,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -311314,38 +311314,38 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 22263328, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 22263200, 11742352, - 22279664, + 22279536, 10058448, 11742352, 11749904, @@ -311416,33 +311416,33 @@ }, { "type_name": "CTriggerVolume", - "vtable_address": 31836992, + "vtable_address": 31836928, "methods": [ 13522144, - 22266496, - 22266512, - 18377504, - 26419168, - 22265968, - 18010864, - 22270176, - 26419632, - 26419200, - 26419200, - 22323936, - 18378912, - 18011056, - 19835392, - 19835328, + 22266368, + 22266384, + 18377376, + 26419104, + 22265840, + 18010736, + 22270048, + 26419568, + 26419136, + 26419136, + 22323808, + 18378784, + 18010928, + 19835264, + 19835200, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 22272656, + 18378400, + 19829024, + 22272528, 9635872, 9665808, 9641296, @@ -311453,21 +311453,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22263344, - 22542928, - 22266928, + 26427360, + 22263216, + 22542800, + 22266800, 9635312, - 22353760, - 18308160, + 22353632, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -311491,83 +311491,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -311575,16 +311575,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -311605,7 +311605,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -311618,28 +311618,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -311650,7 +311650,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -311661,35 +311661,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -311733,7 +311733,7 @@ }, { "type_name": "CUGCDetailsRequest", - "vtable_address": 30233640, + "vtable_address": 30233576, "methods": [ 10444352, 10452352 @@ -311747,7 +311747,7 @@ }, { "type_name": "CUnpauseMatchIssue", - "vtable_address": 30231872, + "vtable_address": 30231808, "methods": [ 10429120, 10472768, @@ -311815,12 +311815,12 @@ }, { "type_name": "CUserCmd", - "vtable_address": 30254840, + "vtable_address": 30254776, "methods": [ 10634544, 10634608, 10655472, - 19563552, + 19563424, 10632176, 10650192, 10632192, @@ -311903,26 +311903,26 @@ }, { "type_name": "CUserCmd", - "vtable_address": 30254944, + "vtable_address": 30254880, "methods": [ 10634576, 10634672, - 24747814, + 24747750, 10634336, - 16726288, - 16709056, - 24749974, - 24746806, - 16726928, + 16726160, + 16708928, + 24749910, + 24746742, + 16726800, 10634320, - 16716400, + 16716272, 9474464, - 16710976, - 24746716, - 24746982, - 16709520, - 16709760, - 16709104 + 16710848, + 24746652, + 24746918, + 16709392, + 16709632, + 16708976 ], "bases": [ { @@ -311998,7 +311998,7 @@ }, { "type_name": "CUserCmdBase", - "vtable_address": 31418768, + "vtable_address": 31418704, "methods": [], "bases": [], "model": { @@ -312009,12 +312009,12 @@ }, { "type_name": "CUserCmdBaseHost", - "vtable_address": 30254576, + "vtable_address": 30254512, "methods": [ 10634352, 10634416, 10655472, - 19563552, + 19563424, 10632176, 10650192, 10632192, @@ -312075,26 +312075,26 @@ }, { "type_name": "CUserCmdBaseHost", - "vtable_address": 30254680, + "vtable_address": 30254616, "methods": [ 10634384, 10634480, - 24747814, + 24747750, 10634336, - 16726288, - 16709056, - 24749974, - 24746806, - 16726928, + 16726160, + 16708928, + 24749910, + 24746742, + 16726800, 10634320, - 16716400, + 16716272, 9474464, - 16710976, - 24746716, - 24746982, - 16709520, - 16709760, - 16709104 + 16710848, + 24746652, + 24746918, + 16709392, + 16709632, + 16708976 ], "bases": [ { @@ -312148,23 +312148,23 @@ }, { "type_name": "CUserCmdBasePB", - "vtable_address": 30787736, + "vtable_address": 30787672, "methods": [ 13980464, 13981216, - 24747814, + 24747750, 13975216, 13986640, 13969648, - 24749974, - 24746806, + 24749910, + 24746742, 13987568, 13970528, 13976880, 9474464, 13970544, - 24746716, - 24746982, + 24746652, + 24746918, 13970112, 13970448, 13969696 @@ -312200,17 +312200,17 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 31310824, + "vtable_address": 31310760, "methods": [ - 18267840, - 18004832, + 18267712, + 18004704, + 18004416, + 18004448, + 18004480, 18004544, - 18004576, - 18004608, - 18004672, - 18004768, - 18022896, - 18025088 + 18004640, + 18022768, + 18024960 ], "bases": [ { @@ -312253,11 +312253,11 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 31310912, + "vtable_address": 31310848, "methods": [ - 18004720, + 18004592, 9634384, - 18004800, + 18004672, 9634416, 9634432, 9634448, @@ -312311,12 +312311,12 @@ 9635216, 9635232, 9635248, - 18004640, + 18004512, 9635280, - 18004592, - 18022784, - 18024960, - 18004560 + 18004464, + 18022656, + 18024832, + 18004432 ], "bases": [ { @@ -312359,23 +312359,23 @@ }, { "type_name": "CUserMessageAchievementEvent", - "vtable_address": 30928368, + "vtable_address": 30928304, "methods": [ 15622976, 15643760, - 24747814, + 24747750, 15298224, 15721840, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054496, 15078320, 15421792, 9474464, 15127328, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072416, 15046608 @@ -312411,14 +312411,14 @@ }, { "type_name": "CUserMessageAchievementEvent_t", - "vtable_address": 31306912, + "vtable_address": 31306848, "methods": [ - 18011600, - 18011664, - 18007504, - 18007520, - 18007536, - 18011792 + 18011472, + 18011536, + 18007376, + 18007392, + 18007408, + 18011664 ], "bases": [ { @@ -312494,23 +312494,23 @@ }, { "type_name": "CUserMessageAchievementEvent_t", - "vtable_address": 31306976, + "vtable_address": 31306912, "methods": [ - 18011632, - 18011728, - 24747814, + 18011504, + 18011600, + 24747750, 15298224, 15721840, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054496, 15078320, 15421792, 9474464, 15127328, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072416, 15046608 @@ -312589,23 +312589,23 @@ }, { "type_name": "CUserMessageAmmoDenied", - "vtable_address": 30932528, + "vtable_address": 30932464, "methods": [ 15626048, 15645040, - 24747814, + 24747750, 15302224, 15722704, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054928, 15077968, 15435712, 9474464, 15127552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073248, 15047024 @@ -312641,23 +312641,23 @@ }, { "type_name": "CUserMessageAnimStateGraphState", - "vtable_address": 30941968, + "vtable_address": 30941904, "methods": [ 15633216, 15660480, - 24747814, + 24747750, 15311056, 15748848, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15084736, 15077744, 15471968, 9474464, 15171712, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075136, 15047968 @@ -312693,23 +312693,23 @@ }, { "type_name": "CUserMessageAudioParameter", - "vtable_address": 30931408, + "vtable_address": 30931344, "methods": [ 15625200, 15644784, - 24747814, + 24747750, 15301200, 15722528, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054816, 15078064, 15431664, 9474464, 15177024, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073024, 15046912 @@ -312745,14 +312745,14 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 31782896, + "vtable_address": 31782832, "methods": [ - 22276512, - 22276576, - 19518768, - 19518784, - 19518800, - 19530096 + 22276384, + 22276448, + 19518640, + 19518656, + 19518672, + 19529968 ], "bases": [ { @@ -312828,23 +312828,23 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 31782960, + "vtable_address": 31782896, "methods": [ - 22276544, - 22276640, - 24747814, + 22276416, + 22276512, + 24747750, 15301200, 15722528, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054816, 15078064, 15431664, 9474464, 15177024, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073024, 15046912 @@ -312923,23 +312923,23 @@ }, { "type_name": "CUserMessageCameraTransition", - "vtable_address": 30934128, + "vtable_address": 30934064, "methods": [ 15675344, 15694112, - 24747814, + 24747750, 15303680, 15765680, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094624, 15077824, 15441680, 9474464, 15137824, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073568, 15047184 @@ -312975,23 +312975,23 @@ }, { "type_name": "CUserMessageCameraTransition_Transition_DataDriven", - "vtable_address": 30933968, + "vtable_address": 30933904, "methods": [ 15626448, 15658688, - 24747814, + 24747750, 15303520, 15745920, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094528, 15076768, 15441104, 9474464, 15154048, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073536, 15047168 @@ -313027,23 +313027,23 @@ }, { "type_name": "CUserMessageCloseCaption", - "vtable_address": 30928528, + "vtable_address": 30928464, "methods": [ 15623104, 15643888, - 24747814, + 24747750, 15298384, 15721888, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050832, 15078304, 15422272, 9474464, 15161312, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072448, 15046624 @@ -313079,23 +313079,23 @@ }, { "type_name": "CUserMessageCloseCaptionDirect", - "vtable_address": 30928688, + "vtable_address": 30928624, "methods": [ 15623232, 15644016, - 24747814, + 24747750, 15298544, 15721968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050944, 15078288, 15422960, 9474464, 15161696, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072480, 15046640 @@ -313131,23 +313131,23 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder", - "vtable_address": 30928848, + "vtable_address": 30928784, "methods": [ 15623360, 15657088, - 24747814, + 24747750, 15298688, 15743136, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093424, 15078272, 15423648, 9474464, 15174976, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072512, 15046656 @@ -313183,14 +313183,14 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 31750880, + "vtable_address": 31750816, "methods": [ - 21932752, - 21932816, - 19519216, - 19519232, - 19519248, - 19531888 + 21932624, + 21932688, + 19519088, + 19519104, + 19519120, + 19531760 ], "bases": [ { @@ -313266,23 +313266,23 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 31750944, + "vtable_address": 31750880, "methods": [ - 21932784, - 21932880, - 24747814, + 21932656, + 21932752, + 24747750, 15298384, 15721888, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050832, 15078304, 15422272, 9474464, 15161312, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072448, 15046624 @@ -313361,23 +313361,23 @@ }, { "type_name": "CUserMessageColoredText", - "vtable_address": 30932208, + "vtable_address": 30932144, "methods": [ 15625760, 15658208, - 24747814, + 24747750, 15301920, 15745056, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094208, 15078000, 15434624, 9474464, 15202688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073184, 15046992 @@ -313413,14 +313413,14 @@ }, { "type_name": "CUserMessageColoredText_t", - "vtable_address": 31781776, + "vtable_address": 31781712, "methods": [ - 22276320, - 22276384, - 19520224, - 19520240, - 19520256, - 19535920 + 22276192, + 22276256, + 19520096, + 19520112, + 19520128, + 19535792 ], "bases": [ { @@ -313496,23 +313496,23 @@ }, { "type_name": "CUserMessageColoredText_t", - "vtable_address": 31781840, + "vtable_address": 31781776, "methods": [ - 22276352, - 22276448, - 24747814, + 22276224, + 22276320, + 24747750, 15301920, 15745056, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094208, 15078000, 15434624, 9474464, 15202688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073184, 15046992 @@ -313591,23 +313591,23 @@ }, { "type_name": "CUserMessageCreditsMsg", - "vtable_address": 30932848, + "vtable_address": 30932784, "methods": [ 15626320, 15645168, - 24747814, + 24747750, 15302496, 15722752, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051168, 15077936, 15436816, 9474464, 15131680, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073312, 15047056 @@ -313643,14 +313643,14 @@ }, { "type_name": "CUserMessageCreditsMsg_t", - "vtable_address": 31504392, + "vtable_address": 31504328, "methods": [ - 20405712, - 20405776, - 19518320, - 19518336, - 19518352, - 19528720 + 20405584, + 20405648, + 19518192, + 19518208, + 19518224, + 19528592 ], "bases": [ { @@ -313726,23 +313726,23 @@ }, { "type_name": "CUserMessageCreditsMsg_t", - "vtable_address": 31504456, + "vtable_address": 31504392, "methods": [ - 20405744, - 20405840, - 24747814, + 20405616, + 20405712, + 24747750, 15302496, 15722752, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051168, 15077936, 15436816, 9474464, 15131680, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073312, 15047056 @@ -313821,23 +313821,23 @@ }, { "type_name": "CUserMessageCurrentTimescale", - "vtable_address": 30929008, + "vtable_address": 30928944, "methods": [ 15623504, 15644144, - 24747814, + 24747750, 15298832, 15722048, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15078256, 15424304, 9474464, 15107488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072544, 15046672 @@ -313873,14 +313873,14 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 31544256, + "vtable_address": 31544192, "methods": [ - 20625248, - 20625312, - 19521008, - 19521024, - 19521040, - 19539600 + 20625120, + 20625184, + 19520880, + 19520896, + 19520912, + 19539472 ], "bases": [ { @@ -313956,23 +313956,23 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 31544320, + "vtable_address": 31544256, "methods": [ - 20625280, - 20625376, - 24747814, + 20625152, + 20625248, + 24747750, 15298832, 15722048, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15078256, 15424304, 9474464, 15107488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072544, 15046672 @@ -314051,23 +314051,23 @@ }, { "type_name": "CUserMessageDesiredTimescale", - "vtable_address": 30929168, + "vtable_address": 30929104, "methods": [ 15623632, 15644272, - 24747814, + 24747750, 15298992, 15722096, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049072, 15078240, 15424624, 9474464, 15107600, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072576, 15046688 @@ -314103,14 +314103,14 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 31544480, + "vtable_address": 31544416, "methods": [ - 20625440, - 20625504, - 19520896, - 19520912, - 19520928, - 19539152 + 20625312, + 20625376, + 19520768, + 19520784, + 19520800, + 19539024 ], "bases": [ { @@ -314186,23 +314186,23 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 31544544, + "vtable_address": 31544480, "methods": [ - 20625472, - 20625568, - 24747814, + 20625344, + 20625440, + 24747750, 15298992, 15722096, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049072, 15078240, 15424624, 9474464, 15107600, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072576, 15046688 @@ -314281,23 +314281,23 @@ }, { "type_name": "CUserMessageFade", - "vtable_address": 30929328, + "vtable_address": 30929264, "methods": [ 15623760, 15644400, - 24747814, + 24747750, 15299152, 15722160, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054544, 15078224, 15425072, 9474464, 15176512, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072608, 15046704 @@ -314333,14 +314333,14 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 31782448, + "vtable_address": 31782384, "methods": [ - 22275360, - 22275424, - 19519664, - 19519680, - 19519696, - 19533680 + 22275232, + 22275296, + 19519536, + 19519552, + 19519568, + 19533552 ], "bases": [ { @@ -314416,23 +314416,23 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 31782512, + "vtable_address": 31782448, "methods": [ - 22275392, - 22275488, - 24747814, + 22275264, + 22275360, + 24747750, 15299152, 15722160, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054544, 15078224, 15425072, 9474464, 15176512, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072608, 15046704 @@ -314511,23 +314511,23 @@ }, { "type_name": "CUserMessageGameTitle", - "vtable_address": 30930928, + "vtable_address": 30930864, "methods": [ 15103312, 15103328, - 24747814, + 24747750, 15300768, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15072928, 15046864 @@ -314574,23 +314574,23 @@ }, { "type_name": "CUserMessageHapticsManagerEffect", - "vtable_address": 30941808, + "vtable_address": 30941744, "methods": [ 15633088, 15647728, - 24747814, + 24747750, 15310912, 15725168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055520, 15077760, 15471344, 9474464, 15157536, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075104, 15047952 @@ -314626,23 +314626,23 @@ }, { "type_name": "CUserMessageHapticsManagerPulse", - "vtable_address": 30941648, + "vtable_address": 30941584, "methods": [ 15632960, 15647600, - 24747814, + 24747750, 15310768, 15725104, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051376, 15077776, 15470752, 9474464, 15154816, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075072, 15047936 @@ -314678,23 +314678,23 @@ }, { "type_name": "CUserMessageHudMsg", - "vtable_address": 30930448, + "vtable_address": 30930384, "methods": [ 15624624, 15657408, - 24747814, + 24747750, 15300288, 15743936, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093920, 15078128, 15429408, 9474464, 15194080, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072832, 15046816 @@ -314730,14 +314730,14 @@ }, { "type_name": "CUserMessageHudMsg_t", - "vtable_address": 31783120, + "vtable_address": 31783056, "methods": [ - 22275552, - 22275616, - 19518656, - 19518672, - 19518688, - 19529648 + 22275424, + 22275488, + 19518528, + 19518544, + 19518560, + 19529520 ], "bases": [ { @@ -314813,23 +314813,23 @@ }, { "type_name": "CUserMessageHudMsg_t", - "vtable_address": 31783184, + "vtable_address": 31783120, "methods": [ - 22275584, - 22275680, - 24747814, + 22275456, + 22275552, + 24747750, 15300288, 15743936, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093920, 15078128, 15429408, 9474464, 15194080, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072832, 15046816 @@ -314908,23 +314908,23 @@ }, { "type_name": "CUserMessageHudText", - "vtable_address": 30930608, + "vtable_address": 30930544, "methods": [ 15624768, 15657568, - 24747814, + 24747750, 15300448, 15744240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15078112, 15430096, 9474464, 15128864, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072864, 15046832 @@ -314960,14 +314960,14 @@ }, { "type_name": "CUserMessageHudText_t", - "vtable_address": 31783344, + "vtable_address": 31783280, "methods": [ - 22276128, - 22276192, - 19518544, - 19518560, - 19518576, - 19529184 + 22276000, + 22276064, + 19518416, + 19518432, + 19518448, + 19529056 ], "bases": [ { @@ -315043,23 +315043,23 @@ }, { "type_name": "CUserMessageHudText_t", - "vtable_address": 31783408, + "vtable_address": 31783344, "methods": [ - 22276160, - 22276256, - 24747814, + 22276032, + 22276128, + 24747750, 15300448, 15744240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15078112, 15430096, 9474464, 15128864, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072864, 15046832 @@ -315138,23 +315138,23 @@ }, { "type_name": "CUserMessageItemPickup", - "vtable_address": 30932368, + "vtable_address": 30932304, "methods": [ 15625904, 15658368, - 24747814, + 24747750, 15302080, 15745360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15077984, 15435312, 9474464, 15129040, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073216, 15047008 @@ -315190,23 +315190,23 @@ }, { "type_name": "CUserMessageLagCompensationError", - "vtable_address": 30942448, + "vtable_address": 30942384, "methods": [ 15633632, 15647984, - 24747814, + 24747750, 15311472, 15725280, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077712, 15473552, 9474464, 15108608, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075232, 15048016 @@ -315242,14 +315242,14 @@ }, { "type_name": "CUserMessageLagCompensationError_t", - "vtable_address": 31698880, + "vtable_address": 31698816, "methods": [ - 21372752, - 21372816, - 19517312, - 19517328, - 19517344, - 19524640 + 21372624, + 21372688, + 19517184, + 19517200, + 19517216, + 19524512 ], "bases": [ { @@ -315325,23 +315325,23 @@ }, { "type_name": "CUserMessageLagCompensationError_t", - "vtable_address": 31698944, + "vtable_address": 31698880, "methods": [ - 21372784, - 21372880, - 24747814, + 21372656, + 21372752, + 24747750, 15311472, 15725280, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077712, 15473552, 9474464, 15108608, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075232, 15048016 @@ -315420,23 +315420,23 @@ }, { "type_name": "CUserMessageRequestDiagnostic", - "vtable_address": 30944368, + "vtable_address": 30944304, "methods": [ 15635536, 15671136, - 24747814, + 24747750, 15313360, 15766832, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15098064, 15077600, 15515200, 9474464, 15081808, - 24746716, - 24746982, + 24746652, + 24746918, 15048832, 15075616, 15048208 @@ -315472,23 +315472,23 @@ }, { "type_name": "CUserMessageRequestDiagnostic_Diagnostic", - "vtable_address": 30944208, + "vtable_address": 30944144, "methods": [ 15635376, 15664688, - 24747814, + 24747750, 15313184, 15751040, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15097600, 15077488, 15478544, 9474464, 15249824, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075584, 15048192 @@ -315524,23 +315524,23 @@ }, { "type_name": "CUserMessageRequestDllStatus", - "vtable_address": 30942608, + "vtable_address": 30942544, "methods": [ 15633760, 15660800, - 24747814, + 24747750, 15311616, 15749424, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088992, 15077696, 15473872, 9474464, 15135376, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075264, 15048032 @@ -315576,23 +315576,23 @@ }, { "type_name": "CUserMessageRequestInventory", - "vtable_address": 30943728, + "vtable_address": 30943664, "methods": [ 15634848, 15648240, - 24747814, + 24747750, 15312656, 15725392, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051632, 15077632, 15476944, 9474464, 15168992, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075488, 15048144 @@ -315628,23 +315628,23 @@ }, { "type_name": "CUserMessageRequestState", - "vtable_address": 30931728, + "vtable_address": 30931664, "methods": [ 15103184, 15103200, - 24747814, + 24747750, 15301488, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15073088, 15046944 @@ -315691,14 +315691,14 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 31780880, + "vtable_address": 31780816, "methods": [ - 22276704, - 22276784, - 19520784, - 19520800, - 19520816, - 19538688 + 22276576, + 22276656, + 19520656, + 19520672, + 19520688, + 19538560 ], "bases": [ { @@ -315785,23 +315785,23 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 31780944, + "vtable_address": 31780880, "methods": [ - 22276752, - 22276848, - 24747814, + 22276624, + 22276720, + 24747750, 15301488, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15073088, 15046944 @@ -315891,23 +315891,23 @@ }, { "type_name": "CUserMessageRequestUtilAction", - "vtable_address": 30942768, + "vtable_address": 30942704, "methods": [ 15633904, 15648112, - 24747814, + 24747750, 15311760, 15725328, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051456, 15077680, 15474448, 9474464, 15195456, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075296, 15048048 @@ -315943,23 +315943,23 @@ }, { "type_name": "CUserMessageResetHUD", - "vtable_address": 30931088, + "vtable_address": 30931024, "methods": [ 15103248, 15103264, - 24747814, + 24747750, 15300896, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15072960, 15046880 @@ -316006,14 +316006,14 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 31428904, + "vtable_address": 31428840, "methods": [ - 19837904, - 19837984, - 19518432, - 19518448, - 19518464, - 19538416 + 19837776, + 19837856, + 19518304, + 19518320, + 19518336, + 19538288 ], "bases": [ { @@ -316100,23 +316100,23 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 31428968, + "vtable_address": 31428904, "methods": [ - 19837952, - 19838048, - 24747814, + 19837824, + 19837920, + 24747750, 15300896, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15072960, 15046880 @@ -316206,23 +316206,23 @@ }, { "type_name": "CUserMessageRumble", - "vtable_address": 30931888, + "vtable_address": 30931824, "methods": [ 15625488, 15644912, - 24747814, + 24747750, 15301632, 15722640, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051056, 15078032, 15433248, 9474464, 15167968, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073120, 15046960 @@ -316258,23 +316258,23 @@ }, { "type_name": "CUserMessageSayText", - "vtable_address": 30930128, + "vtable_address": 30930064, "methods": [ 15624304, 15657248, - 24747814, + 24747750, 15299920, 15743440, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093536, 15078160, 15428080, 9474464, 15158560, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072768, 15046784 @@ -316310,23 +316310,23 @@ }, { "type_name": "CUserMessageSayText2", - "vtable_address": 30930288, + "vtable_address": 30930224, "methods": [ 15624448, 15666368, - 24747814, + 24747750, 15300144, 15743712, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093632, 15078144, 15428768, 9474464, 15212480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072800, 15046800 @@ -316362,14 +316362,14 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 31781552, + "vtable_address": 31781488, "methods": [ - 22275936, - 22276000, - 18818432, - 18818448, - 18818464, - 18828784 + 22275808, + 22275872, + 18818304, + 18818320, + 18818336, + 18828656 ], "bases": [ { @@ -316445,23 +316445,23 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 31781616, + "vtable_address": 31781552, "methods": [ - 22275968, - 22276064, - 24747814, + 22275840, + 22275936, + 24747750, 15300144, 15743712, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093632, 15078144, 15428768, 9474464, 15212480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072800, 15046800 @@ -316540,23 +316540,23 @@ }, { "type_name": "CUserMessageSayTextChannel", - "vtable_address": 30932048, + "vtable_address": 30931984, "methods": [ 15625616, 15658048, - 24747814, + 24747750, 15301776, 15744768, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094080, 15078016, 15433952, 9474464, 15174464, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073152, 15046976 @@ -316592,14 +316592,14 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 31781328, + "vtable_address": 31781264, "methods": [ - 22275744, - 22275808, - 19520336, - 19520352, - 19520368, - 19536368 + 22275616, + 22275680, + 19520208, + 19520224, + 19520240, + 19536240 ], "bases": [ { @@ -316675,23 +316675,23 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 31781392, + "vtable_address": 31781328, "methods": [ - 22275776, - 22275872, - 24747814, + 22275648, + 22275744, + 24747750, 15299920, 15743440, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15093536, 15078160, 15428080, 9474464, 15158560, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072768, 15046784 @@ -316770,23 +316770,23 @@ }, { "type_name": "CUserMessageScreenTilt", - "vtable_address": 30929968, + "vtable_address": 30929904, "methods": [ 15624144, 15678000, - 24747814, + 24747750, 15299776, 15722352, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15062160, 15078176, 15427440, 9474464, 15165600, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072736, 15046768 @@ -316822,14 +316822,14 @@ }, { "type_name": "CUserMessageScreenTilt_t", - "vtable_address": 31782672, + "vtable_address": 31782608, "methods": [ - 22275168, - 22275232, - 19519440, - 19519456, - 19519472, - 19532784 + 22275040, + 22275104, + 19519312, + 19519328, + 19519344, + 19532656 ], "bases": [ { @@ -316905,23 +316905,23 @@ }, { "type_name": "CUserMessageScreenTilt_t", - "vtable_address": 31782736, + "vtable_address": 31782672, "methods": [ - 22275200, - 22275296, - 24747814, + 22275072, + 22275168, + 24747750, 15299776, 15722352, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15062160, 15078176, 15427440, 9474464, 15165600, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072736, 15046768 @@ -317000,23 +317000,23 @@ }, { "type_name": "CUserMessageSendAudio", - "vtable_address": 30931248, + "vtable_address": 30931184, "methods": [ 15625056, 15657888, - 24747814, + 24747750, 15301040, 15744496, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088992, 15078080, 15431088, 9474464, 15134928, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072992, 15046896 @@ -317052,7 +317052,7 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 30968480, + "vtable_address": 30968416, "methods": [ 15979488, 15979552, @@ -317135,23 +317135,23 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 30968544, + "vtable_address": 30968480, "methods": [ 15979520, 15979616, - 24747814, + 24747750, 15301040, 15744496, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088992, 15078080, 15431088, 9474464, 15134928, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072992, 15046896 @@ -317230,23 +317230,23 @@ }, { "type_name": "CUserMessageServerFrameTime", - "vtable_address": 30942288, + "vtable_address": 30942224, "methods": [ 15633504, 15647856, - 24747814, + 24747750, 15311328, 15725232, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077728, 15473232, 9474464, 15108496, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075200, 15048000 @@ -317282,14 +317282,14 @@ }, { "type_name": "CUserMessageServerFrameTime_t", - "vtable_address": 31544704, + "vtable_address": 31544640, "methods": [ - 20629584, - 20629648, - 19517424, - 19517440, - 19517456, - 19525104 + 20629456, + 20629520, + 19517296, + 19517312, + 19517328, + 19524976 ], "bases": [ { @@ -317365,23 +317365,23 @@ }, { "type_name": "CUserMessageServerFrameTime_t", - "vtable_address": 31544768, + "vtable_address": 31544704, "methods": [ - 20629616, - 20629712, - 24747814, + 20629488, + 20629584, + 24747750, 15311328, 15725232, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077728, 15473232, 9474464, 15108496, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075200, 15048000 @@ -317460,23 +317460,23 @@ }, { "type_name": "CUserMessageShake", - "vtable_address": 30929488, + "vtable_address": 30929424, "methods": [ 15623888, 15644528, - 24747814, + 24747750, 15299312, 15722224, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054656, 15076736, 15425744, 9474464, 15151904, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072640, 15046720 @@ -317512,23 +317512,23 @@ }, { "type_name": "CUserMessageShakeDir", - "vtable_address": 30929648, + "vtable_address": 30929584, "methods": [ 15680352, 15681840, - 24747814, + 24747750, 15299472, 15765536, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15125168, 15078208, 15426336, 9474464, 15081392, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072672, 15046736 @@ -317564,14 +317564,14 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 31782000, + "vtable_address": 31781936, "methods": [ - 22274784, - 22274848, - 19520000, - 19520016, - 19520032, - 19535024 + 22274656, + 22274720, + 19519872, + 19519888, + 19519904, + 19534896 ], "bases": [ { @@ -317647,23 +317647,23 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 31782064, + "vtable_address": 31782000, "methods": [ - 22274816, - 22274912, - 24747814, + 22274688, + 22274784, + 24747750, 15299312, 15722224, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054656, 15076736, 15425744, 9474464, 15151904, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072640, 15046720 @@ -317742,23 +317742,23 @@ }, { "type_name": "CUserMessageShowMenu", - "vtable_address": 30932688, + "vtable_address": 30932624, "methods": [ 15626176, 15658528, - 24747814, + 24747750, 15302352, 15745616, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094400, 15077952, 15436192, 9474464, 15178112, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073280, 15047040 @@ -317794,23 +317794,23 @@ }, { "type_name": "CUserMessageTextMsg", - "vtable_address": 30930768, + "vtable_address": 30930704, "methods": [ 15624912, 15657728, - 24747814, + 24747750, 15300640, 15722464, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101200, 15078096, 15430496, 9474464, 15150304, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072896, 15046848 @@ -317846,14 +317846,14 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 31406624, + "vtable_address": 31406560, "methods": [ - 19524144, - 19524208, - 19515648, - 19515664, - 19515680, - 19523808 + 19524016, + 19524080, + 19515520, + 19515536, + 19515552, + 19523680 ], "bases": [ { @@ -317929,23 +317929,23 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 31406688, + "vtable_address": 31406624, "methods": [ - 19524176, - 19524272, - 24747814, + 19524048, + 19524144, + 24747750, 15300640, 15722464, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101200, 15078096, 15430496, 9474464, 15150304, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072896, 15046848 @@ -318024,23 +318024,23 @@ }, { "type_name": "CUserMessageUpdateCssClasses", - "vtable_address": 30942128, + "vtable_address": 30942064, "methods": [ 15633360, 15660640, - 24747814, + 24747750, 9640272, 15749120, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15096144, 9638608, 15472544, 9474464, 15159328, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075168, 15047984 @@ -318076,7 +318076,7 @@ }, { "type_name": "CUserMessageUpdateCssClasses_t", - "vtable_address": 30138496, + "vtable_address": 30138432, "methods": [ 9640480, 9640544, @@ -318159,23 +318159,23 @@ }, { "type_name": "CUserMessageUpdateCssClasses_t", - "vtable_address": 30138560, + "vtable_address": 30138496, "methods": [ 9640512, 9640608, - 24747814, + 24747750, 9640272, 15749120, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15096144, 9638608, 15472544, 9474464, 15159328, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075168, 15047984 @@ -318254,23 +318254,23 @@ }, { "type_name": "CUserMessageVoiceMask", - "vtable_address": 30931568, + "vtable_address": 30931504, "methods": [ 15625328, 15663360, - 24747814, + 24747750, 15301360, 15722592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101872, 15078048, 15432336, 9474464, 15121760, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073056, 15046928 @@ -318306,14 +318306,14 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 31781104, + "vtable_address": 31781040, "methods": [ - 22276912, - 22276976, - 19520672, - 19520688, - 19520704, - 19537744 + 22276784, + 22276848, + 19520544, + 19520560, + 19520576, + 19537616 ], "bases": [ { @@ -318389,23 +318389,23 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 31781168, + "vtable_address": 31781104, "methods": [ - 22276944, - 22277040, - 24747814, + 22276816, + 22276912, + 24747750, 15301360, 15722592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15101872, 15078048, 15432336, 9474464, 15121760, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073056, 15046928 @@ -318484,23 +318484,23 @@ }, { "type_name": "CUserMessageWaterShake", - "vtable_address": 30929808, + "vtable_address": 30929744, "methods": [ 15624016, 15644656, - 24747814, + 24747750, 15299632, 15722288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054736, 15078192, 15426848, 9474464, 15152256, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072704, 15046752 @@ -318536,14 +318536,14 @@ }, { "type_name": "CUserMessageWaterShake_t", - "vtable_address": 31782224, + "vtable_address": 31782160, "methods": [ - 22274976, - 22275040, - 19519776, - 19519792, - 19519808, - 19534128 + 22274848, + 22274912, + 19519648, + 19519664, + 19519680, + 19534000 ], "bases": [ { @@ -318619,23 +318619,23 @@ }, { "type_name": "CUserMessageWaterShake_t", - "vtable_address": 31782288, + "vtable_address": 31782224, "methods": [ - 22275008, - 22275104, - 24747814, + 22274880, + 22274976, + 24747750, 15299632, 15722288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054736, 15078192, 15426848, 9474464, 15152256, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072704, 15046752 @@ -318714,23 +318714,23 @@ }, { "type_name": "CUserMessage_Diagnostic_Response", - "vtable_address": 30944688, + "vtable_address": 30944624, "methods": [ 15635872, 15671312, - 24747814, + 24747750, 15313728, 15769616, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15098720, 15077584, 15515664, 9474464, 15200960, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075680, 15048240 @@ -318766,23 +318766,23 @@ }, { "type_name": "CUserMessage_Diagnostic_Response_Diagnostic", - "vtable_address": 30944528, + "vtable_address": 30944464, "methods": [ 15635696, 15665040, - 24747814, + 24747750, 15313552, 15751248, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15098176, 15077504, 15479616, 9474464, 15251040, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075648, 15048224 @@ -318818,23 +318818,23 @@ }, { "type_name": "CUserMessage_DllStatus", - "vtable_address": 30943568, + "vtable_address": 30943504, "methods": [ 15634640, 15668432, - 24747814, + 24747750, 15312512, 15761920, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15123840, 15077648, 15512928, 9474464, 15214176, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075456, 15048128 @@ -318870,23 +318870,23 @@ }, { "type_name": "CUserMessage_DllStatus_CModule", - "vtable_address": 30943408, + "vtable_address": 30943344, "methods": [ 15634496, 15661280, - 24747814, + 24747750, 15312320, 15750288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15096544, 15077456, 15476320, 9474464, 15188704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075424, 15048112 @@ -318922,23 +318922,23 @@ }, { "type_name": "CUserMessage_DllStatus_CVDiagnostic", - "vtable_address": 30943248, + "vtable_address": 30943184, "methods": [ 15634352, 15661120, - 24747814, + 24747750, 15312192, 15750000, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15096400, 15077440, 15475696, 9474464, 15188096, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075392, 15048096 @@ -318974,23 +318974,23 @@ }, { "type_name": "CUserMessage_ExtraUserData", - "vtable_address": 30944848, + "vtable_address": 30944784, "methods": [ 15636032, 15664000, - 24747814, + 24747750, 15313952, 15725456, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15099680, 15077568, 15480752, 9474464, 15199168, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075712, 15048256 @@ -319026,23 +319026,23 @@ }, { "type_name": "CUserMessage_Inventory_Response", - "vtable_address": 30944048, + "vtable_address": 30943984, "methods": [ 15635136, 15671488, - 24747814, + 24747750, 15313008, 15750752, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15097040, 15077616, 15513872, 9474464, 15258016, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075552, 15048176 @@ -319078,23 +319078,23 @@ }, { "type_name": "CUserMessage_Inventory_Response_InventoryDetail", - "vtable_address": 30943888, + "vtable_address": 30943824, "methods": [ 15634976, 15663840, - 24747814, + 24747750, 15312832, 15750576, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15096688, 15077472, 15477648, 9474464, 15248480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075520, 15048160 @@ -319130,23 +319130,23 @@ }, { "type_name": "CUserMessage_NotifyResponseFound", - "vtable_address": 30945168, + "vtable_address": 30945104, "methods": [ 15636336, 15636624, - 24747814, + 24747750, 15314336, 15754128, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15120224, 15077552, 15516416, 9474464, 15259392, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075776, 15048288 @@ -319182,23 +319182,23 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_Criteria", - "vtable_address": 30945008, + "vtable_address": 30944944, "methods": [ 15636192, 15661440, - 24747814, + 24747750, 15314096, 15751504, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15099008, 15077520, 15481424, 9474464, 15141632, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075744, 15048272 @@ -319234,23 +319234,23 @@ }, { "type_name": "CUserMessage_PlayResponseConditional", - "vtable_address": 30945328, + "vtable_address": 30945264, "methods": [ 15636672, 15668224, - 24747814, + 24747750, 15314528, 15751776, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15102752, 15077536, 15482000, 9474464, 15197664, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075808, 15048304 @@ -319286,14 +319286,14 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 31429352, + "vtable_address": 31429288, "methods": [ - 19832240, - 19832304, - 19521120, - 19521136, - 19521152, - 19540064 + 19832112, + 19832176, + 19520992, + 19521008, + 19521024, + 19539936 ], "bases": [ { @@ -319369,23 +319369,23 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 31429416, + "vtable_address": 31429352, "methods": [ - 19832272, - 19832368, - 24747814, + 19832144, + 19832240, + 24747750, 15314528, 15751776, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15102752, 15077536, 15482000, 9474464, 15197664, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075808, 15048304 @@ -319464,23 +319464,23 @@ }, { "type_name": "CUserMessage_UtilMsg_Response", - "vtable_address": 30943088, + "vtable_address": 30943024, "methods": [ 15634176, 15666976, - 24747814, + 24747750, 15312064, 15758800, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15123280, 15077664, 15511488, 9474464, 15256640, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075360, 15048080 @@ -319516,23 +319516,23 @@ }, { "type_name": "CUserMessage_UtilMsg_Response_ItemDetail", - "vtable_address": 30942928, + "vtable_address": 30942864, "methods": [ 15634032, 15660960, - 24747814, + 24747750, 15311888, 15749696, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15096256, 15077424, 15475072, 9474464, 15187456, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075328, 15048064 @@ -319568,23 +319568,23 @@ }, { "type_name": "CUserMsg_CustomGameEvent", - "vtable_address": 30941488, + "vtable_address": 30941424, "methods": [ 15632800, 15663680, - 24747814, + 24747750, 12437712, 15748720, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 12437136, 15470288, 9474464, 15176192, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075040, 15047920 @@ -319620,7 +319620,7 @@ }, { "type_name": "CUserMsg_CustomGameEvent_t", - "vtable_address": 30510456, + "vtable_address": 30510392, "methods": [ 12461888, 12463456, @@ -319714,23 +319714,23 @@ }, { "type_name": "CUserMsg_CustomGameEvent_t", - "vtable_address": 30510520, + "vtable_address": 30510456, "methods": [ 12461968, 12463552, - 24747814, + 24747750, 12437712, 15748720, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 12437136, 15470288, 9474464, 15176192, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075040, 15047920 @@ -319820,23 +319820,23 @@ }, { "type_name": "CUserMsg_HudError", - "vtable_address": 30941328, + "vtable_address": 30941264, "methods": [ 15632672, 15647472, - 24747814, + 24747750, 15310464, 15725056, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051328, 15077792, 15469808, 9474464, 15130912, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15075008, 15047904 @@ -319872,23 +319872,23 @@ }, { "type_name": "CUserMsg_ParticleManager", - "vtable_address": 30941168, + "vtable_address": 30941104, "methods": [ 15714304, 15714448, - 24747814, + 24747750, 15310320, 15776752, 15103920, - 24749974, - 24746806, + 24749910, + 24746742, 15223936, 15077808, 15465776, 9474464, 15243024, - 24746716, - 24746982, + 24746652, + 24746918, 15048864, 15074976, 15047888 @@ -319924,23 +319924,23 @@ }, { "type_name": "CUserMsg_ParticleManager_AddFan", - "vtable_address": 30940528, + "vtable_address": 30940464, "methods": [ 15632000, 15659968, - 24747814, + 24747750, 15309728, 15748400, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15095504, 15077376, 15463024, 9474464, 15237056, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074848, 15047824 @@ -319976,23 +319976,23 @@ }, { "type_name": "CUserMsg_ParticleManager_AddModellistOverrideElement", - "vtable_address": 30938768, + "vtable_address": 30938704, "methods": [ 15630432, 15659328, - 24747814, + 24747750, 15307936, 15747296, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15095312, 15077296, 15457936, 9474464, 15154432, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074496, 15047648 @@ -320028,23 +320028,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ChangeControlPointAttachment", - "vtable_address": 30936528, + "vtable_address": 30936464, "methods": [ 15628528, 15645936, - 24747814, + 24747750, 15305888, 15723808, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055152, 15077024, 15450880, 9474464, 15168480, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074048, 15047424 @@ -320080,23 +320080,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ClearModellistOverride", - "vtable_address": 30938928, + "vtable_address": 30938864, "methods": [ 15630576, 15647088, - 24747814, + 24747750, 15308080, 15724400, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055328, 15077312, 15458512, 9474464, 15127776, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074528, 15047664 @@ -320132,23 +320132,23 @@ }, { "type_name": "CUserMsg_ParticleManager_CreateParticle", - "vtable_address": 30934448, + "vtable_address": 30934384, "methods": [ 15626592, 15667584, - 24747814, + 24747750, 15303952, 15746208, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15094768, 15076848, 15442304, 9474464, 15216352, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073632, 15047216 @@ -320184,23 +320184,23 @@ }, { "type_name": "CUserMsg_ParticleManager_CreatePhysicsSim", - "vtable_address": 30939888, + "vtable_address": 30939824, "methods": [ 15631568, 15659488, - 24747814, + 24747750, 15309088, 15747584, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15095408, 15077328, 15461376, 9474464, 15158944, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074720, 15047760 @@ -320236,23 +320236,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticle", - "vtable_address": 30934608, + "vtable_address": 30934544, "methods": [ 15626768, 15645296, - 24747814, + 24747750, 15304096, 15722816, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049040, 15076864, 15443264, 9474464, 15110288, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073664, 15047232 @@ -320288,23 +320288,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleInvolving", - "vtable_address": 30934768, + "vtable_address": 30934704, "methods": [ 15626896, 15645424, - 24747814, + 24747750, 15304240, 15722864, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054976, 15076880, 15443744, 9474464, 15134144, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073696, 15047248 @@ -320340,23 +320340,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleNamed", - "vtable_address": 30934928, + "vtable_address": 30934864, "methods": [ 15627024, 15645552, - 24747814, + 24747750, 15304400, 15722912, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055040, 15077184, 15444336, 9474464, 15162272, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073728, 15047264 @@ -320392,23 +320392,23 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyPhysicsSim", - "vtable_address": 30940048, + "vtable_address": 30939984, "methods": [ 15103056, 15103072, - 24747814, + 24747750, 15309216, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15074752, 15047776 @@ -320455,23 +320455,23 @@ }, { "type_name": "CUserMsg_ParticleManager_FreezeParticleInvolving", - "vtable_address": 30938608, + "vtable_address": 30938544, "methods": [ 15630304, 15646960, - 24747814, + 24747750, 15307792, 15724336, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055264, 15077280, 15457312, 9474464, 15144320, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074464, 15047632 @@ -320507,23 +320507,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleCanFreeze", - "vtable_address": 30938288, + "vtable_address": 30938224, "methods": [ 15630048, 15646704, - 24747814, + 24747750, 15307504, 15724240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049040, 15077216, 15456512, 9474464, 15110912, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074400, 15047600 @@ -320559,23 +320559,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleFreezeTransitionOverride", - "vtable_address": 30938448, + "vtable_address": 30938384, "methods": [ 15630176, 15646832, - 24747814, + 24747750, 15307648, 15724288, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077264, 15456992, 9474464, 15108208, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074432, 15047616 @@ -320611,23 +320611,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleSkipToTime", - "vtable_address": 30938128, + "vtable_address": 30938064, "methods": [ 15629920, 15646576, - 24747814, + 24747750, 15307360, 15724192, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049008, 15077200, 15456192, 9474464, 15108096, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074368, 15047584 @@ -320663,23 +320663,23 @@ }, { "type_name": "CUserMsg_ParticleManager_ReleaseParticleIndex", - "vtable_address": 30934288, + "vtable_address": 30934224, "methods": [ 15102992, 15103008, - 24747814, + 24747750, 15303808, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15073600, 15047200 @@ -320726,23 +320726,23 @@ }, { "type_name": "CUserMsg_ParticleManager_RemoveFan", - "vtable_address": 30940848, + "vtable_address": 30940784, "methods": [ 15103120, 15103136, - 24747814, + 24747750, 15309984, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15074912, 15047856 @@ -320789,23 +320789,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointModel", - "vtable_address": 30937168, + "vtable_address": 30937104, "methods": [ 15629072, 15658848, - 24747814, + 24747750, 15306480, 15746368, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15095120, 15077104, 15453296, 9474464, 15140928, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074176, 15047488 @@ -320841,23 +320841,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointSnapshot", - "vtable_address": 30937328, + "vtable_address": 30937264, "methods": [ 15629216, 15659008, - 24747814, + 24747750, 15306624, 15746640, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15095216, 15077120, 15453872, 9474464, 15141280, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074208, 15047504 @@ -320893,23 +320893,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetMaterialOverride", - "vtable_address": 30940368, + "vtable_address": 30940304, "methods": [ 15631856, 15659808, - 24747814, + 24747750, 15309520, 15748128, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15088992, 15077360, 15462448, 9474464, 15135152, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074816, 15047808 @@ -320945,23 +320945,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleClusterGrowth", - "vtable_address": 30941008, + "vtable_address": 30940944, "methods": [ 15632512, 15679056, - 24747814, + 24747750, 15310144, 15724976, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15064416, 15077408, 15465296, 9474464, 15108320, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074944, 15047872 @@ -320997,23 +320997,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleFoWProperties", - "vtable_address": 30936848, + "vtable_address": 30936784, "methods": [ 15628816, 15646064, - 24747814, + 24747750, 15306192, 15723968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15051232, 15077056, 15452192, 9474464, 15157120, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074112, 15047456 @@ -321049,23 +321049,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext", - "vtable_address": 30939728, + "vtable_address": 30939664, "methods": [ 15631296, 15674688, - 24747814, + 24747750, 15308944, 15776176, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15112624, 15077232, 15510576, 9474464, 15082240, - 24746716, - 24746982, + 24746652, + 24746918, 15048848, 15074688, 15047744 @@ -321101,23 +321101,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext", - "vtable_address": 30939568, + "vtable_address": 30939504, "methods": [ 15631168, 15647344, - 24747814, + 24747750, 15308656, 15724720, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055440, 15076832, 15460800, 9474464, 15143008, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074656, 15047728 @@ -321153,23 +321153,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue", - "vtable_address": 30939088, + "vtable_address": 30939024, "methods": [ 15630704, 15647216, - 24747814, + 24747750, 15308208, 15724448, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15055376, 15076784, 15458992, 9474464, 15131424, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074560, 15047680 @@ -321205,23 +321205,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue", - "vtable_address": 30939408, + "vtable_address": 30939344, "methods": [ 15630992, 15674496, - 24747814, + 24747750, 15308512, 15724592, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15063872, 15076816, 15460096, 9474464, 15144640, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074624, 15047712 @@ -321257,23 +321257,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue", - "vtable_address": 30939248, + "vtable_address": 30939184, "methods": [ 15630832, 15678880, - 24747814, + 24747750, 15308368, 15724512, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15063744, 15076800, 15459488, 9474464, 15132864, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074592, 15047696 @@ -321309,23 +321309,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleShouldCheckFoW", - "vtable_address": 30937008, + "vtable_address": 30936944, "methods": [ 15628944, 15646192, - 24747814, + 24747750, 15306336, 15724032, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049040, 15077088, 15452816, 9474464, 15110688, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074144, 15047472 @@ -321361,23 +321361,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleText", - "vtable_address": 30937488, + "vtable_address": 30937424, "methods": [ 15629360, 15659168, - 24747814, + 24747750, 15306784, 15746912, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15077072, 15454448, 9474464, 15129216, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074240, 15047520 @@ -321413,23 +321413,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectGenericFlag", - "vtable_address": 30937808, + "vtable_address": 30937744, "methods": [ 15629664, 15646320, - 24747814, + 24747750, 15307088, 15724080, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049040, 15077152, 15455312, 9474464, 15110800, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074304, 15047552 @@ -321465,23 +321465,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectTintAndDesat", - "vtable_address": 30937968, + "vtable_address": 30937904, "methods": [ 15629792, 15646448, - 24747814, + 24747750, 15307216, 15724128, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049168, 15077168, 15455792, 9474464, 15107920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074336, 15047568 @@ -321517,23 +321517,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetTextureAttribute", - "vtable_address": 30937648, + "vtable_address": 30937584, "methods": [ 15629504, 15663520, - 24747814, + 24747750, 15306944, 15747168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15089600, 15077136, 15454848, 9474464, 15150000, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074272, 15047536 @@ -321569,23 +321569,23 @@ }, { "type_name": "CUserMsg_ParticleManager_SetVData", - "vtable_address": 30940208, + "vtable_address": 30940144, "methods": [ 15631712, 15659648, - 24747814, + 24747750, 15309376, 15747872, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092896, 15077344, 15462048, 9474464, 15129392, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074784, 15047792 @@ -321621,23 +321621,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateEntityPosition", - "vtable_address": 30936688, + "vtable_address": 30936624, "methods": [ 15628656, 15678704, - 24747814, + 24747750, 15306048, 15723872, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15063616, 15077040, 15451584, 9474464, 15132608, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074080, 15047440 @@ -321673,23 +321673,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateFan", - "vtable_address": 30940688, + "vtable_address": 30940624, "methods": [ 15632272, 15660240, - 24747814, + 24747750, 15309856, 15724768, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15064064, 15077392, 15464400, 9474464, 15111024, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074880, 15047840 @@ -321725,23 +321725,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleEnt", - "vtable_address": 30936048, + "vtable_address": 30935984, "methods": [ 15628048, 15675792, - 24747814, + 24747750, 15305472, 15723520, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15063232, 15076976, 15449008, 9474464, 15206560, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073952, 15047376 @@ -321777,23 +321777,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFallback", - "vtable_address": 30935728, + "vtable_address": 30935664, "methods": [ 15627712, 15678528, - 24747814, + 24747750, 15305184, 15723312, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15062912, 15076944, 15447696, 9474464, 15133888, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073888, 15047344 @@ -321829,23 +321829,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE", - "vtable_address": 30935248, + "vtable_address": 30935184, "methods": [ 15627312, 15678352, - 24747814, + 24747750, 15304720, 15723072, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15062464, 15076912, 15445648, 9474464, 15133632, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073792, 15047296 @@ -321881,23 +321881,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOffset", - "vtable_address": 30935888, + "vtable_address": 30935824, "methods": [ 15627872, 15674304, - 24747814, + 24747750, 15305328, 15723392, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15063040, 15076960, 15448304, 9474464, 15148800, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073920, 15047360 @@ -321933,23 +321933,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE", - "vtable_address": 30935408, + "vtable_address": 30935344, "methods": [ 15627472, 15684048, - 24747814, + 24747750, 15304880, 15723152, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15062592, 15076928, 15446256, 9474464, 15172096, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073824, 15047312 @@ -321985,23 +321985,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleSetFrozen", - "vtable_address": 30936208, + "vtable_address": 30936144, "methods": [ 15628272, 15645680, - 24747814, + 24747750, 15305600, 15723696, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049312, 15077008, 15449904, 9474464, 15110400, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073984, 15047392 @@ -322037,23 +322037,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleShouldDraw", - "vtable_address": 30936368, + "vtable_address": 30936304, "methods": [ 15628400, 15645808, - 24747814, + 24747750, 15305744, 15723760, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15049040, 15076992, 15450400, 9474464, 15110576, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15074016, 15047408 @@ -322089,23 +322089,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleTransform", - "vtable_address": 30935568, + "vtable_address": 30935504, "methods": [ 15680736, 15682224, - 24747814, + 24747750, 15305024, 15773312, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15064688, 15077248, 15447056, 9474464, 15160512, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073856, 15047328 @@ -322141,23 +322141,23 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticle_OBSOLETE", - "vtable_address": 30935088, + "vtable_address": 30935024, "methods": [ 15627152, 15678176, - 24747814, + 24747750, 15304560, 15722992, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15062336, 15076896, 15445040, 9474464, 15133376, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15073760, 15047280 @@ -322193,14 +322193,14 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 31323568, + "vtable_address": 31323504, "methods": [ - 18400208, - 18400272, - 18396016, - 18396032, - 18396048, - 18400400 + 18400080, + 18400144, + 18395888, + 18395904, + 18395920, + 18400272 ], "bases": [ { @@ -322276,23 +322276,23 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 31323632, + "vtable_address": 31323568, "methods": [ - 18400240, - 18400336, - 24747814, + 18400112, + 18400208, + 24747750, 15310320, 15776752, 15103920, - 24749974, - 24746806, + 24749910, + 24746742, 15223936, 15077808, 15465776, 9474464, 15243024, - 24746716, - 24746982, + 24746652, + 24746918, 15048864, 15074976, 15047888 @@ -322371,7 +322371,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 30181264, + "vtable_address": 30181200, "methods": [ 9894320, 9906016 @@ -322385,7 +322385,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 30180576, + "vtable_address": 30180512, "methods": [ 9894448, 9906288 @@ -322399,10 +322399,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 31061816, + "vtable_address": 31061752, "methods": [ - 16729376, - 16737136 + 16729248, + 16737008 ], "bases": [], "model": { @@ -322413,10 +322413,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 30994664, + "vtable_address": 30994600, "methods": [ - 16501360, - 16507008 + 16501232, + 16506880 ], "bases": [], "model": { @@ -322427,10 +322427,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 31039232, + "vtable_address": 31039168, "methods": [ - 16652656, - 16662352 + 16652528, + 16662224 ], "bases": [], "model": { @@ -322441,10 +322441,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 31687344, + "vtable_address": 31687280, "methods": [ - 21067296, - 21097584 + 21067168, + 21097456 ], "bases": [], "model": { @@ -322455,10 +322455,10 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 31073880, + "vtable_address": 31073816, "methods": [ - 16729520, - 16736976 + 16729392, + 16736848 ], "bases": [], "model": { @@ -322469,12 +322469,12 @@ }, { "type_name": "CUtlMapDataOps, int>, 79, 5>", - "vtable_address": 31317872, + "vtable_address": 31317808, "methods": [ - 18370400, - 18345776, - 18006784, - 18028448, + 18370272, + 18345648, + 18006656, + 18028320, 9634272, 9634288 ], @@ -322509,7 +322509,7 @@ }, { "type_name": "CUtlMultiJobProcessor", - "vtable_address": 30530304, + "vtable_address": 30530240, "methods": [ 12855408 ], @@ -322522,12 +322522,12 @@ }, { "type_name": "CUtlSymbolDataOps", - "vtable_address": 31379368, + "vtable_address": 31379304, "methods": [ - 18930688, - 18915824, - 18815120, - 18815104, + 18930560, + 18915696, + 18814992, + 18814976, 9634272, 9634288 ], @@ -322562,11 +322562,11 @@ }, { "type_name": "CUtlVectorAbstract > >", - "vtable_address": 31906848, + "vtable_address": 31906784, "methods": [ - 23502848, - 23296448, - 23296512 + 23502784, + 23296384, + 23296448 ], "bases": [ { @@ -322588,11 +322588,11 @@ }, { "type_name": "CUtlVectorAbstract >", - "vtable_address": 31906888, + "vtable_address": 31906824, "methods": [ - 23302528, - 23296432, - 23739728 + 23302464, + 23296368, + 23739664 ], "bases": [ { @@ -322614,7 +322614,7 @@ }, { "type_name": "CUtlVectorDataOps, 79, (ETypeDescFlags)0>", - "vtable_address": 30522072, + "vtable_address": 30522008, "methods": [ 12489040, 12741760, @@ -322654,7 +322654,7 @@ }, { "type_name": "CUtlVectorDataOps, 79, (ETypeDescFlags)0>", - "vtable_address": 30521432, + "vtable_address": 30521368, "methods": [ 12492576, 12743040, @@ -322694,7 +322694,7 @@ }, { "type_name": "CUtlVectorDataOps, CFuncConveyor::NetworkVar_m_hConveyorModels, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 30250888, + "vtable_address": 30250824, "methods": [ 10459168, 10577088, @@ -322734,12 +322734,12 @@ }, { "type_name": "CUtlVectorDataOps, CSceneEntity::NetworkVar_m_hActorList, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 31776840, + "vtable_address": 31776776, "methods": [ - 21966976, - 22245920, - 21929408, - 22244960, + 21966848, + 22245792, + 21929280, + 22244832, 9634272, 9634288 ], @@ -322774,12 +322774,12 @@ }, { "type_name": "CUtlVectorDataOps, ActiveModelConfig_t::NetworkVar_m_AssociatedEntities, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 31317616, + "vtable_address": 31317552, "methods": [ - 18042128, - 18340928, - 18006896, - 18335488, + 18042000, + 18340800, + 18006768, + 18335360, 9634272, 9634288 ], @@ -322814,7 +322814,7 @@ }, { "type_name": "CUtlVectorDataOps, CBarnLight::NetworkVar_m_LightStyleTargets, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 30312328, + "vtable_address": 30312264, "methods": [ 11577504, 11628160, @@ -322854,12 +322854,12 @@ }, { "type_name": "CUtlVectorDataOps, CBaseModelEntity::NetworkVar_m_ConfigEntitiesToPropagateMaterialDecalsTo, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 31317936, + "vtable_address": 31317872, "methods": [ - 18041840, - 18336896, - 18006768, - 18339136, + 18041712, + 18336768, + 18006640, + 18339008, 9634272, 9634288 ], @@ -322894,7 +322894,7 @@ }, { "type_name": "CUtlVectorDataOps, CInfoOffscreenPanoramaTexture::NetworkVar_m_TargetEntities, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 30150176, + "vtable_address": 30150112, "methods": [ 9657120, 9686048, @@ -322934,7 +322934,7 @@ }, { "type_name": "CUtlVectorDataOps, CTeam::NetworkVar_m_aPlayerControllers, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 30451304, + "vtable_address": 30451240, "methods": [ 12221776, 12291648, @@ -322974,7 +322974,7 @@ }, { "type_name": "CUtlVectorDataOps, CTeam::NetworkVar_m_aPlayers, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 30451240, + "vtable_address": 30451176, "methods": [ 12222064, 12310304, @@ -323014,12 +323014,12 @@ }, { "type_name": "CUtlVectorDataOps, CPlayer_WeaponServices::NetworkVar_m_hMyWeapons, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 31396192, + "vtable_address": 31396128, "methods": [ - 19471776, - 19504544, - 19464912, - 19504064, + 19471648, + 19504416, + 19464784, + 19503936, 9634272, 9634288 ], @@ -323054,12 +323054,12 @@ }, { "type_name": "CUtlVectorDataOps, CPlayer_CameraServices::NetworkVar_m_PostProcessingVolumes, -1, int>, 13, (ETypeDescFlags)0>", - "vtable_address": 31390872, + "vtable_address": 31390808, "methods": [ - 19315904, - 19438720, - 19297488, - 19438208, + 19315776, + 19438592, + 19297360, + 19438080, 9634272, 9634288 ], @@ -323094,12 +323094,12 @@ }, { "type_name": "CUtlVectorDataOps, 59, (ETypeDescFlags)0>", - "vtable_address": 31776752, + "vtable_address": 31776688, "methods": [ - 21967264, - 22179392, - 21929504, - 22180992, + 21967136, + 22179264, + 21929376, + 22180864, 9634272, 9634288 ], @@ -323134,7 +323134,7 @@ }, { "type_name": "CUtlVectorDataOps, 53, (ETypeDescFlags)0>", - "vtable_address": 30312264, + "vtable_address": 30312200, "methods": [ 11577792, 11623680, @@ -323174,7 +323174,7 @@ }, { "type_name": "CUtlVectorDataOps, 53, (ETypeDescFlags)0>", - "vtable_address": 30312200, + "vtable_address": 30312136, "methods": [ 11578080, 11608576, @@ -323214,12 +323214,12 @@ }, { "type_name": "CUtlVectorDataOps, 2, (ETypeDescFlags)0>", - "vtable_address": 31317680, + "vtable_address": 31317616, "methods": [ - 18042416, - 18280768, - 18006880, - 18282688, + 18042288, + 18280640, + 18006752, + 18282560, 9634272, 9634288 ], @@ -323254,7 +323254,7 @@ }, { "type_name": "CUtlVectorDataOps, 2, (ETypeDescFlags)0>", - "vtable_address": 30150240, + "vtable_address": 30150176, "methods": [ 9656768, 9688128, @@ -323294,7 +323294,7 @@ }, { "type_name": "CUtlVectorDataOps, 2, (ETypeDescFlags)0>", - "vtable_address": 30150368, + "vtable_address": 30150304, "methods": [ 9656064, 9690176, @@ -323334,12 +323334,12 @@ }, { "type_name": "CUtlVectorDataOps, 46, (ETypeDescFlags)0>", - "vtable_address": 31694984, + "vtable_address": 31694920, "methods": [ - 21124848, - 21358912, - 21068512, - 21357376, + 21124720, + 21358784, + 21068384, + 21357248, 9634272, 9634288 ], @@ -323374,7 +323374,7 @@ }, { "type_name": "CUtlVectorDataOps, 4, (ETypeDescFlags)0>", - "vtable_address": 30522008, + "vtable_address": 30521944, "methods": [ 12489392, 12749312, @@ -323414,7 +323414,7 @@ }, { "type_name": "CUtlVectorDataOps, 4, (ETypeDescFlags)0>", - "vtable_address": 30521368, + "vtable_address": 30521304, "methods": [ 12492928, 12753728, @@ -323454,12 +323454,12 @@ }, { "type_name": "CUtlVectorDataOps, shard_model_desc_t::NetworkVar_m_vecPanelVertices, -1, int>, 25, (ETypeDescFlags)0>", - "vtable_address": 31559000, + "vtable_address": 31558936, "methods": [ - 20669968, - 20772576, - 20620320, - 20772560, + 20669840, + 20772448, + 20620192, + 20772432, 9634272, 9634288 ], @@ -323494,7 +323494,7 @@ }, { "type_name": "CUtlVectorDataOps, CAnimGraphNetworkedVariables::NetworkVar_m_OwnerOnlyPredNetVectorVariables, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 30521944, + "vtable_address": 30521880, "methods": [ 12489744, 12750784, @@ -323534,7 +323534,7 @@ }, { "type_name": "CUtlVectorDataOps, CAnimGraphNetworkedVariables::NetworkVar_m_PredNetVectorVariables, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 30521304, + "vtable_address": 30521240, "methods": [ 12493280, 12755200, @@ -323574,12 +323574,12 @@ }, { "type_name": "CUtlVectorDataOps, CPathParticleRope::NetworkVar_m_PathNodes_Color, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 31390552, + "vtable_address": 31390488, "methods": [ - 19318096, - 19429696, - 19297552, - 19424992, + 19317968, + 19429568, + 19297424, + 19424864, 9634272, 9634288 ], @@ -323614,12 +323614,12 @@ }, { "type_name": "CUtlVectorDataOps, CPathParticleRope::NetworkVar_m_PathNodes_Position, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 31390360, + "vtable_address": 31390296, "methods": [ - 19317376, - 19428384, - 19297600, - 19422688, + 19317248, + 19428256, + 19297472, + 19422560, 9634272, 9634288 ], @@ -323654,12 +323654,12 @@ }, { "type_name": "CUtlVectorDataOps, CPathParticleRope::NetworkVar_m_PathNodes_TangentIn, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 31390424, + "vtable_address": 31390360, "methods": [ - 19316800, - 19427072, - 19297584, - 19423456, + 19316672, + 19426944, + 19297456, + 19423328, 9634272, 9634288 ], @@ -323694,12 +323694,12 @@ }, { "type_name": "CUtlVectorDataOps, CPathParticleRope::NetworkVar_m_PathNodes_TangentOut, -1, int>, 3, (ETypeDescFlags)0>", - "vtable_address": 31390488, + "vtable_address": 31390424, "methods": [ - 19316496, - 19425760, - 19297568, - 19424224, + 19316368, + 19425632, + 19297440, + 19424096, 9634272, 9634288 ], @@ -323734,12 +323734,12 @@ }, { "type_name": "CUtlVectorDataOps, CRagdollProp::NetworkVar_m_ragPos, -1, int>, 14, (ETypeDescFlags)0>", - "vtable_address": 31694920, + "vtable_address": 31694856, "methods": [ - 21124544, - 21299328, - 21068528, - 21297792, + 21124416, + 21299200, + 21068400, + 21297664, 9634272, 9634288 ], @@ -323774,12 +323774,12 @@ }, { "type_name": "CUtlVectorDataOps, shard_model_desc_t::NetworkVar_m_vInitialPanelVertices, -1, int>, 27, (ETypeDescFlags)0>", - "vtable_address": 31559064, + "vtable_address": 31559000, "methods": [ - 20670544, - 20783536, - 20620304, - 20783520, + 20670416, + 20783408, + 20620176, + 20783392, 9634272, 9634288 ], @@ -323814,12 +323814,12 @@ }, { "type_name": "CUtlVectorDataOps, 6, (ETypeDescFlags)0>", - "vtable_address": 31390616, + "vtable_address": 31390552, "methods": [ - 19314960, - 19455552, - 19297536, - 19454720, + 19314832, + 19455424, + 19297408, + 19454592, 9634272, 9634288 ], @@ -323854,12 +323854,12 @@ }, { "type_name": "CUtlVectorDataOps, 6, (ETypeDescFlags)0>", - "vtable_address": 31695048, + "vtable_address": 31694984, "methods": [ - 21124256, - 21346752, - 21068496, - 21348736, + 21124128, + 21346624, + 21068368, + 21348608, 9634272, 9634288 ], @@ -323894,7 +323894,7 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 30521880, + "vtable_address": 30521816, "methods": [ 12490112, 12778304, @@ -323934,7 +323934,7 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 30521240, + "vtable_address": 30521176, "methods": [ 12493648, 12779520, @@ -323974,12 +323974,12 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 31448976, + "vtable_address": 31448912, "methods": [ - 19862048, - 20115472, - 19830880, - 20114832, + 19861920, + 20115344, + 19830752, + 20114704, 9634272, 9634288 ], @@ -324014,12 +324014,12 @@ }, { "type_name": "CUtlVectorDataOps, 1, (ETypeDescFlags)0>", - "vtable_address": 31390680, + "vtable_address": 31390616, "methods": [ - 19318464, - 19442368, - 19297520, - 19441536, + 19318336, + 19442240, + 19297392, + 19441408, 9634272, 9634288 ], @@ -324054,7 +324054,7 @@ }, { "type_name": "CUtlVectorDataOps, 5, (ETypeDescFlags)0>", - "vtable_address": 30521688, + "vtable_address": 30521624, "methods": [ 12491168, 12739328, @@ -324094,7 +324094,7 @@ }, { "type_name": "CUtlVectorDataOps, 5, (ETypeDescFlags)0>", - "vtable_address": 30521048, + "vtable_address": 30520984, "methods": [ 12494704, 12740544, @@ -324134,12 +324134,12 @@ }, { "type_name": "CUtlVectorDataOps, 5, (ETypeDescFlags)0>", - "vtable_address": 31423168, + "vtable_address": 31423104, "methods": [ - 19568384, - 19642592, - 19513472, - 19642880, + 19568256, + 19642464, + 19513344, + 19642752, 9634272, 9634288 ], @@ -324174,7 +324174,7 @@ }, { "type_name": "CUtlVectorDataOps, 8, (ETypeDescFlags)0>", - "vtable_address": 30521560, + "vtable_address": 30521496, "methods": [ 12491872, 12736896, @@ -324214,7 +324214,7 @@ }, { "type_name": "CUtlVectorDataOps, 8, (ETypeDescFlags)0>", - "vtable_address": 30520920, + "vtable_address": 30520856, "methods": [ 12495408, 12738112, @@ -324254,7 +324254,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 30521496, + "vtable_address": 30521432, "methods": [ 12492224, 12733664, @@ -324294,7 +324294,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 30521752, + "vtable_address": 30521688, "methods": [ 12490816, 12732576, @@ -324334,7 +324334,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 30520856, + "vtable_address": 30520792, "methods": [ 12495760, 12735824, @@ -324374,7 +324374,7 @@ }, { "type_name": "CUtlVectorDataOps, 37, (ETypeDescFlags)0>", - "vtable_address": 30521112, + "vtable_address": 30521048, "methods": [ 12494352, 12734752, @@ -324414,7 +324414,7 @@ }, { "type_name": "CUtlVectorDataOps, 33, (ETypeDescFlags)0>", - "vtable_address": 30521816, + "vtable_address": 30521752, "methods": [ 12490464, 12752256, @@ -324454,7 +324454,7 @@ }, { "type_name": "CUtlVectorDataOps, 33, (ETypeDescFlags)0>", - "vtable_address": 30521176, + "vtable_address": 30521112, "methods": [ 12494000, 12756672, @@ -324494,7 +324494,7 @@ }, { "type_name": "CUtlVectorDataOps, 58, (ETypeDescFlags)0>", - "vtable_address": 30521624, + "vtable_address": 30521560, "methods": [ 12491520, 12798720, @@ -324534,7 +324534,7 @@ }, { "type_name": "CUtlVectorDataOps, 58, (ETypeDescFlags)0>", - "vtable_address": 30520984, + "vtable_address": 30520920, "methods": [ 12495056, 12799936, @@ -324574,7 +324574,7 @@ }, { "type_name": "CUtlVectorDataOps, 58, (ETypeDescFlags)0>", - "vtable_address": 30312136, + "vtable_address": 30312072, "methods": [ 11578368, 11617280, @@ -324614,12 +324614,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31777096, + "vtable_address": 31777032, "methods": [ - 21973072, - 22129504, - 21929344, - 22132592, + 21972944, + 22129376, + 21929216, + 22132464, 9634272, 9634288 ], @@ -324654,7 +324654,7 @@ }, { "type_name": "CUtlVectorDataOps >, 13, (ETypeDescFlags)0>", - "vtable_address": 30411960, + "vtable_address": 30411896, "methods": [ 12115440, 12195104, @@ -324694,12 +324694,12 @@ }, { "type_name": "CUtlVectorDataOps >, 79, (ETypeDescFlags)0>", - "vtable_address": 31638088, + "vtable_address": 31638024, "methods": [ - 20955200, - 21043616, - 20906096, - 21045472, + 20955072, + 21043488, + 20905968, + 21045344, 9634272, 9634288 ], @@ -324734,7 +324734,7 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 30338576, + "vtable_address": 30338512, "methods": [ 11764464, 11928896, @@ -324774,7 +324774,7 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 30150304, + "vtable_address": 30150240, "methods": [ 9656416, 9674464, @@ -324814,7 +324814,7 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 30544744, + "vtable_address": 30544680, "methods": [ 12932656, 13112512, @@ -324854,12 +324854,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 31390936, + "vtable_address": 31390872, "methods": [ - 19315616, - 19435040, - 19297472, - 19434880, + 19315488, + 19434912, + 19297344, + 19434752, 9634272, 9634288 ], @@ -324894,12 +324894,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 31539096, + "vtable_address": 31539032, "methods": [ - 20426352, - 20559424, - 20403424, - 20561216, + 20426224, + 20559296, + 20403296, + 20561088, 9634272, 9634288 ], @@ -324934,12 +324934,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 31539224, + "vtable_address": 31539160, "methods": [ - 20425776, - 20564096, - 20403392, - 20564512, + 20425648, + 20563968, + 20403264, + 20564384, 9634272, 9634288 ], @@ -324974,7 +324974,7 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 30411832, + "vtable_address": 30411768, "methods": [ 12116016, 12192192, @@ -325014,12 +325014,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 31539160, + "vtable_address": 31539096, "methods": [ - 20426064, - 20563520, - 20403408, - 20563936, + 20425936, + 20563392, + 20403280, + 20563808, 9634272, 9634288 ], @@ -325054,12 +325054,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 31502056, + "vtable_address": 31501992, "methods": [ - 20188304, - 20382592, - 20155728, - 20382432, + 20188176, + 20382464, + 20155600, + 20382304, 9634272, 9634288 ], @@ -325094,12 +325094,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 31776904, + "vtable_address": 31776840, "methods": [ - 21966688, - 22111456, - 21929392, - 22110496, + 21966560, + 22111328, + 21929264, + 22110368, 9634272, 9634288 ], @@ -325134,12 +325134,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 13, (ETypeDescFlags)0>", - "vtable_address": 31776968, + "vtable_address": 31776904, "methods": [ - 21966400, - 22113984, - 21929376, - 22112704, + 21966272, + 22113856, + 21929248, + 22112576, 9634272, 9634288 ], @@ -325174,12 +325174,12 @@ }, { "type_name": "CUtlVectorDataOps >, 5, (ETypeDescFlags)0>", - "vtable_address": 31777160, + "vtable_address": 31777096, "methods": [ - 21966112, - 22138464, - 21929328, - 22138048, + 21965984, + 22138336, + 21929200, + 22137920, 9634272, 9634288 ], @@ -325214,12 +325214,12 @@ }, { "type_name": "CUtlVectorDataOps >, 2, (ETypeDescFlags)0>", - "vtable_address": 31390296, + "vtable_address": 31390232, "methods": [ - 19317744, - 19433440, - 19297616, - 19433280, + 19317616, + 19433312, + 19297488, + 19433152, 9634272, 9634288 ], @@ -325254,12 +325254,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31872856, + "vtable_address": 31872792, "methods": [ - 22333936, - 22492448, - 22265024, - 22492288, + 22333808, + 22492320, + 22264896, + 22492160, 9634272, 9634288 ], @@ -325294,12 +325294,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31694856, + "vtable_address": 31694792, "methods": [ - 21133056, - 21320512, - 21068544, - 21321216, + 21132928, + 21320384, + 21068416, + 21321088, 9634272, 9634288 ], @@ -325334,12 +325334,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31448848, + "vtable_address": 31448784, "methods": [ - 19874800, - 20089280, - 19831120, - 20091264, + 19874672, + 20089152, + 19830992, + 20091136, 9634272, 9634288 ], @@ -325374,12 +325374,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31558808, + "vtable_address": 31558744, "methods": [ - 20675776, - 20761184, - 20620368, - 20763168, + 20675648, + 20761056, + 20620240, + 20763040, 9634272, 9634288 ], @@ -325414,12 +325414,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31558872, + "vtable_address": 31558808, "methods": [ - 20675328, - 20763616, - 20620352, - 20768976, + 20675200, + 20763488, + 20620224, + 20768848, 9634272, 9634288 ], @@ -325454,12 +325454,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31777032, + "vtable_address": 31776968, "methods": [ - 21973552, - 22128320, - 21929360, - 22129024, + 21973424, + 22128192, + 21929232, + 22128896, 9634272, 9634288 ], @@ -325494,12 +325494,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 3, (ETypeDescFlags)0>", - "vtable_address": 31390744, + "vtable_address": 31390680, "methods": [ - 19316192, - 19404320, - 19297504, - 19405280, + 19316064, + 19404192, + 19297376, + 19405152, 9634272, 9634288 ], @@ -325534,12 +325534,12 @@ }, { "type_name": "CUtlVectorDataOps, int, CUtlVectorMemory_Growable, int, (unsigned long)0> >, 27, (ETypeDescFlags)0>", - "vtable_address": 31558936, + "vtable_address": 31558872, "methods": [ - 20670256, - 20786960, - 20620336, - 20786896, + 20670128, + 20786832, + 20620208, + 20786768, 9634272, 9634288 ], @@ -325574,7 +325574,7 @@ }, { "type_name": "CUtlVectorDataOps >, 1, (ETypeDescFlags)0>", - "vtable_address": 30338640, + "vtable_address": 30338576, "methods": [ 11764176, 11933120, @@ -325614,12 +325614,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31379888, + "vtable_address": 31379824, "methods": [ - 18932656, - 19278528, - 18816672, - 19280032, + 18932528, + 19278400, + 18816544, + 19279904, 9634272, 9634288 ], @@ -325654,12 +325654,12 @@ }, { "type_name": "CUtlVectorDataOps >, 5, (ETypeDescFlags)0>", - "vtable_address": 31379824, + "vtable_address": 31379760, "methods": [ - 19185360, - 19184144, - 18816688, - 19081568, + 19185232, + 19184016, + 18816560, + 19081440, 9634272, 9634288 ], @@ -325694,12 +325694,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31872920, + "vtable_address": 31872856, "methods": [ - 22333456, - 22500736, - 22265008, - 22501408, + 22333328, + 22500608, + 22264880, + 22501280, 9634272, 9634288 ], @@ -325734,12 +325734,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31726040, + "vtable_address": 31725976, "methods": [ - 21399952, - 21531072, - 21368352, - 21533152, + 21399824, + 21530944, + 21368224, + 21533024, 9634272, 9634288 ], @@ -325774,12 +325774,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31501992, + "vtable_address": 31501928, "methods": [ - 20192752, - 20383840, - 20155744, - 20384768, + 20192624, + 20383712, + 20155616, + 20384640, 9634272, 9634288 ], @@ -325814,12 +325814,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31695112, + "vtable_address": 31695048, "methods": [ - 21132576, - 21134496, - 21068480, - 21361600, + 21132448, + 21134368, + 21068352, + 21361472, 9634272, 9634288 ], @@ -325854,12 +325854,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31695176, + "vtable_address": 31695112, "methods": [ - 21132128, - 21133760, - 21068464, - 21361248, + 21132000, + 21133632, + 21068336, + 21361120, 9634272, 9634288 ], @@ -325894,12 +325894,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31449040, + "vtable_address": 31448976, "methods": [ - 19874320, - 20134672, - 19830864, - 20135328, + 19874192, + 20134544, + 19830736, + 20135200, 9634272, 9634288 ], @@ -325934,12 +325934,12 @@ }, { "type_name": "CUtlVectorDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31448720, + "vtable_address": 31448656, "methods": [ - 19875280, - 20135936, - 19831264, - 20137920, + 19875152, + 20135808, + 19831136, + 20137792, 9634272, 9634288 ], @@ -325974,7 +325974,7 @@ }, { "type_name": "CUtlVectorDataOps >, 37, (ETypeDescFlags)0>", - "vtable_address": 30411896, + "vtable_address": 30411832, "methods": [ 12115728, 12172880, @@ -326014,12 +326014,12 @@ }, { "type_name": "CUtlVectorDataOps >, 58, (ETypeDescFlags)0>", - "vtable_address": 31357496, + "vtable_address": 31357432, "methods": [ - 18435408, - 18743664, - 18395568, - 18743600, + 18435280, + 18743536, + 18395440, + 18743472, 9634272, 9634288 ], @@ -326054,12 +326054,12 @@ }, { "type_name": "CUtlVectorDataOps, 10, (ETypeDescFlags)0>", - "vtable_address": 31317808, + "vtable_address": 31317744, "methods": [ - 18047264, - 18372592, - 18006800, - 18372576, + 18047136, + 18372464, + 18006672, + 18372448, 9634272, 9634288 ], @@ -326094,12 +326094,12 @@ }, { "type_name": "CUtlVectorDataOps, 10, (ETypeDescFlags)0>", - "vtable_address": 31283968, + "vtable_address": 31283904, "methods": [ - 17357344, - 17518144, - 17343696, - 17516800, + 17357216, + 17518016, + 17343568, + 17516672, 9634272, 9634288 ], @@ -326134,12 +326134,12 @@ }, { "type_name": "CUtlVectorDataOps, 10, (ETypeDescFlags)0>", - "vtable_address": 31276840, + "vtable_address": 31276776, "methods": [ - 17262752, - 17324544, - 17254176, - 17322688, + 17262624, + 17324416, + 17254048, + 17322560, 9634272, 9634288 ], @@ -326174,12 +326174,12 @@ }, { "type_name": "CUtlVectorPtrDataOps >, 10, (ETypeDescFlags)0>", - "vtable_address": 31448656, + "vtable_address": 31448592, "methods": [ - 19875760, - 20086016, - 19831280, - 19852000, + 19875632, + 20085888, + 19831152, + 19851872, 9634272, 9634288 ], @@ -326214,10 +326214,10 @@ }, { "type_name": "CVCDIOSignature", - "vtable_address": 31756984, + "vtable_address": 31756920, "methods": [ - 21933120, - 21933136 + 21932992, + 21933008 ], "bases": [ { @@ -326239,17 +326239,17 @@ }, { "type_name": "CVDataFileManager", - "vtable_address": 31326824, + "vtable_address": 31326760, "methods": [ 12202560, - 25567952, + 25567888, 12202576, - 18649264, - 18383984, - 18800128, - 18395856, - 18794944, - 18395872 + 18649136, + 18383856, + 18800000, + 18395728, + 18794816, + 18395744 ], "bases": [ { @@ -326293,7 +326293,7 @@ }, { "type_name": "CVDataFileManager", - "vtable_address": 32063792, + "vtable_address": 32063728, "methods": [], "bases": [ { @@ -326337,23 +326337,23 @@ }, { "type_name": "CVDiagnostic", - "vtable_address": 30852344, + "vtable_address": 30852280, "methods": [ 14771152, 14820976, - 24747814, + 24747750, 14366000, 14906960, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14075952, 14062960, 14527520, 9474464, 14208224, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14056656, 14024288 @@ -326389,7 +326389,7 @@ }, { "type_name": "CVScriptGameEventListener", - "vtable_address": 30542896, + "vtable_address": 30542832, "methods": [ 13213616, 13214912, @@ -326426,7 +326426,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 30543136, + "vtable_address": 30543072, "methods": [ 9634368, 9634384, @@ -326541,7 +326541,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 30543808, + "vtable_address": 30543744, "methods": [ 13036048, 13214896, @@ -326591,12 +326591,12 @@ }, { "type_name": "CVariantSaveDataOps", - "vtable_address": 32018320, + "vtable_address": 32018256, "methods": [ - 26568016, - 26466880, + 26567952, + 26466816, + 26460912, 26460976, - 26461040, 9634272, 9634288 ], @@ -326631,12 +326631,12 @@ }, { "type_name": "CVisibilityMonitor", - "vtable_address": 31468192, + "vtable_address": 31468128, "methods": [ - 20154288, + 20154160, 9634384, - 20154320, - 20154112, + 20154192, + 20153984, 9634432, 9634448, 9634464, @@ -326649,8 +326649,8 @@ 9634576, 9634592, 9634608, - 20170128, - 20154704, + 20170000, + 20154576, 9634656, 9634672, 9634688, @@ -326664,7 +326664,7 @@ 9634816, 9634832, 9634848, - 20253552, + 20253424, 9634880, 9634896, 9634912, @@ -326689,13 +326689,13 @@ 9635216, 9635232, 9635248, - 20154672, + 20154544, 9635280, - 20154656, - 20171936, - 20171376, - 20154640, - 20202640 + 20154528, + 20171808, + 20171248, + 20154512, + 20202512 ], "bases": [ { @@ -326728,10 +326728,10 @@ }, { "type_name": "CVoiceGameMgr", - "vtable_address": 31872824, + "vtable_address": 31872760, "methods": [ - 22263872, - 22266160 + 22263744, + 22266032 ], "bases": [], "model": { @@ -326742,7 +326742,7 @@ }, { "type_name": "CVoiceGameMgrHelper", - "vtable_address": 30974264, + "vtable_address": 30974200, "methods": [ 15973808, 15975312, @@ -326771,33 +326771,33 @@ }, { "type_name": "CVoteController", - "vtable_address": 30225632, + "vtable_address": 30225568, "methods": [ 13506768, 10443520, 10443824, 12023536, - 26419168, + 26419104, 12023584, - 20141632, + 20141504, 10517408, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, - 19833424, + 19933296, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -326808,12 +326808,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 10425232, 10627824, 10429136, @@ -326821,8 +326821,8 @@ 10466832, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -326846,83 +326846,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 10429968, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -326930,16 +326930,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -326960,7 +326960,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -326973,28 +326973,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -327005,7 +327005,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -327016,7 +327016,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -327049,33 +327049,33 @@ }, { "type_name": "CWaterBullet", - "vtable_address": 30775192, + "vtable_address": 30775128, "methods": [ 13526704, 13867568, 13867584, - 18377552, - 18065872, - 22542944, - 18010864, - 22542992, - 26419632, - 18009552, - 26419200, - 18378208, - 18378960, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 18377424, + 18065744, + 22542816, + 18010736, + 22542864, + 26419568, + 18009424, + 26419136, + 18378080, + 18378832, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 18378528, - 19829152, - 19833424, + 18378400, + 19829024, + 19833296, 9635872, 9665808, 9641296, @@ -327086,21 +327086,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 22460064, + 26427360, + 22459936, 13914224, 13866256, 9635312, 13883712, - 18308160, + 18308032, 9635328, - 18200688, - 19871664, + 18200560, + 19871536, 9637008, 9637024, 9837040, @@ -327112,95 +327112,95 @@ 9635472, 9635488, 9837184, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 22460224, - 19833664, + 18009440, + 19828496, + 19828672, + 22460096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -327208,17 +327208,17 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -327238,7 +327238,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -327249,30 +327249,30 @@ 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -327283,7 +327283,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -327294,72 +327294,72 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 18261648, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 18348032, + 18347904, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488 + 18275360 ], "bases": [ { @@ -327414,33 +327414,33 @@ }, { "type_name": "CWeaponAWP", - "vtable_address": 31106336, + "vtable_address": 31106272, "methods": [ 13528544, - 16930352, - 16930400, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930224, + 16930272, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -327451,21 +327451,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914656, - 17172400, - 16917984, + 26427360, + 16914528, + 17172272, + 16917856, 9635312, - 16937232, - 18308160, + 16937104, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -327476,114 +327476,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -327597,47 +327597,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -327645,11 +327645,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -327659,223 +327659,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -328005,14 +328005,14 @@ }, { "type_name": "CWeaponAWP", - "vtable_address": 31110032, + "vtable_address": 31109968, "methods": [ - 16918000, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917872, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -328142,10 +328142,10 @@ }, { "type_name": "CWeaponAWP", - "vtable_address": 31110096, + "vtable_address": 31110032, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -328275,33 +328275,33 @@ }, { "type_name": "CWeaponAug", - "vtable_address": 31102544, + "vtable_address": 31102480, "methods": [ 13528544, - 16930224, - 16930272, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930096, + 16930144, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -328312,21 +328312,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914640, - 17172400, - 16918032, + 26427360, + 16914512, + 17172272, + 16917904, 9635312, - 16937152, - 18308160, + 16937024, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -328337,114 +328337,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -328458,47 +328458,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -328506,11 +328506,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -328520,223 +328520,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -328866,14 +328866,14 @@ }, { "type_name": "CWeaponAug", - "vtable_address": 31106240, + "vtable_address": 31106176, "methods": [ - 16918048, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917920, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -329003,10 +329003,10 @@ }, { "type_name": "CWeaponAug", - "vtable_address": 31106304, + "vtable_address": 31106240, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -329136,33 +329136,33 @@ }, { "type_name": "CWeaponBaseItem", - "vtable_address": 31084352, + "vtable_address": 31084288, "methods": [ 13528544, - 16934608, - 16934656, - 18377552, - 18065872, - 17165536, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 17034752, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16934480, + 16934528, + 18377424, + 18065744, + 17165408, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 17034624, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -329173,21 +329173,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16913680, - 17172400, - 16916288, + 26427360, + 16913552, + 17172272, + 16916160, 9635312, - 16936752, - 18308160, + 16936624, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -329198,114 +329198,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -329319,47 +329319,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -329367,11 +329367,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -329381,226 +329381,226 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 16728544, 16727328, + 16924176, + 17089104, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16728672, + 16735136, 16727456, - 16924304, - 17089232, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 17072352, + 16924432, + 17110624, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 17072480, - 16924560, - 17110752, - 17035984, + 17070560, + 17086960, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17085392, + 17080400, + 17081536, + 10057152, + 16913488, 16728496, - 16728512, 16728528, - 9603712, - 16728544, - 16728560, - 17070688, - 17087088, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17085520, - 17080528, - 17081664, - 10057152, - 16913616, - 16728624, - 16728656, - 16914496, - 16913632, - 16913648, - 16913664 + 16914368, + 16913504, + 16913520, + 16913536 ], "bases": [ { @@ -329719,14 +329719,14 @@ }, { "type_name": "CWeaponBaseItem", - "vtable_address": 31088072, + "vtable_address": 31088008, "methods": [ - 16916304, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916176, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -329845,10 +329845,10 @@ }, { "type_name": "CWeaponBaseItem", - "vtable_address": 31088136, + "vtable_address": 31088072, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -329967,7 +329967,7 @@ }, { "type_name": "CWeaponBaseItem", - "vtable_address": 32581760, + "vtable_address": 32581696, "methods": [], "bases": [], "model": { @@ -329978,33 +329978,33 @@ }, { "type_name": "CWeaponBizon", - "vtable_address": 31110128, + "vtable_address": 31110064, "methods": [ 13528544, - 16930480, - 16930528, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930352, + 16930400, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -330015,21 +330015,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914672, - 17172400, - 16917936, + 26427360, + 16914544, + 17172272, + 16917808, 9635312, - 16937312, - 18308160, + 16937184, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -330040,114 +330040,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -330161,47 +330161,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -330209,11 +330209,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -330223,223 +330223,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -330569,14 +330569,14 @@ }, { "type_name": "CWeaponBizon", - "vtable_address": 31113824, + "vtable_address": 31113760, "methods": [ - 16917952, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917824, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -330706,10 +330706,10 @@ }, { "type_name": "CWeaponBizon", - "vtable_address": 31113888, + "vtable_address": 31113824, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -330839,33 +330839,33 @@ }, { "type_name": "CWeaponCZ75a", - "vtable_address": 31223824, + "vtable_address": 31223760, "methods": [ 13528544, - 16933808, - 16933856, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933680, + 16933728, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -330876,21 +330876,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915168, - 17172400, - 16916736, + 26427360, + 16915040, + 17172272, + 16916608, 9635312, - 16939712, - 18308160, + 16939584, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -330901,114 +330901,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -331022,47 +331022,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -331070,11 +331070,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -331084,223 +331084,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16915024, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, + 16728400, + 16914448, 16914464, - 16915152, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080848, - 17074800, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080720, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -331430,14 +331430,14 @@ }, { "type_name": "CWeaponCZ75a", - "vtable_address": 31227520, + "vtable_address": 31227456, "methods": [ - 16916752, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916624, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -331567,10 +331567,10 @@ }, { "type_name": "CWeaponCZ75a", - "vtable_address": 31227584, + "vtable_address": 31227520, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -331700,9 +331700,9 @@ }, { "type_name": "CWeaponEconData", - "vtable_address": 31061792, + "vtable_address": 31061728, "methods": [ - 16739184 + 16739056 ], "bases": [ { @@ -331724,33 +331724,33 @@ }, { "type_name": "CWeaponElite", - "vtable_address": 31239256, + "vtable_address": 31239192, "methods": [ 13528544, - 17173488, - 17173552, - 18377552, - 18065872, - 17176736, - 18010864, - 17173312, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17173360, + 17173424, + 18377424, + 18065744, + 17176608, + 18010736, + 17173184, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -331761,21 +331761,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172432, - 17176160, - 17174608, + 26427360, + 17172304, + 17176032, + 17174480, 9635312, - 17191232, - 18308160, + 17191104, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -331786,114 +331786,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -331907,47 +331907,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -331955,11 +331955,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -331969,223 +331969,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 17172320, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 17172448, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17177136, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17177264, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -332315,14 +332315,14 @@ }, { "type_name": "CWeaponElite", - "vtable_address": 31242952, + "vtable_address": 31242888, "methods": [ - 17174624, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174496, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -332452,10 +332452,10 @@ }, { "type_name": "CWeaponElite", - "vtable_address": 31243016, + "vtable_address": 31242952, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -332585,33 +332585,33 @@ }, { "type_name": "CWeaponFamas", - "vtable_address": 31113920, + "vtable_address": 31113856, "methods": [ 13528544, - 16930608, - 16930656, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930480, + 16930528, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -332622,21 +332622,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914688, - 17172400, - 16917888, + 26427360, + 16914560, + 17172272, + 16917760, 9635312, - 16937392, - 18308160, + 16937264, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -332647,114 +332647,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -332768,47 +332768,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -332816,11 +332816,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -332830,223 +332830,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -333176,14 +333176,14 @@ }, { "type_name": "CWeaponFamas", - "vtable_address": 31117616, + "vtable_address": 31117552, "methods": [ - 16917904, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917776, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -333313,10 +333313,10 @@ }, { "type_name": "CWeaponFamas", - "vtable_address": 31117680, + "vtable_address": 31117616, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -333446,33 +333446,33 @@ }, { "type_name": "CWeaponFiveSeven", - "vtable_address": 31117712, + "vtable_address": 31117648, "methods": [ 13528544, - 16930736, - 16930784, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930608, + 16930656, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -333483,21 +333483,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914704, - 17172400, - 16917840, + 26427360, + 16914576, + 17172272, + 16917712, 9635312, - 16937472, - 18308160, + 16937344, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -333508,114 +333508,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -333629,47 +333629,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -333677,11 +333677,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -333691,223 +333691,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -334037,14 +334037,14 @@ }, { "type_name": "CWeaponFiveSeven", - "vtable_address": 31121408, + "vtable_address": 31121344, "methods": [ - 16917856, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917728, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -334174,10 +334174,10 @@ }, { "type_name": "CWeaponFiveSeven", - "vtable_address": 31121472, + "vtable_address": 31121408, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -334307,33 +334307,33 @@ }, { "type_name": "CWeaponG3SG1", - "vtable_address": 31121504, + "vtable_address": 31121440, "methods": [ 13528544, - 16930864, - 16930912, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930736, + 16930784, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -334344,21 +334344,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914720, - 17172400, - 16917792, + 26427360, + 16914592, + 17172272, + 16917664, 9635312, - 16937552, - 18308160, + 16937424, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -334369,114 +334369,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -334490,47 +334490,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -334538,11 +334538,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -334552,223 +334552,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -334898,14 +334898,14 @@ }, { "type_name": "CWeaponG3SG1", - "vtable_address": 31125200, + "vtable_address": 31125136, "methods": [ - 16917808, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917680, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -335035,10 +335035,10 @@ }, { "type_name": "CWeaponG3SG1", - "vtable_address": 31125264, + "vtable_address": 31125200, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -335168,33 +335168,33 @@ }, { "type_name": "CWeaponGalilAR", - "vtable_address": 31125296, + "vtable_address": 31125232, "methods": [ 13528544, - 16930992, - 16931040, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930864, + 16930912, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -335205,21 +335205,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914736, - 17172400, - 16917744, + 26427360, + 16914608, + 17172272, + 16917616, 9635312, - 16937632, - 18308160, + 16937504, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -335230,114 +335230,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -335351,47 +335351,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -335399,11 +335399,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -335413,223 +335413,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -335759,14 +335759,14 @@ }, { "type_name": "CWeaponGalilAR", - "vtable_address": 31128992, + "vtable_address": 31128928, "methods": [ - 16917760, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917632, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -335896,10 +335896,10 @@ }, { "type_name": "CWeaponGalilAR", - "vtable_address": 31129056, + "vtable_address": 31128992, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -336029,33 +336029,33 @@ }, { "type_name": "CWeaponGlock", - "vtable_address": 31129088, + "vtable_address": 31129024, "methods": [ 13528544, - 16931120, - 16931168, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16930992, + 16931040, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -336066,21 +336066,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914752, - 17172400, - 16917696, + 26427360, + 16914624, + 17172272, + 16917568, 9635312, - 16937712, - 18308160, + 16937584, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -336091,114 +336091,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -336212,47 +336212,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -336260,11 +336260,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -336274,223 +336274,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -336620,14 +336620,14 @@ }, { "type_name": "CWeaponGlock", - "vtable_address": 31132784, + "vtable_address": 31132720, "methods": [ - 16917712, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917584, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -336757,10 +336757,10 @@ }, { "type_name": "CWeaponGlock", - "vtable_address": 31132848, + "vtable_address": 31132784, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -336890,33 +336890,33 @@ }, { "type_name": "CWeaponHKP2000", - "vtable_address": 31132880, + "vtable_address": 31132816, "methods": [ 13528544, - 16931248, - 16931296, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16931120, + 16931168, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -336927,21 +336927,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914768, - 17172400, - 16917648, + 26427360, + 16914640, + 17172272, + 16917520, 9635312, - 16937792, - 18308160, + 16937664, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -336952,114 +336952,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -337073,47 +337073,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -337121,11 +337121,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -337135,223 +337135,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -337481,14 +337481,14 @@ }, { "type_name": "CWeaponHKP2000", - "vtable_address": 31136576, + "vtable_address": 31136512, "methods": [ - 16917664, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917536, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -337618,10 +337618,10 @@ }, { "type_name": "CWeaponHKP2000", - "vtable_address": 31136640, + "vtable_address": 31136576, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -337751,33 +337751,33 @@ }, { "type_name": "CWeaponM249", - "vtable_address": 31197344, + "vtable_address": 31197280, "methods": [ 13528544, - 16933424, - 16933472, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933296, + 16933344, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -337788,21 +337788,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915040, - 17172400, - 16916832, + 26427360, + 16914912, + 17172272, + 16916704, 9635312, - 16939152, - 18308160, + 16939024, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -337813,114 +337813,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -337934,47 +337934,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -337982,11 +337982,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -337996,223 +337996,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -338342,14 +338342,14 @@ }, { "type_name": "CWeaponM249", - "vtable_address": 31201040, + "vtable_address": 31200976, "methods": [ - 16916848, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916720, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -338479,10 +338479,10 @@ }, { "type_name": "CWeaponM249", - "vtable_address": 31201104, + "vtable_address": 31201040, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -338612,33 +338612,33 @@ }, { "type_name": "CWeaponM4A1", - "vtable_address": 31140464, + "vtable_address": 31140400, "methods": [ 13528544, - 16931504, - 16931552, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16931376, + 16931424, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -338649,21 +338649,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914800, - 17172400, - 16917552, + 26427360, + 16914672, + 17172272, + 16917424, 9635312, - 16937952, - 18308160, + 16937824, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -338674,114 +338674,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -338795,47 +338795,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -338843,11 +338843,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -338857,223 +338857,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -339203,14 +339203,14 @@ }, { "type_name": "CWeaponM4A1", - "vtable_address": 31144160, + "vtable_address": 31144096, "methods": [ - 16917568, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917440, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -339340,10 +339340,10 @@ }, { "type_name": "CWeaponM4A1", - "vtable_address": 31144224, + "vtable_address": 31144160, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -339473,33 +339473,33 @@ }, { "type_name": "CWeaponM4A1Silencer", - "vtable_address": 31144256, + "vtable_address": 31144192, "methods": [ 13528544, - 16931632, - 16931680, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16931504, + 16931552, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -339510,21 +339510,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914816, - 17172400, - 16917504, + 26427360, + 16914688, + 17172272, + 16917376, 9635312, - 16938032, - 18308160, + 16937904, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -339535,114 +339535,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -339656,47 +339656,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -339704,11 +339704,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -339718,223 +339718,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -340064,14 +340064,14 @@ }, { "type_name": "CWeaponM4A1Silencer", - "vtable_address": 31147952, + "vtable_address": 31147888, "methods": [ - 16917520, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917392, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -340201,10 +340201,10 @@ }, { "type_name": "CWeaponM4A1Silencer", - "vtable_address": 31148016, + "vtable_address": 31147952, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -340334,33 +340334,33 @@ }, { "type_name": "CWeaponMAC10", - "vtable_address": 31148048, + "vtable_address": 31147984, "methods": [ 13528544, - 16931760, - 16931808, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16931632, + 16931680, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -340371,21 +340371,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914832, - 17172400, - 16917456, + 26427360, + 16914704, + 17172272, + 16917328, 9635312, - 16938112, - 18308160, + 16937984, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -340396,114 +340396,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -340517,47 +340517,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -340565,11 +340565,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -340579,223 +340579,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -340925,14 +340925,14 @@ }, { "type_name": "CWeaponMAC10", - "vtable_address": 31151744, + "vtable_address": 31151680, "methods": [ - 16917472, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917344, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -341062,10 +341062,10 @@ }, { "type_name": "CWeaponMAC10", - "vtable_address": 31151808, + "vtable_address": 31151744, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -341195,33 +341195,33 @@ }, { "type_name": "CWeaponMP5SD", - "vtable_address": 31155632, + "vtable_address": 31155568, "methods": [ 13528544, - 16932016, - 16932064, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16931888, + 16931936, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -341232,21 +341232,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914864, - 17172400, - 16917360, + 26427360, + 16914736, + 17172272, + 16917232, 9635312, - 16938272, - 18308160, + 16938144, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -341257,114 +341257,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -341378,47 +341378,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -341426,11 +341426,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -341440,223 +341440,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -341786,14 +341786,14 @@ }, { "type_name": "CWeaponMP5SD", - "vtable_address": 31159328, + "vtable_address": 31159264, "methods": [ - 16917376, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917248, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -341923,10 +341923,10 @@ }, { "type_name": "CWeaponMP5SD", - "vtable_address": 31159392, + "vtable_address": 31159328, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -342056,33 +342056,33 @@ }, { "type_name": "CWeaponMP7", - "vtable_address": 31159424, + "vtable_address": 31159360, "methods": [ 13528544, - 16932144, - 16932192, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932016, + 16932064, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -342093,21 +342093,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914880, - 17172400, - 16917312, + 26427360, + 16914752, + 17172272, + 16917184, 9635312, - 16938352, - 18308160, + 16938224, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -342118,114 +342118,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -342239,47 +342239,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -342287,11 +342287,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -342301,223 +342301,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -342647,14 +342647,14 @@ }, { "type_name": "CWeaponMP7", - "vtable_address": 31163120, + "vtable_address": 31163056, "methods": [ - 16917328, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917200, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -342784,10 +342784,10 @@ }, { "type_name": "CWeaponMP7", - "vtable_address": 31163184, + "vtable_address": 31163120, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -342917,33 +342917,33 @@ }, { "type_name": "CWeaponMP9", - "vtable_address": 31163216, + "vtable_address": 31163152, "methods": [ 13528544, - 16932272, - 16932320, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932144, + 16932192, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -342954,21 +342954,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914896, - 17172400, - 16917264, + 26427360, + 16914768, + 17172272, + 16917136, 9635312, - 16938432, - 18308160, + 16938304, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -342979,114 +342979,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -343100,47 +343100,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -343148,11 +343148,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -343162,223 +343162,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -343508,14 +343508,14 @@ }, { "type_name": "CWeaponMP9", - "vtable_address": 31166912, + "vtable_address": 31166848, "methods": [ - 16917280, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917152, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -343645,10 +343645,10 @@ }, { "type_name": "CWeaponMP9", - "vtable_address": 31166976, + "vtable_address": 31166912, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -343778,33 +343778,33 @@ }, { "type_name": "CWeaponMag7", - "vtable_address": 31151840, + "vtable_address": 31151776, "methods": [ 13528544, - 16931888, - 16931936, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16931760, + 16931808, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -343815,21 +343815,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914848, - 17172400, - 16917408, + 26427360, + 16914720, + 17172272, + 16917280, 9635312, - 16938192, - 18308160, + 16938064, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -343840,114 +343840,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -343961,47 +343961,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -344009,11 +344009,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -344023,223 +344023,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -344369,14 +344369,14 @@ }, { "type_name": "CWeaponMag7", - "vtable_address": 31155536, + "vtable_address": 31155472, "methods": [ - 16917424, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917296, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -344506,10 +344506,10 @@ }, { "type_name": "CWeaponMag7", - "vtable_address": 31155600, + "vtable_address": 31155536, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -344639,33 +344639,33 @@ }, { "type_name": "CWeaponNOVA", - "vtable_address": 31208720, + "vtable_address": 31208656, "methods": [ 13528544, - 16934064, - 16934112, - 18377552, - 18065872, - 17165536, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933936, + 16933984, + 18377424, + 18065744, + 17165408, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -344676,21 +344676,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915104, - 17172400, - 16916592, + 26427360, + 16914976, + 17172272, + 16916464, 9635312, - 16939392, - 18308160, + 16939264, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -344701,114 +344701,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -344822,47 +344822,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -344870,11 +344870,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -344884,221 +344884,221 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, + 16924176, + 17087920, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 17088048, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 17107680, + 16914000, + 17109936, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 17107808, - 16914128, - 17110064, - 17035984, - 16728496, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 17069440, - 17093728, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 17069312, + 17093600, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624 + 16913488, + 16728496 ], "bases": [ { @@ -345228,14 +345228,14 @@ }, { "type_name": "CWeaponNOVA", - "vtable_address": 31212400, + "vtable_address": 31212336, "methods": [ - 16916608, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916480, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -345365,10 +345365,10 @@ }, { "type_name": "CWeaponNOVA", - "vtable_address": 31212464, + "vtable_address": 31212400, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -345498,33 +345498,33 @@ }, { "type_name": "CWeaponNegev", - "vtable_address": 31167008, + "vtable_address": 31166944, "methods": [ 13528544, - 16932400, - 16932448, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932272, + 16932320, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -345535,21 +345535,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914912, - 17172400, - 16917216, + 26427360, + 16914784, + 17172272, + 16917088, 9635312, - 16938512, - 18308160, + 16938384, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -345560,114 +345560,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -345681,47 +345681,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -345729,11 +345729,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -345743,223 +345743,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -346089,14 +346089,14 @@ }, { "type_name": "CWeaponNegev", - "vtable_address": 31170704, + "vtable_address": 31170640, "methods": [ - 16917232, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917104, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -346226,10 +346226,10 @@ }, { "type_name": "CWeaponNegev", - "vtable_address": 31170768, + "vtable_address": 31170704, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -346359,33 +346359,33 @@ }, { "type_name": "CWeaponP250", - "vtable_address": 31170800, + "vtable_address": 31170736, "methods": [ 13528544, - 16932528, - 16932576, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932400, + 16932448, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -346396,21 +346396,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914928, - 17172400, - 16917168, + 26427360, + 16914800, + 17172272, + 16917040, 9635312, - 16938592, - 18308160, + 16938464, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -346421,114 +346421,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -346542,47 +346542,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -346590,11 +346590,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -346604,223 +346604,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -346950,14 +346950,14 @@ }, { "type_name": "CWeaponP250", - "vtable_address": 31174496, + "vtable_address": 31174432, "methods": [ - 16917184, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917056, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -347087,10 +347087,10 @@ }, { "type_name": "CWeaponP250", - "vtable_address": 31174560, + "vtable_address": 31174496, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -347220,33 +347220,33 @@ }, { "type_name": "CWeaponP90", - "vtable_address": 31174592, + "vtable_address": 31174528, "methods": [ 13528544, - 16932656, - 16932704, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932528, + 16932576, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -347257,21 +347257,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914944, - 17172400, - 16917120, + 26427360, + 16914816, + 17172272, + 16916992, 9635312, - 16938672, - 18308160, + 16938544, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -347282,114 +347282,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -347403,47 +347403,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -347451,11 +347451,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -347465,223 +347465,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -347811,14 +347811,14 @@ }, { "type_name": "CWeaponP90", - "vtable_address": 31178288, + "vtable_address": 31178224, "methods": [ - 16917136, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917008, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -347948,10 +347948,10 @@ }, { "type_name": "CWeaponP90", - "vtable_address": 31178352, + "vtable_address": 31178288, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -348081,33 +348081,33 @@ }, { "type_name": "CWeaponRevolver", - "vtable_address": 31201136, + "vtable_address": 31201072, "methods": [ 13528544, - 16933552, - 16933600, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933424, + 16933472, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -348118,21 +348118,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915056, - 17172400, - 16916784, + 26427360, + 16914928, + 17172272, + 16916656, 9635312, - 16939232, - 18308160, + 16939104, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -348143,114 +348143,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -348264,47 +348264,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -348312,11 +348312,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -348326,223 +348326,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -348672,14 +348672,14 @@ }, { "type_name": "CWeaponRevolver", - "vtable_address": 31204832, + "vtable_address": 31204768, "methods": [ - 16916800, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916672, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -348809,10 +348809,10 @@ }, { "type_name": "CWeaponRevolver", - "vtable_address": 31204896, + "vtable_address": 31204832, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -348942,33 +348942,33 @@ }, { "type_name": "CWeaponSCAR20", - "vtable_address": 31178384, + "vtable_address": 31178320, "methods": [ 13528544, - 16932784, - 16932832, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932656, + 16932704, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -348979,21 +348979,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914960, - 17172400, - 16917072, + 26427360, + 16914832, + 17172272, + 16916944, 9635312, - 16938752, - 18308160, + 16938624, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -349004,114 +349004,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -349125,47 +349125,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -349173,11 +349173,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -349187,223 +349187,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -349533,14 +349533,14 @@ }, { "type_name": "CWeaponSCAR20", - "vtable_address": 31182080, + "vtable_address": 31182016, "methods": [ - 16917088, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916960, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -349670,10 +349670,10 @@ }, { "type_name": "CWeaponSCAR20", - "vtable_address": 31182144, + "vtable_address": 31182080, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -349803,33 +349803,33 @@ }, { "type_name": "CWeaponSG556", - "vtable_address": 31182176, + "vtable_address": 31182112, "methods": [ 13528544, - 16932912, - 16932960, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932784, + 16932832, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -349840,21 +349840,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914976, - 17172400, - 16917024, + 26427360, + 16914848, + 17172272, + 16916896, 9635312, - 16938832, - 18308160, + 16938704, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -349865,114 +349865,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -349986,47 +349986,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -350034,11 +350034,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -350048,223 +350048,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -350394,14 +350394,14 @@ }, { "type_name": "CWeaponSG556", - "vtable_address": 31185872, + "vtable_address": 31185808, "methods": [ - 16917040, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916912, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -350531,10 +350531,10 @@ }, { "type_name": "CWeaponSG556", - "vtable_address": 31185936, + "vtable_address": 31185872, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -350664,33 +350664,33 @@ }, { "type_name": "CWeaponSSG08", - "vtable_address": 31185968, + "vtable_address": 31185904, "methods": [ 13528544, - 16933040, - 16933088, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16932912, + 16932960, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -350701,21 +350701,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914992, - 17172400, - 16916976, + 26427360, + 16914864, + 17172272, + 16916848, 9635312, - 16938912, - 18308160, + 16938784, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -350726,114 +350726,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -350847,47 +350847,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -350895,11 +350895,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -350909,223 +350909,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -351255,14 +351255,14 @@ }, { "type_name": "CWeaponSSG08", - "vtable_address": 31189664, + "vtable_address": 31189600, "methods": [ - 16916992, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916864, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -351392,10 +351392,10 @@ }, { "type_name": "CWeaponSSG08", - "vtable_address": 31189728, + "vtable_address": 31189664, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -351525,33 +351525,33 @@ }, { "type_name": "CWeaponSawedoff", - "vtable_address": 31212496, + "vtable_address": 31212432, "methods": [ 13528544, - 16934192, - 16934240, - 18377552, - 18065872, - 17165536, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16934064, + 16934112, + 18377424, + 18065744, + 17165408, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -351562,21 +351562,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915120, - 17172400, - 16916544, + 26427360, + 16914992, + 17172272, + 16916416, 9635312, - 16939472, - 18308160, + 16939344, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -351587,114 +351587,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -351708,47 +351708,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -351756,11 +351756,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -351770,221 +351770,221 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, + 16924176, + 17087920, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 17088048, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 17107648, + 16914000, + 17109936, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 17107776, - 16914128, - 17110064, - 17035984, - 16728496, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 17069440, - 17093728, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 17069312, + 17093600, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624 + 16913488, + 16728496 ], "bases": [ { @@ -352114,14 +352114,14 @@ }, { "type_name": "CWeaponSawedoff", - "vtable_address": 31216176, + "vtable_address": 31216112, "methods": [ - 16916560, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916432, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -352251,10 +352251,10 @@ }, { "type_name": "CWeaponSawedoff", - "vtable_address": 31216240, + "vtable_address": 31216176, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -352384,33 +352384,33 @@ }, { "type_name": "CWeaponTaser", - "vtable_address": 31266032, + "vtable_address": 31265968, "methods": [ 13528544, - 17173648, - 17173712, - 18377552, - 18065872, - 17176800, - 18010864, - 17173312, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 17173520, + 17173584, + 18377424, + 18065744, + 17176672, + 18010736, + 17173184, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -352421,21 +352421,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 17172880, - 17176160, - 17174960, + 26427360, + 17172752, + 17176032, + 17174832, 9635312, - 17192128, - 18308160, + 17192000, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -352446,114 +352446,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -352567,47 +352567,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -352615,11 +352615,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -352629,223 +352629,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, - 16727424, + 17172160, + 18004912, + 18036064, + 17182064, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 17182192, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 17172736, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 17172864, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17215216, + 17114592, + 17182560, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17215344, - 17114720, - 17182688, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17181712, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17181584, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 17201616, - 16927632 + 16913488, + 16728496, + 17201488, + 16927504 ], "bases": [ { @@ -352975,14 +352975,14 @@ }, { "type_name": "CWeaponTaser", - "vtable_address": 31269728, + "vtable_address": 31269664, "methods": [ - 17174976, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 17174848, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -353112,10 +353112,10 @@ }, { "type_name": "CWeaponTaser", - "vtable_address": 31269792, + "vtable_address": 31269728, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -353245,33 +353245,33 @@ }, { "type_name": "CWeaponTec9", - "vtable_address": 31189760, + "vtable_address": 31189696, "methods": [ 13528544, - 16933168, - 16933216, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933040, + 16933088, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -353282,21 +353282,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915008, - 17172400, - 16916928, + 26427360, + 16914880, + 17172272, + 16916800, 9635312, - 16938992, - 18308160, + 16938864, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -353307,114 +353307,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -353428,47 +353428,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -353476,11 +353476,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -353490,223 +353490,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -353836,14 +353836,14 @@ }, { "type_name": "CWeaponTec9", - "vtable_address": 31193456, + "vtable_address": 31193392, "methods": [ - 16916944, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916816, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -353973,10 +353973,10 @@ }, { "type_name": "CWeaponTec9", - "vtable_address": 31193520, + "vtable_address": 31193456, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -354106,33 +354106,33 @@ }, { "type_name": "CWeaponUMP45", - "vtable_address": 31193552, + "vtable_address": 31193488, "methods": [ 13528544, - 16933296, - 16933344, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16933168, + 16933216, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -354143,21 +354143,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915024, - 17172400, - 16916880, + 26427360, + 16914896, + 17172272, + 16916752, 9635312, - 16939072, - 18308160, + 16938944, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -354168,114 +354168,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -354289,47 +354289,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -354337,11 +354337,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -354351,223 +354351,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -354697,14 +354697,14 @@ }, { "type_name": "CWeaponUMP45", - "vtable_address": 31197248, + "vtable_address": 31197184, "methods": [ - 16916896, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916768, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -354834,10 +354834,10 @@ }, { "type_name": "CWeaponUMP45", - "vtable_address": 31197312, + "vtable_address": 31197248, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -354967,33 +354967,33 @@ }, { "type_name": "CWeaponUSPSilencer", - "vtable_address": 31136672, + "vtable_address": 31136608, "methods": [ 13528544, - 16931376, - 16931424, - 18377552, - 18065872, - 17165536, - 18010864, - 17171104, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16931248, + 16931296, + 18377424, + 18065744, + 17165408, + 18010736, + 17170976, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -355004,21 +355004,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16914784, - 17172400, - 16917600, + 26427360, + 16914656, + 17172272, + 16917472, 9635312, - 16937872, - 18308160, + 16937744, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -355029,114 +355029,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -355150,47 +355150,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -355198,11 +355198,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -355212,223 +355212,223 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17079296, 16727296, - 16742560, - 22544720, - 16727328, + 16727312, + 16924208, + 16927344, + 16924176, + 17090272, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 16934608, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17079424, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, - 16927472, - 16924304, - 17090400, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16735136, + 17114448, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 16934736, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 17114576, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, - 16728288, - 16738816, - 16738560, + 16914944, + 16914336, + 16728272, + 16928336, + 16914416, + 17166672, + 17042784, + 16927440, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 16915072, - 16914464, + 17104592, + 17114592, + 17111296, + 17030160, + 16728368, + 16914432, 16728400, - 16928464, - 16914544, - 17166800, - 17042912, - 16927568, - 16728432, - 16728448, - 16728464, - 16728480, - 17104720, - 17114720, - 17111424, - 17030288, - 16728496, - 16914560, - 16728528, - 16914576, - 16914592, - 17041872, - 17071856, - 17092960, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 16914448, + 16914464, + 17041744, + 17071728, + 17092832, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624, - 16914528, - 16927632 + 16913488, + 16728496, + 16914400, + 16927504 ], "bases": [ { @@ -355558,14 +355558,14 @@ }, { "type_name": "CWeaponUSPSilencer", - "vtable_address": 31140368, + "vtable_address": 31140304, "methods": [ - 16917616, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16917488, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -355695,10 +355695,10 @@ }, { "type_name": "CWeaponUSPSilencer", - "vtable_address": 31140432, + "vtable_address": 31140368, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -355828,33 +355828,33 @@ }, { "type_name": "CWeaponXM1014", - "vtable_address": 31216272, + "vtable_address": 31216208, "methods": [ 13528544, - 16934320, - 16934368, - 18377552, - 18065872, - 17165536, - 18010864, - 17169712, - 26419632, - 18009552, - 26419200, - 16959712, - 17168512, - 18011056, - 19835392, - 19835328, - 18003520, - 18013008, - 18291712, + 16934192, + 16934240, + 18377424, + 18065744, + 17165408, + 18010736, + 17169584, + 26419568, + 18009424, + 26419136, + 16959584, + 17168384, 18010928, - 18035200, + 19835264, + 19835200, + 18003392, + 18012880, + 18291584, + 18010800, + 18035072, 11747408, - 19848720, - 19829152, - 17168496, + 19848592, + 19829024, + 17168368, 9635872, 9665808, 9641296, @@ -355865,21 +355865,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 16915136, - 17172400, - 16916496, + 26427360, + 16915008, + 17172272, + 16916368, 9635312, - 16939552, - 18308160, + 16939424, + 18308032, 9635328, - 20114848, - 18012976, + 20114720, + 18012848, 9637008, 9637024, 9837040, @@ -355890,114 +355890,114 @@ 9837088, 9635472, 9635488, - 16914496, - 18003584, - 18020384, - 18020304, - 18010064, - 18173664, - 18216544, - 18326368, + 16914368, + 18003456, + 18020256, + 18020176, + 18009936, + 18173536, + 18216416, + 18326240, 9843056, 9635616, - 16728608, + 16728480, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 18009568, - 19828624, - 19828800, - 19844224, - 19833664, + 18009440, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, - 18003552, - 18191008, + 19828752, + 18003424, + 18190880, 11742336, - 18037136, - 22544736, - 19834496, + 18037008, + 22544608, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, - 18009856, + 18009728, 9636080, - 16929120, + 16928992, 9637216, 9636096, 11746864, - 16944096, + 16943968, 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, - 18013520, + 21228944, + 19828784, + 18013392, 11742368, 11865936, 9636208, @@ -356011,47 +356011,47 @@ 9636304, 9636320, 9636336, - 16727392, - 16727408, + 16727264, + 16727280, 9636384, 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, 9896176, - 16730912, - 16730880, - 16730704, + 16730784, + 16730752, + 16730576, 9636448, 9640128, 9636464, - 18010528, + 18010400, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -356059,11 +356059,11 @@ 9636688, 9636704, 9636720, - 16727520, - 16727536, - 18098912, - 21066880, - 17036992, + 16727392, + 16727408, + 18098784, + 21066752, + 17036864, 11742320, 11742400, 11742464, @@ -356073,221 +356073,221 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18327344, + 18327216, 9637056, 9637072, - 18149776, - 18010976, - 18019008, + 18149648, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 16926944, - 18057568, - 18003952, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592, - 18003520, - 18003536, - 18255184, + 16926816, + 18057440, + 18003824, + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464, + 18003392, + 18003408, + 18255056, 9837104, - 18009536, + 18009408, 9837120, - 18297520, - 18003936, + 18297392, + 18003808, 9837136, 9837152, - 17168528, + 17168400, 9837168, - 18008208, - 18010192, + 18008080, + 18010064, 9837200, 9837216, - 18010448, - 18003632, - 18046256, - 18150272, + 18010320, + 18003504, + 18046128, + 18150144, 9837232, - 18094832, - 18068080, - 18003968, + 18094704, + 18067952, + 18003840, 9837248, - 18212000, - 18027744, + 18211872, + 18027616, 9837264, 9837280, 9837296, - 18003984, - 18185232, - 18003920, + 18003856, + 18185104, + 18003792, 9843024, 9837312, 9837328, - 18275488, + 18275360, 9964736, 11928736, 11821568, - 19898864, - 19950928, + 19898736, + 19950800, 11747536, 11821728, - 19837808, - 19837840, - 19837872, - 19855344, - 19862720, + 19837680, + 19837712, + 19837744, + 19855216, + 19862592, 9890848, 9890864, - 17169376, - 17169536, + 17169248, + 17169408, + 16727088, + 22544608, + 16727104, + 16727136, + 16739904, + 16727168, + 16742432, + 22544592, + 16727200, 16727216, - 22544736, 16727232, - 16727264, - 16740032, + 16727248, + 22693456, + 22553280, + 16913984, + 17168496, + 17076576, 16727296, - 16742560, - 22544720, + 16727312, + 16924208, 16727328, + 16924176, + 17087920, + 16914016, + 16728448, + 16728464, + 18061024, + 18061056, 16727344, + 18062672, + 10057056, + 16914032, + 18061088, + 16728240, + 16728256, + 17023792, + 18061312, + 11253728, + 18061536, + 18062864, + 18063360, + 18061184, + 18061248, + 16732848, + 16732784, 16727360, + 18061408, + 18061872, + 18179296, + 18004896, + 18004896, 16727376, - 22693520, - 22553408, - 16914112, - 17168624, - 17076704, + 17172160, + 18004912, + 18036064, 16727424, 16727440, - 16924336, + 16735136, 16727456, - 16924304, - 17088048, - 16914144, - 16728576, - 16728592, - 18061152, - 18061184, + 16924400, + 16914384, + 16924272, + 16942432, 16727472, - 18062800, - 10057056, - 16914160, - 18061216, - 16728368, - 16728384, - 17023920, - 18061440, - 11253728, - 18061664, - 18062992, - 18063488, - 18061312, - 18061376, - 16732976, - 16732912, 16727488, - 18061536, - 18062000, - 18179424, - 18005024, - 18005024, - 16727504, - 17172288, - 18005040, - 18036192, - 16727552, - 16727568, - 16735264, - 16727584, - 16924528, - 16914512, - 16924400, - 16942560, - 16727600, - 16727616, 10057088, - 16727648, - 16735408, + 16727520, + 16735280, 10424960, 10057104, - 16727664, - 16727712, - 16727728, - 16727776, - 16727824, - 16727872, - 16727920, + 16727536, + 16727584, + 16727600, + 16727648, + 16727696, + 16727744, + 16727792, + 16727840, + 16598720, + 16727888, + 16727904, 16727968, - 16598848, - 16728016, 16728032, 16728096, + 16598768, + 15970768, 16728160, + 16738688, + 16738432, + 16728176, + 16929120, + 16728192, + 10057120, + 16728208, + 16914208, + 16914256, + 16732720, 16728224, - 16598896, - 15970768, + 15970784, + 16914336, + 16728272, + 16925952, 16728288, - 16738816, - 16738560, + 17166672, + 17042784, + 10057136, 16728304, - 16929248, 16728320, - 10057120, 16728336, - 16914336, - 16914384, - 16732848, 16728352, - 15970784, - 16914464, + 17107616, + 16914000, + 17109936, + 17035856, + 16728368, + 16728384, 16728400, - 16926080, + 9603712, 16728416, - 17166800, - 17042912, - 10057136, 16728432, - 16728448, - 16728464, - 16728480, - 17107744, - 16914128, - 17110064, - 17035984, - 16728496, - 16728512, - 16728528, - 9603712, - 16728544, - 16728560, - 17069440, - 17093728, - 17091632, - 16924048, - 16945888, - 16957744, - 17025376, - 17083136, - 17080528, - 17074800, + 17069312, + 17093600, + 17091504, + 16923920, + 16945760, + 16957616, + 17025248, + 17083008, + 17080400, + 17074672, 10057152, - 16913616, - 16728624 + 16913488, + 16728496 ], "bases": [ { @@ -356417,14 +356417,14 @@ }, { "type_name": "CWeaponXM1014", - "vtable_address": 31219952, + "vtable_address": 31219888, "methods": [ - 16916512, - 16727248, - 16727280, - 16740128, - 16727312, - 22694256 + 16916384, + 16727120, + 16727152, + 16740000, + 16727184, + 22694192 ], "bases": [ { @@ -356554,10 +356554,10 @@ }, { "type_name": "CWeaponXM1014", - "vtable_address": 31220016, + "vtable_address": 31219952, "methods": [ - 17169456, - 17169616 + 17169328, + 17169488 ], "bases": [ { @@ -356687,23 +356687,23 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Request", - "vtable_address": 30902128, + "vtable_address": 30902064, "methods": [ 15601008, 15650288, - 24747814, + 24747750, 15268288, 15728800, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15085680, 15080144, 15331248, 9474464, 15196320, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067168, 15039664 @@ -356739,23 +356739,23 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Response", - "vtable_address": 30902288, + "vtable_address": 30902224, "methods": [ 15103504, 15103520, - 24747814, + 24747750, 15268416, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15067200, 15039680 @@ -356802,23 +356802,23 @@ }, { "type_name": "CWorkshop_GetContributors_Request", - "vtable_address": 30900528, + "vtable_address": 30900464, "methods": [ 15599840, 15638000, - 24747814, + 24747750, 15266656, 15715152, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15052144, 15080224, 15327008, 9474464, 15142304, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066848, 15039504 @@ -356854,23 +356854,23 @@ }, { "type_name": "CWorkshop_GetContributors_Response", - "vtable_address": 30900688, + "vtable_address": 30900624, "methods": [ 15599968, 15649488, - 24747814, + 24747750, 15266816, 15715216, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15048880, 15080208, 15327584, 9474464, 15105088, - 24746716, - 24746982, + 24746652, + 24746918, 15048768, 15066880, 15039520 @@ -356906,23 +356906,23 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request", - "vtable_address": 30900368, + "vtable_address": 30900304, "methods": [ 15599680, 15668848, - 24747814, + 24747750, 15266528, 15755168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15117408, 15080240, 15490896, 9474464, 15134432, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066816, 15039488 @@ -356958,23 +356958,23 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock", - "vtable_address": 30900208, + "vtable_address": 30900144, "methods": [ 15599504, 15665216, - 24747814, + 24747750, 15266352, 15757616, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15117152, 15075968, 15490336, 9474464, 15135600, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066784, 15039472 @@ -357010,23 +357010,23 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription", - "vtable_address": 30900048, + "vtable_address": 30899984, "methods": [ 15599360, 15649328, - 24747814, + 24747750, 15266176, 15727360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15085232, 15075952, 15326320, 9474464, 15158208, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066752, 15039456 @@ -357062,23 +357062,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request", - "vtable_address": 30901328, + "vtable_address": 30901264, "methods": [ 15685664, 15686112, - 24747814, + 24747750, 15267440, 15765872, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15118576, 15080192, 15491552, 9474464, 15192896, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15067008, 15039584 @@ -357114,23 +357114,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule", - "vtable_address": 30901168, + "vtable_address": 30901104, "methods": [ 15600400, 15649968, - 24747814, + 24747750, 15267248, 15728240, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15085568, 15076000, 15329344, 9474464, 15153216, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066976, 15039568 @@ -357166,23 +357166,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule", - "vtable_address": 30901008, + "vtable_address": 30900944, "methods": [ 15600256, 15649808, - 24747814, + 24747750, 15267104, 15727968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15085472, 15076016, 15328768, 9474464, 15138144, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066944, 15039552 @@ -357218,23 +357218,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule", - "vtable_address": 30900848, + "vtable_address": 30900784, "methods": [ 15600112, 15649648, - 24747814, + 24747750, 15266960, 15727664, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15085344, 15075984, 15328112, 9474464, 15180192, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15066912, 15039536 @@ -357270,23 +357270,23 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Response", - "vtable_address": 30901488, + "vtable_address": 30901424, "methods": [ 15103568, 15103584, - 24747814, + 24747750, 15267568, - 24668322, + 24668258, 14015472, - 24749974, - 24746806, - 24668204, + 24749910, + 24746742, + 24668140, 14063856, - 24668332, + 24668268, 9474464, - 24668216, - 24746716, - 24746982, + 24668152, + 24746652, + 24746918, 14029744, 15067040, 15039600 @@ -357333,34 +357333,34 @@ }, { "type_name": "CWorld", - "vtable_address": 31420976, + "vtable_address": 31420912, "methods": [ 13522144, - 19523744, - 19523760, - 18377504, - 26419168, - 18094240, + 19523616, + 19523632, + 18377376, + 26419104, + 18094112, + 19542768, + 19542800, + 26419568, + 26419136, + 26419136, + 18377664, 19542896, - 19542928, - 26419632, - 26419200, - 26419200, - 18377792, - 19543024, - 18011056, - 19835392, - 19542864, + 18010928, + 19835264, + 19542736, 9634320, - 18013008, + 18012880, 11966912, - 18010928, - 19877920, + 18010800, + 19877792, 11747408, - 18378528, - 19829152, - 19833424, - 19512256, + 18378400, + 19829024, + 19833296, + 19512128, 9665808, 9641296, 9639920, @@ -357370,21 +357370,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 19512288, - 19742480, - 19522112, + 26427360, + 19512160, + 19742352, + 19521984, 9635312, - 19574432, - 18308160, + 19574304, + 18308032, 9635328, - 18098384, - 19871664, + 18098256, + 19871536, 9637008, 9637024, 9635376, @@ -357408,83 +357408,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 18042720, + 18042592, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19542672, - 19833664, + 20088096, + 19828496, + 19828672, + 19542544, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, - 19542656, - 19840912, - 19834496, + 19542528, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9637088, 9635808, - 19828880, + 19828752, 9635824, 9635840, - 18004256, + 18004128, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, - 18014848, - 18211472, - 19854960, - 19833184, + 18014720, + 18211344, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -357492,16 +357492,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -357511,7 +357511,7 @@ 9636240, 9636256, 9642208, - 19512272, + 19512144, 9636288, 9636304, 9636320, @@ -357522,7 +357522,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -357535,28 +357535,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9641744, 9637200, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -357567,7 +357567,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -357578,35 +357578,35 @@ 11742448, 9636784, 9636800, - 19857680, + 19857552, 9637040, - 18106656, + 18106528, 9637056, 9637072, - 18098288, - 18010976, - 18019008, + 18098160, + 18010848, + 18018880, 9637104, - 18004224, - 18011024, - 18004224, - 18004240, - 18004224, + 18004096, + 18010896, + 18004096, + 18004112, + 18004096, 9637120, 9637136, 9637152, - 18046112, + 18045984, 9637168, - 18261776, - 18057568, + 18261648, + 18057440, 9637184, - 18004256, - 18046928, - 18037712, - 18037920, - 18011200, - 18004272, - 18230592 + 18004128, + 18046800, + 18037584, + 18037792, + 18011072, + 18004144, + 18230464 ], "bases": [ { @@ -357650,7 +357650,7 @@ }, { "type_name": "CWorldGameSystem", - "vtable_address": 30544152, + "vtable_address": 30544088, "methods": [ 9634368, 9634384, @@ -357746,7 +357746,7 @@ }, { "type_name": "ChangeLogger", - "vtable_address": 30159248, + "vtable_address": 30159184, "methods": [ 9634368, 9634384, @@ -357842,31 +357842,31 @@ }, { "type_name": "ChickenActivity", - "vtable_address": 30136384, + "vtable_address": 30136320, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32611456 + "offset_to_top": 32611392 } } }, { "type_name": "ChickenPathCost", - "vtable_address": 30279544, + "vtable_address": 30279480, "methods": [ 11402240, 11404192, 11404528, 9447792, - 28788416, + 28788352, 9447808, - 28788944, - 28788240, + 28788880, + 28788176, 9447824, - 28788224, + 28788160, 11404416, - 28788320 + 28788256 ], "bases": [ { @@ -357899,7 +357899,7 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ServerReservationUpdate", - "vtable_address": 30166432, + "vtable_address": 30166368, "methods": [ 9839952, 9839968, @@ -357940,12 +357940,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification", - "vtable_address": 30975784, + "vtable_address": 30975720, "methods": [ 15982400, 15982416, 9844000, - 16500624, + 16500496, 9837392, 9837360, 9837376 @@ -357981,12 +357981,12 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ServerNotificationForUserPenalty", - "vtable_address": 30975672, + "vtable_address": 30975608, "methods": [ 15982336, 15982352, 9844000, - 16499984, + 16499856, 9837392, 9837360, 9837376 @@ -358022,7 +358022,7 @@ }, { "type_name": "ClientJob_EMsgGCGiftedItems", - "vtable_address": 30166696, + "vtable_address": 30166632, "methods": [ 9840080, 9840096, @@ -358063,7 +358063,7 @@ }, { "type_name": "ConstraintSoundInfo", - "vtable_address": 31659720, + "vtable_address": 31659656, "methods": [ 13795168 ], @@ -358076,7 +358076,7 @@ }, { "type_name": "CountdownTimer", - "vtable_address": 30777992, + "vtable_address": 30777928, "methods": [], "bases": [], "model": { @@ -358087,12 +358087,12 @@ }, { "type_name": "CountdownTimer", - "vtable_address": 31402208, + "vtable_address": 31402144, "methods": [ 11520720, 10424944, 11518800, - 19512096 + 19511968 ], "bases": [], "model": { @@ -358103,23 +358103,23 @@ }, { "type_name": "DataCenterPing", - "vtable_address": 30825304, + "vtable_address": 30825240, "methods": [ 14750208, 14798704, - 24747814, + 24747750, 14338928, 14886144, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039824, 14062128, 14441600, 9474464, 14128672, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051248, 14021584 @@ -358155,23 +358155,23 @@ }, { "type_name": "DeepPlayerMatchEvent", - "vtable_address": 30829624, + "vtable_address": 30829560, "methods": [ 14754352, 14800112, - 24747814, + 24747750, 14343360, 14887200, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040752, 14062480, 14456704, 9474464, 14282944, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052112, 14022016 @@ -358207,23 +358207,23 @@ }, { "type_name": "DeepPlayerStatsEntry", - "vtable_address": 30829464, + "vtable_address": 30829400, "methods": [ 14754208, 14817616, - 24747814, + 24747750, 14343216, 14887040, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14085264, 14062464, 14454656, 9474464, 14281152, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052080, 14022000 @@ -358259,7 +358259,7 @@ }, { "type_name": "DefuseBombState", - "vtable_address": 30277456, + "vtable_address": 30277392, "methods": [ 11312352, 11322768, @@ -358286,7 +358286,7 @@ }, { "type_name": "DemoTrackBase_t", - "vtable_address": 30511288, + "vtable_address": 30511224, "methods": [], "bases": [], "model": { @@ -358297,7 +358297,7 @@ }, { "type_name": "DemoTrackBase_t >", - "vtable_address": 30511312, + "vtable_address": 30511248, "methods": [], "bases": [], "model": { @@ -358308,7 +358308,7 @@ }, { "type_name": "DemoTrackBase_t", - "vtable_address": 30511336, + "vtable_address": 30511272, "methods": [], "bases": [], "model": { @@ -358319,7 +358319,7 @@ }, { "type_name": "DemoTrackBase_t", - "vtable_address": 31426640, + "vtable_address": 31426576, "methods": [], "bases": [], "model": { @@ -358330,23 +358330,23 @@ }, { "type_name": "DetailedSearchStatistic", - "vtable_address": 30825464, + "vtable_address": 30825400, "methods": [ 14750336, 14798832, - 24747814, + 24747750, 14339072, 14886208, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039904, 14061920, 14442144, 9474464, 14165504, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051280, 14021600 @@ -358382,18 +358382,18 @@ }, { "type_name": "Disable Hit Group & Remove Tagged Physics Bodies When Destroyed", - "vtable_address": 30656528, + "vtable_address": 30656464, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8779105 + "offset_to_top": 8779116 } } }, { "type_name": "EBoneSetup", - "vtable_address": 31986792, + "vtable_address": 31986728, "methods": [], "bases": [], "model": { @@ -358404,18 +358404,18 @@ }, { "type_name": "EntityIOTargetType_t", - "vtable_address": 32019568, + "vtable_address": 32019504, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33336256 + "offset_to_top": 33336192 } } }, { "type_name": "EntityRenderAttribute_t", - "vtable_address": 30547712, + "vtable_address": 30547648, "methods": [ 13384224, 13386992, @@ -358432,7 +358432,7 @@ }, { "type_name": "EntitySpottedState_t", - "vtable_address": 30166384, + "vtable_address": 30166320, "methods": [ 9842944, 9837504, @@ -358448,7 +358448,7 @@ }, { "type_name": "EntitySpottedState_t", - "vtable_address": 30992568, + "vtable_address": 30992504, "methods": [], "bases": [], "model": { @@ -358459,7 +358459,7 @@ }, { "type_name": "EscapeFromBombState", - "vtable_address": 30277504, + "vtable_address": 30277440, "methods": [ 11376624, 11332016, @@ -358486,7 +358486,7 @@ }, { "type_name": "EscapeFromFlamesState", - "vtable_address": 30277552, + "vtable_address": 30277488, "methods": [ 11376784, 11367504, @@ -358513,7 +358513,7 @@ }, { "type_name": "EventAdvanceTick_t", - "vtable_address": 32532800, + "vtable_address": 32532736, "methods": [], "bases": [], "model": { @@ -358524,7 +358524,7 @@ }, { "type_name": "EventAdvanceTick_t", - "vtable_address": 32533312, + "vtable_address": 32533248, "methods": [], "bases": [], "model": { @@ -358535,18 +358535,18 @@ }, { "type_name": "EventModInitialized_t", - "vtable_address": 30954224, + "vtable_address": 30954160, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32537056 + "offset_to_top": 32536992 } } }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 32532672, + "vtable_address": 32532608, "methods": [], "bases": [], "model": { @@ -358557,7 +358557,7 @@ }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 32533056, + "vtable_address": 32532992, "methods": [], "bases": [], "model": { @@ -358568,7 +358568,7 @@ }, { "type_name": "EventPostAdvanceTick_t", - "vtable_address": 32533184, + "vtable_address": 32533120, "methods": [], "bases": [], "model": { @@ -358579,7 +358579,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32531328, + "vtable_address": 32531264, "methods": [], "bases": [], "model": { @@ -358590,7 +358590,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32531456, + "vtable_address": 32531392, "methods": [], "bases": [], "model": { @@ -358601,7 +358601,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32531584, + "vtable_address": 32531520, "methods": [], "bases": [], "model": { @@ -358612,7 +358612,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32531712, + "vtable_address": 32531648, "methods": [], "bases": [], "model": { @@ -358623,7 +358623,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32531840, + "vtable_address": 32531776, "methods": [], "bases": [], "model": { @@ -358634,7 +358634,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32531968, + "vtable_address": 32531904, "methods": [], "bases": [], "model": { @@ -358645,7 +358645,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32532096, + "vtable_address": 32532032, "methods": [], "bases": [], "model": { @@ -358656,7 +358656,7 @@ }, { "type_name": "EventSimulate_t", - "vtable_address": 32532224, + "vtable_address": 32532160, "methods": [], "bases": [], "model": { @@ -358667,7 +358667,7 @@ }, { "type_name": "FetchBombState", - "vtable_address": 30277640, + "vtable_address": 30277576, "methods": [ 11377936, 11323168, @@ -358694,32 +358694,32 @@ }, { "type_name": "FilterDamageType", - "vtable_address": 31337440, + "vtable_address": 31337376, "methods": [ 13506768, - 18428912, - 18433328, + 18428784, + 18433200, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -358731,21 +358731,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387232, - 18400000, - 18396544, + 26427360, + 18387104, + 18399872, + 18396416, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -358769,83 +358769,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -358853,16 +358853,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -358883,7 +358883,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -358896,28 +358896,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -358928,7 +358928,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -358939,9 +358939,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18387200, - 18387216 + 19857552, + 18387072, + 18387088 ], "bases": [ { @@ -359007,32 +359007,32 @@ }, { "type_name": "FilterHealth", - "vtable_address": 31339424, + "vtable_address": 31339360, "methods": [ 13506768, - 18429072, - 18433504, + 18428944, + 18433376, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 20141696, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 20141568, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -359044,21 +359044,21 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, - 18387280, - 18400000, - 18396560, + 26427360, + 18387152, + 18399872, + 18396432, 9635312, 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -359082,83 +359082,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 18387008, + 18386880, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -359166,16 +359166,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -359196,7 +359196,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -359209,28 +359209,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -359241,7 +359241,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -359252,9 +359252,9 @@ 11742448, 9636784, 9636800, - 19857680, - 18387248, - 18387264 + 19857552, + 18387120, + 18387136 ], "bases": [ { @@ -359320,7 +359320,7 @@ }, { "type_name": "FollowState", - "vtable_address": 30277688, + "vtable_address": 30277624, "methods": [ 11378000, 11379568, @@ -359347,23 +359347,23 @@ }, { "type_name": "FuseVariableType_t", - "vtable_address": 31989400, + "vtable_address": 31989336, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33292448 + "offset_to_top": 33292384 } } }, { "type_name": "GCSDK::CGCClient", - "vtable_address": 32070160, + "vtable_address": 32070096, "methods": [ - 29206640, - 29207536, - 29186480, - 29186496 + 29206576, + 29207472, + 29186416, + 29186432 ], "bases": [], "model": { @@ -359374,7 +359374,7 @@ }, { "type_name": "GCSDK::CGCClientJob", - "vtable_address": 30164976, + "vtable_address": 30164912, "methods": [ 9839888, 9839904, @@ -359404,18 +359404,18 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectCache", - "vtable_address": 32073280, + "vtable_address": 32073216, "methods": [ - 29309184, - 29309200, - 22957904, - 29308528, - 29308864, - 29305888, - 29303424, - 29303200, - 29304096, - 29303344 + 29309120, + 29309136, + 22957840, + 29308464, + 29308800, + 29305824, + 29303360, + 29303136, + 29304032, + 29303280 ], "bases": [ { @@ -359437,16 +359437,16 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectTypeCache", - "vtable_address": 32073200, + "vtable_address": 32073136, "methods": [ - 29309120, - 29309136, - 29307296, - 29303648, - 29304400, - 29303216, - 29303968, - 29303248 + 29309056, + 29309072, + 29307232, + 29303584, + 29304336, + 29303152, + 29303904, + 29303184 ], "bases": [ { @@ -359468,14 +359468,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscribedJob", - "vtable_address": 32070720, + "vtable_address": 32070656, "methods": [ - 29190016, - 29190032, + 29189952, + 29189968, 9844000, 9839856, 9837392, - 29224176, + 29224112, 9837376 ], "bases": [ @@ -359509,14 +359509,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscriptionCheck", - "vtable_address": 32070944, + "vtable_address": 32070880, "methods": [ - 29190144, - 29190160, + 29190080, + 29190096, 9844000, 9839856, 9837392, - 29223152, + 29223088, 9837376 ], "bases": [ @@ -359550,14 +359550,14 @@ }, { "type_name": "GCSDK::CGCSOCacheUnsubscribedJob", - "vtable_address": 32070832, + "vtable_address": 32070768, "methods": [ - 29190080, - 29190096, + 29190016, + 29190032, 9844000, 9839856, 9837392, - 29223632, + 29223568, 9837376 ], "bases": [ @@ -359591,14 +359591,14 @@ }, { "type_name": "GCSDK::CGCSOCreateJob", - "vtable_address": 32070352, + "vtable_address": 32070288, "methods": [ - 29189760, - 29189776, + 29189696, + 29189712, 9844000, 9839856, 9837392, - 29222544, + 29222480, 9837376 ], "bases": [ @@ -359632,14 +359632,14 @@ }, { "type_name": "GCSDK::CGCSODestroyJob", - "vtable_address": 32070464, + "vtable_address": 32070400, "methods": [ - 29189824, - 29189840, + 29189760, + 29189776, 9844000, 9839856, 9837392, - 29221936, + 29221872, 9837376 ], "bases": [ @@ -359673,14 +359673,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateJob", - "vtable_address": 32070536, + "vtable_address": 32070472, "methods": [ - 29189888, - 29189904, + 29189824, + 29189840, 9844000, 9839856, 9837392, - 29221328, + 29221264, 9837376 ], "bases": [ @@ -359714,14 +359714,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateMultipleJob", - "vtable_address": 32070608, + "vtable_address": 32070544, "methods": [ - 29189952, - 29189968, + 29189888, + 29189904, 9844000, 9839856, 9837392, - 29224656, + 29224592, 9837376 ], "bases": [ @@ -359755,13 +359755,13 @@ }, { "type_name": "GCSDK::CJob", - "vtable_address": 32072224, + "vtable_address": 32072160, "methods": [ - 29232944, - 29233392, - 29228144, - 29228160, - 29228176 + 29232880, + 29233328, + 29228080, + 29228096, + 29228112 ], "bases": [], "model": { @@ -359772,9 +359772,9 @@ }, { "type_name": "GCSDK::CProtoBufGCClientSendHandler", - "vtable_address": 32070208, + "vtable_address": 32070144, "methods": [ - 29196288 + 29196224 ], "bases": [ { @@ -359796,11 +359796,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 31893848, + "vtable_address": 31893784, "methods": [ - 22961072, - 22964064, - 22959216 + 22961008, + 22964000, + 22959152 ], "bases": [ { @@ -359822,7 +359822,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30167688, + "vtable_address": 30167624, "methods": [ 9839024, 9844992, @@ -359848,11 +359848,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32070232, + "vtable_address": 32070168, "methods": [ - 29187712, - 29191200, - 29187136 + 29187648, + 29191136, + 29187072 ], "bases": [ { @@ -359874,7 +359874,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30166504, + "vtable_address": 30166440, "methods": [ 9838832, 9844752, @@ -359900,7 +359900,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30975856, + "vtable_address": 30975792, "methods": [ 15980128, 15995440, @@ -359926,7 +359926,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30974432, + "vtable_address": 30974368, "methods": [ 15980000, 15995280, @@ -359952,7 +359952,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30166544, + "vtable_address": 30166480, "methods": [ 9838896, 9844832, @@ -359978,7 +359978,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30975744, + "vtable_address": 30975680, "methods": [ 15980064, 15995360, @@ -360004,7 +360004,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30167800, + "vtable_address": 30167736, "methods": [ 9839088, 9845072, @@ -360030,7 +360030,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30974392, + "vtable_address": 30974328, "methods": [ 15979936, 15995200, @@ -360056,7 +360056,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 30166656, + "vtable_address": 30166592, "methods": [ 9838960, 9844912, @@ -360082,11 +360082,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32070792, + "vtable_address": 32070728, "methods": [ - 29188032, - 29191520, - 29187056 + 29187968, + 29191456, + 29186992 ], "bases": [ { @@ -360108,11 +360108,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32071016, + "vtable_address": 32070952, "methods": [ - 29188160, - 29191680, - 29187024 + 29188096, + 29191616, + 29186960 ], "bases": [ { @@ -360134,11 +360134,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32070312, + "vtable_address": 32070248, "methods": [ - 29187840, - 29191360, - 29187104 + 29187776, + 29191296, + 29187040 ], "bases": [ { @@ -360160,11 +360160,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32070904, + "vtable_address": 32070840, "methods": [ - 29188096, - 29191600, - 29187040 + 29188032, + 29191536, + 29186976 ], "bases": [ { @@ -360186,11 +360186,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32070680, + "vtable_address": 32070616, "methods": [ - 29187968, - 29191440, - 29187072 + 29187904, + 29191376, + 29187008 ], "bases": [ { @@ -360212,11 +360212,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32070424, + "vtable_address": 32070360, "methods": [ - 29187904, - 29191824, - 29187088 + 29187840, + 29191760, + 29187024 ], "bases": [ { @@ -360238,11 +360238,11 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 32070272, + "vtable_address": 32070208, "methods": [ - 29187776, - 29191280, - 29187120 + 29187712, + 29191216, + 29187056 ], "bases": [ { @@ -360264,7 +360264,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgBase", - "vtable_address": 32072720, + "vtable_address": 32072656, "methods": [], "bases": [], "model": { @@ -360275,13 +360275,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 31894144, + "vtable_address": 31894080, "methods": [ - 22961200, - 22965040, - 22965408, 22961136, - 22959152 + 22964976, + 22965344, + 22961072, + 22959088 ], "bases": [ { @@ -360303,7 +360303,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30178344, + "vtable_address": 30178280, "methods": [ 9839344, 9846096, @@ -360331,13 +360331,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071056, + "vtable_address": 32070992, "methods": [ - 29189120, - 29192912, - 29193056, - 29189248, - 29186960 + 29189056, + 29192848, + 29192992, + 29189184, + 29186896 ], "bases": [ { @@ -360359,7 +360359,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30178176, + "vtable_address": 30178112, "methods": [ 9839728, 9846528, @@ -360387,7 +360387,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30988544, + "vtable_address": 30988480, "methods": [ 15980256, 15998064, @@ -360415,7 +360415,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30988432, + "vtable_address": 30988368, "methods": [ 15980512, 15998352, @@ -360443,7 +360443,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30178232, + "vtable_address": 30178168, "methods": [ 9839600, 9846384, @@ -360471,7 +360471,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30988488, + "vtable_address": 30988424, "methods": [ 15980384, 15998208, @@ -360499,7 +360499,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30178400, + "vtable_address": 30178336, "methods": [ 9839216, 9845952, @@ -360527,7 +360527,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30988376, + "vtable_address": 30988312, "methods": [ 15980640, 15998496, @@ -360555,7 +360555,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 30178288, + "vtable_address": 30178224, "methods": [ 9839472, 9846240, @@ -360583,13 +360583,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32072456, + "vtable_address": 32072392, "methods": [ - 29289024, - 29289312, - 29288048, + 29288960, + 29289248, 29287984, - 29287920 + 29287920, + 29287856 ], "bases": [ { @@ -360611,13 +360611,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071336, + "vtable_address": 32071272, "methods": [ - 29188480, - 29192192, - 29193920, - 29189632, - 29186640 + 29188416, + 29192128, + 29193856, + 29189568, + 29186576 ], "bases": [ { @@ -360639,13 +360639,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071448, + "vtable_address": 32071384, "methods": [ - 29188224, - 29191904, - 29193632, - 29189504, - 29186512 + 29188160, + 29191840, + 29193568, + 29189440, + 29186448 ], "bases": [ { @@ -360667,13 +360667,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071168, + "vtable_address": 32071104, "methods": [ - 29188864, - 29192624, - 29193344, - 29189376, - 29186832 + 29188800, + 29192560, + 29193280, + 29189312, + 29186768 ], "bases": [ { @@ -360695,13 +360695,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071392, + "vtable_address": 32071328, "methods": [ - 29188352, - 29192048, - 29193776, - 29189568, - 29186576 + 29188288, + 29191984, + 29193712, + 29189504, + 29186512 ], "bases": [ { @@ -360723,13 +360723,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071280, + "vtable_address": 32071216, "methods": [ - 29188608, - 29192336, - 29190992, - 29189696, - 29186704 + 29188544, + 29192272, + 29190928, + 29189632, + 29186640 ], "bases": [ { @@ -360751,13 +360751,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071224, + "vtable_address": 32071160, "methods": [ - 29188736, - 29192480, - 29193488, - 29189440, - 29186768 + 29188672, + 29192416, + 29193424, + 29189376, + 29186704 ], "bases": [ { @@ -360779,13 +360779,13 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 32071112, + "vtable_address": 32071048, "methods": [ - 29188992, - 29192768, - 29193200, - 29189312, - 29186896 + 29188928, + 29192704, + 29193136, + 29189248, + 29186832 ], "bases": [ { @@ -360807,7 +360807,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 30164960, + "vtable_address": 30164896, "methods": [], "bases": [], "model": { @@ -360818,7 +360818,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 30967896, + "vtable_address": 30967832, "methods": [], "bases": [], "model": { @@ -360829,7 +360829,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 31889216, + "vtable_address": 31889152, "methods": [], "bases": [], "model": { @@ -360840,7 +360840,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 32069808, + "vtable_address": 32069744, "methods": [], "bases": [], "model": { @@ -360851,7 +360851,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 32072440, + "vtable_address": 32072376, "methods": [], "bases": [], "model": { @@ -360862,7 +360862,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 32072664, + "vtable_address": 32072600, "methods": [], "bases": [], "model": { @@ -360873,11 +360873,15 @@ }, { "type_name": "GCSDK::CProtoBufNetPacket", - "vtable_address": 32072512, - "methods": [ - 29293232, - 29293568, - 29186464, + "vtable_address": 32072448, + "methods": [ + 29293168, + 29293504, + 29186400, + 29287616, + 29287632, + 29287648, + 29287664, 29287680, 29287696, 29287712, @@ -360887,11 +360891,7 @@ 29287776, 29287792, 29287808, - 29287824, - 29287840, - 29287856, - 29287872, - 29287888 + 29287824 ], "bases": [ { @@ -360924,19 +360924,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 31881464, + "vtable_address": 31881400, "methods": [ - 22956864, - 22956896, - 22546416, - 29295200, + 22956800, + 22956832, + 22546288, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546432 + 29301360, + 29295200, + 29301568, + 22546304 ], "bases": [ { @@ -360969,19 +360969,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 31881880, + "vtable_address": 31881816, "methods": [ - 22957248, - 22957280, - 22546352, - 29295200, + 22957184, + 22957216, + 22546224, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546368 + 29301360, + 29295200, + 29301568, + 22546240 ], "bases": [ { @@ -361014,19 +361014,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 31876496, + "vtable_address": 31876432, "methods": [ - 22957632, - 22957664, - 22546560, - 29295200, + 22957568, + 22957600, + 22546432, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546576 + 29301360, + 29295200, + 29301568, + 22546448 ], "bases": [ { @@ -361059,19 +361059,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 31881672, + "vtable_address": 31881608, "methods": [ - 22957440, - 22957472, - 22546384, - 29295200, + 22957376, + 22957408, + 22546256, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546400 + 29301360, + 29295200, + 29301568, + 22546272 ], "bases": [ { @@ -361104,19 +361104,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 31299576, + "vtable_address": 31299512, "methods": [ - 18001712, - 18001744, - 17794272, - 29295200, + 18001584, + 18001616, + 17794144, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 17794288 + 29301360, + 29295200, + 29301568, + 17794160 ], "bases": [ { @@ -361149,19 +361149,19 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 31881256, + "vtable_address": 31881192, "methods": [ - 22957056, - 22957088, - 22546448, - 29295200, + 22956992, + 22957024, + 22546320, + 29295136, + 29295024, + 29300816, 29295088, - 29300880, - 29295152, - 29301424, - 29295264, - 29301632, - 22546464 + 29301360, + 29295200, + 29301568, + 22546336 ], "bases": [ { @@ -361194,7 +361194,7 @@ }, { "type_name": "GCSDK::CSharedObject", - "vtable_address": 32072824, + "vtable_address": 32072760, "methods": [], "bases": [], "model": { @@ -361205,7 +361205,7 @@ }, { "type_name": "GCSDK::CSharedObjectCache", - "vtable_address": 32073056, + "vtable_address": 32072992, "methods": [], "bases": [], "model": { @@ -361216,7 +361216,7 @@ }, { "type_name": "GCSDK::CSharedObjectCache", - "vtable_address": 32073184, + "vtable_address": 32073120, "methods": [], "bases": [], "model": { @@ -361227,16 +361227,16 @@ }, { "type_name": "GCSDK::CSharedObjectTypeCache", - "vtable_address": 32072976, + "vtable_address": 32072912, "methods": [ - 29304576, - 29304784, - 29307296, - 29303648, - 29304400, - 29303216, - 29303968, - 29303248 + 29304512, + 29304720, + 29307232, + 29303584, + 29304336, + 29303152, + 29303904, + 29303184 ], "bases": [], "model": { @@ -361247,11 +361247,15 @@ }, { "type_name": "GCSDK::CStructNetPacket", - "vtable_address": 32072056, + "vtable_address": 32071992, "methods": [ - 29227440, - 29227472, - 29186464, + 29227376, + 29227408, + 29186400, + 29227152, + 29227168, + 29227184, + 29227200, 29227216, 29227232, 29227248, @@ -361261,11 +361265,7 @@ 29227312, 29227328, 29227344, - 29227360, - 29227376, - 29227392, - 29227408, - 29227424 + 29227360 ], "bases": [ { @@ -361298,10 +361298,10 @@ }, { "type_name": "GCSDK::CWorkThread", - "vtable_address": 32073560, + "vtable_address": 32073496, "methods": [ - 29326672, - 29326688 + 29326608, + 29326624 ], "bases": [], "model": { @@ -361312,11 +361312,11 @@ }, { "type_name": "GCSDK::CWorkThreadPool", - "vtable_address": 32073648, + "vtable_address": 32073584, "methods": [ - 29328224, - 29329856, - 29333856 + 29328160, + 29329792, + 29333792 ], "bases": [], "model": { @@ -361327,7 +361327,7 @@ }, { "type_name": "GCSDK::IMsgNetPacket", - "vtable_address": 32072040, + "vtable_address": 32071976, "methods": [], "bases": [ { @@ -361349,7 +361349,7 @@ }, { "type_name": "GameAmmoTypeInfo_t", - "vtable_address": 30969912, + "vtable_address": 30969848, "methods": [ 15975328, 16031120, @@ -361376,7 +361376,7 @@ }, { "type_name": "GameEvent_RegisterHookupGameSystem", - "vtable_address": 31373792, + "vtable_address": 31373728, "methods": [ 9634368, 9634384, @@ -361434,12 +361434,12 @@ 9635216, 9635232, 9635248, - 18812848, + 18812720, 9635280, - 18812832, - 18821680, - 18821696, - 18812816 + 18812704, + 18821552, + 18821568, + 18812688 ], "bases": [ { @@ -361472,10 +361472,10 @@ }, { "type_name": "GameJournalPage_t", - "vtable_address": 31375048, + "vtable_address": 31374984, "methods": [ - 18846032, - 18846224 + 18845904, + 18846096 ], "bases": [ { @@ -361508,23 +361508,23 @@ }, { "type_name": "GameServerPing", - "vtable_address": 30825144, + "vtable_address": 30825080, "methods": [ 14750080, 14798576, - 24747814, + 24747750, 14338800, 14886080, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14039728, 14062112, 14441008, 9474464, 14171296, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051216, 14021568 @@ -361560,23 +361560,23 @@ }, { "type_name": "GameSessionConfiguration_t", - "vtable_address": 31367592, + "vtable_address": 31367528, "methods": [ - 18846864, - 18847136, - 24747814, + 18846736, + 18847008, + 24747750, 15289344, 15741200, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15091264, 15076288, 15398400, 9474464, 15235920, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071360, 15043808 @@ -361634,34 +361634,34 @@ }, { "type_name": "GameTick_t", - "vtable_address": 32019536, + "vtable_address": 32019472, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33337920 + "offset_to_top": 33337856 } } }, { "type_name": "GlobalStatistics", - "vtable_address": 30826104, + "vtable_address": 30826040, "methods": [ 14750992, 14834208, - 24747814, + 24747750, 14339888, 14923344, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14105104, 14062160, 14613440, 9474464, 14278112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051408, 14021664 @@ -361697,7 +361697,7 @@ }, { "type_name": "HideState", - "vtable_address": 30277736, + "vtable_address": 30277672, "methods": [ 11348768, 11343360, @@ -361724,20 +361724,20 @@ }, { "type_name": "HostagePathCost", - "vtable_address": 30997472, + "vtable_address": 30997408, "methods": [ - 16501296, - 16502240, + 16501168, + 16502112, 9447840, 9447792, - 28788416, + 28788352, 9447808, - 28788944, - 28788240, + 28788880, + 28788176, 9447824, - 28788224, - 16502832, - 16501280 + 28788160, + 16502704, + 16501152 ], "bases": [ { @@ -361770,7 +361770,7 @@ }, { "type_name": "How many bullets this gun can fire before it reloads (0 if no clip)", - "vtable_address": 31423824, + "vtable_address": 31423760, "methods": [], "bases": [], "model": { @@ -361781,7 +361781,7 @@ }, { "type_name": "How many secondary bullets this gun can fire before it reloads (0 if no clip)", - "vtable_address": 31423760, + "vtable_address": 31423696, "methods": [], "bases": [], "model": { @@ -361792,7 +361792,7 @@ }, { "type_name": "HuntState", - "vtable_address": 30277784, + "vtable_address": 30277720, "methods": [ 11386592, 11327296, @@ -361819,7 +361819,7 @@ }, { "type_name": "ICurveDataAccessor", - "vtable_address": 31994888, + "vtable_address": 31994824, "methods": [], "bases": [], "model": { @@ -361830,7 +361830,7 @@ }, { "type_name": "IDemoMessage", - "vtable_address": 30511360, + "vtable_address": 30511296, "methods": [], "bases": [], "model": { @@ -361841,7 +361841,7 @@ }, { "type_name": "IEconItemAttributeIterator", - "vtable_address": 31874384, + "vtable_address": 31874320, "methods": [], "bases": [], "model": { @@ -361852,7 +361852,7 @@ }, { "type_name": "IEconItemAttributeIterator", - "vtable_address": 31876424, + "vtable_address": 31876360, "methods": [], "bases": [], "model": { @@ -361863,15 +361863,15 @@ }, { "type_name": "IEconTool", - "vtable_address": 31889432, + "vtable_address": 31889368, "methods": [ - 22967744, - 22968128, - 22543888, - 22975840, - 22543904, - 22543920, - 22543936 + 22967680, + 22968064, + 22543760, + 22975776, + 22543776, + 22543792, + 22543808 ], "bases": [], "model": { @@ -361882,7 +361882,7 @@ }, { "type_name": "IEntityListener", - "vtable_address": 30180104, + "vtable_address": 30180040, "methods": [ 9890768, 9890784, @@ -361898,7 +361898,7 @@ }, { "type_name": "IErrorListener", - "vtable_address": 31993488, + "vtable_address": 31993424, "methods": [], "bases": [], "model": { @@ -361909,7 +361909,7 @@ }, { "type_name": "IFootTrajectory", - "vtable_address": 31981040, + "vtable_address": 31980976, "methods": [], "bases": [], "model": { @@ -361920,7 +361920,7 @@ }, { "type_name": "IGameSystem", - "vtable_address": 30518928, + "vtable_address": 30518864, "methods": [ 9634368, 9634384, @@ -361991,7 +361991,7 @@ }, { "type_name": "IKV3TransferInterface_EHandle_Load", - "vtable_address": 32017120, + "vtable_address": 32017056, "methods": [], "bases": [], "model": { @@ -362002,13 +362002,13 @@ }, { "type_name": "IMobileEventListener", - "vtable_address": 31890192, + "vtable_address": 31890128, "methods": [ - 22960320, - 22960352, - 22958608, - 22958624, - 22958640 + 22960256, + 22960288, + 22958544, + 22958560, + 22958576 ], "bases": [], "model": { @@ -362019,7 +362019,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 31640376, + "vtable_address": 31640312, "methods": [], "bases": [], "model": { @@ -362030,7 +362030,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 31729688, + "vtable_address": 31729624, "methods": [], "bases": [], "model": { @@ -362041,7 +362041,7 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 32064672, + "vtable_address": 32064608, "methods": [], "bases": [], "model": { @@ -362052,7 +362052,7 @@ }, { "type_name": "INavPhysicsInterface", - "vtable_address": 32066024, + "vtable_address": 32065960, "methods": [], "bases": [], "model": { @@ -362063,7 +362063,7 @@ }, { "type_name": "INetworkSerializerBindingBuildFilter", - "vtable_address": 32018568, + "vtable_address": 32018504, "methods": [], "bases": [], "model": { @@ -362074,7 +362074,7 @@ }, { "type_name": "IPoseAccessor", - "vtable_address": 31987448, + "vtable_address": 31987384, "methods": [], "bases": [], "model": { @@ -362085,7 +362085,7 @@ }, { "type_name": "IPulseTypeQueriesForScope", - "vtable_address": 31995656, + "vtable_address": 31995592, "methods": [], "bases": [ { @@ -362107,7 +362107,7 @@ }, { "type_name": "ISaveRestoreOps", - "vtable_address": 32018712, + "vtable_address": 32018648, "methods": [], "bases": [], "model": { @@ -362118,7 +362118,7 @@ }, { "type_name": "ISequence", - "vtable_address": 31980376, + "vtable_address": 31980312, "methods": [], "bases": [ { @@ -362140,7 +362140,7 @@ }, { "type_name": "IToolsResourceListener", - "vtable_address": 30153312, + "vtable_address": 30153248, "methods": [], "bases": [], "model": { @@ -362151,7 +362151,7 @@ }, { "type_name": "IToolsResourceListener", - "vtable_address": 30324912, + "vtable_address": 30324848, "methods": [], "bases": [], "model": { @@ -362162,7 +362162,7 @@ }, { "type_name": "IVTableIndexCalculator", - "vtable_address": 30507768, + "vtable_address": 30507704, "methods": [ 12428224, 12428240, @@ -362239,7 +362239,7 @@ }, { "type_name": "IdleState", - "vtable_address": 30277832, + "vtable_address": 30277768, "methods": [ 11386848, 11343200, @@ -362266,7 +362266,7 @@ }, { "type_name": "IntervalTimer", - "vtable_address": 30255104, + "vtable_address": 30255040, "methods": [ 10634288, 10629808, @@ -362282,7 +362282,7 @@ }, { "type_name": "IntervalTimer", - "vtable_address": 30778152, + "vtable_address": 30778088, "methods": [], "bases": [], "model": { @@ -362293,7 +362293,7 @@ }, { "type_name": "InvestigateNoiseState", - "vtable_address": 30277880, + "vtable_address": 30277816, "methods": [ 11351280, 11351344, @@ -362320,23 +362320,23 @@ }, { "type_name": "IpAddressMask", - "vtable_address": 30828024, + "vtable_address": 30827960, "methods": [ 14752768, 14799472, - 24747814, + 24747750, 14341760, 14886624, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040320, 14062176, 14450464, 9474464, 14247424, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051792, 14021856 @@ -362372,7 +362372,7 @@ }, { "type_name": "LC_NUMERIC", - "vtable_address": 32081512, + "vtable_address": 32081448, "methods": [], "bases": [], "model": { @@ -362383,29 +362383,29 @@ }, { "type_name": "LightRenderingChanged", - "vtable_address": 30161968, + "vtable_address": 30161904, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "List of nav hulls belonging to this preset.", - "vtable_address": 32067600, + "vtable_address": 32067536, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8620810 + "offset_to_top": 8620821 } } }, { "type_name": "LocalPlayerExclusive", - "vtable_address": 30604336, + "vtable_address": 30604272, "methods": [], "bases": [], "model": { @@ -362416,34 +362416,34 @@ }, { "type_name": "LocalPlayerExclusiveDuringRoundEnd", - "vtable_address": 31301680, + "vtable_address": 31301616, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8774883 + "offset_to_top": 8774894 } } }, { "type_name": "MLDemoHeader", - "vtable_address": 30874584, + "vtable_address": 30874520, "methods": [ 14789488, 14825936, - 24747814, + 24747750, 14389536, 14916560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14079984, 14063712, 14593104, 9474464, 14208832, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061104, 14028720 @@ -362479,23 +362479,23 @@ }, { "type_name": "MLDict", - "vtable_address": 30873464, + "vtable_address": 30873400, "methods": [ 14788400, 14832336, - 24747814, + 24747750, 14388368, 14915968, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14079232, 14063456, 14590368, 9474464, 14195648, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060880, 14028608 @@ -362531,23 +362531,23 @@ }, { "type_name": "MLEvent", - "vtable_address": 30873624, + "vtable_address": 30873560, "methods": [ 14788560, 14835168, - 24747814, + 24747750, 14388544, 14936512, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14108320, 14063552, 14662704, 9474464, 14127600, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060912, 14028624 @@ -362583,23 +362583,23 @@ }, { "type_name": "MLGameState", - "vtable_address": 30874424, + "vtable_address": 30874360, "methods": [ 14869360, 14870496, - 24747814, + 24747750, 14389408, 15030704, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15034784, 14063536, 14664960, 9474464, 14069440, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061072, 14028704 @@ -362635,23 +362635,23 @@ }, { "type_name": "MLMatchState", - "vtable_address": 30873784, + "vtable_address": 30873720, "methods": [ 14788736, 14832496, - 24747814, + 24747750, 14388704, 14916112, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14079392, 14063488, 14590944, 9474464, 14240352, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060944, 14028640 @@ -362687,23 +362687,23 @@ }, { "type_name": "MLPlayerState", - "vtable_address": 30874264, + "vtable_address": 30874200, "methods": [ 14789216, 14849456, - 24747814, + 24747750, 14389232, 15029744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15033696, 14063520, 14663264, 9474464, 14321328, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061040, 14028688 @@ -362739,23 +362739,23 @@ }, { "type_name": "MLRoundState", - "vtable_address": 30873944, + "vtable_address": 30873880, "methods": [ 14788896, 14832656, - 24747814, + 24747750, 14388864, 14916272, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14079584, 14063504, 14591568, 9474464, 14185184, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14060976, 14028656 @@ -362791,23 +362791,23 @@ }, { "type_name": "MLTick", - "vtable_address": 30874744, + "vtable_address": 30874680, "methods": [ 14869968, 14870224, - 24747814, + 24747750, 14389712, 15030960, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15035008, 14063696, 14665616, 9474464, 14147296, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061136, 14028736 @@ -362843,23 +362843,23 @@ }, { "type_name": "MLWeaponState", - "vtable_address": 30874104, + "vtable_address": 30874040, "methods": [ 14789056, 14832816, - 24747814, + 24747750, 14389024, 14916400, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14079712, 14063472, 14592240, 9474464, 14304096, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061008, 14028672 @@ -362895,23 +362895,23 @@ }, { "type_name": "MatchEndItemUpdates", - "vtable_address": 30828504, + "vtable_address": 30828440, "methods": [ 14753152, 14799856, - 24747814, + 24747750, 14342192, 14886816, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040576, 14062032, 14452288, 9474464, 14171776, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051888, 14021904 @@ -362947,7 +362947,7 @@ }, { "type_name": "Max damage done by a drowning tick", - "vtable_address": 31319248, + "vtable_address": 31319184, "methods": [], "bases": [], "model": { @@ -362958,18 +362958,18 @@ }, { "type_name": "Model used on the ground or held by an entity", - "vtable_address": 31424208, + "vtable_address": 31424144, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8913096 + "offset_to_top": 8913112 } } }, { "type_name": "MoveToPlayAreaState", - "vtable_address": 30277976, + "vtable_address": 30277912, "methods": [ 11387008, 11309952, @@ -362996,7 +362996,7 @@ }, { "type_name": "MoveToState", - "vtable_address": 30277928, + "vtable_address": 30277864, "methods": [ 11311520, 11323488, @@ -363023,11 +363023,11 @@ }, { "type_name": "N24CParallelProcessLauncher18CParallelLambdaJobIZ11ParallelForILb1EZN28CPhysSaveRestoreBlockHandler4SaveEP5ISaveEUliE_EviiPKcOT0_ii13JobPriority_tQ14is_invocable_vIS8_JiEEEUliE_EE", - "vtable_address": 31695240, + "vtable_address": 31695176, "methods": [ - 21068384, - 21069536, - 21128384 + 21068256, + 21069408, + 21128256 ], "bases": [ { @@ -363049,18 +363049,18 @@ }, { "type_name": "NavDirType", - "vtable_address": 32066656, + "vtable_address": 32066592, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33385856 + "offset_to_top": 33385792 } } }, { "type_name": "NavRecorder::IPathfindRecorder", - "vtable_address": 32065152, + "vtable_address": 32065088, "methods": [], "bases": [], "model": { @@ -363071,128 +363071,128 @@ }, { "type_name": "NmIKBlendMode_t", - "vtable_address": 32037712, + "vtable_address": 32037648, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33381024 + "offset_to_top": 33380960 } } }, { "type_name": "OnNetOOBoolVarChanged", - "vtable_address": 30786064, + "vtable_address": 30786000, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOByteVarChanged", - "vtable_address": 30785968, + "vtable_address": 30785904, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOFloatVarChanged", - "vtable_address": 30785488, + "vtable_address": 30785424, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOGlobalSymbolVarChanged", - "vtable_address": 30785200, + "vtable_address": 30785136, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOIntVarChanged", - "vtable_address": 30785776, + "vtable_address": 30785712, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOQuaternionVarChanged", - "vtable_address": 30785296, + "vtable_address": 30785232, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOUInt16VarChanged", - "vtable_address": 30785872, + "vtable_address": 30785808, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOUInt32VarChanged", - "vtable_address": 30785680, + "vtable_address": 30785616, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOUInt64VarChanged", - "vtable_address": 30785584, + "vtable_address": 30785520, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetOOVectorVarChanged", - "vtable_address": 30785392, + "vtable_address": 30785328, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8706127 + "offset_to_top": 8706138 } } }, { "type_name": "OnNetworkedAnimationChanged", - "vtable_address": 30606000, + "vtable_address": 30605936, "methods": [], "bases": [], "model": { @@ -363203,7 +363203,7 @@ }, { "type_name": "OnNetworkedAnimationChanged", - "vtable_address": 30606064, + "vtable_address": 30606000, "methods": [], "bases": [], "model": { @@ -363214,7 +363214,7 @@ }, { "type_name": "OpenDoorState", - "vtable_address": 30278024, + "vtable_address": 30277960, "methods": [ 11349888, 11316784, @@ -363241,23 +363241,23 @@ }, { "type_name": "OperationalStatisticDescription", - "vtable_address": 30826264, + "vtable_address": 30826200, "methods": [ 14751168, 14817136, - 24747814, + 24747750, 14340032, 14901296, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14072432, 14066160, 14444192, 9474464, 14133792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051440, 14021680 @@ -363293,23 +363293,23 @@ }, { "type_name": "OperationalStatisticElement", - "vtable_address": 30826424, + "vtable_address": 30826360, "methods": [ 14751312, 14817296, - 24747814, + 24747750, 14340176, 14886272, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14090496, 14061936, 14444752, 9474464, 14148448, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051472, 14021696 @@ -363345,23 +363345,23 @@ }, { "type_name": "OperationalStatisticsPacket", - "vtable_address": 30826584, + "vtable_address": 30826520, "methods": [ 14751456, 14838960, - 24747814, + 24747750, 14340352, 14918592, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14096304, 14066144, 14614720, 9474464, 14161056, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051504, 14021712 @@ -363397,23 +363397,23 @@ }, { "type_name": "OperationalVarValue", - "vtable_address": 30826744, + "vtable_address": 30826680, "methods": [ 14751616, 14828656, - 24747814, + 24747750, 14340512, 14901568, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14081120, 14062304, 14445456, 9474464, 14238336, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051536, 14021728 @@ -363449,20 +363449,20 @@ }, { "type_name": "PathCost", - "vtable_address": 30257080, + "vtable_address": 30257016, "methods": [ 10634176, 10634224, 10633824, 9447792, - 28788416, + 28788352, 9447808, - 28788944, - 28788240, + 28788880, + 28788176, 10632464, - 28788224, - 28788464, - 28788320 + 28788160, + 28788400, + 28788256 ], "bases": [ { @@ -363495,7 +363495,7 @@ }, { "type_name": "PhysicsRagdollPose_t", - "vtable_address": 30478072, + "vtable_address": 30478008, "methods": [ 12371712, 12370768, @@ -363511,7 +363511,7 @@ }, { "type_name": "PickupHostageState", - "vtable_address": 30278072, + "vtable_address": 30278008, "methods": [ 11311360, 11313824, @@ -363538,7 +363538,7 @@ }, { "type_name": "PlaceDecalEvent_t", - "vtable_address": 30514880, + "vtable_address": 30514816, "methods": [ 12438048, 12438112, @@ -363610,23 +363610,23 @@ }, { "type_name": "PlaceDecalEvent_t", - "vtable_address": 30514944, + "vtable_address": 30514880, "methods": [ 12438080, 12438176, - 24747814, + 24747750, 12437840, 15031968, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15035216, 12437152, 14595248, 9474464, 14287840, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061232, 14029056 @@ -363694,7 +363694,7 @@ }, { "type_name": "PlantBombState", - "vtable_address": 30278120, + "vtable_address": 30278056, "methods": [ 11316304, 11312480, @@ -363721,23 +363721,23 @@ }, { "type_name": "PlayerCommendationInfo", - "vtable_address": 30827224, + "vtable_address": 30827160, "methods": [ 14752080, 14799088, - 24747814, + 24747750, 14340992, 14886384, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040096, 14062400, 14446624, 9474464, 14166464, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051632, 14021776 @@ -363773,23 +363773,23 @@ }, { "type_name": "PlayerDecalDigitalSignature", - "vtable_address": 30848344, + "vtable_address": 30848280, "methods": [ 14767840, 14835936, - 24747814, + 24747750, 14362096, 14905216, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14081840, 14062880, 14514224, 9474464, 14288832, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14055856, 14023888 @@ -363825,23 +363825,23 @@ }, { "type_name": "PlayerMedalsInfo", - "vtable_address": 30827384, + "vtable_address": 30827320, "methods": [ 14752208, 14817456, - 24747814, + 24747750, 14341136, 14886448, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14085184, 14062416, 14447216, 9474464, 14148864, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051664, 14021792 @@ -363877,23 +363877,23 @@ }, { "type_name": "PlayerQuestData", - "vtable_address": 30829304, + "vtable_address": 30829240, "methods": [ 14753936, 14846144, - 24747814, + 24747750, 14343056, 14927440, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14106480, 14062064, 14619088, 9474464, 14246624, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052048, 14021984 @@ -363929,23 +363929,23 @@ }, { "type_name": "PlayerQuestData_QuestItemData", - "vtable_address": 30829144, + "vtable_address": 30829080, "methods": [ 14753776, 14828976, - 24747814, + 24747750, 14342880, 14886944, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14090576, 14062000, 14453456, 9474464, 14268096, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14052016, 14021968 @@ -363981,23 +363981,23 @@ }, { "type_name": "PlayerRankingInfo", - "vtable_address": 30827064, + "vtable_address": 30827000, "methods": [ 14751904, 14834400, - 24747814, + 24747750, 14340848, 14923616, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14104384, 14062240, 14615344, 9474464, 14308144, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051600, 14021760 @@ -364033,23 +364033,23 @@ }, { "type_name": "PlayerRankingInfo_PerMapRank", - "vtable_address": 30826904, + "vtable_address": 30826840, "methods": [ 14751776, 14798960, - 24747814, + 24747750, 14340656, 14886320, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040000, 14061952, 14446032, 9474464, 14165984, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051568, 14021744 @@ -364085,7 +364085,7 @@ }, { "type_name": "PredictedDamageTag_t", - "vtable_address": 30198488, + "vtable_address": 30198424, "methods": [ 10060224, 10060192, @@ -364102,7 +364102,7 @@ }, { "type_name": "PredictedDamageTag_t", - "vtable_address": 31295848, + "vtable_address": 31295784, "methods": [], "bases": [], "model": { @@ -364113,23 +364113,23 @@ }, { "type_name": "ProtoFlattenedSerializerField_t", - "vtable_address": 30916208, + "vtable_address": 30916144, "methods": [ 15611920, 15670432, - 24747814, + 24747750, 15282464, 15753184, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15113680, 15076528, 15506528, 9474464, 15253664, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069984, 15042640 @@ -364165,23 +364165,23 @@ }, { "type_name": "ProtoFlattenedSerializerField_t_polymorphic_field_t", - "vtable_address": 30916048, + "vtable_address": 30915984, "methods": [ 15611792, 15641328, - 24747814, + 24747750, 15282288, 15717232, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15050160, 15076496, 15376160, 9474464, 15148096, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15069952, 15042624 @@ -364217,23 +364217,23 @@ }, { "type_name": "ProtoFlattenedSerializer_t", - "vtable_address": 30916368, + "vtable_address": 30916304, "methods": [ 15612080, 15654288, - 24747814, + 24747750, 15282608, 15717296, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15102640, 15076512, 15376736, 9474464, 15173440, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15070016, 15042656 @@ -364269,20 +364269,20 @@ }, { "type_name": "PulseBestOutflowRules_t", - "vtable_address": 31998864, + "vtable_address": 31998800, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33313216 + "offset_to_top": 33313152 } } }, { "type_name": "RR::CApplyContextOperator", - "vtable_address": 31429720, + "vtable_address": 31429656, "methods": [ - 19831872 + 19831744 ], "bases": [], "model": { @@ -364293,9 +364293,9 @@ }, { "type_name": "RR::CDecrementOperator", - "vtable_address": 31429768, + "vtable_address": 31429704, "methods": [ - 19832032 + 19831904 ], "bases": [ { @@ -364317,9 +364317,9 @@ }, { "type_name": "RR::CIncrementOperator", - "vtable_address": 31429744, + "vtable_address": 31429680, "methods": [ - 19831920 + 19831792 ], "bases": [ { @@ -364341,9 +364341,9 @@ }, { "type_name": "RR::CToggleOperator", - "vtable_address": 31429792, + "vtable_address": 31429728, "methods": [ - 19832144 + 19832016 ], "bases": [ { @@ -364365,7 +364365,7 @@ }, { "type_name": "RenderingChanged", - "vtable_address": 30315376, + "vtable_address": 30315312, "methods": [], "bases": [], "model": { @@ -364376,7 +364376,7 @@ }, { "type_name": "RenderingChanged", - "vtable_address": 30315440, + "vtable_address": 30315376, "methods": [], "bases": [], "model": { @@ -364387,7 +364387,7 @@ }, { "type_name": "RenderingChanged", - "vtable_address": 30315504, + "vtable_address": 30315440, "methods": [], "bases": [], "model": { @@ -364398,9 +364398,9 @@ }, { "type_name": "RotationTrack_t", - "vtable_address": 31426656, + "vtable_address": 31426592, "methods": [ - 19792544 + 19792416 ], "bases": [ { @@ -364422,9 +364422,9 @@ }, { "type_name": "ScaleTrack_t", - "vtable_address": 31426704, + "vtable_address": 31426640, "methods": [ - 19791168 + 19791040 ], "bases": [ { @@ -364446,23 +364446,23 @@ }, { "type_name": "ScoreLeaderboardData", - "vtable_address": 30828984, + "vtable_address": 30828920, "methods": [ 14753568, 14837168, - 24747814, + 24747750, 14342704, 14925744, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14103616, 14062080, 14617280, 9474464, 14214304, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051984, 14021952 @@ -364498,23 +364498,23 @@ }, { "type_name": "ScoreLeaderboardData_AccountEntries", - "vtable_address": 30828824, + "vtable_address": 30828760, "methods": [ 14753408, 14839136, - 24747814, + 24747750, 14342496, 14921120, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14100144, 14061984, 14616624, 9474464, 14130368, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051952, 14021936 @@ -364550,23 +364550,23 @@ }, { "type_name": "ScoreLeaderboardData_Entry", - "vtable_address": 30828664, + "vtable_address": 30828600, "methods": [ 14753280, 14799984, - 24747814, + 24747750, 14342320, 14886880, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040672, 14061968, 14452880, 9474464, 14136608, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051920, 14021920 @@ -364602,13 +364602,13 @@ }, { "type_name": "SellbackPurchaseEntry_t", - "vtable_address": 31279512, + "vtable_address": 31279448, "methods": [ - 17343888, - 17344336, - 17344432, - 17344400, - 17344368 + 17343760, + 17344208, + 17344304, + 17344272, + 17344240 ], "bases": [], "model": { @@ -364619,13 +364619,13 @@ }, { "type_name": "ServerAuthoritativeWeaponSlot_t", - "vtable_address": 31299784, + "vtable_address": 31299720, "methods": [ - 17794400, - 17794464, + 17794272, + 17794336, + 17794704, 17794832, - 17794960, - 17794896 + 17794768 ], "bases": [], "model": { @@ -364636,23 +364636,23 @@ }, { "type_name": "ServerHltvInfo", - "vtable_address": 30827864, + "vtable_address": 30827800, "methods": [ 14752608, 14828816, - 24747814, + 24747750, 14341616, 14901712, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14072528, 14062336, 14449024, 9474464, 14291792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051760, 14021840 @@ -364688,7 +364688,7 @@ }, { "type_name": "SimpleConstraintSoundProfile", - "vtable_address": 31659696, + "vtable_address": 31659632, "methods": [ 13795152 ], @@ -364701,14 +364701,14 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 31548936, + "vtable_address": 31548872, "methods": [ - 20627376, - 20627440, - 18818656, - 18818672, - 18818688, - 18826528 + 20627248, + 20627312, + 18818528, + 18818544, + 18818560, + 18826400 ], "bases": [ { @@ -364773,23 +364773,23 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 31549000, + "vtable_address": 31548936, "methods": [ - 20627408, - 20627504, - 24747814, + 20627280, + 20627376, + 24747750, 14391744, 14921696, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14099040, 14063648, 14611584, 9474464, 14068736, - 24746716, - 24746982, + 24746652, + 24746918, 14029712, 14061424, 14029152 @@ -364857,14 +364857,14 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 31371960, + "vtable_address": 31371896, "methods": [ - 18824128, - 18824192, - 18817552, - 18817568, - 18817584, - 18824320 + 18824000, + 18824064, + 18817424, + 18817440, + 18817456, + 18824192 ], "bases": [ { @@ -364929,23 +364929,23 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 31372024, + "vtable_address": 31371960, "methods": [ - 18824160, - 18824256, - 24747814, + 18824032, + 18824128, + 24747750, 14392240, 14929040, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14125520, 14063616, 14612048, 9474464, 14219616, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061520, 14029200 @@ -365013,32 +365013,32 @@ }, { "type_name": "SpawnPoint", - "vtable_address": 30984440, + "vtable_address": 30984376, "methods": [ 13506768, 15982816, 15982848, 12023536, - 26419168, + 26419104, 12023584, - 20141632, - 16318288, - 26419632, - 26419200, - 26419200, - 20139104, - 20140192, - 20141328, - 19835392, - 19835328, + 20141504, + 16318160, + 26419568, + 26419136, + 26419136, + 20138976, + 20140064, + 20141200, + 19835264, + 19835200, 9634320, 11802176, 11966912, - 19933344, - 19877920, + 19933216, + 19877792, 11747408, - 19933424, - 19829152, + 19933296, + 19829024, 10437776, 9635872, 9665808, @@ -365050,12 +365050,12 @@ 9636976, 9634336, 9641264, - 19849456, + 19849328, 9645600, 9645312, 9640928, 9634352, - 26427424, + 26427360, 15972032, 15983408, 15975488, @@ -365063,8 +365063,8 @@ 13439920, 11860496, 9635328, - 19919232, - 19871664, + 19919104, + 19871536, 9635344, 9635360, 9635376, @@ -365088,83 +365088,83 @@ 9635632, 9636864, 9636912, - 19841024, + 19840896, 9603680, 11742384, 11742320, - 20115760, + 20115632, 11747344, 11791664, 11763824, - 20088224, - 19828624, - 19828800, - 19844224, - 19833664, + 20088096, + 19828496, + 19828672, + 19844096, + 19833536, 9635648, - 19840816, + 19840688, 9635664, 9635680, 11787440, - 19828864, + 19828736, 9635696, 9607568, - 19828880, + 19828752, 9635712, 9654336, 11742336, 11810352, - 19840912, - 19834496, + 19840784, + 19834368, 9635728, 9645040, 9644128, - 19828544, + 19828416, 9646112, 9635744, 9635760, 11768784, - 19834800, + 19834672, 9635776, 9635792, 9635808, - 19828880, + 19828752, 9635824, 9635840, 11742320, 9635856, - 20090688, - 19853760, - 19828960, + 20090560, + 19853632, + 19828832, 9635888, 9635904, - 19843184, + 19843056, 9649504, 9650096, - 19855088, + 19854960, 9635920, - 20043248, + 20043120, 11749776, 9635936, 11750000, - 19854960, - 19833184, + 19854832, + 19833056, 9635952, 9635968, 9635984, 11875584, 11742256, 9636000, - 19831632, + 19831504, 9636016, 9636032, - 19834096, - 19840144, + 19833968, + 19840016, 9641232, 9636048, 9636064, 9636080, - 19840048, + 19839920, 9637216, 9636096, 11746864, @@ -365172,16 +365172,16 @@ 11747104, 9636112, 9636128, - 19832960, + 19832832, 9636144, 9636160, 9636176, 9636816, - 19828656, - 21311696, + 19828528, + 21311568, 9636192, - 21229072, - 19828912, + 21228944, + 19828784, 11962368, 11742368, 11865936, @@ -365202,7 +365202,7 @@ 9636400, 9636416, 9636432, - 19829072, + 19828944, 11753680, 11753024, 11757136, @@ -365215,28 +365215,28 @@ 9636464, 11871168, 9636480, - 19828560, - 19828576, + 19828432, + 19828448, 9637264, 9637280, 11766432, - 19833072, - 21106016, + 19832944, + 21105888, 9636496, - 21085472, + 21085344, 9636512, 9636528, 9636544, 9636560, 9636576, - 19853040, - 19834144, + 19852912, + 19834016, 9636592, 9636608, 9636624, 9636640, - 19828816, - 19835280, + 19828688, + 19835152, 9654048, 11750032, 9636656, @@ -365247,7 +365247,7 @@ 9636736, 9636752, 9636768, - 21066880, + 21066752, 11742352, 11742320, 11742400, @@ -365258,7 +365258,7 @@ 11742448, 9636784, 9636800, - 19857680 + 19857552 ], "bases": [ { @@ -365313,7 +365313,7 @@ }, { "type_name": "SpawnPoint", - "vtable_address": 32548704, + "vtable_address": 32548640, "methods": [], "bases": [], "model": { @@ -365324,7 +365324,7 @@ }, { "type_name": "SpawnPoint", - "vtable_address": 32548896, + "vtable_address": 32548832, "methods": [], "bases": [], "model": { @@ -365335,22 +365335,22 @@ }, { "type_name": "SphereBase_t", - "vtable_address": 31989448, + "vtable_address": 31989384, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 33292960 + "offset_to_top": 33292896 } } }, { "type_name": "SplitObs_t", - "vtable_address": 31905544, + "vtable_address": 31905480, "methods": [ - 23295728, - 23335952, - 23343056 + 23295664, + 23335888, + 23342992 ], "bases": [ { @@ -365372,25 +365372,25 @@ }, { "type_name": "Start Sound Event", - "vtable_address": 31745680, + "vtable_address": 31745616, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8779105 + "offset_to_top": 8779116 } } }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 31911624, + "vtable_address": 31911560, "methods": [ + 23885296, 23885360, - 23885424, - 23884976, - 23884992, - 23885008, - 23885552 + 23884912, + 23884928, + 23884944, + 23885488 ], "bases": [ { @@ -365455,23 +365455,23 @@ }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 31911688, + "vtable_address": 31911624, "methods": [ - 23885392, - 23885488, - 24747814, + 23885328, + 23885424, + 24747750, 15291888, 15718800, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15057984, 15078656, 15403520, 9474464, 15080944, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071616, 15044480 @@ -365539,14 +365539,14 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 31912216, + "vtable_address": 31912152, "methods": [ + 23885936, 23886000, - 23886064, - 23884784, - 23884800, - 23884816, - 23886192 + 23884720, + 23884736, + 23884752, + 23886128 ], "bases": [ { @@ -365611,23 +365611,23 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 31912280, + "vtable_address": 31912216, "methods": [ - 23886032, - 23886128, - 24747814, + 23885968, + 23886064, + 24747750, 15292176, 15719008, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15064896, 15078640, 15404880, 9474464, 15178656, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071680, 15044512 @@ -365695,14 +365695,14 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 31912808, + "vtable_address": 31912744, "methods": [ + 23886576, 23886640, - 23886704, - 23884592, - 23884608, - 23884624, - 23886832 + 23884528, + 23884544, + 23884560, + 23886768 ], "bases": [ { @@ -365767,23 +365767,23 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 31912872, + "vtable_address": 31912808, "methods": [ - 23886672, - 23886768, - 24747814, + 23886608, + 23886704, + 24747750, 15292336, 15775168, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065184, 15078624, 15405632, 9474464, 15156288, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071712, 15044528 @@ -365851,14 +365851,14 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 31913400, + "vtable_address": 31913336, "methods": [ + 23887216, 23887280, - 23887344, - 23884400, - 23884416, - 23884432, - 23887472 + 23884336, + 23884352, + 23884368, + 23887408 ], "bases": [ { @@ -365923,23 +365923,23 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 31913464, + "vtable_address": 31913400, "methods": [ - 23887312, - 23887408, - 24747814, + 23887248, + 23887344, + 24747750, 15292480, 15719152, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065328, 15078608, 15406320, 9474464, 15081104, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071744, 15044544 @@ -366007,14 +366007,14 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 31913992, + "vtable_address": 31913928, "methods": [ + 23887856, 23887920, - 23887984, - 23884208, - 23884224, - 23884240, - 23888112 + 23884144, + 23884160, + 23884176, + 23888048 ], "bases": [ { @@ -366079,23 +366079,23 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 31914056, + "vtable_address": 31913992, "methods": [ - 23887952, - 23888048, - 24747814, + 23887888, + 23887984, + 24747750, 15292640, 15775344, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065536, 15078592, 15406912, 9474464, 15156704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071776, 15044560 @@ -366163,14 +366163,14 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 31914584, + "vtable_address": 31914520, "methods": [ + 23888496, 23888560, - 23888624, - 23884016, - 23884032, - 23884048, - 23888752 + 23883952, + 23883968, + 23883984, + 23888688 ], "bases": [ { @@ -366235,23 +366235,23 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 31914648, + "vtable_address": 31914584, "methods": [ - 23888592, - 23888688, - 24747814, + 23888528, + 23888624, + 24747750, 15294384, 15720848, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060592, 15078432, 15415728, 9474464, 15155552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072160, 15044752 @@ -366319,14 +366319,14 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 31915768, + "vtable_address": 31915704, "methods": [ + 23889776, 23889840, - 23889904, - 23883632, - 23883648, - 23883664, - 23890032 + 23883568, + 23883584, + 23883600, + 23889968 ], "bases": [ { @@ -366391,23 +366391,23 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 31915832, + "vtable_address": 31915768, "methods": [ - 23889872, - 23889968, - 24747814, + 23889808, + 23889904, + 24747750, 15292960, 15719424, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058368, 15078560, 15408256, 9474464, 15164704, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071840, 15044592 @@ -366475,14 +366475,14 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 31915176, + "vtable_address": 31915112, "methods": [ + 23889136, 23889200, - 23889264, - 23883824, - 23883840, - 23883856, - 23889392 + 23883760, + 23883776, + 23883792, + 23889328 ], "bases": [ { @@ -366547,23 +366547,23 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 31915240, + "vtable_address": 31915176, "methods": [ - 23889232, - 23889328, - 24747814, + 23889168, + 23889264, + 24747750, 15292800, 15719280, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15058144, 15078576, 15407600, 9474464, 15164256, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071808, 15044576 @@ -366631,14 +366631,14 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 31919824, + "vtable_address": 31919760, "methods": [ + 23936896, 23936960, - 23937024, - 23934064, - 23934080, - 23934096, - 23937152 + 23934000, + 23934016, + 23934032, + 23937088 ], "bases": [ { @@ -366703,23 +366703,23 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 31919888, + "vtable_address": 31919824, "methods": [ - 23936992, - 23937088, - 24747814, + 23936928, + 23937024, + 24747750, 15294672, 15720992, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060800, 15078400, 15417456, 9474464, 15107056, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072224, 15044784 @@ -366787,14 +366787,14 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 31917984, + "vtable_address": 31917920, "methods": [ + 23934960, 23935024, - 23935088, - 23934640, - 23934656, - 23934672, - 23935216 + 23934576, + 23934592, + 23934608, + 23935152 ], "bases": [ { @@ -366859,23 +366859,23 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 31918048, + "vtable_address": 31917984, "methods": [ - 23935056, - 23935152, - 24747814, + 23934992, + 23935088, + 24747750, 15293392, 15719968, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15065680, 15078544, 15411024, 9474464, 15081296, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071936, 15044640 @@ -366943,14 +366943,14 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 31918576, + "vtable_address": 31918512, "methods": [ + 23935616, 23935680, - 23935744, - 23934448, - 23934464, - 23934480, - 23935872 + 23934384, + 23934400, + 23934416, + 23935808 ], "bases": [ { @@ -367015,23 +367015,23 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 31918640, + "vtable_address": 31918576, "methods": [ - 23935712, - 23935808, - 24747814, + 23935648, + 23935744, + 24747750, 15293536, 15720048, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15059504, 15078528, 15411440, 9474464, 15109552, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15071968, 15044656 @@ -367099,7 +367099,7 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 30970272, + "vtable_address": 30970208, "methods": [ 15976032, 15976096, @@ -367171,23 +367171,23 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 30970336, + "vtable_address": 30970272, "methods": [ 15976064, 15976160, - 24747814, + 24747750, 15294528, 15742896, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15092960, 15078416, 15416368, 9474464, 15218496, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072192, 15044768 @@ -367255,10 +367255,10 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 31055960, + "vtable_address": 31055896, "methods": [ - 16656352, - 16656416, + 16656224, + 16656288, 15974928, 15974944, 15974960, @@ -367327,23 +367327,23 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 31056024, + "vtable_address": 31055960, "methods": [ - 16656384, - 16656480, - 24747814, + 16656256, + 16656352, + 24747750, 14337360, 15029008, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 15032176, 14066224, 14437728, 9474464, 14280112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051088, 14018560 @@ -367411,14 +367411,14 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 31919232, + "vtable_address": 31919168, "methods": [ + 23936256, 23936320, - 23936384, - 23934256, - 23934272, - 23934288, - 23936512 + 23934192, + 23934208, + 23934224, + 23936448 ], "bases": [ { @@ -367483,23 +367483,23 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 31919296, + "vtable_address": 31919232, "methods": [ - 23936352, - 23936448, - 24747814, + 23936288, + 23936384, + 24747750, 15293680, 15720176, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15054384, 15078512, 15412112, 9474464, 15167488, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072000, 15044672 @@ -367567,14 +367567,14 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 31920416, + "vtable_address": 31920352, "methods": [ + 23937536, 23937600, - 23937664, - 23933872, - 23933888, - 23933904, - 23937792 + 23933808, + 23933824, + 23933840, + 23937728 ], "bases": [ { @@ -367639,23 +367639,23 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 31920480, + "vtable_address": 31920416, "methods": [ - 23937632, - 23937728, - 24747814, + 23937568, + 23937664, + 24747750, 15293952, 15720464, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060064, 15078480, 15413744, 9474464, 15152800, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072064, 15044704 @@ -367723,14 +367723,14 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 31921008, + "vtable_address": 31920944, "methods": [ + 23938176, 23938240, - 23938304, - 23933680, - 23933696, - 23933712, - 23938432 + 23933616, + 23933632, + 23933648, + 23938368 ], "bases": [ { @@ -367795,23 +367795,23 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 31921072, + "vtable_address": 31921008, "methods": [ - 23938272, - 23938368, - 24747814, + 23938208, + 23938304, + 24747750, 15294096, 15720576, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060192, 15078464, 15414416, 9474464, 15143680, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072096, 15044720 @@ -367879,14 +367879,14 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 31921616, + "vtable_address": 31921552, "methods": [ + 23938816, 23938880, - 23938944, - 23933488, - 23933504, - 23933520, - 23939072 + 23933424, + 23933440, + 23933456, + 23939008 ], "bases": [ { @@ -367951,23 +367951,23 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 31921680, + "vtable_address": 31921616, "methods": [ - 23938912, - 23939008, - 24747814, + 23938848, + 23938944, + 24747750, 15294832, 15721136, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060992, 15078384, 15418080, 9474464, 15132320, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072256, 15044800 @@ -368035,14 +368035,14 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 31922208, + "vtable_address": 31922144, "methods": [ + 23939456, 23939520, - 23939584, - 23933296, - 23933312, - 23933328, - 23939712 + 23933232, + 23933248, + 23933264, + 23939648 ], "bases": [ { @@ -368107,23 +368107,23 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 31922272, + "vtable_address": 31922208, "methods": [ - 23939552, - 23939648, - 24747814, + 23939488, + 23939584, + 24747750, 15294240, 15720704, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15060384, 15078448, 15415088, 9474464, 15155168, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072128, 15044736 @@ -368191,14 +368191,14 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 31922800, + "vtable_address": 31922736, "methods": [ + 23940096, 23940160, - 23940224, - 23933104, - 23933120, - 23933136, - 23940352 + 23933040, + 23933056, + 23933072, + 23940288 ], "bases": [ { @@ -368263,23 +368263,23 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 31922864, + "vtable_address": 31922800, "methods": [ - 23940192, - 23940288, - 24747814, + 23940128, + 23940224, + 24747750, 15295136, 15721360, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061344, 15078352, 15419328, 9474464, 15221984, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072320, 15044832 @@ -368347,14 +368347,14 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 31923392, + "vtable_address": 31923328, "methods": [ + 23940736, 23940800, - 23940864, - 23932912, - 23932928, - 23932944, - 23940992 + 23932848, + 23932864, + 23932880, + 23940928 ], "bases": [ { @@ -368419,23 +368419,23 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 31923456, + "vtable_address": 31923392, "methods": [ - 23940832, - 23940928, - 24747814, + 23940768, + 23940864, + 24747750, 15295296, 15721632, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061872, 15078336, 15420624, 9474464, 15107312, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072352, 15044848 @@ -368503,14 +368503,14 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 31923984, + "vtable_address": 31923920, "methods": [ + 23941376, 23941440, - 23941504, - 23932720, - 23932736, - 23932752, - 23941632 + 23932656, + 23932672, + 23932688, + 23941568 ], "bases": [ { @@ -368575,23 +368575,23 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 31924048, + "vtable_address": 31923984, "methods": [ - 23941472, - 23941568, - 24747814, + 23941408, + 23941504, + 24747750, 15294976, 15721216, 15043408, - 24749974, - 24746806, + 24749910, + 24746742, 15061120, 15078368, 15418672, 9474464, 15165152, - 24746716, - 24746982, + 24746652, + 24746918, 15048816, 15072288, 15044816 @@ -368659,7 +368659,7 @@ }, { "type_name": "Time to move between crouch and stand", - "vtable_address": 31319152, + "vtable_address": 31319088, "methods": [], "bases": [], "model": { @@ -368670,23 +368670,23 @@ }, { "type_name": "TournamentEvent", - "vtable_address": 30825944, + "vtable_address": 30825880, "methods": [ 14750832, 14833136, - 24747814, + 24747750, 14339696, 14901104, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14072112, 14062256, 14443376, 9474464, 14290912, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051376, 14021648 @@ -368722,23 +368722,23 @@ }, { "type_name": "TournamentMatchSetup", - "vtable_address": 30827704, + "vtable_address": 30827640, "methods": [ 14752480, 14799344, - 24747814, + 24747750, 14341440, 14886560, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14030880, 14062096, 14448464, 9474464, 14201792, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051728, 14021824 @@ -368774,23 +368774,23 @@ }, { "type_name": "TournamentPlayer", - "vtable_address": 30825624, + "vtable_address": 30825560, "methods": [ 14750464, 14835744, - 24747814, + 24747750, 14339280, 14900864, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14071808, 14061904, 14442736, 9474464, 14270400, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051312, 14021616 @@ -368826,23 +368826,23 @@ }, { "type_name": "TournamentTeam", - "vtable_address": 30825784, + "vtable_address": 30825720, "methods": [ 14750640, 14836544, - 24747814, + 24747750, 14339488, 14941392, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14223104, 14062272, 14612752, 9474464, 14230656, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051344, 14021632 @@ -368878,9 +368878,9 @@ }, { "type_name": "TranslationTrack_t", - "vtable_address": 31426680, + "vtable_address": 31426616, "methods": [ - 19791696 + 19791568 ], "bases": [ { @@ -368902,18 +368902,18 @@ }, { "type_name": "Unknown", - "vtable_address": 32002672, + "vtable_address": 32002608, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8723146 + "offset_to_top": 8723157 } } }, { "type_name": "UseEntityState", - "vtable_address": 30278168, + "vtable_address": 30278104, "methods": [ 11308864, 11313248, @@ -368940,7 +368940,7 @@ }, { "type_name": "V8HelpersImpl::V8WeakWrapper", - "vtable_address": 30216040, + "vtable_address": 30215976, "methods": [ 10063152, 10068160 @@ -368965,7 +368965,7 @@ }, { "type_name": "V8HelpersImpl::V8WeakWrapperBase", - "vtable_address": 30207104, + "vtable_address": 30207040, "methods": [ 10063040, 10063088 @@ -368979,20 +368979,20 @@ }, { "type_name": "VDataChoice( scripts/ammo.vdata )", - "vtable_address": 31423920, + "vtable_address": 31423856, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8782273 + "offset_to_top": 8782284 } } }, { "type_name": "VDataInitInfo_t", - "vtable_address": 31993568, + "vtable_address": 31993504, "methods": [ - 25569424, + 25569360, 9449408, 9447152, 9447168, @@ -369019,12 +369019,12 @@ }, { "type_name": "VPhysicsCollisionAttribute_t", - "vtable_address": 31450784, + "vtable_address": 31450720, "methods": [ 12334960, - 20153872, - 20153888, - 20153904 + 20153744, + 20153760, + 20153776 ], "bases": [], "model": { @@ -369035,23 +369035,23 @@ }, { "type_name": "VacNetShot", - "vtable_address": 30874904, + "vtable_address": 30874840, "methods": [ 14789632, 14832976, - 24747814, + 24747750, 14389888, 14895184, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14036368, 14063680, 14593728, 9474464, 14237440, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14061168, 14028752 @@ -369087,18 +369087,18 @@ }, { "type_name": "Value 0-1 how far along duration (always 0 if duration is -1)", - "vtable_address": 32013008, + "vtable_address": 32012944, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8776814 + "offset_to_top": 8776825 } } }, { "type_name": "ViewAngleServerChange_t", - "vtable_address": 30547816, + "vtable_address": 30547752, "methods": [ 13391472, 13387024, @@ -369115,34 +369115,34 @@ }, { "type_name": "ViewAngleServerChange_t", - "vtable_address": 31319400, + "vtable_address": 31319336, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32661736 + "offset_to_top": 32661672 } } }, { "type_name": "WatchableMatchInfo", - "vtable_address": 30834584, + "vtable_address": 30834520, "methods": [ 14757472, 14833312, - 24747814, + 24747750, 14348704, 14902464, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14081280, 14062528, 14473840, 9474464, 14299648, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14053104, 14022512 @@ -369178,13 +369178,13 @@ }, { "type_name": "WeaponPurchaseCount_t", - "vtable_address": 31276472, + "vtable_address": 31276408, "methods": [ - 17254352, - 17254928, - 17255568, - 17255504, - 17255472 + 17254224, + 17254800, + 17255440, + 17255376, + 17255344 ], "bases": [], "model": { @@ -369195,12 +369195,12 @@ }, { "type_name": "WeaponPurchaseTracker_t", - "vtable_address": 31276528, + "vtable_address": 31276464, "methods": [ - 17254368, - 17253696, - 17253712, - 17253728 + 17254240, + 17253568, + 17253584, + 17253600 ], "bases": [], "model": { @@ -369211,29 +369211,29 @@ }, { "type_name": "What model to use for the physics hull. Will not be drawn.", - "vtable_address": 31746288, + "vtable_address": 31746224, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8723146 + "offset_to_top": 8723157 } } }, { "type_name": "Whether this weapon is safe to automatically switch to (should be false for eg. explosives that can the player may accidentally hurt themselves with)", - "vtable_address": 31423504, + "vtable_address": 31423440, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8723146 + "offset_to_top": 8723157 } } }, { "type_name": "Which 'row' to display this weapon in the HUD", - "vtable_address": 31423408, + "vtable_address": 31423344, "methods": [], "bases": [], "model": { @@ -369244,23 +369244,23 @@ }, { "type_name": "XpProgressData", - "vtable_address": 30828344, + "vtable_address": 30828280, "methods": [ 14753024, 14799728, - 24747814, + 24747750, 14342032, 14886752, 14016848, - 24749974, - 24746806, + 24749910, + 24746742, 14040496, 14062016, 14451712, 9474464, 14142112, - 24746716, - 24746982, + 24746652, + 24746918, 14029696, 14051856, 14021888 @@ -369296,18 +369296,18 @@ }, { "type_name": "animationgraph", - "vtable_address": 30785008, + "vtable_address": 30784944, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8774883 + "offset_to_top": 8774894 } } }, { "type_name": "dynpitchvol_base_t", - "vtable_address": 32412960, + "vtable_address": 32412896, "methods": [], "bases": [], "model": { @@ -369318,18 +369318,18 @@ }, { "type_name": "fixed64", - "vtable_address": 31320016, + "vtable_address": 31319952, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8774883 + "offset_to_top": 8774894 } } }, { "type_name": "fogparams_t", - "vtable_address": 30372032, + "vtable_address": 30371968, "methods": [ 12101744, 12096400, @@ -369345,23 +369345,23 @@ }, { "type_name": "fogparams_t", - "vtable_address": 30469352, + "vtable_address": 30469288, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 32348320 + "offset_to_top": 32348256 } } }, { "type_name": "fogplayerparams_t", - "vtable_address": 31382600, + "vtable_address": 31382536, "methods": [ 12335136, - 19294272, - 19294288, - 19294304 + 19294144, + 19294160, + 19294176 ], "bases": [], "model": { @@ -369372,7 +369372,7 @@ }, { "type_name": "gameSceneNodeLocalScaleChanged", - "vtable_address": 30685328, + "vtable_address": 30685264, "methods": [], "bases": [], "model": { @@ -369383,25 +369383,25 @@ }, { "type_name": "gameSceneNodeStepSimulationAnglesSerializer", - "vtable_address": 30685424, + "vtable_address": 30685360, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8774883 + "offset_to_top": 8774894 } } }, { "type_name": "google::protobuf::DescriptorBuilder::OptionInterpreter::AggregateOptionFinder", - "vtable_address": 31930240, + "vtable_address": 31930176, "methods": [ - 24523224, - 24523240, - 24550954, - 24764462, - 24551152, - 24763934 + 24523160, + 24523176, + 24550890, + 24764398, + 24551088, + 24763870 ], "bases": [ { @@ -369423,7 +369423,7 @@ }, { "type_name": "google::protobuf::DescriptorDatabase", - "vtable_address": 31936392, + "vtable_address": 31936328, "methods": [], "bases": [], "model": { @@ -369434,15 +369434,15 @@ }, { "type_name": "google::protobuf::DescriptorPoolDatabase", - "vtable_address": 31936552, + "vtable_address": 31936488, "methods": [ + 24630820, 24630884, - 24630948, - 24639832, - 24639882, - 24639932, - 24638616, - 24642588 + 24639768, + 24639818, + 24639868, + 24638552, + 24642524 ], "bases": [ { @@ -369464,26 +369464,26 @@ }, { "type_name": "google::protobuf::DescriptorProto", - "vtable_address": 31931952, + "vtable_address": 31931888, "methods": [ - 24596316, - 24596362, - 24747814, - 24618088, - 24599594, - 24591546, - 24749974, - 24746806, - 24567664, - 24616136, - 24575672, + 24596252, + 24596298, + 24747750, + 24618024, + 24599530, + 24591482, + 24749910, + 24746742, + 24567600, + 24616072, + 24575608, 9474464, - 24591862, - 24746716, - 24746982, - 24553100, - 24551616, - 24551296 + 24591798, + 24746652, + 24746918, + 24553036, + 24551552, + 24551232 ], "bases": [ { @@ -369516,26 +369516,26 @@ }, { "type_name": "google::protobuf::DescriptorProto_ExtensionRange", - "vtable_address": 31931632, + "vtable_address": 31931568, "methods": [ - 24596060, - 24596106, - 24747814, - 24618072, - 24597960, - 24587222, - 24749974, - 24746806, - 24565418, - 24616206, - 24569510, + 24595996, + 24596042, + 24747750, + 24618008, + 24597896, + 24587158, + 24749910, + 24746742, + 24565354, + 24616142, + 24569446, 9474464, - 24561894, - 24746716, - 24746982, - 24553080, - 24551556, - 24551280 + 24561830, + 24746652, + 24746918, + 24553016, + 24551492, + 24551216 ], "bases": [ { @@ -369568,26 +369568,26 @@ }, { "type_name": "google::protobuf::DescriptorProto_ReservedRange", - "vtable_address": 31931792, + "vtable_address": 31931728, "methods": [ - 24595932, - 24595978, - 24747814, - 24618080, - 24597596, - 24551492, - 24749974, - 24746806, - 24552362, - 24616236, - 24569810, + 24595868, + 24595914, + 24747750, + 24618016, + 24597532, + 24551428, + 24749910, + 24746742, + 24552298, + 24616172, + 24569746, 9474464, - 24562082, - 24746716, - 24746982, - 24553090, - 24551586, - 24551288 + 24562018, + 24746652, + 24746918, + 24553026, + 24551522, + 24551224 ], "bases": [ { @@ -369620,26 +369620,26 @@ }, { "type_name": "google::protobuf::DynamicMessage", - "vtable_address": 31936744, - "methods": [ - 24654634, - 24655218, - 24747814, - 24657654, - 24746918, - 24746924, - 24749974, - 24746806, - 24746942, - 24654198, - 24746930, + "vtable_address": 31936680, + "methods": [ + 24654570, + 24655154, + 24747750, + 24657590, + 24746854, + 24746860, + 24749910, + 24746742, + 24746878, + 24654134, + 24746866, 9474464, - 24746936, - 24746716, - 24746982, - 24654202, - 24654184, - 24658246 + 24746872, + 24746652, + 24746918, + 24654138, + 24654120, + 24658182 ], "bases": [ { @@ -369672,11 +369672,11 @@ }, { "type_name": "google::protobuf::DynamicMessageFactory", - "vtable_address": 31936904, + "vtable_address": 31936840, "methods": [ - 24654430, - 24654616, - 24658128 + 24654366, + 24654552, + 24658064 ], "bases": [ { @@ -369698,15 +369698,15 @@ }, { "type_name": "google::protobuf::EncodedDescriptorDatabase", - "vtable_address": 31936480, + "vtable_address": 31936416, "methods": [ - 24632778, - 24632950, - 24638556, - 24638084, - 24638302, - 24638998, - 24633336 + 24632714, + 24632886, + 24638492, + 24638020, + 24638238, + 24638934, + 24633272 ], "bases": [ { @@ -369728,26 +369728,26 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto", - "vtable_address": 31932752, + "vtable_address": 31932688, "methods": [ - 24596700, - 24596746, - 24747814, - 24618170, - 24599386, - 24587434, - 24749974, - 24746806, - 24567382, - 24616146, - 24582994, + 24596636, + 24596682, + 24747750, + 24618106, + 24599322, + 24587370, + 24749910, + 24746742, + 24567318, + 24616082, + 24582930, 9474464, - 24586694, - 24746716, - 24746982, - 24553150, - 24551766, - 24551336 + 24586630, + 24746652, + 24746918, + 24553086, + 24551702, + 24551272 ], "bases": [ { @@ -369780,26 +369780,26 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto_EnumReservedRange", - "vtable_address": 31932592, + "vtable_address": 31932528, "methods": [ - 24596124, - 24596170, - 24747814, - 24618162, - 24597668, - 24551492, - 24749974, - 24746806, - 24552436, - 24616296, - 24571378, + 24596060, + 24596106, + 24747750, + 24618098, + 24597604, + 24551428, + 24749910, + 24746742, + 24552372, + 24616232, + 24571314, 9474464, - 24563040, - 24746716, - 24746982, - 24553140, - 24551736, - 24551328 + 24562976, + 24746652, + 24746918, + 24553076, + 24551672, + 24551264 ], "bases": [ { @@ -369832,26 +369832,26 @@ }, { "type_name": "google::protobuf::EnumOptions", - "vtable_address": 31934032, + "vtable_address": 31933968, "methods": [ - 24596636, - 24596682, - 24747814, - 24618464, - 24599104, - 24587402, - 24749974, - 24746806, - 24567038, - 24616286, - 24581204, + 24596572, + 24596618, + 24747750, + 24618400, + 24599040, + 24587338, + 24749910, + 24746742, + 24566974, + 24616222, + 24581140, 9474464, - 24588496, - 24746716, - 24746982, - 24553230, - 24552006, - 24551400 + 24588432, + 24746652, + 24746918, + 24553166, + 24551942, + 24551336 ], "bases": [ { @@ -369884,26 +369884,26 @@ }, { "type_name": "google::protobuf::EnumValueDescriptorProto", - "vtable_address": 31932912, + "vtable_address": 31932848, "methods": [ - 24596828, - 24596874, - 24747814, - 24618178, - 24599198, - 24587374, - 24749974, - 24746806, - 24567274, - 24616276, - 24571648, + 24596764, + 24596810, + 24747750, + 24618114, + 24599134, + 24587310, + 24749910, + 24746742, + 24567210, + 24616212, + 24571584, 9474464, - 24563184, - 24746716, - 24746982, - 24553160, - 24551796, - 24551344 + 24563120, + 24746652, + 24746918, + 24553096, + 24551732, + 24551280 ], "bases": [ { @@ -369936,26 +369936,26 @@ }, { "type_name": "google::protobuf::EnumValueOptions", - "vtable_address": 31934192, + "vtable_address": 31934128, "methods": [ - 24596764, - 24596810, - 24747814, - 24618514, - 24599152, - 24587342, - 24749974, - 24746806, - 24567164, - 24616306, - 24581654, + 24596700, + 24596746, + 24747750, + 24618450, + 24599088, + 24587278, + 24749910, + 24746742, + 24567100, + 24616242, + 24581590, 9474464, - 24588266, - 24746716, - 24746982, - 24553240, - 24552036, - 24551408 + 24588202, + 24746652, + 24746918, + 24553176, + 24551972, + 24551344 ], "bases": [ { @@ -369988,26 +369988,26 @@ }, { "type_name": "google::protobuf::ExtensionRangeOptions", - "vtable_address": 31932112, + "vtable_address": 31932048, "methods": [ - 24595996, - 24596042, - 24747814, - 24618138, - 24597928, - 24587190, - 24749974, - 24746806, - 24565320, - 24616196, - 24576980, + 24595932, + 24595978, + 24747750, + 24618074, + 24597864, + 24587126, + 24749910, + 24746742, + 24565256, + 24616132, + 24576916, 9474464, - 24591354, - 24746716, - 24746982, - 24553110, - 24551646, - 24551304 + 24591290, + 24746652, + 24746918, + 24553046, + 24551582, + 24551240 ], "bases": [ { @@ -370040,11 +370040,11 @@ }, { "type_name": "google::protobuf::FatalException", - "vtable_address": 31930152, + "vtable_address": 31930088, "methods": [ - 24366192, - 24366226, - 24366108 + 24366128, + 24366162, + 24366044 ], "bases": [], "model": { @@ -370055,26 +370055,26 @@ }, { "type_name": "google::protobuf::FieldDescriptorProto", - "vtable_address": 31932272, + "vtable_address": 31932208, "methods": [ - 24596444, - 24596490, - 24747814, - 24618146, - 24598604, - 24587706, - 24749974, - 24746806, - 24566556, - 24616166, - 24570080, + 24596380, + 24596426, + 24747750, + 24618082, + 24598540, + 24587642, + 24749910, + 24746742, + 24566492, + 24616102, + 24570016, 9474464, - 24562226, - 24746716, - 24746982, - 24553120, - 24551676, - 24551312 + 24562162, + 24746652, + 24746918, + 24553056, + 24551612, + 24551248 ], "bases": [ { @@ -370107,26 +370107,26 @@ }, { "type_name": "google::protobuf::FieldOptions", - "vtable_address": 31933712, + "vtable_address": 31933648, "methods": [ - 24596380, - 24596426, - 24747814, - 24618364, - 24598494, - 24587674, - 24749974, - 24746806, - 24566294, - 24616256, - 24579886, + 24596316, + 24596362, + 24747750, + 24618300, + 24598430, + 24587610, + 24749910, + 24746742, + 24566230, + 24616192, + 24579822, 9474464, - 24588958, - 24746716, - 24746982, - 24553210, - 24551946, - 24551384 + 24588894, + 24746652, + 24746918, + 24553146, + 24551882, + 24551320 ], "bases": [ { @@ -370159,26 +370159,26 @@ }, { "type_name": "google::protobuf::FileDescriptorProto", - "vtable_address": 31931472, + "vtable_address": 31931408, "methods": [ - 24597404, - 24597450, - 24747814, - 24618064, - 24600524, - 24591738, - 24749974, - 24746806, - 24568848, - 24616126, - 24574380, + 24597340, + 24597386, + 24747750, + 24618000, + 24600460, + 24591674, + 24749910, + 24746742, + 24568784, + 24616062, + 24574316, 9474464, - 24592766, - 24746716, - 24746982, - 24553070, - 24551526, - 24551272 + 24592702, + 24746652, + 24746918, + 24553006, + 24551462, + 24551208 ], "bases": [ { @@ -370211,26 +370211,26 @@ }, { "type_name": "google::protobuf::FileDescriptorSet", - "vtable_address": 31931312, - "methods": [ - 24595868, - 24595914, - 24747814, - 24618056, - 24600940, - 24593796, - 24749974, - 24746806, - 24569420, - 24616386, - 24574058, + "vtable_address": 31931248, + "methods": [ + 24595804, + 24595850, + 24747750, + 24617992, + 24600876, + 24593732, + 24749910, + 24746742, + 24569356, + 24616322, + 24573994, 9474464, - 24593840, - 24746716, - 24746982, - 24553060, - 24551496, - 24551264 + 24593776, + 24746652, + 24746918, + 24552996, + 24551432, + 24551200 ], "bases": [ { @@ -370263,26 +370263,26 @@ }, { "type_name": "google::protobuf::FileOptions", - "vtable_address": 31933392, + "vtable_address": 31933328, "methods": [ - 24596188, - 24596234, - 24747814, - 24618254, - 24598138, - 24587734, - 24749974, - 24746806, - 24565520, - 24616176, - 24577322, + 24596124, + 24596170, + 24747750, + 24618190, + 24598074, + 24587670, + 24749910, + 24746742, + 24565456, + 24616112, + 24577258, 9474464, - 24589886, - 24746716, - 24746982, - 24553190, - 24551886, - 24551368 + 24589822, + 24746652, + 24746918, + 24553126, + 24551822, + 24551304 ], "bases": [ { @@ -370315,80 +370315,80 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo", - "vtable_address": 31935472, + "vtable_address": 31935408, "methods": [ - 24597532, - 24597578, - 24747814, - 24618714, - 24601064, - 24551492, - 24749974, - 24746806, - 24552970, - 24616376, - 24585254, + 24597468, + 24597514, + 24747750, + 24618650, + 24601000, + 24551428, + 24749910, + 24746742, + 24552906, + 24616312, + 24585190, 9474464, - 24585576, - 24746716, - 24746982, - 24553320, - 24552276, - 24551484, - 24748544, - 24615394, - 24748544, - 24595624, - 24748544, - 24614530, - 24748544, - 24595156, - 24748544, - 24613446, - 24748544, - 24594690, - 24748544, - 24610888, - 24748544, - 24610664, - 24748544, - 24610138, - 24748544, - 24609900, - 24748544, - 24609412, - 24748544, - 24608454, - 24748544, - 24607778, - 24748544, - 24606826, - 24748544, - 24611092, - 24748544, - 24612448, - 24748544, - 24610328, - 24748544, - 24611856, - 24748544, - 24594372, - 24748544, - 24609586, - 24748544, - 24608838, - 24748544, - 24606358, - 24748544, - 24608002, - 24748544, - 24594102, - 24748544, - 24606532, - 24748544, - 24614684, - 24748544, - 24601222 + 24585512, + 24746652, + 24746918, + 24553256, + 24552212, + 24551420, + 24748480, + 24615330, + 24748480, + 24595560, + 24748480, + 24614466, + 24748480, + 24595092, + 24748480, + 24613382, + 24748480, + 24594626, + 24748480, + 24610824, + 24748480, + 24610600, + 24748480, + 24610074, + 24748480, + 24609836, + 24748480, + 24609348, + 24748480, + 24608390, + 24748480, + 24607714, + 24748480, + 24606762, + 24748480, + 24611028, + 24748480, + 24612384, + 24748480, + 24610264, + 24748480, + 24611792, + 24748480, + 24594308, + 24748480, + 24609522, + 24748480, + 24608774, + 24748480, + 24606294, + 24748480, + 24607938, + 24748480, + 24594038, + 24748480, + 24606468, + 24748480, + 24614620, + 24748480, + 24601158 ], "bases": [ { @@ -370421,26 +370421,26 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo_Annotation", - "vtable_address": 31935312, + "vtable_address": 31935248, "methods": [ - 24597468, - 24597514, - 24747814, - 24618706, - 24600964, - 24551492, - 24749974, - 24746806, - 24552510, - 24616366, - 24573596, + 24597404, + 24597450, + 24747750, + 24618642, + 24600900, + 24551428, + 24749910, + 24746742, + 24552446, + 24616302, + 24573532, 9474464, - 24564840, - 24746716, - 24746982, - 24553310, - 24552246, - 24551476 + 24564776, + 24746652, + 24746918, + 24553246, + 24552182, + 24551412 ], "bases": [ { @@ -370473,15 +370473,15 @@ }, { "type_name": "google::protobuf::MergedDescriptorDatabase", - "vtable_address": 31936624, + "vtable_address": 31936560, "methods": [ - 24631034, - 24631060, - 24630886, - 24640814, - 24641008, - 24639262, - 24633350 + 24630970, + 24630996, + 24630822, + 24640750, + 24640944, + 24639198, + 24633286 ], "bases": [ { @@ -370503,7 +370503,7 @@ }, { "type_name": "google::protobuf::Message", - "vtable_address": 31931296, + "vtable_address": 31931232, "methods": [], "bases": [ { @@ -370525,7 +370525,7 @@ }, { "type_name": "google::protobuf::Message", - "vtable_address": 31936728, + "vtable_address": 31936664, "methods": [], "bases": [ { @@ -370547,7 +370547,7 @@ }, { "type_name": "google::protobuf::Message", - "vtable_address": 31936952, + "vtable_address": 31936888, "methods": [], "bases": [ { @@ -370569,7 +370569,7 @@ }, { "type_name": "google::protobuf::Message", - "vtable_address": 31938816, + "vtable_address": 31938752, "methods": [], "bases": [ { @@ -370591,7 +370591,7 @@ }, { "type_name": "google::protobuf::MessageLite", - "vtable_address": 31928384, + "vtable_address": 31928320, "methods": [], "bases": [], "model": { @@ -370602,7 +370602,7 @@ }, { "type_name": "google::protobuf::MessageLite", - "vtable_address": 31929904, + "vtable_address": 31929840, "methods": [], "bases": [], "model": { @@ -370613,26 +370613,26 @@ }, { "type_name": "google::protobuf::MessageOptions", - "vtable_address": 31933552, + "vtable_address": 31933488, "methods": [ - 24596252, - 24596298, - 24747814, - 24618314, - 24598446, - 24587310, - 24749974, - 24746806, - 24566148, - 24616216, - 24579352, + 24596188, + 24596234, + 24747750, + 24618250, + 24598382, + 24587246, + 24749910, + 24746742, + 24566084, + 24616152, + 24579288, 9474464, - 24589542, - 24746716, - 24746982, - 24553200, - 24551916, - 24551376 + 24589478, + 24746652, + 24746918, + 24553136, + 24551852, + 24551312 ], "bases": [ { @@ -370665,26 +370665,26 @@ }, { "type_name": "google::protobuf::MethodDescriptorProto", - "vtable_address": 31933232, + "vtable_address": 31933168, "methods": [ - 24597084, - 24597130, - 24747814, - 24618194, - 24599966, - 24587540, - 24749974, - 24746806, - 24568532, - 24616316, - 24572040, + 24597020, + 24597066, + 24747750, + 24618130, + 24599902, + 24587476, + 24749910, + 24746742, + 24568468, + 24616252, + 24571976, 9474464, - 24563404, - 24746716, - 24746982, - 24553180, - 24551856, - 24551360 + 24563340, + 24746652, + 24746918, + 24553116, + 24551792, + 24551296 ], "bases": [ { @@ -370717,26 +370717,26 @@ }, { "type_name": "google::protobuf::MethodOptions", - "vtable_address": 31934512, + "vtable_address": 31934448, "methods": [ - 24597020, - 24597066, - 24747814, - 24618614, - 24599910, - 24587508, - 24749974, - 24746806, - 24568398, - 24616336, - 24582484, + 24596956, + 24597002, + 24747750, + 24618550, + 24599846, + 24587444, + 24749910, + 24746742, + 24568334, + 24616272, + 24582420, 9474464, - 24587766, - 24746716, - 24746982, - 24553260, - 24552096, - 24551424 + 24587702, + 24746652, + 24746918, + 24553196, + 24552032, + 24551360 ], "bases": [ { @@ -370769,26 +370769,26 @@ }, { "type_name": "google::protobuf::OneofDescriptorProto", - "vtable_address": 31932432, + "vtable_address": 31932368, "methods": [ - 24596572, - 24596618, - 24747814, - 24618154, - 24598924, - 24587282, - 24749974, - 24746806, - 24566948, - 24616226, - 24571026, + 24596508, + 24596554, + 24747750, + 24618090, + 24598860, + 24587218, + 24749910, + 24746742, + 24566884, + 24616162, + 24570962, 9474464, - 24562856, - 24746716, - 24746982, - 24553130, - 24551706, - 24551320 + 24562792, + 24746652, + 24746918, + 24553066, + 24551642, + 24551256 ], "bases": [ { @@ -370821,26 +370821,26 @@ }, { "type_name": "google::protobuf::OneofOptions", - "vtable_address": 31933872, + "vtable_address": 31933808, "methods": [ - 24596508, - 24596554, - 24747814, - 24618414, - 24598892, - 24587250, - 24749974, - 24746806, - 24566850, - 24616266, - 24580862, + 24596444, + 24596490, + 24747750, + 24618350, + 24598828, + 24587186, + 24749910, + 24746742, + 24566786, + 24616202, + 24580798, 9474464, - 24588766, - 24746716, - 24746982, - 24553220, - 24551976, - 24551392 + 24588702, + 24746652, + 24746918, + 24553156, + 24551912, + 24551328 ], "bases": [ { @@ -370873,26 +370873,26 @@ }, { "type_name": "google::protobuf::ServiceDescriptorProto", - "vtable_address": 31933072, + "vtable_address": 31933008, "methods": [ - 24596956, - 24597002, - 24747814, - 24618186, - 24600186, - 24587600, - 24749974, - 24746806, - 24568694, - 24616156, - 24583734, + 24596892, + 24596938, + 24747750, + 24618122, + 24600122, + 24587536, + 24749910, + 24746742, + 24568630, + 24616092, + 24583670, 9474464, - 24586414, - 24746716, - 24746982, - 24553170, - 24551826, - 24551352 + 24586350, + 24746652, + 24746918, + 24553106, + 24551762, + 24551288 ], "bases": [ { @@ -370925,26 +370925,26 @@ }, { "type_name": "google::protobuf::ServiceOptions", - "vtable_address": 31934352, + "vtable_address": 31934288, "methods": [ - 24596892, - 24596938, - 24747814, - 24618564, - 24599864, - 24587568, - 24749974, - 24746806, - 24568288, - 24616326, - 24582068, + 24596828, + 24596874, + 24747750, + 24618500, + 24599800, + 24587504, + 24749910, + 24746742, + 24568224, + 24616262, + 24582004, 9474464, - 24588036, - 24746716, - 24746982, - 24553250, - 24552066, - 24551416 + 24587972, + 24746652, + 24746918, + 24553186, + 24552002, + 24551352 ], "bases": [ { @@ -370977,15 +370977,15 @@ }, { "type_name": "google::protobuf::SimpleDescriptorDatabase", - "vtable_address": 31936408, + "vtable_address": 31936344, "methods": [ - 24642314, - 24642404, - 24631854, - 24632240, - 24633914, - 24638818, - 24632968 + 24642250, + 24642340, + 24631790, + 24632176, + 24633850, + 24638754, + 24632904 ], "bases": [ { @@ -371007,26 +371007,26 @@ }, { "type_name": "google::protobuf::SourceCodeInfo", - "vtable_address": 31935152, + "vtable_address": 31935088, "methods": [ - 24597340, - 24597386, - 24747814, - 24618698, - 24600500, - 24551492, - 24749974, - 24746806, - 24552880, - 24616186, - 24584932, + 24597276, + 24597322, + 24747750, + 24618634, + 24600436, + 24551428, + 24749910, + 24746742, + 24552816, + 24616122, + 24584868, 9474464, - 24585740, - 24746716, - 24746982, - 24553300, - 24552216, - 24551468 + 24585676, + 24746652, + 24746918, + 24553236, + 24552152, + 24551404 ], "bases": [ { @@ -371059,26 +371059,26 @@ }, { "type_name": "google::protobuf::SourceCodeInfo_Location", - "vtable_address": 31934992, + "vtable_address": 31934928, "methods": [ - 24597276, - 24597322, - 24747814, - 24618638, - 24600376, - 24551492, - 24749974, - 24746806, - 24552650, - 24616356, - 24572968, + 24597212, + 24597258, + 24747750, + 24618574, + 24600312, + 24551428, + 24749910, + 24746742, + 24552586, + 24616292, + 24572904, 9474464, - 24563966, - 24746716, - 24746982, - 24553290, - 24552186, - 24551460 + 24563902, + 24746652, + 24746918, + 24553226, + 24552122, + 24551396 ], "bases": [ { @@ -371111,7 +371111,7 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 31940328, + "vtable_address": 31940264, "methods": [], "bases": [], "model": { @@ -371122,25 +371122,25 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 31941120, - "methods": [ - 24763956, - 24764064, - 24763988, - 24765654, - 24765882, - 24766130, - 24766360, - 24766610, - 24766806, - 24769932, - 24763958, - 24765642, - 24763964, - 24770148, - 24770372, - 24763984, - 24770516 + "vtable_address": 31941056, + "methods": [ + 24763892, + 24764000, + 24763924, + 24765590, + 24765818, + 24766066, + 24766296, + 24766546, + 24766742, + 24769868, + 24763894, + 24765578, + 24763900, + 24770084, + 24770308, + 24763920, + 24770452 ], "bases": [], "model": { @@ -371151,23 +371151,23 @@ }, { "type_name": "google::protobuf::TextFormat::FieldValuePrinter", - "vtable_address": 31940984, - "methods": [ - 24763938, - 24764058, - 24764088, - 24765776, - 24766024, - 24766252, - 24766502, - 24766704, - 24766902, - 24770040, - 24763940, - 24768112, - 24770258, - 24770400, - 24770544 + "vtable_address": 31940920, + "methods": [ + 24763874, + 24763994, + 24764024, + 24765712, + 24765960, + 24766188, + 24766438, + 24766640, + 24766838, + 24769976, + 24763876, + 24768048, + 24770194, + 24770336, + 24770480 ], "bases": [], "model": { @@ -371178,12 +371178,12 @@ }, { "type_name": "google::protobuf::TextFormat::Parser::ParserImpl::ParserErrorCollector", - "vtable_address": 31940344, + "vtable_address": 31940280, "methods": [ - 24782894, - 24782910, - 24783438, - 24783812 + 24782830, + 24782846, + 24783374, + 24783748 ], "bases": [ { @@ -371205,25 +371205,25 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::DebugStringFieldValuePrinter", - "vtable_address": 31940456, - "methods": [ - 24782740, - 24782744, - 24763988, - 24765654, - 24765882, - 24766130, - 24766360, - 24766610, - 24766806, - 24769932, - 24763958, - 24765642, - 24763964, - 24770148, - 24792566, - 24763984, - 24770516 + "vtable_address": 31940392, + "methods": [ + 24782676, + 24782680, + 24763924, + 24765590, + 24765818, + 24766066, + 24766296, + 24766546, + 24766742, + 24769868, + 24763894, + 24765578, + 24763900, + 24770084, + 24792502, + 24763920, + 24770452 ], "bases": [ { @@ -371245,25 +371245,25 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::FastFieldValuePrinterUtf8Escaping", - "vtable_address": 31940608, - "methods": [ - 24782742, - 24782750, - 24763988, - 24765654, - 24765882, - 24766130, - 24766360, - 24766610, - 24766806, - 24792708, - 24792816, - 24765642, - 24763964, - 24770148, - 24792566, - 24763984, - 24770516 + "vtable_address": 31940544, + "methods": [ + 24782678, + 24782686, + 24763924, + 24765590, + 24765818, + 24766066, + 24766296, + 24766546, + 24766742, + 24792644, + 24792752, + 24765578, + 24763900, + 24770084, + 24792502, + 24763920, + 24770452 ], "bases": [ { @@ -371296,14 +371296,14 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::TextGenerator", - "vtable_address": 31940392, + "vtable_address": 31940328, "methods": [ - 24782694, - 24782756, - 24782728, - 24782774, - 24782732, - 24784270 + 24782630, + 24782692, + 24782664, + 24782710, + 24782668, + 24784206 ], "bases": [ { @@ -371325,26 +371325,26 @@ }, { "type_name": "google::protobuf::UninterpretedOption", - "vtable_address": 31934832, + "vtable_address": 31934768, "methods": [ - 24597212, - 24597258, - 24747814, - 24618630, - 24597816, - 24585904, - 24749974, - 24746806, - 24557902, - 24616246, - 24584238, + 24597148, + 24597194, + 24747750, + 24618566, + 24597752, + 24585840, + 24749910, + 24746742, + 24557838, + 24616182, + 24584174, 9474464, - 24585948, - 24746716, - 24746982, - 24553280, - 24552156, - 24551452 + 24585884, + 24746652, + 24746918, + 24553216, + 24552092, + 24551388 ], "bases": [ { @@ -371377,26 +371377,26 @@ }, { "type_name": "google::protobuf::UninterpretedOption_NamePart", - "vtable_address": 31934672, + "vtable_address": 31934608, "methods": [ - 24597148, - 24597194, - 24747814, - 24618622, - 24597740, - 24551440, - 24749974, - 24746806, - 24557848, - 24616346, - 24572622, + 24597084, + 24597130, + 24747750, + 24618558, + 24597676, + 24551376, + 24749910, + 24746742, + 24557784, + 24616282, + 24572558, 9474464, - 24563790, - 24746716, - 24746982, - 24553270, - 24552126, - 24551432 + 24563726, + 24746652, + 24746918, + 24553206, + 24552062, + 24551368 ], "bases": [ { @@ -371429,14 +371429,14 @@ }, { "type_name": "google::protobuf::ZeroCopyCodedInputStream", - "vtable_address": 31930024, + "vtable_address": 31929960, "methods": [ - 24332322, - 24332324, - 24332516, - 24332304, - 24332506, - 24332318 + 24332258, + 24332260, + 24332452, + 24332240, + 24332442, + 24332254 ], "bases": [ { @@ -371458,32 +371458,32 @@ }, { "type_name": "google::protobuf::internal::DynamicMapField", - "vtable_address": 31937528, - "methods": [ - 24725750, - 24729376, - 24725678, - 24725798, - 24729872, - 24739456, - 24729888, - 24727598, - 24729744, - 24729866, - 24724024, - 24725572, - 24725972, - 24726654, - 24728132, - 24729934, - 24729926, - 24732318, - 24742360, - 24724604, - 24724620, - 24724194, - 24725360, - 24725554 + "vtable_address": 31937464, + "methods": [ + 24725686, + 24729312, + 24725614, + 24725734, + 24729808, + 24739392, + 24729824, + 24727534, + 24729680, + 24729802, + 24723960, + 24725508, + 24725908, + 24726590, + 24728068, + 24729870, + 24729862, + 24732254, + 24742296, + 24724540, + 24724556, + 24724130, + 24725296, + 24725490 ], "bases": [ { @@ -371516,21 +371516,21 @@ }, { "type_name": "google::protobuf::internal::ImplicitWeakMessage", - "vtable_address": 31928400, - "methods": [ - 24310706, - 24310774, - 24310672, - 24311046, - 24310578, - 24310534, - 24326574, - 24310652, - 24310538, - 24310558, - 24310500, + "vtable_address": 31928336, + "methods": [ + 24310642, + 24310710, + 24310608, + 24310982, + 24310514, + 24310470, + 24326510, + 24310588, + 24310474, + 24310494, + 24310436, 9474464, - 24310592 + 24310528 ], "bases": [ { @@ -371552,7 +371552,7 @@ }, { "type_name": "google::protobuf::internal::InternalMetadata::ContainerBase", - "vtable_address": 30787240, + "vtable_address": 30787176, "methods": [], "bases": [], "model": { @@ -371563,29 +371563,29 @@ }, { "type_name": "google::protobuf::internal::MapFieldAccessor", - "vtable_address": 31938296, - "methods": [ - 24752802, - 24752820, - 24754958, - 24755334, - 24755246, - 24756050, - 24755506, - 24753954, - 24755550, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24751532, - 24752768, - 24754248, - 24754264, - 24751534 + "vtable_address": 31938232, + "methods": [ + 24752738, + 24752756, + 24754894, + 24755270, + 24755182, + 24755986, + 24755442, + 24753890, + 24755486, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, + 24751468, + 24752704, + 24754184, + 24754200, + 24751470 ], "bases": [ { @@ -371618,7 +371618,7 @@ }, { "type_name": "google::protobuf::internal::MapFieldBase", - "vtable_address": 31937360, + "vtable_address": 31937296, "methods": [], "bases": [], "model": { @@ -371629,26 +371629,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 31939976, - "methods": [ - 24751554, - 24751562, - 24752132, - 24751566, - 24752180, - 24752230, - 24754156, - 24753790, - 24753650, - 24751486, + "vtable_address": 31939912, + "methods": [ 24751490, + 24751498, + 24752068, 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24751574, - 24751578 + 24752116, + 24752166, + 24754092, + 24753726, + 24753586, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, + 24751510, + 24751514 ], "bases": [ { @@ -371692,26 +371692,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 31939816, - "methods": [ - 24751582, - 24751590, - 24752274, - 24751594, - 24752322, - 24751602, - 24754164, - 24753638, - 24753498, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24751648, - 24751654 + "vtable_address": 31939752, + "methods": [ + 24751518, + 24751526, + 24752210, + 24751530, + 24752258, + 24751538, + 24754100, + 24753574, + 24753434, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, + 24751584, + 24751590 ], "bases": [ { @@ -371755,26 +371755,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 31939656, + "vtable_address": 31939592, "methods": [ - 24751658, - 24751666, - 24752374, - 24751670, - 24752422, - 24751678, - 24754172, - 24753486, - 24753346, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24751724, - 24751730 + 24751594, + 24751602, + 24752310, + 24751606, + 24752358, + 24751614, + 24754108, + 24753422, + 24753282, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, + 24751660, + 24751666 ], "bases": [ { @@ -371818,26 +371818,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 31939016, + "vtable_address": 31938952, "methods": [ - 24751950, - 24751958, - 24751962, - 24752010, - 24752018, - 24752068, - 24754204, - 24753942, - 24753802, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24752112, - 24752116 + 24751886, + 24751894, + 24751898, + 24751946, + 24751954, + 24752004, + 24754140, + 24753878, + 24753738, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, + 24752048, + 24752052 ], "bases": [ { @@ -371881,26 +371881,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 31939336, + "vtable_address": 31939272, "methods": [ + 24751742, + 24751750, + 24752508, + 24751754, + 24752556, + 24751762, + 24754124, + 24753118, + 24752978, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, 24751806, - 24751814, - 24752572, - 24751818, - 24752620, - 24751826, - 24754188, - 24753182, - 24753042, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24751870, - 24751874 + 24751810 ], "bases": [ { @@ -371944,26 +371944,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 31939176, + "vtable_address": 31939112, "methods": [ + 24751814, + 24751822, + 24752606, + 24751826, + 24752654, + 24751834, + 24754132, + 24752966, + 24752826, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, 24751878, - 24751886, - 24752670, - 24751890, - 24752718, - 24751898, - 24754196, - 24753030, - 24752890, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24751942, - 24751946 + 24751882 ], "bases": [ { @@ -372007,26 +372007,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 31939496, + "vtable_address": 31939432, "methods": [ + 24751670, + 24751678, + 24752410, + 24751682, + 24752458, + 24751690, + 24754116, + 24753270, + 24753130, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, 24751734, - 24751742, - 24752474, - 24751746, - 24752522, - 24751754, - 24754180, - 24753334, - 24753194, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24751798, - 24751802 + 24751738 ], "bases": [ { @@ -372070,7 +372070,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldWrapper", - "vtable_address": 31938280, + "vtable_address": 31938216, "methods": [], "bases": [ { @@ -372103,7 +372103,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 31928312, + "vtable_address": 31928248, "methods": [], "bases": [], "model": { @@ -372114,7 +372114,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 31928352, + "vtable_address": 31928288, "methods": [], "bases": [], "model": { @@ -372125,7 +372125,7 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldBase", - "vtable_address": 31937320, + "vtable_address": 31937256, "methods": [], "bases": [], "model": { @@ -372136,27 +372136,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldMessageAccessor", - "vtable_address": 31938648, - "methods": [ - 24752120, - 24752128, - 24754980, - 24755352, - 24755286, - 24755976, - 24755524, - 24754212, - 24755716, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24754256, - 24754272, - 24751542 + "vtable_address": 31938584, + "methods": [ + 24752056, + 24752064, + 24754916, + 24755288, + 24755222, + 24755912, + 24755460, + 24754148, + 24755652, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, + 24754192, + 24754208, + 24751478 ], "bases": [ { @@ -372200,27 +372200,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldStringAccessor", - "vtable_address": 31938480, - "methods": [ - 24754148, - 24752882, - 24752834, - 24754140, - 24754092, - 24754024, - 24754016, - 24754004, - 24754362, - 24751486, - 24751490, - 24751502, - 24751506, - 24751512, - 24751520, - 24751522, - 24752774, - 24751546, - 24751538 + "vtable_address": 31938416, + "methods": [ + 24754084, + 24752818, + 24752770, + 24754076, + 24754028, + 24753960, + 24753952, + 24753940, + 24754298, + 24751422, + 24751426, + 24751438, + 24751442, + 24751448, + 24751456, + 24751458, + 24752710, + 24751482, + 24751474 ], "bases": [ { @@ -372264,7 +372264,7 @@ }, { "type_name": "google::protobuf::internal::ZeroFieldsBase", - "vtable_address": 31936968, + "vtable_address": 31936904, "methods": [], "bases": [ { @@ -372297,14 +372297,14 @@ }, { "type_name": "google::protobuf::io::ArrayInputStream", - "vtable_address": 31929456, + "vtable_address": 31929392, "methods": [ - 24326438, - 24326440, - 24322320, - 24322748, - 24323076, - 24322376 + 24326374, + 24326376, + 24322256, + 24322684, + 24323012, + 24322312 ], "bases": [ { @@ -372326,15 +372326,15 @@ }, { "type_name": "google::protobuf::io::ArrayOutputStream", - "vtable_address": 31929520, + "vtable_address": 31929456, "methods": [ - 24326436, - 24326452, - 24322382, - 24323242, - 24322438, - 24319548, - 24319648 + 24326372, + 24326388, + 24322318, + 24323178, + 24322374, + 24319484, + 24319584 ], "bases": [ { @@ -372356,14 +372356,14 @@ }, { "type_name": "google::protobuf::io::ConcatenatingInputStream", - "vtable_address": 31929232, + "vtable_address": 31929168, "methods": [ - 24322180, - 24322182, - 24319696, - 24320780, - 24319784, - 24320902 + 24322116, + 24322118, + 24319632, + 24320716, + 24319720, + 24320838 ], "bases": [ { @@ -372385,14 +372385,14 @@ }, { "type_name": "google::protobuf::io::CopyingInputStreamAdaptor", - "vtable_address": 31929664, + "vtable_address": 31929600, "methods": [ - 24325116, - 24325162, - 24326288, - 24324178, - 24324562, - 24322574 + 24325052, + 24325098, + 24326224, + 24324114, + 24324498, + 24322510 ], "bases": [ { @@ -372414,15 +372414,15 @@ }, { "type_name": "google::protobuf::io::CopyingOutputStreamAdaptor", - "vtable_address": 31929728, + "vtable_address": 31929664, "methods": [ - 24325424, - 24325474, - 24326178, - 24325498, - 24322586, - 24325850, - 24322176 + 24325360, + 24325410, + 24326114, + 24325434, + 24322522, + 24325786, + 24322112 ], "bases": [ { @@ -372444,7 +372444,7 @@ }, { "type_name": "google::protobuf::io::ErrorCollector", - "vtable_address": 31930224, + "vtable_address": 31930160, "methods": [], "bases": [], "model": { @@ -372455,14 +372455,14 @@ }, { "type_name": "google::protobuf::io::FileInputStream", - "vtable_address": 31928784, + "vtable_address": 31928720, "methods": [ - 24322266, - 24322300, - 24322046, - 24322066, - 24322086, - 24322106 + 24322202, + 24322236, + 24321982, + 24322002, + 24322022, + 24322042 ], "bases": [ { @@ -372484,12 +372484,12 @@ }, { "type_name": "google::protobuf::io::FileInputStream::CopyingFileInputStream", - "vtable_address": 31928848, + "vtable_address": 31928784, "methods": [ - 24321184, - 24321392, - 24320056, - 24320242 + 24321120, + 24321328, + 24319992, + 24320178 ], "bases": [ { @@ -372511,15 +372511,15 @@ }, { "type_name": "google::protobuf::io::FileOutputStream", - "vtable_address": 31928896, + "vtable_address": 31928832, "methods": [ - 24321830, - 24321868, - 24326178, - 24325498, - 24322586, - 24325850, - 24322176 + 24321766, + 24321804, + 24326114, + 24325434, + 24322522, + 24325786, + 24322112 ], "bases": [ { @@ -372552,11 +372552,11 @@ }, { "type_name": "google::protobuf::io::FileOutputStream::CopyingFileOutputStream", - "vtable_address": 31928968, + "vtable_address": 31928904, "methods": [ - 24321700, - 24321886, - 24320426 + 24321636, + 24321822, + 24320362 ], "bases": [ { @@ -372578,14 +372578,14 @@ }, { "type_name": "google::protobuf::io::IstreamInputStream", - "vtable_address": 31929008, + "vtable_address": 31928944, "methods": [ - 24322228, - 24322248, - 24322056, - 24322076, - 24322096, - 24322116 + 24322164, + 24322184, + 24321992, + 24322012, + 24322032, + 24322052 ], "bases": [ { @@ -372607,12 +372607,12 @@ }, { "type_name": "google::protobuf::io::IstreamInputStream::CopyingIstreamInputStream", - "vtable_address": 31929072, + "vtable_address": 31929008, "methods": [ - 24319692, - 24319772, - 24320654, - 24322444 + 24319628, + 24319708, + 24320590, + 24322380 ], "bases": [ { @@ -372634,14 +372634,14 @@ }, { "type_name": "google::protobuf::io::LimitingInputStream", - "vtable_address": 31929800, + "vtable_address": 31929736, "methods": [ - 24322596, - 24324544, - 24324784, - 24322628, - 24322678, - 24324748 + 24322532, + 24324480, + 24324720, + 24322564, + 24322614, + 24324684 ], "bases": [ { @@ -372663,15 +372663,15 @@ }, { "type_name": "google::protobuf::io::OstreamOutputStream", - "vtable_address": 31929120, + "vtable_address": 31929056, "methods": [ - 24322126, - 24322158, - 24320712, - 24320722, - 24320732, - 24319548, - 24319648 + 24322062, + 24322094, + 24320648, + 24320658, + 24320668, + 24319484, + 24319584 ], "bases": [ { @@ -372693,11 +372693,11 @@ }, { "type_name": "google::protobuf::io::OstreamOutputStream::CopyingOstreamOutputStream", - "vtable_address": 31929192, + "vtable_address": 31929128, "methods": [ - 24319694, - 24319778, - 24320742 + 24319630, + 24319714, + 24320678 ], "bases": [ { @@ -372719,15 +372719,15 @@ }, { "type_name": "google::protobuf::io::StringOutputStream", - "vtable_address": 31929592, + "vtable_address": 31929528, "methods": [ - 24326434, - 24326446, - 24323938, - 24323614, - 24323480, - 24319548, - 24319648 + 24326370, + 24326382, + 24323874, + 24323550, + 24323416, + 24319484, + 24319584 ], "bases": [ { @@ -372749,7 +372749,7 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 31928768, + "vtable_address": 31928704, "methods": [], "bases": [], "model": { @@ -372760,7 +372760,7 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 31929440, + "vtable_address": 31929376, "methods": [], "bases": [], "model": { @@ -372771,7 +372771,7 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 31929888, + "vtable_address": 31929824, "methods": [], "bases": [], "model": { @@ -372782,7 +372782,7 @@ }, { "type_name": "locksound_t", - "vtable_address": 30578416, + "vtable_address": 30578352, "methods": [ 13392432 ], @@ -372795,7 +372795,7 @@ }, { "type_name": "locksound_t", - "vtable_address": 30682952, + "vtable_address": 30682888, "methods": [], "bases": [], "model": { @@ -372806,18 +372806,18 @@ }, { "type_name": "m_nDestructionDeathBehavior == eDoNotKill", - "vtable_address": 30656688, + "vtable_address": 30656624, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8779105 + "offset_to_top": 8779116 } } }, { "type_name": "minusone", - "vtable_address": 31318800, + "vtable_address": 31318736, "methods": [], "bases": [], "model": { @@ -372828,7 +372828,7 @@ }, { "type_name": "minusone", - "vtable_address": 31318864, + "vtable_address": 31318800, "methods": [], "bases": [], "model": { @@ -372839,16 +372839,16 @@ }, { "type_name": "rcContext", - "vtable_address": 32063400, + "vtable_address": 32063336, "methods": [ - 28507008, - 28507104, - 28507024, - 28507360, + 28506944, 28507040, - 28507056, - 28507072, - 28507088 + 28506960, + 28507296, + 28506976, + 28506992, + 28507008, + 28507024 ], "bases": [], "model": { @@ -372859,13 +372859,13 @@ }, { "type_name": "shard_model_desc_t", - "vtable_address": 31546040, + "vtable_address": 31545976, "methods": [ 12335040, - 20616768, + 20616640, 12334480, - 20616784, - 20616928 + 20616656, + 20616800 ], "bases": [], "model": { @@ -372876,12 +372876,12 @@ }, { "type_name": "sky3dparams_t", - "vtable_address": 31428808, + "vtable_address": 31428744, "methods": [ 12335152, - 19827904, - 19827920, - 19827936 + 19827776, + 19827792, + 19827808 ], "bases": [], "model": { @@ -372892,12 +372892,12 @@ }, { "type_name": "sky3dparams_t::NetworkVar_fog", - "vtable_address": 31428760, + "vtable_address": 31428696, "methods": [ 12101744, - 19828000, + 19827872, 12096416, - 19827952 + 19827824 ], "bases": [ { @@ -372919,7 +372919,7 @@ }, { "type_name": "sndopvarlatchdata_t", - "vtable_address": 30547768, + "vtable_address": 30547704, "methods": [ 12335168, 13382736, @@ -372935,36 +372935,36 @@ }, { "type_name": "std::_Sp_counted_deleter, std::allocator, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 32062664, - "methods": [ - 28277456, - 28277696, - 28277472, - 28277712, + "vtable_address": 32062600, + "methods": [ + 28277392, + 28277632, + 28277408, + 28277648, + 28279744, + 28279856, 28279808, - 28279920, - 28279872, - 28277824, - 28279968, - 28329280, - 28278928, - 28279072, - 28280736, - 28330848, - 28330656, - 28279216, - 28278768, - 28280592, - 28280448, - 28330448, - 28330256, - 28330048, - 28280304, - 28329856, - 28280160, - 28329664, - 28329472, - 28280016 + 28277760, + 28279904, + 28329216, + 28278864, + 28279008, + 28280672, + 28330784, + 28330592, + 28279152, + 28278704, + 28280528, + 28280384, + 28330384, + 28330192, + 28329984, + 28280240, + 28329792, + 28280096, + 28329600, + 28329408, + 28279952 ], "bases": [], "model": { @@ -372975,13 +372975,13 @@ }, { "type_name": "std::_Sp_counted_ptr >*, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 32063192, + "vtable_address": 32063128, "methods": [ - 28331344, - 28331456, - 28335952, - 28331472, - 28331392 + 28331280, + 28331392, + 28335888, + 28331408, + 28331328 ], "bases": [], "model": { @@ -372992,20 +372992,20 @@ }, { "type_name": "std::_Sp_counted_ptr >*, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 32063248, + "vtable_address": 32063184, "methods": [ - 28331328, - 28331424, - 28333344, - 28331440, + 28331264, + 28331360, + 28333280, 28331376, - 28333008, - 28332672, - 28332528, - 28333296, - 28331520, - 28331280, - 28332832 + 28331312, + 28332944, + 28332608, + 28332464, + 28333232, + 28331456, + 28331216, + 28332768 ], "bases": [], "model": { @@ -373016,13 +373016,13 @@ }, { "type_name": "std::_Sp_counted_ptr", - "vtable_address": 32063136, + "vtable_address": 32063072, "methods": [ - 28331360, - 28331488, - 28334112, - 28331504, - 28331408 + 28331296, + 28331424, + 28334048, + 28331440, + 28331344 ], "bases": [], "model": { @@ -373033,13 +373033,13 @@ }, { "type_name": "std::_Sp_counted_ptr_inplace, (__gnu_cxx::_Lock_policy)2>", - "vtable_address": 31357960, + "vtable_address": 31357896, "methods": [ - 18395552, - 18397008, - 18419440, - 18397024, - 18408480 + 18395424, + 18396880, + 18419312, + 18396896, + 18408352 ], "bases": [], "model": { @@ -373050,7 +373050,7 @@ }, { "type_name": "tdcxx", - "vtable_address": 33385896, + "vtable_address": 33385832, "methods": [], "bases": [], "model": { @@ -373061,18 +373061,18 @@ }, { "type_name": "tools/images/pulse_editor/requirements.png", - "vtable_address": 32013904, + "vtable_address": 32013840, "methods": [], "bases": [], "model": { "Itanium": { - "offset_to_top": 8635553 + "offset_to_top": 8635564 } } }, { "type_name": "void (SoundOpvarManagerSettableData_t const&, CSoundOpvarSetPointStackCollection*)", - "vtable_address": 31750816, + "vtable_address": 31750752, "methods": [], "bases": [], "model": { diff --git a/dump/windows/networkvars.txt b/dump/windows/networkvars.txt index ec090d0..7ca5efa 100644 --- a/dump/windows/networkvars.txt +++ b/dump/windows/networkvars.txt @@ -1,5 +1,5 @@ CAttributeContainer::NetworkVar_m_Item [30] - StateChanged: [ 27 -> 180B350A0 ] + StateChanged: [ 27 -> 180B350B0 ] CBaseAnimGraph::NetworkVar_m_RagdollPose [4] StateChanged: [ 1 -> 18079CA00 ] CBaseAnimGraphController::NetworkVar_m_animGraphNetworkedVars [63] @@ -41,11 +41,11 @@ CChicken::NetworkVar_m_AttributeManager [9] CCollisionProperty::NetworkVar_m_collisionAttribute [4] StateChanged: [ 1 -> 18092A8F0 ] CEconEntity::NetworkVar_m_AttributeManager [9] - StateChanged: [ 2 -> 180B35050 ] + StateChanged: [ 2 -> 180B35060 ] CEconItemView::NetworkVar_m_AttributeList [4] - StateChanged: [ 1 -> 180B51760 ] + StateChanged: [ 1 -> 180B51770 ] CEconItemView::NetworkVar_m_NetworkedDynamicAttributes [4] - StateChanged: [ 1 -> 180B517B0 ] + StateChanged: [ 1 -> 180B517C0 ] CEnvWind::NetworkVar_m_EnvWindShared [4] StateChanged: [ 1 -> 180929720 ] CEnvWindController::NetworkVar_m_EnvWindShared [4] diff --git a/dump/windows/strings/client.txt b/dump/windows/strings/client.txt index 77e8bc0..b240a15 100644 --- a/dump/windows/strings/client.txt +++ b/dump/windows/strings/client.txt @@ -215,14 +215,13 @@ (+%d more due to usercommand delivery) (08@HP (08@HPX`hpx - (08@HPX`j@ - (08@HPXb ; - (08@HPZ@ - (08@HR ; - (08@J ; - (08@J@ - (0:@ - (0X`hpz ; + (08@HPX`j + (08@HPXb + (08@HPZ + (08@HR + (08@J + (0: + (0X`hpz (???) (DEFAULT) (Dirty Animation) @@ -248,6 +247,7 @@ -retail ... Skipping view model attachment creation. ... } + .@$J .CPlayer_GetNicknameList_Request .CPublishedFile_Publish_Response"2 /> @@ -3695,7 +3695,6 @@ $taser_charge (0x%08X)'??' (1O\,n (3"B -(4 B (5Me (5jP (>aI @@ -4149,7 +4148,7 @@ $taser_charge ,m+= ,name: ,oYR -,sK3htq +,sK3h ,section= ,value: ,}aK @@ -4297,15 +4296,14 @@ $taser_charge -world -|\E -|p. -. (J . +F -. -J -. :J -. BJ -. DJ -. |J +. ,J +. 2J +. 4J +. 6J +. KJ +. OJ .$@b -.$oD .%.-.3.7.9.?.W.[.o.y. .%X&1 .%lu @@ -4320,13 +4318,10 @@ $taser_charge ..CPlayer_GetNewSteamAnnouncementState_Response"_ ..uR5&m ./#{ -.0*J -.0+J -.0-J .00cfg -.0:J -.0CJ -.0|J +.0MJ +.0OJ +.0kJ .4+w .4bb .5.} @@ -9952,12 +9947,11 @@ $taser_charge .?AW4GenericPopupResult_t@@ .?AW4ModifierCode@panorama@@ .?AW4loadout_slot_t@@ -.@(J -.@-J -.@:J -.@BJ -.@FJ -.@|J +.@KJ +.@LJ +.@OJ +.@UJ +.@zJ .AJ[ .AccountActivity .CBaseUserCmdPB @@ -10153,8 +10147,8 @@ $taser_charge .N_v .OperationalStatisticElement"S .OperationalVarValue -.P*J -.P+J +.P1J +.P3J .P6A?AVCTransform@@AEBV0@0@Z .P6AXPEAVCSceneObject@@@Z .P6AXPEBVC_EconItemView@@AEAVCUtlBuffer@@HH_K@Z @@ -10178,14 +10172,10 @@ $taser_charge .PEBVCSteamProfileItems@@ .PEBVC_EconItemView@@ .PEBVILocalizationString@panorama@@ -.PFJ -.PIJ .PLACEHOLDER_VALUE -.PUJ -.P]J +.PMJ .PerFriendPreferences"* .PerFriendPreferences"U -.PhJ .PlayerCommendationInfo .PlayerDecalDigitalSignature .PlayerDecalDigitalSignature": @@ -10484,12 +10474,11 @@ $taser_charge .\ssl\t1_lib.c .\ssl\t1_reneg.c .]R: -.`#J -.`-J +.`1J +.`2J .`BJ -.`CJ -.`FJ -.`UJ +.`KJ +.`xJ .a%| .beta .bmxz @@ -10532,11 +10521,10 @@ $taser_charge .k_EMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate .kv3 .lbN -.p*J -.p+J -.pBJ -.pCJ -.pFJ +.p0J +.p1J +.pKJ +.pMJ .party .pdata .placeholder.proto @@ -10693,7 +10681,6 @@ $taser_charge 0&-[U 0(u[ 0,0,0 -0,LD 0..Q 0.0 1.0 0.0 to 1.0 @@ -10714,9 +10701,8 @@ $taser_charge 02V8[ 05=k 08@HP -08@HR@ -08@J ; -08B@ +08@HR +08@J 08bX 09,h 09|+ @@ -10730,12 +10716,12 @@ $taser_charge 0: default; 1: draw teamid even if hud disabled; -1: force no teamid 0: off, 1: on 0: regular radar; 1: always disabled; 2: disabled in warmup -0:P> 0;Q5[ 0 37>k 37LQ -38vq 3>N;kU 3>fvw 3?New@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@H@Z @@ -11236,21 +11207,15 @@ $taser_charge 3Ej%Tb 3GAME_PARTICLE_MANAGER_EVENT_SET_CONTROL_POINT_MODEL 3GAME_PARTICLE_MANAGER_EVENT_SET_NAMED_VALUE_CONTEXT -3Hvq 3M5cWAK 3Qg^y 3Wk1^ -3Xuq -3Xvq 3dSkyboxFog 3dSkyboxFrustum 3dSkyboxFrustumAux 3dSkyboxSceneWorlds 3dSkyboxWorldAngles 3dSkyboxWorldOffset -3hsq -3huq -3hvq 3icq 3ja~ 3k_EGCItemCustomizationNotification_ActivateFanToken @@ -11262,12 +11227,8 @@ $taser_charge 3t'w> 3w2URu 3wQ] -3xsq -3xuq -3xvq 3|2;#GameUI_Retake_Card_UmpInSmoke,1,1,weapon_ump45,grenade1|2;#GameUI_Retake_Card_FunNGun,1,1,weapon_mp9,grenade2|2;#GameUI_Retake_Card_Sharpshooter,1,1,weapon_ssg08,grenade0|2;#GameUI_Retake_Card_BurstBullpup,1,1,weapon_famas 3|rN> -4 wq 4(Optional) Sorting method to use on returned values. 4)#bH 4)m1 @@ -11276,25 +11237,21 @@ $taser_charge 4.CPlayer_GetMutualFriendsForIncomingInvites_Response"^ 4.j." 40 40 40 196 -40wq 4352 456789:;<= 474E4U4W4c4i4m4 488:1: POS_FLOATLITERAL : ( ( DIGIT )+ '.' ( DIGIT )* ( EXPONENT )? | '.' ( DIGIT )+ ( EXPONENT )? | ( DIGIT )+ EXPONENT ); 4: 4W{( 4Zis -4`wq 4`x/ 4f h 4fff>33 @@ -11305,7 +11262,6 @@ $taser_charge 4k_EMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt 4k_EMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats 4k_EMsgGCCStrike15_v2_RequestRecurringMissionSchedule -4pwq 4tpD 4zj@1;IJ 4|2;#GameUI_Retake_Card_LightEmUp,1,1,rifle1,grenade0|2;#GameUI_Retake_Card_Kobe,1,1,rifle1,grenade2|1;#GameUI_Retake_Card_1g,1,1,rifle1,grenade3|1;#GameUI_Retake_Card_DisappearingAct,1,1,rifle1,grenade1|1;#GameUI_Retake_Card_EyesOnTarget,1,1,weapon_aug @@ -11342,6 +11298,8 @@ $taser_charge 5t?F 5~EW 6 9J +6 dJ +6 wJ 6#6165676;6M6O6S6Y6a6k6m6 6#RDP# 6%vi @@ -11351,32 +11309,35 @@ $taser_charge 6,2K 6-(\ 6-zeZ -600J -60XJ +60J` 6?NumberValue@Value@v8@@QEBA?AV?$Maybe@N@2@V?$Local@VContext@v8@@@2@@Z 6?S.> -6@5J -6@UJ +6@7J +6@@J 6@[' +6@qJ 6E0C3V8\9]} 6GAME_PARTICLE_MANAGER_EVENT_FREEZE_TRANSITION_OVERRIDE 6GAME_PARTICLE_MANAGER_EVENT_SET_CONTROL_POINT_SNAPSHOT 6H,N 6K;L#k;{ 6O|T% -6P.J -6P1J +6PBJ 6Qd= 6Returns the URL of the proper cloud server for a user. 6True if the operation was successful, false otherwise. 6_wEX +6`8J +6`;J +6`SJ +6`kJ 6afD 6bX+ 6c&0|vvX @@ -11384,10 +11345,11 @@ $taser_charge 6l13 6lkc 6myY; -6p/J -6p4J +6p?J +6pTJ 6p]! -6pmJ +6pcJ +6puJ 6qo~ 6r-m_v 6r1ij @@ -11435,18 +11397,18 @@ $taser_charge 80F2< 8192 8285-YOAZ-6049 -83(tq 851Pe 8835-KLXV-0292 8 %s -> 3J -> wJ +> >J +> \J >!-B >"<_ >"I;6 @@ -11776,7 +11737,7 @@ $taser_charge >)[8 >*`r >0 enemies, 0 teammates ->07J +>0xJ >1w. >4|6eXg_e >77: @@ -11784,20 +11745,16 @@ $taser_charge >8;I) >; xs: >= [%s] ->@]J ->@cJ ->@dJ >B=~, >CURVE_TANGENT_LINEAR >Kb| ->P2J ->PrJ +>P=J >Sem >WK6 >[^j >]q&` >`*- ->`6J +>`AJ >cQ6 >d`D$ >fN46R^ @@ -12275,12 +12232,17 @@ $taser_charge @()[]{}=&,:*|;'! @*I| @08@HPX`hpx -@08N$oD +@08N @0pp @2&@ -@6P#J +@60jJ +@6@1J +@6`0J @80^ +@: 5 +@:@F @:e+ +@:p6 @<:nq @>%>b @?SlowGetInternalField@Object@v8@@AEAA?AV?$Local@VData@v8@@@2@H@Z @@ -12293,10 +12255,8 @@ $taser_charge @F(% @HPX @HPX&I -@HPX`hv -@HVPeJ +@HPX`hvpVJ @MfKZ -@NpPJ @Pgl @Q~i @Show debug data when players change their loadout. @@ -12307,11 +12267,9 @@ $taser_charge @^8U)zj @b;zO] @dKb] -@f$oD @fff>fff>fff>fff> @ffffff @h!Aq8 -@ht B @i1V @icon_camera @icon_character @@ -12320,7 +12278,6 @@ $taser_charge @jB+ @keyframes @keyframes '%s' -@n$oD @n2w @workshop @zDSteamUnifiedMessages @@ -12350,6 +12307,7 @@ ApP& A>x8 AA Compromise +AA:PF AAAA- AAAA-%.*s AABBDirection @@ -12710,6 +12668,7 @@ AcknowledgeNewItembyItemID AcknowledgeRentalExpiration Acknowledged_HasInsufficientPagefile Acknowledged_HasLowAvailableVirtualMemory +Acl_debug_client_gamestats Acomposite_material_use_gpu AcquireSRWLockExclusive AcquireSRWLockShared @@ -21026,14 +20985,12 @@ F.$) F/o4 F1}" F2M+ -F3Xtq F6tr F7!z F9q' F6 ^.om5r -^0sJ ^3)2 ^6o} ^W `'~} -`,LD -`2 ; `28)fk -`2P3 +`2PF `3?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@H@Z `47/ -`:0+ -`:@- -`:P+ -`:p, +`603J +`6@2J +`6P4J +`:@5 +`:p4 `:zQF `@ `QE `@"Gg +`@TD `Ch. `D$daM-l `DZG @@ -34597,7 +34549,6 @@ _}eOk `eh vector destructor iterator' `eh vector vbase constructor iterator' `eh vector vbase copy constructor iterator' -`f$oD `fPw. `generic-class-parameter- `generic-method-parameter- @@ -34605,7 +34556,6 @@ _}eOk `gh' `h9T~ `kM= -`l_D `local static destructor helper' `local static guard' `local static thread guard' @@ -34615,7 +34565,6 @@ _}eOk `managed vector copy constructor iterator' `managed vector destructor iterator' `n#%c -`n$oD `non-type-template-parameter `o_je `omni callsig' @@ -34664,7 +34613,6 @@ a;Tg a@XZ aA!` aA0k -aBv$oD aD/x aDSS aE%d0 @@ -36200,6 +36148,7 @@ bytes_sec_p99 bytes_total bytes_total_reliable bytes_total_voice +bytestring bzip2/libbzip2: internal error number %d. c [1>H' c(>\, @@ -36737,7 +36686,6 @@ cl_deathcam_audio_mix_phase2_fade_time cl_deathcampanel_position_dynamic cl_deathnotices_show_numbers cl_debounce_zoom -cl_debug_client_gamestats cl_debug_force_push_to_talk cl_debug_overlay_fullposition cl_debug_round_stat_submission @@ -39811,7 +39759,6 @@ eyj5yR f %d %d %d f!)E f#9i -f$oD f%g} f%wyLmX: f&dy @@ -39823,6 +39770,7 @@ f@-r fA,' fCSunday fP;y +fP\J fP~V fTimeScale fU). @@ -41414,7 +41362,6 @@ hover how fast to run (1 to use player max run speed). how long from when the C4 is armed until it blows hows joint info for this entity -hpz ; hr_H href=" hscript @@ -48744,7 +48691,7 @@ mzP"T n < (int)sizeof(ctx->enc_data) n >= 0 n does not equal p q -n$oD +n mJ n-resize n03>Pu n0?X @@ -48780,6 +48727,7 @@ nNumerator nObjects nObserverMode nPriority != NETWORK_FIELD_CHANGE_DEFAULT_PRIORITY +nPtJ nRetiredAtNodeID nSRecord nSaved @@ -48801,6 +48749,7 @@ nValue n_actions n_reload n`3i +n`sJ nadeCount namc name @@ -49210,7 +49159,6 @@ nova nowatchinfo nowatchslots nowrap -npTJ npc_ability_name npcclass ns-resize @@ -49642,12 +49590,10 @@ owner_soid ownername owns oyster -p ND p is not prime p not prime p!PcA1| p)ou} -p,LD p-6\D p.char_two p.onBasis @@ -49655,9 +49601,10 @@ p.other p.ppBasis p.prime p.tpBasis -p08@H^$oD +p08@H^ +p0WD +p0jp p0p@ -p2 ; p250 p2p_FightingGame_Connection p2p_FightingGame_GameData @@ -49676,10 +49623,10 @@ p4Z3 p5Z3 p618 p:(L -p>$oD p>?Set@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z p@0pqE5tsO?|1 p@HPX`h +p@TD pAShatterDamageCause pCheckpointName pD4t @@ -50370,7 +50317,6 @@ pkey pkeyalg pkix pkparameters2group failure -pl_D pl_PL place_names place_token @@ -50527,7 +50473,6 @@ playtime playtime_2weeks playtime_forever plum -pn$oD point point arithmetic failure point at infinity @@ -55417,10 +55362,10 @@ uzKs@> v %f %f %f v axis v$m% -v$oD v&l( v'A>M6 v)56 +v0YJ v0o/5 v1(0) v1GZ @@ -56607,18 +56552,18 @@ z~") ~7'j ~9ob ~:/3 -~@DJ ~CMoviePlayer ~CPanel2D ~CPanel2D - destroy members ~If D ~P2T +~PLJ ~R65Fu ~X3> ~[I, ~^1W1X;R3_ ~_K& -~`DJ ~jLRG +~pLJ ~w]UG ~yhZ diff --git a/dump/windows/strings/engine2.txt b/dump/windows/strings/engine2.txt index b52c5d9..21dfa1d 100644 --- a/dump/windows/strings/engine2.txt +++ b/dump/windows/strings/engine2.txt @@ -182,14 +182,14 @@ 'L>[ ('" (08@HPX`hpx - (08@HPX`jpp - (08@HPXb@ - (08@HPZpp - (08@HR@ - (08@J@ - (08@Jpp - (0:pp - (0X`hpz@ + (08@HPX`j0r + (08@HPXbp + (08@HPZ0r + (08@HRp + (08@J0r + (08@Jp + (0:0r + (0X`hpzp (IP "%s") (Start: (Texture) @@ -212,7 +212,7 @@ -noscreenshot -product "%s" ... } - .0zE + .`{E 0"r$4& 0: read from NULL 1: write to NULL @@ -1153,60 +1153,61 @@ $tI(knN 'Z3' 'j%-A+ 'k|7O +(!Z\ +(![\ +(!r\ (#GameUI_Disconnect_LoopLevelLoadActivate (#GameUI_Disconnect_RemoteProblem_BadCert (#GameUI_Disconnect_RemoteProblem_Timeout (#Player_DisconnectReason_InputAutomation -(%0\ (%d dupes) (%d) (%d,%d) +(%h\ (%u) -(%u\ (("**, ((6"8(:,<*> -()%\ -()1\ +()#\ +()&\ +()*\ +()s\ (*MARK) must have an argument (*VERB) not recognized (*d/% -(-R\ -(-\\ -(-~\ (0`hpx -(1G\ -(1b\ +(1>\ (1x* -(1{\ (27>?<:20./-( (3?0 (4%I! -(5 \ -(52\ -(5J\ -(5a\ +(5"\ +(5K\ +(5M\ (64-bit process) (8GXgw -(9Y\ -(=(\ -(=e\ +(9H\ +(9]\ +(=.\ +(=\\ +(=p\ (>aI (?3s'? (?R or (?[+-]digits must be followed by ) -(A'\ -(A]\ (Addresses differ: existing '%s' @ '%p' != requested '%s' @ '%p') (Direct Routing) -(EU\ +(E@\ (Existing entry.) (Expecting %s) (Expecting EOF) -(I#\ (I%T *gC -*p1% -*pY$ *zvC *~ m + =( @@ -1363,7 +1363,6 @@ $tI(knN +shift +w?FFv? , "%s" -, 0% , Position , at , at offset %d @@ -1385,6 +1384,7 @@ $tI(knN ,=@" ,?%[ ,@Zs +,@u. ,EZr ,HR>O ,NETWORK_DISCONNECT_REJECT_CONNECT_FROM_LOBBY @@ -1394,6 +1394,7 @@ $tI(knN ,NETWORK_DISCONNECT_REMOTE_TIMEOUT_CONNECTING ,NETWORK_DISCONNECT_STEAM_DENY_BAD_ANTI_CHEAT ,NETWORK_DISCONNECT_STEAM_LOGGED_IN_ELSEWHERE +,P1% ,Y@d ,d3c& ,j.b0^2`4^6`8^:f< @@ -1472,7 +1473,8 @@ $tI(knN -vulkan -worldwide -~?? -. }E +. qE +. ~E .!E> .(!> .(_! @@ -1482,7 +1484,9 @@ $tI(knN ..\content ..om? .00cfg -.0}E +.0pE +.0qE +.0wE .7=-l .9GXdx .>PJ;I:qE> @@ -2788,6 +2792,7 @@ $tI(knN .?AVsystem_error@std@@ .?AVtask_canceled@Concurrency@@ .?AVtype_info@@ +.@pE .BNW^h .C2S_CONNECT_SameProcessCheck .C2S_CONNECT_SameProcessCheck"q @@ -2857,12 +2862,12 @@ $tI(knN .PLACEHOLDER_VALUE .PrefetchType"h .ProtoFlattenedSerializer_t -.PwE +.P~E .RequestPause_t .SignonState_t .TBMD .VoiceDataFormat_t: -.`{E +.`~E .arc .arj .bak @@ -2898,7 +2903,6 @@ $tI(knN .lzh .pdata .placeholder.proto -.pqE .rdata .rdata$00 .rdata$T @@ -2981,9 +2985,10 @@ $tI(knN 0123456789abcdefghijklmnopqrstuvwxyz 03X -0L'A 0NETWORK_DISCONNECT_KICKED_VACNETABNORMALBEHAVIOR 0NETWORK_DISCONNECT_REJECT_SERVERCDKEYAUTHINVALID 0T.Q 0X8b?~ 0iN>/ -0l@A 0x%x, +0|(A 0|t?L 0|t?uj 0}~NU @@ -3018,8 +3022,8 @@ $tI(knN 127.0.0.1 16777215"R 16777215B$ +16:05:04 18!P+* -19:05:44 1:1: Tokens : ( T__39 | T__40 | T__41 | T__42 | T__43 | T__44 | T__45 | T__46 | T__47 | T__48 | T__49 | T__50 | T__51 | TOK_COLON | OPEN_BRACE | CLOSE_BRACE | OPEN_PAREN | CLOSE_PAREN | OPEN_BRACKET | CLOSE_BRACKET | SEMICOLON | OP_EQUAL | COMMA | DOUBLE_AND | NEGATIVE_TOK | DOUBLE_OR | LITERAL_TRUE | LITERAL_FALSE | POS_INTLITERAL | POS_FLOATLITERAL | ID | DOUBLE_QUOTED_STRING | SINGLE_QUOTED_STRING | SINGLE_LINE_COMMENT | ML_COMMENT | WS | UNRECOGNIZED ); 1>O\kw 1?Uo @@ -3072,6 +3076,7 @@ $tI(knN 2/.google.protobuf.DescriptorProto.ExtensionRange 2/.google.protobuf.MethodOptions.IdempotencyLevel: 200000 +203% 21.CSVCMsg_PacketEntities.outofpvs_entity_updates_t 22.CSVCMsg_PacketEntities.non_transmitted_entities_t 23#" @@ -3079,14 +3084,12 @@ $tI(knN 25.CSource2Metrics_MatchPerfSummary_Notification.Client 25:Q 26.google.protobuf.EnumDescriptorProto.EnumReservedRange -2@f' 2CZu 2Hax 2NK? 2Ogx -2PG$ 2i0/ -2p1% +2pg' 2|9+ 3 X< 3$EE @@ -3130,15 +3133,16 @@ $tI(knN 5c;3E 5y?4 5{ ~ +6 }E +60{E 64-bit 6>J` 6?k 6?t -6@yE 6D)! 6GQ^h~ 6KT3c7 6NK> -6p|E +6pzE 6s?fBbEcJYG[I[NYVP\B]@f;g @@ -3159,17 +3163,17 @@ $tI(knN 8#GameUI_Disconnect_LocalProblem_HostedServerPrimaryRelay 8%`~ 8'>0 -8-6\ 80?" 84f>$ 87.ui 87g} 8>0RF> 8@HP: -8@Jpp +8@J0r 8A3b -8Bpp +8B0r 8Csinf +8MF\ 8NETWORK_DISCONNECT_LOCALPROBLEM_HOSTEDSERVERPRIMARYRELAY 8Smt 8W?i @@ -3178,6 +3182,7 @@ $tI(knN 8ke?; 8t R 8}WW` +9"d\ 9*ubC' 9=[> 9=aA\E @@ -3202,6 +3207,8 @@ $tI(knN :&G/ :'Y"! :-+a +:03% +:04, :1X: ::ExecGameTypeCfg :>)* @@ -3210,8 +3217,6 @@ $tI(knN :>gM|? :>t6k' :?(\O? -:@1% -:@f' :B&? :F :H?'mK? @@ -3219,8 +3224,8 @@ $tI(knN :^V= :^V=/ :i/? -:p1% -:pY$ +:p2% +:pg' ;%5F ;%I* ;*xh @@ -3317,7 +3322,6 @@ $tI(knN >`#I> >`#I>`#I >`*- ->`rE >a/A >cQ6 >fff?fff?fff?fff?invalid_hitbox @@ -3711,9 +3715,8 @@ $tI(knN @08@HPX`hpx @08N @2&@ -@2pp +@20r @>%>b -@>ptE @GetProfile_ultrafast @HPX @HPX&I @@ -3721,7 +3724,8 @@ $tI(knN @Y>)F @^8U)zj @b;zO] -@htP +@hCY +@htp @i-kuX @l?O#m? A command with the specified name already exists. Cannot create an alias with the same name. @@ -3737,7 +3741,6 @@ A2r> A7/s A>l$/ A>pP& -AA:p1% ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_ @@ -3913,7 +3916,6 @@ Av?? Avestan Avg Keyframe: %s Bytes, %.3f ms (%.1f max, %.1f recent max) A{v8 -B e' B"D%'R B2Bk B5@S @@ -3935,7 +3937,7 @@ BGRA8888_LINEAR BGRX8888 BGRX8888_LINEAR BKbhTb~XBK!; -BP0% +BPf' BROADCAST BSR_ANYCRLF) BSR_UNICODE) @@ -4116,9 +4118,9 @@ C:\buildworker\csgo_rel_win64\build\src\engine2\looptypeclientserver.cpp C:\buildworker\csgo_rel_win64\build\src\engine2\networkclientservice.cpp C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp:2674 -C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp:3650 -C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp:4300 -C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp:4591 +C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp:3655 +C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp:4305 +C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclient.cpp:4596 C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclientbase.cpp C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclientbase.cpp:2802 C:\buildworker\csgo_rel_win64\build\src\engine2\networkgameclientbase.cpp:4314 @@ -4183,6 +4185,7 @@ CBidirMsg_PredictionEvent CBidirMsg_RebroadcastGameEvent CBidirMsg_RebroadcastSource CBroadcastPlayer +CBroadcastPlayer got DEM_Stop, server tick %d CBroadcastPlayer::SkipToTick( %d, %u ) CBugService CCIR601 sampling not implemented yet @@ -4527,8 +4530,6 @@ CL: Connection to '%s' failed CL: Connection to server '%s' timed out, disconnecting CL: Deferring SIGNONSTATE_SPAWN (spawn count %d) message CL: Disconnected - Client delta ticks out of order! -CL: Disconnecting from server: %s -CL: Disconnecting from server: changelevel CL: FCVAR_CHEAT and FCVAR_REPLICATED cvars reverted to defaults (remote connection). CL: Finished logging most recent client ticks. CL: Forcing %s to blocking load during demo playback due to having incomplete/updateable manifest @@ -5161,7 +5162,7 @@ Connected [%s] [last packet %.3f sec ago] Connecting to %s Connection State: Connected=%s, Ever=%s Connection closed: %s. -Connection lost: %s. +Connection lost: %s Connection rejected by game Connection timeout detected at source engine layer after %i retries. Connection to Steam servers lost. @@ -5409,7 +5410,9 @@ Disconnect: %s DisconnectAllClients Disconnected Disconnected from server: %s -Disconnection during connection phase. Sign-on state: %d (%s). Disconnect reason: %d (%s). +Disconnecting from server: %s +Disconnecting from server: changelevel +Disconnection during connection phase. Sign-on state: %d (%s). Disconnect reason: %s. Dispatch clients to relay proxies: 0=never, 1=if appropriate, 2=always DispatchEvent( %s ) took %f msecs Dispatching EventAppShutdown_t { @@ -6945,6 +6948,7 @@ Non-repeated field " None Not Connected Not a JPEG file: starts with 0x%02x 0x%02x +Not a SourceTV proxy Not creating socket NS_HLTV due to -nohltv command line option. Not implemented yet Not logged into Steam, Steam auth will fail @@ -6954,7 +6958,7 @@ Not supported. Note that enum values use C++ scoping rules, meaning that enum values are siblings of their type, not children of it. Therefore, " Note: should use "addip" instead of "banip". Nov 4 2025 -Nov 11 2025 +Nov 17 2025 November Now recording to "%s", immediate mode, recorded length so far is %s. Now recording to "%s", recorded length so far is %s. @@ -7090,12 +7094,12 @@ Overrides the max players reported to prospective clients Overriding minidump handler with Engine2MinidumpFunction P!&# P#7)^ -P08@J@ -P08JP +P08@Jp +P08J P08N -P2pp -P60tE +P20r P6_) +P6`uE P:S;A P>q_Y~ P?2+ @@ -7108,7 +7112,6 @@ PFT_SOUND PHrk PInstruction_t<41>::Run PInstruction_t<42>::Run -PL'A PLACEHOLDER_VALUE PLATFORM PLAYBACK: At end of data @@ -7224,8 +7227,7 @@ Phoenician Physics interface checksum is 0x%08X, expected 0x%08X. One of the binaries is out of date, please rebuild %s. PhysicsBuilderMgr001 Ping -Pjpp -Pl@A +Pj0r Plain assert text (has prefix) Plain general text (no prefix) Plat_AlertUser @@ -7437,6 +7439,7 @@ ProcessClassInfo: can't allocate %d C_ServerClassInfos. ProcessClassInfo: invalid class index (%d). ProcessPacketEntitiesWorkItem_Decode: DecodeClassBaseline(%d) failed for class %s. ProcessReadPacketEntitiesWorkItems +ProcessServerInfo failed ProcessServerInfo( %s : %s : #%d ) - client requesting connection abort! ProcessServerInfo: Failed to initialize the game client! ProcessServerInfo: Failed to parse the game session manifest! @@ -7471,6 +7474,7 @@ PulseSymbol_t PulseValueType_t Puts the server into extremely low CPU usage mode when no clients connected P{}b= +P|(A P}V<4 Q #< Q%llx, @@ -7626,6 +7630,7 @@ Rejecting connection request from %s (reservation cookie 0x%llx), server is rese Rejecting reservation because sv_shutdown was requested. Relay "%s", connect to %s (GSID:%s) Relay "%s", not connected. +Relay connecting to a different upstream server Relay proxies retry connection after network timeout Relay server is hibernating Relay server waking up from hibernation @@ -9202,7 +9207,7 @@ X?/QY?s X?OsX? X?wm XSzi -X`hrpp +X`hr0r Xn1G Xr?9 XsBI @@ -9227,13 +9232,11 @@ Z?SHX? Z@&LHA' Z@1~+ ZOCg -ZP0% ZPKE?81(" ZW][Rbmxv Z\>z8 Zmbw Zod(^? -Zp1% Zpm"U Zq",9 [ %d ]%n @@ -9292,6 +9295,7 @@ Zq",9 [test] [unknown] [~J! +\ _' \ at end of pattern \""" \$gm? @@ -9418,28 +9422,27 @@ _root_keyname _spawngroup_logging/log_%s_group_%s.txt _temp_mapcycle.txt `#I> -`%H\ `+!]? `-uRQg -`2p1% -`2pp +`20r `3Q"X -`:@X' -`:pp +`6 pE +`:0r +`:pY' `>r1 `?& `?'N `?8H `?NH]?E `?m'_?&~]?( +`EX\ `F(> -`L'A `RTTI `anonymous namespace' -`bpp +`b0r `copy constructor closure' +`d0r `default constructor closure' -`dpp `dynamic atexit destructor for ' `dynamic initializer for ' `eh vector constructor iterator' @@ -9447,9 +9450,8 @@ _temp_mapcycle.txt `eh vector destructor iterator' `eh vector vbase constructor iterator' `eh vector vbase copy constructor iterator' -`htP +`htp `hyz -`l@A `local static guard' `local static thread guard' `local vftable constructor closure' @@ -9464,7 +9466,6 @@ _temp_mapcycle.txt `string' `typeof' `udt returning' -`ur\ `vbase destructor' `vbtable' `vcall' @@ -9476,8 +9477,7 @@ _temp_mapcycle.txt `vector vbase copy constructor iterator' `vftable' `virtual displacement map' -`}7\ -`}s\ +`|(A a numbered reference must not be zero a!M( a&M-=Z]1my h?oT hG?) -hIf\ hJ4% hPU3 hTarget +hYv\ has_pvs_vis_bits_deprecated hb:? header crc mismatch @@ -10565,7 +10566,7 @@ hostname hostname : %s hostname_in_client_status hostport -hpz@ +hpzp hscript hscript_lightbinding http Send %.3f ms ave, %.3f ms max @@ -11359,17 +11360,17 @@ owner dead oz>!km> p08@H^ p0p@ +p20r p2p_listpeers p2p_ping "%s" -p2pp p4edit +p6@vE p?ff p@HPX`h pClass pClass->m_ClassID(%i) >= %i pClient pCm) -pL'A pMessage pServerClass pYa(bu @@ -11401,7 +11402,7 @@ pause pause_group pause_type paused -pbpp +pb0r pc64 peer pending @@ -11424,13 +11425,11 @@ picks_bans ping ping_avg_ms pitch -pl@A playback_frames playback_ticks playback_time playcast playcast: %d dem_consolecmd [%s] -playcast: %d dem_stop playcast: Demo message, tick %i, %i bytes playcast: Packet tick %d size %u playdemo @@ -11520,6 +11519,7 @@ purecall push_var_values py_generic_services pz&" +p|(A p}?w qIU< qM1H @@ -11539,7 +11539,6 @@ r?dar? rA?7 rEy5 rFg7 -rPG$ r_add_views_in_pre_output r_always_render_all_windows r_aspectratio @@ -12654,7 +12653,6 @@ z(#d z?Mbz?H5z? z?_i zFarCull -zP0% zPrePassNormals zY;>u:m z_AMC diff --git a/dump/windows/strings/materialsystem2.txt b/dump/windows/strings/materialsystem2.txt index 06c768a..1f74f11 100644 --- a/dump/windows/strings/materialsystem2.txt +++ b/dump/windows/strings/materialsystem2.txt @@ -2465,7 +2465,7 @@ texturecubeindex tier0.dll time timed out -tk`k +tk`l too many files open too many files open in system too many links diff --git a/dump/windows/strings/server.txt b/dump/windows/strings/server.txt index 1b08579..bf4d06a 100644 --- a/dump/windows/strings/server.txt +++ b/dump/windows/strings/server.txt @@ -187,13 +187,13 @@ (%ld unused bits) (%s) (08@HPX`hpx - (08@HPX`j`/ + (08@HPX`jp/ (08@HPXb - (08@HPZ`/ + (08@HPZp/ (08@HR (08@J - (08@J`/ - (0:`/ + (08@Jp/ + (0:p/ (0X`hpz (Dirty Animation) (Disabled on Server) @@ -252,7 +252,6 @@ = { }". To set fields within it, use syntax like " ?? ACTIVE GROUP - A`X= Base Class Array' Base Class Descriptor at ( C>TQ @@ -2139,7 +2138,6 @@ $tH@T %s: IGameSystem::LoopPostInitAllSystems(start) %s: Invalid entity search name %s %s: No entity at index %d -%s: No entity system!n %s: Queue AsyncWrite (%s) %s: ReadTick %d:%s : clamping rebased tick %s [baseTick %d] value %d to zero! %s: ReleaseSpawnGroup @@ -2532,8 +2530,8 @@ $tH@T (3"B (3@Mb (40YF -(40^ (4?NewFromUnsigned@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@I@Z +(4@^ (5Kc (5Me (5Nc @@ -8238,9 +8236,9 @@ $tH@T 02V8[ 05=k 08@HP -08@HR`/ +08@HRp/ 08@J -08B`/ +08Bp/ 08bX 09,h 09|+ @@ -8747,12 +8745,11 @@ $tH@T 8=%>b @?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXH@Z @@ -9481,7 +9479,7 @@ $tH@T @F(% @HPX @HPX&I -@HPX`hv` +@HPX`hvp @MfKZ @Pgl @Q~i @@ -9495,7 +9493,7 @@ $tH@T @dKb] @fff>fff>fff>fff> @h!Aq8 -@ht0^ +@ht@^ @i1V @jB+ @n2w @@ -9543,6 +9541,7 @@ A>pP& A>x8 A@d0I AA Compromise +AA: q AABBDirection AABB_t AACompromise @@ -9574,7 +9573,7 @@ ACT_TRICK ACT_TURN_IN_PLACE ACT_UNDEFINED ACT_WALK -ACUserMessageLagCompensationError_t +ACUserMessageServerFrameTime_t AD Time Stamping ADDED %s (%s) to transition. ADDED. @@ -10298,6 +10297,7 @@ B %d : %s B!rA B"`b B#B)B/BCBSBUB[BaBsB}B +B%s: No entity system!n B*k@5 B+N3 B+Uk= @@ -10354,7 +10354,6 @@ BEOS_LOAD BEOS_NAME_CONVERTER BEOS_UNLOAD BEST -BEntity is in spawn group %s(%s) BF-CBC BF-CFB BF-ECB @@ -13880,6 +13879,7 @@ CUserMessageHudText CUserMessageHudText_t CUserMessageItemPickup CUserMessageItemPickup_t +CUserMessageLagCompensationError_t CUserMessageRequestDiagnostic CUserMessageRequestDiagnostic_t CUserMessageRequestDllStatus @@ -13905,7 +13905,6 @@ CUserMessageScreenTilt_t CUserMessageSendAudio CUserMessageSendAudio_t CUserMessageServerFrameTime -CUserMessageServerFrameTime_t CUserMessageShake CUserMessageShakeDir CUserMessageShakeDir_t @@ -16597,6 +16596,7 @@ Entity allocation failed since it forced slot %d, which is currently used by ent Entity class %s does not have its own datadesc (uses %s) Entity component datadesc mismatch, template %s vs. virtual %s Entity global initializers did not run +Entity is in spawn group %s(%s) Entity is phsycally %s spawn group %s(%s) Entity no longer exists for output connection Entity2 @@ -22123,7 +22123,7 @@ P-521 P08@J P08J P08N -P2`/ +P2p/ P5[1 P: P>q_Y~ @@ -22602,7 +22602,7 @@ Pitch PitchShift Pivot PivotPaint -Pj`/ +Pjp/ Place Place a message in the telemetry timeline PlaceDecalEvent_t @@ -27698,7 +27698,7 @@ XUID XW=?' XWY] XYD% -X`hr`/ +X`hrp/ Xd3h XfJ7 XjfR @@ -28306,15 +28306,16 @@ _}eOk `'>W `'~} `+!]? +`2 q `28)fk -`2`/ +`2p/ `3?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@H@Z `47/ -`6 J -`: / -`:0e -`:`/ -`:`d +`60J +`:0/ +`:@e +`:p/ +`:pd `:zQF `=&c `>r1 @@ -28338,11 +28339,11 @@ _}eOk `anonymous namespace' `apc `bB"(! -`b`/ +`bp/ `cC#( `copy constructor closure' -`d`/ `default constructor closure' +`dp/ `dub`D `dynamic atexit destructor for ' `dynamic initializer for ' @@ -29788,6 +29789,7 @@ bytes_sec_p99 bytes_total bytes_total_reliable bytes_total_voice +bytestring c [1>H' c(>\, c(^a @@ -42756,16 +42758,14 @@ p.ppBasis p.prime p.tpBasis p08@H^ -p0j +p0j0 p0p@ p250 -p2`/ -p2po +p2p/ p2{l p4Z3 p5Z3 p618 -p6pa p:(L p>?Set@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z p@0pqE5tsO?|1 @@ -43066,7 +43066,6 @@ payload + padding <= 16381 payment gateway capabilities payment_row_usd payment_us_usd -pb`/ pbeWithMD2AndDES-CBC pbeWithMD2AndRC2-CBC pbeWithMD5AndCast5CBC @@ -43080,6 +43079,7 @@ pbeWithSHA1And40BitRC2-CBC pbeWithSHA1And40BitRC4 pbeWithSHA1AndDES-CBC pbeWithSHA1AndRC2-CBC +pbp/ pc64 pcPathLengthConstraint pdm_reset_spawns diff --git a/dump/windows/vtable_diff/client/C_BaseEntity.txt b/dump/windows/vtable_diff/client/C_BaseEntity.txt index 5617b65..0c6a0a1 100644 --- a/dump/windows/vtable_diff/client/C_BaseEntity.txt +++ b/dump/windows/vtable_diff/client/C_BaseEntity.txt @@ -7,9 +7,9 @@ func_0 [ DIFF 192 ] ["CBaseAnimGraph", "CBaseP func_1 [ DIFF 296 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_CounterTerroristTeamIntroCamera", "C_CSGO_CounterTerroristWingmanIntroCamera", "C_CSGO_EndOfMatchCamera", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamIntroCounterTerroristPosition", "C_CSGO_TeamIntroTerroristPosition", "C_CSGO_TeamPreviewCharacterPosition", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCamera", "C_CSGO_TeamSelectCounterTerroristPosition", "C_CSGO_TeamSelectTerroristPosition", "C_CSGO_TerroristTeamIntroCamera", "C_CSGO_TerroristWingmanIntroCamera", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] "48 89 5C 24 08 57 48 83 EC 20 8B DA 48 8B F9 E8" func_2 [ DIFF 180 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "40 53 48 83 EC 20 48 8B D9 E8 82 0A F3 00 48 8B" + "40 53 48 83 EC 20 48 8B D9 E8 12 13 F3 00 48 8B" func_3 [ DIFF 113 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CCSPlayerController", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 2B CC EE 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 9B D3 EE 00 01 C3 CC CC CC CC CC CC CC CC" func_4 [ DIFF 195 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoWorldLayer", "CPointOffScreenIndicatorUi", "CPointTemplate", "CPulseGameBlackboard", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GlobalLight", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "41 54 41 56 48 81 EC 68 01 00 00 4C 8B E2 4C 8B" func_5 [ DIFF 179 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CRagdollManager", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -21,9 +21,9 @@ func_7 [ DIFF 0 ] [] func_8 [ DIFF 135 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CCSPlayerController", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EnvCubemapFog", "C_EnvParticleGlow", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWindController", "C_EnvWindVolume", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 10 57 48 83 EC 60 8B DA 48 8B F9 E8" func_9 [ DIFF 0 ] [] - "E9 0B 7D 90 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 7B 7F 90 00 CC CC CC CC CC CC CC CC CC CC CC" func_10 [ DIFF 233 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterMultiple", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CLogicRelay", "CPathSimple", "CPointOffScreenIndicatorUi", "CPointOrient", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_CounterTerroristTeamIntroCamera", "C_CSGO_CounterTerroristWingmanIntroCamera", "C_CSGO_EndOfMatchCamera", "C_CSGO_MapPreviewCameraPath", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCamera", "C_CSGO_TerroristTeamIntroCamera", "C_CSGO_TerroristWingmanIntroCamera", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "40 53 48 83 EC 40 48 8B D9 E8 12 45 93 00 83 BB" + "40 53 48 83 EC 40 48 8B D9 E8 82 47 93 00 83 BB" func_11 [ DIFF 233 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSPlayerController", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoOffscreenPanoramaTexture", "CInfoWorldLayer", "CMapInfo", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamIntroCounterTerroristPosition", "C_CSGO_TeamIntroTerroristPosition", "C_CSGO_TeamPreviewCharacterPosition", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCounterTerroristPosition", "C_CSGO_TeamSelectTerroristPosition", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GlobalLight", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "40 53 57 41 57 48 83 EC 40 83 B9 80 03 00 00 00" func_12 [ DIFF 184 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -43,9 +43,9 @@ func_18 [ DIFF 179 ] ["CBaseAnimGraph", "CBaseP func_19 [ DIFF 112 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CPulseGameBlackboard", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 48" func_20 [ DIFF 1 ] ["C_TextureBasedAnimatable"] - "E9 6B EE 5E 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 8B F4 5E 00 CC CC CC CC CC CC CC CC CC CC CC" func_21 [ DIFF 180 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "40 53 48 83 EC 20 48 8B D9 E8 92 C5 9C FF BA 0B" + "40 53 48 83 EC 20 48 8B D9 E8 72 BF 9C FF BA 0B" func_22 [ DIFF 0 ] [] "48 89 5C 24 10 48 89 6C 24 18 48 89 74 24 20 41" func_23 [ DIFF 109 ] ["CBombTarget", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CMapInfo", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPulseGameBlackboard", "CServerOnlyModelEntity", "CTriggerFan", "C_AK47", "C_BaseButton", "C_BaseCSGrenade", "C_BaseDoor", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_C4", "C_CSGameRulesProxy", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_Flashbang", "C_FootstepControl", "C_GameRulesProxy", "C_HEGrenade", "C_Hostage", "C_IncendiaryGrenade", "C_InfoInstructorHintHostageRescueZone", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_ParticleSystem", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointEntity", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] @@ -83,17 +83,17 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "40 55 57 48 8B EC 48 83 EC 68 48 8B 51 08 48 8B" func_40 [ DIFF 296 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_CounterTerroristTeamIntroCamera", "C_CSGO_CounterTerroristWingmanIntroCamera", "C_CSGO_EndOfMatchCamera", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamIntroCounterTerroristPosition", "C_CSGO_TeamIntroTerroristPosition", "C_CSGO_TeamPreviewCharacterPosition", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCamera", "C_CSGO_TeamSelectCounterTerroristPosition", "C_CSGO_TeamSelectTerroristPosition", "C_CSGO_TerroristTeamIntroCamera", "C_CSGO_TerroristWingmanIntroCamera", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] - "48 8D 05 59 BB 42 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 39 C5 42 01 C3 CC CC CC CC CC CC CC CC" func_41 [ DIFF 296 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_CounterTerroristTeamIntroCamera", "C_CSGO_CounterTerroristWingmanIntroCamera", "C_CSGO_EndOfMatchCamera", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamIntroCounterTerroristPosition", "C_CSGO_TeamIntroTerroristPosition", "C_CSGO_TeamPreviewCharacterPosition", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCamera", "C_CSGO_TeamSelectCounterTerroristPosition", "C_CSGO_TeamSelectTerroristPosition", "C_CSGO_TerroristTeamIntroCamera", "C_CSGO_TerroristWingmanIntroCamera", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_42 [ DIFF 296 ] ["CBaseAnimGraph", "CBaseFilter", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSPlayerController", "CCS_PortraitWorldCallbackHandler", "CCitadelSoundOpvarSetOBB", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFilterAttributeInt", "CFilterClass", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CLogicRelay", "CLogicalEntity", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPointTemplate", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSkyboxReference", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_CounterTerroristTeamIntroCamera", "C_CSGO_CounterTerroristWingmanIntroCamera", "C_CSGO_EndOfMatchCamera", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_EndOfMatchLineupEnd", "C_CSGO_EndOfMatchLineupStart", "C_CSGO_MapPreviewCameraPath", "C_CSGO_MapPreviewCameraPathNode", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamIntroCounterTerroristPosition", "C_CSGO_TeamIntroTerroristPosition", "C_CSGO_TeamPreviewCharacterPosition", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCamera", "C_CSGO_TeamSelectCounterTerroristPosition", "C_CSGO_TeamSelectTerroristPosition", "C_CSGO_TerroristTeamIntroCamera", "C_CSGO_TerroristWingmanIntroCamera", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_CsmFovOverride", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindClientside", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PortraitWorldCallbackHandler", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TintController", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves", "FilterDamageType", "FilterHealth"] - "40 53 48 83 EC 20 48 8B DA E8 F2 EB B0 FF 48 8B" + "40 53 48 83 EC 20 48 8B DA E8 D2 E5 B0 FF 48 8B" func_43 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_44 [ DIFF 258 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSPlayerController", "CCitadelSoundOpvarSetOBB", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CInfoWorldLayer", "CMapInfo", "CPathSimple", "CPointChildModifier", "CPointOffScreenIndicatorUi", "CPointOrient", "CPulseGameBlackboard", "CRagdollManager", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamIntroCounterTerroristPosition", "C_CSGO_TeamIntroTerroristPosition", "C_CSGO_TeamPreviewCharacterPosition", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCounterTerroristPosition", "C_CSGO_TeamSelectTerroristPosition", "C_CSGameRulesProxy", "C_CSMinimapBoundary", "C_CSObserverPawn", "C_CSPetPlacement", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSPlayerResource", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvCubemapFog", "C_EnvDecal", "C_EnvDetailController", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvVolumetricFogController", "C_EnvVolumetricFogVolume", "C_EnvWind", "C_EnvWindController", "C_EnvWindVolume", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FogController", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GameRulesProxy", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_InfoInstructorHintHostageRescueZone", "C_InfoLadderDismount", "C_InfoVisibilityBox", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointEntity", "C_PointValueRemapper", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SkyCamera", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SoundEventAABBEntity", "C_SoundEventEntity", "C_SoundEventEntityAlias_snd_event_point", "C_SoundEventOBBEntity", "C_SoundEventPathCornerEntity", "C_SoundEventSphereEntity", "C_SoundOpvarSetAABBEntity", "C_SoundOpvarSetAutoRoomEntity", "C_SoundOpvarSetOBBEntity", "C_SoundOpvarSetOBBWindEntity", "C_SoundOpvarSetPathCornerEntity", "C_SoundOpvarSetPointBase", "C_SoundOpvarSetPointEntity", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TonemapController2", "C_TonemapController2Alias_env_tonemap_controller2", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_VoteController", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 8B 41 10 48 8B 48 08 48 8B 81 10 01 00 00 48" func_45 [ DIFF 182 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSTeam", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_Team", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "48 8D 05 59 8A 42 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 39 94 42 01 C3 CC CC CC CC CC CC CC CC" func_46 [ DIFF 0 ] [] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_47 [ DIFF 178 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -149,7 +149,7 @@ func_71 [ DIFF 0 ] [] func_72 [ DIFF 0 ] [] "48 83 EC 28 E8 E7 06 FC FF 34 01 48 83 C4 28 C3" func_73 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 40 F2 0F 10 05 9E 58" + "48 89 5C 24 08 57 48 83 EC 40 F2 0F 10 05 7E 62" func_74 [ DIFF 74 ] ["C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_EconEntity", "C_EconWearable", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_MolotovProjectile", "C_NetTestBaseCombatCharacter", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_75 [ DIFF 74 ] ["C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_EconEntity", "C_EconWearable", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_MolotovProjectile", "C_NetTestBaseCombatCharacter", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] @@ -189,17 +189,17 @@ func_91 [ DIFF 0 ] [] func_92 [ DIFF 0 ] [] "40 57 48 83 EC 20 48 8B F9 48 85 D2 75 08 32 C0" func_93 [ DIFF 0 ] [] - "40 53 48 83 EC 20 0F B6 89 EB 03 00 00 E8 9E D4" + "40 53 48 83 EC 20 0F B6 89 EB 03 00 00 E8 7E CE" func_94 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_95 [ DIFF 1 ] ["C_BaseButton"] "48 89 5C 24 08 57 48 83 EC 20 48 8B 51 10 48 8B" func_96 [ DIFF 3 ] ["CBombTarget", "C_Hostage", "C_PlantedC4"] - "40 53 48 83 EC 20 48 8B DA E8 82 B8 9B FF 48 85" + "40 53 48 83 EC 20 48 8B DA E8 62 B2 9B FF 48 85" func_97 [ DIFF 0 ] [] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_98 [ DIFF 0 ] [] - "F3 0F 10 05 1C 99 3A 01 C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 1C A9 3A 01 C3 CC CC CC CC CC CC CC" func_99 [ DIFF 178 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_100 [ DIFF 1 ] ["C_ClientRagdoll"] @@ -207,15 +207,15 @@ func_100 [ DIFF 1 ] ["C_ClientRagdoll"] func_101 [ DIFF 58 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "40 53 48 83 EC 60 48 8B 41 10 48 8B D9 8B 48 30" func_102 [ DIFF 191 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CPointOrient", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvCombinedLightProbeVolume", "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "C_EnvCubemap", "C_EnvCubemapBox", "C_EnvDecal", "C_EnvLightProbeVolume", "C_EnvParticleGlow", "C_EnvSky", "C_EnvWind", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_GlobalLight", "C_GradientFog", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PlayerVisibility", "C_PointCamera", "C_PointCameraVFOV", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "40 53 48 83 EC 20 48 8D 54 24 40 48 8B D9 E8 DD" + "40 53 48 83 EC 20 48 8D 54 24 40 48 8B D9 E8 BD" func_103 [ DIFF 178 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "40 53 48 83 EC 20 48 8B 05 33 71 40 01 48 8B D9" + "40 53 48 83 EC 20 48 8B 05 13 7B 40 01 48 8B D9" func_104 [ DIFF 78 ] ["C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_C4", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_EconEntity", "C_EconWearable", "C_Flashbang", "C_FlashbangProjectile", "C_GlobalLight", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_MolotovProjectile", "C_NetTestBaseCombatCharacter", "C_PropDoorRotating", "C_SceneEntity", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_105 [ DIFF 192 ] ["CBaseAnimGraph", "CBasePlayerController", "CBaseProp", "CBombTarget", "CCSPlayerController", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CInfoOffscreenPanoramaTexture", "CInfoWorldLayer", "CPointOffScreenIndicatorUi", "CRagdollManager", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrection", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_EnvWind", "C_EnvWindController", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_HandleTest", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerPing", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointValueRemapper", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SoundAreaEntityOrientedBox", "C_SoundAreaEntitySphere", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 89 5C 24 10 48 89 74 24 18 57 48 83 EC 20 48" func_106 [ DIFF 66 ] ["CBasePlayerController", "CCSPlayerController", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_EconEntity", "C_EconWearable", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_PointCommentaryNode", "C_SmokeGrenade", "C_Sprite", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "40 53 48 83 EC 20 48 8B D9 E8 32 17 9E FF 48 85" + "40 53 48 83 EC 20 48 8B D9 E8 12 11 9E FF 48 85" func_107 [ DIFF 14 ] ["CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoTarget", "CMapInfo", "CPointChildModifier", "C_InfoInstructorHintHostageRescueZone", "C_ModelPointEntity", "C_PlayerSprayDecal", "C_PointEntity", "C_PointWorldText", "C_SceneEntity"] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_108 [ DIFF 0 ] [] @@ -249,9 +249,9 @@ func_121 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseP func_122 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 C7 02 00 00 00 00 48 8B C2 C3 CC CC CC CC CC" func_123 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 D1 2A B7 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 D1 3A B7 01 01 C3 CC CC CC CC CC CC CC CC" func_124 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 C1 2A B7 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 C1 3A B7 01 01 C3 CC CC CC CC CC CC CC CC" func_125 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_126 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] @@ -295,7 +295,7 @@ func_144 [ DIFF 5 ] ["CEnvSoundscapeTriggerabl func_145 [ DIFF 71 ] ["CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CGrenadeTracer", "CInfoOffscreenPanoramaTexture", "CPointOffScreenIndicatorUi", "CSpriteOriented", "C_BaseCSGrenadeProjectile", "C_C4", "C_CSGO_CounterTerroristTeamIntroCamera", "C_CSGO_CounterTerroristWingmanIntroCamera", "C_CSGO_EndOfMatchCamera", "C_CSGO_EndOfMatchCharacterPosition", "C_CSGO_MapPreviewCameraPath", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamIntroCounterTerroristPosition", "C_CSGO_TeamIntroTerroristPosition", "C_CSGO_TeamPreviewCharacterPosition", "C_CSGO_TeamPreviewModel", "C_CSGO_TeamSelectCamera", "C_CSGO_TeamSelectCounterTerroristPosition", "C_CSGO_TeamSelectTerroristPosition", "C_CSGO_TerroristTeamIntroCamera", "C_CSGO_TerroristWingmanIntroCamera", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_Chicken", "C_ClientRagdoll", "C_DecoyProjectile", "C_DynamicLight", "C_EconWearable", "C_EntityDissolve", "C_EntityFlame", "C_EnvParticleGlow", "C_EnvWind", "C_EnvWindController", "C_FireCrackerBlast", "C_Fish", "C_FlashbangProjectile", "C_GlobalLight", "C_GradientFog", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_Inferno", "C_MapPreviewParticleSystem", "C_MapVetoPickController", "C_MolotovProjectile", "C_ParticleSystem", "C_PathParticleRope", "C_PathParticleRopeAlias_path_particle_rope_clientside", "C_PhysPropClientside", "C_PlantedC4", "C_PlayerVisibility", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointValueRemapper", "C_Precipitation", "C_RopeKeyframe", "C_SceneEntity", "C_ShatterGlassShardPhysics", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_TintController", "C_VoteController"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_146 [ DIFF 9 ] ["CBasePlayerController", "CCSPlayerController", "C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] - "40 57 48 83 EC 70 48 8B F9 E8 32 E2 86 00 84 C0" + "40 57 48 83 EC 70 48 8B F9 E8 A2 E4 86 00 84 C0" func_147 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_148 [ DIFF 1 ] ["CGrenadeTracer"] @@ -307,7 +307,7 @@ func_150 [ DIFF 1 ] ["C_ClientRagdoll"] func_151 [ DIFF 178 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 89 5C 24 08 57 48 83 EC 30 48 8B DA 45 33 C0" func_152 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "48 8B 89 E0 05 00 00 48 85 C9 0F 85 C0 9C 67 00" + "48 8B 89 E0 05 00 00 48 85 C9 0F 85 E0 A2 67 00" func_153 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 8B 81 E0 05 00 00 48 85 C0 74 36 83 B8 90 00" func_154 [ DIFF 0 ] [] @@ -361,9 +361,9 @@ func_177 [ DIFF 0 ] [] func_178 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 83 EC 38 F3 0F 10 81 44 05 00 00 0F 29 74 24" func_179 [ DIFF 178 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "8B 05 A2 48 3A 01 F2 0F 10 05 92 48 3A 01 F2 0F" + "8B 05 A2 58 3A 01 F2 0F 10 05 92 58 3A 01 F2 0F" func_180 [ DIFF 178 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "48 8D 05 C9 38 3A 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 C9 48 3A 01 C3 CC CC CC CC CC CC CC CC" func_181 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B 01 48 8B DA FF 90 80 02" func_182 [ DIFF 0 ] [] @@ -375,7 +375,7 @@ func_184 [ DIFF 0 ] [] func_185 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_186 [ DIFF 1 ] ["C_FuncConveyor"] - "F2 0F 10 05 E8 40 3A 01 F2 0F 11 02 8B 05 E6 40" + "F2 0F 10 05 E8 50 3A 01 F2 0F 11 02 8B 05 E6 50" func_187 [ DIFF 0 ] [] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_188 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] @@ -389,9 +389,9 @@ func_191 [ DIFF 189 ] ["CBaseAnimGraph", "CBaseP func_192 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_193 [ DIFF 178 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BaseModelEntity", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "41 8B 10 E9 D8 FF 9E FF CC CC CC CC CC CC CC CC" + "41 8B 10 E9 B8 F9 9E FF CC CC CC CC CC CC CC CC" func_194 [ DIFF 4 ] ["C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_EnvDecal"] - "48 8B 89 38 03 00 00 48 85 C9 0F 85 10 FE 99 FF" + "48 8B 89 38 03 00 00 48 85 C9 0F 85 F0 F7 99 FF" func_195 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_196 [ DIFF 0 ] [] @@ -415,7 +415,7 @@ func_204 [ DIFF 0 ] [] func_205 [ DIFF 4 ] ["C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn"] "40 53 48 83 EC 20 48 8B DA E8 B2 05 05 00 F2 0F" func_206 [ DIFF 0 ] [] - "E9 4B C0 9C FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 2B BA 9C FF CC CC CC CC CC CC CC CC CC CC CC" func_207 [ DIFF 115 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 08 57 48 83 EC 20 48 8B FA 49 8B D8" func_208 [ DIFF 3 ] ["C_EnvDecal", "C_FireCrackerBlast", "C_Inferno"] diff --git a/dump/windows/vtable_diff/client/C_BaseModelEntity.txt b/dump/windows/vtable_diff/client/C_BaseModelEntity.txt index 015b21f..fee7c63 100644 --- a/dump/windows/vtable_diff/client/C_BaseModelEntity.txt +++ b/dump/windows/vtable_diff/client/C_BaseModelEntity.txt @@ -7,11 +7,11 @@ func_0 [ DIFF 112 ] ["CBaseAnimGraph", "CBaseP func_1 [ DIFF 177 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 89 5C 24 08 57 48 83 EC 20 8B DA 48 8B F9 E8" func_2 [ DIFF 112 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "40 53 48 83 EC 20 48 8B D9 E8 62 EA B7 FF 48 8B" + "40 53 48 83 EC 20 48 8B D9 E8 42 E4 B7 FF 48 8B" func_3 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 2B CC EE 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 9B D3 EE 00 01 C3 CC CC CC CC CC CC CC CC" func_4 [ DIFF 121 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CFuncWater", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EnvParticleGlow", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointClientUIDialog", "C_PointCommentaryNode", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "E9 BB DB B6 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 9B D5 B6 FF CC CC CC CC CC CC CC CC CC CC CC" func_5 [ DIFF 112 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "40 53 48 83 EC 20 48 8B D9 E8 B2 4F 18 00 48 8B" func_6 [ DIFF 149 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EnvParticleGlow", "C_EnvSky", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncLadder", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -21,7 +21,7 @@ func_7 [ DIFF 0 ] [] func_8 [ DIFF 121 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EnvParticleGlow", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TextureBasedAnimatable", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 10 57 48 83 EC 60 8B DA 48 8B F9 E8" func_9 [ DIFF 0 ] [] - "E9 0B 7D 90 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 7B 7F 90 00 CC CC CC CC CC CC CC CC CC CC CC" func_10 [ DIFF 155 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 48" func_11 [ DIFF 155 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncMonitor", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] @@ -35,7 +35,7 @@ func_14 [ DIFF 0 ] [] func_15 [ DIFF 115 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EnvParticleGlow", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_ParticleSystem", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TextureBasedAnimatable", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "40 53 48 83 EC 20 48 8B D9 E8 62 5D 18 00 8B 83" func_16 [ DIFF 15 ] ["CBaseProp", "CFuncRetakeBarrier", "C_BasePropDoor", "C_BreakableProp", "C_Chicken", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_FuncLadder", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PropDoorRotating", "C_ShatterGlassShardPhysics"] - "E9 BB A1 B7 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 9B 9B B7 FF CC CC CC CC CC CC CC CC CC CC CC" func_17 [ DIFF 125 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CHostageRescueZone", "CHostageRescueZoneShim", "CTriggerFan", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseTrigger", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PostProcessingVolume", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "44 89 4C 24 20 55 53 56 41 54 41 55 41 56 41 57" func_18 [ DIFF 0 ] [] @@ -43,7 +43,7 @@ func_18 [ DIFF 0 ] [] func_19 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 48" func_20 [ DIFF 1 ] ["C_TextureBasedAnimatable"] - "E9 6B EE 5E 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 8B F4 5E 00 CC CC CC CC CC CC CC CC CC CC CC" func_21 [ DIFF 12 ] ["C_BarnLight", "C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_ClientRagdoll", "C_OmniLight", "C_PointCommentaryNode", "C_RectLight"] "40 53 48 83 EC 20 48 8B D9 E8 12 6B 18 00 48 8D" func_22 [ DIFF 0 ] [] @@ -83,17 +83,17 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "40 55 57 48 8B EC 48 83 EC 68 48 8B 51 08 48 8B" func_40 [ DIFF 177 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "48 8D 05 51 EE 58 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 21 F8 58 01 C3 CC CC CC CC CC CC CC CC" func_41 [ DIFF 177 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_42 [ DIFF 177 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CGrenadeTracer", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CServerOnlyModelEntity", "CSpriteOriented", "CTriggerFan", "CWaterSplasher", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] - "40 53 48 83 EC 20 48 8B DA E8 22 EF C9 FF 48 8B" + "40 53 48 83 EC 20 48 8B DA E8 12 E9 C9 FF 48 8B" func_43 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_44 [ DIFF 174 ] ["CBaseAnimGraph", "CBaseProp", "CBombTarget", "CFuncRetakeBarrier", "CFuncWater", "CHostageRescueZone", "CHostageRescueZoneShim", "CPointOffScreenIndicatorUi", "CSpriteOriented", "CTriggerFan", "C_AK47", "C_BarnLight", "C_BaseButton", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseClientUIEntity", "C_BaseCombatCharacter", "C_BaseDoor", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BaseToggle", "C_BaseTrigger", "C_Beam", "C_Breakable", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_EnvParticleGlow", "C_EnvSky", "C_FireCrackerBlast", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FootstepControl", "C_FuncBrush", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncLadder", "C_FuncMonitor", "C_FuncMoveLinear", "C_FuncMover", "C_FuncRotating", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Inferno", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LightDirectionalEntity", "C_LightEntity", "C_LightEnvironmentEntity", "C_LightOrthoEntity", "C_LightSpotEntity", "C_LocalTempEntity", "C_MapPreviewParticleSystem", "C_ModelPointEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_OmniLight", "C_ParticleSystem", "C_PhysBox", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIDialog", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_PostProcessingVolume", "C_Precipitation", "C_PrecipitationBlocker", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RectLight", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_TextureBasedAnimatable", "C_TriggerBuoyancy", "C_TriggerLerpObject", "C_TriggerMultiple", "C_TriggerPhysics", "C_TriggerVolume", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_World", "C_WorldModelGloves"] "48 8B 41 10 48 8B 48 08 48 8B 81 10 01 00 00 48" func_45 [ DIFF 115 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "48 8D 05 01 C1 58 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 D1 CA 58 01 C3 CC CC CC CC CC CC CC CC" func_46 [ DIFF 0 ] [] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_47 [ DIFF 1 ] ["C_TriggerBuoyancy"] @@ -149,7 +149,7 @@ func_71 [ DIFF 0 ] [] func_72 [ DIFF 0 ] [] "48 83 EC 28 E8 E7 06 FC FF 34 01 48 83 C4 28 C3" func_73 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 40 F2 0F 10 05 9E 58" + "48 89 5C 24 08 57 48 83 EC 40 F2 0F 10 05 7E 62" func_74 [ DIFF 74 ] ["C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_EconEntity", "C_EconWearable", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_MolotovProjectile", "C_NetTestBaseCombatCharacter", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_75 [ DIFF 74 ] ["C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_EconEntity", "C_EconWearable", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_MolotovProjectile", "C_NetTestBaseCombatCharacter", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] @@ -189,17 +189,17 @@ func_91 [ DIFF 0 ] [] func_92 [ DIFF 0 ] [] "40 57 48 83 EC 20 48 8B F9 48 85 D2 75 08 32 C0" func_93 [ DIFF 0 ] [] - "40 53 48 83 EC 20 0F B6 89 EB 03 00 00 E8 9E D4" + "40 53 48 83 EC 20 0F B6 89 EB 03 00 00 E8 7E CE" func_94 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_95 [ DIFF 1 ] ["C_BaseButton"] "48 89 5C 24 08 57 48 83 EC 20 48 8B 51 10 48 8B" func_96 [ DIFF 3 ] ["CBombTarget", "C_Hostage", "C_PlantedC4"] - "40 53 48 83 EC 20 48 8B DA E8 82 B8 9B FF 48 85" + "40 53 48 83 EC 20 48 8B DA E8 62 B2 9B FF 48 85" func_97 [ DIFF 0 ] [] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_98 [ DIFF 0 ] [] - "F3 0F 10 05 1C 99 3A 01 C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 1C A9 3A 01 C3 CC CC CC CC CC CC CC" func_99 [ DIFF 1 ] ["C_BaseButton"] "48 8B C1 C3 CC CC CC CC CC CC CC CC CC CC CC CC" func_100 [ DIFF 1 ] ["C_ClientRagdoll"] @@ -215,7 +215,7 @@ func_104 [ DIFF 76 ] ["C_AK47", "C_BaseCSGrenad func_105 [ DIFF 132 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CPointOffScreenIndicatorUi", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_Beam", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_ColorCorrectionVolume", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicLight", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_FuncConveyor", "C_FuncElectrifiedVolume", "C_FuncMoveLinear", "C_FuncMover", "C_FuncTrackTrain", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PlayerSprayDecal", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_PointWorldText", "C_Precipitation", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 10 48 89 74 24 18 57 48 83 EC 30 48" func_106 [ DIFF 64 ] ["CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_C4", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_EconEntity", "C_EconWearable", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_PointCommentaryNode", "C_SmokeGrenade", "C_Sprite", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "40 53 48 83 EC 20 48 8B D9 E8 32 17 9E FF 48 85" + "40 53 48 83 EC 20 48 8B D9 E8 12 11 9E FF 48 85" func_107 [ DIFF 3 ] ["C_ModelPointEntity", "C_PlayerSprayDecal", "C_PointWorldText"] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_108 [ DIFF 0 ] [] @@ -249,9 +249,9 @@ func_121 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseP func_122 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 C7 02 00 00 00 00 48 8B C2 C3 CC CC CC CC CC" func_123 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 D1 2A B7 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 D1 3A B7 01 01 C3 CC CC CC CC CC CC CC CC" func_124 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "C6 05 C1 2A B7 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 C1 3A B7 01 01 C3 CC CC CC CC CC CC CC CC" func_125 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_126 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] @@ -295,7 +295,7 @@ func_144 [ DIFF 0 ] [] func_145 [ DIFF 42 ] ["CGrenadeTracer", "CPointOffScreenIndicatorUi", "CSpriteOriented", "C_BaseCSGrenadeProjectile", "C_C4", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_Chicken", "C_ClientRagdoll", "C_DecoyProjectile", "C_DynamicLight", "C_EconWearable", "C_EntityDissolve", "C_EnvParticleGlow", "C_FireCrackerBlast", "C_Fish", "C_FlashbangProjectile", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_Inferno", "C_MapPreviewParticleSystem", "C_MolotovProjectile", "C_ParticleSystem", "C_PhysPropClientside", "C_PlantedC4", "C_PointClientUIHUD", "C_PointClientUIWorldPanel", "C_PointClientUIWorldTextPanel", "C_PointCommentaryNode", "C_Precipitation", "C_RopeKeyframe", "C_ShatterGlassShardPhysics", "C_SmokeGrenadeProjectile", "C_SpotlightEnd", "C_Sprite"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_146 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] - "40 57 48 83 EC 70 48 8B F9 E8 32 E2 86 00 84 C0" + "40 57 48 83 EC 70 48 8B F9 E8 A2 E4 86 00 84 C0" func_147 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_148 [ DIFF 1 ] ["CGrenadeTracer"] @@ -307,7 +307,7 @@ func_150 [ DIFF 1 ] ["C_ClientRagdoll"] func_151 [ DIFF 8 ] ["C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_HostageCarriableProp", "C_PointClientUIHUD", "C_PointCommentaryNode", "C_RagdollProp", "C_RagdollPropAttached", "C_TextureBasedAnimatable"] "48 8B C4 55 53 56 57 48 8D 68 A1 48 81 EC B8 00" func_152 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] - "48 8B 89 E0 05 00 00 48 85 C9 0F 85 C0 9C 67 00" + "48 8B 89 E0 05 00 00 48 85 C9 0F 85 E0 A2 67 00" func_153 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 8B 81 E0 05 00 00 48 85 C0 74 36 83 B8 90 00" func_154 [ DIFF 0 ] [] @@ -361,9 +361,9 @@ func_177 [ DIFF 0 ] [] func_178 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 83 EC 38 F3 0F 10 81 44 05 00 00 0F 29 74 24" func_179 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 30 F3 0F 10 15 96 B8" + "48 89 5C 24 08 57 48 83 EC 30 F3 0F 10 15 96 C8" func_180 [ DIFF 0 ] [] - "F3 0F 10 15 E0 A8 3A 01 48 81 C1 80 0D 00 00 33" + "F3 0F 10 15 E0 B8 3A 01 48 81 C1 80 0D 00 00 33" func_181 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B 01 48 8B DA FF 90 80 02" func_182 [ DIFF 0 ] [] @@ -375,7 +375,7 @@ func_184 [ DIFF 0 ] [] func_185 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_186 [ DIFF 1 ] ["C_FuncConveyor"] - "F2 0F 10 05 E8 40 3A 01 F2 0F 11 02 8B 05 E6 40" + "F2 0F 10 05 E8 50 3A 01 F2 0F 11 02 8B 05 E6 50" func_187 [ DIFF 0 ] [] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_188 [ DIFF 7 ] ["C_BasePlayerPawn", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase"] @@ -391,7 +391,7 @@ func_192 [ DIFF 0 ] [] func_193 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B D9 E8 52 75 18 00 48 8B" func_194 [ DIFF 4 ] ["C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_EnvDecal"] - "48 8B 89 38 03 00 00 48 85 C9 0F 85 10 FE 99 FF" + "48 8B 89 38 03 00 00 48 85 C9 0F 85 F0 F7 99 FF" func_195 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_196 [ DIFF 0 ] [] @@ -415,7 +415,7 @@ func_204 [ DIFF 0 ] [] func_205 [ DIFF 4 ] ["C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn"] "40 53 48 83 EC 20 48 8B DA E8 B2 05 05 00 F2 0F" func_206 [ DIFF 0 ] [] - "E9 4B C0 9C FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 2B BA 9C FF CC CC CC CC CC CC CC CC CC CC CC" func_207 [ DIFF 115 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "CSpriteOriented", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_EntityDissolve", "C_EnvDecal", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_Sprite", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 08 57 48 83 EC 20 48 8B FA 49 8B D8" func_208 [ DIFF 3 ] ["C_EnvDecal", "C_FireCrackerBlast", "C_Inferno"] @@ -447,7 +447,7 @@ func_220 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseP func_221 [ DIFF 0 ] [] "48 83 EC 38 48 8B 89 30 03 00 00 0F 29 74 24 20" func_222 [ DIFF 0 ] [] - "0F B6 81 70 0B 00 00 F3 0F 10 15 69 17 ED 00 66" + "0F B6 81 70 0B 00 00 F3 0F 10 15 49 21 ED 00 66" func_223 [ DIFF 5 ] ["C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_LateUpdatedAnimating"] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_224 [ DIFF 4 ] ["C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn"] @@ -457,7 +457,7 @@ func_225 [ DIFF 4 ] ["C_CSGO_PreviewPlayer", " func_226 [ DIFF 17 ] ["CFuncRetakeBarrier", "C_BasePropDoor", "C_BreakableProp", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn", "C_Chicken", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PropDoorRotating", "C_ShatterGlassShardPhysics"] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_227 [ DIFF 17 ] ["CFuncRetakeBarrier", "C_BasePropDoor", "C_BreakableProp", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn", "C_Chicken", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PropDoorRotating", "C_ShatterGlassShardPhysics"] - "C6 05 A9 FE 7D 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 89 08 7E 01 01 C3 CC CC CC CC CC CC CC CC" func_228 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_229 [ DIFF 0 ] [] @@ -471,7 +471,7 @@ func_232 [ DIFF 0 ] [] func_233 [ DIFF 3 ] ["C_ModelPointEntity", "C_PlayerSprayDecal", "C_PointWorldText"] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_234 [ DIFF 55 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CS2HudModelArms", "C_CS2HudModelWeapon", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "48 89 5C 24 08 57 48 83 EC 20 48 8B D9 E8 CE 57" + "48 89 5C 24 08 57 48 83 EC 20 48 8B D9 E8 AE 51" func_235 [ DIFF 54 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSPlayerPawn", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 48" func_236 [ DIFF 111 ] ["CBaseAnimGraph", "CBaseProp", "CFuncRetakeBarrier", "C_AK47", "C_BaseCSGrenade", "C_BaseCSGrenadeProjectile", "C_BaseCombatCharacter", "C_BaseFlex", "C_BaseGrenade", "C_BasePlayerPawn", "C_BasePlayerWeapon", "C_BasePropDoor", "C_BreakableProp", "C_BulletHitModel", "C_C4", "C_CS2HudModelAddon", "C_CS2HudModelArms", "C_CS2HudModelBase", "C_CS2HudModelWeapon", "C_CS2WeaponModuleBase", "C_CSGO_PreviewModel", "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", "C_CSGO_PreviewPlayer", "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", "C_CSGO_TeamPreviewModel", "C_CSObserverPawn", "C_CSPlayerPawn", "C_CSPlayerPawnBase", "C_CSWeaponBase", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_Chicken", "C_ClientRagdoll", "C_DEagle", "C_DecoyGrenade", "C_DecoyProjectile", "C_DynamicProp", "C_DynamicPropAlias_cable_dynamic", "C_DynamicPropAlias_dynamic_prop", "C_DynamicPropAlias_prop_dynamic_override", "C_EconEntity", "C_EconWearable", "C_Fish", "C_Flashbang", "C_FlashbangProjectile", "C_HEGrenade", "C_HEGrenadeProjectile", "C_Hostage", "C_HostageCarriableProp", "C_IncendiaryGrenade", "C_Item", "C_ItemDogtags", "C_Item_Healthshot", "C_KeychainModule", "C_Knife", "C_LateUpdatedAnimating", "C_LocalTempEntity", "C_MolotovGrenade", "C_MolotovProjectile", "C_Multimeter", "C_NametagModule", "C_NetTestBaseCombatCharacter", "C_PhysMagnet", "C_PhysPropClientside", "C_PhysicsProp", "C_PhysicsPropMultiplayer", "C_PlantedC4", "C_PointCommentaryNode", "C_PropDoorRotating", "C_RagdollProp", "C_RagdollPropAttached", "C_ShatterGlassShardPhysics", "C_SmokeGrenade", "C_SmokeGrenadeProjectile", "C_StattrakModule", "C_WaterBullet", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014", "C_WorldModelGloves"] diff --git a/dump/windows/vtable_diff/client/C_CSWeaponBase.txt b/dump/windows/vtable_diff/client/C_CSWeaponBase.txt index d0c65ee..228d637 100644 --- a/dump/windows/vtable_diff/client/C_CSWeaponBase.txt +++ b/dump/windows/vtable_diff/client/C_CSWeaponBase.txt @@ -21,7 +21,7 @@ func_7 [ DIFF 0 ] [] func_8 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 8B FA 48 8B D9 E8" func_9 [ DIFF 0 ] [] - "E9 0B 7D 90 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 7B 7F 90 00 CC CC CC CC CC CC CC CC CC CC CC" func_10 [ DIFF 3 ] ["C_C4", "C_Item_Healthshot", "C_WeaponBaseItem"] "48 89 5C 24 08 57 48 83 EC 30 48 8B D9 E8 0E D1" func_11 [ DIFF 1 ] ["C_C4"] @@ -35,15 +35,15 @@ func_14 [ DIFF 0 ] [] func_15 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 48 8B D9 8B FA 48" func_16 [ DIFF 0 ] [] - "E9 BB A1 B7 FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 9B 9B B7 FF CC CC CC CC CC CC CC CC CC CC CC" func_17 [ DIFF 0 ] [] "48 89 54 24 10 55 53 56 41 54 41 55 41 56 41 57" func_18 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 48 8B DA" func_19 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B D9 E8 1E 03" + "48 89 5C 24 08 57 48 83 EC 20 48 8B D9 E8 2E 03" func_20 [ DIFF 0 ] [] - "E9 6B EE 5E 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 8B F4 5E 00 CC CC CC CC CC CC CC CC CC CC CC" func_21 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B D9 E8 12 6B 18 00 48 8D" func_22 [ DIFF 0 ] [] @@ -83,17 +83,17 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "40 55 57 48 8B EC 48 83 EC 68 48 8B 51 08 48 8B" func_40 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "48 8D 05 F1 53 63 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 C1 5D 63 01 C3 CC CC CC CC CC CC CC CC" func_41 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "E9 DB 47 0C 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 CB 47 0C 00 CC CC CC CC CC CC CC CC CC CC CC" func_42 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] - "40 53 48 83 EC 20 48 8B DA 48 8D 15 D0 87 62 01" + "40 53 48 83 EC 20 48 8B DA 48 8D 15 A0 91 62 01" func_43 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_44 [ DIFF 48 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_CSWeaponBaseShotgun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNOVA", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponSawedoff", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer", "C_WeaponXM1014"] "48 8B 41 10 48 8B 48 08 48 8B 81 10 01 00 00 48" func_45 [ DIFF 44 ] ["C_AK47", "C_BaseCSGrenade", "C_C4", "C_CSWeaponBaseGun", "C_DEagle", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_Item_Healthshot", "C_Knife", "C_MolotovGrenade", "C_SmokeGrenade", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBaseItem", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] - "48 8D 05 21 41 63 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 F1 4A 63 01 C3 CC CC CC CC CC CC CC CC" func_46 [ DIFF 0 ] [] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_47 [ DIFF 0 ] [] @@ -103,7 +103,7 @@ func_48 [ DIFF 0 ] [] func_49 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_50 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 72 09 19 00 48 8B" + "40 53 48 83 EC 20 48 8B D9 E8 82 09 19 00 48 8B" func_51 [ DIFF 0 ] [] "40 53 48 83 EC 20 8B 81 74 03 00 00 48 8B D9 0F" func_52 [ DIFF 0 ] [] @@ -149,9 +149,9 @@ func_71 [ DIFF 0 ] [] func_72 [ DIFF 0 ] [] "48 83 EC 28 E8 E7 06 FC FF 34 01 48 83 C4 28 C3" func_73 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 40 F2 0F 10 05 9E 58" + "48 89 5C 24 08 57 48 83 EC 40 F2 0F 10 05 7E 62" func_74 [ DIFF 0 ] [] - "40 53 48 81 EC 80 00 00 00 48 8B 05 90 13 40 01" + "40 53 48 81 EC 80 00 00 00 48 8B 05 70 1D 40 01" func_75 [ DIFF 0 ] [] "48 8B 81 68 12 00 00 48 85 C0 74 05 48 8B 40 08" func_76 [ DIFF 0 ] [] @@ -167,7 +167,7 @@ func_80 [ DIFF 0 ] [] func_81 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_82 [ DIFF 0 ] [] - "48 81 C1 48 0F 00 00 48 8D 15 B2 9F EB 00 E9 4D" + "48 81 C1 48 0F 00 00 48 8D 15 92 A9 EB 00 E9 2D" func_83 [ DIFF 0 ] [] "48 83 EC 28 38 91 60 03 00 00 74 43 48 89 5C 24" func_84 [ DIFF 0 ] [] @@ -189,17 +189,17 @@ func_91 [ DIFF 0 ] [] func_92 [ DIFF 0 ] [] "40 57 48 83 EC 20 48 8B F9 48 85 D2 75 08 32 C0" func_93 [ DIFF 0 ] [] - "40 53 48 83 EC 20 0F B6 89 EB 03 00 00 E8 9E D4" + "40 53 48 83 EC 20 0F B6 89 EB 03 00 00 E8 7E CE" func_94 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_95 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 48 8B 51 10 48 8B" func_96 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA E8 82 B8 9B FF 48 85" + "40 53 48 83 EC 20 48 8B DA E8 62 B2 9B FF 48 85" func_97 [ DIFF 0 ] [] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_98 [ DIFF 0 ] [] - "F3 0F 10 05 1C 99 3A 01 C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 1C A9 3A 01 C3 CC CC CC CC CC CC CC" func_99 [ DIFF 0 ] [] "48 8B C1 C3 CC CC CC CC CC CC CC CC CC CC CC CC" func_100 [ DIFF 0 ] [] @@ -215,7 +215,7 @@ func_104 [ DIFF 0 ] [] func_105 [ DIFF 1 ] ["C_C4"] "48 89 5C 24 08 57 48 83 EC 20 8B DA 48 8B F9 E8" func_106 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 D2 CB A8 FF 0F B6" + "40 53 48 83 EC 20 48 8B D9 E8 02 CB A8 FF 0F B6" func_107 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_108 [ DIFF 0 ] [] @@ -255,7 +255,7 @@ func_124 [ DIFF 0 ] [] func_125 [ DIFF 0 ] [] "48 89 5C 24 20 56 57 41 56 48 83 EC 60 0F 29 74" func_126 [ DIFF 0 ] [] - "48 83 EC 28 E8 87 5B 34 00 0F B6 80 68 18 00 00" + "48 83 EC 28 E8 A7 61 34 00 0F B6 80 68 18 00 00" func_127 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B D9 E8 B2 22 18 00 48 85" func_128 [ DIFF 0 ] [] @@ -271,7 +271,7 @@ func_132 [ DIFF 0 ] [] func_133 [ DIFF 0 ] [] "40 57 48 83 EC 20 48 8B F9 E8 92 6F 18 00 83 BF" func_134 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 C2 37 C2 FF 48 85" + "40 53 48 83 EC 20 48 8B D9 E8 A2 31 C2 FF 48 85" func_135 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 48 89 7C 24 18 55" func_136 [ DIFF 0 ] [] @@ -295,7 +295,7 @@ func_144 [ DIFF 0 ] [] func_145 [ DIFF 1 ] ["C_C4"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_146 [ DIFF 0 ] [] - "40 57 48 83 EC 70 48 8B F9 E8 32 E2 86 00 84 C0" + "40 57 48 83 EC 70 48 8B F9 E8 A2 E4 86 00 84 C0" func_147 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_148 [ DIFF 0 ] [] @@ -347,13 +347,13 @@ func_170 [ DIFF 0 ] [] func_171 [ DIFF 0 ] [] "48 89 5C 24 10 48 89 6C 24 18 56 57 41 54 41 56" func_172 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA E8 E2 31 C5 FF F2 0F" + "40 53 48 83 EC 20 48 8B DA E8 C2 2B C5 FF F2 0F" func_173 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA E8 D2 31 C5 FF F2 0F" + "40 53 48 83 EC 20 48 8B DA E8 B2 2B C5 FF F2 0F" func_174 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA E8 12 CD C4 FF F2 0F" + "40 53 48 83 EC 20 48 8B DA E8 F2 C6 C4 FF F2 0F" func_175 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA E8 22 3D C5 FF F2 0F" + "40 53 48 83 EC 20 48 8B DA E8 02 37 C5 FF F2 0F" func_176 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B DA E8 52 58 05 00 F2 0F" func_177 [ DIFF 0 ] [] @@ -361,9 +361,9 @@ func_177 [ DIFF 0 ] [] func_178 [ DIFF 0 ] [] "40 56 48 83 EC 30 48 8B F1 0F 29 74 24 20 48 8B" func_179 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 30 F3 0F 10 15 96 B8" + "48 89 5C 24 08 57 48 83 EC 30 F3 0F 10 15 96 C8" func_180 [ DIFF 0 ] [] - "F3 0F 10 15 E0 A8 3A 01 48 81 C1 80 0D 00 00 33" + "F3 0F 10 15 E0 B8 3A 01 48 81 C1 80 0D 00 00 33" func_181 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B 01 48 8B DA FF 90 80 02" func_182 [ DIFF 0 ] [] @@ -375,7 +375,7 @@ func_184 [ DIFF 0 ] [] func_185 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_186 [ DIFF 0 ] [] - "F2 0F 10 05 E8 40 3A 01 F2 0F 11 02 8B 05 E6 40" + "F2 0F 10 05 E8 50 3A 01 F2 0F 11 02 8B 05 E6 50" func_187 [ DIFF 0 ] [] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_188 [ DIFF 0 ] [] @@ -391,13 +391,13 @@ func_192 [ DIFF 0 ] [] func_193 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B D9 E8 52 75 18 00 48 8B" func_194 [ DIFF 0 ] [] - "48 8B 89 38 03 00 00 48 85 C9 0F 85 10 FE 99 FF" + "48 8B 89 38 03 00 00 48 85 C9 0F 85 F0 F7 99 FF" func_195 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_196 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_197 [ DIFF 0 ] [] - "48 8D 05 B1 46 09 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 D1 50 09 01 C3 CC CC CC CC CC CC CC CC" func_198 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_199 [ DIFF 0 ] [] @@ -415,7 +415,7 @@ func_204 [ DIFF 0 ] [] func_205 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B DA E8 B2 05 05 00 F2 0F" func_206 [ DIFF 0 ] [] - "E9 4B C0 9C FF CC CC CC CC CC CC CC CC CC CC CC" + "E9 2B BA 9C FF CC CC CC CC CC CC CC CC CC CC CC" func_207 [ DIFF 0 ] [] "48 89 5C 24 10 48 89 74 24 18 55 57 41 56 48 8B" func_208 [ DIFF 0 ] [] @@ -447,7 +447,7 @@ func_220 [ DIFF 0 ] [] func_221 [ DIFF 0 ] [] "48 83 EC 38 48 8B 89 30 03 00 00 0F 29 74 24 20" func_222 [ DIFF 0 ] [] - "0F B6 81 70 0B 00 00 F3 0F 10 15 69 17 ED 00 66" + "0F B6 81 70 0B 00 00 F3 0F 10 15 49 21 ED 00 66" func_223 [ DIFF 0 ] [] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_224 [ DIFF 0 ] [] @@ -457,7 +457,7 @@ func_225 [ DIFF 0 ] [] func_226 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_227 [ DIFF 0 ] [] - "C6 05 A9 FE 7D 01 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 89 08 7E 01 01 C3 CC CC CC CC CC CC CC CC" func_228 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_229 [ DIFF 0 ] [] @@ -485,13 +485,13 @@ func_239 [ DIFF 0 ] [] func_240 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_241 [ DIFF 0 ] [] - "48 8B C2 48 8B D1 48 8B C8 E9 62 3E CC FF CC CC" + "48 8B C2 48 8B D1 48 8B C8 E9 42 38 CC FF CC CC" func_242 [ DIFF 0 ] [] "48 8B C1 C3 CC CC CC CC CC CC CC CC CC CC CC CC" func_243 [ DIFF 0 ] [] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_244 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 E8 3E D7" + "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 E8 2E D7" func_245 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_246 [ DIFF 0 ] [] @@ -505,7 +505,7 @@ func_249 [ DIFF 0 ] [] func_250 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_251 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA E8 72 B8 B8 FF F3 0F" + "40 53 48 83 EC 20 48 8B DA E8 52 B2 B8 FF F3 0F" func_252 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_253 [ DIFF 0 ] [] @@ -523,7 +523,7 @@ func_258 [ DIFF 0 ] [] func_259 [ DIFF 0 ] [] "48 89 5C 24 10 48 89 6C 24 18 48 89 74 24 20 57" func_260 [ DIFF 0 ] [] - "48 83 EC 28 8B 0D D6 BE 9F 01 65 48 8B 04 25 58" + "48 83 EC 28 8B 0D B6 C8 9F 01 65 48 8B 04 25 58" func_261 [ DIFF 0 ] [] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_262 [ DIFF 0 ] [] @@ -541,7 +541,7 @@ func_267 [ DIFF 0 ] [] func_268 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_269 [ DIFF 0 ] [] - "48 83 EC 28 E8 17 AE 34 00 48 8B C8 48 83 C4 28" + "48 83 EC 28 E8 37 B4 34 00 48 8B C8 48 83 C4 28" func_270 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_271 [ DIFF 0 ] [] @@ -591,7 +591,7 @@ func_292 [ DIFF 0 ] [] func_293 [ DIFF 0 ] [] "39 91 68 18 00 00 74 06 89 91 68 18 00 00 44 39" func_294 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 72 A6 C2 FF 80 B8" + "40 53 48 83 EC 20 48 8B D9 E8 B2 A5 C2 FF 80 B8" func_295 [ DIFF 0 ] [] "8B 81 70 18 00 00 C3 CC CC CC CC CC CC CC CC CC" func_296 [ DIFF 0 ] [] @@ -627,9 +627,9 @@ func_310 [ DIFF 0 ] [] func_311 [ DIFF 0 ] [] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_312 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 8B 15 C0 1A A1 01" + "48 89 5C 24 08 57 48 83 EC 20 8B 15 A0 24 A1 01" func_313 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 8B 15 50 1B A1 01" + "48 89 5C 24 08 57 48 83 EC 20 8B 15 30 25 A1 01" func_314 [ DIFF 7 ] ["C_BaseCSGrenade", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_MolotovGrenade", "C_SmokeGrenade"] "B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_315 [ DIFF 0 ] [] @@ -639,7 +639,7 @@ func_316 [ DIFF 0 ] [] func_317 [ DIFF 0 ] [] "48 8B 81 88 03 00 00 48 85 C0 74 2B 8B 88 4C 04" func_318 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 8B 15 50 72 9F 01" + "48 89 5C 24 08 57 48 83 EC 20 8B 15 30 7C 9F 01" func_319 [ DIFF 0 ] [] "48 8B 81 88 03 00 00 8B 80 00 07 00 00 C3 CC CC" func_320 [ DIFF 0 ] [] @@ -685,7 +685,7 @@ func_339 [ DIFF 0 ] [] func_340 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_341 [ DIFF 0 ] [] - "8B 91 20 05 00 00 83 FA FF 74 5C 48 8B 0D 06 6E" + "8B 91 20 05 00 00 83 FA FF 74 5C 48 8B 0D E6 77" func_342 [ DIFF 1 ] ["C_WeaponTaser"] "0F 57 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC" func_343 [ DIFF 3 ] ["C_C4", "C_IncendiaryGrenade", "C_MolotovGrenade"] @@ -755,13 +755,13 @@ func_374 [ DIFF 0 ] [] func_375 [ DIFF 1 ] ["C_WeaponTaser"] "48 8B 81 88 03 00 00 8B 80 40 04 00 00 C3 CC CC" func_376 [ DIFF 0 ] [] - "F3 0F 10 05 EC AB FA 00 C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 CC B5 FA 00 C3 CC CC CC CC CC CC CC" func_377 [ DIFF 0 ] [] "85 D2 74 26 83 EA 01 74 13 83 FA 01 75 1C 48 8B" func_378 [ DIFF 0 ] [] "85 D2 74 2E 83 EA 01 74 19 83 FA 01 74 04 0F 57" func_379 [ DIFF 0 ] [] - "48 83 EC 28 E8 77 06 7C 00 48 8B C8 E8 7F 3A 81" + "48 83 EC 28 E8 47 07 7C 00 48 8B C8 E8 4F 3B 81" func_380 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_381 [ DIFF 0 ] [] @@ -775,7 +775,7 @@ func_384 [ DIFF 0 ] [] func_385 [ DIFF 1 ] ["C_WeaponCZ75a"] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_386 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] - "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 E8 CE C7" + "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 E8 9E C8" func_387 [ DIFF 33 ] ["C_AK47", "C_CSWeaponBaseGun", "C_DEagle", "C_WeaponAWP", "C_WeaponAug", "C_WeaponBizon", "C_WeaponCZ75a", "C_WeaponElite", "C_WeaponFamas", "C_WeaponFiveSeven", "C_WeaponG3SG1", "C_WeaponGalilAR", "C_WeaponGlock", "C_WeaponHKP2000", "C_WeaponM249", "C_WeaponM4A1", "C_WeaponM4A1Silencer", "C_WeaponMAC10", "C_WeaponMP5SD", "C_WeaponMP7", "C_WeaponMP9", "C_WeaponMag7", "C_WeaponNegev", "C_WeaponP250", "C_WeaponP90", "C_WeaponRevolver", "C_WeaponSCAR20", "C_WeaponSG556", "C_WeaponSSG08", "C_WeaponTaser", "C_WeaponTec9", "C_WeaponUMP45", "C_WeaponUSPSilencer"] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_388 [ DIFF 8 ] ["C_BaseCSGrenade", "C_C4", "C_DecoyGrenade", "C_Flashbang", "C_HEGrenade", "C_IncendiaryGrenade", "C_MolotovGrenade", "C_SmokeGrenade"] diff --git a/dump/windows/vtable_diff/engine2/CEngineClient.txt b/dump/windows/vtable_diff/engine2/CEngineClient.txt index 3e2bd17..7581d47 100644 --- a/dump/windows/vtable_diff/engine2/CEngineClient.txt +++ b/dump/windows/vtable_diff/engine2/CEngineClient.txt @@ -9,9 +9,9 @@ func_1 [ DIFF 0 ] [] func_2 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] - "48 83 EC 28 48 83 3D BC 24 61 00 00 74 07 33 C9" + "48 83 EC 28 48 83 3D FC 32 61 00 00 74 07 33 C9" func_4 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 45 31 61 00 48 85 C0 74 1F" + "48 83 EC 28 48 8B 05 85 3F 61 00 48 85 C0 74 1F" func_5 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] @@ -25,343 +25,343 @@ func_9 [ DIFF 0 ] [] func_10 [ DIFF 0 ] [] "B8 02 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 BD 09 87 00 48 85 C0 74 21" + "48 83 EC 28 48 8B 05 6D 19 87 00 48 85 C0 74 21" func_12 [ DIFF 0 ] [] - "F3 0F 10 05 04 47 54 00 C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 8C 57 54 00 C3 CC CC CC CC CC CC CC" func_13 [ DIFF 0 ] [] - "49 8B C0 48 8B CA 48 8B D0 4D 8B C1 E9 FF 02 1C" + "49 8B C0 48 8B CA 48 8B D0 4D 8B C1 E9 DF 03 1C" func_14 [ DIFF 0 ] [] "40 53 0F B6 44 24 38 4D 8B D1 4C 8B 4C 24 30 45" func_15 [ DIFF 0 ] [] - "8B 05 EA 3E 87 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 AA 4E 87 00 C3 CC CC CC CC CC CC CC CC CC" func_16 [ DIFF 0 ] [] "48 83 EC 48 0F B6 44 24 78 48 C7 44 24 30 00 00" func_17 [ DIFF 0 ] [] - "45 33 C9 48 8D 0D 56 11 87 00 E9 81 CF 16 00 CC" + "45 33 C9 48 8D 0D 06 21 87 00 E9 51 D0 16 00 CC" func_18 [ DIFF 0 ] [] - "48 83 EC 28 8B 05 66 77 87 00 85 C0 75 4C 48 8D" + "48 83 EC 28 8B 05 2E 87 87 00 85 C0 75 4C 48 8D" func_19 [ DIFF 0 ] [] - "40 53 55 41 56 48 83 EC 20 48 8B 2D C8 18 87 00" + "40 53 55 41 56 48 83 EC 20 48 8B 2D 78 28 87 00" func_20 [ DIFF 0 ] [] - "4C 8B 05 91 17 87 00 4D 85 C0 74 5D 85 D2 79 23" + "4C 8B 05 41 27 87 00 4D 85 C0 74 5D 85 D2 79 23" func_21 [ DIFF 0 ] [] "41 0F B6 C0 C1 E0 1F 89 02 48 8B C2 C3 CC CC CC" func_22 [ DIFF 0 ] [] - "4C 8B 0D 11 17 87 00 4D 85 C9 74 33 45 84 C0 74" + "4C 8B 0D C1 26 87 00 4D 85 C9 74 33 45 84 C0 74" func_23 [ DIFF 0 ] [] - "4C 8B 05 C1 16 87 00 4D 85 C0 74 50 85 D2 79 28" + "4C 8B 05 71 26 87 00 4D 85 C0 74 50 85 D2 79 28" func_24 [ DIFF 0 ] [] - "48 8D 05 A1 76 87 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 69 86 87 00 C3 CC CC CC CC CC CC CC CC" func_25 [ DIFF 0 ] [] - "48 8B CA 0F 28 D3 41 8B D0 E9 B2 3A 1A 00 CC CC" + "48 8B CA 0F 28 D3 41 8B D0 E9 92 3B 1A 00 CC CC" func_26 [ DIFF 0 ] [] - "48 83 EC 28 83 3D 61 30 87 00 00 7E 1A 48 8B 0D" + "48 83 EC 28 83 3D 11 40 87 00 00 7E 1A 48 8B 0D" func_27 [ DIFF 0 ] [] "F3 0F 10 5C 24 28 41 8B C0 48 8B CA 45 8B C1 8B" func_28 [ DIFF 0 ] [] - "41 0F B6 C0 48 8B CA 0F B6 D0 45 8B C1 E9 FE 49" + "41 0F B6 C0 48 8B CA 0F B6 D0 45 8B C1 E9 DE 4A" func_29 [ DIFF 0 ] [] "48 83 EC 68 48 C7 44 24 58 00 00 00 00 48 8B C2" func_30 [ DIFF 0 ] [] - "8B 05 52 2B 87 00 85 C0 79 09 33 C9 48 8B 01 48" + "8B 05 02 3B 87 00 85 C0 79 09 33 C9 48 8B 01 48" func_31 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D CD 0E 87 00 48 85 C9 74 29" + "48 83 EC 28 48 8B 0D 7D 1E 87 00 48 85 C9 74 29" func_32 [ DIFF 0 ] [] - "4C 8B 0D 91 0E 87 00 4D 85 C9 74 38 45 85 C0 78" + "4C 8B 0D 41 1E 87 00 4D 85 C9 74 38 45 85 C0 78" func_33 [ DIFF 0 ] [] - "4C 8B 0D 41 0E 87 00 4D 85 C9 74 1E 33 C0 41 83" + "4C 8B 0D F1 1D 87 00 4D 85 C9 74 1E 33 C0 41 83" func_34 [ DIFF 0 ] [] - "48 8B 0D 01 0E 87 00 4C 8B CA 48 85 C9 74 4E 33" + "48 8B 0D B1 1D 87 00 4C 8B CA 48 85 C9 74 4E 33" func_35 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 8D 0D 87 00 48 85 C9 74 1D" + "48 83 EC 28 48 8B 0D 3D 1D 87 00 48 85 C9 74 1D" func_36 [ DIFF 0 ] [] - "48 8B 05 51 0D 87 00 48 85 C0 74 07 8B 80 94 03" + "48 8B 05 01 1D 87 00 48 85 C0 74 07 8B 80 94 03" func_37 [ DIFF 0 ] [] - "48 8B 05 31 0D 87 00 48 85 C0 74 07 8B 80 30 02" + "48 8B 05 E1 1C 87 00 48 85 C0 74 07 8B 80 30 02" func_38 [ DIFF 0 ] [] - "48 8B 05 91 0C 87 00 48 85 C0 74 15 80 B8 67 14" + "48 8B 05 41 1C 87 00 48 85 C0 74 15 80 B8 67 14" func_39 [ DIFF 0 ] [] - "48 8B 05 61 0C 87 00 48 85 C0 74 0B 83 B8 20 02" + "48 8B 05 11 1C 87 00 48 85 C0 74 0B 83 B8 20 02" func_40 [ DIFF 0 ] [] - "4C 8B 05 D1 0A 87 00 4D 85 C0 74 10 48 63 CA 48" + "4C 8B 05 81 1A 87 00 4D 85 C0 74 10 48 63 CA 48" func_41 [ DIFF 0 ] [] - "48 83 3D B0 0A 87 00 00 74 0E 48 8B 0D DF 88 57" + "48 83 3D 60 1A 87 00 00 74 0E 48 8B 0D 7F 98 57" func_42 [ DIFF 0 ] [] - "48 83 EC 28 48 83 3D 5C 0A 87 00 00 74 2C 48 8B" + "48 83 EC 28 48 83 3D 0C 1A 87 00 00 74 2C 48 8B" func_43 [ DIFF 0 ] [] - "48 83 3D 10 0A 87 00 00 74 0E 48 8B 0D 37 88 57" + "48 83 3D C0 19 87 00 00 74 0E 48 8B 0D D7 97 57" func_44 [ DIFF 0 ] [] - "48 83 3D E0 09 87 00 00 74 0E 48 8B 0D 0F 88 57" + "48 83 3D 90 19 87 00 00 74 0E 48 8B 0D AF 97 57" func_45 [ DIFF 0 ] [] - "8B 05 92 22 87 00 85 C0 78 18 0F B7 C8 48 8B 05" + "8B 05 42 32 87 00 85 C0 78 18 0F B7 C8 48 8B 05" func_46 [ DIFF 0 ] [] - "0F B6 05 51 B1 57 00 C3 CC CC CC CC CC CC CC CC" + "0F B6 05 F1 C0 57 00 C3 CC CC CC CC CC CC CC CC" func_47 [ DIFF 0 ] [] - "48 8D 05 B1 B0 57 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 51 C0 57 00 C3 CC CC CC CC CC CC CC CC" func_48 [ DIFF 0 ] [] - "48 8B 0D F1 12 87 00 48 85 C9 74 17 48 8B 01 83" + "48 8B 0D A1 22 87 00 48 85 C9 74 17 48 8B 01 83" func_49 [ DIFF 0 ] [] "48 8B C4 48 89 58 08 48 89 68 10 48 89 70 18 57" func_50 [ DIFF 0 ] [] - "48 8B 05 01 0F 87 00 48 85 C0 74 06 88 90 64 14" + "48 8B 05 B1 1E 87 00 48 85 C0 74 06 88 90 64 14" func_51 [ DIFF 0 ] [] "88 51 28 C3 CC CC CC CC CC CC CC CC CC CC CC CC" func_52 [ DIFF 0 ] [] - "48 8B 0D F9 BD 5E 00 48 8B 01 48 FF A0 70 01 00" + "48 8B 0D A9 CD 5E 00 48 8B 01 48 FF A0 70 01 00" func_53 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 05 13 CD 57 00 48 8D 0D" + "40 53 48 83 EC 20 48 8B 05 B3 DC 57 00 48 8D 0D" func_54 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 05 A3 CC 57 00 48 8D 0D" + "40 53 48 83 EC 20 48 8B 05 43 DC 57 00 48 8D 0D" func_55 [ DIFF 0 ] [] - "48 8B 05 29 CC 57 00 48 8D 0D 22 CC 57 00 48 FF" + "48 8B 05 C9 DB 57 00 48 8D 0D C2 DB 57 00 48 FF" func_56 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 05 03 CC 57 00 48 8D 0D" + "40 53 48 83 EC 20 48 8B 05 A3 DB 57 00 48 8D 0D" func_57 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 05 D3 CB 57 00 48 8D 0D" + "40 53 48 83 EC 20 48 8B 05 73 DB 57 00 48 8D 0D" func_58 [ DIFF 0 ] [] "B8 FF FF FF FF C3 CC CC CC CC CC CC CC CC CC CC" func_59 [ DIFF 0 ] [] - "48 8B 0D 99 CD 5E 00 48 8B 01 48 FF A0 C0 00 00" + "48 8B 0D 49 DD 5E 00 48 8B 01 48 FF A0 C0 00 00" func_60 [ DIFF 0 ] [] - "48 8B 0D C9 C6 5E 00 48 8B 01 48 FF A0 10 01 00" + "48 8B 0D 79 D6 5E 00 48 8B 01 48 FF A0 10 01 00" func_61 [ DIFF 0 ] [] - "40 53 48 83 EC 20 B9 1C 00 00 00 FF 15 67 EE 3E" + "40 53 48 83 EC 20 B9 1C 00 00 00 FF 15 17 FE 3E" func_62 [ DIFF 0 ] [] - "48 83 EC 28 E8 97 6F 38 00 84 C0 74 0C 48 8D 05" + "48 83 EC 28 E8 77 70 38 00 84 C0 74 0C 48 8D 05" func_63 [ DIFF 0 ] [] - "48 83 EC 28 E8 37 6F 38 00 84 C0 74 0C 48 8D 05" + "48 83 EC 28 E8 17 70 38 00 84 C0 74 0C 48 8D 05" func_64 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_65 [ DIFF 0 ] [] - "48 8B 0D E1 C2 5E 00 48 85 C9 74 07 48 8B 01 48" + "48 8B 0D 91 D2 5E 00 48 85 C9 74 07 48 8B 01 48" func_66 [ DIFF 0 ] [] - "48 8D 05 C9 A1 57 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 69 B1 57 00 C3 CC CC CC CC CC CC CC CC" func_67 [ DIFF 0 ] [] - "48 8B 05 49 86 57 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 E9 95 57 00 C3 CC CC CC CC CC CC CC CC" func_68 [ DIFF 0 ] [] - "48 8D 05 49 82 57 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 E9 91 57 00 C3 CC CC CC CC CC CC CC CC" func_69 [ DIFF 0 ] [] - "48 8B 0D F9 AF 57 00 48 8B 01 48 FF 60 68 CC CC" + "48 8B 0D 99 BF 57 00 48 8B 01 48 FF 60 68 CC CC" func_70 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 35 B0 57 00 48 8B 01 FF 50" + "48 83 EC 28 48 8B 0D D5 BF 57 00 48 8B 01 FF 50" func_71 [ DIFF 0 ] [] - "48 8B 0D 31 86 57 00 48 8B 01 48 FF 60 30 CC CC" + "48 8B 0D D1 95 57 00 48 8B 01 48 FF 60 30 CC CC" func_72 [ DIFF 0 ] [] - "48 8B 0D 29 86 57 00 48 8B 01 48 FF 60 18 CC CC" + "48 8B 0D C9 95 57 00 48 8B 01 48 FF 60 18 CC CC" func_73 [ DIFF 0 ] [] - "48 8B 0D 19 86 57 00 48 8B 01 48 FF 60 10 CC CC" + "48 8B 0D B9 95 57 00 48 8B 01 48 FF 60 10 CC CC" func_74 [ DIFF 0 ] [] - "48 8B 0D F9 85 57 00 48 8B 01 48 FF A0 90 00 00" + "48 8B 0D 99 95 57 00 48 8B 01 48 FF A0 90 00 00" func_75 [ DIFF 0 ] [] - "48 8B 0D D9 85 57 00 48 8B 01 48 FF 60 30 CC CC" + "48 8B 0D 79 95 57 00 48 8B 01 48 FF 60 30 CC CC" func_76 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 55 B0 57 00 48 8B 01 FF 50" + "48 83 EC 28 48 8B 0D F5 BF 57 00 48 8B 01 FF 50" func_77 [ DIFF 0 ] [] - "48 83 3D 80 09 87 00 00 74 11 48 8B 0D AF 87 57" + "48 83 3D 30 19 87 00 00 74 11 48 8B 0D 4F 97 57" func_78 [ DIFF 0 ] [] - "48 83 3D 60 09 87 00 00 74 11 48 8B 0D 8F 87 57" + "48 83 3D 10 19 87 00 00 74 11 48 8B 0D 2F 97 57" func_79 [ DIFF 0 ] [] - "48 83 3D 40 09 87 00 00 74 11 48 8B 0D 6F 87 57" + "48 83 3D F0 18 87 00 00 74 11 48 8B 0D 0F 97 57" func_80 [ DIFF 0 ] [] - "48 83 3D 00 09 87 00 00 74 19 48 8B 0D 2F 87 57" + "48 83 3D B0 18 87 00 00 74 19 48 8B 0D CF 96 57" func_81 [ DIFF 0 ] [] - "48 83 3D D0 08 87 00 00 74 11 48 8B 0D FF 86 57" + "48 83 3D 80 18 87 00 00 74 11 48 8B 0D 9F 96 57" func_82 [ DIFF 0 ] [] - "48 83 3D B0 08 87 00 00 74 14 48 8B 0D DF 86 57" + "48 83 3D 60 18 87 00 00 74 14 48 8B 0D 7F 96 57" func_83 [ DIFF 0 ] [] - "48 83 3D 20 09 87 00 00 74 11 48 8B 0D 4F 87 57" + "48 83 3D D0 18 87 00 00 74 11 48 8B 0D EF 96 57" func_84 [ DIFF 0 ] [] - "48 8B 05 91 08 87 00 48 85 C0 74 15 80 B8 D8 35" + "48 8B 05 41 18 87 00 48 85 C0 74 15 80 B8 D8 35" func_85 [ DIFF 0 ] [] - "40 53 48 83 EC 30 48 8B DA 48 8D 0D C8 1C 87 00" + "40 53 48 83 EC 30 48 8B DA 48 8D 0D 78 2C 87 00" func_86 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 8B FA 48 8D 0D 4D" + "48 89 5C 24 08 57 48 83 EC 20 8B FA 48 8D 0D FD" func_87 [ DIFF 0 ] [] - "8B 05 CE 92 57 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 6E A2 57 00 C3 CC CC CC CC CC CC CC CC CC" func_88 [ DIFF 0 ] [] - "8B 05 26 4F 87 00 33 C9 38 0D 6B 16 5F 00 0F 45" + "8B 05 D6 5E 87 00 33 C9 38 0D 1B 26 5F 00 0F 45" func_89 [ DIFF 0 ] [] - "48 8B 0D E9 DE 87 00 48 8D 05 C1 46 49 00 48 85" + "48 8B 0D B9 EE 87 00 48 8D 05 71 56 49 00 48 85" func_90 [ DIFF 0 ] [] - "48 8B 0D D1 DE 87 00 48 8D 05 A1 46 49 00 48 85" + "48 8B 0D A1 EE 87 00 48 8D 05 51 56 49 00 48 85" func_91 [ DIFF 0 ] [] - "48 8B 05 81 33 87 00 48 85 C0 74 07 8B 80 38 02" + "48 8B 05 31 43 87 00 48 85 C0 74 07 8B 80 38 02" func_92 [ DIFF 0 ] [] - "8B 05 2A 49 87 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 F2 58 87 00 C3 CC CC CC CC CC CC CC CC CC" func_93 [ DIFF 0 ] [] - "48 8B 0D F9 C7 5E 00 48 8B 01 48 FF A0 D8 00 00" + "48 8B 0D A9 D7 5E 00 48 8B 01 48 FF A0 D8 00 00" func_94 [ DIFF 0 ] [] - "48 89 15 71 E5 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 89 15 21 F5 5E 00 C3 CC CC CC CC CC CC CC CC" func_95 [ DIFF 0 ] [] - "48 8B 05 61 E5 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 11 F5 5E 00 C3 CC CC CC CC CC CC CC CC" func_96 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 05 73 CD 57 00 48 8D 0D" + "40 53 48 83 EC 20 48 8B 05 13 DD 57 00 48 8D 0D" func_97 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 05 43 CD 57 00 48 8D 0D" + "40 53 48 83 EC 20 48 8B 05 E3 DC 57 00 48 8D 0D" func_98 [ DIFF 0 ] [] - "48 8B 05 E9 CC 57 00 48 8D 0D E2 CC 57 00 48 FF" + "48 8B 05 89 DC 57 00 48 8D 0D 82 DC 57 00 48 FF" func_99 [ DIFF 0 ] [] - "48 8B 05 C9 CC 57 00 48 8D 0D C2 CC 57 00 48 FF" + "48 8B 05 69 DC 57 00 48 8D 0D 62 DC 57 00 48 FF" func_100 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 30 48 8B 0D 97 82 57" + "48 89 5C 24 08 57 48 83 EC 30 48 8B 0D 37 92 57" func_101 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 48" func_102 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_103 [ DIFF 0 ] [] - "F3 0F 10 05 04 47 54 00 C3 CC CC CC CC CC CC CC" + "F3 0F 10 05 8C 57 54 00 C3 CC CC CC CC CC CC CC" func_104 [ DIFF 0 ] [] - "48 8B 0D E1 BB 5E 00 4C 8B 09 49 FF A1 48 01 00" + "48 8B 0D 91 CB 5E 00 4C 8B 09 49 FF A1 48 01 00" func_105 [ DIFF 0 ] [] - "48 8B 0D C1 BB 5E 00 48 8B 01 48 FF A0 50 01 00" + "48 8B 0D 71 CB 5E 00 48 8B 01 48 FF A0 50 01 00" func_106 [ DIFF 0 ] [] - "48 8B 0D A1 BB 5E 00 48 8B 01 48 FF A0 58 01 00" + "48 8B 0D 51 CB 5E 00 48 8B 01 48 FF A0 58 01 00" func_107 [ DIFF 0 ] [] - "48 8B 0D 61 BD 5E 00 48 8B 01 48 FF A0 D8 00 00" + "48 8B 0D 11 CD 5E 00 48 8B 01 48 FF A0 D8 00 00" func_108 [ DIFF 0 ] [] - "48 8B 05 69 08 87 00 48 85 C0 74 08 F3 0F 11 88" + "48 8B 05 19 18 87 00 48 85 C0 74 08 F3 0F 11 88" func_109 [ DIFF 0 ] [] - "48 89 15 C9 E1 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 89 15 79 F1 5E 00 C3 CC CC CC CC CC CC CC CC" func_110 [ DIFF 0 ] [] - "48 8B 05 B9 E1 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 69 F1 5E 00 C3 CC CC CC CC CC CC CC CC" func_111 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_112 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_113 [ DIFF 0 ] [] - "48 83 EC 38 8B 05 3E 1A 87 00 85 C0 78 4D 0F B7" + "48 83 EC 38 8B 05 EE 29 87 00 85 C0 78 4D 0F B7" func_114 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 30 8B 05 A8 19 87 00" + "48 89 5C 24 08 57 48 83 EC 30 8B 05 58 29 87 00" func_115 [ DIFF 0 ] [] - "48 8B 0D C9 C6 5E 00 48 8B 01 48 FF A0 10 01 00" + "48 8B 0D 79 D6 5E 00 48 8B 01 48 FF A0 10 01 00" func_116 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 70 48 8B 1D 27 01 87" + "48 89 5C 24 08 57 48 83 EC 70 48 8B 1D D7 10 87" func_117 [ DIFF 0 ] [] "48 89 74 24 10 48 89 7C 24 20 55 48 8B EC 48 81" func_118 [ DIFF 0 ] [] - "45 33 C0 48 8D 0D 16 9C 57 00 BA FF FF FF FF E9" + "45 33 C0 48 8D 0D B6 AB 57 00 BA FF FF FF FF E9" func_119 [ DIFF 0 ] [] - "48 8B 0D E9 ED 5E 00 48 8B 01 48 FF A0 90 00 00" + "48 8B 0D 99 FD 5E 00 48 8B 01 48 FF A0 90 00 00" func_120 [ DIFF 0 ] [] - "48 8B 05 41 33 87 00 48 85 C0 74 16 48 8B 88 98" + "48 8B 05 F1 42 87 00 48 85 C0 74 16 48 8B 88 98" func_121 [ DIFF 0 ] [] - "48 83 3D 10 33 87 00 00 74 28 F3 0F 59 0D 36 1E" + "48 83 3D C0 42 87 00 00 74 28 F3 0F 59 0D 6E 2E" func_122 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 55 ED 5E 00 48 8B 01 FF 90" + "48 83 EC 28 48 8B 0D 05 FD 5E 00 48 8B 01 FF 90" func_123 [ DIFF 0 ] [] - "48 8B CA 49 8B D0 48 FF 25 43 16 3F 00 CC CC CC" + "48 8B CA 49 8B D0 48 FF 25 F3 25 3F 00 CC CC CC" func_124 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D 0F ED 5E" + "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D BF FC 5E" func_125 [ DIFF 0 ] [] - "40 55 48 83 EC 20 48 8D 6C 24 20 48 8B 0D DE AF" + "40 55 48 83 EC 20 48 8D 6C 24 20 48 8B 0D 7E BF" func_126 [ DIFF 0 ] [] "40 55 41 56 41 57 48 81 EC E0 01 00 00 48 8D 6C" func_127 [ DIFF 0 ] [] - "48 83 EC 28 8B 05 26 0A 5F 00 83 F8 01 7D 15 FF" + "48 83 EC 28 8B 05 D6 19 5F 00 83 F8 01 7D 15 FF" func_128 [ DIFF 0 ] [] - "48 83 EC 28 8B 05 FA 09 5F 00 83 F8 01 7D 15 FF" + "48 83 EC 28 8B 05 AA 19 5F 00 83 F8 01 7D 15 FF" func_129 [ DIFF 0 ] [] - "48 8B 0D E1 E7 5E 00 48 8B 01 48 FF A0 08 01 00" + "48 8B 0D 91 F7 5E 00 48 8B 01 48 FF A0 08 01 00" func_130 [ DIFF 0 ] [] - "48 8B 0D C1 E7 5E 00 48 8B 01 48 FF A0 10 01 00" + "48 8B 0D 71 F7 5E 00 48 8B 01 48 FF A0 10 01 00" func_131 [ DIFF 0 ] [] "48 8B C4 48 89 58 10 48 89 70 20 55 48 8D 68 A1" func_132 [ DIFF 0 ] [] - "48 8B 0D 31 2B 87 00 48 85 C9 0F 85 80 D3 00 00" + "48 8B 0D E1 3A 87 00 48 85 C9 0F 85 F0 D3 00 00" func_133 [ DIFF 0 ] [] - "4C 8B DC 53 41 57 48 83 EC 58 48 8B 1D E7 2A 87" + "4C 8B DC 53 41 57 48 83 EC 58 48 8B 1D 97 3A 87" func_134 [ DIFF 0 ] [] - "48 83 EC 48 48 8B 0D 3D 28 87 00 48 85 C9 74 43" + "48 83 EC 48 48 8B 0D ED 37 87 00 48 85 C9 74 43" func_135 [ DIFF 0 ] [] - "40 53 48 83 EC 50 48 8B 1D DB 27 87 00 48 85 DB" + "40 53 48 83 EC 50 48 8B 1D 8B 37 87 00 48 85 DB" func_136 [ DIFF 0 ] [] - "40 57 41 57 48 83 EC 38 48 8B 3D 59 29 87 00 4C" + "40 57 41 57 48 83 EC 38 48 8B 3D 09 39 87 00 4C" func_137 [ DIFF 0 ] [] - "48 8B 0D 81 29 87 00 48 85 C9 0F 85 70 C7 00 00" + "48 8B 0D 31 39 87 00 48 85 C9 0F 85 E0 C7 00 00" func_138 [ DIFF 0 ] [] - "48 8B 0D 11 2B 87 00 48 85 C9 0F 85 F0 DB 00 00" + "48 8B 0D C1 3A 87 00 48 85 C9 0F 85 60 DC 00 00" func_139 [ DIFF 0 ] [] "40 55 57 41 56 48 83 EC 60 48 8D 6C 24 20 48 8B" func_140 [ DIFF 0 ] [] - "48 8B 0D D9 B9 57 00 48 8B 01 48 FF 60 10 CC CC" + "48 8B 0D 79 C9 57 00 48 8B 01 48 FF 60 10 CC CC" func_141 [ DIFF 0 ] [] - "48 8B 0D C9 B9 57 00 48 8B 01 48 FF 60 30 CC CC" + "48 8B 0D 69 C9 57 00 48 8B 01 48 FF 60 30 CC CC" func_142 [ DIFF 0 ] [] - "48 8B 0D B9 B9 57 00 48 8B 01 48 FF 60 20 CC CC" + "48 8B 0D 59 C9 57 00 48 8B 01 48 FF 60 20 CC CC" func_143 [ DIFF 0 ] [] - "48 8B 0D A9 B9 57 00 48 8B 01 48 FF 60 68 CC CC" + "48 8B 0D 49 C9 57 00 48 8B 01 48 FF 60 68 CC CC" func_144 [ DIFF 0 ] [] - "48 8B 0D 99 B9 57 00 48 8B 01 48 FF A0 90 00 00" + "48 8B 0D 39 C9 57 00 48 8B 01 48 FF A0 90 00 00" func_145 [ DIFF 0 ] [] - "48 8B 0D 71 DF 5E 00 48 8B 01 48 FF A0 C0 00 00" + "48 8B 0D 21 EF 5E 00 48 8B 01 48 FF A0 C0 00 00" func_146 [ DIFF 0 ] [] - "48 8B 05 A1 24 87 00 48 85 C0 74 08 48 8B 80 10" + "48 8B 05 51 34 87 00 48 85 C0 74 08 48 8B 80 10" func_147 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 0D 53 87 00 48 85 C9 74 2D" + "48 83 EC 28 48 8B 0D BD 62 87 00 48 85 C9 74 2D" func_148 [ DIFF 0 ] [] - "48 8B 0D C1 52 87 00 48 85 C9 74 11 4C 8B C2 48" + "48 8B 0D 71 62 87 00 48 85 C9 74 11 4C 8B C2 48" func_149 [ DIFF 0 ] [] - "0F B6 05 3F 31 5F 00 C3 CC CC CC CC CC CC CC CC" + "0F B6 05 EF 40 5F 00 C3 CC CC CC CC CC CC CC CC" func_150 [ DIFF 0 ] [] - "48 8B 0D 91 52 87 00 48 85 C9 75 03 33 C0 C3 45" + "48 8B 0D 41 62 87 00 48 85 C9 75 03 33 C0 C3 45" func_151 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D 67 52 87" + "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D 17 62 87" func_152 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 0D 52 87 00 48 85 C9 75 07" + "48 83 EC 28 48 8B 0D BD 61 87 00 48 85 C9 75 07" func_153 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D AD 51 87 00 48 85 C9 74 54" + "48 83 EC 28 48 8B 0D 5D 61 87 00 48 85 C9 74 54" func_154 [ DIFF 0 ] [] - "48 83 EC 28 33 C9 E8 95 3A 18 00 48 8B 0D EE DA" + "48 83 EC 28 33 C9 E8 65 3B 18 00 48 8B 0D 9E EA" func_155 [ DIFF 0 ] [] - "48 8D 0D F9 2D 83 00 E9 64 E0 13 00 CC CC CC CC" + "48 8D 0D A9 3D 83 00 E9 34 E1 13 00 CC CC CC CC" func_156 [ DIFF 0 ] [] "40 55 41 55 48 83 EC 78 65 48 8B 04 25 58 00 00" func_157 [ DIFF 0 ] [] - "40 53 48 83 EC 20 8B 0D D0 EB 5E 00 33 DB 65 48" + "40 53 48 83 EC 20 8B 0D 80 FB 5E 00 33 DB 65 48" func_158 [ DIFF 0 ] [] "49 8B C1 4D 8B D0 4C 8B 4C 24 28 48 8B CA 4C 8B" func_159 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 7D 08 5F 00 48 85 C9 74 1C" + "48 83 EC 28 48 8B 0D 2D 18 5F 00 48 85 C9 74 1C" func_160 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 3D 08 5F 00 48 85 C9 74 10" + "48 83 EC 28 48 8B 0D ED 17 5F 00 48 85 C9 74 10" func_161 [ DIFF 0 ] [] - "48 83 EC 28 8B 0D 22 EA 5E 00 65 48 8B 04 25 58" + "48 83 EC 28 8B 0D D2 F9 5E 00 65 48 8B 04 25 58" func_162 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 1D 07 5F 00 48 85 C9 74 1E" + "48 83 EC 28 48 8B 0D CD 16 5F 00 48 85 C9 74 1E" func_163 [ DIFF 0 ] [] - "48 8B 0D E1 06 5F 00 48 85 C9 74 07 48 8B 01 48" + "48 8B 0D 91 16 5F 00 48 85 C9 74 07 48 8B 01 48" func_164 [ DIFF 0 ] [] - "48 8B 0D C1 06 5F 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D 71 16 5F 00 48 85 C9 74 0A 48 8B 01 48" func_165 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D BD 4A 87 00 48 85 C9 74 3E" + "48 83 EC 28 48 8B 0D 6D 5A 87 00 48 85 C9 74 3E" func_166 [ DIFF 0 ] [] - "40 57 48 83 EC 20 48 8B 0D 5B 4A 87 00 49 8B F8" + "40 57 48 83 EC 20 48 8B 0D 0B 5A 87 00 49 8B F8" func_167 [ DIFF 0 ] [] - "40 53 48 83 EC 20 8B DA FF 15 CA 00 3F 00 BA E8" + "40 53 48 83 EC 20 8B DA FF 15 7A 10 3F 00 BA E8" func_168 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 8D 49 87 00 48 85 C9 74 3E" + "48 83 EC 28 48 8B 0D 3D 59 87 00 48 85 C9 74 3E" func_169 [ DIFF 0 ] [] - "48 8B 0D 31 49 87 00 48 85 C9 74 1F 85 D2 78 1B" + "48 8B 0D E1 58 87 00 48 85 C9 74 1F 85 D2 78 1B" func_170 [ DIFF 0 ] [] - "48 83 EC 28 85 D2 75 26 FF 15 DA FF 3E 00 BA C5" + "48 83 EC 28 85 D2 75 26 FF 15 8A 0F 3F 00 BA C5" func_171 [ DIFF 0 ] [] "40 53 48 83 EC 40 48 8B DA 48 8D 4C 24 20 BA 18" func_172 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 5D 48 87 00 48 85 C9 74 1A" + "48 83 EC 28 48 8B 0D 0D 58 87 00 48 85 C9 74 1A" func_173 [ DIFF 0 ] [] - "48 8B 0D 21 48 87 00 48 85 C9 74 12 44 0F B6 C2" + "48 8B 0D D1 57 87 00 48 85 C9 74 12 44 0F B6 C2" func_174 [ DIFF 0 ] [] - "48 8B 0D 09 86 57 00 48 8B 01 48 FF 60 38 CC CC" + "48 8B 0D A9 95 57 00 48 8B 01 48 FF 60 38 CC CC" func_175 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 7D B0 57 00 48 8B 01 FF 50" + "48 83 EC 28 48 8B 0D 1D C0 57 00 48 8B 01 FF 50" func_176 [ DIFF 0 ] [] - "F2 0F 10 05 C0 03 4F 00 C3 CC CC CC CC CC CC CC" + "F2 0F 10 05 F8 13 4F 00 C3 CC CC CC CC CC CC CC" func_177 [ DIFF 0 ] [] - "48 8B 05 91 5C 87 00 48 85 C0 74 05 48 83 C0 08" + "48 8B 05 61 6C 87 00 48 85 C0 74 05 48 83 C0 08" func_178 [ DIFF 0 ] [] - "8B 0D 62 33 87 00 4C 8B C2 B8 67 66 66 66 F7 E9" + "8B 0D 12 43 87 00 4C 8B C2 B8 67 66 66 66 F7 E9" func_179 [ DIFF 0 ] [] - "48 8D 0D A1 B5 57 00 E9 F4 7D 0A 00 CC CC CC CC" + "48 8D 0D 41 C5 57 00 E9 44 7E 0A 00 CC CC CC CC" func_180 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_181 [ DIFF 0 ] [] @@ -371,17 +371,17 @@ func_182 [ DIFF 0 ] [] func_183 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57" func_184 [ DIFF 0 ] [] - "C6 05 69 68 57 00 00 C3 CC CC CC CC CC CC CC CC" + "C6 05 19 78 57 00 00 C3 CC CC CC CC CC CC CC CC" func_185 [ DIFF 0 ] [] - "48 8B 0D 31 15 87 00 48 85 C9 0F 85 40 51 FF FF" + "48 8B 0D E1 24 87 00 48 85 C9 0F 85 40 51 FF FF" func_186 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 7D 43 87 00 48 85 C9 74 47" + "48 83 EC 28 48 8B 0D 2D 53 87 00 48 85 C9 74 47" func_187 [ DIFF 0 ] [] - "4C 8B 0D 11 43 87 00 4D 85 C9 74 69 83 FA 06 77" + "4C 8B 0D C1 52 87 00 4D 85 C9 74 69 83 FA 06 77" func_188 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 6D 42 87 00 48 85 C9 74 54" + "48 83 EC 28 48 8B 0D 1D 52 87 00 48 85 C9 74 54" func_189 [ DIFF 0 ] [] - "48 8B 0D 71 13 87 00 48 85 C9 0F 85 80 6D FF FF" + "48 8B 0D 21 23 87 00 48 85 C9 0F 85 80 6D FF FF" ============================================= Bases: diff --git a/dump/windows/vtable_diff/engine2/CEngineServer.txt b/dump/windows/vtable_diff/engine2/CEngineServer.txt index a26ace9..7159959 100644 --- a/dump/windows/vtable_diff/engine2/CEngineServer.txt +++ b/dump/windows/vtable_diff/engine2/CEngineServer.txt @@ -9,9 +9,9 @@ func_1 [ DIFF 0 ] [] func_2 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] - "48 83 EC 28 48 83 3D BC 24 61 00 00 74 07 33 C9" + "48 83 EC 28 48 83 3D FC 32 61 00 00 74 07 33 C9" func_4 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 45 31 61 00 48 85 C0 74 1F" + "48 83 EC 28 48 8B 05 85 3F 61 00 48 85 C0 74 1F" func_5 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] @@ -25,223 +25,223 @@ func_9 [ DIFF 0 ] [] func_10 [ DIFF 0 ] [] "B8 02 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_11 [ DIFF 0 ] [] - "48 8B 05 69 0D 84 00 48 85 C0 74 08 83 78 38 04" + "48 8B 05 A9 1C 84 00 48 85 C0 74 08 83 78 38 04" func_12 [ DIFF 0 ] [] - "48 8B 0D 49 0D 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D 89 1C 84 00 48 85 C9 74 0A 48 8B 01 48" func_13 [ DIFF 0 ] [] - "49 8B C0 48 8B CA 48 8B D0 4D 8B C1 E9 FF 02 1C" + "49 8B C0 48 8B CA 48 8B D0 4D 8B C1 E9 DF 03 1C" func_14 [ DIFF 0 ] [] "40 53 0F B6 44 24 38 4D 8B D1 4C 8B 4C 24 30 45" func_15 [ DIFF 0 ] [] - "8B 05 EA 3E 87 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 AA 4E 87 00 C3 CC CC CC CC CC CC CC CC CC" func_16 [ DIFF 0 ] [] "48 83 EC 48 0F B6 44 24 78 48 C7 44 24 30 00 00" func_17 [ DIFF 0 ] [] - "45 33 C9 48 8D 0D 56 11 87 00 E9 81 CF 16 00 CC" + "45 33 C9 48 8D 0D 06 21 87 00 E9 51 D0 16 00 CC" func_18 [ DIFF 0 ] [] - "48 83 EC 28 8B 05 66 77 87 00 85 C0 75 4C 48 8D" + "48 83 EC 28 8B 05 2E 87 87 00 85 C0 75 4C 48 8D" func_19 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B 3D 2F F5 83" + "48 89 5C 24 08 57 48 83 EC 20 48 8B 3D 6F 04 84" func_20 [ DIFF 0 ] [] - "4C 8B 05 79 F4 83 00 4D 85 C0 74 42 83 FA FF 75" + "4C 8B 05 B9 03 84 00 4D 85 C0 74 42 83 FA FF 75" func_21 [ DIFF 0 ] [] "41 0F B6 C0 C1 E0 1F 89 02 48 8B C2 C3 CC CC CC" func_22 [ DIFF 0 ] [] - "4C 8B 0D 19 F4 83 00 4D 85 C9 74 2E 45 84 C0 74" + "4C 8B 0D 59 03 84 00 4D 85 C9 74 2E 45 84 C0 74" func_23 [ DIFF 0 ] [] - "4C 8B 05 C9 F3 83 00 4D 85 C0 74 28 85 D2 78 24" + "4C 8B 05 09 03 84 00 4D 85 C0 74 28 85 D2 78 24" func_24 [ DIFF 0 ] [] - "48 8D 05 A1 76 87 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 69 86 87 00 C3 CC CC CC CC CC CC CC CC" func_25 [ DIFF 0 ] [] - "48 8B CA 0F 28 D3 41 8B D0 E9 B2 3A 1A 00 CC CC" + "48 8B CA 0F 28 D3 41 8B D0 E9 92 3B 1A 00 CC CC" func_26 [ DIFF 0 ] [] - "48 83 EC 28 83 3D 61 30 87 00 00 7E 1A 48 8B 0D" + "48 83 EC 28 83 3D 11 40 87 00 00 7E 1A 48 8B 0D" func_27 [ DIFF 0 ] [] "F3 0F 10 5C 24 28 41 8B C0 48 8B CA 45 8B C1 8B" func_28 [ DIFF 0 ] [] - "41 0F B6 C0 48 8B CA 0F B6 D0 45 8B C1 E9 FE 49" + "41 0F B6 C0 48 8B CA 0F B6 D0 45 8B C1 E9 DE 4A" func_29 [ DIFF 0 ] [] "48 83 EC 68 48 C7 44 24 58 00 00 00 00 48 8B C2" func_30 [ DIFF 0 ] [] - "8B 05 52 2B 87 00 85 C0 79 09 33 C9 48 8B 01 48" + "8B 05 02 3B 87 00 85 C0 79 09 33 C9 48 8B 01 48" func_31 [ DIFF 0 ] [] "48 89 5C 24 10 48 89 74 24 18 57 48 83 EC 30 48" func_32 [ DIFF 0 ] [] - "48 83 EC 28 48 83 3D A4 0B 84 00 00 74 25 48 85" + "48 83 EC 28 48 83 3D E4 1A 84 00 00 74 25 48 85" func_33 [ DIFF 0 ] [] - "E9 DB 69 35 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 4B 6A 35 00 CC CC CC CC CC CC CC CC CC CC CC" func_34 [ DIFF 0 ] [] - "33 C0 4C 8D 05 17 E6 5B 00 8B C8 8B D0 0F 1F 00" + "33 C0 4C 8D 05 57 F5 5B 00 8B C8 8B D0 0F 1F 00" func_35 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 1D F3 0A 84 00 48 85 DB" + "40 53 48 83 EC 20 48 8B 1D 33 1A 84 00 48 85 DB" func_36 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 0D 83 FF 83 00 48 8B DA" + "40 53 48 83 EC 20 48 8B 0D C3 0E 84 00 48 8B DA" func_37 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 35 FF 83 00 48 85 C0 74 38" + "48 83 EC 28 48 8B 05 75 0E 84 00 48 85 C0 74 38" func_38 [ DIFF 0 ] [] - "48 8B 05 39 0A 84 00 48 85 C0 74 47 83 78 38 03" + "48 8B 05 79 19 84 00 48 85 C0 74 47 83 78 38 03" func_39 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 D5 09 84 00 48 85 C0 74 47" + "48 83 EC 28 48 8B 05 15 19 84 00 48 85 C0 74 47" func_40 [ DIFF 0 ] [] - "48 8B 05 E9 05 84 00 48 85 C0 74 24 85 D2 78 20" + "48 8B 05 29 15 84 00 48 85 C0 74 24 85 D2 78 20" func_41 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 A5 05 84 00 48 85 C0 74 43" + "48 83 EC 28 48 8B 05 E5 14 84 00 48 85 C0 74 43" func_42 [ DIFF 0 ] [] - "48 8B 05 49 05 84 00 48 85 C0 74 26 85 D2 78 22" + "48 8B 05 89 14 84 00 48 85 C0 74 26 85 D2 78 22" func_43 [ DIFF 0 ] [] - "48 8B 0D 09 06 84 00 48 85 C9 0F 85 60 C0 FF FF" + "48 8B 0D 49 15 84 00 48 85 C9 0F 85 60 C0 FF FF" func_44 [ DIFF 0 ] [] - "48 8B 0D 89 BA 5B 00 4C 8B C2 45 33 C9 BA 04 00" + "48 8B 0D C9 C9 5B 00 4C 8B C2 45 33 C9 BA 04 00" func_45 [ DIFF 0 ] [] "48 8B C4 4C 89 40 18 4C 89 48 20 55 53 57 48 8D" func_46 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 30 48" func_47 [ DIFF 0 ] [] - "48 8B 05 F9 07 84 00 48 85 C0 74 39 85 D2 78 27" + "48 8B 05 39 17 84 00 48 85 C0 74 39 85 D2 78 27" func_48 [ DIFF 0 ] [] - "48 8B 0D F9 BD 5E 00 48 8B 01 48 FF A0 70 01 00" + "48 8B 0D A9 CD 5E 00 48 8B 01 48 FF A0 70 01 00" func_49 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 48 89 7C 24 18 33" func_50 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B 3D CF 01 84" + "48 89 5C 24 08 57 48 83 EC 20 48 8B 3D 0F 11 84" func_51 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D 9F AF 5B" + "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D DF BE 5B" func_52 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 0D C3 FF 83 00 48 8B DA" + "40 53 48 83 EC 20 48 8B 0D 03 0F 84 00 48 8B DA" func_53 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 A5 07 84 00 48 85 C0 74 3B" + "48 83 EC 28 48 8B 05 E5 16 84 00 48 85 C0 74 3B" func_54 [ DIFF 0 ] [] - "48 8D 0D B9 FA 7F 00 E9 B4 2E 04 00 CC CC CC CC" + "48 8D 0D F9 09 80 00 E9 B4 2E 04 00 CC CC CC CC" func_55 [ DIFF 0 ] [] - "0F B6 05 F1 FA 7F 00 C3 CC CC CC CC CC CC CC CC" + "0F B6 05 31 0A 80 00 C3 CC CC CC CC CC CC CC CC" func_56 [ DIFF 0 ] [] - "48 8B 05 09 01 84 00 48 85 C0 74 29 85 D2 78 25" + "48 8B 05 49 10 84 00 48 85 C0 74 29 85 D2 78 25" func_57 [ DIFF 0 ] [] - "48 8B 05 C9 00 84 00 48 85 C0 74 36 45 85 C0 78" + "48 8B 05 09 10 84 00 48 85 C0 74 36 45 85 C0 78" func_58 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 48" func_59 [ DIFF 0 ] [] - "48 8B 0D 59 09 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D 99 18 84 00 48 85 C9 74 0A 48 8B 01 48" func_60 [ DIFF 0 ] [] - "48 8B 0D 19 09 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D 59 18 84 00 48 85 C9 74 0A 48 8B 01 48" func_61 [ DIFF 0 ] [] - "48 8B 0D F9 08 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D 39 18 84 00 48 85 C9 74 0A 48 8B 01 48" func_62 [ DIFF 0 ] [] - "48 83 EC 48 48 8B 0D 75 08 84 00 48 85 C9 74 43" + "48 83 EC 48 48 8B 0D B5 17 84 00 48 85 C9 74 43" func_63 [ DIFF 0 ] [] - "48 8B 0D 19 08 84 00 48 85 C9 0F 85 60 65 00 00" + "48 8B 0D 59 17 84 00 48 85 C9 0F 85 60 65 00 00" func_64 [ DIFF 0 ] [] - "48 8B 0D D9 08 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D 19 18 84 00 48 85 C9 74 0A 48 8B 01 48" func_65 [ DIFF 0 ] [] - "48 8B 0D B9 08 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D F9 17 84 00 48 85 C9 74 0A 48 8B 01 48" func_66 [ DIFF 0 ] [] - "48 8B 0D 39 09 84 00 48 85 C9 0F 85 40 7C 00 00" + "48 8B 0D 79 18 84 00 48 85 C9 0F 85 40 7C 00 00" func_67 [ DIFF 0 ] [] - "48 8B 05 69 08 87 00 48 85 C0 74 08 F3 0F 11 88" + "48 8B 05 19 18 87 00 48 85 C0 74 08 F3 0F 11 88" func_68 [ DIFF 0 ] [] - "8B 05 2A 49 87 00 C3 CC CC CC CC CC CC CC CC CC" + "8B 05 F2 58 87 00 C3 CC CC CC CC CC CC CC CC CC" func_69 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 05 F9 83 00 48 85 C0 74 37" + "48 83 EC 28 48 8B 05 45 08 84 00 48 85 C0 74 37" func_70 [ DIFF 0 ] [] - "48 89 15 C9 E1 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 89 15 79 F1 5E 00 C3 CC CC CC CC CC CC CC CC" func_71 [ DIFF 0 ] [] - "48 8B 05 B9 E1 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 69 F1 5E 00 C3 CC CC CC CC CC CC CC CC" func_72 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 57 48 81 EC 80 00" func_73 [ DIFF 0 ] [] - "88 15 3A 39 84 00 84 D2 74 14 41 B0 01 48 8D 0D" + "88 15 8A 48 84 00 84 D2 74 14 41 B0 01 48 8D 0D" func_74 [ DIFF 0 ] [] - "48 8B 05 B9 FB 83 00 48 85 C0 74 27 85 D2 78 23" + "48 8B 05 F9 0A 84 00 48 85 C0 74 27 85 D2 78 23" func_75 [ DIFF 0 ] [] - "48 8B 15 59 F8 83 00 33 C0 48 85 D2 74 08 48 8D" + "48 8B 15 99 07 84 00 33 C0 48 85 D2 74 08 48 8D" func_76 [ DIFF 0 ] [] - "48 89 74 24 10 57 48 83 EC 20 48 8B 05 3F 07 84" + "48 89 74 24 10 57 48 83 EC 20 48 8B 05 7F 16 84" func_77 [ DIFF 0 ] [] - "48 8D 05 39 13 5C 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 79 22 5C 00 C3 CC CC CC CC CC CC CC CC" func_78 [ DIFF 0 ] [] - "48 89 15 71 E5 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 89 15 21 F5 5E 00 C3 CC CC CC CC CC CC CC CC" func_79 [ DIFF 0 ] [] - "48 8B 05 61 E5 5E 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 11 F5 5E 00 C3 CC CC CC CC CC CC CC CC" func_80 [ DIFF 0 ] [] "48 89 5C 24 10 48 89 74 24 18 57 48 83 EC 20 48" func_81 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 05 B3 F8 83 00 48 85 C0" + "40 53 48 83 EC 20 48 8B 05 F3 07 84 00 48 85 C0" func_82 [ DIFF 0 ] [] - "48 8B 05 69 01 84 00 48 85 C0 74 16 48 8B 88 A0" + "48 8B 05 A9 10 84 00 48 85 C0 74 16 48 8B 88 A0" func_83 [ DIFF 0 ] [] - "48 8B 0D 99 08 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D D9 17 84 00 48 85 C9 74 0A 48 8B 01 48" func_84 [ DIFF 0 ] [] - "40 53 48 83 EC 20 83 3D 93 8D 54 00 01 48 8B DA" + "40 53 48 83 EC 20 83 3D C3 9C 54 00 01 48 8B DA" func_85 [ DIFF 0 ] [] - "8B 05 26 4F 87 00 33 C9 38 0D 6B 16 5F 00 0F 45" + "8B 05 D6 5E 87 00 33 C9 38 0D 1B 26 5F 00 0F 45" func_86 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 85 F3 83 00 48 85 C0 74 32" + "48 83 EC 28 48 8B 05 C5 02 84 00 48 85 C0 74 32" func_87 [ DIFF 0 ] [] - "48 8B 05 39 F8 83 00 45 8B D0 48 85 C0 74 2C 85" + "48 8B 05 79 07 84 00 45 8B D0 48 85 C0 74 2C 85" func_88 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57" func_89 [ DIFF 0 ] [] - "48 8B 05 39 01 84 00 48 85 C0 74 16 48 8B 88 A0" + "48 8B 05 79 10 84 00 48 85 C0 74 16 48 8B 88 A0" func_90 [ DIFF 0 ] [] - "4C 8B 0D 29 F7 83 00 45 33 D2 4D 85 C9 74 1E 45" + "4C 8B 0D 69 06 84 00 45 33 D2 4D 85 C9 74 1E 45" func_91 [ DIFF 0 ] [] - "48 89 5C 24 08 4C 8B 15 B4 F6 83 00 45 33 DB 41" + "48 89 5C 24 08 4C 8B 15 F4 05 84 00 45 33 DB 41" func_92 [ DIFF 0 ] [] - "48 89 5C 24 08 4C 8B 15 F4 F5 83 00 45 33 DB 41" + "48 89 5C 24 08 4C 8B 15 34 05 84 00 45 33 DB 41" func_93 [ DIFF 0 ] [] - "40 53 48 83 EC 30 48 8B 0D A3 0A 84 00 48 8B DA" + "40 53 48 83 EC 30 48 8B 0D E3 19 84 00 48 8B DA" func_94 [ DIFF 0 ] [] - "48 8B 0D 59 0A 84 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D 99 19 84 00 48 85 C9 74 0A 48 8B 01 48" func_95 [ DIFF 0 ] [] - "48 8B 0D 39 F3 83 00 48 85 C9 0F 85 D0 20 01 00" + "48 8B 0D 79 02 84 00 48 85 C9 0F 85 D0 20 01 00" func_96 [ DIFF 0 ] [] "40 53 48 83 EC 50 48 8B CA 41 0F B6 D9 48 C1 E9" func_97 [ DIFF 0 ] [] - "48 83 EC 48 48 8B 05 15 F3 83 00 48 85 C0 74 65" + "48 83 EC 48 48 8B 05 55 02 84 00 48 85 C0 74 65" func_98 [ DIFF 0 ] [] - "48 8B 05 59 F1 83 00 85 D2 78 28 3B 90 70 02 00" + "48 8B 05 99 00 84 00 85 D2 78 28 3B 90 70 02 00" func_99 [ DIFF 0 ] [] - "48 8B 05 19 F1 83 00 85 D2 78 27 3B 90 70 02 00" + "48 8B 05 59 00 84 00 85 D2 78 27 3B 90 70 02 00" func_100 [ DIFF 0 ] [] - "48 89 5C 24 10 56 48 83 EC 20 48 8B 35 CF F0 83" + "48 89 5C 24 10 56 48 83 EC 20 48 8B 35 0F 00 84" func_101 [ DIFF 0 ] [] - "48 8B 05 69 F0 83 00 85 D2 78 25 3B 90 70 02 00" + "48 8B 05 A9 FF 83 00 85 D2 78 25 3B 90 70 02 00" func_102 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 48 89 7C 24 18 45" func_103 [ DIFF 0 ] [] - "48 8B 05 69 EF 83 00 85 D2 78 28 3B 90 70 02 00" + "48 8B 05 A9 FE 83 00 85 D2 78 28 3B 90 70 02 00" func_104 [ DIFF 0 ] [] - "48 8B 05 29 EF 83 00 85 D2 78 25 3B 90 70 02 00" + "48 8B 05 69 FE 83 00 85 D2 78 25 3B 90 70 02 00" func_105 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 48" func_106 [ DIFF 0 ] [] - "48 8B 05 B9 06 84 00 48 85 C0 74 32 85 D2 78 20" + "48 8B 05 F9 15 84 00 48 85 C0 74 32 85 D2 78 20" func_107 [ DIFF 0 ] [] - "48 8B 05 79 06 84 00 48 85 C0 74 3E 85 D2 78 2C" + "48 8B 05 B9 15 84 00 48 85 C0 74 3E 85 D2 78 2C" func_108 [ DIFF 0 ] [] "40 56 48 83 EC 40 8B 44 24 70 8B 74 24 78 89 54" func_109 [ DIFF 0 ] [] - "0F B6 05 5A D3 5B 00 C3 CC CC CC CC CC CC CC CC" + "0F B6 05 98 E2 5B 00 C3 CC CC CC CC CC CC CC CC" func_110 [ DIFF 0 ] [] - "48 8B 0D 69 EE 83 00 E9 74 8A 00 00 CC CC CC CC" + "48 8B 0D A9 FD 83 00 E9 74 8A 00 00 CC CC CC CC" func_111 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 55 EE 83 00 48 85 C0 74 4E" + "48 83 EC 28 48 8B 05 95 FD 83 00 48 85 C0 74 4E" func_112 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 1D 63 ED 83 00 48 85 DB" + "40 53 48 83 EC 20 48 8B 1D A3 FC 83 00 48 85 DB" func_113 [ DIFF 0 ] [] - "48 8B 0D 69 EC 83 00 48 85 C9 0F 85 40 3C 01 00" + "48 8B 0D A9 FB 83 00 48 85 C9 0F 85 40 3C 01 00" func_114 [ DIFF 0 ] [] - "48 89 5C 24 18 55 48 83 EC 20 48 8B 1D 3F EC 83" + "48 89 5C 24 18 55 48 83 EC 20 48 8B 1D 7F FB 83" func_115 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 E5 EC 83 00 4C 8B D2 48 85" + "48 83 EC 28 48 8B 05 25 FC 83 00 4C 8B D2 48 85" func_116 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 E5 ED 83 00 48 85 C0 74 59" + "48 83 EC 28 48 8B 05 25 FD 83 00 48 85 C0 74 59" func_117 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 65 EB 83 00 48 85 C9 74 0F" + "48 83 EC 28 48 8B 0D A5 FA 83 00 48 85 C9 74 0F" func_118 [ DIFF 0 ] [] - "48 8B 05 39 EB 83 00 48 85 C0 74 2A 45 85 C0 78" + "48 8B 05 79 FA 83 00 48 85 C0 74 2A 45 85 C0 78" func_119 [ DIFF 0 ] [] - "48 8B 0D 89 EB 83 00 48 85 C9 74 0A 48 8B 01 48" + "48 8B 0D C9 FA 83 00 48 85 C9 74 0A 48 8B 01 48" ============================================= Bases: diff --git a/dump/windows/vtable_diff/engine2/CEngineServiceMgr.txt b/dump/windows/vtable_diff/engine2/CEngineServiceMgr.txt index 8a521ec..89cd636 100644 --- a/dump/windows/vtable_diff/engine2/CEngineServiceMgr.txt +++ b/dump/windows/vtable_diff/engine2/CEngineServiceMgr.txt @@ -9,7 +9,7 @@ func_1 [ DIFF 0 ] [] func_2 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] - "40 57 48 83 EC 20 48 83 3D 1A 7A 45 00 00 48 8B" + "40 57 48 83 EC 20 48 83 3D EA 88 45 00 00 48 8B" func_4 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57" func_5 [ DIFF 0 ] [] @@ -39,21 +39,21 @@ func_16 [ DIFF 0 ] [] func_17 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B D9 4C 8B C2 48 81 C1 10" func_18 [ DIFF 0 ] [] - "48 8B 05 E1 03 6E 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 C1 12 6E 00 C3 CC CC CC CC CC CC CC CC" func_19 [ DIFF 0 ] [] - "48 8B 05 D9 03 6E 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 B9 12 6E 00 C3 CC CC CC CC CC CC CC CC" func_20 [ DIFF 0 ] [] - "48 8B 05 D1 03 6E 00 C3 CC CC CC CC CC CC CC CC" + "48 8B 05 B1 12 6E 00 C3 CC CC CC CC CC CC CC CC" func_21 [ DIFF 0 ] [] - "48 8B 0D D1 79 45 00 48 8B 15 B2 03 6E 00 48 8B" + "48 8B 0D A1 88 45 00 48 8B 15 92 12 6E 00 48 8B" func_22 [ DIFF 0 ] [] "48 83 EC 28 48 8B 01 FF 90 A8 00 00 00 8B 40 08" func_23 [ DIFF 0 ] [] "48 83 EC 28 48 8B 01 FF 90 A8 00 00 00 8B 40 0C" func_24 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D 47 79 45" + "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D 17 88 45" func_25 [ DIFF 0 ] [] - "48 8B 0D 51 03 6E 00 48 85 C9 75 03 32 C0 C3 48" + "48 8B 0D 31 12 6E 00 48 85 C9 75 03 32 C0 C3 48" func_26 [ DIFF 0 ] [] "48 83 B9 C0 00 00 00 00 0F 95 C0 C3 CC CC CC CC" func_27 [ DIFF 0 ] [] @@ -75,7 +75,7 @@ func_34 [ DIFF 0 ] [] func_35 [ DIFF 0 ] [] "48 8B C1 8B 89 A8 00 00 00 85 C9 79 03 32 C0 C3" func_36 [ DIFF 0 ] [] - "40 53 48 83 EC 30 48 8B 05 0B D3 6D 00 48 8B DA" + "40 53 48 83 EC 30 48 8B 05 F3 E1 6D 00 48 8B DA" func_37 [ DIFF 0 ] [] "0F 10 02 0F 11 81 D4 01 00 00 0F 10 4A 10 0F 11" func_38 [ DIFF 0 ] [] @@ -87,7 +87,7 @@ func_40 [ DIFF 0 ] [] func_41 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57" func_42 [ DIFF 0 ] [] - "48 8B 91 B0 00 00 00 48 8D 05 21 96 2F 00 48 85" + "48 8B 91 B0 00 00 00 48 8D 05 F1 A4 2F 00 48 85" func_43 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B D9 48 C7 44 24 30 00 00" func_44 [ DIFF 0 ] [] @@ -105,23 +105,23 @@ func_49 [ DIFF 0 ] [] func_50 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 30 8B" func_51 [ DIFF 0 ] [] - "48 8B CA 48 FF 25 5E 8B 25 00 CC CC CC CC CC CC" + "48 8B CA 48 FF 25 2E 9A 25 00 CC CC CC CC CC CC" func_52 [ DIFF 0 ] [] - "48 8B CA 49 8B D0 48 FF 25 53 8B 25 00 CC CC CC" + "48 8B CA 49 8B D0 48 FF 25 23 9A 25 00 CC CC CC" func_53 [ DIFF 0 ] [] "48 89 54 24 10 4C 89 44 24 18 4C 89 4C 24 20 48" func_54 [ DIFF 0 ] [] "8B 81 E0 00 00 00 C3 CC CC CC CC CC CC CC CC CC" func_55 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 48 8B 0D 90 6D 45 00" + "40 53 48 83 EC 20 48 8B D9 48 8B 0D 60 7C 45 00" func_56 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 54 24 10 57 48 83 EC 20 48" func_57 [ DIFF 0 ] [] - "48 8B 0D 71 69 45 00 48 85 C9 75 03 33 C0 C3 48" + "48 8B 0D 41 78 45 00 48 85 C9 75 03 33 C0 C3 48" func_58 [ DIFF 0 ] [] - "48 8B CA 0F 28 D3 41 8B D0 E9 B2 3A 1A 00 CC CC" + "48 8B CA 0F 28 D3 41 8B D0 E9 92 3B 1A 00 CC CC" func_59 [ DIFF 0 ] [] - "48 83 EC 28 83 3D 61 30 87 00 00 7E 1A 48 8B 0D" + "48 83 EC 28 83 3D 11 40 87 00 00 7E 1A 48 8B 0D" func_60 [ DIFF 0 ] [] "F3 0F 10 5C 24 28 41 8B C0 48 8B CA 45 8B C1 8B" diff --git a/dump/windows/vtable_diff/engine2/CNetworkServerService.txt b/dump/windows/vtable_diff/engine2/CNetworkServerService.txt index d441738..0366c79 100644 --- a/dump/windows/vtable_diff/engine2/CNetworkServerService.txt +++ b/dump/windows/vtable_diff/engine2/CNetworkServerService.txt @@ -11,7 +11,7 @@ func_2 [ DIFF 0 ] [] func_3 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57" func_4 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 48 8B 0D E0 42 48 00" + "40 53 48 83 EC 20 48 8B D9 48 8B 0D C0 51 48 00" func_5 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] @@ -81,7 +81,7 @@ func_37 [ DIFF 0 ] [] func_38 [ DIFF 0 ] [] "48 83 B9 60 01 00 00 00 0F 95 C0 C3 CC CC CC CC" func_39 [ DIFF 0 ] [] - "40 53 48 83 EC 20 4C 8B 0D EB 66 48 00 33 DB 48" + "40 53 48 83 EC 20 4C 8B 0D CB 75 48 00 33 DB 48" func_40 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B D9 E8 C2 FC FF FF 48 8B" func_41 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CBaseEntity.txt b/dump/windows/vtable_diff/server/CBaseEntity.txt index 3e067b2..9ffedce 100644 --- a/dump/windows/vtable_diff/server/CBaseEntity.txt +++ b/dump/windows/vtable_diff/server/CBaseEntity.txt @@ -7,21 +7,21 @@ func_0 [ DIFF 328 ] ["CAK47", "CAmbientGeneric func_1 [ DIFF 496 ] ["CAI_ChangeHintGroup", "CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDMStart", "CBaseDoor", "CBaseFilter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSGO_TeamIntroCounterTerroristPosition", "CCSGO_TeamIntroTerroristPosition", "CCSGO_TeamPreviewCharacterPosition", "CCSGO_TeamSelectCounterTerroristPosition", "CCSGO_TeamSelectTerroristPosition", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSGameRulesProxy", "CCSMinimapBoundary", "CCSObserverPawn", "CCSPetPlacement", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnableMotionFixup", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvDecal", "CEnvDetailController", "CEnvEntityIgniter", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFilterAttributeInt", "CFilterClass", "CFilterContext", "CFilterEnemy", "CFilterLOS", "CFilterMassGreater", "CFilterModel", "CFilterMultiple", "CFilterName", "CFilterProximity", "CFilterTeam", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncPropRespawnZone", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTimescale", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameRulesProxy", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHandleDummy", "CHandleTest", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoInstructorHintHostageRescueZone", "CInfoInstructorHintTarget", "CInfoLadderDismount", "CInfoLandmark", "CInfoOffscreenPanoramaTexture", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLandmark", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoTargetServerOnly", "CInfoTeleportDestination", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAchievement", "CLogicActiveAutosave", "CLogicAuto", "CLogicAutosave", "CLogicBranch", "CLogicBranchList", "CLogicCase", "CLogicCollisionPair", "CLogicCompare", "CLogicDistanceAutosave", "CLogicDistanceCheck", "CLogicEventListener", "CLogicGameEvent", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicPlayerProxy", "CLogicProximity", "CLogicRelay", "CLogicScript", "CLogicalEntity", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNavSpaceInfo", "CNavWalkable", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysConstraint", "CPhysExplosion", "CPhysFixed", "CPhysForce", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysThruster", "CPhysTorque", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPhysicsWire", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointBroadcastClientCommand", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientCommand", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntity", "CPointEntityFinder", "CPointGamestatsCounter", "CPointGiveAmmo", "CPointHurt", "CPointOrient", "CPointPrefab", "CPointProximitySensor", "CPointPulse", "CPointPush", "CPointServerCommand", "CPointTeleport", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollMagnet", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRotatorTarget", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyEntity", "CServerOnlyModelEntity", "CServerOnlyPointEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundAreaEntityOrientedBox", "CSoundAreaEntitySphere", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSoundStackSave", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTeam", "CTestEffect", "CTestPulseIO", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "FilterDamageType", "FilterHealth", "SpawnPoint"] "48 89 5C 24 08 57 48 83 EC 20 8B DA 48 8B F9 E8" func_2 [ DIFF 256 ] ["CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "40 53 48 83 EC 20 48 8B D9 E8 22 56 AE 00 48 8B" + "40 53 48 83 EC 20 48 8B D9 E8 32 56 AE 00 48 8B" func_3 [ DIFF 108 ] ["CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 C3 6F D5 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 B3 6F D5 00 01 C3 CC CC CC CC CC CC CC CC" func_4 [ DIFF 292 ] ["CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCubemapFog", "CEnvDecal", "CEnvEntityIgniter", "CEnvExplosion", "CEnvGlobal", "CEnvLaser", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvSplash", "CEnvTilt", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWindController", "CEnvWindVolume", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoPlayerStart", "CInfoWorldLayer", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessage", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointGiveAmmo", "CPointPulse", "CPointTemplate", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTrainAI", "CTestEffect", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "41 55 41 56 48 81 EC 78 01 00 00 4C 8B EA 4C 8B" func_5 [ DIFF 255 ] ["CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "40 53 48 83 EC 20 48 8B D9 E8 32 4F 4E 00 48 8D" + "40 53 48 83 EC 20 48 8B D9 E8 42 4F 4E 00 48 8D" func_6 [ DIFF 397 ] ["CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseTrigger", "CBeam", "CBlood", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSGO_TeamIntroCounterTerroristPosition", "CCSGO_TeamIntroTerroristPosition", "CCSGO_TeamPreviewCharacterPosition", "CCSGO_TeamSelectCounterTerroristPosition", "CCSGO_TeamSelectTerroristPosition", "CCSGO_WingmanIntroCounterTerroristPosition", "CCSGO_WingmanIntroTerroristPosition", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CCitadelSoundOpvarSetOBB", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryAuto", "CCommentaryViewPosition", "CConstraintAnchor", "CCredits", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvBeverage", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvCubemapFog", "CEnvEntityMaker", "CEnvExplosion", "CEnvFade", "CEnvGlobal", "CEnvHudHint", "CEnvInstructorHint", "CEnvInstructorVRHint", "CEnvLaser", "CEnvLightProbeVolume", "CEnvMuzzleFlash", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvSpark", "CEnvTilt", "CEnvViewPunch", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWind", "CEnvWindController", "CEnvWindVolume", "CFireCrackerBlast", "CFish", "CFishPool", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoData", "CInfoDeathmatchSpawn", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoGameEventProxy", "CInfoInstructorHintBombTargetA", "CInfoInstructorHintBombTargetB", "CInfoParticleTarget", "CInfoPlayerCounterterrorist", "CInfoPlayerStart", "CInfoPlayerTerrorist", "CInfoSpawnGroupLoadUnload", "CInfoTarget", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CInstructorEventEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicBranchList", "CLogicCase", "CLogicEventListener", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicNPCCounter", "CLogicNPCCounterAABB", "CLogicNPCCounterOBB", "CLogicNavigation", "CLogicScript", "CMapInfo", "CMapSharedEnvironment", "CMapVetoPickController", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMathColorBlend", "CMathCounter", "CMathRemap", "CMessage", "CMessageEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMultiLightProxy", "CMultiSource", "CNavLinkAreaEntity", "CNullEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathCorner", "CPathCornerCrash", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBox", "CPhysExplosion", "CPhysForce", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysMagnet", "CPhysMotor", "CPhysThruster", "CPhysTorque", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPlantedC4", "CPlatTrigger", "CPlayerPing", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointCamera", "CPointCameraVFOV", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointGiveAmmo", "CPointHurt", "CPointPrefab", "CPointPulse", "CPointTemplate", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAABBEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetEntity", "CSoundOpvarSetOBBEntity", "CSoundOpvarSetOBBWindEntity", "CSoundOpvarSetPathCornerEntity", "CSoundOpvarSetPointBase", "CSoundOpvarSetPointEntity", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTargetChange", "CTankTrainAI", "CTextureBasedAnimatable", "CTimerEntity", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CVoteController", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld", "SpawnPoint"] "48 89 5C 24 10 48 89 74 24 18 57 48 83 EC 30 48" func_7 [ DIFF 0 ] [] "48 8B 01 48 FF 60 40 CC CC CC CC CC CC CC CC CC" func_8 [ DIFF 111 ] ["CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 47 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" -func_9 [ DIFF 0 ] [] "C6 05 37 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" +func_9 [ DIFF 0 ] [] + "C6 05 27 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" func_10 [ DIFF 360 ] ["CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBaseMoveBehavior", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSPointScriptEntity", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrection", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvCubemap", "CEnvCubemapBox", "CEnvDecal", "CEnvEntityMaker", "CEnvExplosion", "CEnvLaser", "CEnvLightProbeVolume", "CEnvParticleGlow", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CEnvVolumetricFogController", "CEnvVolumetricFogVolume", "CEnvWindController", "CEnvWindVolume", "CFilterMultiple", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogController", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameGibManager", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGenericConstraint", "CGradientFog", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoFan", "CInfoInstructorHintHostageRescueZone", "CInfoOffscreenPanoramaTexture", "CInfoSpawnGroupLoadUnload", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicAuto", "CLogicBranchList", "CLogicCollisionPair", "CLogicGameEventListener", "CLogicLineToEntity", "CLogicMeasureMovement", "CLogicNavigation", "CLogicPlayerProxy", "CLogicRelay", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CMoverPathNode", "CMultiLightProxy", "CNavLinkAreaEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPathKeyFrame", "CPathMover", "CPathParticleRope", "CPathParticleRopeAlias_path_particle_rope_clientside", "CPathSimple", "CPathTrack", "CPhysBallSocket", "CPhysBox", "CPhysConstraint", "CPhysExplosion", "CPhysFixed", "CPhysForce", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysImpact", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysThruster", "CPhysTorque", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPlayerVisibility", "CPointAngleSensor", "CPointAngularVelocitySensor", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointEntityFinder", "CPointOrient", "CPointProximitySensor", "CPointPush", "CPointTeleport", "CPointValueRemapper", "CPointVelocitySensor", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CSceneListManager", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyCamera", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSoundEventAABBEntity", "CSoundEventEntity", "CSoundEventEntityAlias_snd_event_point", "CSoundEventOBBEntity", "CSoundEventParameter", "CSoundEventPathCornerEntity", "CSoundEventSphereEntity", "CSoundOpvarSetAutoRoomEntity", "CSoundOpvarSetOBBWindEntity", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTankTrainAI", "CTeam", "CTextureBasedAnimatable", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "40 55 48 83 EC 50 48 89 5C 24 68 8B EA 48 89 74" func_11 [ DIFF 315 ] ["CAK47", "CAmbientGeneric", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBaseModelEntity", "CBasePlatTrain", "CBasePlayerController", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerController", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSPlayerResource", "CCSSprite", "CCSTeam", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDebugHistory", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEntityFlame", "CEnvBeam", "CEnvCombinedLightProbeVolume", "CEnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvLightProbeVolume", "CEnvParticleGlow", "CEnvShake", "CEnvSky", "CEnvSoundscape", "CEnvSoundscapeAlias_snd_soundscape", "CEnvSoundscapeProxy", "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", "CEnvSoundscapeTriggerable", "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGenericConstraint", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CInfoDynamicShadowHint", "CInfoDynamicShadowHintBox", "CInfoOffscreenPanoramaTexture", "CInfoVisibilityBox", "CInfoWorldLayer", "CInstancedSceneEntity", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKeepUpright", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CLogicBranch", "CLogicNavigation", "CMapInfo", "CMapSharedEnvironment", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMessageEntity", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "CNavLinkAreaEntity", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBallSocket", "CPhysBox", "CPhysConstraint", "CPhysFixed", "CPhysForce", "CPhysHinge", "CPhysHingeAlias_phys_hinge_local", "CPhysLength", "CPhysMagnet", "CPhysMotor", "CPhysPulley", "CPhysSlideConstraint", "CPhysThruster", "CPhysTorque", "CPhysWheelConstraint", "CPhysicalButton", "CPhysicsEntitySolver", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPhysicsSpring", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointCamera", "CPointCameraVFOV", "CPointChildModifier", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointTemplate", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPulseGameBlackboard", "CPushable", "CRagdollConstraint", "CRagdollManager", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CSceneEntity", "CSceneEntityAlias_logic_choreographed_scene", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CScriptedSequence", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSkyboxReference", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSplineConstraint", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTeam", "CTextureBasedAnimatable", "CTonemapController2", "CTonemapController2Alias_env_tonemap_controller2", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] diff --git a/dump/windows/vtable_diff/server/CBaseModelEntity.txt b/dump/windows/vtable_diff/server/CBaseModelEntity.txt index cc80776..e77b616 100644 --- a/dump/windows/vtable_diff/server/CBaseModelEntity.txt +++ b/dump/windows/vtable_diff/server/CBaseModelEntity.txt @@ -9,7 +9,7 @@ func_1 [ DIFF 253 ] ["CAK47", "CBarnLight", "C func_2 [ DIFF 106 ] ["CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "40 53 48 83 EC 20 48 8B D9 E8 32 79 B5 FF 48 8B" func_3 [ DIFF 106 ] ["CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 C3 6F D5 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 B3 6F D5 00 01 C3 CC CC CC CC CC CC CC CC" func_4 [ DIFF 220 ] ["CAK47", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGamePlayerEquip", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointClientUIDialog", "CPointCommentaryNode", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "E9 6B E0 B4 FF CC CC CC CC CC CC CC CC CC CC CC" func_5 [ DIFF 112 ] ["CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] @@ -19,9 +19,9 @@ func_6 [ DIFF 245 ] ["CAK47", "CBarnLight", "C func_7 [ DIFF 0 ] [] "48 8B 01 48 FF 60 40 CC CC CC CC CC CC CC CC CC" func_8 [ DIFF 111 ] ["CAK47", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBreakableProp", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChicken", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CFish", "CFlashbang", "CFlashbangProjectile", "CFuncRetakeBarrier", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMolotovGrenade", "CMolotovProjectile", "COrnamentProp", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CScriptItem", "CShatterGlassShardPhysics", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "C6 05 47 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" -func_9 [ DIFF 0 ] [] "C6 05 37 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" +func_9 [ DIFF 0 ] [] + "C6 05 27 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" func_10 [ DIFF 197 ] ["CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnvBeam", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncConveyor", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncWater", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointCommentaryNode", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotDoor", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "48 89 5C 24 18 55 48 83 EC 20 8B DA 48 8B E9 E8" func_11 [ DIFF 188 ] ["CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEnvBeam", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFootstepControl", "CFuncElectrifiedVolume", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncRetakeBarrier", "CFuncTankTrain", "CFuncTrackTrain", "CFuncWater", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CMolotovGrenade", "CMolotovProjectile", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysMagnet", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPostProcessingVolume", "CPrecipitation", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotDoor", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] @@ -83,7 +83,7 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "40 55 57 48 8B EC 48 83 EC 68 48 8B 51 08 48 8B" func_40 [ DIFF 253 ] ["CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] - "48 8D 05 69 25 FB 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 59 25 FB 00 C3 CC CC CC CC CC CC CC CC" func_41 [ DIFF 253 ] ["CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_42 [ DIFF 253 ] ["CAK47", "CBarnLight", "CBaseAnimGraph", "CBaseButton", "CBaseCSGrenade", "CBaseCSGrenadeProjectile", "CBaseClientUIEntity", "CBaseCombatCharacter", "CBaseDoor", "CBaseFlex", "CBaseFlexAlias_funCBaseFlex", "CBaseGrenade", "CBasePlatTrain", "CBasePlayerPawn", "CBasePlayerWeapon", "CBaseProp", "CBasePropDoor", "CBaseToggle", "CBaseTrigger", "CBeam", "CBombTarget", "CBreakable", "CBreakableProp", "CBuyZone", "CC4", "CCSObserverPawn", "CCSPlace", "CCSPlayerPawn", "CCSPlayerPawnBase", "CCSSprite", "CCSWeaponBase", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CChangeLevel", "CChicken", "CColorCorrectionVolume", "CCommentaryViewPosition", "CConstraintAnchor", "CDEagle", "CDecoyGrenade", "CDecoyProjectile", "CDynamicLight", "CDynamicNavConnectionsVolume", "CDynamicProp", "CDynamicPropAlias_cable_dynamic", "CDynamicPropAlias_dynamic_prop", "CDynamicPropAlias_prop_dynamic_override", "CEconEntity", "CEconWearable", "CEntityBlocker", "CEntityDissolve", "CEnvBeam", "CEnvDecal", "CEnvExplosion", "CEnvLaser", "CEnvParticleGlow", "CEnvSky", "CFireCrackerBlast", "CFish", "CFlashbang", "CFlashbangProjectile", "CFogTrigger", "CFogVolume", "CFootstepControl", "CFuncBrush", "CFuncConveyor", "CFuncElectrifiedVolume", "CFuncIllusionary", "CFuncInteractionLayerClip", "CFuncLadder", "CFuncLadderAlias_func_useableladder", "CFuncMonitor", "CFuncMoveLinear", "CFuncMoveLinearAlias_momentary_door", "CFuncMover", "CFuncNavBlocker", "CFuncNavObstruction", "CFuncPlat", "CFuncPlatRot", "CFuncRetakeBarrier", "CFuncRotating", "CFuncRotator", "CFuncShatterglass", "CFuncTankTrain", "CFuncTrackAuto", "CFuncTrackChange", "CFuncTrackTrain", "CFuncTrain", "CFuncTrainControls", "CFuncVPhysicsClip", "CFuncVehicleClip", "CFuncWall", "CFuncWallToggle", "CFuncWater", "CGameEnd", "CGameMoney", "CGamePlayerEquip", "CGamePlayerZone", "CGameText", "CGunTarget", "CHEGrenade", "CHEGrenadeProjectile", "CHostage", "CHostageAlias_info_hostage_spawn", "CHostageCarriableProp", "CHostageExpresserShim", "CHostageRescueZone", "CHostageRescueZoneShim", "CIncendiaryGrenade", "CInferno", "CItem", "CItemAssaultSuit", "CItemDefuser", "CItemDefuserAlias_item_defuser", "CItemDogtags", "CItemGeneric", "CItemGenericTriggerHelper", "CItemKevlar", "CItemSoda", "CItem_Healthshot", "CKnife", "CLightDirectionalEntity", "CLightEntity", "CLightEnvironmentEntity", "CLightOrthoEntity", "CLightSpotEntity", "CMarkupVolume", "CMarkupVolumeTagged", "CMarkupVolumeTagged_Nav", "CMarkupVolumeTagged_NavGame", "CMarkupVolumeWithRef", "CModelPointEntity", "CMolotovGrenade", "CMolotovProjectile", "CMomentaryRotButton", "COmniLight", "COrnamentProp", "CParticleSystem", "CPhysBox", "CPhysMagnet", "CPhysicalButton", "CPhysicsProp", "CPhysicsPropMultiplayer", "CPhysicsPropOverride", "CPhysicsPropRespawnable", "CPlantedC4", "CPlatTrigger", "CPlayerSprayDecal", "CPointClientUIDialog", "CPointClientUIWorldPanel", "CPointClientUIWorldTextPanel", "CPointCommentaryNode", "CPointWorldText", "CPostProcessingVolume", "CPrecipitation", "CPrecipitationBlocker", "CPropDoorRotating", "CPropDoorRotatingBreakable", "CPushable", "CRagdollProp", "CRagdollPropAlias_physics_prop_ragdoll", "CRagdollPropAttached", "CRectLight", "CRevertSaved", "CRopeKeyframe", "CRopeKeyframeAlias_move_rope", "CRotButton", "CRotDoor", "CRuleBrushEntity", "CRuleEntity", "CRulePointEntity", "CScriptItem", "CScriptNavBlocker", "CScriptTriggerHurt", "CScriptTriggerMultiple", "CScriptTriggerOnce", "CScriptTriggerPush", "CServerOnlyModelEntity", "CServerRagdollTrigger", "CShatterGlassShardPhysics", "CShower", "CSimpleMarkupVolumeTagged", "CSmokeGrenade", "CSmokeGrenadeProjectile", "CSpotlightEnd", "CSprite", "CSpriteAlias_env_glow", "CSpriteOriented", "CTextureBasedAnimatable", "CTonemapTrigger", "CTriggerActiveWeaponDetect", "CTriggerBombReset", "CTriggerBrush", "CTriggerBuoyancy", "CTriggerCallback", "CTriggerDetectBulletFire", "CTriggerDetectExplosion", "CTriggerFan", "CTriggerGameEvent", "CTriggerGravity", "CTriggerHostageReset", "CTriggerHurt", "CTriggerImpact", "CTriggerLerpObject", "CTriggerLook", "CTriggerMultiple", "CTriggerOnce", "CTriggerPhysics", "CTriggerProximity", "CTriggerPush", "CTriggerRemove", "CTriggerSave", "CTriggerSndSosOpvar", "CTriggerSoundscape", "CTriggerTeleport", "CTriggerToggleSave", "CTriggerVolume", "CWaterBullet", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014", "CWorld"] diff --git a/dump/windows/vtable_diff/server/CCSGameRules.txt b/dump/windows/vtable_diff/server/CCSGameRules.txt index 5155471..46fe094 100644 --- a/dump/windows/vtable_diff/server/CCSGameRules.txt +++ b/dump/windows/vtable_diff/server/CCSGameRules.txt @@ -3,7 +3,7 @@ Virtual Function Count: 128 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA 48 8D 15 40 21 0C 01" + "40 53 48 83 EC 20 48 8B DA 48 8D 15 30 21 0C 01" func_1 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] @@ -37,7 +37,7 @@ func_15 [ DIFF 0 ] [] func_16 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_17 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 60 48 8D 05 FF CA C2" + "48 89 5C 24 08 57 48 83 EC 60 48 8D 05 0F CB C2" func_18 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_19 [ DIFF 0 ] [] @@ -181,7 +181,7 @@ func_87 [ DIFF 0 ] [] func_88 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_89 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 0D 73 1E DC 00 48 8D 15" + "40 53 48 83 EC 20 48 8B 0D 63 1E DC 00 48 8D 15" func_90 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_91 [ DIFF 0 ] [] @@ -245,7 +245,7 @@ func_119 [ DIFF 0 ] [] func_120 [ DIFF 0 ] [] "40 55 53 57 41 56 48 8D AC 24 58 FF FF FF 48 81" func_121 [ DIFF 0 ] [] - "48 8D 05 89 5D C2 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 99 5D C2 00 C3 CC CC CC CC CC CC CC CC" func_122 [ DIFF 0 ] [] "48 89 5C 24 20 56 48 83 EC 30 48 8B F2 48 8B D9" func_123 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CCSPlayerController.txt b/dump/windows/vtable_diff/server/CCSPlayerController.txt index 3db9102..213f65b 100644 --- a/dump/windows/vtable_diff/server/CCSPlayerController.txt +++ b/dump/windows/vtable_diff/server/CCSPlayerController.txt @@ -13,15 +13,15 @@ func_3 [ DIFF 0 ] [] func_4 [ DIFF 0 ] [] "41 55 41 56 48 81 EC 78 01 00 00 4C 8B EA 4C 8B" func_5 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 32 4F 4E 00 48 8D" + "40 53 48 83 EC 20 48 8B D9 E8 42 4F 4E 00 48 8D" func_6 [ DIFF 0 ] [] "48 89 5C 24 10 57 48 83 EC 30 48 8B DA 48 8B F9" func_7 [ DIFF 0 ] [] "48 8B 01 48 FF 60 40 CC CC CC CC CC CC CC CC CC" func_8 [ DIFF 0 ] [] - "C6 05 47 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" -func_9 [ DIFF 0 ] [] "C6 05 37 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" +func_9 [ DIFF 0 ] [] + "C6 05 27 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" func_10 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 8B FA 48 8B D9 E8" func_11 [ DIFF 0 ] [] @@ -83,11 +83,11 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "40 55 57 48 8B EC 48 83 EC 68 48 8B 51 08 48 8B" func_40 [ DIFF 0 ] [] - "48 8D 05 31 17 03 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 21 17 03 01 C3 CC CC CC CC CC CC CC CC" func_41 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 E8 AE 9E" func_42 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA 48 8D 15 10 DB 01 01" + "40 53 48 83 EC 20 48 8B DA 48 8D 15 00 DB 01 01" func_43 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_44 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CCSPlayer_ItemServices.txt b/dump/windows/vtable_diff/server/CCSPlayer_ItemServices.txt index eeceb22..b8ff73e 100644 --- a/dump/windows/vtable_diff/server/CCSPlayer_ItemServices.txt +++ b/dump/windows/vtable_diff/server/CCSPlayer_ItemServices.txt @@ -3,11 +3,11 @@ Virtual Function Count: 23 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA 48 8D 15 F0 CD 01 01" + "40 53 48 83 EC 20 48 8B DA 48 8D 15 E0 CD 01 01" func_1 [ DIFF 0 ] [] - "48 8D 05 91 19 03 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 81 19 03 01 C3 CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8D 05 3F F4 BB" + "48 89 5C 24 08 57 48 83 EC 20 48 8D 05 4F F4 BB" func_3 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_4 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CCSPlayer_MovementServices.txt b/dump/windows/vtable_diff/server/CCSPlayer_MovementServices.txt index d39dcba..987a27b 100644 --- a/dump/windows/vtable_diff/server/CCSPlayer_MovementServices.txt +++ b/dump/windows/vtable_diff/server/CCSPlayer_MovementServices.txt @@ -7,7 +7,7 @@ func_0 [ DIFF 0 ] [] func_1 [ DIFF 0 ] [] "48 8D 05 81 C1 00 01 C3 CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] - "40 53 56 48 83 EC 28 48 89 6C 24 40 48 8D 05 D5" + "40 53 56 48 83 EC 28 48 89 6C 24 40 48 8D 05 E5" func_3 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_4 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CCSPlayer_WeaponServices.txt b/dump/windows/vtable_diff/server/CCSPlayer_WeaponServices.txt index dab0178..a9b0c0b 100644 --- a/dump/windows/vtable_diff/server/CCSPlayer_WeaponServices.txt +++ b/dump/windows/vtable_diff/server/CCSPlayer_WeaponServices.txt @@ -3,9 +3,9 @@ Virtual Function Count: 36 Children Count: 0 ============================================= func_0 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B DA 48 8D 15 60 D5 FD 00" + "40 53 48 83 EC 20 48 8B DA 48 8D 15 50 D5 FD 00" func_1 [ DIFF 0 ] [] - "48 8D 05 99 A4 FE 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 89 A4 FE 00 C3 CC CC CC CC CC CC CC CC" func_2 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 8B FA 48 8B D9 E8" func_3 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CCSWeaponBase.txt b/dump/windows/vtable_diff/server/CCSWeaponBase.txt index 9d5a553..a15e0dd 100644 --- a/dump/windows/vtable_diff/server/CCSWeaponBase.txt +++ b/dump/windows/vtable_diff/server/CCSWeaponBase.txt @@ -19,13 +19,13 @@ func_6 [ DIFF 36 ] ["CAK47", "CC4", "CCSWeapo func_7 [ DIFF 0 ] [] "48 8B 01 48 FF 60 40 CC CC CC CC CC CC CC CC CC" func_8 [ DIFF 0 ] [] - "E9 6B 20 62 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 7B 20 62 00 CC CC CC CC CC CC CC CC CC CC CC" func_9 [ DIFF 0 ] [] - "C6 05 37 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" + "C6 05 27 5C D5 00 01 C3 CC CC CC CC CC CC CC CC" func_10 [ DIFF 3 ] ["CC4", "CItem_Healthshot", "CWeaponBaseItem"] "48 89 74 24 18 57 48 83 EC 40 48 8B F1 E8 3E B8" func_11 [ DIFF 0 ] [] - "E9 9B 87 46 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 AB 87 46 00 CC CC CC CC CC CC CC CC CC CC CC" func_12 [ DIFF 0 ] [] "E9 2B 82 15 00 CC CC CC CC CC CC CC CC CC CC CC" func_13 [ DIFF 0 ] [] @@ -83,11 +83,11 @@ func_38 [ DIFF 0 ] [] func_39 [ DIFF 0 ] [] "40 55 57 48 8B EC 48 83 EC 68 48 8B 51 08 48 8B" func_40 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "48 8D 05 21 C0 06 01 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 11 C0 06 01 C3 CC CC CC CC CC CC CC CC" func_41 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] "E9 6B BA 0C 00 CC CC CC CC CC CC CC CC CC CC CC" func_42 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] - "40 53 48 83 EC 20 48 8B DA 48 8D 15 10 95 05 01" + "40 53 48 83 EC 20 48 8B DA 48 8D 15 00 95 05 01" func_43 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_44 [ DIFF 48 ] ["CAK47", "CBaseCSGrenade", "CC4", "CCSWeaponBaseGun", "CCSWeaponBaseShotgun", "CDEagle", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CItem_Healthshot", "CKnife", "CMolotovGrenade", "CSmokeGrenade", "CWeaponAWP", "CWeaponAug", "CWeaponBaseItem", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNOVA", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponSawedoff", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer", "CWeaponXM1014"] @@ -463,7 +463,7 @@ func_228 [ DIFF 0 ] [] func_229 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_230 [ DIFF 0 ] [] - "48 8D 05 F1 A2 BD 00 C3 CC CC CC CC CC CC CC CC" + "48 8D 05 01 A3 BD 00 C3 CC CC CC CC CC CC CC CC" func_231 [ DIFF 0 ] [] "B8 01 00 00 00 C3 CC CC CC CC CC CC CC CC CC CC" func_232 [ DIFF 0 ] [] @@ -829,7 +829,7 @@ func_411 [ DIFF 0 ] [] func_412 [ DIFF 0 ] [] "85 D2 74 2E 83 EA 01 74 19 83 FA 01 74 04 0F 57" func_413 [ DIFF 0 ] [] - "48 83 EC 28 E8 A7 70 47 00 48 8B C8 E8 4F 8C 4A" + "48 83 EC 28 E8 B7 70 47 00 48 8B C8 E8 5F 8C 4A" func_414 [ DIFF 0 ] [] "48 8B 81 18 03 00 00 8B 80 D4 07 00 00 C3 CC CC" func_415 [ DIFF 33 ] ["CAK47", "CCSWeaponBaseGun", "CDEagle", "CWeaponAWP", "CWeaponAug", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer"] @@ -839,7 +839,7 @@ func_416 [ DIFF 0 ] [] func_417 [ DIFF 1 ] ["CWeaponCZ75a"] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_418 [ DIFF 33 ] ["CAK47", "CCSWeaponBaseGun", "CDEagle", "CWeaponAWP", "CWeaponAug", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer"] - "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 E8 4E 43" + "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 E8 5E 43" func_419 [ DIFF 33 ] ["CAK47", "CCSWeaponBaseGun", "CDEagle", "CWeaponAWP", "CWeaponAug", "CWeaponBizon", "CWeaponCZ75a", "CWeaponElite", "CWeaponFamas", "CWeaponFiveSeven", "CWeaponG3SG1", "CWeaponGalilAR", "CWeaponGlock", "CWeaponHKP2000", "CWeaponM249", "CWeaponM4A1", "CWeaponM4A1Silencer", "CWeaponMAC10", "CWeaponMP5SD", "CWeaponMP7", "CWeaponMP9", "CWeaponMag7", "CWeaponNegev", "CWeaponP250", "CWeaponP90", "CWeaponRevolver", "CWeaponSCAR20", "CWeaponSG556", "CWeaponSSG08", "CWeaponTaser", "CWeaponTec9", "CWeaponUMP45", "CWeaponUSPSilencer"] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_420 [ DIFF 8 ] ["CBaseCSGrenade", "CC4", "CDecoyGrenade", "CFlashbang", "CHEGrenade", "CIncendiaryGrenade", "CMolotovGrenade", "CSmokeGrenade"] diff --git a/dump/windows/vtable_diff/server/CGameEntitySystem.txt b/dump/windows/vtable_diff/server/CGameEntitySystem.txt index 70bfea6..67cef24 100644 --- a/dump/windows/vtable_diff/server/CGameEntitySystem.txt +++ b/dump/windows/vtable_diff/server/CGameEntitySystem.txt @@ -27,7 +27,7 @@ func_10 [ DIFF 0 ] [] func_11 [ DIFF 0 ] [] "40 53 48 83 EC 20 48 8B DA 41 8B D0 48 8B CB E8" func_12 [ DIFF 0 ] [] - "E9 DB 13 58 00 CC CC CC CC CC CC CC CC CC CC CC" + "E9 EB 13 58 00 CC CC CC CC CC CC CC CC CC CC CC" func_13 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 48" func_14 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CGameSceneNode.txt b/dump/windows/vtable_diff/server/CGameSceneNode.txt index f8cc563..16ae31a 100644 --- a/dump/windows/vtable_diff/server/CGameSceneNode.txt +++ b/dump/windows/vtable_diff/server/CGameSceneNode.txt @@ -3,7 +3,7 @@ Virtual Function Count: 28 Children Count: 3 ============================================= func_0 [ DIFF 3 ] ["CBodyComponentPoint::NetworkVar_m_sceneNode", "CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", "CSkeletonInstance"] - "48 89 5C 24 08 57 48 83 EC 20 8B FA 48 8D 05 0D" + "48 89 5C 24 08 57 48 83 EC 20 8B FA 48 8D 05 2D" func_1 [ DIFF 2 ] ["CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", "CSkeletonInstance"] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_2 [ DIFF 2 ] ["CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", "CSkeletonInstance"] diff --git a/dump/windows/vtable_diff/server/CLoopModeGame.txt b/dump/windows/vtable_diff/server/CLoopModeGame.txt index 5785e88..10b9bed 100644 --- a/dump/windows/vtable_diff/server/CLoopModeGame.txt +++ b/dump/windows/vtable_diff/server/CLoopModeGame.txt @@ -15,7 +15,7 @@ func_4 [ DIFF 0 ] [] func_5 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_6 [ DIFF 0 ] [] - "40 53 48 83 EC 60 48 8D 05 93 69 AC 00 48 C7 44" + "40 53 48 83 EC 60 48 8D 05 B3 69 AC 00 48 C7 44" func_7 [ DIFF 0 ] [] "32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_8 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CSource2GameClients.txt b/dump/windows/vtable_diff/server/CSource2GameClients.txt index d337043..f161660 100644 --- a/dump/windows/vtable_diff/server/CSource2GameClients.txt +++ b/dump/windows/vtable_diff/server/CSource2GameClients.txt @@ -5,7 +5,7 @@ Children Count: 0 func_0 [ DIFF 0 ] [] "48 89 54 24 10 53 48 83 EC 20 48 8B D9 48 89 54" func_1 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 92 9A 45 00 8B 53" + "40 53 48 83 EC 20 48 8B D9 E8 A2 9A 45 00 8B 53" func_2 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CSource2GameEntities.txt b/dump/windows/vtable_diff/server/CSource2GameEntities.txt index bb7d184..f2cd755 100644 --- a/dump/windows/vtable_diff/server/CSource2GameEntities.txt +++ b/dump/windows/vtable_diff/server/CSource2GameEntities.txt @@ -5,7 +5,7 @@ Children Count: 0 func_0 [ DIFF 0 ] [] "48 89 54 24 10 53 48 83 EC 20 48 8B D9 48 89 54" func_1 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 92 1C 47 00 8B 53" + "40 53 48 83 EC 20 48 8B D9 E8 A2 1C 47 00 8B 53" func_2 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] diff --git a/dump/windows/vtable_diff/server/CSource2Server.txt b/dump/windows/vtable_diff/server/CSource2Server.txt index b653bb3..ada7d5c 100644 --- a/dump/windows/vtable_diff/server/CSource2Server.txt +++ b/dump/windows/vtable_diff/server/CSource2Server.txt @@ -5,13 +5,13 @@ Children Count: 0 func_0 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 48 8B F9 48 8B DA" func_1 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B D9 E8 B2 E5 71 00 E8 7D" + "40 53 48 83 EC 20 48 8B D9 E8 C2 E5 71 00 E8 8D" func_2 [ DIFF 0 ] [] "33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_3 [ DIFF 0 ] [] "48 83 EC 28 48 83 3D EC DD 20 01 00 74 07 33 C9" func_4 [ DIFF 0 ] [] - "40 53 48 83 EC 20 48 8B 0D C3 46 DE 00 E8 CE D6" + "40 53 48 83 EC 20 48 8B 0D B3 46 DE 00 E8 CE D6" func_5 [ DIFF 0 ] [] "48 83 EC 28 48 8B 05 5D 91 09 01 48 85 C0 74 5A" func_6 [ DIFF 0 ] [] @@ -29,15 +29,15 @@ func_11 [ DIFF 0 ] [] func_12 [ DIFF 0 ] [] "48 8B 0D 79 82 E1 00 4C 8D 05 92 77 E1 00 48 85" func_13 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 05 0D 8F 09 01 48 39 05 06 E1" + "48 83 EC 28 48 8B 05 1D 8F 09 01 48 39 05 16 E1" func_14 [ DIFF 0 ] [] "40 53 48 81 EC 80 00 00 00 48 8B DA C7 44 24 30" func_15 [ DIFF 0 ] [] - "40 53 48 83 EC 30 0F B6 DA E8 12 1A ED FF 84 C0" + "40 53 48 83 EC 30 0F B6 DA E8 C2 1A ED FF 84 C0" func_16 [ DIFF 0 ] [] - "48 8B 05 71 DF 08 01 48 8B 88 40 21 00 00 48 8B" + "48 8B 05 21 E0 08 01 48 8B 88 40 21 00 00 48 8B" func_17 [ DIFF 0 ] [] - "48 8B 05 F1 DE 08 01 48 8B 88 40 21 00 00 48 8B" + "48 8B 05 01 E0 08 01 48 8B 88 40 21 00 00 48 8B" func_18 [ DIFF 0 ] [] "48 8B C4 55 56 48 8D A8 38 FC FF FF 48 81 EC B8" func_19 [ DIFF 0 ] [] @@ -53,27 +53,27 @@ func_23 [ DIFF 0 ] [] func_24 [ DIFF 0 ] [] "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 40 48" func_25 [ DIFF 0 ] [] - "48 8B 0D 69 83 09 01 48 85 C9 75 03 32 C0 C3 48" + "48 8B 0D E9 83 09 01 48 85 C9 75 03 32 C0 C3 48" func_26 [ DIFF 0 ] [] "48 8B 0D 49 83 09 01 48 85 C9 74 0A 48 8B 01 48" func_27 [ DIFF 0 ] [] "48 83 EC 28 BA FF FF FF FF 48 8D 0D C8 25 09 01" func_28 [ DIFF 0 ] [] - "48 85 D2 74 16 48 8B 0D 24 82 09 01 48 85 C9 74" + "48 85 D2 74 16 48 8B 0D C4 82 09 01 48 85 C9 74" func_29 [ DIFF 0 ] [] - "48 8B 05 81 D5 08 01 48 8B 88 40 21 00 00 48 8B" + "48 8B 05 21 D6 08 01 48 8B 88 40 21 00 00 48 8B" func_30 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D CD 29 02 01 48 85 C9 75 0C" + "48 83 EC 28 48 8B 0D 6D 2A 02 01 48 85 C9 75 0C" func_31 [ DIFF 0 ] [] - "48 8B 0D 49 83 09 01 48 85 C9 75 03 32 C0 C3 48" + "48 8B 0D E9 83 09 01 48 85 C9 75 03 32 C0 C3 48" func_32 [ DIFF 0 ] [] - "48 83 3D 90 0F 1C 01 00 0F 95 C0 C3 CC CC CC CC" + "48 83 3D 30 10 1C 01 00 0F 95 C0 C3 CC CC CC CC" func_33 [ DIFF 0 ] [] "C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC" func_34 [ DIFF 0 ] [] - "48 8B CA E9 18 86 20 00 CC CC CC CC CC CC CC CC" + "48 8B CA E9 28 86 20 00 CC CC CC CC CC CC CC CC" func_35 [ DIFF 0 ] [] - "48 8B CA E9 78 D4 20 00 CC CC CC CC CC CC CC CC" + "48 8B CA E9 88 D4 20 00 CC CC CC CC CC CC CC CC" func_36 [ DIFF 0 ] [] "49 8B C1 4D 8B D0 4C 8B 4C 24 28 8B CA 4C 8B C0" func_37 [ DIFF 0 ] [] @@ -111,7 +111,7 @@ func_52 [ DIFF 0 ] [] func_53 [ DIFF 0 ] [] "48 8B 05 41 DE 08 01 48 8B 88 38 21 00 00 48 8B" func_54 [ DIFF 0 ] [] - "48 89 5C 24 08 57 48 83 EC 20 48 8B 05 7F 3B DE" + "48 89 5C 24 08 57 48 83 EC 20 48 8B 05 6F 3B DE" func_55 [ DIFF 0 ] [] "4D 85 C0 74 64 48 89 5C 24 08 48 89 74 24 10 57" func_56 [ DIFF 0 ] [] @@ -151,9 +151,9 @@ func_72 [ DIFF 0 ] [] func_73 [ DIFF 0 ] [] "E9 2B E2 E7 FF CC CC CC CC CC CC CC CC CC CC CC" func_74 [ DIFF 0 ] [] - "48 83 EC 28 48 8B 0D 1D B8 1A 01 45 33 C0 E8 9D" + "48 83 EC 28 48 8B 0D 1D B8 1A 01 45 33 C0 E8 AD" func_75 [ DIFF 0 ] [] - "48 8B 0D E1 B7 1A 01 45 33 C0 E9 D1 F5 43 00 CC" + "48 8B 0D E1 B7 1A 01 45 33 C0 E9 E1 F5 43 00 CC" func_76 [ DIFF 0 ] [] "48 89 5C 24 08 57 48 83 EC 20 48 8B 0D C7 B7 1A" func_77 [ DIFF 0 ] [] diff --git a/dump/windows/vtables/client.json b/dump/windows/vtables/client.json index da40d36..7843d6e 100644 --- a/dump/windows/vtables/client.json +++ b/dump/windows/vtables/client.json @@ -1,14 +1,14 @@ [ { "type_name": "??_R0?AV?$_Func_impl_no_alloc@V@?1???$SortChildren@V@?1???$ReverseComparator@A6A_NPEBVCPanel2D@panorama@@0@Z@@YA?A_PA6A_NPEBVCPanel2D@panorama@@0@Z@Z@@CPanel2D@panorama@@QEAAX$$QEAV1?1???$ReverseComparator@A6A_NPEBVCPanel2D@panorama@@0@Z@@YA?A_PA6A_NPEBV23@0@Z@Z@@Z@_NPEAVIUIPanel@3@PEAV43@@std@@@8", - "vtable_address": 6467660096, + "vtable_address": 6467664192, "methods": [ - 6462053664, - 6462053952, - 6462053808, - 6462054000, - 6462053712, - 6462053904 + 6462055856, + 6462056144, + 6462056000, + 6462056192, + 6462055904, + 6462056096 ], "bases": [ { @@ -28,7 +28,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468973392, + "complete_object_locator": 6468977488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -37,25 +37,25 @@ }, { "type_name": "AccountActivity", - "vtable_address": 6465009368, - "methods": [ - 6446499936, - 6457189536, - 6446481504, - 6446481632, - 6446481840, - 6457189584, - 6457186560, - 6446481920, - 6446483440, - 6446482240, + "vtable_address": 6465013464, + "methods": [ + 6446499584, + 6457191728, + 6446481888, + 6446482016, + 6446482080, + 6457191776, + 6457188752, + 6446482160, + 6446483824, + 6446482480, 6443742160, - 6446482960, - 6457190896, - 6457192720, - 6446485120, - 6446491552, - 6446491536 + 6446483344, + 6457193088, + 6457194912, + 6446485360, + 6446491936, + 6446491920 ], "bases": [ { @@ -89,7 +89,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326712, + "complete_object_locator": 6468330944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98,7 +98,7 @@ }, { "type_name": "AmmoTypeInfo_t", - "vtable_address": 6464784248, + "vtable_address": 6464788328, "methods": [ 6445483712, 6445474000, @@ -108,7 +108,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468285304, + "complete_object_locator": 6468289400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117,10 +117,10 @@ }, { "type_name": "AnimGraphUtils::CTraceFilterAnimGraphSlope", - "vtable_address": 6464677976, + "vtable_address": 6464682056, "methods": [ 6444572336, - 6449737200 + 6449738768 ], "bases": [ { @@ -210,7 +210,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468261760, + "complete_object_locator": 6468265856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219,9 +219,9 @@ }, { "type_name": "BaseModUI::CUIGameData", - "vtable_address": 6466345288, + "vtable_address": 6466349448, "methods": [ - 6452491424 + 6452493040 ], "bases": [ { @@ -241,7 +241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468679496, + "complete_object_locator": 6468683592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250,7 +250,7 @@ }, { "type_name": "CAimTargetManager", - "vtable_address": 6464661392, + "vtable_address": 6464665568, "methods": [ 6443748576, 6443748592, @@ -346,7 +346,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468253624, + "complete_object_locator": 6468257720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -355,20 +355,20 @@ }, { "type_name": "CAmmoDef", - "vtable_address": 6465729584, + "vtable_address": 6465733776, "methods": [ 6444410224, - 6448979216, + 6448980784, 6444410832, - 6448808944, - 6448936032, - 6448897696, - 6449042112, - 6463705588, - 6463705588, - 6448964080, - 6463705588, - 6463705588 + 6448810512, + 6448937600, + 6448899264, + 6449043664, + 6463707780, + 6463707780, + 6448965648, + 6463707780, + 6463707780 ], "bases": [ { @@ -388,7 +388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498264, + "complete_object_locator": 6468502360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -397,18 +397,18 @@ }, { "type_name": "CAmmoDefTyped", - "vtable_address": 6465297368, + "vtable_address": 6465301440, "methods": [ 6444410224, - 6448979216, + 6448980784, 6444410832, 6447745904, - 6448936032, - 6448897696, + 6448937600, + 6448899264, 6447786480, 6447778416, 6447757728, - 6448964080, + 6448965648, 6447756688, 6447767504 ], @@ -444,7 +444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468429280, + "complete_object_locator": 6468433376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -453,7 +453,7 @@ }, { "type_name": "CAnimGraphControllerBase", - "vtable_address": 6464777064, + "vtable_address": 6464781144, "methods": [ 6445483760, 6445449696, @@ -462,20 +462,20 @@ 6445455584, 6445481888, 6445459856, - 6448856960, + 6448858528, 6445460896, 6445458368, 6445460880, 6445459968, 6445481536, - 6463705588, - 6448990368, - 6448989408 + 6463707780, + 6448991936, + 6448990976 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468284576, + "complete_object_locator": 6468288672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -484,7 +484,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 6464675448, + "vtable_address": 6464679528, "methods": [ 6443748576, 6443748592, @@ -594,7 +594,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468260784, + "complete_object_locator": 6468264880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -603,7 +603,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 6464675944, + "vtable_address": 6464680024, "methods": [ 6443926160, 6444867840 @@ -654,7 +654,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468260928, + "complete_object_locator": 6468265024, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -663,7 +663,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 6464675968, + "vtable_address": 6464680048, "methods": [ 6444867056 ], @@ -713,7 +713,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468260968, + "complete_object_locator": 6468265064, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -722,7 +722,7 @@ }, { "type_name": "CAnimGraphNetworkedVariables", - "vtable_address": 6464672848, + "vtable_address": 6464676928, "methods": [ 6444941808, 6444942144, @@ -807,7 +807,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468258584, + "complete_object_locator": 6468262680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -816,12 +816,12 @@ }, { "type_name": "CAnimGraphSaveRestoreOps", - "vtable_address": 6465707464, + "vtable_address": 6465711816, "methods": [ - 6448751136, - 6448751232, - 6448751488, - 6448751504, + 6448752704, + 6448752800, + 6448753056, + 6448753072, 6443852464, 6443799744 ], @@ -857,7 +857,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490152, + "complete_object_locator": 6468494248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -866,10 +866,10 @@ }, { "type_name": "CAnimGraphTraceFilter", - "vtable_address": 6464673368, + "vtable_address": 6464677448, "methods": [ 6444571232, - 6449737200 + 6449738768 ], "bases": [ { @@ -959,7 +959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468258792, + "complete_object_locator": 6468262888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -968,7 +968,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 6464673392, + "vtable_address": 6464677472, "methods": [ 6444963152 ], @@ -1018,7 +1018,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468258960, + "complete_object_locator": 6468263056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -1027,7 +1027,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 6464673408, + "vtable_address": 6464677488, "methods": [ 6444568920 ], @@ -1077,7 +1077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468259184, + "complete_object_locator": 6468263280, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -1086,7 +1086,7 @@ }, { "type_name": "CAnimPose", - "vtable_address": 6467555880, + "vtable_address": 6467559976, "methods": [ 6444568944 ], @@ -1108,7 +1108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954352, + "complete_object_locator": 6468958448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1117,10 +1117,10 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6465717760, + "vtable_address": 6465721952, "methods": [ - 6448807120, - 6448968656 + 6448808688, + 6448970224 ], "bases": [ { @@ -1140,7 +1140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468493576, + "complete_object_locator": 6468497672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1149,10 +1149,10 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6465717688, + "vtable_address": 6465721880, "methods": [ - 6448807296, - 6448968800 + 6448808864, + 6448970368 ], "bases": [ { @@ -1172,7 +1172,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468493192, + "complete_object_locator": 6468497288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1181,10 +1181,10 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6465717736, + "vtable_address": 6465721928, "methods": [ - 6448807472, - 6448968944 + 6448809040, + 6448970512 ], "bases": [ { @@ -1204,7 +1204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468493448, + "complete_object_locator": 6468497544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1213,10 +1213,10 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6465717712, + "vtable_address": 6465721904, "methods": [ - 6448807648, - 6448969088 + 6448809216, + 6448970656 ], "bases": [ { @@ -1236,7 +1236,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468493320, + "complete_object_locator": 6468497416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1245,10 +1245,10 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6465717784, + "vtable_address": 6465721976, "methods": [ - 6448807824, - 6448969232 + 6448809392, + 6448970800 ], "bases": [ { @@ -1268,7 +1268,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468493704, + "complete_object_locator": 6468497800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1277,10 +1277,10 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6465716296, + "vtable_address": 6465720488, "methods": [ - 6448808000, - 6448969376 + 6448809568, + 6448970944 ], "bases": [ { @@ -1300,7 +1300,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468492208, + "complete_object_locator": 6468496304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1309,31 +1309,31 @@ }, { "type_name": "CAnimationBucket", - "vtable_address": 6467022064, - "methods": [ - 6458804272, - 6458812608, - 6458804800, - 6458815312, - 6458812560, - 6458806048, - 6458805616, - 6458815648, - 6458805664, - 6458811872, - 6458811952, - 6458812432, - 6458812512, - 6458815360, - 6458812096, - 6458812256, - 6458812336, - 6458812400 + "vtable_address": 6467026128, + "methods": [ + 6458806464, + 6458814800, + 6458806992, + 6458817504, + 6458814752, + 6458808240, + 6458807808, + 6458817840, + 6458807856, + 6458814064, + 6458814144, + 6458814624, + 6458814704, + 6458817552, + 6458814288, + 6458814448, + 6458814528, + 6458814592 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468863688, + "complete_object_locator": 6468867784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1342,11 +1342,11 @@ }, { "type_name": "CAsyncCaptionResourceManager", - "vtable_address": 6466133040, + "vtable_address": 6466137248, "methods": [ - 6451548432, + 6451550016, 6443748592, - 6451548448, + 6451550032, 6443748624, 6443748640, 6443748656, @@ -1389,7 +1389,7 @@ 6443749248, 6443749264, 6443749280, - 6451548480, + 6451550064, 6443749312, 6443749328, 6443749344, @@ -1400,11 +1400,11 @@ 6443749424, 6443749440, 6443749456, - 6451548400, + 6451549984, 6443749488, - 6451548384, - 6451548640, - 6451548368 + 6451549968, + 6451550224, + 6451549952 ], "bases": [ { @@ -1438,7 +1438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468612504, + "complete_object_locator": 6468616600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1447,20 +1447,20 @@ }, { "type_name": "CAsyncDataCache", - "vtable_address": 6464865160, + "vtable_address": 6464869240, "methods": [ - 6463705588, - 6463705588, + 6463707780, + 6463707780, 6445623744, 6445623776, 6445623888, - 6463705588, + 6463707780, 6445624320 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468292624, + "complete_object_locator": 6468296720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1469,20 +1469,20 @@ }, { "type_name": "CAsyncDataCache", - "vtable_address": 6464863072, + "vtable_address": 6464867152, "methods": [ - 6463705588, - 6463705588, + 6463707780, + 6463707780, 6445624912, 6445624944, 6445625056, - 6463705588, + 6463707780, 6445617824 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468292664, + "complete_object_locator": 6468296760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1491,20 +1491,20 @@ }, { "type_name": "CAsyncDataCache", - "vtable_address": 6464863200, + "vtable_address": 6464867280, "methods": [ - 6463705588, - 6463705588, + 6463707780, + 6463707780, 6445619264, 6445619296, 6445619408, - 6463705588, + 6463707780, 6445619424 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468292704, + "complete_object_locator": 6468296800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1513,12 +1513,12 @@ }, { "type_name": "CAttributeDictSaveDataOps", - "vtable_address": 6467188640, + "vtable_address": 6467192704, "methods": [ - 6460034224, - 6460034752, - 6460035216, - 6460035248, + 6460036416, + 6460036944, + 6460037408, + 6460037440, 6443852464, 6443799744 ], @@ -1554,7 +1554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468938632, + "complete_object_locator": 6468942728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1563,13 +1563,13 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6465402056, + "vtable_address": 6465406216, "methods": [ - 6447988912, - 6448033728, - 6448033744, - 6448033808, - 6448033792 + 6447990480, + 6448035296, + 6448035312, + 6448035376, + 6448035360 ], "bases": [ { @@ -1589,7 +1589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468444896, + "complete_object_locator": 6468448992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1598,13 +1598,13 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6466828376, + "vtable_address": 6466832488, "methods": [ - 6455868256, - 6456290672, - 6456290688, - 6456290752, - 6456290736 + 6455870016, + 6456292448, + 6456292464, + 6456292528, + 6456292512 ], "bases": [ { @@ -1624,7 +1624,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468795968, + "complete_object_locator": 6468800064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1633,13 +1633,13 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue,class Vec3D >", - "vtable_address": 6466828424, + "vtable_address": 6466832536, "methods": [ - 6455868208, - 6456290576, - 6456290624, - 6456290656, - 6456290640 + 6455869968, + 6456292352, + 6456292400, + 6456292432, + 6456292416 ], "bases": [ { @@ -1659,7 +1659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468796096, + "complete_object_locator": 6468800192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1668,13 +1668,13 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6465425992, + "vtable_address": 6465430152, "methods": [ - 6447988864, - 6448033648, - 6448033664, - 6448033696, - 6448033680 + 6447990432, + 6448035216, + 6448035232, + 6448035264, + 6448035248 ], "bases": [ { @@ -1694,7 +1694,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448304, + "complete_object_locator": 6468452400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1703,7 +1703,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6465337608, + "vtable_address": 6465341672, "methods": [ 6447808064, 6447834832, @@ -1729,7 +1729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431696, + "complete_object_locator": 6468435792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1738,7 +1738,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6465308504, + "vtable_address": 6465312568, "methods": [ 6447745968, 6447779088, @@ -1764,7 +1764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468430496, + "complete_object_locator": 6468434592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1773,14 +1773,14 @@ }, { "type_name": "CAttributeIterator_HasAttribute", - "vtable_address": 6465353248, + "vtable_address": 6465357312, "methods": [ 6447875008, - 6447911376, - 6447911392, - 6447911424, - 6447911408, - 6447911440 + 6447912944, + 6447912960, + 6447912992, + 6447912976, + 6447913008 ], "bases": [ { @@ -1814,7 +1814,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468432784, + "complete_object_locator": 6468436880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1823,17 +1823,17 @@ }, { "type_name": "CAttributeList", - "vtable_address": 6466832256, + "vtable_address": 6466836368, "methods": [ - 6456530368, - 6456514784, - 6456515040, - 6456514928 + 6456532144, + 6456516560, + 6456516816, + 6456516704 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468798064, + "complete_object_locator": 6468802160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1842,24 +1842,24 @@ }, { "type_name": "CAttributeManager", - "vtable_address": 6466755120, - "methods": [ - 6456395216, - 6456134160, - 6456279616, - 6456279824, - 6456279744, - 6455873488, - 6456189264, - 6455891040, - 6456294704, - 6456290160, - 6455892304 + "vtable_address": 6466759216, + "methods": [ + 6456396992, + 6456135936, + 6456281392, + 6456281600, + 6456281520, + 6455875248, + 6456191040, + 6455892800, + 6456296480, + 6456291936, + 6455894064 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468777176, + "complete_object_locator": 6468781272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1868,29 +1868,27 @@ }, { "type_name": "CAttribute_String", - "vtable_address": 6465075320, + "vtable_address": 6465079432, "methods": [ - 6446652880, - 6457189536, - 6446644752, - 6446646288, - 6446646736, - 6457189584, - 6457186560, - 6446646752, - 6446647728, - 6446647248, + 6446653184, + 6457191728, + 6446645136, + 6446646672, + 6446647120, + 6457191776, + 6457188752, + 6446647136, + 6446648112, + 6446647632, 6443742160, - 6446647616, - 6457190896, - 6457192720, - 6446647840, - 6446647968, - 6446647952, - 6457187520, - 6446649648, - 6457187520, - 6446649488 + 6446648000, + 6457193088, + 6457194912, + 6446648224, + 6446648336, + 6446648320, + 6457189712, + 6446650704 ], "bases": [ { @@ -1924,7 +1922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468315376, + "complete_object_locator": 6468319608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1933,10 +1931,10 @@ }, { "type_name": "CAudioEventTagListener", - "vtable_address": 6465717600, + "vtable_address": 6465721792, "methods": [ - 6448809008, - 6448969520 + 6448810576, + 6448971088 ], "bases": [ { @@ -1956,7 +1954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468497744, + "complete_object_locator": 6468501840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1965,7 +1963,7 @@ }, { "type_name": "CAutoGameSystem", - "vtable_address": 6464400920, + "vtable_address": 6464405016, "methods": [ 6443748576, 6443748592, @@ -2027,7 +2025,7 @@ 6443749488, 6443749504, 6443749584, - 6463705588 + 6463707780 ], "bases": [ { @@ -2047,7 +2045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468213760, + "complete_object_locator": 6468217856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2056,32 +2054,32 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 6465717808, + "vtable_address": 6465722000, "methods": [ 6445466544, - 6448809072, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6449061952, - 6448980064, + 6448810640, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -2090,25 +2088,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905344, + 6460060080, + 6448906912, 6445479824, - 6449027120, + 6449028672, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -2125,13 +2123,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -2139,79 +2137,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -2236,37 +2234,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -2276,61 +2274,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -2406,7 +2404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494624, + "complete_object_locator": 6468498720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -2415,14 +2413,14 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 6465720000, + "vtable_address": 6465724192, "methods": [ - 6448807028, - 6448995376, - 6448972352, - 6448972096, + 6448808596, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -2498,7 +2496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494664, + "complete_object_locator": 6468498760, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -2507,9 +2505,9 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 6465720056, + "vtable_address": 6465724248, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -2585,7 +2583,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494704, + "complete_object_locator": 6468498800, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -2594,12 +2592,12 @@ }, { "type_name": "CBaseAnimGraph::NetworkVar_m_RagdollPose", - "vtable_address": 6465717648, + "vtable_address": 6465721840, "methods": [ 6444477376, - 6448965760, + 6448967328, 6444476752, - 6448965984 + 6448967552 ], "bases": [ { @@ -2619,7 +2617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498000, + "complete_object_locator": 6468502096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2628,7 +2626,7 @@ }, { "type_name": "CBaseAnimGraphAnimGraphController", - "vtable_address": 6464781256, + "vtable_address": 6464785336, "methods": [ 6445483808, 6445449888, @@ -2644,8 +2642,8 @@ 6445459968, 6445481536, 6445463760, - 6448990368, - 6448989680 + 6448991936, + 6448991248 ], "bases": [ { @@ -2665,7 +2663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284696, + "complete_object_locator": 6468288792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2674,43 +2672,43 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 6465716944, - "methods": [ - 6449027168, - 6448826400, - 6448826352, - 6448827872, - 6448825840, - 6448828064, - 6448827056, - 6448827856, - 6448827184, - 6448827040, - 6448826992, - 6448826416, - 6448923552, - 6448921312, - 6449037984, - 6448921328, - 6448901952, - 6448901296, - 6448901312, - 6449040224, - 6448963520, - 6449040192, - 6448916976, - 6448905360, - 6450267600, - 6448868864, - 6448951936, - 6449027792, - 6449035952, - 6448965648, - 6448966048, - 6448965904, - 6448828432, - 6448916064, - 6448899200 + "vtable_address": 6465721136, + "methods": [ + 6449028720, + 6448827968, + 6448827920, + 6448829440, + 6448827408, + 6448829632, + 6448828624, + 6448829424, + 6448828752, + 6448828608, + 6448828560, + 6448827984, + 6448925120, + 6448922880, + 6449039536, + 6448922896, + 6448903520, + 6448902864, + 6448902880, + 6449041776, + 6448965088, + 6449041744, + 6448918544, + 6448906928, + 6450269168, + 6448870432, + 6448953504, + 6449029344, + 6449037504, + 6448967216, + 6448967616, + 6448967472, + 6448830000, + 6448917632, + 6448900768 ], "bases": [ { @@ -2758,7 +2756,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494744, + "complete_object_locator": 6468498840, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -2767,9 +2765,9 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 6465717232, + "vtable_address": 6465721424, "methods": [ - 6448968640 + 6448970208 ], "bases": [ { @@ -2817,7 +2815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494784, + "complete_object_locator": 6468498880, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -2826,7 +2824,7 @@ }, { "type_name": "CBaseAnimGraphController::NetworkVar_m_animGraphNetworkedVars", - "vtable_address": 6465715776, + "vtable_address": 6465719968, "methods": [ 6444941808, 6444942144, @@ -2888,9 +2886,9 @@ 6444814112, 6444796416, 6444939696, - 6448965808, + 6448967376, 6444865456, - 6448966016, + 6448967584, 6444813376 ], "bases": [ @@ -2925,7 +2923,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468497136, + "complete_object_locator": 6468501232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2934,62 +2932,62 @@ }, { "type_name": "CBaseAnimatingCamera", - "vtable_address": 6466019584, - "methods": [ - 6450921408, - 6450991808, - 6451026608, - 6451049328, - 6451026336, - 6450924928, - 6451020880, - 6451021280, - 6451016672, - 6451015488, - 6451042768, - 6451042992, - 6450986864, - 6450984624, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6450983712, - 6450983616, - 6450989168, - 6450989280, - 6451046288, - 6451046400, - 6451042976, - 6450984432, - 6450980704, - 6450980832, - 6450980768, - 6450931200, - 6451046256, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952, - 6450979632, - 6450991632 + "vtable_address": 6466023792, + "methods": [ + 6450922976, + 6450993376, + 6451028176, + 6451050896, + 6451027904, + 6450926496, + 6451022448, + 6451022848, + 6451018240, + 6451017056, + 6451044336, + 6451044560, + 6450988432, + 6450986192, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6450985280, + 6450985184, + 6450990736, + 6450990848, + 6451047856, + 6451047968, + 6451044544, + 6450986000, + 6450982272, + 6450982400, + 6450982336, + 6450932768, + 6451047824, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520, + 6450981200, + 6450993200 ], "bases": [ { @@ -3023,7 +3021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581432, + "complete_object_locator": 6468585528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3032,60 +3030,60 @@ }, { "type_name": "CBaseCamera", - "vtable_address": 6466018728, - "methods": [ - 6450921472, - 6450991808, - 6451026608, - 6451049616, - 6451026336, - 6450924928, - 6451020896, - 6451021280, - 6451016672, - 6451015488, - 6451042768, - 6451042992, - 6450986864, - 6450984624, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6450983712, - 6450983616, - 6450989168, - 6450989280, - 6451046288, - 6451046400, - 6451042976, - 6450984432, - 6450980704, - 6450980832, - 6450980768, - 6450931200, - 6451046256, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952 + "vtable_address": 6466022936, + "methods": [ + 6450923040, + 6450993376, + 6451028176, + 6451051184, + 6451027904, + 6450926496, + 6451022464, + 6451022848, + 6451018240, + 6451017056, + 6451044336, + 6451044560, + 6450988432, + 6450986192, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6450985280, + 6450985184, + 6450990736, + 6450990848, + 6451047856, + 6451047968, + 6451044544, + 6450986000, + 6450982272, + 6450982400, + 6450982336, + 6450932768, + 6451047824, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520 ], "bases": [ { @@ -3105,7 +3103,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581304, + "complete_object_locator": 6468585400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3114,58 +3112,58 @@ }, { "type_name": "CBaseCameraManager", - "vtable_address": 6466019152, - "methods": [ - 6450921536, - 6450991840, - 6451049680, - 6451016688, - 6463705588, - 6451015504, - 6451015264, - 6451015472, - 6450987968, - 6451051920, - 6450955232, - 6450955248, - 6451004128, - 6451046304, - 6451046352, - 6451004304, - 6451003744, - 6451003776, - 6450988160, - 6451042784, - 6451043008, - 6450986896, - 6450984656, - 6450987072, - 6450977840, - 6450986992, - 6450983360, - 6450983424, - 6450983728, - 6450983632, - 6450980656, - 6450980784, - 6450980720, - 6450989296, - 6450989184, - 6450980192, - 6450977712, - 6450977728, - 6450984448, - 6450931568, - 6451046224, - 6451028064, - 6451015280, - 6450993664, - 6450993632, - 6451019040, - 6451019072, - 6451018448, - 6451018960, - 6451019104 + "vtable_address": 6466023360, + "methods": [ + 6450923104, + 6450993408, + 6451051248, + 6451018256, + 6463707780, + 6451017072, + 6451016832, + 6451017040, + 6450989536, + 6451053488, + 6450956800, + 6450956816, + 6451005696, + 6451047872, + 6451047920, + 6451005872, + 6451005312, + 6451005344, + 6450989728, + 6451044352, + 6451044576, + 6450988464, + 6450986224, + 6450988640, + 6450979408, + 6450988560, + 6450984928, + 6450984992, + 6450985296, + 6450985200, + 6450982224, + 6450982352, + 6450982288, + 6450990864, + 6450990752, + 6450981760, + 6450979280, + 6450979296, + 6450986016, + 6450933136, + 6451047792, + 6451029632, + 6451016848, + 6450995232, + 6450995200, + 6451020608, + 6451020640, + 6451020016, + 6451020528, + 6451020672 ], "bases": [ { @@ -3213,7 +3211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581040, + "complete_object_locator": 6468585136, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -3222,10 +3220,10 @@ }, { "type_name": "CBaseCameraManager", - "vtable_address": 6466019560, + "vtable_address": 6466023768, "methods": [ - 6450920956, - 6450975488 + 6450922524, + 6450977056 ], "bases": [ { @@ -3273,7 +3271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581264, + "complete_object_locator": 6468585360, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -3282,25 +3280,25 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6464680696, + "vtable_address": 6464684776, "methods": [ 6444569552, - 6457189536, + 6457191728, 6444865488, - 6445808256, - 6445808352, - 6457189584, - 6457186560, - 6445808368, + 6445808304, + 6445808400, + 6457191776, + 6457188752, + 6445808464, 6444784688, - 6445808976, + 6445808960, 6443742160, - 6445809552, - 6457190896, - 6457192720, - 6445809968, - 6445810608, - 6445810576 + 6445809728, + 6457193088, + 6457194912, + 6445810240, + 6445810592, + 6445810368 ], "bases": [ { @@ -3348,7 +3346,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468262784, + "complete_object_locator": 6468266880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3357,25 +3355,25 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6464681032, + "vtable_address": 6464685112, "methods": [ 6444569664, - 6457189536, + 6457191728, 6444865504, - 6445828800, - 6445828912, - 6457189584, - 6457186560, - 6445829072, + 6445829184, + 6445829296, + 6457191776, + 6457188752, + 6445829456, 6444784704, - 6445829232, + 6445829616, 6443742160, - 6445829728, - 6457190896, - 6457192720, - 6445829984, - 6445830080, - 6445830064 + 6445830112, + 6457193088, + 6457194912, + 6445830368, + 6445830464, + 6445830448 ], "bases": [ { @@ -3423,7 +3421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468263432, + "complete_object_locator": 6468267528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3432,25 +3430,25 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6465813320, + "vtable_address": 6465817512, "methods": [ - 6449496160, - 6457189536, - 6446888080, - 6446889680, - 6446890864, - 6457189584, - 6457186560, - 6446890880, - 6446894528, - 6446891904, + 6449497728, + 6457191728, + 6446888304, + 6446889904, + 6446891088, + 6457191776, + 6457188752, + 6446891104, + 6446894752, + 6446892128, 6443742160, - 6446893568, - 6457190896, - 6457192720, - 6446894704, - 6446894816, - 6446894800 + 6446893792, + 6457193088, + 6457194912, + 6446894928, + 6446895040, + 6446895024 ], "bases": [ { @@ -3498,7 +3496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468522640, + "complete_object_locator": 6468526736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3507,25 +3505,25 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6464662688, + "vtable_address": 6464666864, "methods": [ 6444487328, - 6457189536, + 6457191728, 6444489248, - 6447346352, - 6447346448, - 6457189584, - 6457186560, - 6447346480, - 6444489264, + 6447346576, 6447346672, + 6457191776, + 6457188752, + 6447346688, + 6444489264, + 6447346896, 6443742160, - 6447347872, - 6457190896, - 6457192720, - 6447349008, - 6447349616, - 6447349376 + 6447348096, + 6457193088, + 6457194912, + 6447349232, + 6447349840, + 6447349600 ], "bases": [ { @@ -3573,7 +3571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468252440, + "complete_object_locator": 6468256536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3582,61 +3580,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467103288, - "methods": [ - 6459235072, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667040, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416176, - 6459415376, - 6459415344, - 6459763712, - 6459679968, - 6459743360, - 6459443312, - 6459613456, - 6459632208, - 6459641760, - 6459650176, - 6459428752, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656656, - 6459886800, - 6459711024, - 6459868704, - 6459831344, - 6459493584, - 6459315088, - 6459536288, - 6459561584, - 6459626032, - 6459631840, - 6459717856, - 6459680768, - 6459669072, - 6459657344, - 6459813040, - 6459805984, - 6459496240, - 6459496272, - 6459799024, - 6459469360, - 6459888928 + "vtable_address": 6467107352, + "methods": [ + 6459237264, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669232, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418368, + 6459417568, + 6459417536, + 6459765904, + 6459682160, + 6459745552, + 6459445504, + 6459615648, + 6459634400, + 6459643952, + 6459652368, + 6459430944, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658848, + 6459888992, + 6459713216, + 6459870896, + 6459833536, + 6459495776, + 6459317280, + 6459538480, + 6459563776, + 6459628224, + 6459634032, + 6459720048, + 6459682960, + 6459671264, + 6459659536, + 6459815232, + 6459808176, + 6459498432, + 6459498464, + 6459801216, + 6459471552, + 6459891120 ], "bases": [ { @@ -3670,7 +3668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468897616, + "complete_object_locator": 6468901712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3679,61 +3677,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467104912, - "methods": [ - 6459235136, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667056, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416192, - 6459415376, - 6459415344, - 6459764064, - 6459680096, - 6459743872, - 6459443584, - 6459613456, - 6459632208, - 6459641952, - 6459650320, - 6459428944, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656768, - 6459887072, - 6459711568, - 6459869328, - 6459831680, - 6459493936, - 6459315888, - 6459537104, - 6459562000, - 6459626224, - 6459631840, - 6459717920, - 6459680768, - 6459669088, - 6459657344, - 6459813168, - 6459806112, - 6459496240, - 6459496272, - 6459799136, - 6459469856, - 6459888928 + "vtable_address": 6467108976, + "methods": [ + 6459237328, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669248, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418384, + 6459417568, + 6459417536, + 6459766256, + 6459682288, + 6459746064, + 6459445776, + 6459615648, + 6459634400, + 6459644144, + 6459652512, + 6459431136, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658960, + 6459889264, + 6459713760, + 6459871520, + 6459833872, + 6459496128, + 6459318080, + 6459539296, + 6459564192, + 6459628416, + 6459634032, + 6459720112, + 6459682960, + 6459671280, + 6459659536, + 6459815360, + 6459808304, + 6459498432, + 6459498464, + 6459801328, + 6459472048, + 6459891120 ], "bases": [ { @@ -3767,7 +3765,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468898704, + "complete_object_locator": 6468902800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3776,61 +3774,449 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467157600, + "vtable_address": 6467161664, + "methods": [ + 6459237392, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669264, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418400, + 6459417568, + 6459417536, + 6459766608, + 6459682416, + 6459746576, + 6459446048, + 6459615648, + 6459634400, + 6459644336, + 6459652656, + 6459431328, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659072, + 6459889536, + 6459714304, + 6459872144, + 6459834208, + 6459496480, + 6459318880, + 6459540112, + 6459564608, + 6459628608, + 6459634032, + 6459720176, + 6459682960, + 6459671296, + 6459659536, + 6459815488, + 6459808432, + 6459498432, + 6459498464, + 6459801440, + 6459472544, + 6459891120 + ], + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468938720, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467134344, + "methods": [ + 6459237456, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669280, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418416, + 6459417568, + 6459417536, + 6459766960, + 6459682544, + 6459747088, + 6459446320, + 6459615648, + 6459634400, + 6459644528, + 6459652800, + 6459431520, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659184, + 6459889808, + 6459714848, + 6459872768, + 6459834544, + 6459496832, + 6459319680, + 6459540928, + 6459565024, + 6459628800, + 6459634032, + 6459720240, + 6459682960, + 6459671312, + 6459659536, + 6459815616, + 6459808560, + 6459498432, + 6459498464, + 6459801552, + 6459473040, + 6459891120 + ], + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468918256, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467076152, + "methods": [ + 6459237520, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669296, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418432, + 6459417568, + 6459417536, + 6459767312, + 6459682672, + 6459747600, + 6459446592, + 6459615648, + 6459634400, + 6459644720, + 6459652944, + 6459431712, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659296, + 6459890080, + 6459715392, + 6459873392, + 6459834880, + 6459497184, + 6459320480, + 6459541744, + 6459565440, + 6459628992, + 6459634032, + 6459720304, + 6459682960, + 6459671328, + 6459659536, + 6459815744, + 6459808688, + 6459498432, + 6459498464, + 6459801664, + 6459473536, + 6459891120 + ], + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468882608, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467073024, + "methods": [ + 6459237584, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669312, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418448, + 6459417568, + 6459417536, + 6459767664, + 6459682800, + 6459748112, + 6459446864, + 6459615648, + 6459634400, + 6459644912, + 6459653088, + 6459431904, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659408, + 6459890352, + 6459715936, + 6459874016, + 6459835216, + 6459497536, + 6459321280, + 6459542560, + 6459565856, + 6459629184, + 6459634032, + 6459720368, + 6459682960, + 6459671344, + 6459659536, + 6459815872, + 6459808816, + 6459498432, + 6459498464, + 6459801776, + 6459474032, + 6459891120 + ], + "bases": [ + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468880480, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", + "vtable_address": 6467173048, "methods": [ - 6459235200, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667072, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416208, - 6459415376, - 6459415344, - 6459764416, - 6459680224, - 6459744384, - 6459443856, - 6459613456, - 6459632208, - 6459642144, - 6459650464, - 6459429136, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656880, - 6459887344, - 6459712112, - 6459869952, - 6459832016, - 6459494288, - 6459316688, - 6459537920, - 6459562416, - 6459626416, - 6459631840, - 6459717984, - 6459680768, - 6459669104, - 6459657344, - 6459813296, - 6459806240, - 6459496240, - 6459496272, - 6459799248, - 6459470352, - 6459888928 + 6459235088, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668688, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417824, + 6459417568, + 6459417536, + 6459753936, + 6459677808, + 6459728144, + 6459436256, + 6459615648, + 6459634400, + 6459637424, + 6459647472, + 6459424416, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655040, + 6459879744, + 6459691840, + 6459849344, + 6459821392, + 6459483600, + 6459290080, + 6459510736, + 6459549632, + 6459621696, + 6459634032, + 6459717456, + 6459682960, + 6459669952, + 6459659536, + 6459810880, + 6459803824, + 6459498432, + 6459498464, + 6459797408, + 6459454688, + 6459891120 ], "bases": [ { @@ -3864,7 +4250,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468934624, + "complete_object_locator": 6468924384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3872,159 +4258,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467130280, - "methods": [ - 6459235264, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667088, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416224, - 6459415376, - 6459415344, - 6459764768, - 6459680352, - 6459744896, - 6459444128, - 6459613456, - 6459632208, - 6459642336, - 6459650608, - 6459429328, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656992, - 6459887616, - 6459712656, - 6459870576, - 6459832352, - 6459494640, - 6459317488, - 6459538736, - 6459562832, - 6459626608, - 6459631840, - 6459718048, - 6459680768, - 6459669120, - 6459657344, - 6459813424, - 6459806368, - 6459496240, - 6459496272, - 6459799360, - 6459470848, - 6459888928 - ], - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468914160, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467072088, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "vtable_address": 6467155712, "methods": [ - 6459235328, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667104, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416240, - 6459415376, - 6459415344, - 6459765120, - 6459680480, - 6459745408, - 6459444400, - 6459613456, - 6459632208, - 6459642528, - 6459650752, - 6459429520, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657104, - 6459887888, - 6459713200, - 6459871200, - 6459832688, - 6459494992, - 6459318288, - 6459539552, - 6459563248, - 6459626800, - 6459631840, - 6459718112, - 6459680768, - 6459669136, - 6459657344, - 6459813552, - 6459806496, - 6459496240, - 6459496272, - 6459799472, - 6459471344, - 6459888928 + 6459235152, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668704, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417840, + 6459417568, + 6459417536, + 6459754288, + 6459677936, + 6459728656, + 6459436528, + 6459615648, + 6459634400, + 6459637616, + 6459647616, + 6459424608, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655152, + 6459880016, + 6459692544, + 6459849968, + 6459821744, + 6459483952, + 6459290880, + 6459511552, + 6459550048, + 6459621888, + 6459634032, + 6459717520, + 6459682960, + 6459670224, + 6459659536, + 6459811008, + 6459803952, + 6459498432, + 6459498464, + 6459797520, + 6459455184, + 6459891120 ], "bases": [ { @@ -4058,7 +4347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878512, + "complete_object_locator": 6468934800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4066,62 +4355,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467068960, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputLooseVariable_t>", + "vtable_address": 6467098160, "methods": [ - 6459235392, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667120, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416256, - 6459415376, - 6459415344, - 6459765472, - 6459680608, - 6459745920, - 6459444672, - 6459613456, - 6459632208, - 6459642720, - 6459650896, - 6459429712, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657216, - 6459888160, - 6459713744, - 6459871824, - 6459833024, - 6459495344, - 6459319088, - 6459540368, - 6459563664, - 6459626992, - 6459631840, - 6459718176, - 6459680768, - 6459669152, - 6459657344, - 6459813680, - 6459806624, - 6459496240, - 6459496272, - 6459799584, - 6459471840, - 6459888928 + 6459235216, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668720, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417856, + 6459417568, + 6459417536, + 6459754640, + 6459678064, + 6459729168, + 6459436800, + 6459615648, + 6459634400, + 6459637808, + 6459647760, + 6459424800, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655264, + 6459880288, + 6459693248, + 6459850592, + 6459822096, + 6459484304, + 6459291680, + 6459512368, + 6459550464, + 6459622080, + 6459634032, + 6459717584, + 6459682960, + 6459670496, + 6459659536, + 6459811136, + 6459804080, + 6459498432, + 6459498464, + 6459797632, + 6459455680, + 6459891120 ], "bases": [ { @@ -4155,7 +4444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468876384, + "complete_object_locator": 6468895904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4163,62 +4452,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467168984, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", + "vtable_address": 6467137320, "methods": [ - 6459232896, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666496, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415632, - 6459415376, - 6459415344, - 6459751744, - 6459675616, - 6459725952, - 6459434064, - 6459613456, - 6459632208, - 6459635232, - 6459645280, - 6459422224, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652848, - 6459877552, - 6459689648, - 6459847152, - 6459819200, - 6459481408, - 6459287888, - 6459508544, - 6459547440, - 6459619504, - 6459631840, - 6459715264, - 6459680768, - 6459667760, - 6459657344, - 6459808688, - 6459801632, - 6459496240, - 6459496272, - 6459795216, - 6459452496, - 6459888928 + 6459235280, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668736, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417872, + 6459417568, + 6459417536, + 6459754992, + 6459678192, + 6459729680, + 6459437072, + 6459615648, + 6459634400, + 6459638000, + 6459647904, + 6459424992, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655376, + 6459880560, + 6459693952, + 6459851216, + 6459822448, + 6459484656, + 6459292480, + 6459513184, + 6459550880, + 6459622272, + 6459634032, + 6459717648, + 6459682960, + 6459670768, + 6459659536, + 6459811264, + 6459804208, + 6459498432, + 6459498464, + 6459797744, + 6459456176, + 6459891120 ], "bases": [ { @@ -4252,7 +4541,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468920288, + "complete_object_locator": 6468920384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4260,62 +4549,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467151648, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputLooseVariable_t>", + "vtable_address": 6467096168, "methods": [ - 6459232960, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666512, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415648, - 6459415376, - 6459415344, - 6459752096, - 6459675744, - 6459726464, - 6459434336, - 6459613456, - 6459632208, - 6459635424, - 6459645424, - 6459422416, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652960, - 6459877824, - 6459690352, - 6459847776, - 6459819552, - 6459481760, - 6459288688, - 6459509360, - 6459547856, - 6459619696, - 6459631840, - 6459715328, - 6459680768, - 6459668032, - 6459657344, - 6459808816, - 6459801760, - 6459496240, - 6459496272, - 6459795328, - 6459452992, - 6459888928 + 6459235344, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668752, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417888, + 6459417568, + 6459417536, + 6459755344, + 6459678320, + 6459730192, + 6459437344, + 6459615648, + 6459634400, + 6459638192, + 6459648048, + 6459425184, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655488, + 6459880832, + 6459694656, + 6459851840, + 6459822800, + 6459485008, + 6459293280, + 6459514000, + 6459551296, + 6459622464, + 6459634032, + 6459717712, + 6459682960, + 6459670784, + 6459659536, + 6459811392, + 6459804336, + 6459498432, + 6459498464, + 6459797856, + 6459456672, + 6459891120 ], "bases": [ { @@ -4349,7 +4638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468930704, + "complete_object_locator": 6468894512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4357,62 +4646,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467094096, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467104856, "methods": [ - 6459233024, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666528, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415664, - 6459415376, - 6459415344, - 6459752448, - 6459675872, - 6459726976, - 6459434608, - 6459613456, - 6459632208, - 6459635616, - 6459645568, - 6459422608, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653072, - 6459878096, - 6459691056, - 6459848400, - 6459819904, - 6459482112, - 6459289488, - 6459510176, - 6459548272, - 6459619888, - 6459631840, - 6459715392, - 6459680768, - 6459668304, - 6459657344, - 6459808944, - 6459801888, - 6459496240, - 6459496272, - 6459795440, - 6459453488, - 6459888928 + 6459236176, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668960, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418096, + 6459417568, + 6459417536, + 6459759920, + 6459679984, + 6459736848, + 6459440880, + 6459615648, + 6459634400, + 6459640688, + 6459649920, + 6459427680, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656944, + 6459884368, + 6459703184, + 6459860192, + 6459827664, + 6459489792, + 6459303680, + 6459524608, + 6459556704, + 6459624960, + 6459634032, + 6459718544, + 6459682960, + 6459670992, + 6459659536, + 6459813056, + 6459806000, + 6459498432, + 6459498464, + 6459799312, + 6459463120, + 6459891120 ], "bases": [ { @@ -4446,7 +4735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468891808, + "complete_object_locator": 6468900304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4454,62 +4743,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467133256, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467111952, "methods": [ - 6459233088, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666544, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415680, - 6459415376, - 6459415344, - 6459752800, - 6459676000, - 6459727488, - 6459434880, - 6459613456, - 6459632208, - 6459635808, - 6459645712, - 6459422800, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653184, - 6459878368, - 6459691760, - 6459849024, - 6459820256, - 6459482464, - 6459290288, - 6459510992, - 6459548688, - 6459620080, - 6459631840, - 6459715456, - 6459680768, - 6459668576, - 6459657344, - 6459809072, - 6459802016, - 6459496240, - 6459496272, - 6459795552, - 6459453984, - 6459888928 + 6459236240, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -4543,7 +4832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468916288, + "complete_object_locator": 6468905008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4551,62 +4840,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467092104, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467138808, "methods": [ - 6459233152, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666560, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415696, - 6459415376, - 6459415344, - 6459753152, - 6459676128, - 6459728000, - 6459435152, - 6459613456, - 6459632208, - 6459636000, - 6459645856, - 6459422992, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653296, - 6459878640, - 6459692464, - 6459849648, - 6459820608, - 6459482816, - 6459291088, - 6459511808, - 6459549104, - 6459620272, - 6459631840, - 6459715520, - 6459680768, - 6459668592, - 6459657344, - 6459809200, - 6459802144, - 6459496240, - 6459496272, - 6459795664, - 6459454480, - 6459888928 + 6459236304, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668992, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418128, + 6459417568, + 6459417536, + 6459760624, + 6459680240, + 6459737872, + 6459441424, + 6459615648, + 6459634400, + 6459641072, + 6459650208, + 6459428064, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657168, + 6459884912, + 6459704528, + 6459861472, + 6459828368, + 6459490496, + 6459305280, + 6459526240, + 6459557536, + 6459625344, + 6459634032, + 6459718800, + 6459682960, + 6459671024, + 6459659536, + 6459813312, + 6459806256, + 6459498432, + 6459498464, + 6459799536, + 6459464112, + 6459891120 ], "bases": [ { @@ -4640,7 +4929,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890416, + "complete_object_locator": 6468921344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4648,62 +4937,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467100792, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467074664, "methods": [ - 6459233984, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666768, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415904, - 6459415376, - 6459415344, - 6459757728, - 6459677792, - 6459734656, - 6459438688, - 6459613456, - 6459632208, - 6459638496, - 6459647728, - 6459425488, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654752, - 6459882176, - 6459700992, - 6459858000, - 6459825472, - 6459487600, - 6459301488, - 6459522416, - 6459554512, - 6459622768, - 6459631840, - 6459716352, - 6459680768, - 6459668800, - 6459657344, - 6459810864, - 6459803808, - 6459496240, - 6459496272, - 6459797120, - 6459460928, - 6459888928 + 6459236368, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -4737,7 +5026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896208, + "complete_object_locator": 6468881648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4745,62 +5034,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467107888, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467071032, "methods": [ - 6459234048, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459236432, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669024, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418160, + 6459417568, + 6459417536, + 6459761328, + 6459680496, + 6459738896, + 6459441968, + 6459615648, + 6459634400, + 6459641456, + 6459650496, + 6459428448, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657392, + 6459885456, + 6459705872, + 6459862752, + 6459829072, + 6459491200, + 6459306880, + 6459527872, + 6459558368, + 6459625728, + 6459634032, + 6459719056, + 6459682960, + 6459671056, + 6459659536, + 6459813568, + 6459806512, + 6459498432, + 6459498464, + 6459799760, + 6459465104, + 6459891120 ], "bases": [ { @@ -4834,7 +5123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900912, + "complete_object_locator": 6468879088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4842,62 +5131,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467134744, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467149856, "methods": [ - 6459234112, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666800, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415936, - 6459415376, - 6459415344, - 6459758432, - 6459678048, - 6459735680, - 6459439232, - 6459613456, - 6459632208, - 6459638880, - 6459648016, - 6459425872, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654976, - 6459882720, - 6459702336, - 6459859280, - 6459826176, - 6459488304, - 6459303088, - 6459524048, - 6459555344, - 6459623152, - 6459631840, - 6459716608, - 6459680768, - 6459668832, - 6459657344, - 6459811120, - 6459804064, - 6459496240, - 6459496272, - 6459797344, - 6459461920, - 6459888928 + 6459236496, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669040, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418176, + 6459417568, + 6459417536, + 6459761680, + 6459680624, + 6459739408, + 6459442240, + 6459615648, + 6459634400, + 6459641648, + 6459650640, + 6459428640, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657504, + 6459885728, + 6459706544, + 6459863392, + 6459829424, + 6459491552, + 6459307680, + 6459528688, + 6459558784, + 6459625920, + 6459634032, + 6459719184, + 6459682960, + 6459671072, + 6459659536, + 6459813696, + 6459806640, + 6459498432, + 6459498464, + 6459799872, + 6459465600, + 6459891120 ], "bases": [ { @@ -4931,7 +5220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468917248, + "complete_object_locator": 6468930352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4939,62 +5228,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467070600, + "type_name": "CBaseConcreteToolAttr >,int,class CUtlVectorMemory_Growable >,int,0> >,struct CompositeMaterialAssemblyProcedure_t>", + "vtable_address": 6467143504, "methods": [ - 6459234176, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459235984, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668912, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418048, + 6459417568, + 6459417536, + 6459758864, + 6459679600, + 6459735312, + 6459440064, + 6459615648, + 6459634400, + 6459640112, + 6459649488, + 6459427104, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656608, + 6459883552, + 6459701408, + 6459858304, + 6459826608, + 6459488720, + 6459301280, + 6459522160, + 6459555456, + 6459624384, + 6459634032, + 6459718352, + 6459682960, + 6459670944, + 6459659536, + 6459812672, + 6459805616, + 6459498432, + 6459498464, + 6459798976, + 6459461632, + 6459891120 ], "bases": [ { @@ -5028,7 +5317,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468877552, + "complete_object_locator": 6468924264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5036,62 +5325,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467066968, + "type_name": "CBaseConcreteToolAttr >,struct CompMatPropertyMutator_t>", + "vtable_address": 6467115960, "methods": [ - 6459234240, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666832, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415968, - 6459415376, - 6459415344, - 6459759136, - 6459678304, - 6459736704, - 6459439776, - 6459613456, - 6459632208, - 6459639264, - 6459648304, - 6459426256, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655200, - 6459883264, - 6459703680, - 6459860560, - 6459826880, - 6459489008, - 6459304688, - 6459525680, - 6459556176, - 6459623536, - 6459631840, - 6459716864, - 6459680768, - 6459668864, - 6459657344, - 6459811376, - 6459804320, - 6459496240, - 6459496272, - 6459797568, - 6459462912, - 6459888928 + 6459236048, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668928, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418064, + 6459417568, + 6459417536, + 6459759216, + 6459679728, + 6459735824, + 6459440336, + 6459615648, + 6459634400, + 6459640304, + 6459649632, + 6459427296, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656720, + 6459883824, + 6459702000, + 6459858928, + 6459826960, + 6459489072, + 6459302080, + 6459522976, + 6459555872, + 6459624576, + 6459634032, + 6459718416, + 6459682960, + 6459670960, + 6459659536, + 6459812800, + 6459805744, + 6459498432, + 6459498464, + 6459799088, + 6459462128, + 6459891120 ], "bases": [ { @@ -5125,7 +5414,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468874992, + "complete_object_locator": 6468906736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5133,62 +5422,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467145792, + "type_name": "CBaseConcreteToolAttr >,struct CompMatPropertyMutator_t>", + "vtable_address": 6467132656, "methods": [ - 6459234304, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666848, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415984, - 6459415376, - 6459415344, - 6459759488, - 6459678432, - 6459737216, - 6459440048, - 6459613456, - 6459632208, - 6459639456, - 6459648448, - 6459426448, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655312, - 6459883536, - 6459704352, - 6459861200, - 6459827232, - 6459489360, - 6459305488, - 6459526496, - 6459556592, - 6459623728, - 6459631840, - 6459716992, - 6459680768, - 6459668880, - 6459657344, - 6459811504, - 6459804448, - 6459496240, - 6459496272, - 6459797680, - 6459463408, - 6459888928 + 6459235408, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668768, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417904, + 6459417568, + 6459417536, + 6459755696, + 6459678448, + 6459730704, + 6459437616, + 6459615648, + 6459634400, + 6459638384, + 6459648192, + 6459425376, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655600, + 6459881104, + 6459695360, + 6459852464, + 6459823152, + 6459485360, + 6459294080, + 6459514816, + 6459551712, + 6459622656, + 6459634032, + 6459717776, + 6459682960, + 6459670800, + 6459659536, + 6459811520, + 6459804464, + 6459498432, + 6459498464, + 6459797968, + 6459457168, + 6459891120 ], "bases": [ { @@ -5222,7 +5511,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468926256, + "complete_object_locator": 6468916520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5230,62 +5519,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,int,class CUtlVectorMemory_Growable >,int,0> >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467139440, + "type_name": "CBaseConcreteToolAttr >,struct CompMatPropertyMutator_t>", + "vtable_address": 6467125576, "methods": [ - 6459233792, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666720, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415856, - 6459415376, - 6459415344, - 6459756672, - 6459677408, - 6459733120, - 6459437872, - 6459613456, - 6459632208, - 6459637920, - 6459647296, - 6459424912, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654416, - 6459881360, - 6459699216, - 6459856112, - 6459824416, - 6459486528, - 6459299088, - 6459519968, - 6459553264, - 6459622192, - 6459631840, - 6459716160, - 6459680768, - 6459668752, - 6459657344, - 6459810480, - 6459803424, - 6459496240, - 6459496272, - 6459796784, - 6459459440, - 6459888928 + 6459235472, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668784, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417920, + 6459417568, + 6459417536, + 6459756048, + 6459678576, + 6459731216, + 6459437888, + 6459615648, + 6459634400, + 6459638576, + 6459648336, + 6459425568, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655712, + 6459881376, + 6459696336, + 6459853088, + 6459823504, + 6459485712, + 6459294880, + 6459515632, + 6459552128, + 6459622848, + 6459634032, + 6459717840, + 6459682960, + 6459670816, + 6459659536, + 6459811648, + 6459804592, + 6459498432, + 6459498464, + 6459798080, + 6459457664, + 6459891120 ], "bases": [ { @@ -5319,7 +5608,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468920168, + "complete_object_locator": 6468911848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5327,62 +5616,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467111896, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", + "vtable_address": 6467148160, "methods": [ - 6459233856, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666736, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415872, - 6459415376, - 6459415344, - 6459757024, - 6459677536, - 6459733632, - 6459438144, - 6459613456, - 6459632208, - 6459638112, - 6459647440, - 6459425104, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654528, - 6459881632, - 6459699808, - 6459856736, - 6459824768, - 6459486880, - 6459299888, - 6459520784, - 6459553680, - 6459622384, - 6459631840, - 6459716224, - 6459680768, - 6459668768, - 6459657344, - 6459810608, - 6459803552, - 6459496240, - 6459496272, - 6459796896, - 6459459936, - 6459888928 + 6459235536, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668800, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417936, + 6459417568, + 6459417536, + 6459756400, + 6459678704, + 6459731728, + 6459438160, + 6459615648, + 6459634400, + 6459638768, + 6459648480, + 6459425760, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655824, + 6459881648, + 6459696928, + 6459853712, + 6459823856, + 6459486064, + 6459295680, + 6459516448, + 6459552544, + 6459623040, + 6459634032, + 6459717904, + 6459682960, + 6459670832, + 6459659536, + 6459811776, + 6459804720, + 6459498432, + 6459498464, + 6459798192, + 6459458160, + 6459891120 ], "bases": [ { @@ -5416,7 +5705,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468902640, + "complete_object_locator": 6468928808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5424,62 +5713,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467128592, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "vtable_address": 6467163656, "methods": [ - 6459233216, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666576, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415712, - 6459415376, - 6459415344, - 6459753504, - 6459676256, - 6459728512, - 6459435424, - 6459613456, - 6459632208, - 6459636192, - 6459646000, - 6459423184, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653408, - 6459878912, - 6459693168, - 6459850272, - 6459820960, - 6459483168, - 6459291888, - 6459512624, - 6459549520, - 6459620464, - 6459631840, - 6459715584, - 6459680768, - 6459668608, - 6459657344, - 6459809328, - 6459802272, - 6459496240, - 6459496272, - 6459795776, - 6459454976, - 6459888928 + 6459235600, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668816, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417952, + 6459417568, + 6459417536, + 6459756752, + 6459678832, + 6459732240, + 6459438432, + 6459615648, + 6459634400, + 6459638960, + 6459648624, + 6459425952, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655936, + 6459881920, + 6459697520, + 6459854336, + 6459824208, + 6459486416, + 6459296480, + 6459517264, + 6459552960, + 6459623232, + 6459634032, + 6459717968, + 6459682960, + 6459670848, + 6459659536, + 6459811904, + 6459804848, + 6459498432, + 6459498464, + 6459798304, + 6459458656, + 6459891120 ], "bases": [ { @@ -5513,7 +5802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912424, + "complete_object_locator": 6468939736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5521,62 +5810,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467121512, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", + "vtable_address": 6467146608, "methods": [ - 6459233280, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666592, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415728, - 6459415376, - 6459415344, - 6459753856, - 6459676384, - 6459729024, - 6459435696, - 6459613456, - 6459632208, - 6459636384, - 6459646144, - 6459423376, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653520, - 6459879184, - 6459694144, - 6459850896, - 6459821312, - 6459483520, - 6459292688, - 6459513440, - 6459549936, - 6459620656, - 6459631840, - 6459715648, - 6459680768, - 6459668624, - 6459657344, - 6459809456, - 6459802400, - 6459496240, - 6459496272, - 6459795888, - 6459455472, - 6459888928 + 6459235664, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668832, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417968, + 6459417568, + 6459417536, + 6459757104, + 6459678960, + 6459732752, + 6459438704, + 6459615648, + 6459634400, + 6459639152, + 6459648768, + 6459426144, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656048, + 6459882192, + 6459698112, + 6459854960, + 6459824560, + 6459486768, + 6459297280, + 6459518080, + 6459553376, + 6459623424, + 6459634032, + 6459718032, + 6459682960, + 6459670864, + 6459659536, + 6459812032, + 6459804976, + 6459498432, + 6459498464, + 6459798416, + 6459459152, + 6459891120 ], "bases": [ { @@ -5610,7 +5899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468907752, + "complete_object_locator": 6468927368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5618,62 +5907,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467144096, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", + "vtable_address": 6467140800, "methods": [ - 6459233344, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666608, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415744, - 6459415376, - 6459415344, - 6459754208, - 6459676512, - 6459729536, - 6459435968, - 6459613456, - 6459632208, - 6459636576, - 6459646288, - 6459423568, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653632, - 6459879456, - 6459694736, - 6459851520, - 6459821664, - 6459483872, - 6459293488, - 6459514256, - 6459550352, - 6459620848, - 6459631840, - 6459715712, - 6459680768, - 6459668640, - 6459657344, - 6459809584, - 6459802528, - 6459496240, - 6459496272, - 6459796000, - 6459455968, - 6459888928 + 6459235728, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668848, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417984, + 6459417568, + 6459417536, + 6459757456, + 6459679088, + 6459733264, + 6459438976, + 6459615648, + 6459634400, + 6459639344, + 6459648912, + 6459426336, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656160, + 6459882464, + 6459698704, + 6459855696, + 6459825056, + 6459487216, + 6459298080, + 6459518896, + 6459553792, + 6459623616, + 6459634032, + 6459718096, + 6459682960, + 6459670880, + 6459659536, + 6459812160, + 6459805104, + 6459498432, + 6459498464, + 6459798528, + 6459459648, + 6459891120 ], "bases": [ { @@ -5707,7 +5996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468924712, + "complete_object_locator": 6468922360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5715,62 +6004,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467159592, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", + "vtable_address": 6467145056, "methods": [ - 6459233408, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666624, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415760, - 6459415376, - 6459415344, - 6459754560, - 6459676640, - 6459730048, - 6459436240, - 6459613456, - 6459632208, - 6459636768, - 6459646432, - 6459423760, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653744, - 6459879728, - 6459695328, - 6459852144, - 6459822016, - 6459484224, - 6459294288, - 6459515072, - 6459550768, - 6459621040, - 6459631840, - 6459715776, - 6459680768, - 6459668656, - 6459657344, - 6459809712, - 6459802656, - 6459496240, - 6459496272, - 6459796112, - 6459456464, - 6459888928 + 6459235792, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668864, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418000, + 6459417568, + 6459417536, + 6459757808, + 6459679216, + 6459733776, + 6459439248, + 6459615648, + 6459634400, + 6459639536, + 6459649056, + 6459426528, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656272, + 6459882736, + 6459699296, + 6459856432, + 6459825552, + 6459487664, + 6459298880, + 6459519712, + 6459554208, + 6459623808, + 6459634032, + 6459718160, + 6459682960, + 6459670896, + 6459659536, + 6459812288, + 6459805232, + 6459498432, + 6459498464, + 6459798640, + 6459460144, + 6459891120 ], "bases": [ { @@ -5804,7 +6093,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468935640, + "complete_object_locator": 6468925928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5812,62 +6101,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467142544, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "vtable_address": 6467165208, "methods": [ - 6459233472, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666640, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415776, - 6459415376, - 6459415344, - 6459754912, - 6459676768, - 6459730560, - 6459436512, - 6459613456, - 6459632208, - 6459636960, - 6459646576, - 6459423952, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653856, - 6459880000, - 6459695920, - 6459852768, - 6459822368, - 6459484576, - 6459295088, - 6459515888, - 6459551184, - 6459621232, - 6459631840, - 6459715840, - 6459680768, - 6459668672, - 6459657344, - 6459809840, - 6459802784, - 6459496240, - 6459496272, - 6459796224, - 6459456960, - 6459888928 + 6459235856, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668880, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418016, + 6459417568, + 6459417536, + 6459758160, + 6459679344, + 6459734288, + 6459439520, + 6459615648, + 6459634400, + 6459639728, + 6459649200, + 6459426720, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656384, + 6459883008, + 6459700224, + 6459857056, + 6459825904, + 6459488016, + 6459299680, + 6459520528, + 6459554624, + 6459624000, + 6459634032, + 6459718224, + 6459682960, + 6459670912, + 6459659536, + 6459812416, + 6459805360, + 6459498432, + 6459498464, + 6459798752, + 6459460640, + 6459891120 ], "bases": [ { @@ -5901,7 +6190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923272, + "complete_object_locator": 6468941136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5909,62 +6198,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467136736, + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterial_t>", + "vtable_address": 6467153976, "methods": [ - 6459233536, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666656, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415792, - 6459415376, - 6459415344, - 6459755264, - 6459676896, - 6459731072, - 6459436784, - 6459613456, - 6459632208, - 6459637152, - 6459646720, - 6459424144, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653968, - 6459880272, - 6459696512, - 6459853504, - 6459822864, - 6459485024, - 6459295888, - 6459516704, - 6459551600, - 6459621424, - 6459631840, - 6459715904, - 6459680768, - 6459668688, - 6459657344, - 6459809968, - 6459802912, - 6459496240, - 6459496272, - 6459796336, - 6459457456, - 6459888928 + 6459235920, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668896, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418032, + 6459417568, + 6459417536, + 6459758512, + 6459679472, + 6459734800, + 6459439792, + 6459615648, + 6459634400, + 6459639920, + 6459649344, + 6459426912, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656496, + 6459883280, + 6459700816, + 6459857680, + 6459826256, + 6459488368, + 6459300480, + 6459521344, + 6459555040, + 6459624192, + 6459634032, + 6459718288, + 6459682960, + 6459670928, + 6459659536, + 6459812544, + 6459805488, + 6459498432, + 6459498464, + 6459798864, + 6459461136, + 6459891120 ], "bases": [ { @@ -5998,7 +6287,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918264, + "complete_object_locator": 6468932936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6006,62 +6295,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467140992, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467130664, "methods": [ - 6459233600, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666672, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415808, - 6459415376, - 6459415344, - 6459755616, - 6459677024, - 6459731584, - 6459437056, - 6459613456, - 6459632208, - 6459637344, - 6459646864, - 6459424336, - 6459564128, - 6459564096, - 6459718256, + 6459236560, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669056, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418192, + 6459417568, + 6459417536, + 6459762032, + 6459680752, + 6459739920, + 6459442512, + 6459615648, + 6459634400, + 6459641840, + 6459650784, + 6459428832, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657616, + 6459886000, + 6459707216, + 6459864032, + 6459829776, + 6459491904, + 6459308480, + 6459529504, + 6459559200, + 6459626112, + 6459634032, + 6459719312, + 6459682960, + 6459671088, + 6459659536, 6459813824, - 6459765840, - 6459835808, - 6459654080, - 6459880544, - 6459697104, - 6459854240, - 6459823360, - 6459485472, - 6459296688, - 6459517520, - 6459552016, - 6459621616, - 6459631840, - 6459715968, - 6459680768, - 6459668704, - 6459657344, - 6459810096, - 6459803040, - 6459496240, - 6459496272, - 6459796448, - 6459457952, - 6459888928 + 6459806768, + 6459498432, + 6459498464, + 6459799984, + 6459466096, + 6459891120 ], "bases": [ { @@ -6095,7 +6384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468921832, + "complete_object_locator": 6468915504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6103,62 +6392,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467161144, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467093192, "methods": [ - 6459233664, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666688, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, + 6459236624, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669072, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, 6459418208, - 6459415360, - 6459415824, - 6459415376, - 6459415344, - 6459755968, - 6459677152, - 6459732096, - 6459437328, - 6459613456, - 6459632208, - 6459637536, - 6459647008, - 6459424528, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654192, - 6459880816, - 6459698032, - 6459854864, - 6459823712, - 6459485824, - 6459297488, - 6459518336, - 6459552432, - 6459621808, - 6459631840, - 6459716032, - 6459680768, - 6459668720, - 6459657344, - 6459810224, - 6459803168, - 6459496240, - 6459496272, - 6459796560, - 6459458448, - 6459888928 + 6459417568, + 6459417536, + 6459762384, + 6459680880, + 6459740432, + 6459442784, + 6459615648, + 6459634400, + 6459642032, + 6459650928, + 6459429024, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657728, + 6459886272, + 6459707744, + 6459864656, + 6459830128, + 6459492256, + 6459309280, + 6459530320, + 6459559616, + 6459626304, + 6459634032, + 6459719376, + 6459682960, + 6459671104, + 6459659536, + 6459813952, + 6459806896, + 6459498432, + 6459498464, + 6459800096, + 6459466592, + 6459891120 ], "bases": [ { @@ -6192,7 +6481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937040, + "complete_object_locator": 6468892128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6200,62 +6489,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterial_t>", - "vtable_address": 6467149912, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467160176, "methods": [ - 6459233728, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666704, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415840, - 6459415376, - 6459415344, - 6459756320, - 6459677280, - 6459732608, - 6459437600, - 6459613456, - 6459632208, - 6459637728, - 6459647152, - 6459424720, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654304, - 6459881088, - 6459698624, - 6459855488, - 6459824064, - 6459486176, - 6459298288, - 6459519152, - 6459552848, - 6459622000, - 6459631840, - 6459716096, - 6459680768, - 6459668736, - 6459657344, - 6459810352, - 6459803296, - 6459496240, - 6459496272, - 6459796672, - 6459458944, - 6459888928 + 6459236688, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669088, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418224, + 6459417568, + 6459417536, + 6459762736, + 6459681008, + 6459740944, + 6459443056, + 6459615648, + 6459634400, + 6459642224, + 6459651072, + 6459429216, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657840, + 6459886544, + 6459708272, + 6459865280, + 6459830480, + 6459492608, + 6459310080, + 6459531136, + 6459560032, + 6459626496, + 6459634032, + 6459719440, + 6459682960, + 6459671120, + 6459659536, + 6459814080, + 6459807024, + 6459498432, + 6459498464, + 6459800208, + 6459467088, + 6459891120 ], "bases": [ { @@ -6289,7 +6578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928840, + "complete_object_locator": 6468937760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6297,62 +6586,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467126600, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467151480, "methods": [ - 6459234368, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666864, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416000, - 6459415376, - 6459415344, - 6459759840, - 6459678560, - 6459737728, - 6459440320, - 6459613456, - 6459632208, - 6459639648, - 6459648592, - 6459426640, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655424, - 6459883808, - 6459705024, - 6459861840, - 6459827584, - 6459489712, - 6459306288, - 6459527312, - 6459557008, - 6459623920, - 6459631840, - 6459717120, - 6459680768, - 6459668896, - 6459657344, - 6459811632, - 6459804576, - 6459496240, - 6459496272, - 6459797792, - 6459463904, - 6459888928 + 6459236752, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669104, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418240, + 6459417568, + 6459417536, + 6459763088, + 6459681136, + 6459741456, + 6459443328, + 6459615648, + 6459634400, + 6459642416, + 6459651216, + 6459429408, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657952, + 6459886816, + 6459708896, + 6459865904, + 6459830832, + 6459492960, + 6459310880, + 6459531952, + 6459560448, + 6459626688, + 6459634032, + 6459719520, + 6459682960, + 6459671136, + 6459659536, + 6459814208, + 6459807152, + 6459498432, + 6459498464, + 6459800320, + 6459467584, + 6459891120 ], "bases": [ { @@ -6386,7 +6675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911408, + "complete_object_locator": 6468931616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6394,256 +6683,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467089128, - "methods": [ - 6459234432, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666880, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416016, - 6459415376, - 6459415344, - 6459760192, - 6459678688, - 6459738240, - 6459440592, - 6459613456, - 6459632208, - 6459639840, - 6459648736, - 6459426832, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655536, - 6459884080, - 6459705552, - 6459862464, - 6459827936, - 6459490064, - 6459307088, - 6459528128, - 6459557424, - 6459624112, - 6459631840, - 6459717184, - 6459680768, - 6459668912, - 6459657344, - 6459811760, - 6459804704, - 6459496240, - 6459496272, - 6459797904, - 6459464400, - 6459888928 - ], - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468888032, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467156112, - "methods": [ - 6459234496, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666896, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416032, - 6459415376, - 6459415344, - 6459760544, - 6459678816, - 6459738752, - 6459440864, - 6459613456, - 6459632208, - 6459640032, - 6459648880, - 6459427024, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655648, - 6459884352, - 6459706080, - 6459863088, - 6459828288, - 6459490416, - 6459307888, - 6459528944, - 6459557840, - 6459624304, - 6459631840, - 6459717248, - 6459680768, - 6459668928, - 6459657344, - 6459811888, - 6459804832, - 6459496240, - 6459496272, - 6459798016, - 6459464896, - 6459888928 - ], - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468933664, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467147416, + "type_name": "CBaseConcreteToolAttr,struct CompMatPropertyMutator_t>", + "vtable_address": 6467129176, "methods": [ - 6459234560, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666912, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416048, - 6459415376, - 6459415344, - 6459760896, - 6459678944, - 6459739264, - 6459441136, - 6459613456, - 6459632208, - 6459640224, - 6459649024, - 6459427216, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655760, - 6459884624, - 6459706704, - 6459863712, - 6459828640, - 6459490768, - 6459308688, - 6459529760, - 6459558256, - 6459624496, - 6459631840, - 6459717328, - 6459680768, + 6459236112, + 6459653280, + 6459653312, + 6459634448, + 6459634496, 6459668944, - 6459657344, - 6459812016, - 6459804960, - 6459496240, - 6459496272, - 6459798128, - 6459465392, - 6459888928 + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418080, + 6459417568, + 6459417536, + 6459759568, + 6459679856, + 6459736336, + 6459440608, + 6459615648, + 6459634400, + 6459640496, + 6459649776, + 6459427488, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656832, + 6459884096, + 6459702592, + 6459859552, + 6459827312, + 6459489424, + 6459302880, + 6459523792, + 6459556288, + 6459624768, + 6459634032, + 6459718480, + 6459682960, + 6459670976, + 6459659536, + 6459812928, + 6459805872, + 6459498432, + 6459498464, + 6459799200, + 6459462624, + 6459891120 ], "bases": [ { @@ -6677,7 +6772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468927520, + "complete_object_locator": 6468914464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6685,62 +6780,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr,struct CompMatPropertyMutator_t>", - "vtable_address": 6467125112, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467103368, "methods": [ - 6459233920, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666752, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415888, - 6459415376, - 6459415344, - 6459757376, - 6459677664, - 6459734144, - 6459438416, - 6459613456, - 6459632208, - 6459638304, - 6459647584, - 6459425296, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654640, - 6459881904, - 6459700400, - 6459857360, - 6459825120, - 6459487232, - 6459300688, - 6459521600, - 6459554096, - 6459622576, - 6459631840, - 6459716288, - 6459680768, - 6459668784, - 6459657344, - 6459810736, - 6459803680, - 6459496240, - 6459496272, - 6459797008, - 6459460432, - 6459888928 + 6459236816, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669120, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418256, + 6459417568, + 6459417536, + 6459763440, + 6459681264, + 6459741968, + 6459443600, + 6459615648, + 6459634400, + 6459642608, + 6459651360, + 6459429600, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658064, + 6459887088, + 6459709520, + 6459866528, + 6459831184, + 6459493312, + 6459311680, + 6459532768, + 6459560864, + 6459626880, + 6459634032, + 6459719600, + 6459682960, + 6459671152, + 6459659536, + 6459814336, + 6459807280, + 6459498432, + 6459498464, + 6459800432, + 6459468080, + 6459891120 ], "bases": [ { @@ -6774,7 +6869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468910368, + "complete_object_locator": 6468899264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6782,62 +6877,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467099304, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467110464, "methods": [ - 6459234624, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666928, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416064, - 6459415376, - 6459415344, - 6459761248, - 6459679072, - 6459739776, - 6459441408, - 6459613456, - 6459632208, - 6459640416, - 6459649168, - 6459427408, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655872, - 6459884896, - 6459707328, - 6459864336, - 6459828992, - 6459491120, - 6459309488, - 6459530576, - 6459558672, - 6459624688, - 6459631840, - 6459717408, - 6459680768, - 6459668960, - 6459657344, - 6459812144, - 6459805088, - 6459496240, - 6459496272, - 6459798240, - 6459465888, - 6459888928 + 6459236880, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669136, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418272, + 6459417568, + 6459417536, + 6459763792, + 6459681392, + 6459742480, + 6459443872, + 6459615648, + 6459634400, + 6459642800, + 6459651504, + 6459429792, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658176, + 6459887360, + 6459710048, + 6459867152, + 6459831520, + 6459493664, + 6459312480, + 6459533584, + 6459561280, + 6459627072, + 6459634032, + 6459719664, + 6459682960, + 6459671168, + 6459659536, + 6459814464, + 6459807408, + 6459498432, + 6459498464, + 6459800544, + 6459468576, + 6459891120 ], "bases": [ { @@ -6871,7 +6966,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468895168, + "complete_object_locator": 6468903888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6879,62 +6974,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467106400, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467135832, "methods": [ - 6459234688, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666944, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416080, - 6459415376, - 6459415344, - 6459761600, - 6459679200, - 6459740288, - 6459441680, - 6459613456, - 6459632208, - 6459640608, - 6459649312, - 6459427600, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655984, - 6459885168, - 6459707856, - 6459864960, - 6459829328, - 6459491472, - 6459310288, - 6459531392, - 6459559088, - 6459624880, - 6459631840, - 6459717472, - 6459680768, - 6459668976, - 6459657344, - 6459812272, - 6459805216, - 6459496240, - 6459496272, - 6459798352, - 6459466384, - 6459888928 + 6459236944, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669152, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418288, + 6459417568, + 6459417536, + 6459764144, + 6459681520, + 6459742992, + 6459444144, + 6459615648, + 6459634400, + 6459642992, + 6459651648, + 6459429984, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658288, + 6459887632, + 6459710576, + 6459867776, + 6459831856, + 6459494016, + 6459313280, + 6459534400, + 6459561696, + 6459627264, + 6459634032, + 6459719728, + 6459682960, + 6459671184, + 6459659536, + 6459814592, + 6459807536, + 6459498432, + 6459498464, + 6459800656, + 6459469072, + 6459891120 ], "bases": [ { @@ -6968,7 +7063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468899792, + "complete_object_locator": 6468919344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6976,62 +7071,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467131768, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467080664, "methods": [ - 6459234752, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666960, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416096, - 6459415376, - 6459415344, - 6459761952, - 6459679328, - 6459740800, - 6459441952, - 6459613456, - 6459632208, - 6459640800, - 6459649456, - 6459427792, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656096, - 6459885440, - 6459708384, - 6459865584, - 6459829664, - 6459491824, - 6459311088, - 6459532208, - 6459559504, - 6459625072, - 6459631840, - 6459717536, - 6459680768, - 6459668992, - 6459657344, - 6459812400, - 6459805344, - 6459496240, - 6459496272, - 6459798464, - 6459466880, - 6459888928 + 6459237008, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669168, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418304, + 6459417568, + 6459417536, + 6459764496, + 6459681648, + 6459743504, + 6459444416, + 6459615648, + 6459634400, + 6459643184, + 6459651792, + 6459430176, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658400, + 6459887904, + 6459711104, + 6459868400, + 6459832192, + 6459494368, + 6459314080, + 6459535216, + 6459562112, + 6459627456, + 6459634032, + 6459719792, + 6459682960, + 6459671200, + 6459659536, + 6459814720, + 6459807664, + 6459498432, + 6459498464, + 6459800768, + 6459469568, + 6459891120 ], "bases": [ { @@ -7065,7 +7160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468915248, + "complete_object_locator": 6468885040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7073,62 +7168,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467076600, - "methods": [ - 6459234816, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666976, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416112, - 6459415376, - 6459415344, - 6459762304, - 6459679456, - 6459741312, - 6459442224, - 6459613456, - 6459632208, - 6459640992, - 6459649600, - 6459427984, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656208, - 6459885712, - 6459708912, - 6459866208, - 6459830000, - 6459492176, - 6459311888, - 6459533024, - 6459559920, - 6459625264, - 6459631840, - 6459717600, - 6459680768, - 6459669008, - 6459657344, - 6459812528, - 6459805472, - 6459496240, - 6459496272, - 6459798576, - 6459467376, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467100152, + "methods": [ + 6459237072, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669184, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418320, + 6459417568, + 6459417536, + 6459764848, + 6459681776, + 6459744016, + 6459444688, + 6459615648, + 6459634400, + 6459643376, + 6459651936, + 6459430368, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658512, + 6459888176, + 6459711632, + 6459869024, + 6459832528, + 6459494720, + 6459314880, + 6459536032, + 6459562528, + 6459627648, + 6459634032, + 6459719856, + 6459682960, + 6459671216, + 6459659536, + 6459814848, + 6459807792, + 6459498432, + 6459498464, + 6459800880, + 6459470064, + 6459891120 ], "bases": [ { @@ -7162,7 +7257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468880944, + "complete_object_locator": 6468897296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7170,62 +7265,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467096088, - "methods": [ - 6459234880, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666992, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416128, - 6459415376, - 6459415344, - 6459762656, - 6459679584, - 6459741824, - 6459442496, - 6459613456, - 6459632208, - 6459641184, - 6459649744, - 6459428176, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656320, - 6459885984, - 6459709440, - 6459866832, - 6459830336, - 6459492528, - 6459312688, - 6459533840, - 6459560336, - 6459625456, - 6459631840, - 6459717664, - 6459680768, - 6459669024, - 6459657344, - 6459812656, - 6459805600, - 6459496240, - 6459496272, - 6459798688, - 6459467872, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467069544, + "methods": [ + 6459237136, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669200, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418336, + 6459417568, + 6459417536, + 6459765200, + 6459681904, + 6459744528, + 6459444960, + 6459615648, + 6459634400, + 6459643568, + 6459652080, + 6459430560, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658624, + 6459888448, + 6459712160, + 6459869648, + 6459832864, + 6459495072, + 6459315680, + 6459536848, + 6459562944, + 6459627840, + 6459634032, + 6459719920, + 6459682960, + 6459671232, + 6459659536, + 6459814976, + 6459807920, + 6459498432, + 6459498464, + 6459800992, + 6459470560, + 6459891120 ], "bases": [ { @@ -7259,7 +7354,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893200, + "complete_object_locator": 6468877872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7267,62 +7362,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467065480, - "methods": [ - 6459234944, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667008, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416144, - 6459415376, - 6459415344, - 6459763008, - 6459679712, - 6459742336, - 6459442768, - 6459613456, - 6459632208, - 6459641376, - 6459649888, - 6459428368, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656432, - 6459886256, - 6459709968, - 6459867456, - 6459830672, - 6459492880, - 6459313488, - 6459534656, - 6459560752, - 6459625648, - 6459631840, - 6459717728, - 6459680768, - 6459669040, - 6459657344, - 6459812784, - 6459805728, - 6459496240, - 6459496272, - 6459798800, - 6459468368, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467094680, + "methods": [ + 6459237200, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669216, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418352, + 6459417568, + 6459417536, + 6459765552, + 6459682032, + 6459745040, + 6459445232, + 6459615648, + 6459634400, + 6459643760, + 6459652224, + 6459430752, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658736, + 6459888720, + 6459712688, + 6459870272, + 6459833200, + 6459495424, + 6459316480, + 6459537664, + 6459563360, + 6459628032, + 6459634032, + 6459719984, + 6459682960, + 6459671248, + 6459659536, + 6459815104, + 6459808048, + 6459498432, + 6459498464, + 6459801104, + 6459471056, + 6459891120 ], "bases": [ { @@ -7356,7 +7451,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468873776, + "complete_object_locator": 6468893296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7364,62 +7459,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467090616, - "methods": [ - 6459235008, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667024, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416160, - 6459415376, - 6459415344, - 6459763360, - 6459679840, - 6459742848, - 6459443040, - 6459613456, - 6459632208, - 6459641568, - 6459650032, - 6459428560, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656544, - 6459886528, - 6459710496, - 6459868080, - 6459831008, - 6459493232, - 6459314288, - 6459535472, - 6459561168, - 6459625840, - 6459631840, - 6459717792, - 6459680768, - 6459669056, - 6459657344, - 6459812912, - 6459805856, - 6459496240, - 6459496272, - 6459798912, - 6459468864, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467158688, + "methods": [ + 6459234320, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668496, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417632, + 6459417568, + 6459417536, + 6459749712, + 6459676272, + 6459722000, + 6459432992, + 6459615648, + 6459634400, + 6459635120, + 6459645744, + 6459422112, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653696, + 6459876480, + 6459684560, + 6459841744, + 6459817056, + 6459479264, + 6459280480, + 6459500944, + 6459544640, + 6459619392, + 6459634032, + 6459716688, + 6459682960, + 6459669760, + 6459659536, + 6459809344, + 6459802288, + 6459498432, + 6459498464, + 6459796064, + 6459448736, + 6459891120 ], "bases": [ { @@ -7453,7 +7548,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468889200, + "complete_object_locator": 6468936800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7461,62 +7556,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467154624, - "methods": [ - 6459232128, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666304, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415440, - 6459415376, - 6459415344, - 6459747520, - 6459674080, - 6459719808, - 6459430800, - 6459613456, - 6459632208, - 6459632928, - 6459643552, - 6459419920, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651504, - 6459874288, - 6459682368, - 6459839552, - 6459814864, - 6459477072, - 6459278288, - 6459498752, - 6459542448, - 6459617200, - 6459631840, - 6459714496, - 6459680768, - 6459667568, - 6459657344, - 6459807152, - 6459800096, - 6459496240, - 6459496272, - 6459793872, - 6459446544, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467086160, + "methods": [ + 6459234384, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -7550,7 +7645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468932704, + "complete_object_locator": 6468888496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7558,62 +7653,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467082096, - "methods": [ - 6459232192, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467122072, + "methods": [ + 6459234128, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668448, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417584, + 6459417568, + 6459417536, + 6459748656, + 6459675888, + 6459720464, + 6459432176, + 6459615648, + 6459634400, + 6459634544, + 6459645312, + 6459421536, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653360, + 6459875664, + 6459682976, + 6459839872, + 6459816048, + 6459478208, + 6459278080, + 6459498496, + 6459543392, + 6459618816, + 6459634032, + 6459716496, + 6459682960, + 6459669712, + 6459659536, + 6459808960, + 6459801904, + 6459498432, + 6459498464, + 6459795728, + 6459447248, + 6459891120 ], "bases": [ { @@ -7647,7 +7742,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884400, + "complete_object_locator": 6468910160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7655,62 +7750,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467118008, - "methods": [ - 6459231936, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666256, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415392, - 6459415376, - 6459415344, - 6459746464, - 6459673696, - 6459718272, - 6459429984, - 6459613456, - 6459632208, - 6459632352, - 6459643120, - 6459419344, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651168, - 6459873472, - 6459680784, - 6459837680, - 6459813856, - 6459476016, - 6459275888, - 6459496304, - 6459541200, - 6459616624, - 6459631840, - 6459714304, - 6459680768, - 6459667520, - 6459657344, - 6459806768, - 6459799712, - 6459496240, - 6459496272, - 6459793536, - 6459445056, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467157200, + "methods": [ + 6459234192, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668464, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417600, + 6459417568, + 6459417536, + 6459749008, + 6459676016, + 6459720976, + 6459432448, + 6459615648, + 6459634400, + 6459634736, + 6459645456, + 6459421728, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653472, + 6459875936, + 6459683504, + 6459840496, + 6459816384, + 6459478560, + 6459278880, + 6459499312, + 6459543808, + 6459619008, + 6459634032, + 6459716560, + 6459682960, + 6459669728, + 6459659536, + 6459809088, + 6459802032, + 6459498432, + 6459498464, + 6459795840, + 6459447744, + 6459891120 ], "bases": [ { @@ -7744,7 +7839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906064, + "complete_object_locator": 6468935840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7752,62 +7847,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467153136, - "methods": [ - 6459232000, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666272, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415408, - 6459415376, - 6459415344, - 6459746816, - 6459673824, - 6459718784, - 6459430256, - 6459613456, - 6459632208, - 6459632544, - 6459643264, - 6459419536, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651280, - 6459873744, - 6459681312, - 6459838304, - 6459814192, - 6459476368, - 6459276688, - 6459497120, - 6459541616, - 6459616816, - 6459631840, - 6459714368, - 6459680768, - 6459667536, - 6459657344, - 6459806896, - 6459799840, - 6459496240, - 6459496272, - 6459793648, - 6459445552, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467082656, + "methods": [ + 6459234256, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668480, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417616, + 6459417568, + 6459417536, + 6459749360, + 6459676144, + 6459721488, + 6459432720, + 6459615648, + 6459634400, + 6459634928, + 6459645600, + 6459421920, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653584, + 6459876208, + 6459684032, + 6459841120, + 6459816720, + 6459478912, + 6459279680, + 6459500128, + 6459544224, + 6459619200, + 6459634032, + 6459716624, + 6459682960, + 6459669744, + 6459659536, + 6459809216, + 6459802160, + 6459498432, + 6459498464, + 6459795952, + 6459448240, + 6459891120 ], "bases": [ { @@ -7841,7 +7936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468931744, + "complete_object_locator": 6468886432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7849,62 +7944,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467078592, - "methods": [ - 6459232064, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666288, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415424, - 6459415376, - 6459415344, - 6459747168, - 6459673952, - 6459719296, - 6459430528, - 6459613456, - 6459632208, - 6459632736, - 6459643408, - 6459419728, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651392, - 6459874016, - 6459681840, - 6459838928, - 6459814528, - 6459476720, - 6459277488, - 6459497936, - 6459542032, - 6459617008, - 6459631840, - 6459714432, - 6459680768, - 6459667552, - 6459657344, - 6459807024, - 6459799968, - 6459496240, - 6459496272, - 6459793760, - 6459446048, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467175040, + "methods": [ + 6459234448, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668528, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417664, + 6459417568, + 6459417536, + 6459750416, + 6459676528, + 6459723024, + 6459433536, + 6459615648, + 6459634400, + 6459635504, + 6459646032, + 6459422496, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653920, + 6459877024, + 6459685712, + 6459842992, + 6459817728, + 6459479968, + 6459282080, + 6459502576, + 6459545472, + 6459619776, + 6459634032, + 6459716816, + 6459682960, + 6459669792, + 6459659536, + 6459809600, + 6459802544, + 6459498432, + 6459498464, + 6459796288, + 6459449728, + 6459891120 ], "bases": [ { @@ -7938,7 +8033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882336, + "complete_object_locator": 6468916640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7946,62 +8041,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467170976, - "methods": [ - 6459232256, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666336, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415472, - 6459415376, - 6459415344, - 6459748224, - 6459674336, - 6459720832, - 6459431344, - 6459613456, - 6459632208, - 6459633312, - 6459643840, - 6459420304, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651728, - 6459874832, - 6459683520, - 6459840800, - 6459815536, - 6459477776, - 6459279888, - 6459500384, - 6459543280, - 6459617584, - 6459631840, - 6459714624, - 6459680768, - 6459667600, - 6459657344, - 6459807408, - 6459800352, - 6459496240, - 6459496272, - 6459794096, - 6459447536, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467176048, + "methods": [ + 6459234512, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668544, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417680, + 6459417568, + 6459417536, + 6459750768, + 6459676656, + 6459723536, + 6459433808, + 6459615648, + 6459634400, + 6459635696, + 6459646176, + 6459422688, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654032, + 6459877296, + 6459686352, + 6459843616, + 6459818080, + 6459480320, + 6459282880, + 6459503392, + 6459545888, + 6459619968, + 6459634032, + 6459716880, + 6459682960, + 6459669808, + 6459659536, + 6459809728, + 6459802672, + 6459498432, + 6459498464, + 6459796400, + 6459450224, + 6459891120 ], "bases": [ { @@ -8035,7 +8130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912544, + "complete_object_locator": 6468911968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8043,62 +8138,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467171984, - "methods": [ - 6459232320, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666352, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415488, - 6459415376, - 6459415344, - 6459748576, - 6459674464, - 6459721344, - 6459431616, - 6459613456, - 6459632208, - 6459633504, - 6459643984, - 6459420496, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651840, - 6459875104, - 6459684160, - 6459841424, - 6459815888, - 6459478128, - 6459280688, - 6459501200, - 6459543696, - 6459617776, - 6459631840, - 6459714688, - 6459680768, - 6459667616, - 6459657344, - 6459807536, - 6459800480, - 6459496240, - 6459496272, - 6459794208, - 6459448032, - 6459888928 + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467170024, + "methods": [ + 6459234576, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668560, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417696, + 6459417568, + 6459417536, + 6459751120, + 6459676784, + 6459724048, + 6459434080, + 6459615648, + 6459634400, + 6459635888, + 6459646320, + 6459422880, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654144, + 6459877568, + 6459686928, + 6459844240, + 6459818432, + 6459480672, + 6459283680, + 6459504208, + 6459546304, + 6459620160, + 6459634032, + 6459716944, + 6459682960, + 6459669824, + 6459659536, + 6459809856, + 6459802800, + 6459498432, + 6459498464, + 6459796512, + 6459450720, + 6459891120 ], "bases": [ { @@ -8132,7 +8227,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468907872, + "complete_object_locator": 6468928848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8140,62 +8235,62 @@ } }, { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467165960, + "type_name": "CBaseConcreteToolAttr", + "vtable_address": 6467168008, "methods": [ - 6459232384, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666368, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415504, - 6459415376, - 6459415344, - 6459748928, - 6459674592, - 6459721856, - 6459431888, - 6459613456, - 6459632208, - 6459633696, - 6459644128, - 6459420688, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651952, - 6459875376, - 6459684736, - 6459842048, - 6459816240, - 6459478480, - 6459281488, - 6459502016, - 6459544112, - 6459617968, - 6459631840, - 6459714752, - 6459680768, - 6459667632, - 6459657344, - 6459807664, - 6459800608, - 6459496240, - 6459496272, - 6459794320, - 6459448528, - 6459888928 + 6459234640, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668576, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417712, + 6459417568, + 6459417536, + 6459751472, + 6459676912, + 6459724560, + 6459434352, + 6459615648, + 6459634400, + 6459636080, + 6459646464, + 6459423072, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654256, + 6459877840, + 6459687504, + 6459844864, + 6459818784, + 6459481024, + 6459284480, + 6459505024, + 6459546720, + 6459620352, + 6459634032, + 6459717008, + 6459682960, + 6459669840, + 6459659536, + 6459809984, + 6459802928, + 6459498432, + 6459498464, + 6459796624, + 6459451216, + 6459891120 ], "bases": [ { @@ -8229,104 +8324,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468924752, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467163944, - "methods": [ - 6459232448, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666384, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415520, - 6459415376, - 6459415344, - 6459749280, - 6459674720, - 6459722368, - 6459432160, - 6459613456, - 6459632208, - 6459633888, - 6459644272, - 6459420880, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652064, - 6459875648, - 6459685312, - 6459842672, - 6459816592, - 6459478832, - 6459282288, - 6459502832, - 6459544528, - 6459618160, - 6459631840, - 6459714816, - 6459680768, - 6459667648, - 6459657344, - 6459807792, - 6459800736, - 6459496240, - 6459496272, - 6459794432, - 6459449024, - 6459888928 - ], - "bases": [ - { - "type_name": "CBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468935760, + "complete_object_locator": 6468939856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8335,61 +8333,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467166968, + "vtable_address": 6467171032, "methods": [ - 6459232512, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666400, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415536, - 6459415376, - 6459415344, - 6459749632, - 6459674848, - 6459722880, - 6459432432, - 6459613456, - 6459632208, - 6459634080, - 6459644416, - 6459421072, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652176, - 6459875920, - 6459685888, - 6459843296, - 6459816944, - 6459479184, - 6459283088, - 6459503648, - 6459544944, - 6459618352, - 6459631840, - 6459714880, - 6459680768, - 6459667664, - 6459657344, - 6459807920, - 6459800864, - 6459496240, - 6459496272, - 6459794544, - 6459449520, - 6459888928 + 6459234704, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668592, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417728, + 6459417568, + 6459417536, + 6459751824, + 6459677040, + 6459725072, + 6459434624, + 6459615648, + 6459634400, + 6459636272, + 6459646608, + 6459423264, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654368, + 6459878112, + 6459688080, + 6459845488, + 6459819136, + 6459481376, + 6459285280, + 6459505840, + 6459547136, + 6459620544, + 6459634032, + 6459717072, + 6459682960, + 6459669856, + 6459659536, + 6459810112, + 6459803056, + 6459498432, + 6459498464, + 6459796736, + 6459451712, + 6459891120 ], "bases": [ { @@ -8423,7 +8421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923392, + "complete_object_locator": 6468927488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8432,61 +8430,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467115464, + "vtable_address": 6467119528, "methods": [ - 6459232576, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666416, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415552, - 6459415376, - 6459415344, - 6459749984, - 6459674976, - 6459723392, - 6459432704, - 6459613456, - 6459632208, - 6459634272, - 6459644560, - 6459421264, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652288, - 6459876192, - 6459686544, - 6459843920, - 6459817296, - 6459479536, - 6459283888, - 6459504464, - 6459545360, - 6459618544, - 6459631840, - 6459714944, - 6459680768, - 6459667680, - 6459657344, - 6459808048, - 6459800992, - 6459496240, - 6459496272, - 6459794656, - 6459450016, - 6459888928 + 6459234768, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668608, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417744, + 6459417568, + 6459417536, + 6459752176, + 6459677168, + 6459725584, + 6459434896, + 6459615648, + 6459634400, + 6459636464, + 6459646752, + 6459423456, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654480, + 6459878384, + 6459688736, + 6459846112, + 6459819488, + 6459481728, + 6459286080, + 6459506656, + 6459547552, + 6459620736, + 6459634032, + 6459717136, + 6459682960, + 6459669872, + 6459659536, + 6459810240, + 6459803184, + 6459498432, + 6459498464, + 6459796848, + 6459452208, + 6459891120 ], "bases": [ { @@ -8520,7 +8518,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468904576, + "complete_object_locator": 6468908672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8529,61 +8527,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467169968, + "vtable_address": 6467174032, "methods": [ - 6459232640, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666432, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415568, - 6459415376, - 6459415344, - 6459750336, - 6459675104, - 6459723904, - 6459432976, - 6459613456, - 6459632208, - 6459634464, - 6459644704, - 6459421456, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652400, - 6459876464, - 6459687120, - 6459844544, - 6459817648, - 6459479888, - 6459284688, - 6459505280, - 6459545776, - 6459618736, - 6459631840, - 6459715008, - 6459680768, - 6459667696, - 6459657344, - 6459808176, - 6459801120, - 6459496240, - 6459496272, - 6459794768, - 6459450512, - 6459888928 + 6459234832, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668624, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417760, + 6459417568, + 6459417536, + 6459752528, + 6459677296, + 6459726096, + 6459435168, + 6459615648, + 6459634400, + 6459636656, + 6459646896, + 6459423648, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654592, + 6459878656, + 6459689312, + 6459846736, + 6459819840, + 6459482080, + 6459286880, + 6459507472, + 6459547968, + 6459620928, + 6459634032, + 6459717200, + 6459682960, + 6459669888, + 6459659536, + 6459810368, + 6459803312, + 6459498432, + 6459498464, + 6459796960, + 6459452704, + 6459891120 ], "bases": [ { @@ -8617,7 +8615,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918384, + "complete_object_locator": 6468922480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8626,61 +8624,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467167976, + "vtable_address": 6467172040, "methods": [ - 6459232704, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666448, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415584, - 6459415376, - 6459415344, - 6459750688, - 6459675232, - 6459724416, - 6459433248, - 6459613456, - 6459632208, - 6459634656, - 6459644848, - 6459421648, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652512, - 6459876736, - 6459687696, - 6459845168, - 6459818000, - 6459480240, - 6459285488, - 6459506096, - 6459546192, - 6459618928, - 6459631840, - 6459715072, - 6459680768, - 6459667712, - 6459657344, - 6459808304, - 6459801248, - 6459496240, - 6459496272, - 6459794880, - 6459451008, - 6459888928 + 6459234896, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668640, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417776, + 6459417568, + 6459417536, + 6459752880, + 6459677424, + 6459726608, + 6459435440, + 6459615648, + 6459634400, + 6459636848, + 6459647040, + 6459423840, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654704, + 6459878928, + 6459689888, + 6459847360, + 6459820192, + 6459482432, + 6459287680, + 6459508288, + 6459548384, + 6459621120, + 6459634032, + 6459717264, + 6459682960, + 6459669904, + 6459659536, + 6459810496, + 6459803440, + 6459498432, + 6459498464, + 6459797072, + 6459453200, + 6459891120 ], "bases": [ { @@ -8714,7 +8712,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468921952, + "complete_object_locator": 6468926048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8723,61 +8721,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467162896, + "vtable_address": 6467166960, "methods": [ - 6459232768, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666464, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415600, - 6459415376, - 6459415344, - 6459751040, - 6459675360, - 6459724928, - 6459433520, - 6459613456, - 6459632208, - 6459634848, - 6459644992, - 6459421840, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652624, - 6459877008, - 6459688336, - 6459845904, - 6459818496, - 6459480704, - 6459286288, - 6459506912, - 6459546608, - 6459619120, - 6459631840, - 6459715136, - 6459680768, - 6459667728, - 6459657344, - 6459808432, - 6459801376, - 6459496240, - 6459496272, - 6459794992, - 6459451504, - 6459888928 + 6459234960, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668656, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417792, + 6459417568, + 6459417536, + 6459753232, + 6459677552, + 6459727120, + 6459435712, + 6459615648, + 6459634400, + 6459637040, + 6459647184, + 6459424032, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654816, + 6459879200, + 6459690528, + 6459848096, + 6459820688, + 6459482896, + 6459288480, + 6459509104, + 6459548800, + 6459621312, + 6459634032, + 6459717328, + 6459682960, + 6459669920, + 6459659536, + 6459810624, + 6459803568, + 6459498432, + 6459498464, + 6459797184, + 6459453696, + 6459891120 ], "bases": [ { @@ -8811,7 +8809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937160, + "complete_object_locator": 6468941256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8820,61 +8818,61 @@ }, { "type_name": "CBaseConcreteToolAttr", - "vtable_address": 6467164952, + "vtable_address": 6467169016, "methods": [ - 6459232832, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666480, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459415616, - 6459415376, - 6459415344, - 6459751392, - 6459675488, - 6459725440, - 6459433792, - 6459613456, - 6459632208, - 6459635040, - 6459645136, - 6459422032, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652736, - 6459877280, - 6459689024, - 6459846528, - 6459818848, - 6459481056, - 6459287088, - 6459507728, - 6459547024, - 6459619312, - 6459631840, - 6459715200, - 6459680768, - 6459667744, - 6459657344, - 6459808560, - 6459801504, - 6459496240, - 6459496272, - 6459795104, - 6459452000, - 6459888928 + 6459235024, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668672, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459417808, + 6459417568, + 6459417536, + 6459753584, + 6459677680, + 6459727632, + 6459435984, + 6459615648, + 6459634400, + 6459637232, + 6459647328, + 6459424224, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654928, + 6459879472, + 6459691216, + 6459848720, + 6459821040, + 6459483248, + 6459289280, + 6459509920, + 6459549216, + 6459621504, + 6459634032, + 6459717392, + 6459682960, + 6459669936, + 6459659536, + 6459810752, + 6459803696, + 6459498432, + 6459498464, + 6459797296, + 6459454192, + 6459891120 ], "bases": [ { @@ -8908,7 +8906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928960, + "complete_object_locator": 6468933056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8917,7 +8915,7 @@ }, { "type_name": "CBaseCubemap", - "vtable_address": 6464495024, + "vtable_address": 6464499120, "methods": [ 6444064576, 6444248304, @@ -8946,7 +8944,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468237560, + "complete_object_locator": 6468241656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8955,14 +8953,14 @@ }, { "type_name": "CBaseDynamicIOSignature", - "vtable_address": 6467193976, + "vtable_address": 6467198040, "methods": [ - 6460087328 + 6460089520 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468939440, + "complete_object_locator": 6468943536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8971,30 +8969,30 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6465353904, - "methods": [ - 6447891584, - 6447893552, - 6447913232, - 6447907360, - 6447917600, - 6447911792, - 6447897728, - 6447900944, - 6447913248, - 6447910160, - 6447900784, - 6447900496, - 6447900176, - 6447917552, - 6447911472, - 6447911696, - 6447909968, - 6447916288, - 6447916736, - 6447913312, - 6447900512, - 6447916752, + "vtable_address": 6465357968, + "methods": [ + 6447893152, + 6447895120, + 6447914800, + 6447908928, + 6447919168, + 6447913360, + 6447899296, + 6447902512, + 6447914816, + 6447911728, + 6447902352, + 6447902064, + 6447901744, + 6447919120, + 6447913040, + 6447913264, + 6447911536, + 6447917856, + 6447918304, + 6447914880, + 6447902080, + 6447918320, 6447874832 ], "bases": [ @@ -9113,7 +9111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468434200, + "complete_object_locator": 6468438296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9122,32 +9120,32 @@ }, { "type_name": "CBaseFilter", - "vtable_address": 6465767064, + "vtable_address": 6465771256, "methods": [ 6445466896, - 6449164320, + 6449165872, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -9156,25 +9154,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265344, - 6449331584, - 6449370352, + 6460060080, + 6449266896, + 6449333136, + 6449371904, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -9191,13 +9189,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -9205,42 +9203,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -9251,33 +9249,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -9305,34 +9303,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -9342,8 +9340,8 @@ 6444207072, 6444190512, 6443887696, - 6449321792, - 6449321072 + 6449323344, + 6449322624 ], "bases": [ { @@ -9391,7 +9389,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506968, + "complete_object_locator": 6468511064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9400,33 +9398,33 @@ }, { "type_name": "CBaseGameStats", - "vtable_address": 6465823104, - "methods": [ - 6449772656, - 6449502416, - 6449738304, - 6449738288, - 6449581552, - 6449568784, - 6449568912, - 6449568848, - 6449568800, - 6449568816, - 6449568864, - 6449568832, - 6449648000, - 6449525632, - 6449752176, - 6449602128, - 6449738336, - 6449594656, - 6449594672, - 6449772672 + "vtable_address": 6465827296, + "methods": [ + 6449774224, + 6449503984, + 6449739872, + 6449739856, + 6449583120, + 6449570352, + 6449570480, + 6449570416, + 6449570368, + 6449570384, + 6449570432, + 6449570400, + 6449649568, + 6449527200, + 6449753744, + 6449603696, + 6449739904, + 6449596224, + 6449596240, + 6449774240 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468525232, + "complete_object_locator": 6468529328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9435,12 +9433,12 @@ }, { "type_name": "CBaseGameStats_Driver", - "vtable_address": 6465823312, + "vtable_address": 6465827504, "methods": [ - 6449602496, + 6449604064, 6443748592, - 6449738432, - 6449579936, + 6449740000, + 6449581504, 6443748640, 6443748656, 6443748672, @@ -9449,7 +9447,7 @@ 6443748720, 6443748736, 6443748752, - 6449579728, + 6449581296, 6443748784, 6443748800, 6443748816, @@ -9458,7 +9456,7 @@ 6443748864, 6443748880, 6443748896, - 6449658320, + 6449659888, 6443748928, 6443748944, 6443748960, @@ -9468,7 +9466,7 @@ 6443749024, 6443749040, 6443749056, - 6449578672, + 6449580240, 6443749088, 6443749104, 6443749120, @@ -9484,8 +9482,8 @@ 6443749280, 6443749296, 6443749312, - 6449720576, - 6449709728, + 6449722144, + 6449711296, 6443749360, 6443749376, 6443749392, @@ -9493,11 +9491,11 @@ 6443749424, 6443749440, 6443749456, - 6449728272, + 6449729840, 6443749488, - 6449545712, - 6449497296, - 6449788560 + 6449547280, + 6449498864, + 6449790128 ], "bases": [ { @@ -9531,7 +9529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468525352, + "complete_object_locator": 6468529448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9540,18 +9538,18 @@ }, { "type_name": "CBaseGameSystemFactory", - "vtable_address": 6464672648, + "vtable_address": 6464676728, "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -9571,7 +9569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468256672, + "complete_object_locator": 6468260768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9580,12 +9578,12 @@ }, { "type_name": "CBaseHudWeaponSelection", - "vtable_address": 6466127504, + "vtable_address": 6466131712, "methods": [ 6443748576, 6443748592, 6443748608, - 6451475376, + 6451476960, 6443748640, 6443748656, 6443748672, @@ -9638,40 +9636,40 @@ 6443749424, 6443749440, 6443749456, - 6451521776, + 6451523360, 6443749488, - 6451465696, - 6451447184, - 6451544048, - 6451502224, - 6451544016, - 6451511312, - 6451457440, - 6463705588, - 6463705588, - 6451529792, - 6463705588, - 6463705588, - 6451476928, - 6451479136, - 6451527072, - 6451521200, - 6463705588, - 6451543200, - 6451543328, - 6451543536, - 6451543712, - 6451543920, - 6451543936, - 6451543952, - 6451543968, - 6451543984, - 6451543168, - 6451543184, - 6451543120, - 6451521040, - 6451495520, - 6451495504 + 6451467280, + 6451448768, + 6451545632, + 6451503808, + 6451545600, + 6451512896, + 6451459024, + 6463707780, + 6463707780, + 6451531376, + 6463707780, + 6463707780, + 6451478512, + 6451480720, + 6451528656, + 6451522784, + 6463707780, + 6451544784, + 6451544912, + 6451545120, + 6451545296, + 6451545504, + 6451545520, + 6451545536, + 6451545552, + 6451545568, + 6451544752, + 6451544768, + 6451544704, + 6451522624, + 6451497104, + 6451497088 ], "bases": [ { @@ -9705,7 +9703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611328, + "complete_object_locator": 6468615424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9714,25 +9712,25 @@ }, { "type_name": "CBaseLesson", - "vtable_address": 6465929464, - "methods": [ - 6450393104, - 6463705588, - 6450538096, - 6463705588, - 6450698736, - 6463705588, - 6450700528, - 6450578880, - 6450704624, - 6450712208, - 6450682544, - 6450556000, - 6450735872, - 6450700832, - 6450701952, - 6450552880, - 6450421296 + "vtable_address": 6465933656, + "methods": [ + 6450394672, + 6463707780, + 6450539664, + 6463707780, + 6450700304, + 6463707780, + 6450702096, + 6450580448, + 6450706192, + 6450713776, + 6450684112, + 6450557568, + 6450737440, + 6450702400, + 6450703520, + 6450554448, + 6450422864 ], "bases": [ { @@ -9766,7 +9764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468562328, + "complete_object_locator": 6468566424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9775,7 +9773,7 @@ }, { "type_name": "CBaseLightProbeVolume", - "vtable_address": 6464520288, + "vtable_address": 6464524384, "methods": [ 6444275200, 6444305840, @@ -9804,7 +9802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240856, + "complete_object_locator": 6468244952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9813,7 +9811,7 @@ }, { "type_name": "CBasePanelSceneObject", - "vtable_address": 6464410632, + "vtable_address": 6464414728, "methods": [ 6443765584, 6443765216, @@ -9837,7 +9835,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468215088, + "complete_object_locator": 6468219184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9846,33 +9844,33 @@ }, { "type_name": "CBasePlayerController", - "vtable_address": 6465723600, + "vtable_address": 6465727792, "methods": [ 6445466896, - 6448809136, - 6448846816, - 6448867008, + 6448810704, + 6448848384, + 6448868576, 6444197472, - 6450410112, - 6449042544, - 6450413456, - 6448988496, - 6450586832, - 6448814416, - 6449062192, - 6450580640, + 6450411680, + 6449044096, + 6450415024, + 6448990064, + 6450588400, + 6448815984, + 6449063744, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6448979920, - 6450573696, - 6450573648, - 6448494592, + 6448981488, + 6450575264, + 6450575216, + 6448496160, 6443844048, 6443844080, 6443844112, @@ -9880,25 +9878,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905376, - 6449008752, - 6449027216, + 6460060080, + 6448906944, + 6449010304, + 6449028768, 6443799760, - 6448907760, - 6448916992, + 6448909328, + 6448918560, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -9915,13 +9913,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -9929,39 +9927,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6448972992, - 6448977600, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6448974560, + 6448979168, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -9975,38 +9973,38 @@ 6444072288, 6443799728, 6443838576, - 6448917072, - 6450599136, - 6450537248, - 6450676960, + 6448918640, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6449041584, + 6450600912, + 6450581824, + 6449043136, 6444168384, 6444234384, - 6448990704, + 6448992272, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6448987040, + 6450417520, + 6448988608, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, 6443837808, - 6448471984, + 6448473552, 6443838624, 6443869120, 6443837312, @@ -10029,34 +10027,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, - 6449067008, - 6448500528, + 6449068560, + 6448502096, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6448973728, + 6451211136, + 6448975296, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -10066,28 +10064,28 @@ 6444207072, 6444190512, 6443887696, - 6448855728, - 6448865424, - 6448990720, - 6448990080, - 6448483856, - 6448483888, - 6448483872, - 6448483904, - 6448478848, - 6448951952, - 6448950496, - 6448916368, - 6449041280, - 6448480560, - 6448976720, - 6448483920, - 6448480768, - 6448978688, - 6448976800, - 6448967856, - 6448990480, - 6448989872 + 6448857296, + 6448866992, + 6448992288, + 6448991648, + 6448485424, + 6448485456, + 6448485440, + 6448485472, + 6448480416, + 6448953520, + 6448952064, + 6448917936, + 6449042832, + 6448482128, + 6448978288, + 6448485488, + 6448482336, + 6448980256, + 6448978368, + 6448969424, + 6448992048, + 6448991440 ], "bases": [ { @@ -10121,7 +10119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494824, + "complete_object_locator": 6468498920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10130,14 +10128,14 @@ }, { "type_name": "CBasePlayerVData", - "vtable_address": 6465720072, + "vtable_address": 6465724264, "methods": [ - 6448809200, - 6449027264, - 6448953584, - 6448952176, - 6448953312, - 6448991552 + 6448810768, + 6449028816, + 6448955152, + 6448953744, + 6448954880, + 6448993120 ], "bases": [ { @@ -10171,7 +10169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498128, + "complete_object_locator": 6468502224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10180,16 +10178,16 @@ }, { "type_name": "CBasePlayerWeaponVData", - "vtable_address": 6465401960, + "vtable_address": 6465406120, "methods": [ - 6447989296, - 6448046080, - 6450212016, - 6450208224, - 6448029952, - 6450244672, - 6448014496, - 6448013840 + 6447990864, + 6448047648, + 6450213584, + 6450209792, + 6448031520, + 6450246240, + 6448016064, + 6448015408 ], "bases": [ { @@ -10223,7 +10221,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468442816, + "complete_object_locator": 6468446912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10232,32 +10230,32 @@ }, { "type_name": "CBaseProp", - "vtable_address": 6464781464, + "vtable_address": 6464785544, "methods": [ 6445466544, 6445449952, - 6448846688, - 6448866800, - 6448990800, - 6448816736, - 6449042560, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6449061952, - 6448980064, + 6448848256, + 6448868368, + 6448992368, + 6448818304, + 6449044112, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -10266,25 +10264,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905392, + 6460060080, + 6448906960, 6445479840, 6445483856, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -10301,13 +10299,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -10315,79 +10313,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -10412,37 +10410,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -10452,61 +10450,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, + 6448811984, 6445479776, 6445485120 ], @@ -10598,7 +10596,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284328, + "complete_object_locator": 6468288424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -10607,14 +10605,14 @@ }, { "type_name": "CBaseProp", - "vtable_address": 6464783672, + "vtable_address": 6464787752, "methods": [ 6445449636, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -10704,7 +10702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284496, + "complete_object_locator": 6468288592, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -10713,9 +10711,9 @@ }, { "type_name": "CBaseProp", - "vtable_address": 6464783728, + "vtable_address": 6464787808, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -10805,7 +10803,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284536, + "complete_object_locator": 6468288632, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -10814,7 +10812,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 6465252272, + "vtable_address": 6465256352, "methods": [ 6443748576, 6443748592, @@ -10938,7 +10936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468419632, + "complete_object_locator": 6468423728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -10947,7 +10945,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 6465252768, + "vtable_address": 6465256848, "methods": [ 6447662912, 6447662928, @@ -11014,7 +11012,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468419864, + "complete_object_locator": 6468423960, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -11023,9 +11021,9 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 6465252808, + "vtable_address": 6465256888, "methods": [ - 6463705588, + 6463707780, 6447663568, 6447664528, 6447665760 @@ -11090,7 +11088,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468419904, + "complete_object_locator": 6468424000, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -11099,10 +11097,10 @@ }, { "type_name": "CBaseRopePhysics", - "vtable_address": 6465879528, + "vtable_address": 6465883720, "methods": [ - 6450189504, - 6450121456 + 6450191072, + 6450123024 ], "bases": [ { @@ -11122,7 +11120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551808, + "complete_object_locator": 6468555904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11131,13 +11129,13 @@ }, { "type_name": "CBaseSerializerMatchToMetaReplayCompatHelper", - "vtable_address": 6466023376, + "vtable_address": 6466027584, "methods": [ - 6451041728, - 6450974736, - 6450974928, - 6451011456, - 6450988256 + 6451043296, + 6450976304, + 6450976496, + 6451013024, + 6450989824 ], "bases": [ { @@ -11157,7 +11155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468582664, + "complete_object_locator": 6468586760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11166,12 +11164,12 @@ }, { "type_name": "CBaseTempEntity", - "vtable_address": 6465373216, + "vtable_address": 6465377376, "methods": [ - 6447928800, - 6463705588, - 6447928768, - 6447928784 + 6447930368, + 6463707780, + 6447930336, + 6447930352 ], "bases": [ { @@ -11191,7 +11189,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468437344, + "complete_object_locator": 6468441440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11200,61 +11198,61 @@ }, { "type_name": "CBaseToolAttr", - "vtable_address": 6467064880, - "methods": [ - 6459245440, - 6459651088, - 6459651120, + "vtable_address": 6467068944, + "methods": [ + 6459247632, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6463707780, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418464, + 6459417568, + 6459417536, + 6459768016, + 6459682928, + 6459748624, + 6459447136, + 6459615648, + 6459634400, + 6459645104, + 6459653232, + 6459432096, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659520, + 6459890624, + 6459716480, + 6459874640, + 6459835552, + 6459497888, + 6459322080, + 6459543376, + 6459566272, 6459632256, - 6459632304, - 6463705588, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416272, - 6459415376, - 6459415344, - 6459765824, - 6459680736, - 6459746432, - 6459444944, - 6459613456, - 6459632208, - 6459642912, - 6459651040, - 6459429904, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657328, - 6459888432, - 6459714288, - 6459872448, - 6459833360, - 6459495696, - 6459319888, - 6459541184, - 6459564080, - 6459630064, - 6459631840, - 6459718240, - 6459680768, - 6459669168, - 6459657344, - 6459813808, - 6459806752, - 6459496240, - 6459496272, - 6459799696, - 6459472336, - 6459888928 + 6459634032, + 6459720432, + 6459682960, + 6459671360, + 6459659536, + 6459816000, + 6459808944, + 6459498432, + 6459498464, + 6459801888, + 6459474528, + 6459891120 ], "bases": [ { @@ -11274,7 +11272,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468872680, + "complete_object_locator": 6468876776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11283,16 +11281,16 @@ }, { "type_name": "CBaseTypesafeVDataFileManager", - "vtable_address": 6465750696, + "vtable_address": 6465754888, "methods": [ 6444410224, - 6463216656, + 6463218848, 6444410832, - 6449079952, - 6449087568, - 6449080096, - 6449080080, - 6463705588 + 6449081504, + 6449089120, + 6449081648, + 6449081632, + 6463707780 ], "bases": [ { @@ -11326,7 +11324,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468503472, + "complete_object_locator": 6468507568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11335,21 +11333,21 @@ }, { "type_name": "CBaseUndoable", - "vtable_address": 6467064336, + "vtable_address": 6467068400, "methods": [ - 6463705588, - 6463705588, - 6459888752, - 6459888848, - 6459888864, - 6459888832, - 6459888880, - 6459888896, - 6459888800, - 6459888912, - 6459888784, - 6459888816, - 6459245664 + 6463707780, + 6463707780, + 6459890944, + 6459891040, + 6459891056, + 6459891024, + 6459891072, + 6459891088, + 6459890992, + 6459891104, + 6459890976, + 6459891008, + 6459247856 ], "bases": [ { @@ -11369,7 +11367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468872640, + "complete_object_locator": 6468876736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11378,26 +11376,26 @@ }, { "type_name": "CBaseUserCmdPB", - "vtable_address": 6464859232, + "vtable_address": 6464863312, "methods": [ 6445591712, - 6457189536, + 6457191728, 6445586064, 6445586704, 6445587008, - 6457189584, - 6457186560, + 6457191776, + 6457188752, 6445587024, 6445591600, 6445588000, 6443742160, 6445589920, - 6457190896, - 6457192720, + 6457193088, + 6457194912, 6445591616, 6445591648, 6445591632, - 6457187520, + 6457189712, 6445591952 ], "bases": [ @@ -11432,7 +11430,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468290240, + "complete_object_locator": 6468294336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11441,14 +11439,14 @@ }, { "type_name": "CBaseVDataFileManager", - "vtable_address": 6465752488, + "vtable_address": 6465756680, "methods": [ 6444410224, - 6463216656, + 6463218848, 6444410832, - 6463216672, - 6449087568, - 6463705588 + 6463218864, + 6449089120, + 6463707780 ], "bases": [ { @@ -11468,7 +11466,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468502704, + "complete_object_locator": 6468506800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11477,14 +11475,14 @@ }, { "type_name": "CBaseVModuleMetadataProvider", - "vtable_address": 6466163136, + "vtable_address": 6466167344, "methods": [ - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468631264, + "complete_object_locator": 6468635360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11493,21 +11491,21 @@ }, { "type_name": "CBaseWorldPanel", - "vtable_address": 6464420640, + "vtable_address": 6464424736, "methods": [ 6443837376, 6443869040, 6443866768, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, 6443887632, 6443887648, 6443887664, 6443887680, - 6463705588, + 6463707780, 6443848096, 6443806912, 6443820768 @@ -11515,7 +11513,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468221080, + "complete_object_locator": 6468225176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11524,7 +11522,7 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 6464708552, + "vtable_address": 6464712632, "methods": [ 6445076320, 6445089856, @@ -11606,7 +11604,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468279264, + "complete_object_locator": 6468283360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -11615,25 +11613,25 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 6464708600, + "vtable_address": 6464712680, "methods": [ 6445075576, - 6457189536, + 6457191728, 6445244528, - 6447367072, - 6447367152, - 6457189584, - 6457186560, - 6447367168, + 6447367296, + 6447367376, + 6457191776, + 6457188752, + 6447367392, 6445156752, - 6447367408, + 6447367632, 6443742160, - 6447368096, - 6457190896, - 6457192720, - 6447368496, - 6447368528, - 6447368512 + 6447368320, + 6457193088, + 6457194912, + 6447368720, + 6447368752, + 6447368736 ], "bases": [ { @@ -11709,7 +11707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468279424, + "complete_object_locator": 6468283520, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -11718,25 +11716,25 @@ }, { "type_name": "CBidirMsg_PredictionEvent", - "vtable_address": 6465212824, + "vtable_address": 6465216904, "methods": [ - 6447374096, - 6457189536, + 6447374320, + 6457191728, 6445244528, - 6447367072, - 6447367152, - 6457189584, - 6457186560, - 6447367168, + 6447367296, + 6447367376, + 6457191776, + 6457188752, + 6447367392, 6445156752, - 6447367408, + 6447367632, 6443742160, - 6447368096, - 6457190896, - 6457192720, - 6447368496, - 6447368528, - 6447368512 + 6447368320, + 6457193088, + 6457194912, + 6447368720, + 6447368752, + 6447368736 ], "bases": [ { @@ -11770,7 +11768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383472, + "complete_object_locator": 6468387568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11779,27 +11777,27 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent", - "vtable_address": 6465200568, + "vtable_address": 6465204648, "methods": [ - 6447346208, - 6457189536, - 6447338176, - 6447338304, - 6447338352, - 6457189584, - 6457186560, - 6447338368, - 6447339968, - 6447338608, + 6447346432, + 6457191728, + 6447338400, + 6447338528, + 6447338576, + 6457191776, + 6457188752, + 6447338592, + 6447340048, + 6447338736, 6443742160, - 6447339536, - 6457190896, - 6457192720, - 6447341296, - 6447341584, - 6447341568, - 6457187520, - 6447343056 + 6447339616, + 6457193088, + 6457194912, + 6447341504, + 6447341808, + 6447341792, + 6457189712, + 6447343280 ], "bases": [ { @@ -11833,7 +11831,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383512, + "complete_object_locator": 6468387608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11842,25 +11840,25 @@ }, { "type_name": "CBidirMsg_RebroadcastSource", - "vtable_address": 6465211384, + "vtable_address": 6465215464, "methods": [ - 6447357600, - 6457189536, - 6447354032, - 6447354272, - 6447354304, - 6457189584, - 6457186560, - 6447354320, - 6447354944, - 6447354368, - 6443742160, - 6447354768, - 6457190896, - 6457192720, - 6447355024, - 6447355264, - 6447355248 + 6447357824, + 6457191728, + 6447354256, + 6447354496, + 6447354528, + 6457191776, + 6457188752, + 6447354544, + 6447355152, + 6447354592, + 6443742160, + 6447354976, + 6457193088, + 6457194912, + 6447355248, + 6447355488, + 6447355472 ], "bases": [ { @@ -11894,7 +11892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383648, + "complete_object_locator": 6468387744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11903,10 +11901,10 @@ }, { "type_name": "CBloomRenderer", - "vtable_address": 6466879112, + "vtable_address": 6466883224, "methods": [ - 6456976080, - 6456700752, + 6456978272, + 6456702560, 6443773360 ], "bases": [ @@ -11927,7 +11925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468810456, + "complete_object_locator": 6468814552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11936,7 +11934,7 @@ }, { "type_name": "CBodyComponent", - "vtable_address": 6464455816, + "vtable_address": 6464459912, "methods": [ 6443986000, 6443969104, @@ -11962,7 +11960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468230032, + "complete_object_locator": 6468234128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -11971,13 +11969,13 @@ }, { "type_name": "CBodyComponentBaseAnimGraph", - "vtable_address": 6465717552, + "vtable_address": 6465721744, "methods": [ - 6449027312, - 6448905408, - 6448906832, - 6448901968, - 6448917008 + 6449028864, + 6448906976, + 6448908400, + 6448903536, + 6448918576 ], "bases": [ { @@ -12025,7 +12023,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468492464, + "complete_object_locator": 6468496560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12034,43 +12032,43 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 6465717248, - "methods": [ - 6449027168, - 6448826400, - 6448826352, - 6448827872, - 6448825840, - 6448828064, - 6448827056, - 6448827856, - 6448827184, - 6448827040, - 6448826992, - 6448826416, - 6448923552, - 6448921312, - 6449037984, - 6448921328, - 6448901952, - 6448901296, - 6448901312, - 6449040224, - 6448963520, - 6449040192, - 6448916976, - 6448905360, - 6450267600, - 6448868864, - 6448951936, - 6449027792, - 6449035952, - 6448965856, - 6448966048, - 6448966032, - 6448828432, - 6448916064, - 6448899200 + "vtable_address": 6465721440, + "methods": [ + 6449028720, + 6448827968, + 6448827920, + 6448829440, + 6448827408, + 6448829632, + 6448828624, + 6448829424, + 6448828752, + 6448828608, + 6448828560, + 6448827984, + 6448925120, + 6448922880, + 6449039536, + 6448922896, + 6448903520, + 6448902864, + 6448902880, + 6449041776, + 6448965088, + 6449041744, + 6448918544, + 6448906928, + 6450269168, + 6448870432, + 6448953504, + 6449029344, + 6449037504, + 6448967424, + 6448967616, + 6448967600, + 6448830000, + 6448917632, + 6448900768 ], "bases": [ { @@ -12132,7 +12130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468492608, + "complete_object_locator": 6468496704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -12141,9 +12139,9 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 6465717536, + "vtable_address": 6465721728, "methods": [ - 6448968640 + 6448970208 ], "bases": [ { @@ -12205,7 +12203,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468493152, + "complete_object_locator": 6468497248, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -12214,13 +12212,13 @@ }, { "type_name": "CBodyComponentBaseModelEntity", - "vtable_address": 6465712920, + "vtable_address": 6465717112, "methods": [ - 6449027360, - 6448905424, - 6448906848, - 6448901984, - 6448917024 + 6449028912, + 6448906992, + 6448908416, + 6448903552, + 6448918592 ], "bases": [ { @@ -12268,7 +12266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468496096, + "complete_object_locator": 6468500192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12277,10 +12275,10 @@ }, { "type_name": "CBodyComponentPoint", - "vtable_address": 6464456104, + "vtable_address": 6464460200, "methods": [ 6443986048, - 6448905440, + 6448907008, 6443969856, 6443968720, 6443971872 @@ -12317,7 +12315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468228568, + "complete_object_locator": 6468232664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12326,32 +12324,32 @@ }, { "type_name": "CBodyComponentPoint::NetworkVar_m_sceneNode", - "vtable_address": 6464455864, + "vtable_address": 6464459960, "methods": [ - 6449594208, + 6449595776, 6443944192, 6443947168, - 6449531712, - 6449739472, - 6449499872, - 6449771728, - 6449650672, + 6449533280, + 6449741040, + 6449501440, + 6449773296, + 6449652240, 6443972272, 6443972256, - 6449624304, - 6449726864, - 6449726960, - 6449735120, - 6449541392, + 6449625872, + 6449728432, + 6449728528, + 6449736688, + 6449542960, 6443968848, - 6449653504, - 6449657744, - 6449657296, - 6449657760, - 6449657680, - 6449656656, - 6449650304, - 6449541360, + 6449655072, + 6449659312, + 6449658864, + 6449659328, + 6449659248, + 6449658224, + 6449651872, + 6449542928, 6443963808, 6443986192, 6443981568, @@ -12376,7 +12374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468228872, + "complete_object_locator": 6468232968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12385,13 +12383,13 @@ }, { "type_name": "CBodyComponentSkeletonInstance", - "vtable_address": 6464456408, + "vtable_address": 6464460504, "methods": [ 6443986096, - 6448905456, + 6448907024, 6443969872, 6443968704, - 6448917024 + 6448918592 ], "bases": [ { @@ -12425,7 +12423,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468229080, + "complete_object_locator": 6468233176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12434,33 +12432,33 @@ }, { "type_name": "CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", - "vtable_address": 6464456152, + "vtable_address": 6464460248, "methods": [ - 6450189664, + 6450191232, 6443944256, - 6450119696, - 6450147280, - 6450273904, - 6450114768, - 6450297248, - 6450235680, + 6450121264, + 6450148848, + 6450275472, + 6450116336, + 6450298816, + 6450237248, 6443972304, 6443972288, - 6450207488, - 6450256816, - 6450258320, - 6450267680, - 6450158576, - 6450177152, - 6450236704, - 6450243712, - 6450241296, - 6449657760, - 6450241504, - 6450238496, - 6450235408, - 6450158272, - 6450159232, + 6450209056, + 6450258384, + 6450259888, + 6450269248, + 6450160144, + 6450178720, + 6450238272, + 6450245280, + 6450242864, + 6449659328, + 6450243072, + 6450240064, + 6450236976, + 6450159840, + 6450160800, 6443986528, 6443981616, 6443981728, @@ -12512,7 +12510,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468229216, + "complete_object_locator": 6468233312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -12521,9 +12519,9 @@ }, { "type_name": "CBodyComponentSkeletonInstance::NetworkVar_m_skeletonInstance", - "vtable_address": 6464456392, + "vtable_address": 6464460488, "methods": [ - 6450257520 + 6450259088 ], "bases": [ { @@ -12571,7 +12569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468229576, + "complete_object_locator": 6468233672, "offset": 384, "constructor_displacement": 0, "class_attributes": 1 @@ -12580,7 +12578,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 6464678984, + "vtable_address": 6464683064, "methods": [ 6443748576, 6443748592, @@ -12690,7 +12688,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468257944, + "complete_object_locator": 6468262040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -12699,7 +12697,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 6464679480, + "vtable_address": 6464683560, "methods": [ 6443926160, 6444868528 @@ -12750,7 +12748,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468258168, + "complete_object_locator": 6468262264, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -12759,7 +12757,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 6464679504, + "vtable_address": 6464683584, "methods": [ 6444867344 ], @@ -12809,7 +12807,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468258208, + "complete_object_locator": 6468262304, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -12818,31 +12816,31 @@ }, { "type_name": "CBombTarget", - "vtable_address": 6465376056, + "vtable_address": 6465380216, "methods": [ 6445466928, - 6447934880, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6447936448, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -12852,25 +12850,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946592, - 6447952000, - 6447953088, + 6460060080, + 6447948160, + 6447953568, + 6447954656, 6443799760, - 6447947600, - 6448917040, + 6447949168, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -12887,13 +12885,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -12901,41 +12899,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6447957488, + 6450556976, + 6447959056, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -12947,33 +12945,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, - 6447957360, - 6447942688, + 6447958928, + 6447944256, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -13001,34 +12999,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -13038,24 +13036,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -13067,8 +13065,8 @@ 6444190624, 6444191200, 6444234752, - 6447937216, - 6447937408 + 6447938784, + 6447938976 ], "bases": [ { @@ -13186,7 +13184,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468438560, + "complete_object_locator": 6468442656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -13195,14 +13193,14 @@ }, { "type_name": "CBombTarget", - "vtable_address": 6465378056, + "vtable_address": 6465382216, "methods": [ - 6447934608, - 6448995376, - 6448972352, - 6448972096, + 6447936176, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -13320,7 +13318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468438744, + "complete_object_locator": 6468442840, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -13329,9 +13327,9 @@ }, { "type_name": "CBombTarget", - "vtable_address": 6465378112, + "vtable_address": 6465382272, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -13449,7 +13447,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468438784, + "complete_object_locator": 6468442880, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -13458,9 +13456,9 @@ }, { "type_name": "CBoneBindSpacePosRenderAttribCallback", - "vtable_address": 6465427048, + "vtable_address": 6465431248, "methods": [ - 6448071568 + 6448073136 ], "bases": [ { @@ -13480,7 +13478,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468449832, + "complete_object_locator": 6468454016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13489,14 +13487,14 @@ }, { "type_name": "CBoneSetup", - "vtable_address": 6467022216, + "vtable_address": 6467026280, "methods": [ - 6458812112, - 6458812272, - 6458812352, - 6458812416, - 6458805376, - 6458812032 + 6458814304, + 6458814464, + 6458814544, + 6458814608, + 6458807568, + 6458814224 ], "bases": [ { @@ -13516,7 +13514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468863480, + "complete_object_locator": 6468867576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13525,9 +13523,9 @@ }, { "type_name": "CBoneUpVectorRenderAttribCallback", - "vtable_address": 6465426952, + "vtable_address": 6465431152, "methods": [ - 6448071376 + 6448072944 ], "bases": [ { @@ -13547,7 +13545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468449704, + "complete_object_locator": 6468453888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13556,13 +13554,13 @@ }, { "type_name": "CBroadcastRecipientFilter", - "vtable_address": 6464482400, + "vtable_address": 6464486496, "methods": [ 6444064640, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -13596,7 +13594,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468235456, + "complete_object_locator": 6468239552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13605,10 +13603,10 @@ }, { "type_name": "CBufferReadbackRenderer", - "vtable_address": 6466883680, + "vtable_address": 6466887792, "methods": [ - 6456982256, - 6456700800, + 6456984448, + 6456702608, 6443773360 ], "bases": [ @@ -13629,7 +13627,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812000, + "complete_object_locator": 6468816096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13638,13 +13636,13 @@ }, { "type_name": "CBuildCubemapsGameSystem", - "vtable_address": 6464470360, + "vtable_address": 6464474456, "methods": [ - 6444016000, + 6444016256, 6443748592, 6443748608, - 6444024656, - 6444019392, + 6444024912, + 6444019648, 6443748656, 6443748672, 6443748688, @@ -13669,7 +13667,7 @@ 6443748992, 6443749008, 6443749024, - 6444016352, + 6444016608, 6443749056, 6443749072, 6443749088, @@ -13696,11 +13694,11 @@ 6443749424, 6443749440, 6443749456, - 6444015968, + 6444016224, 6443749488, - 6444015952, - 6444025360, - 6444015936 + 6444016208, + 6444025616, + 6444016192 ], "bases": [ { @@ -13734,7 +13732,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468233864, + "complete_object_locator": 6468237960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13743,10 +13741,10 @@ }, { "type_name": "CBuildNumberRenderCallback", - "vtable_address": 6466878800, + "vtable_address": 6466882912, "methods": [ - 6456680928, - 6456683760 + 6456682736, + 6456685568 ], "bases": [ { @@ -13766,7 +13764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468809832, + "complete_object_locator": 6468813928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13775,15 +13773,15 @@ }, { "type_name": "CBuildShardModelJob", - "vtable_address": 6466053920, + "vtable_address": 6466058128, "methods": [ - 6451086992, - 6451092672, - 6451140160, - 6451102432, - 6451144272, - 6451104224, - 6451104208 + 6451088560, + 6451094240, + 6451141728, + 6451104000, + 6451145840, + 6451105792, + 6451105776 ], "bases": [ { @@ -13845,7 +13843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590040, + "complete_object_locator": 6468594136, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -13854,12 +13852,12 @@ }, { "type_name": "CBulletWhizTimer", - "vtable_address": 6466139008, + "vtable_address": 6466143216, "methods": [ 6443748576, 6443748592, 6443748608, - 6451602208, + 6451603792, 6443748640, 6443748656, 6443748672, @@ -13912,11 +13910,11 @@ 6443749424, 6443749440, 6443749456, - 6451602176, + 6451603760, 6443749488, - 6451602160, - 6451602224, - 6451602144 + 6451603744, + 6451603808, + 6451603728 ], "bases": [ { @@ -13950,7 +13948,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616000, + "complete_object_locator": 6468620096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13959,16 +13957,16 @@ }, { "type_name": "CBuoyancyHelper", - "vtable_address": 6465375984, + "vtable_address": 6465380144, "methods": [ - 6447935888, + 6447937456, 6444234944, 6444190496, 6444234784, - 6447953136, - 6447950208, - 6447950240, - 6447950224 + 6447954704, + 6447951776, + 6447951808, + 6447951792 ], "bases": [ { @@ -13988,7 +13986,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468438288, + "complete_object_locator": 6468442384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13997,25 +13995,25 @@ }, { "type_name": "CCLCMsg_BaselineAck", - "vtable_address": 6465214248, + "vtable_address": 6465218328, "methods": [ - 6447387136, - 6457189536, - 6447381696, - 6447382800, - 6447383056, - 6457189584, - 6457186560, - 6447383088, - 6447384016, - 6447383184, - 6443742160, - 6447383712, - 6457190896, - 6457192720, - 6447384480, - 6447385360, - 6447385344 + 6447387360, + 6457191728, + 6447381920, + 6447383024, + 6447383280, + 6457191776, + 6457188752, + 6447383312, + 6447384240, + 6447383408, + 6443742160, + 6447383936, + 6457193088, + 6457194912, + 6447384704, + 6447385584, + 6447385568 ], "bases": [ { @@ -14049,7 +14047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383784, + "complete_object_locator": 6468387880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14058,33 +14056,33 @@ }, { "type_name": "CCLCMsg_ClientInfo", - "vtable_address": 6465198328, - "methods": [ - 6447328656, - 6457189536, - 6447321648, - 6447322032, - 6447322112, - 6457189584, - 6457186560, - 6447322128, - 6447323424, - 6447322304, - 6443742160, - 6447323024, - 6457190896, - 6457192720, - 6447323808, - 6447323840, - 6447323824, - 6457187520, - 6447325552, - 6457187520, - 6447325632, - 6457388960, - 6457389040, - 6457187520, - 6447329024 + "vtable_address": 6465202408, + "methods": [ + 6447328880, + 6457191728, + 6447321872, + 6447322256, + 6447322336, + 6457191776, + 6457188752, + 6447322352, + 6447323648, + 6447322528, + 6443742160, + 6447323248, + 6457193088, + 6457194912, + 6447324032, + 6447324064, + 6447324048, + 6457189712, + 6447325776, + 6457189712, + 6447325856, + 6457391152, + 6457391232, + 6457189712, + 6447329232 ], "bases": [ { @@ -14118,7 +14116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383824, + "complete_object_locator": 6468387920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14127,25 +14125,27 @@ }, { "type_name": "CCLCMsg_CmdKeyValues", - "vtable_address": 6465085016, - "methods": [ - 6446887920, - 6457189536, - 6446883888, - 6446884800, - 6446884880, - 6457189584, - 6457186560, - 6446885008, - 6446886352, - 6446885552, - 6443742160, - 6446886224, - 6457190896, - 6457192720, - 6446886464, + "vtable_address": 6465089080, + "methods": [ + 6446888144, + 6457191728, + 6446884112, + 6446885024, + 6446885104, + 6457191776, + 6457188752, + 6446885232, 6446886576, - 6446886496 + 6446885776, + 6443742160, + 6446886448, + 6457193088, + 6457194912, + 6446886688, + 6446886800, + 6446886720, + 6457189712, + 6446887072 ], "bases": [ { @@ -14179,7 +14179,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383864, + "complete_object_locator": 6468387960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14188,31 +14188,31 @@ }, { "type_name": "CCLCMsg_Diagnostic", - "vtable_address": 6465160128, - "methods": [ - 6447104560, - 6457189536, - 6447084656, - 6447085152, - 6447085840, - 6457189584, - 6457186560, - 6447085856, - 6447087424, - 6447086160, - 6443742160, - 6447086960, - 6457190896, - 6457192720, - 6447087440, - 6447087472, - 6447087456, - 6457187520, - 6447101488, - 6457187520, - 6447104640, - 6457187520, - 6447105120 + "vtable_address": 6465164208, + "methods": [ + 6447104784, + 6457191728, + 6447084880, + 6447085376, + 6447086064, + 6457191776, + 6457188752, + 6447086080, + 6447087648, + 6447086384, + 6443742160, + 6447087184, + 6457193088, + 6457194912, + 6447087664, + 6447087696, + 6447087680, + 6457189712, + 6447101712, + 6457189712, + 6447104864, + 6457189712, + 6447105344 ], "bases": [ { @@ -14246,7 +14246,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383904, + "complete_object_locator": 6468388000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14255,27 +14255,27 @@ }, { "type_name": "CCLCMsg_HltvFixupOperatorTick", - "vtable_address": 6465088144, - "methods": [ - 6446941984, - 6457189536, - 6446926800, - 6446927728, - 6446928032, - 6457189584, - 6457186560, - 6446928080, - 6446930928, - 6446929120, + "vtable_address": 6465092224, + "methods": [ + 6446942208, + 6457191728, + 6446927024, + 6446927952, + 6446928256, + 6457191776, + 6457188752, + 6446928304, + 6446931152, + 6446929344, 6443742160, - 6446930352, - 6457190896, - 6457192720, - 6446930960, - 6446931088, - 6446931072, - 6457187520, - 6446940544 + 6446930576, + 6457193088, + 6457194912, + 6446931184, + 6446931312, + 6446931296, + 6457189712, + 6446940768 ], "bases": [ { @@ -14309,7 +14309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383944, + "complete_object_locator": 6468388040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14318,29 +14318,29 @@ }, { "type_name": "CCLCMsg_HltvReplay", - "vtable_address": 6465085304, + "vtable_address": 6465089384, "methods": [ - 6446894560, - 6457189536, + 6446894784, + 6457191728, 6445605664, - 6446881472, - 6446881904, - 6457189584, - 6457186560, - 6446882080, + 6446881696, + 6446882128, + 6457191776, + 6457188752, + 6446882304, 6445603328, - 6446882816, + 6446883040, 6443742160, - 6446883904, - 6457190896, - 6457192720, - 6446884784, - 6446886384, - 6446886368, - 6457187520, - 6446888096, - 6457187520, - 6446889024 + 6446884128, + 6457193088, + 6457194912, + 6446885008, + 6446886608, + 6446886592, + 6457189712, + 6446888320, + 6457189712, + 6446889248 ], "bases": [ { @@ -14374,7 +14374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383984, + "complete_object_locator": 6468388080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14383,7 +14383,7 @@ }, { "type_name": "CCLCMsg_HltvReplay_t", - "vtable_address": 6464862000, + "vtable_address": 6464866080, "methods": [ 6445598944, 6445599280, @@ -14465,7 +14465,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291240, + "complete_object_locator": 6468295336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -14474,25 +14474,25 @@ }, { "type_name": "CCLCMsg_HltvReplay_t", - "vtable_address": 6464862048, + "vtable_address": 6464866128, "methods": [ 6445598784, - 6457189536, + 6457191728, 6445605664, - 6446881472, - 6446881904, - 6457189584, - 6457186560, - 6446882080, + 6446881696, + 6446882128, + 6457191776, + 6457188752, + 6446882304, 6445603328, - 6446882816, + 6446883040, 6443742160, - 6446883904, - 6457190896, - 6457192720, - 6446884784, - 6446886384, - 6446886368 + 6446884128, + 6457193088, + 6457194912, + 6446885008, + 6446886608, + 6446886592 ], "bases": [ { @@ -14568,7 +14568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291400, + "complete_object_locator": 6468295496, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -14577,27 +14577,27 @@ }, { "type_name": "CCLCMsg_ListenEvents", - "vtable_address": 6465215528, - "methods": [ - 6447400672, - 6457189536, - 6447394128, - 6447394576, - 6447394848, - 6457189584, - 6457186560, - 6447394864, - 6447397712, + "vtable_address": 6465219608, + "methods": [ + 6447400896, + 6457191728, + 6447394352, + 6447394800, + 6447395072, + 6457191776, + 6457188752, + 6447395088, + 6447397936, 6447396288, 6443742160, - 6447397552, - 6457190896, - 6457192720, - 6447398320, - 6447398448, - 6447398432, - 6457187520, - 6447400432 + 6447397776, + 6457193088, + 6457194912, + 6447398544, + 6447398672, + 6447398656, + 6457189712, + 6447400656 ], "bases": [ { @@ -14631,7 +14631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384024, + "complete_object_locator": 6468388120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14640,27 +14640,27 @@ }, { "type_name": "CCLCMsg_LoadingProgress", - "vtable_address": 6465217784, + "vtable_address": 6465221864, "methods": [ - 6447432416, - 6457189536, - 6447426784, - 6447426848, - 6447426880, - 6457189584, - 6457186560, - 6447426896, - 6447427680, + 6447432640, + 6457191728, + 6447427008, + 6447427072, + 6447427104, + 6457191776, + 6457188752, 6447427120, + 6447427904, + 6447427168, 6443742160, - 6447427504, - 6457190896, - 6457192720, 6447427728, - 6447430336, - 6447428816, - 6457187520, - 6447431824 + 6457193088, + 6457194912, + 6447427952, + 6447430080, + 6447429040, + 6457189712, + 6447432048 ], "bases": [ { @@ -14694,7 +14694,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384160, + "complete_object_locator": 6468388256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14703,25 +14703,25 @@ }, { "type_name": "CCLCMsg_Move", - "vtable_address": 6465199656, - "methods": [ - 6447341728, - 6457189536, - 6447334480, - 6447336128, - 6447336208, - 6457189584, - 6457186560, - 6447336544, - 6447337392, - 6447336672, + "vtable_address": 6465203736, + "methods": [ + 6447341952, + 6457191728, + 6447334704, + 6447336352, + 6447336432, + 6457191776, + 6457188752, + 6447336768, + 6447337616, + 6447336896, 6443742160, - 6447337168, - 6457190896, - 6457192720, - 6447337424, - 6447337792, - 6447337776 + 6447337392, + 6457193088, + 6457194912, + 6447337648, + 6447338016, + 6447338000 ], "bases": [ { @@ -14755,7 +14755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384200, + "complete_object_locator": 6468388296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14764,25 +14764,25 @@ }, { "type_name": "CCLCMsg_RconServerDetails", - "vtable_address": 6465085952, - "methods": [ - 6446918576, - 6457189536, - 6446903504, - 6446913264, - 6446913328, - 6457189584, - 6457186560, - 6446913344, - 6446913920, - 6446913440, - 6443742160, - 6446913808, - 6457190896, - 6457192720, - 6446914368, - 6446915760, - 6446915664 + "vtable_address": 6465090032, + "methods": [ + 6446918800, + 6457191728, + 6446901072, + 6446913488, + 6446913552, + 6457191776, + 6457188752, + 6446913568, + 6446914144, + 6446913664, + 6443742160, + 6446914032, + 6457193088, + 6457194912, + 6446914592, + 6446915968, + 6446915760 ], "bases": [ { @@ -14816,7 +14816,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384240, + "complete_object_locator": 6468388336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14825,25 +14825,25 @@ }, { "type_name": "CCLCMsg_RequestPause", - "vtable_address": 6465083832, + "vtable_address": 6465087912, "methods": [ - 6446872816, - 6457189536, - 6446867776, - 6446867888, - 6446867936, - 6457189584, - 6457186560, + 6446873040, + 6457191728, + 6446868000, + 6446868112, 6446868160, - 6446869152, - 6446868272, + 6457191776, + 6457188752, + 6446868384, + 6446869376, + 6446868496, 6443742160, - 6446868848, - 6457190896, - 6457192720, - 6446869296, - 6446869856, - 6446869840 + 6446869072, + 6457193088, + 6457194912, + 6446869520, + 6446870080, + 6446870064 ], "bases": [ { @@ -14877,7 +14877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384280, + "complete_object_locator": 6468388376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14886,27 +14886,27 @@ }, { "type_name": "CCLCMsg_RespondCvarValue", - "vtable_address": 6465216664, - "methods": [ - 6447423120, - 6457189536, - 6447411200, - 6447412160, - 6447412352, - 6457189584, - 6457186560, - 6447412368, - 6447413792, - 6447412720, - 6443742160, - 6447413424, - 6457190896, - 6457192720, - 6447413808, - 6447413920, - 6447413904, - 6457187520, - 6447422528 + "vtable_address": 6465220744, + "methods": [ + 6447423344, + 6457191728, + 6447411408, + 6447412384, + 6447412576, + 6457191776, + 6457188752, + 6447412592, + 6447414016, + 6447412944, + 6443742160, + 6447413648, + 6457193088, + 6457194912, + 6447414032, + 6447414144, + 6447414128, + 6457189712, + 6447422752 ], "bases": [ { @@ -14940,7 +14940,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384320, + "complete_object_locator": 6468388416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14949,25 +14949,25 @@ }, { "type_name": "CCLCMsg_ServerStatus", - "vtable_address": 6465082408, - "methods": [ - 6446859376, - 6457189536, - 6446854768, - 6446855712, - 6446855744, - 6457189584, - 6457186560, - 6446855760, - 6446856336, - 6446855808, - 6443742160, - 6446856208, - 6457190896, - 6457192720, - 6446856576, - 6446858272, - 6446857920 + "vtable_address": 6465086488, + "methods": [ + 6446859600, + 6457191728, + 6446854992, + 6446855936, + 6446855968, + 6457191776, + 6457188752, + 6446855984, + 6446856560, + 6446856032, + 6443742160, + 6446856432, + 6457193088, + 6457194912, + 6446856800, + 6446858496, + 6446858144 ], "bases": [ { @@ -15001,7 +15001,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384360, + "complete_object_locator": 6468388456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15010,29 +15010,29 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect", - "vtable_address": 6465229280, - "methods": [ - 6447442832, - 6457189536, - 6447436336, - 6447436528, - 6447436592, - 6457189584, - 6457186560, - 6447436608, - 6447437152, - 6447436672, - 6443742160, - 6447437040, - 6457190896, - 6457192720, - 6447437168, - 6447437216, - 6447437200, - 6457187520, - 6447440880, - 6457187520, - 6447441136 + "vtable_address": 6465233360, + "methods": [ + 6447443056, + 6457191728, + 6447436560, + 6447436752, + 6447436816, + 6457191776, + 6457188752, + 6447436832, + 6447437376, + 6447436896, + 6443742160, + 6447437264, + 6457193088, + 6457194912, + 6447437392, + 6447437440, + 6447437424, + 6457189712, + 6447441104, + 6457189712, + 6447441440 ], "bases": [ { @@ -15066,7 +15066,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384400, + "complete_object_locator": 6468388496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15075,29 +15075,29 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect", - "vtable_address": 6465079480, - "methods": [ - 6446851504, - 6457189536, - 6446846384, - 6446846864, - 6446846896, - 6457189584, - 6457186560, - 6446846912, - 6446847536, - 6446846960, - 6443742160, - 6446847360, - 6457190896, - 6457192720, - 6446847792, - 6446847824, - 6446847808, - 6457187520, - 6446847920, - 6457187520, - 6446848112 + "vtable_address": 6465083560, + "methods": [ + 6446851728, + 6457191728, + 6446846608, + 6446847088, + 6446847120, + 6457191776, + 6457188752, + 6446847136, + 6446847760, + 6446847184, + 6443742160, + 6446847584, + 6457193088, + 6457194912, + 6446848016, + 6446848048, + 6446848032, + 6457189712, + 6446848144, + 6457189712, + 6446848336 ], "bases": [ { @@ -15131,7 +15131,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384440, + "complete_object_locator": 6468388536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15140,27 +15140,27 @@ }, { "type_name": "CCLCMsg_VoiceData", - "vtable_address": 6465212968, + "vtable_address": 6465217048, "methods": [ - 6447376592, - 6457189536, - 6447368752, - 6447369216, - 6447369408, - 6457189584, - 6457186560, - 6447369424, - 6447370336, - 6447369568, + 6447376816, + 6457191728, + 6447368976, + 6447369440, + 6447369632, + 6457191776, + 6457188752, + 6447369648, + 6447370560, + 6447369792, 6443742160, - 6447370080, - 6457190896, - 6457192720, - 6447370352, - 6447370640, - 6447370448, - 6457187520, - 6447373840 + 6447370304, + 6457193088, + 6457194912, + 6447370576, + 6447370864, + 6447370672, + 6457189712, + 6447374064 ], "bases": [ { @@ -15194,7 +15194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384480, + "complete_object_locator": 6468388576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15203,13 +15203,13 @@ }, { "type_name": "CCLCMsg_VoiceData_t", - "vtable_address": 6465966608, + "vtable_address": 6465970800, "methods": [ - 6450765456, - 6450777120, - 6450777104, - 6450808736, - 6450780016 + 6450767024, + 6450778688, + 6450778672, + 6450810304, + 6450781584 ], "bases": [ { @@ -15285,7 +15285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568768, + "complete_object_locator": 6468572864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15294,25 +15294,25 @@ }, { "type_name": "CCLCMsg_VoiceData_t", - "vtable_address": 6465966656, + "vtable_address": 6465970848, "methods": [ - 6450764600, - 6457189536, - 6447368752, - 6447369216, - 6447369408, - 6457189584, - 6457186560, - 6447369424, - 6447370336, - 6447369568, + 6450766168, + 6457191728, + 6447368976, + 6447369440, + 6447369632, + 6457191776, + 6457188752, + 6447369648, + 6447370560, + 6447369792, 6443742160, - 6447370080, - 6457190896, - 6457192720, - 6447370352, - 6447370640, - 6447370448 + 6447370304, + 6457193088, + 6457194912, + 6447370576, + 6447370864, + 6447370672 ], "bases": [ { @@ -15388,7 +15388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568928, + "complete_object_locator": 6468573024, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -15397,10 +15397,10 @@ }, { "type_name": "CCMAA2ComputeRenderer", - "vtable_address": 6466883504, + "vtable_address": 6466887616, "methods": [ - 6456982320, - 6456700848, + 6456984512, + 6456702656, 6443773360 ], "bases": [ @@ -15421,7 +15421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468811872, + "complete_object_locator": 6468815968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15430,24 +15430,24 @@ }, { "type_name": "CCS2ChickenGraphController", - "vtable_address": 6465640408, - "methods": [ - 6448385808, - 6448341552, - 6448351024, - 6448362752, - 6448347120, - 6448382736, - 6448349040, - 6448348864, - 6448351616, + "vtable_address": 6465644584, + "methods": [ + 6448387376, + 6448343120, + 6448352592, + 6448364320, + 6448348688, + 6448384304, + 6448350608, + 6448350432, + 6448353184, 6445458368, 6445460880, 6445459968, 6445481536, - 6448354400, - 6448990368, - 6448378864 + 6448355968, + 6448991936, + 6448380432 ], "bases": [ { @@ -15467,7 +15467,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468479816, + "complete_object_locator": 6468483912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15476,24 +15476,24 @@ }, { "type_name": "CCS2WeaponGraphController", - "vtable_address": 6465674448, - "methods": [ - 6448625328, - 6448519904, - 6448683040, - 6448696336, - 6448674032, - 6448708880, - 6448678432, - 6448678032, - 6448683536, + "vtable_address": 6465678624, + "methods": [ + 6448626896, + 6448521472, + 6448684608, + 6448697904, + 6448675600, + 6448710448, + 6448680000, + 6448679600, + 6448685104, 6445458368, 6445460880, 6445459968, 6445481536, - 6448570400, - 6448990368, - 6448611344 + 6448571968, + 6448991936, + 6448612912 ], "bases": [ { @@ -15513,7 +15513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468485784, + "complete_object_locator": 6468489880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15522,13 +15522,13 @@ }, { "type_name": "CCSAddonManager", - "vtable_address": 6466324392, + "vtable_address": 6466328552, "methods": [ - 6452387616, + 6452389232, 6443748592, - 6452408592, - 6452380432, - 6452380464, + 6452410208, + 6452382048, + 6452382080, 6443748656, 6443748672, 6443748688, @@ -15536,8 +15536,8 @@ 6443748720, 6443748736, 6443748752, - 6452380368, - 6452414080, + 6452381984, + 6452415696, 6443748800, 6443748816, 6443748832, @@ -15551,7 +15551,7 @@ 6443748960, 6443748976, 6443748992, - 6452420048, + 6452421664, 6443749024, 6443749040, 6443749056, @@ -15580,11 +15580,11 @@ 6443749424, 6443749440, 6443749456, - 6452407328, + 6452408944, 6443749488, - 6452360608, - 6452350720, - 6452431344 + 6452362224, + 6452352336, + 6452432960 ], "bases": [ { @@ -15618,7 +15618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468674848, + "complete_object_locator": 6468678944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15627,14 +15627,14 @@ }, { "type_name": "CCSAmmoDef", - "vtable_address": 6465297472, + "vtable_address": 6465301544, "methods": [ 6444410224, - 6448979216, + 6448980784, 6444410832, 6447746416, 6447767664, - 6448897696, + 6448899264, 6447786480, 6447778416, 6447757728, @@ -15688,7 +15688,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428952, + "complete_object_locator": 6468433048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -15697,58 +15697,58 @@ }, { "type_name": "CCSCameraManager", - "vtable_address": 6466286904, - "methods": [ - 6452109056, - 6450991840, - 6451049680, - 6451016688, - 6452190752, - 6451015504, - 6451015264, - 6451015472, - 6450987968, - 6451051920, - 6450955232, - 6450955248, - 6451004128, - 6451046304, - 6451046352, - 6451004304, - 6451003744, - 6451003776, - 6450988160, - 6451042784, - 6451043008, - 6450986896, - 6450984656, - 6450987072, - 6450977840, - 6450986992, - 6450983360, - 6450983424, - 6450983728, - 6450983632, - 6450980656, - 6450980784, - 6450980720, - 6450989296, - 6450989184, - 6450980192, - 6450977712, - 6450977728, - 6450984448, - 6450931568, - 6451046224, - 6451028064, - 6451015280, - 6450993664, - 6452209584, - 6451019040, - 6451019072, - 6451018448, - 6451018960, - 6451019104 + "vtable_address": 6466291016, + "methods": [ + 6452110640, + 6450993408, + 6451051248, + 6451018256, + 6452192336, + 6451017072, + 6451016832, + 6451017040, + 6450989536, + 6451053488, + 6450956800, + 6450956816, + 6451005696, + 6451047872, + 6451047920, + 6451005872, + 6451005312, + 6451005344, + 6450989728, + 6451044352, + 6451044576, + 6450988464, + 6450986224, + 6450988640, + 6450979408, + 6450988560, + 6450984928, + 6450984992, + 6450985296, + 6450985200, + 6450982224, + 6450982352, + 6450982288, + 6450990864, + 6450990752, + 6450981760, + 6450979280, + 6450979296, + 6450986016, + 6450933136, + 6451047792, + 6451029632, + 6451016848, + 6450995232, + 6452211168, + 6451020608, + 6451020640, + 6451020016, + 6451020528, + 6451020672 ], "bases": [ { @@ -15810,7 +15810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468657544, + "complete_object_locator": 6468661640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15819,10 +15819,10 @@ }, { "type_name": "CCSCameraManager", - "vtable_address": 6466287312, + "vtable_address": 6466291424, "methods": [ - 6452103400, - 6450975488 + 6452104984, + 6450977056 ], "bases": [ { @@ -15884,7 +15884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468657696, + "complete_object_locator": 6468661792, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -15893,17 +15893,17 @@ }, { "type_name": "CCSClientGameStats", - "vtable_address": 6466286320, + "vtable_address": 6466290432, "methods": [ 6443748576, - 6452252352, - 6452277024, + 6452253936, + 6452278608, 6443748624, 6443748640, 6443748656, 6443748672, 6443748688, - 6452176112, + 6452177696, 6443748720, 6443748736, 6443748752, @@ -15922,7 +15922,7 @@ 6443748960, 6443748976, 6443748992, - 6452281232, + 6452282816, 6443749024, 6443749040, 6443749056, @@ -15951,13 +15951,13 @@ 6443749424, 6443749440, 6443749456, - 6452272464, + 6452274048, 6443749488, - 6452151872, - 6452109136, - 6452300672, - 6452219856, - 6452219184 + 6452153456, + 6452110720, + 6452302256, + 6452221440, + 6452220768 ], "bases": [ { @@ -16033,7 +16033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468657264, + "complete_object_locator": 6468661360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16042,10 +16042,10 @@ }, { "type_name": "CCSClientGameStats", - "vtable_address": 6466286832, + "vtable_address": 6466290944, "methods": [ - 6452103412, - 6452164240 + 6452104996, + 6452165824 ], "bases": [ { @@ -16121,7 +16121,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468657464, + "complete_object_locator": 6468661560, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -16130,10 +16130,10 @@ }, { "type_name": "CCSClientGameStats", - "vtable_address": 6466286856, + "vtable_address": 6466290968, "methods": [ - 6452279984, - 6452193904 + 6452281568, + 6452195488 ], "bases": [ { @@ -16209,7 +16209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468657504, + "complete_object_locator": 6468661600, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -16218,7 +16218,7 @@ }, { "type_name": "CCSDemoController", - "vtable_address": 6466272152, + "vtable_address": 6466276224, "methods": [ 6443748576, 6443748592, @@ -16240,14 +16240,14 @@ 6443748848, 6443748864, 6443748880, - 6452056944, - 6452056960, + 6452058528, + 6452058544, 6443748928, 6443748944, 6443748960, 6443748976, 6443748992, - 6452055792, + 6452057376, 6443749024, 6443749040, 6443749056, @@ -16276,11 +16276,11 @@ 6443749424, 6443749440, 6443749456, - 6452055760, + 6452057344, 6443749488, - 6452055744, - 6452061696, - 6452055728 + 6452057328, + 6452063280, + 6452057312 ], "bases": [ { @@ -16328,7 +16328,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468647952, + "complete_object_locator": 6468652048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16337,12 +16337,12 @@ }, { "type_name": "CCSDemoController", - "vtable_address": 6466272712, + "vtable_address": 6466276720, "methods": [ - 6452062048, - 6452062064, - 6452062080, - 6452057152 + 6452063632, + 6452063648, + 6452063664, + 6452058736 ], "bases": [ { @@ -16390,7 +16390,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648136, + "complete_object_locator": 6468652232, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -16399,13 +16399,13 @@ }, { "type_name": "CCSFatDemoRecorder", - "vtable_address": 6466048240, + "vtable_address": 6466052448, "methods": [ 6443748576, - 6451138064, + 6451139632, 6443748608, - 6451110640, - 6451110736, + 6451112208, + 6451112304, 6443748656, 6443748672, 6443748688, @@ -16457,11 +16457,11 @@ 6443749424, 6443749440, 6443749456, - 6451144752, + 6451146320, 6443749488, - 6451105024, - 6451087168, - 6451160384 + 6451106592, + 6451088736, + 6451161952 ], "bases": [ { @@ -16523,7 +16523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589472, + "complete_object_locator": 6468593568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16532,10 +16532,10 @@ }, { "type_name": "CCSFatDemoRecorder", - "vtable_address": 6466048736, + "vtable_address": 6466052944, "methods": [ - 6451086444, - 6451110576 + 6451088012, + 6451112144 ], "bases": [ { @@ -16597,7 +16597,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589624, + "complete_object_locator": 6468593720, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -16606,11 +16606,11 @@ }, { "type_name": "CCSGCClientSystem", - "vtable_address": 6466759976, + "vtable_address": 6466764072, "methods": [ - 6456178032, - 6456309744, - 6456398832, + 6456179808, + 6456311520, + 6456400608, 6443748624, 6443748640, 6443748656, @@ -16653,8 +16653,8 @@ 6443749248, 6443749264, 6443749280, - 6456087440, - 6456295440, + 6456089216, + 6456297216, 6443749328, 6443749344, 6443749360, @@ -16664,18 +16664,18 @@ 6443749424, 6443749440, 6443749456, - 6456397200, + 6456398976, 6443749488, - 6456057872, - 6455873552, - 6456420896, - 6456087984, - 6456479408, - 6456488240, - 6456309984, - 6456309936, - 6456294800, - 6456294768 + 6456059648, + 6455875312, + 6456422672, + 6456089760, + 6456481184, + 6456490016, + 6456311760, + 6456311712, + 6456296576, + 6456296544 ], "bases": [ { @@ -16751,7 +16751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780896, + "complete_object_locator": 6468784992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16760,12 +16760,12 @@ }, { "type_name": "CCSGCClientSystem", - "vtable_address": 6466760528, + "vtable_address": 6466764624, "methods": [ - 6455868168, - 6456520080, - 6456520112, - 6456521424 + 6455869928, + 6456521856, + 6456521888, + 6456523200 ], "bases": [ { @@ -16841,7 +16841,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781240, + "complete_object_locator": 6468785336, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -16850,13 +16850,13 @@ }, { "type_name": "CCSGCClientSystem", - "vtable_address": 6466760568, + "vtable_address": 6466764664, "methods": [ - 6456393232, - 6456394032, - 6456393440, - 6456392048, - 6456392784 + 6456395008, + 6456395808, + 6456395216, + 6456393824, + 6456394560 ], "bases": [ { @@ -16932,7 +16932,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781280, + "complete_object_locator": 6468785376, "offset": 1432, "constructor_displacement": 0, "class_attributes": 1 @@ -16941,35 +16941,35 @@ }, { "type_name": "CCSGOCompassPanel", - "vtable_address": 6466501696, + "vtable_address": 6466505824, "methods": [ 6443876544, - 6461535472, - 6453520304, - 6453525536, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522064, + 6453527296, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -16982,12 +16982,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -17002,29 +17002,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520000, - 6453487008, + 6461548896, + 6453521760, + 6453488768, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -17102,7 +17102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711784, + "complete_object_locator": 6468715880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17111,20 +17111,20 @@ }, { "type_name": "CCSGOCompassPanel", - "vtable_address": 6466502376, + "vtable_address": 6466506504, "methods": [ - 6453486416, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6451190896, - 6451190912, - 6453561088, - 6451205360, - 6453563744, - 6451228144 + 6453488176, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6451192464, + 6451192480, + 6453562848, + 6451206928, + 6453565504, + 6451229712 ], "bases": [ { @@ -17200,7 +17200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711944, + "complete_object_locator": 6468716040, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -17209,35 +17209,35 @@ }, { "type_name": "CCSGODelayLoadPanel", - "vtable_address": 6466387392, + "vtable_address": 6466391552, "methods": [ 6443876544, - 6461535472, - 6452690640, - 6452707648, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692256, + 6452709264, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -17250,12 +17250,12 @@ 6443913856, 6443821360, 6443848384, - 6452775344, - 6461505456, - 6461505088, - 6461526000, + 6452776960, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -17270,29 +17270,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690256, - 6452640320, + 6461548896, + 6452691872, + 6452641936, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -17342,7 +17342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468687600, + "complete_object_locator": 6468691696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -17351,11 +17351,11 @@ }, { "type_name": "CCSGODialogVariableHandlers", - "vtable_address": 6466388184, + "vtable_address": 6466392344, "methods": [ - 6452708352, + 6452709968, 6443748592, - 6452776800, + 6452778416, 6443748624, 6443748640, 6443748656, @@ -17409,11 +17409,11 @@ 6443749424, 6443749440, 6443749456, - 6452766128, + 6452767744, 6443749488, - 6452673920, - 6452640480, - 6452783920 + 6452675536, + 6452642096, + 6452785536 ], "bases": [ { @@ -17447,7 +17447,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468687840, + "complete_object_locator": 6468691936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -17456,20 +17456,20 @@ }, { "type_name": "CCSGOHudElement", - "vtable_address": 6466064904, + "vtable_address": 6466069112, "methods": [ - 6451173472, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6451190896, - 6451190912, - 6451224928, - 6451205360, - 6451227824, - 6451228144 + 6451175040, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6451192464, + 6451192480, + 6451226496, + 6451206928, + 6451229392, + 6451229712 ], "bases": [ { @@ -17503,7 +17503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468595432, + "complete_object_locator": 6468599528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -17512,37 +17512,37 @@ }, { "type_name": "CCSGOInput", - "vtable_address": 6466279456, - "methods": [ - 6452109200, - 6452209968, - 6452277952, - 6452218448, - 6452255648, - 6450950480, - 6451047616, - 6452164080, - 6451011648, - 6452151904, - 6452210624, - 6452254096, - 6452253216, - 6452254480, - 6452253840, - 6452280112, - 6450994880, - 6450942096, - 6452134304, - 6452217792, - 6451041472, - 6452243296, - 6452228720, - 6452228848, - 6451042512, - 6450979984, - 6451015248, - 6451015232, - 6451012544 + "vtable_address": 6466283568, + "methods": [ + 6452110784, + 6452211552, + 6452279536, + 6452220032, + 6452257232, + 6450952048, + 6451049184, + 6452165664, + 6451013216, + 6452153488, + 6452212208, + 6452255680, + 6452254800, + 6452256064, + 6452255424, + 6452281696, + 6450996448, + 6450943664, + 6452135888, + 6452219376, + 6451043040, + 6452244880, + 6452230304, + 6452230432, + 6451044080, + 6450981552, + 6451016816, + 6451016800, + 6451014112 ], "bases": [ { @@ -17590,7 +17590,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655320, + "complete_object_locator": 6468659416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17599,9 +17599,9 @@ }, { "type_name": "CCSGOInput", - "vtable_address": 6466279696, + "vtable_address": 6466283808, "methods": [ - 6452236960 + 6452238544 ], "bases": [ { @@ -17649,7 +17649,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655544, + "complete_object_locator": 6468659640, "offset": 2984, "constructor_displacement": 0, "class_attributes": 1 @@ -17658,9 +17658,9 @@ }, { "type_name": "CCSGOInput", - "vtable_address": 6466279712, + "vtable_address": 6466283824, "methods": [ - 6452195024 + 6452196608 ], "bases": [ { @@ -17708,7 +17708,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655584, + "complete_object_locator": 6468659680, "offset": 2992, "constructor_displacement": 0, "class_attributes": 1 @@ -17717,35 +17717,35 @@ }, { "type_name": "CCSGOMoneyPanel", - "vtable_address": 6466525504, + "vtable_address": 6466529632, "methods": [ 6443876544, - 6461535472, - 6453717760, - 6453730304, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719520, + 6453732064, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -17758,12 +17758,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -17778,29 +17778,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717392, - 6453655408, + 6461548896, + 6453719152, + 6453657168, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -17836,7 +17836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718040, + "complete_object_locator": 6468722136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -17845,35 +17845,35 @@ }, { "type_name": "CCSGOPerfTestsJsMultipleContexts", - "vtable_address": 6466416720, + "vtable_address": 6466420880, "methods": [ 6443876544, - 6461535472, - 6452855328, - 6452856816, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452856944, + 6452858432, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -17886,12 +17886,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -17906,29 +17906,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855040, - 6452806176, + 6461548896, + 6452856656, + 6452807792, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -17964,7 +17964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692040, + "complete_object_locator": 6468696136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -17973,35 +17973,35 @@ }, { "type_name": "CCSGOPerfTestsJsSingleContext", - "vtable_address": 6466417400, + "vtable_address": 6466421560, "methods": [ 6443876544, - 6461535472, - 6452855344, - 6452856848, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452856960, + 6452858464, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -18014,12 +18014,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -18034,29 +18034,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855056, - 6452806240, + 6461548896, + 6452856672, + 6452807856, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -18092,7 +18092,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692176, + "complete_object_locator": 6468696272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18101,35 +18101,35 @@ }, { "type_name": "CCSGOPerfTestsTypeSafety", - "vtable_address": 6466418080, + "vtable_address": 6466422240, "methods": [ 6443876544, - 6461535472, - 6452855360, - 6452856880, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452856976, + 6452858496, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -18142,12 +18142,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -18162,29 +18162,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855072, - 6452806304, + 6461548896, + 6452856688, + 6452807920, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -18220,7 +18220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692312, + "complete_object_locator": 6468696408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18229,15 +18229,15 @@ }, { "type_name": "CCSGOPlayerAnimGraphState", - "vtable_address": 6465691664, + "vtable_address": 6465695840, "methods": [ - 6448711840, - 6448692720 + 6448713408, + 6448694288 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468487920, + "complete_object_locator": 6468492016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18246,10 +18246,10 @@ }, { "type_name": "CCSGOPlayerVisPostProcessLayerRenderer", - "vtable_address": 6466889496, + "vtable_address": 6466893608, "methods": [ - 6456986464, - 6456700896, + 6456988656, + 6456702704, 6443773360 ], "bases": [ @@ -18270,7 +18270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468814592, + "complete_object_locator": 6468818688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18279,53 +18279,53 @@ }, { "type_name": "CCSGORetakeBombSiteAnimLabel", - "vtable_address": 6466533784, + "vtable_address": 6466537912, "methods": [ 6443876544, - 6461535472, - 6453717776, - 6453730336, - 6461589456, - 6461546688, - 6461559344, - 6461581616, - 6461583056, - 6461582832, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461586176, - 6461586656, - 6461536080, - 6461536928, - 6461538896, - 6461588016, + 6461537664, + 6453719536, + 6453732096, + 6461591648, + 6461548880, + 6461561536, + 6461583808, + 6461585248, + 6461585024, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461588368, + 6461588848, + 6461538272, + 6461539120, + 6461541088, + 6461590208, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461570288, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461572480, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461588832, + 6461591024, 6443845024, 6443848560, 6443848128, - 6453668512, + 6453670272, 6443913856, 6443821360, - 6461589440, - 6461614768, - 6461505456, - 6461505088, - 6461526000, + 6461591632, + 6461616960, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -18340,36 +18340,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717408, - 6453655472, - 6461574656, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461548896, + 6453719168, + 6453657232, + 6461576848, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461575456, - 6453738320, - 6461571264, + 6461577648, + 6453740080, + 6461573456, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461580032, + 6461582224, 6443798832, 6443858048, - 6461613424, - 6461570144, - 6453750880, - 6453668352, - 6453782496 + 6461615616, + 6461572336, + 6453752640, + 6453670112, + 6453784256 ], "bases": [ { @@ -18431,7 +18431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718512, + "complete_object_locator": 6468722608, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -18440,9 +18440,9 @@ }, { "type_name": "CCSGORetakeBombSiteAnimLabel", - "vtable_address": 6466534504, + "vtable_address": 6466538632, "methods": [ - 6461571840 + 6461574032 ], "bases": [ { @@ -18504,7 +18504,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718888, + "complete_object_locator": 6468722984, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -18513,35 +18513,35 @@ }, { "type_name": "CCSGORetakePanel", - "vtable_address": 6466533000, + "vtable_address": 6466537128, "methods": [ 6443876544, - 6461535472, - 6453717792, - 6453730368, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719552, + 6453732128, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -18554,12 +18554,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -18574,29 +18574,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717424, - 6453655536, + 6461548896, + 6453719184, + 6453657296, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -18674,7 +18674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718928, + "complete_object_locator": 6468723024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -18683,20 +18683,20 @@ }, { "type_name": "CCSGORetakePanel", - "vtable_address": 6466533680, + "vtable_address": 6466537808, "methods": [ - 6453654348, - 6451193744, - 6451190848, - 6451190864, - 6453766336, - 6451190880, - 6451190896, - 6451190912, - 6453771248, - 6451205360, - 6453790976, - 6451228144 + 6453656108, + 6451195312, + 6451192416, + 6451192432, + 6453768096, + 6451192448, + 6451192464, + 6451192480, + 6453773008, + 6451206928, + 6453792736, + 6451229712 ], "bases": [ { @@ -18772,7 +18772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719088, + "complete_object_locator": 6468723184, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -18781,35 +18781,35 @@ }, { "type_name": "CCSGOStatsProgressGraph", - "vtable_address": 6466574944, + "vtable_address": 6466579072, "methods": [ 6443876544, - 6461535472, - 6453996656, - 6454003248, - 6454030800, - 6461546688, - 6461559344, + 6461537664, + 6453998416, + 6454005008, + 6454032560, + 6461548880, + 6461561536, 6443845056, - 6454023200, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6454024960, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453976336, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453978096, 6443844992, 6443848064, 6443844976, @@ -18822,12 +18822,12 @@ 6443913856, 6443821360, 6443848384, - 6454047440, - 6461505456, - 6461505088, - 6461526000, + 6454049200, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -18837,39 +18837,39 @@ 6443847696, 6443847680, 6443848160, - 6454026960, - 6454030656, + 6454028720, + 6454032416, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453996512, - 6453974816, + 6461548896, + 6453998272, + 6453976576, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6454027136, - 6453983584, - 6454023184 + 6454028896, + 6453985344, + 6454024944 ], "bases": [ { @@ -18917,7 +18917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468729032, + "complete_object_locator": 6468733128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18926,7 +18926,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 6465338080, + "vtable_address": 6465342144, "methods": [ 6443748576, 6443748592, @@ -19039,7 +19039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431960, + "complete_object_locator": 6468436056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -19048,7 +19048,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 6465338600, + "vtable_address": 6465342664, "methods": [ 6445396528, 6445397584, @@ -19114,7 +19114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468432104, + "complete_object_locator": 6468436200, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -19123,10 +19123,10 @@ }, { "type_name": "CCSGO_3dPanelRenderer", - "vtable_address": 6466460608, + "vtable_address": 6466464736, "methods": [ - 6453194800, - 6453353776, + 6453196416, + 6453355536, 6443802816 ], "bases": [ @@ -19175,7 +19175,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701624, + "complete_object_locator": 6468705720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19184,35 +19184,35 @@ }, { "type_name": "CCSGO_AudioSettingsScreen", - "vtable_address": 6466372824, + "vtable_address": 6466376984, "methods": [ 6443876544, - 6461535472, - 6452690656, - 6452707680, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692272, + 6452709296, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -19225,12 +19225,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -19245,29 +19245,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690272, - 6452640544, + 6461548896, + 6452691888, + 6452642160, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -19303,7 +19303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468684880, + "complete_object_locator": 6468688976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19312,35 +19312,35 @@ }, { "type_name": "CCSGO_AvatarHealthBar", - "vtable_address": 6466529248, + "vtable_address": 6466533376, "methods": [ 6443876544, - 6461535472, - 6453717808, - 6453730400, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719568, + 6453732160, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6453748736, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6453750496, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453671152, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453672912, 6443844992, 6443848064, 6443844976, @@ -19353,12 +19353,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -19373,29 +19373,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717440, - 6453655600, + 6461548896, + 6453719200, + 6453657360, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -19431,7 +19431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718376, + "complete_object_locator": 6468722472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19440,40 +19440,40 @@ }, { "type_name": "CCSGO_AvatarImage", - "vtable_address": 6466373688, + "vtable_address": 6466377848, "methods": [ 6443876544, - 6461535472, - 6452690672, - 6452707712, - 6452740688, - 6461546688, - 6461559344, + 6461537664, + 6452692288, + 6452709328, + 6452742304, + 6461548880, + 6461561536, 6443845056, - 6452734928, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6452736544, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6452649888, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6452651504, 6443844992, 6443848064, 6443844976, 6443847568, - 6452737728, + 6452739344, 6443845024, 6443848560, 6443848128, @@ -19481,12 +19481,12 @@ 6443913856, 6443821360, 6443848384, - 6452775472, - 6461505456, - 6461505088, - 6461526000, + 6452777088, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -19496,37 +19496,37 @@ 6443847696, 6443847680, 6443848160, - 6452737392, - 6452737856, + 6452739008, + 6452739472, 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690288, - 6452640608, + 6461548896, + 6452691904, + 6452642224, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452774448 + 6452776064 ], "bases": [ { @@ -19560,7 +19560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468685016, + "complete_object_locator": 6468689112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19569,35 +19569,35 @@ }, { "type_name": "CCSGO_BackbufferImagePanel", - "vtable_address": 6466374656, + "vtable_address": 6466378816, "methods": [ 6443876544, - 6461535472, - 6452690688, - 6452707744, - 6461352784, - 6461546688, - 6461559344, + 6461537664, + 6452692304, + 6452709360, + 6461354976, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -19610,12 +19610,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -19630,32 +19630,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690304, - 6452640848, + 6461548896, + 6452691920, + 6452642464, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651168 + 6452652784 ], "bases": [ { @@ -19703,7 +19703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468685296, + "complete_object_locator": 6468689392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19712,10 +19712,10 @@ }, { "type_name": "CCSGO_BackbufferImageRenderer", - "vtable_address": 6466374624, + "vtable_address": 6466378784, "methods": [ - 6452640960, - 6452759344, + 6452642576, + 6452760960, 6443802816 ], "bases": [ @@ -19764,7 +19764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468685152, + "complete_object_locator": 6468689248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19773,35 +19773,35 @@ }, { "type_name": "CCSGO_BlurTarget", - "vtable_address": 6466375368, + "vtable_address": 6466379528, "methods": [ 6443876544, - 6461535472, - 6452690704, - 6452707776, - 6452740800, - 6461546688, - 6461559344, + 6461537664, + 6452692320, + 6452709392, + 6452742416, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -19814,12 +19814,12 @@ 6443913856, 6443821360, 6443848384, - 6452775664, - 6461505456, - 6461505088, - 6461526000, + 6452777280, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -19834,29 +19834,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690320, - 6452641088, + 6461548896, + 6452691936, + 6452642704, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -19892,7 +19892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468685440, + "complete_object_locator": 6468689536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19901,35 +19901,35 @@ }, { "type_name": "CCSGO_BuyMenu", - "vtable_address": 6466376888, + "vtable_address": 6466381048, "methods": [ 6443876544, - 6461535472, - 6452690720, - 6452707808, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692336, + 6452709424, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6452735200, - 6452735440, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6452736816, + 6452737056, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -19942,49 +19942,49 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, 6443801760, 6443801792, 6443801808, - 6452734912, - 6452734896, + 6452736528, + 6452736512, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690336, - 6452641328, + 6461548896, + 6452691952, + 6452642944, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -20062,7 +20062,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468685816, + "complete_object_locator": 6468689912, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -20071,9 +20071,9 @@ }, { "type_name": "CCSGO_BuyMenu", - "vtable_address": 6466377568, + "vtable_address": 6466381728, "methods": [ - 6452699056 + 6452700672 ], "bases": [ { @@ -20149,7 +20149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686096, + "complete_object_locator": 6468690192, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -20158,10 +20158,10 @@ }, { "type_name": "CCSGO_BuyMenu", - "vtable_address": 6466377584, + "vtable_address": 6466381744, "methods": [ - 6452640216, - 6452685840 + 6452641832, + 6452687456 ], "bases": [ { @@ -20237,7 +20237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686136, + "complete_object_locator": 6468690232, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -20246,35 +20246,35 @@ }, { "type_name": "CCSGO_Chat", - "vtable_address": 6466383176, + "vtable_address": 6466387336, "methods": [ 6443876544, - 6461535472, - 6452690736, - 6452707840, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692352, + 6452709456, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -20287,12 +20287,12 @@ 6443913856, 6443821360, 6443848384, - 6452775728, - 6461505456, - 6461505088, - 6461526000, + 6452777344, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -20307,29 +20307,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690352, - 6452641392, + 6461548896, + 6452691968, + 6452643008, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -20379,7 +20379,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468687080, + "complete_object_locator": 6468691176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -20388,9 +20388,9 @@ }, { "type_name": "CCSGO_Chat", - "vtable_address": 6466383856, + "vtable_address": 6466388016, "methods": [ - 6452727280 + 6452728896 ], "bases": [ { @@ -20438,7 +20438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468687264, + "complete_object_locator": 6468691360, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -20447,35 +20447,35 @@ }, { "type_name": "CCSGO_CountdownTimer", - "vtable_address": 6466440672, + "vtable_address": 6466444832, "methods": [ 6443876544, - 6461535472, - 6453006432, - 6453012944, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008048, + 6453014560, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6452972416, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6452974032, 6443844992, 6443848064, 6443844976, @@ -20488,12 +20488,12 @@ 6443913856, 6443821360, 6443848384, - 6453061376, - 6461505456, - 6461505088, - 6461526000, + 6453062992, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -20508,29 +20508,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006128, - 6452956224, + 6461548896, + 6453007744, + 6452957840, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -20566,7 +20566,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697760, + "complete_object_locator": 6468701856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20575,35 +20575,35 @@ }, { "type_name": "CCSGO_Crosshair", - "vtable_address": 6466386192, + "vtable_address": 6466390352, "methods": [ 6443876544, - 6461535472, - 6452690752, - 6452707872, - 6452741600, - 6461546688, - 6461559344, + 6461537664, + 6452692368, + 6452709488, + 6452743216, + 6461548880, + 6461561536, 6443845056, - 6452735152, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6452736768, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6452650480, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6452652096, 6443844992, 6443848064, 6443844976, @@ -20616,12 +20616,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -20636,29 +20636,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690368, - 6452641520, + 6461548896, + 6452691984, + 6452643136, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -20694,7 +20694,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468687304, + "complete_object_locator": 6468691400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20703,35 +20703,35 @@ }, { "type_name": "CCSGO_EndOfMatch", - "vtable_address": 6466377608, + "vtable_address": 6466381768, "methods": [ 6443876544, - 6461535472, - 6452690768, - 6452707904, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692384, + 6452709520, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -20744,12 +20744,12 @@ 6443913856, 6443821360, 6443848384, - 6452775808, - 6461505456, - 6461505088, - 6461526000, + 6452777424, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -20764,29 +20764,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690384, - 6452641584, + 6461548896, + 6452692000, + 6452643200, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -20864,7 +20864,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686176, + "complete_object_locator": 6468690272, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -20873,10 +20873,10 @@ }, { "type_name": "CCSGO_EndOfMatch", - "vtable_address": 6466378288, + "vtable_address": 6466382448, "methods": [ - 6452640228, - 6452685952 + 6452641844, + 6452687568 ], "bases": [ { @@ -20952,7 +20952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686456, + "complete_object_locator": 6468690552, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -20961,9 +20961,9 @@ }, { "type_name": "CCSGO_EndOfMatch", - "vtable_address": 6466378312, + "vtable_address": 6466382472, "methods": [ - 6452700000 + 6452701616 ], "bases": [ { @@ -21039,7 +21039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686496, + "complete_object_locator": 6468690592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -21048,35 +21048,35 @@ }, { "type_name": "CCSGO_EndOfMatchCharactersPanel", - "vtable_address": 6466379688, + "vtable_address": 6466383848, "methods": [ 6443876544, - 6461535472, - 6452690784, - 6452707936, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692400, + 6452709552, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -21089,12 +21089,12 @@ 6443913856, 6443821360, 6443848384, - 6452776112, - 6461505456, - 6461505088, - 6461526000, + 6452777728, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -21109,29 +21109,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690400, - 6452641904, + 6461548896, + 6452692016, + 6452643520, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -21167,7 +21167,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686808, + "complete_object_locator": 6468690904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21176,35 +21176,35 @@ }, { "type_name": "CCSGO_EndOfMatchSkillgroupPanel", - "vtable_address": 6466379008, + "vtable_address": 6466383168, "methods": [ 6443876544, - 6461535472, - 6452690800, - 6452707968, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692416, + 6452709584, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -21217,12 +21217,12 @@ 6443913856, 6443821360, 6443848384, - 6452776128, - 6461505456, - 6461505088, - 6461526000, + 6452777744, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -21237,29 +21237,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690416, - 6452641968, + 6461548896, + 6452692032, + 6452643584, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -21295,7 +21295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686672, + "complete_object_locator": 6468690768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21304,35 +21304,35 @@ }, { "type_name": "CCSGO_EndOfMatchVotingPanel", - "vtable_address": 6466380368, + "vtable_address": 6466384528, "methods": [ 6443876544, - 6461535472, - 6452690816, - 6452708000, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692432, + 6452709616, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -21345,12 +21345,12 @@ 6443913856, 6443821360, 6443848384, - 6452776256, - 6461505456, - 6461505088, - 6461526000, + 6452777872, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -21365,29 +21365,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690432, - 6452642096, + 6461548896, + 6452692048, + 6452643712, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -21423,7 +21423,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686944, + "complete_object_locator": 6468691040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21432,35 +21432,35 @@ }, { "type_name": "CCSGO_EndOfMatchXpPanel", - "vtable_address": 6466378328, + "vtable_address": 6466382488, "methods": [ 6443876544, - 6461535472, - 6452690832, - 6452708032, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692448, + 6452709648, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -21473,12 +21473,12 @@ 6443913856, 6443821360, 6443848384, - 6452776336, - 6461505456, - 6461505088, - 6461526000, + 6452777952, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -21493,29 +21493,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690448, - 6452642224, + 6461548896, + 6452692064, + 6452643840, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -21551,7 +21551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468686536, + "complete_object_locator": 6468690632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21560,35 +21560,35 @@ }, { "type_name": "CCSGO_FrameTimeSlider", - "vtable_address": 6466566784, + "vtable_address": 6466570912, "methods": [ 6443876544, - 6461535472, - 6453897744, - 6453900992, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899504, + 6453902752, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6453886848, - 6461503872, - 6453887008, + 6461537648, + 6461547232, + 6453888608, + 6461506064, + 6453888768, 6443844992, 6443848064, 6443844976, @@ -21601,12 +21601,12 @@ 6443913856, 6443821360, 6443848384, - 6453914976, - 6461505456, - 6461505088, - 6461526000, + 6453916736, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -21621,38 +21621,38 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897488, - 6453884960, + 6461548896, + 6453899248, + 6453886720, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453906864, - 6453896112, - 6453896544, - 6453915744, - 6453899232, - 6453914320, - 6453897200 + 6453908624, + 6453897872, + 6453898304, + 6453917504, + 6453900992, + 6453916080, + 6453898960 ], "bases": [ { @@ -21728,7 +21728,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726656, + "complete_object_locator": 6468730752, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -21737,9 +21737,9 @@ }, { "type_name": "CCSGO_FrameTimeSlider", - "vtable_address": 6466567520, + "vtable_address": 6466571648, "methods": [ - 6453897168 + 6453898928 ], "bases": [ { @@ -21815,7 +21815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726816, + "complete_object_locator": 6468730912, "offset": 128, "constructor_displacement": 0, "class_attributes": 1 @@ -21824,53 +21824,53 @@ }, { "type_name": "CCSGO_GameTimeLabel", - "vtable_address": 6466616696, + "vtable_address": 6466620792, "methods": [ 6443876544, - 6461535472, - 6454655984, - 6454744432, - 6461589456, - 6461546688, - 6461559344, - 6461581616, - 6461583056, - 6461582832, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461586176, - 6461586656, - 6461536080, - 6461536928, - 6461538896, - 6461588016, + 6461537664, + 6454657744, + 6454746192, + 6461591648, + 6461548880, + 6461561536, + 6461583808, + 6461585248, + 6461585024, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461588368, + 6461588848, + 6461538272, + 6461539120, + 6461541088, + 6461590208, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461570288, - 6454491072, + 6461537648, + 6461547232, + 6461505920, + 6461572480, + 6454492832, 6443844992, 6443848064, 6443844976, 6443847568, - 6461588832, + 6461591024, 6443845024, 6443848560, 6443848128, - 6453668512, + 6453670272, 6443913856, 6443821360, - 6461589440, - 6454903552, - 6461505456, - 6461505088, - 6461526000, + 6461591632, + 6454905312, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -21885,36 +21885,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6454655968, - 6454476816, - 6461574656, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461548896, + 6454657728, + 6454478576, + 6461576848, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461575456, - 6453738320, - 6461571264, + 6461577648, + 6453740080, + 6461573456, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461580032, + 6461582224, 6443798832, 6443858048, - 6461613424, - 6461570144, - 6453750880, - 6453668352, - 6453782496 + 6461615616, + 6461572336, + 6453752640, + 6453670112, + 6453784256 ], "bases": [ { @@ -21976,7 +21976,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468737160, + "complete_object_locator": 6468741256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -21985,9 +21985,9 @@ }, { "type_name": "CCSGO_GameTimeLabel", - "vtable_address": 6466617416, + "vtable_address": 6466621512, "methods": [ - 6461571840 + 6461574032 ], "bases": [ { @@ -22049,7 +22049,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468737312, + "complete_object_locator": 6468741408, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -22058,35 +22058,35 @@ }, { "type_name": "CCSGO_GlobalPopups", - "vtable_address": 6466393368, + "vtable_address": 6466397528, "methods": [ 6443876544, - 6461535472, - 6452690848, - 6452708064, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692464, + 6452709680, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -22099,12 +22099,12 @@ 6443913856, 6443821360, 6443914784, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -22119,29 +22119,29 @@ 6443923408, 6443817680, 6443848032, - 6461546704, - 6452690464, - 6452642288, + 6461548896, + 6452692080, + 6452643904, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443922912 @@ -22220,7 +22220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468687976, + "complete_object_locator": 6468692072, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -22229,9 +22229,9 @@ }, { "type_name": "CCSGO_GlobalPopups", - "vtable_address": 6466394056, + "vtable_address": 6466398216, "methods": [ - 6452640240, + 6452641856, 6443908704 ], "bases": [ @@ -22308,7 +22308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468688136, + "complete_object_locator": 6468692232, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -22317,35 +22317,35 @@ }, { "type_name": "CCSGO_Hud", - "vtable_address": 6466490488, + "vtable_address": 6466494616, "methods": [ 6443876544, - 6461535472, - 6453520320, - 6453525568, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522080, + 6453527328, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -22358,12 +22358,12 @@ 6443913856, 6443821360, 6443914784, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -22378,29 +22378,29 @@ 6443923408, 6443817680, 6443848032, - 6461546704, - 6453520016, - 6453487072, + 6461548896, + 6453521776, + 6453488832, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443922912 @@ -22493,7 +22493,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710536, + "complete_object_locator": 6468714632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -22502,9 +22502,9 @@ }, { "type_name": "CCSGO_Hud", - "vtable_address": 6466491176, + "vtable_address": 6466495304, "methods": [ - 6453486428, + 6453488188, 6443908704 ], "bases": [ @@ -22595,7 +22595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710704, + "complete_object_locator": 6468714800, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -22604,12 +22604,12 @@ }, { "type_name": "CCSGO_Hud", - "vtable_address": 6466491200, + "vtable_address": 6466495328, "methods": [ - 6452062048, - 6453535344, - 6452062080, - 6453534016 + 6452063632, + 6453537104, + 6452063664, + 6453535776 ], "bases": [ { @@ -22699,7 +22699,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710744, + "complete_object_locator": 6468714840, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -22708,35 +22708,35 @@ }, { "type_name": "CCSGO_HudAutoDisconnect", - "vtable_address": 6466499424, + "vtable_address": 6466503552, "methods": [ 6443876544, - 6461535472, - 6453520336, - 6453525600, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522096, + 6453527360, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -22749,12 +22749,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -22769,29 +22769,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520032, - 6453487136, + 6461548896, + 6453521792, + 6453488896, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -22869,7 +22869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711304, + "complete_object_locator": 6468715400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -22878,20 +22878,20 @@ }, { "type_name": "CCSGO_HudAutoDisconnect", - "vtable_address": 6466500104, + "vtable_address": 6466504232, "methods": [ - 6453486440, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6453500864, - 6451190896, - 6451190912, - 6453561152, - 6451205360, - 6453563888, - 6451228144 + 6453488200, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6453502624, + 6451192464, + 6451192480, + 6453562912, + 6451206928, + 6453565648, + 6451229712 ], "bases": [ { @@ -22967,7 +22967,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711464, + "complete_object_locator": 6468715560, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -22976,35 +22976,35 @@ }, { "type_name": "CCSGO_HudBlurTarget", - "vtable_address": 6466491240, + "vtable_address": 6466495368, "methods": [ 6443876544, - 6461535472, - 6453520352, - 6453525632, - 6452740800, - 6461546688, - 6461559344, + 6461537664, + 6453522112, + 6453527392, + 6452742416, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -23017,12 +23017,12 @@ 6443913856, 6443821360, 6443848384, - 6452775664, - 6461505456, - 6461505088, - 6461526000, + 6452777280, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -23037,29 +23037,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520048, - 6453487200, + 6461548896, + 6453521808, + 6453488960, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -23151,7 +23151,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468709840, + "complete_object_locator": 6468713936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -23160,20 +23160,20 @@ }, { "type_name": "CCSGO_HudBlurTarget", - "vtable_address": 6466491920, - "methods": [ - 6453486452, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6453503280, - 6451190912, - 6451224928, - 6451205360, - 6451227824, - 6451228144 + "vtable_address": 6466496048, + "methods": [ + 6453488212, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6453505040, + 6451192480, + 6451226496, + 6451206928, + 6451229392, + 6451229712 ], "bases": [ { @@ -23263,7 +23263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710128, + "complete_object_locator": 6468714224, "offset": 88, "constructor_displacement": 0, "class_attributes": 1 @@ -23272,35 +23272,35 @@ }, { "type_name": "CCSGO_HudChat", - "vtable_address": 6466492808, + "vtable_address": 6466496936, "methods": [ 6443876544, - 6461535472, - 6453520368, - 6453525664, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522128, + 6453527424, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6453535216, - 6453534448, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6453536048, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6453536976, + 6453536208, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6453537808, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -23313,12 +23313,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -23333,29 +23333,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520064, - 6453487296, + 6461548896, + 6453521824, + 6453489056, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -23447,7 +23447,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710168, + "complete_object_locator": 6468714264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -23456,20 +23456,20 @@ }, { "type_name": "CCSGO_HudChat", - "vtable_address": 6466493488, + "vtable_address": 6466497616, "methods": [ - 6453486464, - 6451193744, - 6453499296, - 6453500176, - 6451219152, - 6451190880, - 6451190896, - 6451190912, - 6453561216, - 6451205360, - 6453564272, - 6453565328 + 6453488224, + 6451195312, + 6453501056, + 6453501936, + 6451220720, + 6451192448, + 6451192464, + 6451192480, + 6453562976, + 6451206928, + 6453566032, + 6453567088 ], "bases": [ { @@ -23559,7 +23559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710456, + "complete_object_locator": 6468714552, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -23568,12 +23568,12 @@ }, { "type_name": "CCSGO_HudChat", - "vtable_address": 6466493592, + "vtable_address": 6466497720, "methods": [ - 6453492096, - 6453492064, - 6453569664, - 6453490624 + 6453493856, + 6453493824, + 6453571424, + 6453492384 ], "bases": [ { @@ -23663,7 +23663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710496, + "complete_object_locator": 6468714592, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -23672,35 +23672,35 @@ }, { "type_name": "CCSGO_HudDMBonusPanel", - "vtable_address": 6466509536, + "vtable_address": 6466513664, "methods": [ 6443876544, - 6461535472, - 6453520384, - 6453525696, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522144, + 6453527456, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -23713,12 +23713,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -23733,29 +23733,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520080, - 6453487472, + 6461548896, + 6453521840, + 6453489232, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -23833,7 +23833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712856, + "complete_object_locator": 6468716952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -23842,20 +23842,20 @@ }, { "type_name": "CCSGO_HudDMBonusPanel", - "vtable_address": 6466510216, + "vtable_address": 6466514344, "methods": [ - 6453486476, - 6453512784, - 6453499312, - 6451190864, - 6453559024, - 6451190880, - 6451190896, - 6453503488, - 6451224928, - 6451205360, - 6451227824, - 6451228144 + 6453488236, + 6453514544, + 6453501072, + 6451192432, + 6453560784, + 6451192448, + 6451192464, + 6453505248, + 6451226496, + 6451206928, + 6451229392, + 6451229712 ], "bases": [ { @@ -23931,7 +23931,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713016, + "complete_object_locator": 6468717112, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -23940,35 +23940,35 @@ }, { "type_name": "CCSGO_HudDamageIndicator", - "vtable_address": 6466502608, + "vtable_address": 6466506736, "methods": [ 6443876544, - 6461535472, - 6453520400, - 6453525728, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522160, + 6453527488, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -23981,12 +23981,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -24001,29 +24001,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520096, - 6453487568, + 6461548896, + 6453521856, + 6453489328, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -24101,7 +24101,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711984, + "complete_object_locator": 6468716080, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -24110,20 +24110,20 @@ }, { "type_name": "CCSGO_HudDamageIndicator", - "vtable_address": 6466503288, + "vtable_address": 6466507416, "methods": [ - 6453486488, - 6451193744, - 6453499328, - 6453500208, - 6451219152, - 6453501520, - 6451190896, - 6451190912, - 6453561280, - 6451205360, - 6453564400, - 6451228144 + 6453488248, + 6451195312, + 6453501088, + 6453501968, + 6451220720, + 6453503280, + 6451192464, + 6451192480, + 6453563040, + 6451206928, + 6453566160, + 6451229712 ], "bases": [ { @@ -24199,7 +24199,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712144, + "complete_object_locator": 6468716240, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -24208,35 +24208,35 @@ }, { "type_name": "CCSGO_HudDeathNotice", - "vtable_address": 6466504672, + "vtable_address": 6466508800, "methods": [ 6443876544, - 6461535472, - 6453520416, - 6453525760, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522176, + 6453527520, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -24249,12 +24249,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -24269,29 +24269,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520112, - 6453487664, + 6461548896, + 6453521872, + 6453489424, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -24369,7 +24369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712520, + "complete_object_locator": 6468716616, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -24378,20 +24378,20 @@ }, { "type_name": "CCSGO_HudDeathNotice", - "vtable_address": 6466505352, + "vtable_address": 6466509480, "methods": [ - 6453486500, - 6453513520, - 6453499344, - 6453500224, - 6451219152, - 6453502064, - 6451190896, - 6451190912, - 6453561344, - 6451205360, - 6453564592, - 6451228144 + 6453488260, + 6453515280, + 6453501104, + 6453501984, + 6451220720, + 6453503824, + 6451192464, + 6451192480, + 6453563104, + 6451206928, + 6453566352, + 6451229712 ], "bases": [ { @@ -24467,7 +24467,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712680, + "complete_object_locator": 6468716776, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -24476,35 +24476,35 @@ }, { "type_name": "CCSGO_HudDeathPanel", - "vtable_address": 6466492024, + "vtable_address": 6466496152, "methods": [ 6443876544, - 6461535472, - 6453520432, - 6453525792, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522192, + 6453527552, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -24517,12 +24517,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -24537,29 +24537,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520128, - 6453487792, + 6461548896, + 6453521888, + 6453489552, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -24637,7 +24637,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710784, + "complete_object_locator": 6468714880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -24646,20 +24646,20 @@ }, { "type_name": "CCSGO_HudDeathPanel", - "vtable_address": 6466492704, + "vtable_address": 6466496832, "methods": [ - 6453486512, - 6453514208, - 6453499584, - 6453500384, - 6451219152, - 6453502944, - 6451190896, - 6451190912, - 6451224928, - 6451205360, - 6453564752, - 6451228144 + 6453488272, + 6453515968, + 6453501344, + 6453502144, + 6451220720, + 6453504704, + 6451192464, + 6451192480, + 6451226496, + 6451206928, + 6453566512, + 6451229712 ], "bases": [ { @@ -24735,7 +24735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710944, + "complete_object_locator": 6468715040, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -24744,35 +24744,35 @@ }, { "type_name": "CCSGO_HudDemoController", - "vtable_address": 6466498088, + "vtable_address": 6466502216, "methods": [ 6443876544, - 6461535472, - 6453520448, - 6453525824, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522208, + 6453527584, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -24785,12 +24785,12 @@ 6443913856, 6443821360, 6443848384, - 6453563248, - 6461505456, - 6461505088, - 6461526000, + 6453565008, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -24805,29 +24805,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520144, - 6453487888, + 6461548896, + 6453521904, + 6453489648, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -24877,7 +24877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711120, + "complete_object_locator": 6468715216, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -24886,9 +24886,9 @@ }, { "type_name": "CCSGO_HudDemoController", - "vtable_address": 6466498768, + "vtable_address": 6466502896, "methods": [ - 6453523504 + 6453525264 ], "bases": [ { @@ -24936,7 +24936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711264, + "complete_object_locator": 6468715360, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -24945,35 +24945,35 @@ }, { "type_name": "CCSGO_HudDemoPlayback", - "vtable_address": 6466508560, + "vtable_address": 6466512688, "methods": [ 6443876544, - 6461535472, - 6453520464, - 6453525856, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522224, + 6453527616, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453535744, - 6453536080, - 6461536080, - 6461536928, - 6461538896, - 6453536096, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453537504, + 6453537840, + 6461538272, + 6461539120, + 6461541088, + 6453537856, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -24986,12 +24986,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -25006,29 +25006,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520160, - 6453488032, + 6461548896, + 6453521920, + 6453489792, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -25064,7 +25064,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712720, + "complete_object_locator": 6468716816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25073,35 +25073,35 @@ }, { "type_name": "CCSGO_HudGameIcons", - "vtable_address": 6466511640, + "vtable_address": 6466515768, "methods": [ 6443876544, - 6461535472, - 6453520480, - 6453525888, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522240, + 6453527648, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -25114,12 +25114,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -25127,36 +25127,36 @@ 6443801792, 6443801808, 6443847696, - 6453535184, + 6453536944, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520176, - 6453488144, + 6461548896, + 6453521936, + 6453489904, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -25234,7 +25234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713192, + "complete_object_locator": 6468717288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -25243,20 +25243,20 @@ }, { "type_name": "CCSGO_HudGameIcons", - "vtable_address": 6466512320, + "vtable_address": 6466516448, "methods": [ - 6453486524, - 6453514928, - 6453500128, - 6453500816, - 6451219152, - 6453502960, - 6451190896, - 6451190912, - 6453561424, - 6451205360, - 6453564880, - 6451228144 + 6453488284, + 6453516688, + 6453501888, + 6453502576, + 6451220720, + 6453504720, + 6451192464, + 6451192480, + 6453563184, + 6451206928, + 6453566640, + 6451229712 ], "bases": [ { @@ -25332,7 +25332,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713352, + "complete_object_locator": 6468717448, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -25341,35 +25341,35 @@ }, { "type_name": "CCSGO_HudHealthAmmoCenter", - "vtable_address": 6466512760, + "vtable_address": 6466516888, "methods": [ 6443876544, - 6461535472, - 6453520496, - 6453525920, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522256, + 6453527680, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -25382,12 +25382,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -25395,36 +25395,36 @@ 6443801792, 6443801808, 6443847696, - 6453535200, + 6453536960, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520192, - 6453488368, + 6461548896, + 6453521952, + 6453490128, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -25502,7 +25502,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713392, + "complete_object_locator": 6468717488, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -25511,20 +25511,20 @@ }, { "type_name": "CCSGO_HudHealthAmmoCenter", - "vtable_address": 6466513440, - "methods": [ - 6453486536, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6453503456, - 6451190912, - 6453561488, - 6451205360, - 6453565056, - 6451228144 + "vtable_address": 6466517568, + "methods": [ + 6453488296, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6453505216, + 6451192480, + 6453563248, + 6451206928, + 6453566816, + 6451229712 ], "bases": [ { @@ -25600,7 +25600,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713552, + "complete_object_locator": 6468717648, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -25609,35 +25609,35 @@ }, { "type_name": "CCSGO_HudHealthBars", - "vtable_address": 6466503392, + "vtable_address": 6466507520, "methods": [ 6443876544, - 6461535472, - 6453520512, - 6453525952, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522272, + 6453527712, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -25650,12 +25650,12 @@ 6443913856, 6443821360, 6443848384, - 6453563680, - 6461505456, - 6461505088, - 6461526000, + 6453565440, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -25670,29 +25670,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520208, - 6453488464, + 6461548896, + 6453521968, + 6453490224, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -25770,7 +25770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712184, + "complete_object_locator": 6468716280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -25779,20 +25779,20 @@ }, { "type_name": "CCSGO_HudHealthBars", - "vtable_address": 6466504072, + "vtable_address": 6466508200, "methods": [ - 6453486548, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6451190896, - 6451190912, - 6451224928, - 6451205360, - 6451227824, - 6451228144 + 6453488308, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6451192464, + 6451192480, + 6451226496, + 6451206928, + 6451229392, + 6451229712 ], "bases": [ { @@ -25868,7 +25868,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712344, + "complete_object_locator": 6468716440, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -25877,35 +25877,35 @@ }, { "type_name": "CCSGO_HudHintText", - "vtable_address": 6466510320, + "vtable_address": 6466514448, "methods": [ 6443876544, - 6461535472, - 6453520528, - 6453525984, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522288, + 6453527744, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453490656, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453492416, 6443844992, 6443848064, 6443844976, @@ -25918,12 +25918,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -25938,29 +25938,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520224, - 6453488688, + 6461548896, + 6453521984, + 6453490448, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -25996,7 +25996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713056, + "complete_object_locator": 6468717152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26005,35 +26005,35 @@ }, { "type_name": "CCSGO_HudInstructor", - "vtable_address": 6466514912, + "vtable_address": 6466519040, "methods": [ 6443876544, - 6461535472, - 6453520544, - 6453526016, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453522304, + 6453527776, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -26046,12 +26046,12 @@ 6443913856, 6443821360, 6443848384, - 6453563696, - 6461505456, - 6461505088, - 6461526000, + 6453565456, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -26066,29 +26066,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520240, - 6453488784, + 6461548896, + 6453522000, + 6453490544, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -26124,7 +26124,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713864, + "complete_object_locator": 6468717960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26133,35 +26133,35 @@ }, { "type_name": "CCSGO_HudMatchAlerts", - "vtable_address": 6466523656, + "vtable_address": 6466527784, "methods": [ 6443876544, - 6461535472, - 6453717824, - 6453730432, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719584, + 6453732192, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -26174,12 +26174,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -26194,29 +26194,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717456, - 6453655664, + 6461548896, + 6453719216, + 6453657424, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -26294,7 +26294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717840, + "complete_object_locator": 6468721936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -26303,20 +26303,20 @@ }, { "type_name": "CCSGO_HudMatchAlerts", - "vtable_address": 6466524336, + "vtable_address": 6466528464, "methods": [ - 6453654360, - 6453700992, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6453691584, - 6451190912, - 6453771312, - 6451205360, - 6453791120, - 6451228144 + 6453656120, + 6453702752, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6453693344, + 6451192480, + 6453773072, + 6451206928, + 6453792880, + 6451229712 ], "bases": [ { @@ -26392,7 +26392,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718000, + "complete_object_locator": 6468722096, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -26401,35 +26401,35 @@ }, { "type_name": "CCSGO_HudNotice", - "vtable_address": 6466542224, + "vtable_address": 6466546352, "methods": [ 6443876544, - 6461535472, - 6453717840, - 6453730464, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719600, + 6453732224, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -26442,12 +26442,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -26462,29 +26462,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717472, - 6453655776, + 6461548896, + 6453719232, + 6453657536, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -26520,7 +26520,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719664, + "complete_object_locator": 6468723760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26529,35 +26529,35 @@ }, { "type_name": "CCSGO_HudProgressBar", - "vtable_address": 6466526440, + "vtable_address": 6466530568, "methods": [ 6443876544, - 6461535472, - 6453717856, - 6453730496, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719616, + 6453732256, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -26570,12 +26570,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -26583,36 +26583,36 @@ 6443801792, 6443801808, 6443847696, - 6453748624, + 6453750384, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717488, - 6453655840, + 6461548896, + 6453719248, + 6453657600, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -26690,7 +26690,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718176, + "complete_object_locator": 6468722272, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -26699,20 +26699,20 @@ }, { "type_name": "CCSGO_HudProgressBar", - "vtable_address": 6466527120, + "vtable_address": 6466531248, "methods": [ - 6453654372, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6453692960, - 6451190912, - 6451224928, - 6451205360, - 6453791248, - 6451228144 + 6453656132, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6453694720, + 6451192480, + 6451226496, + 6451206928, + 6453793008, + 6451229712 ], "bases": [ { @@ -26788,7 +26788,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468718336, + "complete_object_locator": 6468722432, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -26797,35 +26797,35 @@ }, { "type_name": "CCSGO_HudRadar", - "vtable_address": 6466528456, + "vtable_address": 6466532584, "methods": [ 6443876544, - 6461535472, - 6453717872, - 6453730528, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719632, + 6453732288, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -26838,12 +26838,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -26858,32 +26858,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717504, - 6453656064, + 6461548896, + 6453719264, + 6453657824, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453739408 + 6453741168 ], "bases": [ { @@ -26959,7 +26959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717192, + "complete_object_locator": 6468721288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -26968,20 +26968,20 @@ }, { "type_name": "CCSGO_HudRadar", - "vtable_address": 6466529144, + "vtable_address": 6466533272, "methods": [ - 6453654384, - 6453701824, - 6453686592, - 6453689712, - 6453766416, - 6451190880, - 6451190896, - 6453696128, - 6453771376, - 6451205360, - 6453791376, - 6451228144 + 6453656144, + 6453703584, + 6453688352, + 6453691472, + 6453768176, + 6451192448, + 6451192464, + 6453697888, + 6453773136, + 6451206928, + 6453793136, + 6451229712 ], "bases": [ { @@ -27057,7 +27057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717352, + "complete_object_locator": 6468721448, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -27066,35 +27066,35 @@ }, { "type_name": "CCSGO_HudRadio", - "vtable_address": 6466531896, + "vtable_address": 6466536024, "methods": [ 6443876544, - 6461535472, - 6453717888, - 6453730560, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719648, + 6453732320, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -27107,12 +27107,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -27127,29 +27127,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717520, - 6453656128, + 6461548896, + 6453719280, + 6453657888, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -27241,7 +27241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717392, + "complete_object_locator": 6468721488, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -27250,20 +27250,20 @@ }, { "type_name": "CCSGO_HudRadio", - "vtable_address": 6466532576, + "vtable_address": 6466536704, "methods": [ - 6453654396, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6453690560, - 6451190896, - 6451190912, - 6453771440, - 6451205360, - 6453791824, - 6451228144 + 6453656156, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6453692320, + 6451192464, + 6451192480, + 6453773200, + 6451206928, + 6453793584, + 6451229712 ], "bases": [ { @@ -27353,7 +27353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717560, + "complete_object_locator": 6468721656, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -27362,9 +27362,9 @@ }, { "type_name": "CCSGO_HudRadio", - "vtable_address": 6466532680, + "vtable_address": 6466536808, "methods": [ - 6453725952 + 6453727712 ], "bases": [ { @@ -27454,7 +27454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717600, + "complete_object_locator": 6468721696, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -27463,35 +27463,35 @@ }, { "type_name": "CCSGO_HudReticle", - "vtable_address": 6466534664, + "vtable_address": 6466538792, "methods": [ 6443876544, - 6461535472, - 6453717904, - 6453730592, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719664, + 6453732352, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -27504,12 +27504,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -27524,29 +27524,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717536, - 6453656320, + 6461548896, + 6453719296, + 6453658080, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -27624,7 +27624,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719128, + "complete_object_locator": 6468723224, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -27633,20 +27633,20 @@ }, { "type_name": "CCSGO_HudReticle", - "vtable_address": 6466535344, + "vtable_address": 6466539472, "methods": [ - 6453654408, - 6453705936, - 6453686688, - 6453689840, - 6451219152, - 6451190880, - 6453694960, - 6451190912, - 6453771616, - 6451205360, - 6453791904, - 6451228144 + 6453656168, + 6453707696, + 6453688448, + 6453691600, + 6451220720, + 6451192448, + 6453696720, + 6451192480, + 6453773376, + 6451206928, + 6453793664, + 6451229712 ], "bases": [ { @@ -27722,7 +27722,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719288, + "complete_object_locator": 6468723384, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -27731,35 +27731,35 @@ }, { "type_name": "CCSGO_HudRosettaSelector", - "vtable_address": 6466537864, + "vtable_address": 6466541992, "methods": [ 6443876544, - 6461535472, - 6453717920, - 6453730624, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719680, + 6453732384, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -27772,12 +27772,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -27792,29 +27792,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717552, - 6453656384, + 6461548896, + 6453719312, + 6453658144, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -27892,7 +27892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719328, + "complete_object_locator": 6468723424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -27901,20 +27901,20 @@ }, { "type_name": "CCSGO_HudRosettaSelector", - "vtable_address": 6466538544, + "vtable_address": 6466542672, "methods": [ - 6453654420, - 6451193744, - 6453686816, - 6453689936, - 6453766432, - 6453690880, - 6451190896, - 6451190912, - 6453771776, - 6451205360, - 6453792080, - 6451228144 + 6453656180, + 6451195312, + 6453688576, + 6453691696, + 6453768192, + 6453692640, + 6451192464, + 6451192480, + 6453773536, + 6451206928, + 6453793840, + 6451229712 ], "bases": [ { @@ -27990,7 +27990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719488, + "complete_object_locator": 6468723584, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -27999,35 +27999,35 @@ }, { "type_name": "CCSGO_HudTeamCounter", - "vtable_address": 6466529928, + "vtable_address": 6466534056, "methods": [ 6443876544, - 6461535472, - 6453717936, - 6453730656, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719696, + 6453732416, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -28040,12 +28040,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -28053,36 +28053,36 @@ 6443801792, 6443801808, 6443847696, - 6453748656, + 6453750416, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717568, - 6453656880, + 6461548896, + 6453719328, + 6453658640, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -28160,7 +28160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717640, + "complete_object_locator": 6468721736, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -28169,20 +28169,20 @@ }, { "type_name": "CCSGO_HudTeamCounter", - "vtable_address": 6466530608, + "vtable_address": 6466534736, "methods": [ - 6453654432, - 6453707024, - 6453686832, - 6453689952, - 6451219152, - 6451190880, - 6453695136, - 6451190912, - 6453771840, - 6451205360, - 6453792160, - 6451228144 + 6453656192, + 6453708784, + 6453688592, + 6453691712, + 6451220720, + 6451192448, + 6453696896, + 6451192480, + 6453773600, + 6451206928, + 6453793920, + 6451229712 ], "bases": [ { @@ -28258,7 +28258,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717800, + "complete_object_locator": 6468721896, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -28267,40 +28267,40 @@ }, { "type_name": "CCSGO_HudVoiceStatus", - "vtable_address": 6466543624, + "vtable_address": 6466547752, "methods": [ 6443876544, - 6461535472, - 6453717952, - 6453730688, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719712, + 6453732448, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6453749760, + 6453751520, 6443845024, 6443848560, 6443848128, @@ -28308,12 +28308,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -28328,29 +28328,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717584, - 6453657152, + 6461548896, + 6453719344, + 6453658912, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -28428,7 +28428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719936, + "complete_object_locator": 6468724032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -28437,20 +28437,20 @@ }, { "type_name": "CCSGO_HudVoiceStatus", - "vtable_address": 6466544304, + "vtable_address": 6466548432, "methods": [ - 6453654444, - 6453708528, - 6453689056, - 6453690256, - 6451219152, - 6451190880, - 6453695184, - 6451190912, - 6453771904, - 6451205360, - 6453792288, - 6453792800 + 6453656204, + 6453710288, + 6453690816, + 6453692016, + 6451220720, + 6451192448, + 6453696944, + 6451192480, + 6453773664, + 6451206928, + 6453794048, + 6453794560 ], "bases": [ { @@ -28526,7 +28526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720096, + "complete_object_locator": 6468724192, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -28535,35 +28535,35 @@ }, { "type_name": "CCSGO_HudVote", - "vtable_address": 6466545432, + "vtable_address": 6466549560, "methods": [ 6443876544, - 6461535472, - 6453717968, - 6453730720, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719728, + 6453732480, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -28576,12 +28576,12 @@ 6443913856, 6443821360, 6443848384, - 6453789888, - 6461505456, - 6461505088, - 6461526000, + 6453791648, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -28596,29 +28596,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717600, - 6453657216, + 6461548896, + 6453719360, + 6453658976, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -28724,7 +28724,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720272, + "complete_object_locator": 6468724368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -28733,20 +28733,20 @@ }, { "type_name": "CCSGO_HudVote", - "vtable_address": 6466546112, + "vtable_address": 6466550240, "methods": [ - 6453654456, - 6453709728, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6451190896, - 6451190912, - 6451224928, - 6451205360, - 6451227824, - 6451228144 + 6453656216, + 6453711488, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6451192464, + 6451192480, + 6451226496, + 6451206928, + 6451229392, + 6451229712 ], "bases": [ { @@ -28850,7 +28850,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720448, + "complete_object_locator": 6468724544, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -28859,22 +28859,22 @@ }, { "type_name": "CCSGO_HudVote", - "vtable_address": 6466546216, + "vtable_address": 6466550344, "methods": [ - 6453746800, - 6452727168, - 6452727152, - 6452727232, - 6452875520, - 6452727200, - 6452873728, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6453748560, + 6452728784, + 6452728768, + 6452728848, + 6452877136, + 6452728816, + 6452875344, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -28978,7 +28978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720488, + "complete_object_locator": 6468724584, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -28987,35 +28987,35 @@ }, { "type_name": "CCSGO_HudWeaponSelection", - "vtable_address": 6466549608, + "vtable_address": 6466553736, "methods": [ 6443876544, - 6461535472, - 6453717984, - 6453730752, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719744, + 6453732512, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453668528, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453670288, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -29028,12 +29028,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -29041,36 +29041,36 @@ 6443801792, 6443801808, 6443847696, - 6453748672, + 6453750432, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717616, - 6453657472, + 6461548896, + 6453719376, + 6453659232, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -29162,7 +29162,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468722240, + "complete_object_locator": 6468726336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -29171,20 +29171,20 @@ }, { "type_name": "CCSGO_HudWeaponSelection", - "vtable_address": 6466550288, + "vtable_address": 6466554416, "methods": [ - 6453654468, - 6453711232, - 6453689232, - 6453690272, - 6451219152, - 6451190880, - 6453695216, - 6451190912, - 6453772016, - 6451205360, - 6453792448, - 6451228144 + 6453656228, + 6453712992, + 6453690992, + 6453692032, + 6451220720, + 6451192448, + 6453696976, + 6451192480, + 6453773776, + 6451206928, + 6453794208, + 6451229712 ], "bases": [ { @@ -29274,7 +29274,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468722528, + "complete_object_locator": 6468726624, "offset": 152, "constructor_displacement": 0, "class_attributes": 1 @@ -29283,35 +29283,35 @@ }, { "type_name": "CCSGO_HudWeaponSelectionDebug", - "vtable_address": 6466548928, + "vtable_address": 6466553056, "methods": [ 6443876544, - 6461535472, - 6453718000, - 6453730784, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719760, + 6453732544, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -29324,12 +29324,12 @@ 6443913856, 6443821360, 6443848384, - 6453789968, - 6461505456, - 6461505088, - 6461526000, + 6453791728, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -29337,36 +29337,36 @@ 6443801792, 6443801808, 6443847696, - 6453748720, + 6453750480, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717632, - 6453657568, + 6461548896, + 6453719392, + 6453659328, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -29416,7 +29416,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468722096, + "complete_object_locator": 6468726192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29425,35 +29425,35 @@ }, { "type_name": "CCSGO_HudWinPanel", - "vtable_address": 6466552272, + "vtable_address": 6466556400, "methods": [ 6443876544, - 6461535472, - 6453718016, - 6453730816, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719776, + 6453732576, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -29466,12 +29466,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -29486,29 +29486,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717648, - 6453657632, + 6461548896, + 6453719408, + 6453659392, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -29586,7 +29586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468722568, + "complete_object_locator": 6468726664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -29595,20 +29595,20 @@ }, { "type_name": "CCSGO_HudWinPanel", - "vtable_address": 6466552952, + "vtable_address": 6466557080, "methods": [ - 6453654480, - 6453711424, - 6453689344, - 6453690368, - 6451219152, - 6453691504, - 6451190896, - 6451190912, - 6453772112, - 6451205360, - 6453792656, - 6451228144 + 6453656240, + 6453713184, + 6453691104, + 6453692128, + 6451220720, + 6453693264, + 6451192464, + 6451192480, + 6453773872, + 6451206928, + 6453794416, + 6451229712 ], "bases": [ { @@ -29684,7 +29684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468722728, + "complete_object_locator": 6468726824, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -29693,35 +29693,35 @@ }, { "type_name": "CCSGO_IntroMovie", - "vtable_address": 6466394184, + "vtable_address": 6466398344, "methods": [ 6443876544, - 6461535472, - 6452690864, - 6452708096, - 6452745968, - 6461546688, - 6461559344, + 6461537664, + 6452692480, + 6452709712, + 6452747584, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -29734,12 +29734,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -29754,29 +29754,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690480, - 6452642384, + 6461548896, + 6452692096, + 6452644000, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -29812,7 +29812,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468688176, + "complete_object_locator": 6468692272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29821,35 +29821,35 @@ }, { "type_name": "CCSGO_InventoryItemList", - "vtable_address": 6466394928, + "vtable_address": 6466399088, "methods": [ 6443876544, - 6461535472, - 6452690880, - 6452708128, - 6461546672, - 6461842400, - 6461845584, - 6461839872, - 6461841104, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6452692496, + 6452709744, + 6461548864, + 6461844592, + 6461847776, + 6461842064, + 6461843296, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452649536, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452651152, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -29862,12 +29862,12 @@ 6443913856, 6443821360, 6443848384, - 6452776560, - 6461505456, - 6461505088, - 6461526000, + 6452778176, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -29877,34 +29877,34 @@ 6443847696, 6443847680, 6443848160, - 6461842304, - 6461842320, + 6461844496, + 6461844512, 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690496, - 6452642464, + 6461548896, + 6452692112, + 6452644080, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -29954,7 +29954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468688392, + "complete_object_locator": 6468692488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29963,35 +29963,35 @@ }, { "type_name": "CCSGO_InventoryRadial", - "vtable_address": 6466395936, + "vtable_address": 6466400096, "methods": [ 6443876544, - 6461535472, - 6452690896, - 6452708160, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452692512, + 6452709776, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452812848, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452814464, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -30004,12 +30004,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -30024,50 +30024,50 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690512, - 6452642720, + 6461548896, + 6452692128, + 6452644336, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651216, - 6452775328, - 6452838720, - 6452893952, - 6452816064, - 6452654672, - 6452817824, - 6452837520, - 6452828816, - 6452813920, - 6452736960, - 6452737632, - 6452879504, - 6452647984, - 6452674416, - 6452672736, - 6452783824, - 6452645520, - 6452654800 + 6452652832, + 6452776944, + 6452840336, + 6452895568, + 6452817680, + 6452656288, + 6452819440, + 6452839136, + 6452830432, + 6452815536, + 6452738576, + 6452739248, + 6452881120, + 6452649600, + 6452676032, + 6452674352, + 6452785440, + 6452647136, + 6452656416 ], "bases": [ { @@ -30185,7 +30185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468688632, + "complete_object_locator": 6468692728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -30194,20 +30194,20 @@ }, { "type_name": "CCSGO_InventoryRadial", - "vtable_address": 6466396768, + "vtable_address": 6466400928, "methods": [ - 6452640252, - 6451193744, - 6452842576, - 6451190864, - 6451219152, - 6451190880, - 6452844800, - 6451190912, - 6451224928, - 6451205360, - 6452904016, - 6451228144 + 6452641868, + 6451195312, + 6452844192, + 6451192432, + 6451220720, + 6451192448, + 6452846416, + 6451192480, + 6451226496, + 6451206928, + 6452905632, + 6451229712 ], "bases": [ { @@ -30325,7 +30325,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689256, + "complete_object_locator": 6468693352, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -30334,22 +30334,22 @@ }, { "type_name": "CCSGO_InventoryRadial", - "vtable_address": 6466396872, + "vtable_address": 6466401032, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6452873744, - 6452727200, - 6452872992, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452875360, + 6452728816, + 6452874608, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -30467,7 +30467,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689296, + "complete_object_locator": 6468693392, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -30476,35 +30476,35 @@ }, { "type_name": "CCSGO_LoadingScreen", - "vtable_address": 6466408696, + "vtable_address": 6466412856, "methods": [ 6443876544, - 6461535472, - 6452855376, - 6452856912, - 6452881696, - 6461546688, - 6461559344, + 6461537664, + 6452856992, + 6452858528, + 6452883312, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -30517,12 +30517,12 @@ 6443913856, 6443821360, 6443914784, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -30537,29 +30537,29 @@ 6443923408, 6443817680, 6443848032, - 6461546704, - 6452855088, - 6452806368, + 6461548896, + 6452856704, + 6452807984, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443922912 @@ -30652,7 +30652,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468690824, + "complete_object_locator": 6468694920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -30661,9 +30661,9 @@ }, { "type_name": "CCSGO_LoadingScreen", - "vtable_address": 6466409384, + "vtable_address": 6466413544, "methods": [ - 6452805948, + 6452807564, 6443908704 ], "bases": [ @@ -30754,7 +30754,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691032, + "complete_object_locator": 6468695128, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -30763,12 +30763,12 @@ }, { "type_name": "CCSGO_LoadingScreen", - "vtable_address": 6466409408, + "vtable_address": 6466413568, "methods": [ - 6452877280, - 6452877136, - 6452875552, - 6452871344 + 6452878896, + 6452878752, + 6452877168, + 6452872960 ], "bases": [ { @@ -30858,7 +30858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691072, + "complete_object_locator": 6468695168, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -30867,10 +30867,10 @@ }, { "type_name": "CCSGO_MagPreviewRenderer", - "vtable_address": 6466474168, + "vtable_address": 6466478296, "methods": [ - 6453194848, - 6453353872, + 6453196464, + 6453355632, 6443802816 ], "bases": [ @@ -30919,7 +30919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704192, + "complete_object_locator": 6468708288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30928,35 +30928,35 @@ }, { "type_name": "CCSGO_MainMenu", - "vtable_address": 6466410864, + "vtable_address": 6466415024, "methods": [ 6443876544, - 6461535472, - 6452855392, - 6452856944, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857008, + 6452858560, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -30969,12 +30969,12 @@ 6443913856, 6443821360, 6443914784, - 6452903472, - 6461505456, - 6461505088, - 6461526000, + 6452905088, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -30989,29 +30989,29 @@ 6443923408, 6443817680, 6443848032, - 6461546704, - 6452855104, - 6452806512, + 6461548896, + 6452856720, + 6452808128, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443922912 @@ -31104,7 +31104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691112, + "complete_object_locator": 6468695208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -31113,10 +31113,10 @@ }, { "type_name": "CCSGO_MainMenu", - "vtable_address": 6466411552, + "vtable_address": 6466415712, "methods": [ - 6452805960, - 6452849632 + 6452807576, + 6452851248 ], "bases": [ { @@ -31206,7 +31206,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691280, + "complete_object_locator": 6468695376, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -31215,12 +31215,12 @@ }, { "type_name": "CCSGO_MainMenu", - "vtable_address": 6466411576, + "vtable_address": 6466415736, "methods": [ - 6452062048, - 6452062064, - 6452062080, - 6452871616 + 6452063632, + 6452063648, + 6452063664, + 6452873232 ], "bases": [ { @@ -31310,7 +31310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691320, + "complete_object_locator": 6468695416, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -31319,35 +31319,35 @@ }, { "type_name": "CCSGO_MapOverview", - "vtable_address": 6466413648, + "vtable_address": 6466417808, "methods": [ 6443876544, - 6461535472, - 6452855408, - 6452856976, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857024, + 6452858592, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6452876208, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6452877408, - 6452877632, - 6461536080, - 6461536928, - 6461538896, - 6452879088, + 6452877824, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6452879024, + 6452879248, + 6461538272, + 6461539120, + 6461541088, + 6452880704, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -31360,12 +31360,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -31380,32 +31380,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855120, - 6452806912, + 6461548896, + 6452856736, + 6452808528, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452863360 + 6452864976 ], "bases": [ { @@ -31481,7 +31481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691504, + "complete_object_locator": 6468695600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -31490,20 +31490,20 @@ }, { "type_name": "CCSGO_MapOverview", - "vtable_address": 6466414336, + "vtable_address": 6466418496, "methods": [ - 6452805972, - 6452849856, - 6452841152, - 6452843984, - 6452895392, - 6452844000, - 6451190896, - 6451190912, - 6452898880, - 6451205360, - 6452903648, - 6451228144 + 6452807588, + 6452851472, + 6452842768, + 6452845600, + 6452897008, + 6452845616, + 6451192464, + 6451192480, + 6452900496, + 6451206928, + 6452905264, + 6451229712 ], "bases": [ { @@ -31579,7 +31579,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691664, + "complete_object_locator": 6468695760, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -31588,35 +31588,35 @@ }, { "type_name": "CCSGO_MiniProfileBackground", - "vtable_address": 6466438408, + "vtable_address": 6466442568, "methods": [ 6443876544, - 6461535472, - 6453006448, - 6453012976, - 6461820704, - 6461546688, - 6461559344, - 6461817344, - 6461819408, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6453008064, + 6453014592, + 6461822896, + 6461548880, + 6461561536, + 6461819536, + 6461821600, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461799360, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461801552, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -31629,12 +31629,12 @@ 6443913856, 6443821360, 6443848384, - 6453061520, - 6461505456, - 6461505088, - 6461526000, + 6453063136, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -31644,34 +31644,34 @@ 6443847696, 6443847680, 6443848160, - 6461820192, - 6461820464, + 6461822384, + 6461822656, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006144, - 6452956352, + 6461548896, + 6453007760, + 6452957968, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -31721,7 +31721,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697088, + "complete_object_locator": 6468701184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31730,35 +31730,35 @@ }, { "type_name": "CCSGO_OutOfAmmo", - "vtable_address": 6466415872, + "vtable_address": 6466420032, "methods": [ 6443876544, - 6461535472, - 6452855424, - 6452857008, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857040, + 6452858624, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -31771,12 +31771,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -31791,29 +31791,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855136, - 6452807360, + 6461548896, + 6452856752, + 6452808976, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -31891,7 +31891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691840, + "complete_object_locator": 6468695936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -31900,20 +31900,20 @@ }, { "type_name": "CCSGO_OutOfAmmo", - "vtable_address": 6466416552, + "vtable_address": 6466420712, "methods": [ - 6452805984, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6452844720, - 6451190912, - 6451224928, - 6451205360, - 6452903712, - 6451228144 + 6452807600, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6452846336, + 6451192480, + 6451226496, + 6451206928, + 6452905328, + 6451229712 ], "bases": [ { @@ -31989,7 +31989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692000, + "complete_object_locator": 6468696096, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -31998,35 +31998,35 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 6466478712, + "vtable_address": 6466482840, "methods": [ 6443876544, - 6461535472, - 6453256976, - 6453269632, - 6453322064, - 6453323856, - 6453397312, + 6461537664, + 6453258576, + 6453271392, + 6453323824, + 6453325616, + 6453399072, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453313360, - 6453314448, - 6461536080, - 6461536928, - 6453316800, - 6453314752, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453315120, + 6453316208, + 6461538272, + 6461539120, + 6453318560, + 6453316512, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453214352, - 6453217904, + 6461537648, + 6461547232, + 6461505920, + 6453215968, + 6453219520, 6443844992, 6443848064, 6443844976, @@ -32036,15 +32036,15 @@ 6443848560, 6443848128, 6443802160, - 6453310048, + 6453311808, 6443821360, 6443848384, - 6453377600, - 6461505456, - 6461505088, - 6461526000, + 6453379360, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -32054,59 +32054,59 @@ 6443847696, 6443847680, 6443848160, - 6453320992, - 6453321680, - 6453415072, + 6453322752, + 6453323440, + 6453416832, 6443817680, 6443848032, - 6461546704, - 6453256784, - 6453194896, + 6461548896, + 6453258384, + 6453196512, 6443817520, - 6461547664, - 6461547840, - 6453317664, - 6453317264, - 6453317392, - 6453317536, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6453319424, + 6453319024, + 6453319152, + 6453319296, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453219168, - 6453415088, - 6453415056, - 6453244480, - 6453333152, - 6453299184, - 6453214272, - 6453355536, - 6453211872, - 6453229456, - 6453226656, - 6453241024, - 6453243424, - 6453243360, - 6453244304, - 6453243888, - 6453364064, - 6453397424, - 6453303248, - 6453420976, - 6453354896, - 6453312208, - 6453214304 + 6453220784, + 6453416848, + 6453416816, + 6453246080, + 6453334912, + 6453300944, + 6453215888, + 6453357296, + 6453213488, + 6453231072, + 6453228272, + 6453242640, + 6453245024, + 6453244960, + 6453245904, + 6453245488, + 6453365824, + 6453399184, + 6453305008, + 6453422736, + 6453356656, + 6453313968, + 6453215920 ], "bases": [ { @@ -32238,7 +32238,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705208, + "complete_object_locator": 6468709304, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -32247,10 +32247,10 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 6466479576, + "vtable_address": 6466483704, "methods": [ - 6453194628, - 6453247200 + 6453196244, + 6453248800 ], "bases": [ { @@ -32382,7 +32382,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705408, + "complete_object_locator": 6468709504, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -32391,10 +32391,10 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 6466479600, + "vtable_address": 6466483728, "methods": [ - 6453306016, - 6453401664 + 6453307776, + 6453403424 ], "bases": [ { @@ -32526,7 +32526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705448, + "complete_object_locator": 6468709544, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -32535,11 +32535,11 @@ }, { "type_name": "CCSGO_Particle3dPanel", - "vtable_address": 6466479624, + "vtable_address": 6466483752, "methods": [ - 6453194640, - 6453280608, - 6453320704 + 6453196256, + 6453282368, + 6453322464 ], "bases": [ { @@ -32671,7 +32671,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705488, + "complete_object_locator": 6468709584, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -32680,35 +32680,35 @@ }, { "type_name": "CCSGO_PopupManager", - "vtable_address": 6466411616, + "vtable_address": 6466415776, "methods": [ 6443876544, - 6461535472, - 6452855440, - 6452857040, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857056, + 6452858656, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443903072, - 6461503872, - 6461504016, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443913808, @@ -32721,12 +32721,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -32741,29 +32741,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855152, - 6452807424, + 6461548896, + 6452856768, + 6452809040, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443903696 @@ -32814,7 +32814,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691360, + "complete_object_locator": 6468695456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -32823,35 +32823,35 @@ }, { "type_name": "CCSGO_Popup_CustomLayout", - "vtable_address": 6466691800, + "vtable_address": 6466695896, "methods": [ 6443876544, - 6461535472, - 6455415552, - 6455461936, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6455417312, + 6455463696, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, - 6455327728, + 6461506064, + 6455329488, 6443844992, 6443848064, 6443844976, @@ -32864,12 +32864,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -32884,33 +32884,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6455415520, - 6455310672, + 6461548896, + 6455417280, + 6455312432, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6455543456, - 6455530512, + 6455545216, + 6455532272, 6443910512, 6443910768, 6443921712 @@ -32975,7 +32975,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468770504, + "complete_object_locator": 6468774600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -32984,34 +32984,34 @@ }, { "type_name": "CCSGO_Popup_Generic", - "vtable_address": 6466559128, + "vtable_address": 6466563256, "methods": [ 6443876544, - 6461535472, - 6453897760, - 6453901040, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899520, + 6453902800, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -33025,12 +33025,12 @@ 6443913856, 6443821360, 6443848384, - 6453914368, - 6461505456, - 6461505088, - 6461526000, + 6453916128, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -33045,37 +33045,37 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897504, - 6453885120, + 6461548896, + 6453899264, + 6453886880, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453906880, - 6453904784, + 6453908640, + 6453906544, 6443910512, 6443910768, 6443921712, - 6453902000 + 6453903760 ], "bases": [ { @@ -33123,7 +33123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468724776, + "complete_object_locator": 6468728872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33132,34 +33132,34 @@ }, { "type_name": "CCSGO_Popup_Generic_Command", - "vtable_address": 6466559856, + "vtable_address": 6466563984, "methods": [ 6443876544, - 6461535472, - 6453897760, - 6453901040, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899520, + 6453902800, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -33173,12 +33173,12 @@ 6443913856, 6443821360, 6443848384, - 6453914368, - 6461505456, - 6461505088, - 6461526000, + 6453916128, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -33193,37 +33193,37 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897504, - 6453885248, + 6461548896, + 6453899264, + 6453887008, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453906880, - 6453904784, + 6453908640, + 6453906544, 6443910512, - 6453900208, + 6453901968, 6443921712, - 6453902000 + 6453903760 ], "bases": [ { @@ -33285,7 +33285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468724920, + "complete_object_locator": 6468729016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33294,10 +33294,10 @@ }, { "type_name": "CCSGO_PreviewCaptureRenderer", - "vtable_address": 6466482744, + "vtable_address": 6466486872, "methods": [ - 6453195040, - 6453354064, + 6453196656, + 6453355824, 6443802816 ], "bases": [ @@ -33346,7 +33346,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706080, + "complete_object_locator": 6468710176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33355,35 +33355,35 @@ }, { "type_name": "CCSGO_QuickBuyRadial", - "vtable_address": 6466420832, + "vtable_address": 6466424992, "methods": [ 6443876544, - 6461535472, - 6452855456, + 6461537664, 6452857072, - 6461546672, - 6461546688, - 6461559344, + 6452858688, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452811888, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452813504, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -33396,12 +33396,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -33416,50 +33416,50 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855168, - 6452807488, + 6461548896, + 6452856784, + 6452809104, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452813504, - 6452901840, - 6452838720, - 6452893952, - 6452816064, - 6452654672, - 6452817824, - 6452837168, - 6452828816, - 6452813920, - 6452879600, - 6452879760, - 6452879504, - 6452647984, - 6452674416, - 6452672736, - 6452910368, - 6452808752, - 6452819728 + 6452815120, + 6452903456, + 6452840336, + 6452895568, + 6452817680, + 6452656288, + 6452819440, + 6452838784, + 6452830432, + 6452815536, + 6452881216, + 6452881376, + 6452881120, + 6452649600, + 6452676032, + 6452674352, + 6452911984, + 6452810368, + 6452821344 ], "bases": [ { @@ -33591,7 +33591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692704, + "complete_object_locator": 6468696800, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -33600,20 +33600,20 @@ }, { "type_name": "CCSGO_QuickBuyRadial", - "vtable_address": 6466421664, + "vtable_address": 6466425824, "methods": [ - 6452805996, - 6451193744, - 6452842048, - 6451190864, - 6451219152, - 6451190880, - 6452844800, - 6451190912, - 6451224928, - 6451205360, - 6452904016, - 6451228144 + 6452807612, + 6451195312, + 6452843664, + 6451192432, + 6451220720, + 6451192448, + 6452846416, + 6451192480, + 6451226496, + 6451206928, + 6452905632, + 6451229712 ], "bases": [ { @@ -33745,7 +33745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692896, + "complete_object_locator": 6468696992, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -33754,22 +33754,22 @@ }, { "type_name": "CCSGO_QuickBuyRadial", - "vtable_address": 6466421768, + "vtable_address": 6466425928, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6452873744, - 6452727200, - 6452872992, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452875360, + 6452728816, + 6452874608, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -33901,7 +33901,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692936, + "complete_object_locator": 6468697032, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -33910,35 +33910,35 @@ }, { "type_name": "CCSGO_QuickGrenadesRadial", - "vtable_address": 6466422104, + "vtable_address": 6466426264, "methods": [ 6443876544, - 6461535472, - 6452855472, - 6452857120, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857088, + 6452858736, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452812848, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452814464, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -33951,12 +33951,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -33971,50 +33971,50 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855184, - 6452807824, + 6461548896, + 6452856800, + 6452809440, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452813856, - 6452901872, - 6452838720, - 6452893952, - 6452816064, - 6452654672, - 6452816912, - 6452837520, - 6452828816, - 6452813920, - 6452736960, - 6452737632, - 6452879504, - 6452647984, - 6452674416, - 6452672736, - 6452783824, - 6452645520, - 6452820656 + 6452815472, + 6452903488, + 6452840336, + 6452895568, + 6452817680, + 6452656288, + 6452818528, + 6452839136, + 6452830432, + 6452815536, + 6452738576, + 6452739248, + 6452881120, + 6452649600, + 6452676032, + 6452674352, + 6452785440, + 6452647136, + 6452822272 ], "bases": [ { @@ -34146,7 +34146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692976, + "complete_object_locator": 6468697072, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -34155,20 +34155,20 @@ }, { "type_name": "CCSGO_QuickGrenadesRadial", - "vtable_address": 6466422936, + "vtable_address": 6466427096, "methods": [ - 6452806008, - 6451193744, - 6452842576, - 6451190864, - 6451219152, - 6451190880, - 6452844800, - 6451190912, - 6451224928, - 6451205360, - 6452904016, - 6451228144 + 6452807624, + 6451195312, + 6452844192, + 6451192432, + 6451220720, + 6451192448, + 6452846416, + 6451192480, + 6451226496, + 6451206928, + 6452905632, + 6451229712 ], "bases": [ { @@ -34300,7 +34300,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693168, + "complete_object_locator": 6468697264, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -34309,22 +34309,22 @@ }, { "type_name": "CCSGO_QuickGrenadesRadial", - "vtable_address": 6466423040, + "vtable_address": 6466427200, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6452873744, - 6452727200, - 6452872992, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452875360, + 6452728816, + 6452874608, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -34456,7 +34456,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693208, + "complete_object_locator": 6468697304, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -34465,35 +34465,35 @@ }, { "type_name": "CCSGO_QuickInventory", - "vtable_address": 6466423184, + "vtable_address": 6466427344, "methods": [ 6443876544, - 6461535472, - 6452855488, - 6452857168, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857104, + 6452858784, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452812848, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452814464, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -34506,12 +34506,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -34526,50 +34526,50 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855200, - 6452808048, + 6461548896, + 6452856816, + 6452809664, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452813872, - 6452901888, - 6452838720, - 6452893952, - 6452816064, - 6452654672, - 6452817232, - 6452837520, - 6452828816, - 6452813920, - 6452879616, - 6452737632, - 6452879504, - 6452647984, - 6452674416, - 6452672736, - 6452783824, - 6452645520, - 6452823360 + 6452815488, + 6452903504, + 6452840336, + 6452895568, + 6452817680, + 6452656288, + 6452818848, + 6452839136, + 6452830432, + 6452815536, + 6452881232, + 6452739248, + 6452881120, + 6452649600, + 6452676032, + 6452674352, + 6452785440, + 6452647136, + 6452824976 ], "bases": [ { @@ -34701,7 +34701,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693248, + "complete_object_locator": 6468697344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -34710,20 +34710,20 @@ }, { "type_name": "CCSGO_QuickInventory", - "vtable_address": 6466424016, + "vtable_address": 6466428176, "methods": [ - 6452806020, - 6451193744, - 6452842496, - 6451190864, - 6451219152, - 6451190880, - 6452844800, - 6451190912, - 6451224928, - 6451205360, - 6452904016, - 6451228144 + 6452807636, + 6451195312, + 6452844112, + 6451192432, + 6451220720, + 6451192448, + 6452846416, + 6451192480, + 6451226496, + 6451206928, + 6452905632, + 6451229712 ], "bases": [ { @@ -34855,7 +34855,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693440, + "complete_object_locator": 6468697536, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -34864,22 +34864,22 @@ }, { "type_name": "CCSGO_QuickInventory", - "vtable_address": 6466424120, + "vtable_address": 6466428280, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6452873744, - 6452727200, - 6452872992, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452875360, + 6452728816, + 6452874608, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -35011,7 +35011,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693480, + "complete_object_locator": 6468697576, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -35020,35 +35020,35 @@ }, { "type_name": "CCSGO_QuickUtilityItemRadial", - "vtable_address": 6466424416, + "vtable_address": 6466428576, "methods": [ 6443876544, - 6461535472, - 6452855504, - 6452857216, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857120, + 6452858832, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452812848, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452814464, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -35061,12 +35061,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -35081,50 +35081,50 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855216, - 6452808112, + 6461548896, + 6452856832, + 6452809728, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452813888, - 6452901904, - 6452838720, - 6452893952, - 6452816064, - 6452654672, - 6452817824, - 6452837520, - 6452828816, - 6452813920, - 6452736960, - 6452737632, - 6452879504, - 6452647984, - 6452674416, - 6452672736, - 6452783824, - 6452645520, - 6452827872 + 6452815504, + 6452903520, + 6452840336, + 6452895568, + 6452817680, + 6452656288, + 6452819440, + 6452839136, + 6452830432, + 6452815536, + 6452738576, + 6452739248, + 6452881120, + 6452649600, + 6452676032, + 6452674352, + 6452785440, + 6452647136, + 6452829488 ], "bases": [ { @@ -35256,7 +35256,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693520, + "complete_object_locator": 6468697616, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -35265,20 +35265,20 @@ }, { "type_name": "CCSGO_QuickUtilityItemRadial", - "vtable_address": 6466425248, + "vtable_address": 6466429408, "methods": [ - 6452806032, - 6451193744, - 6452842576, - 6451190864, - 6451219152, - 6451190880, - 6452844800, - 6451190912, - 6451224928, - 6451205360, - 6452904016, - 6451228144 + 6452807648, + 6451195312, + 6452844192, + 6451192432, + 6451220720, + 6451192448, + 6452846416, + 6451192480, + 6451226496, + 6451206928, + 6452905632, + 6451229712 ], "bases": [ { @@ -35410,7 +35410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693712, + "complete_object_locator": 6468697808, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -35419,22 +35419,22 @@ }, { "type_name": "CCSGO_QuickUtilityItemRadial", - "vtable_address": 6466425352, + "vtable_address": 6466429512, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6452873744, - 6452727200, - 6452872992, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452875360, + 6452728816, + 6452874608, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -35566,7 +35566,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693752, + "complete_object_locator": 6468697848, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -35575,35 +35575,35 @@ }, { "type_name": "CCSGO_RadialMenuBase", - "vtable_address": 6466419792, + "vtable_address": 6466423952, "methods": [ 6443876544, - 6461535472, - 6452855520, - 6452708192, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857136, + 6452709808, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452812848, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452814464, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -35616,12 +35616,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -35636,48 +35636,48 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855232, - 6452808208, + 6461548896, + 6452856848, + 6452809824, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651216, - 6452775328, - 6452838720, - 6452893952, - 6452816064, - 6452818880, - 6452817824, - 6452837520, - 6452828816, - 6452813920, - 6452879632, - 6452880096, - 6452879504, - 6452811792, - 6452845440, - 6452839152, - 6452910816 + 6452652832, + 6452776944, + 6452840336, + 6452895568, + 6452817680, + 6452820496, + 6452819440, + 6452839136, + 6452830432, + 6452815536, + 6452881248, + 6452881712, + 6452881120, + 6452813408, + 6452847056, + 6452840768, + 6452912432 ], "bases": [ { @@ -35781,7 +35781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692584, + "complete_object_locator": 6468696680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -35790,20 +35790,20 @@ }, { "type_name": "CCSGO_RadialMenuBase", - "vtable_address": 6466420608, + "vtable_address": 6466424768, "methods": [ - 6452806044, - 6451193744, - 6452842576, - 6451190864, - 6451219152, - 6451190880, - 6452844800, - 6451190912, - 6451224928, - 6451205360, - 6452904016, - 6451228144 + 6452807660, + 6451195312, + 6452844192, + 6451192432, + 6451220720, + 6451192448, + 6452846416, + 6451192480, + 6451226496, + 6451206928, + 6452905632, + 6451229712 ], "bases": [ { @@ -35907,7 +35907,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692624, + "complete_object_locator": 6468696720, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -35916,22 +35916,22 @@ }, { "type_name": "CCSGO_RadialMenuBase", - "vtable_address": 6466420712, + "vtable_address": 6466424872, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6452873744, - 6452727200, - 6452872992, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452875360, + 6452728816, + 6452874608, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -36035,7 +36035,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692664, + "complete_object_locator": 6468696760, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -36044,35 +36044,35 @@ }, { "type_name": "CCSGO_RadialRadio", - "vtable_address": 6466425488, + "vtable_address": 6466429648, "methods": [ 6443876544, - 6461535472, - 6452855536, - 6452857264, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857152, + 6452858880, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6452879328, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6452880944, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452812848, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452814464, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -36085,12 +36085,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -36105,48 +36105,48 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855248, - 6452808272, + 6461548896, + 6452856864, + 6452809888, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452813904, - 6452901920, - 6452838720, - 6452894352, - 6452816224, - 6452818896, - 6452817824, - 6452837520, - 6452828816, - 6452813920, - 6452879648, - 6452881008, - 6452879504, - 6452811808, - 6452846112, - 6452839376, - 6452910896 + 6452815520, + 6452903536, + 6452840336, + 6452895968, + 6452817840, + 6452820512, + 6452819440, + 6452839136, + 6452830432, + 6452815536, + 6452881264, + 6452882624, + 6452881120, + 6452813424, + 6452847728, + 6452840992, + 6452912512 ], "bases": [ { @@ -36264,7 +36264,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693792, + "complete_object_locator": 6468697888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -36273,20 +36273,20 @@ }, { "type_name": "CCSGO_RadialRadio", - "vtable_address": 6466426304, + "vtable_address": 6466430464, "methods": [ - 6452806056, - 6451193744, - 6452842592, - 6451190864, - 6451219152, - 6451190880, - 6452845120, - 6451190912, - 6451224928, - 6451205360, - 6452904192, - 6451228144 + 6452807672, + 6451195312, + 6452844208, + 6451192432, + 6451220720, + 6451192448, + 6452846736, + 6451192480, + 6451226496, + 6451206928, + 6452905808, + 6451229712 ], "bases": [ { @@ -36404,7 +36404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468693976, + "complete_object_locator": 6468698072, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -36413,22 +36413,22 @@ }, { "type_name": "CCSGO_RadialRadio", - "vtable_address": 6466426408, + "vtable_address": 6466430568, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6452873744, - 6452727200, - 6452872992, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452875360, + 6452728816, + 6452874608, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -36546,7 +36546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694016, + "complete_object_locator": 6468698112, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -36555,35 +36555,35 @@ }, { "type_name": "CCSGO_RadialSelector", - "vtable_address": 6466426800, + "vtable_address": 6466430960, "methods": [ 6443876544, - 6461535472, - 6452855552, - 6452857296, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857168, + 6452858912, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452813280, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452814896, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -36596,12 +36596,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -36616,29 +36616,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855264, - 6452808432, + 6461548896, + 6452856880, + 6452810048, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -36702,7 +36702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694056, + "complete_object_locator": 6468698152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -36711,22 +36711,22 @@ }, { "type_name": "CCSGO_RadialSelector", - "vtable_address": 6466427480, - "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, + "vtable_address": 6466431640, + "methods": [ + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6452876384, + 6452728816, 6452874768, - 6452727200, - 6452873152, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -36788,7 +36788,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694288, + "complete_object_locator": 6468698384, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -36797,35 +36797,35 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 6466433744, + "vtable_address": 6466437904, "methods": [ 6443876544, - 6461535472, - 6453006464, - 6453013008, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008080, + 6453014624, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452969760, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452971376, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -36838,12 +36838,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -36858,33 +36858,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006160, - 6452956416, + 6461548896, + 6453007776, + 6452958032, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452985824, - 6452982384 + 6452987440, + 6452984000 ], "bases": [ { @@ -37002,7 +37002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695304, + "complete_object_locator": 6468699400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37011,20 +37011,20 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 6466434440, + "vtable_address": 6466438600, "methods": [ - 6452955520, - 6452996752, - 6452985168, - 6451190864, - 6451219152, - 6451190880, - 6452985248, - 6451190912, - 6451224928, - 6451205360, - 6453062448, - 6451228144 + 6452957136, + 6452998368, + 6452986784, + 6451192432, + 6451220720, + 6451192448, + 6452986864, + 6451192480, + 6451226496, + 6451206928, + 6453064064, + 6451229712 ], "bases": [ { @@ -37142,7 +37142,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695616, + "complete_object_locator": 6468699712, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -37151,9 +37151,9 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 6466434544, + "vtable_address": 6466438704, "methods": [ - 6453010208 + 6453011824 ], "bases": [ { @@ -37271,7 +37271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695656, + "complete_object_locator": 6468699752, "offset": 96, "constructor_displacement": 0, "class_attributes": 1 @@ -37280,22 +37280,22 @@ }, { "type_name": "CCSGO_RetakeLoadout", - "vtable_address": 6466434560, + "vtable_address": 6466438720, "methods": [ - 6452727136, - 6452727168, - 6452727152, - 6452727232, - 6453023552, - 6452727200, - 6453023216, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6452728752, + 6452728784, + 6452728768, + 6452728848, + 6453025168, + 6452728816, + 6453024832, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -37413,7 +37413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695696, + "complete_object_locator": 6468699792, "offset": 104, "constructor_displacement": 0, "class_attributes": 1 @@ -37422,35 +37422,35 @@ }, { "type_name": "CCSGO_Scoreboard", - "vtable_address": 6466436840, + "vtable_address": 6466441000, "methods": [ 6443876544, - 6461535472, - 6453006480, - 6453013040, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008096, + 6453014656, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -37463,12 +37463,12 @@ 6443913856, 6443821360, 6443848384, - 6453061568, - 6461505456, - 6461505088, - 6461526000, + 6453063184, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -37483,29 +37483,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006176, - 6452956816, + 6461548896, + 6453007792, + 6452958432, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -37569,7 +37569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695920, + "complete_object_locator": 6468700016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37578,10 +37578,10 @@ }, { "type_name": "CCSGO_Scoreboard", - "vtable_address": 6466437520, + "vtable_address": 6466441680, "methods": [ - 6452955532, - 6452997216 + 6452957148, + 6452998832 ], "bases": [ { @@ -37643,7 +37643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468696072, + "complete_object_locator": 6468700168, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -37652,40 +37652,40 @@ }, { "type_name": "CCSGO_SettingsAnnotationsDropDown", - "vtable_address": 6466562792, + "vtable_address": 6466566920, "methods": [ 6443876544, - 6461535472, - 6453897776, - 6453901072, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899536, + 6453902832, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461867616, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461868080, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461869808, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461870272, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461867184, - 6461545040, - 6453886704, - 6461503872, - 6461862960, + 6461869376, + 6461547232, + 6453888464, + 6461506064, + 6461865152, 6443844992, 6443848064, 6443844976, - 6453906704, - 6461868832, + 6453908464, + 6461871024, 6443845024, 6443848560, 6443848128, @@ -37693,12 +37693,12 @@ 6443913856, 6443821360, 6443848384, - 6453914416, - 6461505456, - 6461505088, - 6461526000, + 6453916176, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -37712,37 +37712,37 @@ 6443914800, 6443879584, 6443817680, - 6461868208, - 6461546704, - 6453897520, - 6453885376, + 6461870400, + 6461548896, + 6453899280, + 6453887136, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461868384, - 6453907408, - 6453899216, - 6453898848, - 6453914304 + 6461870576, + 6453909168, + 6453900976, + 6453900608, + 6453916064 ], "bases": [ { @@ -37804,7 +37804,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468725856, + "complete_object_locator": 6468729952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -37813,39 +37813,39 @@ }, { "type_name": "CCSGO_SettingsEnum", - "vtable_address": 6466560632, + "vtable_address": 6466564760, "methods": [ 6443876544, - 6461535472, - 6453897792, - 6453901120, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899552, + 6453902880, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453887168, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453888928, 6443844992, 6443848064, 6443844976, - 6453906496, + 6453908256, 6443848176, 6443845024, 6443848560, @@ -37854,12 +37854,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -37874,32 +37874,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897536, - 6453885472, + 6461548896, + 6453899296, + 6453887232, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453907008 + 6453908768 ], "bases": [ { @@ -37947,7 +37947,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468725152, + "complete_object_locator": 6468729248, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37956,9 +37956,9 @@ }, { "type_name": "CCSGO_SettingsEnum", - "vtable_address": 6466561320, + "vtable_address": 6466565448, "methods": [ - 6453897136 + 6453898896 ], "bases": [ { @@ -38006,7 +38006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468725336, + "complete_object_locator": 6468729432, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -38015,40 +38015,40 @@ }, { "type_name": "CCSGO_SettingsEnumDropDown", - "vtable_address": 6466562056, + "vtable_address": 6466566184, "methods": [ 6443876544, - 6461535472, - 6453897808, - 6453901152, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899568, + 6453902912, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461867616, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461868080, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461869808, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461870272, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461867184, - 6461545040, - 6453886704, - 6461503872, - 6453887536, + 6461869376, + 6461547232, + 6453888464, + 6461506064, + 6453889296, 6443844992, 6443848064, 6443844976, - 6453906704, - 6461868832, + 6453908464, + 6461871024, 6443845024, 6443848560, 6443848128, @@ -38056,12 +38056,12 @@ 6443913856, 6443821360, 6443848384, - 6453914496, - 6461505456, - 6461505088, - 6461526000, + 6453916256, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -38075,37 +38075,37 @@ 6443914800, 6443879584, 6443817680, - 6461868208, - 6461546704, - 6453897552, - 6453885584, + 6461870400, + 6461548896, + 6453899312, + 6453887344, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461868384, - 6453907408, - 6453898864, - 6453898640, - 6453914176 + 6461870576, + 6453909168, + 6453900624, + 6453900400, + 6453915936 ], "bases": [ { @@ -38181,7 +38181,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468725616, + "complete_object_locator": 6468729712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -38190,9 +38190,9 @@ }, { "type_name": "CCSGO_SettingsEnumDropDown", - "vtable_address": 6466562776, + "vtable_address": 6466566904, "methods": [ - 6453897152 + 6453898912 ], "bases": [ { @@ -38268,7 +38268,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468725816, + "complete_object_locator": 6468729912, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -38277,40 +38277,40 @@ }, { "type_name": "CCSGO_SettingsEnumDropDownBase", - "vtable_address": 6466561336, + "vtable_address": 6466565464, "methods": [ 6443876544, - 6461535472, - 6453897824, - 6453901200, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899584, + 6453902960, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461867616, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461868080, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461869808, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461870272, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461867184, - 6461545040, - 6453886704, - 6461503872, - 6461862960, + 6461869376, + 6461547232, + 6453888464, + 6461506064, + 6461865152, 6443844992, 6443848064, 6443844976, - 6453906704, - 6461868832, + 6453908464, + 6461871024, 6443845024, 6443848560, 6443848128, @@ -38318,12 +38318,12 @@ 6443913856, 6443821360, 6443848384, - 6453914608, - 6461505456, - 6461505088, - 6461526000, + 6453916368, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -38337,37 +38337,37 @@ 6443914800, 6443879584, 6443817680, - 6461868208, - 6461546704, - 6453897568, - 6453885712, + 6461870400, + 6461548896, + 6453899328, + 6453887472, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461868384, - 6453907408, - 6453899216, - 6453898848, - 6453914304 + 6461870576, + 6453909168, + 6453900976, + 6453900608, + 6453916064 ], "bases": [ { @@ -38415,7 +38415,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468725376, + "complete_object_locator": 6468729472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38424,40 +38424,40 @@ }, { "type_name": "CCSGO_SettingsEnumDropDownBind", - "vtable_address": 6466563704, + "vtable_address": 6466567832, "methods": [ 6443876544, - 6461535472, - 6453897840, - 6453901232, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899600, + 6453902992, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461867616, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461868080, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461869808, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461870272, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461867184, - 6461545040, - 6461862864, - 6461503872, - 6453887824, + 6461869376, + 6461547232, + 6461865056, + 6461506064, + 6453889584, 6443844992, 6443848064, 6443844976, - 6453906736, - 6461868832, + 6453908496, + 6461871024, 6443845024, 6443848560, 6443848128, @@ -38465,12 +38465,12 @@ 6443913856, 6443821360, 6443848384, - 6461870608, - 6461505456, - 6461505088, - 6461526000, + 6461872800, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -38484,34 +38484,34 @@ 6443914800, 6443879584, 6443817680, - 6461868208, - 6461546704, - 6453897584, - 6453885776, + 6461870400, + 6461548896, + 6453899344, + 6453887536, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461868384, - 6453907424 + 6461870576, + 6453909184 ], "bases": [ { @@ -38559,7 +38559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726008, + "complete_object_locator": 6468730104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38568,35 +38568,35 @@ }, { "type_name": "CCSGO_SettingsKeyBinder", - "vtable_address": 6466564400, + "vtable_address": 6466568528, "methods": [ 6443876544, - 6461535472, - 6453897856, - 6453901264, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899616, + 6453903024, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6453904432, - 6461545040, - 6461503728, - 6461503872, - 6453888032, + 6453906192, + 6461547232, + 6461505920, + 6461506064, + 6453889792, 6443844992, 6443848064, 6443844976, @@ -38609,12 +38609,12 @@ 6443913856, 6443821360, 6443848384, - 6453914672, - 6461505456, - 6461505088, - 6461526000, + 6453916432, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -38629,29 +38629,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897600, - 6453885840, + 6461548896, + 6453899360, + 6453887600, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -38687,7 +38687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726152, + "complete_object_locator": 6468730248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38696,39 +38696,39 @@ }, { "type_name": "CCSGO_SteamInputAction", - "vtable_address": 6466547568, + "vtable_address": 6466551696, "methods": [ 6443876544, - 6461535472, - 6453718032, - 6453730848, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719792, + 6453732608, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453668832, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453670592, + 6461506208, 6443844992, 6443848064, 6443844976, - 6453748336, + 6453750096, 6443848176, 6443845024, 6443848560, @@ -38737,12 +38737,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -38757,29 +38757,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717664, - 6453657728, + 6461548896, + 6453719424, + 6453659488, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -38815,7 +38815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468721208, + "complete_object_locator": 6468725304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38824,12 +38824,12 @@ }, { "type_name": "CCSGO_SteamInputAction::CCallbackInternal_OnSteamDeviceConnected", - "vtable_address": 6466547488, + "vtable_address": 6466551616, "methods": [ 6445657552, - 6453770512, + 6453772272, 6445644096, - 6453659104 + 6453660864 ], "bases": [ { @@ -38863,7 +38863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468721648, + "complete_object_locator": 6468725744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38872,12 +38872,12 @@ }, { "type_name": "CCSGO_SteamInputAction::CCallbackInternal_OnSteamDeviceDisconnected", - "vtable_address": 6466547528, + "vtable_address": 6466551656, "methods": [ 6445657552, - 6453770672, + 6453772432, 6445644096, - 6453659184 + 6453660944 ], "bases": [ { @@ -38911,7 +38911,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468721824, + "complete_object_locator": 6468725920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38920,12 +38920,12 @@ }, { "type_name": "CCSGO_SteamInputAction::CCallbackInternal_OnSteamInputConfigurationLoaded", - "vtable_address": 6466547448, + "vtable_address": 6466551576, "methods": [ - 6453770496, - 6453770816, - 6453714816, - 6453659264 + 6453772256, + 6453772576, + 6453716576, + 6453661024 ], "bases": [ { @@ -38959,7 +38959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468721344, + "complete_object_locator": 6468725440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38968,39 +38968,39 @@ }, { "type_name": "CCSGO_SteamInputActionLabel", - "vtable_address": 6466555016, + "vtable_address": 6466559144, "methods": [ 6443876544, - 6461535472, - 6453718048, - 6453730880, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719808, + 6453732640, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453669568, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453671328, + 6461506208, 6443844992, 6443848064, 6443844976, - 6453748480, + 6453750240, 6443848176, 6443845024, 6443848560, @@ -39009,12 +39009,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -39029,29 +39029,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717680, - 6453658048, + 6461548896, + 6453719440, + 6453659808, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -39087,7 +39087,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723176, + "complete_object_locator": 6468727272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39096,12 +39096,12 @@ }, { "type_name": "CCSGO_SteamInputActionLabel::CCallbackInternal_OnSteamInputConfigurationLoaded", - "vtable_address": 6466554976, + "vtable_address": 6466559104, "methods": [ - 6453770496, - 6453771040, - 6453714816, - 6453659344 + 6453772256, + 6453772800, + 6453716576, + 6453661104 ], "bases": [ { @@ -39135,7 +39135,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723312, + "complete_object_locator": 6468727408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39144,35 +39144,35 @@ }, { "type_name": "CCSGO_SteamInputGlyph", - "vtable_address": 6466554200, + "vtable_address": 6466558328, "methods": [ 6443876544, - 6461535472, - 6453718064, - 6453730912, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719824, + 6453732672, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453669888, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453671648, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -39185,12 +39185,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -39205,29 +39205,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717696, - 6453658192, + 6461548896, + 6453719456, + 6453659952, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -39263,7 +39263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468722904, + "complete_object_locator": 6468727000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39272,12 +39272,12 @@ }, { "type_name": "CCSGO_SteamInputGlyph::CCallbackInternal_OnSteamInputConfigurationLoaded", - "vtable_address": 6466554160, + "vtable_address": 6466558288, "methods": [ - 6453770496, - 6453771200, - 6453714816, - 6453659424 + 6453772256, + 6453772960, + 6453716576, + 6453661184 ], "bases": [ { @@ -39311,7 +39311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723040, + "complete_object_locator": 6468727136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39320,35 +39320,35 @@ }, { "type_name": "CCSGO_TeamIntroMenu", - "vtable_address": 6466439088, + "vtable_address": 6466443248, "methods": [ 6443876544, - 6461535472, - 6453006496, - 6453013072, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008112, + 6453014688, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -39361,12 +39361,12 @@ 6443913856, 6443821360, 6443848384, - 6453061648, - 6461505456, - 6461505088, - 6461526000, + 6453063264, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -39381,29 +39381,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006192, - 6452957040, + 6461548896, + 6453007808, + 6452958656, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -39481,7 +39481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697328, + "complete_object_locator": 6468701424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -39490,10 +39490,10 @@ }, { "type_name": "CCSGO_TeamIntroMenu", - "vtable_address": 6466439768, + "vtable_address": 6466443928, "methods": [ - 6452955544, - 6452998848 + 6452957160, + 6453000464 ], "bases": [ { @@ -39569,7 +39569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697488, + "complete_object_locator": 6468701584, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -39578,9 +39578,9 @@ }, { "type_name": "CCSGO_TeamIntroMenu", - "vtable_address": 6466439792, + "vtable_address": 6466443952, "methods": [ - 6453010304 + 6453011920 ], "bases": [ { @@ -39656,7 +39656,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697528, + "complete_object_locator": 6468701624, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -39665,35 +39665,35 @@ }, { "type_name": "CCSGO_TeamSelectMenu", - "vtable_address": 6466439968, + "vtable_address": 6466444128, "methods": [ 6443876544, - 6461535472, - 6453006512, - 6453013104, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008128, + 6453014720, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -39706,12 +39706,12 @@ 6443913856, 6443821360, 6443848384, - 6453061904, - 6461505456, - 6461505088, - 6461526000, + 6453063520, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -39726,29 +39726,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006208, - 6452957280, + 6461548896, + 6453007824, + 6452958896, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -39812,7 +39812,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697568, + "complete_object_locator": 6468701664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -39821,10 +39821,10 @@ }, { "type_name": "CCSGO_TeamSelectMenu", - "vtable_address": 6466440648, + "vtable_address": 6466444808, "methods": [ - 6452955556, - 6452999536 + 6452957172, + 6453001152 ], "bases": [ { @@ -39886,7 +39886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697720, + "complete_object_locator": 6468701816, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -39895,35 +39895,35 @@ }, { "type_name": "CCSGO_TimeSlider", - "vtable_address": 6466567536, + "vtable_address": 6466571664, "methods": [ 6443876544, - 6461535472, - 6453897872, - 6453901296, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899632, + 6453903056, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6453886848, - 6461503872, - 6453888256, + 6461537648, + 6461547232, + 6453888608, + 6461506064, + 6453890016, 6443844992, 6443848064, 6443844976, @@ -39936,12 +39936,12 @@ 6443913856, 6443821360, 6443848384, - 6453914976, - 6461505456, - 6461505088, - 6461526000, + 6453916736, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -39956,38 +39956,38 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897616, - 6453886032, + 6461548896, + 6453899376, + 6453887792, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453908016, - 6453896128, - 6453896704, - 6453916032, - 6453899232, - 6453914320, - 6453897200 + 6453909776, + 6453897888, + 6453898464, + 6453917792, + 6453900992, + 6453916080, + 6453898960 ], "bases": [ { @@ -40063,7 +40063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726856, + "complete_object_locator": 6468730952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -40072,9 +40072,9 @@ }, { "type_name": "CCSGO_TimeSlider", - "vtable_address": 6466568272, + "vtable_address": 6466572400, "methods": [ - 6453897168 + 6453898928 ], "bases": [ { @@ -40150,7 +40150,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727016, + "complete_object_locator": 6468731112, "offset": 128, "constructor_displacement": 0, "class_attributes": 1 @@ -40159,35 +40159,35 @@ }, { "type_name": "CCSGO_TooltipPanel", - "vtable_address": 6466441688, + "vtable_address": 6466445848, "methods": [ 6443876544, - 6461535472, - 6453006528, - 6453013136, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008144, + 6453014752, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6452969984, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6452971600, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -40200,12 +40200,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -40220,29 +40220,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006224, - 6452957344, + 6461548896, + 6453007840, + 6452958960, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -40278,7 +40278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468697896, + "complete_object_locator": 6468701992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40287,35 +40287,35 @@ }, { "type_name": "CCSGO_UI_Spinner", - "vtable_address": 6466443128, + "vtable_address": 6466447288, "methods": [ 6443876544, - 6461535472, - 6453006544, - 6453013168, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008160, + 6453014784, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453025824, - 6453025952, - 6461536080, - 6461536928, - 6461538896, - 6453026000, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453027440, + 6453027568, + 6461538272, + 6461539120, + 6461541088, + 6453027616, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6452972800, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6452974416, 6443844992, 6443848064, 6443844976, @@ -40328,12 +40328,12 @@ 6443913856, 6443821360, 6443848384, - 6453062112, - 6461505456, - 6461505088, - 6461526000, + 6453063728, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -40348,32 +40348,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006240, - 6452957408, + 6461548896, + 6453007856, + 6452959024, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453023200 + 6453024816 ], "bases": [ { @@ -40407,7 +40407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468698768, + "complete_object_locator": 6468702864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40416,35 +40416,35 @@ }, { "type_name": "CCSGO_UI_TooltipManager", - "vtable_address": 6466443848, + "vtable_address": 6466448008, "methods": [ 6443876544, - 6461535472, - 6453006560, - 6453013200, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008176, + 6453014816, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -40457,12 +40457,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -40477,32 +40477,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006256, - 6452957472, + 6461548896, + 6453007872, + 6452959088, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456655456 + 6456657232 ], "bases": [ { @@ -40550,7 +40550,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468698904, + "complete_object_locator": 6468703000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40559,35 +40559,35 @@ }, { "type_name": "CCSGO_VideoSettingsScreen", - "vtable_address": 6466445544, + "vtable_address": 6466449704, "methods": [ 6443876544, - 6461535472, - 6453006576, - 6453013232, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008192, + 6453014848, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6453025440, - 6453025520, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6453027056, + 6453027136, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -40600,12 +40600,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -40620,29 +40620,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006272, - 6452957536, + 6461548896, + 6453007888, + 6452959152, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -40678,7 +40678,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468699144, + "complete_object_locator": 6468703240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40687,35 +40687,35 @@ }, { "type_name": "CCSGO_VoiceNotice", - "vtable_address": 6466542904, + "vtable_address": 6466547032, "methods": [ 6443876544, - 6461535472, - 6453718080, - 6453730944, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719840, + 6453732704, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -40728,12 +40728,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -40748,29 +40748,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717712, - 6453658304, + 6461548896, + 6453719472, + 6453660064, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -40806,7 +40806,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719800, + "complete_object_locator": 6468723896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40815,35 +40815,35 @@ }, { "type_name": "CCSGO_WeaponSelectionView", - "vtable_address": 6466548248, + "vtable_address": 6466552376, "methods": [ 6443876544, - 6461535472, - 6453718096, - 6453730976, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453719856, + 6453732736, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -40856,12 +40856,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -40869,36 +40869,36 @@ 6443801792, 6443801808, 6443847696, - 6453748720, + 6453750480, 6443848160, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453717728, - 6453658368, + 6461548896, + 6453719488, + 6453660128, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -40934,7 +40934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468721960, + "complete_object_locator": 6468726056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40943,32 +40943,32 @@ }, { "type_name": "CCSGO_WingmanIntroCounterTerroristPosition", - "vtable_address": 6465367768, + "vtable_address": 6465371928, "methods": [ 6445466896, 6447875056, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -40977,25 +40977,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447897616, - 6447913344, - 6447915808, + 6460060080, + 6447899184, + 6447914912, + 6447917376, 6443799760, - 6447898432, - 6450497856, + 6447900000, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -41012,13 +41012,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -41026,39 +41026,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -41072,33 +41072,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -41126,34 +41126,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -41163,7 +41163,7 @@ 6444207072, 6444190512, 6443887696, - 6447897280 + 6447898848 ], "bases": [ { @@ -41239,7 +41239,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468436176, + "complete_object_locator": 6468440272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -41248,32 +41248,32 @@ }, { "type_name": "CCSGO_WingmanIntroTerroristPosition", - "vtable_address": 6465366008, + "vtable_address": 6465370168, "methods": [ 6445466896, 6447875168, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -41282,25 +41282,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447897632, - 6447913360, - 6447915856, + 6460060080, + 6447899200, + 6447914928, + 6447917424, 6443799760, - 6447898480, - 6450497856, + 6447900048, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -41317,13 +41317,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -41331,39 +41331,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -41377,33 +41377,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -41431,34 +41431,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -41468,7 +41468,7 @@ 6444207072, 6444190512, 6443887696, - 6447897280 + 6447898848 ], "bases": [ { @@ -41544,7 +41544,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468436016, + "complete_object_locator": 6468440112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -41553,11 +41553,11 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 6465278632, + "vtable_address": 6465282736, "methods": [ 6447730672, 6447730880, - 6449663808, + 6449665376, 6447731792, 6447730800, 6447730608, @@ -41566,29 +41566,29 @@ 6447730736, 6447730640, 6447730656, - 6449589744, + 6449591312, 6447732528, 6447732192, - 6450203456, - 6450203440, + 6450205024, + 6450205008, 6447732816, - 6449525344, + 6449526912, 6447730592, 6447731056, 6447731072, 6447731856, 6447731872, - 6450272592, - 6449589760, + 6450274160, + 6449591328, 6447732160, - 6450250528, - 6449569104, - 6449581536, + 6450252096, + 6449570672, + 6449583104, 6447732944, - 6450208160, + 6450209728, 6447731088, - 6449626528, - 6449568928 + 6449628096, + 6449570496 ], "bases": [ { @@ -41776,7 +41776,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468425848, + "complete_object_locator": 6468429944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -41785,7 +41785,7 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 6465278912, + "vtable_address": 6465283016, "methods": [ 6447727256, 6447727268, @@ -41802,20 +41802,20 @@ 6447732752, 6447731824, 6447727376, - 6449589728, - 6449514640, + 6449591296, + 6449516208, 6447730960, 6447732208, - 6449514624, - 6449581584, - 6449514656, - 6449721584, + 6449516192, + 6449583152, + 6449516224, + 6449723152, 6447732656, 6447732704, 6447732736, 6447732928, 6447731040, - 6449531888 + 6449533456 ], "bases": [ { @@ -42003,7 +42003,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468426080, + "complete_object_locator": 6468430176, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -42012,7 +42012,7 @@ }, { "type_name": "CCSGameModeRules", - "vtable_address": 6465298624, + "vtable_address": 6465302696, "methods": [ 6447785744, 6447746496 @@ -42020,7 +42020,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468427920, + "complete_object_locator": 6468432016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42029,7 +42029,7 @@ }, { "type_name": "CCSGameModeRules_ArmsRace", - "vtable_address": 6465298672, + "vtable_address": 6465302744, "methods": [ 6447785792, 6447746656 @@ -42052,7 +42052,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428168, + "complete_object_locator": 6468432264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42061,7 +42061,7 @@ }, { "type_name": "CCSGameModeRules_Deathmatch", - "vtable_address": 6465298696, + "vtable_address": 6465302768, "methods": [ 6447785840, 6447746960 @@ -42084,7 +42084,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428296, + "complete_object_locator": 6468432392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42093,7 +42093,7 @@ }, { "type_name": "CCSGameModeRules_Noop", - "vtable_address": 6465298648, + "vtable_address": 6465302720, "methods": [ 6447785888, 6447747136 @@ -42116,7 +42116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428040, + "complete_object_locator": 6468432136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42125,10 +42125,10 @@ }, { "type_name": "CCSHitboxSystem", - "vtable_address": 6465639048, + "vtable_address": 6465643224, "methods": [ - 6448331104, - 6448328304 + 6448332672, + 6448329872 ], "bases": [ { @@ -42148,7 +42148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468478400, + "complete_object_locator": 6468482496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42157,12 +42157,12 @@ }, { "type_name": "CCSHudWeaponSelection", - "vtable_address": 6466846816, + "vtable_address": 6466850928, "methods": [ 6443748576, 6443748592, 6443748608, - 6451475376, + 6451476960, 6443748640, 6443748656, 6443748672, @@ -42215,47 +42215,47 @@ 6443749424, 6443749440, 6443749456, - 6456570864, + 6456572640, 6443749488, - 6456560400, - 6456551680, - 6456573520, - 6456568960, - 6451544016, - 6451511312, - 6456552272, - 6456557632, - 6456557824, - 6456571056, - 6456562608, - 6456570352, - 6451476928, - 6451479136, - 6451527072, - 6456570112, - 6456562512, - 6451543200, - 6451543328, - 6456572256, - 6456572272, - 6456572288, - 6456572304, - 6456572688, - 6456572912, - 6456573136, - 6451543168, - 6456571680, - 6451543120, - 6451521040, - 6451495520, - 6456562656, - 6456555184, + 6456562176, + 6456553456, + 6456575296, + 6456570736, + 6451545600, + 6451512896, 6456554048, - 6456556496, - 6456555376, - 6456552912, - 6456562624, - 6456570960 + 6456559408, + 6456559600, + 6456572832, + 6456564384, + 6456572128, + 6451478512, + 6451480720, + 6451528656, + 6456571888, + 6456564288, + 6451544784, + 6451544912, + 6456574032, + 6456574048, + 6456574064, + 6456574080, + 6456574464, + 6456574688, + 6456574912, + 6451544752, + 6456573456, + 6451544704, + 6451522624, + 6451497104, + 6456564432, + 6456556960, + 6456555824, + 6456558272, + 6456557152, + 6456554688, + 6456564400, + 6456572736 ], "bases": [ { @@ -42303,7 +42303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804008, + "complete_object_locator": 6468808104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42312,14 +42312,14 @@ }, { "type_name": "CCSIconScene", - "vtable_address": 6466464976, + "vtable_address": 6466469104, "methods": [ - 6453195088 + 6453196704 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468702848, + "complete_object_locator": 6468706944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42328,21 +42328,21 @@ }, { "type_name": "CCSInventoryManager", - "vtable_address": 6465633376, + "vtable_address": 6465637552, "methods": [ - 6448302576, - 6448310304, - 6448324224, - 6448293184, + 6448304144, + 6448311872, + 6448325792, + 6448294752, 6443748640, 6443748656, 6443748672, - 6448283360, - 6456088240, + 6448284928, + 6456090016, 6443748720, 6443748736, 6443748752, - 6456088608, + 6456090384, 6443748784, 6443748800, 6443748816, @@ -42386,29 +42386,29 @@ 6443749424, 6443749440, 6443749456, - 6448323104, + 6448324672, 6443749488, - 6448287728, - 6448276608, - 6448325952, - 6456194320, - 6456290416, - 6456140752, - 6448277248, - 6448289136, - 6448294640, - 6456418288, - 6448297584, - 6456141072, - 6456279456, - 6456397296, - 6456398928, - 6456417328, - 6456416864, - 6448297904, - 6448323680, - 6448295456, - 6448286816 + 6448289296, + 6448278176, + 6448327520, + 6456196096, + 6456292192, + 6456142528, + 6448278816, + 6448290704, + 6448296208, + 6456420064, + 6448299152, + 6456142848, + 6456281232, + 6456399072, + 6456400704, + 6456419104, + 6456418640, + 6448299472, + 6448325248, + 6448297024, + 6448288384 ], "bases": [ { @@ -42456,7 +42456,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468477808, + "complete_object_locator": 6468481904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42465,11 +42465,11 @@ }, { "type_name": "CCSItemIconGeneratorGameSystem", - "vtable_address": 6466464992, + "vtable_address": 6466469120, "methods": [ - 6453270688, + 6453272448, 6443748592, - 6453384272, + 6453386032, 6443748624, 6443748640, 6443748656, @@ -42479,7 +42479,7 @@ 6443748720, 6443748736, 6443748752, - 6453249920, + 6453251520, 6443748784, 6443748800, 6443748816, @@ -42488,13 +42488,13 @@ 6443748864, 6443748880, 6443748896, - 6453324416, + 6453326176, 6443748928, 6443748944, 6443748960, 6443748976, 6443748992, - 6453402208, + 6453403968, 6443749024, 6443749040, 6443749056, @@ -42512,7 +42512,7 @@ 6443749248, 6443749264, 6443749280, - 6453248368, + 6453249968, 6443749312, 6443749328, 6443749344, @@ -42523,11 +42523,11 @@ 6443749424, 6443749440, 6443749456, - 6453364560, + 6453366320, 6443749488, - 6453234944, - 6453195152, - 6453449136 + 6453236560, + 6453196768, + 6453450896 ], "bases": [ { @@ -42589,7 +42589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702968, + "complete_object_locator": 6468707064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -42598,9 +42598,9 @@ }, { "type_name": "CCSItemIconGeneratorGameSystem", - "vtable_address": 6466465488, + "vtable_address": 6466469616, "methods": [ - 6453200592, + 6453202208, 6445112144, 6445254448 ], @@ -42664,7 +42664,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468703200, + "complete_object_locator": 6468707296, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -42673,10 +42673,10 @@ }, { "type_name": "CCSItemIconGeneratorGameSystem", - "vtable_address": 6466465520, + "vtable_address": 6466469648, "methods": [ - 6453305296, - 6453401456 + 6453307056, + 6453403216 ], "bases": [ { @@ -42738,7 +42738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468703240, + "complete_object_locator": 6468707336, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -42747,7 +42747,7 @@ }, { "type_name": "CCSMinimapCreatorGameSystem", - "vtable_address": 6465333736, + "vtable_address": 6465337800, "methods": [ 6443748576, 6443748592, @@ -42843,7 +42843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431424, + "complete_object_locator": 6468435520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42852,13 +42852,13 @@ }, { "type_name": "CCSModeManager", - "vtable_address": 6466270520, + "vtable_address": 6466274632, "methods": [ - 6452060336, - 6452060496, - 6452060800, - 6452060480, - 6452060960 + 6452061920, + 6452062080, + 6452062384, + 6452062064, + 6452062544 ], "bases": [ { @@ -42878,7 +42878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648176, + "complete_object_locator": 6468652272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42887,50 +42887,50 @@ }, { "type_name": "CCSObserver_CameraServices", - "vtable_address": 6465641056, - "methods": [ - 6448385856, - 6448354416, - 6448357792, - 6448341616, - 6449910944, - 6448389680, - 6448342816, - 6448373344, - 6448391360, - 6449915120, - 6449914192, - 6448390320, - 6449910800, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6449914496, - 6449913264, - 6449910624, - 6449908272, - 6449935936, - 6449914512, - 6448379600, - 6448381184, - 6448359024, - 6448354160, - 6448355088, - 6448345920, - 6448345280, - 6448354512, - 6449877408, - 6448387712, - 6449956272, - 6449830416, - 6448355424, - 6448354976, - 6448355408, - 6449949168, - 6449951840, - 6448354992, - 6448359120 + "vtable_address": 6465645232, + "methods": [ + 6448387424, + 6448355984, + 6448359360, + 6448343184, + 6449912512, + 6448391248, + 6448344384, + 6448374912, + 6448392928, + 6449916688, + 6449915760, + 6448391888, + 6449912368, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6449916064, + 6449914832, + 6449912192, + 6449909840, + 6449937504, + 6449916080, + 6448381168, + 6448382752, + 6448360592, + 6448355728, + 6448356656, + 6448347488, + 6448346848, + 6448356080, + 6449878976, + 6448389280, + 6449957840, + 6449831984, + 6448356992, + 6448356544, + 6448356976, + 6449950736, + 6449953408, + 6448356560, + 6448360688 ], "bases": [ { @@ -42978,7 +42978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468479320, + "complete_object_locator": 6468483416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42987,54 +42987,54 @@ }, { "type_name": "CCSObserver_MovementServices", - "vtable_address": 6465641816, - "methods": [ - 6448385904, - 6448354432, - 6448357808, - 6448341728, - 6449911104, - 6449931184, - 6449821056, - 6448373344, - 6449951856, - 6448379744, - 6448379568, - 6448390304, - 6449910816, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448381232, - 6448391328, - 6448391344, - 6448384192, - 6448380400, - 6448346752, - 6449916816, - 6448358112, - 6448389728, - 6448389840, - 6449935552, - 6449946672, - 6448352496, - 6448352720, - 6448390928, - 6449943312, - 6449852576, - 6448389872, - 6448346768, - 6449905664, - 6449856160, - 6448343488 + "vtable_address": 6465645992, + "methods": [ + 6448387472, + 6448356000, + 6448359376, + 6448343296, + 6449912672, + 6449932752, + 6449822624, + 6448374912, + 6449953424, + 6448381312, + 6448381136, + 6448391872, + 6449912384, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448382800, + 6448392896, + 6448392912, + 6448385760, + 6448381968, + 6448348320, + 6449918384, + 6448359680, + 6448391296, + 6448391408, + 6449937120, + 6449948240, + 6448354064, + 6448354288, + 6448392496, + 6449944880, + 6449854144, + 6448391440, + 6448348336, + 6449907232, + 6449857728, + 6448345056 ], "bases": [ { @@ -43068,7 +43068,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468479184, + "complete_object_locator": 6468483280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43077,59 +43077,59 @@ }, { "type_name": "CCSObserver_ObserverServices", - "vtable_address": 6465641400, - "methods": [ - 6448385952, - 6448354448, - 6449983056, - 6448341936, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379632, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448381280, - 6448357104, - 6449989104, - 6448357344, - 6449982160, - 6449969584, - 6448389536, - 6448390896, - 6449994448, - 6448387824, - 6448352128, - 6448355520, - 6448369104, - 6448346784, - 6448353376, - 6448359664, - 6448360096, - 6449986496, - 6448371424, - 6448357056, - 6448369056, - 6449980976, - 6448354368, - 6449966736, - 6448343776, - 6449969744, - 6448359824 + "vtable_address": 6465645576, + "methods": [ + 6448387520, + 6448356016, + 6449984624, + 6448343504, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381200, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448382848, + 6448358672, + 6449990672, + 6448358912, + 6449983728, + 6449971152, + 6448391104, + 6448392464, + 6449996016, + 6448389392, + 6448353696, + 6448357088, + 6448370672, + 6448348352, + 6448354944, + 6448361232, + 6448361664, + 6449988064, + 6448372992, + 6448358624, + 6448370624, + 6449982544, + 6448355936, + 6449968304, + 6448345344, + 6449971312, + 6448361392 ], "bases": [ { @@ -43163,7 +43163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468478960, + "complete_object_locator": 6468483056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43172,35 +43172,35 @@ }, { "type_name": "CCSObserver_UseServices", - "vtable_address": 6465642880, - "methods": [ - 6448386000, - 6448354464, - 6449983072, - 6448342144, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448381328, - 6449985376, - 6448359008 + "vtable_address": 6465647056, + "methods": [ + 6448387568, + 6448356032, + 6449984640, + 6448343712, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448382896, + 6449986944, + 6448360576 ], "bases": [ { @@ -43234,7 +43234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468479464, + "complete_object_locator": 6468483560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43243,11 +43243,11 @@ }, { "type_name": "CCSPanoramaPrewarmSystem", - "vtable_address": 6466268528, + "vtable_address": 6466272640, "methods": [ - 6452058304, + 6452059888, 6443748592, - 6452058464, + 6452060048, 6443748624, 6443748640, 6443748656, @@ -43301,11 +43301,11 @@ 6443749424, 6443749440, 6443749456, - 6452058272, + 6452059856, 6443749488, - 6452058256, - 6452058560, - 6452058240 + 6452059840, + 6452060144, + 6452059824 ], "bases": [ { @@ -43353,7 +43353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648304, + "complete_object_locator": 6468652400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -43362,9 +43362,9 @@ }, { "type_name": "CCSPanoramaPrewarmSystem", - "vtable_address": 6466269048, + "vtable_address": 6466273136, "methods": [ - 6452058368 + 6452059952 ], "bases": [ { @@ -43412,7 +43412,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648488, + "complete_object_locator": 6468652584, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -43421,50 +43421,50 @@ }, { "type_name": "CCSPlayerBase_CameraServices", - "vtable_address": 6465640712, - "methods": [ - 6448386048, - 6448354480, - 6448357824, - 6448342256, - 6449910944, - 6448389680, - 6448342816, - 6448373344, - 6448391360, - 6449915120, - 6449914192, - 6448390320, - 6449910800, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6449914496, - 6449913264, - 6449910624, - 6449908272, - 6449935936, - 6449914512, - 6448379600, - 6448493424, - 6448359024, - 6448354304, - 6449884880, - 6448345920, - 6448345280, - 6448354512, - 6449877408, - 6448387712, - 6449956272, - 6449830416, - 6448355424, - 6448354976, - 6448355408, - 6449949168, - 6449951840, - 6448354992, - 6448359120 + "vtable_address": 6465644888, + "methods": [ + 6448387616, + 6448356048, + 6448359392, + 6448343824, + 6449912512, + 6448391248, + 6448344384, + 6448374912, + 6448392928, + 6449916688, + 6449915760, + 6448391888, + 6449912368, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6449916064, + 6449914832, + 6449912192, + 6449909840, + 6449937504, + 6449916080, + 6448381168, + 6448494992, + 6448360592, + 6448355872, + 6449886448, + 6448347488, + 6448346848, + 6448356080, + 6449878976, + 6448389280, + 6449957840, + 6449831984, + 6448356992, + 6448356544, + 6448356976, + 6449950736, + 6449953408, + 6448356560, + 6448360688 ], "bases": [ { @@ -43498,7 +43498,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468478736, + "complete_object_locator": 6468482832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43507,33 +43507,33 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 6465655744, + "vtable_address": 6465659920, "methods": [ 6445466896, - 6448402048, - 6448846816, - 6448867008, + 6448403616, + 6448848384, + 6448868576, 6444197472, - 6450410112, - 6448500832, - 6450413456, - 6448487456, - 6450586832, - 6448814416, - 6448507008, - 6450580640, + 6450411680, + 6448502400, + 6450415024, + 6448489024, + 6450588400, + 6448815984, + 6448508576, + 6450582208, 6443817760, 6443797616, - 6448489840, + 6448491408, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6448979920, - 6450573696, - 6450573648, - 6448494592, + 6448981488, + 6450575264, + 6450575216, + 6448496160, 6443844048, 6443844080, 6443844112, @@ -43541,25 +43541,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448432400, - 6448493472, - 6448496832, + 6460060080, + 6448433968, + 6448495040, + 6448498400, 6443799760, - 6448437456, - 6448440192, + 6448439024, + 6448441760, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -43576,13 +43576,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -43590,39 +43590,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6448972992, - 6448977600, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6448974560, + 6448979168, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -43636,38 +43636,38 @@ 6444072288, 6443799728, 6443838576, - 6448917072, - 6450599136, - 6450537248, - 6448500016, + 6448918640, + 6450600704, + 6450538816, + 6448501584, 6443869216, - 6450599344, - 6450580256, - 6448500544, + 6450600912, + 6450581824, + 6448502112, 6444168384, 6444234384, - 6448990704, + 6448992272, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6448987040, + 6450417520, + 6448988608, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, 6443837808, - 6448471984, + 6448473552, 6443838624, 6443869120, 6443837312, @@ -43690,34 +43690,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, - 6449067008, - 6448500528, + 6449068560, + 6448502096, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6448480496, + 6451211136, + 6448482064, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -43727,28 +43727,28 @@ 6444207072, 6444190512, 6443887696, - 6448418768, - 6448420416, - 6448490400, - 6448990080, - 6448483856, - 6448483888, - 6448483872, - 6448483904, - 6448478864, - 6448472176, - 6448471840, - 6448440096, - 6449041280, - 6448480560, - 6448480576, + 6448420336, + 6448421984, + 6448491968, + 6448991648, + 6448485424, + 6448485456, + 6448485440, + 6448485472, + 6448480432, + 6448473744, + 6448473408, + 6448441664, + 6449042832, + 6448482128, + 6448482144, + 6448485504, + 6448482352, 6448483936, - 6448480784, - 6448482368, - 6448976800, - 6448967856, - 6448489888, - 6448489424 + 6448978368, + 6448969424, + 6448491456, + 6448490992 ], "bases": [ { @@ -43824,7 +43824,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468481696, + "complete_object_locator": 6468485792, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -43833,10 +43833,10 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 6465657672, + "vtable_address": 6465661848, "methods": [ - 6448401860, - 6448430160 + 6448403428, + 6448431728 ], "bases": [ { @@ -43912,7 +43912,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482032, + "complete_object_locator": 6468486128, "offset": 2024, "constructor_displacement": 0, "class_attributes": 1 @@ -43921,14 +43921,14 @@ }, { "type_name": "CCSPlayerControllerGameSystem", - "vtable_address": 6465648000, + "vtable_address": 6465652176, "methods": [ 6443748576, 6443748592, 6443748608, - 6448393392, + 6448394960, 6443748640, - 6448393408, + 6448394976, 6443748672, 6443748688, 6443748704, @@ -43979,11 +43979,11 @@ 6443749424, 6443749440, 6443749456, - 6448393360, + 6448394928, 6443749488, - 6448393344, - 6448393600, - 6448393328 + 6448394912, + 6448395168, + 6448394896 ], "bases": [ { @@ -44017,7 +44017,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468480944, + "complete_object_locator": 6468485040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44026,22 +44026,22 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices", - "vtable_address": 6465693040, - "methods": [ - 6448711888, - 6448688176, - 6449983024, - 6448666272, - 6448702256, - 6448403872, - 6448507088, - 6448482784, - 6448490416, - 6448703376, - 6448489408, - 6448482352, - 6448478912, - 6448706256 + "vtable_address": 6465697216, + "methods": [ + 6448713456, + 6448689744, + 6449984592, + 6448667840, + 6448703824, + 6448405440, + 6448508656, + 6448484352, + 6448491984, + 6448704944, + 6448490976, + 6448483920, + 6448480480, + 6448707824 ], "bases": [ { @@ -44061,7 +44061,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468487792, + "complete_object_locator": 6468491888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44070,13 +44070,13 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices::NetworkVar_m_matchStats", - "vtable_address": 6465692992, + "vtable_address": 6465697168, "methods": [ - 6447915904, - 6448700016, - 6447911296, - 6448700080, - 6447910992 + 6447917472, + 6448701584, + 6447912864, + 6448701648, + 6447912560 ], "bases": [ { @@ -44110,7 +44110,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468488280, + "complete_object_locator": 6468492376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44119,22 +44119,22 @@ }, { "type_name": "CCSPlayerController_DamageServices", - "vtable_address": 6465659104, - "methods": [ - 6448496880, - 6448688192, - 6449983024, - 6448402224, - 6448482976, - 6448403872, - 6448507088, - 6448482784, - 6448490416, - 6448489824, - 6448489408, - 6448482352, - 6448478912, - 6448706288 + "vtable_address": 6465663280, + "methods": [ + 6448498448, + 6448689760, + 6449984592, + 6448403792, + 6448484544, + 6448405440, + 6448508656, + 6448484352, + 6448491984, + 6448491392, + 6448490976, + 6448483920, + 6448480480, + 6448707856 ], "bases": [ { @@ -44154,7 +44154,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482952, + "complete_object_locator": 6468487048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44163,22 +44163,22 @@ }, { "type_name": "CCSPlayerController_InGameMoneyServices", - "vtable_address": 6465693160, - "methods": [ - 6448711936, - 6448688208, - 6449983024, - 6448666368, - 6448482976, - 6448403872, - 6448507088, - 6448482784, - 6448490416, - 6448489824, - 6448489408, - 6448482352, - 6448478912, - 6448706320 + "vtable_address": 6465697336, + "methods": [ + 6448713504, + 6448689776, + 6449984592, + 6448667936, + 6448484544, + 6448405440, + 6448508656, + 6448484352, + 6448491984, + 6448491392, + 6448490976, + 6448483920, + 6448480480, + 6448707888 ], "bases": [ { @@ -44198,7 +44198,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468487536, + "complete_object_locator": 6468491632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44207,22 +44207,22 @@ }, { "type_name": "CCSPlayerController_InventoryServices", - "vtable_address": 6465693328, - "methods": [ - 6448711984, - 6448688224, - 6449983024, - 6448666576, - 6448482976, - 6448403872, - 6448740448, - 6448482784, - 6448490416, - 6448489824, - 6448489408, - 6448482352, - 6448478912, - 6448706352 + "vtable_address": 6465697504, + "methods": [ + 6448713552, + 6448689792, + 6449984592, + 6448668144, + 6448484544, + 6448405440, + 6448742016, + 6448484352, + 6448491984, + 6448491392, + 6448490976, + 6448483920, + 6448480480, + 6448707920 ], "bases": [ { @@ -44242,7 +44242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468487664, + "complete_object_locator": 6468491760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44251,32 +44251,32 @@ }, { "type_name": "CCSPlayerInventory", - "vtable_address": 6465633176, - "methods": [ - 6448322096, - 6448322352, - 6448322224, - 6456392288, - 6456392960, - 6448276672, - 6448286304, - 6448297808, - 6448296224, - 6448307312, - 6448287744, - 6448291296, - 6448298592, - 6456392992, - 6448310144, - 6456325552, - 6448325408, - 6456395904, - 6448310160, - 6448310288, - 6448325824, - 6448306816, - 6448307296, - 6456279248 + "vtable_address": 6465637352, + "methods": [ + 6448323664, + 6448323920, + 6448323792, + 6456394064, + 6456394736, + 6448278240, + 6448287872, + 6448299376, + 6448297792, + 6448308880, + 6448289312, + 6448292864, + 6448300160, + 6456394768, + 6448311712, + 6456327328, + 6448326976, + 6456397680, + 6448311728, + 6448311856, + 6448327392, + 6448308384, + 6448308864, + 6456281024 ], "bases": [ { @@ -44310,7 +44310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468477504, + "complete_object_locator": 6468481600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44319,33 +44319,33 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices", - "vtable_address": 6465643520, - "methods": [ - 6448386096, - 6448354496, - 6448357840, - 6448342368, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448381376 + "vtable_address": 6465647696, + "methods": [ + 6448387664, + 6448356064, + 6448359408, + 6448343936, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448382944 ], "bases": [ { @@ -44365,7 +44365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468479688, + "complete_object_locator": 6468483784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44374,12 +44374,12 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisMatch", - "vtable_address": 6465643440, + "vtable_address": 6465647616, "methods": [ - 6448386240, - 6448371136, - 6448371344, - 6448371264 + 6448387808, + 6448372704, + 6448372912, + 6448372832 ], "bases": [ { @@ -44399,7 +44399,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468480552, + "complete_object_locator": 6468484648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44408,12 +44408,12 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisRound", - "vtable_address": 6465643480, + "vtable_address": 6465647656, "methods": [ - 6448386240, - 6448371184, - 6448371344, - 6448371280 + 6448387808, + 6448372752, + 6448372912, + 6448372848 ], "bases": [ { @@ -44433,7 +44433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468480680, + "complete_object_locator": 6468484776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44442,33 +44442,33 @@ }, { "type_name": "CCSPlayer_BulletServices", - "vtable_address": 6465657728, + "vtable_address": 6465661904, "methods": [ - 6448496928, - 6448432416, - 6449983040, - 6448402560, - 6448372896, - 6448499888, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448493488 + 6448498496, + 6448433984, + 6449984608, + 6448404128, + 6448374464, + 6448501456, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448495056 ], "bases": [ { @@ -44488,7 +44488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482440, + "complete_object_locator": 6468486536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44497,33 +44497,33 @@ }, { "type_name": "CCSPlayer_BuyServices", - "vtable_address": 6465658144, + "vtable_address": 6465662320, "methods": [ - 6448496976, - 6448432432, - 6449983040, - 6448402656, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448493520 + 6448498544, + 6448434000, + 6449984608, + 6448404224, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448495088 ], "bases": [ { @@ -44543,7 +44543,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482696, + "complete_object_locator": 6468486792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44552,50 +44552,50 @@ }, { "type_name": "CCSPlayer_CameraServices", - "vtable_address": 6465658680, - "methods": [ - 6448497024, - 6448432448, - 6448440208, - 6448403008, - 6448482800, - 6448389680, - 6448342816, - 6448373344, - 6448391360, - 6449915120, - 6449914192, - 6448390320, - 6449910800, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6449914496, - 6449913264, - 6449910624, - 6449908272, - 6449935936, - 6449914512, - 6448379600, - 6448493552, - 6448359024, - 6448354304, - 6449884880, - 6448345920, - 6448408336, - 6448354512, - 6449877408, - 6448387712, - 6448507440, - 6449830416, - 6448355424, - 6448354976, - 6448355408, - 6449949168, - 6449951840, - 6448354992, - 6448440720 + "vtable_address": 6465662856, + "methods": [ + 6448498592, + 6448434016, + 6448441776, + 6448404576, + 6448484368, + 6448391248, + 6448344384, + 6448374912, + 6448392928, + 6449916688, + 6449915760, + 6448391888, + 6449912368, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6449916064, + 6449914832, + 6449912192, + 6449909840, + 6449937504, + 6449916080, + 6448381168, + 6448495120, + 6448360592, + 6448355872, + 6449886448, + 6448347488, + 6448409904, + 6448356080, + 6449878976, + 6448389280, + 6448509008, + 6449831984, + 6448356992, + 6448356544, + 6448356976, + 6449950736, + 6449953408, + 6448356560, + 6448442288 ], "bases": [ { @@ -44643,7 +44643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482072, + "complete_object_locator": 6468486168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44652,33 +44652,33 @@ }, { "type_name": "CCSPlayer_DamageReactServices", - "vtable_address": 6465662320, - "methods": [ - 6448497072, - 6448432464, - 6449983040, - 6448403136, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448493600 + "vtable_address": 6465666496, + "methods": [ + 6448498640, + 6448434032, + 6449984608, + 6448404704, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448495168 ], "bases": [ { @@ -44698,7 +44698,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482824, + "complete_object_locator": 6468486920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44707,35 +44707,35 @@ }, { "type_name": "CCSPlayer_GlowServices", - "vtable_address": 6466207544, + "vtable_address": 6466211704, "methods": [ - 6451942080, - 6451872448, - 6449983040, - 6451773776, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6451927488, - 6451880816, - 6451881152 + 6451943664, + 6451874032, + 6449984608, + 6451775360, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6451929072, + 6451882400, + 6451882736 ], "bases": [ { @@ -44755,7 +44755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633792, + "complete_object_locator": 6468637888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44764,33 +44764,33 @@ }, { "type_name": "CCSPlayer_HostageServices", - "vtable_address": 6465662888, + "vtable_address": 6465667064, "methods": [ - 6448497120, - 6448432480, - 6449983040, - 6448403344, - 6448372896, - 6448499904, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448493632 + 6448498688, + 6448434048, + 6449984608, + 6448404912, + 6448374464, + 6448501472, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448495200 ], "bases": [ { @@ -44810,7 +44810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482568, + "complete_object_locator": 6468486664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44819,33 +44819,33 @@ }, { "type_name": "CCSPlayer_ItemServices", - "vtable_address": 6465658352, - "methods": [ - 6448497168, - 6448432496, - 6448440224, - 6448403552, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448493664 + "vtable_address": 6465662528, + "methods": [ + 6448498736, + 6448434064, + 6448441792, + 6448405120, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448495232 ], "bases": [ { @@ -44879,7 +44879,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468482216, + "complete_object_locator": 6468486312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44888,65 +44888,65 @@ }, { "type_name": "CCSPlayer_MovementServices", - "vtable_address": 6465673984, - "methods": [ - 6448625376, - 6448570544, - 6448578080, - 6448519968, - 6449911104, - 6448626912, - 6449821056, - 6448373344, - 6449951936, - 6449915136, - 6449914208, - 6448630512, - 6449910880, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6449936112, - 6448379616, - 6448379600, - 6448622240, - 6448641792, - 6448641808, - 6448625312, - 6448615504, - 6448346752, - 6448615392, - 6448578608, - 6448627376, - 6448627776, - 6448628720, - 6448634240, - 6448563376, - 6448563680, - 6448634192, - 6449943312, - 6448562368, - 6449935696, - 6448542112, - 6449905664, - 6449856160, - 6448532160, - 6448577824, - 6449948640, - 6448625824, - 6448577312, - 6448643040, - 6449912496, - 6449891648, - 6448627200, - 6448571056, - 6448571280, - 6448599152 + "vtable_address": 6465678160, + "methods": [ + 6448626944, + 6448572112, + 6448579648, + 6448521536, + 6449912672, + 6448628480, + 6449822624, + 6448374912, + 6449953504, + 6449916704, + 6449915776, + 6448632080, + 6449912448, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6449937680, + 6448381184, + 6448381168, + 6448623808, + 6448643360, + 6448643376, + 6448626880, + 6448617072, + 6448348320, + 6448616960, + 6448580176, + 6448628944, + 6448629344, + 6448630288, + 6448635808, + 6448564944, + 6448565248, + 6448635760, + 6449944880, + 6448563936, + 6449937264, + 6448543680, + 6449907232, + 6449857728, + 6448533728, + 6448579392, + 6449950208, + 6448627392, + 6448578880, + 6448644608, + 6449914064, + 6449893216, + 6448628768, + 6448572624, + 6448572848, + 6448600720 ], "bases": [ { @@ -44994,7 +44994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468485416, + "complete_object_locator": 6468489512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45003,33 +45003,33 @@ }, { "type_name": "CCSPlayer_PingServices", - "vtable_address": 6465680680, - "methods": [ - 6448625424, - 6448570560, - 6449983040, - 6448520208, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448622288 + "vtable_address": 6465684856, + "methods": [ + 6448626992, + 6448572128, + 6449984608, + 6448521776, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448623856 ], "bases": [ { @@ -45049,7 +45049,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468485656, + "complete_object_locator": 6468489752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45058,35 +45058,35 @@ }, { "type_name": "CCSPlayer_UseServices", - "vtable_address": 6465677864, - "methods": [ - 6448625472, - 6448570576, - 6449983072, - 6448520416, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448614736, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448622320, - 6448588912, - 6448359008 + "vtable_address": 6465682040, + "methods": [ + 6448627040, + 6448572144, + 6449984640, + 6448521984, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448616304, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448623888, + 6448590480, + 6448360576 ], "bases": [ { @@ -45120,7 +45120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468485280, + "complete_object_locator": 6468489376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45129,34 +45129,34 @@ }, { "type_name": "CCSPlayer_WaterServices", - "vtable_address": 6465674584, - "methods": [ - 6448625520, - 6448570592, - 6448578096, - 6448520528, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448641872, - 6448614752, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448622368, - 6448599168 + "vtable_address": 6465678760, + "methods": [ + 6448627088, + 6448572160, + 6448579664, + 6448522096, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448643440, + 6448616320, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448623936, + 6448600736 ], "bases": [ { @@ -45190,7 +45190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468485056, + "complete_object_locator": 6468489152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45199,47 +45199,47 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 6465691776, - "methods": [ - 6448712032, - 6448688240, - 6448692736, - 6448666672, - 6448702272, - 6448712864, - 6449964800, - 6448373344, - 6449994864, - 6448703824, - 6448703392, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448706384, - 6448718832, - 6448712192, - 6449983248, - 6448693376, - 6448671792, - 6448684736, - 6448714784, - 6448714208, - 6448703200, - 6448703216, - 6448702112, - 6448702144, - 6448701504, - 6449986400 + "vtable_address": 6465695952, + "methods": [ + 6448713600, + 6448689808, + 6448694304, + 6448668240, + 6448703840, + 6448714432, + 6449966368, + 6448374912, + 6449996432, + 6448705392, + 6448704960, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448707952, + 6448720400, + 6448713760, + 6449984816, + 6448694944, + 6448673360, + 6448686304, + 6448716352, + 6448715776, + 6448704768, + 6448704784, + 6448703680, + 6448703712, + 6448703072, + 6449987968 ], "bases": [ { @@ -45301,7 +45301,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468487136, + "complete_object_locator": 6468491232, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -45310,9 +45310,9 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 6465692096, + "vtable_address": 6465696272, "methods": [ - 6448700128 + 6448701696 ], "bases": [ { @@ -45374,7 +45374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468487456, + "complete_object_locator": 6468491552, "offset": 160, "constructor_displacement": 0, "class_attributes": 1 @@ -45383,10 +45383,10 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 6465692112, + "vtable_address": 6465696288, "methods": [ 6443926160, - 6448700240 + 6448701808 ], "bases": [ { @@ -45448,7 +45448,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468487496, + "complete_object_locator": 6468491592, "offset": 168, "constructor_displacement": 0, "class_attributes": 1 @@ -45457,21 +45457,21 @@ }, { "type_name": "CCSPortraitWorldSystem", - "vtable_address": 6466469344, + "vtable_address": 6466473472, "methods": [ 6443748576, 6443748592, 6443748608, - 6453250352, - 6453250464, + 6453251952, + 6453252064, 6443748656, 6443748672, 6443748688, - 6453249584, + 6453251184, 6443748720, 6443748736, 6443748752, - 6453249936, + 6453251536, 6443748784, 6443748800, 6443748816, @@ -45485,8 +45485,8 @@ 6443748944, 6443748960, 6443748976, - 6453224352, - 6453403936, + 6453225968, + 6453405696, 6443749024, 6443749040, 6443749056, @@ -45504,7 +45504,7 @@ 6443749248, 6443749264, 6443749280, - 6453249104, + 6453250704, 6443749312, 6443749328, 6443749344, @@ -45515,11 +45515,11 @@ 6443749424, 6443749440, 6443749456, - 6453364592, + 6453366352, 6443749488, - 6453234960, - 6453195216, - 6453449152 + 6453236576, + 6453196832, + 6453450912 ], "bases": [ { @@ -45553,7 +45553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468700976, + "complete_object_locator": 6468705072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45562,25 +45562,25 @@ }, { "type_name": "CCSPredictionEvent_AddAimPunch", - "vtable_address": 6464904640, - "methods": [ - 6445928800, - 6457189536, - 6445916720, - 6445918080, - 6445918160, - 6457189584, - 6457186560, - 6445918432, - 6445919552, - 6445918656, + "vtable_address": 6464908592, + "methods": [ + 6445929024, + 6457191728, + 6445917104, + 6445917840, + 6445918032, + 6457191776, + 6457188752, + 6445918048, + 6445919920, + 6445918768, 6443742160, - 6445919264, - 6457190896, - 6457192720, - 6445919568, - 6445920016, - 6445919728 + 6445919648, + 6457193088, + 6457194912, + 6445919952, + 6445920400, + 6445920112 ], "bases": [ { @@ -45614,7 +45614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298152, + "complete_object_locator": 6468302384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45623,25 +45623,25 @@ }, { "type_name": "CCSPredictionEvent_DamageTag", - "vtable_address": 6464900008, + "vtable_address": 6464903960, "methods": [ - 6445911216, - 6457189536, - 6445901232, - 6445901552, - 6445901616, - 6457189584, - 6457186560, - 6445901744, - 6445903152, - 6445902288, - 6443742160, - 6445902928, - 6457190896, - 6457192720, - 6445903184, - 6445903472, - 6445903392 + 6445911600, + 6457191728, + 6445901600, + 6445901712, + 6445901760, + 6457191776, + 6457188752, + 6445901776, + 6445902800, + 6445902064, + 6443742160, + 6445902592, + 6457193088, + 6457194912, + 6445903552, + 6445903600, + 6445903584 ], "bases": [ { @@ -45675,7 +45675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298288, + "complete_object_locator": 6468302520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45684,13 +45684,13 @@ }, { "type_name": "CCSReplayObserverHandler", - "vtable_address": 6465648640, + "vtable_address": 6465652816, "methods": [ 6443748576, 6443748592, 6443748608, 6443748624, - 6448394112, + 6448395680, 6443748656, 6443748672, 6443748688, @@ -45742,12 +45742,12 @@ 6443749424, 6443749440, 6443749456, - 6448393984, + 6448395552, 6443749488, - 6448393968, - 6448394128, - 6448393952, - 6448394016 + 6448395536, + 6448395696, + 6448395520, + 6448395584 ], "bases": [ { @@ -45781,7 +45781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468481216, + "complete_object_locator": 6468485312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45790,11 +45790,11 @@ }, { "type_name": "CCSSteamVideo", - "vtable_address": 6466318400, + "vtable_address": 6466322560, "methods": [ - 6452315792, + 6452317408, 6443748592, - 6452316176, + 6452317792, 6443748624, 6443748640, 6443748656, @@ -45819,7 +45819,7 @@ 6443748960, 6443748976, 6443748992, - 6452316272, + 6452317888, 6443749024, 6443749040, 6443749056, @@ -45848,11 +45848,11 @@ 6443749424, 6443749440, 6443749456, - 6452315760, + 6452317376, 6443749488, - 6452315744, - 6452324816, - 6452315728 + 6452317360, + 6452326432, + 6452317344 ], "bases": [ { @@ -45928,7 +45928,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468670792, + "complete_object_locator": 6468674888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -45937,10 +45937,10 @@ }, { "type_name": "CCSSteamVideo", - "vtable_address": 6466318896, + "vtable_address": 6466323056, "methods": [ - 6452315704, - 6452316288 + 6452317320, + 6452317904 ], "bases": [ { @@ -46016,7 +46016,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468670992, + "complete_object_locator": 6468675088, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -46025,12 +46025,12 @@ }, { "type_name": "CCSSteamVideo", - "vtable_address": 6466318920, + "vtable_address": 6466323080, "methods": [ - 6452062048, - 6452062064, - 6452062080, - 6452318320 + 6452063632, + 6452063648, + 6452063664, + 6452319936 ], "bases": [ { @@ -46106,7 +46106,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468671032, + "complete_object_locator": 6468675128, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -46115,9 +46115,9 @@ }, { "type_name": "CCSTraceFilterSimple", - "vtable_address": 6465677456, + "vtable_address": 6465681632, "methods": [ - 6448520640, + 6448522208, 6444234736 ], "bases": [ @@ -46166,7 +46166,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486320, + "complete_object_locator": 6468490416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46175,33 +46175,25 @@ }, { "type_name": "CCSUsrMsgPreMatchSayText", - "vtable_address": 6464925208, + "vtable_address": 6464929160, "methods": [ - 6446031104, - 6457189536, - 6446011232, - 6446012400, - 6446012544, - 6457189584, - 6457186560, - 6446012560, - 6446015648, - 6446013232, - 6443742160, - 6446014432, - 6457190896, - 6457192720, - 6446018672, - 6446020224, - 6446020208, - 6457187520, - 6446026768, - 6457187520, - 6446028160, - 6457187520, - 6446028464, - 6457187520, - 6446028240 + 6446030144, + 6457191728, + 6446011008, + 6446012384, + 6446012688, + 6457191776, + 6457188752, + 6446012864, + 6446016032, + 6446013616, + 6443742160, + 6446014816, + 6457193088, + 6457194912, + 6446019056, + 6446020608, + 6446020592 ], "bases": [ { @@ -46235,7 +46227,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354464, + "complete_object_locator": 6468358696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46244,25 +46236,25 @@ }, { "type_name": "CCSUsrMsg_AchievementEvent", - "vtable_address": 6465072776, + "vtable_address": 6465076872, "methods": [ - 6446620960, - 6457189536, - 6446616400, - 6446617312, - 6446617632, - 6457189584, - 6457186560, - 6446617648, - 6446618784, - 6446617776, + 6446621344, + 6457191728, + 6446616864, + 6446617968, + 6446618016, + 6457191776, + 6457188752, + 6446618032, + 6446619168, + 6446618160, 6443742160, - 6446618384, - 6457190896, - 6457192720, - 6446618800, - 6446619120, - 6446619104 + 6446618768, + 6457193088, + 6457194912, + 6446619184, + 6446619504, + 6446619488 ], "bases": [ { @@ -46296,7 +46288,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354600, + "complete_object_locator": 6468358832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46305,31 +46297,33 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney", - "vtable_address": 6465021136, - "methods": [ - 6446522480, - 6457189536, - 6446511936, - 6446512256, - 6446512304, - 6457189584, - 6457186560, - 6446512448, - 6446513936, - 6446513008, - 6443742160, - 6446513760, - 6457190896, - 6457192720, - 6446513984, - 6446514464, - 6446514384, - 6457187520, - 6446517072, - 6457187520, - 6446517520, - 6457187520, - 6446517904 + "vtable_address": 6465025232, + "methods": [ + 6446522848, + 6457191728, + 6446510528, + 6446512384, + 6446512416, + 6457191776, + 6457188752, + 6446512432, + 6446513440, + 6446512736, + 6443742160, + 6446513264, + 6457193088, + 6457194912, + 6446514352, + 6446514768, + 6446514752, + 6457189712, + 6446518048, + 6457189712, + 6446517776, + 6457189712, + 6446518208, + 6457189712, + 6446522992 ], "bases": [ { @@ -46363,7 +46357,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354736, + "complete_object_locator": 6468358968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46372,25 +46366,25 @@ }, { "type_name": "CCSUsrMsg_AmmoDenied", - "vtable_address": 6464954360, - "methods": [ - 6446180192, - 6457189536, - 6446169120, - 6446170048, - 6446170080, - 6457189584, - 6457186560, - 6446170096, - 6446171328, - 6446170752, - 6443742160, - 6446171136, - 6457190896, - 6457192720, - 6446172096, - 6446176624, - 6446176432 + "vtable_address": 6464958456, + "methods": [ + 6446180400, + 6457191728, + 6446169504, + 6446170432, + 6446170464, + 6457191776, + 6457188752, + 6446170480, + 6446171712, + 6446171120, + 6443742160, + 6446171504, + 6457193088, + 6457194912, + 6446171904, + 6446176272, + 6446176256 ], "bases": [ { @@ -46424,7 +46418,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354776, + "complete_object_locator": 6468359008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46433,25 +46427,25 @@ }, { "type_name": "CCSUsrMsg_BarTime", - "vtable_address": 6464949168, + "vtable_address": 6464953264, "methods": [ - 6446160384, - 6457189536, - 6446152432, - 6446153152, - 6446153504, - 6457189584, - 6457186560, - 6446153552, - 6446155680, - 6446154000, - 6443742160, - 6446155360, - 6457190896, - 6457192720, - 6446156400, - 6446157296, - 6446156864 + 6446160768, + 6457191728, + 6446152816, + 6446153296, + 6446153392, + 6457191776, + 6457188752, + 6446153424, + 6446155440, + 6446153776, + 6443742160, + 6446155136, + 6457193088, + 6457194912, + 6446156368, + 6446157648, + 6446157232 ], "bases": [ { @@ -46485,7 +46479,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354912, + "complete_object_locator": 6468359144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46494,25 +46488,25 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed", - "vtable_address": 6464900440, + "vtable_address": 6464904536, "methods": [ - 6445912064, - 6457189536, - 6445903552, - 6445903888, - 6445903920, - 6457189584, - 6457186560, + 6445912208, + 6457191728, 6445903936, - 6445905744, - 6445904560, - 6443742160, - 6445905424, - 6457190896, - 6457192720, - 6445906816, - 6445910288, - 6445910272 + 6445904272, + 6445904304, + 6457191776, + 6457188752, + 6445904320, + 6445906128, + 6445904928, + 6443742160, + 6445905792, + 6457193088, + 6457194912, + 6445907152, + 6445910272, + 6445910256 ], "bases": [ { @@ -46546,7 +46540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355048, + "complete_object_locator": 6468359280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46555,9 +46549,9 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed_t", - "vtable_address": 6466522312, + "vtable_address": 6466526440, "methods": [ - 6453658432, + 6453660192, 6447554800, 6447554784, 6447554816, @@ -46651,7 +46645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714896, + "complete_object_locator": 6468718992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -46660,25 +46654,25 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed_t", - "vtable_address": 6466522360, + "vtable_address": 6466526488, "methods": [ - 6453654492, - 6457189536, - 6445903552, - 6445903888, - 6445903920, - 6457189584, - 6457186560, + 6453656252, + 6457191728, 6445903936, - 6445905744, - 6445904560, - 6443742160, - 6445905424, - 6457190896, - 6457192720, - 6445906816, - 6445910288, - 6445910272 + 6445904272, + 6445904304, + 6457191776, + 6457188752, + 6445904320, + 6445906128, + 6445904928, + 6443742160, + 6445905792, + 6457193088, + 6457194912, + 6445907152, + 6445910272, + 6445910256 ], "bases": [ { @@ -46768,7 +46762,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468715184, + "complete_object_locator": 6468719280, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -46777,27 +46771,27 @@ }, { "type_name": "CCSUsrMsg_ClientInfo", - "vtable_address": 6464921080, - "methods": [ - 6445986144, - 6457189536, - 6445981760, - 6445983584, - 6445983792, - 6457189584, - 6457186560, - 6445983808, - 6445984432, - 6445983856, - 6443742160, - 6445984256, - 6457190896, - 6457192720, - 6445984464, - 6445984560, - 6445984544, - 6457187520, - 6445985920 + "vtable_address": 6464925176, + "methods": [ + 6445986304, + 6457191728, + 6445982144, + 6445983968, + 6445984000, + 6457191776, + 6457188752, + 6445984016, + 6445984816, + 6445984064, + 6443742160, + 6445984640, + 6457193088, + 6457194912, + 6445984848, + 6445984944, + 6445984928, + 6457189712, + 6445986448 ], "bases": [ { @@ -46831,7 +46825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355088, + "complete_object_locator": 6468359320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46840,25 +46834,25 @@ }, { "type_name": "CCSUsrMsg_CloseCaption", - "vtable_address": 6464931288, + "vtable_address": 6464935384, "methods": [ - 6446083376, - 6457189536, - 6446071376, - 6446072560, - 6446072720, - 6457189584, - 6457186560, - 6446073232, - 6446075456, - 6446074160, + 6446083264, + 6457191728, + 6446071744, + 6446072864, + 6446073024, + 6457191776, + 6457188752, + 6446073536, + 6446075840, + 6446074480, 6443742160, - 6446075104, - 6457190896, - 6457192720, - 6446075808, - 6446080176, - 6446079632 + 6446075424, + 6457193088, + 6457194912, + 6446076192, + 6446080544, + 6446080000 ], "bases": [ { @@ -46892,7 +46886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355224, + "complete_object_locator": 6468359456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46901,29 +46895,29 @@ }, { "type_name": "CCSUsrMsg_CloseCaptionDirect", - "vtable_address": 6464933640, + "vtable_address": 6464937736, "methods": [ - 6446103744, - 6457189536, - 6446091888, - 6446092800, - 6446092848, - 6457189584, - 6457186560, - 6446092896, - 6446094256, - 6446093152, - 6443742160, - 6446093936, - 6457190896, - 6457192720, - 6446095840, - 6446096400, - 6446096384, - 6457187520, - 6446100048, - 6457187520, - 6446101776 + 6446103808, + 6457191728, + 6446092272, + 6446093184, + 6446093232, + 6457191776, + 6457188752, + 6446093280, + 6446094640, + 6446093536, + 6443742160, + 6446094320, + 6457193088, + 6457194912, + 6446096224, + 6446096784, + 6446096768, + 6457189712, + 6446101584, + 6457189712, + 6446101712 ], "bases": [ { @@ -46957,7 +46951,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355360, + "complete_object_locator": 6468359592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46966,41 +46960,41 @@ }, { "type_name": "CCSUsrMsg_CounterStrafe", - "vtable_address": 6464928200, - "methods": [ - 6446050336, - 6457189536, - 6446036960, + "vtable_address": 6464932296, + "methods": [ + 6446048640, + 6457191728, + 6446037312, + 6446037648, + 6446037760, + 6457191776, + 6457188752, 6446037952, - 6446038944, - 6457189584, - 6457186560, - 6446038960, - 6446041040, - 6446039904, - 6443742160, - 6446040736, - 6457190896, - 6457192720, - 6446041072, - 6446041200, - 6446041184, - 6457187520, - 6446043632, - 6457187520, - 6446044688, - 6457187520, - 6446045040, - 6457187520, - 6446052208, - 6457187520, - 6446052544, - 6457187520, - 6446052688, - 6457187520, - 6446053552, - 6457187520, - 6446054752 + 6446040576, + 6446038480, + 6443742160, + 6446040272, + 6457193088, + 6457194912, + 6446041440, + 6446041520, + 6446041488, + 6457189712, + 6446044016, + 6457189712, + 6446045056, + 6457189712, + 6446046560, + 6457189712, + 6446052800, + 6457189712, + 6446052704, + 6457189712, + 6446052928, + 6457189712, + 6446053360, + 6457189712, + 6446054240 ], "bases": [ { @@ -47034,7 +47028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355496, + "complete_object_locator": 6468359728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47043,29 +47037,29 @@ }, { "type_name": "CCSUsrMsg_CurrentRoundOdds", - "vtable_address": 6464879360, - "methods": [ - 6445828304, - 6457189536, - 6445822784, - 6445822848, - 6445822880, - 6457189584, - 6457186560, - 6445822896, - 6445823504, - 6445822944, - 6443742160, + "vtable_address": 6464883456, + "methods": [ + 6445828688, + 6457191728, + 6445823168, + 6445823232, + 6445823264, + 6457191776, + 6457188752, + 6445823280, + 6445823888, 6445823328, - 6457190896, - 6457192720, - 6445823536, - 6445825072, - 6445824016, - 6457187520, - 6445826224, - 6457187520, - 6445826368 + 6443742160, + 6445823712, + 6457193088, + 6457194912, + 6445823920, + 6445825456, + 6445824400, + 6457189712, + 6445826608, + 6457189712, + 6445826928 ], "bases": [ { @@ -47099,7 +47093,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355536, + "complete_object_locator": 6468359768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47108,27 +47102,27 @@ }, { "type_name": "CCSUsrMsg_CurrentTimescale", - "vtable_address": 6465032952, - "methods": [ - 6446609024, - 6457189536, - 6446594400, - 6446595168, - 6446595376, - 6457189584, - 6457186560, - 6446595392, - 6446596208, - 6446595424, + "vtable_address": 6465037048, + "methods": [ + 6446609392, + 6457191728, + 6446594832, + 6446595728, + 6446595760, + 6457191776, + 6457188752, + 6446595776, + 6446596592, + 6446595808, 6443742160, - 6446595984, - 6457190896, - 6457192720, - 6446597248, - 6446597376, - 6446597360, - 6457187520, - 6446607120 + 6446596368, + 6457193088, + 6457194912, + 6446597632, + 6446597760, + 6446597744, + 6457189712, + 6446607600 ], "bases": [ { @@ -47162,7 +47156,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355576, + "complete_object_locator": 6468359808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47171,25 +47165,25 @@ }, { "type_name": "CCSUsrMsg_Damage", - "vtable_address": 6464966160, - "methods": [ - 6446216528, - 6457189536, - 6446202576, - 6446203616, - 6446204080, - 6457189584, - 6457186560, - 6446204336, - 6446211088, - 6446207456, - 6443742160, - 6446210752, - 6457190896, - 6457192720, - 6446212576, - 6446212960, - 6446212928 + "vtable_address": 6464970256, + "methods": [ + 6446216912, + 6457191728, + 6446202944, + 6446203184, + 6446203648, + 6457191776, + 6457188752, + 6446204272, + 6446210576, + 6446205664, + 6443742160, + 6446210240, + 6457193088, + 6457194912, + 6446212944, + 6446213264, + 6446213232 ], "bases": [ { @@ -47223,7 +47217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355712, + "complete_object_locator": 6468359944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47232,27 +47226,27 @@ }, { "type_name": "CCSUsrMsg_DamagePrediction", - "vtable_address": 6464930552, - "methods": [ - 6446081648, - 6457189536, - 6446062752, - 6446063296, - 6446063424, - 6457189584, - 6457186560, - 6446063440, - 6446065776, - 6446063968, - 6443742160, - 6446065072, - 6457190896, - 6457192720, - 6446066080, - 6446066256, - 6446066240, - 6457187520, - 6446080256 + "vtable_address": 6464934648, + "methods": [ + 6446082016, + 6457191728, + 6446062976, + 6446063536, + 6446063664, + 6457191776, + 6457188752, + 6446063824, + 6446066160, + 6446064352, + 6443742160, + 6446065456, + 6457193088, + 6457194912, + 6446066464, + 6446066640, + 6446066624, + 6457189712, + 6446080656 ], "bases": [ { @@ -47286,7 +47280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355752, + "complete_object_locator": 6468359984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47295,9 +47289,9 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 6466489912, + "vtable_address": 6466494040, "methods": [ - 6453488960, + 6453490720, 6447549792, 6447549776, 6447549808, @@ -47391,7 +47385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468708856, + "complete_object_locator": 6468712952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -47400,25 +47394,25 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 6466489960, - "methods": [ - 6453486560, - 6457189536, - 6446202576, - 6446203616, - 6446204080, - 6457189584, - 6457186560, - 6446204336, - 6446211088, - 6446207456, - 6443742160, - 6446210752, - 6457190896, - 6457192720, - 6446212576, - 6446212960, - 6446212928 + "vtable_address": 6466494088, + "methods": [ + 6453488320, + 6457191728, + 6446202944, + 6446203184, + 6446203648, + 6457191776, + 6457188752, + 6446204272, + 6446210576, + 6446205664, + 6443742160, + 6446210240, + 6457193088, + 6457194912, + 6446212944, + 6446213264, + 6446213232 ], "bases": [ { @@ -47508,7 +47502,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468709144, + "complete_object_locator": 6468713240, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -47517,33 +47511,35 @@ }, { "type_name": "CCSUsrMsg_DeepStats", - "vtable_address": 6464881072, - "methods": [ - 6445839248, - 6457189536, - 6445831744, - 6445831920, - 6445832144, - 6457189584, - 6457186560, - 6445832160, - 6445832832, - 6445832272, + "vtable_address": 6464885152, + "methods": [ + 6445839536, + 6457191728, + 6445832128, + 6445832304, + 6445832528, + 6457191776, + 6457188752, + 6445832544, + 6445833216, + 6445832656, 6443742160, - 6445832720, - 6457190896, - 6457192720, - 6445833088, - 6445835232, - 6445835216, - 6457187520, - 6445838064, - 6457187520, - 6445839440, - 6457187520, - 6445839664, - 6457187520, - 6445841888 + 6445833104, + 6457193088, + 6457194912, + 6445833472, + 6445835600, + 6445835584, + 6457189712, + 6445836976, + 6457189712, + 6445837440, + 6457189712, + 6445839744, + 6457189712, + 6445841552, + 6457189712, + 6445841664 ], "bases": [ { @@ -47577,7 +47573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355792, + "complete_object_locator": 6468360024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47586,9 +47582,9 @@ }, { "type_name": "CCSUsrMsg_DeepStats_t", - "vtable_address": 6466276736, + "vtable_address": 6466280848, "methods": [ - 6452109264, + 6452110848, 6447562528, 6447562512, 6447562544, @@ -47682,7 +47678,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468654240, + "complete_object_locator": 6468658336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -47691,25 +47687,25 @@ }, { "type_name": "CCSUsrMsg_DeepStats_t", - "vtable_address": 6466276784, - "methods": [ - 6452103424, - 6457189536, - 6445831744, - 6445831920, - 6445832144, - 6457189584, - 6457186560, - 6445832160, - 6445832832, - 6445832272, + "vtable_address": 6466280896, + "methods": [ + 6452105008, + 6457191728, + 6445832128, + 6445832304, + 6445832528, + 6457191776, + 6457188752, + 6445832544, + 6445833216, + 6445832656, 6443742160, - 6445832720, - 6457190896, - 6457192720, - 6445833088, - 6445835232, - 6445835216 + 6445833104, + 6457193088, + 6457194912, + 6445833472, + 6445835600, + 6445835584 ], "bases": [ { @@ -47799,7 +47795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468654528, + "complete_object_locator": 6468658624, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -47808,27 +47804,29 @@ }, { "type_name": "CCSUsrMsg_DesiredTimescale", - "vtable_address": 6465028336, - "methods": [ - 6446586288, - 6457189536, - 6446574416, - 6446575408, - 6446575440, - 6457189584, - 6457186560, - 6446575456, - 6446577104, - 6446575920, - 6443742160, - 6446576784, - 6457190896, - 6457192720, - 6446577968, - 6446578064, - 6446578000, - 6457187520, - 6446582432 + "vtable_address": 6465032416, + "methods": [ + 6446586592, + 6457191728, + 6446574800, + 6446575792, + 6446575824, + 6457191776, + 6457188752, + 6446575840, + 6446577488, + 6446576304, + 6443742160, + 6446577168, + 6457193088, + 6457194912, + 6446578352, + 6446578480, + 6446578432, + 6457189712, + 6446582672, + 6457189712, + 6446583104 ], "bases": [ { @@ -47862,7 +47860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355832, + "complete_object_locator": 6468360064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47871,29 +47869,29 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby", - "vtable_address": 6464907768, - "methods": [ - 6445966336, - 6457189536, - 6445954608, - 6445955056, - 6445955088, - 6457189584, - 6457186560, - 6445955104, - 6445955712, - 6445955152, - 6443742160, + "vtable_address": 6464911864, + "methods": [ + 6445966720, + 6457191728, + 6445954992, + 6445955280, + 6445955312, + 6457191776, + 6457188752, + 6445955488, + 6445956096, 6445955536, - 6457190896, - 6457192720, - 6445955728, - 6445955776, - 6445955760, - 6457187520, - 6445964992, - 6457187520, - 6445966496 + 6443742160, + 6445955920, + 6457193088, + 6457194912, + 6445956112, + 6445956160, + 6445956144, + 6457189712, + 6445965376, + 6457189712, + 6445966864 ], "bases": [ { @@ -47927,7 +47925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468355968, + "complete_object_locator": 6468360200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47936,9 +47934,9 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby2_t", - "vtable_address": 6466275584, + "vtable_address": 6466279696, "methods": [ - 6452109360, + 6452110944, 6447558480, 6447558464, 6447558496, @@ -48032,7 +48030,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468652272, + "complete_object_locator": 6468656368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -48041,25 +48039,25 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby2_t", - "vtable_address": 6466275632, - "methods": [ - 6452103436, - 6457189536, - 6445954608, - 6445955056, - 6445955088, - 6457189584, - 6457186560, - 6445955104, - 6445955712, - 6445955152, - 6443742160, + "vtable_address": 6466279744, + "methods": [ + 6452105020, + 6457191728, + 6445954992, + 6445955280, + 6445955312, + 6457191776, + 6457188752, + 6445955488, + 6445956096, 6445955536, - 6457190896, - 6457192720, - 6445955728, - 6445955776, - 6445955760 + 6443742160, + 6445955920, + 6457193088, + 6457194912, + 6445956112, + 6445956160, + 6445956144 ], "bases": [ { @@ -48149,7 +48147,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468652560, + "complete_object_locator": 6468656656, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -48158,9 +48156,9 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby_t", - "vtable_address": 6466275392, + "vtable_address": 6466279504, "methods": [ - 6452109456, + 6452111040, 6447558112, 6447558096, 6447558128, @@ -48254,7 +48252,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468651944, + "complete_object_locator": 6468656040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -48263,25 +48261,25 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby_t", - "vtable_address": 6466275440, - "methods": [ - 6452103448, - 6457189536, - 6445954608, - 6445955056, - 6445955088, - 6457189584, - 6457186560, - 6445955104, - 6445955712, - 6445955152, - 6443742160, + "vtable_address": 6466279552, + "methods": [ + 6452105032, + 6457191728, + 6445954992, + 6445955280, + 6445955312, + 6457191776, + 6457188752, + 6445955488, + 6445956096, 6445955536, - 6457190896, - 6457192720, - 6445955728, - 6445955776, - 6445955760 + 6443742160, + 6445955920, + 6457193088, + 6457194912, + 6445956112, + 6445956160, + 6445956144 ], "bases": [ { @@ -48371,7 +48369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468652232, + "complete_object_locator": 6468656328, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -48380,25 +48378,25 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData", - "vtable_address": 6465020672, + "vtable_address": 6465024768, "methods": [ - 6446515376, - 6457189536, - 6446491648, - 6446492080, - 6446492208, - 6457189584, - 6457186560, - 6446492224, - 6446493760, - 6446492816, - 6443742160, - 6446493504, - 6457190896, - 6457192720, + 6446515760, + 6457191728, + 6446492032, + 6446492464, + 6446492592, + 6457191776, + 6457188752, + 6446492608, + 6446494144, + 6446493184, + 6443742160, + 6446493888, + 6457193088, + 6457194912, 6446494336, - 6446495280, - 6446495248 + 6446495664, + 6446495344 ], "bases": [ { @@ -48432,7 +48430,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356008, + "complete_object_locator": 6468360240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48441,27 +48439,27 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_Accolade", - "vtable_address": 6465005528, + "vtable_address": 6465009624, "methods": [ - 6446450000, - 6457189536, - 6446437856, - 6446438048, - 6446438416, - 6457189584, - 6457186560, - 6446438608, - 6446440736, - 6446439264, + 6446450384, + 6457191728, + 6446438240, + 6446438432, + 6446438800, + 6457191776, + 6457188752, + 6446438992, + 6446441120, + 6446439648, 6443742160, - 6446440400, - 6457190896, - 6457192720, - 6446441280, - 6446441344, - 6446441328, - 6457187520, - 6446448320 + 6446440784, + 6457193088, + 6457194912, + 6446441664, + 6446441728, + 6446441712, + 6457189712, + 6446448704 ], "bases": [ { @@ -48495,7 +48493,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356048, + "complete_object_locator": 6468360280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48504,25 +48502,27 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData", - "vtable_address": 6465008056, - "methods": [ - 6446479904, - 6457189536, - 6446456544, - 6446456976, - 6446457376, - 6457189584, - 6457186560, - 6446457392, - 6446460128, - 6446458304, - 6443742160, - 6446459440, - 6457190896, - 6457192720, - 6446460336, - 6446460384, - 6446460368 + "vtable_address": 6465012136, + "methods": [ + 6446480192, + 6457191728, + 6446456928, + 6446457360, + 6446457760, + 6457191776, + 6457188752, + 6446457776, + 6446460512, + 6446458688, + 6443742160, + 6446459824, + 6457193088, + 6457194912, + 6446460720, + 6446460768, + 6446460752, + 6457189712, + 6446475952 ], "bases": [ { @@ -48556,7 +48556,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356184, + "complete_object_locator": 6468360416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48565,9 +48565,9 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 6466276544, + "vtable_address": 6466280656, "methods": [ - 6452109552, + 6452111136, 6447560688, 6447560672, 6447560704, @@ -48661,7 +48661,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468653912, + "complete_object_locator": 6468658008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -48670,25 +48670,25 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 6466276592, + "vtable_address": 6466280704, "methods": [ - 6452103460, - 6457189536, - 6446491648, - 6446492080, - 6446492208, - 6457189584, - 6457186560, - 6446492224, - 6446493760, - 6446492816, - 6443742160, - 6446493504, - 6457190896, - 6457192720, + 6452105044, + 6457191728, + 6446492032, + 6446492464, + 6446492592, + 6457191776, + 6457188752, + 6446492608, + 6446494144, + 6446493184, + 6443742160, + 6446493888, + 6457193088, + 6457194912, 6446494336, - 6446495280, - 6446495248 + 6446495664, + 6446495344 ], "bases": [ { @@ -48778,7 +48778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468654200, + "complete_object_locator": 6468658296, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -48787,25 +48787,25 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight", - "vtable_address": 6465010152, - "methods": [ - 6446505056, - 6457189536, - 6446495152, - 6446495440, - 6446495488, - 6457189584, - 6457186560, - 6446495504, - 6446496752, - 6446495728, + "vtable_address": 6465014104, + "methods": [ + 6446505280, + 6457191728, + 6446494736, + 6446495808, + 6446495856, + 6457191776, + 6457188752, + 6446495872, + 6446497056, + 6446496112, 6443742160, - 6446496528, - 6457190896, - 6457192720, - 6446498224, - 6446498448, - 6446498416 + 6446496832, + 6457193088, + 6457194912, + 6446498592, + 6446498672, + 6446498656 ], "bases": [ { @@ -48839,7 +48839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356320, + "complete_object_locator": 6468360552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48848,25 +48848,27 @@ }, { "type_name": "CCSUsrMsg_Fade", - "vtable_address": 6464926344, + "vtable_address": 6464930424, "methods": [ - 6446040400, - 6457189536, - 6446027808, - 6446028592, - 6446028752, - 6457189584, - 6457186560, - 6446028880, - 6446032352, - 6446029840, - 6443742160, - 6446031552, - 6457190896, - 6457192720, - 6446032448, - 6446032608, - 6446032496 + 6446038976, + 6457191728, + 6446028160, + 6446028768, + 6446028848, + 6457191776, + 6457188752, + 6446028864, + 6446031024, + 6446029264, + 6443742160, + 6446030576, + 6457193088, + 6457194912, + 6446032816, + 6446032896, + 6446032864, + 6457189712, + 6446035248 ], "bases": [ { @@ -48900,7 +48902,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356360, + "complete_object_locator": 6468360592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48909,27 +48911,27 @@ }, { "type_name": "CCSUsrMsg_GameTitle", - "vtable_address": 6464900584, - "methods": [ - 6445912848, - 6457189536, - 6445904544, - 6445905920, - 6445906512, - 6457189584, - 6457186560, - 6445906624, - 6445909504, - 6445907168, + "vtable_address": 6464904680, + "methods": [ + 6445912432, + 6457191728, + 6445904912, + 6445906416, + 6445906864, + 6457191776, + 6457188752, + 6445906896, + 6445908896, + 6445907376, 6443742160, - 6445908928, - 6457190896, - 6457192720, - 6445910352, - 6445910848, - 6445910816, - 6457187520, - 6445911376 + 6445908720, + 6457193088, + 6457194912, + 6445910736, + 6445911232, + 6445911200, + 6457189712, + 6445912048 ], "bases": [ { @@ -48963,7 +48965,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356496, + "complete_object_locator": 6468360728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48972,27 +48974,27 @@ }, { "type_name": "CCSUsrMsg_Geiger", - "vtable_address": 6464901400, + "vtable_address": 6464905496, "methods": [ - 6445926144, - 6457189536, - 6445913696, - 6445914672, - 6445914704, - 6457189584, - 6457186560, - 6445914720, - 6445916512, - 6445915296, + 6445926528, + 6457191728, + 6445914080, + 6445915056, + 6445915088, + 6457191776, + 6457188752, + 6445915104, + 6445916880, + 6445915680, 6443742160, - 6445915856, - 6457190896, - 6457192720, - 6445916992, - 6445918592, - 6445918576, - 6457187520, - 6445919744 + 6445916224, + 6457193088, + 6457194912, + 6445917120, + 6445918704, + 6445918688, + 6457189712, + 6445920128 ], "bases": [ { @@ -49026,7 +49028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356632, + "complete_object_locator": 6468360864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49035,27 +49037,27 @@ }, { "type_name": "CCSUsrMsg_HintText", - "vtable_address": 6464974624, - "methods": [ - 6446259808, - 6457189536, - 6446248976, - 6446251088, - 6446251152, - 6457189584, - 6457186560, - 6446251824, - 6446252688, - 6446251888, - 6443742160, - 6446252544, - 6457190896, - 6457192720, + "vtable_address": 6464978720, + "methods": [ + 6446260192, + 6457191728, + 6446249360, + 6446251456, + 6446251520, + 6457191776, + 6457188752, + 6446252192, + 6446252768, + 6446252272, + 6443742160, + 6446252640, + 6457193088, + 6457194912, 6446253216, - 6446253520, - 6446253504, - 6457187520, - 6446254576 + 6446253888, + 6446253872, + 6457189712, + 6446254960 ], "bases": [ { @@ -49089,7 +49091,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356768, + "complete_object_locator": 6468361000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49098,9 +49100,9 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 6466490104, + "vtable_address": 6466494232, "methods": [ - 6453489056, + 6453490816, 6447562896, 6447562880, 6447562912, @@ -49194,7 +49196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468709184, + "complete_object_locator": 6468713280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -49203,25 +49205,25 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 6466490152, - "methods": [ - 6453486572, - 6457189536, - 6446248976, - 6446251088, - 6446251152, - 6457189584, - 6457186560, - 6446251824, - 6446252688, - 6446251888, - 6443742160, - 6446252544, - 6457190896, - 6457192720, + "vtable_address": 6466494280, + "methods": [ + 6453488332, + 6457191728, + 6446249360, + 6446251456, + 6446251520, + 6457191776, + 6457188752, + 6446252192, + 6446252768, + 6446252272, + 6443742160, + 6446252640, + 6457193088, + 6457194912, 6446253216, - 6446253520, - 6446253504 + 6446253888, + 6446253872 ], "bases": [ { @@ -49311,7 +49313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468709472, + "complete_object_locator": 6468713568, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -49320,25 +49322,25 @@ }, { "type_name": "CCSUsrMsg_HudMsg", - "vtable_address": 6464921720, - "methods": [ - 6445993600, - 6457189536, - 6445976304, - 6445977760, - 6445977920, - 6457189584, - 6457186560, - 6445977936, - 6445979968, - 6445978320, + "vtable_address": 6464925816, + "methods": [ + 6445993984, + 6457191728, + 6445976448, + 6445977776, + 6445978000, + 6457191776, + 6457188752, + 6445978304, + 6445980336, + 6445978688, 6443742160, - 6445979376, - 6457190896, - 6457192720, - 6445980080, - 6445980976, - 6445980960 + 6445979744, + 6457193088, + 6457194912, + 6445980384, + 6445981360, + 6445981344 ], "bases": [ { @@ -49372,7 +49374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356808, + "complete_object_locator": 6468361040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49381,27 +49383,27 @@ }, { "type_name": "CCSUsrMsg_HudText", - "vtable_address": 6464907288, - "methods": [ - 6445955840, - 6457189536, - 6445950992, - 6445951936, - 6445952000, - 6457189584, - 6457186560, - 6445952016, - 6445952656, - 6445952176, - 6443742160, - 6445952544, - 6457190896, - 6457192720, - 6445952896, - 6445953296, - 6445953120, - 6457187520, - 6445954944 + "vtable_address": 6464911384, + "methods": [ + 6445956224, + 6457191728, + 6445951376, + 6445952320, + 6445952384, + 6457191776, + 6457188752, + 6445952400, + 6445953040, + 6445952560, + 6443742160, + 6445952928, + 6457193088, + 6457194912, + 6445953136, + 6445953680, + 6445953504, + 6457189712, + 6445955168 ], "bases": [ { @@ -49435,7 +49437,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468356944, + "complete_object_locator": 6468361176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49444,29 +49446,29 @@ }, { "type_name": "CCSUsrMsg_ItemDrop", - "vtable_address": 6464972656, - "methods": [ - 6446236016, - 6457189536, - 6446230800, - 6446231456, - 6446231600, - 6457189584, - 6457186560, - 6446231808, - 6446233648, - 6446232336, + "vtable_address": 6464976752, + "methods": [ + 6446236400, + 6457191728, + 6446231168, + 6446231840, + 6446231984, + 6457191776, + 6457188752, + 6446232016, + 6446234032, + 6446232480, 6443742160, - 6446233296, - 6457190896, - 6457192720, - 6446233696, - 6446233904, - 6446233872, - 6457187520, - 6446234368, - 6457388960, - 6457389040 + 6446233680, + 6457193088, + 6457194912, + 6446234080, + 6446234224, + 6446234192, + 6457189712, + 6446234752, + 6457391152, + 6457391232 ], "bases": [ { @@ -49500,7 +49502,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357080, + "complete_object_locator": 6468361312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49509,25 +49511,25 @@ }, { "type_name": "CCSUsrMsg_ItemPickup", - "vtable_address": 6464943216, + "vtable_address": 6464947168, "methods": [ - 6446125040, - 6457189536, - 6446117616, - 6446117872, - 6446117936, - 6457189584, - 6457186560, - 6446118016, - 6446119040, - 6446118176, + 6446125280, + 6457191728, + 6446117552, + 6446118256, + 6446118320, + 6457191776, + 6457188752, + 6446118336, + 6446118992, + 6446118400, 6443742160, - 6446118928, - 6457190896, - 6457192720, - 6446119344, - 6446120880, - 6446120864 + 6446118864, + 6457193088, + 6457194912, + 6446119456, + 6446121264, + 6446121248 ], "bases": [ { @@ -49561,7 +49563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357216, + "complete_object_locator": 6468361448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49570,31 +49572,31 @@ }, { "type_name": "CCSUsrMsg_KeyHintText", - "vtable_address": 6464977168, - "methods": [ - 6446292640, - 6457189536, - 6446265648, - 6446266544, - 6446266608, - 6457189584, - 6457186560, - 6446266688, - 6446267872, - 6446266944, - 6443742160, - 6446267616, - 6457190896, - 6457192720, - 6446268672, - 6446269152, - 6446268912, - 6457187520, - 6446290656, - 6457187520, - 6446292416, - 6457187520, - 6446294256 + "vtable_address": 6464981264, + "methods": [ + 6446293024, + 6457191728, + 6446266032, + 6446266928, + 6446266976, + 6457191776, + 6457188752, + 6446266992, + 6446268256, + 6446267248, + 6443742160, + 6446268000, + 6457193088, + 6457194912, + 6446269056, + 6446269136, + 6446269120, + 6457189712, + 6446291040, + 6457189712, + 6446292800, + 6457189712, + 6446294640 ], "bases": [ { @@ -49628,7 +49630,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357352, + "complete_object_locator": 6468361584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49637,9 +49639,9 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 6466490296, + "vtable_address": 6466494424, "methods": [ - 6453489152, + 6453490912, 6447563264, 6447563248, 6447563280, @@ -49733,7 +49735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468709512, + "complete_object_locator": 6468713608, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -49742,25 +49744,25 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 6466490344, + "vtable_address": 6466494472, "methods": [ - 6453486584, - 6457189536, - 6446265648, - 6446266544, - 6446266608, - 6457189584, - 6457186560, - 6446266688, - 6446267872, - 6446266944, + 6453488344, + 6457191728, + 6446266032, + 6446266928, + 6446266976, + 6457191776, + 6457188752, + 6446266992, + 6446268256, + 6446267248, 6443742160, - 6446267616, - 6457190896, - 6457192720, - 6446268672, - 6446269152, - 6446268912 + 6446268000, + 6457193088, + 6457194912, + 6446269056, + 6446269136, + 6446269120 ], "bases": [ { @@ -49850,7 +49852,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468709800, + "complete_object_locator": 6468713896, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -49859,25 +49861,25 @@ }, { "type_name": "CCSUsrMsg_KillCam", - "vtable_address": 6465026528, + "vtable_address": 6465030624, "methods": [ - 6446566400, - 6457189536, - 6446556960, - 6446557248, - 6446557296, - 6457189584, - 6457186560, - 6446557312, - 6446558944, - 6446557728, + 6446566672, + 6457191728, + 6446557280, + 6446557632, + 6446557680, + 6457191776, + 6457188752, + 6446557696, + 6446559152, + 6446557936, 6443742160, - 6446558544, - 6457190896, - 6457192720, - 6446559968, - 6446560016, - 6446560000 + 6446558752, + 6457193088, + 6457194912, + 6446560352, + 6446560400, + 6446560384 ], "bases": [ { @@ -49911,7 +49913,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357392, + "complete_object_locator": 6468361624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -49920,9 +49922,9 @@ }, { "type_name": "CCSUsrMsg_KillCam_t", - "vtable_address": 6466273856, + "vtable_address": 6466277968, "methods": [ - 6452109648, + 6452111232, 6447551856, 6447551840, 6447551872, @@ -50016,7 +50018,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468649320, + "complete_object_locator": 6468653416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -50025,25 +50027,25 @@ }, { "type_name": "CCSUsrMsg_KillCam_t", - "vtable_address": 6466273904, + "vtable_address": 6466278016, "methods": [ - 6452103472, - 6457189536, - 6446556960, - 6446557248, - 6446557296, - 6457189584, - 6457186560, - 6446557312, - 6446558944, - 6446557728, + 6452105056, + 6457191728, + 6446557280, + 6446557632, + 6446557680, + 6457191776, + 6457188752, + 6446557696, + 6446559152, + 6446557936, 6443742160, - 6446558544, - 6457190896, - 6457192720, - 6446559968, - 6446560016, - 6446560000 + 6446558752, + 6457193088, + 6457194912, + 6446560352, + 6446560400, + 6446560384 ], "bases": [ { @@ -50133,7 +50135,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468649608, + "complete_object_locator": 6468653704, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -50142,31 +50144,31 @@ }, { "type_name": "CCSUsrMsg_MarkAchievement", - "vtable_address": 6464965136, + "vtable_address": 6464969232, "methods": [ - 6446201024, - 6457189536, - 6446183328, - 6446184352, - 6446184448, - 6457189584, - 6457186560, - 6446185216, - 6446189408, - 6446187360, + 6446200752, + 6457191728, + 6446183696, + 6446184384, + 6446184464, + 6457191776, + 6457188752, + 6446185008, + 6446188800, + 6446186880, 6443742160, - 6446189280, - 6457190896, - 6457192720, - 6446189456, - 6446192000, - 6446190944, - 6457187520, - 6446196304, - 6457187520, - 6446198128, - 6457187520, - 6446199664 + 6446188688, + 6457193088, + 6457194912, + 6446189824, + 6446192160, + 6446191312, + 6457189712, + 6446196672, + 6457189712, + 6446200304, + 6457189712, + 6446200912 ], "bases": [ { @@ -50200,7 +50202,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357432, + "complete_object_locator": 6468361664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -50209,25 +50211,25 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions", - "vtable_address": 6465074520, + "vtable_address": 6465078616, "methods": [ - 6446644416, - 6457189536, - 6446633728, + 6446644800, + 6457191728, 6446634112, - 6446634144, - 6457189584, - 6457186560, - 6446634160, - 6446635776, - 6446634384, + 6446634496, + 6446634528, + 6457191776, + 6457188752, + 6446634544, + 6446636160, + 6446634784, 6443742160, - 6446635328, - 6457190896, - 6457192720, - 6446635792, - 6446637104, - 6446637008 + 6446635712, + 6457193088, + 6457194912, + 6446636176, + 6446637488, + 6446637392 ], "bases": [ { @@ -50261,7 +50263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357568, + "complete_object_locator": 6468361800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -50270,9 +50272,9 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 6466276352, + "vtable_address": 6466280464, "methods": [ - 6452109744, + 6452111328, 6447560320, 6447560304, 6447560336, @@ -50366,7 +50368,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468653584, + "complete_object_locator": 6468657680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -50375,25 +50377,25 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 6466276400, + "vtable_address": 6466280512, "methods": [ - 6452103484, - 6457189536, - 6446633728, + 6452105068, + 6457191728, 6446634112, - 6446634144, - 6457189584, - 6457186560, - 6446634160, - 6446635776, - 6446634384, + 6446634496, + 6446634528, + 6457191776, + 6457188752, + 6446634544, + 6446636160, + 6446634784, 6443742160, - 6446635328, - 6457190896, - 6457192720, - 6446635792, - 6446637104, - 6446637008 + 6446635712, + 6457193088, + 6457194912, + 6446636176, + 6446637488, + 6446637392 ], "bases": [ { @@ -50483,7 +50485,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468653872, + "complete_object_locator": 6468657968, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -50492,25 +50494,25 @@ }, { "type_name": "CCSUsrMsg_MatchStatsUpdate", - "vtable_address": 6464966736, - "methods": [ - 6446219472, - 6457189536, - 6446214432, - 6446214960, - 6446215024, - 6457189584, - 6457186560, - 6446215200, - 6446216320, - 6446215632, - 6443742160, - 6446216144, - 6457190896, - 6457192720, - 6446216352, - 6446216464, - 6446216448 + "vtable_address": 6464970832, + "methods": [ + 6446219696, + 6457191728, + 6446214816, + 6446215344, + 6446215408, + 6457191776, + 6457188752, + 6446215424, + 6446216704, + 6446215856, + 6443742160, + 6446216528, + 6457193088, + 6457194912, + 6446216736, + 6446216848, + 6446216832 ], "bases": [ { @@ -50544,7 +50546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357608, + "complete_object_locator": 6468361840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -50553,25 +50555,25 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature", - "vtable_address": 6464882336, + "vtable_address": 6464886432, "methods": [ - 6445857872, - 6457189536, - 6445847696, - 6445850448, - 6445850656, - 6457189584, - 6457186560, + 6445858256, + 6457191728, + 6445848080, 6445850672, - 6445851424, - 6445850752, + 6445851040, + 6457191776, + 6457188752, + 6445851056, + 6445851808, + 6445851136, 6443742160, - 6445851312, - 6457190896, - 6457192720, - 6445851632, - 6445853872, - 6445853152 + 6445851696, + 6457193088, + 6457194912, + 6445851872, + 6445854256, + 6445853536 ], "bases": [ { @@ -50605,7 +50607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357744, + "complete_object_locator": 6468361976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -50614,9 +50616,9 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature_t", - "vtable_address": 6466275776, + "vtable_address": 6466279888, "methods": [ - 6452109840, + 6452111424, 6447558848, 6447558832, 6447558864, @@ -50710,7 +50712,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468652600, + "complete_object_locator": 6468656696, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -50719,25 +50721,25 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature_t", - "vtable_address": 6466275824, - "methods": [ - 6452103496, - 6457189536, - 6445847696, - 6445850448, - 6445850656, - 6457189584, - 6457186560, + "vtable_address": 6466279936, + "methods": [ + 6452105080, + 6457191728, + 6445848080, 6445850672, - 6445851424, - 6445850752, + 6445851040, + 6457191776, + 6457188752, + 6445851056, + 6445851808, + 6445851136, 6443742160, - 6445851312, - 6457190896, - 6457192720, - 6445851632, - 6445853872, - 6445853152 + 6445851696, + 6457193088, + 6457194912, + 6445851872, + 6445854256, + 6445853536 ], "bases": [ { @@ -50827,7 +50829,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468652888, + "complete_object_locator": 6468656984, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -50836,27 +50838,27 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate", - "vtable_address": 6464877888, + "vtable_address": 6464881984, "methods": [ - 6445804896, - 6457189536, - 6446666416, - 6446667328, - 6446667504, - 6457189584, - 6457186560, - 6446667536, - 6446670144, + 6445805280, + 6457191728, + 6446666112, + 6446667696, + 6446667872, + 6457191776, + 6457188752, 6446667888, + 6446670448, + 6446668256, 6443742160, - 6446669216, - 6457190896, - 6457192720, - 6446673472, - 6446676768, - 6446676752, - 6457187520, - 6445805072 + 6446669520, + 6457193088, + 6457194912, + 6446672320, + 6446676976, + 6446676960, + 6457189712, + 6445805456 ], "bases": [ { @@ -50890,7 +50892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357784, + "complete_object_locator": 6468362016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -50899,25 +50901,27 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_Stat", - "vtable_address": 6465076136, + "vtable_address": 6465080216, "methods": [ - 6446659872, - 6457189536, - 6446652864, - 6446653136, + 6446660256, + 6457191728, 6446653168, - 6457189584, - 6457186560, - 6446653184, - 6446654320, - 6446653280, - 6443742160, - 6446653920, - 6457190896, - 6457192720, - 6446655776, - 6446656864, - 6446656848 + 6446653520, + 6446653552, + 6457191776, + 6457188752, + 6446653568, + 6446654704, + 6446653664, + 6443742160, + 6446654304, + 6457193088, + 6457194912, + 6446656160, + 6446657248, + 6446657232, + 6457189712, + 6446657648 ], "bases": [ { @@ -50951,7 +50955,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357824, + "complete_object_locator": 6468362056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -50960,9 +50964,9 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_t", - "vtable_address": 6466274240, + "vtable_address": 6466278352, "methods": [ - 6452109936, + 6452111520, 6447552960, 6447552944, 6447552976, @@ -51056,7 +51060,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468649976, + "complete_object_locator": 6468654072, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -51065,25 +51069,25 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_t", - "vtable_address": 6466274288, - "methods": [ - 6452103508, - 6457189536, - 6446666416, - 6446667328, - 6446667504, - 6457189584, - 6457186560, - 6446667536, - 6446670144, + "vtable_address": 6466278400, + "methods": [ + 6452105092, + 6457191728, + 6446666112, + 6446667696, + 6446667872, + 6457191776, + 6457188752, 6446667888, + 6446670448, + 6446668256, 6443742160, - 6446669216, - 6457190896, - 6457192720, - 6446673472, - 6446676768, - 6446676752 + 6446669520, + 6457193088, + 6457194912, + 6446672320, + 6446676976, + 6446676960 ], "bases": [ { @@ -51173,7 +51177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468650264, + "complete_object_locator": 6468654360, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -51182,31 +51186,31 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport", - "vtable_address": 6464878048, - "methods": [ - 6445809744, - 6457189536, - 6445801280, - 6445801440, - 6445801488, - 6457189584, - 6457186560, - 6445801504, - 6445803856, - 6445801776, - 6443742160, - 6445803056, - 6457190896, - 6457192720, - 6445803872, - 6445804048, - 6445804032, - 6457187520, - 6445807152, - 6457187520, + "vtable_address": 6464882144, + "methods": [ + 6445810096, + 6457191728, + 6445801664, + 6445801824, + 6445801872, + 6457191776, + 6457188752, + 6445801888, + 6445804240, + 6445802160, + 6443742160, + 6445803440, + 6457193088, + 6457194912, + 6445804256, + 6445804432, + 6445804416, + 6457189712, + 6445807552, + 6457189712, 6445807728, - 6457187520, - 6445808016 + 6457189712, + 6445808416 ], "bases": [ { @@ -51240,7 +51244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468357960, + "complete_object_locator": 6468362192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -51249,9 +51253,9 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 6466523464, + "vtable_address": 6466527592, "methods": [ - 6453658528, + 6453660288, 6447564000, 6447563984, 6447564016, @@ -51345,7 +51349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468716864, + "complete_object_locator": 6468720960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -51354,25 +51358,25 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 6466523512, - "methods": [ - 6453654504, - 6457189536, - 6445801280, - 6445801440, - 6445801488, - 6457189584, - 6457186560, - 6445801504, - 6445803856, - 6445801776, - 6443742160, - 6445803056, - 6457190896, - 6457192720, - 6445803872, - 6445804048, - 6445804032 + "vtable_address": 6466527640, + "methods": [ + 6453656264, + 6457191728, + 6445801664, + 6445801824, + 6445801872, + 6457191776, + 6457188752, + 6445801888, + 6445804240, + 6445802160, + 6443742160, + 6445803440, + 6457193088, + 6457194912, + 6445804256, + 6445804432, + 6445804416 ], "bases": [ { @@ -51462,7 +51466,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468717152, + "complete_object_locator": 6468721248, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -51471,25 +51475,25 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate", - "vtable_address": 6464983528, - "methods": [ - 6446358736, - 6457189536, - 6446332032, - 6446333168, - 6446333344, - 6457189584, - 6457186560, - 6446334064, - 6446335328, - 6446334624, + "vtable_address": 6464987624, + "methods": [ + 6446359120, + 6457191728, + 6446332400, + 6446332624, + 6446333024, + 6457191776, + 6457188752, + 6446333248, + 6446335312, + 6446333904, 6443742160, - 6446335152, - 6457190896, - 6457192720, - 6446335360, - 6446335952, - 6446335648 + 6446335136, + 6457193088, + 6457194912, + 6446335728, + 6446336080, + 6446335776 ], "bases": [ { @@ -51523,7 +51527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358000, + "complete_object_locator": 6468362232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -51532,29 +51536,29 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate", - "vtable_address": 6464979280, - "methods": [ - 6446325696, - 6457189536, - 6446300848, - 6446302032, - 6446302096, - 6457189584, - 6457186560, - 6446302112, - 6446305008, - 6446302832, - 6443742160, - 6446304192, - 6457190896, - 6457192720, - 6446305040, - 6446305440, - 6446305280, - 6457187520, - 6446322192, - 6457187520, - 6446323424 + "vtable_address": 6464983376, + "methods": [ + 6446325936, + 6457191728, + 6446301232, + 6446302416, + 6446302480, + 6457191776, + 6457188752, + 6446302496, + 6446305392, + 6446303216, + 6443742160, + 6446304576, + 6457193088, + 6457194912, + 6446305424, + 6446305536, + 6446305520, + 6457189712, + 6446322592, + 6457189712, + 6446323072 ], "bases": [ { @@ -51588,7 +51592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358040, + "complete_object_locator": 6468362272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -51597,9 +51601,9 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_t", - "vtable_address": 6466408288, + "vtable_address": 6466412448, "methods": [ - 6452808496, + 6452810112, 6447549360, 6447549344, 6447549376, @@ -51693,7 +51697,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468690496, + "complete_object_locator": 6468694592, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -51702,25 +51706,25 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_t", - "vtable_address": 6466408336, - "methods": [ - 6452806068, - 6457189536, - 6446332032, - 6446333168, - 6446333344, - 6457189584, - 6457186560, - 6446334064, - 6446335328, - 6446334624, + "vtable_address": 6466412496, + "methods": [ + 6452807684, + 6457191728, + 6446332400, + 6446332624, + 6446333024, + 6457191776, + 6457188752, + 6446333248, + 6446335312, + 6446333904, 6443742160, - 6446335152, - 6457190896, - 6457192720, - 6446335360, - 6446335952, - 6446335648 + 6446335136, + 6457193088, + 6457194912, + 6446335728, + 6446336080, + 6446335776 ], "bases": [ { @@ -51810,7 +51814,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468690784, + "complete_object_locator": 6468694880, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -51819,25 +51823,25 @@ }, { "type_name": "CCSUsrMsg_QuestProgress", - "vtable_address": 6464879216, + "vtable_address": 6464883312, "methods": [ - 6445826528, - 6457189536, - 6445817056, - 6445819392, - 6445819440, - 6457189584, - 6457186560, - 6445820560, - 6445822288, - 6445820912, - 6443742160, - 6445821792, - 6457190896, - 6457192720, - 6445822448, - 6445822560, - 6445822544 + 6445826784, + 6457191728, + 6445817360, + 6445819776, + 6445819824, + 6457191776, + 6457188752, + 6445820944, + 6445822528, + 6445821152, + 6443742160, + 6445822032, + 6457193088, + 6457194912, + 6445822688, + 6445822944, + 6445822928 ], "bases": [ { @@ -51871,7 +51875,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358176, + "complete_object_locator": 6468362408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -51880,9 +51884,9 @@ }, { "type_name": "CCSUsrMsg_QuestProgress_t", - "vtable_address": 6466274048, + "vtable_address": 6466278160, "methods": [ - 6452110032, + 6452111616, 6447552224, 6447552208, 6447552240, @@ -51976,7 +51980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468649648, + "complete_object_locator": 6468653744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -51985,25 +51989,25 @@ }, { "type_name": "CCSUsrMsg_QuestProgress_t", - "vtable_address": 6466274096, - "methods": [ - 6452103520, - 6457189536, - 6445817056, - 6445819392, - 6445819440, - 6457189584, - 6457186560, - 6445820560, - 6445822288, - 6445820912, - 6443742160, - 6445821792, - 6457190896, - 6457192720, - 6445822448, - 6445822560, - 6445822544 + "vtable_address": 6466278208, + "methods": [ + 6452105104, + 6457191728, + 6445817360, + 6445819776, + 6445819824, + 6457191776, + 6457188752, + 6445820944, + 6445822528, + 6445821152, + 6443742160, + 6445822032, + 6457193088, + 6457194912, + 6445822688, + 6445822944, + 6445822928 ], "bases": [ { @@ -52093,7 +52097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468649936, + "complete_object_locator": 6468654032, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -52102,27 +52106,27 @@ }, { "type_name": "CCSUsrMsg_RadioText", - "vtable_address": 6464972992, + "vtable_address": 6464977088, "methods": [ - 6446238640, - 6457189536, - 6446226464, - 6446226896, + 6446239008, + 6457191728, + 6446226848, 6446227280, - 6457189584, - 6457186560, - 6446227408, - 6446230016, - 6446227984, - 6443742160, - 6446229536, - 6457190896, - 6457192720, - 6446230592, - 6446231008, - 6446230992, - 6457187520, - 6446236960 + 6446227664, + 6457191776, + 6457188752, + 6446227792, + 6446230400, + 6446228368, + 6443742160, + 6446229920, + 6457193088, + 6457194912, + 6446230976, + 6446231392, + 6446231360, + 6457189712, + 6446237328 ], "bases": [ { @@ -52156,7 +52160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358216, + "complete_object_locator": 6468362448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52165,9 +52169,9 @@ }, { "type_name": "CCSUsrMsg_RadioText_t", - "vtable_address": 6466845368, + "vtable_address": 6466849480, "methods": [ - 6456551744, + 6456553520, 6447550640, 6447550624, 6447550656, @@ -52261,7 +52265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468802392, + "complete_object_locator": 6468806488, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -52270,25 +52274,25 @@ }, { "type_name": "CCSUsrMsg_RadioText_t", - "vtable_address": 6466845416, + "vtable_address": 6466849528, "methods": [ - 6456551140, - 6457189536, - 6446226464, - 6446226896, + 6456552916, + 6457191728, + 6446226848, 6446227280, - 6457189584, - 6457186560, - 6446227408, - 6446230016, - 6446227984, - 6443742160, - 6446229536, - 6457190896, - 6457192720, - 6446230592, - 6446231008, - 6446230992 + 6446227664, + 6457191776, + 6457188752, + 6446227792, + 6446230400, + 6446228368, + 6443742160, + 6446229920, + 6457193088, + 6457194912, + 6446230976, + 6446231392, + 6446231360 ], "bases": [ { @@ -52378,7 +52382,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468802680, + "complete_object_locator": 6468806776, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -52387,25 +52391,25 @@ }, { "type_name": "CCSUsrMsg_RawAudio", - "vtable_address": 6464946656, - "methods": [ - 6446143936, - 6457189536, - 6446128704, - 6446128976, - 6446129056, - 6457189584, - 6457186560, - 6446129072, - 6446130224, - 6446129232, + "vtable_address": 6464950752, + "methods": [ + 6446144320, + 6457191728, + 6446129088, + 6446129360, + 6446129440, + 6457191776, + 6457188752, + 6446129456, + 6446130608, + 6446129616, 6443742160, - 6446129856, - 6457190896, - 6457192720, - 6446130400, - 6446131776, - 6446131664 + 6446130240, + 6457193088, + 6457194912, + 6446130784, + 6446131872, + 6446131856 ], "bases": [ { @@ -52439,7 +52443,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358256, + "complete_object_locator": 6468362488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52448,9 +52452,9 @@ }, { "type_name": "CCSUsrMsg_RawAudio_t", - "vtable_address": 6466845560, + "vtable_address": 6466849672, "methods": [ - 6456551840, + 6456553616, 6447556640, 6447556624, 6447556656, @@ -52544,7 +52548,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468802720, + "complete_object_locator": 6468806816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -52553,25 +52557,25 @@ }, { "type_name": "CCSUsrMsg_RawAudio_t", - "vtable_address": 6466845608, - "methods": [ - 6456551152, - 6457189536, - 6446128704, - 6446128976, - 6446129056, - 6457189584, - 6457186560, - 6446129072, - 6446130224, - 6446129232, + "vtable_address": 6466849720, + "methods": [ + 6456552928, + 6457191728, + 6446129088, + 6446129360, + 6446129440, + 6457191776, + 6457188752, + 6446129456, + 6446130608, + 6446129616, 6443742160, - 6446129856, - 6457190896, - 6457192720, - 6446130400, - 6446131776, - 6446131664 + 6446130240, + 6457193088, + 6457194912, + 6446130784, + 6446131872, + 6446131856 ], "bases": [ { @@ -52661,7 +52665,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803008, + "complete_object_locator": 6468807104, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -52670,27 +52674,27 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema", - "vtable_address": 6464932552, - "methods": [ - 6446096480, - 6457189536, - 6446085568, - 6446085808, - 6446085872, - 6457189584, - 6457186560, - 6446085888, - 6446086864, - 6446086160, + "vtable_address": 6464936648, + "methods": [ + 6446096864, + 6457191728, + 6446085952, + 6446086192, + 6446086256, + 6457191776, + 6457188752, + 6446086272, + 6446087088, + 6446086384, 6443742160, - 6446086640, - 6457190896, - 6457192720, - 6446086896, - 6446087648, - 6446087632, - 6457187520, - 6446092656 + 6446086864, + 6457193088, + 6457194912, + 6446087280, + 6446088032, + 6446088016, + 6457189712, + 6446093040 ], "bases": [ { @@ -52724,7 +52728,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358296, + "complete_object_locator": 6468362528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52733,9 +52737,9 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema_t", - "vtable_address": 6466666144, + "vtable_address": 6466670240, "methods": [ - 6455310784, + 6455312544, 6447568240, 6447568224, 6447568256, @@ -52829,7 +52833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468753416, + "complete_object_locator": 6468757512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -52838,25 +52842,25 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema_t", - "vtable_address": 6466666192, - "methods": [ - 6455301120, - 6457189536, - 6446085568, - 6446085808, - 6446085872, - 6457189584, - 6457186560, - 6446085888, - 6446086864, - 6446086160, + "vtable_address": 6466670288, + "methods": [ + 6455302880, + 6457191728, + 6446085952, + 6446086192, + 6446086256, + 6457191776, + 6457188752, + 6446086272, + 6446087088, + 6446086384, 6443742160, - 6446086640, - 6457190896, - 6457192720, - 6446086896, - 6446087648, - 6446087632 + 6446086864, + 6457193088, + 6457194912, + 6446087280, + 6446088032, + 6446088016 ], "bases": [ { @@ -52946,7 +52950,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468753704, + "complete_object_locator": 6468757800, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -52955,27 +52959,27 @@ }, { "type_name": "CCSUsrMsg_ReloadEffect", - "vtable_address": 6465004360, - "methods": [ - 6446434544, - 6457189536, - 6446420960, - 6446422816, - 6446422864, - 6457189584, - 6457186560, - 6446422880, - 6446424432, - 6446423392, - 6443742160, - 6446424000, - 6457190896, - 6457192720, - 6446424672, - 6446424944, - 6446424928, - 6457187520, - 6446430752 + "vtable_address": 6465008456, + "methods": [ + 6446434320, + 6457191728, + 6446421344, + 6446423200, + 6446423248, + 6457191776, + 6457188752, + 6446423264, + 6446424816, + 6446423776, + 6443742160, + 6446424384, + 6457193088, + 6457194912, + 6446424912, + 6446425328, + 6446425312, + 6457189712, + 6446431136 ], "bases": [ { @@ -53009,7 +53013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358336, + "complete_object_locator": 6468362568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53018,25 +53022,25 @@ }, { "type_name": "CCSUsrMsg_ReportHit", - "vtable_address": 6465024768, + "vtable_address": 6465028864, "methods": [ - 6446544112, - 6457189536, - 6446534400, - 6446534960, - 6446534992, - 6457189584, - 6457186560, - 6446535008, - 6446536176, - 6446535088, + 6446544688, + 6457191728, + 6446534592, + 6446535152, + 6446535184, + 6457191776, + 6457188752, + 6446535200, + 6446536560, + 6446535632, 6443742160, - 6446535872, - 6457190896, - 6457192720, - 6446536192, - 6446536240, - 6446536224 + 6446536256, + 6457193088, + 6457194912, + 6446536576, + 6446536624, + 6446536608 ], "bases": [ { @@ -53070,7 +53074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358472, + "complete_object_locator": 6468362704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53079,27 +53083,29 @@ }, { "type_name": "CCSUsrMsg_RequestState", - "vtable_address": 6464904784, + "vtable_address": 6464908880, "methods": [ - 6445929360, - 6457189536, - 6445919712, - 6445921456, - 6445921888, - 6457189584, - 6457186560, - 6445923040, - 6445926032, - 6445924816, - 6443742160, - 6445925856, - 6457190896, - 6457192720, - 6445926112, - 6445926960, - 6445926752, - 6457187520, - 6445928512 + 6445929920, + 6457191728, + 6445920016, + 6445921680, + 6445922112, + 6457191776, + 6457188752, + 6445923264, + 6445926416, + 6445925200, + 6443742160, + 6445926240, + 6457193088, + 6457194912, + 6445926480, + 6445927056, + 6445926976, + 6457189712, + 6445928736, + 6457189712, + 6445930192 ], "bases": [ { @@ -53133,7 +53139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358512, + "complete_object_locator": 6468362744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53142,25 +53148,25 @@ }, { "type_name": "CCSUsrMsg_ResetHud", - "vtable_address": 6464886280, + "vtable_address": 6464890232, "methods": [ - 6445899456, - 6457189536, - 6445896512, - 6445896672, - 6445896704, - 6457189584, - 6457186560, - 6445896720, - 6445897728, - 6445896752, + 6445899840, + 6457191728, + 6445896896, + 6445897040, + 6445897072, + 6457191776, + 6457188752, + 6445897088, + 6445897648, + 6445897136, 6443742160, - 6445897600, - 6457190896, - 6457192720, - 6445898400, - 6445898864, - 6445898848 + 6445897536, + 6457193088, + 6457194912, + 6445898352, + 6445899232, + 6445899216 ], "bases": [ { @@ -53194,7 +53200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358648, + "complete_object_locator": 6468362880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53203,27 +53209,27 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames", - "vtable_address": 6464974784, - "methods": [ - 6446260000, - 6457189536, - 6446244448, - 6446247184, - 6446247296, - 6457189584, - 6457186560, - 6446247536, - 6446248752, - 6446247760, + "vtable_address": 6464978880, + "methods": [ + 6446260368, + 6457191728, + 6446244832, + 6446247568, + 6446247680, + 6457191776, + 6457188752, + 6446247920, + 6446249136, + 6446248144, 6443742160, - 6446248368, - 6457190896, - 6457192720, - 6446248848, - 6446248992, - 6446248960, - 6457187520, - 6446257056 + 6446248752, + 6457193088, + 6457194912, + 6446249232, + 6446249376, + 6446249344, + 6457189712, + 6446257440 ], "bases": [ { @@ -53257,7 +53263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358784, + "complete_object_locator": 6468363016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53266,9 +53272,9 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 6466603336, + "vtable_address": 6466607432, "methods": [ - 6454477136, + 6454478896, 6447554432, 6447554416, 6447554448, @@ -53362,7 +53368,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468732808, + "complete_object_locator": 6468736904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -53371,25 +53377,25 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 6466603384, - "methods": [ - 6454468696, - 6457189536, - 6446244448, - 6446247184, - 6446247296, - 6457189584, - 6457186560, - 6446247536, - 6446248752, - 6446247760, + "vtable_address": 6466607480, + "methods": [ + 6454470456, + 6457191728, + 6446244832, + 6446247568, + 6446247680, + 6457191776, + 6457188752, + 6446247920, + 6446249136, + 6446248144, 6443742160, - 6446248368, - 6457190896, - 6457192720, - 6446248848, - 6446248992, - 6446248960 + 6446248752, + 6457193088, + 6457194912, + 6446249232, + 6446249376, + 6446249344 ], "bases": [ { @@ -53479,7 +53485,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468733096, + "complete_object_locator": 6468737192, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -53488,27 +53494,25 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData", - "vtable_address": 6465077720, + "vtable_address": 6465081816, "methods": [ - 6446677472, - 6457189536, - 6446653888, - 6446655600, - 6446655792, - 6457189584, - 6457186560, - 6446655808, - 6446656832, - 6446656144, + 6446677856, + 6457191728, + 6446654272, + 6446655984, + 6446656176, + 6457191776, + 6457188752, + 6446656192, + 6446657216, + 6446656528, 6443742160, - 6446656656, - 6457190896, - 6457192720, - 6446656928, - 6446657184, - 6446657168, - 6457187520, - 6446677712 + 6446657040, + 6457193088, + 6457194912, + 6446657312, + 6446657424, + 6446657408 ], "bases": [ { @@ -53542,7 +53546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358824, + "complete_object_locator": 6468363056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53551,31 +53555,31 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_InitialConditions", - "vtable_address": 6465074824, + "vtable_address": 6465078920, "methods": [ - 6446646912, - 6457189536, - 6446636096, - 6446637568, - 6446637616, - 6457189584, - 6457186560, - 6446637632, - 6446638784, - 6446637776, + 6446647296, + 6457191728, + 6446636480, + 6446637952, + 6446638000, + 6457191776, + 6457188752, + 6446638016, + 6446639152, + 6446638144, 6443742160, - 6446638384, - 6457190896, - 6457192720, - 6446639328, - 6446640560, - 6446640544, - 6457187520, - 6446644160, - 6457187520, - 6446645472, - 6457187520, - 6446646192 + 6446638752, + 6457193088, + 6457194912, + 6446639184, + 6446640432, + 6446640416, + 6457189712, + 6446644544, + 6457189712, + 6446645856, + 6457189712, + 6446646576 ], "bases": [ { @@ -53609,7 +53613,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468358864, + "complete_object_locator": 6468363096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53618,25 +53622,25 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent", - "vtable_address": 6465073064, + "vtable_address": 6465077160, "methods": [ - 6446621664, - 6457189536, - 6446591280, - 6446591952, - 6446592224, - 6457189584, - 6457186560, - 6446592240, - 6446594384, - 6446592832, + 6446622048, + 6457191728, + 6446591664, + 6446592192, + 6446592464, + 6457191776, + 6457188752, + 6446592480, + 6446594816, + 6446593216, 6443742160, - 6446593792, - 6457190896, - 6457192720, - 6446595104, - 6446595920, - 6446595872 + 6446594224, + 6457193088, + 6457194912, + 6446595488, + 6446596304, + 6446596272 ], "bases": [ { @@ -53670,7 +53674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359000, + "complete_object_locator": 6468363232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53679,27 +53683,25 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Damage", - "vtable_address": 6465028016, - "methods": [ - 6446584912, - 6457189536, - 6446569664, - 6446570400, - 6446570576, - 6457189584, - 6457186560, - 6446570592, - 6446572464, - 6446570832, + "vtable_address": 6465032112, + "methods": [ + 6446584112, + 6457191728, + 6446570048, + 6446570784, + 6446570960, + 6457191776, + 6457188752, + 6446570976, + 6446572848, + 6446571216, 6443742160, - 6446571760, - 6457190896, - 6457192720, - 6446572640, - 6446573232, - 6446573200, - 6457187520, - 6446580432 + 6446572144, + 6457193088, + 6457194912, + 6446573024, + 6446573472, + 6446573440 ], "bases": [ { @@ -53733,7 +53735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359136, + "complete_object_locator": 6468363368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53742,25 +53744,25 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Objective", - "vtable_address": 6465026096, - "methods": [ - 6446560320, - 6457189536, - 6446555776, - 6446556000, - 6446556256, - 6457189584, - 6457186560, - 6446556272, - 6446556944, - 6446556320, + "vtable_address": 6465030192, + "methods": [ + 6446560704, + 6457191728, + 6446556096, + 6446556384, + 6446556480, + 6457191776, + 6457188752, + 6446556496, + 6446557264, + 6446556544, 6443742160, - 6446556768, - 6457190896, - 6457192720, - 6446557152, - 6446558480, - 6446558464 + 6446557088, + 6457193088, + 6457194912, + 6446557536, + 6446558688, + 6446558672 ], "bases": [ { @@ -53794,7 +53796,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359272, + "complete_object_locator": 6468363504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53803,27 +53805,27 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Victim", - "vtable_address": 6465024608, - "methods": [ - 6446540272, - 6457189536, - 6446525472, - 6446525616, - 6446525664, - 6457189584, - 6457186560, - 6446525680, - 6446527392, - 6446525888, + "vtable_address": 6465028704, + "methods": [ + 6446540288, + 6457191728, + 6446525712, + 6446526000, + 6446526048, + 6457191776, + 6457188752, + 6446526064, + 6446527776, + 6446526272, 6443742160, - 6446526816, - 6457190896, - 6457192720, - 6446527808, - 6446530048, - 6446529280, - 6457187520, - 6446538528 + 6446527200, + 6457193088, + 6457194912, + 6446528192, + 6446530432, + 6446529664, + 6457189712, + 6446538912 ], "bases": [ { @@ -53857,7 +53859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359408, + "complete_object_locator": 6468363640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53866,9 +53868,9 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_t", - "vtable_address": 6466523272, + "vtable_address": 6466527400, "methods": [ - 6453658624, + 6453660384, 6447561792, 6447561776, 6447561808, @@ -53962,7 +53964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468716536, + "complete_object_locator": 6468720632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -53971,25 +53973,25 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_t", - "vtable_address": 6466523320, + "vtable_address": 6466527448, "methods": [ - 6453654516, - 6457189536, - 6446653888, - 6446655600, - 6446655792, - 6457189584, - 6457186560, - 6446655808, - 6446656832, - 6446656144, + 6453656276, + 6457191728, + 6446654272, + 6446655984, + 6446656176, + 6457191776, + 6457188752, + 6446656192, + 6446657216, + 6446656528, 6443742160, - 6446656656, - 6457190896, - 6457192720, - 6446656928, - 6446657184, - 6446657168 + 6446657040, + 6457193088, + 6457194912, + 6446657312, + 6446657424, + 6446657408 ], "bases": [ { @@ -54079,7 +54081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468716824, + "complete_object_locator": 6468720920, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -54088,27 +54090,27 @@ }, { "type_name": "CCSUsrMsg_Rumble", - "vtable_address": 6464929512, + "vtable_address": 6464933608, "methods": [ - 6446066096, - 6457189536, - 6446052320, - 6446054080, - 6446054128, - 6457189584, - 6457186560, - 6446054848, - 6446058272, - 6446056176, + 6446066480, + 6457191728, + 6446052576, + 6446053568, + 6446053616, + 6457191776, + 6457188752, + 6446054832, + 6446058640, + 6446056560, 6443742160, - 6446057872, - 6457190896, - 6457192720, - 6446058768, - 6446059600, - 6446059568, - 6457187520, - 6446062912 + 6446058240, + 6457193088, + 6457194912, + 6446059152, + 6446059984, + 6446059952, + 6457189712, + 6446063152 ], "bases": [ { @@ -54142,7 +54144,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359544, + "complete_object_locator": 6468363776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54151,25 +54153,25 @@ }, { "type_name": "CCSUsrMsg_SSUI", - "vtable_address": 6464977024, + "vtable_address": 6464981120, "methods": [ - 6446292272, - 6457189536, - 6446266432, - 6446267312, - 6446267536, - 6457189584, - 6457186560, - 6446267552, - 6446268656, - 6446267888, + 6446292656, + 6457191728, + 6446266816, + 6446267632, + 6446267920, + 6457191776, + 6457188752, + 6446267936, + 6446269040, + 6446268272, 6443742160, - 6446268384, - 6457190896, - 6457192720, - 6446268704, - 6446270576, - 6446269936 + 6446268768, + 6457193088, + 6457194912, + 6446269088, + 6446270256, + 6446269600 ], "bases": [ { @@ -54203,7 +54205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359680, + "complete_object_locator": 6468363912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54212,29 +54214,27 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData", - "vtable_address": 6464880896, - "methods": [ - 6445837472, - 6457189536, - 6445830448, - 6445830608, - 6445830672, - 6457189584, - 6457186560, - 6445830688, - 6445831584, - 6445831088, - 6443742160, - 6445831472, - 6457190896, - 6457192720, - 6445831760, - 6445832656, - 6445832240, - 6457187520, - 6445835312, - 6457187520, - 6445836576 + "vtable_address": 6464884992, + "methods": [ + 6445837264, + 6457191728, + 6445830832, + 6445830992, + 6445831056, + 6457191776, + 6457188752, + 6445831232, + 6445831808, + 6445831312, + 6443742160, + 6445831696, + 6457193088, + 6457194912, + 6445832144, + 6445833040, + 6445832624, + 6457189712, + 6445835696 ], "bases": [ { @@ -54268,7 +54268,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359720, + "complete_object_locator": 6468363952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54277,9 +54277,9 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData_t", - "vtable_address": 6466276160, + "vtable_address": 6466280272, "methods": [ - 6452110128, + 6452111712, 6447559952, 6447559936, 6447559968, @@ -54373,7 +54373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468653256, + "complete_object_locator": 6468657352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -54382,25 +54382,25 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData_t", - "vtable_address": 6466276208, - "methods": [ - 6452103532, - 6457189536, - 6445830448, - 6445830608, - 6445830672, - 6457189584, - 6457186560, - 6445830688, - 6445831584, - 6445831088, - 6443742160, - 6445831472, - 6457190896, - 6457192720, - 6445831760, - 6445832656, - 6445832240 + "vtable_address": 6466280320, + "methods": [ + 6452105116, + 6457191728, + 6445830832, + 6445830992, + 6445831056, + 6457191776, + 6457188752, + 6445831232, + 6445831808, + 6445831312, + 6443742160, + 6445831696, + 6457193088, + 6457194912, + 6445832144, + 6445833040, + 6445832624 ], "bases": [ { @@ -54490,7 +54490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468653544, + "complete_object_locator": 6468657640, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -54499,29 +54499,29 @@ }, { "type_name": "CCSUsrMsg_SendAudio", - "vtable_address": 6464942288, + "vtable_address": 6464946384, "methods": [ - 6446119360, - 6457189536, - 6446112528, - 6446113136, - 6446113200, - 6457189584, - 6457186560, - 6446113216, - 6446115024, - 6446114048, + 6446119744, + 6457191728, + 6446112912, + 6446113520, + 6446113584, + 6457191776, + 6457188752, + 6446113600, + 6446115408, + 6446114432, 6443742160, - 6446114912, - 6457190896, - 6457192720, - 6446115136, - 6446116400, - 6446116384, - 6457187520, - 6446117776, - 6457187520, - 6446117968 + 6446115296, + 6457193088, + 6457194912, + 6446115520, + 6446116624, + 6446116608, + 6457189712, + 6446118032, + 6457189712, + 6446118784 ], "bases": [ { @@ -54555,7 +54555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359760, + "complete_object_locator": 6468363992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54564,27 +54564,27 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient", - "vtable_address": 6464925416, + "vtable_address": 6464929512, "methods": [ - 6446032976, - 6457189536, - 6446011488, - 6446012800, - 6446013216, - 6457189584, - 6457186560, - 6446013824, - 6446016960, - 6446014688, + 6446033360, + 6457191728, + 6446011152, + 6446013168, + 6446013584, + 6457191776, + 6457188752, + 6446014208, + 6446017264, + 6446015072, 6443742160, - 6446016256, - 6457190896, - 6457192720, - 6446020096, - 6446020304, - 6446020288, - 6457187520, - 6446032736 + 6446016560, + 6457193088, + 6457194912, + 6446020480, + 6446020688, + 6446020672, + 6457189712, + 6446033120 ], "bases": [ { @@ -54618,7 +54618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359800, + "complete_object_locator": 6468364032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54627,9 +54627,9 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 6466184928, + "vtable_address": 6466189088, "methods": [ - 6451773984, + 6451775568, 6447551472, 6447551456, 6447551504, @@ -54723,7 +54723,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634744, + "complete_object_locator": 6468638840, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -54732,25 +54732,25 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 6466184976, + "vtable_address": 6466189136, "methods": [ - 6451773076, - 6457189536, - 6446011488, - 6446012800, - 6446013216, - 6457189584, - 6457186560, - 6446013824, - 6446016960, - 6446014688, + 6451774660, + 6457191728, + 6446011152, + 6446013168, + 6446013584, + 6457191776, + 6457188752, + 6446014208, + 6446017264, + 6446015072, 6443742160, - 6446016256, - 6457190896, - 6457192720, - 6446020096, - 6446020304, - 6446020288 + 6446016560, + 6457193088, + 6457194912, + 6446020480, + 6446020688, + 6446020672 ], "bases": [ { @@ -54840,7 +54840,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635032, + "complete_object_locator": 6468639128, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -54849,25 +54849,25 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops", - "vtable_address": 6464987376, - "methods": [ - 6446399552, - 6457189536, - 6446368928, - 6446370400, - 6446370544, - 6457189584, - 6457186560, - 6446370560, - 6446373248, - 6446371424, - 6443742160, - 6446373104, - 6457190896, - 6457192720, - 6446374752, - 6446375488, - 6446375296 + "vtable_address": 6464991472, + "methods": [ + 6446399920, + 6457191728, + 6446368880, + 6446370784, + 6446370912, + 6457191776, + 6457188752, + 6446370928, + 6446373632, + 6446371792, + 6443742160, + 6446373488, + 6457193088, + 6457194912, + 6446375056, + 6446375424, + 6446375392 ], "bases": [ { @@ -54901,7 +54901,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359840, + "complete_object_locator": 6468364072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54910,9 +54910,9 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 6466274624, + "vtable_address": 6466278736, "methods": [ - 6452110224, + 6452111808, 6447553696, 6447553680, 6447553712, @@ -55006,7 +55006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468650632, + "complete_object_locator": 6468654728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -55015,25 +55015,25 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 6466274672, - "methods": [ - 6452103544, - 6457189536, - 6446368928, - 6446370400, - 6446370544, - 6457189584, - 6457186560, - 6446370560, - 6446373248, - 6446371424, - 6443742160, - 6446373104, - 6457190896, - 6457192720, - 6446374752, - 6446375488, - 6446375296 + "vtable_address": 6466278784, + "methods": [ + 6452105128, + 6457191728, + 6446368880, + 6446370784, + 6446370912, + 6457191776, + 6457188752, + 6446370928, + 6446373632, + 6446371792, + 6443742160, + 6446373488, + 6457193088, + 6457194912, + 6446375056, + 6446375424, + 6446375392 ], "bases": [ { @@ -55123,7 +55123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468650920, + "complete_object_locator": 6468655016, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -55132,37 +55132,37 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound", - "vtable_address": 6465002408, - "methods": [ - 6446414080, - 6457189536, - 6446405648, - 6446405856, - 6446405936, - 6457189584, - 6457186560, - 6446405952, - 6446406896, - 6446406096, - 6443742160, - 6446406656, - 6457190896, - 6457192720, - 6446407664, - 6446408528, - 6446408512, - 6457187520, - 6446408896, - 6457187520, - 6446409008, - 6457187520, - 6446409104, - 6457187520, - 6446412176, - 6457187520, - 6446412784, - 6457187520, - 6446413888 + "vtable_address": 6465006504, + "methods": [ + 6446413520, + 6457191728, + 6446406032, + 6446406240, + 6446406320, + 6457191776, + 6457188752, + 6446406336, + 6446407280, + 6446406480, + 6443742160, + 6446407040, + 6457193088, + 6457194912, + 6446408048, + 6446408768, + 6446408752, + 6457189712, + 6446409280, + 6457189712, + 6446409536, + 6457189712, + 6446409824, + 6457189712, + 6446412816, + 6457189712, + 6446413024, + 6457189712, + 6446413328 ], "bases": [ { @@ -55196,7 +55196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359880, + "complete_object_locator": 6468364112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -55205,9 +55205,9 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound_t", - "vtable_address": 6466274816, + "vtable_address": 6466278928, "methods": [ - 6452110320, + 6452111904, 6447554064, 6447554048, 6447554080, @@ -55301,7 +55301,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468650960, + "complete_object_locator": 6468655056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -55310,25 +55310,25 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound_t", - "vtable_address": 6466274864, - "methods": [ - 6452103556, - 6457189536, - 6446405648, - 6446405856, - 6446405936, - 6457189584, - 6457186560, - 6446405952, - 6446406896, - 6446406096, - 6443742160, - 6446406656, - 6457190896, - 6457192720, - 6446407664, - 6446408528, - 6446408512 + "vtable_address": 6466278976, + "methods": [ + 6452105140, + 6457191728, + 6446406032, + 6446406240, + 6446406320, + 6457191776, + 6457188752, + 6446406336, + 6446407280, + 6446406480, + 6443742160, + 6446407040, + 6457193088, + 6457194912, + 6446408048, + 6446408768, + 6446408752 ], "bases": [ { @@ -55418,7 +55418,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468651248, + "complete_object_locator": 6468655344, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -55427,25 +55427,25 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout", - "vtable_address": 6464947696, + "vtable_address": 6464951792, "methods": [ - 6446148608, - 6457189536, - 6446122624, - 6446123488, - 6446123696, - 6457189584, - 6457186560, - 6446123712, - 6446125024, - 6446124112, + 6446148976, + 6457191728, + 6446122864, + 6446123872, + 6446124080, + 6457191776, + 6457188752, + 6446124096, + 6446125264, + 6446124496, 6443742160, - 6446124768, - 6457190896, - 6457192720, - 6446126640, - 6446128528, - 6446128512 + 6446125008, + 6457193088, + 6457194912, + 6446126960, + 6446128912, + 6446128896 ], "bases": [ { @@ -55479,7 +55479,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359920, + "complete_object_locator": 6468364152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -55488,25 +55488,25 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_LoadoutItem", - "vtable_address": 6464934952, + "vtable_address": 6464939048, "methods": [ - 6446116464, - 6457189536, - 6446105536, - 6446105808, - 6446105888, - 6457189584, - 6457186560, + 6446116848, + 6457191728, 6446105904, - 6446106992, - 6446106064, - 6443742160, - 6446106656, - 6457190896, - 6457192720, - 6446107024, - 6446108480, - 6446108288 + 6446106192, + 6446106272, + 6457191776, + 6457188752, + 6446106288, + 6446107376, + 6446106448, + 6443742160, + 6446107040, + 6457193088, + 6457194912, + 6446107408, + 6446108864, + 6446108672 ], "bases": [ { @@ -55540,7 +55540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468359960, + "complete_object_locator": 6468364192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -55549,9 +55549,9 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 6466276928, + "vtable_address": 6466281040, "methods": [ - 6452110416, + 6452112000, 6447570368, 6447570352, 6447570384, @@ -55645,7 +55645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468654568, + "complete_object_locator": 6468658664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -55654,25 +55654,25 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 6466276976, + "vtable_address": 6466281088, "methods": [ - 6452103568, - 6457189536, - 6446122624, - 6446123488, - 6446123696, - 6457189584, - 6457186560, - 6446123712, - 6446125024, - 6446124112, + 6452105152, + 6457191728, + 6446122864, + 6446123872, + 6446124080, + 6457191776, + 6457188752, + 6446124096, + 6446125264, + 6446124496, 6443742160, - 6446124768, - 6457190896, - 6457192720, - 6446126640, - 6446128528, - 6446128512 + 6446125008, + 6457193088, + 6457194912, + 6446126960, + 6446128912, + 6446128896 ], "bases": [ { @@ -55762,7 +55762,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468654856, + "complete_object_locator": 6468658952, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -55771,25 +55771,25 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll", - "vtable_address": 6464923000, - "methods": [ - 6446005344, - 6457189536, - 6445995488, - 6445996448, - 6445997552, - 6457189584, - 6457186560, - 6445997568, - 6445999024, - 6445998320, - 6443742160, - 6445998800, - 6457190896, - 6457192720, - 6445999296, - 6445999424, - 6445999408 + "vtable_address": 6464927096, + "methods": [ + 6446005152, + 6457191728, + 6445995872, + 6445996832, + 6445997792, + 6457191776, + 6457188752, + 6445997808, + 6445999408, + 6445998560, + 6443742160, + 6445999184, + 6457193088, + 6457194912, + 6445999680, + 6445999792, + 6445999776 ], "bases": [ { @@ -55823,7 +55823,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360096, + "complete_object_locator": 6468364328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -55832,9 +55832,9 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 6466274432, + "vtable_address": 6466278544, "methods": [ - 6452110512, + 6452112096, 6447553328, 6447553312, 6447553344, @@ -55928,7 +55928,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468650304, + "complete_object_locator": 6468654400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -55937,25 +55937,25 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 6466274480, - "methods": [ - 6452103580, - 6457189536, - 6445995488, - 6445996448, - 6445997552, - 6457189584, - 6457186560, - 6445997568, - 6445999024, - 6445998320, - 6443742160, - 6445998800, - 6457190896, - 6457192720, - 6445999296, - 6445999424, - 6445999408 + "vtable_address": 6466278592, + "methods": [ + 6452105164, + 6457191728, + 6445995872, + 6445996832, + 6445997792, + 6457191776, + 6457188752, + 6445997808, + 6445999408, + 6445998560, + 6443742160, + 6445999184, + 6457193088, + 6457194912, + 6445999680, + 6445999792, + 6445999776 ], "bases": [ { @@ -56045,7 +56045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468650592, + "complete_object_locator": 6468654688, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -56054,27 +56054,29 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate", - "vtable_address": 6464932200, + "vtable_address": 6464936296, "methods": [ - 6446090384, - 6457189536, - 6446067376, + 6446090768, + 6457191728, 6446067760, - 6446067936, - 6457189584, - 6457186560, - 6446067952, - 6446068928, - 6446068352, - 6443742160, - 6446068784, - 6457190896, - 6457192720, - 6446069568, - 6446070464, - 6446070416, - 6457187520, - 6446086912 + 6446068144, + 6446068320, + 6457191776, + 6457188752, + 6446068336, + 6446069296, + 6446068720, + 6443742160, + 6446069152, + 6457193088, + 6457194912, + 6446069600, + 6446070784, + 6446070704, + 6457189712, + 6446087296, + 6457189712, + 6446088512 ], "bases": [ { @@ -56108,7 +56110,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360136, + "complete_object_locator": 6468364368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56117,27 +56119,27 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_RankUpdate", - "vtable_address": 6464928632, + "vtable_address": 6464932728, "methods": [ - 6446062368, - 6457189536, - 6446041168, - 6446041536, - 6446041584, - 6457189584, - 6457186560, - 6446041600, - 6446043328, - 6446041824, + 6446062752, + 6457191728, + 6446041472, + 6446041920, + 6446041968, + 6457191776, + 6457188752, + 6446041984, + 6446043712, + 6446042208, 6443742160, - 6446042688, - 6457190896, - 6457192720, - 6446043520, - 6446043568, - 6446043552, - 6457187520, - 6446061296 + 6446043072, + 6457193088, + 6457194912, + 6446043904, + 6446043952, + 6446043936, + 6457189712, + 6446061680 ], "bases": [ { @@ -56171,7 +56173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360176, + "complete_object_locator": 6468364408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56180,9 +56182,9 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_t", - "vtable_address": 6466275008, + "vtable_address": 6466279120, "methods": [ - 6452110608, + 6452112192, 6447557376, 6447557360, 6447557392, @@ -56276,7 +56278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468651288, + "complete_object_locator": 6468655384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -56285,25 +56287,25 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_t", - "vtable_address": 6466275056, + "vtable_address": 6466279168, "methods": [ - 6452103592, - 6457189536, - 6446067376, + 6452105176, + 6457191728, 6446067760, - 6446067936, - 6457189584, - 6457186560, - 6446067952, - 6446068928, - 6446068352, + 6446068144, + 6446068320, + 6457191776, + 6457188752, + 6446068336, + 6446069296, + 6446068720, 6443742160, - 6446068784, - 6457190896, - 6457192720, - 6446069568, - 6446070464, - 6446070416 + 6446069152, + 6457193088, + 6457194912, + 6446069600, + 6446070784, + 6446070704 ], "bases": [ { @@ -56393,7 +56395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468651576, + "complete_object_locator": 6468655672, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -56402,33 +56404,25 @@ }, { "type_name": "CCSUsrMsg_Shake", - "vtable_address": 6464924216, + "vtable_address": 6464928024, "methods": [ - 6446011664, - 6457189536, - 6446002768, - 6446003232, - 6446003264, - 6457189584, - 6457186560, - 6446003280, - 6446004592, - 6446003616, - 6443742160, - 6446004288, - 6457190896, - 6457192720, - 6446005872, - 6446006480, - 6446006368, - 6457187520, - 6446008928, - 6457187520, - 6446010384, - 6457187520, - 6446011968, - 6457187520, - 6446012192 + 6446011648, + 6457191728, + 6446003152, + 6446003408, + 6446003456, + 6457191776, + 6457188752, + 6446003664, + 6446004736, + 6446003760, + 6443742160, + 6446004272, + 6457193088, + 6457194912, + 6446005904, + 6446006624, + 6446006592 ], "bases": [ { @@ -56462,7 +56456,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360312, + "complete_object_locator": 6468364544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56471,27 +56465,27 @@ }, { "type_name": "CCSUsrMsg_ShootInfo", - "vtable_address": 6464884720, + "vtable_address": 6464888816, "methods": [ - 6445888576, - 6457189536, - 6445851584, - 6445852128, - 6445852496, - 6457189584, - 6457186560, - 6445852576, - 6445855328, - 6445853168, - 6443742160, - 6445855008, - 6457190896, - 6457192720, - 6445856192, - 6445856240, - 6445856224, - 6457187520, - 6445884608 + 6445888960, + 6457191728, + 6445851824, + 6445852512, + 6445852880, + 6457191776, + 6457188752, + 6445852960, + 6445855712, + 6445853552, + 6443742160, + 6445855392, + 6457193088, + 6457194912, + 6445856576, + 6445856624, + 6445856608, + 6457189712, + 6445884976 ], "bases": [ { @@ -56525,7 +56519,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360448, + "complete_object_locator": 6468364680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56534,25 +56528,25 @@ }, { "type_name": "CCSUsrMsg_ShowMenu", - "vtable_address": 6464947120, - "methods": [ - 6446147056, - 6457189536, - 6446137088, - 6446137776, - 6446138160, - 6457189584, - 6457186560, - 6446139008, - 6446142096, - 6446140160, - 6443742160, - 6446141760, - 6457190896, - 6457192720, - 6446143232, - 6446143376, - 6446143360 + "vtable_address": 6464951216, + "methods": [ + 6446147440, + 6457191728, + 6446137248, + 6446137680, + 6446138256, + 6457191776, + 6457188752, + 6446138512, + 6446141536, + 6446139232, + 6443742160, + 6446141200, + 6457193088, + 6457194912, + 6446143040, + 6446143664, + 6446143648 ], "bases": [ { @@ -56586,7 +56580,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360488, + "complete_object_locator": 6468364720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56595,27 +56589,29 @@ }, { "type_name": "CCSUsrMsg_StopSpectatorMode", - "vtable_address": 6464905952, - "methods": [ - 6445948208, - 6457189536, - 6445941984, - 6445945104, - 6445945152, - 6457189584, - 6457186560, - 6445945168, - 6445945936, - 6445945216, + "vtable_address": 6464910032, + "methods": [ + 6445948752, + 6457191728, + 6445941856, + 6445943888, + 6445943920, + 6457191776, + 6457188752, + 6445945008, + 6445946304, + 6445945584, 6443742160, - 6445945616, - 6457190896, - 6457192720, - 6445945952, - 6445946208, - 6445946192, - 6457187520, - 6445947488 + 6445945984, + 6457193088, + 6457194912, + 6445946336, + 6445946592, + 6445946576, + 6457189712, + 6445946816, + 6457189712, + 6445947856 ], "bases": [ { @@ -56649,7 +56645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360624, + "complete_object_locator": 6468364856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56658,25 +56654,25 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats", - "vtable_address": 6465003864, - "methods": [ - 6446426336, - 6457189536, - 6446369616, - 6446371840, - 6446372192, - 6457189584, - 6457186560, - 6446372208, - 6446374736, - 6446373360, + "vtable_address": 6465007960, + "methods": [ + 6446426704, + 6457191728, + 6446369808, + 6446372224, + 6446372576, + 6457191776, + 6457188752, + 6446372592, + 6446375040, + 6446373664, 6443742160, - 6446374224, - 6457190896, - 6457192720, - 6446374864, - 6446377968, - 6446377472 + 6446374528, + 6457193088, + 6457194912, + 6446375232, + 6446376960, + 6446376672 ], "bases": [ { @@ -56710,7 +56706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360760, + "complete_object_locator": 6468364992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56719,27 +56715,27 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Damage", - "vtable_address": 6464983672, + "vtable_address": 6464987768, "methods": [ - 6446363920, - 6457189536, - 6446342336, - 6446343376, - 6446343440, - 6457189584, - 6457186560, - 6446343616, - 6446346048, - 6446344208, + 6446364304, + 6457191728, + 6446342256, + 6446343488, + 6446343552, + 6457191776, + 6457188752, + 6446343728, + 6446346416, + 6446344576, 6443742160, - 6446345296, - 6457190896, - 6457192720, - 6446346176, - 6446347936, - 6446347456, - 6457187520, - 6446356848 + 6446345664, + 6457193088, + 6457194912, + 6446346480, + 6446348064, + 6446347664, + 6457189712, + 6446357232 ], "bases": [ { @@ -56773,7 +56769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360800, + "complete_object_locator": 6468365032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56782,27 +56778,27 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Fact", - "vtable_address": 6464978640, - "methods": [ - 6446317264, - 6457189536, - 6446300832, - 6446301040, - 6446301072, - 6457189584, - 6457186560, - 6446301088, - 6446302816, - 6446301392, - 6443742160, - 6446302384, - 6457190896, - 6457192720, - 6446305024, - 6446305072, - 6446305056, - 6457187520, - 6446310464 + "vtable_address": 6464982736, + "methods": [ + 6446317648, + 6457191728, + 6446301216, + 6446301424, + 6446301456, + 6457191776, + 6457188752, + 6446301472, + 6446303200, + 6446301776, + 6443742160, + 6446302768, + 6457193088, + 6457194912, + 6446305408, + 6446305456, + 6446305440, + 6457189712, + 6446310848 ], "bases": [ { @@ -56836,7 +56832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468360936, + "complete_object_locator": 6468298816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56845,25 +56841,25 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Placement", - "vtable_address": 6464980256, + "vtable_address": 6464984352, "methods": [ - 6446338208, - 6457189536, - 6446326656, - 6446326912, - 6446326944, - 6457189584, - 6457186560, - 6446326960, - 6446328416, - 6446327296, + 6446338592, + 6457191728, + 6446327040, + 6446327152, + 6446327184, + 6457191776, + 6457188752, + 6446327344, + 6446328800, + 6446327680, 6443742160, - 6446328016, - 6457190896, - 6457192720, - 6446329168, - 6446330080, - 6446330064 + 6446328400, + 6457193088, + 6457194912, + 6446329552, + 6446330464, + 6446330448 ], "bases": [ { @@ -56897,7 +56893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294720, + "complete_object_locator": 6468298952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56906,27 +56902,29 @@ }, { "type_name": "CCSUsrMsg_Train", - "vtable_address": 6464905632, - "methods": [ - 6445946048, - 6457189536, - 6445932352, - 6445934192, - 6445934224, - 6457189584, - 6457186560, - 6445935584, - 6445938000, - 6445936816, - 6443742160, - 6445937824, - 6457190896, - 6457192720, + "vtable_address": 6464909712, + "methods": [ + 6445946352, + 6457191728, + 6445932736, + 6445934432, + 6445934464, + 6457191776, + 6457188752, + 6445935808, 6445938384, - 6445939248, - 6445938928, - 6457187520, - 6445944352 + 6445937120, + 6443742160, + 6445938208, + 6457193088, + 6457194912, + 6445938768, + 6445939632, + 6445939312, + 6457189712, + 6445941872, + 6457189712, + 6445943664 ], "bases": [ { @@ -56960,7 +56958,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294856, + "complete_object_locator": 6468299088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56969,25 +56967,25 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar", - "vtable_address": 6465008376, + "vtable_address": 6465012472, "methods": [ - 6446480560, - 6457189536, - 6446467904, - 6446468960, - 6446469024, - 6457189584, - 6457186560, - 6446469040, - 6446472272, - 6446469904, + 6446480944, + 6457191728, + 6446468288, + 6446469344, + 6446469408, + 6457191776, + 6457188752, + 6446469424, + 6446472656, + 6446470288, 6443742160, - 6446471136, - 6457190896, - 6457192720, - 6446474576, - 6446474880, - 6446474864 + 6446471520, + 6457193088, + 6457194912, + 6446474960, + 6446475264, + 6446475248 ], "bases": [ { @@ -57021,7 +57019,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294992, + "complete_object_locator": 6468299224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57030,9 +57028,9 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar_t", - "vtable_address": 6466185120, + "vtable_address": 6466189280, "methods": [ - 6451774080, + 6451775664, 6447561056, 6447561040, 6447561072, @@ -57126,7 +57124,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635072, + "complete_object_locator": 6468639168, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -57135,25 +57133,25 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar_t", - "vtable_address": 6466185168, + "vtable_address": 6466189328, "methods": [ - 6451773088, - 6457189536, - 6446467904, - 6446468960, - 6446469024, - 6457189584, - 6457186560, - 6446469040, - 6446472272, - 6446469904, + 6451774672, + 6457191728, + 6446468288, + 6446469344, + 6446469408, + 6457191776, + 6457188752, + 6446469424, + 6446472656, + 6446470288, 6443742160, - 6446471136, - 6457190896, - 6457192720, - 6446474576, - 6446474880, - 6446474864 + 6446471520, + 6457193088, + 6457194912, + 6446474960, + 6446475264, + 6446475248 ], "bases": [ { @@ -57243,7 +57241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635360, + "complete_object_locator": 6468639456, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -57252,27 +57250,27 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu", - "vtable_address": 6464898248, - "methods": [ - 6445910416, - 6457189536, - 6445890480, - 6445890800, - 6445891056, - 6457189584, - 6457186560, - 6445891072, - 6445892416, - 6445891584, + "vtable_address": 6464902344, + "methods": [ + 6445910784, + 6457191728, + 6445890848, + 6445891104, + 6445891360, + 6457191776, + 6457188752, + 6445891376, + 6445892800, + 6445891968, 6443742160, - 6445892192, - 6457190896, - 6457192720, - 6445892448, - 6445893008, - 6445892976, - 6457187520, - 6445905344 + 6445892576, + 6457193088, + 6457194912, + 6445892832, + 6445893392, + 6445893360, + 6457189712, + 6445905712 ], "bases": [ { @@ -57306,7 +57304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295032, + "complete_object_locator": 6468299264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57315,25 +57313,25 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu_Keys", - "vtable_address": 6464884096, - "methods": [ - 6445872400, - 6457189536, - 6445863904, - 6445864288, - 6445864384, - 6457189584, - 6457186560, - 6445864400, - 6445865232, - 6445864608, + "vtable_address": 6464888192, + "methods": [ + 6445872784, + 6457191728, + 6445863680, + 6445864656, + 6445864752, + 6457191776, + 6457188752, + 6445864768, + 6445865536, + 6445864992, 6443742160, - 6445865072, - 6457190896, - 6457192720, - 6445865312, - 6445865344, - 6445865328 + 6445865376, + 6457193088, + 6457194912, + 6445865696, + 6445865728, + 6445865712 ], "bases": [ { @@ -57367,7 +57365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295072, + "complete_object_locator": 6468299304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57376,25 +57374,25 @@ }, { "type_name": "CCSUsrMsg_VoiceMask", - "vtable_address": 6464963888, + "vtable_address": 6464967824, "methods": [ - 6446192080, - 6457189536, - 6446165760, - 6446166944, - 6446167488, - 6457189584, - 6457186560, - 6446167616, - 6446168800, - 6446168096, + 6446192240, + 6457191728, + 6446166144, + 6446166704, + 6446167056, + 6457191776, + 6457188752, + 6446167088, + 6446169184, + 6446167776, 6443742160, - 6446168608, - 6457190896, - 6457192720, - 6446168848, - 6446169040, - 6446169024 + 6446168800, + 6457193088, + 6457194912, + 6446169216, + 6446169360, + 6446169328 ], "bases": [ { @@ -57428,7 +57426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295208, + "complete_object_locator": 6468299440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57437,31 +57435,33 @@ }, { "type_name": "CCSUsrMsg_VoiceMask_PlayerMask", - "vtable_address": 6464948832, - "methods": [ - 6446158112, - 6457189536, - 6446149552, - 6446150448, - 6446150480, - 6457189584, - 6457186560, - 6446150496, - 6446151552, - 6446150608, - 6443742160, - 6446151200, - 6457190896, - 6457192720, - 6446152224, - 6446152272, - 6446152256, - 6457187520, - 6446156704, - 6457187520, - 6446158256, - 6457187520, - 6446158480 + "vtable_address": 6464952912, + "methods": [ + 6446158272, + 6457191728, + 6446149584, + 6446150640, + 6446150672, + 6457191776, + 6457188752, + 6446150688, + 6446151776, + 6446150976, + 6443742160, + 6446151472, + 6457193088, + 6457194912, + 6446151952, + 6446152640, + 6446152624, + 6457189712, + 6446155968, + 6457189712, + 6446156816, + 6457189712, + 6446158416, + 6457189712, + 6446158784 ], "bases": [ { @@ -57495,7 +57495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295344, + "complete_object_locator": 6468299576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57504,27 +57504,27 @@ }, { "type_name": "CCSUsrMsg_VoteFailed", - "vtable_address": 6464920920, + "vtable_address": 6464925016, "methods": [ - 6445985664, - 6457189536, - 6445979984, - 6445980320, - 6445980352, - 6457189584, - 6457186560, + 6445986048, + 6457191728, 6445980368, - 6445981360, - 6445980464, - 6443742160, - 6445981040, - 6457190896, - 6457192720, - 6445981376, - 6445983504, - 6445983040, - 6457187520, - 6445984784 + 6445980496, + 6445980592, + 6457191776, + 6457188752, + 6445980608, + 6445981744, + 6445980848, + 6443742160, + 6445981424, + 6457193088, + 6457194912, + 6445981760, + 6445983888, + 6445983424, + 6457189712, + 6445985168 ], "bases": [ { @@ -57558,7 +57558,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295480, + "complete_object_locator": 6468299712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57567,9 +57567,9 @@ }, { "type_name": "CCSUsrMsg_VoteFailed_t", - "vtable_address": 6466522888, + "vtable_address": 6466527016, "methods": [ - 6453658720, + 6453660480, 6447555904, 6447555888, 6447555920, @@ -57663,7 +57663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468715880, + "complete_object_locator": 6468719976, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -57672,25 +57672,25 @@ }, { "type_name": "CCSUsrMsg_VoteFailed_t", - "vtable_address": 6466522936, + "vtable_address": 6466527064, "methods": [ - 6453654528, - 6457189536, - 6445979984, - 6445980320, - 6445980352, - 6457189584, - 6457186560, + 6453656288, + 6457191728, 6445980368, - 6445981360, - 6445980464, - 6443742160, - 6445981040, - 6457190896, - 6457192720, - 6445981376, - 6445983504, - 6445983040 + 6445980496, + 6445980592, + 6457191776, + 6457188752, + 6445980608, + 6445981744, + 6445980848, + 6443742160, + 6445981424, + 6457193088, + 6457194912, + 6445981760, + 6445983888, + 6445983424 ], "bases": [ { @@ -57780,7 +57780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468716168, + "complete_object_locator": 6468720264, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -57789,27 +57789,27 @@ }, { "type_name": "CCSUsrMsg_VotePass", - "vtable_address": 6464907448, + "vtable_address": 6464911544, "methods": [ - 6445958656, - 6457189536, - 6445948608, - 6445948912, - 6445949040, - 6457189584, - 6457186560, - 6445949056, - 6445950560, - 6445949248, + 6445959040, + 6457191728, + 6445948992, + 6445949296, + 6445949424, + 6457191776, + 6457188752, + 6445949440, + 6445950944, + 6445949632, 6443742160, - 6445950016, - 6457190896, - 6457192720, - 6445951424, - 6445952112, - 6445952080, - 6457187520, - 6445956000 + 6445950400, + 6457193088, + 6457194912, + 6445951808, + 6445952496, + 6445952464, + 6457189712, + 6445956384 ], "bases": [ { @@ -57843,7 +57843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295520, + "complete_object_locator": 6468299752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57852,9 +57852,9 @@ }, { "type_name": "CCSUsrMsg_VotePass_t", - "vtable_address": 6466522696, + "vtable_address": 6466526824, "methods": [ - 6453658816, + 6453660576, 6447555536, 6447555520, 6447555552, @@ -57948,7 +57948,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468715552, + "complete_object_locator": 6468719648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -57957,25 +57957,25 @@ }, { "type_name": "CCSUsrMsg_VotePass_t", - "vtable_address": 6466522744, + "vtable_address": 6466526872, "methods": [ - 6453654540, - 6457189536, - 6445948608, - 6445948912, - 6445949040, - 6457189584, - 6457186560, - 6445949056, - 6445950560, - 6445949248, + 6453656300, + 6457191728, + 6445948992, + 6445949296, + 6445949424, + 6457191776, + 6457188752, + 6445949440, + 6445950944, + 6445949632, 6443742160, - 6445950016, - 6457190896, - 6457192720, - 6445951424, - 6445952112, - 6445952080 + 6445950400, + 6457193088, + 6457194912, + 6445951808, + 6445952496, + 6445952464 ], "bases": [ { @@ -58065,7 +58065,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468715840, + "complete_object_locator": 6468719936, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -58074,25 +58074,25 @@ }, { "type_name": "CCSUsrMsg_VoteSetup", - "vtable_address": 6464923144, - "methods": [ - 6446005888, - 6457189536, - 6445993584, - 6445994864, - 6445994912, - 6457189584, - 6457186560, - 6445994928, - 6445995760, - 6445995120, - 6443742160, + "vtable_address": 6464927240, + "methods": [ + 6446005920, + 6457191728, + 6445993952, + 6445995024, + 6445995088, + 6457191776, + 6457188752, + 6445995168, + 6445996144, 6445995504, - 6457190896, - 6457192720, - 6445996512, - 6445999056, - 6445999040 + 6443742160, + 6445995888, + 6457193088, + 6457194912, + 6445996896, + 6445999440, + 6445999424 ], "bases": [ { @@ -58126,7 +58126,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295560, + "complete_object_locator": 6468299792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58135,9 +58135,9 @@ }, { "type_name": "CCSUsrMsg_VoteSetup_t", - "vtable_address": 6466523080, + "vtable_address": 6466527208, "methods": [ - 6453658912, + 6453660672, 6447556272, 6447556256, 6447556288, @@ -58231,7 +58231,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468716208, + "complete_object_locator": 6468720304, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -58240,25 +58240,25 @@ }, { "type_name": "CCSUsrMsg_VoteSetup_t", - "vtable_address": 6466523128, - "methods": [ - 6453654552, - 6457189536, - 6445993584, - 6445994864, - 6445994912, - 6457189584, - 6457186560, - 6445994928, - 6445995760, - 6445995120, - 6443742160, + "vtable_address": 6466527256, + "methods": [ + 6453656312, + 6457191728, + 6445993952, + 6445995024, + 6445995088, + 6457191776, + 6457188752, + 6445995168, + 6445996144, 6445995504, - 6457190896, - 6457192720, - 6445996512, - 6445999056, - 6445999040 + 6443742160, + 6445995888, + 6457193088, + 6457194912, + 6445996896, + 6445999440, + 6445999424 ], "bases": [ { @@ -58348,7 +58348,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468716496, + "complete_object_locator": 6468720592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -58357,25 +58357,25 @@ }, { "type_name": "CCSUsrMsg_VoteStart", - "vtable_address": 6464905328, - "methods": [ - 6445944400, - 6457189536, - 6445919696, - 6445921312, - 6445921488, - 6457189584, - 6457186560, - 6445921904, - 6445925840, - 6445923264, + "vtable_address": 6464909424, + "methods": [ + 6445943712, + 6457191728, + 6445920000, + 6445921536, + 6445921712, + 6457191776, + 6457188752, + 6445922128, + 6445926224, + 6445923648, 6443742160, - 6445925200, - 6457190896, - 6457192720, - 6445926096, - 6445926768, - 6445926720 + 6445925584, + 6457193088, + 6457194912, + 6445926464, + 6445926992, + 6445926960 ], "bases": [ { @@ -58409,7 +58409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295600, + "complete_object_locator": 6468299832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58418,9 +58418,9 @@ }, { "type_name": "CCSUsrMsg_VoteStart_t", - "vtable_address": 6466522504, + "vtable_address": 6466526632, "methods": [ - 6453659008, + 6453660768, 6447555168, 6447555152, 6447555184, @@ -58514,7 +58514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468715224, + "complete_object_locator": 6468719320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -58523,25 +58523,25 @@ }, { "type_name": "CCSUsrMsg_VoteStart_t", - "vtable_address": 6466522552, - "methods": [ - 6453654564, - 6457189536, - 6445919696, - 6445921312, - 6445921488, - 6457189584, - 6457186560, - 6445921904, - 6445925840, - 6445923264, + "vtable_address": 6466526680, + "methods": [ + 6453656324, + 6457191728, + 6445920000, + 6445921536, + 6445921712, + 6457191776, + 6457188752, + 6445922128, + 6445926224, + 6445923648, 6443742160, - 6445925200, - 6457190896, - 6457192720, - 6445926096, - 6445926768, - 6445926720 + 6445925584, + 6457193088, + 6457194912, + 6445926464, + 6445926992, + 6445926960 ], "bases": [ { @@ -58631,7 +58631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468715512, + "complete_object_locator": 6468719608, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -58640,25 +58640,25 @@ }, { "type_name": "CCSUsrMsg_WeaponSound", - "vtable_address": 6465006312, + "vtable_address": 6465010408, "methods": [ - 6446457216, - 6457189536, - 6446442736, - 6446442976, - 6446443216, - 6457189584, - 6457186560, - 6446443232, - 6446445104, - 6446443568, + 6446457600, + 6457191728, + 6446443120, + 6446443344, + 6446443424, + 6457191776, + 6457188752, + 6446443440, + 6446445152, + 6446443648, 6443742160, - 6446444624, - 6457190896, - 6457192720, - 6446446752, - 6446448240, - 6446448224 + 6446444672, + 6457193088, + 6457194912, + 6446446720, + 6446448608, + 6446448592 ], "bases": [ { @@ -58692,7 +58692,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295640, + "complete_object_locator": 6468299872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58701,9 +58701,9 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 6466275968, + "vtable_address": 6466280080, "methods": [ - 6452110704, + 6452112288, 6447559584, 6447559568, 6447559600, @@ -58797,7 +58797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468652928, + "complete_object_locator": 6468657024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -58806,25 +58806,25 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 6466276016, + "vtable_address": 6466280128, "methods": [ - 6452103604, - 6457189536, - 6446442736, - 6446442976, - 6446443216, - 6457189584, - 6457186560, - 6446443232, - 6446445104, - 6446443568, + 6452105188, + 6457191728, + 6446443120, + 6446443344, + 6446443424, + 6457191776, + 6457188752, + 6446443440, + 6446445152, + 6446443648, 6443742160, - 6446444624, - 6457190896, - 6457192720, - 6446446752, - 6446448240, - 6446448224 + 6446444672, + 6457193088, + 6457194912, + 6446446720, + 6446448608, + 6446448592 ], "bases": [ { @@ -58914,7 +58914,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468653216, + "complete_object_locator": 6468657312, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -58923,25 +58923,25 @@ }, { "type_name": "CCSUsrMsg_XRankGet", - "vtable_address": 6464884384, - "methods": [ - 6445882368, - 6457189536, - 6445865568, - 6445865824, - 6445865856, - 6457189584, - 6457186560, - 6445865872, - 6445867568, - 6445866112, - 6443742160, - 6445867264, - 6457190896, - 6457192720, - 6445868736, - 6445871936, - 6445871344 + "vtable_address": 6464888480, + "methods": [ + 6445882752, + 6457191728, + 6445865952, + 6445866208, + 6445866240, + 6457191776, + 6457188752, + 6445866256, + 6445867824, + 6445866352, + 6443742160, + 6445867520, + 6457193088, + 6457194912, + 6445869600, + 6445872160, + 6445871568 ], "bases": [ { @@ -58975,7 +58975,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295680, + "complete_object_locator": 6468299912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58984,25 +58984,25 @@ }, { "type_name": "CCSUsrMsg_XRankUpd", - "vtable_address": 6464885848, - "methods": [ - 6445899152, - 6457189536, - 6445892992, - 6445893744, - 6445893792, - 6457189584, - 6457186560, - 6445893808, - 6445895088, - 6445893952, - 6443742160, - 6445894672, - 6457190896, - 6457192720, - 6445896064, + "vtable_address": 6464889944, + "methods": [ + 6445899536, + 6457191728, + 6445893376, + 6445894128, + 6445894176, + 6457191776, + 6457188752, + 6445894192, + 6445895472, + 6445894336, + 6443742160, + 6445895056, + 6457193088, + 6457194912, 6445896448, - 6445896432 + 6445896832, + 6445896816 ], "bases": [ { @@ -59036,7 +59036,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295816, + "complete_object_locator": 6468300048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59045,25 +59045,25 @@ }, { "type_name": "CCSUsrMsg_XpUpdate", - "vtable_address": 6464934136, + "vtable_address": 6464938232, "methods": [ - 6446108688, - 6457189536, - 6446100848, - 6446101920, - 6446102160, - 6457189584, - 6457186560, - 6446102176, - 6446102960, - 6446102272, + 6446109072, + 6457191728, + 6446101136, + 6446101856, + 6446102416, + 6457191776, + 6457188752, + 6446102432, + 6446103328, + 6446102640, 6443742160, - 6446102848, - 6457190896, - 6457192720, - 6446103728, - 6446105296, - 6446105280 + 6446103216, + 6457193088, + 6457194912, + 6446103792, + 6446105680, + 6446105648 ], "bases": [ { @@ -59097,7 +59097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295952, + "complete_object_locator": 6468300184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59106,9 +59106,9 @@ }, { "type_name": "CCSUsrMsg_XpUpdate_t", - "vtable_address": 6466275200, + "vtable_address": 6466279312, "methods": [ - 6452110800, + 6452112384, 6447557744, 6447557728, 6447557760, @@ -59202,7 +59202,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468651616, + "complete_object_locator": 6468655712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -59211,25 +59211,25 @@ }, { "type_name": "CCSUsrMsg_XpUpdate_t", - "vtable_address": 6466275248, + "vtable_address": 6466279360, "methods": [ - 6452103616, - 6457189536, - 6446100848, - 6446101920, - 6446102160, - 6457189584, - 6457186560, - 6446102176, - 6446102960, - 6446102272, + 6452105200, + 6457191728, + 6446101136, + 6446101856, + 6446102416, + 6457191776, + 6457188752, + 6446102432, + 6446103328, + 6446102640, 6443742160, - 6446102848, - 6457190896, - 6457192720, - 6446103728, - 6446105296, - 6446105280 + 6446103216, + 6457193088, + 6457194912, + 6446103792, + 6446105680, + 6446105648 ], "bases": [ { @@ -59319,7 +59319,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468651904, + "complete_object_locator": 6468656000, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -59328,13 +59328,13 @@ }, { "type_name": "CCSVoiceStatusHelper", - "vtable_address": 6466317016, + "vtable_address": 6466321176, "methods": [ - 6452319456, - 6452318768, - 6452318800, - 6452318816, - 6452318832 + 6452321072, + 6452320384, + 6452320416, + 6452320432, + 6452320448 ], "bases": [ { @@ -59354,7 +59354,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468671328, + "complete_object_locator": 6468675424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59363,16 +59363,16 @@ }, { "type_name": "CCSWeaponBaseVData", - "vtable_address": 6465448936, + "vtable_address": 6465453104, "methods": [ - 6448111360, - 6448208208, - 6448182192, - 6448174288, - 6448180304, - 6448199840, - 6448163200, - 6448161328 + 6448112928, + 6448209776, + 6448183760, + 6448175856, + 6448181872, + 6448201408, + 6448164768, + 6448162896 ], "bases": [ { @@ -59420,7 +59420,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450448, + "complete_object_locator": 6468454544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59429,11 +59429,11 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 6465396544, + "vtable_address": 6465400704, "methods": [ - 6447973168, + 6447974736, 6443748592, - 6447973216, + 6447974784, 6443748624, 6443748640, 6443748656, @@ -59487,11 +59487,11 @@ 6443749424, 6443749440, 6443749456, - 6447973136, + 6447974704, 6443749488, - 6447973120, - 6447970496, - 6447973104 + 6447974688, + 6447972064, + 6447974672 ], "bases": [ { @@ -59539,7 +59539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468442192, + "complete_object_locator": 6468446288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -59548,9 +59548,9 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 6465397040, + "vtable_address": 6465401200, "methods": [ - 6447973264 + 6447974832 ], "bases": [ { @@ -59598,7 +59598,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468442376, + "complete_object_locator": 6468446472, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -59607,14 +59607,14 @@ }, { "type_name": "CCS_PortraitWorld", - "vtable_address": 6466460544, + "vtable_address": 6466464672, "methods": [ - 6453195280 + 6453196896 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468700504, + "complete_object_locator": 6468704600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59623,32 +59623,32 @@ }, { "type_name": "CCS_PortraitWorldCallbackHandler", - "vtable_address": 6466458792, + "vtable_address": 6466462920, "methods": [ 6445466896, - 6453195344, + 6453196960, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -59657,25 +59657,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6453251312, - 6453330304, - 6453360944, + 6460060080, + 6453252912, + 6453332064, + 6453362704, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -59692,13 +59692,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -59706,39 +59706,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -59752,33 +59752,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -59806,34 +59806,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6453384256, + 6453386016, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -59876,7 +59876,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468700760, + "complete_object_locator": 6468704856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59885,7 +59885,7 @@ }, { "type_name": "CCS_PortraitWorldSpawnerAsync", - "vtable_address": 6466460560, + "vtable_address": 6466464688, "methods": [ 6445372640, 6444873664 @@ -59922,7 +59922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468700624, + "complete_object_locator": 6468704720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59931,20 +59931,20 @@ }, { "type_name": "CCStrike15BasePanel", - "vtable_address": 6466347632, + "vtable_address": 6466351792, "methods": [ - 6452505424, - 6452504288, - 6452509728, - 6452509696, - 6452504704, - 6452509776, - 6452509744, - 6452504720, - 6452509792, - 6452509712, - 6452509760, - 6452509808 + 6452507040, + 6452505904, + 6452511344, + 6452511312, + 6452506320, + 6452511392, + 6452511360, + 6452506336, + 6452511408, + 6452511328, + 6452511376, + 6452511424 ], "bases": [ { @@ -59964,7 +59964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468680408, + "complete_object_locator": 6468684504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59973,56 +59973,56 @@ }, { "type_name": "CCStrike15ItemDefinition", - "vtable_address": 6465632256, - "methods": [ - 6448295792, - 6448298112, - 6448296096, + "vtable_address": 6465636432, + "methods": [ + 6448297360, + 6448299680, + 6448297664, + 6448299072, + 6448297712, + 6456142656, + 6448297120, + 6456169664, 6448297504, - 6448296144, - 6456140880, - 6448295552, - 6456167888, - 6448295936, - 6448298656, - 6448295952, - 6448298624, - 6456144528, - 6448295632, - 6448295584, - 6448306208, - 6448306784, - 6448306224, - 6448306736, - 6448306752, - 6456021008, - 6448276736, - 6448278544, - 6448283072, - 6448310368, - 6456095712, - 6456097904, - 6456095472, - 6448297488, - 6448306240, + 6448300224, 6448297520, - 6448306768, - 6448295648, - 6448299552, - 6448299568, - 6456152128, - 6456147696, - 6456159344, - 6456166496, - 6456161312, - 6456150336, - 6456150320, - 6448295984, - 6448298080, - 6448298096, - 6448306800, - 6456250336, - 6448302560 + 6448300192, + 6456146304, + 6448297200, + 6448297152, + 6448307776, + 6448308352, + 6448307792, + 6448308304, + 6448308320, + 6456022784, + 6448278304, + 6448280112, + 6448284640, + 6448311936, + 6456097488, + 6456099680, + 6456097248, + 6448299056, + 6448307808, + 6448299088, + 6448308336, + 6448297216, + 6448301120, + 6448301136, + 6456153904, + 6456149472, + 6456161120, + 6456168272, + 6456163088, + 6456152112, + 6456152096, + 6448297552, + 6448299648, + 6448299664, + 6448308368, + 6456252112, + 6448304128 ], "bases": [ { @@ -60056,7 +60056,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468477200, + "complete_object_locator": 6468481296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60065,70 +60065,70 @@ }, { "type_name": "CCStrike15ItemSchema", - "vtable_address": 6465632648, - "methods": [ - 6455894800, - 6455995632, - 6448298672, - 6448296112, - 6448296128, - 6448295776, - 6448297552, - 6448297568, - 6448297536, - 6448295760, - 6448295712, - 6448295696, - 6448295744, - 6448295728, - 6456130256, - 6456130416, - 6456082400, - 6448297888, - 6448298608, - 6456155584, - 6456155328, - 6448298640, - 6456157888, - 6456157504, - 6456156784, - 6456157696, - 6456157472, - 6448295440, - 6448297472, - 6456143488, - 6448311200, - 6448297776, + "vtable_address": 6465636824, + "methods": [ + 6455896560, + 6455997408, + 6448300240, 6448297680, - 6448297600, - 6448297792, - 6456082656, - 6456129104, - 6455904576, - 6455991488, - 6455990064, - 6456054448, - 6456141968, - 6456141712, - 6456161120, - 6456160672, - 6448299424, - 6456160944, - 6448276816, - 6448299440, - 6448298064, - 6448298128, - 6448295968, - 6448286480, - 6448286432, - 6448286672, - 6456050400, - 6456336912, - 6456042240, - 6455987472, - 6455909824, - 6455999216, - 6448283344 + 6448297696, + 6448297344, + 6448299120, + 6448299136, + 6448299104, + 6448297328, + 6448297280, + 6448297264, + 6448297312, + 6448297296, + 6456132032, + 6456132192, + 6456084176, + 6448299456, + 6448300176, + 6456157360, + 6456157104, + 6448300208, + 6456159664, + 6456159280, + 6456158560, + 6456159472, + 6456159248, + 6448297008, + 6448299040, + 6456145264, + 6448312768, + 6448299344, + 6448299248, + 6448299168, + 6448299360, + 6456084432, + 6456130880, + 6455906336, + 6455993264, + 6455991840, + 6456056224, + 6456143744, + 6456143488, + 6456162896, + 6456162448, + 6448300992, + 6456162720, + 6448278384, + 6448301008, + 6448299632, + 6448299696, + 6448297536, + 6448288048, + 6448288000, + 6448288240, + 6456052176, + 6456338688, + 6456044016, + 6455989248, + 6455911584, + 6456000992, + 6448284912 ], "bases": [ { @@ -60162,7 +60162,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476896, + "complete_object_locator": 6468480992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60171,14 +60171,14 @@ }, { "type_name": "CCStrike15ItemSystem", - "vtable_address": 6466833744, + "vtable_address": 6466837856, "methods": [ - 6456472960, - 6456526096, - 6456526112, - 6456523568, - 6456440768, - 6456464032 + 6456474736, + 6456527872, + 6456527888, + 6456525344, + 6456442544, + 6456465808 ], "bases": [ { @@ -60212,7 +60212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797512, + "complete_object_locator": 6468801608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60221,11 +60221,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466042472, + "vtable_address": 6466046680, "methods": [ - 6451141872, - 6451141840, - 6451116400 + 6451143440, + 6451143408, + 6451117968 ], "bases": [ { @@ -60245,7 +60245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468588824, + "complete_object_locator": 6468592920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60254,11 +60254,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466325616, + "vtable_address": 6466329776, "methods": [ - 6452404144, - 6452404112, - 6452382064 + 6452405760, + 6452405728, + 6452383680 ], "bases": [ { @@ -60278,7 +60278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468675848, + "complete_object_locator": 6468679944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60287,11 +60287,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466833000, + "vtable_address": 6466837112, "methods": [ - 6456529840, - 6456529808, - 6456464960 + 6456531616, + 6456531584, + 6456466736 ], "bases": [ { @@ -60311,7 +60311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468798992, + "complete_object_locator": 6468803088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60320,11 +60320,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466688488, + "vtable_address": 6466692584, "methods": [ - 6455604304, - 6455604272, - 6455375920 + 6455606064, + 6455606032, + 6455377680 ], "bases": [ { @@ -60344,7 +60344,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768232, + "complete_object_locator": 6468772328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60353,7 +60353,7 @@ }, { "type_name": "CCallResult,struct LeaderboardFindResult_t>", - "vtable_address": 6464864880, + "vtable_address": 6464868960, "methods": [ 6445623696, 6445623664, @@ -60377,7 +60377,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468292744, + "complete_object_locator": 6468296840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60386,7 +60386,7 @@ }, { "type_name": "CCallResult,struct LeaderboardScoresDownloaded_t>", - "vtable_address": 6464864912, + "vtable_address": 6464868992, "methods": [ 6445623936, 6445623904, @@ -60410,7 +60410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468292872, + "complete_object_locator": 6468296968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60419,11 +60419,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6465392792, + "vtable_address": 6465396952, "methods": [ - 6447952960, - 6447952928, - 6447946560 + 6447954528, + 6447954496, + 6447948128 ], "bases": [ { @@ -60443,7 +60443,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441440, + "complete_object_locator": 6468445536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60452,11 +60452,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6465392760, + "vtable_address": 6465396920, "methods": [ - 6447953024, - 6447952992, - 6447946576 + 6447954592, + 6447954560, + 6447948144 ], "bases": [ { @@ -60476,7 +60476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441312, + "complete_object_locator": 6468445408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60485,11 +60485,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466325176, + "vtable_address": 6466329336, "methods": [ - 6452404208, - 6452404176, - 6452382080 + 6452405824, + 6452405792, + 6452383696 ], "bases": [ { @@ -60509,7 +60509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468675640, + "complete_object_locator": 6468679736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60518,11 +60518,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466603552, + "vtable_address": 6466607648, "methods": [ - 6454891920, - 6454891888, - 6454565312 + 6454893680, + 6454893648, + 6454567072 ], "bases": [ { @@ -60542,7 +60542,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468733440, + "complete_object_locator": 6468737536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60551,11 +60551,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466633792, + "vtable_address": 6466637888, "methods": [ - 6454891984, - 6454891952, - 6454565328 + 6454893744, + 6454893712, + 6454567088 ], "bases": [ { @@ -60575,7 +60575,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468744616, + "complete_object_locator": 6468748712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60584,11 +60584,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466633728, + "vtable_address": 6466637824, "methods": [ - 6454892048, - 6454892016, - 6454565344 + 6454893808, + 6454893776, + 6454567104 ], "bases": [ { @@ -60608,7 +60608,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468744360, + "complete_object_locator": 6468748456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60617,11 +60617,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466633760, + "vtable_address": 6466637856, "methods": [ - 6454892112, - 6454892080, - 6454565360 + 6454893872, + 6454893840, + 6454567120 ], "bases": [ { @@ -60641,7 +60641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468744488, + "complete_object_locator": 6468748584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60650,11 +60650,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466617592, + "vtable_address": 6466621688, "methods": [ - 6454892176, - 6454892144, - 6454565376 + 6454893936, + 6454893904, + 6454567136 ], "bases": [ { @@ -60674,7 +60674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468738328, + "complete_object_locator": 6468742424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60683,11 +60683,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466666688, + "vtable_address": 6466670784, "methods": [ - 6455604368, - 6455604336, - 6455375936 + 6455606128, + 6455606096, + 6455377696 ], "bases": [ { @@ -60707,7 +60707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468755128, + "complete_object_locator": 6468759224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60716,11 +60716,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466666720, + "vtable_address": 6466670816, "methods": [ - 6455604432, - 6455604400, - 6455375952 + 6455606192, + 6455606160, + 6455377712 ], "bases": [ { @@ -60740,7 +60740,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468755256, + "complete_object_locator": 6468759352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60749,11 +60749,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466676960, + "vtable_address": 6466681056, "methods": [ - 6455604496, - 6455604464, - 6455375968 + 6455606256, + 6455606224, + 6455377728 ], "bases": [ { @@ -60773,7 +60773,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468763184, + "complete_object_locator": 6468767280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60782,11 +60782,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466687992, + "vtable_address": 6466692088, "methods": [ - 6455604560, - 6455604528, - 6455375984 + 6455606320, + 6455606288, + 6455377744 ], "bases": [ { @@ -60806,7 +60806,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768104, + "complete_object_locator": 6468772200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60815,11 +60815,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466681952, + "vtable_address": 6466686048, "methods": [ - 6455604624, - 6455604592, - 6455376000 + 6455606384, + 6455606352, + 6455377760 ], "bases": [ { @@ -60839,7 +60839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468766592, + "complete_object_locator": 6468770688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60848,11 +60848,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466702928, + "vtable_address": 6466707024, "methods": [ - 6455604688, - 6455604656, - 6455376016 + 6455606448, + 6455606416, + 6455377776 ], "bases": [ { @@ -60872,7 +60872,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468771016, + "complete_object_locator": 6468775112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60881,11 +60881,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6466703808, + "vtable_address": 6466707904, "methods": [ - 6455604752, - 6455604720, - 6455376032 + 6455606512, + 6455606480, + 6455377792 ], "bases": [ { @@ -60905,7 +60905,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772024, + "complete_object_locator": 6468776120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60914,11 +60914,11 @@ }, { "type_name": "CCallResult", - "vtable_address": 6467663968, + "vtable_address": 6467668064, "methods": [ - 6462105680, - 6462105648, - 6462076416 + 6462107872, + 6462107840, + 6462078608 ], "bases": [ { @@ -60938,7 +60938,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978376, + "complete_object_locator": 6468982472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60947,12 +60947,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466759936, + "vtable_address": 6466764032, "methods": [ - 6452404256, - 6456392000, - 6452382096, - 6455868304 + 6452405872, + 6456393776, + 6452383712, + 6455870064 ], "bases": [ { @@ -60986,7 +60986,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781320, + "complete_object_locator": 6468785416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60995,12 +60995,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466543584, + "vtable_address": 6466547712, "methods": [ - 6453045920, - 6453770480, - 6453002368, - 6453654576 + 6453047536, + 6453772240, + 6453003984, + 6453656336 ], "bases": [ { @@ -61034,7 +61034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720136, + "complete_object_locator": 6468724232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61043,12 +61043,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466911480, + "vtable_address": 6466915544, "methods": [ 6445657552, - 6457160576, + 6457162768, 6445644096, - 6457155504 + 6457157696 ], "bases": [ { @@ -61082,7 +61082,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468816088, + "complete_object_locator": 6468820184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61091,12 +61091,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466911520, + "vtable_address": 6466915584, "methods": [ 6447785712, - 6457160592, + 6457162784, 6447758384, - 6457155584 + 6457157776 ], "bases": [ { @@ -61130,7 +61130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468816224, + "complete_object_locator": 6468820320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61139,12 +61139,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466911440, + "vtable_address": 6466915504, "methods": [ - 6455604976, - 6457160608, - 6455376048, - 6457155664 + 6455606736, + 6457162800, + 6455377808, + 6457157856 ], "bases": [ { @@ -61178,7 +61178,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468815952, + "complete_object_locator": 6468820048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61187,12 +61187,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466324928, + "vtable_address": 6466329088, "methods": [ - 6452404256, - 6452404240, - 6452382096, - 6452350496 + 6452405872, + 6452405856, + 6452383712, + 6452352112 ], "bases": [ { @@ -61226,7 +61226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468675232, + "complete_object_locator": 6468679328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61235,12 +61235,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466833128, + "vtable_address": 6466837240, "methods": [ 6447785712, - 6456529872, + 6456531648, 6447758384, - 6456440176 + 6456441952 ], "bases": [ { @@ -61274,7 +61274,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468799240, + "complete_object_locator": 6468803336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61283,7 +61283,7 @@ }, { "type_name": "CCallback", - "vtable_address": 6465299928, + "vtable_address": 6465304000, "methods": [ 6447785712, 6447785696, @@ -61322,7 +61322,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468430360, + "complete_object_locator": 6468434456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61331,7 +61331,7 @@ }, { "type_name": "CCallback", - "vtable_address": 6464865560, + "vtable_address": 6464869640, "methods": [ 6445657568, 6445657520, @@ -61370,7 +61370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468293824, + "complete_object_locator": 6468297920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61379,7 +61379,7 @@ }, { "type_name": "CCallback", - "vtable_address": 6464865600, + "vtable_address": 6464869680, "methods": [ 6445657552, 6445657536, @@ -61418,7 +61418,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294088, + "complete_object_locator": 6468298184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61427,12 +61427,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466911896, + "vtable_address": 6466915960, "methods": [ - 6452404256, - 6457160640, - 6452382096, - 6457155824 + 6452405872, + 6457162832, + 6452383712, + 6457158016 ], "bases": [ { @@ -61466,7 +61466,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468816360, + "complete_object_locator": 6468820456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61475,12 +61475,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466911936, + "vtable_address": 6466916000, "methods": [ - 6452404256, - 6457160624, - 6452382096, - 6457155744 + 6452405872, + 6457162816, + 6452383712, + 6457157936 ], "bases": [ { @@ -61514,7 +61514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468816496, + "complete_object_locator": 6468820592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61523,12 +61523,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466666608, + "vtable_address": 6466670704, "methods": [ - 6455604992, - 6455604784, - 6455376064, - 6455301136 + 6455606752, + 6455606544, + 6455377824, + 6455302896 ], "bases": [ { @@ -61562,7 +61562,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754728, + "complete_object_locator": 6468758824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61571,12 +61571,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466666648, + "vtable_address": 6466670744, "methods": [ - 6455604976, - 6455604800, - 6455376048, - 6455301216 + 6455606736, + 6455606560, + 6455377808, + 6455302976 ], "bases": [ { @@ -61610,7 +61610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754992, + "complete_object_locator": 6468759088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61619,12 +61619,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466666528, + "vtable_address": 6466670624, "methods": [ 6447785712, - 6455604816, + 6455606576, 6447758384, - 6455301296 + 6455303056 ], "bases": [ { @@ -61658,7 +61658,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754592, + "complete_object_locator": 6468758688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61667,12 +61667,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466666488, + "vtable_address": 6466670584, "methods": [ - 6453045920, - 6455604832, - 6453002368, - 6455301376 + 6453047536, + 6455606592, + 6453003984, + 6455303136 ], "bases": [ { @@ -61706,7 +61706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754456, + "complete_object_locator": 6468758552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61715,12 +61715,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466678216, + "vtable_address": 6466682312, "methods": [ - 6452404256, - 6455604848, - 6452382096, - 6455301456 + 6452405872, + 6455606608, + 6452383712, + 6455303216 ], "bases": [ { @@ -61754,7 +61754,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468764488, + "complete_object_locator": 6468768584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61763,12 +61763,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466678256, + "vtable_address": 6466682352, "methods": [ - 6452404256, - 6455604864, - 6452382096, - 6455301536 + 6452405872, + 6455606624, + 6452383712, + 6455303296 ], "bases": [ { @@ -61802,7 +61802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468764624, + "complete_object_locator": 6468768720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61811,12 +61811,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466668680, + "vtable_address": 6466672776, "methods": [ 6445657568, - 6455604880, + 6455606640, 6445644112, - 6455301616 + 6455303376 ], "bases": [ { @@ -61850,7 +61850,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468756800, + "complete_object_locator": 6468760896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61859,12 +61859,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466668720, + "vtable_address": 6466672816, "methods": [ - 6452404256, - 6455604896, - 6452382096, - 6455301696 + 6452405872, + 6455606656, + 6452383712, + 6455303456 ], "bases": [ { @@ -61898,7 +61898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468756936, + "complete_object_locator": 6468761032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61907,12 +61907,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466702960, + "vtable_address": 6466707056, "methods": [ - 6452404256, - 6455604912, - 6452382096, - 6455301776 + 6452405872, + 6455606672, + 6452383712, + 6455303536 ], "bases": [ { @@ -61946,7 +61946,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468771144, + "complete_object_locator": 6468775240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61955,12 +61955,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466703000, + "vtable_address": 6466707096, "methods": [ - 6455604976, - 6455604928, - 6455376048, - 6455301856 + 6455606736, + 6455606688, + 6455377808, + 6455303616 ], "bases": [ { @@ -61994,7 +61994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468771280, + "complete_object_locator": 6468775376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62003,12 +62003,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466703840, + "vtable_address": 6466707936, "methods": [ - 6452404256, - 6455604944, - 6452382096, - 6455301936 + 6452405872, + 6455606704, + 6452383712, + 6455303696 ], "bases": [ { @@ -62042,7 +62042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772152, + "complete_object_locator": 6468776248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62051,12 +62051,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466703880, + "vtable_address": 6466707976, "methods": [ - 6455604976, - 6455604960, - 6455376048, - 6455302016 + 6455606736, + 6455606720, + 6455377808, + 6455303776 ], "bases": [ { @@ -62090,7 +62090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772288, + "complete_object_locator": 6468776384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62099,12 +62099,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467218488, + "vtable_address": 6467222552, "methods": [ - 6455604976, - 6460326640, - 6455376048, - 6460298848 + 6455606736, + 6460328832, + 6455377808, + 6460301040 ], "bases": [ { @@ -62138,7 +62138,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468948176, + "complete_object_locator": 6468952272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62147,12 +62147,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467218568, + "vtable_address": 6467222632, "methods": [ 6445657552, - 6460326656, + 6460328848, 6445644096, - 6460298928 + 6460301120 ], "bases": [ { @@ -62186,7 +62186,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468948448, + "complete_object_locator": 6468952544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62195,12 +62195,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467218608, + "vtable_address": 6467222672, "methods": [ 6447785712, - 6460326672, + 6460328864, 6447758384, - 6460299008 + 6460301200 ], "bases": [ { @@ -62234,7 +62234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468948584, + "complete_object_locator": 6468952680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62243,12 +62243,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467218528, + "vtable_address": 6467222592, "methods": [ - 6455604976, - 6460326688, - 6455376048, - 6460299088 + 6455606736, + 6460328880, + 6455377808, + 6460301280 ], "bases": [ { @@ -62282,7 +62282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468948312, + "complete_object_locator": 6468952408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62291,12 +62291,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663488, + "vtable_address": 6467667584, "methods": [ 6445657552, - 6462105712, + 6462107904, 6445644096, - 6462070848 + 6462073040 ], "bases": [ { @@ -62330,7 +62330,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468976744, + "complete_object_locator": 6468980840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62339,12 +62339,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663408, + "vtable_address": 6467667504, "methods": [ - 6453045920, - 6462105728, - 6453002368, - 6462070928 + 6453047536, + 6462107920, + 6453003984, + 6462073120 ], "bases": [ { @@ -62378,7 +62378,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468976472, + "complete_object_locator": 6468980568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62387,12 +62387,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663208, + "vtable_address": 6467667304, "methods": [ - 6455604976, - 6462105744, - 6455376048, - 6462071008 + 6455606736, + 6462107936, + 6455377808, + 6462073200 ], "bases": [ { @@ -62426,7 +62426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975800, + "complete_object_locator": 6468979896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62435,12 +62435,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663688, + "vtable_address": 6467667784, "methods": [ - 6452404256, - 6462105760, - 6452382096, - 6462071088 + 6452405872, + 6462107952, + 6452383712, + 6462073280 ], "bases": [ { @@ -62474,7 +62474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977424, + "complete_object_locator": 6468981520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62483,12 +62483,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663328, + "vtable_address": 6467667424, "methods": [ - 6452404256, - 6462105776, - 6452382096, - 6462071168 + 6452405872, + 6462107968, + 6452383712, + 6462073360 ], "bases": [ { @@ -62522,7 +62522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468976200, + "complete_object_locator": 6468980296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62531,12 +62531,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663928, + "vtable_address": 6467668024, "methods": [ - 6455604976, - 6462105792, - 6455376048, - 6462071248 + 6455606736, + 6462107984, + 6455377808, + 6462073440 ], "bases": [ { @@ -62570,7 +62570,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978240, + "complete_object_locator": 6468982336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62579,12 +62579,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663528, + "vtable_address": 6467667624, "methods": [ - 6452404256, - 6462105808, - 6452382096, - 6462071328 + 6452405872, + 6462108000, + 6452383712, + 6462073520 ], "bases": [ { @@ -62618,7 +62618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468976880, + "complete_object_locator": 6468980976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62627,12 +62627,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663608, + "vtable_address": 6467667704, "methods": [ - 6453045920, - 6462105824, - 6453002368, - 6462071408 + 6453047536, + 6462108016, + 6453003984, + 6462073600 ], "bases": [ { @@ -62666,7 +62666,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977152, + "complete_object_locator": 6468981248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62675,12 +62675,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663648, + "vtable_address": 6467667744, "methods": [ - 6453045920, - 6462105840, - 6453002368, - 6462071488 + 6453047536, + 6462108032, + 6453003984, + 6462073680 ], "bases": [ { @@ -62714,7 +62714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977288, + "complete_object_locator": 6468981384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62723,12 +62723,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663048, + "vtable_address": 6467667144, "methods": [ - 6455604992, - 6462105856, - 6455376064, - 6462071568 + 6455606752, + 6462108048, + 6455377824, + 6462073760 ], "bases": [ { @@ -62762,7 +62762,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975264, + "complete_object_locator": 6468979360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62771,12 +62771,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663128, + "vtable_address": 6467667224, "methods": [ - 6462106064, - 6462105872, - 6462076448, - 6462071648 + 6462108256, + 6462108064, + 6462078640, + 6462073840 ], "bases": [ { @@ -62810,7 +62810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975400, + "complete_object_locator": 6468979496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62819,12 +62819,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663728, + "vtable_address": 6467667824, "methods": [ - 6453770496, - 6462105888, - 6453714816, - 6462071728 + 6453772256, + 6462108080, + 6453716576, + 6462073920 ], "bases": [ { @@ -62858,7 +62858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977560, + "complete_object_locator": 6468981656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62867,12 +62867,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663368, + "vtable_address": 6467667464, "methods": [ - 6453045920, - 6462105904, - 6453002368, - 6462071808 + 6453047536, + 6462108096, + 6453003984, + 6462074000 ], "bases": [ { @@ -62906,7 +62906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468976336, + "complete_object_locator": 6468980432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62915,12 +62915,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663448, + "vtable_address": 6467667544, "methods": [ 6445657568, - 6462105920, + 6462108112, 6445644112, - 6462071888 + 6462074080 ], "bases": [ { @@ -62954,7 +62954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468976608, + "complete_object_locator": 6468980704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62963,12 +62963,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663768, + "vtable_address": 6467667864, "methods": [ 6445657552, - 6462105936, + 6462108128, 6445644096, - 6462071968 + 6462074160 ], "bases": [ { @@ -63002,7 +63002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977696, + "complete_object_locator": 6468981792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63011,12 +63011,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663848, + "vtable_address": 6467667944, "methods": [ - 6453045920, - 6462105952, - 6453002368, - 6462072048 + 6453047536, + 6462108144, + 6453003984, + 6462074240 ], "bases": [ { @@ -63050,7 +63050,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977968, + "complete_object_locator": 6468982064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63059,12 +63059,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663168, + "vtable_address": 6467667264, "methods": [ - 6453770496, - 6462105968, - 6453714816, - 6462072128 + 6453772256, + 6462108160, + 6453716576, + 6462074320 ], "bases": [ { @@ -63098,7 +63098,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975664, + "complete_object_locator": 6468979760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63107,12 +63107,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663808, + "vtable_address": 6467667904, "methods": [ - 6453045920, - 6462105984, - 6453002368, - 6462072208 + 6453047536, + 6462108176, + 6453003984, + 6462074400 ], "bases": [ { @@ -63146,7 +63146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977832, + "complete_object_locator": 6468981928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63155,12 +63155,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663288, + "vtable_address": 6467667384, "methods": [ - 6462106048, - 6462106000, - 6462076432, - 6462072288 + 6462108240, + 6462108192, + 6462078624, + 6462074480 ], "bases": [ { @@ -63194,7 +63194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975936, + "complete_object_locator": 6468980032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63203,12 +63203,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663888, + "vtable_address": 6467667984, "methods": [ - 6453045920, - 6462106016, - 6453002368, - 6462072368 + 6453047536, + 6462108208, + 6453003984, + 6462074560 ], "bases": [ { @@ -63242,7 +63242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978104, + "complete_object_locator": 6468982200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63251,12 +63251,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6467663568, + "vtable_address": 6467667664, "methods": [ - 6452404256, - 6462106032, - 6452382096, - 6462072448 + 6452405872, + 6462108224, + 6452383712, + 6462074640 ], "bases": [ { @@ -63290,7 +63290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468977016, + "complete_object_locator": 6468981112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63299,12 +63299,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466617552, + "vtable_address": 6466621648, "methods": [ - 6452404256, - 6454892208, - 6452382096, - 6454468720 + 6452405872, + 6454893968, + 6452383712, + 6454470480 ], "bases": [ { @@ -63338,7 +63338,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468738192, + "complete_object_locator": 6468742288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63347,12 +63347,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6466617512, + "vtable_address": 6466621608, "methods": [ - 6453045920, - 6454892224, - 6453002368, - 6454468800 + 6453047536, + 6454893984, + 6453003984, + 6454470560 ], "bases": [ { @@ -63386,7 +63386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468738056, + "complete_object_locator": 6468742152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63395,10 +63395,10 @@ }, { "type_name": "CCallbackImpl<12>", - "vtable_address": 6464865520, + "vtable_address": 6464869600, "methods": [ 6445657568, - 6463705588, + 6463707780, 6445644112, 6445637824 ], @@ -63420,7 +63420,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294048, + "complete_object_locator": 6468298144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63429,12 +63429,12 @@ }, { "type_name": "CCallbackImpl<16>", - "vtable_address": 6466437936, + "vtable_address": 6466442096, "methods": [ - 6453045920, - 6463705588, - 6453002368, - 6452955568 + 6453047536, + 6463707780, + 6453003984, + 6452957184 ], "bases": [ { @@ -63454,7 +63454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468696440, + "complete_object_locator": 6468700536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63463,10 +63463,10 @@ }, { "type_name": "CCallbackImpl<1>", - "vtable_address": 6465290208, + "vtable_address": 6465294280, "methods": [ 6447785712, - 6463705588, + 6463707780, 6447758384, 6447746096 ], @@ -63488,7 +63488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468426728, + "complete_object_locator": 6468430824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63497,12 +63497,12 @@ }, { "type_name": "CCallbackImpl<20>", - "vtable_address": 6466438016, + "vtable_address": 6466442176, "methods": [ - 6453045936, - 6463705588, - 6453002384, - 6452955648 + 6453047552, + 6463707780, + 6453004000, + 6452957264 ], "bases": [ { @@ -63522,7 +63522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468696808, + "complete_object_locator": 6468700904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63531,12 +63531,12 @@ }, { "type_name": "CCallbackImpl<24>", - "vtable_address": 6466324888, + "vtable_address": 6466329048, "methods": [ - 6452404256, - 6463705588, - 6452382096, - 6452350576 + 6452405872, + 6463707780, + 6452383712, + 6452352192 ], "bases": [ { @@ -63556,7 +63556,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468675456, + "complete_object_locator": 6468679552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63565,12 +63565,12 @@ }, { "type_name": "CCallbackImpl<264>", - "vtable_address": 6466091752, + "vtable_address": 6466095960, "methods": [ - 6451380656, - 6463705588, - 6451319520, - 6451280432 + 6451382224, + 6463707780, + 6451321088, + 6451282000 ], "bases": [ { @@ -63590,7 +63590,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602440, + "complete_object_locator": 6468606536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63599,12 +63599,12 @@ }, { "type_name": "CCallbackImpl<32>", - "vtable_address": 6466666568, + "vtable_address": 6466670664, "methods": [ - 6455604992, - 6463705588, - 6455376064, - 6455302176 + 6455606752, + 6463707780, + 6455377824, + 6455303936 ], "bases": [ { @@ -63624,7 +63624,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754952, + "complete_object_locator": 6468759048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63633,12 +63633,12 @@ }, { "type_name": "CCallbackImpl<40>", - "vtable_address": 6466547408, + "vtable_address": 6466551536, "methods": [ - 6453770496, - 6463705588, - 6453714816, - 6453654656 + 6453772256, + 6463707780, + 6453716576, + 6453656416 ], "bases": [ { @@ -63658,7 +63658,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468721608, + "complete_object_locator": 6468725704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63667,12 +63667,12 @@ }, { "type_name": "CCallbackImpl<48>", - "vtable_address": 6467663248, + "vtable_address": 6467667344, "methods": [ - 6462106048, - 6463705588, - 6462076432, - 6462072528 + 6462108240, + 6463707780, + 6462078624, + 6462074720 ], "bases": [ { @@ -63692,7 +63692,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468976160, + "complete_object_locator": 6468980256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63701,12 +63701,12 @@ }, { "type_name": "CCallbackImpl<4>", - "vtable_address": 6466666104, + "vtable_address": 6466670200, "methods": [ - 6455604976, - 6463705588, - 6455376048, - 6455302096 + 6455606736, + 6463707780, + 6455377808, + 6455303856 ], "bases": [ { @@ -63726,7 +63726,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468753208, + "complete_object_locator": 6468757304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63735,12 +63735,12 @@ }, { "type_name": "CCallbackImpl<56>", - "vtable_address": 6467663088, + "vtable_address": 6467667184, "methods": [ - 6462106064, - 6463705588, - 6462076448, - 6462072608 + 6462108256, + 6463707780, + 6462078640, + 6462074800 ], "bases": [ { @@ -63760,7 +63760,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975624, + "complete_object_locator": 6468979720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63769,10 +63769,10 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 6464865472, + "vtable_address": 6464869552, "methods": [ 6445657552, - 6463705588, + 6463707780, 6445644096, 6445637744 ], @@ -63794,7 +63794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468293696, + "complete_object_locator": 6468297792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63803,12 +63803,12 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 6466438056, + "vtable_address": 6466442216, "methods": [ - 6453045936, - 6453045872, - 6453002384, - 6452955728 + 6453047552, + 6453047488, + 6453004000, + 6452957344 ], "bases": [ { @@ -63856,7 +63856,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468696480, + "complete_object_locator": 6468700576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63865,12 +63865,12 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 6466438096, + "vtable_address": 6466442256, "methods": [ - 6453045936, - 6453045888, - 6453002384, - 6452955808 + 6453047552, + 6453047504, + 6453004000, + 6452957424 ], "bases": [ { @@ -63918,7 +63918,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468696848, + "complete_object_locator": 6468700944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63927,12 +63927,12 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 6466437976, + "vtable_address": 6466442136, "methods": [ - 6453045920, - 6453045904, - 6453002368, - 6452955888 + 6453047536, + 6453047520, + 6453003984, + 6452957504 ], "bases": [ { @@ -63980,7 +63980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468696112, + "complete_object_locator": 6468700208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63989,12 +63989,12 @@ }, { "type_name": "CCallbackManual", - "vtable_address": 6466285888, + "vtable_address": 6466290000, "methods": [ 6447785712, - 6452270128, + 6452271712, 6447758384, - 6452103712 + 6452105296 ], "bases": [ { @@ -64042,7 +64042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656944, + "complete_object_locator": 6468661040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64051,7 +64051,7 @@ }, { "type_name": "CCamPathfindGameSystem", - "vtable_address": 6465636688, + "vtable_address": 6465640864, "methods": [ 6443748576, 6443748592, @@ -64061,7 +64061,7 @@ 6443748656, 6443748672, 6443748688, - 6448326608, + 6448328176, 6443748720, 6443748736, 6443748752, @@ -64090,7 +64090,7 @@ 6443749120, 6443749136, 6443749152, - 6448326624, + 6448328192, 6443749184, 6443749200, 6443749216, @@ -64109,11 +64109,11 @@ 6443749424, 6443749440, 6443749456, - 6448326576, + 6448328144, 6443749488, - 6448326560, - 6448327040, - 6448326544 + 6448328128, + 6448328608, + 6448328112 ], "bases": [ { @@ -64147,7 +64147,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468478128, + "complete_object_locator": 6468482224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64156,21 +64156,21 @@ }, { "type_name": "CCameraManagerGameSystem", - "vtable_address": 6466008184, + "vtable_address": 6466012440, "methods": [ 6443748576, 6443748592, 6443748608, - 6450889184, - 6450890480, - 6450889264, + 6450890752, + 6450890976, + 6450890832, 6443748672, 6443748688, - 6450889616, + 6450890880, 6443748720, 6443748736, 6443748752, - 6450890048, + 6450890928, 6443748784, 6443748800, 6443748816, @@ -64214,11 +64214,11 @@ 6443749424, 6443749440, 6443749456, - 6450889152, + 6450890720, 6443749488, - 6450889136, - 6450890528, - 6450889120 + 6450890704, + 6450892096, + 6450890688 ], "bases": [ { @@ -64252,7 +64252,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468574680, + "complete_object_locator": 6468578776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64261,7 +64261,7 @@ }, { "type_name": "CCharacterDecalSystem", - "vtable_address": 6464679680, + "vtable_address": 6464683760, "methods": [ 6443748576, 6443748592, @@ -64385,7 +64385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468262056, + "complete_object_locator": 6468266152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -64394,7 +64394,7 @@ }, { "type_name": "CCharacterDecalSystem", - "vtable_address": 6464680176, + "vtable_address": 6464684256, "methods": [ 6444569540, 6444771248 @@ -64459,7 +64459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468262208, + "complete_object_locator": 6468266304, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -64468,7 +64468,7 @@ }, { "type_name": "CChickenGameSystem", - "vtable_address": 6466332792, + "vtable_address": 6466336952, "methods": [ 6443748576, 6443748592, @@ -64491,7 +64491,7 @@ 6443748864, 6443748880, 6443748896, - 6452434000, + 6452435616, 6443748928, 6443748944, 6443748960, @@ -64526,11 +64526,11 @@ 6443749424, 6443749440, 6443749456, - 6452433968, + 6452435584, 6443749488, - 6452433952, - 6452434096, - 6452433936 + 6452435568, + 6452435712, + 6452435552 ], "bases": [ { @@ -64564,7 +64564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468676656, + "complete_object_locator": 6468680752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64573,31 +64573,31 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Request", - "vtable_address": 6465193872, + "vtable_address": 6465197952, "methods": [ - 6447308928, - 6457189536, - 6447303888, - 6447304096, - 6447304304, - 6457189584, - 6457186560, - 6447304320, - 6447305200, + 6447309152, + 6457191728, + 6447304112, 6447304448, - 6443742160, - 6447304944, - 6457190896, - 6457192720, - 6447305216, - 6447305248, - 6447305232, - 6457187520, - 6447305504, - 6457187520, - 6447306160, - 6457187520, - 6447309264 + 6447304528, + 6457191776, + 6457188752, + 6447304544, + 6447305424, + 6447304672, + 6443742160, + 6447305168, + 6457193088, + 6457194912, + 6447305440, + 6447305472, + 6447305456, + 6457189712, + 6447305728, + 6457189712, + 6447306384, + 6457189712, + 6447309488 ], "bases": [ { @@ -64631,7 +64631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389896, + "complete_object_locator": 6468393992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64640,25 +64640,31 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Response", - "vtable_address": 6465194656, - "methods": [ - 6447311792, - 6457189536, - 6447310304, - 6447310720, - 6447310784, - 6457189584, - 6457186560, - 6447310800, - 6447311504, - 6447310864, + "vtable_address": 6465200344, + "methods": [ + 6447312048, + 6457191728, + 6447310832, + 6447310944, + 6447311168, + 6457191776, + 6457188752, + 6447311184, + 6447311728, + 6447311248, 6443742160, - 6447311392, - 6457190896, - 6457192720, - 6447311520, - 6447311552, - 6447311536 + 6447311616, + 6457193088, + 6457194912, + 6447311744, + 6447311776, + 6447311760, + 6457391152, + 6457391232, + 6457189712, + 6447312464, + 6457189712, + 6447312208 ], "bases": [ { @@ -64692,7 +64698,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390032, + "complete_object_locator": 6468394128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64701,11 +64707,11 @@ }, { "type_name": "CChoreoActor", - "vtable_address": 6467029984, + "vtable_address": 6467034048, "methods": [ - 6458929792, - 6458929760, - 6458945840 + 6458931984, + 6458931952, + 6458948032 ], "bases": [ { @@ -64725,7 +64731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468870792, + "complete_object_locator": 6468874888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64734,11 +64740,11 @@ }, { "type_name": "CChoreoChannel", - "vtable_address": 6467030016, + "vtable_address": 6467034080, "methods": [ - 6458929792, - 6458946352, - 6458929744 + 6458931984, + 6458948544, + 6458931936 ], "bases": [ { @@ -64758,7 +64764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468870920, + "complete_object_locator": 6468875016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64767,12 +64773,12 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 6467029752, + "vtable_address": 6467033816, "methods": [ - 6458929776, - 6458929760, - 6458929744, - 6458926464 + 6458931968, + 6458931952, + 6458931936, + 6458928656 ], "bases": [ { @@ -64806,7 +64812,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468870160, + "complete_object_locator": 6468874256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -64815,14 +64821,14 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 6467029792, + "vtable_address": 6467033856, "methods": [ - 6458927824, - 6458927888, - 6458928576, - 6458927968, - 6458928480, - 6458928512 + 6458930016, + 6458930080, + 6458930768, + 6458930160, + 6458930672, + 6458930704 ], "bases": [ { @@ -64856,7 +64862,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468870496, + "complete_object_locator": 6468874592, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -64865,15 +64871,15 @@ }, { "type_name": "CChoreoScene", - "vtable_address": 6467029888, + "vtable_address": 6467033952, "methods": [ - 6458933920, - 6458933952, - 6458936512, - 6458933968, - 6458936480, - 6458936496, - 6458932928 + 6458936112, + 6458936144, + 6458938704, + 6458936160, + 6458938672, + 6458938688, + 6458935120 ], "bases": [ { @@ -64893,7 +64899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468870664, + "complete_object_locator": 6468874760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64902,32 +64908,32 @@ }, { "type_name": "CCitadelSoundOpvarSetOBB", - "vtable_address": 6466116512, + "vtable_address": 6466120720, "methods": [ 6445466896, - 6451447248, + 6451448832, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451527776, - 6450413456, - 6450585280, - 6450586832, - 6451449520, - 6451536224, - 6450580640, + 6450411680, + 6451529360, + 6450415024, + 6450586848, + 6450588400, + 6451451104, + 6451537808, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -64936,25 +64942,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476624, - 6451503184, - 6451520144, + 6460060080, + 6451478208, + 6451504768, + 6451521728, 6443799760, - 6451478672, - 6450497856, + 6451480256, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -64971,13 +64977,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -64985,39 +64991,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -65031,33 +65037,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -65085,34 +65091,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -65155,7 +65161,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608728, + "complete_object_locator": 6468612824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65164,12 +65170,12 @@ }, { "type_name": "CClassAutoAllocatePtrSaveRestoreOps", - "vtable_address": 6465739552, + "vtable_address": 6465743744, "methods": [ 6443865008, - 6449013248, - 6448950000, - 6448963024, + 6449014800, + 6448951568, + 6448964592, 6443852464, 6443799744 ], @@ -65205,7 +65211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468500664, + "complete_object_locator": 6468504760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65214,15 +65220,15 @@ }, { "type_name": "CClientAlphaProperty", - "vtable_address": 6466012688, + "vtable_address": 6466016888, "methods": [ - 6451041488, - 6451041872, - 6451044016, - 6451042656, - 6451042560, - 6450958512, - 6450958528 + 6451043056, + 6451043440, + 6451045584, + 6451044224, + 6451044128, + 6450960080, + 6450960096 ], "bases": [ { @@ -65242,7 +65248,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468578960, + "complete_object_locator": 6468583056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65251,10 +65257,10 @@ }, { "type_name": "CClientAlphaPropertyMgr", - "vtable_address": 6466012752, + "vtable_address": 6466016952, "methods": [ - 6450950160, - 6450956480 + 6450951728, + 6450958048 ], "bases": [ { @@ -65274,7 +65280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468579088, + "complete_object_locator": 6468583184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65283,15 +65289,15 @@ }, { "type_name": "CClientGameBlackboardView", - "vtable_address": 6465256512, + "vtable_address": 6465260592, "methods": [ 6447677424, - 6462845872, - 6462846000, - 6462846016, - 6462845568, - 6462848240, - 6462847488, + 6462848064, + 6462848192, + 6462848208, + 6462847760, + 6462850432, + 6462849680, 6447692704 ], "bases": [ @@ -65326,7 +65332,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468421544, + "complete_object_locator": 6468425640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65335,25 +65341,25 @@ }, { "type_name": "CClientHeaderOverwatchEvidence", - "vtable_address": 6464883312, + "vtable_address": 6464887408, "methods": [ - 6445865584, - 6457189536, - 6445858048, - 6445858336, - 6445858384, - 6457189584, - 6457186560, - 6445858416, - 6445859648, - 6445858576, + 6445865968, + 6457191728, + 6445858432, + 6445858704, + 6445858752, + 6457191776, + 6457188752, + 6445858768, + 6445859904, + 6445858880, 6443742160, - 6445859344, - 6457190896, - 6457192720, - 6445860448, - 6445862464, - 6445862368 + 6445859616, + 6457193088, + 6457194912, + 6445860320, + 6445862608, + 6445862592 ], "bases": [ { @@ -65387,7 +65393,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326848, + "complete_object_locator": 6468331080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65396,42 +65402,42 @@ }, { "type_name": "CClientInput", - "vtable_address": 6466013560, - "methods": [ - 6450921760, - 6450994496, - 6451047552, - 6451007424, - 6451028080, - 6450950480, - 6451047616, - 6450975200, - 6451011648, - 6450958464, - 6450995280, - 6451027312, - 6451026496, - 6451027344, - 6451026528, - 6451049264, - 6450994880, - 6450942096, - 6450947984, - 6451004224, - 6451041472, - 6451022704, - 6451012736, - 6451012752, - 6451042512, - 6450979984, - 6451015248, - 6451015232, - 6451012544 + "vtable_address": 6466017768, + "methods": [ + 6450923328, + 6450996064, + 6451049120, + 6451008992, + 6451029648, + 6450952048, + 6451049184, + 6450976768, + 6451013216, + 6450960032, + 6450996848, + 6451028880, + 6451028064, + 6451028912, + 6451028096, + 6451050832, + 6450996448, + 6450943664, + 6450949552, + 6451005792, + 6451043040, + 6451024272, + 6451014304, + 6451014320, + 6451044080, + 6450981552, + 6451016816, + 6451016800, + 6451014112 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468579216, + "complete_object_locator": 6468583312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65440,24 +65446,24 @@ }, { "type_name": "CClientModeGameSystem", - "vtable_address": 6466036008, + "vtable_address": 6466040216, "methods": [ 6443748576, 6443748592, 6443748608, - 6451062208, - 6451062832, + 6451063776, + 6451064400, 6443748656, 6443748672, 6443748688, - 6451063296, + 6451064864, 6443748720, 6443748736, 6443748752, - 6451063424, + 6451064992, 6443748784, 6443748800, - 6451063056, + 6451064624, 6443748832, 6443748848, 6443748864, @@ -65498,11 +65504,11 @@ 6443749424, 6443749440, 6443749456, - 6451062176, + 6451063744, 6443749488, - 6451062160, - 6451063584, - 6451062144 + 6451063728, + 6451065152, + 6451063712 ], "bases": [ { @@ -65536,7 +65542,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583888, + "complete_object_locator": 6468587984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65545,35 +65551,33 @@ }, { "type_name": "CClientMsg_ClientUIEvent", - "vtable_address": 6464882784, + "vtable_address": 6464886880, "methods": [ - 6445859664, - 6457189536, + 6445859920, + 6457191728, 6443844160, - 6445845584, - 6445845696, - 6457189584, - 6457186560, - 6445845712, + 6445845792, + 6445845904, + 6457191776, + 6457188752, + 6445845920, 6443817392, - 6445845936, - 6443742160, - 6445846720, - 6457190896, - 6457192720, - 6445847168, - 6445847632, - 6445847600, - 6457187520, - 6445858256, - 6457187520, - 6445859072, - 6457388960, - 6457389040, - 6457187520, - 6445860752, - 6457187520, - 6445861216 + 6445846320, + 6443742160, + 6445847104, + 6457193088, + 6457194912, + 6445847552, + 6445848016, + 6445847984, + 6457189712, + 6445858624, + 6457391152, + 6457391232, + 6457189712, + 6445860096, + 6457189712, + 6445860336 ], "bases": [ { @@ -65607,7 +65611,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296944, + "complete_object_locator": 6468301176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65616,7 +65620,7 @@ }, { "type_name": "CClientMsg_ClientUIEvent_t", - "vtable_address": 6464417776, + "vtable_address": 6464421872, "methods": [ 6443795232, 6443800336, @@ -65712,7 +65716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220160, + "complete_object_locator": 6468224256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -65721,25 +65725,25 @@ }, { "type_name": "CClientMsg_ClientUIEvent_t", - "vtable_address": 6464417824, + "vtable_address": 6464421920, "methods": [ 6443794848, - 6457189536, + 6457191728, 6443844160, - 6445845584, - 6445845696, - 6457189584, - 6457186560, - 6445845712, + 6445845792, + 6445845904, + 6457191776, + 6457188752, + 6445845920, 6443817392, - 6445845936, + 6445846320, 6443742160, - 6445846720, - 6457190896, - 6457192720, - 6445847168, - 6445847632, - 6445847600 + 6445847104, + 6457193088, + 6457194912, + 6445847552, + 6445848016, + 6445847984 ], "bases": [ { @@ -65829,7 +65833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220696, + "complete_object_locator": 6468224792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -65838,27 +65842,27 @@ }, { "type_name": "CClientMsg_CustomGameEvent", - "vtable_address": 6464878896, + "vtable_address": 6464882992, "methods": [ - 6445822624, - 6457189536, + 6445823008, + 6457191728, 6444865488, - 6445808256, - 6445808352, - 6457189584, - 6457186560, - 6445808368, + 6445808304, + 6445808400, + 6457191776, + 6457188752, + 6445808464, 6444784688, - 6445808976, + 6445808960, 6443742160, - 6445809552, - 6457190896, - 6457192720, - 6445809968, - 6445810608, - 6445810576, - 6457187520, - 6445822800 + 6445809728, + 6457193088, + 6457194912, + 6445810240, + 6445810592, + 6445810368, + 6457189712, + 6445823184 ], "bases": [ { @@ -65892,7 +65896,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296984, + "complete_object_locator": 6468301216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65901,29 +65905,29 @@ }, { "type_name": "CClientMsg_CustomGameEventBounce", - "vtable_address": 6464880576, + "vtable_address": 6464884672, "methods": [ - 6445834304, - 6457189536, + 6445834688, + 6457191728, 6444865504, - 6445828800, - 6445828912, - 6457189584, - 6457186560, - 6445829072, + 6445829184, + 6445829296, + 6457191776, + 6457188752, + 6445829456, 6444784704, - 6445829232, + 6445829616, 6443742160, - 6445829728, - 6457190896, - 6457192720, - 6445829984, - 6445830080, - 6445830064, - 6457187520, - 6445831776, - 6457187520, - 6445832848 + 6445830112, + 6457193088, + 6457194912, + 6445830368, + 6445830464, + 6445830448, + 6457189712, + 6445832160, + 6457189712, + 6445833232 ], "bases": [ { @@ -65957,7 +65961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297024, + "complete_object_locator": 6468301256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65966,31 +65970,31 @@ }, { "type_name": "CClientMsg_DevPaletteVisibilityChangedEvent", - "vtable_address": 6464884528, - "methods": [ - 6445884464, - 6457189536, - 6445867920, - 6445869728, - 6445869760, - 6457189584, - 6457186560, - 6445869776, - 6445872112, - 6445870944, - 6443742160, - 6445872000, - 6457190896, - 6457192720, - 6445872224, + "vtable_address": 6464888624, + "methods": [ + 6445884832, + 6457191728, + 6445868160, + 6445870112, + 6445870144, + 6457191776, + 6457188752, + 6445870160, 6445872336, - 6445872320, - 6457187520, - 6445872576, - 6457388960, - 6457389040, - 6457187520, - 6445880544 + 6445871168, + 6443742160, + 6445872224, + 6457193088, + 6457194912, + 6445872608, + 6445872720, + 6445872704, + 6457189712, + 6445872960, + 6457189712, + 6445880928, + 6457391152, + 6457391232 ], "bases": [ { @@ -66024,7 +66028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297064, + "complete_object_locator": 6468301296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66033,25 +66037,25 @@ }, { "type_name": "CClientMsg_ListenForResponseFound", - "vtable_address": 6464904496, + "vtable_address": 6464908448, "methods": [ - 6445928656, - 6457189536, - 6445919584, - 6445920080, - 6445920272, - 6457189584, - 6457186560, - 6445920368, - 6445924784, - 6445921504, + 6445928880, + 6457191728, + 6445919968, + 6445920464, + 6445920656, + 6457191776, + 6457188752, + 6445920752, + 6445925168, + 6445921728, 6443742160, - 6445923088, - 6457190896, - 6457192720, - 6445926048, - 6445926304, - 6445926128 + 6445923472, + 6457193088, + 6457194912, + 6445926432, + 6445926688, + 6445926512 ], "bases": [ { @@ -66085,7 +66089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297200, + "complete_object_locator": 6468301432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66094,13 +66098,13 @@ }, { "type_name": "CClientMsg_ListenForResponseFound_t", - "vtable_address": 6465701984, + "vtable_address": 6465706320, "methods": [ - 6448746848, - 6448746496, - 6448746480, - 6448746512, - 6448746592 + 6448748416, + 6448748064, + 6448748048, + 6448748080, + 6448748160 ], "bases": [ { @@ -66190,7 +66194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468488832, + "complete_object_locator": 6468492928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -66199,25 +66203,25 @@ }, { "type_name": "CClientMsg_ListenForResponseFound_t", - "vtable_address": 6465702032, + "vtable_address": 6465706368, "methods": [ - 6448745908, - 6457189536, - 6445919584, - 6445920080, - 6445920272, - 6457189584, - 6457186560, - 6445920368, - 6445924784, - 6445921504, + 6448747476, + 6457191728, + 6445919968, + 6445920464, + 6445920656, + 6457191776, + 6457188752, + 6445920752, + 6445925168, + 6445921728, 6443742160, - 6445923088, - 6457190896, - 6457192720, - 6445926048, - 6445926304, - 6445926128 + 6445923472, + 6457193088, + 6457194912, + 6445926432, + 6445926688, + 6445926512 ], "bases": [ { @@ -66307,7 +66311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489272, + "complete_object_locator": 6468493368, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -66316,25 +66320,25 @@ }, { "type_name": "CClientMsg_RotateAnchor", - "vtable_address": 6464900152, + "vtable_address": 6464904248, "methods": [ - 6445911616, - 6457189536, - 6445903872, - 6445905392, - 6445905728, - 6457189584, - 6457186560, + 6445911760, + 6457191728, + 6445904256, 6445905760, - 6445907152, - 6445905968, + 6445906096, + 6457191776, + 6457188752, + 6445906144, + 6445907280, + 6445906464, 6443742160, - 6445906832, - 6457190896, - 6457192720, - 6445910096, - 6445910592, - 6445910400 + 6445907168, + 6457193088, + 6457194912, + 6445909488, + 6445910960, + 6445910768 ], "bases": [ { @@ -66368,7 +66372,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297336, + "complete_object_locator": 6468301568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66377,25 +66381,25 @@ }, { "type_name": "CClientMsg_WorldUIControllerHasPanelChangedEvent", - "vtable_address": 6464885992, - "methods": [ - 6445899312, - 6457189536, - 6445893728, - 6445894624, - 6445895072, - 6457189584, - 6457186560, - 6445895104, - 6445896400, + "vtable_address": 6464890088, + "methods": [ + 6445899696, + 6457191728, + 6445894112, + 6445895008, 6445895456, + 6457191776, + 6457188752, + 6445895488, + 6445896784, + 6445895840, 6443742160, - 6445896080, - 6457190896, - 6457192720, - 6445896416, - 6445896544, - 6445896528 + 6445896464, + 6457193088, + 6457194912, + 6445896800, + 6445896928, + 6445896912 ], "bases": [ { @@ -66429,7 +66433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297472, + "complete_object_locator": 6468301704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66438,7 +66442,7 @@ }, { "type_name": "CClientPulseGameSystem", - "vtable_address": 6465252904, + "vtable_address": 6465256984, "methods": [ 6443748576, 6443748592, @@ -66576,7 +66580,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468419944, + "complete_object_locator": 6468424040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -66585,7 +66589,7 @@ }, { "type_name": "CClientPulseGameSystem", - "vtable_address": 6465253400, + "vtable_address": 6465257480, "methods": [ 6447662912, 6447662928, @@ -66666,7 +66670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468420104, + "complete_object_locator": 6468424200, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -66675,7 +66679,7 @@ }, { "type_name": "CClientPulseGameSystem", - "vtable_address": 6465253440, + "vtable_address": 6465257520, "methods": [ 6447666464, 6447663568, @@ -66756,7 +66760,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468420144, + "complete_object_locator": 6468424240, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -66765,13 +66769,13 @@ }, { "type_name": "CClientThinkList", - "vtable_address": 6466012000, + "vtable_address": 6466016200, "methods": [ - 6450991856, + 6450993424, 6443748592, - 6451046464, - 6450977680, - 6450977696, + 6451048032, + 6450979248, + 6450979264, 6443748656, 6443748672, 6443748688, @@ -66784,17 +66788,17 @@ 6443748800, 6443748816, 6443748832, - 6451026592, + 6451028160, 6443748864, 6443748880, 6443748896, - 6451026560, + 6451028128, 6443748928, 6443748944, 6443748960, 6443748976, 6443748992, - 6451053376, + 6451054944, 6443749024, 6443749040, 6443749056, @@ -66823,11 +66827,11 @@ 6443749424, 6443749440, 6443749456, - 6451042848, + 6451044416, 6443749488, - 6450958144, - 6450921824, - 6451057696 + 6450959712, + 6450923392, + 6451059264 ], "bases": [ { @@ -66847,7 +66851,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468578216, + "complete_object_locator": 6468582312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66856,19 +66860,19 @@ }, { "type_name": "CClientToolsInfo", - "vtable_address": 6466011768, + "vtable_address": 6466016024, "methods": [ - 6450893408, - 6450893504, - 6450893328, - 6450893664, - 6450893712, - 6450893344, - 6450893728, - 6450893392, - 6450893568, - 6450893360, - 6450893376 + 6450894976, + 6450895072, + 6450894896, + 6450895232, + 6450895280, + 6450894912, + 6450895296, + 6450894960, + 6450895136, + 6450894928, + 6450894944 ], "bases": [ { @@ -66986,7 +66990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468576344, + "complete_object_locator": 6468580440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66995,7 +66999,7 @@ }, { "type_name": "CClientUIDialogManager", - "vtable_address": 6464417968, + "vtable_address": 6464422064, "methods": [ 6443748576, 6443748592, @@ -67091,7 +67095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220944, + "complete_object_locator": 6468225040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67100,35 +67104,35 @@ }, { "type_name": "CClientUIDialogPanel", - "vtable_address": 6464444584, + "vtable_address": 6464448680, "methods": [ 6443876544, - 6461535472, + 6461537664, 6443909984, 6443911184, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -67142,11 +67146,11 @@ 6443821360, 6443848384, 6443921664, - 6461505456, - 6461505088, - 6461526000, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -67161,29 +67165,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, + 6461548896, 6443909760, 6443901600, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443911168, @@ -67221,7 +67225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468227152, + "complete_object_locator": 6468231248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67230,25 +67234,25 @@ }, { "type_name": "CCloud_Delete_Request", - "vtable_address": 6465191344, - "methods": [ - 6447264736, - 6457189536, - 6447256064, - 6447256416, - 6447256496, - 6457189584, - 6457186560, - 6447256512, - 6447257392, - 6447256624, + "vtable_address": 6465195424, + "methods": [ + 6447264960, + 6457191728, + 6447256288, + 6447256656, + 6447256720, + 6457191776, + 6457188752, + 6447256736, + 6447257632, + 6447256848, 6443742160, - 6447257168, - 6457190896, - 6457192720, - 6447257488, - 6447257536, - 6447257504 + 6447257392, + 6457193088, + 6457194912, + 6447257712, + 6447257760, + 6447257744 ], "bases": [ { @@ -67282,7 +67286,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390712, + "complete_object_locator": 6468394808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67291,27 +67295,27 @@ }, { "type_name": "CCloud_Delete_Response", - "vtable_address": 6465192128, - "methods": [ - 6447274048, - 6457189536, - 6447272912, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, + "vtable_address": 6465196208, + "methods": [ + 6447274272, + 6457191728, 6447273120, - 6447273104, - 6457187520, - 6447273184 + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447273312, + 6447273248, + 6457189712, + 6447273264 ], "bases": [ { @@ -67359,7 +67363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390848, + "complete_object_locator": 6468394944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67368,25 +67372,25 @@ }, { "type_name": "CCloud_EnumerateUserFiles_Request", - "vtable_address": 6465177080, + "vtable_address": 6465181160, "methods": [ - 6447225184, - 6457189536, - 6447218464, - 6447218576, - 6447218608, - 6457189584, - 6457186560, - 6447218624, - 6447219888, - 6447218768, - 6443742160, - 6447219472, - 6457190896, - 6457192720, - 6447220080, - 6447220128, - 6447220112 + 6447225408, + 6457191728, + 6447218688, + 6447218800, + 6447218832, + 6457191776, + 6457188752, + 6447218848, + 6447220112, + 6447218992, + 6443742160, + 6447219696, + 6457193088, + 6457194912, + 6447220304, + 6447220352, + 6447220336 ], "bases": [ { @@ -67420,7 +67424,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390992, + "complete_object_locator": 6468395088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67429,27 +67433,27 @@ }, { "type_name": "CCloud_EnumerateUserFiles_Response", - "vtable_address": 6465179144, + "vtable_address": 6465183224, "methods": [ - 6447251776, - 6457189536, - 6447232128, - 6447232672, - 6447233072, - 6457189584, - 6457186560, - 6447233088, - 6447234960, - 6447233856, + 6447252016, + 6457191728, + 6447232352, + 6447233040, + 6447233296, + 6457191776, + 6457188752, + 6447233312, + 6447235184, + 6447234080, 6443742160, - 6447234704, - 6457190896, - 6457192720, - 6447236832, - 6447238464, - 6447238448, - 6457187520, - 6447247872 + 6447234928, + 6457193088, + 6457194912, + 6447237056, + 6447238704, + 6447238672, + 6457189712, + 6447248096 ], "bases": [ { @@ -67483,7 +67487,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468391128, + "complete_object_locator": 6468395224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67492,39 +67496,39 @@ }, { "type_name": "CCloud_GetFileDetails_Request", - "vtable_address": 6465167520, - "methods": [ - 6447178400, - 6457189536, - 6447170112, - 6447170208, - 6447170256, - 6457189584, - 6457186560, - 6447170272, - 6447171312, - 6447170512, - 6443742160, - 6447171024, - 6457190896, - 6457192720, - 6447172336, - 6447175344, - 6447175312, - 6457187520, + "vtable_address": 6465171600, + "methods": [ + 6447178624, + 6457191728, + 6447170336, + 6447170432, + 6447170480, + 6457191776, + 6457188752, + 6447170640, + 6447171536, + 6447170736, + 6443742160, + 6447171248, + 6457193088, + 6457194912, + 6447172560, + 6447175568, 6447175536, - 6457187520, - 6447175744, - 6457187520, - 6447177392, - 6457187520, - 6447178544, - 6457187520, - 6447179680, - 6457187520, - 6447185744, - 6457187520, - 6447187840 + 6457189712, + 6447175760, + 6457189712, + 6447175968, + 6457189712, + 6447177616, + 6457189712, + 6447178768, + 6457189712, + 6447179936, + 6457189712, + 6447185968, + 6457189712, + 6447188064 ], "bases": [ { @@ -67558,7 +67562,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468391264, + "complete_object_locator": 6468395360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67567,29 +67571,29 @@ }, { "type_name": "CCloud_GetFileDetails_Response", - "vtable_address": 6465175640, - "methods": [ - 6447214800, - 6457189536, - 6447206448, - 6447209072, - 6447211120, - 6457189584, - 6457186560, - 6447211136, - 6447212832, - 6447212144, - 6443742160, - 6447212528, - 6457190896, - 6457192720, - 6447212864, - 6447212976, - 6447212960, - 6457187520, - 6447213072, - 6457187520, - 6447213504 + "vtable_address": 6465179720, + "methods": [ + 6447215024, + 6457191728, + 6447206672, + 6447210992, + 6447211344, + 6457191776, + 6457188752, + 6447211360, + 6447213056, + 6447212368, + 6443742160, + 6447212944, + 6457193088, + 6457194912, + 6447213088, + 6447213200, + 6447213184, + 6457189712, + 6447213296, + 6457189712, + 6447214112 ], "bases": [ { @@ -67623,7 +67627,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468391400, + "complete_object_locator": 6468395496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67632,33 +67636,33 @@ }, { "type_name": "CCloud_GetUploadServerInfo_Request", - "vtable_address": 6465165136, - "methods": [ - 6447150704, - 6457189536, - 6447145200, - 6447145264, - 6447145296, - 6457189584, - 6457186560, - 6447145312, - 6447145920, - 6447145360, + "vtable_address": 6465169216, + "methods": [ + 6447151024, + 6457191728, + 6447145424, + 6447145488, + 6447145520, + 6457191776, + 6457188752, + 6447145536, + 6447146144, + 6447145584, 6443742160, - 6447145744, - 6457190896, - 6457192720, - 6447145936, - 6447146080, - 6447145984, - 6457187520, - 6447148992, - 6457187520, - 6447150512, - 6457187520, - 6447151088, - 6457187520, - 6447155808 + 6447145968, + 6457193088, + 6457194912, + 6447146160, + 6447146304, + 6447146208, + 6457189712, + 6447149216, + 6457189712, + 6447150736, + 6457189712, + 6447151312, + 6457189712, + 6447156032 ], "bases": [ { @@ -67692,7 +67696,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468391536, + "complete_object_locator": 6468395632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67701,29 +67705,29 @@ }, { "type_name": "CCloud_GetUploadServerInfo_Response", - "vtable_address": 6465166128, + "vtable_address": 6465170208, "methods": [ - 6447167792, - 6457189536, - 6447161888, - 6447162176, - 6447162240, - 6457189584, - 6457186560, - 6447162256, - 6447162880, - 6447162336, + 6447168016, + 6457191728, + 6447162112, + 6447162400, + 6447162464, + 6457191776, + 6457188752, + 6447162480, + 6447163104, + 6447162560, 6443742160, - 6447162768, - 6457190896, - 6457192720, - 6447162896, - 6447163088, - 6447163072, - 6457187520, - 6447164656, - 6457187520, - 6447165728 + 6447162992, + 6457193088, + 6457194912, + 6447163120, + 6447163312, + 6447163296, + 6457189712, + 6447164464, + 6457189712, + 6447165952 ], "bases": [ { @@ -67757,7 +67761,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468391672, + "complete_object_locator": 6468395768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67766,25 +67770,25 @@ }, { "type_name": "CCloud_UserFile", - "vtable_address": 6465169000, + "vtable_address": 6465173080, "methods": [ - 6447203520, - 6457189536, - 6447189568, - 6447189856, - 6447189968, - 6457189584, - 6457186560, - 6447189984, - 6447191712, - 6447190256, + 6447203760, + 6457191728, + 6447189792, + 6447190080, + 6447190192, + 6457191776, + 6457188752, + 6447190208, + 6447191936, + 6447190480, 6443742160, - 6447191136, - 6457190896, - 6457192720, - 6447191728, - 6447191920, - 6447191904 + 6447191360, + 6457193088, + 6457194912, + 6447191952, + 6447192144, + 6447192128 ], "bases": [ { @@ -67818,7 +67822,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468391808, + "complete_object_locator": 6468395904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67827,24 +67831,24 @@ }, { "type_name": "CCoJob", - "vtable_address": 6467856792, - "methods": [ - 6452386448, - 6463501632, - 6452384304, - 6452358960, - 6452384320, - 6463501856, - 6452355408, - 6463499888, - 6463499952, - 6452355456, - 6463500272 + "vtable_address": 6467860888, + "methods": [ + 6452388064, + 6463503824, + 6452385920, + 6452360576, + 6452385936, + 6463504048, + 6452357024, + 6463502080, + 6463502144, + 6452357072, + 6463502464 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468994576, + "complete_object_locator": 6468998672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67853,19 +67857,19 @@ }, { "type_name": "CCoJobLambda >", - "vtable_address": 6466332160, + "vtable_address": 6466336320, "methods": [ - 6452386448, - 6463501632, - 6452384304, - 6452358960, - 6452384320, - 6463501856, - 6452355408, - 6452350656, - 6452355424, - 6452355456, - 6463500272 + 6452388064, + 6463503824, + 6452385920, + 6452360576, + 6452385936, + 6463504048, + 6452357024, + 6452352272, + 6452357040, + 6452357072, + 6463502464 ], "bases": [ { @@ -67885,7 +67889,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468676320, + "complete_object_locator": 6468680416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67894,19 +67898,19 @@ }, { "type_name": "CCoJobLambda >", - "vtable_address": 6466712144, - "methods": [ - 6452386448, - 6463501632, - 6452384304, - 6452358960, - 6452384320, - 6463501856, - 6452355408, - 6455302256, - 6455327968, - 6452355456, - 6463500272 + "vtable_address": 6466716240, + "methods": [ + 6452388064, + 6463503824, + 6452385920, + 6452360576, + 6452385936, + 6463504048, + 6452357024, + 6455304016, + 6455329728, + 6452357072, + 6463502464 ], "bases": [ { @@ -67926,7 +67930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772424, + "complete_object_locator": 6468776520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67935,19 +67939,19 @@ }, { "type_name": "CCoJobLambda >", - "vtable_address": 6466712704, + "vtable_address": 6466716800, "methods": [ - 6452386448, - 6463501632, - 6452384304, - 6452358960, - 6452384320, - 6463501856, - 6452355408, - 6455302320, - 6455328112, - 6452355456, - 6463500272 + 6452388064, + 6463503824, + 6452385920, + 6452360576, + 6452385936, + 6463504048, + 6452357024, + 6455304080, + 6455329872, + 6452357072, + 6463502464 ], "bases": [ { @@ -67967,7 +67971,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772552, + "complete_object_locator": 6468776648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67976,19 +67980,19 @@ }, { "type_name": "CCoJobLambda >", - "vtable_address": 6466651376, + "vtable_address": 6466655472, "methods": [ - 6452386448, - 6463501632, - 6452384304, - 6452358960, - 6452384320, - 6463501856, - 6452355408, - 6454468880, - 6454496048, - 6452355456, - 6463500272 + 6452388064, + 6463503824, + 6452385920, + 6452360576, + 6452385936, + 6463504048, + 6452357024, + 6454470640, + 6454497808, + 6452357072, + 6463502464 ], "bases": [ { @@ -68008,7 +68012,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750136, + "complete_object_locator": 6468754232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68017,19 +68021,19 @@ }, { "type_name": "CCoJobLambda >", - "vtable_address": 6466572280, - "methods": [ - 6452386448, - 6463501632, - 6452384304, - 6452358960, - 6452384320, - 6463501856, - 6452355408, - 6453884704, - 6453889744, - 6452355456, - 6463500272 + "vtable_address": 6466576408, + "methods": [ + 6452388064, + 6463503824, + 6452385920, + 6452360576, + 6452385936, + 6463504048, + 6452357024, + 6453886464, + 6453891504, + 6452357072, + 6463502464 ], "bases": [ { @@ -68049,7 +68053,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727344, + "complete_object_locator": 6468731440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68058,19 +68062,19 @@ }, { "type_name": "CCoJobLambda >", - "vtable_address": 6466572432, + "vtable_address": 6466576560, "methods": [ - 6452386448, - 6463501632, - 6452384304, - 6452358960, - 6452384320, - 6463501856, - 6452355408, - 6453884768, - 6453889776, - 6452355456, - 6463500272 + 6452388064, + 6463503824, + 6452385920, + 6452360576, + 6452385936, + 6463504048, + 6452357024, + 6453886528, + 6453891536, + 6452357072, + 6463502464 ], "bases": [ { @@ -68090,7 +68094,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727608, + "complete_object_locator": 6468731704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68099,18 +68103,18 @@ }, { "type_name": "CCollisionProperty", - "vtable_address": 6466040184, + "vtable_address": 6466044392, "methods": [ - 6449027408, - 6451120144, - 6451131728, - 6448966064, - 6451131856 + 6449028960, + 6451121712, + 6451133296, + 6448967632, + 6451133424 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468586576, + "complete_object_locator": 6468590672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68119,12 +68123,12 @@ }, { "type_name": "CCollisionProperty::NetworkVar_m_collisionAttribute", - "vtable_address": 6466040144, + "vtable_address": 6466044352, "methods": [ - 6451142672, - 6451131808, - 6451131936, - 6451131920 + 6451144240, + 6451133376, + 6451133504, + 6451133488 ], "bases": [ { @@ -68144,7 +68148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468586832, + "complete_object_locator": 6468590928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68153,7 +68157,7 @@ }, { "type_name": "CColorCorrectionMgr", - "vtable_address": 6466040848, + "vtable_address": 6466045056, "methods": [ 6443748576, 6443748592, @@ -68211,11 +68215,11 @@ 6443749424, 6443749440, 6443749456, - 6451144784, + 6451146352, 6443749488, - 6451105040, - 6451087232, - 6451160400 + 6451106608, + 6451088800, + 6451161968 ], "bases": [ { @@ -68235,7 +68239,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468587984, + "complete_object_locator": 6468592080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68244,13 +68248,13 @@ }, { "type_name": "CColorizedLoggingListener", - "vtable_address": 6467014984, + "vtable_address": 6467019048, "methods": [ - 6458621008, - 6458620976, - 6458620816, - 6458620832, - 6458620848 + 6458623200, + 6458623168, + 6458623008, + 6458623024, + 6458623040 ], "bases": [ { @@ -68284,7 +68288,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468861552, + "complete_object_locator": 6468865648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68293,29 +68297,29 @@ }, { "type_name": "CCommunity_GamePersonalDataCategoryInfo", - "vtable_address": 6465027648, + "vtable_address": 6465031744, "methods": [ - 6446575104, - 6457189536, - 6446560464, - 6446560736, - 6446560864, - 6457189584, - 6457186560, - 6446560880, - 6446563008, - 6446561056, - 6443742160, - 6446562336, - 6457190896, - 6457192720, - 6446565152, - 6446567088, - 6446566944, - 6457187520, - 6446572880, - 6457187520, - 6446575296 + 6446575504, + 6457191728, + 6446560848, + 6446561120, + 6446561408, + 6457191776, + 6457188752, + 6446561424, + 6446563408, + 6446561600, + 6443742160, + 6446562736, + 6457193088, + 6457194912, + 6446565776, + 6446568352, + 6446568208, + 6457189712, + 6446573120, + 6457189712, + 6446575680 ], "bases": [ { @@ -68349,7 +68353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468313472, + "complete_object_locator": 6468317704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68358,25 +68362,25 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Request", - "vtable_address": 6465028960, - "methods": [ - 6446590944, - 6457189536, - 6446583024, - 6446585280, - 6446585328, - 6457189584, - 6457186560, - 6446585408, - 6446586192, - 6446585472, - 6443742160, + "vtable_address": 6465035944, + "methods": [ + 6446591328, + 6457191728, + 6446584096, + 6446585664, + 6446585712, + 6457191776, + 6457188752, + 6446585952, + 6446586576, 6446586016, - 6457190896, - 6457192720, - 6446586432, - 6446586704, - 6446586672 + 6443742160, + 6446586400, + 6457193088, + 6457194912, + 6446586896, + 6446587088, + 6446587072 ], "bases": [ { @@ -68410,7 +68414,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468313608, + "complete_object_locator": 6468317840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68419,33 +68423,33 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Response", - "vtable_address": 6465073208, - "methods": [ - 6446622944, - 6457189536, - 6446607072, - 6446607344, - 6446607632, - 6457189584, - 6457186560, - 6446607648, - 6446608992, - 6446608192, - 6443742160, - 6446608816, - 6457190896, - 6457192720, - 6446609168, - 6446609600, - 6446609584, - 6457187520, - 6446621264, - 6457187520, - 6446622816, - 6457187520, - 6446623168, - 6457187520, - 6446626688 + "vtable_address": 6465077304, + "methods": [ + 6446623344, + 6457191728, + 6446607488, + 6446607888, + 6446608176, + 6457191776, + 6457188752, + 6446608336, + 6446609376, + 6446608720, + 6443742160, + 6446609200, + 6457193088, + 6457194912, + 6446609552, + 6446609984, + 6446609968, + 6457189712, + 6446621648, + 6457189712, + 6446623216, + 6457189712, + 6446623568, + 6457189712, + 6446627072 ], "bases": [ { @@ -68479,7 +68483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468313744, + "complete_object_locator": 6468317976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68488,27 +68492,27 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Request", - "vtable_address": 6465075016, - "methods": [ - 6446649280, - 6457189536, - 6446637760, - 6446639008, - 6446639120, - 6457189584, - 6457186560, - 6446639136, - 6446640384, - 6446639424, - 6443742160, - 6446640032, - 6457190896, - 6457192720, - 6446640624, - 6446640656, - 6446640640, - 6457187520, - 6446648032 + "vtable_address": 6465079112, + "methods": [ + 6446649680, + 6457191728, + 6446639168, + 6446639488, + 6446639600, + 6457191776, + 6457188752, + 6446639616, + 6446640848, + 6446639808, + 6443742160, + 6446640496, + 6457193088, + 6457194912, + 6446641008, + 6446641200, + 6446641024, + 6457189712, + 6446648416 ], "bases": [ { @@ -68542,7 +68546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468313880, + "complete_object_locator": 6468318112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68551,25 +68555,25 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Response", - "vtable_address": 6465077096, + "vtable_address": 6465081208, "methods": [ - 6446676576, - 6457189536, - 6446657248, - 6446657472, - 6446657600, - 6457189584, - 6457186560, - 6446657616, - 6446658896, - 6446657904, + 6446677040, + 6457191728, + 6446657632, + 6446657856, + 6446657984, + 6457191776, + 6457188752, + 6446658000, + 6446659280, + 6446658288, 6443742160, - 6446658480, - 6457190896, - 6457192720, - 6446659072, - 6446659328, - 6446659312 + 6446658864, + 6457193088, + 6457194912, + 6446659472, + 6446660192, + 6446660176 ], "bases": [ { @@ -68603,7 +68607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314016, + "complete_object_locator": 6468318248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68612,25 +68616,25 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Request", - "vtable_address": 6464877168, + "vtable_address": 6464881264, "methods": [ - 6445804112, - 6457189536, - 6446684144, - 6446685952, - 6446686016, - 6457189584, - 6457186560, - 6446686080, - 6445788032, - 6445786752, + 6445804496, + 6457191728, + 6446686208, + 6445786832, + 6445786896, + 6457191776, + 6457188752, + 6445787024, + 6445788560, + 6445787328, 6443742160, - 6445787712, - 6457190896, - 6457192720, - 6445788384, - 6445789328, - 6445789312 + 6445788272, + 6457193088, + 6457194912, + 6445789248, + 6445789888, + 6445789872 ], "bases": [ { @@ -68664,7 +68668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314152, + "complete_object_locator": 6468318384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68673,29 +68677,29 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Response", - "vtable_address": 6464878720, - "methods": [ - 6445822304, - 6457189536, - 6445807248, - 6445807968, - 6445808000, - 6457189584, - 6457186560, - 6445808208, - 6445809536, - 6445808496, - 6443742160, - 6445809360, - 6457190896, - 6457192720, - 6445809728, - 6445810336, - 6445810304, - 6457187520, - 6445817072, - 6457187520, - 6445819296 + "vtable_address": 6464882816, + "methods": [ + 6445822720, + 6457191728, + 6445807632, + 6445808784, + 6445808816, + 6457191776, + 6457188752, + 6445808848, + 6445810080, + 6445809344, + 6443742160, + 6445809904, + 6457193088, + 6457194912, + 6445810272, + 6445810816, + 6445810784, + 6457189712, + 6445817376, + 6457189712, + 6445819680 ], "bases": [ { @@ -68729,7 +68733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314288, + "complete_object_locator": 6468318520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68738,7 +68742,7 @@ }, { "type_name": "CCompetitiveCvarManager", - "vtable_address": 6465270584, + "vtable_address": 6465274776, "methods": [ 6447729360, 6443748592, @@ -68834,7 +68838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468426120, + "complete_object_locator": 6468430216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68843,17 +68847,17 @@ }, { "type_name": "CComponentPredictionCopyDataOps", - "vtable_address": 6465739176, - "methods": [ - 6448849568, - 6448841232, - 6448861568, - 6448845504, - 6448905552, - 6448906320, - 6448898240, - 6448915360, - 6448914848, + "vtable_address": 6465743368, + "methods": [ + 6448851136, + 6448842800, + 6448863136, + 6448847072, + 6448907120, + 6448907888, + 6448899808, + 6448916928, + 6448916416, 6443968624 ], "bases": [ @@ -68888,7 +68892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468499984, + "complete_object_locator": 6468504080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68897,17 +68901,17 @@ }, { "type_name": "CComponentPredictionCopyDataOps", - "vtable_address": 6465739464, - "methods": [ - 6448850416, - 6448842384, - 6448862688, - 6448845584, - 6448905568, - 6448906336, - 6448898352, - 6448915376, - 6448914896, + "vtable_address": 6465743656, + "methods": [ + 6448851984, + 6448843952, + 6448864256, + 6448847152, + 6448907136, + 6448907904, + 6448899920, + 6448916944, + 6448916464, 6443968624 ], "bases": [ @@ -68942,7 +68946,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468500528, + "complete_object_locator": 6468504624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68951,17 +68955,17 @@ }, { "type_name": "CComponentPredictionCopyDataOps", - "vtable_address": 6465956440, - "methods": [ - 6450433360, - 6450421424, - 6450449712, - 6450428832, - 6450485456, - 6450486128, - 6450476208, - 6450497712, - 6450496768, + "vtable_address": 6465960632, + "methods": [ + 6450434928, + 6450422992, + 6450451280, + 6450430400, + 6450487024, + 6450487696, + 6450477776, + 6450499280, + 6450498336, 6443968624 ], "bases": [ @@ -68996,7 +69000,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563872, + "complete_object_locator": 6468567968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69005,7 +69009,7 @@ }, { "type_name": "CCompositeMaterialDebugWindow", - "vtable_address": 6466043656, + "vtable_address": 6466047864, "methods": [ 6443748576, 6443748592, @@ -69015,11 +69019,11 @@ 6443748656, 6443748672, 6443748688, - 6449264192, + 6449265744, 6443748720, 6443748736, 6443748752, - 6449264800, + 6449266352, 6443748784, 6443748800, 6443748816, @@ -69028,7 +69032,7 @@ 6443748864, 6443748880, 6443748896, - 6449324400, + 6449325952, 6443748928, 6443748944, 6443748960, @@ -69045,7 +69049,7 @@ 6443749136, 6443749152, 6443749168, - 6449318320, + 6449319872, 6443749200, 6443749216, 6443749232, @@ -69063,14 +69067,14 @@ 6443749424, 6443749440, 6443749456, - 6451144816, + 6451146384, 6443749488, - 6451105056, - 6451087392, - 6451160416, - 6451106464, - 6451130896, - 6451142464 + 6451106624, + 6451088960, + 6451161984, + 6451108032, + 6451132464, + 6451144032 ], "bases": [ { @@ -69118,7 +69122,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468588952, + "complete_object_locator": 6468593048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69127,25 +69131,25 @@ }, { "type_name": "CCompositeMaterialEditorDoc", - "vtable_address": 6467065336, - "methods": [ - 6459888576, - 6459888560, - 6459888752, - 6459888848, - 6459888864, - 6459888832, - 6459888880, - 6459888896, - 6459888800, - 6459888912, - 6459888784, - 6459888816, - 6459245712, - 6459872464, - 6459775296, - 6459766144, - 6459775280 + "vtable_address": 6467069400, + "methods": [ + 6459890768, + 6459890752, + 6459890944, + 6459891040, + 6459891056, + 6459891024, + 6459891072, + 6459891088, + 6459890992, + 6459891104, + 6459890976, + 6459891008, + 6459247904, + 6459874656, + 6459777488, + 6459768336, + 6459777472 ], "bases": [ { @@ -69179,7 +69183,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468872336, + "complete_object_locator": 6468876432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69188,15 +69192,15 @@ }, { "type_name": "CCompositeMaterialGameSystem", - "vtable_address": 6466163272, + "vtable_address": 6466167480, "methods": [ - 6451695760, + 6451697344, 6443748592, - 6451695792, + 6451697376, 6443748624, 6443748640, 6443748656, - 6451695872, + 6451697456, 6443748688, 6443748704, 6443748720, @@ -69211,7 +69215,7 @@ 6443748864, 6443748880, 6443748896, - 6451695920, + 6451697504, 6443748928, 6443748944, 6443748960, @@ -69246,11 +69250,11 @@ 6443749424, 6443749440, 6443749456, - 6451695728, + 6451697312, 6443749488, - 6451695712, - 6451696544, - 6451695696 + 6451697296, + 6451698128, + 6451697280 ], "bases": [ { @@ -69298,7 +69302,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631384, + "complete_object_locator": 6468635480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -69307,9 +69311,9 @@ }, { "type_name": "CCompositeMaterialGameSystem", - "vtable_address": 6466163768, + "vtable_address": 6466167976, "methods": [ - 6451696320 + 6451697904 ], "bases": [ { @@ -69357,7 +69361,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631568, + "complete_object_locator": 6468635664, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -69366,32 +69370,32 @@ }, { "type_name": "CCompositeMaterialKitTypeManager", - "vtable_address": 6467030080, - "methods": [ - 6458956144, - 6458957376, - 6458957392, - 6458957408, - 6458957424, - 6458957440, - 6458957456, - 6458957472, - 6458957488, - 6458957504, - 6458957520, - 6458956272, - 6458956736, - 6458957536, - 6458957552, - 6458957568, - 6458956800, - 6458956832, - 6458957584, - 6458957600, - 6458957008, - 6458957200, - 6458956160, - 6458956816 + "vtable_address": 6467034144, + "methods": [ + 6458958336, + 6458959568, + 6458959584, + 6458959600, + 6458959616, + 6458959632, + 6458959648, + 6458959664, + 6458959680, + 6458959696, + 6458959712, + 6458958464, + 6458958928, + 6458959728, + 6458959744, + 6458959760, + 6458958992, + 6458959024, + 6458959776, + 6458959792, + 6458959200, + 6458959392, + 6458958352, + 6458959008 ], "bases": [ { @@ -69425,7 +69429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468871376, + "complete_object_locator": 6468875472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69434,23 +69438,23 @@ }, { "type_name": "CCompositeMaterialManager", - "vtable_address": 6467043800, - "methods": [ - 6459055840, - 6459042976, - 6459017552, - 6458993136, - 6459044944, - 6458994096, - 6459031024, - 6459079520, - 6459031008, - 6459034640, - 6459000816, - 6459031040, - 6458999984, - 6459030656, - 6458997872 + "vtable_address": 6467047864, + "methods": [ + 6459058032, + 6459045168, + 6459019744, + 6458995328, + 6459047136, + 6458996288, + 6459033216, + 6459081712, + 6459033200, + 6459036832, + 6459003008, + 6459033232, + 6459002176, + 6459032848, + 6459000064 ], "bases": [ { @@ -69470,7 +69474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468871680, + "complete_object_locator": 6468875776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69479,19 +69483,19 @@ }, { "type_name": "CCompositeMaterialOwner", - "vtable_address": 6467052352, + "vtable_address": 6467056416, "methods": [ - 6459101024, - 6459103232, - 6459102144, - 6459102128, + 6459103216, + 6459105424, + 6459104336, + 6459104320, 6443817504, - 6459101392 + 6459103584 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468871808, + "complete_object_locator": 6468875904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69500,20 +69504,20 @@ }, { "type_name": "CCompressedAnimQuaternion", - "vtable_address": 6467025608, + "vtable_address": 6467029672, "methods": [ - 6458880144, - 6458880160, - 6458880176, - 6458881008, - 6458878384, - 6458878112, - 6458878032, - 6458880192, - 6458881072, - 6458880272, - 6458880288, - 6458878016 + 6458882336, + 6458882352, + 6458882368, + 6458883200, + 6458880576, + 6458880304, + 6458880224, + 6458882384, + 6458883264, + 6458882464, + 6458882480, + 6458880208 ], "bases": [ { @@ -69547,7 +69551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468866528, + "complete_object_locator": 6468870624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69556,20 +69560,20 @@ }, { "type_name": "CCompressedAnimVector3", - "vtable_address": 6467025008, + "vtable_address": 6467029072, "methods": [ - 6458873472, - 6458873488, - 6458873504, - 6458874480, - 6458871696, - 6458871504, - 6458871424, - 6458873520, - 6458874544, - 6458873600, - 6458874144, - 6458871408 + 6458875664, + 6458875680, + 6458875696, + 6458876672, + 6458873888, + 6458873696, + 6458873616, + 6458875712, + 6458876736, + 6458875792, + 6458876336, + 6458873600 ], "bases": [ { @@ -69603,7 +69607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468865984, + "complete_object_locator": 6468870080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69612,20 +69616,20 @@ }, { "type_name": "CCompressedDeltaVector3", - "vtable_address": 6467025136, + "vtable_address": 6467029200, "methods": [ - 6458874608, - 6458874624, - 6458874640, - 6458875920, - 6458871696, - 6458871504, - 6458871424, - 6458874656, - 6458877392, - 6458874736, - 6458875424, - 6458871408 + 6458876800, + 6458876816, + 6458876832, + 6458878112, + 6458873888, + 6458873696, + 6458873616, + 6458876848, + 6458879584, + 6458876928, + 6458877616, + 6458873600 ], "bases": [ { @@ -69659,7 +69663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468866120, + "complete_object_locator": 6468870216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69668,20 +69672,20 @@ }, { "type_name": "CCompressedFullBool", - "vtable_address": 6467026752, + "vtable_address": 6467030816, "methods": [ - 6458886704, - 6458886720, - 6458886736, - 6458886640, - 6458885856, - 6458885776, - 6458885712, - 6458886752, - 6458886832, - 6458886384, - 6458886400, - 6458885696 + 6458888896, + 6458888912, + 6458888928, + 6458888832, + 6458888048, + 6458887968, + 6458887904, + 6458888944, + 6458889024, + 6458888576, + 6458888592, + 6458887888 ], "bases": [ { @@ -69729,7 +69733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468868480, + "complete_object_locator": 6468872576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69738,20 +69742,20 @@ }, { "type_name": "CCompressedFullChar", - "vtable_address": 6467026240, + "vtable_address": 6467030304, "methods": [ - 6458884272, - 6458884288, - 6458884304, - 6458884032, - 6458881888, - 6458881728, - 6458881664, - 6458884320, - 6458884400, - 6458883744, - 6458883792, - 6458881648 + 6458886464, + 6458886480, + 6458886496, + 6458886224, + 6458884080, + 6458883920, + 6458883856, + 6458886512, + 6458886592, + 6458885936, + 6458885984, + 6458883840 ], "bases": [ { @@ -69799,7 +69803,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468867520, + "complete_object_locator": 6468871616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69808,20 +69812,20 @@ }, { "type_name": "CCompressedFullColor32", - "vtable_address": 6467027016, + "vtable_address": 6467031080, "methods": [ - 6458888128, - 6458888144, - 6458888160, - 6458888064, - 6458887280, - 6458886992, - 6458886912, - 6458888176, - 6458888256, - 6458887808, - 6458887824, - 6458886896 + 6458890320, + 6458890336, + 6458890352, + 6458890256, + 6458889472, + 6458889184, + 6458889104, + 6458890368, + 6458890448, + 6458890000, + 6458890016, + 6458889088 ], "bases": [ { @@ -69869,7 +69873,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468868960, + "complete_object_locator": 6468873056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69878,20 +69882,20 @@ }, { "type_name": "CCompressedFullFloat", - "vtable_address": 6467024608, + "vtable_address": 6467028672, "methods": [ - 6458871216, - 6458871232, - 6458871248, - 6458870960, - 6458870288, - 6458870160, - 6458870096, - 6458871264, - 6458871344, - 6458870688, - 6458870736, - 6458870080 + 6458873408, + 6458873424, + 6458873440, + 6458873152, + 6458872480, + 6458872352, + 6458872288, + 6458873456, + 6458873536, + 6458872880, + 6458872928, + 6458872272 ], "bases": [ { @@ -69939,7 +69943,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468865568, + "complete_object_locator": 6468869664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69948,20 +69952,20 @@ }, { "type_name": "CCompressedFullInt", - "vtable_address": 6467026496, + "vtable_address": 6467030560, "methods": [ - 6458885504, - 6458885520, - 6458885536, - 6458885440, - 6458881888, - 6458881728, - 6458881664, - 6458885552, - 6458885632, - 6458885184, - 6458885200, - 6458881648 + 6458887696, + 6458887712, + 6458887728, + 6458887632, + 6458884080, + 6458883920, + 6458883856, + 6458887744, + 6458887824, + 6458887376, + 6458887392, + 6458883840 ], "bases": [ { @@ -70009,7 +70013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468868000, + "complete_object_locator": 6468872096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70018,20 +70022,20 @@ }, { "type_name": "CCompressedFullQuaternion", - "vtable_address": 6467025744, + "vtable_address": 6467029808, "methods": [ - 6458881136, - 6458881152, - 6458881168, - 6458881520, - 6458878384, - 6458878112, - 6458878032, - 6458881184, - 6458881584, - 6458881264, - 6458881280, - 6458878016 + 6458883328, + 6458883344, + 6458883360, + 6458883712, + 6458880576, + 6458880304, + 6458880224, + 6458883376, + 6458883776, + 6458883456, + 6458883472, + 6458880208 ], "bases": [ { @@ -70065,7 +70069,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468866664, + "complete_object_locator": 6468870760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70074,20 +70078,20 @@ }, { "type_name": "CCompressedFullShort", - "vtable_address": 6467026368, - "methods": [ - 6458884992, - 6458885008, - 6458885024, - 6458884752, - 6458881888, - 6458881728, - 6458881664, - 6458885040, - 6458885120, - 6458884464, - 6458884512, - 6458881648 + "vtable_address": 6467030432, + "methods": [ + 6458887184, + 6458887200, + 6458887216, + 6458886944, + 6458884080, + 6458883920, + 6458883856, + 6458887232, + 6458887312, + 6458886656, + 6458886704, + 6458883840 ], "bases": [ { @@ -70135,7 +70139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468867760, + "complete_object_locator": 6468871856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70144,20 +70148,20 @@ }, { "type_name": "CCompressedFullVector2D", - "vtable_address": 6467024088, - "methods": [ - 6458868288, - 6458868304, - 6458868320, - 6458868224, - 6458867360, - 6458867200, - 6458867120, - 6458868336, - 6458868416, - 6458867904, - 6458867968, - 6458867104 + "vtable_address": 6467028152, + "methods": [ + 6458870480, + 6458870496, + 6458870512, + 6458870416, + 6458869552, + 6458869392, + 6458869312, + 6458870528, + 6458870608, + 6458870096, + 6458870160, + 6458869296 ], "bases": [ { @@ -70205,7 +70209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468869440, + "complete_object_locator": 6468873536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70214,20 +70218,20 @@ }, { "type_name": "CCompressedFullVector3", - "vtable_address": 6467025344, + "vtable_address": 6467029408, "methods": [ - 6458877504, - 6458877520, - 6458877536, - 6458877888, - 6458871696, - 6458871504, - 6458871424, - 6458877552, - 6458877952, - 6458877632, - 6458877648, - 6458871408 + 6458879696, + 6458879712, + 6458879728, + 6458880080, + 6458873888, + 6458873696, + 6458873616, + 6458879744, + 6458880144, + 6458879824, + 6458879840, + 6458873600 ], "bases": [ { @@ -70261,7 +70265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468866256, + "complete_object_locator": 6468870352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70270,20 +70274,20 @@ }, { "type_name": "CCompressedFullVector4D", - "vtable_address": 6467024352, + "vtable_address": 6467028416, "methods": [ - 6458869888, - 6458869904, - 6458869920, - 6458869808, - 6458868880, - 6458868576, - 6458868496, - 6458869936, - 6458870016, - 6458869472, - 6458869568, - 6458868480 + 6458872080, + 6458872096, + 6458872112, + 6458872000, + 6458871072, + 6458870768, + 6458870688, + 6458872128, + 6458872208, + 6458871664, + 6458871760, + 6458870672 ], "bases": [ { @@ -70331,7 +70335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468869920, + "complete_object_locator": 6468874016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70340,20 +70344,20 @@ }, { "type_name": "CCompressedStaticBool", - "vtable_address": 6467026624, - "methods": [ - 6458886192, - 6458886208, - 6458886224, - 6458886128, - 6458885856, - 6458885776, - 6458885712, - 6458886240, - 6458886320, - 6458885888, - 6458885936, - 6458885696 + "vtable_address": 6467030688, + "methods": [ + 6458888384, + 6458888400, + 6458888416, + 6458888320, + 6458888048, + 6458887968, + 6458887904, + 6458888432, + 6458888512, + 6458888080, + 6458888128, + 6458887888 ], "bases": [ { @@ -70401,7 +70405,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468868240, + "complete_object_locator": 6468872336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70410,20 +70414,20 @@ }, { "type_name": "CCompressedStaticChar", - "vtable_address": 6467026008, - "methods": [ - 6458882896, - 6458882912, - 6458882928, - 6458882656, - 6458881888, - 6458881728, - 6458881664, - 6458882944, - 6458883024, - 6458882416, - 6458882464, - 6458881648 + "vtable_address": 6467030072, + "methods": [ + 6458885088, + 6458885104, + 6458885120, + 6458884848, + 6458884080, + 6458883920, + 6458883856, + 6458885136, + 6458885216, + 6458884608, + 6458884656, + 6458883840 ], "bases": [ { @@ -70471,7 +70475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468867040, + "complete_object_locator": 6468871136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70480,20 +70484,20 @@ }, { "type_name": "CCompressedStaticColor32", - "vtable_address": 6467026880, + "vtable_address": 6467030944, "methods": [ - 6458887616, - 6458887632, - 6458887648, - 6458887552, - 6458887280, - 6458886992, - 6458886912, - 6458887664, - 6458887744, - 6458887312, - 6458887360, - 6458886896 + 6458889808, + 6458889824, + 6458889840, + 6458889744, + 6458889472, + 6458889184, + 6458889104, + 6458889856, + 6458889936, + 6458889504, + 6458889552, + 6458889088 ], "bases": [ { @@ -70541,7 +70545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468868720, + "complete_object_locator": 6468872816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70550,20 +70554,20 @@ }, { "type_name": "CCompressedStaticFloat", - "vtable_address": 6467024480, + "vtable_address": 6467028544, "methods": [ - 6458871024, - 6458871040, - 6458871056, - 6458870640, - 6458870288, - 6458870160, - 6458870096, - 6458871072, - 6458871152, - 6458870320, - 6458870448, - 6458870080 + 6458873216, + 6458873232, + 6458873248, + 6458872832, + 6458872480, + 6458872352, + 6458872288, + 6458873264, + 6458873344, + 6458872512, + 6458872640, + 6458872272 ], "bases": [ { @@ -70611,7 +70615,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468865424, + "complete_object_locator": 6468869520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70620,20 +70624,20 @@ }, { "type_name": "CCompressedStaticFullVector3", - "vtable_address": 6467024872, + "vtable_address": 6467028936, "methods": [ - 6458872784, - 6458872800, - 6458872816, - 6458873360, - 6458871696, - 6458871504, - 6458871424, - 6458872832, - 6458873408, - 6458872912, - 6458873168, - 6458871408 + 6458874976, + 6458874992, + 6458875008, + 6458875552, + 6458873888, + 6458873696, + 6458873616, + 6458875024, + 6458875600, + 6458875104, + 6458875360, + 6458873600 ], "bases": [ { @@ -70667,7 +70671,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468865848, + "complete_object_locator": 6468869944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70676,20 +70680,20 @@ }, { "type_name": "CCompressedStaticInt", - "vtable_address": 6467025880, - "methods": [ - 6458882224, - 6458882240, - 6458882256, - 6458882160, - 6458881888, - 6458881728, - 6458881664, - 6458882272, - 6458882352, - 6458881920, - 6458881968, - 6458881648 + "vtable_address": 6467029944, + "methods": [ + 6458884416, + 6458884432, + 6458884448, + 6458884352, + 6458884080, + 6458883920, + 6458883856, + 6458884464, + 6458884544, + 6458884112, + 6458884160, + 6458883840 ], "bases": [ { @@ -70737,7 +70741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468866800, + "complete_object_locator": 6468870896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70746,20 +70750,20 @@ }, { "type_name": "CCompressedStaticQuaternion", - "vtable_address": 6467025472, + "vtable_address": 6467029536, "methods": [ - 6458878416, - 6458878432, - 6458878448, - 6458880032, - 6458878384, - 6458878112, - 6458878032, - 6458878464, - 6458880080, - 6458878544, - 6458879408, - 6458878016 + 6458880608, + 6458880624, + 6458880640, + 6458882224, + 6458880576, + 6458880304, + 6458880224, + 6458880656, + 6458882272, + 6458880736, + 6458881600, + 6458880208 ], "bases": [ { @@ -70793,7 +70797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468866392, + "complete_object_locator": 6468870488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70802,20 +70806,20 @@ }, { "type_name": "CCompressedStaticShort", - "vtable_address": 6467026136, + "vtable_address": 6467030200, "methods": [ - 6458883552, - 6458883568, - 6458883584, - 6458883328, - 6458881888, - 6458881728, - 6458881664, - 6458883600, - 6458883680, - 6458883088, - 6458883136, - 6458881648 + 6458885744, + 6458885760, + 6458885776, + 6458885520, + 6458884080, + 6458883920, + 6458883856, + 6458885792, + 6458885872, + 6458885280, + 6458885328, + 6458883840 ], "bases": [ { @@ -70863,7 +70867,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468867280, + "complete_object_locator": 6468871376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70872,20 +70876,20 @@ }, { "type_name": "CCompressedStaticVector2D", - "vtable_address": 6467023952, + "vtable_address": 6467028016, "methods": [ - 6458867712, - 6458867728, - 6458867744, - 6458867664, - 6458867360, - 6458867200, - 6458867120, - 6458867760, - 6458867840, - 6458867392, - 6458867472, - 6458867104 + 6458869904, + 6458869920, + 6458869936, + 6458869856, + 6458869552, + 6458869392, + 6458869312, + 6458869952, + 6458870032, + 6458869584, + 6458869664, + 6458869296 ], "bases": [ { @@ -70933,7 +70937,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468869200, + "complete_object_locator": 6468873296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70942,20 +70946,20 @@ }, { "type_name": "CCompressedStaticVector3", - "vtable_address": 6467024736, - "methods": [ - 6458871728, - 6458871744, - 6458871760, - 6458872672, - 6458871696, - 6458871504, - 6458871424, - 6458871776, - 6458872720, - 6458871856, - 6458872416, - 6458871408 + "vtable_address": 6467028800, + "methods": [ + 6458873920, + 6458873936, + 6458873952, + 6458874864, + 6458873888, + 6458873696, + 6458873616, + 6458873968, + 6458874912, + 6458874048, + 6458874608, + 6458873600 ], "bases": [ { @@ -70989,7 +70993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468865712, + "complete_object_locator": 6468869808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70998,20 +71002,20 @@ }, { "type_name": "CCompressedStaticVector4D", - "vtable_address": 6467024216, + "vtable_address": 6467028280, "methods": [ - 6458869280, - 6458869296, - 6458869312, - 6458869216, - 6458868880, - 6458868576, - 6458868496, - 6458869328, - 6458869408, - 6458868912, - 6458869024, - 6458868480 + 6458871472, + 6458871488, + 6458871504, + 6458871408, + 6458871072, + 6458870768, + 6458870688, + 6458871520, + 6458871600, + 6458871104, + 6458871216, + 6458870672 ], "bases": [ { @@ -71059,7 +71063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468869680, + "complete_object_locator": 6468873776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71068,10 +71072,10 @@ }, { "type_name": "CComputeShaderRenderer", - "vtable_address": 6466883368, + "vtable_address": 6466887480, "methods": [ - 6456988016, - 6456700944, + 6456990208, + 6456702752, 6443773360 ], "bases": [ @@ -71092,7 +71096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468811744, + "complete_object_locator": 6468815840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71101,7 +71105,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6464676032, + "vtable_address": 6464680112, "methods": [ 6444615360 ], @@ -71165,7 +71169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468261440, + "complete_object_locator": 6468265536, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -71174,7 +71178,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6464676048, + "vtable_address": 6464680128, "methods": [ 6444615376 ], @@ -71238,7 +71242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468261592, + "complete_object_locator": 6468265688, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -71247,9 +71251,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6466027824, + "vtable_address": 6466032032, "methods": [ - 6450943824 + 6450945392 ], "bases": [ { @@ -71311,7 +71315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583440, + "complete_object_locator": 6468587536, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -71320,9 +71324,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6466027840, + "vtable_address": 6466032048, "methods": [ - 6450943840 + 6450945408 ], "bases": [ { @@ -71384,7 +71388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583592, + "complete_object_locator": 6468587688, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -71393,9 +71397,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6466758504, + "vtable_address": 6466762600, "methods": [ - 6456046272 + 6456048048 ], "bases": [ { @@ -71457,7 +71461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778264, + "complete_object_locator": 6468782360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -71466,9 +71470,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6466758520, + "vtable_address": 6466762616, "methods": [ - 6456046288 + 6456048064 ], "bases": [ { @@ -71530,7 +71534,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778416, + "complete_object_locator": 6468782512, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -71539,9 +71543,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6465826776, + "vtable_address": 6465830968, "methods": [ - 6449526448 + 6449528016 ], "bases": [ { @@ -71603,7 +71607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526240, + "complete_object_locator": 6468530336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -71612,9 +71616,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6465826792, + "vtable_address": 6465830984, "methods": [ - 6449526464 + 6449528032 ], "bases": [ { @@ -71676,7 +71680,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526392, + "complete_object_locator": 6468530488, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -71685,7 +71689,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6464709728, + "vtable_address": 6464713808, "methods": [ 6445114384 ], @@ -71749,7 +71753,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468277912, + "complete_object_locator": 6468282008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -71758,7 +71762,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6464709744, + "vtable_address": 6464713824, "methods": [ 6445114816 ], @@ -71822,7 +71826,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468278064, + "complete_object_locator": 6468282160, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -71831,9 +71835,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6465959056, + "vtable_address": 6465963248, "methods": [ - 6450744384 + 6450745952 ], "bases": [ { @@ -71895,7 +71899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566928, + "complete_object_locator": 6468571024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -71904,9 +71908,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6465959072, + "vtable_address": 6465963264, "methods": [ - 6450744400 + 6450745968 ], "bases": [ { @@ -71968,7 +71972,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567080, + "complete_object_locator": 6468571176, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -71977,61 +71981,61 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", - "vtable_address": 6467169416, + "vtable_address": 6467173480, "methods": [ - 6459236032, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666496, - 6459666224, - 6459667472, - 6459651056, - 6459418400, - 6459415328, - 6459418208, - 6459415360, - 6459415632, - 6459415376, - 6459415344, - 6459751744, - 6459675616, - 6459725952, - 6459434064, - 6459613456, - 6459632208, - 6459635232, - 6459645280, - 6459422224, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652848, - 6459877552, - 6459689648, - 6459847152, - 6459819200, - 6459481408, - 6459287888, - 6459508544, - 6459547440, - 6459619504, - 6459631840, - 6459715264, - 6459680768, - 6459667760, - 6459657344, - 6459808688, - 6459801632, - 6459496240, - 6459496272, - 6459795216, - 6459452496, - 6459888928 + 6459238224, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668688, + 6459668416, + 6459669664, + 6459653248, + 6459420592, + 6459417520, + 6459420400, + 6459417552, + 6459417824, + 6459417568, + 6459417536, + 6459753936, + 6459677808, + 6459728144, + 6459436256, + 6459615648, + 6459634400, + 6459637424, + 6459647472, + 6459424416, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655040, + 6459879744, + 6459691840, + 6459849344, + 6459821392, + 6459483600, + 6459290080, + 6459510736, + 6459549632, + 6459621696, + 6459634032, + 6459717456, + 6459682960, + 6459669952, + 6459659536, + 6459810880, + 6459803824, + 6459498432, + 6459498464, + 6459797408, + 6459454688, + 6459891120 ], "bases": [ { @@ -72121,7 +72125,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468920424, + "complete_object_locator": 6468924520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -72130,16 +72134,16 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", - "vtable_address": 6467169848, + "vtable_address": 6467173912, "methods": [ - 6459412464, - 6459394864, - 6459397168, - 6459411712, - 6459411168, - 6459387152, - 6459376800, - 6459380112 + 6459414656, + 6459397056, + 6459399360, + 6459413904, + 6459413360, + 6459389344, + 6459378992, + 6459382304 ], "bases": [ { @@ -72229,7 +72233,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468920840, + "complete_object_locator": 6468924936, "offset": 752, "constructor_displacement": 0, "class_attributes": 1 @@ -72238,61 +72242,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467108320, + "vtable_address": 6467112384, "methods": [ - 6459236096, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459238288, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -72382,7 +72386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900832, + "complete_object_locator": 6468904928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -72391,16 +72395,16 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467108752, + "vtable_address": 6467112816, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -72490,7 +72494,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900872, + "complete_object_locator": 6468904968, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -72499,13 +72503,13 @@ }, { "type_name": "CConcreteToolAttr >,int,class CUtlVectorMemory_Growable >,int,0> >,struct CompositeMaterialAssemblyProcedure_t,void>::CArrayElementAccess", - "vtable_address": 6467168936, + "vtable_address": 6467173000, "methods": [ - 6459261776, - 6459247584, - 6459246688, - 6459269728, - 6459255824 + 6459263968, + 6459249776, + 6459248880, + 6459271920, + 6459258016 ], "bases": [ { @@ -72525,7 +72529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468920880, + "complete_object_locator": 6468924976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72534,13 +72538,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompMatPropertyMutator_t,void>::CArrayElementAccess", - "vtable_address": 6467172944, + "vtable_address": 6467177008, "methods": [ - 6459261856, - 6459247600, - 6459246704, - 6459269872, - 6459255936 + 6459264048, + 6459249792, + 6459248896, + 6459272064, + 6459258128 ], "bases": [ { @@ -72560,7 +72564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468902760, + "complete_object_locator": 6468906856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72569,13 +72573,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompMatPropertyMutator_t,void>::CArrayElementAccess", - "vtable_address": 6467170928, + "vtable_address": 6467174992, "methods": [ - 6459261056, - 6459247440, - 6459246544, - 6459268432, - 6459254816 + 6459263248, + 6459249632, + 6459248736, + 6459270624, + 6459257008 ], "bases": [ { @@ -72595,7 +72599,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912912, + "complete_object_locator": 6468917008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72604,13 +72608,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompMatPropertyMutator_t,void>::CArrayElementAccess", - "vtable_address": 6467171936, + "vtable_address": 6467176000, "methods": [ - 6459261136, - 6459247456, - 6459246560, - 6459268576, - 6459254928 + 6459263328, + 6459249648, + 6459248752, + 6459270768, + 6459257120 ], "bases": [ { @@ -72630,7 +72634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908240, + "complete_object_locator": 6468912336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72639,13 +72643,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>::CArrayElementAccess", - "vtable_address": 6467165912, + "vtable_address": 6467169976, "methods": [ - 6459261216, - 6459247472, - 6459246576, - 6459268720, - 6459255040 + 6459263408, + 6459249664, + 6459248768, + 6459270912, + 6459257232 ], "bases": [ { @@ -72665,7 +72669,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468925080, + "complete_object_locator": 6468929176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72674,13 +72678,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>::CArrayElementAccess", - "vtable_address": 6467163896, + "vtable_address": 6467167960, "methods": [ - 6459261296, - 6459247488, - 6459246592, - 6459268864, - 6459255152 + 6459263488, + 6459249680, + 6459248784, + 6459271056, + 6459257344 ], "bases": [ { @@ -72700,7 +72704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468936088, + "complete_object_locator": 6468940184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72709,13 +72713,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>::CArrayElementAccess", - "vtable_address": 6467166920, + "vtable_address": 6467170984, "methods": [ - 6459261376, - 6459247504, - 6459246608, - 6459269008, - 6459255264 + 6459263568, + 6459249696, + 6459248800, + 6459271200, + 6459257456 ], "bases": [ { @@ -72735,7 +72739,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923760, + "complete_object_locator": 6468927856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72744,13 +72748,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>::CArrayElementAccess", - "vtable_address": 6467169920, + "vtable_address": 6467173984, "methods": [ - 6459261456, - 6459247520, - 6459246624, - 6459269152, - 6459255376 + 6459263648, + 6459249712, + 6459248816, + 6459271344, + 6459257568 ], "bases": [ { @@ -72770,7 +72774,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918712, + "complete_object_locator": 6468922808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72779,13 +72783,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>::CArrayElementAccess", - "vtable_address": 6467167928, + "vtable_address": 6467171992, "methods": [ - 6459261536, - 6459247536, - 6459246640, - 6459269296, - 6459255488 + 6459263728, + 6459249728, + 6459248832, + 6459271488, + 6459257680 ], "bases": [ { @@ -72805,7 +72809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468922320, + "complete_object_locator": 6468926416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72814,13 +72818,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>::CArrayElementAccess", - "vtable_address": 6467162848, + "vtable_address": 6467166912, "methods": [ - 6459261616, - 6459247552, - 6459246656, - 6459269440, - 6459255600 + 6459263808, + 6459249744, + 6459248848, + 6459271632, + 6459257792 ], "bases": [ { @@ -72840,7 +72844,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937528, + "complete_object_locator": 6468941624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72849,13 +72853,13 @@ }, { "type_name": "CConcreteToolAttr >,struct CompositeMaterial_t,void>::CArrayElementAccess", - "vtable_address": 6467164904, + "vtable_address": 6467168968, "methods": [ - 6459261696, - 6459247568, - 6459246672, - 6459269584, - 6459255712 + 6459263888, + 6459249760, + 6459248864, + 6459271776, + 6459257904 ], "bases": [ { @@ -72875,7 +72879,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468929328, + "complete_object_locator": 6468933424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72884,61 +72888,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467171408, - "methods": [ - 6459235456, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667136, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459416288, - 6459415360, - 6459415472, - 6459415376, - 6459415344, - 6459748224, - 6459674336, - 6459720832, - 6459431344, - 6459613136, - 6459632208, - 6459633312, - 6459643840, - 6459420304, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651728, - 6459874832, - 6459683520, - 6459840800, - 6459815536, - 6459477776, - 6459279888, - 6459500384, - 6459543280, - 6459627184, - 6459630080, - 6459714624, - 6459680768, - 6459667600, - 6459657344, - 6459807408, - 6459800352, - 6459496240, - 6459496272, - 6459794096, - 6459447536, - 6459888928 + "vtable_address": 6467175472, + "methods": [ + 6459237648, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669328, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459418480, + 6459417552, + 6459417664, + 6459417568, + 6459417536, + 6459750416, + 6459676528, + 6459723024, + 6459433536, + 6459615328, + 6459634400, + 6459635504, + 6459646032, + 6459422496, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653920, + 6459877024, + 6459685712, + 6459842992, + 6459817728, + 6459479968, + 6459282080, + 6459502576, + 6459545472, + 6459629376, + 6459632272, + 6459716816, + 6459682960, + 6459669792, + 6459659536, + 6459809600, + 6459802544, + 6459498432, + 6459498464, + 6459796288, + 6459449728, + 6459891120 ], "bases": [ { @@ -73000,7 +73004,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912680, + "complete_object_locator": 6468916776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -73009,19 +73013,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467171840, - "methods": [ - 6459359792, - 6459365584, - 6459368320, - 6459361616, - 6459365568, - 6459375264, - 6459375872, - 6459374928, - 6459358320, - 6463581392, - 6459372272 + "vtable_address": 6467175904, + "methods": [ + 6459361984, + 6459367776, + 6459370512, + 6459363808, + 6459367760, + 6459377456, + 6459378064, + 6459377120, + 6459360512, + 6463583584, + 6459374464 ], "bases": [ { @@ -73083,7 +73087,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912872, + "complete_object_locator": 6468916968, "offset": 568, "constructor_displacement": 0, "class_attributes": 1 @@ -73092,61 +73096,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467172416, - "methods": [ - 6459235520, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667152, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459416480, - 6459415360, - 6459415488, - 6459415376, - 6459415344, - 6459748576, - 6459674464, - 6459721344, - 6459431616, - 6459613168, - 6459632208, - 6459633504, - 6459643984, - 6459420496, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651840, - 6459875104, - 6459684160, - 6459841424, - 6459815888, - 6459478128, - 6459280688, - 6459501200, - 6459543696, - 6459627472, - 6459630256, - 6459714688, - 6459680768, - 6459667616, - 6459657344, - 6459807536, - 6459800480, - 6459496240, - 6459496272, - 6459794208, - 6459448032, - 6459888928 + "vtable_address": 6467176480, + "methods": [ + 6459237712, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669344, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459418672, + 6459417552, + 6459417680, + 6459417568, + 6459417536, + 6459750768, + 6459676656, + 6459723536, + 6459433808, + 6459615360, + 6459634400, + 6459635696, + 6459646176, + 6459422688, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654032, + 6459877296, + 6459686352, + 6459843616, + 6459818080, + 6459480320, + 6459282880, + 6459503392, + 6459545888, + 6459629664, + 6459632448, + 6459716880, + 6459682960, + 6459669808, + 6459659536, + 6459809728, + 6459802672, + 6459498432, + 6459498464, + 6459796400, + 6459450224, + 6459891120 ], "bases": [ { @@ -73208,7 +73212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908008, + "complete_object_locator": 6468912104, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -73217,19 +73221,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467172848, - "methods": [ - 6459359888, - 6459365728, - 6459368528, - 6459361824, - 6459365568, - 6459375296, - 6459375904, - 6459374960, - 6459358464, - 6463581392, - 6459372400 + "vtable_address": 6467176912, + "methods": [ + 6459362080, + 6459367920, + 6459370720, + 6459364016, + 6459367760, + 6459377488, + 6459378096, + 6459377152, + 6459360656, + 6463583584, + 6459374592 ], "bases": [ { @@ -73291,7 +73295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908200, + "complete_object_locator": 6468912296, "offset": 1440, "constructor_displacement": 0, "class_attributes": 1 @@ -73300,61 +73304,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467166392, - "methods": [ - 6459235584, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667168, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459416672, - 6459415360, - 6459415504, - 6459415376, - 6459415344, - 6459748928, - 6459674592, - 6459721856, - 6459431888, - 6459613200, - 6459632208, - 6459633696, - 6459644128, - 6459420688, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651952, - 6459875376, - 6459684736, - 6459842048, - 6459816240, - 6459478480, - 6459281488, - 6459502016, - 6459544112, - 6459627760, - 6459630432, - 6459714752, - 6459680768, - 6459667632, - 6459657344, - 6459807664, - 6459800608, - 6459496240, - 6459496272, - 6459794320, - 6459448528, - 6459888928 + "vtable_address": 6467170456, + "methods": [ + 6459237776, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669360, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459418864, + 6459417552, + 6459417696, + 6459417568, + 6459417536, + 6459751120, + 6459676784, + 6459724048, + 6459434080, + 6459615392, + 6459634400, + 6459635888, + 6459646320, + 6459422880, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654144, + 6459877568, + 6459686928, + 6459844240, + 6459818432, + 6459480672, + 6459283680, + 6459504208, + 6459546304, + 6459629952, + 6459632624, + 6459716944, + 6459682960, + 6459669824, + 6459659536, + 6459809856, + 6459802800, + 6459498432, + 6459498464, + 6459796512, + 6459450720, + 6459891120 ], "bases": [ { @@ -73416,7 +73420,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468924888, + "complete_object_locator": 6468928984, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -73425,19 +73429,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467166824, + "vtable_address": 6467170888, "methods": [ - 6459359984, - 6459365872, - 6459368736, - 6459362032, - 6459365568, - 6459375328, - 6459375936, - 6459374992, - 6459358608, - 6463581392, - 6459372528 + 6459362176, + 6459368064, + 6459370928, + 6459364224, + 6459367760, + 6459377520, + 6459378128, + 6459377184, + 6459360800, + 6463583584, + 6459374720 ], "bases": [ { @@ -73499,7 +73503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468925040, + "complete_object_locator": 6468929136, "offset": 1440, "constructor_displacement": 0, "class_attributes": 1 @@ -73508,61 +73512,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467164376, - "methods": [ - 6459235648, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667184, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459416864, - 6459415360, - 6459415520, - 6459415376, - 6459415344, - 6459749280, - 6459674720, - 6459722368, - 6459432160, - 6459613232, - 6459632208, - 6459633888, - 6459644272, - 6459420880, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652064, - 6459875648, - 6459685312, - 6459842672, - 6459816592, - 6459478832, - 6459282288, - 6459502832, - 6459544528, - 6459628048, - 6459630608, - 6459714816, - 6459680768, - 6459667648, - 6459657344, - 6459807792, - 6459800736, - 6459496240, - 6459496272, - 6459794432, - 6459449024, - 6459888928 + "vtable_address": 6467168440, + "methods": [ + 6459237840, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669376, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459419056, + 6459417552, + 6459417712, + 6459417568, + 6459417536, + 6459751472, + 6459676912, + 6459724560, + 6459434352, + 6459615424, + 6459634400, + 6459636080, + 6459646464, + 6459423072, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654256, + 6459877840, + 6459687504, + 6459844864, + 6459818784, + 6459481024, + 6459284480, + 6459505024, + 6459546720, + 6459630240, + 6459632800, + 6459717008, + 6459682960, + 6459669840, + 6459659536, + 6459809984, + 6459802928, + 6459498432, + 6459498464, + 6459796624, + 6459451216, + 6459891120 ], "bases": [ { @@ -73624,7 +73628,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468935896, + "complete_object_locator": 6468939992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -73633,19 +73637,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467164808, - "methods": [ - 6459360080, - 6459366016, - 6459368944, - 6459362240, - 6459365568, - 6459375360, - 6459375968, - 6459375024, - 6459358752, - 6463581392, - 6459372656 + "vtable_address": 6467168872, + "methods": [ + 6459362272, + 6459368208, + 6459371136, + 6459364432, + 6459367760, + 6459377552, + 6459378160, + 6459377216, + 6459360944, + 6463583584, + 6459374848 ], "bases": [ { @@ -73707,7 +73711,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468936048, + "complete_object_locator": 6468940144, "offset": 624, "constructor_displacement": 0, "class_attributes": 1 @@ -73716,61 +73720,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467167400, - "methods": [ - 6459235712, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667200, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459417056, - 6459415360, - 6459415536, - 6459415376, - 6459415344, - 6459749632, - 6459674848, - 6459722880, - 6459432432, - 6459613264, - 6459632208, - 6459634080, - 6459644416, - 6459421072, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652176, - 6459875920, - 6459685888, - 6459843296, - 6459816944, - 6459479184, - 6459283088, - 6459503648, - 6459544944, - 6459628336, - 6459630784, - 6459714880, - 6459680768, - 6459667664, - 6459657344, - 6459807920, - 6459800864, - 6459496240, - 6459496272, - 6459794544, - 6459449520, - 6459888928 + "vtable_address": 6467171464, + "methods": [ + 6459237904, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669392, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459419248, + 6459417552, + 6459417728, + 6459417568, + 6459417536, + 6459751824, + 6459677040, + 6459725072, + 6459434624, + 6459615456, + 6459634400, + 6459636272, + 6459646608, + 6459423264, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654368, + 6459878112, + 6459688080, + 6459845488, + 6459819136, + 6459481376, + 6459285280, + 6459505840, + 6459547136, + 6459630528, + 6459632976, + 6459717072, + 6459682960, + 6459669856, + 6459659536, + 6459810112, + 6459803056, + 6459498432, + 6459498464, + 6459796736, + 6459451712, + 6459891120 ], "bases": [ { @@ -73832,7 +73836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923528, + "complete_object_locator": 6468927624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -73841,19 +73845,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467167832, + "vtable_address": 6467171896, "methods": [ - 6459360176, - 6459366160, - 6459369152, - 6459362448, - 6459365568, - 6459375392, - 6459376000, - 6459375056, - 6459358896, - 6463581392, - 6459372784 + 6459362368, + 6459368352, + 6459371344, + 6459364640, + 6459367760, + 6459377584, + 6459378192, + 6459377248, + 6459361088, + 6463583584, + 6459374976 ], "bases": [ { @@ -73915,7 +73919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923720, + "complete_object_locator": 6468927816, "offset": 840, "constructor_displacement": 0, "class_attributes": 1 @@ -73924,61 +73928,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467170400, - "methods": [ - 6459235776, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667232, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459417440, - 6459415360, - 6459415568, - 6459415376, - 6459415344, - 6459750336, - 6459675104, - 6459723904, - 6459432976, - 6459613328, - 6459632208, - 6459634464, - 6459644704, - 6459421456, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652400, - 6459876464, - 6459687120, - 6459844544, - 6459817648, - 6459479888, - 6459284688, - 6459505280, - 6459545776, - 6459628912, - 6459631136, - 6459715008, - 6459680768, - 6459667696, - 6459657344, - 6459808176, - 6459801120, - 6459496240, - 6459496272, - 6459794768, - 6459450512, - 6459888928 + "vtable_address": 6467174464, + "methods": [ + 6459237968, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669424, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459419632, + 6459417552, + 6459417760, + 6459417568, + 6459417536, + 6459752528, + 6459677296, + 6459726096, + 6459435168, + 6459615520, + 6459634400, + 6459636656, + 6459646896, + 6459423648, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654592, + 6459878656, + 6459689312, + 6459846736, + 6459819840, + 6459482080, + 6459286880, + 6459507472, + 6459547968, + 6459631104, + 6459633328, + 6459717200, + 6459682960, + 6459669888, + 6459659536, + 6459810368, + 6459803312, + 6459498432, + 6459498464, + 6459796960, + 6459452704, + 6459891120 ], "bases": [ { @@ -74040,7 +74044,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918520, + "complete_object_locator": 6468922616, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -74049,19 +74053,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467170832, + "vtable_address": 6467174896, "methods": [ - 6459360368, - 6459366448, - 6459369568, - 6459362864, - 6459365568, - 6459375456, - 6459376064, - 6459375120, - 6459359184, - 6463581392, - 6459373040 + 6459362560, + 6459368640, + 6459371760, + 6459365056, + 6459367760, + 6459377648, + 6459378256, + 6459377312, + 6459361376, + 6463583584, + 6459375232 ], "bases": [ { @@ -74123,7 +74127,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918672, + "complete_object_locator": 6468922768, "offset": 1176, "constructor_displacement": 0, "class_attributes": 1 @@ -74132,61 +74136,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467168408, - "methods": [ - 6459235840, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667248, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459417632, - 6459415360, - 6459415584, - 6459415376, - 6459415344, - 6459750688, - 6459675232, - 6459724416, - 6459433248, - 6459613360, - 6459632208, - 6459634656, - 6459644848, - 6459421648, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652512, - 6459876736, - 6459687696, - 6459845168, - 6459818000, - 6459480240, - 6459285488, - 6459506096, - 6459546192, - 6459629200, - 6459631312, - 6459715072, - 6459680768, - 6459667712, - 6459657344, - 6459808304, - 6459801248, - 6459496240, - 6459496272, - 6459794880, - 6459451008, - 6459888928 + "vtable_address": 6467172472, + "methods": [ + 6459238032, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669440, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459419824, + 6459417552, + 6459417776, + 6459417568, + 6459417536, + 6459752880, + 6459677424, + 6459726608, + 6459435440, + 6459615552, + 6459634400, + 6459636848, + 6459647040, + 6459423840, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654704, + 6459878928, + 6459689888, + 6459847360, + 6459820192, + 6459482432, + 6459287680, + 6459508288, + 6459548384, + 6459631392, + 6459633504, + 6459717264, + 6459682960, + 6459669904, + 6459659536, + 6459810496, + 6459803440, + 6459498432, + 6459498464, + 6459797072, + 6459453200, + 6459891120 ], "bases": [ { @@ -74248,7 +74252,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468922088, + "complete_object_locator": 6468926184, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -74257,19 +74261,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467168840, + "vtable_address": 6467172904, "methods": [ - 6459360464, - 6459366592, - 6459369776, - 6459363072, - 6459365568, - 6459375488, - 6459376096, - 6459375152, - 6459359328, - 6463581392, - 6459373168 + 6459362656, + 6459368784, + 6459371968, + 6459365264, + 6459367760, + 6459377680, + 6459378288, + 6459377344, + 6459361520, + 6463583584, + 6459375360 ], "bases": [ { @@ -74331,7 +74335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468922280, + "complete_object_locator": 6468926376, "offset": 560, "constructor_displacement": 0, "class_attributes": 1 @@ -74340,61 +74344,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467163328, - "methods": [ - 6459235904, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667264, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459417824, - 6459415360, - 6459415600, - 6459415376, - 6459415344, - 6459751040, - 6459675360, - 6459724928, - 6459433520, - 6459613392, - 6459632208, - 6459634848, - 6459644992, - 6459421840, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652624, - 6459877008, - 6459688336, - 6459845904, - 6459818496, - 6459480704, - 6459286288, - 6459506912, - 6459546608, - 6459629488, - 6459631488, - 6459715136, - 6459680768, - 6459667728, - 6459657344, - 6459808432, - 6459801376, - 6459496240, - 6459496272, - 6459794992, - 6459451504, - 6459888928 + "vtable_address": 6467167392, + "methods": [ + 6459238096, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669456, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420016, + 6459417552, + 6459417792, + 6459417568, + 6459417536, + 6459753232, + 6459677552, + 6459727120, + 6459435712, + 6459615584, + 6459634400, + 6459637040, + 6459647184, + 6459424032, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654816, + 6459879200, + 6459690528, + 6459848096, + 6459820688, + 6459482896, + 6459288480, + 6459509104, + 6459548800, + 6459631680, + 6459633680, + 6459717328, + 6459682960, + 6459669920, + 6459659536, + 6459810624, + 6459803568, + 6459498432, + 6459498464, + 6459797184, + 6459453696, + 6459891120 ], "bases": [ { @@ -74456,7 +74460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937296, + "complete_object_locator": 6468941392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -74465,19 +74469,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467163760, + "vtable_address": 6467167824, "methods": [ - 6459360560, - 6459366736, - 6459369984, - 6459363280, - 6459365568, - 6459375520, - 6459376128, - 6459375184, - 6459359472, - 6463581392, - 6459373296 + 6459362752, + 6459368928, + 6459372176, + 6459365472, + 6459367760, + 6459377712, + 6459378320, + 6459377376, + 6459361664, + 6463583584, + 6459375488 ], "bases": [ { @@ -74539,7 +74543,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937488, + "complete_object_locator": 6468941584, "offset": 688, "constructor_displacement": 0, "class_attributes": 1 @@ -74548,61 +74552,61 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467165384, - "methods": [ - 6459235968, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667280, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459418016, - 6459415360, - 6459415616, - 6459415376, - 6459415344, - 6459751392, - 6459675488, - 6459725440, - 6459433792, - 6459613424, - 6459632208, - 6459635040, - 6459645136, - 6459422032, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652736, - 6459877280, - 6459689024, - 6459846528, - 6459818848, - 6459481056, - 6459287088, - 6459507728, - 6459547024, - 6459629776, - 6459631664, - 6459715200, - 6459680768, - 6459667744, - 6459657344, - 6459808560, - 6459801504, - 6459496240, - 6459496272, - 6459795104, - 6459452000, - 6459888928 + "vtable_address": 6467169448, + "methods": [ + 6459238160, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669472, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459420208, + 6459417552, + 6459417808, + 6459417568, + 6459417536, + 6459753584, + 6459677680, + 6459727632, + 6459435984, + 6459615616, + 6459634400, + 6459637232, + 6459647328, + 6459424224, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654928, + 6459879472, + 6459691216, + 6459848720, + 6459821040, + 6459483248, + 6459289280, + 6459509920, + 6459549216, + 6459631968, + 6459633856, + 6459717392, + 6459682960, + 6459669936, + 6459659536, + 6459810752, + 6459803696, + 6459498432, + 6459498464, + 6459797296, + 6459454192, + 6459891120 ], "bases": [ { @@ -74664,7 +74668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468929096, + "complete_object_locator": 6468933192, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -74673,19 +74677,19 @@ }, { "type_name": "CConcreteToolAttr", - "vtable_address": 6467165816, + "vtable_address": 6467169880, "methods": [ - 6459360656, - 6459366880, - 6459370192, - 6459363488, - 6459365568, - 6459375552, - 6459376160, - 6459375216, - 6459359616, - 6463581392, - 6459373424 + 6459362848, + 6459369072, + 6459372384, + 6459365680, + 6459367760, + 6459377744, + 6459378352, + 6459377408, + 6459361808, + 6463583584, + 6459375616 ], "bases": [ { @@ -74747,7 +74751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468929288, + "complete_object_locator": 6468933384, "offset": 624, "constructor_displacement": 0, "class_attributes": 1 @@ -74756,61 +74760,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467103768, - "methods": [ - 6459238656, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667040, - 6459666224, - 6459667472, - 6459651056, - 6459419136, - 6459415328, - 6459418208, - 6459415360, - 6459416176, - 6459415376, - 6459415344, - 6459763712, - 6459679968, - 6459743360, - 6459443312, - 6459613456, - 6459632208, - 6459641760, - 6459650176, - 6459428752, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656656, - 6459886800, - 6459711024, - 6459868704, - 6459831344, - 6459493584, - 6459315088, - 6459536288, - 6459561584, - 6459626032, - 6459631840, - 6459717856, - 6459680768, - 6459669072, - 6459657344, - 6459813040, - 6459805984, - 6459496240, - 6459496272, - 6459799024, - 6459469360, - 6459888928 + "vtable_address": 6467107832, + "methods": [ + 6459240848, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669232, + 6459668416, + 6459669664, + 6459653248, + 6459421328, + 6459417520, + 6459420400, + 6459417552, + 6459418368, + 6459417568, + 6459417536, + 6459765904, + 6459682160, + 6459745552, + 6459445504, + 6459615648, + 6459634400, + 6459643952, + 6459652368, + 6459430944, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658848, + 6459888992, + 6459713216, + 6459870896, + 6459833536, + 6459495776, + 6459317280, + 6459538480, + 6459563776, + 6459628224, + 6459634032, + 6459720048, + 6459682960, + 6459671264, + 6459659536, + 6459815232, + 6459808176, + 6459498432, + 6459498464, + 6459801216, + 6459471552, + 6459891120 ], "bases": [ { @@ -74914,7 +74918,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896832, + "complete_object_locator": 6468900928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -74923,16 +74927,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467104200, + "vtable_address": 6467108264, "methods": [ - 6459414832, - 6459396592, - 6459399376, - 6459412080, - 6459411536, - 6459393152, - 6459378528, - 6459384400 + 6459417024, + 6459398784, + 6459401568, + 6459414272, + 6459413728, + 6459395344, + 6459380720, + 6459386592 ], "bases": [ { @@ -75036,7 +75040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468897352, + "complete_object_locator": 6468901448, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -75045,61 +75049,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467105392, - "methods": [ - 6459238720, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667056, - 6459666224, - 6459667472, - 6459651056, - 6459419168, - 6459415328, - 6459418208, - 6459415360, - 6459416192, - 6459415376, - 6459415344, - 6459764064, - 6459680096, - 6459743872, - 6459443584, - 6459613456, - 6459632208, - 6459641952, - 6459650320, - 6459428944, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656768, - 6459887072, - 6459711568, - 6459869328, - 6459831680, - 6459493936, - 6459315888, - 6459537104, - 6459562000, - 6459626224, - 6459631840, - 6459717920, - 6459680768, - 6459669088, - 6459657344, - 6459813168, - 6459806112, - 6459496240, - 6459496272, - 6459799136, - 6459469856, - 6459888928 + "vtable_address": 6467109456, + "methods": [ + 6459240912, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669248, + 6459668416, + 6459669664, + 6459653248, + 6459421360, + 6459417520, + 6459420400, + 6459417552, + 6459418384, + 6459417568, + 6459417536, + 6459766256, + 6459682288, + 6459746064, + 6459445776, + 6459615648, + 6459634400, + 6459644144, + 6459652512, + 6459431136, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658960, + 6459889264, + 6459713760, + 6459871520, + 6459833872, + 6459496128, + 6459318080, + 6459539296, + 6459564192, + 6459628416, + 6459634032, + 6459720112, + 6459682960, + 6459671280, + 6459659536, + 6459815360, + 6459808304, + 6459498432, + 6459498464, + 6459801328, + 6459472048, + 6459891120 ], "bases": [ { @@ -75203,7 +75207,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468897912, + "complete_object_locator": 6468902008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -75212,16 +75216,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467105824, + "vtable_address": 6467109888, "methods": [ - 6459414832, - 6459396592, - 6459399472, - 6459412096, - 6459411552, - 6459393408, - 6459378592, - 6459384640 + 6459417024, + 6459398784, + 6459401664, + 6459414288, + 6459413744, + 6459395600, + 6459380784, + 6459386832 ], "bases": [ { @@ -75325,7 +75329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468898440, + "complete_object_locator": 6468902536, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -75334,61 +75338,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467158080, - "methods": [ - 6459238784, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667072, - 6459666224, - 6459667472, - 6459651056, - 6459419200, - 6459415328, - 6459418208, - 6459415360, - 6459416208, - 6459415376, - 6459415344, - 6459764416, - 6459680224, - 6459744384, - 6459443856, - 6459613456, - 6459632208, - 6459642144, - 6459650464, - 6459429136, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656880, - 6459887344, - 6459712112, - 6459869952, - 6459832016, - 6459494288, - 6459316688, - 6459537920, - 6459562416, - 6459626416, - 6459631840, - 6459717984, - 6459680768, - 6459669104, - 6459657344, - 6459813296, - 6459806240, - 6459496240, - 6459496272, - 6459799248, - 6459470352, - 6459888928 + "vtable_address": 6467162144, + "methods": [ + 6459240976, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669264, + 6459668416, + 6459669664, + 6459653248, + 6459421392, + 6459417520, + 6459420400, + 6459417552, + 6459418400, + 6459417568, + 6459417536, + 6459766608, + 6459682416, + 6459746576, + 6459446048, + 6459615648, + 6459634400, + 6459644336, + 6459652656, + 6459431328, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659072, + 6459889536, + 6459714304, + 6459872144, + 6459834208, + 6459496480, + 6459318880, + 6459540112, + 6459564608, + 6459628608, + 6459634032, + 6459720176, + 6459682960, + 6459671296, + 6459659536, + 6459815488, + 6459808432, + 6459498432, + 6459498464, + 6459801440, + 6459472544, + 6459891120 ], "bases": [ { @@ -75492,7 +75496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468933832, + "complete_object_locator": 6468937928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -75501,16 +75505,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467158512, + "vtable_address": 6467162576, "methods": [ - 6459414832, - 6459396592, - 6459399568, - 6459412112, - 6459411568, - 6459393664, - 6459378656, - 6459384880 + 6459417024, + 6459398784, + 6459401760, + 6459414304, + 6459413760, + 6459395856, + 6459380848, + 6459387072 ], "bases": [ { @@ -75614,7 +75618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468934360, + "complete_object_locator": 6468938456, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -75623,61 +75627,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467130760, - "methods": [ - 6459238848, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667088, - 6459666224, - 6459667472, - 6459651056, - 6459419232, - 6459415328, - 6459418208, - 6459415360, - 6459416224, - 6459415376, - 6459415344, - 6459764768, - 6459680352, - 6459744896, - 6459444128, - 6459613456, - 6459632208, - 6459642336, - 6459650608, - 6459429328, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656992, - 6459887616, - 6459712656, - 6459870576, - 6459832352, - 6459494640, - 6459317488, - 6459538736, - 6459562832, - 6459626608, - 6459631840, - 6459718048, - 6459680768, - 6459669120, - 6459657344, - 6459813424, - 6459806368, - 6459496240, - 6459496272, - 6459799360, - 6459470848, - 6459888928 + "vtable_address": 6467134824, + "methods": [ + 6459241040, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669280, + 6459668416, + 6459669664, + 6459653248, + 6459421424, + 6459417520, + 6459420400, + 6459417552, + 6459418416, + 6459417568, + 6459417536, + 6459766960, + 6459682544, + 6459747088, + 6459446320, + 6459615648, + 6459634400, + 6459644528, + 6459652800, + 6459431520, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659184, + 6459889808, + 6459714848, + 6459872768, + 6459834544, + 6459496832, + 6459319680, + 6459540928, + 6459565024, + 6459628800, + 6459634032, + 6459720240, + 6459682960, + 6459671312, + 6459659536, + 6459815616, + 6459808560, + 6459498432, + 6459498464, + 6459801552, + 6459473040, + 6459891120 ], "bases": [ { @@ -75781,7 +75785,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468913376, + "complete_object_locator": 6468917472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -75790,16 +75794,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467131192, + "vtable_address": 6467135256, "methods": [ - 6459414832, - 6459396592, - 6459399664, - 6459412128, - 6459411584, - 6459393920, - 6459378720, - 6459385120 + 6459417024, + 6459398784, + 6459401856, + 6459414320, + 6459413776, + 6459396112, + 6459380912, + 6459387312 ], "bases": [ { @@ -75903,7 +75907,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468913896, + "complete_object_locator": 6468917992, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -75912,61 +75916,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467072568, - "methods": [ - 6459238912, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667104, - 6459666224, - 6459667472, - 6459651056, - 6459419264, - 6459415328, - 6459418208, - 6459415360, - 6459416240, - 6459415376, - 6459415344, - 6459765120, - 6459680480, - 6459745408, - 6459444400, - 6459613456, - 6459632208, - 6459642528, - 6459650752, - 6459429520, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657104, - 6459887888, - 6459713200, - 6459871200, - 6459832688, - 6459494992, - 6459318288, - 6459539552, - 6459563248, - 6459626800, - 6459631840, - 6459718112, - 6459680768, - 6459669136, - 6459657344, - 6459813552, - 6459806496, - 6459496240, - 6459496272, - 6459799472, - 6459471344, - 6459888928 + "vtable_address": 6467076632, + "methods": [ + 6459241104, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669296, + 6459668416, + 6459669664, + 6459653248, + 6459421456, + 6459417520, + 6459420400, + 6459417552, + 6459418432, + 6459417568, + 6459417536, + 6459767312, + 6459682672, + 6459747600, + 6459446592, + 6459615648, + 6459634400, + 6459644720, + 6459652944, + 6459431712, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659296, + 6459890080, + 6459715392, + 6459873392, + 6459834880, + 6459497184, + 6459320480, + 6459541744, + 6459565440, + 6459628992, + 6459634032, + 6459720304, + 6459682960, + 6459671328, + 6459659536, + 6459815744, + 6459808688, + 6459498432, + 6459498464, + 6459801664, + 6459473536, + 6459891120 ], "bases": [ { @@ -76070,7 +76074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468877720, + "complete_object_locator": 6468881816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -76079,16 +76083,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467073000, + "vtable_address": 6467077064, "methods": [ - 6459414832, - 6459396592, - 6459399760, - 6459412144, - 6459411600, - 6459394176, - 6459378784, - 6459385360 + 6459417024, + 6459398784, + 6459401952, + 6459414336, + 6459413792, + 6459396368, + 6459380976, + 6459387552 ], "bases": [ { @@ -76192,7 +76196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878248, + "complete_object_locator": 6468882344, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -76201,61 +76205,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467069440, + "vtable_address": 6467073504, "methods": [ - 6459238976, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667120, - 6459666224, - 6459667472, - 6459651056, - 6459419296, - 6459415328, - 6459418208, - 6459415360, - 6459416256, - 6459415376, - 6459415344, - 6459765472, - 6459680608, - 6459745920, - 6459444672, - 6459613456, - 6459632208, - 6459642720, - 6459650896, - 6459429712, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657216, - 6459888160, - 6459713744, - 6459871824, - 6459833024, - 6459495344, - 6459319088, - 6459540368, - 6459563664, - 6459626992, - 6459631840, - 6459718176, - 6459680768, - 6459669152, - 6459657344, - 6459813680, - 6459806624, - 6459496240, - 6459496272, - 6459799584, - 6459471840, - 6459888928 + 6459241168, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669312, + 6459668416, + 6459669664, + 6459653248, + 6459421488, + 6459417520, + 6459420400, + 6459417552, + 6459418448, + 6459417568, + 6459417536, + 6459767664, + 6459682800, + 6459748112, + 6459446864, + 6459615648, + 6459634400, + 6459644912, + 6459653088, + 6459431904, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659408, + 6459890352, + 6459715936, + 6459874016, + 6459835216, + 6459497536, + 6459321280, + 6459542560, + 6459565856, + 6459629184, + 6459634032, + 6459720368, + 6459682960, + 6459671344, + 6459659536, + 6459815872, + 6459808816, + 6459498432, + 6459498464, + 6459801776, + 6459474032, + 6459891120 ], "bases": [ { @@ -76359,7 +76363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468875472, + "complete_object_locator": 6468879568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -76368,16 +76372,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467069872, + "vtable_address": 6467073936, "methods": [ - 6459414832, - 6459396592, - 6459399856, - 6459412160, - 6459411616, - 6459394432, - 6459378848, - 6459385600 + 6459417024, + 6459398784, + 6459402048, + 6459414352, + 6459413808, + 6459396624, + 6459381040, + 6459387792 ], "bases": [ { @@ -76481,7 +76485,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468876120, + "complete_object_locator": 6468880216, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -76490,61 +76494,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467152128, + "vtable_address": 6467156192, "methods": [ - 6459236544, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666512, - 6459666224, - 6459667472, - 6459651056, - 6459418432, - 6459415328, - 6459418208, - 6459415360, - 6459415648, - 6459415376, - 6459415344, - 6459752096, - 6459675744, - 6459726464, - 6459434336, - 6459613456, - 6459632208, - 6459635424, - 6459645424, - 6459422416, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652960, - 6459877824, - 6459690352, - 6459847776, - 6459819552, - 6459481760, - 6459288688, - 6459509360, - 6459547856, - 6459619696, - 6459631840, - 6459715328, - 6459680768, - 6459668032, - 6459657344, - 6459808816, - 6459801760, - 6459496240, - 6459496272, - 6459795328, - 6459452992, - 6459888928 + 6459238736, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668704, + 6459668416, + 6459669664, + 6459653248, + 6459420624, + 6459417520, + 6459420400, + 6459417552, + 6459417840, + 6459417568, + 6459417536, + 6459754288, + 6459677936, + 6459728656, + 6459436528, + 6459615648, + 6459634400, + 6459637616, + 6459647616, + 6459424608, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655152, + 6459880016, + 6459692544, + 6459849968, + 6459821744, + 6459483952, + 6459290880, + 6459511552, + 6459550048, + 6459621888, + 6459634032, + 6459717520, + 6459682960, + 6459670224, + 6459659536, + 6459811008, + 6459803952, + 6459498432, + 6459498464, + 6459797520, + 6459455184, + 6459891120 ], "bases": [ { @@ -76648,7 +76652,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468929792, + "complete_object_locator": 6468933888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -76657,16 +76661,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467152560, + "vtable_address": 6467156624, "methods": [ - 6459412640, - 6459395024, - 6459397264, - 6459411728, - 6459411184, - 6459387408, - 6459376880, - 6459380352 + 6459414832, + 6459397216, + 6459399456, + 6459413920, + 6459413376, + 6459389600, + 6459379072, + 6459382544 ], "bases": [ { @@ -76770,7 +76774,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468930440, + "complete_object_locator": 6468934536, "offset": 752, "constructor_displacement": 0, "class_attributes": 1 @@ -76779,61 +76783,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467094576, + "vtable_address": 6467098640, "methods": [ - 6459236608, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666528, - 6459666224, - 6459667472, - 6459651056, - 6459418464, - 6459415328, - 6459418208, - 6459415360, - 6459415664, - 6459415376, - 6459415344, - 6459752448, - 6459675872, - 6459726976, - 6459434608, - 6459613456, - 6459632208, - 6459635616, - 6459645568, - 6459422608, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653072, - 6459878096, - 6459691056, - 6459848400, - 6459819904, - 6459482112, - 6459289488, - 6459510176, - 6459548272, - 6459619888, - 6459631840, - 6459715392, - 6459680768, - 6459668304, - 6459657344, - 6459808944, - 6459801888, - 6459496240, - 6459496272, - 6459795440, - 6459453488, - 6459888928 + 6459238800, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668720, + 6459668416, + 6459669664, + 6459653248, + 6459420656, + 6459417520, + 6459420400, + 6459417552, + 6459417856, + 6459417568, + 6459417536, + 6459754640, + 6459678064, + 6459729168, + 6459436800, + 6459615648, + 6459634400, + 6459637808, + 6459647760, + 6459424800, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655264, + 6459880288, + 6459693248, + 6459850592, + 6459822096, + 6459484304, + 6459291680, + 6459512368, + 6459550464, + 6459622080, + 6459634032, + 6459717584, + 6459682960, + 6459670496, + 6459659536, + 6459811136, + 6459804080, + 6459498432, + 6459498464, + 6459797632, + 6459455680, + 6459891120 ], "bases": [ { @@ -76937,7 +76941,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890896, + "complete_object_locator": 6468894992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -76946,16 +76950,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467095008, + "vtable_address": 6467099072, "methods": [ - 6459412816, - 6459395184, - 6459397360, - 6459411744, - 6459411200, - 6459387664, - 6459376960, - 6459380592 + 6459415008, + 6459397376, + 6459399552, + 6459413936, + 6459413392, + 6459389856, + 6459379152, + 6459382784 ], "bases": [ { @@ -77059,7 +77063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468891544, + "complete_object_locator": 6468895640, "offset": 752, "constructor_displacement": 0, "class_attributes": 1 @@ -77068,61 +77072,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467133736, + "vtable_address": 6467137800, "methods": [ - 6459236672, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666544, - 6459666224, - 6459667472, - 6459651056, - 6459418496, - 6459415328, - 6459418208, - 6459415360, - 6459415680, - 6459415376, - 6459415344, - 6459752800, - 6459676000, - 6459727488, - 6459434880, - 6459613456, - 6459632208, - 6459635808, - 6459645712, - 6459422800, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653184, - 6459878368, - 6459691760, - 6459849024, - 6459820256, - 6459482464, - 6459290288, - 6459510992, - 6459548688, - 6459620080, - 6459631840, - 6459715456, - 6459680768, - 6459668576, - 6459657344, - 6459809072, - 6459802016, - 6459496240, - 6459496272, - 6459795552, - 6459453984, - 6459888928 + 6459238864, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668736, + 6459668416, + 6459669664, + 6459653248, + 6459420688, + 6459417520, + 6459420400, + 6459417552, + 6459417872, + 6459417568, + 6459417536, + 6459754992, + 6459678192, + 6459729680, + 6459437072, + 6459615648, + 6459634400, + 6459638000, + 6459647904, + 6459424992, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655376, + 6459880560, + 6459693952, + 6459851216, + 6459822448, + 6459484656, + 6459292480, + 6459513184, + 6459550880, + 6459622272, + 6459634032, + 6459717648, + 6459682960, + 6459670768, + 6459659536, + 6459811264, + 6459804208, + 6459498432, + 6459498464, + 6459797744, + 6459456176, + 6459891120 ], "bases": [ { @@ -77226,7 +77230,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468915496, + "complete_object_locator": 6468919592, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -77235,16 +77239,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467134168, + "vtable_address": 6467138232, "methods": [ - 6459412992, - 6459395344, - 6459397456, - 6459411760, - 6459411216, - 6459387920, - 6459377040, - 6459380832 + 6459415184, + 6459397536, + 6459399648, + 6459413952, + 6459413408, + 6459390112, + 6459379232, + 6459383024 ], "bases": [ { @@ -77348,7 +77352,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468916024, + "complete_object_locator": 6468920120, "offset": 752, "constructor_displacement": 0, "class_attributes": 1 @@ -77357,61 +77361,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467092584, + "vtable_address": 6467096648, "methods": [ - 6459236736, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666560, - 6459666224, - 6459667472, - 6459651056, - 6459418528, - 6459415328, - 6459418208, - 6459415360, - 6459415696, - 6459415376, - 6459415344, - 6459753152, - 6459676128, - 6459728000, - 6459435152, - 6459613456, - 6459632208, - 6459636000, - 6459645856, - 6459422992, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653296, - 6459878640, - 6459692464, - 6459849648, - 6459820608, - 6459482816, - 6459291088, - 6459511808, - 6459549104, - 6459620272, - 6459631840, - 6459715520, - 6459680768, - 6459668592, - 6459657344, - 6459809200, - 6459802144, - 6459496240, - 6459496272, - 6459795664, - 6459454480, - 6459888928 + 6459238928, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668752, + 6459668416, + 6459669664, + 6459653248, + 6459420720, + 6459417520, + 6459420400, + 6459417552, + 6459417888, + 6459417568, + 6459417536, + 6459755344, + 6459678320, + 6459730192, + 6459437344, + 6459615648, + 6459634400, + 6459638192, + 6459648048, + 6459425184, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655488, + 6459880832, + 6459694656, + 6459851840, + 6459822800, + 6459485008, + 6459293280, + 6459514000, + 6459551296, + 6459622464, + 6459634032, + 6459717712, + 6459682960, + 6459670784, + 6459659536, + 6459811392, + 6459804336, + 6459498432, + 6459498464, + 6459797856, + 6459456672, + 6459891120 ], "bases": [ { @@ -77515,7 +77519,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468889448, + "complete_object_locator": 6468893544, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -77524,16 +77528,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467093016, + "vtable_address": 6467097080, "methods": [ - 6459412992, - 6459395344, - 6459397552, - 6459411776, - 6459411232, - 6459388176, - 6459377120, - 6459381072 + 6459415184, + 6459397536, + 6459399744, + 6459413968, + 6459413424, + 6459390368, + 6459379312, + 6459383264 ], "bases": [ { @@ -77637,7 +77641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890144, + "complete_object_locator": 6468894240, "offset": 752, "constructor_displacement": 0, "class_attributes": 1 @@ -77646,61 +77650,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467101272, + "vtable_address": 6467105336, "methods": [ - 6459237568, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666768, - 6459666224, - 6459667472, - 6459651056, - 6459418592, - 6459415328, - 6459418208, - 6459415360, - 6459415904, - 6459415376, - 6459415344, - 6459757728, - 6459677792, - 6459734656, - 6459438688, - 6459613456, - 6459632208, - 6459638496, - 6459647728, - 6459425488, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654752, - 6459882176, - 6459700992, - 6459858000, - 6459825472, - 6459487600, - 6459301488, - 6459522416, - 6459554512, - 6459622768, - 6459631840, - 6459716352, - 6459680768, - 6459668800, - 6459657344, - 6459810864, - 6459803808, - 6459496240, - 6459496272, - 6459797120, - 6459460928, - 6459888928 + 6459239760, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668960, + 6459668416, + 6459669664, + 6459653248, + 6459420784, + 6459417520, + 6459420400, + 6459417552, + 6459418096, + 6459417568, + 6459417536, + 6459759920, + 6459679984, + 6459736848, + 6459440880, + 6459615648, + 6459634400, + 6459640688, + 6459649920, + 6459427680, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656944, + 6459884368, + 6459703184, + 6459860192, + 6459827664, + 6459489792, + 6459303680, + 6459524608, + 6459556704, + 6459624960, + 6459634032, + 6459718544, + 6459682960, + 6459670992, + 6459659536, + 6459813056, + 6459806000, + 6459498432, + 6459498464, + 6459799312, + 6459463120, + 6459891120 ], "bases": [ { @@ -77804,7 +77808,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468895416, + "complete_object_locator": 6468899512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -77813,16 +77817,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467101704, + "vtable_address": 6467105768, "methods": [ - 6459413312, - 6459395616, - 6459397744, - 6459411808, - 6459411264, - 6459388704, - 6459377280, - 6459381552 + 6459415504, + 6459397808, + 6459399936, + 6459414000, + 6459413456, + 6459390896, + 6459379472, + 6459383744 ], "bases": [ { @@ -77926,7 +77930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468895944, + "complete_object_locator": 6468900040, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -77935,61 +77939,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467108872, + "vtable_address": 6467112936, "methods": [ - 6459237632, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459239824, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -78093,7 +78097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900040, + "complete_object_locator": 6468904136, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -78102,16 +78106,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467109304, + "vtable_address": 6467113368, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -78215,7 +78219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900568, + "complete_object_locator": 6468904664, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -78224,61 +78228,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467135224, + "vtable_address": 6467139288, "methods": [ - 6459237696, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666800, - 6459666224, - 6459667472, - 6459651056, - 6459418656, - 6459415328, - 6459418208, - 6459415360, - 6459415936, - 6459415376, - 6459415344, - 6459758432, - 6459678048, - 6459735680, - 6459439232, - 6459613456, - 6459632208, - 6459638880, - 6459648016, - 6459425872, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654976, - 6459882720, - 6459702336, - 6459859280, - 6459826176, - 6459488304, - 6459303088, - 6459524048, - 6459555344, - 6459623152, - 6459631840, - 6459716608, - 6459680768, - 6459668832, - 6459657344, - 6459811120, - 6459804064, - 6459496240, - 6459496272, - 6459797344, - 6459461920, - 6459888928 + 6459239888, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668992, + 6459668416, + 6459669664, + 6459653248, + 6459420848, + 6459417520, + 6459420400, + 6459417552, + 6459418128, + 6459417568, + 6459417536, + 6459760624, + 6459680240, + 6459737872, + 6459441424, + 6459615648, + 6459634400, + 6459641072, + 6459650208, + 6459428064, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657168, + 6459884912, + 6459704528, + 6459861472, + 6459828368, + 6459490496, + 6459305280, + 6459526240, + 6459557536, + 6459625344, + 6459634032, + 6459718800, + 6459682960, + 6459671024, + 6459659536, + 6459813312, + 6459806256, + 6459498432, + 6459498464, + 6459799536, + 6459464112, + 6459891120 ], "bases": [ { @@ -78382,7 +78386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468916456, + "complete_object_locator": 6468920552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -78391,16 +78395,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467135656, + "vtable_address": 6467139720, "methods": [ - 6459413312, - 6459395616, - 6459397936, - 6459411840, - 6459411296, - 6459389248, - 6459377440, - 6459382032 + 6459415504, + 6459397808, + 6459400128, + 6459414032, + 6459413488, + 6459391440, + 6459379632, + 6459384224 ], "bases": [ { @@ -78504,7 +78508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468916984, + "complete_object_locator": 6468921080, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -78513,61 +78517,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467071080, + "vtable_address": 6467075144, "methods": [ - 6459237760, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459239952, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -78671,7 +78675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468876760, + "complete_object_locator": 6468880856, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -78680,16 +78684,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467071512, + "vtable_address": 6467075576, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -78793,7 +78797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468877288, + "complete_object_locator": 6468881384, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -78802,61 +78806,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467067448, + "vtable_address": 6467071512, "methods": [ - 6459237824, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666832, - 6459666224, - 6459667472, - 6459651056, - 6459418720, - 6459415328, - 6459418208, - 6459415360, - 6459415968, - 6459415376, - 6459415344, - 6459759136, - 6459678304, - 6459736704, - 6459439776, - 6459613456, - 6459632208, - 6459639264, - 6459648304, - 6459426256, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655200, - 6459883264, - 6459703680, - 6459860560, - 6459826880, - 6459489008, - 6459304688, - 6459525680, - 6459556176, - 6459623536, - 6459631840, - 6459716864, - 6459680768, - 6459668864, - 6459657344, - 6459811376, - 6459804320, - 6459496240, - 6459496272, - 6459797568, - 6459462912, - 6459888928 + 6459240016, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669024, + 6459668416, + 6459669664, + 6459653248, + 6459420912, + 6459417520, + 6459420400, + 6459417552, + 6459418160, + 6459417568, + 6459417536, + 6459761328, + 6459680496, + 6459738896, + 6459441968, + 6459615648, + 6459634400, + 6459641456, + 6459650496, + 6459428448, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657392, + 6459885456, + 6459705872, + 6459862752, + 6459829072, + 6459491200, + 6459306880, + 6459527872, + 6459558368, + 6459625728, + 6459634032, + 6459719056, + 6459682960, + 6459671056, + 6459659536, + 6459813568, + 6459806512, + 6459498432, + 6459498464, + 6459799760, + 6459465104, + 6459891120 ], "bases": [ { @@ -78960,7 +78964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468874024, + "complete_object_locator": 6468878120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -78969,16 +78973,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467067880, + "vtable_address": 6467071944, "methods": [ - 6459413312, - 6459395616, - 6459398128, - 6459411872, - 6459411328, - 6459389792, - 6459377600, - 6459382512 + 6459415504, + 6459397808, + 6459400320, + 6459414064, + 6459413520, + 6459391984, + 6459379792, + 6459384704 ], "bases": [ { @@ -79082,7 +79086,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468874720, + "complete_object_locator": 6468878816, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -79091,61 +79095,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467146272, + "vtable_address": 6467150336, "methods": [ - 6459237888, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666848, - 6459666224, - 6459667472, - 6459651056, - 6459418752, - 6459415328, - 6459418208, - 6459415360, - 6459415984, - 6459415376, - 6459415344, - 6459759488, - 6459678432, - 6459737216, - 6459440048, - 6459613456, - 6459632208, - 6459639456, - 6459648448, - 6459426448, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655312, - 6459883536, - 6459704352, - 6459861200, - 6459827232, - 6459489360, - 6459305488, - 6459526496, - 6459556592, - 6459623728, - 6459631840, - 6459716992, - 6459680768, - 6459668880, - 6459657344, - 6459811504, - 6459804448, - 6459496240, - 6459496272, - 6459797680, - 6459463408, - 6459888928 + 6459240080, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669040, + 6459668416, + 6459669664, + 6459653248, + 6459420944, + 6459417520, + 6459420400, + 6459417552, + 6459418176, + 6459417568, + 6459417536, + 6459761680, + 6459680624, + 6459739408, + 6459442240, + 6459615648, + 6459634400, + 6459641648, + 6459650640, + 6459428640, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657504, + 6459885728, + 6459706544, + 6459863392, + 6459829424, + 6459491552, + 6459307680, + 6459528688, + 6459558784, + 6459625920, + 6459634032, + 6459719184, + 6459682960, + 6459671072, + 6459659536, + 6459813696, + 6459806640, + 6459498432, + 6459498464, + 6459799872, + 6459465600, + 6459891120 ], "bases": [ { @@ -79249,7 +79253,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468925464, + "complete_object_locator": 6468929560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -79258,16 +79262,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467146704, + "vtable_address": 6467150768, "methods": [ - 6459413312, - 6459395616, - 6459398224, - 6459411888, - 6459411344, - 6459390064, - 6459377680, - 6459382752 + 6459415504, + 6459397808, + 6459400416, + 6459414080, + 6459413536, + 6459392256, + 6459379872, + 6459384944 ], "bases": [ { @@ -79371,7 +79375,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468925992, + "complete_object_locator": 6468930088, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -79380,61 +79384,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,int,class CUtlVectorMemory_Growable >,int,0> >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467139920, - "methods": [ - 6459237376, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667440, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415264, - 6459418208, - 6459415360, - 6459415856, - 6459415376, - 6459415344, - 6459756672, - 6459677408, - 6459733120, - 6459437872, - 6459613456, - 6459632208, - 6459637920, - 6459647296, - 6459424912, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654416, - 6459881360, - 6459699216, - 6459856112, - 6459824416, - 6459486528, - 6459299088, - 6459519968, - 6459553264, - 6459622192, - 6459631840, - 6459716160, - 6459680768, - 6459668752, - 6459657344, - 6459810480, - 6459803424, - 6459496240, - 6459496272, - 6459796784, - 6459459440, - 6459888928 + "vtable_address": 6467143984, + "methods": [ + 6459239568, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669632, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417456, + 6459420400, + 6459417552, + 6459418048, + 6459417568, + 6459417536, + 6459758864, + 6459679600, + 6459735312, + 6459440064, + 6459615648, + 6459634400, + 6459640112, + 6459649488, + 6459427104, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656608, + 6459883552, + 6459701408, + 6459858304, + 6459826608, + 6459488720, + 6459301280, + 6459522160, + 6459555456, + 6459624384, + 6459634032, + 6459718352, + 6459682960, + 6459670944, + 6459659536, + 6459812672, + 6459805616, + 6459498432, + 6459498464, + 6459798976, + 6459461632, + 6459891120 ], "bases": [ { @@ -79510,7 +79514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468919552, + "complete_object_locator": 6468923648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -79519,20 +79523,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,int,class CUtlVectorMemory_Growable >,int,0> >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467140352, + "vtable_address": 6467144416, "methods": [ - 6459321040, - 6459323472, - 6459339328, - 6459354080, - 6459357664, - 6459329888, - 6459350816, - 6459331632, - 6459331456, - 6459333248, - 6459349344, - 6459334032 + 6459323232, + 6459325664, + 6459341520, + 6459356272, + 6459359856, + 6459332080, + 6459353008, + 6459333824, + 6459333648, + 6459335440, + 6459351536, + 6459336224 ], "bases": [ { @@ -79608,7 +79612,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468919920, + "complete_object_locator": 6468924016, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -79617,61 +79621,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467112376, - "methods": [ - 6459237440, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667456, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415296, - 6459418208, - 6459415360, - 6459415872, - 6459415376, - 6459415344, - 6459757024, - 6459677536, - 6459733632, - 6459438144, - 6459613456, - 6459632208, - 6459638112, - 6459647440, - 6459425104, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654528, - 6459881632, - 6459699808, - 6459856736, - 6459824768, - 6459486880, - 6459299888, - 6459520784, - 6459553680, - 6459622384, - 6459631840, - 6459716224, - 6459680768, - 6459668768, - 6459657344, - 6459810608, - 6459803552, - 6459496240, - 6459496272, - 6459796896, - 6459459936, - 6459888928 + "vtable_address": 6467116440, + "methods": [ + 6459239632, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669648, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417488, + 6459420400, + 6459417552, + 6459418064, + 6459417568, + 6459417536, + 6459759216, + 6459679728, + 6459735824, + 6459440336, + 6459615648, + 6459634400, + 6459640304, + 6459649632, + 6459427296, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656720, + 6459883824, + 6459702000, + 6459858928, + 6459826960, + 6459489072, + 6459302080, + 6459522976, + 6459555872, + 6459624576, + 6459634032, + 6459718416, + 6459682960, + 6459670960, + 6459659536, + 6459812800, + 6459805744, + 6459498432, + 6459498464, + 6459799088, + 6459462128, + 6459891120 ], "bases": [ { @@ -79747,7 +79751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901984, + "complete_object_locator": 6468906080, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -79756,20 +79760,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467112808, + "vtable_address": 6467116872, "methods": [ - 6459321104, - 6459323728, - 6459339872, - 6459354464, - 6459358032, - 6459330608, - 6459350832, - 6459331648, - 6459331472, - 6459333424, - 6459350000, - 6459334080 + 6459323296, + 6459325920, + 6459342064, + 6459356656, + 6459360224, + 6459332800, + 6459353024, + 6459333840, + 6459333664, + 6459335616, + 6459352192, + 6459336272 ], "bases": [ { @@ -79845,7 +79849,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468902392, + "complete_object_locator": 6468906488, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -79854,61 +79858,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467129072, - "methods": [ - 6459236800, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667296, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459414976, - 6459418208, - 6459415360, - 6459415712, - 6459415376, - 6459415344, - 6459753504, - 6459676256, - 6459728512, - 6459435424, - 6459613456, - 6459632208, - 6459636192, - 6459646000, - 6459423184, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653408, - 6459878912, - 6459693168, - 6459850272, - 6459820960, - 6459483168, - 6459291888, - 6459512624, - 6459549520, - 6459620464, - 6459631840, - 6459715584, - 6459680768, - 6459668608, - 6459657344, - 6459809328, - 6459802272, - 6459496240, - 6459496272, - 6459795776, - 6459454976, - 6459888928 + "vtable_address": 6467133136, + "methods": [ + 6459238992, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669488, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417168, + 6459420400, + 6459417552, + 6459417904, + 6459417568, + 6459417536, + 6459755696, + 6459678448, + 6459730704, + 6459437616, + 6459615648, + 6459634400, + 6459638384, + 6459648192, + 6459425376, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655600, + 6459881104, + 6459695360, + 6459852464, + 6459823152, + 6459485360, + 6459294080, + 6459514816, + 6459551712, + 6459622656, + 6459634032, + 6459717776, + 6459682960, + 6459670800, + 6459659536, + 6459811520, + 6459804464, + 6459498432, + 6459498464, + 6459797968, + 6459457168, + 6459891120 ], "bases": [ { @@ -79984,7 +79988,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911808, + "complete_object_locator": 6468915904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -79993,20 +79997,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467129504, + "vtable_address": 6467133568, "methods": [ - 6459320464, - 6459321168, - 6459334128, - 6459350848, - 6459354816, - 6459323984, - 6459350672, - 6459331488, - 6459331312, - 6459331664, - 6459340432, - 6459333600 + 6459322656, + 6459323360, + 6459336320, + 6459353040, + 6459357008, + 6459326176, + 6459352864, + 6459333680, + 6459333504, + 6459333856, + 6459342624, + 6459335792 ], "bases": [ { @@ -80082,7 +80086,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912176, + "complete_object_locator": 6468916272, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -80091,61 +80095,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467121992, - "methods": [ - 6459236864, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667312, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415008, - 6459418208, - 6459415360, - 6459415728, - 6459415376, - 6459415344, - 6459753856, - 6459676384, - 6459729024, - 6459435696, - 6459613456, - 6459632208, - 6459636384, - 6459646144, - 6459423376, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653520, - 6459879184, - 6459694144, - 6459850896, - 6459821312, - 6459483520, - 6459292688, - 6459513440, - 6459549936, - 6459620656, - 6459631840, - 6459715648, - 6459680768, - 6459668624, - 6459657344, - 6459809456, - 6459802400, - 6459496240, - 6459496272, - 6459795888, - 6459455472, - 6459888928 + "vtable_address": 6467126056, + "methods": [ + 6459239056, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669504, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417200, + 6459420400, + 6459417552, + 6459417920, + 6459417568, + 6459417536, + 6459756048, + 6459678576, + 6459731216, + 6459437888, + 6459615648, + 6459634400, + 6459638576, + 6459648336, + 6459425568, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655712, + 6459881376, + 6459696336, + 6459853088, + 6459823504, + 6459485712, + 6459294880, + 6459515632, + 6459552128, + 6459622848, + 6459634032, + 6459717840, + 6459682960, + 6459670816, + 6459659536, + 6459811648, + 6459804592, + 6459498432, + 6459498464, + 6459798080, + 6459457664, + 6459891120 ], "bases": [ { @@ -80221,7 +80225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468907136, + "complete_object_locator": 6468911232, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -80230,20 +80234,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467122424, + "vtable_address": 6467126488, "methods": [ - 6459320528, - 6459321424, - 6459334832, - 6459351120, - 6459355104, - 6459324640, - 6459350688, - 6459331504, - 6459331328, - 6459331840, - 6459341392, - 6459333648 + 6459322720, + 6459323616, + 6459337024, + 6459353312, + 6459357296, + 6459326832, + 6459352880, + 6459333696, + 6459333520, + 6459334032, + 6459343584, + 6459335840 ], "bases": [ { @@ -80319,7 +80323,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468907504, + "complete_object_locator": 6468911600, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -80328,61 +80332,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467144576, - "methods": [ - 6459236928, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667328, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415040, - 6459418208, - 6459415360, - 6459415744, - 6459415376, - 6459415344, - 6459754208, - 6459676512, - 6459729536, - 6459435968, - 6459613456, - 6459632208, - 6459636576, - 6459646288, - 6459423568, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653632, - 6459879456, - 6459694736, - 6459851520, - 6459821664, - 6459483872, - 6459293488, - 6459514256, - 6459550352, - 6459620848, - 6459631840, - 6459715712, - 6459680768, - 6459668640, - 6459657344, - 6459809584, - 6459802528, - 6459496240, - 6459496272, - 6459796000, - 6459455968, - 6459888928 + "vtable_address": 6467148640, + "methods": [ + 6459239120, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669520, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417232, + 6459420400, + 6459417552, + 6459417936, + 6459417568, + 6459417536, + 6459756400, + 6459678704, + 6459731728, + 6459438160, + 6459615648, + 6459634400, + 6459638768, + 6459648480, + 6459425760, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655824, + 6459881648, + 6459696928, + 6459853712, + 6459823856, + 6459486064, + 6459295680, + 6459516448, + 6459552544, + 6459623040, + 6459634032, + 6459717904, + 6459682960, + 6459670832, + 6459659536, + 6459811776, + 6459804720, + 6459498432, + 6459498464, + 6459798192, + 6459458160, + 6459891120 ], "bases": [ { @@ -80458,7 +80462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468924096, + "complete_object_locator": 6468928192, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -80467,20 +80471,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467145008, + "vtable_address": 6467149072, "methods": [ - 6459320592, - 6459321680, - 6459335360, - 6459351504, - 6459355456, - 6459325296, - 6459350704, - 6459331520, - 6459331344, - 6459332016, - 6459342032, - 6459333696 + 6459322784, + 6459323872, + 6459337552, + 6459353696, + 6459357648, + 6459327488, + 6459352896, + 6459333712, + 6459333536, + 6459334208, + 6459344224, + 6459335888 ], "bases": [ { @@ -80556,7 +80560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468924464, + "complete_object_locator": 6468928560, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -80565,61 +80569,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467160072, - "methods": [ - 6459236992, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667344, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415072, - 6459418208, - 6459415360, - 6459415760, - 6459415376, - 6459415344, - 6459754560, - 6459676640, - 6459730048, - 6459436240, - 6459613456, - 6459632208, - 6459636768, - 6459646432, - 6459423760, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653744, - 6459879728, - 6459695328, - 6459852144, - 6459822016, - 6459484224, - 6459294288, - 6459515072, - 6459550768, - 6459621040, - 6459631840, - 6459715776, - 6459680768, - 6459668656, - 6459657344, - 6459809712, - 6459802656, - 6459496240, - 6459496272, - 6459796112, - 6459456464, - 6459888928 + "vtable_address": 6467164136, + "methods": [ + 6459239184, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669536, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417264, + 6459420400, + 6459417552, + 6459417952, + 6459417568, + 6459417536, + 6459756752, + 6459678832, + 6459732240, + 6459438432, + 6459615648, + 6459634400, + 6459638960, + 6459648624, + 6459425952, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655936, + 6459881920, + 6459697520, + 6459854336, + 6459824208, + 6459486416, + 6459296480, + 6459517264, + 6459552960, + 6459623232, + 6459634032, + 6459717968, + 6459682960, + 6459670848, + 6459659536, + 6459811904, + 6459804848, + 6459498432, + 6459498464, + 6459798304, + 6459458656, + 6459891120 ], "bases": [ { @@ -80695,7 +80699,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468935024, + "complete_object_locator": 6468939120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -80704,20 +80708,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467160504, + "vtable_address": 6467164568, "methods": [ - 6459320656, - 6459321936, - 6459335888, - 6459351888, - 6459355808, - 6459325952, - 6459350720, - 6459331536, - 6459331360, - 6459332192, - 6459342672, - 6459333744 + 6459322848, + 6459324128, + 6459338080, + 6459354080, + 6459358000, + 6459328144, + 6459352912, + 6459333728, + 6459333552, + 6459334384, + 6459344864, + 6459335936 ], "bases": [ { @@ -80793,7 +80797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468935392, + "complete_object_locator": 6468939488, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -80802,61 +80806,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467143024, - "methods": [ - 6459237056, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667360, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415104, - 6459418208, - 6459415360, - 6459415776, - 6459415376, - 6459415344, - 6459754912, - 6459676768, - 6459730560, - 6459436512, - 6459613456, - 6459632208, - 6459636960, - 6459646576, - 6459423952, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653856, - 6459880000, - 6459695920, - 6459852768, - 6459822368, - 6459484576, - 6459295088, - 6459515888, - 6459551184, - 6459621232, - 6459631840, - 6459715840, - 6459680768, - 6459668672, - 6459657344, - 6459809840, - 6459802784, - 6459496240, - 6459496272, - 6459796224, - 6459456960, - 6459888928 + "vtable_address": 6467147088, + "methods": [ + 6459239248, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669552, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417296, + 6459420400, + 6459417552, + 6459417968, + 6459417568, + 6459417536, + 6459757104, + 6459678960, + 6459732752, + 6459438704, + 6459615648, + 6459634400, + 6459639152, + 6459648768, + 6459426144, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656048, + 6459882192, + 6459698112, + 6459854960, + 6459824560, + 6459486768, + 6459297280, + 6459518080, + 6459553376, + 6459623424, + 6459634032, + 6459718032, + 6459682960, + 6459670864, + 6459659536, + 6459812032, + 6459804976, + 6459498432, + 6459498464, + 6459798416, + 6459459152, + 6459891120 ], "bases": [ { @@ -80932,7 +80936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468922656, + "complete_object_locator": 6468926752, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -80941,20 +80945,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467143456, + "vtable_address": 6467147520, "methods": [ - 6459320720, - 6459322192, - 6459336576, - 6459352272, - 6459356096, - 6459326608, - 6459350736, - 6459331552, - 6459331376, - 6459332368, - 6459343504, - 6459333792 + 6459322912, + 6459324384, + 6459338768, + 6459354464, + 6459358288, + 6459328800, + 6459352928, + 6459333744, + 6459333568, + 6459334560, + 6459345696, + 6459335984 ], "bases": [ { @@ -81030,7 +81034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923024, + "complete_object_locator": 6468927120, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -81039,61 +81043,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467137216, - "methods": [ - 6459237120, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667376, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415136, - 6459418208, - 6459415360, - 6459415792, - 6459415376, - 6459415344, - 6459755264, - 6459676896, - 6459731072, - 6459436784, - 6459613456, - 6459632208, - 6459637152, - 6459646720, - 6459424144, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653968, - 6459880272, - 6459696512, - 6459853504, - 6459822864, - 6459485024, - 6459295888, - 6459516704, - 6459551600, - 6459621424, - 6459631840, - 6459715904, - 6459680768, - 6459668688, - 6459657344, - 6459809968, - 6459802912, - 6459496240, - 6459496272, - 6459796336, - 6459457456, - 6459888928 + "vtable_address": 6467141280, + "methods": [ + 6459239312, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669568, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417328, + 6459420400, + 6459417552, + 6459417984, + 6459417568, + 6459417536, + 6459757456, + 6459679088, + 6459733264, + 6459438976, + 6459615648, + 6459634400, + 6459639344, + 6459648912, + 6459426336, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656160, + 6459882464, + 6459698704, + 6459855696, + 6459825056, + 6459487216, + 6459298080, + 6459518896, + 6459553792, + 6459623616, + 6459634032, + 6459718096, + 6459682960, + 6459670880, + 6459659536, + 6459812160, + 6459805104, + 6459498432, + 6459498464, + 6459798528, + 6459459648, + 6459891120 ], "bases": [ { @@ -81169,7 +81173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468917648, + "complete_object_locator": 6468921744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -81178,20 +81182,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467137648, - "methods": [ - 6459320784, - 6459322448, - 6459337104, - 6459352656, - 6459356448, - 6459327264, - 6459350752, - 6459331568, - 6459331392, - 6459332544, - 6459344224, - 6459333840 + "vtable_address": 6467141712, + "methods": [ + 6459322976, + 6459324640, + 6459339296, + 6459354848, + 6459358640, + 6459329456, + 6459352944, + 6459333760, + 6459333584, + 6459334736, + 6459346416, + 6459336032 ], "bases": [ { @@ -81267,7 +81271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918016, + "complete_object_locator": 6468922112, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -81276,61 +81280,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467141472, - "methods": [ - 6459237184, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667392, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415168, - 6459418208, - 6459415360, - 6459415808, - 6459415376, - 6459415344, - 6459755616, - 6459677024, - 6459731584, - 6459437056, - 6459613456, - 6459632208, - 6459637344, - 6459646864, - 6459424336, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654080, - 6459880544, - 6459697104, - 6459854240, - 6459823360, - 6459485472, - 6459296688, - 6459517520, - 6459552016, - 6459621616, - 6459631840, - 6459715968, - 6459680768, - 6459668704, - 6459657344, - 6459810096, - 6459803040, - 6459496240, - 6459496272, - 6459796448, - 6459457952, - 6459888928 + "vtable_address": 6467145536, + "methods": [ + 6459239376, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669584, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417360, + 6459420400, + 6459417552, + 6459418000, + 6459417568, + 6459417536, + 6459757808, + 6459679216, + 6459733776, + 6459439248, + 6459615648, + 6459634400, + 6459639536, + 6459649056, + 6459426528, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656272, + 6459882736, + 6459699296, + 6459856432, + 6459825552, + 6459487664, + 6459298880, + 6459519712, + 6459554208, + 6459623808, + 6459634032, + 6459718160, + 6459682960, + 6459670896, + 6459659536, + 6459812288, + 6459805232, + 6459498432, + 6459498464, + 6459798640, + 6459460144, + 6459891120 ], "bases": [ { @@ -81406,7 +81410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468921216, + "complete_object_locator": 6468925312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -81415,20 +81419,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467141904, + "vtable_address": 6467145968, "methods": [ - 6459320848, - 6459322704, - 6459337632, - 6459353040, - 6459356736, - 6459327920, - 6459350768, - 6459331584, - 6459331408, - 6459332720, - 6459346768, - 6459333888 + 6459323040, + 6459324896, + 6459339824, + 6459355232, + 6459358928, + 6459330112, + 6459352960, + 6459333776, + 6459333600, + 6459334912, + 6459348960, + 6459336080 ], "bases": [ { @@ -81504,7 +81508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468921584, + "complete_object_locator": 6468925680, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -81513,61 +81517,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467161624, - "methods": [ - 6459237248, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667408, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415200, - 6459418208, - 6459415360, - 6459415824, - 6459415376, - 6459415344, - 6459755968, - 6459677152, - 6459732096, - 6459437328, - 6459613456, - 6459632208, - 6459637536, - 6459647008, - 6459424528, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654192, - 6459880816, - 6459698032, - 6459854864, - 6459823712, - 6459485824, - 6459297488, - 6459518336, - 6459552432, - 6459621808, - 6459631840, - 6459716032, - 6459680768, - 6459668720, - 6459657344, - 6459810224, - 6459803168, - 6459496240, - 6459496272, - 6459796560, - 6459458448, - 6459888928 + "vtable_address": 6467165688, + "methods": [ + 6459239440, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669600, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417392, + 6459420400, + 6459417552, + 6459418016, + 6459417568, + 6459417536, + 6459758160, + 6459679344, + 6459734288, + 6459439520, + 6459615648, + 6459634400, + 6459639728, + 6459649200, + 6459426720, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656384, + 6459883008, + 6459700224, + 6459857056, + 6459825904, + 6459488016, + 6459299680, + 6459520528, + 6459554624, + 6459624000, + 6459634032, + 6459718224, + 6459682960, + 6459670912, + 6459659536, + 6459812416, + 6459805360, + 6459498432, + 6459498464, + 6459798752, + 6459460640, + 6459891120 ], "bases": [ { @@ -81643,7 +81647,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468936424, + "complete_object_locator": 6468940520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -81652,20 +81656,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467162056, + "vtable_address": 6467166120, "methods": [ - 6459320912, - 6459322960, - 6459338272, - 6459353312, - 6459357024, - 6459328576, - 6459350784, - 6459331600, - 6459331424, - 6459332896, - 6459347632, - 6459333936 + 6459323104, + 6459325152, + 6459340464, + 6459355504, + 6459359216, + 6459330768, + 6459352976, + 6459333792, + 6459333616, + 6459335088, + 6459349824, + 6459336128 ], "bases": [ { @@ -81741,7 +81745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468936792, + "complete_object_locator": 6468940888, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -81750,61 +81754,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterial_t>", - "vtable_address": 6467150392, - "methods": [ - 6459237312, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667424, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415232, - 6459418208, - 6459415360, - 6459415840, - 6459415376, - 6459415344, - 6459756320, - 6459677280, - 6459732608, - 6459437600, - 6459613456, - 6459632208, - 6459637728, - 6459647152, - 6459424720, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654304, - 6459881088, - 6459698624, - 6459855488, - 6459824064, - 6459486176, - 6459298288, - 6459519152, - 6459552848, - 6459622000, - 6459631840, - 6459716096, - 6459680768, - 6459668736, - 6459657344, - 6459810352, - 6459803296, - 6459496240, - 6459496272, - 6459796672, - 6459458944, - 6459888928 + "vtable_address": 6467154456, + "methods": [ + 6459239504, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669616, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417424, + 6459420400, + 6459417552, + 6459418032, + 6459417568, + 6459417536, + 6459758512, + 6459679472, + 6459734800, + 6459439792, + 6459615648, + 6459634400, + 6459639920, + 6459649344, + 6459426912, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656496, + 6459883280, + 6459700816, + 6459857680, + 6459826256, + 6459488368, + 6459300480, + 6459521344, + 6459555040, + 6459624192, + 6459634032, + 6459718288, + 6459682960, + 6459670928, + 6459659536, + 6459812544, + 6459805488, + 6459498432, + 6459498464, + 6459798864, + 6459461136, + 6459891120 ], "bases": [ { @@ -81880,7 +81884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928224, + "complete_object_locator": 6468932320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -81889,20 +81893,20 @@ }, { "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterial_t>", - "vtable_address": 6467150824, + "vtable_address": 6467154888, "methods": [ - 6459320976, - 6459323216, - 6459338800, - 6459353696, - 6459357376, - 6459329232, - 6459350800, - 6459331616, - 6459331440, - 6459333072, - 6459348368, - 6459333984 + 6459323168, + 6459325408, + 6459340992, + 6459355888, + 6459359568, + 6459331424, + 6459352992, + 6459333808, + 6459333632, + 6459335264, + 6459350560, + 6459336176 ], "bases": [ { @@ -81978,7 +81982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928592, + "complete_object_locator": 6468932688, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -81987,61 +81991,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467127080, + "vtable_address": 6467131144, "methods": [ - 6459237952, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666864, - 6459666224, - 6459667472, - 6459651056, - 6459418784, - 6459415328, - 6459418208, - 6459415360, - 6459416000, - 6459415376, - 6459415344, - 6459759840, - 6459678560, - 6459737728, - 6459440320, - 6459613456, - 6459632208, - 6459639648, - 6459648592, - 6459426640, - 6459564128, - 6459564096, - 6459718256, + 6459240144, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669056, + 6459668416, + 6459669664, + 6459653248, + 6459420976, + 6459417520, + 6459420400, + 6459417552, + 6459418192, + 6459417568, + 6459417536, + 6459762032, + 6459680752, + 6459739920, + 6459442512, + 6459615648, + 6459634400, + 6459641840, + 6459650784, + 6459428832, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657616, + 6459886000, + 6459707216, + 6459864032, + 6459829776, + 6459491904, + 6459308480, + 6459529504, + 6459559200, + 6459626112, + 6459634032, + 6459719312, + 6459682960, + 6459671088, + 6459659536, 6459813824, - 6459765840, - 6459835808, - 6459655424, - 6459883808, - 6459705024, - 6459861840, - 6459827584, - 6459489712, - 6459306288, - 6459527312, - 6459557008, - 6459623920, - 6459631840, - 6459717120, - 6459680768, - 6459668896, - 6459657344, - 6459811632, - 6459804576, - 6459496240, - 6459496272, - 6459797792, - 6459463904, - 6459888928 + 6459806768, + 6459498432, + 6459498464, + 6459799984, + 6459466096, + 6459891120 ], "bases": [ { @@ -82145,7 +82149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468910616, + "complete_object_locator": 6468914712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -82154,16 +82158,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467127512, + "vtable_address": 6467131576, "methods": [ - 6459413488, - 6459395760, - 6459398320, - 6459411904, - 6459411360, - 6459390336, - 6459377760, - 6459382992 + 6459415680, + 6459397952, + 6459400512, + 6459414096, + 6459413552, + 6459392528, + 6459379952, + 6459385184 ], "bases": [ { @@ -82267,7 +82271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911144, + "complete_object_locator": 6468915240, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -82276,61 +82280,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467089608, + "vtable_address": 6467093672, "methods": [ - 6459238016, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666880, - 6459666224, - 6459667472, - 6459651056, - 6459418816, - 6459415328, + 6459240208, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669072, + 6459668416, + 6459669664, + 6459653248, + 6459421008, + 6459417520, + 6459420400, + 6459417552, 6459418208, - 6459415360, - 6459416016, - 6459415376, - 6459415344, - 6459760192, - 6459678688, - 6459738240, - 6459440592, - 6459613456, - 6459632208, - 6459639840, - 6459648736, - 6459426832, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655536, - 6459884080, - 6459705552, - 6459862464, - 6459827936, - 6459490064, - 6459307088, - 6459528128, - 6459557424, - 6459624112, - 6459631840, - 6459717184, - 6459680768, - 6459668912, - 6459657344, - 6459811760, - 6459804704, - 6459496240, - 6459496272, - 6459797904, - 6459464400, - 6459888928 + 6459417568, + 6459417536, + 6459762384, + 6459680880, + 6459740432, + 6459442784, + 6459615648, + 6459634400, + 6459642032, + 6459650928, + 6459429024, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657728, + 6459886272, + 6459707744, + 6459864656, + 6459830128, + 6459492256, + 6459309280, + 6459530320, + 6459559616, + 6459626304, + 6459634032, + 6459719376, + 6459682960, + 6459671104, + 6459659536, + 6459813952, + 6459806896, + 6459498432, + 6459498464, + 6459800096, + 6459466592, + 6459891120 ], "bases": [ { @@ -82434,7 +82438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468887120, + "complete_object_locator": 6468891216, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -82443,16 +82447,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467090040, + "vtable_address": 6467094104, "methods": [ - 6459413488, - 6459395760, - 6459398416, - 6459411920, - 6459411376, - 6459390592, - 6459377840, - 6459383232 + 6459415680, + 6459397952, + 6459400608, + 6459414112, + 6459413568, + 6459392784, + 6459380032, + 6459385424 ], "bases": [ { @@ -82556,7 +82560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468887768, + "complete_object_locator": 6468891864, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -82565,61 +82569,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467156592, + "vtable_address": 6467160656, "methods": [ - 6459238080, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666896, - 6459666224, - 6459667472, - 6459651056, - 6459418848, - 6459415328, - 6459418208, - 6459415360, - 6459416032, - 6459415376, - 6459415344, - 6459760544, - 6459678816, - 6459738752, - 6459440864, - 6459613456, - 6459632208, - 6459640032, - 6459648880, - 6459427024, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655648, - 6459884352, - 6459706080, - 6459863088, - 6459828288, - 6459490416, - 6459307888, - 6459528944, - 6459557840, - 6459624304, - 6459631840, - 6459717248, - 6459680768, - 6459668928, - 6459657344, - 6459811888, - 6459804832, - 6459496240, - 6459496272, - 6459798016, - 6459464896, - 6459888928 + 6459240272, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669088, + 6459668416, + 6459669664, + 6459653248, + 6459421040, + 6459417520, + 6459420400, + 6459417552, + 6459418224, + 6459417568, + 6459417536, + 6459762736, + 6459681008, + 6459740944, + 6459443056, + 6459615648, + 6459634400, + 6459642224, + 6459651072, + 6459429216, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657840, + 6459886544, + 6459708272, + 6459865280, + 6459830480, + 6459492608, + 6459310080, + 6459531136, + 6459560032, + 6459626496, + 6459634032, + 6459719440, + 6459682960, + 6459671120, + 6459659536, + 6459814080, + 6459807024, + 6459498432, + 6459498464, + 6459800208, + 6459467088, + 6459891120 ], "bases": [ { @@ -82723,7 +82727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468932872, + "complete_object_locator": 6468936968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -82732,16 +82736,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467157024, + "vtable_address": 6467161088, "methods": [ - 6459413632, - 6459395888, - 6459398512, - 6459411936, - 6459411392, - 6459390848, - 6459377920, - 6459383472 + 6459415824, + 6459398080, + 6459400704, + 6459414128, + 6459413584, + 6459393040, + 6459380112, + 6459385664 ], "bases": [ { @@ -82845,7 +82849,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468933400, + "complete_object_locator": 6468937496, "offset": 544, "constructor_displacement": 0, "class_attributes": 1 @@ -82854,61 +82858,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467147896, + "vtable_address": 6467151960, "methods": [ - 6459238144, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666912, - 6459666224, - 6459667472, - 6459651056, - 6459418880, - 6459415328, - 6459418208, - 6459415360, - 6459416048, - 6459415376, - 6459415344, - 6459760896, - 6459678944, - 6459739264, - 6459441136, - 6459613456, - 6459632208, - 6459640224, - 6459649024, - 6459427216, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655760, - 6459884624, - 6459706704, - 6459863712, - 6459828640, - 6459490768, - 6459308688, - 6459529760, - 6459558256, - 6459624496, - 6459631840, - 6459717328, - 6459680768, - 6459668944, - 6459657344, - 6459812016, - 6459804960, - 6459496240, - 6459496272, - 6459798128, - 6459465392, - 6459888928 + 6459240336, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669104, + 6459668416, + 6459669664, + 6459653248, + 6459421072, + 6459417520, + 6459420400, + 6459417552, + 6459418240, + 6459417568, + 6459417536, + 6459763088, + 6459681136, + 6459741456, + 6459443328, + 6459615648, + 6459634400, + 6459642416, + 6459651216, + 6459429408, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657952, + 6459886816, + 6459708896, + 6459865904, + 6459830832, + 6459492960, + 6459310880, + 6459531952, + 6459560448, + 6459626688, + 6459634032, + 6459719520, + 6459682960, + 6459671136, + 6459659536, + 6459814208, + 6459807152, + 6459498432, + 6459498464, + 6459800320, + 6459467584, + 6459891120 ], "bases": [ { @@ -83012,7 +83016,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468926552, + "complete_object_locator": 6468930648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -83021,16 +83025,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467148328, + "vtable_address": 6467152392, "methods": [ - 6459413632, - 6459395888, - 6459398608, - 6459411952, - 6459411408, - 6459391104, - 6459378000, - 6459383712 + 6459415824, + 6459398080, + 6459400800, + 6459414144, + 6459413600, + 6459393296, + 6459380192, + 6459385904 ], "bases": [ { @@ -83134,7 +83138,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468927248, + "complete_object_locator": 6468931344, "offset": 544, "constructor_displacement": 0, "class_attributes": 1 @@ -83143,61 +83147,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember,struct CompMatPropertyMutator_t>", - "vtable_address": 6467125592, + "vtable_address": 6467129656, "methods": [ - 6459237504, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666752, - 6459666224, - 6459667472, - 6459651056, - 6459418560, - 6459415328, - 6459418208, - 6459415360, - 6459415888, - 6459415376, - 6459415344, - 6459757376, - 6459677664, - 6459734144, - 6459438416, - 6459613456, - 6459632208, - 6459638304, - 6459647584, - 6459425296, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654640, - 6459881904, - 6459700400, - 6459857360, - 6459825120, - 6459487232, - 6459300688, - 6459521600, - 6459554096, - 6459622576, - 6459631840, - 6459716288, - 6459680768, - 6459668784, - 6459657344, - 6459810736, - 6459803680, - 6459496240, - 6459496272, - 6459797008, - 6459460432, - 6459888928 + 6459239696, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668944, + 6459668416, + 6459669664, + 6459653248, + 6459420752, + 6459417520, + 6459420400, + 6459417552, + 6459418080, + 6459417568, + 6459417536, + 6459759568, + 6459679856, + 6459736336, + 6459440608, + 6459615648, + 6459634400, + 6459640496, + 6459649776, + 6459427488, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656832, + 6459884096, + 6459702592, + 6459859552, + 6459827312, + 6459489424, + 6459302880, + 6459523792, + 6459556288, + 6459624768, + 6459634032, + 6459718480, + 6459682960, + 6459670976, + 6459659536, + 6459812928, + 6459805872, + 6459498432, + 6459498464, + 6459799200, + 6459462624, + 6459891120 ], "bases": [ { @@ -83301,7 +83305,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468909456, + "complete_object_locator": 6468913552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -83310,16 +83314,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember,struct CompMatPropertyMutator_t>", - "vtable_address": 6467126024, + "vtable_address": 6467130088, "methods": [ - 6459413168, - 6459395504, - 6459397648, - 6459411792, - 6459411248, - 6459388432, - 6459377200, - 6459381312 + 6459415360, + 6459397696, + 6459399840, + 6459413984, + 6459413440, + 6459390624, + 6459379392, + 6459383504 ], "bases": [ { @@ -83423,7 +83427,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468910104, + "complete_object_locator": 6468914200, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -83432,61 +83436,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467099784, + "vtable_address": 6467103848, "methods": [ - 6459238208, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666928, - 6459666224, - 6459667472, - 6459651056, - 6459418912, - 6459415328, - 6459418208, - 6459415360, - 6459416064, - 6459415376, - 6459415344, - 6459761248, - 6459679072, - 6459739776, - 6459441408, - 6459613456, - 6459632208, - 6459640416, - 6459649168, - 6459427408, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655872, - 6459884896, - 6459707328, - 6459864336, - 6459828992, - 6459491120, - 6459309488, - 6459530576, - 6459558672, - 6459624688, - 6459631840, - 6459717408, - 6459680768, - 6459668960, - 6459657344, - 6459812144, - 6459805088, - 6459496240, - 6459496272, - 6459798240, - 6459465888, - 6459888928 + 6459240400, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669120, + 6459668416, + 6459669664, + 6459653248, + 6459421104, + 6459417520, + 6459420400, + 6459417552, + 6459418256, + 6459417568, + 6459417536, + 6459763440, + 6459681264, + 6459741968, + 6459443600, + 6459615648, + 6459634400, + 6459642608, + 6459651360, + 6459429600, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658064, + 6459887088, + 6459709520, + 6459866528, + 6459831184, + 6459493312, + 6459311680, + 6459532768, + 6459560864, + 6459626880, + 6459634032, + 6459719600, + 6459682960, + 6459671152, + 6459659536, + 6459814336, + 6459807280, + 6459498432, + 6459498464, + 6459800432, + 6459468080, + 6459891120 ], "bases": [ { @@ -83590,7 +83594,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468894256, + "complete_object_locator": 6468898352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -83599,16 +83603,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467100216, + "vtable_address": 6467104280, "methods": [ - 6459413824, - 6459396032, - 6459398704, - 6459411968, - 6459411424, - 6459391360, - 6459378080, - 6459383952 + 6459416016, + 6459398224, + 6459400896, + 6459414160, + 6459413616, + 6459393552, + 6459380272, + 6459386144 ], "bases": [ { @@ -83712,7 +83716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468894904, + "complete_object_locator": 6468899000, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -83721,61 +83725,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467106880, + "vtable_address": 6467110944, "methods": [ - 6459238272, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666944, - 6459666224, - 6459667472, - 6459651056, - 6459418944, - 6459415328, - 6459418208, - 6459415360, - 6459416080, - 6459415376, - 6459415344, - 6459761600, - 6459679200, - 6459740288, - 6459441680, - 6459613456, - 6459632208, - 6459640608, - 6459649312, - 6459427600, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655984, - 6459885168, - 6459707856, - 6459864960, - 6459829328, - 6459491472, - 6459310288, - 6459531392, - 6459559088, - 6459624880, - 6459631840, - 6459717472, - 6459680768, - 6459668976, - 6459657344, - 6459812272, - 6459805216, - 6459496240, - 6459496272, - 6459798352, - 6459466384, - 6459888928 + 6459240464, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669136, + 6459668416, + 6459669664, + 6459653248, + 6459421136, + 6459417520, + 6459420400, + 6459417552, + 6459418272, + 6459417568, + 6459417536, + 6459763792, + 6459681392, + 6459742480, + 6459443872, + 6459615648, + 6459634400, + 6459642800, + 6459651504, + 6459429792, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658176, + 6459887360, + 6459710048, + 6459867152, + 6459831520, + 6459493664, + 6459312480, + 6459533584, + 6459561280, + 6459627072, + 6459634032, + 6459719664, + 6459682960, + 6459671168, + 6459659536, + 6459814464, + 6459807408, + 6459498432, + 6459498464, + 6459800544, + 6459468576, + 6459891120 ], "bases": [ { @@ -83879,7 +83883,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468898872, + "complete_object_locator": 6468902968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -83888,16 +83892,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467107312, + "vtable_address": 6467111376, "methods": [ - 6459413968, - 6459396112, - 6459398800, - 6459411984, - 6459411440, - 6459391616, - 6459378144, - 6459384016 + 6459416160, + 6459398304, + 6459400992, + 6459414176, + 6459413632, + 6459393808, + 6459380336, + 6459386208 ], "bases": [ { @@ -84001,7 +84005,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468899528, + "complete_object_locator": 6468903624, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -84010,61 +84014,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467132248, + "vtable_address": 6467136312, "methods": [ - 6459238336, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666960, - 6459666224, - 6459667472, - 6459651056, - 6459418976, - 6459415328, - 6459418208, - 6459415360, - 6459416096, - 6459415376, - 6459415344, - 6459761952, - 6459679328, - 6459740800, - 6459441952, - 6459613456, - 6459632208, - 6459640800, - 6459649456, - 6459427792, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656096, - 6459885440, - 6459708384, - 6459865584, - 6459829664, - 6459491824, - 6459311088, - 6459532208, - 6459559504, - 6459625072, - 6459631840, - 6459717536, - 6459680768, - 6459668992, - 6459657344, - 6459812400, - 6459805344, - 6459496240, - 6459496272, - 6459798464, - 6459466880, - 6459888928 + 6459240528, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669152, + 6459668416, + 6459669664, + 6459653248, + 6459421168, + 6459417520, + 6459420400, + 6459417552, + 6459418288, + 6459417568, + 6459417536, + 6459764144, + 6459681520, + 6459742992, + 6459444144, + 6459615648, + 6459634400, + 6459642992, + 6459651648, + 6459429984, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658288, + 6459887632, + 6459710576, + 6459867776, + 6459831856, + 6459494016, + 6459313280, + 6459534400, + 6459561696, + 6459627264, + 6459634032, + 6459719728, + 6459682960, + 6459671184, + 6459659536, + 6459814592, + 6459807536, + 6459498432, + 6459498464, + 6459800656, + 6459469072, + 6459891120 ], "bases": [ { @@ -84168,7 +84172,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468914328, + "complete_object_locator": 6468918424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -84177,16 +84181,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467132680, + "vtable_address": 6467136744, "methods": [ - 6459414112, - 6459396192, - 6459398896, - 6459412000, - 6459411456, - 6459391872, - 6459378208, - 6459384080 + 6459416304, + 6459398384, + 6459401088, + 6459414192, + 6459413648, + 6459394064, + 6459380400, + 6459386272 ], "bases": [ { @@ -84290,7 +84294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468914984, + "complete_object_locator": 6468919080, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -84299,61 +84303,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467077080, + "vtable_address": 6467081144, "methods": [ - 6459238400, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666976, - 6459666224, - 6459667472, - 6459651056, - 6459419008, - 6459415328, - 6459418208, - 6459415360, - 6459416112, - 6459415376, - 6459415344, - 6459762304, - 6459679456, - 6459741312, - 6459442224, - 6459613456, - 6459632208, - 6459640992, - 6459649600, - 6459427984, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656208, - 6459885712, - 6459708912, - 6459866208, - 6459830000, - 6459492176, - 6459311888, - 6459533024, - 6459559920, - 6459625264, - 6459631840, - 6459717600, - 6459680768, - 6459669008, - 6459657344, - 6459812528, - 6459805472, - 6459496240, - 6459496272, - 6459798576, - 6459467376, - 6459888928 + 6459240592, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669168, + 6459668416, + 6459669664, + 6459653248, + 6459421200, + 6459417520, + 6459420400, + 6459417552, + 6459418304, + 6459417568, + 6459417536, + 6459764496, + 6459681648, + 6459743504, + 6459444416, + 6459615648, + 6459634400, + 6459643184, + 6459651792, + 6459430176, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658400, + 6459887904, + 6459711104, + 6459868400, + 6459832192, + 6459494368, + 6459314080, + 6459535216, + 6459562112, + 6459627456, + 6459634032, + 6459719792, + 6459682960, + 6459671200, + 6459659536, + 6459814720, + 6459807664, + 6459498432, + 6459498464, + 6459800768, + 6459469568, + 6459891120 ], "bases": [ { @@ -84457,7 +84461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468880032, + "complete_object_locator": 6468884128, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -84466,16 +84470,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467077512, + "vtable_address": 6467081576, "methods": [ - 6459414256, - 6459396272, - 6459398992, - 6459412016, - 6459411472, - 6459392128, - 6459378272, - 6459384144 + 6459416448, + 6459398464, + 6459401184, + 6459414208, + 6459413664, + 6459394320, + 6459380464, + 6459386336 ], "bases": [ { @@ -84579,7 +84583,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468880680, + "complete_object_locator": 6468884776, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -84588,61 +84592,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467096568, - "methods": [ - 6459238464, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666992, - 6459666224, - 6459667472, - 6459651056, - 6459419040, - 6459415328, - 6459418208, - 6459415360, - 6459416128, - 6459415376, - 6459415344, - 6459762656, - 6459679584, - 6459741824, - 6459442496, - 6459613456, - 6459632208, - 6459641184, - 6459649744, - 6459428176, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656320, - 6459885984, - 6459709440, - 6459866832, - 6459830336, - 6459492528, - 6459312688, - 6459533840, - 6459560336, - 6459625456, - 6459631840, - 6459717664, - 6459680768, - 6459669024, - 6459657344, - 6459812656, - 6459805600, - 6459496240, - 6459496272, - 6459798688, - 6459467872, - 6459888928 + "vtable_address": 6467100632, + "methods": [ + 6459240656, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669184, + 6459668416, + 6459669664, + 6459653248, + 6459421232, + 6459417520, + 6459420400, + 6459417552, + 6459418320, + 6459417568, + 6459417536, + 6459764848, + 6459681776, + 6459744016, + 6459444688, + 6459615648, + 6459634400, + 6459643376, + 6459651936, + 6459430368, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658512, + 6459888176, + 6459711632, + 6459869024, + 6459832528, + 6459494720, + 6459314880, + 6459536032, + 6459562528, + 6459627648, + 6459634032, + 6459719856, + 6459682960, + 6459671216, + 6459659536, + 6459814848, + 6459807792, + 6459498432, + 6459498464, + 6459800880, + 6459470064, + 6459891120 ], "bases": [ { @@ -84746,7 +84750,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468892288, + "complete_object_locator": 6468896384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -84755,16 +84759,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467097000, + "vtable_address": 6467101064, "methods": [ - 6459414400, - 6459396352, - 6459399088, - 6459412032, - 6459411488, - 6459392384, - 6459378336, - 6459384208 + 6459416592, + 6459398544, + 6459401280, + 6459414224, + 6459413680, + 6459394576, + 6459380528, + 6459386400 ], "bases": [ { @@ -84868,7 +84872,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468892936, + "complete_object_locator": 6468897032, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -84877,61 +84881,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467065960, - "methods": [ - 6459238528, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667008, - 6459666224, - 6459667472, - 6459651056, - 6459419072, - 6459415328, - 6459418208, - 6459415360, - 6459416144, - 6459415376, - 6459415344, - 6459763008, - 6459679712, - 6459742336, - 6459442768, - 6459613456, - 6459632208, - 6459641376, - 6459649888, - 6459428368, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656432, - 6459886256, - 6459709968, - 6459867456, - 6459830672, - 6459492880, - 6459313488, - 6459534656, - 6459560752, - 6459625648, - 6459631840, - 6459717728, - 6459680768, - 6459669040, - 6459657344, - 6459812784, - 6459805728, - 6459496240, - 6459496272, - 6459798800, - 6459468368, - 6459888928 + "vtable_address": 6467070024, + "methods": [ + 6459240720, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669200, + 6459668416, + 6459669664, + 6459653248, + 6459421264, + 6459417520, + 6459420400, + 6459417552, + 6459418336, + 6459417568, + 6459417536, + 6459765200, + 6459681904, + 6459744528, + 6459444960, + 6459615648, + 6459634400, + 6459643568, + 6459652080, + 6459430560, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658624, + 6459888448, + 6459712160, + 6459869648, + 6459832864, + 6459495072, + 6459315680, + 6459536848, + 6459562944, + 6459627840, + 6459634032, + 6459719920, + 6459682960, + 6459671232, + 6459659536, + 6459814976, + 6459807920, + 6459498432, + 6459498464, + 6459800992, + 6459470560, + 6459891120 ], "bases": [ { @@ -85035,7 +85039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468872808, + "complete_object_locator": 6468876904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -85044,16 +85048,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467066392, + "vtable_address": 6467070456, "methods": [ - 6459414544, - 6459396432, - 6459399184, - 6459412048, - 6459411504, - 6459392640, - 6459378400, - 6459384272 + 6459416736, + 6459398624, + 6459401376, + 6459414240, + 6459413696, + 6459394832, + 6459380592, + 6459386464 ], "bases": [ { @@ -85157,7 +85161,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468873504, + "complete_object_locator": 6468877600, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -85166,61 +85170,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467091096, - "methods": [ - 6459238592, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667024, - 6459666224, - 6459667472, - 6459651056, - 6459419104, - 6459415328, - 6459418208, - 6459415360, - 6459416160, - 6459415376, - 6459415344, - 6459763360, - 6459679840, - 6459742848, - 6459443040, - 6459613456, - 6459632208, - 6459641568, - 6459650032, - 6459428560, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656544, - 6459886528, - 6459710496, - 6459868080, - 6459831008, - 6459493232, - 6459314288, - 6459535472, - 6459561168, - 6459625840, - 6459631840, - 6459717792, - 6459680768, - 6459669056, - 6459657344, - 6459812912, - 6459805856, - 6459496240, - 6459496272, - 6459798912, - 6459468864, - 6459888928 + "vtable_address": 6467095160, + "methods": [ + 6459240784, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669216, + 6459668416, + 6459669664, + 6459653248, + 6459421296, + 6459417520, + 6459420400, + 6459417552, + 6459418352, + 6459417568, + 6459417536, + 6459765552, + 6459682032, + 6459745040, + 6459445232, + 6459615648, + 6459634400, + 6459643760, + 6459652224, + 6459430752, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658736, + 6459888720, + 6459712688, + 6459870272, + 6459833200, + 6459495424, + 6459316480, + 6459537664, + 6459563360, + 6459628032, + 6459634032, + 6459719984, + 6459682960, + 6459671248, + 6459659536, + 6459815104, + 6459808048, + 6459498432, + 6459498464, + 6459801104, + 6459471056, + 6459891120 ], "bases": [ { @@ -85324,7 +85328,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468888280, + "complete_object_locator": 6468892376, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -85333,16 +85337,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467091528, + "vtable_address": 6467095592, "methods": [ - 6459414688, - 6459396512, - 6459399280, - 6459412064, - 6459411520, - 6459392896, - 6459378464, - 6459384336 + 6459416880, + 6459398704, + 6459401472, + 6459414256, + 6459413712, + 6459395088, + 6459380656, + 6459386528 ], "bases": [ { @@ -85446,7 +85450,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468888936, + "complete_object_locator": 6468893032, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -85455,61 +85459,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467155104, - "methods": [ - 6459236352, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666304, - 6459666224, - 6459667472, - 6459651056, - 6459418336, - 6459415328, - 6459418208, - 6459415360, - 6459415440, - 6459415376, - 6459415344, - 6459747520, - 6459674080, - 6459719808, - 6459430800, - 6459613456, - 6459632208, - 6459632928, - 6459643552, - 6459419920, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651504, - 6459874288, - 6459682368, - 6459839552, - 6459814864, - 6459477072, - 6459278288, - 6459498752, - 6459542448, - 6459617200, - 6459631840, - 6459714496, - 6459680768, - 6459667568, - 6459657344, - 6459807152, - 6459800096, - 6459496240, - 6459496272, - 6459793872, - 6459446544, - 6459888928 + "vtable_address": 6467159168, + "methods": [ + 6459238544, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668496, + 6459668416, + 6459669664, + 6459653248, + 6459420528, + 6459417520, + 6459420400, + 6459417552, + 6459417632, + 6459417568, + 6459417536, + 6459749712, + 6459676272, + 6459722000, + 6459432992, + 6459615648, + 6459634400, + 6459635120, + 6459645744, + 6459422112, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653696, + 6459876480, + 6459684560, + 6459841744, + 6459817056, + 6459479264, + 6459280480, + 6459500944, + 6459544640, + 6459619392, + 6459634032, + 6459716688, + 6459682960, + 6459669760, + 6459659536, + 6459809344, + 6459802288, + 6459498432, + 6459498464, + 6459796064, + 6459448736, + 6459891120 ], "bases": [ { @@ -85613,7 +85617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468931912, + "complete_object_locator": 6468936008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -85622,16 +85626,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467155536, + "vtable_address": 6467159600, "methods": [ - 6459412320, - 6459394768, - 6459396976, - 6459411680, - 6459411136, - 6459386608, - 6459376672, - 6459379632 + 6459414512, + 6459396960, + 6459399168, + 6459413872, + 6459413328, + 6459388800, + 6459378864, + 6459381824 ], "bases": [ { @@ -85735,7 +85739,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468932440, + "complete_object_locator": 6468936536, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -85744,61 +85748,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467082576, - "methods": [ - 6459236416, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "vtable_address": 6467086640, + "methods": [ + 6459238608, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -85902,7 +85906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468883488, + "complete_object_locator": 6468887584, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -85911,16 +85915,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467083008, + "vtable_address": 6467087072, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -86024,7 +86028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884136, + "complete_object_locator": 6468888232, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -86033,61 +86037,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467118488, - "methods": [ - 6459236160, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666256, - 6459666224, - 6459667472, - 6459651056, - 6459418240, - 6459415328, - 6459418208, - 6459415360, - 6459415392, - 6459415376, - 6459415344, - 6459746464, - 6459673696, - 6459718272, - 6459429984, - 6459613456, - 6459632208, - 6459632352, - 6459643120, - 6459419344, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651168, - 6459873472, - 6459680784, - 6459837680, - 6459813856, - 6459476016, - 6459275888, - 6459496304, - 6459541200, - 6459616624, - 6459631840, - 6459714304, - 6459680768, - 6459667520, - 6459657344, - 6459806768, - 6459799712, - 6459496240, - 6459496272, - 6459793536, - 6459445056, - 6459888928 + "vtable_address": 6467122552, + "methods": [ + 6459238352, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668448, + 6459668416, + 6459669664, + 6459653248, + 6459420432, + 6459417520, + 6459420400, + 6459417552, + 6459417584, + 6459417568, + 6459417536, + 6459748656, + 6459675888, + 6459720464, + 6459432176, + 6459615648, + 6459634400, + 6459634544, + 6459645312, + 6459421536, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653360, + 6459875664, + 6459682976, + 6459839872, + 6459816048, + 6459478208, + 6459278080, + 6459498496, + 6459543392, + 6459618816, + 6459634032, + 6459716496, + 6459682960, + 6459669712, + 6459659536, + 6459808960, + 6459801904, + 6459498432, + 6459498464, + 6459795728, + 6459447248, + 6459891120 ], "bases": [ { @@ -86191,7 +86195,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468905280, + "complete_object_locator": 6468909376, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -86200,16 +86204,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467118920, + "vtable_address": 6467122984, "methods": [ - 6459412176, - 6459394688, - 6459396688, - 6459411632, - 6459411088, - 6459385840, - 6459376480, - 6459378912 + 6459414368, + 6459396880, + 6459398880, + 6459413824, + 6459413280, + 6459388032, + 6459378672, + 6459381104 ], "bases": [ { @@ -86313,7 +86317,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468905800, + "complete_object_locator": 6468909896, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -86322,61 +86326,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467153616, - "methods": [ - 6459236224, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666272, - 6459666224, - 6459667472, - 6459651056, - 6459418272, - 6459415328, - 6459418208, - 6459415360, - 6459415408, - 6459415376, - 6459415344, - 6459746816, - 6459673824, - 6459718784, - 6459430256, - 6459613456, - 6459632208, - 6459632544, - 6459643264, - 6459419536, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651280, - 6459873744, - 6459681312, - 6459838304, - 6459814192, - 6459476368, - 6459276688, - 6459497120, - 6459541616, - 6459616816, - 6459631840, - 6459714368, - 6459680768, - 6459667536, - 6459657344, - 6459806896, - 6459799840, - 6459496240, - 6459496272, - 6459793648, - 6459445552, - 6459888928 + "vtable_address": 6467157680, + "methods": [ + 6459238416, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668464, + 6459668416, + 6459669664, + 6459653248, + 6459420464, + 6459417520, + 6459420400, + 6459417552, + 6459417600, + 6459417568, + 6459417536, + 6459749008, + 6459676016, + 6459720976, + 6459432448, + 6459615648, + 6459634400, + 6459634736, + 6459645456, + 6459421728, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653472, + 6459875936, + 6459683504, + 6459840496, + 6459816384, + 6459478560, + 6459278880, + 6459499312, + 6459543808, + 6459619008, + 6459634032, + 6459716560, + 6459682960, + 6459669728, + 6459659536, + 6459809088, + 6459802032, + 6459498432, + 6459498464, + 6459795840, + 6459447744, + 6459891120 ], "bases": [ { @@ -86480,7 +86484,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468930952, + "complete_object_locator": 6468935048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -86489,16 +86493,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467154048, + "vtable_address": 6467158112, "methods": [ - 6459412176, - 6459394688, - 6459396784, - 6459411648, - 6459411104, - 6459386096, - 6459376544, - 6459379152 + 6459414368, + 6459396880, + 6459398976, + 6459413840, + 6459413296, + 6459388288, + 6459378736, + 6459381344 ], "bases": [ { @@ -86602,7 +86606,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468931480, + "complete_object_locator": 6468935576, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -86611,61 +86615,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467079072, - "methods": [ - 6459236288, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666288, - 6459666224, - 6459667472, - 6459651056, - 6459418304, - 6459415328, - 6459418208, - 6459415360, - 6459415424, - 6459415376, - 6459415344, - 6459747168, - 6459673952, - 6459719296, - 6459430528, - 6459613456, - 6459632208, - 6459632736, - 6459643408, - 6459419728, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651392, - 6459874016, - 6459681840, - 6459838928, - 6459814528, - 6459476720, - 6459277488, - 6459497936, - 6459542032, - 6459617008, - 6459631840, - 6459714432, - 6459680768, - 6459667552, - 6459657344, - 6459807024, - 6459799968, - 6459496240, - 6459496272, - 6459793760, - 6459446048, - 6459888928 + "vtable_address": 6467083136, + "methods": [ + 6459238480, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668480, + 6459668416, + 6459669664, + 6459653248, + 6459420496, + 6459417520, + 6459420400, + 6459417552, + 6459417616, + 6459417568, + 6459417536, + 6459749360, + 6459676144, + 6459721488, + 6459432720, + 6459615648, + 6459634400, + 6459634928, + 6459645600, + 6459421920, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653584, + 6459876208, + 6459684032, + 6459841120, + 6459816720, + 6459478912, + 6459279680, + 6459500128, + 6459544224, + 6459619200, + 6459634032, + 6459716624, + 6459682960, + 6459669744, + 6459659536, + 6459809216, + 6459802160, + 6459498432, + 6459498464, + 6459795952, + 6459448240, + 6459891120 ], "bases": [ { @@ -86769,7 +86773,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468881424, + "complete_object_locator": 6468885520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -86778,16 +86782,16 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467079504, + "vtable_address": 6467083568, "methods": [ - 6459412176, - 6459394688, + 6459414368, 6459396880, - 6459411664, - 6459411120, - 6459386352, - 6459376608, - 6459379392 + 6459399072, + 6459413856, + 6459413312, + 6459388544, + 6459378800, + 6459381584 ], "bases": [ { @@ -86891,7 +86895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882072, + "complete_object_locator": 6468886168, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -86900,61 +86904,61 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467115944, - "methods": [ - 6459236480, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667216, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459417248, - 6459415360, - 6459415552, - 6459415376, - 6459415344, - 6459749984, - 6459674976, - 6459723392, - 6459432704, - 6459613296, - 6459632208, - 6459634272, - 6459644560, - 6459421264, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652288, - 6459876192, - 6459686544, - 6459843920, - 6459817296, - 6459479536, - 6459283888, - 6459504464, - 6459545360, - 6459628624, - 6459630960, - 6459714944, - 6459680768, - 6459667680, - 6459657344, - 6459808048, - 6459800992, - 6459496240, - 6459496272, - 6459794656, - 6459450016, - 6459888928 + "vtable_address": 6467120008, + "methods": [ + 6459238672, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669408, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459419440, + 6459417552, + 6459417744, + 6459417568, + 6459417536, + 6459752176, + 6459677168, + 6459725584, + 6459434896, + 6459615488, + 6459634400, + 6459636464, + 6459646752, + 6459423456, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654480, + 6459878384, + 6459688736, + 6459846112, + 6459819488, + 6459481728, + 6459286080, + 6459506656, + 6459547552, + 6459630816, + 6459633152, + 6459717136, + 6459682960, + 6459669872, + 6459659536, + 6459810240, + 6459803184, + 6459498432, + 6459498464, + 6459796848, + 6459452208, + 6459891120 ], "bases": [ { @@ -87030,7 +87034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903920, + "complete_object_locator": 6468908016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -87039,19 +87043,19 @@ }, { "type_name": "CConcreteToolAttrDirectMember", - "vtable_address": 6467116376, - "methods": [ - 6459360272, - 6459366304, - 6459369360, - 6459362656, - 6459365568, - 6459375424, - 6459376032, - 6459375088, - 6459359040, - 6463581392, - 6459372912 + "vtable_address": 6467120440, + "methods": [ + 6459362464, + 6459368496, + 6459371552, + 6459364848, + 6459367760, + 6459377616, + 6459378224, + 6459377280, + 6459361232, + 6463583584, + 6459375104 ], "bases": [ { @@ -87127,7 +87131,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468904328, + "complete_object_locator": 6468908424, "offset": 1176, "constructor_displacement": 0, "class_attributes": 1 @@ -87136,35 +87140,35 @@ }, { "type_name": "CControlLibTestPanel", - "vtable_address": 6466418760, + "vtable_address": 6466422920, "methods": [ 6443876544, - 6461535472, - 6452855568, - 6452857328, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452857184, + 6452858944, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -87177,12 +87181,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -87197,29 +87201,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452855280, - 6452808592, + 6461548896, + 6452856896, + 6452810208, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -87255,7 +87259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468692448, + "complete_object_locator": 6468696544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -87264,17 +87268,17 @@ }, { "type_name": "CCopyRecipientFilter", - "vtable_address": 6466119120, + "vtable_address": 6466123328, "methods": [ - 6451447312, - 6451478880, - 6451494800, - 6451480240, - 6451479744, - 6451520192, - 6451476640, - 6451450528, - 6451450608 + 6451448896, + 6451480464, + 6451496384, + 6451481824, + 6451481328, + 6451521776, + 6451478224, + 6451452112, + 6451452192 ], "bases": [ { @@ -87294,7 +87298,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609376, + "complete_object_locator": 6468613472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -87303,35 +87307,35 @@ }, { "type_name": "CCountdown", - "vtable_address": 6466851576, + "vtable_address": 6466855680, "methods": [ 6443876544, - 6461535472, - 6456629696, - 6456634416, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631472, + 6456636192, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6456608320, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6456610096, 6443844992, 6443848064, 6443844976, @@ -87344,12 +87348,12 @@ 6443913856, 6443821360, 6443848384, - 6456654976, - 6461505456, - 6461505088, - 6461526000, + 6456656752, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -87359,34 +87363,34 @@ 6443847696, 6443847680, 6443848160, - 6456639520, + 6456641296, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629200, - 6456601424, + 6461548896, + 6456630976, + 6456603200, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -87422,7 +87426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805304, + "complete_object_locator": 6468809400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -87431,35 +87435,35 @@ }, { "type_name": "CCrosshairPreviewControls", - "vtable_address": 6466365256, + "vtable_address": 6466369416, "methods": [ 6443876544, - 6461535472, - 6452579648, - 6452579664, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452581264, + 6452581280, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6452579696, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6452581312, 6443844992, 6443848064, 6443844976, @@ -87472,12 +87476,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -87487,34 +87491,34 @@ 6443847696, 6443847680, 6443848160, - 6452580192, - 6452580304, + 6452581808, + 6452581920, 6443879584, 6443817680, 6443848032, - 6461546704, - 6452579632, - 6452570400, + 6461548896, + 6452581248, + 6452572016, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -87550,7 +87554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683208, + "complete_object_locator": 6468687304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -87559,10 +87563,10 @@ }, { "type_name": "CCsgo3DSkyboxRenderer", - "vtable_address": 6466889560, + "vtable_address": 6466893672, "methods": [ - 6456988144, - 6456701072, + 6456990336, + 6456702880, 6443773360 ], "bases": [ @@ -87583,7 +87587,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468814720, + "complete_object_locator": 6468818816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -87592,10 +87596,10 @@ }, { "type_name": "CCsgoClearQuadOverdrawVisualizationTextures", - "vtable_address": 6466884136, + "vtable_address": 6466888248, "methods": [ - 6456989408, - 6456701280, + 6456991600, + 6456703088, 6443773360 ], "bases": [ @@ -87616,7 +87620,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812776, + "complete_object_locator": 6468816872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -87625,10 +87629,10 @@ }, { "type_name": "CCsgoClearStencilBitLayer", - "vtable_address": 6466891240, + "vtable_address": 6466895328, "methods": [ - 6456989616, - 6456701328, + 6456991808, + 6456703136, 6443773360 ], "bases": [ @@ -87649,7 +87653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468814928, + "complete_object_locator": 6468819024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -87658,26 +87662,26 @@ }, { "type_name": "CCsgoClientUI", - "vtable_address": 6466298848, + "vtable_address": 6466303008, "methods": [ - 6452134208, - 6452136976, - 6452256912, + 6452135792, + 6452138560, + 6452258496, 6443827632, - 6452277040, - 6452254064, - 6452185520, - 6452193936, - 6452260848, - 6452218192, - 6452193920, - 6452136080, + 6452278624, + 6452255648, + 6452187104, + 6452195520, + 6452262432, + 6452219776, + 6452195504, + 6452137664, 6443798672, 6443827392, 6443847856, 6443847728, 6443881360, - 6452217776, + 6452219360, 6443817456, 6443854480, 6443876560, @@ -87844,7 +87848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468662960, + "complete_object_locator": 6468667056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -87853,9 +87857,9 @@ }, { "type_name": "CCsgoClientUI", - "vtable_address": 6466299056, + "vtable_address": 6466303216, "methods": [ - 6452116240, + 6452117824, 6445112144, 6445254448 ], @@ -88017,7 +88021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468663208, + "complete_object_locator": 6468667304, "offset": 88, "constructor_displacement": 0, "class_attributes": 1 @@ -88026,10 +88030,10 @@ }, { "type_name": "CCsgoCopyProceduralLayerRenderer", - "vtable_address": 6466884072, + "vtable_address": 6466888184, "methods": [ - 6456989952, - 6456701376, + 6456992144, + 6456703184, 6443773360 ], "bases": [ @@ -88050,7 +88054,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812520, + "complete_object_locator": 6468816616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88059,10 +88063,10 @@ }, { "type_name": "CCsgoIconCopyAndMipMapLayerRenderer", - "vtable_address": 6466886920, + "vtable_address": 6466891032, "methods": [ - 6456990144, - 6456701424, + 6456992336, + 6456703232, 6443773360 ], "bases": [ @@ -88083,7 +88087,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813952, + "complete_object_locator": 6468818048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88092,10 +88096,10 @@ }, { "type_name": "CCsgoMBOITUpsampleProceduralLayerRender", - "vtable_address": 6466886984, + "vtable_address": 6466891096, "methods": [ - 6456990592, - 6456701472, + 6456992784, + 6456703280, 6443773360 ], "bases": [ @@ -88116,7 +88120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468814208, + "complete_object_locator": 6468818304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88125,10 +88129,10 @@ }, { "type_name": "CCsgoMagBorderProceduralLayerRenderer", - "vtable_address": 6466887048, + "vtable_address": 6466891160, "methods": [ - 6456990720, - 6456701600, + 6456992912, + 6456703408, 6443773360 ], "bases": [ @@ -88149,7 +88153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468814464, + "complete_object_locator": 6468818560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88158,10 +88162,10 @@ }, { "type_name": "CCsgoMagnifierProceduralLayerRenderer", - "vtable_address": 6466887016, + "vtable_address": 6466891128, "methods": [ - 6456990752, - 6456701648, + 6456992944, + 6456703456, 6443773360 ], "bases": [ @@ -88182,7 +88186,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468814336, + "complete_object_locator": 6468818432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88191,20 +88195,20 @@ }, { "type_name": "CCsgoPictureInPicturePipeline", - "vtable_address": 6466878072, + "vtable_address": 6466882184, "methods": [ - 6456676464, - 6456676432, - 6456680800, - 6456680784, - 6456680768, - 6456680832, - 6456680848, - 6456680864, - 6456680880, - 6456680896, - 6456680912, - 6456676448 + 6456678272, + 6456678240, + 6456682608, + 6456682592, + 6456682576, + 6456682640, + 6456682656, + 6456682672, + 6456682688, + 6456682704, + 6456682720, + 6456678256 ], "bases": [ { @@ -88238,7 +88242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468809352, + "complete_object_locator": 6468813448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88247,10 +88251,10 @@ }, { "type_name": "CCsgoPostProcessRenderer", - "vtable_address": 6466879872, + "vtable_address": 6466883984, "methods": [ - 6456993024, - 6456701696, + 6456995216, + 6456703504, 6443773360 ], "bases": [ @@ -88271,7 +88275,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468810848, + "complete_object_locator": 6468814944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88280,10 +88284,10 @@ }, { "type_name": "CCsgoQuadRenderer", - "vtable_address": 6466886824, + "vtable_address": 6466890936, "methods": [ - 6456999120, - 6456701744, + 6457001312, + 6456703552, 6443773360 ], "bases": [ @@ -88304,7 +88308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813824, + "complete_object_locator": 6468817920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88313,10 +88317,10 @@ }, { "type_name": "CCsgoResolveDepthProceduralLayerRenderer", - "vtable_address": 6466886952, + "vtable_address": 6466891064, "methods": [ - 6457000400, - 6456701872, + 6457002592, + 6456703680, 6443773360 ], "bases": [ @@ -88337,7 +88341,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468814080, + "complete_object_locator": 6468818176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88346,10 +88350,10 @@ }, { "type_name": "CCsgoResolveProceduralLayerRenderer", - "vtable_address": 6466884104, + "vtable_address": 6466888216, "methods": [ - 6457000496, - 6456701920, + 6457002688, + 6456703728, 6443773360 ], "bases": [ @@ -88370,7 +88374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812648, + "complete_object_locator": 6468816744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88379,10 +88383,10 @@ }, { "type_name": "CCsgoVanityResolveProceduralLayerRenderer", - "vtable_address": 6466484184, + "vtable_address": 6466488312, "methods": [ - 6453332448, - 6453195408, + 6453334208, + 6453197024, 6443773360 ], "bases": [ @@ -88403,7 +88407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706840, + "complete_object_locator": 6468710936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88412,7 +88416,7 @@ }, { "type_name": "CCustomGameEventManager", - "vtable_address": 6464680200, + "vtable_address": 6464684280, "methods": [ 6443748576, 6443748592, @@ -88508,7 +88512,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468262248, + "complete_object_locator": 6468266344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88517,11 +88521,11 @@ }, { "type_name": "CCustomTextureToolCache", - "vtable_address": 6466842664, + "vtable_address": 6466846776, "methods": [ - 6456540096, + 6456541872, 6443748592, - 6456540112, + 6456541888, 6443748624, 6443748640, 6443748656, @@ -88531,7 +88535,7 @@ 6443748720, 6443748736, 6443748752, - 6456540192, + 6456541968, 6443748784, 6443748800, 6443748816, @@ -88548,7 +88552,7 @@ 6443748992, 6443749008, 6443749024, - 6456540208, + 6456541984, 6443749056, 6443749072, 6443749088, @@ -88575,11 +88579,11 @@ 6443749424, 6443749440, 6443749456, - 6456540064, + 6456541840, 6443749488, - 6456540048, - 6456540224, - 6456540032 + 6456541824, + 6456542000, + 6456541808 ], "bases": [ { @@ -88599,7 +88603,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800400, + "complete_object_locator": 6468804496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88608,18 +88612,18 @@ }, { "type_name": "CDamageRecord", - "vtable_address": 6465659056, + "vtable_address": 6465663232, "methods": [ - 6448497216, - 6448478352, - 6448478416, - 6448478384, - 6448478288 + 6448498784, + 6448479920, + 6448479984, + 6448479952, + 6448479856 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468483840, + "complete_object_locator": 6468487936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88628,61 +88632,61 @@ }, { "type_name": "CDataDrivenCamera", - "vtable_address": 6466903304, - "methods": [ - 6457046512, - 6450991808, - 6451026608, - 6457054176, - 6451026336, - 6450924928, - 6457052672, - 6451021280, - 6451016672, - 6451015488, - 6451042768, - 6451042992, - 6450986864, - 6457047952, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6457047920, - 6457047888, - 6457048128, - 6450989280, - 6451046288, - 6457054160, - 6451042976, - 6450984432, - 6457047824, - 6457047856, - 6457047840, - 6450931200, - 6457054000, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952, - 6457047808 + "vtable_address": 6466907368, + "methods": [ + 6457048704, + 6450993376, + 6451028176, + 6457056368, + 6451027904, + 6450926496, + 6457054864, + 6451022848, + 6451018240, + 6451017056, + 6451044336, + 6451044560, + 6450988432, + 6457050144, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6457050112, + 6457050080, + 6457050320, + 6450990848, + 6451047856, + 6457056352, + 6451044544, + 6450986000, + 6457050016, + 6457050048, + 6457050032, + 6450932768, + 6457056192, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520, + 6457050000 ], "bases": [ { @@ -88730,7 +88734,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468815400, + "complete_object_locator": 6468819496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -88739,9 +88743,9 @@ }, { "type_name": "CDataDrivenCamera", - "vtable_address": 6466903736, + "vtable_address": 6466907800, "methods": [ - 6457052656 + 6457054848 ], "bases": [ { @@ -88789,7 +88793,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468815584, + "complete_object_locator": 6468819680, "offset": 128, "constructor_displacement": 0, "class_attributes": 1 @@ -88798,25 +88802,25 @@ }, { "type_name": "CDataGCCStrike15_v2_MatchInfo", - "vtable_address": 6464967104, + "vtable_address": 6464971200, "methods": [ - 6446226496, - 6457189536, - 6446192064, - 6446192816, - 6446193168, - 6457189584, - 6457186560, - 6446193184, - 6446195248, - 6446193808, + 6446226880, + 6457191728, + 6446192224, + 6446193200, + 6446193552, + 6457191776, + 6457188752, + 6446193568, + 6446195632, + 6446194192, 6443742160, - 6446194816, - 6457190896, - 6457192720, - 6446196144, - 6446196224, - 6446196192 + 6446195200, + 6457193088, + 6457194912, + 6446196528, + 6446196592, + 6446196576 ], "bases": [ { @@ -88850,7 +88854,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326984, + "complete_object_locator": 6468331216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88859,25 +88863,25 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup", - "vtable_address": 6464981184, + "vtable_address": 6464985136, "methods": [ - 6446341296, - 6457189536, - 6446275200, - 6446276992, - 6446277344, - 6457189584, - 6457186560, - 6446278288, - 6446285744, - 6446281600, + 6446341488, + 6457191728, + 6446275424, + 6446277152, + 6446277648, + 6457191776, + 6457188752, + 6446278592, + 6446286128, + 6446281984, 6443742160, - 6446284832, - 6457190896, - 6457192720, - 6446286688, - 6446290576, - 6446290496 + 6446285216, + 6457193088, + 6457194912, + 6446287072, + 6446290960, + 6446290880 ], "bases": [ { @@ -88911,7 +88915,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468327120, + "complete_object_locator": 6468331352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88920,27 +88924,25 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroupTeam", - "vtable_address": 6464973328, + "vtable_address": 6464977424, "methods": [ - 6446243264, - 6457189536, - 6446234352, - 6446234448, - 6446234496, - 6457189584, - 6457186560, - 6446234512, - 6446235712, - 6446234624, + 6446243632, + 6457191728, + 6446234736, + 6446234832, + 6446234880, + 6457191776, + 6457188752, + 6446234896, + 6446236096, + 6446235008, 6443742160, - 6446235376, - 6457190896, - 6457192720, - 6446235904, - 6446237136, - 6446237056, - 6457187520, - 6446241360 + 6446235760, + 6457193088, + 6457194912, + 6446236288, + 6446237504, + 6446237424 ], "bases": [ { @@ -88974,7 +88976,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468327256, + "complete_object_locator": 6468331488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -88983,25 +88985,25 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup_Picks", - "vtable_address": 6464975392, + "vtable_address": 6464979488, "methods": [ - 6446262672, - 6457189536, - 6446253664, - 6446253920, - 6446254000, - 6457189584, - 6457186560, - 6446254016, - 6446255152, - 6446254096, + 6446263040, + 6457191728, + 6446253968, + 6446254144, + 6446254384, + 6457191776, + 6457188752, + 6446254400, + 6446255536, + 6446254480, 6443742160, - 6446254768, - 6457190896, - 6457192720, - 6446256784, - 6446259104, - 6446259072 + 6446255152, + 6457193088, + 6457194912, + 6446257008, + 6446259488, + 6446259456 ], "bases": [ { @@ -89035,7 +89037,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468327392, + "complete_object_locator": 6468331624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89044,25 +89046,25 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentInfo", - "vtable_address": 6465002808, + "vtable_address": 6465006904, "methods": [ - 6446418496, - 6457189536, - 6446392224, - 6446397360, - 6446397712, - 6457189584, - 6457186560, - 6446399200, - 6446401008, - 6446399712, - 6443742160, - 6446400752, - 6457190896, - 6457192720, - 6446401232, - 6446401680, - 6446401648 + 6446418880, + 6457191728, + 6446392384, + 6446396400, + 6446397088, + 6457191776, + 6457188752, + 6446399120, + 6446401360, + 6446400080, + 6443742160, + 6446401104, + 6457193088, + 6457194912, + 6446401600, + 6446402064, + 6446402032 ], "bases": [ { @@ -89096,7 +89098,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468327528, + "complete_object_locator": 6468331760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89105,25 +89107,25 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft", - "vtable_address": 6465002264, - "methods": [ - 6446412288, - 6457189536, - 6446356832, - 6446357520, - 6446357792, - 6457189584, - 6457186560, - 6446357808, - 6446363904, - 6446358896, + "vtable_address": 6465006360, + "methods": [ + 6446412432, + 6457191728, + 6446356976, + 6446357904, + 6446358176, + 6457191776, + 6457188752, + 6446358192, + 6446364288, + 6446359280, 6443742160, - 6446361520, - 6457190896, - 6457192720, - 6446364080, - 6446364576, - 6446364560 + 6446361904, + 6457193088, + 6457194912, + 6446364464, + 6446364960, + 6446364944 ], "bases": [ { @@ -89157,7 +89159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468327664, + "complete_object_locator": 6468331896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89166,31 +89168,31 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft_Entry", - "vtable_address": 6464981616, - "methods": [ - 6446345904, - 6457189536, - 6446339504, - 6446339840, - 6446339936, - 6457189584, - 6457186560, - 6446339968, - 6446340928, - 6446340128, - 6443742160, - 6446340624, - 6457190896, - 6457192720, - 6446340944, - 6446341040, - 6446341024, - 6457187520, - 6446341856, - 6457187520, - 6446343216, - 6457187520, - 6446343136 + "vtable_address": 6464985712, + "methods": [ + 6446346272, + 6457191728, + 6446339888, + 6446340224, + 6446340256, + 6457191776, + 6457188752, + 6446340288, + 6446341312, + 6446340448, + 6443742160, + 6446341008, + 6457193088, + 6457194912, + 6446341328, + 6446341424, + 6446341408, + 6457189712, + 6446342272, + 6457189712, + 6446342816, + 6457189712, + 6446342736 ], "bases": [ { @@ -89224,7 +89226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468327800, + "complete_object_locator": 6468332032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89233,25 +89235,25 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentSection", - "vtable_address": 6464985896, + "vtable_address": 6464989992, "methods": [ - 6446385600, - 6457189536, - 6446349632, - 6446351952, - 6446352416, - 6457189584, - 6457186560, - 6446352432, - 6446354752, - 6446353344, + 6446385984, + 6457191728, + 6446350000, + 6446351968, + 6446352192, + 6457191776, + 6457188752, + 6446352208, + 6446354064, + 6446352880, 6443742160, - 6446354336, - 6457190896, - 6457192720, - 6446355792, - 6446356528, - 6446356496 + 6446353744, + 6457193088, + 6457194912, + 6446355280, + 6446356816, + 6446356800 ], "bases": [ { @@ -89285,7 +89287,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468327936, + "complete_object_locator": 6468332168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89294,19 +89296,19 @@ }, { "type_name": "CDebugOverlayAIEventFilter", - "vtable_address": 6465763976, + "vtable_address": 6465768168, "methods": [ - 6449317888, - 6449278544, - 6449212304, - 6449313520, - 6449313824, - 6449314992, - 6449300752, - 6449392192, - 6449275712, - 6449194544, - 6449257616 + 6449319440, + 6449280096, + 6449213856, + 6449315072, + 6449315376, + 6449316544, + 6449302304, + 6449393744, + 6449277264, + 6449196096, + 6449259168 ], "bases": [ { @@ -89326,7 +89328,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468509344, + "complete_object_locator": 6468513440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89335,7 +89337,7 @@ }, { "type_name": "CDebugOverlayBullets", - "vtable_address": 6465371096, + "vtable_address": 6465375256, "methods": [ 6443748576, 6443748592, @@ -89345,11 +89347,11 @@ 6443748656, 6443748672, 6443748688, - 6449264192, + 6449265744, 6443748720, 6443748736, 6443748752, - 6449264800, + 6449266352, 6443748784, 6443748800, 6443748816, @@ -89358,7 +89360,7 @@ 6443748864, 6443748880, 6443748896, - 6449324400, + 6449325952, 6443748928, 6443748944, 6443748960, @@ -89373,9 +89375,9 @@ 6443749104, 6443749120, 6443749136, - 6447911728, + 6447913296, 6443749168, - 6449318320, + 6449319872, 6443749200, 6443749216, 6443749232, @@ -89393,14 +89395,14 @@ 6443749424, 6443749440, 6443749456, - 6447916576, + 6447918144, 6443749488, - 6447893616, + 6447895184, 6447875280, - 6447928448, - 6447893648, - 6447910912, - 6447915792 + 6447930016, + 6447895216, + 6447912480, + 6447917360 ], "bases": [ { @@ -89448,7 +89450,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468436832, + "complete_object_locator": 6468440928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89457,19 +89459,19 @@ }, { "type_name": "CDebugOverlayCombinedFilter", - "vtable_address": 6465763592, + "vtable_address": 6465767784, "methods": [ - 6449317888, - 6449278576, - 6449212528, - 6449313696, - 6449313824, - 6449314448, - 6449300768, - 6449392192, - 6449275712, - 6449194528, - 6449257808 + 6449319440, + 6449280128, + 6449214080, + 6449315248, + 6449315376, + 6449316000, + 6449302320, + 6449393744, + 6449277264, + 6449196080, + 6449259360 ], "bases": [ { @@ -89489,7 +89491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508832, + "complete_object_locator": 6468512928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89498,19 +89500,19 @@ }, { "type_name": "CDebugOverlayEntityFilter", - "vtable_address": 6465763496, + "vtable_address": 6465767688, "methods": [ - 6449317872, - 6449278624, - 6449212864, - 6449313712, - 6449313824, - 6449314992, - 6449300784, - 6449392192, - 6449275712, - 6449194544, - 6449258512 + 6449319424, + 6449280176, + 6449214416, + 6449315264, + 6449315376, + 6449316544, + 6449302336, + 6449393744, + 6449277264, + 6449196096, + 6449260064 ], "bases": [ { @@ -89530,7 +89532,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508704, + "complete_object_locator": 6468512800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -89539,7 +89541,7 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6465759176, + "vtable_address": 6465763368, "methods": [ 6443748576, 6443748592, @@ -89549,17 +89551,17 @@ 6443748656, 6443748672, 6443748688, - 6449263488, + 6449265040, 6443748720, 6443748736, 6443748752, - 6449264208, + 6449265760, 6443748784, 6443748800, - 6449325440, + 6449326992, 6443748832, 6443748848, - 6449324144, + 6449325696, 6443748880, 6443748896, 6443748912, @@ -89597,11 +89599,11 @@ 6443749424, 6443749440, 6443749456, - 6449373760, + 6449375312, 6443749488, - 6449212080, - 6449164544, - 6449393968 + 6449213632, + 6449166096, + 6449395520 ], "bases": [ { @@ -89677,7 +89679,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508056, + "complete_object_locator": 6468512152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -89686,14 +89688,14 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6465759672, + "vtable_address": 6465763864, "methods": [ - 6449163648, - 6449374144, - 6449202704, - 6449177040, - 6449318032, - 6449202800 + 6449165200, + 6449375696, + 6449204256, + 6449178592, + 6449319584, + 6449204352 ], "bases": [ { @@ -89769,7 +89771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508336, + "complete_object_locator": 6468512432, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -89778,9 +89780,9 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6465759728, + "vtable_address": 6465763920, "methods": [ - 6449281824 + 6449283376 ], "bases": [ { @@ -89856,7 +89858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508376, + "complete_object_locator": 6468512472, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -89865,9 +89867,9 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6465759744, + "vtable_address": 6465763936, "methods": [ - 6449318304 + 6449319856 ], "bases": [ { @@ -89943,7 +89945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508416, + "complete_object_locator": 6468512512, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -89952,7 +89954,7 @@ }, { "type_name": "CDebugOverlayGrenades", - "vtable_address": 6465374784, + "vtable_address": 6465378944, "methods": [ 6443748576, 6443748592, @@ -89962,11 +89964,11 @@ 6443748656, 6443748672, 6443748688, - 6449264192, + 6449265744, 6443748720, 6443748736, 6443748752, - 6449264800, + 6449266352, 6443748784, 6443748800, 6443748816, @@ -89975,7 +89977,7 @@ 6443748864, 6443748880, 6443748896, - 6449324400, + 6449325952, 6443748928, 6443748944, 6443748960, @@ -89992,7 +89994,7 @@ 6443749136, 6443749152, 6443749168, - 6449318320, + 6449319872, 6443749200, 6443749216, 6443749232, @@ -90010,30 +90012,30 @@ 6443749424, 6443749440, 6443749456, - 6447953520, + 6447955088, 6443749488, - 6447942048, - 6447934944, - 6447958096, - 6449231040, - 6449311488, - 6449368448, - 6447953648, - 6447950160, - 6447942080, - 6447942112, - 6447949456, - 6447942096, - 6447951936, - 6447950416, - 6447953920, - 6447953904, - 6447942144, - 6447949152, - 6447942128, - 6449371488, - 6449290688, - 6449291104 + 6447943616, + 6447936512, + 6447959664, + 6449232592, + 6449313040, + 6449370000, + 6447955216, + 6447951728, + 6447943648, + 6447943680, + 6447951024, + 6447943664, + 6447953504, + 6447951984, + 6447955488, + 6447955472, + 6447943712, + 6447950720, + 6447943696, + 6449373040, + 6449292240, + 6449292656 ], "bases": [ { @@ -90095,7 +90097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468437888, + "complete_object_locator": 6468441984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90104,19 +90106,19 @@ }, { "type_name": "CDebugOverlayPathfindingFilter", - "vtable_address": 6465764072, + "vtable_address": 6465768264, "methods": [ - 6449317888, - 6449278656, - 6449213824, - 6449313872, - 6449313824, - 6449314992, - 6449300816, - 6449392192, - 6449275712, - 6449194544, - 6449258704 + 6449319440, + 6449280208, + 6449215376, + 6449315424, + 6449315376, + 6449316544, + 6449302368, + 6449393744, + 6449277264, + 6449196096, + 6449260256 ], "bases": [ { @@ -90136,7 +90138,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468509472, + "complete_object_locator": 6468513568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90145,7 +90147,7 @@ }, { "type_name": "CDebugOverlayRecorderBase", - "vtable_address": 6465764184, + "vtable_address": 6465768376, "methods": [ 6443748576, 6443748592, @@ -90155,11 +90157,11 @@ 6443748656, 6443748672, 6443748688, - 6449264192, + 6449265744, 6443748720, 6443748736, 6443748752, - 6449264800, + 6449266352, 6443748784, 6443748800, 6443748816, @@ -90168,7 +90170,7 @@ 6443748864, 6443748880, 6443748896, - 6449324400, + 6449325952, 6443748928, 6443748944, 6443748960, @@ -90185,7 +90187,7 @@ 6443749136, 6443749152, 6443749168, - 6449318320, + 6449319872, 6443749200, 6443749216, 6443749232, @@ -90203,30 +90205,30 @@ 6443749424, 6443749440, 6443749456, - 6449373792, + 6449375344, 6443749488, - 6449212096, - 6449164608, - 6449393984, - 6449231040, - 6449311488, - 6449368448, - 6449380688, - 6449301696, - 6447942080, - 6447942112, - 6447949456, - 6447942096, - 6447951936, - 6447950416, - 6447953920, - 6447953904, - 6447942144, - 6463705588, - 6447942128, - 6449371488, - 6449290688, - 6449291104 + 6449213648, + 6449166160, + 6449395536, + 6449232592, + 6449313040, + 6449370000, + 6449382240, + 6449303248, + 6447943648, + 6447943680, + 6447951024, + 6447943664, + 6447953504, + 6447951984, + 6447955488, + 6447955472, + 6447943712, + 6463707780, + 6447943696, + 6449373040, + 6449292240, + 6449292656 ], "bases": [ { @@ -90274,7 +90276,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508456, + "complete_object_locator": 6468512552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90283,19 +90285,19 @@ }, { "type_name": "CDebugOverlayScheduleFilter", - "vtable_address": 6465763784, + "vtable_address": 6465767976, "methods": [ - 6449317888, - 6449278672, - 6449214512, - 6449314032, - 6449313824, - 6449315152, - 6449300832, - 6449392192, - 6449275712, - 6449194544, - 6449258880 + 6449319440, + 6449280224, + 6449216064, + 6449315584, + 6449315376, + 6449316704, + 6449302384, + 6449393744, + 6449277264, + 6449196096, + 6449260432 ], "bases": [ { @@ -90315,7 +90317,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468509088, + "complete_object_locator": 6468513184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90324,19 +90326,19 @@ }, { "type_name": "CDebugOverlayTacticalFilter", - "vtable_address": 6465763688, + "vtable_address": 6465767880, "methods": [ - 6449317888, - 6449278704, - 6449214528, - 6449314128, - 6449313824, - 6449314992, - 6449300864, - 6449392192, - 6449275712, - 6449194544, - 6449259072 + 6449319440, + 6449280256, + 6449216080, + 6449315680, + 6449315376, + 6449316544, + 6449302416, + 6449393744, + 6449277264, + 6449196096, + 6449260624 ], "bases": [ { @@ -90356,7 +90358,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508960, + "complete_object_locator": 6468513056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90365,19 +90367,19 @@ }, { "type_name": "CDebugOverlayTaskFilter", - "vtable_address": 6465763880, + "vtable_address": 6465768072, "methods": [ - 6449317888, - 6449278720, - 6449214544, - 6449314208, - 6449313824, - 6449314992, - 6449300880, - 6449392192, - 6449275712, - 6449194544, - 6449259264 + 6449319440, + 6449280272, + 6449216096, + 6449315760, + 6449315376, + 6449316544, + 6449302432, + 6449393744, + 6449277264, + 6449196096, + 6449260816 ], "bases": [ { @@ -90397,7 +90399,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468509216, + "complete_object_locator": 6468513312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90406,19 +90408,19 @@ }, { "type_name": "CDebugOverlayTextFilter", - "vtable_address": 6465763392, + "vtable_address": 6465767584, "methods": [ - 6449317888, - 6449278752, - 6449214560, - 6449313840, - 6449314304, - 6449314992, - 6449300912, - 6449392192, - 6449275712, - 6449194544, - 6449259456 + 6449319440, + 6449280304, + 6449216112, + 6449315392, + 6449315856, + 6449316544, + 6449302464, + 6449393744, + 6449277264, + 6449196096, + 6449261008 ], "bases": [ { @@ -90438,7 +90440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508576, + "complete_object_locator": 6468512672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90447,7 +90449,7 @@ }, { "type_name": "CDebugOverlayWindow", - "vtable_address": 6465758640, + "vtable_address": 6465762832, "methods": [ 6443748576, 6443748592, @@ -90457,11 +90459,11 @@ 6443748656, 6443748672, 6443748688, - 6449264192, + 6449265744, 6443748720, 6443748736, 6443748752, - 6449264800, + 6449266352, 6443748784, 6443748800, 6443748816, @@ -90470,7 +90472,7 @@ 6443748864, 6443748880, 6443748896, - 6449324400, + 6449325952, 6443748928, 6443748944, 6443748960, @@ -90487,7 +90489,7 @@ 6443749136, 6443749152, 6443749168, - 6449318320, + 6449319872, 6443749200, 6443749216, 6443749232, @@ -90505,14 +90507,14 @@ 6443749424, 6443749440, 6443749456, - 6449373792, + 6449375344, 6443749488, - 6449212096, - 6449164672, - 6449393984, - 6463705588, - 6449311696, - 6449368640 + 6449213648, + 6449166224, + 6449395536, + 6463707780, + 6449313248, + 6449370192 ], "bases": [ { @@ -90546,7 +90548,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468508016, + "complete_object_locator": 6468512112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90555,7 +90557,7 @@ }, { "type_name": "CDebugOverlayWorldModel", - "vtable_address": 6465375448, + "vtable_address": 6465379608, "methods": [ 6443748576, 6443748592, @@ -90565,11 +90567,11 @@ 6443748656, 6443748672, 6443748688, - 6449264192, + 6449265744, 6443748720, 6443748736, 6443748752, - 6449264800, + 6449266352, 6443748784, 6443748800, 6443748816, @@ -90578,7 +90580,7 @@ 6443748864, 6443748880, 6443748896, - 6449324400, + 6449325952, 6443748928, 6443748944, 6443748960, @@ -90595,7 +90597,7 @@ 6443749136, 6443749152, 6443749168, - 6449318320, + 6449319872, 6443749200, 6443749216, 6443749232, @@ -90613,14 +90615,14 @@ 6443749424, 6443749440, 6443749456, - 6447953584, + 6447955152, 6443749488, - 6447942064, - 6447935008, - 6447958112, - 6447942160, - 6449311696, - 6449368640 + 6447943632, + 6447936576, + 6447959680, + 6447943728, + 6449313248, + 6449370192 ], "bases": [ { @@ -90668,7 +90670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468438144, + "complete_object_locator": 6468442240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90677,10 +90679,10 @@ }, { "type_name": "CDebugSnapshotCache", - "vtable_address": 6464676008, + "vtable_address": 6464680088, "methods": [ 6444644800, - 6449331936 + 6449333488 ], "bases": [ { @@ -90700,7 +90702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468261008, + "complete_object_locator": 6468265104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90709,12 +90711,12 @@ }, { "type_name": "CDebugVisualizerAbsTime", - "vtable_address": 6467023472, + "vtable_address": 6467027536, "methods": [ - 6458815712, - 6458824384, - 6458821152, - 6458815968, + 6458817904, + 6458826576, + 6458823344, + 6458818160, 6444873712, 6444697680 ], @@ -90736,7 +90738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468863808, + "complete_object_locator": 6468867904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90745,16 +90747,16 @@ }, { "type_name": "CDecalEmitterSystem", - "vtable_address": 6465750848, + "vtable_address": 6465755040, "methods": [ 6443748576, 6443748592, 6443748608, 6443748624, - 6449079936, + 6449081488, 6443748656, 6443748672, - 6449079904, + 6449081456, 6443748704, 6443748720, 6443748736, @@ -90803,11 +90805,11 @@ 6443749424, 6443749440, 6443749456, - 6449079872, + 6449081424, 6443749488, - 6449079856, - 6449086688, - 6449079840 + 6449081408, + 6449088240, + 6449081392 ], "bases": [ { @@ -90841,7 +90843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468503096, + "complete_object_locator": 6468507192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -90850,7 +90852,7 @@ }, { "type_name": "CDecalGameSystem", - "vtable_address": 6464681368, + "vtable_address": 6464685448, "methods": [ 6443748576, 6443748592, @@ -90960,7 +90962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468263680, + "complete_object_locator": 6468267776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -90969,7 +90971,7 @@ }, { "type_name": "CDecalSaveRestoreBlockHandler", - "vtable_address": 6464663152, + "vtable_address": 6464667328, "methods": [ 6444488032, 6444489280, @@ -91013,7 +91015,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254568, + "complete_object_locator": 6468258664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91022,35 +91024,35 @@ }, { "type_name": "CDeepStatsPanel", - "vtable_address": 6466574240, + "vtable_address": 6466578368, "methods": [ 6443876544, - 6461535472, - 6453996672, - 6454003280, - 6454030800, - 6461546688, - 6461559344, + 6461537664, + 6453998432, + 6454005040, + 6454032560, + 6461548880, + 6461561536, 6443845056, - 6454024368, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6454026128, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453976336, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453978096, 6443844992, 6443848064, 6443844976, @@ -91063,12 +91065,12 @@ 6443913856, 6443821360, 6443848384, - 6454047680, - 6461505456, - 6461505088, - 6461526000, + 6454049440, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -91078,39 +91080,39 @@ 6443847696, 6443847680, 6443848160, - 6454026960, - 6454030656, + 6454028720, + 6454032416, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453996528, - 6453975072, + 6461548896, + 6453998288, + 6453976832, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6454027712, - 6453985136, - 6454023184 + 6454029472, + 6453986896, + 6454024944 ], "bases": [ { @@ -91144,7 +91146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728896, + "complete_object_locator": 6468732992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91153,25 +91155,25 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 6465702848, + "vtable_address": 6465707184, "methods": [ 6443748576, 6443748592, - 6448744112, - 6448744192, - 6448745328, + 6448745680, + 6448745760, + 6448746896, 6443748656, 6443748672, - 6448745776, - 6448745792, - 6448745536, + 6448747344, + 6448747360, + 6448747104, 6443748736, 6443748752, 6443748768, 6443748784, 6443748800, 6443748816, - 6448745760, + 6448747328, 6443748848, 6443748864, 6443748880, @@ -91182,7 +91184,7 @@ 6443748960, 6443748976, 6443748992, - 6448745552, + 6448747120, 6443749024, 6443749040, 6443749056, @@ -91211,11 +91213,11 @@ 6443749424, 6443749440, 6443749456, - 6448744080, + 6448745648, 6443749488, - 6448744064, - 6448746944, - 6448744048 + 6448745632, + 6448748512, + 6448745616 ], "bases": [ { @@ -91263,7 +91265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489792, + "complete_object_locator": 6468493888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -91272,16 +91274,16 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 6465703344, + "vtable_address": 6465707680, "methods": [ - 6448745932, - 6448745808, - 6448745824, - 6448745840, - 6448745856, - 6448745872, - 6448745904, - 6448745888 + 6448747500, + 6448747376, + 6448747392, + 6448747408, + 6448747424, + 6448747440, + 6448747472, + 6448747456 ], "bases": [ { @@ -91329,7 +91331,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489976, + "complete_object_locator": 6468494072, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -91338,10 +91340,10 @@ }, { "type_name": "CDefaultSoftbodyAttrExecutor", - "vtable_address": 6465730056, + "vtable_address": 6465734248, "methods": [ - 6448840624, - 6448840528 + 6448842192, + 6448842096 ], "bases": [ { @@ -91361,7 +91363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498824, + "complete_object_locator": 6468502920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91370,19 +91372,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467104816, - "methods": [ - 6459360752, - 6459367024, - 6459370400, - 6459363696, - 6459365568, - 6459375584, - 6459376192, - 6459375248, - 6459359760, - 6463581392, - 6459373552 + "vtable_address": 6467108880, + "methods": [ + 6459362944, + 6459369216, + 6459372592, + 6459365888, + 6459367760, + 6459377776, + 6459378384, + 6459377440, + 6459361952, + 6463583584, + 6459375744 ], "bases": [ { @@ -91402,7 +91404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468897784, + "complete_object_locator": 6468901880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91411,19 +91413,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467130184, + "vtable_address": 6467134248, "methods": [ - 6459360848, - 6459367168, - 6459370608, - 6459363904, - 6459365568, - 6459375616, - 6459376224, - 6459375248, - 6459359760, - 6463581392, - 6459373680 + 6459363040, + 6459369360, + 6459372800, + 6459366096, + 6459367760, + 6459377808, + 6459378416, + 6459377440, + 6459361952, + 6463583584, + 6459375872 ], "bases": [ { @@ -91443,7 +91445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468913248, + "complete_object_locator": 6468917344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91452,19 +91454,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467145696, + "vtable_address": 6467149760, "methods": [ - 6459360944, - 6459367312, - 6459370816, - 6459364112, - 6459365568, - 6459375648, - 6459376256, - 6459375248, - 6459359760, - 6463581392, - 6459373808 + 6459363136, + 6459369504, + 6459373008, + 6459366304, + 6459367760, + 6459377840, + 6459378448, + 6459377440, + 6459361952, + 6463583584, + 6459376000 ], "bases": [ { @@ -91484,7 +91486,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468925336, + "complete_object_locator": 6468929432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91493,19 +91495,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467162736, - "methods": [ - 6459361040, - 6459367456, - 6459371024, - 6459364320, - 6459365568, - 6459375680, - 6459376288, - 6459375248, - 6459359760, - 6463581392, - 6459373936 + "vtable_address": 6467166800, + "methods": [ + 6459363232, + 6459369648, + 6459373216, + 6459366512, + 6459367760, + 6459377872, + 6459378480, + 6459377440, + 6459361952, + 6463583584, + 6459376128 ], "bases": [ { @@ -91525,7 +91527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937864, + "complete_object_locator": 6468941960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91534,19 +91536,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467139344, - "methods": [ - 6459361136, - 6459367600, - 6459371232, - 6459364528, - 6459365568, - 6459375712, - 6459376320, - 6459375248, - 6459359760, - 6463581392, - 6459374288 + "vtable_address": 6467143408, + "methods": [ + 6459363328, + 6459369792, + 6459373424, + 6459366720, + 6459367760, + 6459377904, + 6459378512, + 6459377440, + 6459361952, + 6463583584, + 6459376480 ], "bases": [ { @@ -91566,7 +91568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468919424, + "complete_object_locator": 6468923520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91575,19 +91577,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467099208, - "methods": [ - 6459361232, - 6459367744, - 6459371440, - 6459364736, - 6459365568, - 6459375744, - 6459376352, - 6459375248, - 6459359760, - 6463581392, - 6459374416 + "vtable_address": 6467103272, + "methods": [ + 6459363424, + 6459369936, + 6459373632, + 6459366928, + 6459367760, + 6459377936, + 6459378544, + 6459377440, + 6459361952, + 6463583584, + 6459376608 ], "bases": [ { @@ -91607,7 +91609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468894128, + "complete_object_locator": 6468898224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91616,19 +91618,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467070504, - "methods": [ - 6459361328, - 6459367888, - 6459371648, - 6459364944, - 6459365568, - 6459375776, - 6459376384, - 6459375248, - 6459359760, - 6463581392, - 6459374544 + "vtable_address": 6467074568, + "methods": [ + 6459363520, + 6459370080, + 6459373840, + 6459367136, + 6459367760, + 6459377968, + 6459378576, + 6459377440, + 6459361952, + 6463583584, + 6459376736 ], "bases": [ { @@ -91648,7 +91650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468876632, + "complete_object_locator": 6468880728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91657,19 +91659,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467151552, + "vtable_address": 6467155616, "methods": [ - 6459361424, - 6459368032, - 6459371856, - 6459365152, - 6459365568, - 6459375808, - 6459376416, - 6459375248, - 6459359760, - 6463581392, - 6459374672 + 6459363616, + 6459370224, + 6459374048, + 6459367344, + 6459367760, + 6459378000, + 6459378608, + 6459377440, + 6459361952, + 6463583584, + 6459376864 ], "bases": [ { @@ -91689,7 +91691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468929664, + "complete_object_locator": 6468933760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91698,19 +91700,19 @@ }, { "type_name": "CDefaultToolAttrTableForStruct", - "vtable_address": 6467147320, - "methods": [ - 6459361520, - 6459368176, - 6459372064, - 6459365360, - 6459365568, - 6459375840, - 6459376448, - 6459375248, - 6459359760, - 6463581392, - 6459374800 + "vtable_address": 6467151384, + "methods": [ + 6459363712, + 6459370368, + 6459374256, + 6459367552, + 6459367760, + 6459378032, + 6459378640, + 6459377440, + 6459361952, + 6463583584, + 6459376992 ], "bases": [ { @@ -91730,7 +91732,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468926424, + "complete_object_locator": 6468930520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91739,7 +91741,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6464676848, + "vtable_address": 6464680928, "methods": [ 6444950864 ], @@ -91761,7 +91763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468261632, + "complete_object_locator": 6468265728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91770,9 +91772,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6465707072, + "vtable_address": 6465711424, "methods": [ - 6448749792 + 6448751360 ], "bases": [ { @@ -91792,7 +91794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491232, + "complete_object_locator": 6468495328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91801,7 +91803,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6464414560, + "vtable_address": 6464418656, "methods": [ 6443869168 ], @@ -91823,7 +91825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468217360, + "complete_object_locator": 6468221456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91832,9 +91834,9 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6465463392, + "vtable_address": 6465467568, "methods": [ - 6448212256 + 6448213824 ], "bases": [ { @@ -91854,7 +91856,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468453840, + "complete_object_locator": 6468457936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91863,27 +91865,27 @@ }, { "type_name": "CDemoAnimationData", - "vtable_address": 6464989784, + "vtable_address": 6464993880, "methods": [ - 6446405488, - 6457189536, + 6446405872, + 6457191728, 6444865520, - 6446390096, - 6446390176, - 6457189584, - 6457186560, - 6446390192, + 6446390480, + 6446390560, + 6457191776, + 6457188752, + 6446390576, 6444784720, - 6446390416, + 6446390800, 6443742160, - 6446391232, - 6457190896, - 6457192720, - 6446391824, - 6446394208, - 6446393088, - 6457187520, - 6446404368 + 6446391616, + 6457193088, + 6457194912, + 6446392176, + 6446394016, + 6446393104, + 6457189712, + 6446404672 ], "bases": [ { @@ -91917,7 +91919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350968, + "complete_object_locator": 6468355200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91926,25 +91928,25 @@ }, { "type_name": "CDemoAnimationHeader", - "vtable_address": 6464985320, + "vtable_address": 6464989416, "methods": [ - 6446384976, - 6457189536, + 6446385360, + 6457191728, 6444865536, - 6446369296, - 6446369392, - 6457189584, - 6457186560, - 6446369472, + 6446369104, + 6446369584, + 6457191776, + 6457188752, + 6446369664, 6444784736, - 6446369808, + 6446370192, 6443742160, - 6446370720, - 6457190896, - 6457192720, - 6446373280, - 6446374800, - 6446374784 + 6446371088, + 6457193088, + 6457194912, + 6446373648, + 6446375168, + 6446375136 ], "bases": [ { @@ -91978,7 +91980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351008, + "complete_object_locator": 6468355240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -91987,25 +91989,25 @@ }, { "type_name": "CDemoClassInfo", - "vtable_address": 6464978800, - "methods": [ - 6446318128, - 6457189536, - 6446288608, - 6446290832, - 6446291072, - 6457189584, - 6457186560, - 6446291088, - 6446292064, - 6446291424, - 6443742160, - 6446291856, - 6457190896, - 6457192720, - 6446292256, - 6446292576, - 6446292544 + "vtable_address": 6464982896, + "methods": [ + 6446318512, + 6457191728, + 6446288992, + 6446291216, + 6446291456, + 6457191776, + 6457188752, + 6446291472, + 6446292448, + 6446291808, + 6443742160, + 6446292240, + 6457193088, + 6457194912, + 6446292640, + 6446292960, + 6446292928 ], "bases": [ { @@ -92039,7 +92041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351048, + "complete_object_locator": 6468355280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92048,29 +92050,27 @@ }, { "type_name": "CDemoClassInfo_class_t", - "vtable_address": 6464975968, + "vtable_address": 6464980064, "methods": [ - 6446264960, - 6457189536, - 6446253984, - 6446255168, - 6446255344, - 6457189584, - 6457186560, - 6446255376, - 6446257568, - 6446255808, + 6446264912, + 6457191728, + 6446254208, + 6446255552, + 6446255728, + 6457191776, + 6457188752, + 6446255760, + 6446257952, + 6446256032, 6443742160, - 6446256800, - 6457190896, - 6457192720, - 6446259056, - 6446259680, - 6446259632, - 6457187520, - 6446262832, - 6457187520, - 6446264416 + 6446257184, + 6457193088, + 6457194912, + 6446259440, + 6446260064, + 6446260016, + 6457189712, + 6446263216 ], "bases": [ { @@ -92104,7 +92104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351184, + "complete_object_locator": 6468355416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92113,29 +92113,29 @@ }, { "type_name": "CDemoConsoleCmd", - "vtable_address": 6464971552, + "vtable_address": 6464975648, "methods": [ - 6446230832, - 6457189536, - 6446219792, + 6446231200, + 6457191728, + 6446220000, 6446221088, - 6446221280, - 6457189584, - 6457186560, - 6446221312, - 6446225504, - 6446221952, + 6446221152, + 6457191776, + 6457188752, + 6446221168, + 6446222816, + 6446221712, 6443742160, - 6446224048, - 6457190896, - 6457192720, - 6446226048, - 6446226256, - 6446226224, - 6457187520, - 6446226720, - 6457187520, - 6446227008 + 6446222704, + 6457193088, + 6457194912, + 6446226000, + 6446226608, + 6446226592, + 6457189712, + 6446227104, + 6457189712, + 6446227392 ], "bases": [ { @@ -92169,7 +92169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351320, + "complete_object_locator": 6468355552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92178,27 +92178,27 @@ }, { "type_name": "CDemoCustomData", - "vtable_address": 6464980400, + "vtable_address": 6464984496, "methods": [ - 6446338048, - 6457189536, - 6446326672, - 6446327232, - 6446327888, - 6457189584, - 6457186560, - 6446327904, - 6446329152, - 6446328432, + 6446338432, + 6457191728, + 6446327056, + 6446327616, + 6446328272, + 6457191776, + 6457188752, + 6446328288, + 6446329536, + 6446328816, 6443742160, - 6446328928, - 6457190896, - 6457192720, - 6446329664, - 6446331856, - 6446331824, - 6457388960, - 6457389040 + 6446329312, + 6457193088, + 6457194912, + 6446330048, + 6446332240, + 6446332208, + 6457391152, + 6457391232 ], "bases": [ { @@ -92232,7 +92232,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351456, + "complete_object_locator": 6468355688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92241,25 +92241,25 @@ }, { "type_name": "CDemoCustomDataCallbacks", - "vtable_address": 6464983384, + "vtable_address": 6464987480, "methods": [ - 6446357360, - 6457189536, - 6446342320, - 6446343328, - 6446343424, - 6457189584, - 6457186560, - 6446343456, - 6446346064, - 6446343840, + 6446357744, + 6457191728, + 6446342240, + 6446343440, + 6446343536, + 6457191776, + 6457188752, + 6446343568, + 6446346432, + 6446344208, 6443742160, - 6446345040, - 6457190896, - 6457192720, - 6446346160, - 6446347872, - 6446347440 + 6446345408, + 6457193088, + 6457194912, + 6446346464, + 6446348000, + 6446347648 ], "bases": [ { @@ -92293,7 +92293,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351592, + "complete_object_locator": 6468355824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92302,27 +92302,27 @@ }, { "type_name": "CDemoFileHeader", - "vtable_address": 6464907608, - "methods": [ - 6445965216, - 6457189536, - 6445932336, - 6445933040, - 6445933360, - 6457189584, - 6457186560, - 6445933376, - 6445937200, - 6445934352, - 6443742160, - 6445935920, - 6457190896, - 6457192720, - 6445938352, - 6445938784, - 6445938560, - 6457187520, - 6445957024 + "vtable_address": 6464911704, + "methods": [ + 6445965456, + 6457191728, + 6445932464, + 6445933408, + 6445933744, + 6457191776, + 6457188752, + 6445933760, + 6445937504, + 6445934576, + 6443742160, + 6445936224, + 6457193088, + 6457194912, + 6445938736, + 6445939168, + 6445938944, + 6457189712, + 6445957408 ], "bases": [ { @@ -92356,7 +92356,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351728, + "complete_object_locator": 6468355960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92365,33 +92365,33 @@ }, { "type_name": "CDemoFileInfo", - "vtable_address": 6464946304, + "vtable_address": 6464950400, "methods": [ - 6446143040, - 6457189536, - 6446124096, - 6446125616, - 6446125872, - 6457189584, - 6457186560, - 6446126128, - 6446128336, - 6446126928, + 6446142864, + 6457191728, + 6446124480, + 6446126000, + 6446126256, + 6457191776, + 6457188752, + 6446126448, + 6446128720, + 6446127248, 6443742160, - 6446127968, - 6457190896, - 6457192720, - 6446128592, - 6446128640, - 6446128624, - 6457187520, - 6446137152, - 6457187520, - 6446137616, - 6457187520, - 6446137856, - 6457187520, - 6446139968 + 6446128352, + 6457193088, + 6457194912, + 6446128976, + 6446129024, + 6446129008, + 6457189712, + 6446137520, + 6457189712, + 6446138080, + 6457189712, + 6446137760, + 6457189712, + 6446142368 ], "bases": [ { @@ -92425,7 +92425,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468351864, + "complete_object_locator": 6468356096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92434,27 +92434,27 @@ }, { "type_name": "CDemoFullPacket", - "vtable_address": 6464950552, + "vtable_address": 6464954648, "methods": [ - 6446170560, - 6457189536, - 6446160544, - 6446160880, - 6446161136, - 6457189584, - 6457186560, - 6446161296, - 6446163088, - 6446161792, + 6446170928, + 6457191728, + 6446160928, + 6446161264, + 6446161520, + 6457191776, + 6457188752, + 6446161536, + 6446163472, + 6446162032, 6443742160, - 6446162896, - 6457190896, - 6457192720, - 6446164544, - 6446165440, - 6446165424, - 6457187520, - 6446169136 + 6446163280, + 6457193088, + 6457194912, + 6446164928, + 6446165824, + 6446165808, + 6457189712, + 6446169520 ], "bases": [ { @@ -92488,7 +92488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352000, + "complete_object_locator": 6468356232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92497,7 +92497,7 @@ }, { "type_name": "CDemoMessagePB<16,class CDemoAnimationData>", - "vtable_address": 6464675208, + "vtable_address": 6464679288, "methods": [ 6444569776, 6444814528, @@ -92566,7 +92566,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468260048, + "complete_object_locator": 6468264144, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -92575,25 +92575,25 @@ }, { "type_name": "CDemoMessagePB<16,class CDemoAnimationData>", - "vtable_address": 6464675264, + "vtable_address": 6464679344, "methods": [ 6444568800, - 6457189536, + 6457191728, 6444865520, - 6446390096, - 6446390176, - 6457189584, - 6457186560, - 6446390192, + 6446390480, + 6446390560, + 6457191776, + 6457188752, + 6446390576, 6444784720, - 6446390416, + 6446390800, 6443742160, - 6446391232, - 6457190896, - 6457192720, - 6446391824, - 6446394208, - 6446393088 + 6446391616, + 6457193088, + 6457194912, + 6446392176, + 6446394016, + 6446393104 ], "bases": [ { @@ -92655,7 +92655,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468260336, + "complete_object_locator": 6468264432, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -92664,7 +92664,7 @@ }, { "type_name": "CDemoMessagePB<17,class CDemoAnimationHeader>", - "vtable_address": 6464674880, + "vtable_address": 6464678960, "methods": [ 6444569968, 6444814544, @@ -92733,7 +92733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468260376, + "complete_object_locator": 6468264472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -92742,25 +92742,25 @@ }, { "type_name": "CDemoMessagePB<17,class CDemoAnimationHeader>", - "vtable_address": 6464674936, + "vtable_address": 6464679016, "methods": [ 6444568812, - 6457189536, + 6457191728, 6444865536, - 6446369296, - 6446369392, - 6457189584, - 6457186560, - 6446369472, + 6446369104, + 6446369584, + 6457191776, + 6457188752, + 6446369664, 6444784736, - 6446369808, + 6446370192, 6443742160, - 6446370720, - 6457190896, - 6457192720, - 6446373280, - 6446374800, - 6446374784 + 6446371088, + 6457193088, + 6457194912, + 6446373648, + 6446375168, + 6446375136 ], "bases": [ { @@ -92822,7 +92822,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468260664, + "complete_object_locator": 6468264760, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -92831,25 +92831,25 @@ }, { "type_name": "CDemoPacket", - "vtable_address": 6464948192, - "methods": [ - 6446152448, - 6457189536, - 6446147536, - 6446147808, - 6446147872, - 6457189584, - 6457186560, - 6446147888, - 6446148560, - 6446147952, + "vtable_address": 6464952288, + "methods": [ + 6446152832, + 6457191728, + 6446147760, + 6446148032, + 6446148096, + 6457191776, + 6457188752, + 6446148272, + 6446148944, + 6446148336, 6443742160, - 6446148304, - 6457190896, - 6457192720, - 6446148576, - 6446149184, - 6446148928 + 6446148688, + 6457193088, + 6457194912, + 6446148960, + 6446149328, + 6446149312 ], "bases": [ { @@ -92883,7 +92883,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352136, + "complete_object_locator": 6468356368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92892,25 +92892,25 @@ }, { "type_name": "CDemoRecovery", - "vtable_address": 6465031992, - "methods": [ - 6446591088, - 6457189536, - 6446581728, - 6446582880, - 6446583040, - 6457189584, - 6457186560, - 6446583056, - 6446585264, - 6446583968, - 6443742160, - 6446585104, - 6457190896, - 6457192720, - 6446585856, - 6446586464, - 6446586448 + "vtable_address": 6465036088, + "methods": [ + 6446591472, + 6457191728, + 6446581088, + 6446582960, + 6446583088, + 6457191776, + 6457188752, + 6446583200, + 6446585120, + 6446583616, + 6443742160, + 6446584960, + 6457193088, + 6457194912, + 6446585872, + 6446586752, + 6446586736 ], "bases": [ { @@ -92944,7 +92944,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352272, + "complete_object_locator": 6468356504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -92953,27 +92953,25 @@ }, { "type_name": "CDemoRecovery_DemoInitialSpawnGroupEntry", - "vtable_address": 6465027488, + "vtable_address": 6465031440, "methods": [ - 6446573056, - 6457189536, - 6446563920, - 6446566336, - 6446566384, - 6457189584, - 6457186560, + 6446573296, + 6457191728, + 6446562016, + 6446565792, + 6446566656, + 6457191776, + 6457188752, 6446566864, - 6446568096, - 6446567152, + 6446568192, + 6446566992, 6443742160, - 6446567840, - 6457190896, - 6457192720, - 6446568576, - 6446568832, - 6446568816, - 6457187520, - 6446570272 + 6446567968, + 6457193088, + 6457194912, + 6446568512, + 6446569120, + 6446569104 ], "bases": [ { @@ -93007,7 +93005,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352408, + "complete_object_locator": 6468356640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93016,25 +93014,25 @@ }, { "type_name": "CDemoSaveGame", - "vtable_address": 6464964528, - "methods": [ - 6446195264, - 6457189536, - 6446180480, - 6446180672, - 6446180752, - 6457189584, - 6457186560, - 6446180768, - 6446181904, - 6446180896, + "vtable_address": 6464968624, + "methods": [ + 6446195648, + 6457191728, + 6446180864, + 6446181056, + 6446181136, + 6457191776, + 6457188752, + 6446181152, + 6446182272, + 6446181280, 6443742160, - 6446181600, - 6457190896, - 6457192720, - 6446182080, - 6446182640, - 6446182304 + 6446181968, + 6457193088, + 6457194912, + 6446182448, + 6446182592, + 6446182528 ], "bases": [ { @@ -93068,7 +93066,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352544, + "complete_object_locator": 6468356776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93077,25 +93075,27 @@ }, { "type_name": "CDemoSendTables", - "vtable_address": 6464973632, - "methods": [ - 6446243520, - 6457189536, - 6446235920, - 6446237072, - 6446237200, - 6457189584, - 6457186560, - 6446237600, - 6446238160, - 6446237664, + "vtable_address": 6464977712, + "methods": [ + 6446243824, + 6457191728, + 6446236304, + 6446237440, + 6446237568, + 6457191776, + 6457188752, + 6446237968, + 6446238544, + 6446238048, 6443742160, - 6446238032, - 6457190896, - 6457192720, - 6446238256, - 6446238576, - 6446238560 + 6446238416, + 6457193088, + 6457194912, + 6446238560, + 6446238944, + 6446238928, + 6457189712, + 6446241904 ], "bases": [ { @@ -93129,7 +93129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352680, + "complete_object_locator": 6468356912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93138,25 +93138,25 @@ }, { "type_name": "CDemoSpawnGroups", - "vtable_address": 6465025616, + "vtable_address": 6465029712, "methods": [ - 6446556992, - 6457189536, - 6446539888, - 6446541024, - 6446541360, - 6457189584, - 6457186560, - 6446541440, - 6446542848, - 6446541712, + 6446557376, + 6457191728, + 6446540272, + 6446540960, + 6446541008, + 6457191776, + 6457188752, + 6446541040, + 6446542624, + 6446541648, 6443742160, - 6446542592, - 6457190896, - 6457192720, - 6446544928, - 6446548496, - 6446548480 + 6446542368, + 6457193088, + 6457194912, + 6446546752, + 6446548896, + 6446548864 ], "bases": [ { @@ -93190,7 +93190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352816, + "complete_object_locator": 6468357048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93199,27 +93199,27 @@ }, { "type_name": "CDemoStop", - "vtable_address": 6465013872, - "methods": [ - 6446508768, - 6457189536, - 6446505424, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446507136, - 6446506784, - 6457187520, - 6446506800 + "vtable_address": 6465017968, + "methods": [ + 6446509136, + 6457191728, + 6446505808, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446507520, + 6446507168, + 6457189712, + 6446507184 ], "bases": [ { @@ -93267,7 +93267,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468352952, + "complete_object_locator": 6468357184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93276,25 +93276,151 @@ }, { "type_name": "CDemoStringTables", - "vtable_address": 6465009512, + "vtable_address": 6465013608, + "methods": [ + 6446501328, + 6457191728, + 6446469392, + 6446473376, + 6446473504, + 6457191776, + 6457188752, + 6446473520, + 6446475184, + 6446474528, + 6443742160, + 6446475040, + 6457193088, + 6457194912, + 6446475232, + 6446475664, + 6446475648 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468357328, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CDemoStringTables_items_t", + "vtable_address": 6465007336, + "methods": [ + 6446422368, + 6457191728, + 6446412416, + 6446413888, + 6446414144, + 6457191776, + 6457188752, + 6446414160, + 6446417056, + 6446415616, + 6443742160, + 6446416832, + 6457193088, + 6457194912, + 6446417184, + 6446417376, + 6446417360, + 6457189712, + 6446419408 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468357464, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CDemoStringTables_table_t", + "vtable_address": 6465010840, "methods": [ - 6446501392, - 6457189536, - 6446469008, - 6446472992, - 6446473120, - 6457189584, - 6457186560, - 6446473136, - 6446474800, - 6446474144, + 6446460528, + 6457191728, + 6446431072, + 6446431504, + 6446431888, + 6457191776, + 6457188752, + 6446431904, + 6446433888, + 6446432736, 6443742160, - 6446474656, - 6457190896, - 6457192720, - 6446474848, - 6446475280, - 6446475264 + 6446433536, + 6457193088, + 6457194912, + 6446433936, + 6446435760, + 6446435248, + 6457189712, + 6446456944 ], "bases": [ { @@ -93328,133 +93454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468353096, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CDemoStringTables_items_t", - "vtable_address": 6465003240, - "methods": [ - 6446421984, - 6457189536, - 6446412160, - 6446414432, - 6446414528, - 6457189584, - 6457186560, - 6446414960, - 6446416752, - 6446415760, - 6443742160, - 6446416592, - 6457190896, - 6457192720, - 6446416800, - 6446416992, - 6446416976, - 6457187520, - 6446419024 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468353232, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CDemoStringTables_table_t", - "vtable_address": 6465006744, - "methods": [ - 6446460144, - 6457189536, - 6446430688, - 6446431120, - 6446431504, - 6457189584, - 6457186560, - 6446431536, - 6446433520, - 6446432432, - 6443742160, - 6446433168, - 6457190896, - 6457192720, - 6446433696, - 6446435696, - 6446435680, - 6457187520, - 6446456560 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468353368, + "complete_object_locator": 6468357600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93463,25 +93463,25 @@ }, { "type_name": "CDemoSyncTick", - "vtable_address": 6464965680, + "vtable_address": 6464969776, "methods": [ - 6446214048, - 6457189536, - 6446210736, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446212624, - 6446212608 + 6446214432, + 6457191728, + 6446208048, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446213008, + 6446212992 ], "bases": [ { @@ -93529,7 +93529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468353504, + "complete_object_locator": 6468357736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93538,25 +93538,27 @@ }, { "type_name": "CDemoUserCmd", - "vtable_address": 6465023520, + "vtable_address": 6465027616, "methods": [ - 6446534416, - 6457189536, - 6446522432, - 6446522848, - 6446522976, - 6457189584, - 6457186560, - 6446523024, - 6446523904, - 6446523200, + 6446534800, + 6457191728, + 6446522816, + 6446523152, + 6446523312, + 6457191776, + 6457188752, + 6446523408, + 6446524432, + 6446523584, 6443742160, - 6446523680, - 6457190896, - 6457192720, - 6446524736, - 6446525184, - 6446525152 + 6446524208, + 6457193088, + 6457194912, + 6446525120, + 6446525408, + 6446525392, + 6457189712, + 6446527952 ], "bases": [ { @@ -93590,7 +93592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468353648, + "complete_object_locator": 6468357880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93599,10 +93601,10 @@ }, { "type_name": "CDepthPyramidComputeRenderer", - "vtable_address": 6466882056, + "vtable_address": 6466886168, "methods": [ - 6457000928, - 6456701968, + 6457003120, + 6456703776, 6443773360 ], "bases": [ @@ -93623,7 +93625,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468811232, + "complete_object_locator": 6468815328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93632,13 +93634,13 @@ }, { "type_name": "CDirtySpatialPartitionEntityList", - "vtable_address": 6466042792, + "vtable_address": 6466047000, "methods": [ - 6451125632, + 6451127200, 6443748592, - 6451150864, - 6451110720, - 6451110896, + 6451152432, + 6451112288, + 6451112464, 6443748656, 6443748672, 6443748688, @@ -93690,11 +93692,11 @@ 6443749424, 6443749440, 6443749456, - 6451144880, + 6451146448, 6443749488, - 6451105072, - 6451087568, - 6451160432 + 6451106640, + 6451089136, + 6451162000 ], "bases": [ { @@ -93728,7 +93730,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468586696, + "complete_object_locator": 6468590792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93737,7 +93739,7 @@ }, { "type_name": "CDllVerificationMonitor", - "vtable_address": 6464401416, + "vtable_address": 6464405512, "methods": [ 6443748576, 6443748592, @@ -93833,7 +93835,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468213888, + "complete_object_locator": 6468217984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93842,7 +93844,7 @@ }, { "type_name": "CDontUseThisGameSystem", - "vtable_address": 6464672152, + "vtable_address": 6464676232, "methods": [ 6443748576, 6443748592, @@ -93924,7 +93926,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468256712, + "complete_object_locator": 6468260808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93933,13 +93935,13 @@ }, { "type_name": "CDownloadWorkshopAddonPrerequisite", - "vtable_address": 6466324968, + "vtable_address": 6466329128, "methods": [ - 6452350784, + 6452352400, 6444580288, 6444911728, - 6452384336, - 6452384256, + 6452385952, + 6452385872, 6444701216 ], "bases": [ @@ -93960,7 +93962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468675104, + "complete_object_locator": 6468679200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -93969,35 +93971,35 @@ }, { "type_name": "CDummyEconItemImage", - "vtable_address": 6466400568, + "vtable_address": 6466404728, "methods": [ 6443876544, - 6461535472, - 6452786144, - 6452786160, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452787760, + 6452787776, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -94010,12 +94012,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -94030,29 +94032,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452786128, - 6452786192, + 6461548896, + 6452787744, + 6452787808, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -94088,7 +94090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468690104, + "complete_object_locator": 6468694200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94097,9 +94099,9 @@ }, { "type_name": "CDynamicFaceOcclusionRendererObject", - "vtable_address": 6465898992, + "vtable_address": 6465903184, "methods": [ - 6450329408, + 6450330976, 6443765216, 6443765488 ], @@ -94121,7 +94123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468553312, + "complete_object_locator": 6468557408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94130,14 +94132,14 @@ }, { "type_name": "CDynamicFaceOcclusionRendererObjectDesc", - "vtable_address": 6465899024, + "vtable_address": 6465903216, "methods": [ - 6450329504, - 6450329520, + 6450331072, + 6450331088, 6443766128, 6443766112, 6443766144, - 6450329472, + 6450331040, 6443766480, 6443766496, 6443766512, @@ -94154,7 +94156,7 @@ 6443766688, 6443766704, 6443766720, - 6450333088 + 6450334656 ], "bases": [ { @@ -94188,7 +94190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555376, + "complete_object_locator": 6468559472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94197,13 +94199,13 @@ }, { "type_name": "CDynamicLightManager", - "vtable_address": 6465892984, + "vtable_address": 6465897176, "methods": [ 6443748576, 6443748592, 6443748608, - 6450321728, - 6450321744, + 6450323296, + 6450323312, 6443748656, 6443748672, 6443748688, @@ -94255,11 +94257,11 @@ 6443749424, 6443749440, 6443749456, - 6450321696, + 6450323264, 6443749488, - 6450321680, - 6450321952, - 6450321664 + 6450323248, + 6450323520, + 6450323232 ], "bases": [ { @@ -94293,7 +94295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468553520, + "complete_object_locator": 6468557616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94302,18 +94304,18 @@ }, { "type_name": "CEconAccountItemPersonalStore", - "vtable_address": 6466770912, + "vtable_address": 6466775008, "methods": [ - 6455873968, - 6456165760, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151680 + 6455875728, + 6456167536, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153456 ], "bases": [ { @@ -94361,7 +94363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789376, + "complete_object_locator": 6468793472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94370,18 +94372,18 @@ }, { "type_name": "CEconAccountKeychainRemoveToolCharges", - "vtable_address": 6466771792, + "vtable_address": 6466775888, "methods": [ - 6455874048, - 6456165776, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151696 + 6455875808, + 6456167552, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153472 ], "bases": [ { @@ -94429,7 +94431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468790776, + "complete_object_locator": 6468794872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94438,18 +94440,18 @@ }, { "type_name": "CEconAccountRecurringSubscription", - "vtable_address": 6466772496, + "vtable_address": 6466776592, "methods": [ - 6455874128, - 6456165808, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151728 + 6455875888, + 6456167584, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153504 ], "bases": [ { @@ -94497,7 +94499,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791896, + "complete_object_locator": 6468795992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94506,18 +94508,18 @@ }, { "type_name": "CEconAccountSeasonalOperation", - "vtable_address": 6466772144, + "vtable_address": 6466776240, "methods": [ - 6455874208, - 6456165824, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151744 + 6455875968, + 6456167600, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153520 ], "bases": [ { @@ -94565,7 +94567,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791336, + "complete_object_locator": 6468795432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94574,18 +94576,18 @@ }, { "type_name": "CEconAccountSeasonalOperationGS", - "vtable_address": 6466772320, + "vtable_address": 6466776416, "methods": [ - 6455874288, - 6456165840, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151760 + 6455876048, + 6456167616, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153536 ], "bases": [ { @@ -94633,7 +94635,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791616, + "complete_object_locator": 6468795712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94642,18 +94644,18 @@ }, { "type_name": "CEconAccountXpShop", - "vtable_address": 6466771088, + "vtable_address": 6466775184, "methods": [ - 6455874368, - 6456165856, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151776 + 6455876128, + 6456167632, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153552 ], "bases": [ { @@ -94701,7 +94703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789656, + "complete_object_locator": 6468793752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94710,18 +94712,18 @@ }, { "type_name": "CEconAccountXpShopBids", - "vtable_address": 6466771264, + "vtable_address": 6466775360, "methods": [ - 6455874448, - 6456165872, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151792 + 6455876208, + 6456167648, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153568 ], "bases": [ { @@ -94769,7 +94771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789936, + "complete_object_locator": 6468794032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94778,18 +94780,18 @@ }, { "type_name": "CEconCoupon", - "vtable_address": 6466770384, + "vtable_address": 6466774480, "methods": [ - 6455874528, - 6456165888, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151808 + 6455876288, + 6456167664, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153584 ], "bases": [ { @@ -94837,7 +94839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468788536, + "complete_object_locator": 6468792632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94846,15 +94848,15 @@ }, { "type_name": "CEconCraftingRecipeDefinition", - "vtable_address": 6466752952, + "vtable_address": 6466757048, "methods": [ - 6455874608, - 6456256528 + 6455876368, + 6456258304 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468777424, + "complete_object_locator": 6468781520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94863,13 +94865,13 @@ }, { "type_name": "CEconDiskBackedSoCache", - "vtable_address": 6466765072, + "vtable_address": 6466769168, "methods": [ - 6456393248, - 6456394048, - 6456393456, - 6456392208, - 6456392944 + 6456395024, + 6456395824, + 6456395232, + 6456393984, + 6456394720 ], "bases": [ { @@ -94889,7 +94891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468787760, + "complete_object_locator": 6468791856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94898,18 +94900,18 @@ }, { "type_name": "CEconEquipSlot", - "vtable_address": 6466754856, + "vtable_address": 6466758952, "methods": [ - 6455874672, - 6456165904, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151824 + 6455876432, + 6456167680, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153600 ], "bases": [ { @@ -94957,7 +94959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779208, + "complete_object_locator": 6468783304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -94966,18 +94968,18 @@ }, { "type_name": "CEconGameAccountClient", - "vtable_address": 6466759672, + "vtable_address": 6466763768, "methods": [ - 6455874752, - 6456165920, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151840 + 6455876512, + 6456167696, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153616 ], "bases": [ { @@ -95025,7 +95027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780336, + "complete_object_locator": 6468784432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95034,18 +95036,18 @@ }, { "type_name": "CEconGameAccountSteamChina", - "vtable_address": 6466771968, + "vtable_address": 6466776064, "methods": [ - 6455874832, - 6456165952, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151872 + 6455876592, + 6456167728, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153648 ], "bases": [ { @@ -95093,7 +95095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791056, + "complete_object_locator": 6468795152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95102,21 +95104,21 @@ }, { "type_name": "CEconItem", - "vtable_address": 6466754432, + "vtable_address": 6466758528, "methods": [ - 6455874912, - 6456166032, - 6456027408, - 6456029504, - 6456027136, - 6456049536, - 6456057920, - 6455892960, - 6455892832, - 6456398080, - 6456144560, - 6456027152, - 6456027264 + 6455876672, + 6456167808, + 6456029184, + 6456031280, + 6456028912, + 6456051312, + 6456059696, + 6455894720, + 6455894592, + 6456399856, + 6456146336, + 6456028928, + 6456029040 ], "bases": [ { @@ -95150,7 +95152,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778952, + "complete_object_locator": 6468783048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -95159,35 +95161,35 @@ }, { "type_name": "CEconItem", - "vtable_address": 6466754544, - "methods": [ - 6456395312, - 6455868180, - 6456132768, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255008, - 6456252592, - 6456249456, - 6456255216, - 6456251552, - 6456139008, - 6456141264, - 6456128736, - 6456142144, - 6456154880, - 6456156560, - 6456043632, - 6456151424, - 6456155776, - 6456142192, - 6456140512, - 6456132368, - 6456131984, - 6456143584, - 6456257296 + "vtable_address": 6466758640, + "methods": [ + 6456397088, + 6455869940, + 6456134544, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256784, + 6456254368, + 6456251232, + 6456256992, + 6456253328, + 6456140784, + 6456143040, + 6456130512, + 6456143920, + 6456156656, + 6456158336, + 6456045408, + 6456153200, + 6456157552, + 6456143968, + 6456142288, + 6456134144, + 6456133760, + 6456145360, + 6456259072 ], "bases": [ { @@ -95221,7 +95223,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779128, + "complete_object_locator": 6468783224, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -95230,18 +95232,18 @@ }, { "type_name": "CEconItemAttribute", - "vtable_address": 6466832296, + "vtable_address": 6466836408, "methods": [ - 6456530416, - 6456514800, - 6456515056, - 6456514944, - 6456514752 + 6456532192, + 6456516576, + 6456516832, + 6456516720, + 6456516528 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468797944, + "complete_object_locator": 6468802040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95250,13 +95252,13 @@ }, { "type_name": "CEconItemAttributeDefinition", - "vtable_address": 6466752976, + "vtable_address": 6466757072, "methods": [ - 6456134208, - 6456134224, - 6456134240, - 6456130240, - 6456158080 + 6456135984, + 6456136000, + 6456136016, + 6456132016, + 6456159856 ], "bases": [ { @@ -95276,7 +95278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778456, + "complete_object_locator": 6468782552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95285,13 +95287,13 @@ }, { "type_name": "CEconItemAttributeIterator_ApplyAttributeFloat", - "vtable_address": 6466759496, + "vtable_address": 6466763592, "methods": [ - 6455875152, - 6456290896, - 6456290912, - 6456291296, - 6456290928 + 6455876912, + 6456292672, + 6456292688, + 6456293072, + 6456292704 ], "bases": [ { @@ -95311,7 +95313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780128, + "complete_object_locator": 6468784224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95320,56 +95322,56 @@ }, { "type_name": "CEconItemDefinition", - "vtable_address": 6466753136, - "methods": [ - 6448295792, - 6448298112, - 6448296096, + "vtable_address": 6466757232, + "methods": [ + 6448297360, + 6448299680, + 6448297664, + 6448299072, + 6448297712, + 6456142656, + 6448297120, + 6456169664, 6448297504, - 6448296144, - 6456140880, - 6448295552, - 6456167888, - 6448295936, - 6448298656, - 6448295952, - 6448298624, - 6456144528, - 6448295632, - 6448295584, - 6448306208, - 6448306784, - 6448306224, - 6448306736, - 6448306752, - 6456021008, - 6455875200, - 6455930736, - 6455981184, - 6448310912, - 6456095712, - 6456097904, - 6456095472, - 6448297488, - 6448306240, + 6448300224, 6448297520, - 6448306768, - 6448295648, - 6448299552, - 6448299568, - 6456152128, - 6456147696, - 6456159344, - 6456166496, - 6456161312, - 6456150336, - 6456150320, - 6448295984, - 6448298080, - 6448298096, - 6448306800, - 6456250336, - 6448302560 + 6448300192, + 6456146304, + 6448297200, + 6448297152, + 6448307776, + 6448308352, + 6448307792, + 6448308304, + 6448308320, + 6456022784, + 6455876960, + 6455932512, + 6455982960, + 6448312480, + 6456097488, + 6456099680, + 6456097248, + 6448299056, + 6448307808, + 6448299088, + 6448308336, + 6448297216, + 6448301120, + 6448301136, + 6456153904, + 6456149472, + 6456161120, + 6456168272, + 6456163088, + 6456152112, + 6456152096, + 6448297552, + 6448299648, + 6448299664, + 6448308368, + 6456252112, + 6448304128 ], "bases": [ { @@ -95389,7 +95391,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778664, + "complete_object_locator": 6468782760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95398,34 +95400,34 @@ }, { "type_name": "CEconItemDescription", - "vtable_address": 6466834536, - "methods": [ - 6456440992, - 6456419936, - 6456088640, - 6455882832, - 6455884096, - 6456278368, - 6455882560, - 6456118064, - 6456115520, - 6456108704, - 6456100048, - 6456099600, - 6456126560, - 6456128720, - 6456109472, - 6456098688, - 6456107760, - 6456126048, - 6456120848, - 6456126688, - 6456118368, - 6456103424, - 6456104416, - 6456128240, - 6456128304, - 6456128496 + "vtable_address": 6466838648, + "methods": [ + 6456442768, + 6456421712, + 6456090416, + 6455884592, + 6455885856, + 6456280144, + 6455884320, + 6456119840, + 6456117296, + 6456110480, + 6456101824, + 6456101376, + 6456128336, + 6456130496, + 6456111248, + 6456100464, + 6456109536, + 6456127824, + 6456122624, + 6456128464, + 6456120144, + 6456105200, + 6456106192, + 6456130016, + 6456130080, + 6456130272 ], "bases": [ { @@ -95459,7 +95461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468798224, + "complete_object_locator": 6468802320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -95468,9 +95470,9 @@ }, { "type_name": "CEconItemDescription", - "vtable_address": 6466834752, + "vtable_address": 6466838864, "methods": [ - 6456082320 + 6456084096 ], "bases": [ { @@ -95504,7 +95506,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468798560, + "complete_object_locator": 6468802656, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -95513,13 +95515,13 @@ }, { "type_name": "CEconItemDescription::CVisibleAttributeDisplayer", - "vtable_address": 6466760616, + "vtable_address": 6466764712, "methods": [ - 6455881504, - 6456293488, - 6456293504, - 6456294320, - 6456293520 + 6455883264, + 6456295264, + 6456295280, + 6456296096, + 6456295296 ], "bases": [ { @@ -95539,7 +95541,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781456, + "complete_object_locator": 6468785552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95548,27 +95550,27 @@ }, { "type_name": "CEconItemPreviewDataBlock", - "vtable_address": 6464924600, + "vtable_address": 6464928696, "methods": [ - 6446026272, - 6457189536, - 6445967632, + 6446026656, + 6457191728, + 6445967936, 6445968736, - 6445969296, - 6457189584, - 6457186560, - 6445969312, - 6445975856, - 6445970816, + 6445969216, + 6457191776, + 6457188752, + 6445969232, + 6445976112, + 6445970800, 6443742160, - 6445973680, - 6457190896, - 6457192720, - 6445975904, - 6445977200, - 6445976896, - 6457187520, - 6446020624 + 6445973552, + 6457193088, + 6457194912, + 6445976272, + 6445976720, + 6445976704, + 6457189712, + 6446021008 ], "bases": [ { @@ -95602,7 +95604,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326440, + "complete_object_locator": 6468330672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95611,27 +95613,27 @@ }, { "type_name": "CEconItemPreviewDataBlock_Sticker", - "vtable_address": 6464907128, - "methods": [ - 6445954800, - 6457189536, - 6445938368, - 6445938848, - 6445938912, - 6457189584, - 6457186560, - 6445938944, - 6445941424, - 6445939392, + "vtable_address": 6464911080, + "methods": [ + 6445955024, + 6457191728, + 6445938752, + 6445939232, + 6445939296, + 6457191776, + 6457188752, + 6445939328, + 6445941808, + 6445939776, 6443742160, - 6445940544, - 6457190896, - 6457192720, - 6445941456, - 6445944288, - 6445943200, - 6457187520, - 6445952928 + 6445940928, + 6457193088, + 6457194912, + 6445941824, + 6445942800, + 6445942384, + 6457189712, + 6445953312 ], "bases": [ { @@ -95665,7 +95667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468328072, + "complete_object_locator": 6468332304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95674,70 +95676,70 @@ }, { "type_name": "CEconItemSchema", - "vtable_address": 6466753624, - "methods": [ - 6455894800, - 6455995632, - 6448298672, - 6448296112, - 6448296128, - 6448295776, - 6448297552, - 6448297568, - 6448297536, - 6448295760, - 6448295712, - 6448295696, - 6448295744, - 6448295728, - 6456130256, - 6456130416, - 6456082400, - 6448297888, - 6448298608, - 6456155584, - 6456155328, - 6448298640, - 6456157888, - 6456157504, - 6456156784, - 6456157696, - 6456157472, - 6448295440, - 6448297472, - 6456143488, - 6448311200, - 6448297776, + "vtable_address": 6466757720, + "methods": [ + 6455896560, + 6455997408, + 6448300240, 6448297680, - 6448297600, - 6448297792, - 6456082656, - 6456129104, - 6455904576, - 6455991488, - 6455990064, - 6456054448, - 6456141968, - 6456141712, - 6456161120, - 6456160672, - 6448299424, - 6456160944, - 6455875264, - 6448299440, - 6448298064, - 6448298128, - 6448295968, - 6456050352, - 6448286432, - 6448286672, - 6456050400, - 6456336912, - 6456042240, - 6455987472, - 6455909824, - 6455999216, - 6456010944 + 6448297696, + 6448297344, + 6448299120, + 6448299136, + 6448299104, + 6448297328, + 6448297280, + 6448297264, + 6448297312, + 6448297296, + 6456132032, + 6456132192, + 6456084176, + 6448299456, + 6448300176, + 6456157360, + 6456157104, + 6448300208, + 6456159664, + 6456159280, + 6456158560, + 6456159472, + 6456159248, + 6448297008, + 6448299040, + 6456145264, + 6448312768, + 6448299344, + 6448299248, + 6448299168, + 6448299360, + 6456084432, + 6456130880, + 6455906336, + 6455993264, + 6455991840, + 6456056224, + 6456143744, + 6456143488, + 6456162896, + 6456162448, + 6448300992, + 6456162720, + 6455877024, + 6448301008, + 6448299632, + 6448299696, + 6448297536, + 6456052128, + 6448288000, + 6448288240, + 6456052176, + 6456338688, + 6456044016, + 6455989248, + 6455911584, + 6456000992, + 6456012720 ], "bases": [ { @@ -95757,7 +95759,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778912, + "complete_object_locator": 6468783008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95766,21 +95768,21 @@ }, { "type_name": "CEconItemSetDefinition", - "vtable_address": 6466752728, + "vtable_address": 6466756824, "methods": [ - 6456150272, - 6456147008, - 6456166912, - 6456130832, - 6456141232, - 6456141248, - 6456142320, - 6456131968, - 6456142352, - 6456140224, - 6456027120, - 6456169392, - 6455943552 + 6456152048, + 6456148784, + 6456168688, + 6456132608, + 6456143008, + 6456143024, + 6456144096, + 6456133744, + 6456144128, + 6456142000, + 6456028896, + 6456171168, + 6455945328 ], "bases": [ { @@ -95800,7 +95802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468777216, + "complete_object_locator": 6468781312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95809,14 +95811,14 @@ }, { "type_name": "CEconItemSystem", - "vtable_address": 6466832944, + "vtable_address": 6466837056, "methods": [ - 6456472960, - 6456526096, - 6456526112, - 6456523568, - 6456441168, - 6456464032 + 6456474736, + 6456527872, + 6456527888, + 6456525344, + 6456442944, + 6456465808 ], "bases": [ { @@ -95836,7 +95838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468798184, + "complete_object_locator": 6468802280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95845,21 +95847,21 @@ }, { "type_name": "CEconLootListDefinition", - "vtable_address": 6466752840, - "methods": [ - 6456150288, - 6456147680, - 6456167856, - 6456089456, - 6456254992, - 6456128864, - 6456128768, - 6456156400, - 6456156352, - 6456156320, - 6456156208, - 6456319360, - 6456169136 + "vtable_address": 6466756936, + "methods": [ + 6456152064, + 6456149456, + 6456169632, + 6456091232, + 6456256768, + 6456130640, + 6456130544, + 6456158176, + 6456158128, + 6456158096, + 6456157984, + 6456321136, + 6456170912 ], "bases": [ { @@ -95879,7 +95881,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778704, + "complete_object_locator": 6468782800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95888,18 +95890,18 @@ }, { "type_name": "CEconPersonaDataPublic", - "vtable_address": 6466759848, + "vtable_address": 6466763944, "methods": [ - 6455875328, - 6456165968, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151888 + 6455877088, + 6456167744, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153664 ], "bases": [ { @@ -95947,7 +95949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780616, + "complete_object_locator": 6468784712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -95956,18 +95958,18 @@ }, { "type_name": "CEconQuestProgress", - "vtable_address": 6466770560, + "vtable_address": 6466774656, "methods": [ - 6455875408, - 6456165984, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151904 + 6455877168, + 6456167760, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153680 ], "bases": [ { @@ -96015,7 +96017,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468788816, + "complete_object_locator": 6468792912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96024,18 +96026,18 @@ }, { "type_name": "CEconRecurringMission", - "vtable_address": 6466770736, + "vtable_address": 6466774832, "methods": [ - 6455875488, - 6456165792, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151712 + 6455877248, + 6456167568, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153488 ], "bases": [ { @@ -96083,7 +96085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789096, + "complete_object_locator": 6468793192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96092,18 +96094,18 @@ }, { "type_name": "CEconRentalHistory", - "vtable_address": 6466755032, + "vtable_address": 6466759128, "methods": [ - 6455875568, - 6456165936, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151856 + 6455877328, + 6456167712, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153632 ], "bases": [ { @@ -96151,7 +96153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779352, + "complete_object_locator": 6468783448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96160,16 +96162,16 @@ }, { "type_name": "CEconStyleInfo", - "vtable_address": 6465632208, + "vtable_address": 6465636384, "methods": [ - 6448276880, - 6455969072, - 6456097648 + 6448278448, + 6455970848, + 6456099424 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468476776, + "complete_object_locator": 6468480872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96178,19 +96180,19 @@ }, { "type_name": "CEconTool_BackpackExpander", - "vtable_address": 6466762784, + "vtable_address": 6466766880, "methods": [ - 6455875648, - 6456043616, - 6456533328, - 6456336896, - 6456256096, - 6456050336, - 6456398800, - 6456167632, - 6456288880, - 6456288848, - 6456288864 + 6455877408, + 6456045392, + 6456535104, + 6456338672, + 6456257872, + 6456052112, + 6456400576, + 6456169408, + 6456290656, + 6456290624, + 6456290640 ], "bases": [ { @@ -96210,7 +96212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784816, + "complete_object_locator": 6468788912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96219,19 +96221,19 @@ }, { "type_name": "CEconTool_Casket", - "vtable_address": 6466764456, + "vtable_address": 6466768552, "methods": [ - 6455875808, - 6456456016, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456516224, - 6456288864 + 6455877568, + 6456457792, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456518000, + 6456290640 ], "bases": [ { @@ -96251,7 +96253,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786864, + "complete_object_locator": 6468790960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96260,19 +96262,19 @@ }, { "type_name": "CEconTool_Collection", - "vtable_address": 6466762896, + "vtable_address": 6466766992, "methods": [ - 6455875968, - 6456456064, - 6456398672, - 6456336896, - 6456256112, - 6456050336, - 6456398800, - 6456167632, - 6456289040, - 6456288848, - 6456288864 + 6455877728, + 6456457840, + 6456400448, + 6456338672, + 6456257888, + 6456052112, + 6456400576, + 6456169408, + 6456290816, + 6456290624, + 6456290640 ], "bases": [ { @@ -96292,7 +96294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784944, + "complete_object_locator": 6468789040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96301,19 +96303,19 @@ }, { "type_name": "CEconTool_CrateKey", - "vtable_address": 6466764744, + "vtable_address": 6466768840, "methods": [ - 6455876128, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456543728, - 6456544640 + 6455877888, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456545504, + 6456546416 ], "bases": [ { @@ -96333,7 +96335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468787248, + "complete_object_locator": 6468791344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96342,19 +96344,19 @@ }, { "type_name": "CEconTool_CustomizeTexture", - "vtable_address": 6466764648, + "vtable_address": 6466768744, "methods": [ - 6455876288, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456288848, - 6456288864 + 6455878048, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456290624, + 6456290640 ], "bases": [ { @@ -96374,7 +96376,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468787120, + "complete_object_locator": 6468791216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96383,19 +96385,19 @@ }, { "type_name": "CEconTool_Default", - "vtable_address": 6466764880, + "vtable_address": 6466768976, "methods": [ - 6455876448, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289056, - 6456288848, - 6456288864 + 6455878208, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456290832, + 6456290624, + 6456290640 ], "bases": [ { @@ -96415,7 +96417,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468787376, + "complete_object_locator": 6468791472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96424,19 +96426,19 @@ }, { "type_name": "CEconTool_DescTag", - "vtable_address": 6466764360, + "vtable_address": 6466768456, "methods": [ - 6455876608, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456543744, - 6456288864 + 6455878368, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456545520, + 6456290640 ], "bases": [ { @@ -96456,7 +96458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786736, + "complete_object_locator": 6468790832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96465,19 +96467,19 @@ }, { "type_name": "CEconTool_DuelingMinigame", - "vtable_address": 6466762208, + "vtable_address": 6466766304, "methods": [ - 6455876768, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289072, - 6456288848, - 6456288864 + 6455878528, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456290848, + 6456290624, + 6456290640 ], "bases": [ { @@ -96497,7 +96499,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784040, + "complete_object_locator": 6468788136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96506,19 +96508,19 @@ }, { "type_name": "CEconTool_FanToken", - "vtable_address": 6466763880, + "vtable_address": 6466767976, "methods": [ - 6455876928, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289088, - 6456287888, - 6456288864 + 6455878688, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456290864, + 6456289664, + 6456290640 ], "bases": [ { @@ -96538,7 +96540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786096, + "complete_object_locator": 6468790192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96547,19 +96549,19 @@ }, { "type_name": "CEconTool_Gift", - "vtable_address": 6466763016, + "vtable_address": 6466767112, "methods": [ - 6455877088, - 6456043616, - 6456533328, - 6456336896, - 6456256176, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456516880, - 6456288864 + 6455878848, + 6456045392, + 6456535104, + 6456338672, + 6456257952, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456518656, + 6456290640 ], "bases": [ { @@ -96579,7 +96581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785072, + "complete_object_locator": 6468789168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96588,19 +96590,19 @@ }, { "type_name": "CEconTool_Keychain", - "vtable_address": 6466763496, + "vtable_address": 6466767592, "methods": [ - 6455877248, - 6456456096, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456517680, - 6456288864 + 6455879008, + 6456457872, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456519456, + 6456290640 ], "bases": [ { @@ -96620,7 +96622,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785584, + "complete_object_locator": 6468789680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96629,19 +96631,19 @@ }, { "type_name": "CEconTool_KeychainToolCharges", - "vtable_address": 6466763784, + "vtable_address": 6466767880, "methods": [ - 6455877408, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289248, - 6456288048, - 6456288864 + 6455879168, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291024, + 6456289824, + 6456290640 ], "bases": [ { @@ -96661,7 +96663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785968, + "complete_object_locator": 6468790064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96670,19 +96672,19 @@ }, { "type_name": "CEconTool_NameTag", - "vtable_address": 6466764264, + "vtable_address": 6466768360, "methods": [ - 6455877568, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456544208, - 6456288864 + 6455879328, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456545984, + 6456290640 ], "bases": [ { @@ -96702,7 +96704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786608, + "complete_object_locator": 6468790704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96711,19 +96713,19 @@ }, { "type_name": "CEconTool_Noisemaker", - "vtable_address": 6466762304, + "vtable_address": 6466766400, "methods": [ - 6455877728, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289408, - 6456288848, - 6456288864 + 6455879488, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291184, + 6456290624, + 6456290640 ], "bases": [ { @@ -96743,7 +96745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784168, + "complete_object_locator": 6468788264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96752,19 +96754,19 @@ }, { "type_name": "CEconTool_PaintCan", - "vtable_address": 6466763208, + "vtable_address": 6466767304, "methods": [ - 6455877888, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289424, - 6456288848, - 6456288864 + 6455879648, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291200, + 6456290624, + 6456290640 ], "bases": [ { @@ -96784,7 +96786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785200, + "complete_object_locator": 6468789296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96793,19 +96795,19 @@ }, { "type_name": "CEconTool_PaintKit", - "vtable_address": 6466763304, + "vtable_address": 6466767400, "methods": [ - 6455878048, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289440, - 6456288848, - 6456288864 + 6455879808, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291216, + 6456290624, + 6456290640 ], "bases": [ { @@ -96825,7 +96827,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785328, + "complete_object_locator": 6468789424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96834,19 +96836,19 @@ }, { "type_name": "CEconTool_Patch", - "vtable_address": 6466763592, + "vtable_address": 6466767688, "methods": [ - 6455878208, - 6456456176, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456518016, - 6456288864 + 6455879968, + 6456457952, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456519792, + 6456290640 ], "bases": [ { @@ -96866,7 +96868,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785712, + "complete_object_locator": 6468789808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96875,19 +96877,19 @@ }, { "type_name": "CEconTool_Recipe", - "vtable_address": 6466764168, + "vtable_address": 6466768264, "methods": [ - 6455878368, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289456, - 6456288848, - 6456288864 + 6455880128, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291232, + 6456290624, + 6456290640 ], "bases": [ { @@ -96907,7 +96909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786480, + "complete_object_locator": 6468790576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96916,19 +96918,19 @@ }, { "type_name": "CEconTool_SeasonPass", - "vtable_address": 6466762592, - "methods": [ - 6455878528, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289472, - 6456288208, - 6456288864 + "vtable_address": 6466766688, + "methods": [ + 6455880288, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291248, + 6456289984, + 6456290640 ], "bases": [ { @@ -96948,7 +96950,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784552, + "complete_object_locator": 6468788648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96957,19 +96959,19 @@ }, { "type_name": "CEconTool_SeasonTiers", - "vtable_address": 6466764072, + "vtable_address": 6466768168, "methods": [ - 6455878688, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289632, - 6456288368, - 6456288864 + 6455880448, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291408, + 6456290144, + 6456290640 ], "bases": [ { @@ -96989,7 +96991,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786352, + "complete_object_locator": 6468790448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -96998,19 +97000,19 @@ }, { "type_name": "CEconTool_Spray", - "vtable_address": 6466763688, - "methods": [ - 6455878848, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289792, - 6456288528, - 6456288864 + "vtable_address": 6466767784, + "methods": [ + 6455880608, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291568, + 6456290304, + 6456290640 ], "bases": [ { @@ -97030,7 +97032,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785840, + "complete_object_locator": 6468789936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97039,19 +97041,19 @@ }, { "type_name": "CEconTool_StatTrakSwap", - "vtable_address": 6466764552, - "methods": [ - 6455879008, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456518304, - 6456288864 + "vtable_address": 6466768648, + "methods": [ + 6455880768, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456520080, + 6456290640 ], "bases": [ { @@ -97071,7 +97073,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786992, + "complete_object_locator": 6468791088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97080,19 +97082,19 @@ }, { "type_name": "CEconTool_Sticker", - "vtable_address": 6466763400, - "methods": [ - 6455879168, - 6456456256, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456519088, - 6456288864 + "vtable_address": 6466767496, + "methods": [ + 6455880928, + 6456458032, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456520864, + 6456290640 ], "bases": [ { @@ -97112,7 +97114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468785456, + "complete_object_locator": 6468789552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97121,19 +97123,19 @@ }, { "type_name": "CEconTool_WeddingRing", - "vtable_address": 6466762496, - "methods": [ - 6455879328, - 6456043616, - 6456533328, - 6456336880, - 6456256192, - 6456050336, - 6456398800, - 6456167296, - 6456289952, - 6456288848, - 6456288864 + "vtable_address": 6466766592, + "methods": [ + 6455881088, + 6456045392, + 6456535104, + 6456338656, + 6456257968, + 6456052112, + 6456400576, + 6456169072, + 6456291728, + 6456290624, + 6456290640 ], "bases": [ { @@ -97153,7 +97155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784424, + "complete_object_locator": 6468788520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97162,19 +97164,19 @@ }, { "type_name": "CEconTool_WrappedGift", - "vtable_address": 6466762400, + "vtable_address": 6466766496, "methods": [ - 6455879488, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398784, - 6456167584, - 6456289968, - 6456288848, - 6456288864 + 6455881248, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400560, + 6456169360, + 6456291744, + 6456290624, + 6456290640 ], "bases": [ { @@ -97194,7 +97196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784296, + "complete_object_locator": 6468788392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97203,19 +97205,19 @@ }, { "type_name": "CEconTool_XpGrant", - "vtable_address": 6466763976, - "methods": [ - 6455879648, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289984, - 6456288688, - 6456288864 + "vtable_address": 6466768072, + "methods": [ + 6455881408, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291760, + 6456290464, + 6456290640 ], "bases": [ { @@ -97235,7 +97237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468786224, + "complete_object_locator": 6468790320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97244,19 +97246,19 @@ }, { "type_name": "CEconTool_XpShopTicket", - "vtable_address": 6466762688, - "methods": [ - 6455879808, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456289472, - 6456288208, - 6456288864 + "vtable_address": 6466766784, + "methods": [ + 6455881568, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291248, + 6456289984, + 6456290640 ], "bases": [ { @@ -97290,7 +97292,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468784680, + "complete_object_locator": 6468788776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97299,18 +97301,18 @@ }, { "type_name": "CEconVolatileItemClaimedRewards", - "vtable_address": 6466771616, + "vtable_address": 6466775712, "methods": [ - 6455879968, - 6456166000, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151920 + 6455881728, + 6456167776, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153696 ], "bases": [ { @@ -97358,7 +97360,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468790496, + "complete_object_locator": 6468794592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97367,18 +97369,18 @@ }, { "type_name": "CEconVolatileItemOffer", - "vtable_address": 6466771440, + "vtable_address": 6466775536, "methods": [ - 6455880048, - 6456166016, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151936 + 6455881808, + 6456167792, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153712 ], "bases": [ { @@ -97426,7 +97428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468790216, + "complete_object_locator": 6468794312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97435,7 +97437,7 @@ }, { "type_name": "CEffectData", - "vtable_address": 6464485280, + "vtable_address": 6464489376, "methods": [ 6444215440, 6444190224, @@ -97445,7 +97447,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468236784, + "complete_object_locator": 6468240880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97454,12 +97456,12 @@ }, { "type_name": "CEmptyPhysicsBodyList", - "vtable_address": 6464478192, + "vtable_address": 6464482288, "methods": [ - 6444027440, - 6444027392, - 6444027424, - 6444027408 + 6444027696, + 6444027648, + 6444027680, + 6444027664 ], "bases": [ { @@ -97479,7 +97481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468233080, + "complete_object_locator": 6468237176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97488,69 +97490,69 @@ }, { "type_name": "CEmptySequence", - "vtable_address": 6467554512, - "methods": [ - 6461269536, - 6461268656, - 6461269184, - 6461269008, - 6461268480, - 6461269152, - 6461268464, - 6461269472, - 6461269504, - 6461269520, - 6461268512, - 6461268528, - 6461268544, - 6461268560, - 6461268576, - 6461268592, - 6461268608, - 6461268624, - 6461268640, - 6461268672, - 6461268688, - 6461268704, - 6461268720, - 6461268736, - 6461268752, - 6461268800, - 6461268816, - 6461268832, - 6461268848, - 6461268864, - 6461268880, - 6461268912, - 6461268896, - 6461268928, - 6461268944, - 6461268960, - 6461268976, - 6461268992, - 6461269024, - 6461269040, - 6461269056, - 6461269072, - 6461269088, - 6461269104, - 6461269120, - 6461269136, - 6461269200, - 6461269216, - 6461269232, - 6461269248, - 6461269280, - 6461269328, - 6461269296, - 6461269376, - 6461268496, - 6461269392, - 6461269424, - 6461269440, - 6461269456, - 6461269168, - 6461269488 + "vtable_address": 6467558608, + "methods": [ + 6461271728, + 6461270848, + 6461271376, + 6461271200, + 6461270672, + 6461271344, + 6461270656, + 6461271664, + 6461271696, + 6461271712, + 6461270704, + 6461270720, + 6461270736, + 6461270752, + 6461270768, + 6461270784, + 6461270800, + 6461270816, + 6461270832, + 6461270864, + 6461270880, + 6461270896, + 6461270912, + 6461270928, + 6461270944, + 6461270992, + 6461271008, + 6461271024, + 6461271040, + 6461271056, + 6461271072, + 6461271104, + 6461271088, + 6461271120, + 6461271136, + 6461271152, + 6461271168, + 6461271184, + 6461271216, + 6461271232, + 6461271248, + 6461271264, + 6461271280, + 6461271296, + 6461271312, + 6461271328, + 6461271392, + 6461271408, + 6461271424, + 6461271440, + 6461271472, + 6461271520, + 6461271488, + 6461271568, + 6461270688, + 6461271584, + 6461271616, + 6461271632, + 6461271648, + 6461271360, + 6461271680 ], "bases": [ { @@ -97584,7 +97586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954216, + "complete_object_locator": 6468958312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97593,30 +97595,30 @@ }, { "type_name": "CEmptyWorldService", - "vtable_address": 6465354096, - "methods": [ - 6447891584, - 6447893552, - 6447913232, - 6447907360, - 6447917600, - 6447911792, - 6447897728, - 6447900944, - 6447913248, - 6447910160, - 6447900784, - 6447900496, - 6447900176, - 6447917568, - 6447911488, - 6447911712, - 6447909968, - 6447916288, - 6447916736, - 6447913328, - 6447900512, - 6447916752, + "vtable_address": 6465358160, + "methods": [ + 6447893152, + 6447895120, + 6447914800, + 6447908928, + 6447919168, + 6447913360, + 6447899296, + 6447902512, + 6447914816, + 6447911728, + 6447902352, + 6447902064, + 6447901744, + 6447919136, + 6447913056, + 6447913280, + 6447911536, + 6447917856, + 6447918304, + 6447914896, + 6447902080, + 6447918320, 6447875344 ], "bases": [ @@ -97749,7 +97751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468433168, + "complete_object_locator": 6468437264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97758,14 +97760,14 @@ }, { "type_name": "CEnduringClassMemoryPool", - "vtable_address": 6464674784, + "vtable_address": 6464678864, "methods": [ 6444824480 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468258248, + "complete_object_locator": 6468262344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97774,25 +97776,27 @@ }, { "type_name": "CEngineGotvSyncPacket", - "vtable_address": 6464883744, - "methods": [ - 6445870624, - 6457189536, - 6445851600, - 6445852512, - 6445852848, - 6457189584, - 6457186560, - 6445852864, - 6445856176, - 6445853936, + "vtable_address": 6464887840, + "methods": [ + 6445871024, + 6457191728, + 6445851840, + 6445852896, + 6445853232, + 6457191776, + 6457188752, + 6445853248, + 6445856560, + 6445854320, 6443742160, - 6445855344, - 6457190896, - 6457192720, - 6445856208, - 6445856320, - 6445856304 + 6445855728, + 6457193088, + 6457194912, + 6445856592, + 6445856704, + 6445856688, + 6457189712, + 6445866128 ], "bases": [ { @@ -97826,7 +97830,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468304784, + "complete_object_locator": 6468309016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -97835,14 +97839,14 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 6465815448, + "vtable_address": 6465819640, "methods": [ - 6449497408, - 6449583872, - 6449584048, - 6449536032, - 6449541072, - 6449585472 + 6449498976, + 6449585440, + 6449585616, + 6449537600, + 6449542640, + 6449587040 ], "bases": [ { @@ -97876,7 +97880,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468519784, + "complete_object_locator": 6468523880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -97885,12 +97889,12 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 6465815504, + "vtable_address": 6465819696, "methods": [ - 6449646176, + 6449647744, 6444481072, - 6449646768, - 6449647072 + 6449648336, + 6449648640 ], "bases": [ { @@ -97924,7 +97928,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468519960, + "complete_object_locator": 6468524056, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -97933,52 +97937,52 @@ }, { "type_name": "CEntity2SaveRestore", - "vtable_address": 6465790464, - "methods": [ - 6449285728, - 6449380736, - 6449331888, - 6449301520, - 6449384000, - 6449308320, - 6449171328, - 6449318336, - 6449256848, - 6449180656, - 6449179056, - 6449196128, - 6449374128, - 6449276944, - 6449187056, - 6449367456, - 6449362848, - 6449372992, - 6449265296, - 6449301488, - 6449366672, - 6449363584, - 6449388464, - 6449366432, - 6449366336, - 6449317408, - 6449363040, - 6449180720, - 6449180704, - 6449275776, - 6449373824, - 6449167728, - 6449264912, - 6449312608, - 6449278800, - 6449383808, - 6449264944, - 6449379376, - 6449278512, - 6449301472, - 6449284928, - 6449325616, - 6449301712, - 6449285056 + "vtable_address": 6465794656, + "methods": [ + 6449287280, + 6449382288, + 6449333440, + 6449303072, + 6449385552, + 6449309872, + 6449172880, + 6449319888, + 6449258400, + 6449182208, + 6449180608, + 6449197680, + 6449375680, + 6449278496, + 6449188608, + 6449369008, + 6449364400, + 6449374544, + 6449266848, + 6449303040, + 6449368224, + 6449365136, + 6449390016, + 6449367984, + 6449367888, + 6449318960, + 6449364592, + 6449182272, + 6449182256, + 6449277328, + 6449375376, + 6449169280, + 6449266464, + 6449314160, + 6449280352, + 6449385360, + 6449266496, + 6449380928, + 6449280064, + 6449303024, + 6449286480, + 6449327168, + 6449303264, + 6449286608 ], "bases": [ { @@ -97998,7 +98002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468507112, + "complete_object_locator": 6468511208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98007,9 +98011,9 @@ }, { "type_name": "CEntity2_EHandle_Restore", - "vtable_address": 6467188608, + "vtable_address": 6467192672, "methods": [ - 6460091600 + 6460093792 ], "bases": [ { @@ -98029,7 +98033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468938504, + "complete_object_locator": 6468942600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98038,9 +98042,9 @@ }, { "type_name": "CEntity2_EHandle_Save", - "vtable_address": 6467188592, + "vtable_address": 6467192656, "methods": [ - 6460094000 + 6460096192 ], "bases": [ { @@ -98060,7 +98064,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468938376, + "complete_object_locator": 6468942472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98069,9 +98073,9 @@ }, { "type_name": "CEntityAbsVelocityRenderAttribCallback", - "vtable_address": 6465895784, + "vtable_address": 6465899976, "methods": [ - 6450323280 + 6450324848 ], "bases": [ { @@ -98091,7 +98095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554288, + "complete_object_locator": 6468558384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98100,9 +98104,9 @@ }, { "type_name": "CEntityAgeRenderAttribCallback", - "vtable_address": 6465896048, + "vtable_address": 6465900240, "methods": [ - 6450323360 + 6450324928 ], "bases": [ { @@ -98122,7 +98126,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554544, + "complete_object_locator": 6468558640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98131,7 +98135,7 @@ }, { "type_name": "CEntityAutoCompletionFunctor", - "vtable_address": 6464662240, + "vtable_address": 6464666416, "methods": [ 6444484576, 6444486752 @@ -98154,7 +98158,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468253896, + "complete_object_locator": 6468257992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98163,10 +98167,10 @@ }, { "type_name": "CEntityClassPulseSignature", - "vtable_address": 6467193992, + "vtable_address": 6467198056, "methods": [ - 6460095696, - 6463705588 + 6460097888, + 6463707780 ], "bases": [ { @@ -98186,7 +98190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468939480, + "complete_object_locator": 6468943576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98195,10 +98199,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6465956824, + "vtable_address": 6465961016, "methods": [ - 6450665984, - 6450654480, + 6450667552, + 6450656048, 6443837472, 6443842592, 6443852464, @@ -98236,7 +98240,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564400, + "complete_object_locator": 6468568496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98245,10 +98249,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6465739832, + "vtable_address": 6465744024, "methods": [ - 6449024800, - 6449013520, + 6449026352, + 6449015072, 6443837472, 6443842592, 6443852464, @@ -98286,7 +98290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468501344, + "complete_object_locator": 6468505440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98295,7 +98299,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6464580168, + "vtable_address": 6464584264, "methods": [ 6444368320, 6444367488, @@ -98336,7 +98340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468246080, + "complete_object_locator": 6468250176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98345,10 +98349,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6465852120, + "vtable_address": 6465856312, "methods": [ - 6449923200, - 6449919136, + 6449924768, + 6449920704, 6443837472, 6443842592, 6443852464, @@ -98386,7 +98390,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532024, + "complete_object_locator": 6468536120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98395,10 +98399,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6465740904, + "vtable_address": 6465745096, "methods": [ - 6449024912, - 6449013632, + 6449026464, + 6449015184, 6443837472, 6443842592, 6443852464, @@ -98436,7 +98440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468501480, + "complete_object_locator": 6468505576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98445,10 +98449,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6465739776, + "vtable_address": 6465743968, "methods": [ - 6449025024, - 6449013744, + 6449026576, + 6449015296, 6443837472, 6443842592, 6443852464, @@ -98486,7 +98490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468501208, + "complete_object_locator": 6468505304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98495,10 +98499,10 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6465956768, + "vtable_address": 6465960960, "methods": [ - 6450666096, - 6450654592, + 6450667664, + 6450656160, 6443837472, 6443842592, 6443852464, @@ -98536,7 +98540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564264, + "complete_object_locator": 6468568360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98545,7 +98549,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6464458216, + "vtable_address": 6464462312, "methods": [ 6443986144, 6443966608, @@ -98586,7 +98590,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468230856, + "complete_object_locator": 6468234952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98595,14 +98599,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6465733520, + "vtable_address": 6465737712, "methods": [ 6443986144, - 6448894256, - 6448921216, - 6448906960, - 6448817296, - 6448897520 + 6448895824, + 6448922784, + 6448908528, + 6448818864, + 6448899088 ], "bases": [ { @@ -98636,7 +98640,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468499288, + "complete_object_locator": 6468503384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98645,14 +98649,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6465735016, + "vtable_address": 6465739208, "methods": [ 6443986144, - 6448894272, - 6448921264, - 6448906976, - 6448817616, - 6448897616 + 6448895840, + 6448922832, + 6448908544, + 6448819184, + 6448899184 ], "bases": [ { @@ -98686,7 +98690,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468499512, + "complete_object_locator": 6468503608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98695,7 +98699,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6464458496, + "vtable_address": 6464462592, "methods": [ 6443986144, 6443966624, @@ -98736,7 +98740,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468231304, + "complete_object_locator": 6468235400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98745,7 +98749,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6464458368, + "vtable_address": 6464462464, "methods": [ 6443986144, 6443966640, @@ -98786,7 +98790,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468231080, + "complete_object_locator": 6468235176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98795,7 +98799,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6464458616, + "vtable_address": 6464462712, "methods": [ 6443986144, 6443966656, @@ -98836,7 +98840,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468231528, + "complete_object_locator": 6468235624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98845,7 +98849,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6464462688, + "vtable_address": 6464466784, "methods": [ 6443986144, 6443966672, @@ -98886,7 +98890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468232184, + "complete_object_locator": 6468236280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98895,12 +98899,12 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6465846816, + "vtable_address": 6465851008, "methods": [ 6443986144, - 6449851904, - 6449890784, - 6449883680, + 6449853472, + 6449892352, + 6449885248, 6443949184, 6443967856 ], @@ -98936,7 +98940,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468529080, + "complete_object_locator": 6468533176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98945,7 +98949,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6464589192, + "vtable_address": 6464593288, "methods": [ 6443986144, 6444397920, @@ -98986,7 +98990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468248080, + "complete_object_locator": 6468252176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -98995,7 +98999,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6464465656, + "vtable_address": 6464469752, "methods": [ 6443986144, 6443966688, @@ -99036,7 +99040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468232408, + "complete_object_locator": 6468236504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99045,14 +99049,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6467194288, + "vtable_address": 6467198352, "methods": [ 6443986144, - 6460112656, - 6460113280, - 6460113136, - 6460107728, - 6460113104 + 6460114848, + 6460115472, + 6460115328, + 6460109920, + 6460115296 ], "bases": [ { @@ -99086,7 +99090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468940560, + "complete_object_locator": 6468944656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99095,12 +99099,12 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 6465814240, + "vtable_address": 6465818432, "methods": [ - 6449496688, - 6449582208, - 6449535760, - 6449540864 + 6449498256, + 6449583776, + 6449537328, + 6449542432 ], "bases": [ { @@ -99120,7 +99124,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523272, + "complete_object_locator": 6468527368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99129,12 +99133,12 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 6465814200, + "vtable_address": 6465818392, "methods": [ - 6449496272, - 6449582016, - 6449535184, - 6449540480 + 6449497840, + 6449583584, + 6449536752, + 6449542048 ], "bases": [ { @@ -99154,7 +99158,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523144, + "complete_object_locator": 6468527240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99163,12 +99167,12 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 6465814280, + "vtable_address": 6465818472, "methods": [ - 6449496480, - 6449582112, - 6449535456, - 6449540672 + 6449498048, + 6449583680, + 6449537024, + 6449542240 ], "bases": [ { @@ -99188,7 +99192,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523400, + "complete_object_locator": 6468527496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99197,7 +99201,7 @@ }, { "type_name": "CEntityDebugGameSystem", - "vtable_address": 6464676064, + "vtable_address": 6464680144, "methods": [ 6443748576, 6443748592, @@ -99307,7 +99311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468261256, + "complete_object_locator": 6468265352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -99316,9 +99320,9 @@ }, { "type_name": "CEntityGameTimeRenderAttribCallback", - "vtable_address": 6465896384, + "vtable_address": 6465900576, "methods": [ - 6450323600 + 6450325168 ], "bases": [ { @@ -99338,7 +99342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554800, + "complete_object_locator": 6468558896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99347,9 +99351,9 @@ }, { "type_name": "CEntityHealthRenderAttribCallback", - "vtable_address": 6465895576, + "vtable_address": 6465899768, "methods": [ - 6450323104 + 6450324672 ], "bases": [ { @@ -99369,7 +99373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468553904, + "complete_object_locator": 6468558000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99378,12 +99382,12 @@ }, { "type_name": "CEntityIONotify", - "vtable_address": 6465802280, + "vtable_address": 6465806472, "methods": [ - 6449402432, - 6449403376, - 6449405072, - 6449405264 + 6449403984, + 6449404928, + 6449406624, + 6449406816 ], "bases": [ { @@ -99403,7 +99407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468515392, + "complete_object_locator": 6468519488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99412,7 +99416,7 @@ }, { "type_name": "CEntityIOOutput", - "vtable_address": 6464481992, + "vtable_address": 6464486088, "methods": [ 6444215488, 6444251760 @@ -99420,7 +99424,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468234784, + "complete_object_locator": 6468238880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99429,56 +99433,56 @@ }, { "type_name": "CEntityInstance", - "vtable_address": 6467188824, - "methods": [ - 6460053120, - 6460047616, - 6460050704, - 6460051264, - 6460056064, - 6460048352, - 6460059696, - 6460049824, - 6460056016, - 6460056032, - 6460048064, - 6460059968, - 6460055888, + "vtable_address": 6467192888, + "methods": [ + 6460055312, + 6460049808, + 6460052896, + 6460053456, + 6460058256, + 6460050544, + 6460061888, + 6460052016, + 6460058208, + 6460058224, + 6460050256, + 6460062160, + 6460058080, 6443817760, 6443797616, - 6460056048, - 6460052032, - 6460052016, - 6460058592, - 6460058576, - 6460055872, - 6460055856, - 6460055840, - 6460055824, + 6460058240, + 6460054224, + 6460054208, + 6460060784, + 6460060768, + 6460058064, + 6460058048, + 6460058032, + 6460058016, 6443858256, 6443844048, 6443844080, 6443844112, 6443844144, - 6460055808, + 6460058000, 6443837488, 6443843648, - 6450577456, + 6450579024, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6460052560, + 6460060080, + 6460054752, 6445479856, - 6460058608 + 6460060800 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468938768, + "complete_object_locator": 6468942864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99487,9 +99491,9 @@ }, { "type_name": "CEntityIronSightAmountRenderAttribCallback", - "vtable_address": 6465426712, + "vtable_address": 6465430912, "methods": [ - 6448085344 + 6448086912 ], "bases": [ { @@ -99509,7 +99513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468449576, + "complete_object_locator": 6468453760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99518,12 +99522,12 @@ }, { "type_name": "CEntityKeyValuesSaveRestoreOps", - "vtable_address": 6465746640, + "vtable_address": 6465750848, "methods": [ - 6449073728, - 6449073952, - 6449074160, - 6449074144, + 6449075280, + 6449075504, + 6449076112, + 6449075696, 6443852464, 6443799744 ], @@ -99573,7 +99577,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468504272, + "complete_object_locator": 6468508368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -99582,25 +99586,25 @@ }, { "type_name": "CEntityMessageDoSpark", - "vtable_address": 6465168656, + "vtable_address": 6465172736, "methods": [ - 6447192784, - 6457189536, - 6447177200, - 6447177840, - 6447178000, - 6457189584, - 6457186560, - 6447178016, - 6447181728, - 6447178736, + 6447193008, + 6457191728, + 6447177424, + 6447178048, + 6447178224, + 6457191776, + 6457188752, + 6447178240, + 6447181936, + 6447178960, 6443742160, - 6447181184, - 6457190896, - 6457192720, - 6447185296, - 6447187376, - 6447186464 + 6447180864, + 6457193088, + 6457194912, + 6447185520, + 6447187600, + 6447186688 ], "bases": [ { @@ -99634,7 +99638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373784, + "complete_object_locator": 6468377880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99643,29 +99647,29 @@ }, { "type_name": "CEntityMessageFixAngle", - "vtable_address": 6465175464, - "methods": [ - 6447212640, - 6457189536, - 6447202736, - 6447204464, - 6447204608, - 6457189584, - 6457186560, - 6447204784, - 6447206032, - 6447205056, + "vtable_address": 6465179544, + "methods": [ + 6447212752, + 6457191728, + 6447202960, + 6447204688, + 6447204832, + 6457191776, + 6457188752, + 6447205008, + 6447206256, + 6447205280, 6443742160, - 6447205808, - 6457190896, - 6457192720, - 6447206048, - 6447206160, - 6447206144, - 6457187520, - 6447206464, - 6457187520, - 6447208928 + 6447206032, + 6457193088, + 6457194912, + 6447206272, + 6447206384, + 6447206368, + 6457189712, + 6447206688, + 6457189712, + 6447209152 ], "bases": [ { @@ -99699,7 +99703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373824, + "complete_object_locator": 6468377920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99708,27 +99712,27 @@ }, { "type_name": "CEntityMessagePlayJingle", - "vtable_address": 6465162720, - "methods": [ - 6447137280, - 6457189536, - 6447130784, - 6447131072, - 6447131152, - 6457189584, - 6457186560, - 6447131168, - 6447131856, - 6447131280, - 6443742160, - 6447131744, - 6457190896, - 6457192720, - 6447131872, - 6447131920, - 6447131904, - 6457187520, - 6447134368 + "vtable_address": 6465166800, + "methods": [ + 6447137504, + 6457191728, + 6447131008, + 6447131296, + 6447131376, + 6457191776, + 6457188752, + 6447131392, + 6447132080, + 6447131504, + 6443742160, + 6447131968, + 6457193088, + 6457194912, + 6447132096, + 6447132144, + 6447132128, + 6457189712, + 6447134592 ], "bases": [ { @@ -99762,7 +99766,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373960, + "complete_object_locator": 6468378056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99771,25 +99775,25 @@ }, { "type_name": "CEntityMessagePropagateForce", - "vtable_address": 6465166768, + "vtable_address": 6465170848, "methods": [ - 6447169632, - 6457189536, - 6447164800, - 6447166592, - 6447166736, - 6457189584, - 6457186560, - 6447166752, - 6447167776, - 6447167024, + 6447169856, + 6457191728, + 6447165008, + 6447166816, + 6447166960, + 6457191776, + 6457188752, + 6447166976, + 6447168000, + 6447167248, 6443742160, - 6447167600, - 6457190896, - 6457192720, - 6447167952, - 6447168080, - 6447168064 + 6447167760, + 6457193088, + 6457194912, + 6447168176, + 6447168304, + 6447168288 ], "bases": [ { @@ -99823,7 +99827,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374096, + "complete_object_locator": 6468378192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99832,27 +99836,27 @@ }, { "type_name": "CEntityMessageRemoveAllDecals", - "vtable_address": 6465165632, - "methods": [ - 6447159024, - 6457189536, - 6447148976, - 6447149216, - 6447149376, - 6457189584, - 6457186560, - 6447149648, - 6447150448, - 6447149776, - 6443742160, - 6447150272, - 6457190896, - 6457192720, + "vtable_address": 6465169712, + "methods": [ + 6447159248, + 6457191728, + 6447149200, + 6447149424, + 6447149536, + 6457191776, + 6457188752, + 6447149680, + 6447150672, + 6447150000, + 6443742160, 6447150496, - 6447152400, - 6447151984, - 6457187520, - 6447157696 + 6457193088, + 6457194912, + 6447150720, + 6447152624, + 6447152208, + 6457189712, + 6447157920 ], "bases": [ { @@ -99886,7 +99890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374136, + "complete_object_locator": 6468378232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -99895,13 +99899,13 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 6465907120, + "vtable_address": 6465911312, "methods": [ - 6450393168, - 6450074928, - 6450074912, - 6450074944, - 6450075024 + 6450394736, + 6450076496, + 6450076480, + 6450076512, + 6450076592 ], "bases": [ { @@ -100005,7 +100009,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468558024, + "complete_object_locator": 6468562120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -100014,25 +100018,25 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 6465907168, - "methods": [ - 6450392252, - 6457189536, - 6447148976, - 6447149216, - 6447149376, - 6457189584, - 6457186560, - 6447149648, - 6447150448, - 6447149776, - 6443742160, - 6447150272, - 6457190896, - 6457192720, + "vtable_address": 6465911360, + "methods": [ + 6450393820, + 6457191728, + 6447149200, + 6447149424, + 6447149536, + 6457191776, + 6457188752, + 6447149680, + 6447150672, + 6447150000, + 6443742160, 6447150496, - 6447152400, - 6447151984 + 6457193088, + 6457194912, + 6447150720, + 6447152624, + 6447152208 ], "bases": [ { @@ -100136,7 +100140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468558456, + "complete_object_locator": 6468562552, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -100145,29 +100149,29 @@ }, { "type_name": "CEntityMessageScreenOverlay", - "vtable_address": 6465164048, - "methods": [ - 6447144176, - 6457189536, - 6447139024, - 6447140032, - 6447140112, - 6457189584, - 6457186560, - 6447140128, - 6447140944, - 6447140256, - 6443742160, - 6447140768, - 6457190896, - 6457192720, - 6447140976, - 6447141088, - 6447141072, - 6457388960, - 6457389040, - 6457187520, - 6447142288 + "vtable_address": 6465168128, + "methods": [ + 6447144400, + 6457191728, + 6447139232, + 6447140240, + 6447140336, + 6457191776, + 6457188752, + 6447140352, + 6447141168, + 6447140480, + 6443742160, + 6447140992, + 6457193088, + 6457194912, + 6447141184, + 6447141312, + 6447141296, + 6457391152, + 6457391232, + 6457189712, + 6447142512 ], "bases": [ { @@ -100201,7 +100205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374176, + "complete_object_locator": 6468378272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100210,25 +100214,25 @@ }, { "type_name": "CEntityMsg", - "vtable_address": 6465175016, - "methods": [ - 6447206224, - 6457189536, - 6447200128, - 6447200816, - 6447200864, - 6457189584, - 6457186560, - 6447201200, - 6447202704, - 6447201840, + "vtable_address": 6465179096, + "methods": [ + 6447206448, + 6457191728, + 6447200352, + 6447200880, + 6447201072, + 6457191776, + 6457188752, + 6447201104, + 6447202688, + 6447201504, 6443742160, - 6447202528, - 6457190896, - 6457192720, - 6447203680, - 6447205744, - 6447205664 + 6447202512, + 6457193088, + 6457194912, + 6447203728, + 6447205904, + 6447205872 ], "bases": [ { @@ -100262,7 +100266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371200, + "complete_object_locator": 6468375296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100271,9 +100275,9 @@ }, { "type_name": "CEntityOriginRenderAttribCallback", - "vtable_address": 6465895664, + "vtable_address": 6465899856, "methods": [ - 6450323136 + 6450324704 ], "bases": [ { @@ -100293,7 +100297,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554032, + "complete_object_locator": 6468558128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100302,7 +100306,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 6465725560, + "vtable_address": 6465729752, "methods": [ 6444215488, 6444251760 @@ -100325,7 +100329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494984, + "complete_object_locator": 6468499080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100334,7 +100338,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 6464595104, + "vtable_address": 6464599200, "methods": [ 6444215488, 6444251760 @@ -100357,7 +100361,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247288, + "complete_object_locator": 6468251384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100366,9 +100370,9 @@ }, { "type_name": "CEntityRandomRenderAttribCallback", - "vtable_address": 6465895856, + "vtable_address": 6465900048, "methods": [ - 6450323344 + 6450324912 ], "bases": [ { @@ -100388,7 +100392,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554416, + "complete_object_locator": 6468558512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100397,9 +100401,9 @@ }, { "type_name": "CEntityRenderBoundsRenderAttribCallback", - "vtable_address": 6465896144, + "vtable_address": 6465900336, "methods": [ - 6450323440 + 6450325008 ], "bases": [ { @@ -100419,7 +100423,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554672, + "complete_object_locator": 6468558768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100428,17 +100432,17 @@ }, { "type_name": "CEntitySaveRestoreBlockHandler", - "vtable_address": 6465746744, + "vtable_address": 6465750936, "methods": [ - 6449075040, - 6449075056, - 6449075616, - 6449075936, - 6449076416, - 6449079552, - 6449076432, - 6449076832, - 6449079568 + 6449076592, + 6449076608, + 6449077168, + 6449077488, + 6449077968, + 6449081104, + 6449077984, + 6449078384, + 6449081120 ], "bases": [ { @@ -100458,7 +100462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468502496, + "complete_object_locator": 6468506592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100467,7 +100471,7 @@ }, { "type_name": "CEntitySharedPulseSignature", - "vtable_address": 6464482752, + "vtable_address": 6464486848, "methods": [ 6444064688, 6444065936 @@ -100504,7 +100508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468236480, + "complete_object_locator": 6468240576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100513,10 +100517,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466470000, + "vtable_address": 6466474128, "methods": [ - 6453394272, - 6453310784 + 6453396032, + 6453312544 ], "bases": [ { @@ -100536,7 +100540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468703280, + "complete_object_locator": 6468707376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100545,10 +100549,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466730880, + "vtable_address": 6466734976, "methods": [ - 6455749232, - 6455736704 + 6455751024, + 6455738496 ], "bases": [ { @@ -100568,7 +100572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775312, + "complete_object_locator": 6468779408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100577,7 +100581,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6464436800, + "vtable_address": 6464440896, "methods": [ 6443873936, 6443847488 @@ -100600,7 +100604,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223984, + "complete_object_locator": 6468228080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100609,10 +100613,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465388472, + "vtable_address": 6465392632, "methods": [ - 6447955584, - 6447950400 + 6447957152, + 6447951968 ], "bases": [ { @@ -100632,7 +100636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468440304, + "complete_object_locator": 6468444400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100641,7 +100645,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6464685144, + "vtable_address": 6464689224, "methods": [ 6444954016, 6444873664 @@ -100664,7 +100668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266872, + "complete_object_locator": 6468270968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100673,10 +100677,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465369840, + "vtable_address": 6465374000, "methods": [ - 6447918880, - 6447911344 + 6447920448, + 6447912912 ], "bases": [ { @@ -100696,7 +100700,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468436584, + "complete_object_locator": 6468440680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100705,7 +100709,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6464492680, + "vtable_address": 6464496776, "methods": [ 6444237520, 6444190736 @@ -100728,7 +100732,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468237232, + "complete_object_locator": 6468241328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100737,10 +100741,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466208392, + "vtable_address": 6466212552, "methods": [ - 6451950752, - 6451916064 + 6451952336, + 6451917648 ], "bases": [ { @@ -100760,7 +100764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468638456, + "complete_object_locator": 6468642552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100769,10 +100773,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466740360, + "vtable_address": 6466744456, "methods": [ - 6455749424, - 6455736720 + 6455751216, + 6455738512 ], "bases": [ { @@ -100792,7 +100796,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775888, + "complete_object_locator": 6468779984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100801,10 +100805,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466740616, + "vtable_address": 6466744712, "methods": [ - 6455749616, - 6455736736 + 6455751408, + 6455738528 ], "bases": [ { @@ -100824,7 +100828,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468776384, + "complete_object_locator": 6468780480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100833,10 +100837,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466740408, + "vtable_address": 6466744504, "methods": [ - 6455749808, - 6455736752 + 6455751600, + 6455738544 ], "bases": [ { @@ -100856,7 +100860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468776136, + "complete_object_locator": 6468780232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100865,10 +100869,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466250344, + "vtable_address": 6466254456, "methods": [ - 6452049408, - 6452031056 + 6452050992, + 6452032640 ], "bases": [ { @@ -100888,7 +100892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645304, + "complete_object_locator": 6468649400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100897,10 +100901,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466473528, + "vtable_address": 6466477656, "methods": [ - 6453394464, - 6453310800 + 6453396224, + 6453312560 ], "bases": [ { @@ -100920,7 +100924,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468703800, + "complete_object_locator": 6468707896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100929,10 +100933,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465369792, + "vtable_address": 6465373952, "methods": [ - 6447919072, - 6447911360 + 6447920640, + 6447912928 ], "bases": [ { @@ -100952,7 +100956,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468436336, + "complete_object_locator": 6468440432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100961,10 +100965,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465643288, + "vtable_address": 6465647464, "methods": [ - 6448390512, - 6448371392 + 6448392080, + 6448372960 ], "bases": [ { @@ -100984,7 +100988,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468480064, + "complete_object_locator": 6468484160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -100993,10 +100997,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466476192, + "vtable_address": 6466480320, "methods": [ - 6453394656, - 6453310816 + 6453396416, + 6453312576 ], "bases": [ { @@ -101016,7 +101020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704648, + "complete_object_locator": 6468708744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101025,10 +101029,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465733016, + "vtable_address": 6465737208, "methods": [ - 6449055088, - 6448973696 + 6449056640, + 6448975264 ], "bases": [ { @@ -101048,7 +101052,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498952, + "complete_object_locator": 6468503048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101057,10 +101061,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466091552, + "vtable_address": 6466095760, "methods": [ - 6451394400, - 6451351776 + 6451395968, + 6451353344 ], "bases": [ { @@ -101080,7 +101084,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468601384, + "complete_object_locator": 6468605480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101089,10 +101093,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466091640, + "vtable_address": 6466095848, "methods": [ - 6451394592, - 6451351792 + 6451396160, + 6451353360 ], "bases": [ { @@ -101112,7 +101116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468601632, + "complete_object_locator": 6468605728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101121,10 +101125,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465461168, + "vtable_address": 6465465344, "methods": [ - 6448215744, - 6448193024 + 6448217312, + 6448194592 ], "bases": [ { @@ -101144,7 +101148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468453344, + "complete_object_locator": 6468457440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101153,10 +101157,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466151624, + "vtable_address": 6466155832, "methods": [ - 6451644016, - 6451636656 + 6451645600, + 6451638240 ], "bases": [ { @@ -101176,7 +101180,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621128, + "complete_object_locator": 6468625224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101185,10 +101189,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466259536, + "vtable_address": 6466263648, "methods": [ - 6452049600, - 6452031072 + 6452051184, + 6452032656 ], "bases": [ { @@ -101208,7 +101212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646944, + "complete_object_locator": 6468651040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101217,10 +101221,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465461024, + "vtable_address": 6465465200, "methods": [ - 6448215936, - 6448193040 + 6448217504, + 6448194608 ], "bases": [ { @@ -101240,7 +101244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468453096, + "complete_object_locator": 6468457192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101249,10 +101253,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466479736, + "vtable_address": 6466483864, "methods": [ - 6453394848, - 6453310832 + 6453396608, + 6453312592 ], "bases": [ { @@ -101272,7 +101276,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705528, + "complete_object_locator": 6468709624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101281,10 +101285,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465463328, + "vtable_address": 6465467504, "methods": [ - 6448216128, - 6448193056 + 6448217696, + 6448194624 ], "bases": [ { @@ -101304,7 +101308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468453592, + "complete_object_locator": 6468457688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101313,10 +101317,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466203640, + "vtable_address": 6466207800, "methods": [ - 6451950944, - 6451916080 + 6451952528, + 6451917664 ], "bases": [ { @@ -101336,7 +101340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468638080, + "complete_object_locator": 6468642176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101345,7 +101349,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6464424424, + "vtable_address": 6464428520, "methods": [ 6443874128, 6443847504 @@ -101368,7 +101372,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468221736, + "complete_object_locator": 6468225832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101377,10 +101381,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465994224, + "vtable_address": 6465998416, "methods": [ - 6450864256, - 6450827024 + 6450865824, + 6450828592 ], "bases": [ { @@ -101400,7 +101404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573976, + "complete_object_locator": 6468578072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101409,10 +101413,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6465460904, + "vtable_address": 6465465080, "methods": [ - 6448216320, - 6448193072 + 6448217888, + 6448194640 ], "bases": [ { @@ -101432,7 +101436,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452848, + "complete_object_locator": 6468456944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101441,10 +101445,10 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6466209592, + "vtable_address": 6466213704, "methods": [ - 6451951136, - 6451916096 + 6451952720, + 6451917680 ], "bases": [ { @@ -101464,7 +101468,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468638704, + "complete_object_locator": 6468642800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101473,7 +101477,7 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 6464737032, + "vtable_address": 6464741112, "methods": [ 6445372640, 6444873664 @@ -101510,7 +101514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468282720, + "complete_object_locator": 6468286816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101519,10 +101523,10 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 6466479760, + "vtable_address": 6466483888, "methods": [ - 6453395040, - 6453310832 + 6453396800, + 6453312592 ], "bases": [ { @@ -101556,7 +101560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705776, + "complete_object_locator": 6468709872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101565,15 +101569,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466469976, + "vtable_address": 6466474104, "methods": [ - 6453395232, - 6453310784 + 6453396992, + 6453312544 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468703488, + "complete_object_locator": 6468707584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101582,15 +101586,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466730856, + "vtable_address": 6466734952, "methods": [ - 6455750000, - 6455736704 + 6455751792, + 6455738496 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468775520, + "complete_object_locator": 6468779616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101599,7 +101603,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6464436776, + "vtable_address": 6464440872, "methods": [ 6443874320, 6443847488 @@ -101607,7 +101611,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468224192, + "complete_object_locator": 6468228288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101616,15 +101620,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465388448, + "vtable_address": 6465392608, "methods": [ - 6447955776, - 6447950400 + 6447957344, + 6447951968 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468440512, + "complete_object_locator": 6468444608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101633,7 +101637,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6464685120, + "vtable_address": 6464689200, "methods": [ 6444954208, 6444873664 @@ -101641,7 +101645,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468267080, + "complete_object_locator": 6468271176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101650,15 +101654,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465369816, + "vtable_address": 6465373976, "methods": [ - 6447919264, - 6447911344 + 6447920832, + 6447912912 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468436792, + "complete_object_locator": 6468440888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101667,7 +101671,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6464492656, + "vtable_address": 6464496752, "methods": [ 6444237712, 6444190736 @@ -101675,7 +101679,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468237440, + "complete_object_locator": 6468241536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101684,15 +101688,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466208368, + "vtable_address": 6466212528, "methods": [ - 6451951328, - 6451916064 + 6451952912, + 6451917648 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468638664, + "complete_object_locator": 6468642760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101701,15 +101705,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466740336, + "vtable_address": 6466744432, "methods": [ - 6455750192, - 6455736720 + 6455751984, + 6455738512 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468776096, + "complete_object_locator": 6468780192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101718,15 +101722,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466740592, + "vtable_address": 6466744688, "methods": [ - 6455750384, - 6455736736 + 6455752176, + 6455738528 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468776592, + "complete_object_locator": 6468780688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101735,15 +101739,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466740384, + "vtable_address": 6466744480, "methods": [ - 6455750576, - 6455736752 + 6455752368, + 6455738544 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468776344, + "complete_object_locator": 6468780440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101752,15 +101756,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466250320, + "vtable_address": 6466254432, "methods": [ - 6452049792, - 6452031056 + 6452051376, + 6452032640 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468645512, + "complete_object_locator": 6468649608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101769,15 +101773,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466473504, + "vtable_address": 6466477632, "methods": [ - 6453395424, - 6453310800 + 6453397184, + 6453312560 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468704008, + "complete_object_locator": 6468708104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101786,15 +101790,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465369768, + "vtable_address": 6465373928, "methods": [ - 6447919456, - 6447911360 + 6447921024, + 6447912928 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468436544, + "complete_object_locator": 6468440640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101803,15 +101807,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465643264, + "vtable_address": 6465647440, "methods": [ - 6448390704, - 6448371392 + 6448392272, + 6448372960 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468480272, + "complete_object_locator": 6468484368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101820,15 +101824,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466476168, + "vtable_address": 6466480296, "methods": [ - 6453395616, - 6453310816 + 6453397376, + 6453312576 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468704856, + "complete_object_locator": 6468708952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101837,15 +101841,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465732992, + "vtable_address": 6465737184, "methods": [ - 6449055280, - 6448973696 + 6449056832, + 6448975264 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468499160, + "complete_object_locator": 6468503256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101854,15 +101858,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466091528, + "vtable_address": 6466095736, "methods": [ - 6451394784, - 6451351776 + 6451396352, + 6451353344 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468601592, + "complete_object_locator": 6468605688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101871,15 +101875,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466091616, + "vtable_address": 6466095824, "methods": [ - 6451394976, - 6451351792 + 6451396544, + 6451353360 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468601840, + "complete_object_locator": 6468605936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101888,15 +101892,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465461144, + "vtable_address": 6465465320, "methods": [ - 6448216512, - 6448193024 + 6448218080, + 6448194592 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468453552, + "complete_object_locator": 6468457648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101905,15 +101909,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466151600, + "vtable_address": 6466155808, "methods": [ - 6451644208, - 6451636656 + 6451645792, + 6451638240 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468621336, + "complete_object_locator": 6468625432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101922,15 +101926,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466259512, + "vtable_address": 6466263624, "methods": [ - 6452049984, - 6452031072 + 6452051568, + 6452032656 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468647152, + "complete_object_locator": 6468651248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101939,15 +101943,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465461000, + "vtable_address": 6465465176, "methods": [ - 6448216704, - 6448193040 + 6448218272, + 6448194608 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468453304, + "complete_object_locator": 6468457400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101956,15 +101960,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466479712, + "vtable_address": 6466483840, "methods": [ - 6453395808, - 6453310832 + 6453397568, + 6453312592 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468705736, + "complete_object_locator": 6468709832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101973,15 +101977,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465463304, + "vtable_address": 6465467480, "methods": [ - 6448216896, - 6448193056 + 6448218464, + 6448194624 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468453800, + "complete_object_locator": 6468457896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -101990,15 +101994,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466203616, + "vtable_address": 6466207776, "methods": [ - 6451951520, - 6451916080 + 6451953104, + 6451917664 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468638288, + "complete_object_locator": 6468642384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102007,7 +102011,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6464424400, + "vtable_address": 6464428496, "methods": [ 6443874512, 6443847504 @@ -102015,7 +102019,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468221944, + "complete_object_locator": 6468226040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102024,15 +102028,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465994200, + "vtable_address": 6465998392, "methods": [ - 6450864448, - 6450827024 + 6450866016, + 6450828592 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468574184, + "complete_object_locator": 6468578280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102041,15 +102045,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6465460880, + "vtable_address": 6465465056, "methods": [ - 6448217088, - 6448193072 + 6448218656, + 6448194640 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468453056, + "complete_object_locator": 6468457152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102058,15 +102062,15 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6466209568, + "vtable_address": 6466213680, "methods": [ - 6451951712, - 6451916096 + 6451953296, + 6451917680 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468638912, + "complete_object_locator": 6468643008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102075,9 +102079,9 @@ }, { "type_name": "CEntityStattrakDisplayValueRenderAttribCallback", - "vtable_address": 6465429504, + "vtable_address": 6465433704, "methods": [ - 6448075280 + 6448076848 ], "bases": [ { @@ -102097,7 +102101,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468449368, + "complete_object_locator": 6468453552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102106,7 +102110,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 6464684592, + "vtable_address": 6464688672, "methods": [ 6444821120, 6443748592, @@ -102216,7 +102220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266688, + "complete_object_locator": 6468270784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -102225,7 +102229,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 6464685088, + "vtable_address": 6464689168, "methods": [ 6444410224, 6444881120, @@ -102277,7 +102281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266832, + "complete_object_locator": 6468270928, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -102286,7 +102290,7 @@ }, { "type_name": "CEntitySubclassVDataBase", - "vtable_address": 6464645624, + "vtable_address": 6464649704, "methods": [ 6444463264, 6444476992, @@ -102313,7 +102317,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468250608, + "complete_object_locator": 6468254704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102322,32 +102326,32 @@ }, { "type_name": "CEntitySystem", - "vtable_address": 6465809560, - "methods": [ - 6459925200, - 6459925264, - 6459925168, - 6459924032, - 6459924464, - 6459925312, - 6459971200, - 6459917984, - 6459982128, - 6459973840, - 6449497472, - 6459958384, - 6459926944, - 6459953696, - 6449647264, - 6449643440, - 6449650112, - 6449594608, - 6449738848, - 6459998352, - 6459913104, - 6459977088, - 6459976960, - 6460007440 + "vtable_address": 6465813752, + "methods": [ + 6459927392, + 6459927456, + 6459927360, + 6459926224, + 6459926656, + 6459927504, + 6459973392, + 6459920176, + 6459984320, + 6459976032, + 6449499040, + 6459960576, + 6459929136, + 6459955888, + 6449648832, + 6449645008, + 6449651680, + 6449596176, + 6449740416, + 6460000544, + 6459915296, + 6459979280, + 6459979152, + 6460009632 ], "bases": [ { @@ -102367,7 +102371,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468518536, + "complete_object_locator": 6468522632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102376,9 +102380,9 @@ }, { "type_name": "CEntityTeamRenderAttribCallback", - "vtable_address": 6465895720, + "vtable_address": 6465899912, "methods": [ - 6450323200 + 6450324768 ], "bases": [ { @@ -102398,7 +102402,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554160, + "complete_object_locator": 6468558256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102407,9 +102411,9 @@ }, { "type_name": "CEntityViewmodelLeftHandedRenderAttribCallback", - "vtable_address": 6465429312, + "vtable_address": 6465433512, "methods": [ - 6448073168 + 6448074736 ], "bases": [ { @@ -102429,7 +102433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448984, + "complete_object_locator": 6468453168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102438,9 +102442,9 @@ }, { "type_name": "CEntityWeaponAmmoCountRenderAttribCallback", - "vtable_address": 6465427232, + "vtable_address": 6465431432, "methods": [ - 6448072208 + 6448073776 ], "bases": [ { @@ -102460,7 +102464,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468449960, + "complete_object_locator": 6468452784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102469,9 +102473,9 @@ }, { "type_name": "CEntityWeaponLastShakeTimeRenderAttribCallback", - "vtable_address": 6465428304, + "vtable_address": 6465432504, "methods": [ - 6448072448 + 6448074016 ], "bases": [ { @@ -102491,7 +102495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448728, + "complete_object_locator": 6468452912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102500,9 +102504,9 @@ }, { "type_name": "CEntityWeaponTaserChargeRenderAttribCallback", - "vtable_address": 6465429264, + "vtable_address": 6465433464, "methods": [ - 6448072848 + 6448074416 ], "bases": [ { @@ -102522,7 +102526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448856, + "complete_object_locator": 6468453040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102531,13 +102535,13 @@ }, { "type_name": "CEnvCubemapFogSystem", - "vtable_address": 6464477392, + "vtable_address": 6464481488, "methods": [ 6443748576, 6443748592, 6443748608, - 6444026608, - 6444026624, + 6444026864, + 6444026880, 6443748656, 6443748672, 6443748688, @@ -102554,7 +102558,7 @@ 6443748864, 6443748880, 6443748896, - 6444026768, + 6444027024, 6443748928, 6443748944, 6443748960, @@ -102589,11 +102593,11 @@ 6443749424, 6443749440, 6443749456, - 6444026576, + 6444026832, 6443749488, - 6444026560, - 6444027072, - 6444026544 + 6444026816, + 6444027328, + 6444026800 ], "bases": [ { @@ -102655,7 +102659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468233208, + "complete_object_locator": 6468237304, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -102664,10 +102668,10 @@ }, { "type_name": "CEnvCubemapFogSystem", - "vtable_address": 6464477888, + "vtable_address": 6464481984, "methods": [ - 6444027124, - 6444026752 + 6444027380, + 6444027008 ], "bases": [ { @@ -102729,7 +102733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468233440, + "complete_object_locator": 6468237536, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -102738,10 +102742,10 @@ }, { "type_name": "CEnvCubemapToolsResourceListener", - "vtable_address": 6464468064, + "vtable_address": 6464472160, "methods": [ 6443926160, - 6444012048 + 6444012304 ], "bases": [ { @@ -102761,7 +102765,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468233608, + "complete_object_locator": 6468237704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -102770,32 +102774,32 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 6464717776, + "vtable_address": 6464721856, "methods": [ 6445466896, 6445076416, 6444122752, - 6460051264, + 6460053456, 6445275568, - 6450410112, + 6450411680, 6445365904, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6445079440, 6445392368, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6445130704, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -102804,25 +102808,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445157232, 6445562656, 6445323136, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -102839,13 +102843,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -102853,39 +102857,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -102899,33 +102903,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -102953,34 +102957,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -103023,7 +103027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281280, + "complete_object_locator": 6468285376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -103032,32 +103036,32 @@ }, { "type_name": "CEnvSoundscapeAlias_snd_soundscape", - "vtable_address": 6464725392, + "vtable_address": 6464729472, "methods": [ 6445466896, 6445076576, 6444122752, - 6460051264, + 6460053456, 6445275568, - 6450410112, + 6450411680, 6445365904, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6445079440, 6445392368, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6445130704, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -103066,25 +103070,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445157248, 6445294544, 6445323184, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -103101,13 +103105,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -103115,39 +103119,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -103161,33 +103165,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -103215,34 +103219,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -103299,7 +103303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281752, + "complete_object_locator": 6468285848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -103308,32 +103312,32 @@ }, { "type_name": "CEnvSoundscapeProxy", - "vtable_address": 6464719528, + "vtable_address": 6464723608, "methods": [ 6445466896, 6445076736, 6444122752, - 6460051264, + 6460053456, 6445275632, - 6450410112, + 6450411680, 6445365904, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6445079488, 6445392368, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6445130704, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -103342,25 +103346,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445157264, 6445562672, 6445323232, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -103377,13 +103381,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -103391,39 +103395,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -103437,33 +103441,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -103491,34 +103495,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -103575,7 +103579,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281320, + "complete_object_locator": 6468285416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -103584,32 +103588,32 @@ }, { "type_name": "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", - "vtable_address": 6464723528, + "vtable_address": 6464727608, "methods": [ 6445466896, 6445076896, 6444122752, - 6460051264, + 6460053456, 6445275632, - 6450410112, + 6450411680, 6445365904, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6445079488, 6445392368, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6445130704, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -103618,25 +103622,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445157280, 6445294560, 6445323280, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -103653,13 +103657,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -103667,39 +103671,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -103713,33 +103717,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -103767,34 +103771,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -103865,7 +103869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281600, + "complete_object_locator": 6468285696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -103874,32 +103878,32 @@ }, { "type_name": "CEnvSoundscapeTriggerable", - "vtable_address": 6464721280, + "vtable_address": 6464725360, "methods": [ 6445466896, 6445077056, 6444122752, - 6460051264, + 6460053456, 6445275568, - 6450410112, + 6450411680, 6445365904, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6445079440, 6445392368, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6445130704, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -103908,25 +103912,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445157296, 6445562688, 6445323328, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -103943,13 +103947,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -103957,39 +103961,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -104003,33 +104007,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6445376512, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -104057,34 +104061,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -104141,7 +104145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468278104, + "complete_object_locator": 6468282200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -104150,32 +104154,32 @@ }, { "type_name": "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", - "vtable_address": 6464727528, + "vtable_address": 6464731608, "methods": [ 6445466896, 6445077216, 6444122752, - 6460051264, + 6460053456, 6445275568, - 6450410112, + 6450411680, 6445365904, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6445079440, 6445392368, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6445130704, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -104184,25 +104188,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445157312, 6445294576, 6445323376, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -104219,13 +104223,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -104233,39 +104237,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -104279,33 +104283,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6445376512, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -104333,34 +104337,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -104431,7 +104435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281896, + "complete_object_locator": 6468285992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -104440,12 +104444,12 @@ }, { "type_name": "CEnvSpritePreviewer", - "vtable_address": 6466122008, + "vtable_address": 6466126216, "methods": [ - 6451447472, - 6451542256, + 6451449056, + 6451543840, 6443824448, - 6451461808, + 6451463392, 6443816480, 6443816464, 6443816496, @@ -104469,7 +104473,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609624, + "complete_object_locator": 6468613720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -104478,7 +104482,7 @@ }, { "type_name": "CEnvVolumetricFogControllerSystem", - "vtable_address": 6464512792, + "vtable_address": 6464516888, "methods": [ 6443748576, 6443748592, @@ -104602,7 +104606,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239928, + "complete_object_locator": 6468244024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -104611,7 +104615,7 @@ }, { "type_name": "CEnvVolumetricFogControllerSystem", - "vtable_address": 6464513288, + "vtable_address": 6464517384, "methods": [ 6444264072, 6444264240 @@ -104676,7 +104680,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240080, + "complete_object_locator": 6468244176, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -104685,7 +104689,7 @@ }, { "type_name": "CEnvWindControllerSystem", - "vtable_address": 6464511240, + "vtable_address": 6464515336, "methods": [ 6443748576, 6443748592, @@ -104809,7 +104813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240256, + "complete_object_locator": 6468244352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -104818,7 +104822,7 @@ }, { "type_name": "CEnvWindControllerSystem", - "vtable_address": 6464511752, + "vtable_address": 6464515848, "methods": [ 6444264084, 6444263680 @@ -104883,7 +104887,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240408, + "complete_object_locator": 6468244504, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -104892,14 +104896,14 @@ }, { "type_name": "CEventsSaveDataOps", - "vtable_address": 6467192992, + "vtable_address": 6467197056, "methods": [ - 6460068816, - 6460069104, - 6460069360, - 6460069472, - 6460069488, - 6460069520 + 6460071008, + 6460071296, + 6460071552, + 6460071664, + 6460071680, + 6460071712 ], "bases": [ { @@ -104919,7 +104923,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468939056, + "complete_object_locator": 6468943152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -104928,12 +104932,12 @@ }, { "type_name": "CExplosionDebrisEffectsList", - "vtable_address": 6466038624, + "vtable_address": 6466042832, "methods": [ - 6451068000, - 6451068784, - 6451068912, - 6451068288 + 6451069568, + 6451070352, + 6451070480, + 6451069856 ], "bases": [ { @@ -104981,7 +104985,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468585232, + "complete_object_locator": 6468589328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -104990,11 +104994,11 @@ }, { "type_name": "CExplosionDebrisEffectsManager", - "vtable_address": 6466038688, + "vtable_address": 6466042896, "methods": [ - 6451069312, + 6451070880, 6443748592, - 6451069456, + 6451071024, 6443748624, 6443748640, 6443748656, @@ -105048,11 +105052,11 @@ 6443749424, 6443749440, 6443749456, - 6451069280, + 6451070848, 6443749488, - 6451069264, - 6451069600, - 6451069248 + 6451070832, + 6451071168, + 6451070816 ], "bases": [ { @@ -105086,7 +105090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468585472, + "complete_object_locator": 6468589568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -105095,10 +105099,10 @@ }, { "type_name": "CFPSStats", - "vtable_address": 6466027856, + "vtable_address": 6466032064, "methods": [ - 6451026624, - 6450962768 + 6451028192, + 6450964336 ], "bases": [ { @@ -105118,7 +105122,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583312, + "complete_object_locator": 6468587408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -105127,10 +105131,10 @@ }, { "type_name": "CFSRUpscaleRenderer", - "vtable_address": 6466879904, + "vtable_address": 6466884016, "methods": [ - 6457000976, - 6456702016, + 6457003168, + 6456703824, 6443773360 ], "bases": [ @@ -105151,7 +105155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468810976, + "complete_object_locator": 6468815072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -105160,7 +105164,7 @@ }, { "type_name": "CFakeSpawnGroup", - "vtable_address": 6464729544, + "vtable_address": 6464733624, "methods": [ 6445180672, 6445160480, @@ -105213,7 +105217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468282048, + "complete_object_locator": 6468286144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -105222,32 +105226,32 @@ }, { "type_name": "CFilterAttributeInt", - "vtable_address": 6465786952, + "vtable_address": 6465791144, "methods": [ 6445466896, - 6449164736, + 6449166288, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -105256,25 +105260,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265360, - 6449331600, - 6449370400, + 6460060080, + 6449266912, + 6449333152, + 6449371952, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -105291,13 +105295,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -105305,42 +105309,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -105351,33 +105355,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -105405,34 +105409,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -105442,8 +105446,8 @@ 6444207072, 6444190512, 6443887696, - 6449321808, - 6449321072 + 6449323360, + 6449322624 ], "bases": [ { @@ -105505,7 +105509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468511120, + "complete_object_locator": 6468515216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -105514,32 +105518,32 @@ }, { "type_name": "CFilterClass", - "vtable_address": 6465774168, + "vtable_address": 6465778360, "methods": [ 6445466896, - 6449164960, + 6449166512, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -105548,25 +105552,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265376, - 6449331616, - 6449370448, + 6460060080, + 6449266928, + 6449333168, + 6449372000, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -105583,13 +105587,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -105597,42 +105601,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -105643,33 +105647,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -105697,34 +105701,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -105734,8 +105738,8 @@ 6444207072, 6444190512, 6443887696, - 6449322112, - 6449321072 + 6449323664, + 6449322624 ], "bases": [ { @@ -105797,7 +105801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468510056, + "complete_object_locator": 6468514152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -105806,32 +105810,32 @@ }, { "type_name": "CFilterLOS", - "vtable_address": 6465772400, + "vtable_address": 6465776592, "methods": [ 6445466896, - 6449165184, + 6449166736, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -105840,25 +105844,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265392, - 6449331632, - 6449370496, + 6460060080, + 6449266944, + 6449333184, + 6449372048, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -105875,13 +105879,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -105889,42 +105893,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -105935,33 +105939,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -105989,34 +105993,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -106026,8 +106030,8 @@ 6444207072, 6444190512, 6443887696, - 6449322176, - 6449321072 + 6449323728, + 6449322624 ], "bases": [ { @@ -106089,7 +106093,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468509904, + "complete_object_locator": 6468514000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -106098,32 +106102,32 @@ }, { "type_name": "CFilterMassGreater", - "vtable_address": 6465781544, + "vtable_address": 6465785736, "methods": [ 6445466896, - 6449165408, + 6449166960, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -106132,25 +106136,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265408, - 6449331648, - 6449370544, + 6460060080, + 6449266960, + 6449333200, + 6449372096, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -106167,13 +106171,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -106181,42 +106185,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -106227,33 +106231,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -106281,34 +106285,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -106318,8 +106322,8 @@ 6444207072, 6444190512, 6443887696, - 6449322384, - 6449321072 + 6449323936, + 6449322624 ], "bases": [ { @@ -106381,7 +106385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468510664, + "complete_object_locator": 6468514760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -106390,32 +106394,32 @@ }, { "type_name": "CFilterModel", - "vtable_address": 6465777976, + "vtable_address": 6465782168, "methods": [ 6445466896, - 6449165632, + 6449167184, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -106424,25 +106428,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265424, - 6449331664, - 6449370592, + 6460060080, + 6449266976, + 6449333216, + 6449372144, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -106459,13 +106463,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -106473,42 +106477,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -106519,33 +106523,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -106573,34 +106577,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -106610,8 +106614,8 @@ 6444207072, 6444190512, 6443887696, - 6449322480, - 6449321072 + 6449324032, + 6449322624 ], "bases": [ { @@ -106673,7 +106677,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468510360, + "complete_object_locator": 6468514456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -106682,32 +106686,32 @@ }, { "type_name": "CFilterMultiple", - "vtable_address": 6465768848, + "vtable_address": 6465773040, "methods": [ 6445466896, - 6449165856, + 6449167408, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6449168192, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6449169744, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -106716,25 +106720,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265440, - 6449331680, - 6449370640, + 6460060080, + 6449266992, + 6449333232, + 6449372192, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -106751,13 +106755,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -106765,42 +106769,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -106811,33 +106815,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -106865,34 +106869,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -106902,8 +106906,8 @@ 6444207072, 6444190512, 6443887696, - 6449322592, - 6449321200 + 6449324144, + 6449322752 ], "bases": [ { @@ -106965,7 +106969,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468509600, + "complete_object_locator": 6468513696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -106974,32 +106978,32 @@ }, { "type_name": "CFilterName", - "vtable_address": 6465776200, + "vtable_address": 6465780392, "methods": [ 6445466896, - 6449166080, + 6449167632, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -107008,25 +107012,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265456, - 6449331696, - 6449370688, + 6460060080, + 6449267008, + 6449333248, + 6449372240, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -107043,13 +107047,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -107057,42 +107061,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -107103,33 +107107,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -107157,34 +107161,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -107194,8 +107198,8 @@ 6444207072, 6444190512, 6443887696, - 6449323152, - 6449321072 + 6449324704, + 6449322624 ], "bases": [ { @@ -107257,7 +107261,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468510208, + "complete_object_locator": 6468514304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -107266,32 +107270,32 @@ }, { "type_name": "CFilterProximity", - "vtable_address": 6465770632, + "vtable_address": 6465774824, "methods": [ 6445466896, - 6449166304, + 6449167856, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -107300,25 +107304,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265472, - 6449331712, - 6449370736, + 6460060080, + 6449267024, + 6449333264, + 6449372288, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -107335,13 +107339,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -107349,42 +107353,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -107395,33 +107399,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -107449,34 +107453,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -107486,8 +107490,8 @@ 6444207072, 6444190512, 6443887696, - 6449323312, - 6449321072 + 6449324864, + 6449322624 ], "bases": [ { @@ -107549,7 +107553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468509752, + "complete_object_locator": 6468513848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -107558,32 +107562,32 @@ }, { "type_name": "CFilterTeam", - "vtable_address": 6465779760, + "vtable_address": 6465783952, "methods": [ 6445466896, - 6449166528, + 6449168080, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -107592,25 +107596,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265488, - 6449331728, - 6449370784, + 6460060080, + 6449267040, + 6449333280, + 6449372336, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -107627,13 +107631,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -107641,42 +107645,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -107687,33 +107691,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -107741,34 +107745,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -107778,8 +107782,8 @@ 6444207072, 6444190512, 6443887696, - 6449323488, - 6449321072 + 6449325040, + 6449322624 ], "bases": [ { @@ -107841,7 +107845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468510512, + "complete_object_locator": 6468514608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -107850,9 +107854,9 @@ }, { "type_name": "CFireSceneObject", - "vtable_address": 6466337000, + "vtable_address": 6466341160, "methods": [ - 6452438768, + 6452440384, 6443765216, 6443765488 ], @@ -107874,7 +107878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677424, + "complete_object_locator": 6468681520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -107883,14 +107887,14 @@ }, { "type_name": "CFireSceneObjectDesc", - "vtable_address": 6466337032, + "vtable_address": 6466341192, "methods": [ - 6452452144, - 6452442928, + 6452453760, + 6452444544, 6443766128, - 6452444992, + 6452446608, 6443766144, - 6452442896, + 6452444512, 6443766480, 6443766496, 6443766512, @@ -107907,7 +107911,7 @@ 6443766688, 6443766704, 6443766720, - 6452441536 + 6452443152 ], "bases": [ { @@ -107941,7 +107945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677552, + "complete_object_locator": 6468681648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -107950,15 +107954,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6465691752, + "vtable_address": 6465695928, "methods": [ - 6448674016, - 6448706448 + 6448675584, + 6448708016 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468488160, + "complete_object_locator": 6468492256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -107967,15 +107971,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6465449008, + "vtable_address": 6465453176, "methods": [ - 6448141168, - 6448204576 + 6448142736, + 6448206144 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468451840, + "complete_object_locator": 6468455936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -107984,15 +107988,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6465642856, + "vtable_address": 6465647032, "methods": [ - 6448347104, - 6448381424 + 6448348672, + 6448382992 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468479944, + "complete_object_locator": 6468484040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108001,15 +108005,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6465895432, + "vtable_address": 6465899624, "methods": [ - 6450322032, - 6450322048 + 6450323600, + 6450323616 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468553192, + "complete_object_locator": 6468557288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108018,15 +108022,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6465691728, + "vtable_address": 6465695904, "methods": [ - 6448674000, - 6448706432 + 6448675568, + 6448708000 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468488040, + "complete_object_locator": 6468492136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108035,7 +108039,7 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6464675984, + "vtable_address": 6464680064, "methods": [ 6444644800, 6444911760 @@ -108043,7 +108047,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468261216, + "complete_object_locator": 6468265312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108052,15 +108056,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6466197472, + "vtable_address": 6466201632, "methods": [ - 6451823312, - 6451927968 + 6451824896, + 6451929552 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468636816, + "complete_object_locator": 6468640912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108069,15 +108073,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6466319896, + "vtable_address": 6466324056, "methods": [ - 6452329088, - 6452329104 + 6452330704, + 6452330720 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468670552, + "complete_object_locator": 6468674648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108086,15 +108090,15 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6466319976, + "vtable_address": 6466324136, "methods": [ - 6452332960, - 6452332976 + 6452334576, + 6452334592 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468670672, + "complete_object_locator": 6468674768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108103,10 +108107,10 @@ }, { "type_name": "CFlashbangResolveLayerRenderer", - "vtable_address": 6466881960, + "vtable_address": 6466886072, "methods": [ - 6457001856, - 6456702144, + 6457004048, + 6456703952, 6443773360 ], "bases": [ @@ -108127,7 +108131,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468811104, + "complete_object_locator": 6468815200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108136,7 +108140,7 @@ }, { "type_name": "CFlashlightEffectManager", - "vtable_address": 6466048888, + "vtable_address": 6466053096, "methods": [ 6443748576, 6443748592, @@ -108159,7 +108163,7 @@ 6443748864, 6443748880, 6443748896, - 6451138208, + 6451139776, 6443748928, 6443748944, 6443748960, @@ -108194,11 +108198,11 @@ 6443749424, 6443749440, 6443749456, - 6451144912, + 6451146480, 6443749488, - 6451105088, - 6451087632, - 6451160448 + 6451106656, + 6451089200, + 6451162016 ], "bases": [ { @@ -108232,7 +108236,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589664, + "complete_object_locator": 6468593760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108241,13 +108245,13 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 6465850224, + "vtable_address": 6465854416, "methods": [ 6443748576, 6443748592, 6443748608, - 6449859584, - 6449859616, + 6449861152, + 6449861184, 6443748656, 6443748672, 6443748688, @@ -108299,11 +108303,11 @@ 6443749424, 6443749440, 6443749456, - 6449929696, + 6449931264, 6443749488, - 6449848032, - 6449819168, - 6449956496 + 6449849600, + 6449820736, + 6449958064 ], "bases": [ { @@ -108351,7 +108355,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468530584, + "complete_object_locator": 6468534680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -108360,11 +108364,11 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 6465850720, + "vtable_address": 6465854912, "methods": [ 6444481056, - 6449908960, - 6449908816, + 6449910528, + 6449910384, 6444481104 ], "bases": [ @@ -108413,7 +108417,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468530768, + "complete_object_locator": 6468534864, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -108422,15 +108426,15 @@ }, { "type_name": "CFlexAnimationTrack", - "vtable_address": 6467029688, + "vtable_address": 6467033752, "methods": [ - 6458927856, - 6458927920, - 6458928608, - 6458928000, - 6458928496, - 6458928528, - 6458926528 + 6458930048, + 6458930112, + 6458930800, + 6458930192, + 6458930688, + 6458930720, + 6458928720 ], "bases": [ { @@ -108450,7 +108454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468870536, + "complete_object_locator": 6468874632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -108459,11 +108463,11 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 6466075816, + "vtable_address": 6466080024, "methods": [ - 6451248144, + 6451249712, 6443748592, - 6451248256, + 6451249824, 6443748624, 6443748640, 6443748656, @@ -108517,12 +108521,12 @@ 6443749424, 6443749440, 6443749456, - 6451247648, + 6451249216, 6443749488, - 6451247632, - 6451250048, - 6451247616, - 6451247680 + 6451249200, + 6451251616, + 6451249184, + 6451249248 ], "bases": [ { @@ -108570,7 +108574,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468598248, + "complete_object_locator": 6468602344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -108579,9 +108583,9 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 6466076320, + "vtable_address": 6466080528, "methods": [ - 6451248416 + 6451249984 ], "bases": [ { @@ -108629,7 +108633,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468598432, + "complete_object_locator": 6468602528, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -108638,61 +108642,61 @@ }, { "type_name": "CFreeCamera", - "vtable_address": 6466020024, - "methods": [ - 6450922000, - 6450991872, - 6451026608, - 6451049984, - 6451026336, - 6450924928, - 6451020912, - 6451021296, - 6451016672, - 6451015488, - 6451042816, - 6451043040, - 6450986864, - 6450984624, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6450983760, - 6450983664, - 6450989216, - 6450989280, - 6451046288, - 6451046400, - 6451042976, - 6450984432, - 6450980704, - 6450980832, - 6450980768, - 6450931200, - 6451046256, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952, - 6450979648 + "vtable_address": 6466024232, + "methods": [ + 6450923568, + 6450993440, + 6451028176, + 6451051552, + 6451027904, + 6450926496, + 6451022480, + 6451022864, + 6451018240, + 6451017056, + 6451044384, + 6451044608, + 6450988432, + 6450986192, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6450985328, + 6450985232, + 6450990784, + 6450990848, + 6451047856, + 6451047968, + 6451044544, + 6450986000, + 6450982272, + 6450982400, + 6450982336, + 6450932768, + 6451047824, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520, + 6450981216 ], "bases": [ { @@ -108740,7 +108744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581568, + "complete_object_locator": 6468585664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -108749,9 +108753,9 @@ }, { "type_name": "CFreeCamera", - "vtable_address": 6466020456, + "vtable_address": 6466024664, "methods": [ - 6450989808 + 6450991376 ], "bases": [ { @@ -108799,7 +108803,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581752, + "complete_object_locator": 6468585848, "offset": 128, "constructor_displacement": 0, "class_attributes": 1 @@ -108808,32 +108812,32 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 6465327000, + "vtable_address": 6465331064, "methods": [ 6445466544, 6447808336, - 6448846688, - 6448866800, - 6448990896, - 6448816736, + 6448848256, + 6448868368, + 6448992464, + 6448818304, 6447846992, - 6450413456, - 6448987824, - 6450586832, + 6450415024, + 6448989392, + 6450588400, 6447808736, 6447851184, - 6448980064, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -108842,25 +108846,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6447821168, 6447844032, 6447845488, 6443799760, 6447821216, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -108876,14 +108880,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -108891,86 +108895,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6449317904, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6449319456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -108988,37 +108992,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -109028,68 +109032,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -109235,7 +109239,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468430920, + "complete_object_locator": 6468435016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -109244,14 +109248,14 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 6465329248, + "vtable_address": 6465333312, "methods": [ 6447808048, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -109397,7 +109401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431168, + "complete_object_locator": 6468435264, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -109406,9 +109410,9 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 6465329304, + "vtable_address": 6465333368, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -109554,7 +109558,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431208, + "complete_object_locator": 6468435304, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -109563,7 +109567,7 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 6465329320, + "vtable_address": 6465333384, "methods": [ 6447808036 ], @@ -109711,7 +109715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431248, + "complete_object_locator": 6468435344, "offset": 5152, "constructor_displacement": 0, "class_attributes": 1 @@ -109720,32 +109724,32 @@ }, { "type_name": "CFuncWater", - "vtable_address": 6465384376, + "vtable_address": 6465388536, "methods": [ 6445466928, - 6447935072, - 6448846864, - 6460051264, - 6447951952, - 6448816832, - 6447953968, - 6450413456, - 6450585280, - 6450586832, - 6447935760, - 6447957392, - 6448980192, + 6447936640, + 6448848432, + 6460053456, + 6447953520, + 6448818400, + 6447955536, + 6450415024, + 6450586848, + 6450588400, + 6447937328, + 6447958960, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -109754,25 +109758,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946608, - 6447952016, - 6447953184, + 6460060080, + 6447948176, + 6447953584, + 6447954752, 6443799760, - 6447947648, - 6448917040, + 6447949216, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -109789,13 +109793,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -109803,41 +109807,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -109849,33 +109853,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, - 6447955984, + 6450471280, + 6447957552, 6444243600, - 6447942736, + 6447944304, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -109903,34 +109907,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -109940,24 +109944,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -110036,7 +110040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439824, + "complete_object_locator": 6468443920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -110045,14 +110049,14 @@ }, { "type_name": "CFuncWater", - "vtable_address": 6465386296, + "vtable_address": 6465390456, "methods": [ - 6447934620, - 6448995376, - 6448972352, - 6448972096, + 6447936188, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -110128,7 +110132,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439984, + "complete_object_locator": 6468444080, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -110137,9 +110141,9 @@ }, { "type_name": "CFuncWater", - "vtable_address": 6465386352, + "vtable_address": 6465390512, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -110215,7 +110219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468440024, + "complete_object_locator": 6468444120, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -110224,14 +110228,14 @@ }, { "type_name": "CGBackpackSortFinished", - "vtable_address": 6466775568, + "vtable_address": 6466779664, "methods": [ - 6455880128, + 6455881888, 6443903536, 6443903584, 6443903632, 6443903520, - 6456029520 + 6456031296 ], "bases": [ { @@ -110265,7 +110269,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792824, + "complete_object_locator": 6468796920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110274,10 +110278,10 @@ }, { "type_name": "CGCClientJobFinalizePurchase", - "vtable_address": 6466668624, + "vtable_address": 6466672720, "methods": [ - 6455310880, - 6456031680, + 6455312640, + 6456033456, 6443903584, 6443903632, 6443903520, @@ -110315,7 +110319,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468756392, + "complete_object_locator": 6468760488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110324,10 +110328,10 @@ }, { "type_name": "CGCClientJobInitPurchase", - "vtable_address": 6466668568, + "vtable_address": 6466672664, "methods": [ - 6455310944, - 6456033584, + 6455312704, + 6456035360, 6443903584, 6443903632, 6443903520, @@ -110365,7 +110369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468756256, + "complete_object_locator": 6468760352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110374,11 +110378,11 @@ }, { "type_name": "CGCClientJobSteamDatagramTicket", - "vtable_address": 6466760944, + "vtable_address": 6466765040, "methods": [ - 6455880192, + 6455881952, 6443903536, - 6456035792, + 6456037568, 6443903632, 6443903520, 6443903504 @@ -110415,7 +110419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468782232, + "complete_object_locator": 6468786328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110424,11 +110428,11 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 6466833168, + "vtable_address": 6466837280, "methods": [ - 6456483968, - 6456522400, - 6456535168, + 6456485744, + 6456524176, + 6456536944, 6443748624, 6443748640, 6443748656, @@ -110471,8 +110475,8 @@ 6443749248, 6443749264, 6443749280, - 6456463456, - 6456521904, + 6456465232, + 6456523680, 6443749328, 6443749344, 6443749360, @@ -110485,13 +110489,13 @@ 6443749472, 6443749488, 6443749504, - 6456441344, - 6463705588, - 6456463488, - 6456479408, - 6456488240, - 6456310272, - 6456309952 + 6456443120, + 6463707780, + 6456465264, + 6456481184, + 6456490016, + 6456312048, + 6456311728 ], "bases": [ { @@ -110539,7 +110543,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468799160, + "complete_object_locator": 6468803256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -110548,12 +110552,12 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 6466833704, + "vtable_address": 6466837816, "methods": [ - 6456440152, - 6456520080, - 6456520112, - 6456521424 + 6456441928, + 6456521856, + 6456521888, + 6456523200 ], "bases": [ { @@ -110601,7 +110605,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468799200, + "complete_object_locator": 6468803296, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -110610,14 +110614,14 @@ }, { "type_name": "CGCClientWelcomeJob", - "vtable_address": 6466760728, + "vtable_address": 6466764824, "methods": [ - 6455880256, + 6455882016, 6443903536, 6443903584, 6443903632, 6443903520, - 6456029568 + 6456031344 ], "bases": [ { @@ -110651,7 +110655,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781584, + "complete_object_locator": 6468785680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110660,14 +110664,14 @@ }, { "type_name": "CGCCraftResponse", - "vtable_address": 6466843848, + "vtable_address": 6466847960, "methods": [ - 6456541840, + 6456543616, 6443903536, 6443903584, 6443903632, 6443903520, - 6456542096 + 6456543872 ], "bases": [ { @@ -110701,7 +110705,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800800, + "complete_object_locator": 6468804896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110710,14 +110714,14 @@ }, { "type_name": "CGCDev_NewItemRequestResponse", - "vtable_address": 6466775360, + "vtable_address": 6466779456, "methods": [ - 6455880320, + 6455882080, 6443903536, 6443903584, 6443903632, 6443903520, - 6456031312 + 6456033088 ], "bases": [ { @@ -110751,7 +110755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792176, + "complete_object_locator": 6468796272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110760,13 +110764,13 @@ }, { "type_name": "CGCFetchWebResource", - "vtable_address": 6466833032, + "vtable_address": 6466837144, "methods": [ - 6456441568, + 6456443344, 6443903536, 6443903584, 6443903632, - 6456454960, + 6456456736, 6443903504 ], "bases": [ @@ -110801,7 +110805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468798856, + "complete_object_locator": 6468802952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110810,14 +110814,14 @@ }, { "type_name": "CGCMsgAdjustEquipSlotsManualAcknowledged", - "vtable_address": 6466776000, + "vtable_address": 6466780096, "methods": [ - 6455880384, + 6455882144, 6443903536, 6443903584, 6443903632, 6443903520, - 6456031408 + 6456033184 ], "bases": [ { @@ -110865,7 +110869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468793952, + "complete_object_locator": 6468798048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110874,14 +110878,14 @@ }, { "type_name": "CGCMsgAdjustEquipSlotsShuffleAcknowledged", - "vtable_address": 6466776056, + "vtable_address": 6466780152, "methods": [ - 6455880448, + 6455882208, 6443903536, 6443903584, 6443903632, 6443903520, - 6456031408 + 6456033184 ], "bases": [ { @@ -110929,7 +110933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468794096, + "complete_object_locator": 6468798192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110938,14 +110942,14 @@ }, { "type_name": "CGCNameBaseItemResponse", - "vtable_address": 6466843992, + "vtable_address": 6466848104, "methods": [ - 6456541904, + 6456543680, 6443903536, 6443903584, 6443903632, 6443903520, - 6456542928 + 6456544704 ], "bases": [ { @@ -110979,7 +110983,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468801328, + "complete_object_locator": 6468805424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -110988,14 +110992,14 @@ }, { "type_name": "CGCPaintKitItemResponse", - "vtable_address": 6466843904, + "vtable_address": 6466848016, "methods": [ - 6456541968, + 6456543744, 6443903536, 6443903584, 6443903632, 6443903520, - 6456542992 + 6456544768 ], "bases": [ { @@ -111029,7 +111033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800936, + "complete_object_locator": 6468805032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111038,25 +111042,25 @@ }, { "type_name": "CGCStorePurchaseInit_LineItem", - "vtable_address": 6464979136, - "methods": [ - 6446324432, - 6457189536, - 6446305504, - 6446305632, - 6446305680, - 6457189584, - 6457186560, - 6446305696, - 6446307280, + "vtable_address": 6464983232, + "methods": [ + 6446326080, + 6457191728, 6446305888, + 6446306016, + 6446306064, + 6457191776, + 6457188752, + 6446306080, + 6446307680, + 6446306288, 6443742160, - 6446306704, - 6457190896, - 6457192720, - 6446307472, - 6446309424, - 6446309040 + 6446307104, + 6457193088, + 6457194912, + 6446308800, + 6446309840, + 6446309824 ], "bases": [ { @@ -111090,7 +111094,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468315512, + "complete_object_locator": 6468319744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111099,27 +111103,25 @@ }, { "type_name": "CGCToGCMsgMasterAck", - "vtable_address": 6464978144, - "methods": [ - 6446305296, - 6457189536, - 6446295120, - 6446297536, - 6446297568, - 6457189584, - 6457186560, - 6446297600, - 6446298880, - 6446298112, - 6443742160, - 6446298608, - 6457190896, - 6457192720, + "vtable_address": 6464982256, + "methods": [ + 6446305744, + 6457191728, + 6446295504, + 6446297920, + 6446297952, + 6457191776, + 6457188752, + 6446297984, + 6446299264, + 6446298496, + 6443742160, 6446298992, - 6446299616, - 6446299504, - 6457187520, - 6446301232 + 6457193088, + 6457194912, + 6446299552, + 6446300640, + 6446300144 ], "bases": [ { @@ -111153,7 +111155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468307048, + "complete_object_locator": 6468311280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111162,25 +111164,25 @@ }, { "type_name": "CGCToGCMsgMasterAck_Response", - "vtable_address": 6464979600, - "methods": [ - 6446326688, - 6457189536, - 6446319536, - 6446320544, - 6446320576, - 6457189584, - 6457186560, - 6446320592, - 6446322048, - 6446321136, - 6443742160, - 6446321872, - 6457190896, - 6457192720, - 6446322096, - 6446322448, - 6446322400 + "vtable_address": 6464983696, + "methods": [ + 6446327200, + 6457191728, + 6446319936, + 6446320928, + 6446320976, + 6457191776, + 6457188752, + 6446321056, + 6446322432, + 6446321600, + 6443742160, + 6446322256, + 6457193088, + 6457194912, + 6446322480, + 6446322832, + 6446322800 ], "bases": [ { @@ -111214,7 +111216,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468307184, + "complete_object_locator": 6468311416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111223,27 +111225,25 @@ }, { "type_name": "CGCToGCMsgMasterStartupComplete", - "vtable_address": 6464980720, + "vtable_address": 6464984832, "methods": [ - 6446339872, - 6457189536, - 6446335632, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446339408, - 6446339392, - 6457388960, - 6457389040 + 6446340944, + 6457191728, + 6446337120, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446339792, + 6446339776 ], "bases": [ { @@ -111291,7 +111291,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468307320, + "complete_object_locator": 6468311552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111300,25 +111300,25 @@ }, { "type_name": "CGCToGCMsgRouted", - "vtable_address": 6464984120, + "vtable_address": 6464988216, "methods": [ - 6446366880, - 6457189536, - 6446346512, - 6446347792, - 6446348000, - 6457189584, - 6457186560, - 6446348016, - 6446349312, - 6446348336, - 6443742160, - 6446348960, - 6457190896, - 6457192720, + 6446367264, + 6457191728, + 6446347632, + 6446348464, + 6446348544, + 6457191776, + 6457188752, + 6446348576, + 6446349696, + 6446348736, + 6443742160, 6446349344, - 6446349856, - 6446349648 + 6457193088, + 6457194912, + 6446349808, + 6446351040, + 6446351024 ], "bases": [ { @@ -111352,7 +111352,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468307464, + "complete_object_locator": 6468311696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111361,25 +111361,25 @@ }, { "type_name": "CGCToGCMsgRoutedReply", - "vtable_address": 6464985608, + "vtable_address": 6464989848, "methods": [ - 6446385296, - 6457189536, - 6446374768, - 6446375904, - 6446375968, - 6457189584, - 6457186560, - 6446375984, - 6446379536, - 6446377488, - 6443742160, - 6446379200, - 6457190896, - 6457192720, - 6446381008, - 6446381856, - 6446381840 + 6446385824, + 6457191728, + 6446375328, + 6446376896, + 6446377408, + 6457191776, + 6457188752, + 6446377424, + 6446381360, + 6446378752, + 6443742160, + 6446379936, + 6457193088, + 6457194912, + 6446381872, + 6446382384, + 6446382320 ], "bases": [ { @@ -111413,7 +111413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468307600, + "complete_object_locator": 6468311832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111422,14 +111422,14 @@ }, { "type_name": "CGCUnlockCrateResponse", - "vtable_address": 6466843624, + "vtable_address": 6466847736, "methods": [ - 6456542032, + 6456543808, 6443903536, 6443903584, 6443903632, 6443903520, - 6456543040 + 6456544816 ], "bases": [ { @@ -111463,7 +111463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800664, + "complete_object_locator": 6468804760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111472,27 +111472,27 @@ }, { "type_name": "CGameClientExports", - "vtable_address": 6466006240, - "methods": [ - 6450888096, - 6450888192, - 6450887888, - 6450887968, - 6450888000, - 6450887904, - 6450887920, - 6450888080, - 6450888256, - 6450887936, - 6450887952, - 6450888352, - 6450888384, - 6450888400, - 6450888416, - 6450888480, - 6450888544, - 6450888560, - 6450888576 + "vtable_address": 6466010496, + "methods": [ + 6450889664, + 6450889760, + 6450889456, + 6450889536, + 6450889568, + 6450889472, + 6450889488, + 6450889648, + 6450889824, + 6450889504, + 6450889520, + 6450889920, + 6450889952, + 6450889968, + 6450889984, + 6450890048, + 6450890112, + 6450890128, + 6450890144 ], "bases": [ { @@ -111610,7 +111610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468575120, + "complete_object_locator": 6468579216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -111619,12 +111619,12 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 6465811456, + "vtable_address": 6465815648, "methods": [ 6447730672, 6447730880, - 6449663808, - 6449602816, + 6449665376, + 6449604384, 6447730800, 6447730608, 6447730624, @@ -111632,29 +111632,29 @@ 6447730736, 6447730640, 6447730656, - 6449589744, - 6449513424, - 6449583424, - 6463705588, - 6463705588, - 6449772688, - 6449525344, + 6449591312, + 6449514992, + 6449584992, + 6463707780, + 6463707780, + 6449774256, + 6449526912, 6447730592, 6447731056, 6447731072, - 6449735424, - 6449608960, - 6449738768, - 6449589760, - 6449640480, - 6463705588, - 6449569104, - 6449581536, - 6449594736, - 6449626544, + 6449736992, + 6449610528, + 6449740336, + 6449591328, + 6449642048, + 6463707780, + 6449570672, + 6449583104, + 6449596304, + 6449628112, 6447731088, - 6449626528, - 6449568928 + 6449628096, + 6449570496 ], "bases": [ { @@ -111814,7 +111814,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468522560, + "complete_object_locator": 6468526656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -111823,12 +111823,12 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 6465811736, + "vtable_address": 6465815928, "methods": [ 6447727256, 6447727268, 6447727280, - 6449602892, + 6449604460, 6447727292, 6447727304, 6447727316, @@ -111836,24 +111836,24 @@ 6447727340, 6447727352, 6447727364, - 6449585456, - 6449590928, - 6449591168, + 6449587024, + 6449592496, + 6449592736, 6447727376, - 6449589728, - 6449514640, + 6449591296, + 6449516208, 6447730960, - 6449586144, - 6449514624, - 6449581584, - 6449514656, - 6449721584, + 6449587712, + 6449516192, + 6449583152, + 6449516224, + 6449723152, 6447730976, 6447730992, 6447731008, 6447731024, 6447731040, - 6449531888 + 6449533456 ], "bases": [ { @@ -112013,7 +112013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468522600, + "complete_object_locator": 6468526696, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -112022,32 +112022,32 @@ }, { "type_name": "CGameEntitySystem", - "vtable_address": 6465810800, - "methods": [ - 6449522768, - 6449522896, - 6449521536, - 6449521264, - 6449521392, - 6449523248, - 6449625168, - 6459917984, - 6459982128, - 6449634752, - 6449497536, - 6449585504, - 6449525648, - 6449574080, - 6449647280, - 6449643456, - 6449650128, - 6449594624, - 6449738864, - 6449738960, - 6449499584, - 6449656352, - 6449650544, - 6449771680 + "vtable_address": 6465814992, + "methods": [ + 6449524336, + 6449524464, + 6449523104, + 6449522832, + 6449522960, + 6449524816, + 6449626736, + 6459920176, + 6459984320, + 6449636320, + 6449499104, + 6449587072, + 6449527216, + 6449575648, + 6449648848, + 6449645024, + 6449651696, + 6449596192, + 6449740432, + 6449740528, + 6449501152, + 6449657920, + 6449652112, + 6449773248 ], "bases": [ { @@ -112081,7 +112081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468519648, + "complete_object_locator": 6468523744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112090,42 +112090,42 @@ }, { "type_name": "CGameEvent", - "vtable_address": 6465817376, - "methods": [ - 6449497760, - 6449589792, - 6449586208, - 6449626480, - 6449626416, - 6449625664, - 6449581472, - 6449586224, - 6449595264, - 6449585408, - 6449594688, - 6449594224, - 6449583440, - 6449583616, - 6449583536, - 6449593056, - 6449591104, - 6449591200, - 6449591792, - 6449592448, - 6449726912, - 6449728960, - 6449734944, - 6449728224, - 6449734896, - 6449734800, - 6449727712, - 6449727840, - 6449734224, - 6449733616, - 6449734400, - 6449601568, - 6449724368, - 6449582000 + "vtable_address": 6465821568, + "methods": [ + 6449499328, + 6449591360, + 6449587776, + 6449628048, + 6449627984, + 6449627232, + 6449583040, + 6449587792, + 6449596832, + 6449586976, + 6449596256, + 6449595792, + 6449585008, + 6449585184, + 6449585104, + 6449594624, + 6449592672, + 6449592768, + 6449593360, + 6449594016, + 6449728480, + 6449730528, + 6449736512, + 6449729792, + 6449736464, + 6449736368, + 6449729280, + 6449729408, + 6449735792, + 6449735184, + 6449735968, + 6449603136, + 6449725936, + 6449583568 ], "bases": [ { @@ -112145,7 +112145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523920, + "complete_object_locator": 6468528016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112154,10 +112154,10 @@ }, { "type_name": "CGameEventListener", - "vtable_address": 6464444560, + "vtable_address": 6464448656, "methods": [ 6443901728, - 6463705588 + 6463707780 ], "bases": [ { @@ -112177,7 +112177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468227024, + "complete_object_locator": 6468231120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112186,24 +112186,24 @@ }, { "type_name": "CGameEventManager", - "vtable_address": 6465818040, - "methods": [ - 6449497840, - 6449632960, - 6449706416, - 6449504144, - 6449574688, - 6449695440, - 6449537056, - 6449576128, - 6449576832, - 6449546032, - 6449578896, - 6449722512, - 6449769248, - 6449636576, - 6449658736, - 6449516736 + "vtable_address": 6465822232, + "methods": [ + 6449499408, + 6449634528, + 6449707984, + 6449505712, + 6449576256, + 6449697008, + 6449538624, + 6449577696, + 6449578400, + 6449547600, + 6449580464, + 6449724080, + 6449770816, + 6449638144, + 6449660304, + 6449518304 ], "bases": [ { @@ -112237,7 +112237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468524048, + "complete_object_locator": 6468528144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112246,25 +112246,25 @@ }, { "type_name": "CGameInfo", - "vtable_address": 6464935336, - "methods": [ - 6446116752, - 6457189536, - 6446107008, - 6446107456, - 6446107568, - 6457189584, - 6457186560, - 6446107584, - 6446108544, + "vtable_address": 6464939432, + "methods": [ + 6446117136, + 6457191728, + 6446107392, + 6446107696, 6446107808, + 6457191776, + 6457188752, + 6446107824, + 6446108928, + 6446108192, 6443742160, - 6446108304, - 6457190896, - 6457192720, - 6446108976, - 6446111696, - 6446110960 + 6446108688, + 6457193088, + 6457194912, + 6446109360, + 6446112080, + 6446111344 ], "bases": [ { @@ -112298,7 +112298,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468353784, + "complete_object_locator": 6468358016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112307,25 +112307,25 @@ }, { "type_name": "CGameInfo_CCSGameInfo", - "vtable_address": 6464932888, - "methods": [ - 6446098528, - 6457189536, - 6446086880, - 6446086992, - 6446087040, - 6457189584, - 6457186560, - 6446087056, - 6446087952, - 6446087152, - 6443742160, - 6446087712, - 6457190896, - 6457192720, - 6446088272, - 6446090320, - 6446090304 + "vtable_address": 6464936984, + "methods": [ + 6446097888, + 6457191728, + 6446087264, + 6446087376, + 6446087424, + 6457191776, + 6457188752, + 6446087440, + 6446088336, + 6446087536, + 6443742160, + 6446088096, + 6457193088, + 6457194912, + 6446088656, + 6446090704, + 6446090688 ], "bases": [ { @@ -112359,7 +112359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468353920, + "complete_object_locator": 6468358152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112368,25 +112368,25 @@ }, { "type_name": "CGameInfo_CDotaGameInfo", - "vtable_address": 6464930712, + "vtable_address": 6464934808, "methods": [ - 6446081936, - 6457189536, - 6446021152, - 6446022592, - 6446023008, - 6457189584, - 6457186560, - 6446023024, - 6446026256, - 6446023936, + 6446082320, + 6457191728, + 6446021536, + 6446022976, + 6446023392, + 6457191776, + 6457188752, + 6446023408, + 6446026640, + 6446024320, 6443742160, - 6446025280, - 6457190896, - 6457192720, - 6446026592, - 6446027184, - 6446027168 + 6446025664, + 6457193088, + 6457194912, + 6446026976, + 6446027568, + 6446027552 ], "bases": [ { @@ -112420,7 +112420,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354056, + "complete_object_locator": 6468358288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112429,27 +112429,27 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CHeroSelectEvent", - "vtable_address": 6464923624, - "methods": [ - 6446008752, - 6457189536, - 6445999760, - 6446000992, - 6446001040, - 6457189584, - 6457186560, - 6446001584, - 6446002656, - 6446001696, - 6443742160, - 6446002304, - 6457190896, - 6457192720, - 6446002736, - 6446003072, - 6446003056, - 6457187520, - 6446007696 + "vtable_address": 6464927720, + "methods": [ + 6446009136, + 6457191728, + 6446000064, + 6446001376, + 6446001424, + 6457191776, + 6457188752, + 6446001968, + 6446003040, + 6446002080, + 6443742160, + 6446002688, + 6457193088, + 6457194912, + 6446003120, + 6446003248, + 6446003232, + 6457189712, + 6446008080 ], "bases": [ { @@ -112483,7 +112483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354192, + "complete_object_locator": 6468358424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112492,29 +112492,27 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CPlayerInfo", - "vtable_address": 6464921544, + "vtable_address": 6464925656, "methods": [ - 6445991232, - 6457189536, - 6445981344, - 6445981648, - 6445981776, - 6457189584, - 6457186560, - 6445981792, - 6445983568, + 6445991600, + 6457191728, + 6445981728, + 6445982032, 6445982160, - 6443742160, - 6445983056, - 6457190896, - 6457192720, - 6445984240, - 6445984480, - 6445984448, - 6457187520, - 6445987152, - 6457187520, - 6445988256 + 6457191776, + 6457188752, + 6445982176, + 6445983952, + 6445982544, + 6443742160, + 6445983440, + 6457193088, + 6457194912, + 6445984624, + 6445984864, + 6445984832, + 6457189712, + 6445990288 ], "bases": [ { @@ -112548,7 +112546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468354328, + "complete_object_locator": 6468358560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112557,17 +112555,17 @@ }, { "type_name": "CGameInstructorSaveRestoreBlockHandler", - "vtable_address": 6465965512, + "vtable_address": 6465969704, "methods": [ - 6450748928, + 6450750480, 6444489280, - 6450749008, - 6450749760, + 6450750528, + 6450751312, 6444489296, - 6450749856, - 6450749888, - 6450750000, - 6450750752 + 6450751408, + 6450751440, + 6450751568, + 6450752320 ], "bases": [ { @@ -112601,7 +112599,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566656, + "complete_object_locator": 6468570752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112610,9 +112608,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllGrenades_v1", - "vtable_address": 6466319944, + "vtable_address": 6466324104, "methods": [ - 6452329248 + 6452330864 ], "bases": [ { @@ -112632,7 +112630,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468673848, + "complete_object_locator": 6468677944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112641,10 +112639,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_ID_v1", - "vtable_address": 6466319672, + "vtable_address": 6466323832, "methods": [ - 6452328144, - 6452328928 + 6452329760, + 6452330544 ], "bases": [ { @@ -112678,7 +112676,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468673168, + "complete_object_locator": 6468677264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112687,10 +112685,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_Match_Stats_v1", - "vtable_address": 6466319768, + "vtable_address": 6466323928, "methods": [ - 6452328144, - 6452328992 + 6452329760, + 6452330608 ], "bases": [ { @@ -112724,7 +112722,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468673440, + "complete_object_locator": 6468677536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112733,10 +112731,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_Position_v1", - "vtable_address": 6466319872, + "vtable_address": 6466324032, "methods": [ - 6452328144, - 6452329120 + 6452329760, + 6452330736 ], "bases": [ { @@ -112770,7 +112768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468673712, + "complete_object_locator": 6468677808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112779,10 +112777,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_State_v1", - "vtable_address": 6466319720, + "vtable_address": 6466323880, "methods": [ - 6452328144, - 6452328944 + 6452329760, + 6452330560 ], "bases": [ { @@ -112816,7 +112814,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468673304, + "complete_object_locator": 6468677400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112825,10 +112823,10 @@ }, { "type_name": "CGameIntegrationDataRenderer_AllPlayers_Weapons_v1", - "vtable_address": 6466319824, + "vtable_address": 6466323984, "methods": [ - 6452328144, - 6452329040 + 6452329760, + 6452330656 ], "bases": [ { @@ -112862,7 +112860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468673576, + "complete_object_locator": 6468677672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112871,9 +112869,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Bomb_v1", - "vtable_address": 6466321256, + "vtable_address": 6466325416, "methods": [ - 6452337200 + 6452338816 ], "bases": [ { @@ -112893,7 +112891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468673976, + "complete_object_locator": 6468678072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112902,9 +112900,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Map_Round_Wins_v1", - "vtable_address": 6466318288, + "vtable_address": 6466322448, "methods": [ - 6452322832 + 6452324448 ], "bases": [ { @@ -112924,7 +112922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672056, + "complete_object_locator": 6468676152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112933,9 +112931,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Map_v1", - "vtable_address": 6466317880, + "vtable_address": 6466322040, "methods": [ - 6452321440 + 6452323056 ], "bases": [ { @@ -112955,7 +112953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468671928, + "complete_object_locator": 6468676024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112964,9 +112962,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_PhaseCountdowns_v1", - "vtable_address": 6466319464, + "vtable_address": 6466323624, "methods": [ - 6452325712 + 6452327328 ], "bases": [ { @@ -112986,7 +112984,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672824, + "complete_object_locator": 6468676920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -112995,9 +112993,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_PlayerPosition_v1", - "vtable_address": 6466319592, + "vtable_address": 6466323752, "methods": [ - 6452326608 + 6452328224 ], "bases": [ { @@ -113017,7 +113015,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672952, + "complete_object_locator": 6468677048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113026,9 +113024,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_ID_v1", - "vtable_address": 6466318960, + "vtable_address": 6466323120, "methods": [ - 6452323632 + 6452325248 ], "bases": [ { @@ -113048,7 +113046,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672312, + "complete_object_locator": 6468676408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113057,9 +113055,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_Match_Stats_v1", - "vtable_address": 6466319400, + "vtable_address": 6466323560, "methods": [ - 6452325488 + 6452327104 ], "bases": [ { @@ -113079,7 +113077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672696, + "complete_object_locator": 6468676792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113088,9 +113086,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_State_v1", - "vtable_address": 6466319080, + "vtable_address": 6466323240, "methods": [ - 6452325040 + 6452326656 ], "bases": [ { @@ -113110,7 +113108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672440, + "complete_object_locator": 6468676536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113119,9 +113117,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Player_Weapons_v1", - "vtable_address": 6466319272, + "vtable_address": 6466323432, "methods": [ - 6452325264 + 6452326880 ], "bases": [ { @@ -113141,7 +113139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672568, + "complete_object_locator": 6468676664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113150,9 +113148,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Provider_v1", - "vtable_address": 6466317464, + "vtable_address": 6466321624, "methods": [ - 6452319504 + 6452321120 ], "bases": [ { @@ -113172,7 +113170,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468671672, + "complete_object_locator": 6468675768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113181,9 +113179,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_Round_v1", - "vtable_address": 6466318344, + "vtable_address": 6466322504, "methods": [ - 6452323056 + 6452324672 ], "bases": [ { @@ -113203,7 +113201,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468672184, + "complete_object_locator": 6468676280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113212,9 +113210,9 @@ }, { "type_name": "CGameIntegrationDataRenderer_TournamentDraft_v1", - "vtable_address": 6466317568, + "vtable_address": 6466321728, "methods": [ - 6452320064 + 6452321680 ], "bases": [ { @@ -113234,7 +113232,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468671800, + "complete_object_locator": 6468675896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113243,37 +113241,37 @@ }, { "type_name": "CGameItemDefinition_EconItemInterfaceWrapper", - "vtable_address": 6466770024, - "methods": [ - 6456395312, - 6455880512, - 6456132752, - 6456133056, - 6456133344, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, - 6456141600, - 6456128752, - 6456142160, - 6456154896, - 6456156768, - 6456043648, - 6456151440, - 6456155792, - 6456142208, - 6456140528, - 6456132736, - 6456132352, - 6456144192, - 6456257728, - 6456151952, - 6456164640 + "vtable_address": 6466774120, + "methods": [ + 6456397088, + 6455882272, + 6456134528, + 6456134832, + 6456135120, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6456143376, + 6456130528, + 6456143936, + 6456156672, + 6456158544, + 6456045424, + 6456153216, + 6456157568, + 6456143984, + 6456142304, + 6456134512, + 6456134128, + 6456145968, + 6456259504, + 6456153728, + 6456166416 ], "bases": [ { @@ -113293,7 +113291,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468788408, + "complete_object_locator": 6468792504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113302,11 +113300,11 @@ }, { "type_name": "CGameJobSystem", - "vtable_address": 6465746840, + "vtable_address": 6465751032, "methods": [ 6443748576, 6443748592, - 6449072928, + 6449074480, 6443748624, 6443748640, 6443748656, @@ -113331,7 +113329,7 @@ 6443748960, 6443748976, 6443748992, - 6449073088, + 6449074640, 6443749024, 6443749040, 6443749056, @@ -113343,14 +113341,14 @@ 6443749152, 6443749168, 6443749184, - 6449073232, - 6449073248, + 6449074784, + 6449074800, 6443749232, 6443749248, 6443749264, 6443749280, - 6449073392, - 6449073488, + 6449074944, + 6449075040, 6443749328, 6443749344, 6443749360, @@ -113360,11 +113358,11 @@ 6443749424, 6443749440, 6443749456, - 6449072896, + 6449074448, 6443749488, - 6449072880, - 6449079584, - 6449072864 + 6449074432, + 6449081136, + 6449074416 ], "bases": [ { @@ -113398,7 +113396,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468503728, + "complete_object_locator": 6468507824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -113407,16 +113405,16 @@ }, { "type_name": "CGameJournal", - "vtable_address": 6465801144, + "vtable_address": 6465805336, "methods": [ - 6449401792, - 6449399664, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6449403344, + 6449401216, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -113478,7 +113476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517264, + "complete_object_locator": 6468521360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113487,13 +113485,13 @@ }, { "type_name": "CGameJournal", - "vtable_address": 6465801216, + "vtable_address": 6465805408, "methods": [ 6443748576, 6443748592, 6443748608, - 6449399984, - 6449400016, + 6449401536, + 6449401568, 6443748656, 6443748672, 6443748688, @@ -113548,8 +113546,8 @@ 6443749472, 6443749488, 6443749504, - 6449407380, - 6463705588 + 6449409212, + 6463707780 ], "bases": [ { @@ -113611,7 +113609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517304, + "complete_object_locator": 6468521400, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -113620,14 +113618,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466546336, + "vtable_address": 6466550464, "methods": [ - 6453760768, - 6453773392, - 6453717280, - 6453717056, - 6453654736, - 6453683344 + 6453762528, + 6453775152, + 6453719040, + 6453718816, + 6453656496, + 6453685104 ], "bases": [ { @@ -113661,7 +113659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720528, + "complete_object_locator": 6468724624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113670,14 +113668,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466504176, + "vtable_address": 6466508304, "methods": [ - 6453555664, - 6453561904, - 6453519936, - 6453519808, - 6453486624, - 6453497440 + 6453557424, + 6453563664, + 6453521696, + 6453521568, + 6453488384, + 6453499200 ], "bases": [ { @@ -113711,7 +113709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468712384, + "complete_object_locator": 6468716480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113720,14 +113718,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289376, + "vtable_address": 6466293488, "methods": [ - 6452261200, - 6452271936, - 6452193392, - 6452192848, - 6452103792, - 6452137040 + 6452262784, + 6452273520, + 6452194976, + 6452194432, + 6452105376, + 6452138624 ], "bases": [ { @@ -113761,7 +113759,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468659728, + "complete_object_locator": 6468663824, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113770,14 +113768,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466288928, + "vtable_address": 6466293040, "methods": [ - 6452261312, - 6452271952, - 6452193408, - 6452192880, - 6452103888, - 6452137504 + 6452262896, + 6452273536, + 6452194992, + 6452194464, + 6452105472, + 6452139088 ], "bases": [ { @@ -113811,7 +113809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468658640, + "complete_object_locator": 6468662736, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113820,14 +113818,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466288872, + "vtable_address": 6466292984, "methods": [ - 6452261424, - 6452271968, - 6452193424, - 6452192912, - 6452103984, - 6452137968 + 6452263008, + 6452273552, + 6452195008, + 6452194496, + 6452105568, + 6452139552 ], "bases": [ { @@ -113861,7 +113859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468658504, + "complete_object_locator": 6468662600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113870,14 +113868,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289320, + "vtable_address": 6466293432, "methods": [ - 6452261536, - 6452271984, - 6452193440, - 6452192944, - 6452104080, - 6452138432 + 6452263120, + 6452273568, + 6452195024, + 6452194528, + 6452105664, + 6452140016 ], "bases": [ { @@ -113911,7 +113909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468659592, + "complete_object_locator": 6468663688, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113920,14 +113918,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466514704, + "vtable_address": 6466518832, "methods": [ - 6453555776, - 6453561920, - 6453519952, - 6453519840, - 6453486720, - 6453497904 + 6453557536, + 6453563680, + 6453521712, + 6453521600, + 6453488480, + 6453499664 ], "bases": [ { @@ -113961,7 +113959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713592, + "complete_object_locator": 6468717688, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -113970,14 +113968,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466514760, + "vtable_address": 6466518888, "methods": [ - 6453555888, - 6453561936, - 6453519968, - 6453519872, - 6453486816, - 6453498368 + 6453557648, + 6453563696, + 6453521728, + 6453521632, + 6453488576, + 6453500128 ], "bases": [ { @@ -114011,7 +114009,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468713728, + "complete_object_locator": 6468717824, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114020,14 +114018,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289656, + "vtable_address": 6466293768, "methods": [ - 6452261648, - 6452272000, - 6452193456, - 6452192976, - 6452104176, - 6452138896 + 6452263232, + 6452273584, + 6452195040, + 6452194560, + 6452105760, + 6452140480 ], "bases": [ { @@ -114061,7 +114059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660408, + "complete_object_locator": 6468664504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114070,14 +114068,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466288816, + "vtable_address": 6466292928, "methods": [ - 6452261760, - 6452272016, - 6452193472, - 6452193008, - 6452104272, - 6452139360 + 6452263344, + 6452273600, + 6452195056, + 6452194592, + 6452105856, + 6452140944 ], "bases": [ { @@ -114111,7 +114109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468658368, + "complete_object_locator": 6468662464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114120,14 +114118,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289264, + "vtable_address": 6466293376, "methods": [ - 6452261872, - 6452272032, - 6452193488, - 6452193040, - 6452104368, - 6452139824 + 6452263456, + 6452273616, + 6452195072, + 6452194624, + 6452105952, + 6452141408 ], "bases": [ { @@ -114161,7 +114159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468659456, + "complete_object_locator": 6468663552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114170,14 +114168,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466296144, + "vtable_address": 6466300304, "methods": [ - 6452261984, - 6452272048, - 6452193504, - 6452193072, - 6452104464, - 6452140288 + 6452263568, + 6452273632, + 6452195088, + 6452194656, + 6452106048, + 6452141872 ], "bases": [ { @@ -114211,7 +114209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468661688, + "complete_object_locator": 6468665784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114220,14 +114218,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466539928, + "vtable_address": 6466544056, "methods": [ - 6453760880, - 6453773408, - 6453717296, - 6453717088, - 6453654832, - 6453683808 + 6453762640, + 6453775168, + 6453719056, + 6453718848, + 6453656592, + 6453685568 ], "bases": [ { @@ -114261,7 +114259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468719528, + "complete_object_locator": 6468723624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114270,14 +114268,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466415576, + "vtable_address": 6466419736, "methods": [ - 6452894736, - 6452899040, - 6452855024, - 6452854992, - 6452806080, - 6452839664 + 6452896352, + 6452900656, + 6452856640, + 6452856608, + 6452807696, + 6452841280 ], "bases": [ { @@ -114311,7 +114309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468691704, + "complete_object_locator": 6468695800, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114320,14 +114318,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289208, + "vtable_address": 6466293320, "methods": [ - 6452262096, - 6452272064, - 6452193520, - 6452193104, - 6452104560, - 6452140752 + 6452263680, + 6452273648, + 6452195104, + 6452194688, + 6452106144, + 6452142336 ], "bases": [ { @@ -114361,7 +114359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468659320, + "complete_object_locator": 6468663416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114370,14 +114368,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466846400, + "vtable_address": 6466850512, "methods": [ - 6456569392, - 6456570784, - 6456562432, - 6456562272, - 6456551200, - 6456558080 + 6456571168, + 6456572560, + 6456564208, + 6456564048, + 6456552976, + 6456559856 ], "bases": [ { @@ -114411,7 +114409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803328, + "complete_object_locator": 6468807424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114420,14 +114418,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466846624, + "vtable_address": 6466850736, "methods": [ - 6456569504, - 6456570800, - 6456562448, - 6456562304, - 6456551296, - 6456558544 + 6456571280, + 6456572576, + 6456564224, + 6456564080, + 6456553072, + 6456560320 ], "bases": [ { @@ -114461,7 +114459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803872, + "complete_object_locator": 6468807968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114470,14 +114468,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466668056, + "vtable_address": 6466672152, "methods": [ - 6455565824, - 6455610896, - 6455415456, - 6455415424, - 6455302384, - 6455353216 + 6455567584, + 6455612656, + 6455417216, + 6455417184, + 6455304144, + 6455354976 ], "bases": [ { @@ -114511,7 +114509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468755896, + "complete_object_locator": 6468759992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114520,14 +114518,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466623960, + "vtable_address": 6466628056, "methods": [ - 6454859456, - 6454895344, - 6454655440, - 6454655408, - 6454468944, - 6454537472 + 6454861216, + 6454897104, + 6454657200, + 6454657168, + 6454470704, + 6454539232 ], "bases": [ { @@ -114561,7 +114559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468740056, + "complete_object_locator": 6468744152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114570,14 +114568,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466553056, + "vtable_address": 6466557184, "methods": [ - 6453760992, - 6453773424, - 6453717312, - 6453717120, - 6453654928, - 6453684272 + 6453762752, + 6453775184, + 6453719072, + 6453718880, + 6453656688, + 6453686032 ], "bases": [ { @@ -114611,7 +114609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468722768, + "complete_object_locator": 6468726864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114620,14 +114618,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289096, + "vtable_address": 6466293208, "methods": [ - 6452262208, - 6452272080, - 6452193536, - 6452193136, - 6452104656, - 6452141216 + 6452263792, + 6452273664, + 6452195120, + 6452194720, + 6452106240, + 6452142800 ], "bases": [ { @@ -114661,7 +114659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468659048, + "complete_object_locator": 6468663144, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114670,14 +114668,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466211120, + "vtable_address": 6466215232, "methods": [ - 6451927744, - 6451943232, - 6451877248, - 6451877184, - 6451773232, - 6451842464 + 6451929328, + 6451944816, + 6451878832, + 6451878768, + 6451774816, + 6451844048 ], "bases": [ { @@ -114711,7 +114709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468639080, + "complete_object_locator": 6468643176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114720,14 +114718,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289432, + "vtable_address": 6466293544, "methods": [ - 6452262320, - 6452272096, - 6452193552, - 6452193168, - 6452104752, - 6452141680 + 6452263904, + 6452273680, + 6452195136, + 6452194752, + 6452106336, + 6452143264 ], "bases": [ { @@ -114761,7 +114759,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468659864, + "complete_object_locator": 6468663960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114770,14 +114768,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289544, + "vtable_address": 6466293656, "methods": [ - 6452262432, - 6452272112, - 6452193568, - 6452193200, - 6452104848, - 6452142144 + 6452264016, + 6452273696, + 6452195152, + 6452194784, + 6452106432, + 6452143728 ], "bases": [ { @@ -114811,7 +114809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660136, + "complete_object_locator": 6468664232, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114820,14 +114818,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289600, + "vtable_address": 6466293712, "methods": [ - 6452262544, - 6452272128, - 6452193584, - 6452193232, - 6452104944, - 6452142608 + 6452264128, + 6452273712, + 6452195168, + 6452194816, + 6452106528, + 6452144192 ], "bases": [ { @@ -114861,7 +114859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660272, + "complete_object_locator": 6468664368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114870,14 +114868,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289040, + "vtable_address": 6466293152, "methods": [ - 6452262656, - 6452272144, - 6452193600, - 6452193264, - 6452105040, - 6452143072 + 6452264240, + 6452273728, + 6452195184, + 6452194848, + 6452106624, + 6452144656 ], "bases": [ { @@ -114911,7 +114909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468658912, + "complete_object_locator": 6468663008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114920,14 +114918,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466288984, + "vtable_address": 6466293096, "methods": [ - 6452262768, - 6452272160, - 6452193616, - 6452193296, - 6452105136, - 6452143536 + 6452264352, + 6452273744, + 6452195200, + 6452194880, + 6452106720, + 6452145120 ], "bases": [ { @@ -114961,7 +114959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468658776, + "complete_object_locator": 6468662872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -114970,14 +114968,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466211176, + "vtable_address": 6466215288, "methods": [ - 6451927856, - 6451943248, - 6451877264, - 6451877216, - 6451773328, - 6451842928 + 6451929440, + 6451944832, + 6451878848, + 6451878800, + 6451774912, + 6451844512 ], "bases": [ { @@ -115011,7 +115009,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468639216, + "complete_object_locator": 6468643312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115020,14 +115018,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466546504, + "vtable_address": 6466550632, "methods": [ - 6453761104, - 6453773440, - 6453717328, - 6453717152, - 6453655024, - 6453684736 + 6453762864, + 6453775200, + 6453719088, + 6453718912, + 6453656784, + 6453686496 ], "bases": [ { @@ -115061,7 +115059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720936, + "complete_object_locator": 6468725032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115070,14 +115068,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466546448, + "vtable_address": 6466550576, "methods": [ - 6453761216, - 6453773456, - 6453717344, - 6453717184, - 6453655120, - 6453685200 + 6453762976, + 6453775216, + 6453719104, + 6453718944, + 6453656880, + 6453686960 ], "bases": [ { @@ -115111,7 +115109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720800, + "complete_object_locator": 6468724896, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115120,14 +115118,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466546560, + "vtable_address": 6466550688, "methods": [ - 6453761328, - 6453773472, - 6453717360, - 6453717216, - 6453655216, - 6453685664 + 6453763088, + 6453775232, + 6453719120, + 6453718976, + 6453656976, + 6453687424 ], "bases": [ { @@ -115161,7 +115159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468721072, + "complete_object_locator": 6468725168, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115170,14 +115168,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466546392, + "vtable_address": 6466550520, "methods": [ - 6453761440, - 6453773488, - 6453717376, - 6453717248, - 6453655312, - 6453686128 + 6453763200, + 6453775248, + 6453719136, + 6453719008, + 6453657072, + 6453687888 ], "bases": [ { @@ -115211,7 +115209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468720664, + "complete_object_locator": 6468724760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115220,14 +115218,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289488, + "vtable_address": 6466293600, "methods": [ - 6452262880, - 6452272176, - 6452193632, - 6452193328, - 6452105232, - 6452144000 + 6452264464, + 6452273760, + 6452195216, + 6452194912, + 6452106816, + 6452145584 ], "bases": [ { @@ -115261,7 +115259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660000, + "complete_object_locator": 6468664096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115270,14 +115268,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466289152, + "vtable_address": 6466293264, "methods": [ - 6452262992, - 6452272192, - 6452193648, - 6452193360, - 6452105328, - 6452144464 + 6452264576, + 6452273776, + 6452195232, + 6452194944, + 6452106912, + 6452146048 ], "bases": [ { @@ -115311,7 +115309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468659184, + "complete_object_locator": 6468663280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115320,14 +115318,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6465926512, + "vtable_address": 6465930704, "methods": [ - 6450647392, - 6450670176, - 6450496752, - 6450496720, - 6450392416, - 6450456576 + 6450648960, + 6450671744, + 6450498320, + 6450498288, + 6450393984, + 6450458144 ], "bases": [ { @@ -115361,7 +115359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561840, + "complete_object_locator": 6468565936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115370,14 +115368,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466042128, + "vtable_address": 6466046336, "methods": [ - 6451139824, - 6451144336, - 6451120000, - 6451119904, - 6451086560, - 6451102816 + 6451141392, + 6451145904, + 6451121568, + 6451121472, + 6451088128, + 6451104384 ], "bases": [ { @@ -115411,7 +115409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468588688, + "complete_object_locator": 6468592784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115420,14 +115418,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466021448, + "vtable_address": 6466025656, "methods": [ - 6451034192, - 6451042544, - 6450985616, - 6450985584, - 6450921008, - 6450957504 + 6451035760, + 6451044112, + 6450987184, + 6450987152, + 6450922576, + 6450959072 ], "bases": [ { @@ -115461,7 +115459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468582120, + "complete_object_locator": 6468586216, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115470,14 +115468,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466135632, + "vtable_address": 6466139840, "methods": [ - 6451585648, - 6451589232, - 6451572064, - 6451571968, - 6451556016, - 6451563440 + 6451587232, + 6451590816, + 6451573648, + 6451573552, + 6451557600, + 6451565024 ], "bases": [ { @@ -115511,7 +115509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614360, + "complete_object_locator": 6468618456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115520,14 +115518,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466135688, + "vtable_address": 6466139896, "methods": [ - 6451585760, - 6451589248, - 6451572080, - 6451572000, - 6451556112, - 6451563904 + 6451587344, + 6451590832, + 6451573664, + 6451573584, + 6451557696, + 6451565488 ], "bases": [ { @@ -115561,7 +115559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614496, + "complete_object_locator": 6468618592, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115570,14 +115568,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466135576, + "vtable_address": 6466139784, "methods": [ - 6451585872, - 6451589264, - 6451572096, - 6451572032, - 6451556208, - 6451564368 + 6451587456, + 6451590848, + 6451573680, + 6451573616, + 6451557792, + 6451565952 ], "bases": [ { @@ -115611,7 +115609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614224, + "complete_object_locator": 6468618320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115620,14 +115618,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466063928, + "vtable_address": 6466068136, "methods": [ - 6451217968, - 6451225488, - 6451201136, - 6451201072, - 6451173184, - 6451189904 + 6451219536, + 6451227056, + 6451202704, + 6451202640, + 6451174752, + 6451191472 ], "bases": [ { @@ -115661,7 +115659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468594896, + "complete_object_locator": 6468598992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115670,14 +115668,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466063984, + "vtable_address": 6466068192, "methods": [ - 6451218080, - 6451225504, - 6451201152, - 6451201104, - 6451173280, - 6451190368 + 6451219648, + 6451227072, + 6451202720, + 6451202672, + 6451174848, + 6451191936 ], "bases": [ { @@ -115711,7 +115709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468595032, + "complete_object_locator": 6468599128, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115720,14 +115718,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466125472, + "vtable_address": 6466129680, "methods": [ - 6451503760, - 6451521696, - 6451479056, - 6451478896, - 6451446704, - 6451463376 + 6451505344, + 6451523280, + 6451480640, + 6451480480, + 6451448288, + 6451464960 ], "bases": [ { @@ -115761,7 +115759,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468610784, + "complete_object_locator": 6468614880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115770,14 +115768,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466126672, + "vtable_address": 6466130880, "methods": [ - 6451503872, - 6451521712, - 6451479072, - 6451478928, - 6451446800, - 6451463840 + 6451505456, + 6451523296, + 6451480656, + 6451480512, + 6451448384, + 6451465424 ], "bases": [ { @@ -115811,7 +115809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611056, + "complete_object_locator": 6468615152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115820,14 +115818,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466495328, + "vtable_address": 6466499456, "methods": [ - 6453556000, - 6453561952, - 6453519984, - 6453519904, - 6453486912, - 6453498832 + 6453557760, + 6453563712, + 6453521744, + 6453521664, + 6453488672, + 6453500592 ], "bases": [ { @@ -115861,7 +115859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468710984, + "complete_object_locator": 6468715080, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115870,14 +115868,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466042016, + "vtable_address": 6466046224, "methods": [ - 6451139936, - 6451144352, - 6451120016, - 6451119936, - 6451086656, - 6451103280 + 6451141504, + 6451145920, + 6451121584, + 6451121504, + 6451088224, + 6451104848 ], "bases": [ { @@ -115911,7 +115909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468588416, + "complete_object_locator": 6468592512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115920,14 +115918,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466846512, + "vtable_address": 6466850624, "methods": [ - 6456569616, - 6456570816, - 6456562464, - 6456562336, - 6456551392, - 6456559008 + 6456571392, + 6456572592, + 6456564240, + 6456564112, + 6456553168, + 6456560784 ], "bases": [ { @@ -115961,7 +115959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803600, + "complete_object_locator": 6468807696, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -115970,14 +115968,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466846456, + "vtable_address": 6466850568, "methods": [ - 6456569728, - 6456570832, - 6456562480, - 6456562368, - 6456551488, - 6456559472 + 6456571504, + 6456572608, + 6456564256, + 6456564144, + 6456553264, + 6456561248 ], "bases": [ { @@ -116011,7 +116009,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803464, + "complete_object_locator": 6468807560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116020,14 +116018,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466042072, + "vtable_address": 6466046280, "methods": [ - 6451140048, - 6451144368, - 6451120032, - 6451119968, - 6451086752, - 6451103744 + 6451141616, + 6451145936, + 6451121600, + 6451121536, + 6451088320, + 6451105312 ], "bases": [ { @@ -116061,7 +116059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468588552, + "complete_object_locator": 6468592648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116070,14 +116068,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466125416, + "vtable_address": 6466129624, "methods": [ - 6451503984, - 6451521728, - 6451479088, - 6451478960, - 6451446896, - 6451464304 + 6451505568, + 6451523312, + 6451480672, + 6451480544, + 6451448480, + 6451465888 ], "bases": [ { @@ -116111,7 +116109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468610648, + "complete_object_locator": 6468614744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116120,14 +116118,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466125360, + "vtable_address": 6466129568, "methods": [ - 6451504096, - 6451521744, - 6451479104, - 6451478992, - 6451446992, - 6451464768 + 6451505680, + 6451523328, + 6451480688, + 6451480576, + 6451448576, + 6451466352 ], "bases": [ { @@ -116161,7 +116159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468610512, + "complete_object_locator": 6468614608, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116170,14 +116168,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466846568, + "vtable_address": 6466850680, "methods": [ - 6456569840, - 6456570848, - 6456562496, - 6456562400, - 6456551584, - 6456559936 + 6456571616, + 6456572624, + 6456564272, + 6456564176, + 6456553360, + 6456561712 ], "bases": [ { @@ -116211,7 +116209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803736, + "complete_object_locator": 6468807832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116220,7 +116218,7 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6464436704, + "vtable_address": 6464440800, "methods": [ 6443854864, 6443866400, @@ -116261,7 +116259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223728, + "complete_object_locator": 6468227824, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116270,14 +116268,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6466126728, + "vtable_address": 6466130936, "methods": [ - 6451504208, - 6451521760, - 6451479120, - 6451479024, - 6451447088, - 6451465232 + 6451505792, + 6451523344, + 6451480704, + 6451480608, + 6451448672, + 6451466816 ], "bases": [ { @@ -116311,7 +116309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611192, + "complete_object_locator": 6468615288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116320,14 +116318,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6465729392, + "vtable_address": 6465733584, "methods": [ - 6449008784, - 6449031616, - 6448914464, - 6448914400, - 6448808176, - 6448867056 + 6449010336, + 6449033168, + 6448916032, + 6448915968, + 6448809744, + 6448868624 ], "bases": [ { @@ -116361,7 +116359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498472, + "complete_object_locator": 6468502568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116370,14 +116368,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6465729448, + "vtable_address": 6465733640, "methods": [ - 6449008896, - 6449031632, - 6448914480, - 6448914432, - 6448808272, - 6448867536 + 6449010448, + 6449033184, + 6448916048, + 6448916000, + 6448809840, + 6448869104 ], "bases": [ { @@ -116411,7 +116409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498608, + "complete_object_locator": 6468502704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116420,14 +116418,14 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6465789112, + "vtable_address": 6465793304, "methods": [ - 6449331776, - 6449373008, - 6449276928, - 6449276896, - 6449163696, - 6449205056 + 6449333328, + 6449374560, + 6449278480, + 6449278448, + 6449165248, + 6449206608 ], "bases": [ { @@ -116461,7 +116459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468511656, + "complete_object_locator": 6468515752, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -116470,12 +116468,12 @@ }, { "type_name": "CGameNetworkStringTables", - "vtable_address": 6465808160, + "vtable_address": 6465812352, "methods": [ - 6449419024, - 6449419280, - 6449419328, - 6449419344 + 6449420592, + 6449420848, + 6449420896, + 6449420912 ], "bases": [ { @@ -116495,7 +116493,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517896, + "complete_object_locator": 6468521992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116504,9 +116502,9 @@ }, { "type_name": "CGameNewParticleEffectUserData", - "vtable_address": 6465788744, + "vtable_address": 6465792936, "methods": [ - 6449166752 + 6449168304 ], "bases": [ { @@ -116526,7 +116524,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468511272, + "complete_object_locator": 6468515368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116535,22 +116533,22 @@ }, { "type_name": "CGameParticleManager", - "vtable_address": 6465788776, + "vtable_address": 6465792968, "methods": [ - 6449166800, - 6449262528, - 6449199568, - 6449331968, - 6449203040, - 6449324496, - 6449277424, - 6449277408, - 6449199936, - 6449200320, - 6449259648, - 6449245712, - 6449313216, - 6449372032 + 6449168352, + 6449264080, + 6449201120, + 6449333520, + 6449204592, + 6449326048, + 6449278976, + 6449278960, + 6449201488, + 6449201872, + 6449261200, + 6449247264, + 6449314768, + 6449373584 ], "bases": [ { @@ -116584,7 +116582,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468511520, + "complete_object_locator": 6468515616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116593,13 +116591,13 @@ }, { "type_name": "CGameParticleManagerSystem", - "vtable_address": 6465744328, + "vtable_address": 6465748520, "methods": [ 6443748576, 6443748592, 6443748608, - 6449072160, - 6449072224, + 6449073712, + 6449073776, 6443748656, 6443748672, 6443748688, @@ -116616,7 +116614,7 @@ 6443748864, 6443748880, 6443748896, - 6449072272, + 6449073824, 6443748928, 6443748944, 6443748960, @@ -116651,11 +116649,11 @@ 6443749424, 6443749440, 6443749456, - 6449072128, + 6449073680, 6443749488, - 6449072112, - 6449072288, - 6449072096 + 6449073664, + 6449073840, + 6449073648 ], "bases": [ { @@ -116689,7 +116687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468504000, + "complete_object_locator": 6468508096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116698,7 +116696,7 @@ }, { "type_name": "CGamePortraitWorldSystem", - "vtable_address": 6464423872, + "vtable_address": 6464427968, "methods": [ 6443748576, 6443748592, @@ -116794,7 +116792,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468221336, + "complete_object_locator": 6468225432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116803,38 +116801,38 @@ }, { "type_name": "CGameRulesGameSystem", - "vtable_address": 6466058768, + "vtable_address": 6466062992, "methods": [ 6443748576, - 6451166032, + 6451167600, 6443748608, - 6451165760, - 6451165888, - 6451166064, + 6451167328, + 6451167456, + 6451167632, 6443748672, - 6451166096, - 6451166128, + 6451167664, + 6451167696, 6443748720, 6443748736, 6443748752, - 6451166400, - 6451166160, + 6451167968, + 6451167728, 6443748800, - 6451166192, - 6451166224, - 6451166256, - 6451166288, - 6451166320, - 6451166528, - 6451166560, + 6451167760, + 6451167792, + 6451167824, + 6451167856, + 6451167888, + 6451168096, + 6451168128, 6443748928, 6443748944, 6443748960, 6443748976, - 6451166592, - 6451166624, + 6451168160, + 6451168192, 6443749024, - 6451166656, + 6451168224, 6443749056, 6443749072, 6443749088, @@ -116852,20 +116850,20 @@ 6443749280, 6443749296, 6443749312, - 6451166432, - 6451166464, - 6451166496, + 6451168000, + 6451168032, + 6451168064, 6443749376, 6443749392, 6443749408, 6443749424, 6443749440, 6443749456, - 6451165728, + 6451167296, 6443749488, - 6451165712, - 6451166688, - 6451165696 + 6451167280, + 6451168256, + 6451167264 ], "bases": [ { @@ -116885,7 +116883,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592272, + "complete_object_locator": 6468596368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116894,42 +116892,42 @@ }, { "type_name": "CGameSceneNode", - "vtable_address": 6465809832, + "vtable_address": 6465814024, "methods": [ - 6449594208, - 6449497904, + 6449595776, + 6449499472, 6443947168, - 6449531712, - 6449739472, - 6449499872, - 6449771728, - 6449650672, + 6449533280, + 6449741040, + 6449501440, + 6449773296, + 6449652240, 6443972272, 6443972256, - 6449624304, - 6449726864, - 6449726960, - 6449735120, - 6449541392, + 6449625872, + 6449728432, + 6449728528, + 6449736688, + 6449542960, 6443968848, - 6449653504, - 6449657744, - 6449657296, - 6449657760, - 6449657680, - 6449656656, - 6449650304, - 6449541360, + 6449655072, + 6449659312, + 6449658864, + 6449659328, + 6449659248, + 6449658224, + 6449651872, + 6449542928, 6443963808, 6443986192, - 6449641312, + 6449642880, 6443981696, - 6449641456 + 6449643024 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468520712, + "complete_object_locator": 6468524808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116938,10 +116936,10 @@ }, { "type_name": "CGameSceneNode::Cm_vecOriginInitializer", - "vtable_address": 6465809808, + "vtable_address": 6465814000, "methods": [ - 6449641328, - 6449641472 + 6449642896, + 6449643040 ], "bases": [ { @@ -116961,7 +116959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468519168, + "complete_object_locator": 6468523264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -116970,12 +116968,12 @@ }, { "type_name": "CGameSceneNode::NetworkVar_m_hParent", - "vtable_address": 6465809768, + "vtable_address": 6465813960, "methods": [ 6444939744, - 6449641392, + 6449642960, 6444865472, - 6449641520 + 6449643088 ], "bases": [ { @@ -116995,7 +116993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468521752, + "complete_object_locator": 6468525848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117004,7 +117002,7 @@ }, { "type_name": "CGameSceneNodeHandle", - "vtable_address": 6464671584, + "vtable_address": 6464675664, "methods": [ 6444939744, 6444865408, @@ -117014,7 +117012,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468256432, + "complete_object_locator": 6468260528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117023,25 +117021,33 @@ }, { "type_name": "CGameServers_AggregationQuery_Request", - "vtable_address": 6464925064, - "methods": [ - 6446029184, - 6457189536, - 6446008912, - 6446009072, - 6446009232, - 6457189584, - 6457186560, - 6446009248, - 6446010368, - 6446009472, + "vtable_address": 6464929304, + "methods": [ + 6446030416, + 6457191728, + 6446009296, + 6446009520, + 6446009616, + 6457191776, + 6457188752, + 6446009632, + 6446010752, + 6446010016, 6443742160, - 6446010080, - 6457190896, - 6457192720, - 6446010720, - 6446012064, - 6446011952 + 6446010464, + 6457193088, + 6457194912, + 6446011136, + 6446013104, + 6446012848, + 6457189712, + 6446026992, + 6457189712, + 6446028544, + 6457189712, + 6446029056, + 6457189712, + 6446029136 ], "bases": [ { @@ -117075,7 +117081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468307736, + "complete_object_locator": 6468311968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117084,31 +117090,29 @@ }, { "type_name": "CGameServers_AggregationQuery_Response", - "vtable_address": 6464932360, + "vtable_address": 6464936472, "methods": [ - 6446091904, - 6457189536, - 6446068336, + 6446092864, + 6457191728, 6446069136, - 6446069376, - 6457189584, - 6457186560, - 6446069392, - 6446070160, - 6446069584, - 6443742160, - 6446070000, - 6457190896, - 6457192720, - 6446070672, - 6446072304, - 6446072144, - 6457187520, - 6446088128, - 6457187520, - 6446088576, - 6457187520, - 6446090848 + 6446069616, + 6446069792, + 6457191776, + 6457188752, + 6446069808, + 6446070752, + 6446069968, + 6443742160, + 6446070560, + 6457193088, + 6457194912, + 6446071760, + 6446074144, + 6446073696, + 6457189712, + 6446088800, + 6457189712, + 6446091232 ], "bases": [ { @@ -117142,7 +117146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468307872, + "complete_object_locator": 6468312104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117151,25 +117155,25 @@ }, { "type_name": "CGameServers_AggregationQuery_Response_Group", - "vtable_address": 6464928792, + "vtable_address": 6464932888, "methods": [ - 6446062592, - 6457189536, - 6446036848, - 6446037120, - 6446037360, - 6457189584, - 6457186560, - 6446037376, - 6446039888, - 6446037984, - 6443742160, - 6446039056, - 6457190896, - 6457192720, - 6446041056, - 6446041104, - 6446041088 + 6446062992, + 6457191728, + 6446037328, + 6446037680, + 6446037936, + 6457191776, + 6457188752, + 6446038048, + 6446041424, + 6446039152, + 6443742160, + 6446040592, + 6457193088, + 6457194912, + 6446041456, + 6446041584, + 6446041504 ], "bases": [ { @@ -117203,7 +117207,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308008, + "complete_object_locator": 6468312240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117212,12 +117216,12 @@ }, { "type_name": "CGameSurfacePropertiesList", - "vtable_address": 6465819736, + "vtable_address": 6465823928, "methods": [ - 6449727888, - 6449535136, - 6449514672, - 6449632560 + 6449729456, + 6449536704, + 6449516240, + 6449634128 ], "bases": [ { @@ -117265,7 +117269,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468524744, + "complete_object_locator": 6468528840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117274,7 +117278,7 @@ }, { "type_name": "CGameSystemAbstractFactory", - "vtable_address": 6464698440, + "vtable_address": 6464702552, "methods": [ 6444997296, 6444997312, @@ -117305,7 +117309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468274520, + "complete_object_locator": 6468278616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117314,7 +117318,7 @@ }, { "type_name": "CGameSystemEventDispatcher", - "vtable_address": 6464662600, + "vtable_address": 6464666776, "methods": [ 6444487056, 6444487152 @@ -117337,7 +117341,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468253336, + "complete_object_locator": 6468257432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117346,7 +117350,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464661888, + "vtable_address": 6464666064, "methods": [ 6444483936, 6444483952, @@ -117391,7 +117395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468253760, + "complete_object_locator": 6468257856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117400,7 +117404,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464662496, + "vtable_address": 6464666672, "methods": [ 6444486768, 6444486784, @@ -117445,7 +117449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254024, + "complete_object_locator": 6468258120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117454,7 +117458,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464658576, + "vtable_address": 6464662752, "methods": [ 6444478112, 6444478128, @@ -117499,7 +117503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254160, + "complete_object_locator": 6468258256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117508,7 +117512,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465338744, + "vtable_address": 6465342808, "methods": [ 6447855600, 6447855616, @@ -117553,7 +117557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468432144, + "complete_object_locator": 6468436240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117562,7 +117566,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465322488, + "vtable_address": 6465326552, "methods": [ 6447802112, 6447802128, @@ -117607,7 +117611,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468430624, + "complete_object_locator": 6468434720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117616,18 +117620,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466037088, + "vtable_address": 6466041296, "methods": [ - 6451063888, - 6451063904, - 6451063920, - 6451063952, - 6451064048, - 6451064112, - 6451063936, - 6451064128, - 6451064144, - 6451064160 + 6451065456, + 6451065472, + 6451065488, + 6451065520, + 6451065616, + 6451065680, + 6451065504, + 6451065696, + 6451065712, + 6451065728 ], "bases": [ { @@ -117661,7 +117665,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584024, + "complete_object_locator": 6468588120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117670,7 +117674,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465253936, + "vtable_address": 6465258016, "methods": [ 6447668736, 6447668752, @@ -117715,7 +117719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468420184, + "complete_object_locator": 6468424280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117724,18 +117728,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466039944, + "vtable_address": 6466044152, "methods": [ - 6451070048, - 6451070064, - 6451070080, - 6451070112, - 6451070304, - 6451070368, - 6451070096, - 6451070384, - 6451070400, - 6451070416 + 6451071616, + 6451071632, + 6451071648, + 6451071680, + 6451071872, + 6451071936, + 6451071664, + 6451071952, + 6451071968, + 6451071984 ], "bases": [ { @@ -117769,7 +117773,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584432, + "complete_object_locator": 6468588528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117778,7 +117782,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465350760, + "vtable_address": 6465354824, "methods": [ 6447858016, 6447858032, @@ -117823,7 +117827,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468432280, + "complete_object_locator": 6468436376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117832,18 +117836,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465751648, + "vtable_address": 6465755840, "methods": [ - 6449086944, - 6449086960, - 6449086976, - 6449087008, - 6449087440, - 6449087504, - 6449086992, - 6449087520, - 6449087536, - 6449087552 + 6449088496, + 6449088512, + 6449088528, + 6449088560, + 6449088992, + 6449089056, + 6449088544, + 6449089072, + 6449089088, + 6449089104 ], "bases": [ { @@ -117877,7 +117881,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468502960, + "complete_object_locator": 6468507056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117886,18 +117890,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465374096, + "vtable_address": 6465378256, "methods": [ - 6447929776, - 6447929792, - 6447929808, - 6447929840, - 6447929968, - 6447930032, - 6447929824, - 6447930048, - 6447930064, - 6447930080 + 6447931344, + 6447931360, + 6447931376, + 6447931408, + 6447931536, + 6447931600, + 6447931392, + 6447931616, + 6447931632, + 6447931648 ], "bases": [ { @@ -117931,7 +117935,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468437072, + "complete_object_locator": 6468441168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117940,18 +117944,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465373688, + "vtable_address": 6465377848, "methods": [ - 6447928864, - 6447928880, - 6447928896, - 6447928928, - 6447929072, - 6447929136, - 6447928912, - 6447929152, - 6447929168, - 6447929184 + 6447930432, + 6447930448, + 6447930464, + 6447930496, + 6447930640, + 6447930704, + 6447930480, + 6447930720, + 6447930736, + 6447930752 ], "bases": [ { @@ -117985,7 +117989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468437208, + "complete_object_locator": 6468441304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -117994,7 +117998,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464663040, + "vtable_address": 6464667216, "methods": [ 6444487744, 6444487760, @@ -118039,7 +118043,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254704, + "complete_object_locator": 6468258800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118048,18 +118052,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465898624, + "vtable_address": 6465902816, "methods": [ - 6450324320, - 6450324336, - 6450324352, - 6450324384, - 6450324640, - 6450324704, - 6450324368, - 6450324720, - 6450324736, - 6450324752 + 6450325888, + 6450325904, + 6450325920, + 6450325952, + 6450326208, + 6450326272, + 6450325936, + 6450326288, + 6450326304, + 6450326320 ], "bases": [ { @@ -118093,7 +118097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555856, + "complete_object_locator": 6468559952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118102,7 +118106,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464662000, + "vtable_address": 6464666176, "methods": [ 6444484288, 6444484304, @@ -118147,7 +118151,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254840, + "complete_object_locator": 6468258936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118156,18 +118160,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466059400, + "vtable_address": 6466063624, "methods": [ - 6451166752, - 6451166768, - 6451166784, - 6451166816, - 6451166912, - 6451166976, - 6451166800, - 6451166992, - 6451167008, - 6451167024 + 6451168320, + 6451168336, + 6451168352, + 6451168384, + 6451168480, + 6451168544, + 6451168368, + 6451168560, + 6451168576, + 6451168592 ], "bases": [ { @@ -118201,7 +118205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592536, + "complete_object_locator": 6468596632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118210,18 +118214,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466060424, - "methods": [ - 6451167360, - 6451167376, - 6451167392, - 6451167424, - 6451167584, - 6451167648, - 6451167408, - 6451167664, - 6451167680, - 6451167696 + "vtable_address": 6466064648, + "methods": [ + 6451168928, + 6451168944, + 6451168960, + 6451168992, + 6451169152, + 6451169216, + 6451168976, + 6451169232, + 6451169248, + 6451169264 ], "bases": [ { @@ -118255,7 +118259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592808, + "complete_object_locator": 6468596904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118264,18 +118268,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466133656, + "vtable_address": 6466137864, "methods": [ - 6451548896, - 6451548912, - 6451548928, - 6451548960, - 6451549072, - 6451549136, - 6451548944, - 6451549152, - 6451549168, - 6451549184 + 6451550480, + 6451550496, + 6451550512, + 6451550544, + 6451550656, + 6451550720, + 6451550528, + 6451550736, + 6451550752, + 6451550768 ], "bases": [ { @@ -118309,7 +118313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468612776, + "complete_object_locator": 6468616872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118318,7 +118322,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464659272, + "vtable_address": 6464663448, "methods": [ 6444480624, 6444480640, @@ -118363,7 +118367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468255112, + "complete_object_locator": 6468259208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118372,18 +118376,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466170568, + "vtable_address": 6466174728, "methods": [ - 6451718864, - 6451718880, - 6451718896, - 6451718928, - 6451719280, - 6451719360, - 6451718912, - 6451719376, - 6451719392, - 6451719408 + 6451720448, + 6451720464, + 6451720480, + 6451720512, + 6451720864, + 6451720944, + 6451720496, + 6451720960, + 6451720976, + 6451720992 ], "bases": [ { @@ -118417,7 +118421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631936, + "complete_object_locator": 6468636032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118426,7 +118430,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464660936, + "vtable_address": 6464665112, "methods": [ 6444483168, 6444483184, @@ -118471,7 +118475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468255560, + "complete_object_locator": 6468259656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118480,7 +118484,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464703160, + "vtable_address": 6464707272, "methods": [ 6444999552, 6444999568, @@ -118525,7 +118529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468273312, + "complete_object_locator": 6468277408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118534,18 +118538,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466056712, - "methods": [ - 6451162144, - 6451162160, - 6451162176, - 6451162208, - 6451162304, - 6451162368, - 6451162192, - 6451162384, - 6451162400, - 6451162416 + "vtable_address": 6466060944, + "methods": [ + 6451163712, + 6451163728, + 6451163744, + 6451163776, + 6451163872, + 6451163936, + 6451163760, + 6451163952, + 6451163968, + 6451163984 ], "bases": [ { @@ -118579,7 +118583,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468593528, + "complete_object_locator": 6468597624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118588,18 +118592,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466070976, + "vtable_address": 6466075184, "methods": [ - 6451241248, - 6451241264, - 6451241280, - 6451241312, - 6451241408, - 6451241472, - 6451241296, - 6451241488, - 6451241504, - 6451241520 + 6451242816, + 6451242832, + 6451242848, + 6451242880, + 6451242976, + 6451243040, + 6451242864, + 6451243056, + 6451243072, + 6451243088 ], "bases": [ { @@ -118633,7 +118637,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468597400, + "complete_object_locator": 6468601496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118642,7 +118646,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464584800, + "vtable_address": 6464588896, "methods": [ 6444382432, 6444382448, @@ -118687,7 +118691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468246488, + "complete_object_locator": 6468250584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118696,18 +118700,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466072336, + "vtable_address": 6466076544, "methods": [ - 6451242080, - 6451242096, - 6451242112, - 6451242144, - 6451242304, - 6451242368, - 6451242128, - 6451242384, - 6451242400, - 6451242416 + 6451243648, + 6451243664, + 6451243680, + 6451243712, + 6451243872, + 6451243936, + 6451243696, + 6451243952, + 6451243968, + 6451243984 ], "bases": [ { @@ -118741,7 +118745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468597896, + "complete_object_locator": 6468601992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118750,7 +118754,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464705040, + "vtable_address": 6464709152, "methods": [ 6445000192, 6445000208, @@ -118795,7 +118799,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468273568, + "complete_object_locator": 6468277664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118804,18 +118808,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465700584, + "vtable_address": 6465704920, "methods": [ - 6448743632, - 6448743648, - 6448743664, - 6448743696, - 6448743920, - 6448743984, - 6448743680, - 6448744000, - 6448744016, - 6448744032 + 6448745200, + 6448745216, + 6448745232, + 6448745264, + 6448745488, + 6448745552, + 6448745248, + 6448745568, + 6448745584, + 6448745600 ], "bases": [ { @@ -118849,7 +118853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489656, + "complete_object_locator": 6468493752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118858,18 +118862,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466105384, + "vtable_address": 6466109592, "methods": [ - 6451423392, - 6451423408, - 6451423424, - 6451423456, - 6451423632, - 6451423696, - 6451423440, - 6451423712, - 6451423728, - 6451423744 + 6451424976, + 6451424992, + 6451425008, + 6451425040, + 6451425216, + 6451425280, + 6451425024, + 6451425296, + 6451425312, + 6451425328 ], "bases": [ { @@ -118903,7 +118907,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468604464, + "complete_object_locator": 6468608560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118912,18 +118916,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466111328, + "vtable_address": 6466115536, "methods": [ - 6451430752, - 6451430768, - 6451430784, - 6451430816, - 6451430944, - 6451431008, - 6451430800, - 6451431024, - 6451431040, - 6451431056 + 6451432336, + 6451432352, + 6451432368, + 6451432400, + 6451432528, + 6451432592, + 6451432384, + 6451432608, + 6451432624, + 6451432640 ], "bases": [ { @@ -118957,7 +118961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468604328, + "complete_object_locator": 6468608424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -118966,18 +118970,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466108200, + "vtable_address": 6466112408, "methods": [ - 6451427520, - 6451427536, - 6451427552, - 6451427584, - 6451427824, - 6451427888, - 6451427568, - 6451428128, - 6451428144, - 6451428160 + 6451429104, + 6451429120, + 6451429136, + 6451429168, + 6451429408, + 6451429472, + 6451429152, + 6451429712, + 6451429728, + 6451429744 ], "bases": [ { @@ -119011,7 +119015,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468604192, + "complete_object_locator": 6468608288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119020,7 +119024,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464706168, + "vtable_address": 6464710280, "methods": [ 6445002192, 6445002208, @@ -119065,7 +119069,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468274112, + "complete_object_locator": 6468278208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119074,18 +119078,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465806480, - "methods": [ - 6449414880, - 6449414896, - 6449414912, - 6449414944, - 6449415184, - 6449415248, - 6449414928, - 6449415264, - 6449415280, - 6449415296 + "vtable_address": 6465810672, + "methods": [ + 6449416448, + 6449416464, + 6449416480, + 6449416512, + 6449416752, + 6449416816, + 6449416496, + 6449416832, + 6449416848, + 6449416864 ], "bases": [ { @@ -119119,7 +119123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516768, + "complete_object_locator": 6468520864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119128,18 +119132,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465802728, + "vtable_address": 6465806920, "methods": [ - 6449405664, - 6449405680, - 6449405696, - 6449405840, - 6449405936, - 6449406000, - 6449405824, - 6449406016, - 6449406032, - 6449406048 + 6449407216, + 6449407232, + 6449407248, + 6449407392, + 6449407488, + 6449407552, + 6449407376, + 6449407568, + 6449407584, + 6449407600 ], "bases": [ { @@ -119173,7 +119177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468515520, + "complete_object_locator": 6468519616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119182,18 +119186,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465804096, + "vtable_address": 6465808288, "methods": [ - 6449406656, - 6449406672, - 6449406688, - 6449406736, - 6449406832, - 6449406896, - 6449406720, - 6449406912, - 6449406928, - 6449406944 + 6449408208, + 6449408224, + 6449408240, + 6449408288, + 6449408384, + 6449408448, + 6449408272, + 6449408464, + 6449408480, + 6449408496 ], "bases": [ { @@ -119227,7 +119231,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468515792, + "complete_object_locator": 6468519888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119236,18 +119240,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465804216, - "methods": [ - 6449406960, - 6449406976, - 6449406992, - 6449407024, - 6449407184, - 6449407248, - 6449407008, - 6449407264, - 6449407280, - 6449407296 + "vtable_address": 6465808408, + "methods": [ + 6449408512, + 6449408528, + 6449408544, + 6449408576, + 6449408736, + 6449408800, + 6449408560, + 6449408816, + 6449408832, + 6449408848 ], "bases": [ { @@ -119281,7 +119285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468514984, + "complete_object_locator": 6468519080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119290,7 +119294,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464701896, + "vtable_address": 6464706008, "methods": [ 6444998976, 6444998992, @@ -119335,7 +119339,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468274248, + "complete_object_locator": 6468278344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119344,18 +119348,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466106200, + "vtable_address": 6466110408, "methods": [ - 6451424608, - 6451424624, - 6451424640, - 6451424672, - 6451424768, - 6451424832, - 6451424656, - 6451424848, - 6451424864, - 6451424880 + 6451426192, + 6451426208, + 6451426224, + 6451426256, + 6451426352, + 6451426416, + 6451426240, + 6451426432, + 6451426448, + 6451426464 ], "bases": [ { @@ -119389,7 +119393,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605936, + "complete_object_locator": 6468610032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119398,18 +119402,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6466107448, + "vtable_address": 6466111656, "methods": [ - 6451426624, - 6451426640, - 6451426656, - 6451426688, - 6451426816, - 6451426880, - 6451426672, - 6451426896, - 6451426912, - 6451426928 + 6451428208, + 6451428224, + 6451428240, + 6451428272, + 6451428400, + 6451428464, + 6451428256, + 6451428480, + 6451428496, + 6451428512 ], "bases": [ { @@ -119443,7 +119447,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468606336, + "complete_object_locator": 6468610432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119452,7 +119456,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6464699008, + "vtable_address": 6464703120, "methods": [ 6444998416, 6444998432, @@ -119497,7 +119501,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468274648, + "complete_object_locator": 6468278744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119506,18 +119510,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465963216, + "vtable_address": 6465967408, "methods": [ - 6450746544, - 6450746640, - 6450746656, - 6450746688, - 6450746784, - 6450746848, - 6450746672, - 6450746864, - 6450746880, - 6450746896 + 6450748112, + 6450748208, + 6450748224, + 6450748256, + 6450748352, + 6450748416, + 6450748240, + 6450748432, + 6450748448, + 6450748464 ], "bases": [ { @@ -119551,7 +119555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566792, + "complete_object_locator": 6468570888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119560,18 +119564,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465959848, + "vtable_address": 6465964040, "methods": [ - 6450744496, - 6450744512, - 6450744528, - 6450744560, - 6450744928, - 6450744992, - 6450744544, - 6450745008, - 6450745024, - 6450745040 + 6450746064, + 6450746080, + 6450746096, + 6450746128, + 6450746496, + 6450746560, + 6450746112, + 6450746576, + 6450746592, + 6450746608 ], "bases": [ { @@ -119605,7 +119609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567792, + "complete_object_locator": 6468571888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119614,18 +119618,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6465799368, + "vtable_address": 6465803560, "methods": [ - 6449397248, - 6449397280, - 6449397296, - 6449397328, - 6449397424, - 6449397488, - 6449397312, - 6449397504, - 6449397520, - 6449397536 + 6449398800, + 6449398832, + 6449398848, + 6449398880, + 6449398976, + 6449399040, + 6449398864, + 6449399056, + 6449399072, + 6449399088 ], "bases": [ { @@ -119659,7 +119663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517128, + "complete_object_locator": 6468521224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119668,18 +119672,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466133536, + "vtable_address": 6466137744, "methods": [ - 6451548704, - 6451548720, - 6451548736, - 6451548768, - 6451548816, - 6451548832, - 6451548752, - 6451548848, - 6451548864, - 6451548880 + 6451550288, + 6451550304, + 6451550320, + 6451550352, + 6451550400, + 6451550416, + 6451550336, + 6451550432, + 6451550448, + 6451550464 ], "bases": [ { @@ -119713,7 +119717,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468612640, + "complete_object_locator": 6468616736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119722,18 +119726,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465806744, + "vtable_address": 6465810936, "methods": [ - 6449417536, - 6449417552, - 6449417568, - 6449417600, - 6449417648, - 6449417664, - 6449417584, - 6449417680, - 6449417696, - 6449417712 + 6449419104, + 6449419120, + 6449419136, + 6449419168, + 6449419216, + 6449419232, + 6449419152, + 6449419248, + 6449419264, + 6449419280 ], "bases": [ { @@ -119767,7 +119771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517680, + "complete_object_locator": 6468521776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119776,18 +119780,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464474136, + "vtable_address": 6464478232, "methods": [ - 6444025920, - 6444025936, - 6444025952, - 6444025984, - 6444026032, - 6444026048, - 6444025968, - 6444026064, - 6444026080, - 6444026096 + 6444026176, + 6444026192, + 6444026208, + 6444026240, + 6444026288, + 6444026304, + 6444026224, + 6444026320, + 6444026336, + 6444026352 ], "bases": [ { @@ -119821,7 +119825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468234000, + "complete_object_locator": 6468238096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119830,18 +119834,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466139504, + "vtable_address": 6466143712, "methods": [ - 6451602288, - 6451602304, - 6451602320, - 6451602352, - 6451602400, - 6451602416, - 6451602336, - 6451602432, - 6451602448, - 6451602464 + 6451603872, + 6451603888, + 6451603904, + 6451603936, + 6451603984, + 6451604000, + 6451603920, + 6451604016, + 6451604032, + 6451604048 ], "bases": [ { @@ -119875,7 +119879,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616136, + "complete_object_locator": 6468620232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119884,18 +119888,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466316792, + "vtable_address": 6466320952, "methods": [ - 6452318512, - 6452318528, - 6452318544, - 6452318576, - 6452318624, - 6452318640, - 6452318560, - 6452318656, - 6452318672, - 6452318688 + 6452320128, + 6452320144, + 6452320160, + 6452320192, + 6452320240, + 6452320256, + 6452320176, + 6452320272, + 6452320288, + 6452320304 ], "bases": [ { @@ -119929,7 +119933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468671456, + "complete_object_locator": 6468675552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119938,18 +119942,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466263992, + "vtable_address": 6466268104, "methods": [ - 6452054992, - 6452055008, - 6452055024, - 6452055056, - 6452055104, - 6452055120, - 6452055040, - 6452055136, - 6452055152, - 6452055168 + 6452056576, + 6452056592, + 6452056608, + 6452056640, + 6452056688, + 6452056704, + 6452056624, + 6452056720, + 6452056736, + 6452056752 ], "bases": [ { @@ -119983,7 +119987,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648800, + "complete_object_locator": 6468652896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -119992,18 +119996,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466262272, + "vtable_address": 6466266384, "methods": [ - 6452054448, - 6452054464, - 6452054480, - 6452054512, - 6452054560, - 6452054576, - 6452054496, - 6452054592, - 6452054608, - 6452054624 + 6452056032, + 6452056048, + 6452056064, + 6452056096, + 6452056144, + 6452056160, + 6452056080, + 6452056176, + 6452056192, + 6452056208 ], "bases": [ { @@ -120037,7 +120041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648936, + "complete_object_locator": 6468653032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120046,18 +120050,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466034280, + "vtable_address": 6466038488, "methods": [ - 6451059936, - 6451059952, - 6451059968, - 6451060000, - 6451060048, - 6451060064, - 6451059984, - 6451060080, - 6451060096, - 6451060112 + 6451061504, + 6451061520, + 6451061536, + 6451061568, + 6451061616, + 6451061632, + 6451061552, + 6451061648, + 6451061664, + 6451061680 ], "bases": [ { @@ -120091,7 +120095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584568, + "complete_object_locator": 6468588664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120100,18 +120104,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466741680, + "vtable_address": 6466745776, "methods": [ - 6455768672, - 6455768688, - 6455768704, - 6455768736, - 6455768784, - 6455768800, - 6455768720, - 6455768816, - 6455768832, - 6455768848 + 6455770432, + 6455770448, + 6455770464, + 6455770496, + 6455770544, + 6455770560, + 6455770480, + 6455770576, + 6455770592, + 6455770608 ], "bases": [ { @@ -120145,7 +120149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468776768, + "complete_object_locator": 6468780864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120154,18 +120158,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466368680, + "vtable_address": 6466372840, "methods": [ - 6452575744, - 6452575760, - 6452575776, - 6452575808, - 6452575856, - 6452575872, - 6452575792, - 6452575888, - 6452575904, - 6452575920 + 6452577360, + 6452577376, + 6452577392, + 6452577424, + 6452577472, + 6452577488, + 6452577408, + 6452577504, + 6452577520, + 6452577536 ], "bases": [ { @@ -120199,7 +120203,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683344, + "complete_object_locator": 6468687440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120208,18 +120212,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466844864, + "vtable_address": 6466848976, "methods": [ - 6456546512, - 6456546528, - 6456546544, - 6456546576, - 6456546624, - 6456546640, - 6456546560, - 6456546656, - 6456546672, - 6456546688 + 6456548288, + 6456548304, + 6456548320, + 6456548352, + 6456548400, + 6456548416, + 6456548336, + 6456548432, + 6456548448, + 6456548464 ], "bases": [ { @@ -120253,7 +120257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468801464, + "complete_object_locator": 6468805560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120262,18 +120266,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465629960, + "vtable_address": 6465634136, "methods": [ - 6448268800, - 6448268816, - 6448268832, - 6448268864, - 6448268912, - 6448268928, - 6448268848, - 6448268944, - 6448268960, - 6448268976 + 6448270368, + 6448270384, + 6448270400, + 6448270432, + 6448270480, + 6448270496, + 6448270416, + 6448270512, + 6448270528, + 6448270544 ], "bases": [ { @@ -120307,7 +120311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476640, + "complete_object_locator": 6468480736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120316,18 +120320,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466458648, + "vtable_address": 6466462776, "methods": [ - 6453089248, - 6453089264, - 6453089280, - 6453089312, - 6453089360, - 6453089376, - 6453089296, - 6453089392, - 6453089408, - 6453089424 + 6453090864, + 6453090880, + 6453090896, + 6453090928, + 6453090976, + 6453090992, + 6453090912, + 6453091008, + 6453091024, + 6453091040 ], "bases": [ { @@ -120361,7 +120365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468699816, + "complete_object_locator": 6468703912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120370,18 +120374,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466269192, + "vtable_address": 6466273304, "methods": [ - 6452058944, - 6452058960, - 6452058976, - 6452059008, - 6452059056, - 6452059072, - 6452058992, - 6452059088, - 6452059104, - 6452059120 + 6452060528, + 6452060544, + 6452060560, + 6452060592, + 6452060640, + 6452060656, + 6452060576, + 6452060672, + 6452060688, + 6452060704 ], "bases": [ { @@ -120415,7 +120419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648528, + "complete_object_locator": 6468652624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120424,18 +120428,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465648520, + "vtable_address": 6465652696, "methods": [ - 6448393760, - 6448393776, - 6448393792, - 6448393824, - 6448393872, - 6448393888, - 6448393808, - 6448393904, - 6448393920, - 6448393936 + 6448395328, + 6448395344, + 6448395360, + 6448395392, + 6448395440, + 6448395456, + 6448395376, + 6448395472, + 6448395488, + 6448395504 ], "bases": [ { @@ -120469,7 +120473,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468481080, + "complete_object_locator": 6468485176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120478,18 +120482,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466455544, + "vtable_address": 6466459696, "methods": [ - 6453087248, - 6453087264, - 6453087280, - 6453087312, - 6453087360, - 6453087376, - 6453087296, - 6453087392, - 6453087408, - 6453087424 + 6453088864, + 6453088880, + 6453088896, + 6453088928, + 6453088976, + 6453088992, + 6453088912, + 6453089008, + 6453089024, + 6453089040 ], "bases": [ { @@ -120523,7 +120527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468699952, + "complete_object_locator": 6468704048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120532,18 +120536,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465649144, + "vtable_address": 6465653320, "methods": [ - 6448394192, - 6448394208, - 6448394224, - 6448394256, - 6448394304, - 6448394320, - 6448394240, - 6448394336, - 6448394352, - 6448394368 + 6448395760, + 6448395776, + 6448395792, + 6448395824, + 6448395872, + 6448395888, + 6448395808, + 6448395904, + 6448395920, + 6448395936 ], "bases": [ { @@ -120577,7 +120581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468481352, + "complete_object_locator": 6468485448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120586,18 +120590,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466314880, + "vtable_address": 6466319040, "methods": [ - 6452315520, - 6452315536, - 6452315552, - 6452315584, - 6452315632, - 6452315648, - 6452315568, - 6452315664, - 6452315680, - 6452315696 + 6452317136, + 6452317152, + 6452317168, + 6452317200, + 6452317248, + 6452317264, + 6452317184, + 6452317280, + 6452317296, + 6452317312 ], "bases": [ { @@ -120631,7 +120635,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468671072, + "complete_object_locator": 6468675168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120640,18 +120644,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465397056, + "vtable_address": 6465401216, "methods": [ - 6447970656, - 6447970672, - 6447970688, - 6447970720, - 6447970768, - 6447970784, - 6447970704, - 6447970800, - 6447970816, - 6447970832 + 6447972224, + 6447972240, + 6447972256, + 6447972288, + 6447972336, + 6447972352, + 6447972272, + 6447972368, + 6447972384, + 6447972400 ], "bases": [ { @@ -120685,7 +120689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468442416, + "complete_object_locator": 6468446512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120694,18 +120698,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465637184, + "vtable_address": 6465641360, "methods": [ - 6448327216, - 6448327232, - 6448327248, - 6448327280, - 6448327328, - 6448327344, - 6448327264, - 6448327360, - 6448327376, - 6448327392 + 6448328784, + 6448328800, + 6448328816, + 6448328848, + 6448328896, + 6448328912, + 6448328832, + 6448328928, + 6448328944, + 6448328960 ], "bases": [ { @@ -120739,7 +120743,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468478264, + "complete_object_locator": 6468482360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120748,18 +120752,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466009000, + "vtable_address": 6466013248, "methods": [ - 6450890592, - 6450890608, - 6450890624, - 6450890656, - 6450890704, - 6450890720, - 6450890640, - 6450890736, - 6450890752, - 6450890768 + 6450892160, + 6450892176, + 6450892192, + 6450892224, + 6450892272, + 6450892288, + 6450892208, + 6450892304, + 6450892320, + 6450892336 ], "bases": [ { @@ -120793,7 +120797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468574816, + "complete_object_locator": 6468578912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120802,7 +120806,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464669824, + "vtable_address": 6464674000, "methods": [ 6444489344, 6444489360, @@ -120847,7 +120851,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254296, + "complete_object_locator": 6468258392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120856,18 +120860,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466333288, + "vtable_address": 6466337448, "methods": [ - 6452434256, - 6452434272, - 6452434288, - 6452434320, - 6452434368, - 6452434384, - 6452434304, - 6452434400, - 6452434416, - 6452434432 + 6452435872, + 6452435888, + 6452435904, + 6452435936, + 6452435984, + 6452436000, + 6452435920, + 6452436016, + 6452436032, + 6452436048 ], "bases": [ { @@ -120901,7 +120905,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468676792, + "complete_object_locator": 6468680888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120910,18 +120914,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466009216, - "methods": [ - 6450890784, - 6450890800, - 6450890816, - 6450890848, - 6450890896, - 6450890912, - 6450890832, - 6450890928, - 6450890944, - 6450890960 + "vtable_address": 6466013472, + "methods": [ + 6450892352, + 6450892368, + 6450892384, + 6450892416, + 6450892464, + 6450892480, + 6450892400, + 6450892496, + 6450892512, + 6450892528 ], "bases": [ { @@ -120955,7 +120959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468577240, + "complete_object_locator": 6468581336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -120964,7 +120968,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464402536, + "vtable_address": 6464406632, "methods": [ 6443759392, 6443759408, @@ -121009,7 +121013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468214952, + "complete_object_locator": 6468219048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121018,18 +121022,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466039696, + "vtable_address": 6466043904, "methods": [ - 6451069856, - 6451069872, - 6451069888, - 6451069920, - 6451069968, - 6451069984, - 6451069904, - 6451070000, - 6451070016, - 6451070032 + 6451071424, + 6451071440, + 6451071456, + 6451071488, + 6451071536, + 6451071552, + 6451071472, + 6451071568, + 6451071584, + 6451071600 ], "bases": [ { @@ -121063,7 +121067,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584296, + "complete_object_locator": 6468588392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121072,7 +121076,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465271168, + "vtable_address": 6465275360, "methods": [ 6447730400, 6447730416, @@ -121117,7 +121121,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468426256, + "complete_object_locator": 6468430352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121126,18 +121130,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466163152, + "vtable_address": 6466167360, "methods": [ - 6451695504, - 6451695520, - 6451695536, - 6451695568, - 6451695616, - 6451695632, - 6451695552, - 6451695648, - 6451695664, - 6451695680 + 6451697088, + 6451697104, + 6451697120, + 6451697152, + 6451697200, + 6451697216, + 6451697136, + 6451697232, + 6451697248, + 6451697264 ], "bases": [ { @@ -121171,7 +121175,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631608, + "complete_object_locator": 6468635704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121180,7 +121184,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464659408, + "vtable_address": 6464663584, "methods": [ 6444481120, 6444481136, @@ -121225,7 +121229,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254432, + "complete_object_locator": 6468258528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121234,18 +121238,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466843160, + "vtable_address": 6466847272, "methods": [ - 6456540288, - 6456540304, - 6456540320, - 6456540352, - 6456540400, - 6456540416, - 6456540336, - 6456540432, - 6456540448, - 6456540464 + 6456542064, + 6456542080, + 6456542096, + 6456542128, + 6456542176, + 6456542192, + 6456542112, + 6456542208, + 6456542224, + 6456542240 ], "bases": [ { @@ -121279,7 +121283,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800528, + "complete_object_locator": 6468804624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121288,18 +121292,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465751344, + "vtable_address": 6465755536, "methods": [ - 6449086752, - 6449086768, - 6449086784, - 6449086816, - 6449086864, - 6449086880, - 6449086800, - 6449086896, - 6449086912, - 6449086928 + 6449088304, + 6449088320, + 6449088336, + 6449088368, + 6449088416, + 6449088432, + 6449088352, + 6449088448, + 6449088464, + 6449088480 ], "bases": [ { @@ -121333,7 +121337,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468503512, + "complete_object_locator": 6468507608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121342,18 +121346,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465703752, + "vtable_address": 6465708088, "methods": [ - 6448747008, - 6448747056, - 6448747072, - 6448747104, - 6448747152, - 6448747168, - 6448747088, - 6448747184, - 6448747216, - 6448747232 + 6448748576, + 6448748624, + 6448748640, + 6448748672, + 6448748720, + 6448748736, + 6448748656, + 6448748752, + 6448748784, + 6448748800 ], "bases": [ { @@ -121387,7 +121391,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490016, + "complete_object_locator": 6468494112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121396,18 +121400,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466038472, + "vtable_address": 6466042680, "methods": [ - 6451067808, - 6451067824, - 6451067840, - 6451067872, - 6451067920, - 6451067936, - 6451067856, - 6451067952, - 6451067968, - 6451067984 + 6451069376, + 6451069392, + 6451069408, + 6451069440, + 6451069488, + 6451069504, + 6451069424, + 6451069520, + 6451069536, + 6451069552 ], "bases": [ { @@ -121441,7 +121445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584160, + "complete_object_locator": 6468588256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121450,7 +121454,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464401912, + "vtable_address": 6464406008, "methods": [ 6443749904, 6443749968, @@ -121495,7 +121499,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468214024, + "complete_object_locator": 6468218120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121504,7 +121508,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464658984, + "vtable_address": 6464663160, "methods": [ 6444480432, 6444480448, @@ -121549,7 +121553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468254976, + "complete_object_locator": 6468259072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121558,18 +121562,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464477232, + "vtable_address": 6464481328, "methods": [ - 6444026352, - 6444026368, - 6444026384, - 6444026416, - 6444026464, - 6444026480, - 6444026400, - 6444026496, - 6444026512, - 6444026528 + 6444026608, + 6444026624, + 6444026640, + 6444026672, + 6444026720, + 6444026736, + 6444026656, + 6444026752, + 6444026768, + 6444026784 ], "bases": [ { @@ -121603,7 +121607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468234136, + "complete_object_locator": 6468238232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121612,7 +121616,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464515464, + "vtable_address": 6464519560, "methods": [ 6444265184, 6444265200, @@ -121657,7 +121661,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240120, + "complete_object_locator": 6468244216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121666,7 +121670,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464512224, + "vtable_address": 6464516320, "methods": [ 6444263888, 6444263904, @@ -121711,7 +121715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240448, + "complete_object_locator": 6468244544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121720,18 +121724,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466039240, + "vtable_address": 6466043448, "methods": [ - 6451069664, - 6451069680, - 6451069696, - 6451069728, - 6451069776, - 6451069792, - 6451069712, - 6451069808, - 6451069824, - 6451069840 + 6451071232, + 6451071248, + 6451071264, + 6451071296, + 6451071344, + 6451071360, + 6451071280, + 6451071376, + 6451071392, + 6451071408 ], "bases": [ { @@ -121765,7 +121769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468585608, + "complete_object_locator": 6468589704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121774,18 +121778,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466035008, + "vtable_address": 6466039216, "methods": [ - 6451060128, - 6451060144, - 6451060160, - 6451060192, - 6451060240, - 6451060256, - 6451060176, - 6451060272, - 6451060288, - 6451060304 + 6451061696, + 6451061712, + 6451061728, + 6451061760, + 6451061808, + 6451061824, + 6451061744, + 6451061840, + 6451061856, + 6451061872 ], "bases": [ { @@ -121819,7 +121823,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584704, + "complete_object_locator": 6468588800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121828,18 +121832,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465834632, + "vtable_address": 6465838840, "methods": [ - 6449797488, - 6449797504, - 6449797520, - 6449797552, - 6449797600, - 6449797616, - 6449797536, - 6449797632, - 6449797648, - 6449797664 + 6449799056, + 6449799072, + 6449799088, + 6449799120, + 6449799168, + 6449799184, + 6449799104, + 6449799200, + 6449799216, + 6449799232 ], "bases": [ { @@ -121873,7 +121877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527488, + "complete_object_locator": 6468531584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121882,18 +121886,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466076496, + "vtable_address": 6466080704, "methods": [ - 6451250144, - 6451250160, - 6451250176, - 6451250208, - 6451250256, - 6451250272, - 6451250192, - 6451250288, - 6451250304, - 6451250320 + 6451251712, + 6451251728, + 6451251744, + 6451251776, + 6451251824, + 6451251840, + 6451251760, + 6451251856, + 6451251872, + 6451251888 ], "bases": [ { @@ -121927,7 +121931,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468598472, + "complete_object_locator": 6468602568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121936,18 +121940,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465747336, + "vtable_address": 6465751528, "methods": [ - 6449079648, - 6449079664, - 6449079680, - 6449079712, - 6449079760, - 6449079776, - 6449079696, - 6449079792, - 6449079808, - 6449079824 + 6449081200, + 6449081216, + 6449081232, + 6449081264, + 6449081312, + 6449081328, + 6449081248, + 6449081344, + 6449081360, + 6449081376 ], "bases": [ { @@ -121981,7 +121985,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468503864, + "complete_object_locator": 6468507960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -121990,18 +121994,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465745152, + "vtable_address": 6465749344, "methods": [ - 6449072672, - 6449072688, - 6449072704, - 6449072736, - 6449072784, - 6449072800, - 6449072720, - 6449072816, - 6449072832, - 6449072848 + 6449074224, + 6449074240, + 6449074256, + 6449074288, + 6449074336, + 6449074352, + 6449074272, + 6449074368, + 6449074384, + 6449074400 ], "bases": [ { @@ -122035,7 +122039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468504136, + "complete_object_locator": 6468508232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122044,7 +122048,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464412912, + "vtable_address": 6464417008, "methods": [ 6443771696, 6443771712, @@ -122089,7 +122093,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468215472, + "complete_object_locator": 6468219568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122098,18 +122102,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466056824, + "vtable_address": 6466061056, "methods": [ - 6451162432, - 6451162448, - 6451162464, - 6451162496, - 6451162544, - 6451162560, - 6451162480, - 6451162576, - 6451162592, - 6451162608 + 6451164000, + 6451164016, + 6451164032, + 6451164064, + 6451164112, + 6451164128, + 6451164048, + 6451164144, + 6451164160, + 6451164176 ], "bases": [ { @@ -122143,7 +122147,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592400, + "complete_object_locator": 6468596496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122152,18 +122156,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466134168, + "vtable_address": 6466138376, "methods": [ - 6451549200, - 6451549216, - 6451549232, - 6451549264, - 6451549312, - 6451549328, - 6451549248, - 6451549344, - 6451549360, - 6451549376 + 6451550784, + 6451550800, + 6451550816, + 6451550848, + 6451550896, + 6451550912, + 6451550832, + 6451550928, + 6451550944, + 6451550960 ], "bases": [ { @@ -122197,7 +122201,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468612912, + "complete_object_locator": 6468617008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122206,18 +122210,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466038248, + "vtable_address": 6466042456, "methods": [ - 6451067616, - 6451067632, - 6451067648, - 6451067680, - 6451067728, - 6451067744, - 6451067664, - 6451067760, - 6451067776, - 6451067792 + 6451069184, + 6451069200, + 6451069216, + 6451069248, + 6451069296, + 6451069312, + 6451069232, + 6451069328, + 6451069344, + 6451069360 ], "bases": [ { @@ -122251,7 +122255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468586120, + "complete_object_locator": 6468590216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122260,18 +122264,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466750432, + "vtable_address": 6466754528, "methods": [ - 6455769888, - 6455769904, - 6455769920, - 6455769952, - 6455770000, - 6455770016, - 6455769936, - 6455770032, - 6455770048, - 6455770064 + 6455771648, + 6455771664, + 6455771680, + 6455771712, + 6455771760, + 6455771776, + 6455771696, + 6455771792, + 6455771808, + 6455771824 ], "bases": [ { @@ -122305,7 +122309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468777040, + "complete_object_locator": 6468781136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122314,18 +122318,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466741528, + "vtable_address": 6466745624, "methods": [ - 6455768480, - 6455768496, - 6455768512, - 6455768544, - 6455768592, - 6455768608, - 6455768528, - 6455768624, - 6455768640, - 6455768656 + 6455770240, + 6455770256, + 6455770272, + 6455770304, + 6455770352, + 6455770368, + 6455770288, + 6455770384, + 6455770400, + 6455770416 ], "bases": [ { @@ -122359,7 +122363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468776904, + "complete_object_locator": 6468781000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122368,18 +122372,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465802880, - "methods": [ - 6449406064, - 6449406080, - 6449406096, - 6449406128, - 6449406192, - 6449406224, - 6449406112, - 6449406240, - 6449406256, - 6449406272 + "vtable_address": 6465807072, + "methods": [ + 6449407616, + 6449407632, + 6449407648, + 6449407680, + 6449407744, + 6449407776, + 6449407664, + 6449407792, + 6449407808, + 6449407824 ], "bases": [ { @@ -122413,7 +122417,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517544, + "complete_object_locator": 6468521640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122422,7 +122426,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464403280, + "vtable_address": 6464407376, "methods": [ 6443759808, 6443759824, @@ -122467,7 +122471,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468216000, + "complete_object_locator": 6468220096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122476,18 +122480,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465834240, + "vtable_address": 6465838448, "methods": [ - 6449797296, - 6449797312, - 6449797328, - 6449797360, - 6449797408, - 6449797424, - 6449797344, - 6449797440, - 6449797456, - 6449797472 + 6449798864, + 6449798880, + 6449798896, + 6449798928, + 6449798976, + 6449798992, + 6449798912, + 6449799008, + 6449799024, + 6449799040 ], "bases": [ { @@ -122521,7 +122525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527352, + "complete_object_locator": 6468531448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122530,18 +122534,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465852912, + "vtable_address": 6465857104, "methods": [ - 6449957536, - 6449957552, - 6449957568, - 6449957600, - 6449957648, - 6449957664, - 6449957584, - 6449957680, - 6449957696, - 6449957712 + 6449959104, + 6449959120, + 6449959136, + 6449959168, + 6449959216, + 6449959232, + 6449959152, + 6449959248, + 6449959264, + 6449959280 ], "bases": [ { @@ -122575,7 +122579,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532560, + "complete_object_locator": 6468536656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122584,18 +122588,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466073872, + "vtable_address": 6466078080, "methods": [ - 6451245952, - 6451245968, - 6451246000, - 6451246032, - 6451246096, - 6451246128, - 6451246016, - 6451246176, - 6451246192, - 6451246208 + 6451247552, + 6451247568, + 6451247632, + 6451247664, + 6451247712, + 6451247728, + 6451247648, + 6451247744, + 6451247760, + 6451247776 ], "bases": [ { @@ -122629,7 +122633,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468597536, + "complete_object_locator": 6468601632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122638,18 +122642,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466844280, + "vtable_address": 6466848392, "methods": [ - 6456546320, - 6456546336, - 6456546352, - 6456546384, - 6456546432, - 6456546448, - 6456546368, - 6456546464, - 6456546480, - 6456546496 + 6456548096, + 6456548112, + 6456548128, + 6456548160, + 6456548208, + 6456548224, + 6456548144, + 6456548240, + 6456548256, + 6456548272 ], "bases": [ { @@ -122683,7 +122687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468801600, + "complete_object_locator": 6468805696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122692,18 +122696,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466073128, + "vtable_address": 6466077336, "methods": [ - 6451245504, - 6451245520, - 6451245536, - 6451245568, - 6451245616, - 6451245632, - 6451245552, - 6451245648, - 6451245664, - 6451245680 + 6451247072, + 6451247088, + 6451247104, + 6451247136, + 6451247184, + 6451247200, + 6451247120, + 6451247216, + 6451247232, + 6451247248 ], "bases": [ { @@ -122737,7 +122741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468598032, + "complete_object_locator": 6468602128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122746,18 +122750,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465709680, + "vtable_address": 6465714032, "methods": [ - 6448752384, - 6448752400, - 6448752416, - 6448752448, - 6448752496, - 6448752512, - 6448752432, - 6448752528, - 6448752544, - 6448752560 + 6448753952, + 6448753968, + 6448753984, + 6448754016, + 6448754064, + 6448754080, + 6448754000, + 6448754096, + 6448754112, + 6448754128 ], "bases": [ { @@ -122791,7 +122795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490424, + "complete_object_locator": 6468494520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122800,7 +122804,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464581696, + "vtable_address": 6464585792, "methods": [ 6444378512, 6444378528, @@ -122845,7 +122849,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468246760, + "complete_object_locator": 6468250856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122854,18 +122858,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466260336, - "methods": [ - 6452053232, - 6452053248, - 6452053264, - 6452053296, - 6452053344, - 6452053360, - 6452053280, - 6452053376, - 6452053392, - 6452053408 + "vtable_address": 6466264448, + "methods": [ + 6452054816, + 6452054832, + 6452054848, + 6452054880, + 6452054928, + 6452054944, + 6452054864, + 6452054960, + 6452054976, + 6452054992 ], "bases": [ { @@ -122899,7 +122903,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468648664, + "complete_object_locator": 6468652760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122908,7 +122912,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464704520, + "vtable_address": 6464708632, "methods": [ 6444999856, 6444999872, @@ -122953,7 +122957,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468273704, + "complete_object_locator": 6468277800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -122962,18 +122966,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465708016, + "vtable_address": 6465712368, "methods": [ - 6448752032, - 6448752048, - 6448752064, - 6448752096, - 6448752144, - 6448752160, - 6448752080, - 6448752176, - 6448752192, - 6448752208 + 6448753600, + 6448753616, + 6448753632, + 6448753664, + 6448753712, + 6448753728, + 6448753648, + 6448753744, + 6448753760, + 6448753776 ], "bases": [ { @@ -123007,7 +123011,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491096, + "complete_object_locator": 6468495192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123016,18 +123020,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466037200, + "vtable_address": 6466041408, "methods": [ - 6451064176, - 6451064192, - 6451064208, - 6451064240, - 6451064288, - 6451064304, - 6451064224, - 6451064320, - 6451064336, - 6451064352 + 6451065744, + 6451065760, + 6451065776, + 6451065808, + 6451065856, + 6451065872, + 6451065792, + 6451065888, + 6451065904, + 6451065920 ], "bases": [ { @@ -123061,7 +123065,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584976, + "complete_object_locator": 6468589072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123070,7 +123074,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464698768, + "vtable_address": 6464702880, "methods": [ 6444997472, 6444997488, @@ -123115,7 +123119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468273840, + "complete_object_locator": 6468277936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123124,7 +123128,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465340232, + "vtable_address": 6465344296, "methods": [ 6447856016, 6447856032, @@ -123169,7 +123173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431824, + "complete_object_locator": 6468435920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123178,18 +123182,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466105024, + "vtable_address": 6466109232, "methods": [ - 6451422384, - 6451422400, - 6451422416, - 6451422448, - 6451422512, - 6451422544, - 6451422432, - 6451422560, - 6451422576, - 6451422592 + 6451423968, + 6451423984, + 6451424000, + 6451424032, + 6451424096, + 6451424128, + 6451424016, + 6451424144, + 6451424160, + 6451424176 ], "bases": [ { @@ -123223,7 +123227,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605128, + "complete_object_locator": 6468609224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123232,18 +123236,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466109280, + "vtable_address": 6466113488, "methods": [ - 6451430064, - 6451430080, - 6451430096, - 6451430128, - 6451430176, - 6451430192, - 6451430112, - 6451430208, - 6451430224, - 6451430240 + 6451431648, + 6451431664, + 6451431680, + 6451431712, + 6451431760, + 6451431776, + 6451431696, + 6451431792, + 6451431808, + 6451431824 ], "bases": [ { @@ -123277,7 +123281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468604728, + "complete_object_locator": 6468608824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123286,7 +123290,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464698880, + "vtable_address": 6464702992, "methods": [ 6444997664, 6444997680, @@ -123331,7 +123335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468273976, + "complete_object_locator": 6468278072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123340,18 +123344,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465877504, + "vtable_address": 6465881696, "methods": [ - 6450080112, - 6450080128, - 6450080144, - 6450080176, - 6450080224, - 6450080240, - 6450080160, - 6450080256, - 6450080272, - 6450080288 + 6450081680, + 6450081696, + 6450081712, + 6450081744, + 6450081792, + 6450081808, + 6450081728, + 6450081824, + 6450081840, + 6450081856 ], "bases": [ { @@ -123385,7 +123389,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547736, + "complete_object_locator": 6468551832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123394,18 +123398,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466317904, + "vtable_address": 6466322064, "methods": [ - 6452322640, - 6452322656, - 6452322672, - 6452322704, - 6452322752, - 6452322768, - 6452322688, - 6452322784, - 6452322800, - 6452322816 + 6452324256, + 6452324272, + 6452324288, + 6452324320, + 6452324368, + 6452324384, + 6452324304, + 6452324400, + 6452324416, + 6452324432 ], "bases": [ { @@ -123439,7 +123443,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468674104, + "complete_object_locator": 6468678200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123448,7 +123452,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6464444200, + "vtable_address": 6464448296, "methods": [ 6443894848, 6443894864, @@ -123493,7 +123497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468226600, + "complete_object_locator": 6468230696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123502,18 +123506,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465706960, + "vtable_address": 6465711312, "methods": [ - 6448749552, - 6448749568, - 6448749584, - 6448749616, - 6448749680, - 6448749712, - 6448749600, - 6448749728, - 6448749744, - 6448749760 + 6448751120, + 6448751136, + 6448751152, + 6448751184, + 6448751248, + 6448751280, + 6448751168, + 6448751296, + 6448751312, + 6448751328 ], "bases": [ { @@ -123547,7 +123551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490960, + "complete_object_locator": 6468495056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123556,18 +123560,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465807944, + "vtable_address": 6465812136, "methods": [ - 6449419808, - 6449419824, - 6449419840, - 6449419872, - 6449419920, - 6449419936, - 6449419856, - 6449419952, - 6449419968, - 6449419984 + 6449421376, + 6449421392, + 6449421408, + 6449421440, + 6449421488, + 6449421504, + 6449421424, + 6449421520, + 6449421536, + 6449421552 ], "bases": [ { @@ -123601,7 +123605,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468515256, + "complete_object_locator": 6468519352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123610,18 +123614,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6466106888, - "methods": [ - 6451425152, - 6451425168, - 6451425184, - 6451425216, - 6451425264, - 6451425280, - 6451425200, - 6451425296, - 6451425312, - 6451425328 + "vtable_address": 6466111096, + "methods": [ + 6451426736, + 6451426752, + 6451426768, + 6451426800, + 6451426848, + 6451426864, + 6451426784, + 6451426880, + 6451426896, + 6451426912 ], "bases": [ { @@ -123655,7 +123659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468606200, + "complete_object_locator": 6468610296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123664,18 +123668,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465897352, + "vtable_address": 6465901544, "methods": [ - 6450324128, - 6450324144, - 6450324160, - 6450324192, - 6450324240, - 6450324256, - 6450324176, - 6450324272, - 6450324288, - 6450324304 + 6450325696, + 6450325712, + 6450325728, + 6450325760, + 6450325808, + 6450325824, + 6450325744, + 6450325840, + 6450325856, + 6450325872 ], "bases": [ { @@ -123709,7 +123713,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555064, + "complete_object_locator": 6468559160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123718,18 +123722,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465961328, - "methods": [ - 6450745840, - 6450745856, - 6450745872, - 6450745904, - 6450745952, - 6450745968, - 6450745888, - 6450745984, - 6450746000, - 6450746016 + "vtable_address": 6465965520, + "methods": [ + 6450747408, + 6450747424, + 6450747440, + 6450747472, + 6450747520, + 6450747536, + 6450747456, + 6450747552, + 6450747568, + 6450747584 ], "bases": [ { @@ -123763,7 +123767,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567256, + "complete_object_locator": 6468571352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123772,18 +123776,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6465965424, + "vtable_address": 6465969616, "methods": [ - 6450748880, - 6450748896, - 6450748912, - 6450748960, - 6450749744, - 6450749840, - 6450748944, - 6450749872, - 6450749968, - 6450749984 + 6450750448, + 6450750464, + 6450750496, + 6450751264, + 6450751392, + 6450751424, + 6450750512, + 6450751520, + 6450751536, + 6450751552 ], "bases": [ { @@ -123817,7 +123821,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567528, + "complete_object_locator": 6468571624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123826,13 +123830,13 @@ }, { "type_name": "CGameTimescale", - "vtable_address": 6466063432, + "vtable_address": 6466067640, "methods": [ - 6451203648, + 6451205216, 6443748592, - 6451228176, + 6451229744, 6443748624, - 6451196464, + 6451198032, 6443748656, 6443748672, 6443748688, @@ -123844,7 +123848,7 @@ 6443748784, 6443748800, 6443748816, - 6451217488, + 6451219056, 6443748848, 6443748864, 6443748880, @@ -123855,7 +123859,7 @@ 6443748960, 6443748976, 6443748992, - 6451229920, + 6451231488, 6443749024, 6443749040, 6443749056, @@ -123884,11 +123888,11 @@ 6443749424, 6443749440, 6443749456, - 6451225744, + 6451227312, 6443749488, - 6451190832, - 6451173648, - 6451231216 + 6451192400, + 6451175216, + 6451232784 ], "bases": [ { @@ -123922,7 +123926,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468594760, + "complete_object_locator": 6468598856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123931,10 +123935,10 @@ }, { "type_name": "CGaussianBloomBlurRenderer", - "vtable_address": 6466882592, + "vtable_address": 6466886704, "methods": [ - 6457002000, - 6456702192, + 6457004192, + 6456704000, 6443773360 ], "bases": [ @@ -123955,7 +123959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468811360, + "complete_object_locator": 6468815456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123964,7 +123968,7 @@ }, { "type_name": "CGenerateMipsProceduralLayer", - "vtable_address": 6464427144, + "vtable_address": 6464431240, "methods": [ 6443858064, 6443795456, @@ -123988,7 +123992,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222256, + "complete_object_locator": 6468226352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -123997,18 +124001,18 @@ }, { "type_name": "CGenericExprPart", - "vtable_address": 6468205952, + "vtable_address": 6468210048, "methods": [ - 6464021664, - 6463705588, - 6463705588, - 6464024240, - 6464022800 + 6464023856, + 6463707780, + 6463707780, + 6464026432, + 6464024992 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468997944, + "complete_object_locator": 6469002040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124017,13 +124021,13 @@ }, { "type_name": "CGenericExpr_Binary", - "vtable_address": 6468206088, + "vtable_address": 6468210184, "methods": [ - 6464021712, - 6464022912, - 6464024592, - 6464024256, - 6464022816 + 6464023904, + 6464025104, + 6464026784, + 6464026448, + 6464025008 ], "bases": [ { @@ -124043,7 +124047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998192, + "complete_object_locator": 6469002288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124052,13 +124056,13 @@ }, { "type_name": "CGenericExpr_BoolLiteral", - "vtable_address": 6468206536, + "vtable_address": 6468210632, "methods": [ - 6464021824, - 6464023600, - 6464024688, - 6464024240, - 6464022800 + 6464024016, + 6464025792, + 6464026880, + 6464026432, + 6464024992 ], "bases": [ { @@ -124078,7 +124082,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998832, + "complete_object_locator": 6469002928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124087,13 +124091,13 @@ }, { "type_name": "CGenericExpr_FloatLiteral", - "vtable_address": 6468206408, + "vtable_address": 6468210504, "methods": [ - 6464021872, - 6464023648, - 6464024720, - 6464024240, - 6464022800 + 6464024064, + 6464025840, + 6464026912, + 6464026432, + 6464024992 ], "bases": [ { @@ -124113,7 +124117,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998576, + "complete_object_locator": 6469002672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124122,15 +124126,15 @@ }, { "type_name": "CGenericExpr_FunctionCall", - "vtable_address": 6468206728, + "vtable_address": 6468210824, "methods": [ - 6464021920, - 6464023680, - 6464024752, - 6464024272, - 6464022832, - 6464024224, - 6464022784 + 6464024112, + 6464025872, + 6464026944, + 6464026464, + 6464025024, + 6464026416, + 6464024976 ], "bases": [ { @@ -124150,7 +124154,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468999216, + "complete_object_locator": 6469003312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124159,13 +124163,13 @@ }, { "type_name": "CGenericExpr_IntLiteral", - "vtable_address": 6468206472, + "vtable_address": 6468210568, "methods": [ - 6464022240, - 6464023744, - 6464024992, - 6464024240, - 6464022800 + 6464024432, + 6464025936, + 6464027184, + 6464026432, + 6464024992 ], "bases": [ { @@ -124185,7 +124189,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998704, + "complete_object_locator": 6469002800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124194,13 +124198,13 @@ }, { "type_name": "CGenericExpr_Property", - "vtable_address": 6468206664, + "vtable_address": 6468210760, "methods": [ - 6464022288, - 6464023776, - 6464025024, - 6464024288, - 6464022848 + 6464024480, + 6464025968, + 6464027216, + 6464026480, + 6464025040 ], "bases": [ { @@ -124220,7 +124224,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468999088, + "complete_object_locator": 6469003184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124229,13 +124233,13 @@ }, { "type_name": "CGenericExpr_StringLiteral", - "vtable_address": 6468206344, + "vtable_address": 6468210440, "methods": [ - 6464022400, - 6464023840, - 6464025216, - 6464024240, - 6464022800 + 6464024592, + 6464026032, + 6464027408, + 6464026432, + 6464024992 ], "bases": [ { @@ -124255,7 +124259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998448, + "complete_object_locator": 6469002544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124264,13 +124268,13 @@ }, { "type_name": "CGenericExpr_TernaryConditional", - "vtable_address": 6468206272, + "vtable_address": 6468210368, "methods": [ - 6464022480, - 6464023904, - 6464025392, - 6464024304, - 6464022864 + 6464024672, + 6464026096, + 6464027584, + 6464026496, + 6464025056 ], "bases": [ { @@ -124290,7 +124294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998320, + "complete_object_locator": 6469002416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124299,13 +124303,13 @@ }, { "type_name": "CGenericExpr_Unary", - "vtable_address": 6468206000, + "vtable_address": 6468210096, "methods": [ - 6464022608, - 6464023984, - 6464025504, - 6464024320, - 6464022896 + 6464024800, + 6464026176, + 6464027696, + 6464026512, + 6464025088 ], "bases": [ { @@ -124325,7 +124329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998064, + "complete_object_locator": 6469002160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124334,13 +124338,13 @@ }, { "type_name": "CGenericExpr_VariableReference", - "vtable_address": 6468206600, + "vtable_address": 6468210696, "methods": [ - 6464022704, - 6464024160, - 6464025552, - 6464024240, - 6464022800 + 6464024896, + 6464026352, + 6464027744, + 6464026432, + 6464024992 ], "bases": [ { @@ -124360,7 +124364,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468998960, + "complete_object_locator": 6469003056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124369,9 +124373,9 @@ }, { "type_name": "CGlobalFlexControllerMgr", - "vtable_address": 6465899616, + "vtable_address": 6465903808, "methods": [ - 6450333728 + 6450335296 ], "bases": [ { @@ -124391,7 +124395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555600, + "complete_object_locator": 6468559696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124400,18 +124404,18 @@ }, { "type_name": "CGlobalLightBase", - "vtable_address": 6465914528, + "vtable_address": 6465918720, "methods": [ - 6450393264, - 6450720992, - 6450500416, + 6450394832, + 6450722560, + 6450501984, 6443810016, 6443816480, 6443816464, 6443816496, 6443806896, - 6450666592, - 6450507536 + 6450668160, + 6450509104 ], "bases": [ { @@ -124431,7 +124435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560200, + "complete_object_locator": 6468564296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124440,9 +124444,9 @@ }, { "type_name": "CGlowHelperSceneObject", - "vtable_address": 6466030024, + "vtable_address": 6466034232, "methods": [ - 6450922112, + 6450923680, 6443765216, 6443765488 ], @@ -124464,7 +124468,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468578672, + "complete_object_locator": 6468582768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124473,14 +124477,14 @@ }, { "type_name": "CGlowHelperSceneObjectDesc", - "vtable_address": 6466011168, + "vtable_address": 6466015424, "methods": [ - 6450891008, - 6450891024, + 6450892576, + 6450892592, 6443766128, 6443766112, - 6450891040, - 6450890976, + 6450892608, + 6450892544, 6443766480, 6443766496, 6443766512, @@ -124497,7 +124501,7 @@ 6443766688, 6443766704, 6443766720, - 6450892896 + 6450894464 ], "bases": [ { @@ -124531,7 +124535,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468577376, + "complete_object_locator": 6468581472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124540,13 +124544,13 @@ }, { "type_name": "CGlowManager", - "vtable_address": 6466059880, + "vtable_address": 6466064104, "methods": [ 6443748576, 6443748592, 6443748608, 6443748624, - 6451167104, + 6451168672, 6443748656, 6443748672, 6443748688, @@ -124563,7 +124567,7 @@ 6443748864, 6443748880, 6443748896, - 6451167184, + 6451168752, 6443748928, 6443748944, 6443748960, @@ -124598,11 +124602,11 @@ 6443749424, 6443749440, 6443749456, - 6451167072, + 6451168640, 6443749488, - 6451167056, - 6451167200, - 6451167040 + 6451168624, + 6451168768, + 6451168608 ], "bases": [ { @@ -124636,7 +124640,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592672, + "complete_object_locator": 6468596768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124645,17 +124649,17 @@ }, { "type_name": "CGlowProperty", - "vtable_address": 6466062360, + "vtable_address": 6466066560, "methods": [ - 6449027456, - 6451207520, - 6448966080, - 6451207536 + 6449029008, + 6451209088, + 6448967648, + 6451209104 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468594680, + "complete_object_locator": 6468598776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124664,11 +124668,11 @@ }, { "type_name": "CGpuDebugDrawMessageReadback", - "vtable_address": 6466883760, + "vtable_address": 6466887872, "methods": [ - 6456702240, - 6453280608, - 6456962272 + 6456704048, + 6453282368, + 6456964464 ], "bases": [ { @@ -124702,7 +124706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812128, + "complete_object_locator": 6468816224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124711,10 +124715,10 @@ }, { "type_name": "CGpuDebugDrawRenderer", - "vtable_address": 6466883976, + "vtable_address": 6466888088, "methods": [ - 6456974512, - 6456700656, + 6456976704, + 6456702464, 6443773360 ], "bases": [ @@ -124735,7 +124739,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812264, + "complete_object_locator": 6468816360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124744,10 +124748,10 @@ }, { "type_name": "CGpuDebugDrawRenderer", - "vtable_address": 6466884008, + "vtable_address": 6466888120, "methods": [ - 6456975296, - 6456700704, + 6456977488, + 6456702512, 6443773360 ], "bases": [ @@ -124768,7 +124772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812392, + "complete_object_locator": 6468816488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124777,10 +124781,10 @@ }, { "type_name": "CGpuVisUpdateNodeVisibilityRenderer", - "vtable_address": 6466883176, + "vtable_address": 6466887288, "methods": [ - 6457002544, - 6456702288, + 6457004736, + 6456704096, 6443773360 ], "bases": [ @@ -124801,7 +124805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468811488, + "complete_object_locator": 6468815584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -124810,32 +124814,32 @@ }, { "type_name": "CGrenadeTracer", - "vtable_address": 6466728616, + "vtable_address": 6466732712, "methods": [ 6445466928, - 6455701696, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6455745664, - 6450413456, - 6450585280, - 6450586832, - 6455704512, - 6455761136, - 6448980192, + 6455703456, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6455747456, + 6450415024, + 6450586848, + 6450588400, + 6455706272, + 6455762896, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -124844,25 +124848,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723600, - 6455739136, - 6455741344, + 6460060080, + 6455725392, + 6455740928, + 6455743136, 6443799760, 6445466096, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -124879,13 +124883,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -124893,41 +124897,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6455742832, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6455744624, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -124939,33 +124943,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6455712688, - 6451215568, + 6455714480, + 6451217136, 6443883952, - 6455739504, + 6455741296, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -124993,34 +124997,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6455736896, - 6450577264, + 6455738688, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -125030,24 +125034,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -125126,7 +125130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775072, + "complete_object_locator": 6468779168, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -125135,14 +125139,14 @@ }, { "type_name": "CGrenadeTracer", - "vtable_address": 6466730536, + "vtable_address": 6466734632, "methods": [ - 6455701612, - 6448995376, - 6448972352, - 6448972096, + 6455703372, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -125218,7 +125222,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775232, + "complete_object_locator": 6468779328, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -125227,9 +125231,9 @@ }, { "type_name": "CGrenadeTracer", - "vtable_address": 6466730592, + "vtable_address": 6466734688, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -125305,7 +125309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775272, + "complete_object_locator": 6468779368, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -125314,35 +125318,35 @@ }, { "type_name": "CHeatMap", - "vtable_address": 6466576848, + "vtable_address": 6466580976, "methods": [ 6443876544, - 6461535472, - 6453996688, - 6454003312, - 6454030800, - 6461546688, - 6461559344, + 6461537664, + 6453998448, + 6454005072, + 6454032560, + 6461548880, + 6461561536, 6443845056, - 6454024368, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6454026128, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453976336, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453978096, 6443844992, 6443848064, 6443844976, @@ -125355,12 +125359,12 @@ 6443913856, 6443821360, 6443848384, - 6454047680, - 6461505456, - 6461505088, - 6461526000, + 6454049440, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -125370,39 +125374,39 @@ 6443847696, 6443847680, 6443848160, - 6454026960, - 6454030656, + 6454028720, + 6454032416, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453996544, - 6453975136, + 6461548896, + 6453998304, + 6453976896, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6454027728, - 6453985152, - 6454023184 + 6454029488, + 6453986912, + 6454024944 ], "bases": [ { @@ -125450,7 +125454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468729176, + "complete_object_locator": 6468733272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125459,25 +125463,25 @@ }, { "type_name": "CHelpRequestLogs_UploadUserApplicationLog_Request", - "vtable_address": 6465086688, + "vtable_address": 6465090768, "methods": [ - 6446919472, - 6457189536, - 6446914864, - 6446915520, - 6446915680, - 6457189584, - 6457186560, - 6446915840, - 6446917360, - 6446916416, + 6446919696, + 6457191728, + 6446915088, + 6446915776, + 6446916048, + 6457191776, + 6457188752, + 6446916064, + 6446917584, + 6446916640, 6443742160, - 6446917072, - 6457190896, - 6457192720, - 6446917472, - 6446917600, - 6446917520 + 6446917296, + 6457193088, + 6457194912, + 6446917696, + 6446917824, + 6446917808 ], "bases": [ { @@ -125511,7 +125515,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468391944, + "complete_object_locator": 6468396040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125520,25 +125524,25 @@ }, { "type_name": "CHelpRequestLogs_UploadUserApplicationLog_Response", - "vtable_address": 6465087696, + "vtable_address": 6465091776, "methods": [ - 6446936672, - 6457189536, - 6446931456, - 6446931536, - 6446931632, - 6457189584, - 6457186560, - 6446932176, - 6446934224, - 6446932864, + 6446936896, + 6457191728, + 6446931680, + 6446931760, + 6446931856, + 6457191776, + 6457188752, + 6446932400, + 6446934448, + 6446933088, 6443742160, - 6446934032, - 6457190896, - 6457192720, - 6446934656, - 6446936256, - 6446935824 + 6446934272, + 6457193088, + 6457194912, + 6446935056, + 6446936496, + 6446936464 ], "bases": [ { @@ -125572,7 +125576,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468392080, + "complete_object_locator": 6468396176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125581,24 +125585,24 @@ }, { "type_name": "CHiddenFieldValuePrinter", - "vtable_address": 6466909520, - "methods": [ - 6457069168, - 6457122272, - 6457122432, - 6457122592, - 6457122464, - 6457122624, - 6457122400, - 6457122336, - 6457122560, - 6457122304, - 6457122368, - 6457245392, - 6457245360, - 6457122528, - 6457122496, - 6457122512 + "vtable_address": 6466913584, + "methods": [ + 6457071360, + 6457124464, + 6457124624, + 6457124784, + 6457124656, + 6457124816, + 6457124592, + 6457124528, + 6457124752, + 6457124496, + 6457124560, + 6457247584, + 6457247552, + 6457124720, + 6457124688, + 6457124704 ], "bases": [ { @@ -125618,7 +125622,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468815744, + "complete_object_locator": 6468819840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125627,11 +125631,11 @@ }, { "type_name": "CHistogramReadback", - "vtable_address": 6466879600, + "vtable_address": 6466883712, "methods": [ - 6456702336, - 6453280608, - 6456962480 + 6456704144, + 6453282368, + 6456964672 ], "bases": [ { @@ -125665,7 +125669,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468810584, + "complete_object_locator": 6468814680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125674,10 +125678,10 @@ }, { "type_name": "CHistogramRenderer", - "vtable_address": 6466879632, + "vtable_address": 6466883744, "methods": [ - 6457002816, - 6456702432, + 6457005008, + 6456704240, 6443773360 ], "bases": [ @@ -125698,7 +125702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468810720, + "complete_object_locator": 6468814816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125707,7 +125711,7 @@ }, { "type_name": "CHitboxComponent", - "vtable_address": 6464457256, + "vtable_address": 6464461352, "methods": [ 6443986240, 6443969120, @@ -125734,7 +125738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468230640, + "complete_object_locator": 6468234736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125743,12 +125747,12 @@ }, { "type_name": "CHitgroupDisableListSaveRestoreOps", - "vtable_address": 6465701736, + "vtable_address": 6465706072, "methods": [ - 6448745968, - 6448746272, - 6448746448, - 6448746432, + 6448747536, + 6448747840, + 6448748016, + 6448748000, 6443852464, 6443799744 ], @@ -125784,7 +125788,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490560, + "complete_object_locator": 6468494656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125793,7 +125797,7 @@ }, { "type_name": "CHltvReplaySystem", - "vtable_address": 6464862288, + "vtable_address": 6464866368, "methods": [ 6445599040, 6445602432, @@ -125831,7 +125835,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291440, + "complete_object_locator": 6468295536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -125840,31 +125844,31 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 6465380240, + "vtable_address": 6465384400, "methods": [ 6445466928, - 6447935152, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6447936720, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -125874,25 +125878,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946624, - 6447952032, - 6447953232, + 6460060080, + 6447948192, + 6447953600, + 6447954800, 6443799760, - 6447947696, - 6448917040, + 6447949264, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -125909,13 +125913,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -125923,41 +125927,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -125969,33 +125973,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, - 6447957376, + 6447958944, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -126023,34 +126027,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -126060,36 +126064,36 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, 6444194160, 6444191248, 6444191232, - 6447950272, + 6447951840, 6444190720, 6444190624, 6444191200, 6444234752, - 6447949472 + 6447951040 ], "bases": [ { @@ -126221,7 +126225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439088, + "complete_object_locator": 6468443184, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -126230,14 +126234,14 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 6465382232, + "vtable_address": 6465386392, "methods": [ - 6447934632, - 6448995376, - 6448972352, - 6448972096, + 6447936200, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -126369,7 +126373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439400, + "complete_object_locator": 6468443496, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -126378,9 +126382,9 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 6465382288, + "vtable_address": 6465386448, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -126512,7 +126516,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439440, + "complete_object_locator": 6468443536, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -126521,9 +126525,9 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 6465382304, + "vtable_address": 6465386464, "methods": [ - 6447934644 + 6447936212 ], "bases": [ { @@ -126655,7 +126659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439480, + "complete_object_locator": 6468443576, "offset": 4080, "constructor_displacement": 0, "class_attributes": 1 @@ -126664,31 +126668,31 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 6465378160, + "vtable_address": 6465382320, "methods": [ 6445466928, - 6447935360, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6447936928, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -126698,25 +126702,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946640, - 6447952048, - 6447953280, + 6460060080, + 6447948208, + 6447953616, + 6447954848, 6443799760, 6444159728, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -126733,13 +126737,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -126747,41 +126751,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -126793,33 +126797,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, - 6447957376, + 6447958944, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -126847,34 +126851,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -126884,24 +126888,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -126913,7 +126917,7 @@ 6444190624, 6444191200, 6444234752, - 6447949632 + 6447951200 ], "bases": [ { @@ -127017,7 +127021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468438824, + "complete_object_locator": 6468442920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -127026,14 +127030,14 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 6465380152, + "vtable_address": 6465384312, "methods": [ - 6447934656, - 6448995376, - 6448972352, - 6448972096, + 6447936224, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -127137,7 +127141,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439008, + "complete_object_locator": 6468443104, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -127146,9 +127150,9 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 6465380208, + "vtable_address": 6465384368, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -127252,7 +127256,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439048, + "complete_object_locator": 6468443144, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -127261,23 +127265,23 @@ }, { "type_name": "CHudChatDelegate", - "vtable_address": 6466845752, - "methods": [ - 6456551936, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6451190896, - 6451190912, - 6451224928, - 6451205360, - 6451227824, - 6451228144, + "vtable_address": 6466849864, + "methods": [ + 6456553712, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6451192464, + 6451192480, + 6451226496, + 6451206928, + 6451229392, + 6451229712, + 6456568512, 6456566736, - 6456564960, - 6456566896 + 6456568672 ], "bases": [ { @@ -127325,7 +127329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803048, + "complete_object_locator": 6468807144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -127334,13 +127338,13 @@ }, { "type_name": "CHudCloseCaption", - "vtable_address": 6466134912, + "vtable_address": 6466139120, "methods": [ 6443748576, 6443748592, 6443748608, - 6451568048, - 6451571104, + 6451569632, + 6451572688, 6443748656, 6443748672, 6443748688, @@ -127357,7 +127361,7 @@ 6443748864, 6443748880, 6443748896, - 6451578720, + 6451580304, 6443748928, 6443748944, 6443748960, @@ -127392,11 +127396,11 @@ 6443749424, 6443749440, 6443749456, - 6451589312, + 6451590896, 6443749488, - 6451564832, - 6451556304, - 6451590480 + 6451566416, + 6451557888, + 6451592064 ], "bases": [ { @@ -127458,7 +127462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614032, + "complete_object_locator": 6468618128, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -127467,10 +127471,10 @@ }, { "type_name": "CHudCloseCaption", - "vtable_address": 6466135408, + "vtable_address": 6466139616, "methods": [ - 6451555964, - 6451568032 + 6451557548, + 6451569616 ], "bases": [ { @@ -127532,7 +127536,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614184, + "complete_object_locator": 6468618280, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -127541,13 +127545,13 @@ }, { "type_name": "CHudIcons", - "vtable_address": 6466136320, + "vtable_address": 6466140528, "methods": [ 6443748576, 6443748592, 6443748608, - 6451570224, - 6451571344, + 6451571808, + 6451572928, 6443748656, 6443748672, 6443748688, @@ -127556,7 +127560,7 @@ 6443748736, 6443748752, 6443748768, - 6451589808, + 6451591392, 6443748800, 6443748816, 6443748832, @@ -127599,11 +127603,11 @@ 6443749424, 6443749440, 6443749456, - 6451589344, + 6451590928, 6443749488, - 6451564848, - 6451556368, - 6451590496 + 6451566432, + 6451557952, + 6451592080 ], "bases": [ { @@ -127637,7 +127641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614632, + "complete_object_locator": 6468618728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -127646,35 +127650,35 @@ }, { "type_name": "CHud_CommandQueueGraph", - "vtable_address": 6466853096, + "vtable_address": 6466857200, "methods": [ 6443876544, - 6461535472, - 6456629712, - 6456634448, - 6456639680, - 6461546688, - 6461559344, + 6461537664, + 6456631488, + 6456636224, + 6456641456, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -127687,12 +127691,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -127707,29 +127711,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629216, - 6456601504, + 6461548896, + 6456630992, + 6456603280, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -127765,7 +127769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805440, + "complete_object_locator": 6468809536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -127774,35 +127778,35 @@ }, { "type_name": "CHud_FrameTimeGraph", - "vtable_address": 6466853776, + "vtable_address": 6466857880, "methods": [ 6443876544, - 6461535472, - 6456629728, - 6456634480, - 6456639888, - 6461546688, - 6461559344, + 6461537664, + 6456631504, + 6456636256, + 6456641664, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -127815,12 +127819,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -127835,29 +127839,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629232, - 6456601568, + 6461548896, + 6456631008, + 6456603344, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -127893,7 +127897,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805712, + "complete_object_locator": 6468809808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -127902,35 +127906,35 @@ }, { "type_name": "CHud_NetJitterGraph", - "vtable_address": 6466854456, + "vtable_address": 6466858560, "methods": [ 6443876544, - 6461535472, - 6456629744, - 6456634512, - 6456640016, - 6461546688, - 6461559344, + 6461537664, + 6456631520, + 6456636288, + 6456641792, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6456608112, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6456609888, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -127943,12 +127947,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -127963,29 +127967,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629248, - 6456601632, + 6461548896, + 6456631024, + 6456603408, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -128021,7 +128025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805576, + "complete_object_locator": 6468809672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128030,35 +128034,35 @@ }, { "type_name": "CHud_PerfStatsBasics", - "vtable_address": 6466852416, + "vtable_address": 6466856520, "methods": [ 6443876544, - 6461535472, - 6456629760, - 6456634544, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631536, + 6456636320, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -128071,12 +128075,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -128085,35 +128089,35 @@ 6443801808, 6443847696, 6443847680, - 6456639664, + 6456641440, 6443914752, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629264, - 6456601696, + 6461548896, + 6456631040, + 6456603472, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -128149,7 +128153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805848, + "complete_object_locator": 6468809944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128158,27 +128162,27 @@ }, { "type_name": "CIconLesson", - "vtable_address": 6465929760, - "methods": [ - 6450393328, - 6463705588, - 6450538096, - 6450696688, - 6450698752, - 6450699056, - 6450700544, - 6450578880, - 6450704640, - 6450712224, - 6450682560, - 6450556016, - 6450735872, - 6450700848, - 6450701968, - 6450552896, - 6450421360, - 6450483360, - 6450714512 + "vtable_address": 6465933952, + "methods": [ + 6450394896, + 6463707780, + 6450539664, + 6450698256, + 6450700320, + 6450700624, + 6450702112, + 6450580448, + 6450706208, + 6450713792, + 6450684128, + 6450557584, + 6450737440, + 6450702416, + 6450703536, + 6450554464, + 6450422928, + 6450484928, + 6450716080 ], "bases": [ { @@ -128240,7 +128244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468562608, + "complete_object_locator": 6468566704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128249,12 +128253,12 @@ }, { "type_name": "CImpactEffectsList", - "vtable_address": 6466037480, + "vtable_address": 6466041688, "methods": [ - 6451064368, - 6451065040, - 6451065088, - 6451064544 + 6451065936, + 6451066608, + 6451066656, + 6451066112 ], "bases": [ { @@ -128302,7 +128306,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468585744, + "complete_object_locator": 6468589840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128311,11 +128315,11 @@ }, { "type_name": "CImpactEffectsManager", - "vtable_address": 6466037704, + "vtable_address": 6466041912, "methods": [ - 6451067120, + 6451068688, 6443748592, - 6451067264, + 6451068832, 6443748624, 6443748640, 6443748656, @@ -128369,11 +128373,11 @@ 6443749424, 6443749440, 6443749456, - 6451067088, + 6451068656, 6443749488, - 6451067072, - 6451067552, - 6451067056 + 6451068640, + 6451069120, + 6451068624 ], "bases": [ { @@ -128407,7 +128411,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468585984, + "complete_object_locator": 6468590080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128416,7 +128420,7 @@ }, { "type_name": "CInButtonState", - "vtable_address": 6464833672, + "vtable_address": 6464837752, "methods": [ 6445538416, 6445536864 @@ -128424,7 +128428,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468288288, + "complete_object_locator": 6468292384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128433,26 +128437,26 @@ }, { "type_name": "CInButtonStatePB", - "vtable_address": 6464858912, + "vtable_address": 6464862992, "methods": [ 6445584128, - 6457189536, + 6457191728, 6445582688, 6445582800, 6445582848, - 6457189584, - 6457186560, + 6457191776, + 6457188752, 6445582864, 6445584016, 6445582992, 6443742160, 6445583600, - 6457190896, - 6457192720, + 6457193088, + 6457194912, 6445584032, 6445584064, 6445584048, - 6457187520, + 6457189712, 6445584288 ], "bases": [ @@ -128487,7 +128491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468290376, + "complete_object_locator": 6468294472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128496,31 +128500,31 @@ }, { "type_name": "CInfoDynamicShadowHint", - "vtable_address": 6464458704, + "vtable_address": 6464462800, "methods": [ 6444163808, 6443943600, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6443993376, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6443944368, 6444005664, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -128530,25 +128534,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443969136, 6443984784, 6443986288, 6443799760, 6444159920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -128565,13 +128569,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -128579,39 +128583,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -128625,33 +128629,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -128679,34 +128683,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -128765,7 +128769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468231800, + "complete_object_locator": 6468235896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -128774,31 +128778,31 @@ }, { "type_name": "CInfoDynamicShadowHintBox", - "vtable_address": 6464460472, + "vtable_address": 6464464568, "methods": [ 6444163808, 6443943664, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6443993376, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6443944368, 6444005664, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -128808,25 +128812,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443969152, 6443984800, 6443986336, 6443799760, 6444159920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -128843,13 +128847,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -128857,39 +128861,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -128903,33 +128907,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -128957,34 +128961,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -129057,7 +129061,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468231944, + "complete_object_locator": 6468236040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -129066,31 +129070,31 @@ }, { "type_name": "CInfoFan", - "vtable_address": 6464608320, + "vtable_address": 6464612416, "methods": [ 6444163808, 6444389008, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444425536, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444391744, - 6450715424, - 6450580640, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -129100,25 +129104,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399632, 6444418640, 6444424208, 6443799760, 6444402240, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -129135,13 +129139,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -129149,39 +129153,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -129195,33 +129199,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -129249,34 +129253,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -129333,7 +129337,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249456, + "complete_object_locator": 6468253552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -129342,31 +129346,31 @@ }, { "type_name": "CInfoOffscreenPanoramaTexture", - "vtable_address": 6464424824, + "vtable_address": 6464428920, "methods": [ 6444163808, 6443795584, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, 6443797664, 6443879616, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -129376,25 +129380,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817552, 6443854736, 6443865024, 6443799760, 6443818592, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -129411,13 +129415,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -129425,39 +129429,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, + 6450735600, + 6450684352, + 6450685600, + 6450475056, 6443845088, - 6450579744, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -129471,33 +129475,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6443803488, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -129525,34 +129529,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -129610,7 +129614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222112, + "complete_object_locator": 6468226208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -129619,31 +129623,31 @@ }, { "type_name": "CInfoParticleTarget", - "vtable_address": 6464552240, + "vtable_address": 6464556336, "methods": [ 6444163808, 6444333616, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444373264, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -129653,25 +129657,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444347888, 6444365776, 6444369824, 6443799760, 6444159920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -129688,13 +129692,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -129702,39 +129706,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377504, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -129748,33 +129752,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -129802,34 +129806,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -129886,7 +129890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243552, + "complete_object_locator": 6468247648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -129895,31 +129899,31 @@ }, { "type_name": "CInfoTarget", - "vtable_address": 6464550488, + "vtable_address": 6464554584, "methods": [ 6444163808, 6444333680, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444373312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -129929,25 +129933,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444347904, 6444365792, 6444369872, 6443799760, 6444159920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -129964,13 +129968,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -129978,39 +129982,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377552, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -130024,33 +130028,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -130078,34 +130082,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -130162,7 +130166,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243408, + "complete_object_locator": 6468247504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -130171,32 +130175,32 @@ }, { "type_name": "CInfoWorldLayer", - "vtable_address": 6464555840, + "vtable_address": 6464559936, "methods": [ 6444351984, 6444333744, 6444122752, - 6460051264, + 6460053456, 6444363552, - 6450410112, + 6450411680, 6444373376, - 6450413456, - 6450585280, - 6450586832, - 6450396576, + 6450415024, + 6450586848, + 6450588400, + 6450398144, 6444376096, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -130205,25 +130209,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444347920, 6444365808, 6444369920, 6443799760, 6444351456, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -130240,13 +130244,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -130254,39 +130258,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377584, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, + 6450735600, + 6450684352, + 6450685600, + 6450475056, 6444362736, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -130300,33 +130304,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -130354,34 +130358,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -130424,7 +130428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243832, + "complete_object_locator": 6468247928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -130433,46 +130437,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 6465905040, - "methods": [ - 6450392512, - 6450681936, - 6450671744, - 6450490016, - 6450655264, - 6450652256, - 6450653984, - 6450547216, - 6450735120, - 6450431744, - 6450485568, - 6450485920, - 6450669488, - 6450689424, - 6450671648, - 6450508064, - 6450458336, - 6450413744, - 6450489984, - 6450646688, - 6450736640, - 6450555488, - 6450508112, - 6450487824, - 6450672800, - 6450429968, - 6450602608, - 6450428608, - 6450507184, - 6450571120, - 6450560176, - 6450508144, - 6450499776, - 6450507616, - 6450677136, - 6450508032, - 6450481200, - 6450483760 + "vtable_address": 6465909232, + "methods": [ + 6450394080, + 6450683504, + 6450673312, + 6450491584, + 6450656832, + 6450653824, + 6450655552, + 6450548784, + 6450736688, + 6450433312, + 6450487136, + 6450487488, + 6450671056, + 6450690992, + 6450673216, + 6450509632, + 6450459904, + 6450415312, + 6450491552, + 6450648256, + 6450738208, + 6450557056, + 6450509680, + 6450489392, + 6450674368, + 6450431536, + 6450604176, + 6450430176, + 6450508752, + 6450572688, + 6450561744, + 6450509712, + 6450501344, + 6450509184, + 6450678704, + 6450509600, + 6450482768, + 6450485328 ], "bases": [ { @@ -130534,7 +130538,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468558496, + "complete_object_locator": 6468562592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -130543,46 +130547,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 6465713368, + "vtable_address": 6465717560, "methods": [ - 6448808368, - 6449040000, - 6449032544, - 6448909088, - 6449015984, - 6449012432, - 6449013088, - 6448948928, - 6449066768, - 6448846912, - 6448905600, - 6448905824, - 6449029520, - 6449047680, - 6449032448, - 6448935216, - 6448872112, - 6448837632, - 6448909056, - 6449006864, - 6449067040, - 6448951184, - 6448935456, - 6448906864, - 6449032704, - 6448845808, - 6448992816, - 6448845280, - 6448926896, - 6448967744, - 6448957104, - 6448935488, - 6448919456, - 6448927264, - 6449037056, - 6448935184, - 6448902064, - 6448904608 + 6448809936, + 6449041552, + 6449034096, + 6448910656, + 6449017536, + 6449013984, + 6449014640, + 6448950496, + 6449068320, + 6448848480, + 6448907168, + 6448907392, + 6449031072, + 6449049232, + 6449034000, + 6448936784, + 6448873680, + 6448839200, + 6448910624, + 6449008416, + 6449068592, + 6448952752, + 6448937024, + 6448908432, + 6449034256, + 6448847376, + 6448994384, + 6448846848, + 6448928464, + 6448969312, + 6448958672, + 6448937056, + 6448921024, + 6448928832, + 6449038608, + 6448936752, + 6448903632, + 6448906176 ], "bases": [ { @@ -130644,7 +130648,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468496656, + "complete_object_locator": 6468500752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -130653,46 +130657,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 6466091192, - "methods": [ - 6451280512, - 6451387088, - 6451384912, - 6451320800, - 6451376768, - 6451374096, - 6451374160, - 6451339360, - 6451412128, - 6451298352, - 6451320464, - 6451320512, - 6451384656, - 6451390832, - 6451384864, - 6451329712, - 6451310688, - 6451290656, - 6451320784, - 6451370864, - 6451412448, - 6451340864, - 6451329728, - 6451320576, - 6451384992, - 6451297840, - 6451368592, - 6451297680, - 6451329136, - 6451350688, - 6451344480, - 6451329744, - 6451325904, - 6451329312, - 6451387072, - 6451329696, - 6451318208, - 6451319536 + "vtable_address": 6466095400, + "methods": [ + 6451282080, + 6451388656, + 6451386480, + 6451322368, + 6451378336, + 6451375664, + 6451375728, + 6451340928, + 6451413712, + 6451299920, + 6451322032, + 6451322080, + 6451386224, + 6451392400, + 6451386432, + 6451331280, + 6451312256, + 6451292224, + 6451322352, + 6451372432, + 6451414032, + 6451342432, + 6451331296, + 6451322144, + 6451386560, + 6451299408, + 6451370160, + 6451299248, + 6451330704, + 6451352256, + 6451346048, + 6451331312, + 6451327472, + 6451330880, + 6451388640, + 6451331264, + 6451319776, + 6451321104 ], "bases": [ { @@ -130754,7 +130758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468600088, + "complete_object_locator": 6468604184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -130763,46 +130767,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 6465849368, - "methods": [ - 6449818944, - 6449933040, - 6449929808, - 6449884768, - 6449922144, - 6449918464, - 6449918672, - 6449904384, - 6449956176, - 6449836496, - 6449877200, - 6449877280, - 6449927824, - 6449939680, - 6449929760, - 6449894896, - 6449847888, - 6449831424, - 6449884752, - 6449917936, - 6449956416, - 6449905648, - 6449894912, - 6449878656, - 6449929984, - 6449834896, - 6449916016, - 6449834784, - 6449892400, - 6449908208, - 6449906672, - 6449894928, - 6449890480, - 6449893856, - 6449931984, - 6449894880, - 6449859776, - 6449869984 + "vtable_address": 6465853560, + "methods": [ + 6449820512, + 6449934608, + 6449931376, + 6449886336, + 6449923712, + 6449920032, + 6449920240, + 6449905952, + 6449957744, + 6449838064, + 6449878768, + 6449878848, + 6449929392, + 6449941248, + 6449931328, + 6449896464, + 6449849456, + 6449832992, + 6449886320, + 6449919504, + 6449957984, + 6449907216, + 6449896480, + 6449880224, + 6449931552, + 6449836464, + 6449917584, + 6449836352, + 6449893968, + 6449909776, + 6449908240, + 6449896496, + 6449892048, + 6449895424, + 6449933552, + 6449896448, + 6449861344, + 6449871552 ], "bases": [ { @@ -130864,7 +130868,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468529976, + "complete_object_locator": 6468534072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -130873,46 +130877,46 @@ }, { "type_name": "CInterpolatedVar >", - "vtable_address": 6465655416, - "methods": [ - 6448401872, - 6448500512, - 6448498544, - 6448437808, - 6448496000, - 6448495200, - 6448495408, - 6448470688, - 6448507104, - 6448417936, - 6448432512, - 6448432592, - 6448498016, - 6448501600, - 6448498496, - 6448441680, - 6448421728, - 6448414944, - 6448437792, - 6448490960, - 6448507776, - 6448472160, - 6448442080, - 6448437408, - 6448498720, - 6448416560, - 6448490640, - 6448416448, - 6448440640, - 6448478448, - 6448474416, - 6448442096, - 6448440416, - 6448440768, - 6448500480, - 6448441664, - 6448430608, - 6448432208 + "vtable_address": 6465659592, + "methods": [ + 6448403440, + 6448502080, + 6448500112, + 6448439376, + 6448497568, + 6448496768, + 6448496976, + 6448472256, + 6448508672, + 6448419504, + 6448434080, + 6448434160, + 6448499584, + 6448503168, + 6448500064, + 6448443248, + 6448423296, + 6448416512, + 6448439360, + 6448492528, + 6448509344, + 6448473728, + 6448443648, + 6448438976, + 6448500288, + 6448418128, + 6448492208, + 6448418016, + 6448442208, + 6448480016, + 6448475984, + 6448443664, + 6448441984, + 6448442336, + 6448502048, + 6448443232, + 6448432176, + 6448433776 ], "bases": [ { @@ -130974,7 +130978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468483200, + "complete_object_locator": 6468487296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -130983,46 +130987,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 6465907624, - "methods": [ - 6450392576, - 6450681952, - 6450671824, - 6450490064, - 6450655408, - 6450652320, - 6450654064, - 6450547552, - 6450735216, - 6450432608, - 6450485616, - 6450486016, - 6450669504, - 6450689808, - 6450671696, - 6450508080, - 6450458560, - 6450413856, - 6450490000, - 6450646880, - 6450736688, - 6450555504, - 6450508128, - 6450487872, - 6450673168, - 6450430352, - 6450602752, - 6450428720, - 6450507200, - 6450571136, - 6450560832, - 6450508160, - 6450499888, - 6450507728, - 6450677152, - 6450508048, - 6450481312, - 6450483776 + "vtable_address": 6465911816, + "methods": [ + 6450394144, + 6450683520, + 6450673392, + 6450491632, + 6450656976, + 6450653888, + 6450655632, + 6450549120, + 6450736784, + 6450434176, + 6450487184, + 6450487584, + 6450671072, + 6450691376, + 6450673264, + 6450509648, + 6450460128, + 6450415424, + 6450491568, + 6450648448, + 6450738256, + 6450557072, + 6450509696, + 6450489440, + 6450674736, + 6450431920, + 6450604320, + 6450430288, + 6450508768, + 6450572704, + 6450562400, + 6450509728, + 6450501456, + 6450509296, + 6450678720, + 6450509616, + 6450482880, + 6450485344 ], "bases": [ { @@ -131084,7 +131088,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468559096, + "complete_object_locator": 6468563192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131093,46 +131097,46 @@ }, { "type_name": "CInterpolatedVar", - "vtable_address": 6465404912, - "methods": [ - 6447988960, - 6448048896, - 6448047232, - 6448012176, - 6448042464, - 6448042064, - 6448042272, - 6448026240, - 6448069472, - 6447997168, - 6448009968, - 6448010048, - 6448047024, - 6448054784, - 6448047184, - 6448018528, - 6448003472, - 6447995216, - 6448012160, - 6448037232, - 6448070864, - 6448027824, - 6448018560, - 6448010944, - 6448047408, + "vtable_address": 6465409072, + "methods": [ + 6447990528, + 6448050464, + 6448048800, + 6448013744, + 6448044032, + 6448043632, + 6448043840, + 6448027808, + 6448071040, + 6447998736, + 6448011536, + 6448011616, + 6448048592, + 6448056352, + 6448048752, + 6448020096, + 6448005040, 6447996784, - 6448035840, - 6447996672, - 6448017280, - 6448033200, - 6448030912, - 6448018576, - 6448013904, - 6448017840, - 6448048608, - 6448018512, - 6448009152, - 6448009776 + 6448013728, + 6448038800, + 6448072432, + 6448029392, + 6448020128, + 6448012512, + 6448048976, + 6447998352, + 6448037408, + 6447998240, + 6448018848, + 6448034768, + 6448032480, + 6448020144, + 6448015472, + 6448019408, + 6448050176, + 6448020080, + 6448010720, + 6448011344 ], "bases": [ { @@ -131194,7 +131198,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445024, + "complete_object_locator": 6468449120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131203,46 +131207,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465880704, - "methods": [ - 6450113056, - 6450267920, - 6450260224, - 6450182368, - 6450253440, - 6450252224, - 6450252544, - 6450204208, - 6450297904, - 6450148464, - 6450177696, - 6450179456, - 6463705588, - 6450274528, - 6450260000, + "vtable_address": 6465884896, + "methods": [ + 6450114624, + 6450269488, + 6450261792, + 6450183936, + 6450255008, + 6450253792, + 6450254112, + 6450205776, + 6450299472, + 6450150032, + 6450179264, + 6450181024, + 6463707780, + 6450276096, + 6450261568, + 6450197488, + 6450163120, + 6450138336, + 6450183840, + 6450249424, + 6450300432, + 6450209568, + 6450197728, + 6450181664, + 6450262400, + 6450142384, + 6450247040, + 6450141664, 6450195920, - 6450161552, - 6450136768, - 6450182272, - 6450247856, - 6450298864, - 6450208000, - 6450196160, - 6450180096, - 6450260832, - 6450140816, - 6450245472, - 6450140096, - 6450194352, - 6450232336, - 6450219632, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450177184 + 6450233904, + 6450221200, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450178752 ], "bases": [ { @@ -131262,7 +131266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551888, + "complete_object_locator": 6468555984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131271,46 +131275,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465881328, - "methods": [ - 6450113120, - 6450268176, - 6450260304, - 6450182416, - 6450253632, - 6450252288, - 6450252624, - 6450204592, - 6450298000, - 6450149328, - 6450177744, - 6450179536, - 6463705588, - 6450274912, - 6450260048, + "vtable_address": 6465885520, + "methods": [ + 6450114688, + 6450269744, + 6450261872, + 6450183984, + 6450255200, + 6450253856, + 6450254192, + 6450206160, + 6450299568, + 6450150896, + 6450179312, + 6450181104, + 6463707780, + 6450276480, + 6450261616, + 6450197504, + 6450163328, + 6450138448, + 6450183856, + 6450249504, + 6450300512, + 6450209584, + 6450197744, + 6450181712, + 6450262848, + 6450142768, + 6450247184, + 6450141776, 6450195936, - 6450161760, - 6450136880, - 6450182288, - 6450247936, - 6450298944, - 6450208016, - 6450196176, - 6450180144, - 6450261280, - 6450141200, - 6450245616, - 6450140208, - 6450194368, - 6450232432, - 6450220496, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450177200 + 6450234000, + 6450222064, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450178768 ], "bases": [ { @@ -131330,7 +131334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551928, + "complete_object_locator": 6468556024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131339,46 +131343,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465879912, - "methods": [ - 6450113184, - 6450268352, - 6450260384, - 6450182464, - 6450253824, - 6450252352, - 6450252704, - 6450204976, - 6450298096, - 6450149984, - 6450177792, - 6450179616, - 6463705588, - 6450275296, - 6450260096, + "vtable_address": 6465884104, + "methods": [ + 6450114752, + 6450269920, + 6450261952, + 6450184032, + 6450255392, + 6450253920, + 6450254272, + 6450206544, + 6450299664, + 6450151552, + 6450179360, + 6450181184, + 6463707780, + 6450276864, + 6450261664, + 6450197520, + 6450163536, + 6450138560, + 6450183872, + 6450249584, + 6450300592, + 6450209600, + 6450197760, + 6450181760, + 6450263296, + 6450143152, + 6450247328, + 6450141888, 6450195952, - 6450161968, - 6450136992, - 6450182304, - 6450248016, - 6450299024, - 6450208032, - 6450196192, - 6450180192, - 6450261728, - 6450141584, - 6450245760, - 6450140320, - 6450194384, - 6450232528, - 6450221456, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450177216 + 6450234096, + 6450223024, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450178784 ], "bases": [ { @@ -131398,7 +131402,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551848, + "complete_object_locator": 6468555944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131407,46 +131411,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465904728, + "vtable_address": 6465908920, "methods": [ - 6450392640, - 6450681936, - 6450671744, - 6450490016, - 6450655264, - 6450652256, - 6450653984, - 6450547216, - 6450735120, - 6450431744, - 6450485568, - 6450485920, - 6463705588, - 6450689424, - 6450671648, - 6450508064, - 6450458336, - 6450413744, - 6450489984, - 6450646688, - 6450736640, - 6450555488, - 6450508112, - 6450487824, - 6450672800, - 6450429968, - 6450602608, - 6450428608, - 6450507184, - 6450571120, - 6450560176, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450483760 + 6450394208, + 6450683504, + 6450673312, + 6450491584, + 6450656832, + 6450653824, + 6450655552, + 6450548784, + 6450736688, + 6450433312, + 6450487136, + 6450487488, + 6463707780, + 6450690992, + 6450673216, + 6450509632, + 6450459904, + 6450415312, + 6450491552, + 6450648256, + 6450738208, + 6450557056, + 6450509680, + 6450489392, + 6450674368, + 6450431536, + 6450604176, + 6450430176, + 6450508752, + 6450572688, + 6450561744, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450485328 ], "bases": [ { @@ -131466,7 +131470,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468556512, + "complete_object_locator": 6468560608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131475,46 +131479,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465713056, + "vtable_address": 6465717248, "methods": [ - 6448808432, - 6449040000, - 6449032544, - 6448909088, - 6449015984, - 6449012432, - 6449013088, - 6448948928, - 6449066768, - 6448846912, - 6448905600, - 6448905824, - 6463705588, - 6449047680, - 6449032448, - 6448935216, - 6448872112, - 6448837632, - 6448909056, - 6449006864, - 6449067040, - 6448951184, - 6448935456, - 6448906864, - 6449032704, - 6448845808, - 6448992816, - 6448845280, - 6448926896, - 6448967744, - 6448957104, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6448904608 + 6448810000, + 6449041552, + 6449034096, + 6448910656, + 6449017536, + 6449013984, + 6449014640, + 6448950496, + 6449068320, + 6448848480, + 6448907168, + 6448907392, + 6463707780, + 6449049232, + 6449034000, + 6448936784, + 6448873680, + 6448839200, + 6448910624, + 6449008416, + 6449068592, + 6448952752, + 6448937024, + 6448908432, + 6449034256, + 6448847376, + 6448994384, + 6448846848, + 6448928464, + 6448969312, + 6448958672, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6448906176 ], "bases": [ { @@ -131534,7 +131538,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468492080, + "complete_object_locator": 6468496176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131543,46 +131547,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6466090880, - "methods": [ - 6451280576, - 6451387088, - 6451384912, - 6451320800, - 6451376768, - 6451374096, - 6451374160, - 6451339360, - 6451412128, - 6451298352, - 6451320464, - 6451320512, - 6463705588, - 6451390832, - 6451384864, - 6451329712, - 6451310688, - 6451290656, - 6451320784, - 6451370864, - 6451412448, - 6451340864, - 6451329728, - 6451320576, - 6451384992, - 6451297840, - 6451368592, - 6451297680, - 6451329136, - 6451350688, - 6451344480, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6451319536 + "vtable_address": 6466095088, + "methods": [ + 6451282144, + 6451388656, + 6451386480, + 6451322368, + 6451378336, + 6451375664, + 6451375728, + 6451340928, + 6451413712, + 6451299920, + 6451322032, + 6451322080, + 6463707780, + 6451392400, + 6451386432, + 6451331280, + 6451312256, + 6451292224, + 6451322352, + 6451372432, + 6451414032, + 6451342432, + 6451331296, + 6451322144, + 6451386560, + 6451299408, + 6451370160, + 6451299248, + 6451330704, + 6451352256, + 6451346048, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6451321104 ], "bases": [ { @@ -131602,7 +131606,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468601344, + "complete_object_locator": 6468605440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131611,46 +131615,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465849056, - "methods": [ - 6449819008, - 6449933040, - 6449929808, - 6449884768, - 6449922144, - 6449918464, - 6449918672, - 6449904384, - 6449956176, - 6449836496, - 6449877200, - 6449877280, - 6463705588, - 6449939680, - 6449929760, - 6449894896, - 6449847888, - 6449831424, - 6449884752, - 6449917936, - 6449956416, - 6449905648, - 6449894912, - 6449878656, - 6449929984, - 6449834896, - 6449916016, - 6449834784, - 6449892400, - 6449908208, - 6449906672, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6449869984 + "vtable_address": 6465853248, + "methods": [ + 6449820576, + 6449934608, + 6449931376, + 6449886336, + 6449923712, + 6449920032, + 6449920240, + 6449905952, + 6449957744, + 6449838064, + 6449878768, + 6449878848, + 6463707780, + 6449941248, + 6449931328, + 6449896464, + 6449849456, + 6449832992, + 6449886320, + 6449919504, + 6449957984, + 6449907216, + 6449896480, + 6449880224, + 6449931552, + 6449836464, + 6449917584, + 6449836352, + 6449893968, + 6449909776, + 6449908240, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6449871552 ], "bases": [ { @@ -131670,7 +131674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468530544, + "complete_object_locator": 6468534640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131679,46 +131683,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465716320, - "methods": [ - 6448808496, - 6449040016, - 6449032624, - 6448909136, - 6449016144, - 6449012496, - 6449013168, - 6448949312, - 6449066864, - 6448847680, - 6448905648, - 6448905920, - 6463705588, - 6449048064, - 6449032496, - 6448935232, - 6448872336, - 6448837744, - 6448909072, - 6449006960, - 6449067136, - 6448951200, - 6448935472, - 6448906912, - 6449033072, - 6448846192, - 6448992960, - 6448845392, - 6448926912, - 6448967760, - 6448958000, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6448904624 + "vtable_address": 6465720512, + "methods": [ + 6448810064, + 6449041568, + 6449034176, + 6448910704, + 6449017696, + 6449014048, + 6449014720, + 6448950880, + 6449068416, + 6448849248, + 6448907216, + 6448907488, + 6463707780, + 6449049616, + 6449034048, + 6448936800, + 6448873904, + 6448839312, + 6448910640, + 6449008512, + 6449068688, + 6448952768, + 6448937040, + 6448908480, + 6449034624, + 6448847760, + 6448994528, + 6448846960, + 6448928480, + 6448969328, + 6448959568, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6448906192 ], "bases": [ { @@ -131738,7 +131742,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468492336, + "complete_object_locator": 6468496432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131747,46 +131751,46 @@ }, { "type_name": "CInterpolatedVarArrayBase,0,0,class CGlobalInterpolationLerpFuncs > >", - "vtable_address": 6465655104, - "methods": [ - 6448401936, - 6448500512, - 6448498544, - 6448437808, - 6448496000, - 6448495200, - 6448495408, - 6448470688, - 6448507104, - 6448417936, - 6448432512, - 6448432592, - 6463705588, - 6448501600, - 6448498496, - 6448441680, - 6448421728, - 6448414944, - 6448437792, - 6448490960, - 6448507776, - 6448472160, - 6448442080, - 6448437408, - 6448498720, - 6448416560, - 6448490640, - 6448416448, - 6448440640, - 6448478448, - 6448474416, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6448432208 + "vtable_address": 6465659280, + "methods": [ + 6448403504, + 6448502080, + 6448500112, + 6448439376, + 6448497568, + 6448496768, + 6448496976, + 6448472256, + 6448508672, + 6448419504, + 6448434080, + 6448434160, + 6463707780, + 6448503168, + 6448500064, + 6448443248, + 6448423296, + 6448416512, + 6448439360, + 6448492528, + 6448509344, + 6448473728, + 6448443648, + 6448438976, + 6448500288, + 6448418128, + 6448492208, + 6448418016, + 6448442208, + 6448480016, + 6448475984, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6448433776 ], "bases": [ { @@ -131806,7 +131810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468481488, + "complete_object_locator": 6468485584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131815,46 +131819,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465907312, - "methods": [ - 6450392704, - 6450681952, - 6450671824, - 6450490064, - 6450655408, - 6450652320, - 6450654064, - 6450547552, - 6450735216, - 6450432608, - 6450485616, - 6450486016, - 6463705588, - 6450689808, - 6450671696, - 6450508080, - 6450458560, - 6450413856, - 6450490000, - 6450646880, - 6450736688, - 6450555504, - 6450508128, - 6450487872, - 6450673168, - 6450430352, - 6450602752, - 6450428720, - 6450507200, - 6450571136, - 6450560832, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450483776 + "vtable_address": 6465911504, + "methods": [ + 6450394272, + 6450683520, + 6450673392, + 6450491632, + 6450656976, + 6450653888, + 6450655632, + 6450549120, + 6450736784, + 6450434176, + 6450487184, + 6450487584, + 6463707780, + 6450691376, + 6450673264, + 6450509648, + 6450460128, + 6450415424, + 6450491568, + 6450648448, + 6450738256, + 6450557072, + 6450509696, + 6450489440, + 6450674736, + 6450431920, + 6450604320, + 6450430288, + 6450508768, + 6450572704, + 6450562400, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450485344 ], "bases": [ { @@ -131874,7 +131878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468556640, + "complete_object_locator": 6468560736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131883,46 +131887,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465404600, - "methods": [ - 6447989024, - 6448048896, - 6448047232, - 6448012176, - 6448042464, - 6448042064, - 6448042272, - 6448026240, - 6448069472, - 6447997168, - 6448009968, - 6448010048, - 6463705588, - 6448054784, - 6448047184, - 6448018528, - 6448003472, - 6447995216, - 6448012160, - 6448037232, - 6448070864, - 6448027824, - 6448018560, - 6448010944, - 6448047408, + "vtable_address": 6465408760, + "methods": [ + 6447990592, + 6448050464, + 6448048800, + 6448013744, + 6448044032, + 6448043632, + 6448043840, + 6448027808, + 6448071040, + 6447998736, + 6448011536, + 6448011616, + 6463707780, + 6448056352, + 6448048752, + 6448020096, + 6448005040, 6447996784, - 6448035840, - 6447996672, - 6448017280, - 6448033200, - 6448030912, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6448009776 + 6448013728, + 6448038800, + 6448072432, + 6448029392, + 6448020128, + 6448012512, + 6448048976, + 6447998352, + 6448037408, + 6447998240, + 6448018848, + 6448034768, + 6448032480, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6448011344 ], "bases": [ { @@ -131942,7 +131946,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445592, + "complete_object_locator": 6468449688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131951,46 +131955,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465821192, - "methods": [ - 6449496896, - 6449735136, - 6449729104, - 6449586304, - 6449709760, - 6449706288, - 6449708384, - 6449622576, - 6449773568, - 6449533296, - 6449582304, - 6449583248, - 6463705588, - 6449743056, - 6449729008, - 6449601472, - 6449545312, - 6449525360, - 6449586272, - 6449666720, - 6449775072, - 6449626448, - 6449601648, - 6449585248, - 6449729264, - 6449529584, - 6449658448, - 6449528912, - 6449595312, - 6449643088, - 6449627184, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6449581728 + "vtable_address": 6465825384, + "methods": [ + 6449498464, + 6449736704, + 6449730672, + 6449587872, + 6449711328, + 6449707856, + 6449709952, + 6449624144, + 6449775136, + 6449534864, + 6449583872, + 6449584816, + 6463707780, + 6449744624, + 6449730576, + 6449603040, + 6449546880, + 6449526928, + 6449587840, + 6449668288, + 6449776640, + 6449628016, + 6449603216, + 6449586816, + 6449730832, + 6449531152, + 6449660016, + 6449530480, + 6449596880, + 6449644656, + 6449628752, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6449583296 ], "bases": [ { @@ -132010,7 +132014,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468525192, + "complete_object_locator": 6468529288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132019,7 +132023,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6464456600, + "vtable_address": 6464460696, "methods": [ 6443943136, 6443993104, @@ -132033,7 +132037,7 @@ 6443958480, 6443969216, 6443969264, - 6463705588, + 6463707780, 6443994768, 6443990848, 6443973376, @@ -132052,12 +132056,12 @@ 6443972320, 6443981840, 6443979808, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, 6443968864 ], "bases": [ @@ -132078,7 +132082,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468229616, + "complete_object_locator": 6468233712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132087,46 +132091,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465877736, - "methods": [ - 6450112992, - 6450267760, - 6450260144, - 6450182320, - 6450253264, - 6450252160, - 6450252464, - 6450203824, - 6450297808, - 6450147712, - 6450177648, - 6450179360, - 6463705588, - 6450274144, - 6450259952, + "vtable_address": 6465881928, + "methods": [ + 6450114560, + 6450269328, + 6450261712, + 6450183888, + 6450254832, + 6450253728, + 6450254032, + 6450205392, + 6450299376, + 6450149280, + 6450179216, + 6450180928, + 6463707780, + 6450275712, + 6450261520, + 6450197472, + 6450162928, + 6450138224, + 6450183824, + 6450249344, + 6450300352, + 6450209552, + 6450197712, + 6450181616, + 6450262032, + 6450142000, + 6450246896, + 6450141552, 6450195904, - 6450161360, - 6450136656, - 6450182256, - 6450247776, - 6450298784, - 6450207984, - 6450196144, - 6450180048, - 6450260464, - 6450140432, - 6450245328, - 6450139984, - 6450194336, - 6450232240, - 6450218656, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450177168 + 6450233808, + 6450220224, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450178736 ], "bases": [ { @@ -132146,7 +132150,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547952, + "complete_object_locator": 6468552048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132155,46 +132159,46 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6465820568, - "methods": [ - 6449496960, - 6449735248, - 6449729184, - 6449586352, - 6449709936, - 6449706352, - 6449708464, - 6449622960, - 6449773664, - 6449534016, - 6449582352, - 6449583344, - 6463705588, - 6449743440, - 6449729056, - 6449601488, - 6449545504, - 6449525472, - 6449586288, - 6449666800, - 6449775152, - 6449626464, - 6449601664, - 6449585296, - 6449729632, - 6449529968, - 6449658592, - 6449529024, - 6449595328, - 6449643184, - 6449628288, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6449581744 + "vtable_address": 6465824760, + "methods": [ + 6449498528, + 6449736816, + 6449730752, + 6449587920, + 6449711504, + 6449707920, + 6449710032, + 6449624528, + 6449775232, + 6449535584, + 6449583920, + 6449584912, + 6463707780, + 6449745008, + 6449730624, + 6449603056, + 6449547072, + 6449527040, + 6449587856, + 6449668368, + 6449776720, + 6449628032, + 6449603232, + 6449586864, + 6449731200, + 6449531536, + 6449660160, + 6449530592, + 6449596896, + 6449644752, + 6449629856, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6449583312 ], "bases": [ { @@ -132214,7 +132218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468525152, + "complete_object_locator": 6468529248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132223,9 +132227,9 @@ }, { "type_name": "CInterpolatedVarAutoCompletionFunctor", - "vtable_address": 6465898800, + "vtable_address": 6465902992, "methods": [ - 6450325056 + 6450326624 ], "bases": [ { @@ -132259,7 +132263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555200, + "complete_object_locator": 6468559296, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -132268,9 +132272,9 @@ }, { "type_name": "CInterpolatedVarAutoCompletionFunctor", - "vtable_address": 6465898816, + "vtable_address": 6465903008, "methods": [ - 6450326800 + 6450328368 ], "bases": [ { @@ -132304,7 +132308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555336, + "complete_object_locator": 6468559432, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -132313,46 +132317,46 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 6465881016, - "methods": [ - 6450113312, - 6450267920, - 6450260224, - 6450182368, - 6450253440, - 6450252224, - 6450252544, - 6450204208, - 6450297904, - 6450148464, - 6450177696, - 6450179456, - 6450256912, - 6450274528, - 6450260000, + "vtable_address": 6465885208, + "methods": [ + 6450114880, + 6450269488, + 6450261792, + 6450183936, + 6450255008, + 6450253792, + 6450254112, + 6450205776, + 6450299472, + 6450150032, + 6450179264, + 6450181024, + 6450258480, + 6450276096, + 6450261568, + 6450197488, + 6450163120, + 6450138336, + 6450183840, + 6450249424, + 6450300432, + 6450209568, + 6450197728, + 6450181664, + 6450262400, + 6450142384, + 6450247040, + 6450141664, 6450195920, - 6450161552, - 6450136768, - 6450182272, - 6450247856, - 6450298864, - 6450208000, - 6450196160, - 6450180096, - 6450260832, - 6450140816, - 6450245472, - 6450140096, - 6450194352, - 6450232336, - 6450219632, - 6450196256, - 6450189728, - 6450195360, - 6450267104, - 6450195856, - 6450175072, - 6450177184 + 6450233904, + 6450221200, + 6450197824, + 6450191296, + 6450196928, + 6450268672, + 6450197424, + 6450176640, + 6450178752 ], "bases": [ { @@ -132414,7 +132418,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468550048, + "complete_object_locator": 6468554144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132423,46 +132427,46 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 6465880224, - "methods": [ - 6450113376, - 6450268352, - 6450260384, - 6450182464, - 6450253824, - 6450252352, - 6450252704, - 6450204976, - 6450298096, - 6450149984, - 6450177792, - 6450179616, - 6450256944, - 6450275296, - 6450260096, + "vtable_address": 6465884416, + "methods": [ + 6450114944, + 6450269920, + 6450261952, + 6450184032, + 6450255392, + 6450253920, + 6450254272, + 6450206544, + 6450299664, + 6450151552, + 6450179360, + 6450181184, + 6450258512, + 6450276864, + 6450261664, + 6450197520, + 6450163536, + 6450138560, + 6450183872, + 6450249584, + 6450300592, + 6450209600, + 6450197760, + 6450181760, + 6450263296, + 6450143152, + 6450247328, + 6450141888, 6450195952, - 6450161968, - 6450136992, - 6450182304, - 6450248016, - 6450299024, - 6450208032, - 6450196192, - 6450180192, - 6450261728, - 6450141584, - 6450245760, - 6450140320, - 6450194384, - 6450232528, - 6450221456, - 6450196352, - 6450189760, - 6450195392, - 6450267168, - 6450195888, - 6450175296, - 6450177216 + 6450234096, + 6450223024, + 6450197920, + 6450191328, + 6450196960, + 6450268736, + 6450197456, + 6450176864, + 6450178784 ], "bases": [ { @@ -132524,7 +132528,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468549048, + "complete_object_locator": 6468553144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132533,46 +132537,46 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 6465821504, - "methods": [ - 6449497024, - 6449735136, - 6449729104, - 6449586304, - 6449709760, - 6449706288, - 6449708384, - 6449622576, - 6449773568, - 6449533296, - 6449582304, - 6449583248, - 6449726880, - 6449743056, - 6449729008, - 6449601472, - 6449545312, - 6449525360, - 6449586272, - 6449666720, - 6449775072, - 6449626448, - 6449601648, - 6449585248, - 6449729264, - 6449529584, - 6449658448, - 6449528912, - 6449595312, - 6449643088, - 6449627184, - 6449601680, - 6449594288, - 6449599504, - 6449734736, - 6449601440, - 6449581184, - 6449581728 + "vtable_address": 6465825696, + "methods": [ + 6449498592, + 6449736704, + 6449730672, + 6449587872, + 6449711328, + 6449707856, + 6449709952, + 6449624144, + 6449775136, + 6449534864, + 6449583872, + 6449584816, + 6449728448, + 6449744624, + 6449730576, + 6449603040, + 6449546880, + 6449526928, + 6449587840, + 6449668288, + 6449776640, + 6449628016, + 6449603216, + 6449586816, + 6449730832, + 6449531152, + 6449660016, + 6449530480, + 6449596880, + 6449644656, + 6449628752, + 6449603248, + 6449595856, + 6449601072, + 6449736304, + 6449603008, + 6449582752, + 6449583296 ], "bases": [ { @@ -132634,7 +132638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468520752, + "complete_object_locator": 6468524848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132643,7 +132647,7 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 6464456912, + "vtable_address": 6464461008, "methods": [ 6443943200, 6443993104, @@ -132744,7 +132748,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468230200, + "complete_object_locator": 6468234296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132753,46 +132757,46 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 6465878048, - "methods": [ - 6450113248, - 6450267760, - 6450260144, - 6450182320, - 6450253264, - 6450252160, - 6450252464, - 6450203824, - 6450297808, - 6450147712, - 6450177648, - 6450179360, - 6450256896, - 6450274144, - 6450259952, + "vtable_address": 6465882240, + "methods": [ + 6450114816, + 6450269328, + 6450261712, + 6450183888, + 6450254832, + 6450253728, + 6450254032, + 6450205392, + 6450299376, + 6450149280, + 6450179216, + 6450180928, + 6450258464, + 6450275712, + 6450261520, + 6450197472, + 6450162928, + 6450138224, + 6450183824, + 6450249344, + 6450300352, + 6450209552, + 6450197712, + 6450181616, + 6450262032, + 6450142000, + 6450246896, + 6450141552, 6450195904, - 6450161360, - 6450136656, - 6450182256, - 6450247776, - 6450298784, - 6450207984, - 6450196144, - 6450180048, - 6450260464, - 6450140432, - 6450245328, - 6450139984, - 6450194336, - 6450232240, - 6450218656, - 6450196208, - 6450189712, - 6450195344, - 6450267072, - 6450195840, - 6450174960, - 6450177168 + 6450233808, + 6450220224, + 6450197776, + 6450191280, + 6450196912, + 6450268640, + 6450197408, + 6450176528, + 6450178736 ], "bases": [ { @@ -132854,7 +132858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468550488, + "complete_object_locator": 6468554584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132863,46 +132867,46 @@ }, { "type_name": "CInterpolatedVarProceduralUsingOwnerLerp", - "vtable_address": 6465881640, - "methods": [ - 6450113440, - 6450268176, - 6450260304, - 6450182416, - 6450253632, - 6450252288, - 6450252624, - 6450204592, - 6450298000, - 6450149328, - 6450177744, - 6450179536, - 6450256928, - 6450274912, - 6450260048, + "vtable_address": 6465885832, + "methods": [ + 6450115008, + 6450269744, + 6450261872, + 6450183984, + 6450255200, + 6450253856, + 6450254192, + 6450206160, + 6450299568, + 6450150896, + 6450179312, + 6450181104, + 6450258496, + 6450276480, + 6450261616, + 6450197504, + 6450163328, + 6450138448, + 6450183856, + 6450249504, + 6450300512, + 6450209584, + 6450197744, + 6450181712, + 6450262848, + 6450142768, + 6450247184, + 6450141776, 6450195936, - 6450161760, - 6450136880, - 6450182288, - 6450247936, - 6450298944, - 6450208016, - 6450196176, - 6450180144, - 6450261280, - 6450141200, - 6450245616, - 6450140208, - 6450194368, - 6450232432, - 6450220496, - 6450196304, - 6450189744, - 6450195376, - 6450267136, - 6450195872, - 6450175184, - 6450177232 + 6450234000, + 6450222064, + 6450197872, + 6450191312, + 6450196944, + 6450268704, + 6450197440, + 6450176752, + 6450178800 ], "bases": [ { @@ -132978,7 +132982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468549488, + "complete_object_locator": 6468553584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -132987,46 +132991,46 @@ }, { "type_name": "CInterpolatedVarProceduralUsingOwnerLerp", - "vtable_address": 6465716632, - "methods": [ - 6448808560, - 6449040016, - 6449032624, - 6448909136, - 6449016144, - 6449012496, - 6449013168, - 6448949312, - 6449066864, - 6448847680, - 6448905648, - 6448905920, - 6449029536, - 6449048064, - 6449032496, - 6448935232, - 6448872336, - 6448837744, - 6448909072, - 6449006960, - 6449067136, - 6448951200, - 6448935472, - 6448906912, - 6449033072, - 6448846192, - 6448992960, - 6448845392, - 6448926912, - 6448967760, - 6448958000, - 6448935504, - 6448919568, - 6448927376, - 6449037072, - 6448935200, - 6448902176, - 6448904640 + "vtable_address": 6465720824, + "methods": [ + 6448810128, + 6449041568, + 6449034176, + 6448910704, + 6449017696, + 6449014048, + 6449014720, + 6448950880, + 6449068416, + 6448849248, + 6448907216, + 6448907488, + 6449031088, + 6449049616, + 6449034048, + 6448936800, + 6448873904, + 6448839312, + 6448910640, + 6449008512, + 6449068688, + 6448952768, + 6448937040, + 6448908480, + 6449034624, + 6448847760, + 6448994528, + 6448846960, + 6448928480, + 6448969328, + 6448959568, + 6448937072, + 6448921136, + 6448928944, + 6449038624, + 6448936768, + 6448903744, + 6448906208 ], "bases": [ { @@ -133102,7 +133106,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468497272, + "complete_object_locator": 6468501368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133111,46 +133115,46 @@ }, { "type_name": "CInterpolatedVarProceduralUsingOwnerLerp", - "vtable_address": 6465820880, - "methods": [ - 6449497088, - 6449735248, - 6449729184, - 6449586352, - 6449709936, - 6449706352, - 6449708464, - 6449622960, - 6449773664, - 6449534016, - 6449582352, - 6449583344, - 6449726896, - 6449743440, - 6449729056, - 6449601488, - 6449545504, - 6449525472, - 6449586288, - 6449666800, - 6449775152, - 6449626464, - 6449601664, - 6449585296, - 6449729632, - 6449529968, - 6449658592, - 6449529024, - 6449595328, - 6449643184, - 6449628288, - 6449601728, - 6449594304, - 6449599520, - 6449734768, - 6449601456, - 6449581296, - 6449581760 + "vtable_address": 6465825072, + "methods": [ + 6449498656, + 6449736816, + 6449730752, + 6449587920, + 6449711504, + 6449707920, + 6449710032, + 6449624528, + 6449775232, + 6449535584, + 6449583920, + 6449584912, + 6449728464, + 6449745008, + 6449730624, + 6449603056, + 6449547072, + 6449527040, + 6449587856, + 6449668368, + 6449776720, + 6449628032, + 6449603232, + 6449586864, + 6449731200, + 6449531536, + 6449660160, + 6449530592, + 6449596896, + 6449644752, + 6449629856, + 6449603296, + 6449595872, + 6449601088, + 6449736336, + 6449603024, + 6449582864, + 6449583328 ], "bases": [ { @@ -133226,7 +133230,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468521192, + "complete_object_locator": 6468525288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133235,7 +133239,7 @@ }, { "type_name": "CInventoryItemUpdateManager", - "vtable_address": 6466752224, + "vtable_address": 6466756320, "methods": [ 6443748576, 6443748592, @@ -133293,12 +133297,12 @@ 6443749424, 6443749440, 6443749456, - 6455771312, + 6455773072, 6443749488, - 6455771296, - 6455771872, - 6455771280, - 6455771344 + 6455773056, + 6455773632, + 6455773040, + 6455773104 ], "bases": [ { @@ -133332,7 +133336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468776632, + "complete_object_locator": 6468780728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133341,21 +133345,21 @@ }, { "type_name": "CInventoryManager", - "vtable_address": 6466758536, + "vtable_address": 6466762632, "methods": [ - 6456178048, - 6456309904, - 6456398848, + 6456179824, + 6456311680, + 6456400624, 6443748624, 6443748640, 6443748656, 6443748672, 6443748688, - 6456088240, + 6456090016, 6443748720, 6443748736, 6443748752, - 6456088608, + 6456090384, 6443748784, 6443748800, 6443748816, @@ -133402,25 +133406,25 @@ 6443749472, 6443749488, 6443749504, - 6455880560, - 6463705588, - 6456194320, - 6456290416, - 6456140752, - 6448277248, - 6463705588, - 6463705588, - 6456418288, - 6456147360, - 6456141072, - 6456279456, - 6456397296, - 6456398928, - 6456417328, - 6456416864, - 6456150304, - 6456398816, - 6456130784 + 6455882320, + 6463707780, + 6456196096, + 6456292192, + 6456142528, + 6448278816, + 6463707780, + 6463707780, + 6456420064, + 6456149136, + 6456142848, + 6456281232, + 6456399072, + 6456400704, + 6456419104, + 6456418640, + 6456152080, + 6456400592, + 6456132560 ], "bases": [ { @@ -133454,7 +133458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780088, + "complete_object_locator": 6468784184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133463,9 +133467,9 @@ }, { "type_name": "CIronSightSceneObject", - "vtable_address": 6465610888, + "vtable_address": 6465615064, "methods": [ - 6448238016, + 6448239584, 6443765216, 6443765488 ], @@ -133487,7 +133491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472136, + "complete_object_locator": 6468476232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133496,20 +133500,20 @@ }, { "type_name": "CIronSightSceneObjectDescriptor", - "vtable_address": 6465596776, + "vtable_address": 6465600952, "methods": [ 6443766080, - 6448231600, + 6448233168, 6443766128, 6443766112, 6443766144, - 6448231392, + 6448232960, 6443766480, 6443766496, 6443766512, 6443766528, 6443766544, - 6448231712, + 6448233280, 6443766576, 6443766592, 6443766608, @@ -133520,7 +133524,7 @@ 6443766688, 6443766704, 6443766720, - 6448231424 + 6448232992 ], "bases": [ { @@ -133554,7 +133558,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471912, + "complete_object_locator": 6468476008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133563,7 +133567,7 @@ }, { "type_name": "CItemGeneration", - "vtable_address": 6466765136, + "vtable_address": 6466769232, "methods": [ 6443748576, 6443748592, @@ -133621,11 +133625,11 @@ 6443749424, 6443749440, 6443749456, - 6456397232, + 6456399008, 6443749488, - 6456057888, - 6455880624, - 6456420912 + 6456059664, + 6455882384, + 6456422688 ], "bases": [ { @@ -133659,7 +133663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468787888, + "complete_object_locator": 6468791984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133668,35 +133672,35 @@ }, { "type_name": "CItemImagePanel", - "vtable_address": 6466376208, + "vtable_address": 6466380368, "methods": [ 6443876544, - 6461535472, - 6452690912, - 6452708320, - 6461775152, - 6461546688, - 6461559344, - 6461772800, - 6461773984, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6452692528, + 6452709936, + 6461777344, + 6461548880, + 6461561536, + 6461774992, + 6461776176, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461768208, - 6452650768, + 6461537648, + 6461547232, + 6461505920, + 6461770400, + 6452652384, 6443844992, 6443848064, 6443844976, @@ -133705,16 +133709,16 @@ 6443845024, 6443848560, 6443848128, - 6461768192, + 6461770384, 6443913856, 6443821360, - 6461774848, - 6452776656, - 6461505456, - 6461505088, - 6461526000, + 6461777040, + 6452778272, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -133724,34 +133728,34 @@ 6443847696, 6443847680, 6443848160, - 6452737536, - 6452737920, + 6452739152, + 6452739536, 6443879584, 6443817680, 6443848032, - 6461546704, - 6452690528, - 6452642784, + 6461548896, + 6452692144, + 6452644400, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461771120, - 6452709488, - 6461770784, + 6461773312, + 6452711104, + 6461772976, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461772032, + 6461774224, 6443798832, 6443858048 ], @@ -133801,7 +133805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468685576, + "complete_object_locator": 6468689672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133810,18 +133814,18 @@ }, { "type_name": "CItemSelectionCriteria::CCondition", - "vtable_address": 6466831968, + "vtable_address": 6466836080, "methods": [ - 6456440864, - 6456454368, - 6456468000, - 6456479504, - 6463705588 + 6456442640, + 6456456144, + 6456469776, + 6456481280, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468796480, + "complete_object_locator": 6468800576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133830,13 +133834,13 @@ }, { "type_name": "CItemSelectionCriteria::CFloatCondition", - "vtable_address": 6466832064, + "vtable_address": 6466836176, "methods": [ - 6456441264, - 6456454480, - 6456468000, - 6456479504, - 6456453792 + 6456443040, + 6456456256, + 6456469776, + 6456481280, + 6456455568 ], "bases": [ { @@ -133856,7 +133860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468796728, + "complete_object_locator": 6468800824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133865,13 +133869,13 @@ }, { "type_name": "CItemSelectionCriteria::CSetCondition", - "vtable_address": 6466832112, + "vtable_address": 6466836224, "methods": [ - 6456441776, - 6456454608, - 6456468000, - 6456479504, - 6456454000 + 6456443552, + 6456456384, + 6456469776, + 6456481280, + 6456455776 ], "bases": [ { @@ -133891,7 +133895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468796856, + "complete_object_locator": 6468800952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133900,13 +133904,13 @@ }, { "type_name": "CItemSelectionCriteria::CStringCondition", - "vtable_address": 6466832016, + "vtable_address": 6466836128, "methods": [ - 6456441888, - 6456454784, - 6456468000, - 6456479520, - 6456454112 + 6456443664, + 6456456560, + 6456469776, + 6456481296, + 6456455888 ], "bases": [ { @@ -133926,7 +133930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468796600, + "complete_object_locator": 6468800696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -133935,35 +133939,35 @@ }, { "type_name": "CJSDelayLoadList", - "vtable_address": 6466448824, + "vtable_address": 6466452984, "methods": [ 6443876544, - 6461535472, - 6453006608, - 6453013328, - 6461546672, - 6461842400, - 6461845584, - 6461839872, - 6461841104, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6453008224, + 6453014944, + 6461548864, + 6461844592, + 6461847776, + 6461842064, + 6461843296, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461834944, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461837136, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -133976,12 +133980,12 @@ 6443913856, 6443821360, 6443848384, - 6453062320, - 6461505456, - 6461505088, - 6461526000, + 6453063936, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -133991,34 +133995,34 @@ 6443847696, 6443847680, 6443848160, - 6461842304, - 6461842320, + 6461844496, + 6461844512, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006304, - 6452957920, + 6461548896, + 6453007920, + 6452959536, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -134068,7 +134072,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468699416, + "complete_object_locator": 6468703512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134077,9 +134081,9 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 6465754784, + "vtable_address": 6465758976, "methods": [ - 6449632784 + 6449634352 ], "bases": [ { @@ -134141,7 +134145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506016, + "complete_object_locator": 6468510112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -134150,9 +134154,9 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 6465754800, + "vtable_address": 6465758992, "methods": [ - 6449634720 + 6449636288 ], "bases": [ { @@ -134214,7 +134218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506288, + "complete_object_locator": 6468510384, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -134223,10 +134227,10 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 6465754816, + "vtable_address": 6465759008, "methods": [ - 6449683424, - 6449683232 + 6449684992, + 6449684800 ], "bases": [ { @@ -134288,7 +134292,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506328, + "complete_object_locator": 6468510424, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -134297,9 +134301,9 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 6465754728, + "vtable_address": 6465758920, "methods": [ - 6449720496 + 6449722064 ], "bases": [ { @@ -134361,7 +134365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468505624, + "complete_object_locator": 6468509720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -134370,9 +134374,9 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 6465754744, + "vtable_address": 6465758936, "methods": [ - 6449720624 + 6449722192 ], "bases": [ { @@ -134434,7 +134438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468505936, + "complete_object_locator": 6468510032, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -134443,10 +134447,10 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 6465754760, + "vtable_address": 6465758952, "methods": [ - 6449683552, - 6449683360 + 6449685120, + 6449684928 ], "bases": [ { @@ -134508,7 +134512,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468505976, + "complete_object_locator": 6468510072, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -134517,9 +134521,9 @@ }, { "type_name": "CKV3ResourceBlockHelper", - "vtable_address": 6467043664, + "vtable_address": 6467047728, "methods": [ - 6458957264 + 6458959456 ], "bases": [ { @@ -134539,7 +134543,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468871248, + "complete_object_locator": 6468875344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134548,14 +134552,14 @@ }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 6467857720, + "vtable_address": 6467861816, "methods": [ - 6463519520, - 6449081536, - 6463519504, - 6449081904, - 6449081920, - 6449081936 + 6463521712, + 6449083088, + 6463521696, + 6449083456, + 6449083472, + 6449083488 ], "bases": [ { @@ -134575,7 +134579,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468994976, + "complete_object_locator": 6468999072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134584,9 +134588,9 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Load_NoOp", - "vtable_address": 6467193960, + "vtable_address": 6467198024, "methods": [ - 6460091776 + 6460093968 ], "bases": [ { @@ -134606,7 +134610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468939312, + "complete_object_locator": 6468943408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134615,9 +134619,9 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Save_NoOp", - "vtable_address": 6467193944, + "vtable_address": 6467198008, "methods": [ - 6460094080 + 6460096272 ], "bases": [ { @@ -134637,7 +134641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468939184, + "complete_object_locator": 6468943280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134646,14 +134650,14 @@ }, { "type_name": "CKV3TransferLoadContext", - "vtable_address": 6467857832, + "vtable_address": 6467861928, "methods": [ - 6463519520, - 6449081536, - 6463519504, - 6463519168, - 6449081920, - 6449081936 + 6463521712, + 6449083088, + 6463521696, + 6463521360, + 6449083472, + 6449083488 ], "bases": [ { @@ -134687,7 +134691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468994840, + "complete_object_locator": 6468998936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134696,14 +134700,14 @@ }, { "type_name": "CKV3TransferSaveContext", - "vtable_address": 6467857776, + "vtable_address": 6467861872, "methods": [ - 6463519520, - 6449081536, - 6463519504, - 6449081904, - 6449081920, - 6449081936 + 6463521712, + 6449083088, + 6463521696, + 6449083456, + 6449083472, + 6449083488 ], "bases": [ { @@ -134737,7 +134741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468994616, + "complete_object_locator": 6468998712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134746,9 +134750,9 @@ }, { "type_name": "CKV3Transfer_AssertAlreadyLoadedResourceLoadInterface", - "vtable_address": 6465746712, + "vtable_address": 6465750904, "methods": [ - 6449074592 + 6449076144 ], "bases": [ { @@ -134782,7 +134786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468504960, + "complete_object_locator": 6468509056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134791,9 +134795,9 @@ }, { "type_name": "CKV3Transfer_EmptyResourceLoadInterface", - "vtable_address": 6465746696, + "vtable_address": 6465750832, "methods": [ - 6449074192 + 6449075712 ], "bases": [ { @@ -134813,7 +134817,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468504832, + "complete_object_locator": 6468508928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134822,9 +134826,9 @@ }, { "type_name": "CKV3Transfer_ResourceLoadInterface", - "vtable_address": 6467787064, + "vtable_address": 6467791160, "methods": [ - 6462648368 + 6462650560 ], "bases": [ { @@ -134844,7 +134848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468987696, + "complete_object_locator": 6468991792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134853,7 +134857,7 @@ }, { "type_name": "CKV3Transfer_UtlSymbolLargeInterface >", - "vtable_address": 6464685200, + "vtable_address": 6464689280, "methods": [ 6444580752 ], @@ -134875,7 +134879,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468267120, + "complete_object_locator": 6468271216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134884,11 +134888,11 @@ }, { "type_name": "CKeyBindingListenerMgr", - "vtable_address": 6466009496, + "vtable_address": 6466013752, "methods": [ - 6450889312, - 6450889664, - 6450890096 + 6450891024, + 6450891328, + 6450891712 ], "bases": [ { @@ -134908,7 +134912,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468576216, + "complete_object_locator": 6468580312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134917,9 +134921,9 @@ }, { "type_name": "CKeychainClutchRenderAttribCallback", - "vtable_address": 6465429384, + "vtable_address": 6465433584, "methods": [ - 6448073712 + 6448075280 ], "bases": [ { @@ -134939,7 +134943,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468449112, + "complete_object_locator": 6468453296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134948,9 +134952,9 @@ }, { "type_name": "CKeychainHeadshotRenderAttribCallback", - "vtable_address": 6465429464, + "vtable_address": 6465433664, "methods": [ - 6448074768 + 6448076336 ], "bases": [ { @@ -134970,7 +134974,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468449240, + "complete_object_locator": 6468453424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134979,14 +134983,14 @@ }, { "type_name": "CKillProcessIfItTakesTooLong", - "vtable_address": 6464470192, + "vtable_address": 6464474288, "methods": [ - 6444015808, - 6463407751, - 6444015648, - 6463407745, - 6463407739, - 6463407733 + 6444016064, + 6463409943, + 6444015904, + 6463409937, + 6463409931, + 6463409925 ], "bases": [ { @@ -135006,7 +135010,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468233736, + "complete_object_locator": 6468237832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135015,12 +135019,12 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 6467023600, + "vtable_address": 6467027664, "methods": [ - 6458815808, - 6458824384, - 6458821152, - 6458815968, + 6458818000, + 6458826576, + 6458823344, + 6458818160, 6444873712, 6444697680 ], @@ -135070,7 +135074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468864056, + "complete_object_locator": 6468868152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -135079,16 +135083,16 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 6467023656, + "vtable_address": 6467027720, "methods": [ - 6458815692, - 6458822256, - 6458825216, - 6458820128, - 6458820992, - 6458823776, - 6458824064, - 6458823968 + 6458817884, + 6458824448, + 6458827408, + 6458822320, + 6458823184, + 6458825968, + 6458826256, + 6458826160 ], "bases": [ { @@ -135136,7 +135140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468864240, + "complete_object_locator": 6468868336, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -135145,9 +135149,9 @@ }, { "type_name": "CLateWarpGetUpdatedMatricesCallback", - "vtable_address": 6466877992, + "vtable_address": 6466882104, "methods": [ - 6456675920 + 6456677728 ], "bases": [ { @@ -135167,7 +135171,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468808816, + "complete_object_locator": 6468812912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135176,10 +135180,10 @@ }, { "type_name": "CLateWarpRenderer", - "vtable_address": 6466883336, + "vtable_address": 6466887448, "methods": [ - 6457005248, - 6456702480, + 6457007440, + 6456704288, 6443773360 ], "bases": [ @@ -135200,7 +135204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468811616, + "complete_object_locator": 6468815712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135209,7 +135213,7 @@ }, { "type_name": "CLeaderboardDataCache", - "vtable_address": 6464863136, + "vtable_address": 6464867216, "methods": [ 6445617888, 6445618832, @@ -135237,7 +135241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468292000, + "complete_object_locator": 6468296096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135246,7 +135250,7 @@ }, { "type_name": "CLeaderboardHandleCache", - "vtable_address": 6464865224, + "vtable_address": 6464869304, "methods": [ 6445624384, 6445624816, @@ -135274,7 +135278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468292416, + "complete_object_locator": 6468296512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135283,7 +135287,7 @@ }, { "type_name": "CLeaderboardPerUserDataCache", - "vtable_address": 6464863264, + "vtable_address": 6464867344, "methods": [ 6445619488, 6445623104, @@ -135311,7 +135315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468292208, + "complete_object_locator": 6468296304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135320,7 +135324,7 @@ }, { "type_name": "CLegacyCollisionData", - "vtable_address": 6464711000, + "vtable_address": 6464715080, "methods": [ 6445178160, 6445157136, @@ -135344,7 +135348,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468279688, + "complete_object_locator": 6468283784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135353,45 +135357,45 @@ }, { "type_name": "CLegacyGameUI", - "vtable_address": 6466344056, - "methods": [ - 6452481040, - 6452484464, - 6452496176, - 6452485856, - 6452500304, - 6452496160, - 6452485408, - 6452485776, - 6452496192, - 6452490768, - 6452485760, - 6452496080, - 6452500816, - 6452499024, - 6452482272, - 6452492064, - 6452492544, - 6452493456, - 6452492736, - 6452503536, - 6452499856, - 6452491136, - 6452499872, - 6452491152, - 6452491120, - 6452500288, - 6452476912, - 6452490656, - 6452481360, - 6452482000, - 6452483008, + "vtable_address": 6466348216, + "methods": [ + 6452482656, + 6452486080, + 6452497792, + 6452487472, + 6452501920, + 6452497776, + 6452487024, + 6452487392, + 6452497808, + 6452492384, + 6452487376, + 6452497696, + 6452502432, + 6452500640, 6452483888, - 6452483552, - 6452490752, - 6452490784, - 6452499888, - 6452499904 + 6452493680, + 6452494160, + 6452495072, + 6452494352, + 6452505152, + 6452501472, + 6452492752, + 6452501488, + 6452492768, + 6452492736, + 6452501904, + 6452478528, + 6452492272, + 6452482976, + 6452483616, + 6452484624, + 6452485504, + 6452485168, + 6452492368, + 6452492400, + 6452501504, + 6452501520 ], "bases": [ { @@ -135509,7 +135513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468678608, + "complete_object_locator": 6468682704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135518,7 +135522,7 @@ }, { "type_name": "CLightComponent", - "vtable_address": 6464458672, + "vtable_address": 6464462768, "methods": [ 6443986384, 6443969168, @@ -135556,7 +135560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468231664, + "complete_object_locator": 6468235760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -135565,7 +135569,7 @@ }, { "type_name": "CLightQueryGameSystem", - "vtable_address": 6464682040, + "vtable_address": 6464686120, "methods": [ 6443748576, 6443748592, @@ -135647,7 +135651,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468263824, + "complete_object_locator": 6468267920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135656,10 +135660,10 @@ }, { "type_name": "CLightStyle", - "vtable_address": 6466357192, + "vtable_address": 6466361352, "methods": [ 6443926160, - 6452549616 + 6452551232 ], "bases": [ { @@ -135679,7 +135683,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681032, + "complete_object_locator": 6468685128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135688,35 +135692,35 @@ }, { "type_name": "CLineGraph", - "vtable_address": 6466579328, + "vtable_address": 6466583456, "methods": [ 6443876544, - 6461535472, - 6453996704, - 6454003344, - 6461352784, - 6461546688, - 6461559344, + 6461537664, + 6453998464, + 6454005104, + 6461354976, + 6461548880, + 6461561536, 6443845056, - 6454024400, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6454026160, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -135729,12 +135733,12 @@ 6443913856, 6443821360, 6443848384, - 6454047824, - 6461505456, - 6461505088, - 6461526000, + 6454049584, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -135749,33 +135753,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453996560, - 6453975200, + 6461548896, + 6453998320, + 6453976960, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453976560, - 6453976320 + 6453978320, + 6453978080 ], "bases": [ { @@ -135837,7 +135841,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468729320, + "complete_object_locator": 6468733416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135846,10 +135850,10 @@ }, { "type_name": "CLoadingEntityListener", - "vtable_address": 6465814768, + "vtable_address": 6465818960, "methods": [ 6444481056, - 6449647392, + 6449648960, 6444481088, 6444481104 ], @@ -135871,7 +135875,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523656, + "complete_object_locator": 6468527752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135880,25 +135884,25 @@ }, { "type_name": "CLoadingSpawnGroup", - "vtable_address": 6465814392, - "methods": [ - 6449562800, - 6449583840, - 6449737296, - 6449594384, - 6449730000, - 6449626352, - 6449589472, - 6449589440, - 6449584896, - 6449536512, - 6449742560, - 6449709264, - 6449601776, - 6449692752, - 6449734880, - 6449738320, - 6449583856 + "vtable_address": 6465818584, + "methods": [ + 6449564368, + 6449585408, + 6449738864, + 6449595952, + 6449731568, + 6449627920, + 6449591040, + 6449591008, + 6449586464, + 6449538080, + 6449744128, + 6449710832, + 6449603344, + 6449694320, + 6449736448, + 6449739888, + 6449585424 ], "bases": [ { @@ -135918,7 +135922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523528, + "complete_object_locator": 6468527624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135927,17 +135931,17 @@ }, { "type_name": "CLobbyMenuSingleton", - "vtable_address": 6466287352, + "vtable_address": 6466291464, "methods": [ - 6463705588, - 6463705588, - 6452145648, - 6452279680 + 6463707780, + 6463707780, + 6452147232, + 6452281264 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468657864, + "complete_object_locator": 6468661960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135946,13 +135950,13 @@ }, { "type_name": "CLocalPlayerFilter", - "vtable_address": 6465855768, + "vtable_address": 6465859960, "methods": [ - 6449963776, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6449965344, + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -135986,7 +135990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533104, + "complete_object_locator": 6468537200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135995,16 +135999,16 @@ }, { "type_name": "CLocatorTarget", - "vtable_address": 6466064840, + "vtable_address": 6466069048, "methods": [ - 6451174480, - 6451189856, - 6451229936 + 6451176048, + 6451191424, + 6451231504 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468595312, + "complete_object_locator": 6468599408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -136013,32 +136017,32 @@ }, { "type_name": "CLogicRelay", - "vtable_address": 6465824832, + "vtable_address": 6465829024, "methods": [ 6445536880, - 6449498048, + 6449499616, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6449500848, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6449502416, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, - 6449545744, - 6450666432, - 6450654976, + 6449547312, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -136047,25 +136051,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449581984, + 6460060080, + 6449583552, 6445538288, - 6449720800, + 6449722368, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -136082,13 +136086,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -136096,39 +136100,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -136142,33 +136146,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, - 6449753424, - 6450415952, - 6451215568, + 6449754992, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -136196,34 +136200,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -136280,7 +136284,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468525792, + "complete_object_locator": 6468529888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -136289,32 +136293,32 @@ }, { "type_name": "CLogicalEntity", - "vtable_address": 6464543864, + "vtable_address": 6464547960, "methods": [ 6445466896, 6444333904, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -136323,25 +136327,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485216, + 6460060080, + 6450486784, 6445479872, 6444369968, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -136358,13 +136362,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -136372,39 +136376,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -136418,33 +136422,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -136472,34 +136476,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -136542,7 +136546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243008, + "complete_object_locator": 6468247104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -136551,13 +136555,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6465806864, + "vtable_address": 6465811056, "methods": [ - 6449417728, - 6449417952, - 6449418064, - 6449418544, - 6449418576 + 6449419296, + 6449419520, + 6449419632, + 6449420112, + 6449420144 ], "bases": [ { @@ -136577,7 +136581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468518160, + "complete_object_locator": 6468522256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -136586,17 +136590,17 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 6465826808, + "vtable_address": 6465831000, "methods": [ - 6449636896, - 6449640496, - 6449648448, - 6449648816, - 6449689968, - 6449599760, - 6449510784, - 6449626336, - 6449498112 + 6449638464, + 6449642064, + 6449650016, + 6449650384, + 6449691536, + 6449601328, + 6449512352, + 6449627904, + 6449499680 ], "bases": [ { @@ -136644,7 +136648,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526016, + "complete_object_locator": 6468530112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -136653,16 +136657,16 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 6465826888, + "vtable_address": 6465831080, "methods": [ - 6449599488, - 6449581568, - 6449683616, - 6449626320, - 6449728208, - 6449625616, - 6449626400, - 6449589296 + 6449601056, + 6449583136, + 6449685184, + 6449627888, + 6449729776, + 6449627184, + 6449627968, + 6449590864 ], "bases": [ { @@ -136710,7 +136714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526200, + "complete_object_locator": 6468530296, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -136719,10 +136723,10 @@ }, { "type_name": "CMapAnNodeManager", - "vtable_address": 6466167008, + "vtable_address": 6466171168, "methods": [ - 6451718240, - 6451723536 + 6451719824, + 6451725120 ], "bases": [ { @@ -136784,7 +136788,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631744, + "complete_object_locator": 6468635840, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -136793,7 +136797,7 @@ }, { "type_name": "CMapAnNodeManager", - "vtable_address": 6466167032, + "vtable_address": 6466171192, "methods": [ 6443748576, 6443748592, @@ -136803,11 +136807,11 @@ 6443748656, 6443748672, 6443748688, - 6451723376, + 6451724960, 6443748720, 6443748736, 6443748752, - 6451723504, + 6451725088, 6443748784, 6443748800, 6443748816, @@ -136822,7 +136826,7 @@ 6443748960, 6443748976, 6443748992, - 6451718048, + 6451719632, 6443749024, 6443749040, 6443749056, @@ -136851,11 +136855,11 @@ 6443749424, 6443749440, 6443749456, - 6451723344, + 6451724928, 6443749488, - 6451723328, - 6451723288, - 6451723312 + 6451724912, + 6451724872, + 6451724896 ], "bases": [ { @@ -136917,7 +136921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631896, + "complete_object_locator": 6468635992, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -136926,10 +136930,10 @@ }, { "type_name": "CMapAnNodeScreenSpaceText", - "vtable_address": 6466201520, + "vtable_address": 6466205680, "methods": [ - 6451925360, - 6451849440 + 6451926944, + 6451851024 ], "bases": [ { @@ -136949,7 +136953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636936, + "complete_object_locator": 6468641032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -136958,13 +136962,13 @@ }, { "type_name": "CMapAnnotationGrenade", - "vtable_address": 6466201280, + "vtable_address": 6466205440, "methods": [ - 6451774176, - 6451940384, - 6451903216, - 6451957856, - 6451884688 + 6451775760, + 6451941968, + 6451904800, + 6451959440, + 6451886272 ], "bases": [ { @@ -136984,7 +136988,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468637184, + "complete_object_locator": 6468641280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -136993,13 +136997,13 @@ }, { "type_name": "CMapAnnotationLine", - "vtable_address": 6466201424, + "vtable_address": 6466205584, "methods": [ - 6451774368, - 6451940704, - 6451903552, - 6451958144, - 6451886096 + 6451775952, + 6451942288, + 6451905136, + 6451959728, + 6451887680 ], "bases": [ { @@ -137019,7 +137023,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468637568, + "complete_object_locator": 6468641664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137028,18 +137032,18 @@ }, { "type_name": "CMapAnnotationNode", - "vtable_address": 6466201232, + "vtable_address": 6466205392, "methods": [ - 6451774432, - 6451940704, - 6451903552, - 6451958288, - 6451886192 + 6451776016, + 6451942288, + 6451905136, + 6451959872, + 6451887776 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468637064, + "complete_object_locator": 6468641160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137048,13 +137052,13 @@ }, { "type_name": "CMapAnnotationPosition", - "vtable_address": 6466201328, + "vtable_address": 6466205488, "methods": [ - 6451774496, - 6451940704, - 6451903552, - 6451958432, - 6451886272 + 6451776080, + 6451942288, + 6451905136, + 6451960016, + 6451887856 ], "bases": [ { @@ -137074,7 +137078,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468637312, + "complete_object_locator": 6468641408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137083,13 +137087,13 @@ }, { "type_name": "CMapAnnotationSpot", - "vtable_address": 6466201472, + "vtable_address": 6466205632, "methods": [ - 6451774560, - 6451940704, - 6451903552, - 6451958576, - 6451886944 + 6451776144, + 6451942288, + 6451905136, + 6451960160, + 6451888528 ], "bases": [ { @@ -137109,7 +137113,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468637696, + "complete_object_locator": 6468641792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137118,13 +137122,13 @@ }, { "type_name": "CMapAnnotationText", - "vtable_address": 6466201376, + "vtable_address": 6466205536, "methods": [ - 6451774624, - 6451940704, - 6451903552, - 6451958720, - 6451887904 + 6451776208, + 6451942288, + 6451905136, + 6451960304, + 6451889488 ], "bases": [ { @@ -137144,7 +137148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468637440, + "complete_object_locator": 6468641536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137153,31 +137157,31 @@ }, { "type_name": "CMapInfo", - "vtable_address": 6466327544, + "vtable_address": 6466331704, "methods": [ 6444163808, - 6452351184, + 6452352800, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6452413552, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6452422064, - 6450580640, + 6450411680, + 6452415168, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6452423680, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -137187,25 +137191,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452382144, - 6452399440, - 6452406224, + 6460060080, + 6452383760, + 6452401056, + 6452407840, 6443799760, 6444159920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -137222,13 +137226,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -137236,39 +137240,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -137282,33 +137286,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -137336,34 +137340,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -137420,7 +137424,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468675976, + "complete_object_locator": 6468680072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137429,10 +137433,10 @@ }, { "type_name": "CMapLoadEntityFilter", - "vtable_address": 6465806688, + "vtable_address": 6465810880, "methods": [ - 6449417488, - 6449417056 + 6449419056, + 6449418624 ], "bases": [ { @@ -137452,7 +137456,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468518288, + "complete_object_locator": 6468522384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137461,35 +137465,35 @@ }, { "type_name": "CMapSpiderGraph", - "vtable_address": 6466581384, + "vtable_address": 6466585512, "methods": [ 6443876544, - 6461535472, - 6453996720, - 6454003392, - 6454030800, - 6461546688, - 6461559344, + 6461537664, + 6453998480, + 6454005152, + 6454032560, + 6461548880, + 6461561536, 6443845056, - 6454024640, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6454026400, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453976336, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453978096, 6443844992, 6443848064, 6443844976, @@ -137502,12 +137506,12 @@ 6443913856, 6443821360, 6443848384, - 6454048064, - 6461505456, - 6461505088, - 6461526000, + 6454049824, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -137517,39 +137521,39 @@ 6443847696, 6443847680, 6443848160, - 6454026960, - 6454030656, + 6454028720, + 6454032416, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453996576, - 6453975456, + 6461548896, + 6453998336, + 6453977216, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6454028352, - 6453985456, - 6454023184 + 6454030112, + 6453987216, + 6454024944 ], "bases": [ { @@ -137597,7 +137601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468729728, + "complete_object_locator": 6468733824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137606,10 +137610,10 @@ }, { "type_name": "CMaterialAttributeTagListener", - "vtable_address": 6465717624, + "vtable_address": 6465721816, "methods": [ - 6448809328, - 6448969808 + 6448810896, + 6448971376 ], "bases": [ { @@ -137629,7 +137633,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468497872, + "complete_object_locator": 6468501968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137638,18 +137642,18 @@ }, { "type_name": "CModelState", - "vtable_address": 6465878360, + "vtable_address": 6465882552, "methods": [ - 6450189632, - 6450231680, - 6450231856, - 6450231776, - 6450256608 + 6450191200, + 6450233248, + 6450233424, + 6450233344, + 6450258176 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468548928, + "complete_object_locator": 6468553024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137658,9 +137662,9 @@ }, { "type_name": "CModuleMetadataProvider_ResourceManifests", - "vtable_address": 6467860664, + "vtable_address": 6467864760, "methods": [ - 6463570304 + 6463572496 ], "bases": [ { @@ -137680,7 +137684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468995016, + "complete_object_locator": 6468999112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137689,11 +137693,11 @@ }, { "type_name": "CMouseTraceCoordReadback", - "vtable_address": 6466884168, + "vtable_address": 6466888280, "methods": [ - 6456702528, - 6453280608, - 6456962640 + 6456704336, + 6453282368, + 6456964832 ], "bases": [ { @@ -137727,7 +137731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468812904, + "complete_object_locator": 6468817000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137736,10 +137740,10 @@ }, { "type_name": "CMouseTraceCoordReadbackRenderer", - "vtable_address": 6466884200, + "vtable_address": 6466888312, "methods": [ - 6457005984, - 6456702576, + 6457008176, + 6456704384, 6443773360 ], "bases": [ @@ -137760,7 +137764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813040, + "complete_object_locator": 6468817136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137769,17 +137773,17 @@ }, { "type_name": "CMouthSystem", - "vtable_address": 6466059696, - "methods": [ - 6451163152, - 6451163536, - 6451163664, - 6451163728, - 6451163792, - 6451163824, - 6451163856, - 6451165200, - 6451164000 + "vtable_address": 6466063920, + "methods": [ + 6451164720, + 6451165104, + 6451165232, + 6451165296, + 6451165360, + 6451165392, + 6451165424, + 6451166768, + 6451165568 ], "bases": [ { @@ -137799,7 +137803,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468593272, + "complete_object_locator": 6468597368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137808,25 +137812,25 @@ }, { "type_name": "CMsgAccountDetails", - "vtable_address": 6464972224, + "vtable_address": 6464976320, "methods": [ - 6446234192, - 6457189536, - 6446202560, + 6446234576, + 6457191728, 6446202976, - 6446203088, - 6457189584, - 6457186560, - 6446203296, - 6446210720, - 6446204512, + 6446204448, + 6446205328, + 6457191776, + 6457188752, + 6446205344, + 6446212928, + 6446208064, 6443742160, - 6446208048, - 6457190896, - 6457192720, - 6446212560, - 6446212864, - 6446212848 + 6446212048, + 6457193088, + 6457194912, + 6446212976, + 6446213424, + 6446213408 ], "bases": [ { @@ -137860,7 +137864,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308144, + "complete_object_locator": 6468312376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137869,25 +137873,25 @@ }, { "type_name": "CMsgAcknowledgeRentalExpiration", - "vtable_address": 6464989944, - "methods": [ - 6446408368, - 6457189536, - 6446403008, - 6446403152, - 6446403184, - 6457189584, - 6457186560, - 6446403200, - 6446403808, - 6446403248, - 6443742160, + "vtable_address": 6465005880, + "methods": [ + 6446408848, + 6457191728, + 6446403392, + 6446403536, + 6446403568, + 6457191776, + 6457188752, + 6446403584, + 6446404192, 6446403632, - 6457190896, - 6457192720, - 6446403824, - 6446404304, - 6446404288 + 6443742160, + 6446404016, + 6457193088, + 6457194912, + 6446404352, + 6446404928, + 6446404896 ], "bases": [ { @@ -137921,7 +137925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468315648, + "complete_object_locator": 6468319880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137930,25 +137934,25 @@ }, { "type_name": "CMsgAdjustEquipSlot", - "vtable_address": 6464978000, - "methods": [ - 6446305136, - 6457189536, - 6446294160, - 6446294336, - 6446294384, - 6457189584, - 6457186560, - 6446294400, - 6446295808, - 6446294528, + "vtable_address": 6464982112, + "methods": [ + 6446305600, + 6457191728, + 6446294544, + 6446294720, + 6446294768, + 6457191776, + 6457188752, + 6446294784, + 6446296192, + 6446294912, 6443742160, - 6446295424, - 6457190896, - 6457192720, - 6446297584, - 6446298928, - 6446298912 + 6446295808, + 6457193088, + 6457194912, + 6446297968, + 6446299328, + 6446299296 ], "bases": [ { @@ -137982,7 +137986,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468315784, + "complete_object_locator": 6468320016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137991,25 +137995,25 @@ }, { "type_name": "CMsgAdjustEquipSlots", - "vtable_address": 6464981328, + "vtable_address": 6464985568, "methods": [ - 6446341504, - 6457189536, - 6446319152, - 6446319760, - 6446320160, - 6457189584, - 6457186560, - 6446320224, - 6446321792, - 6446320640, - 6443742160, - 6446321536, - 6457190896, - 6457192720, - 6446322064, - 6446322128, - 6446322112 + 6446342064, + 6457191728, + 6446319904, + 6446320384, + 6446320544, + 6457191776, + 6457188752, + 6446320608, + 6446322240, + 6446321104, + 6443742160, + 6446321984, + 6457193088, + 6457194912, + 6446322448, + 6446322528, + 6446322512 ], "bases": [ { @@ -138043,7 +138047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468315920, + "complete_object_locator": 6468320152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138052,27 +138056,29 @@ }, { "type_name": "CMsgApplyEggEssence", - "vtable_address": 6464921864, - "methods": [ - 6445994624, - 6457189536, - 6445985824, - 6445986000, - 6445986032, - 6457189584, - 6457186560, - 6445986048, - 6445987088, - 6445986288, - 6443742160, - 6445986784, - 6457190896, - 6457192720, - 6445987104, - 6445987888, + "vtable_address": 6464925960, + "methods": [ + 6445995328, + 6457191728, + 6445986208, + 6445986528, + 6445986560, + 6457191776, + 6457188752, + 6445986576, + 6445987472, + 6445986672, + 6443742160, + 6445987168, + 6457193088, + 6457194912, 6445987504, - 6457187520, - 6445991472 + 6445989664, + 6445988960, + 6457189712, + 6445991856, + 6457189712, + 6445993568 ], "bases": [ { @@ -138106,7 +138112,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468316056, + "complete_object_locator": 6468320288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138115,28 +138121,28 @@ }, { "type_name": "CMsgApplyPennantUpgrade", - "vtable_address": 6464909944, - "methods": [ - 6445980096, - 6457189536, - 6445962048, - 6445965072, - 6445965104, - 6457189584, - 6457186560, - 6445965120, - 6445966256, - 6445965440, - 6443742160, - 6445965952, - 6457190896, - 6457192720, - 6445966480, - 6445967328, - 6445967312, - 6457187520, - 6445975920, - 6457187520, + "vtable_address": 6464914040, + "methods": [ + 6445980704, + 6457191728, + 6445965264, + 6445965680, + 6445965712, + 6457191776, + 6457188752, + 6445965728, + 6445966704, + 6445965904, + 6443742160, + 6445966400, + 6457193088, + 6457194912, + 6445967200, + 6445967952, + 6445967920, + 6457189712, + 6445976464, + 6457189712, 6445977280 ], "bases": [ @@ -138171,7 +138177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468316192, + "complete_object_locator": 6468320424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138180,29 +138186,27 @@ }, { "type_name": "CMsgApplyStatTrakSwap", - "vtable_address": 6464904944, - "methods": [ - 6445934048, - 6457189536, - 6445926080, - 6445926672, - 6445926736, - 6457189584, - 6457186560, - 6445926832, - 6445928048, - 6445927024, - 6443742160, - 6445927632, - 6457190896, - 6457192720, - 6445928064, - 6445928288, - 6445928272, - 6457187520, - 6445929888, - 6457187520, - 6445929808 + "vtable_address": 6464909056, + "methods": [ + 6445936080, + 6457191728, + 6445926496, + 6445927216, + 6445927264, + 6457191776, + 6457188752, + 6445927280, + 6445928432, + 6445927408, + 6443742160, + 6445928016, + 6457193088, + 6457194912, + 6445928640, + 6445928672, + 6445928656, + 6457189712, + 6445930416 ], "bases": [ { @@ -138236,7 +138240,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468316328, + "complete_object_locator": 6468320560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138245,25 +138249,27 @@ }, { "type_name": "CMsgApplySticker", - "vtable_address": 6464886136, + "vtable_address": 6464890520, "methods": [ - 6445899600, - 6457189536, - 6445884944, - 6445886336, - 6445886400, - 6457189584, - 6457186560, - 6445886432, - 6445888528, - 6445886768, + 6445900528, + 6457191728, + 6445886064, + 6445886816, + 6445886880, + 6457191776, + 6457188752, + 6445886896, + 6445888912, + 6445887152, 6443742160, - 6445887776, - 6457190896, - 6457192720, - 6445888864, - 6445890016, - 6445890000 + 6445888160, + 6457193088, + 6457194912, + 6445889248, + 6445890400, + 6445890384, + 6457189712, + 6445900160 ], "bases": [ { @@ -138297,7 +138303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468316464, + "complete_object_locator": 6468320696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138306,29 +138312,27 @@ }, { "type_name": "CMsgApplyStrangePart", - "vtable_address": 6464906416, + "vtable_address": 6464910528, "methods": [ - 6445952672, - 6457189536, - 6445946272, - 6445946512, - 6445946544, - 6457189584, - 6457186560, - 6445946560, - 6445947456, + 6445953152, + 6457191728, 6445946656, - 6443742160, - 6445947152, - 6457190896, - 6457192720, - 6445947472, - 6445948144, - 6445948128, - 6457187520, - 6445950384, - 6457187520, - 6445951840 + 6445946896, + 6445946928, + 6457191776, + 6457188752, + 6445946944, + 6445947840, + 6445947040, + 6443742160, + 6445947536, + 6457193088, + 6457194912, + 6445948080, + 6445948912, + 6445948896, + 6457189712, + 6445952224 ], "bases": [ { @@ -138362,7 +138366,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468316600, + "complete_object_locator": 6468320832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138371,27 +138375,27 @@ }, { "type_name": "CMsgCStrike15Welcome", - "vtable_address": 6464880416, - "methods": [ - 6445831600, - 6457189536, - 6445823520, - 6445823696, - 6445823744, - 6457189584, - 6457186560, - 6445823760, - 6445825920, - 6445824032, + "vtable_address": 6464884512, + "methods": [ + 6445831984, + 6457191728, + 6445823904, + 6445824080, + 6445824128, + 6457191776, + 6457188752, + 6445824144, + 6445826304, + 6445824416, 6443742160, - 6445825136, - 6457190896, - 6457192720, - 6445826096, - 6445826160, - 6445826144, - 6457187520, - 6445830464 + 6445825520, + 6457193088, + 6457194912, + 6445826480, + 6445826544, + 6445826528, + 6457189712, + 6445830848 ], "bases": [ { @@ -138425,7 +138429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468328208, + "complete_object_locator": 6468332440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138434,27 +138438,27 @@ }, { "type_name": "CMsgCasketItem", - "vtable_address": 6464928472, + "vtable_address": 6464932568, "methods": [ - 6446062000, - 6457189536, - 6446043536, - 6446043712, - 6446043760, - 6457189584, - 6457186560, - 6446043776, - 6446044800, - 6446043888, + 6446062384, + 6457191728, + 6446043920, + 6446044096, + 6446044144, + 6457191776, + 6457188752, + 6446044160, + 6446045168, + 6446044256, 6443742160, - 6446044384, - 6457190896, - 6457192720, - 6446046752, - 6446052096, - 6446052064, - 6457187520, - 6446058976 + 6446044752, + 6457193088, + 6457194912, + 6446046112, + 6446050896, + 6446050864, + 6457189712, + 6446059360 ], "bases": [ { @@ -138488,7 +138492,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298424, + "complete_object_locator": 6468302656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138497,25 +138501,25 @@ }, { "type_name": "CMsgClearDecalsForEntityEvent", - "vtable_address": 6465070184, + "vtable_address": 6465074280, "methods": [ - 6446620816, - 6457189536, + 6446621200, + 6457191728, 6444865552, - 6446616496, - 6446616544, - 6457189584, - 6457186560, - 6446616576, + 6446616880, + 6446616928, + 6457191776, + 6457188752, + 6446616944, 6444784752, - 6446616736, + 6446617120, 6443742160, - 6446617360, - 6457190896, - 6457192720, - 6446618368, - 6446618832, - 6446618816 + 6446617696, + 6457193088, + 6457194912, + 6446618752, + 6446619216, + 6446619200 ], "bases": [ { @@ -138549,7 +138553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468304920, + "complete_object_locator": 6468309152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138558,25 +138562,25 @@ }, { "type_name": "CMsgClearEntityDecalsEvent", - "vtable_address": 6465032808, + "vtable_address": 6465036904, "methods": [ - 6446608672, - 6457189536, + 6446608192, + 6457191728, 6444865568, - 6446594608, - 6446594640, - 6457189584, - 6457186560, - 6446594656, + 6446594848, + 6446594880, + 6457191776, + 6457188752, + 6446594896, 6444784768, - 6446594720, + 6446594944, 6443742160, - 6446595200, - 6457190896, - 6457192720, - 6446595904, - 6446597280, - 6446597264 + 6446595552, + 6457193088, + 6457194912, + 6446596256, + 6446597664, + 6446597648 ], "bases": [ { @@ -138610,7 +138614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468304960, + "complete_object_locator": 6468309192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138619,27 +138623,27 @@ }, { "type_name": "CMsgClearWorldDecalsEvent", - "vtable_address": 6465028176, + "vtable_address": 6465032256, "methods": [ - 6446585872, - 6457189536, + 6446585728, + 6457191728, 6444865584, - 6446578128, - 6446578160, - 6457189584, - 6457186560, - 6446578352, + 6446578448, + 6446578544, + 6457191776, + 6457188752, + 6446578560, 6444784784, - 6446578480, - 6443742160, 6446578864, - 6457190896, - 6457192720, - 6446579056, - 6446579936, - 6446579328, - 6457187520, - 6446582288 + 6443742160, + 6446579248, + 6457193088, + 6457194912, + 6446579440, + 6446579728, + 6446579712, + 6457189712, + 6446580832 ], "bases": [ { @@ -138673,7 +138677,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305000, + "complete_object_locator": 6468309232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138682,25 +138686,27 @@ }, { "type_name": "CMsgClientHello", - "vtable_address": 6465009848, + "vtable_address": 6465013944, "methods": [ - 6446504640, - 6457189536, - 6446461872, - 6446463536, - 6446464368, - 6457189584, - 6457186560, - 6446464384, - 6446467216, - 6446464992, + 6446505040, + 6457191728, + 6446462256, + 6446463920, + 6446464752, + 6457191776, + 6457188752, + 6446464784, + 6446467600, + 6446465456, 6443742160, - 6446466288, - 6457190896, - 6457192720, - 6446467376, - 6446467680, - 6446467664 + 6446466672, + 6457193088, + 6457194912, + 6446467952, + 6446468064, + 6446468048, + 6457391152, + 6457391232 ], "bases": [ { @@ -138734,7 +138740,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308280, + "complete_object_locator": 6468312512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138743,25 +138749,25 @@ }, { "type_name": "CMsgClientWelcome", - "vtable_address": 6465069336, - "methods": [ - 6446619904, - 6457189536, - 6446560720, - 6446562528, - 6446563024, - 6457189584, - 6457186560, - 6446563040, - 6446566016, - 6446563936, - 6443742160, - 6446565216, - 6457190896, - 6457192720, - 6446566928, - 6446568192, - 6446568176 + "vtable_address": 6465073432, + "methods": [ + 6446620592, + 6457191728, + 6446561104, + 6446562928, + 6446563424, + 6457191776, + 6457188752, + 6446563440, + 6446566848, + 6446564320, + 6443742160, + 6446565888, + 6457193088, + 6457194912, + 6446567952, + 6446568592, + 6446568576 ], "bases": [ { @@ -138795,7 +138801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308416, + "complete_object_locator": 6468312648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138804,25 +138810,25 @@ }, { "type_name": "CMsgClientWelcome_Location", - "vtable_address": 6465025328, + "vtable_address": 6465029424, "methods": [ - 6446556096, - 6457189536, - 6446539856, - 6446540064, - 6446540160, - 6457189584, - 6457186560, - 6446540176, - 6446541376, - 6446540416, + 6446556928, + 6457191728, + 6446540256, + 6446540592, + 6446540704, + 6457191776, + 6457188752, + 6446540864, + 6446542304, + 6446541200, 6443742160, - 6446541152, - 6457190896, - 6457192720, - 6446542576, - 6446547104, - 6446547088 + 6446542096, + 6457193088, + 6457194912, + 6446545008, + 6446548800, + 6446548784 ], "bases": [ { @@ -138856,7 +138862,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308552, + "complete_object_locator": 6468312784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138865,25 +138871,25 @@ }, { "type_name": "CMsgConVarValue", - "vtable_address": 6464974944, - "methods": [ - 6446262000, - 6457189536, - 6446250976, - 6446252448, - 6446252672, - 6457189584, - 6457186560, - 6446252704, - 6446253392, - 6446252832, - 6443742160, - 6446253232, - 6457190896, - 6457192720, - 6446253488, - 6446253600, - 6446253584 + "vtable_address": 6464979040, + "methods": [ + 6446262384, + 6457191728, + 6446252256, + 6446252976, + 6446253072, + 6457191776, + 6457188752, + 6446253088, + 6446253856, + 6446253248, + 6443742160, + 6446253696, + 6457193088, + 6457194912, + 6446253952, + 6446254000, + 6446253984 ], "bases": [ { @@ -138917,7 +138923,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468316736, + "complete_object_locator": 6468320968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138926,25 +138932,25 @@ }, { "type_name": "CMsgConnectionStatus", - "vtable_address": 6465074376, + "vtable_address": 6465078472, "methods": [ - 6446640720, - 6457189536, - 6446622528, - 6446623120, - 6446623264, - 6457189584, - 6457186560, - 6446623328, - 6446626112, - 6446623760, + 6446641264, + 6457191728, + 6446623168, + 6446623520, + 6446623664, + 6457191776, + 6457188752, + 6446623712, + 6446626576, + 6446624144, 6443742160, - 6446625440, - 6457190896, - 6457192720, - 6446627856, - 6446630224, - 6446630208 + 6446625904, + 6457193088, + 6457194912, + 6446628240, + 6446630640, + 6446630624 ], "bases": [ { @@ -138978,7 +138984,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308688, + "complete_object_locator": 6468312920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -138987,27 +138993,27 @@ }, { "type_name": "CMsgConsumableExhausted", - "vtable_address": 6464984984, - "methods": [ - 6446382080, - 6457189536, - 6446368240, - 6446368432, - 6446368480, - 6457189584, - 6457186560, - 6446368496, - 6446369120, - 6446368544, - 6443742160, - 6446368944, - 6457190896, - 6457192720, - 6446370528, - 6446373296, - 6446373264, - 6457187520, - 6446378896 + "vtable_address": 6464989080, + "methods": [ + 6446382928, + 6457191728, + 6446368752, + 6446368832, + 6446368864, + 6457191776, + 6457188752, + 6446368896, + 6446370000, + 6446369200, + 6443742160, + 6446369824, + 6457193088, + 6457194912, + 6446372208, + 6446375072, + 6446375008, + 6457189712, + 6446377536 ], "bases": [ { @@ -139041,7 +139047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468316872, + "complete_object_locator": 6468321104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139050,31 +139056,31 @@ }, { "type_name": "CMsgCsgoSteamUserStatChange", - "vtable_address": 6465033112, + "vtable_address": 6465037208, "methods": [ - 6446612624, - 6457189536, - 6446594704, - 6446595824, - 6446595888, - 6457189584, - 6457186560, - 6446596096, - 6446597232, - 6446596224, + 6446612656, + 6457191728, + 6446595472, + 6446596208, + 6446596288, + 6457191776, + 6457188752, + 6446596480, + 6446597616, + 6446596608, 6443742160, - 6446596896, - 6457190896, - 6457192720, - 6446597344, - 6446597488, - 6446597472, - 6457187520, - 6446609184, - 6457187520, - 6446611024, - 6457187520, - 6446612880 + 6446597280, + 6457193088, + 6457194912, + 6446597728, + 6446597872, + 6446597856, + 6457189712, + 6446609568, + 6457189712, + 6446611408, + 6457189712, + 6446613168 ], "bases": [ { @@ -139108,7 +139114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468328344, + "complete_object_locator": 6468332576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139117,25 +139123,25 @@ }, { "type_name": "CMsgDevNewItemRequest", - "vtable_address": 6464881280, - "methods": [ - 6445845408, - 6457189536, - 6445834464, - 6445835504, - 6445835568, - 6457189584, - 6457186560, - 6445835584, - 6445836272, - 6445835680, + "vtable_address": 6464885376, + "methods": [ + 6445846144, + 6457191728, + 6445835664, + 6445835888, + 6445835952, + 6457191776, + 6457188752, + 6445835968, + 6445836720, + 6445836144, 6443742160, - 6445836112, - 6457190896, - 6457192720, 6445836560, - 6445837984, - 6445837456 + 6457193088, + 6457194912, + 6445836960, + 6445838608, + 6445838256 ], "bases": [ { @@ -139169,7 +139175,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317008, + "complete_object_locator": 6468321240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139178,25 +139184,25 @@ }, { "type_name": "CMsgEffectData", - "vtable_address": 6465130640, - "methods": [ - 6447059696, - 6457189536, - 6447040272, - 6447042448, - 6447042768, - 6457189584, - 6457186560, - 6447042784, - 6447046784, - 6447043648, - 6443742160, - 6447045520, - 6457190896, - 6457192720, - 6447046880, - 6447046912, - 6447046896 + "vtable_address": 6465134720, + "methods": [ + 6447059920, + 6457191728, + 6447040496, + 6447042688, + 6447042992, + 6457191776, + 6457188752, + 6447043008, + 6447047024, + 6447043872, + 6443742160, + 6447045744, + 6457193088, + 6457194912, + 6447047104, + 6447047136, + 6447047120 ], "bases": [ { @@ -139230,7 +139236,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468400616, + "complete_object_locator": 6468404712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139239,25 +139245,25 @@ }, { "type_name": "CMsgGCBannedWord", - "vtable_address": 6464901112, - "methods": [ - 6445920416, - 6457189536, - 6445911360, - 6445911536, - 6445911760, - 6457189584, - 6457186560, - 6445911920, - 6445913312, - 6445912208, + "vtable_address": 6464905352, + "methods": [ + 6445923312, + 6457191728, + 6445911744, + 6445912352, + 6445912576, + 6457191776, + 6457188752, + 6445912592, + 6445913696, + 6445912736, 6443742160, - 6445912992, - 6457190896, - 6457192720, - 6445913328, - 6445913360, - 6445913344 + 6445913376, + 6457193088, + 6457194912, + 6445913712, + 6445913744, + 6445913728 ], "bases": [ { @@ -139291,7 +139297,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317144, + "complete_object_locator": 6468321376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139300,25 +139306,25 @@ }, { "type_name": "CMsgGCBannedWordListRequest", - "vtable_address": 6464883456, - "methods": [ - 6445865968, - 6457189536, - 6445858080, - 6445859312, - 6445859632, - 6457189584, - 6457186560, - 6445859824, - 6445860736, - 6445859936, - 6443742160, + "vtable_address": 6464887552, + "methods": [ + 6445867344, + 6457191728, + 6445858864, + 6445860176, + 6445860208, + 6457191776, + 6457188752, + 6445860224, + 6445861568, 6445860464, - 6457190896, - 6457192720, + 6443742160, 6445861296, - 6445863920, - 6445863872 + 6457193088, + 6457194912, + 6445863520, + 6445864400, + 6445864368 ], "bases": [ { @@ -139352,7 +139358,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317280, + "complete_object_locator": 6468321512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139361,25 +139367,25 @@ }, { "type_name": "CMsgGCBannedWordListResponse", - "vtable_address": 6464906984, + "vtable_address": 6464911240, "methods": [ - 6445954624, - 6457189536, - 6445929696, - 6445930112, - 6445930336, - 6457189584, - 6457186560, - 6445930448, - 6445932304, - 6445931280, + 6445955328, + 6457191728, + 6445930176, + 6445931104, + 6445931312, + 6457191776, + 6457188752, + 6445931328, + 6445932720, + 6445931952, 6443742160, - 6445932064, - 6457190896, - 6457192720, - 6445932384, - 6445935744, - 6445934336 + 6445932480, + 6457193088, + 6457194912, + 6445933728, + 6445938144, + 6445937520 ], "bases": [ { @@ -139413,7 +139419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317416, + "complete_object_locator": 6468321648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139422,27 +139428,29 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats", - "vtable_address": 6465007224, + "vtable_address": 6465011304, "methods": [ - 6446467472, - 6457189536, - 6446437872, - 6446438432, - 6446438720, - 6457189584, - 6457186560, - 6446438736, - 6446441056, - 6446439792, + 6446467760, + 6457191728, + 6446438256, + 6446438816, + 6446439104, + 6457191776, + 6457188752, + 6446439120, + 6446441440, + 6446440176, 6443742160, - 6446440752, - 6457190896, - 6457192720, - 6446441296, - 6446441424, - 6446441408, - 6457187520, - 6446463120 + 6446441136, + 6457193088, + 6457194912, + 6446441680, + 6446441808, + 6446441792, + 6457189712, + 6446462048, + 6457189712, + 6446463504 ], "bases": [ { @@ -139476,7 +139484,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468328480, + "complete_object_locator": 6468332712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139485,31 +139493,29 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch", - "vtable_address": 6465004008, - "methods": [ - 6446426960, - 6457189536, - 6446406080, - 6446407152, - 6446407456, - 6457189584, - 6457186560, - 6446407472, - 6446408352, - 6446407680, - 6443742160, - 6446408176, - 6457190896, - 6457192720, - 6446408752, - 6446408784, - 6446408768, - 6457187520, - 6446425184, - 6457187520, - 6446425824, - 6457187520, - 6446427152 + "vtable_address": 6465008104, + "methods": [ + 6446427328, + 6457191728, + 6446406464, + 6446407536, + 6446407840, + 6457191776, + 6457188752, + 6446407856, + 6446408736, + 6446408064, + 6443742160, + 6446408560, + 6457193088, + 6457194912, + 6446408832, + 6446409168, + 6446409152, + 6457189712, + 6446425568, + 6457189712, + 6446426176 ], "bases": [ { @@ -139543,7 +139549,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468328616, + "complete_object_locator": 6468332848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139552,35 +139558,35 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsRange", - "vtable_address": 6464987520, - "methods": [ - 6446401424, - 6457189536, - 6446385936, - 6446386048, - 6446386096, - 6457189584, - 6457186560, - 6446386112, - 6446387472, - 6446386208, - 6443742160, - 6446387104, - 6457190896, - 6457192720, - 6446388768, - 6446389600, - 6446389584, - 6457187520, - 6446392000, - 6457187520, - 6446392080, - 6457187520, - 6446392304, - 6457187520, - 6446396704, - 6457187520, - 6446397312 + "vtable_address": 6464991616, + "methods": [ + 6446401648, + 6457191728, + 6446386320, + 6446386416, + 6446386464, + 6457191776, + 6457188752, + 6446386480, + 6446387520, + 6446386592, + 6443742160, + 6446387200, + 6457193088, + 6457194912, + 6446387888, + 6446389968, + 6446389952, + 6457189712, + 6446392400, + 6457189712, + 6446393024, + 6457189712, + 6446393872, + 6457189712, + 6446396032, + 6457189712, + 6446396352 ], "bases": [ { @@ -139614,7 +139620,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468328752, + "complete_object_locator": 6468332984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139623,31 +139629,31 @@ }, { "type_name": "CMsgGCCStrike15_GotvSyncPacket", - "vtable_address": 6465027824, - "methods": [ - 6446578176, - 6457189536, - 6446569184, - 6446569680, - 6446569792, - 6457189584, - 6457186560, - 6446569808, - 6446570560, - 6446569888, - 6443742160, - 6446570448, - 6457190896, - 6457192720, - 6446571744, - 6446572672, - 6446572656, - 6457187520, - 6446575568, - 6457187520, - 6446578016, - 6457187520, - 6446579072 + "vtable_address": 6465031920, + "methods": [ + 6446578608, + 6457191728, + 6446569568, + 6446570064, + 6446570176, + 6457191776, + 6457188752, + 6446570192, + 6446570944, + 6446570272, + 6443742160, + 6446570832, + 6457193088, + 6457194912, + 6446572128, + 6446573056, + 6446573040, + 6457189712, + 6446575952, + 6457189712, + 6446578384, + 6457189712, + 6446579456 ], "bases": [ { @@ -139681,7 +139687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468328888, + "complete_object_locator": 6468333120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139690,25 +139696,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings", - "vtable_address": 6464910120, + "vtable_address": 6464914360, "methods": [ - 6445982880, - 6457189536, - 6445949024, - 6445950576, - 6445950720, - 6457189584, - 6457186560, - 6445950736, - 6445951824, - 6445951008, + 6445983264, + 6457191728, + 6445949408, + 6445950960, + 6445951104, + 6457191776, + 6457188752, + 6445951120, + 6445952208, + 6445951392, 6443742160, - 6445951680, - 6457190896, - 6457192720, - 6445952096, - 6445952832, - 6445952816 + 6445952064, + 6457193088, + 6457194912, + 6445952480, + 6445953072, + 6445953056, + 6457189712, + 6445980400 ], "bases": [ { @@ -139742,7 +139750,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329024, + "complete_object_locator": 6468333256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139751,27 +139759,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings_Setting", - "vtable_address": 6464905472, + "vtable_address": 6464909568, "methods": [ - 6445945792, - 6457189536, - 6445929712, + 6445946160, + 6457191728, 6445930080, + 6445930272, + 6445930304, + 6457191776, + 6457188752, 6445930320, - 6457189584, - 6457186560, - 6445930352, - 6445932320, - 6445930784, + 6445931936, + 6445930608, 6443742160, - 6445931792, - 6457190896, - 6457192720, - 6445932368, - 6445935680, - 6445934320, - 6457187520, - 6445941472 + 6445931664, + 6457193088, + 6457194912, + 6445932752, + 6445935904, + 6445934560 ], "bases": [ { @@ -139805,7 +139811,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329160, + "complete_object_locator": 6468333392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139814,25 +139820,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays", - "vtable_address": 6464910744, + "vtable_address": 6464914840, "methods": [ - 6445984928, - 6457189536, - 6445952912, - 6445953136, - 6445953360, - 6457189584, - 6457186560, - 6445953376, - 6445954576, - 6445953824, - 6443742160, - 6445954320, - 6457190896, - 6457192720, - 6445954592, - 6445954992, - 6445954784 + 6445985312, + 6457191728, + 6445953296, + 6445953520, + 6445953744, + 6457191776, + 6457188752, + 6445953760, + 6445954960, + 6445954208, + 6443742160, + 6445954704, + 6457193088, + 6457194912, + 6445954976, + 6445955216, + 6445955008 ], "bases": [ { @@ -139866,7 +139872,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329296, + "complete_object_locator": 6468333528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139875,27 +139881,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays_Player", - "vtable_address": 6464905792, - "methods": [ - 6445946368, - 6457189536, - 6445932400, - 6445935632, - 6445935808, - 6457189584, - 6457186560, - 6445935824, - 6445938336, - 6445937216, - 6443742160, - 6445938016, - 6457190896, - 6457192720, + "vtable_address": 6464909888, + "methods": [ + 6445946672, + 6457191728, + 6445932768, + 6445935856, + 6445935968, + 6457191776, + 6457188752, + 6445935984, + 6445938720, + 6445937536, + 6443742160, 6445938400, - 6445939328, - 6445939312, - 6457187520, - 6445946288 + 6457193088, + 6457194912, + 6445938928, + 6445939712, + 6445939696 ], "bases": [ { @@ -139929,7 +139933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329432, + "complete_object_locator": 6468333664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -139938,27 +139942,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_AcknowledgePenalty", - "vtable_address": 6465004840, + "vtable_address": 6465008936, "methods": [ - 6446437696, - 6457189536, - 6446425792, - 6446427536, - 6446428816, - 6457189584, - 6457186560, - 6446428832, - 6446430656, - 6446429936, + 6446437584, + 6457191728, + 6446426032, + 6446427584, + 6446428576, + 6457191776, + 6457188752, + 6446428592, + 6446430816, + 6446429536, 6443742160, - 6446430480, - 6457190896, - 6457192720, - 6446430720, - 6446432368, - 6446432176, - 6457187520, - 6446436800 + 6446430224, + 6457193088, + 6457194912, + 6446431088, + 6446432672, + 6446432480, + 6457189712, + 6446437184 ], "bases": [ { @@ -139992,7 +139996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329568, + "complete_object_locator": 6468333800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140001,25 +140005,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_BetaEnrollment", - "vtable_address": 6465075176, - "methods": [ - 6446652560, - 6457189536, - 6446644144, - 6446645664, - 6446646112, - 6457189584, - 6457186560, - 6446646144, - 6446647232, - 6446646352, + "vtable_address": 6465079272, + "methods": [ + 6446652928, + 6457191728, + 6446644528, + 6446646048, + 6446646496, + 6457191776, + 6457188752, + 6446646528, + 6446647616, + 6446646736, 6443742160, - 6446647056, - 6457190896, - 6457192720, - 6446647744, - 6446647888, - 6446647856 + 6446647440, + 6457193088, + 6457194912, + 6446648128, + 6446648256, + 6446648240, + 6457189712, + 6446649856 ], "bases": [ { @@ -140053,7 +140059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329704, + "complete_object_locator": 6468333936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140062,29 +140068,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest", - "vtable_address": 6464931576, - "methods": [ - 6446084832, - 6457189536, - 6446075088, - 6446076240, - 6446076288, - 6457189584, - 6457186560, - 6446076304, - 6446080160, - 6446077904, - 6443742160, - 6446079648, - 6457190896, - 6457192720, - 6446080352, - 6446081568, - 6446081536, - 6457187520, - 6446082624, - 6457187520, - 6446083536 + "vtable_address": 6464935672, + "methods": [ + 6446085200, + 6457191728, + 6446075408, + 6446076624, + 6446076672, + 6457191776, + 6457188752, + 6446076688, + 6446080528, + 6446078288, + 6443742160, + 6446080016, + 6457193088, + 6457194912, + 6446080640, + 6446081120, + 6446081104, + 6457189712, + 6446083008, + 6457189712, + 6446083792 ], "bases": [ { @@ -140118,7 +140124,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329840, + "complete_object_locator": 6468334072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140127,27 +140133,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse", - "vtable_address": 6464933336, - "methods": [ - 6446102672, - 6457189536, - 6446092880, - 6446095136, - 6446095264, - 6457189584, - 6457186560, - 6446095280, - 6446096352, - 6446095856, - 6443742160, + "vtable_address": 6464937432, + "methods": [ + 6446103024, + 6457191728, + 6446093264, + 6446095520, + 6446095648, + 6457191776, + 6457188752, + 6446095664, + 6446096736, 6446096240, - 6457190896, - 6457192720, - 6446096464, - 6446096912, - 6446096896, - 6457187520, - 6446099120 + 6443742160, + 6446096624, + 6457193088, + 6457194912, + 6446096848, + 6446097296, + 6446097264, + 6457189712, + 6446099488 ], "bases": [ { @@ -140181,7 +140187,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468329976, + "complete_object_locator": 6468334208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140190,25 +140196,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin", - "vtable_address": 6465006168, - "methods": [ - 6446456400, - 6457189536, - 6446448192, - 6446448416, - 6446448464, - 6457189584, - 6457186560, - 6446448480, - 6446449968, - 6446448720, - 6443742160, - 6446449440, - 6457190896, - 6457192720, - 6446449984, - 6446450160, - 6446450144 + "vtable_address": 6465010264, + "methods": [ + 6446456784, + 6457191728, + 6446448400, + 6446448800, + 6446448848, + 6457191776, + 6457188752, + 6446448864, + 6446450288, + 6446449024, + 6443742160, + 6446449760, + 6457193088, + 6457194912, + 6446450368, + 6446450544, + 6446450528 ], "bases": [ { @@ -140242,7 +140248,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468330112, + "complete_object_locator": 6468334344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140251,25 +140257,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCStreamUnlock", - "vtable_address": 6465007912, + "vtable_address": 6465011992, "methods": [ 6446479216, - 6457189536, - 6446467744, - 6446467840, - 6446467888, - 6457189584, - 6457186560, - 6446467920, - 6446468848, - 6446468032, - 6443742160, - 6446468544, - 6457190896, - 6457192720, - 6446470480, - 6446474592, - 6446474560 + 6457191728, + 6446468128, + 6446468224, + 6446468272, + 6457191776, + 6457188752, + 6446468304, + 6446469232, + 6446468416, + 6443742160, + 6446468928, + 6457193088, + 6457194912, + 6446470864, + 6446474976, + 6446474944 ], "bases": [ { @@ -140303,7 +140309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468330248, + "complete_object_locator": 6468334480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140312,29 +140318,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCTextMsg", - "vtable_address": 6464898408, - "methods": [ - 6445910656, - 6457189536, - 6445899296, - 6445900016, - 6445900080, - 6457189584, - 6457186560, - 6445900096, - 6445901104, - 6445900288, - 6443742160, - 6445900752, - 6457190896, - 6457192720, - 6445901120, - 6445901152, + "vtable_address": 6464902504, + "methods": [ + 6445911040, + 6457191728, + 6445899680, + 6445900256, + 6445900320, + 6457191776, + 6457188752, + 6445900336, + 6445901488, + 6445900672, + 6443742160, 6445901136, - 6457187520, - 6445905840, - 6457187520, - 6445905792 + 6457193088, + 6457194912, + 6445901504, + 6445901536, + 6445901520, + 6457189712, + 6445906176 ], "bases": [ { @@ -140368,7 +140372,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468330384, + "complete_object_locator": 6468334616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140377,27 +140381,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GcAckXPShopTracks", - "vtable_address": 6464980880, - "methods": [ - 6446340960, - 6457189536, - 6446339488, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446340064, - 6446339952, - 6457187520, - 6446339760 + "vtable_address": 6464984976, + "methods": [ + 6446341344, + 6457191728, + 6446339872, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446340384, + 6446340272, + 6457189712, + 6446340144 ], "bases": [ { @@ -140445,7 +140449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468330520, + "complete_object_locator": 6468334752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140454,25 +140458,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAccountBalance", - "vtable_address": 6464931000, + "vtable_address": 6464935096, "methods": [ - 6446082288, - 6457189536, - 6446070448, - 6446071984, - 6446072048, - 6457189584, - 6457186560, - 6446072160, - 6446074128, - 6446072736, + 6446082672, + 6457191728, + 6446070768, + 6446072368, + 6446072432, + 6457191776, + 6457188752, + 6446072528, + 6446074448, + 6446073040, 6443742160, - 6446073888, - 6457190896, - 6457192720, - 6446075488, - 6446077840, - 6446077824 + 6446074208, + 6457193088, + 6457194912, + 6446075872, + 6446078224, + 6446078208 ], "bases": [ { @@ -140506,7 +140510,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468330664, + "complete_object_locator": 6468334896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140515,25 +140519,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAuthKeyCode", - "vtable_address": 6465025952, - "methods": [ - 6446560160, - 6457189536, - 6446554480, - 6446554688, - 6446554752, - 6457189584, - 6457186560, - 6446554768, - 6446555664, - 6446554880, + "vtable_address": 6465030048, + "methods": [ + 6446560544, + 6457191728, + 6446554864, + 6446555056, + 6446555120, + 6457191776, + 6457188752, + 6446555136, + 6446556048, + 6446555264, 6443742160, - 6446555440, - 6457190896, - 6457192720, - 6446555760, - 6446556032, - 6446555984 + 6446555824, + 6457193088, + 6457194912, + 6446556064, + 6446556416, + 6446556368 ], "bases": [ { @@ -140567,7 +140571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468330800, + "complete_object_locator": 6468335032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140576,31 +140580,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientCommendPlayer", - "vtable_address": 6464934440, - "methods": [ - 6446112224, - 6457189536, - 6446098944, - 6446099408, - 6446099728, - 6457189584, - 6457186560, - 6446099744, - 6446101312, - 6446100096, - 6443742160, - 6446100896, - 6457190896, - 6457192720, - 6446102144, - 6446103200, - 6446102976, - 6457187520, - 6446108576, - 6457187520, - 6446109728, - 6457388960, - 6457389040 + "vtable_address": 6464938536, + "methods": [ + 6446112608, + 6457191728, + 6446099312, + 6446099760, + 6446100016, + 6457191776, + 6457188752, + 6446100048, + 6446101568, + 6446100368, + 6443742160, + 6446101152, + 6457193088, + 6457194912, + 6446102080, + 6446103360, + 6446103344, + 6457189712, + 6446108960, + 6457189712, + 6446109872, + 6457391152, + 6457391232 ], "bases": [ { @@ -140634,7 +140638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468330936, + "complete_object_locator": 6468335168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140643,29 +140647,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientGCRankUpdate", - "vtable_address": 6464924424, + "vtable_address": 6464928520, "methods": [ - 6446020368, - 6457189536, - 6446007456, - 6446007872, - 6446008000, - 6457189584, - 6457186560, - 6446008016, - 6446008736, - 6446008176, + 6446020752, + 6457191728, + 6446007824, + 6446008256, + 6446008384, + 6457191776, + 6457188752, + 6446008400, + 6446009120, + 6446008560, 6443742160, - 6446008592, - 6457190896, - 6457192720, - 6446008896, - 6446009168, - 6446009056, - 6457187520, - 6446012672, - 6457187520, - 6446014192 + 6446008976, + 6457193088, + 6457194912, + 6446009280, + 6446009328, + 6446009312, + 6457189712, + 6446012976, + 6457189712, + 6446014576 ], "bases": [ { @@ -140699,7 +140703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468331072, + "complete_object_locator": 6468335304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140708,25 +140712,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientLogonFatalError", - "vtable_address": 6465076632, - "methods": [ - 6446668784, - 6457189536, - 6446659088, - 6446659584, - 6446659680, - 6457189584, - 6457186560, - 6446659712, - 6446660768, + "vtable_address": 6465080728, + "methods": [ + 6446669152, + 6457191728, + 6446659296, + 6446659888, + 6446659984, + 6457191776, + 6457188752, 6446660016, + 6446661152, + 6446660400, 6443742160, - 6446660512, - 6457190896, - 6457192720, - 6446661440, - 6446662160, - 6446662144 + 6446660896, + 6457193088, + 6457194912, + 6446661664, + 6446662544, + 6446662528 ], "bases": [ { @@ -140760,7 +140764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468331208, + "complete_object_locator": 6468335440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140769,31 +140773,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientNetworkConfig", - "vtable_address": 6464984792, - "methods": [ - 6446381520, - 6457189536, - 6446367472, - 6446367728, - 6446367792, - 6457189584, - 6457186560, - 6446367808, - 6446368368, - 6446367872, - 6443742160, + "vtable_address": 6464988888, + "methods": [ + 6446381904, + 6457191728, + 6446367856, + 6446367968, + 6446368176, + 6457191776, + 6457188752, + 6446368192, + 6446368736, 6446368256, - 6457190896, - 6457192720, - 6446368464, - 6446369408, - 6446369376, - 6457187520, - 6446374960, - 6457187520, - 6446374880, - 6457187520, - 6446375344 + 6443742160, + 6446368624, + 6457193088, + 6457194912, + 6446368768, + 6446369600, + 6446369184, + 6457189712, + 6446375248, + 6457189712, + 6446375632, + 6457189712, + 6446376528 ], "bases": [ { @@ -140827,7 +140831,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468331344, + "complete_object_locator": 6468335576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140836,25 +140840,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyJoinRelay", - "vtable_address": 6464933032, + "vtable_address": 6464937128, "methods": [ - 6446098960, - 6457189536, - 6446087968, - 6446088656, - 6446088704, - 6457189584, - 6457186560, - 6446089312, - 6446090832, - 6446089808, + 6446099328, + 6457191728, + 6446088352, + 6446088880, + 6446088928, + 6457191776, + 6457188752, + 6446089536, + 6446091216, + 6446090192, 6443742160, - 6446090544, - 6457190896, - 6457192720, - 6446091168, - 6446092736, - 6446092640 + 6446090928, + 6457193088, + 6457194912, + 6446091552, + 6446093120, + 6446093024 ], "bases": [ { @@ -140888,7 +140892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468331480, + "complete_object_locator": 6468335712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140897,25 +140901,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning", - "vtable_address": 6464947840, - "methods": [ - 6446148768, - 6457189536, - 6446124608, - 6446126496, - 6446126656, - 6457189584, - 6457186560, - 6446126672, - 6446128496, - 6446127552, + "vtable_address": 6464951936, + "methods": [ + 6446149152, + 6457191728, + 6446124992, + 6446126816, + 6446126976, + 6457191776, + 6457188752, + 6446126992, + 6446128880, + 6446127936, 6443742160, - 6446128352, - 6457190896, - 6457192720, - 6446128608, 6446128736, - 6446128720 + 6457193088, + 6457194912, + 6446128992, + 6446129120, + 6446129104 ], "bases": [ { @@ -140949,7 +140953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468331616, + "complete_object_locator": 6468335848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -140958,25 +140962,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning_Entry", - "vtable_address": 6464935480, + "vtable_address": 6464939576, "methods": [ - 6446116944, - 6457189536, - 6446107792, - 6446108656, - 6446108864, - 6457189584, - 6457186560, - 6446108880, - 6446110608, - 6446109232, + 6446117328, + 6457191728, + 6446108032, + 6446109040, + 6446109248, + 6457191776, + 6457188752, + 6446109264, + 6446110992, + 6446109376, 6443742160, - 6446110320, - 6457190896, - 6457192720, - 6446111760, - 6446112448, - 6446112432 + 6446110464, + 6457193088, + 6457194912, + 6446112144, + 6446112832, + 6446112816 ], "bases": [ { @@ -141010,7 +141014,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468331752, + "complete_object_locator": 6468335984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141019,25 +141023,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport", - "vtable_address": 6464975824, + "vtable_address": 6464979920, "methods": [ - 6446264240, - 6457189536, - 6446238976, - 6446240496, - 6446240752, - 6457189584, - 6457186560, - 6446240768, - 6446241792, - 6446240928, + 6446264304, + 6457191728, + 6446239184, + 6446239856, + 6446240096, + 6457191776, + 6457188752, + 6446240672, + 6446241872, + 6446241296, 6443742160, - 6446241648, - 6457190896, - 6457192720, - 6446242704, - 6446243200, - 6446243184 + 6446241728, + 6457193088, + 6457194912, + 6446242384, + 6446243568, + 6446243552 ], "bases": [ { @@ -141071,7 +141075,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468331888, + "complete_object_locator": 6468336120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141080,25 +141084,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport_Entry", - "vtable_address": 6464972080, + "vtable_address": 6464976176, "methods": [ - 6446234032, - 6457189536, - 6446216880, - 6446217152, - 6446217280, - 6457189584, - 6457186560, - 6446217296, - 6446219296, - 6446217552, + 6446234416, + 6457191728, + 6446217264, + 6446217536, + 6446217664, + 6457191776, + 6457188752, + 6446217680, + 6446219680, + 6446217936, 6443742160, - 6446218544, - 6457190896, - 6457192720, - 6446220304, - 6446221888, - 6446221856 + 6446218928, + 6457193088, + 6457194912, + 6446220672, + 6446221264, + 6446221232 ], "bases": [ { @@ -141132,7 +141136,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332024, + "complete_object_locator": 6468336256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141141,25 +141145,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPlayerDecalSign", - "vtable_address": 6465073736, + "vtable_address": 6465077832, "methods": [ - 6446635808, - 6457189536, - 6446621104, - 6446621456, - 6446621888, - 6457189584, - 6457186560, - 6446621904, - 6446622800, - 6446622032, + 6446636192, + 6457191728, + 6446621488, + 6446621840, + 6446622272, + 6457191776, + 6457188752, + 6446622288, + 6446623152, + 6446622416, 6443742160, - 6446622560, - 6457190896, - 6457192720, - 6446623280, - 6446626624, - 6446626608 + 6446622912, + 6457193088, + 6457194912, + 6446623200, + 6446625136, + 6446625120 ], "bases": [ { @@ -141193,7 +141197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332160, + "complete_object_locator": 6468336392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141202,25 +141206,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPollState", - "vtable_address": 6464877456, + "vtable_address": 6464881552, "methods": [ - 6445804432, - 6457189536, - 6446677664, - 6446677808, - 6446677872, - 6457189584, - 6457186560, - 6446677888, - 6446682912, - 6446679488, + 6445804816, + 6457191728, + 6446678048, + 6446678192, + 6446678256, + 6457191776, + 6457188752, + 6446678272, + 6446683296, + 6446679872, 6443742160, - 6446681328, - 6457190896, - 6457192720, - 6446685840, - 6445787264, - 6445787248 + 6446681712, + 6457193088, + 6457194912, + 6446686192, + 6445786912, + 6445786880 ], "bases": [ { @@ -141254,7 +141258,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332296, + "complete_object_locator": 6468336528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141263,25 +141267,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportPlayer", - "vtable_address": 6464931912, + "vtable_address": 6464936008, "methods": [ - 6446087984, - 6457189536, - 6446074144, - 6446075728, - 6446075792, - 6457189584, - 6457186560, - 6446075936, - 6446079520, - 6446076480, - 6443742160, - 6446078624, - 6457190896, - 6457192720, - 6446080240, - 6446081120, - 6446081104 + 6446088368, + 6457191728, + 6446074464, + 6446076112, + 6446076176, + 6457191776, + 6457188752, + 6446076320, + 6446079904, + 6446076864, + 6443742160, + 6446079008, + 6457193088, + 6457194912, + 6446080608, + 6446080848, + 6446080816 ], "bases": [ { @@ -141315,7 +141319,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332432, + "complete_object_locator": 6468336664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141324,29 +141328,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportResponse", - "vtable_address": 6464948336, + "vtable_address": 6464952432, "methods": [ - 6446152784, - 6457189536, - 6446144832, - 6446144992, - 6446145040, - 6457189584, - 6457186560, + 6446153152, + 6457191728, 6446145056, - 6446146944, - 6446145360, - 6443742160, - 6446146272, - 6457190896, - 6457192720, - 6446146960, - 6446146992, - 6446146976, - 6457187520, - 6446152736, - 6457187520, - 6446152640 + 6446145376, + 6446145424, + 6457191776, + 6457188752, + 6446145440, + 6446147328, + 6446145744, + 6443742160, + 6446146656, + 6457193088, + 6457194912, + 6446147344, + 6446147376, + 6446147360, + 6457189712, + 6446153104, + 6457189712, + 6446153008 ], "bases": [ { @@ -141380,7 +141384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332568, + "complete_object_locator": 6468336800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141389,25 +141393,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportServer", - "vtable_address": 6464944040, + "vtable_address": 6464948136, "methods": [ - 6446134336, - 6457189536, + 6446134176, + 6457191728, 6446119056, - 6446119664, - 6446119712, - 6457189584, - 6457186560, - 6446119728, - 6446121632, - 6446119952, - 6443742160, - 6446120944, - 6457190896, - 6457192720, - 6446121712, - 6446122080, - 6446122064 + 6446120032, + 6446120080, + 6457191776, + 6457188752, + 6446120096, + 6446122000, + 6446120336, + 6443742160, + 6446121328, + 6457193088, + 6457194912, + 6446122096, + 6446122272, + 6446122256 ], "bases": [ { @@ -141441,7 +141445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332704, + "complete_object_locator": 6468336936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141450,27 +141454,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportValidation", - "vtable_address": 6464984264, + "vtable_address": 6464988360, "methods": [ - 6446367056, - 6457189536, - 6446309056, - 6446310080, - 6446310448, - 6457189584, - 6457186560, - 6446310576, - 6446316608, - 6446311872, + 6446367440, + 6457191728, + 6446309424, + 6446310464, + 6446310832, + 6457191776, + 6457188752, + 6446310960, + 6446316992, + 6446312256, 6443742160, - 6446314736, - 6457190896, - 6457192720, - 6446317136, - 6446317200, - 6446317184, - 6457187520, - 6446364096 + 6446315120, + 6457193088, + 6457194912, + 6446317520, + 6446317584, + 6446317568, + 6457189712, + 6446364480 ], "bases": [ { @@ -141504,7 +141508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332840, + "complete_object_locator": 6468337072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141513,27 +141517,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinFriendData", - "vtable_address": 6464972832, - "methods": [ - 6446238352, - 6457189536, - 6446226480, - 6446227296, - 6446227696, - 6457189584, - 6457186560, - 6446227712, - 6446230576, - 6446228640, - 6443742160, - 6446230032, - 6457190896, - 6457192720, - 6446230752, - 6446231088, - 6446231072, - 6457187520, - 6446235936 + "vtable_address": 6464976928, + "methods": [ + 6446238736, + 6457191728, + 6446226864, + 6446227680, + 6446228080, + 6457191776, + 6457188752, + 6446228096, + 6446230960, + 6446229024, + 6443742160, + 6446230416, + 6457193088, + 6457194912, + 6446231136, + 6446231472, + 6446231456, + 6457189712, + 6446236320 ], "bases": [ { @@ -141567,7 +141571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468332976, + "complete_object_locator": 6468337208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141576,25 +141580,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinServerData", - "vtable_address": 6464975680, + "vtable_address": 6464979776, "methods": [ - 6446263728, - 6457189536, - 6446248880, - 6446249504, - 6446249632, - 6457189584, - 6457186560, - 6446249648, - 6446251808, - 6446249968, + 6446263616, + 6457191728, + 6446249264, + 6446249728, + 6446249856, + 6457191776, + 6457188752, + 6446249872, + 6446252176, + 6446250352, 6443742160, - 6446251168, - 6457190896, - 6457192720, - 6446252656, - 6446253424, - 6446253408 + 6446251536, + 6457193088, + 6457194912, + 6446252752, + 6446253632, + 6446253232 ], "bases": [ { @@ -141628,7 +141632,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468333112, + "complete_object_locator": 6468337344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141637,27 +141641,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestOffers", - "vtable_address": 6464926184, - "methods": [ - 6446037888, - 6457189536, - 6446034128, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446036528, - 6446035840, - 6457187520, - 6446034592 + "vtable_address": 6464930136, + "methods": [ + 6446037440, + 6457191728, + 6446034496, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446035808, + 6446035552 ], "bases": [ { @@ -141705,7 +141707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468333248, + "complete_object_locator": 6468337480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141714,25 +141716,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestPlayersProfile", - "vtable_address": 6465023824, - "methods": [ - 6446535696, - 6457189536, - 6446516880, - 6446518352, - 6446518736, - 6457189584, - 6457186560, - 6446518752, - 6446522304, - 6446520304, + "vtable_address": 6465028064, + "methods": [ + 6446536080, + 6457191728, + 6446517264, + 6446518368, + 6446518768, + 6457191776, + 6457188752, + 6446518816, + 6446522688, + 6446520560, 6443742160, - 6446521776, - 6457190896, - 6457192720, - 6446522448, - 6446523136, - 6446522992 + 6446522160, + 6457193088, + 6457194912, + 6446522832, + 6446523520, + 6446523328, + 6457189712, + 6446529024, + 6457189712, + 6446534992 ], "bases": [ { @@ -141766,7 +141772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468333392, + "complete_object_locator": 6468337624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141775,25 +141781,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestSouvenir", - "vtable_address": 6464929224, + "vtable_address": 6464933320, "methods": [ - 6446065792, - 6457189536, - 6446052160, - 6446052640, - 6446053264, - 6457189584, - 6457186560, - 6446053344, - 6446056160, - 6446054144, + 6446066176, + 6457191728, + 6446052544, + 6446052880, + 6446053040, + 6457191776, + 6457188752, + 6446053120, + 6446056544, + 6446053632, 6443742160, - 6446055632, - 6457190896, - 6457192720, - 6446058720, - 6446058896, - 6446058880 + 6446055696, + 6457193088, + 6457194912, + 6446059088, + 6446059216, + 6446059184 ], "bases": [ { @@ -141827,7 +141833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468333528, + "complete_object_locator": 6468337760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141836,25 +141842,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends", - "vtable_address": 6464954216, + "vtable_address": 6464958312, "methods": [ - 6446179840, - 6457189536, - 6446160560, - 6446162704, - 6446163072, - 6457189584, - 6457186560, - 6446163104, - 6446165248, - 6446163520, - 6443742160, - 6446164560, - 6457190896, - 6457192720, - 6446165408, - 6446165696, - 6446165680 + 6446180224, + 6457191728, + 6446160944, + 6446163088, + 6446163456, + 6457191776, + 6457188752, + 6446163488, + 6446165632, + 6446163904, + 6443742160, + 6446164944, + 6457193088, + 6457194912, + 6446165792, + 6446166064, + 6446166032 ], "bases": [ { @@ -141888,7 +141894,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468333664, + "complete_object_locator": 6468337896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141897,29 +141903,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientSubmitSurveyVote", - "vtable_address": 6464907944, + "vtable_address": 6464912040, "methods": [ - 6445976048, - 6457189536, - 6445955744, - 6445956080, - 6445956112, - 6457189584, - 6457186560, - 6445956144, - 6445957008, - 6445956240, + 6445976288, + 6457191728, + 6445956128, + 6445956464, + 6445956496, + 6457191776, + 6457188752, + 6445956528, + 6445957392, + 6445956624, 6443742160, - 6445956736, - 6457190896, - 6457192720, - 6445958816, - 6445964912, - 6445964896, - 6457187520, - 6445967664, - 6457187520, - 6445968032 + 6445957120, + 6457193088, + 6457194912, + 6445959200, + 6445965296, + 6445965280, + 6457189712, + 6445968048, + 6457189712, + 6445970336 ], "bases": [ { @@ -141953,7 +141959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468333800, + "complete_object_locator": 6468338032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -141962,27 +141968,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCChat", - "vtable_address": 6465020816, + "vtable_address": 6465024912, "methods": [ - 6446516912, - 6457189536, - 6446505440, - 6446507200, - 6446507264, - 6457189584, - 6457186560, - 6446507792, - 6446508640, - 6446507904, + 6446517296, + 6457191728, + 6446505824, + 6446507584, + 6446507648, + 6457191776, + 6457188752, + 6446508176, + 6446509024, + 6446508288, 6443742160, - 6446508384, - 6457190896, - 6457192720, - 6446508656, - 6446509152, - 6446508832, - 6457187520, - 6446514000 + 6446508768, + 6457193088, + 6457194912, + 6446509040, + 6446509232, + 6446509216, + 6457189712, + 6446514368 ], "bases": [ { @@ -142016,7 +142022,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468333936, + "complete_object_locator": 6468338168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142025,31 +142031,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestElevate", - "vtable_address": 6465009656, - "methods": [ - 6446502144, - 6457189536, - 6446491632, - 6446491792, - 6446491824, - 6457189584, - 6457186560, - 6446492032, - 6446493488, + "vtable_address": 6465013752, + "methods": [ + 6446501952, + 6457191728, + 6446492016, + 6446492176, + 6446492208, + 6457191776, + 6457188752, 6446492416, + 6446493856, + 6446492800, 6443742160, - 6446493312, - 6457190896, - 6457192720, - 6446494176, - 6446495184, - 6446495168, - 6457187520, - 6446498272, - 6457187520, - 6446498656, - 6457187520, - 6446501552 + 6446493680, + 6457193088, + 6457194912, + 6446494320, + 6446495280, + 6446494752, + 6457189712, + 6446498736, + 6457189712, + 6446499024, + 6457189712, + 6446502096 ], "bases": [ { @@ -142083,7 +142089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468334072, + "complete_object_locator": 6468338304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142092,25 +142098,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestTicket", - "vtable_address": 6464922856, - "methods": [ - 6446005184, - 6457189536, - 6445993168, - 6445993376, - 6445993456, - 6457189584, - 6457186560, - 6445993472, - 6445994768, + "vtable_address": 6464926952, + "methods": [ + 6446004832, + 6457191728, + 6445992624, + 6445993744, 6445993824, + 6457191776, + 6457188752, + 6445993840, + 6445994928, + 6445994208, 6443742160, - 6445994384, - 6457190896, - 6457192720, - 6445995104, - 6445996384, - 6445996192 + 6445994688, + 6457193088, + 6457194912, + 6445995488, + 6445996768, + 6445996576 ], "bases": [ { @@ -142144,7 +142150,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468334208, + "complete_object_locator": 6468338440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142153,25 +142159,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientVarValueNotificationInfo", - "vtable_address": 6464882640, + "vtable_address": 6464886720, "methods": [ - 6445859152, - 6457189536, - 6445839424, - 6445842080, - 6445842896, - 6457189584, - 6457186560, - 6445843200, - 6445844880, - 6445843536, + 6445859392, + 6457191728, + 6445840032, + 6445842576, + 6445842800, + 6457191776, + 6457188752, + 6445842816, + 6445845264, + 6445843632, 6443742160, - 6445844304, - 6457190896, - 6457192720, - 6445844912, - 6445845104, - 6445845088 + 6445844688, + 6457193088, + 6457194912, + 6445845296, + 6445845488, + 6445845472, + 6457189712, + 6445856784 ], "bases": [ { @@ -142205,7 +142213,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468334344, + "complete_object_locator": 6468338576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142214,29 +142222,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy", - "vtable_address": 6465073880, + "vtable_address": 6465077976, "methods": [ - 6446636256, - 6457189536, - 6446614864, - 6446615152, - 6446615424, - 6457189584, - 6457186560, - 6446615440, - 6446616368, - 6446615616, + 6446636640, + 6457191728, + 6446615248, + 6446615536, + 6446615808, + 6457191776, + 6457188752, + 6446615824, + 6446616752, + 6446616000, 6443742160, - 6446616128, - 6457190896, - 6457192720, - 6446616384, - 6446616672, - 6446616560, - 6457187520, - 6446634016, - 6457187520, - 6446635984 + 6446616512, + 6457193088, + 6457194912, + 6446616768, + 6446617056, + 6446617040, + 6457189712, + 6446634400, + 6457189712, + 6446636368, + 6457189712, + 6446637408 ], "bases": [ { @@ -142270,7 +142280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468334480, + "complete_object_locator": 6468338712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142279,33 +142289,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasySlot", - "vtable_address": 6465026672, - "methods": [ - 6446567648, - 6457189536, - 6446556976, - 6446557520, - 6446558320, - 6457189584, - 6457186560, - 6446558336, - 6446559952, - 6446558960, - 6443742160, - 6446559552, - 6457190896, - 6457192720, - 6446559984, - 6446560096, - 6446560080, - 6457187520, + "vtable_address": 6465030768, + "methods": [ + 6446567488, + 6457191728, + 6446557360, + 6446557904, + 6446558528, + 6457191776, + 6457188752, + 6446558544, + 6446560336, + 6446559168, + 6443742160, + 6446559936, + 6457193088, + 6457194912, + 6446560368, 6446560480, - 6457187520, - 6446561632, - 6457187520, - 6446565168, - 6457187520, - 6446566080 + 6446560464, + 6457189712, + 6446560864, + 6457189712, + 6446562032, + 6457189712, + 6446565536 ], "bases": [ { @@ -142339,7 +142347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468334616, + "complete_object_locator": 6468338848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142348,29 +142356,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasyTeam", - "vtable_address": 6465032632, + "vtable_address": 6465036728, "methods": [ - 6446603824, - 6457189536, - 6446575280, - 6446575760, - 6446576432, - 6457189584, - 6457186560, - 6446576448, - 6446577952, - 6446577120, + 6446604208, + 6457191728, + 6446575488, + 6446576144, + 6446576816, + 6457191776, + 6457188752, + 6446576832, + 6446578336, + 6446577504, 6443742160, - 6446577696, - 6457190896, - 6457192720, - 6446577984, - 6446578416, - 6446578400, - 6457187520, - 6446597552, - 6457187520, - 6446597840 + 6446578080, + 6457193088, + 6457194912, + 6446578368, + 6446578800, + 6446578784, + 6457189712, + 6446597936, + 6457189712, + 6446598224 ], "bases": [ { @@ -142404,7 +142412,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468334752, + "complete_object_locator": 6468338984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142413,29 +142421,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem", - "vtable_address": 6465005000, - "methods": [ - 6446441072, - 6457189536, - 6446418720, - 6446419472, - 6446419696, - 6457189584, - 6457186560, - 6446419728, - 6446421440, - 6446420096, + "vtable_address": 6465009096, + "methods": [ + 6446441456, + 6457191728, + 6446419104, + 6446419856, + 6446420080, + 6457191776, + 6457188752, + 6446420112, + 6446421824, + 6446420480, 6443742160, - 6446420976, - 6457190896, - 6457192720, - 6446422256, - 6446424448, - 6446424416, - 6457187520, - 6446437968, - 6457187520, - 6446438096 + 6446421360, + 6457193088, + 6457194912, + 6446422640, + 6446424832, + 6446424800, + 6457189712, + 6446438288, + 6457189712, + 6446438480 ], "bases": [ { @@ -142469,7 +142477,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468334888, + "complete_object_locator": 6468339120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142478,33 +142486,33 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem_Response", - "vtable_address": 6465007384, + "vtable_address": 6465011480, "methods": [ - 6446472112, - 6457189536, - 6446450224, - 6446450544, - 6446450672, - 6457189584, - 6457186560, - 6446450688, - 6446453312, - 6446451088, - 6443742160, - 6446452416, - 6457190896, - 6457192720, - 6446453472, - 6446453680, - 6446453664, - 6457187520, - 6446467760, - 6457187520, - 6446468864, - 6457187520, - 6446469168, - 6457187520, - 6446469376 + 6446472496, + 6457191728, + 6446450608, + 6446450928, + 6446451056, + 6457191776, + 6457188752, + 6446451072, + 6446453696, + 6446451472, + 6443742160, + 6446452800, + 6457193088, + 6457194912, + 6446453856, + 6446453888, + 6446453872, + 6457189712, + 6446468144, + 6457189712, + 6446469248, + 6457189712, + 6446469552, + 6457189712, + 6446469760 ], "bases": [ { @@ -142538,7 +142546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335024, + "complete_object_locator": 6468339256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142547,31 +142555,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientNotifyXPShop", - "vtable_address": 6464979888, - "methods": [ - 6446329184, - 6457189536, - 6446317168, - 6446317920, - 6446318112, - 6457189584, - 6457186560, - 6446318288, - 6446319520, - 6446318464, + "vtable_address": 6464983984, + "methods": [ + 6446329568, + 6457191728, + 6446317552, + 6446318304, + 6446318496, + 6457191776, + 6457188752, + 6446318672, + 6446319888, + 6446318848, 6443742160, - 6446319168, - 6457190896, - 6457192720, - 6446319552, - 6446321808, - 6446321520, - 6457187520, - 6446326832, - 6457187520, - 6446327088, - 6457187520, - 6446329440 + 6446319536, + 6457193088, + 6457194912, + 6446319920, + 6446320992, + 6446320960, + 6457189712, + 6446327072, + 6457189712, + 6446327472, + 6457189712, + 6446329824 ], "bases": [ { @@ -142605,7 +142613,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335160, + "complete_object_locator": 6468339392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142614,25 +142622,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode", - "vtable_address": 6464986504, - "methods": [ - 6446391840, - 6457189536, - 6446375888, - 6446379424, - 6446379552, - 6457189584, - 6457186560, - 6446379568, - 6446381472, - 6446379808, - 6443742160, - 6446381024, - 6457190896, - 6457192720, + "vtable_address": 6464990600, + "methods": [ + 6446392192, + 6457191728, + 6446375616, + 6446378624, + 6446378736, + 6457191776, + 6457188752, + 6446379232, 6446381824, - 6446382624, - 6446382224 + 6446380160, + 6443742160, + 6446381376, + 6457193088, + 6457194912, + 6446382128, + 6446382864, + 6446382464 ], "bases": [ { @@ -142666,7 +142674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335296, + "complete_object_locator": 6468339528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142675,25 +142683,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRequestValidation", - "vtable_address": 6465002120, + "vtable_address": 6465006216, "methods": [ - 6446409536, - 6457189536, - 6446404272, - 6446404528, - 6446404592, - 6457189584, - 6457186560, - 6446404752, - 6446405472, + 6446409616, + 6457191728, + 6446404368, 6446404832, + 6446404912, + 6457191776, + 6457188752, + 6446404992, + 6446405856, + 6446405072, 6443742160, - 6446405312, - 6457190896, - 6457192720, - 6446405664, - 6446406592, - 6446406576 + 6446405696, + 6457193088, + 6457194912, + 6446406048, + 6446406976, + 6446406960 ], "bases": [ { @@ -142727,7 +142735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335432, + "complete_object_locator": 6468339664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142736,31 +142744,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTextMsg", - "vtable_address": 6464885216, - "methods": [ - 6445895296, - 6457189536, - 6445882512, - 6445884784, - 6445884928, - 6457189584, - 6457186560, - 6445884960, - 6445886016, - 6445885120, - 6443742160, - 6445885696, - 6457190896, - 6457192720, - 6445886752, - 6445888800, - 6445888560, - 6457187520, - 6445892464, - 6457187520, - 6445893648, - 6457187520, - 6445894544 + "vtable_address": 6464889312, + "methods": [ + 6445895680, + 6457191728, + 6445882896, + 6445885152, + 6445885296, + 6457191776, + 6457188752, + 6445885312, + 6445886400, + 6445885488, + 6443742160, + 6445886080, + 6457193088, + 6457194912, + 6445886736, + 6445889184, + 6445888928, + 6457189712, + 6445892848, + 6457189712, + 6445894032, + 6457189712, + 6445894928 ], "bases": [ { @@ -142794,7 +142802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335568, + "complete_object_locator": 6468339800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142803,25 +142811,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTournamentInfo", - "vtable_address": 6464923784, + "vtable_address": 6464927880, "methods": [ - 6446009920, - 6457189536, - 6445999488, - 6445999888, - 6445999952, - 6457189584, - 6457186560, - 6445999968, - 6446001568, - 6446000144, + 6446009840, + 6457191728, + 6445999872, + 6446000208, + 6446000336, + 6457191776, + 6457188752, + 6446000352, + 6446001952, + 6446000528, 6443742160, - 6446001056, - 6457190896, - 6457192720, - 6446002640, - 6446002784, - 6446002752 + 6446001440, + 6457193088, + 6457194912, + 6446003024, + 6446003168, + 6446003136 ], "bases": [ { @@ -142855,7 +142863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335704, + "complete_object_locator": 6468339936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142864,25 +142872,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ServerReservationUpdate", - "vtable_address": 6464942464, - "methods": [ - 6446121728, - 6457189536, - 6446114896, - 6446115152, - 6446115248, - 6457189584, - 6457186560, - 6446115264, - 6446116368, - 6446115360, + "vtable_address": 6464946560, + "methods": [ + 6446122112, + 6457191728, + 6446115280, + 6446115536, + 6446115632, + 6457191776, + 6457188752, + 6446115648, + 6446116592, + 6446115744, 6443742160, - 6446116096, - 6457190896, - 6457192720, - 6446116640, - 6446116688, - 6446116672 + 6446116320, + 6457193088, + 6457194912, + 6446117024, + 6446117056, + 6446117040, + 6457189712, + 6446119904 ], "bases": [ { @@ -142916,7 +142926,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335840, + "complete_object_locator": 6468340072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142925,25 +142935,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_GCToClientChat", - "vtable_address": 6465024320, - "methods": [ - 6446538368, - 6457189536, - 6446525872, - 6446527712, - 6446527792, - 6457189584, - 6457186560, - 6446527824, - 6446529088, - 6446527936, - 6443742160, - 6446528416, - 6457190896, - 6457192720, - 6446532480, - 6446534896, - 6446534768 + "vtable_address": 6465028416, + "methods": [ + 6446538752, + 6457191728, + 6446526256, + 6446528096, + 6446528176, + 6457191776, + 6457188752, + 6446528208, + 6446529472, + 6446528320, + 6443742160, + 6446528800, + 6457193088, + 6457194912, + 6446532672, + 6446535088, + 6446534960 ], "bases": [ { @@ -142977,7 +142987,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468335976, + "complete_object_locator": 6468340208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -142986,29 +142996,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Request", - "vtable_address": 6464954936, + "vtable_address": 6464959032, "methods": [ - 6446181920, - 6457189536, - 6446177584, - 6446178576, - 6446178992, - 6457189584, - 6457186560, - 6446179008, - 6446179648, - 6446179120, + 6446182288, + 6457191728, + 6446177952, + 6446178880, + 6446179296, + 6457191776, + 6457188752, + 6446179312, + 6446180032, + 6446179504, 6443742160, - 6446179536, - 6457190896, - 6457192720, - 6446179664, - 6446179776, - 6446179760, - 6457388960, - 6457389040, - 6457187520, - 6446180496 + 6446179920, + 6457193088, + 6457194912, + 6446180048, + 6446180160, + 6446180144, + 6457391152, + 6457391232, + 6457189712, + 6446180880 ], "bases": [ { @@ -143042,7 +143052,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468336112, + "complete_object_locator": 6468340344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143051,33 +143061,33 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Response", - "vtable_address": 6464965328, + "vtable_address": 6464969424, "methods": [ - 6446212688, - 6457189536, - 6446192416, - 6446193680, - 6446193776, - 6457189584, - 6457186560, - 6446194624, - 6446196128, - 6446195424, + 6446213072, + 6457191728, + 6446192800, + 6446194064, + 6446194160, + 6457191776, + 6457188752, + 6446195008, + 6446196512, + 6446195808, 6443742160, - 6446195936, - 6457190896, - 6457192720, - 6446196160, - 6446196768, - 6446196288, - 6457388960, - 6457389040, - 6457187520, - 6446202608, - 6457187520, - 6446203104, - 6457187520, - 6446203712 + 6446196320, + 6457193088, + 6457194912, + 6446196544, + 6446197120, + 6446196656, + 6457391152, + 6457391232, + 6457189712, + 6446202992, + 6457189712, + 6446203280, + 6457189712, + 6446203904 ], "bases": [ { @@ -143111,7 +143121,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468336248, + "complete_object_locator": 6468340480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143120,25 +143130,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardRequest", - "vtable_address": 6464885704, - "methods": [ - 6445899088, - 6457189536, - 6445898816, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6445899024, - 6445898944 + "vtable_address": 6464889800, + "methods": [ + 6445899472, + 6457191728, + 6445899040, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6445899328, + 6445899312 ], "bases": [ { @@ -143186,7 +143196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468336384, + "complete_object_locator": 6468340616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143195,25 +143205,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse", - "vtable_address": 6464906112, - "methods": [ - 6445949856, - 6457189536, - 6445919600, - 6445920112, - 6445920288, - 6457189584, - 6457186560, - 6445920880, - 6445924800, - 6445922224, - 6443742160, - 6445924240, - 6457190896, - 6457192720, - 6445926064, - 6445926368, - 6445926288 + "vtable_address": 6464910208, + "methods": [ + 6445950240, + 6457191728, + 6445919984, + 6445920496, + 6445920672, + 6457191776, + 6457188752, + 6445921104, + 6445925184, + 6445922448, + 6443742160, + 6445924624, + 6457193088, + 6457194912, + 6445926448, + 6445926752, + 6445926672 ], "bases": [ { @@ -143247,7 +143257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468336528, + "complete_object_locator": 6468340760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143256,25 +143266,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry", - "vtable_address": 6464900296, + "vtable_address": 6464904392, "methods": [ - 6445911776, - 6457189536, - 6445903536, - 6445903648, - 6445903680, - 6457189584, - 6457186560, - 6445903776, - 6445905328, + 6445911904, + 6457191728, + 6445903856, 6445904032, + 6445904064, + 6457191776, + 6457188752, + 6445904160, + 6445905696, + 6445904416, 6443742160, - 6445905056, - 6457190896, - 6457192720, - 6445905952, - 6445910032, - 6445909520 + 6445905424, + 6457193088, + 6457194912, + 6445906448, + 6445909424, + 6445909408 ], "bases": [ { @@ -143308,7 +143318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468336664, + "complete_object_locator": 6468340896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143317,27 +143327,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRewardDropsNotification", - "vtable_address": 6464926808, + "vtable_address": 6464930904, "methods": [ - 6446043344, - 6457189536, - 6446033712, - 6446034032, - 6446034112, - 6457189584, - 6457186560, - 6446034144, - 6446035008, - 6446034224, + 6446043728, + 6457191728, + 6446034096, + 6446034416, + 6446034480, + 6457191776, + 6457188752, + 6446034512, + 6446035088, + 6446034592, 6443742160, - 6446034896, - 6457190896, - 6457192720, - 6446036592, - 6446036896, - 6446036880, - 6457187520, - 6446041408 + 6446034976, + 6457193088, + 6457194912, + 6446035888, + 6446037248, + 6446037232, + 6457189712, + 6446041792 ], "bases": [ { @@ -143371,7 +143381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468336800, + "complete_object_locator": 6468341032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143380,27 +143390,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRunRewardDrops", - "vtable_address": 6464901752, - "methods": [ - 6445928080, - 6457189536, - 6445913824, - 6445915008, - 6445915280, - 6457189584, - 6457186560, - 6445915680, - 6445916704, - 6445916032, - 6443742160, - 6445916528, - 6457190896, - 6457192720, - 6445917360, - 6445919200, - 6445919184, - 6457187520, - 6445926432 + "vtable_address": 6464905848, + "methods": [ + 6445928448, + 6457191728, + 6445914208, + 6445915392, + 6445915664, + 6457191776, + 6457188752, + 6445916064, + 6445917088, + 6445916400, + 6443742160, + 6445916912, + 6457193088, + 6457194912, + 6445917536, + 6445919584, + 6445919552, + 6457189712, + 6445927120 ], "bases": [ { @@ -143434,7 +143444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468336936, + "complete_object_locator": 6468341168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143443,25 +143453,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchList", - "vtable_address": 6465006456, - "methods": [ - 6446457904, - 6457189536, - 6446425632, - 6446426160, - 6446426544, - 6457189584, - 6457186560, - 6446426560, - 6446429856, - 6446427568, - 6443742160, - 6446428896, - 6457190896, - 6457192720, - 6446430672, - 6446431056, - 6446430736 + "vtable_address": 6465010552, + "methods": [ + 6446458288, + 6457191728, + 6446425696, + 6446426528, + 6446426912, + 6457191776, + 6457188752, + 6446426928, + 6446429504, + 6446427616, + 6443742160, + 6446428816, + 6457193088, + 6457194912, + 6446430896, + 6446431440, + 6446431120 ], "bases": [ { @@ -143495,7 +143505,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468337072, + "complete_object_locator": 6468341304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143504,25 +143514,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames", - "vtable_address": 6464934632, - "methods": [ - 6446115184, - 6457189536, - 6446112400, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446112576, - 6446112544 + "vtable_address": 6464938728, + "methods": [ + 6446115568, + 6457191728, + 6446112784, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446112960, + 6446112928, + 6457189712, + 6446113088, + 6457189712, + 6446113264 ], "bases": [ { @@ -143570,7 +143584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468337208, + "complete_object_locator": 6468341440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143579,25 +143593,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestFullGameInfo", - "vtable_address": 6464954792, + "vtable_address": 6464958888, "methods": [ - 6446181440, - 6457189536, - 6446170544, - 6446171808, - 6446171872, - 6457189584, - 6457186560, - 6446172112, - 6446175232, - 6446173376, - 6443742160, - 6446174848, - 6457190896, - 6457192720, - 6446177472, - 6446178512, - 6446178384 + 6446181824, + 6457191728, + 6446170912, + 6446171840, + 6446171888, + 6457191776, + 6457188752, + 6446171920, + 6446174560, + 6446172896, + 6443742160, + 6446174176, + 6457193088, + 6457194912, + 6446177664, + 6446178816, + 6446178752 ], "bases": [ { @@ -143631,7 +143645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468337352, + "complete_object_locator": 6468341584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143640,27 +143654,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser", - "vtable_address": 6464943712, + "vtable_address": 6464947808, "methods": [ - 6446130240, - 6457189536, - 6446122144, - 6446122224, - 6446122256, - 6457189584, - 6457186560, - 6446122272, - 6446123280, + 6446130624, + 6457191728, + 6446122336, + 6446122608, 6446122640, + 6457191776, + 6457188752, + 6446122656, + 6446123584, + 6446122880, 6443742160, - 6446123104, - 6457190896, - 6457192720, - 6446124080, - 6446125808, - 6446125408, - 6457187520, - 6446128800 + 6446123264, + 6457193088, + 6457194912, + 6446124464, + 6446126192, + 6446125648, + 6457189712, + 6446129184 ], "bases": [ { @@ -143694,7 +143708,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468337488, + "complete_object_locator": 6468341720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143703,25 +143717,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestRecentUserGames", - "vtable_address": 6464947552, - "methods": [ - 6446148416, - 6457189536, - 6446143600, - 6446143840, - 6446143872, - 6457189584, - 6457186560, - 6446143888, - 6446144656, - 6446144096, - 6443742160, + "vtable_address": 6464951648, + "methods": [ + 6446148800, + 6457191728, + 6446143984, + 6446144224, + 6446144256, + 6457191776, + 6457188752, + 6446144272, + 6446145040, 6446144480, - 6457190896, - 6457192720, - 6446144848, - 6446145296, - 6446145280 + 6443742160, + 6446144864, + 6457193088, + 6457194912, + 6446145232, + 6446145680, + 6446145664 ], "bases": [ { @@ -143755,7 +143769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468337624, + "complete_object_locator": 6468341856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143764,25 +143778,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestTournamentGames", - "vtable_address": 6464949456, + "vtable_address": 6464953408, "methods": [ - 6446161648, - 6457189536, - 6446155968, - 6446156752, - 6446156784, - 6457189584, - 6457186560, - 6446156800, - 6446157856, + 6446161888, + 6457191728, + 6446155456, + 6446156864, 6446156896, - 6443742160, - 6446157680, - 6457190896, - 6457192720, - 6446158384, - 6446159792, - 6446159776 + 6457191776, + 6457188752, + 6446157184, + 6446157984, + 6446157264, + 6443742160, + 6446157792, + 6457193088, + 6457194912, + 6446158688, + 6446160176, + 6446160160 ], "bases": [ { @@ -143816,7 +143830,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468337760, + "complete_object_locator": 6468341992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143825,25 +143839,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt", - "vtable_address": 6465008520, - "methods": [ - 6446480848, - 6457189536, - 6446468016, - 6446469616, - 6446469872, - 6457189584, - 6457186560, - 6446470496, - 6446473648, - 6446471504, - 6443742160, - 6446473296, - 6457190896, - 6457192720, - 6446474816, - 6446474976, - 6446474944 + "vtable_address": 6465012616, + "methods": [ + 6446481232, + 6457191728, + 6446468400, + 6446470000, + 6446470256, + 6457191776, + 6457188752, + 6446470880, + 6446474032, + 6446471888, + 6443742160, + 6446473680, + 6457193088, + 6457194912, + 6446475200, + 6446475360, + 6446475328, + 6457189712, + 6446480848 ], "bases": [ { @@ -143877,7 +143893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468337896, + "complete_object_locator": 6468342128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143886,27 +143902,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2GCHello", - "vtable_address": 6464883008, - "methods": [ - 6445865248, - 6457189536, - 6445861200, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6445864016, - 6445864000, - 6457187520, - 6445864096 + "vtable_address": 6464887088, + "methods": [ + 6445865632, + 6457191728, + 6445861584, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6445864128, + 6445864112, + 6457189712, + 6445863440, + 6457189712, + 6445864464 ], "bases": [ { @@ -143954,7 +143972,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338032, + "complete_object_locator": 6468342264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -143963,25 +143981,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2ServerPing", - "vtable_address": 6464975248, - "methods": [ - 6446262448, - 6457189536, - 6446196176, - 6446196832, - 6446197232, - 6457189584, - 6457186560, - 6446197248, - 6446200464, - 6446198416, + "vtable_address": 6464979344, + "methods": [ + 6446262816, + 6457191728, + 6446196560, + 6446197184, + 6446197600, + 6457191776, + 6457188752, + 6446197616, + 6446200496, + 6446198512, 6443742160, - 6446199744, - 6457190896, - 6457192720, - 6446201920, - 6446202336, - 6446202320 + 6446199616, + 6457193088, + 6457194912, + 6446201456, + 6446202704, + 6446202672 ], "bases": [ { @@ -144015,7 +144033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338176, + "complete_object_locator": 6468342408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144024,27 +144042,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon", - "vtable_address": 6464922376, + "vtable_address": 6464926472, "methods": [ - 6445999504, - 6457189536, - 6445987120, - 6445987584, - 6445987968, - 6457189584, - 6457186560, - 6445988064, - 6445990048, - 6445988736, - 6443742160, - 6445989648, - 6457190896, - 6457192720, - 6445990880, - 6445991168, - 6445991088, - 6457388960, - 6457389040 + 6445999888, + 6457191728, + 6445987488, + 6445987952, + 6445988352, + 6457191776, + 6457188752, + 6445988368, + 6445990336, + 6445988976, + 6443742160, + 6445989888, + 6457193088, + 6457194912, + 6445990848, + 6445991536, + 6445991504, + 6457391152, + 6457391232 ], "bases": [ { @@ -144078,7 +144096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338312, + "complete_object_locator": 6468342544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144087,25 +144105,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientHello", - "vtable_address": 6464901256, + "vtable_address": 6464905208, "methods": [ - 6445920304, - 6457189536, - 6445872560, - 6445874000, - 6445875040, - 6457189584, - 6457186560, - 6445875056, - 6445880528, - 6445876608, + 6445920688, + 6457191728, + 6445872944, + 6445874384, + 6445875424, + 6457191776, + 6457188752, + 6445875440, + 6445880912, + 6445876992, 6443742160, - 6445878992, - 6457190896, - 6457192720, - 6445881472, - 6445884864, - 6445884768 + 6445879376, + 6457193088, + 6457194912, + 6445881856, + 6445885232, + 6445885136 ], "bases": [ { @@ -144139,7 +144157,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338448, + "complete_object_locator": 6468342680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144148,27 +144166,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve", - "vtable_address": 6465075976, + "vtable_address": 6465080072, "methods": [ - 6446659104, - 6457189536, - 6446641024, - 6446641552, - 6446641760, - 6457189584, - 6457186560, - 6446641776, - 6446644128, - 6446642272, + 6446659488, + 6457191728, + 6446641408, + 6446641936, + 6446642144, + 6457191776, + 6457188752, + 6446642160, + 6446644512, + 6446642656, 6443742160, - 6446643408, - 6457190896, - 6457192720, - 6446644768, - 6446646832, - 6446646816, - 6457187520, - 6446657264 + 6446643792, + 6457193088, + 6457194912, + 6446645152, + 6446647216, + 6446647200 ], "bases": [ { @@ -144202,7 +144218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338584, + "complete_object_locator": 6468342816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144211,25 +144227,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats", - "vtable_address": 6464984424, + "vtable_address": 6464988520, "methods": [ - 6446367328, - 6457189536, - 6446349328, - 6446349552, - 6446349616, - 6457189584, - 6457186560, - 6446349664, - 6446351488, - 6446349920, + 6446367712, + 6457191728, + 6446349712, + 6446349936, + 6446349984, + 6457191776, + 6457188752, + 6446350016, + 6446351664, + 6446350208, 6443742160, - 6446350928, - 6457190896, - 6457192720, - 6446353328, - 6446355728, - 6446354992 + 6446351104, + 6457193088, + 6457194912, + 6446352864, + 6446355216, + 6446355152 ], "bases": [ { @@ -144263,7 +144279,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338720, + "complete_object_locator": 6468342952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144272,25 +144288,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate", - "vtable_address": 6464979744, - "methods": [ - 6446329376, - 6457189536, - 6446275040, - 6446276592, - 6446277328, - 6457189584, - 6457186560, - 6446277360, - 6446284816, - 6446279024, - 6443742160, - 6446282992, - 6457190896, - 6457192720, - 6446286592, - 6446290512, - 6446290464 + "vtable_address": 6464983840, + "methods": [ + 6446329760, + 6457191728, + 6446275408, + 6446276752, + 6446277488, + 6457191776, + 6457188752, + 6446277664, + 6446285200, + 6446279408, + 6443742160, + 6446283376, + 6457193088, + 6457194912, + 6446286976, + 6446290896, + 6446290848 ], "bases": [ { @@ -144324,7 +144340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338856, + "complete_object_locator": 6468343088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144333,25 +144349,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note", - "vtable_address": 6464955112, - "methods": [ - 6446182832, - 6457189536, - 6446176416, - 6446177600, - 6446177632, - 6457189584, - 6457186560, - 6446177664, - 6446178976, - 6446177792, + "vtable_address": 6464959208, + "methods": [ + 6446183216, + 6457191728, + 6446176240, + 6446177968, + 6446178000, + 6457191776, + 6457188752, + 6446178048, + 6446179280, + 6446178176, 6443742160, - 6446178608, - 6457190896, - 6457192720, - 6446179520, - 6446179696, - 6446179680 + 6446178912, + 6457193088, + 6457194912, + 6446179904, + 6446180080, + 6446180064 ], "bases": [ { @@ -144385,7 +144401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468338992, + "complete_object_locator": 6468343224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144394,27 +144410,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm", - "vtable_address": 6464933816, + "vtable_address": 6464937912, "methods": [ - 6446105376, - 6457189536, - 6446092624, - 6446093104, - 6446093760, - 6457189584, - 6457186560, - 6446093776, - 6446095824, - 6446094416, + 6446105744, + 6457191728, + 6446092848, + 6446093488, + 6446094144, + 6457191776, + 6457188752, + 6446094160, + 6446096208, + 6446094800, 6443742160, - 6446095360, - 6457190896, - 6457192720, - 6446096368, - 6446096816, - 6446096800, - 6457187520, - 6446102992 + 6446095744, + 6457193088, + 6457194912, + 6446096752, + 6446097200, + 6446097184, + 6457189712, + 6446103584 ], "bases": [ { @@ -144448,7 +144464,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468339128, + "complete_object_locator": 6468343360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144457,27 +144473,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve", - "vtable_address": 6465028800, + "vtable_address": 6465032896, "methods": [ - 6446590800, - 6457189536, - 6446482944, - 6446484448, - 6446485104, - 6457189584, - 6457186560, - 6446485136, - 6446491520, - 6446486592, + 6446591184, + 6457191728, + 6446483328, + 6446484688, + 6446485344, + 6457191776, + 6457188752, + 6446485376, + 6446491904, + 6446486976, 6443742160, - 6446489376, - 6457190896, - 6457192720, - 6446491616, - 6446491728, - 6446491664, - 6457187520, - 6446586768 + 6446489760, + 6457193088, + 6457194912, + 6446492000, + 6446492112, + 6446492048, + 6457189712, + 6446587152 ], "bases": [ { @@ -144511,7 +144527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468339264, + "complete_object_locator": 6468343496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144520,29 +144536,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate", - "vtable_address": 6464926488, - "methods": [ - 6446040576, - 6457189536, - 6446032592, - 6446032832, - 6446032896, - 6457189584, - 6457186560, - 6446032912, - 6446033600, - 6446033120, + "vtable_address": 6464930584, + "methods": [ + 6446040112, + 6457191728, + 6446032880, + 6446033216, + 6446033280, + 6457191776, + 6457188752, + 6446033296, + 6446033984, + 6446033504, 6443742160, - 6446033488, - 6457190896, - 6457192720, - 6446033616, - 6446033648, - 6446033632, - 6457187520, - 6446036976, - 6457187520, - 6446037808 + 6446033872, + 6457193088, + 6457194912, + 6446034000, + 6446034032, + 6446034016, + 6457189712, + 6446037360, + 6457189712, + 6446037504 ], "bases": [ { @@ -144576,7 +144592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468339400, + "complete_object_locator": 6468343632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144585,27 +144601,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerReservationResponse", - "vtable_address": 6465073416, + "vtable_address": 6465077512, "methods": [ - 6446633776, - 6457189536, - 6446597456, - 6446598480, - 6446599328, - 6457189584, - 6457186560, - 6446599344, - 6446607056, - 6446601664, + 6446634160, + 6457191728, + 6446597840, + 6446598864, + 6446599712, + 6457191776, + 6457188752, + 6446599728, + 6446607440, + 6446602048, 6443742160, - 6446605328, - 6457190896, - 6457192720, - 6446607104, - 6446608128, - 6446608112, - 6457187520, - 6446630416 + 6446605712, + 6457193088, + 6457194912, + 6446607472, + 6446607824, + 6446607584, + 6457189712, + 6446630800, + 6457189712, + 6446631360 ], "bases": [ { @@ -144639,7 +144657,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468339536, + "complete_object_locator": 6468343768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144648,31 +144666,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats", - "vtable_address": 6464882144, + "vtable_address": 6464886240, "methods": [ - 6445852064, - 6457189536, - 6445789632, - 6445790720, - 6445791152, - 6457189584, - 6457186560, - 6445791168, - 6445801264, - 6445792848, + 6445852448, + 6457191728, + 6445789856, + 6445791104, + 6445791536, + 6457191776, + 6457188752, + 6445791552, + 6445801648, + 6445793232, 6443742160, - 6445797440, - 6457190896, - 6457192720, - 6445801296, - 6445802800, - 6445802784, - 6457187520, - 6445850304, - 6457187520, - 6445851712, - 6457187520, - 6445852304 + 6445797824, + 6457193088, + 6457194912, + 6445801680, + 6445803184, + 6445803168, + 6457189712, + 6445850528, + 6457189712, + 6445852096, + 6457189712, + 6445852688 ], "bases": [ { @@ -144706,7 +144724,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468339672, + "complete_object_locator": 6468343904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144715,25 +144733,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo", - "vtable_address": 6465077576, - "methods": [ - 6446677328, - 6457189536, - 6446665056, - 6446666368, - 6446666432, - 6457189584, - 6457186560, - 6446666448, - 6446667312, - 6446666496, + "vtable_address": 6465081672, + "methods": [ + 6446677712, + 6457191728, + 6446665136, + 6446666080, + 6446666128, + 6457191776, + 6457188752, + 6446666640, + 6446667680, + 6446666864, 6443742160, - 6446667136, - 6457190896, - 6457192720, - 6446668944, - 6446675248, - 6446673488 + 6446667504, + 6457193088, + 6457194912, + 6446669312, + 6446672912, + 6446672336 ], "bases": [ { @@ -144767,7 +144785,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468339808, + "complete_object_locator": 6468344040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144776,33 +144794,33 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStart", - "vtable_address": 6464947984, - "methods": [ - 6446149344, - 6457189536, - 6446130384, - 6446130816, - 6446130976, - 6457189584, - 6457186560, - 6446130992, - 6446133920, - 6446131840, - 6443742160, - 6446133184, - 6457190896, - 6457192720, - 6446134608, - 6446136320, - 6446135936, - 6457187520, - 6446147712, - 6457187520, - 6446148944, - 6457187520, - 6446150368, - 6457187520, - 6446151104 + "vtable_address": 6464952080, + "methods": [ + 6446149392, + 6457191728, + 6446130768, + 6446131184, + 6446131344, + 6457191776, + 6457188752, + 6446131376, + 6446133840, + 6446131936, + 6443742160, + 6446133104, + 6457193088, + 6457194912, + 6446134848, + 6446136256, + 6446136160, + 6457189712, + 6446147936, + 6457189712, + 6446149600, + 6457189712, + 6446150144, + 6457189712, + 6446151808 ], "bases": [ { @@ -144836,7 +144854,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468339944, + "complete_object_locator": 6468344176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144845,27 +144863,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStop", - "vtable_address": 6464949744, - "methods": [ - 6446165264, - 6457189536, - 6446158016, - 6446158528, - 6446158560, - 6457189584, - 6457186560, - 6446159088, - 6446160032, - 6446159376, - 6443742160, - 6446159856, - 6457190896, - 6457192720, - 6446160064, - 6446160176, - 6446160160, - 6457187520, - 6446160576 + "vtable_address": 6464953840, + "methods": [ + 6446165648, + 6457191728, + 6446158000, + 6446158848, + 6446158944, + 6457191776, + 6457188752, + 6446159472, + 6446160416, + 6446159760, + 6443742160, + 6446160240, + 6457193088, + 6457194912, + 6446160448, + 6446160560, + 6446160544, + 6457189712, + 6446160960 ], "bases": [ { @@ -144899,7 +144917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468340080, + "complete_object_locator": 6468344312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144908,31 +144926,31 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Invite", - "vtable_address": 6464901560, - "methods": [ - 6445926528, - 6457189536, - 6445913568, - 6445913664, - 6445913712, - 6457189584, - 6457186560, - 6445913728, - 6445914656, - 6445913840, - 6443742160, - 6445914384, - 6457190896, - 6457192720, - 6445915840, + "vtable_address": 6464905656, + "methods": [ + 6445926816, + 6457191728, + 6445913952, + 6445914048, + 6445914096, + 6457191776, + 6457188752, + 6445914112, + 6445915040, + 6445914224, + 6443742160, + 6445914768, + 6457193088, + 6457194912, + 6445916208, + 6445917152, 6445917136, - 6445917008, - 6457187520, - 6445919792, - 6457187520, - 6445920576, - 6457187520, - 6445921264 + 6457189712, + 6445920176, + 6457189712, + 6445920800, + 6457189712, + 6445921488 ], "bases": [ { @@ -144966,7 +144984,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468340216, + "complete_object_locator": 6468344448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -144975,25 +144993,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Register", - "vtable_address": 6464879536, + "vtable_address": 6464883632, "methods": [ - 6445828928, - 6457189536, - 6445810592, - 6445811680, - 6445811728, - 6457189584, - 6457186560, - 6445811744, - 6445815680, - 6445812384, + 6445829312, + 6457191728, + 6445810384, + 6445811808, + 6445812096, + 6457191776, + 6457188752, + 6445812128, + 6445816064, + 6445812752, 6443742160, - 6445814736, - 6457190896, - 6457192720, - 6445817360, - 6445820704, - 6445820688 + 6445815120, + 6457193088, + 6457194912, + 6445817664, + 6445821088, + 6445821072 ], "bases": [ { @@ -145027,7 +145045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468340352, + "complete_object_locator": 6468344584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145036,25 +145054,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Search", - "vtable_address": 6464881840, - "methods": [ - 6445851152, - 6457189536, - 6445832256, - 6445832992, - 6445833072, - 6457189584, - 6457186560, - 6445833104, - 6445835200, - 6445833344, + "vtable_address": 6464885936, + "methods": [ + 6445851536, + 6457191728, + 6445832640, + 6445833376, + 6445833456, + 6457191776, + 6457188752, + 6445833488, + 6445835568, + 6445833728, 6443742160, - 6445834480, - 6457190896, - 6457192720, - 6445835296, - 6445836304, - 6445836096 + 6445834848, + 6457193088, + 6457194912, + 6445835680, + 6445836080, + 6445836064, + 6457189712, + 6445847728 ], "bases": [ { @@ -145088,7 +145108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468340488, + "complete_object_locator": 6468344720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145097,29 +145117,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults", - "vtable_address": 6464898072, + "vtable_address": 6464902168, "methods": [ - 6445910112, - 6457189536, - 6445892432, - 6445892640, - 6445892800, - 6457189584, - 6457186560, + 6445910096, + 6457191728, 6445892816, - 6445893632, - 6445893072, - 6443742160, - 6445893488, - 6457190896, - 6457192720, - 6445893936, - 6445895232, - 6445895216, - 6457187520, - 6445903568, - 6457187520, - 6445903696 + 6445893024, + 6445893184, + 6457191776, + 6457188752, + 6445893200, + 6445894016, + 6445893456, + 6443742160, + 6445893872, + 6457193088, + 6457194912, + 6445894320, + 6445895616, + 6445895600, + 6457189712, + 6445903952, + 6457189712, + 6445904080 ], "bases": [ { @@ -145153,7 +145173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468340624, + "complete_object_locator": 6468344856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145162,25 +145182,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults_Entry", - "vtable_address": 6464884240, + "vtable_address": 6464888336, "methods": [ - 6445876448, - 6457189536, - 6445859920, - 6445860880, - 6445860928, - 6457189584, - 6457186560, - 6445860944, - 6445863280, - 6445861360, + 6445876832, + 6457191728, + 6445860080, + 6445860960, + 6445861008, + 6457191776, + 6457188752, + 6445861040, + 6445863424, + 6445861600, 6443742160, - 6445862528, - 6457190896, - 6457192720, - 6445863984, - 6445864544, - 6445864528 + 6445862672, + 6457193088, + 6457194912, + 6445864096, + 6445864928, + 6445864896 ], "bases": [ { @@ -145214,7 +145234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468340760, + "complete_object_locator": 6468344992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145223,25 +145243,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment", - "vtable_address": 6464879984, + "vtable_address": 6464884080, "methods": [ - 6445830288, - 6457189536, - 6445813984, - 6445817376, - 6445817472, - 6457189584, - 6457186560, - 6445817488, - 6445820544, - 6445817904, - 6443742160, - 6445819456, - 6457190896, - 6457192720, - 6445822208, - 6445822480, - 6445822464 + 6445830672, + 6457191728, + 6445814352, + 6445817680, + 6445817776, + 6457191776, + 6457188752, + 6445817808, + 6445820928, + 6445818288, + 6443742160, + 6445819840, + 6457193088, + 6457194912, + 6445822448, + 6445822864, + 6445822704 ], "bases": [ { @@ -145275,7 +145295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468340896, + "complete_object_locator": 6468345128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145284,27 +145304,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus", - "vtable_address": 6464881536, + "vtable_address": 6464885632, "methods": [ - 6445847200, - 6457189536, - 6445836752, + 6445847584, + 6457191728, + 6445836944, + 6445837520, 6445838144, - 6445838192, - 6457189584, - 6457186560, - 6445838208, - 6445839104, - 6445838304, + 6457191776, + 6457188752, + 6445838160, + 6445839472, + 6445838688, 6443742160, - 6445838816, - 6457190896, - 6457192720, - 6445839168, - 6445840272, - 6445840160, - 6457187520, - 6445845168 + 6445839184, + 6457193088, + 6457194912, + 6445839520, + 6445840432, + 6445840416, + 6457189712, + 6445845552 ], "bases": [ { @@ -145338,7 +145358,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341032, + "complete_object_locator": 6468345264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145347,25 +145367,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate", - "vtable_address": 6464877744, + "vtable_address": 6464881840, "methods": [ - 6445804752, - 6457189536, - 6446677680, - 6446678944, - 6446679472, - 6457189584, - 6457186560, - 6446680160, - 6446685024, - 6446681808, + 6445805136, + 6457191728, + 6446678064, + 6446679328, + 6446679856, + 6457191776, + 6457188752, + 6446680544, + 6446685392, + 6446682192, 6443742160, - 6446684160, - 6457190896, - 6457192720, - 6446685936, - 6445788064, - 6445788000 + 6446684528, + 6457193088, + 6457194912, + 6446686240, + 6445787216, + 6445787168 ], "bases": [ { @@ -145399,7 +145419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341168, + "complete_object_locator": 6468345400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145408,25 +145428,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayersProfile", - "vtable_address": 6465027040, + "vtable_address": 6465031136, "methods": [ - 6446569200, - 6457189536, - 6446541392, - 6446543792, - 6446544080, - 6457189584, - 6457186560, - 6446544256, - 6446547408, - 6446544944, + 6446569584, + 6457191728, + 6446541024, + 6446543536, + 6446543680, + 6457191776, + 6457188752, + 6446544832, + 6446548752, + 6446546768, 6443742160, - 6446547168, - 6457190896, - 6457192720, - 6446548560, - 6446548704, - 6446548672 + 6446548512, + 6457193088, + 6457194912, + 6446548960, + 6446549152, + 6446549072 ], "bases": [ { @@ -145460,7 +145480,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341304, + "complete_object_locator": 6468345536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145469,39 +145489,39 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions", - "vtable_address": 6465024912, - "methods": [ - 6446546912, - 6457189536, - 6446515360, - 6446515760, - 6446515936, - 6457189584, - 6457186560, - 6446515952, - 6446517456, - 6446516368, + "vtable_address": 6465029008, + "methods": [ + 6446547296, + 6457191728, + 6446515680, + 6446516128, + 6446516304, + 6457191776, + 6457188752, + 6446516320, + 6446517760, + 6446516752, 6443742160, - 6446517184, - 6457190896, - 6457192720, - 6446518720, - 6446522352, - 6446522336, - 6457187520, - 6446539904, - 6457187520, - 6446540880, - 6457187520, - 6446541072, - 6457187520, - 6446542864, - 6457187520, - 6446543328, - 6457187520, - 6446548848, - 6457388960, - 6457389040 + 6446517520, + 6457193088, + 6457194912, + 6446518752, + 6446522720, + 6446522704, + 6457189712, + 6446540432, + 6457189712, + 6446540720, + 6457189712, + 6446542016, + 6457189712, + 6446543200, + 6457189712, + 6446542736, + 6457189712, + 6446549232, + 6457391152, + 6457391232 ], "bases": [ { @@ -145535,7 +145555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341440, + "complete_object_locator": 6468345672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145544,25 +145564,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick", - "vtable_address": 6465012224, + "vtable_address": 6465016320, "methods": [ - 6446505280, - 6457189536, - 6446495264, - 6446495680, - 6446496224, - 6457189584, - 6457186560, - 6446496240, - 6446498192, - 6446496768, + 6446505664, + 6457191728, + 6446495648, + 6446496064, + 6446496608, + 6457191776, + 6457188752, + 6446496624, + 6446498576, + 6446497072, 6443742160, - 6446497584, - 6457190896, - 6457192720, - 6446498256, - 6446499872, - 6446498960 + 6446497904, + 6457193088, + 6457194912, + 6446498624, + 6446499360, + 6446499136 ], "bases": [ { @@ -145596,7 +145616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341576, + "complete_object_locator": 6468345808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145605,25 +145625,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary", - "vtable_address": 6465076776, + "vtable_address": 6465080872, "methods": [ - 6446669952, - 6457189536, - 6446630368, - 6446630704, - 6446630976, - 6457189584, - 6457186560, - 6446631152, - 6446633472, - 6446631856, + 6446670256, + 6457191728, + 6446630592, + 6446631088, + 6446631504, + 6457191776, + 6457188752, + 6446631584, + 6446633856, + 6446632160, 6443742160, - 6446633072, - 6457190896, - 6457192720, - 6446633744, - 6446634320, - 6446634304 + 6446633456, + 6457193088, + 6457194912, + 6446634128, + 6446634704, + 6446634688 ], "bases": [ { @@ -145657,7 +145677,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341712, + "complete_object_locator": 6468345944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145666,25 +145686,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap", - "vtable_address": 6465070040, - "methods": [ - 6446620672, - 6457189536, - 6446597440, - 6446597776, - 6446598464, - 6457189584, - 6457186560, - 6446598864, - 6446605312, - 6446600096, + "vtable_address": 6465074136, + "methods": [ + 6446621056, + 6457191728, + 6446597824, + 6446598160, + 6446598848, + 6457191776, + 6457188752, + 6446599248, + 6446605696, + 6446600480, 6443742160, - 6446603984, - 6457190896, - 6457192720, - 6446607088, - 6446608048, - 6446608032 + 6446604368, + 6457193088, + 6457194912, + 6446607456, + 6446607520, + 6446607504 ], "bases": [ { @@ -145718,7 +145738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341848, + "complete_object_locator": 6468346080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145727,25 +145747,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek", - "vtable_address": 6465028656, - "methods": [ - 6446590656, - 6457189536, - 6446579040, - 6446579152, - 6446579184, - 6457189584, - 6457186560, - 6446579200, - 6446580384, - 6446579344, + "vtable_address": 6465032752, + "methods": [ + 6446591040, + 6457191728, + 6446579424, + 6446579536, + 6446579568, + 6457191776, + 6457188752, + 6446579584, + 6446580768, + 6446579792, 6443742160, - 6446580000, - 6457190896, - 6457192720, - 6446580416, - 6446580848, - 6446580832 + 6446580384, + 6457193088, + 6457194912, + 6446580784, + 6446580960, + 6446580816 ], "bases": [ { @@ -145779,7 +145799,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468341984, + "complete_object_locator": 6468346216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145788,27 +145808,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_Server2GCClientValidate", - "vtable_address": 6464921384, - "methods": [ - 6445990896, - 6457189536, - 6445984768, - 6445984832, - 6445984864, - 6457189584, - 6457186560, - 6445984880, - 6445985648, - 6445985088, - 6443742160, + "vtable_address": 6464925480, + "methods": [ + 6445991280, + 6457191728, + 6445985152, + 6445985216, + 6445985248, + 6457191776, + 6457188752, + 6445985264, + 6445986032, 6445985472, - 6457190896, - 6457192720, - 6445985808, + 6443742160, 6445985856, - 6445985840, - 6457187520, - 6445987296 + 6457193088, + 6457194912, + 6445986192, + 6445986240, + 6445986224, + 6457189712, + 6445987520, + 6457189712, + 6445987728 ], "bases": [ { @@ -145842,7 +145864,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468342120, + "complete_object_locator": 6468346352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145851,25 +145873,25 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerNotificationForUserPenalty", - "vtable_address": 6464929672, + "vtable_address": 6464933768, "methods": [ - 6446066320, - 6457189536, - 6446052464, - 6446054976, + 6446066704, + 6457191728, + 6446052624, + 6446054960, 6446055616, - 6457189584, - 6457186560, - 6446056032, - 6446058704, - 6446057168, + 6457191776, + 6457188752, + 6446056096, + 6446059072, + 6446057536, 6443742160, - 6446058288, - 6457190896, - 6457192720, - 6446058864, - 6446060000, - 6446059984 + 6446058656, + 6457193088, + 6457194912, + 6446059168, + 6446060384, + 6446060368 ], "bases": [ { @@ -145903,7 +145925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468342256, + "complete_object_locator": 6468346488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145912,27 +145934,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerVarValueNotificationInfo", - "vtable_address": 6464885056, + "vtable_address": 6464889136, "methods": [ - 6445891424, - 6457189536, - 6445866992, - 6445869360, - 6445869456, - 6457189584, - 6457186560, - 6445869520, - 6445871920, - 6445869808, + 6445891728, + 6457191728, + 6445867488, + 6445869760, + 6445869840, + 6457191776, + 6457188752, + 6445869904, + 6445872144, + 6445870192, 6443742160, - 6445871360, - 6457190896, - 6457192720, - 6445872128, - 6445872256, - 6445872240, - 6457187520, - 6445890512 + 6445871584, + 6457193088, + 6457194912, + 6445872528, + 6445872640, + 6445872624, + 6457189712, + 6445889264, + 6457189712, + 6445890880 ], "bases": [ { @@ -145966,7 +145990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468342392, + "complete_object_locator": 6468346624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -145975,33 +145999,33 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetEventFavorite", - "vtable_address": 6464949904, - "methods": [ - 6446165536, - 6457189536, - 6446157424, - 6446158336, - 6446158400, - 6457189584, - 6457186560, - 6446158416, - 6446159760, - 6446158576, - 6443742160, - 6446159136, - 6457190896, - 6457192720, - 6446160048, - 6446160096, - 6446160080, - 6457187520, - 6446162272, - 6457187520, - 6446165776, - 6457187520, - 6446166064, - 6457187520, - 6446166752 + "vtable_address": 6464954000, + "methods": [ + 6446165888, + 6457191728, + 6446157776, + 6446158640, + 6446158704, + 6457191776, + 6457188752, + 6446158720, + 6446160144, + 6446158960, + 6443742160, + 6446159520, + 6457193088, + 6457194912, + 6446160432, + 6446160480, + 6446160464, + 6457189712, + 6446162512, + 6457189712, + 6446166160, + 6457189712, + 6446166640, + 6457189712, + 6446166448 ], "bases": [ { @@ -146035,7 +146059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468342528, + "complete_object_locator": 6468346760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146044,35 +146068,35 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName", - "vtable_address": 6465009144, - "methods": [ - 6446493776, - 6457189536, - 6446480448, - 6446480704, - 6446480768, - 6457189584, - 6457186560, - 6446480784, - 6446481488, - 6446481008, - 6443742160, - 6446481376, - 6457190896, - 6457192720, - 6446481520, - 6446481856, - 6446481824, - 6457187520, - 6446491680, - 6457187520, - 6446491840, - 6457187520, - 6446493936, - 6457187520, - 6446495360, - 6457187520, - 6446495568 + "vtable_address": 6465013240, + "methods": [ + 6446494160, + 6457191728, + 6446480832, + 6446481088, + 6446481152, + 6457191776, + 6457188752, + 6446481168, + 6446481872, + 6446481392, + 6443742160, + 6446481760, + 6457193088, + 6457194912, + 6446481904, + 6446482096, + 6446482064, + 6457189712, + 6446492064, + 6457189712, + 6446492224, + 6457189712, + 6446494352, + 6457189712, + 6446495728, + 6457189712, + 6446495952 ], "bases": [ { @@ -146106,7 +146130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468342664, + "complete_object_locator": 6468346896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146115,29 +146139,29 @@ }, { "type_name": "CMsgGCCStrike15_v2_WatchInfoUsers", - "vtable_address": 6465013696, - "methods": [ - 6446506960, - 6457189536, - 6446476448, - 6446477440, - 6446477776, - 6457189584, - 6457186560, - 6446478080, - 6446479872, - 6446478368, + "vtable_address": 6465017792, + "methods": [ + 6446507344, + 6457191728, + 6446476576, + 6446477216, + 6446477664, + 6457191776, + 6457188752, + 6446477680, + 6446480176, + 6446478432, 6443742160, - 6446479360, - 6457190896, - 6457192720, - 6446480112, - 6446480384, - 6446480368, - 6457388960, - 6457389040, - 6457187520, - 6446505456 + 6446479664, + 6457193088, + 6457194912, + 6446480496, + 6446480608, + 6446480592, + 6457391152, + 6457391232, + 6457189712, + 6446505840 ], "bases": [ { @@ -146171,7 +146195,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468342800, + "complete_object_locator": 6468347032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146180,31 +146204,31 @@ }, { "type_name": "CMsgGCClientDisplayNotification", - "vtable_address": 6465025760, - "methods": [ + "vtable_address": 6465029856, + "methods": [ + 6446559760, + 6457191728, + 6446536592, + 6446536912, + 6446537040, + 6457191776, + 6457188752, + 6446537056, + 6446538368, + 6446537392, + 6443742160, + 6446537936, + 6457193088, + 6457194912, + 6446538560, + 6446538688, + 6446538656, + 6457189712, + 6446556320, + 6457189712, 6446557552, - 6457189536, - 6446536208, - 6446536528, - 6446536656, - 6457189584, - 6457186560, - 6446536672, - 6446537984, - 6446537008, - 6443742160, - 6446537552, - 6457190896, - 6457192720, - 6446538016, - 6446538288, - 6446538272, - 6457187520, - 6446555936, - 6457187520, - 6446557168, - 6457187520, - 6446557440 + 6457189712, + 6446557824 ], "bases": [ { @@ -146238,7 +146262,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317552, + "complete_object_locator": 6468321784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146247,25 +146271,25 @@ }, { "type_name": "CMsgGCClientVersionUpdated", - "vtable_address": 6464950712, + "vtable_address": 6464957944, "methods": [ - 6446176272, - 6457189536, - 6446165520, + 6446177520, + 6457191728, 6446166128, - 6446166320, - 6457189584, - 6457186560, - 6446166336, - 6446168080, - 6446167104, + 6446166864, + 6446167072, + 6457191776, + 6457188752, + 6446167360, + 6446169168, + 6446168288, 6443742160, - 6446167904, - 6457190896, - 6457192720, - 6446168832, - 6446168960, - 6446168944 + 6446168992, + 6457193088, + 6457194912, + 6446169232, + 6446169424, + 6446169344 ], "bases": [ { @@ -146299,7 +146323,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317688, + "complete_object_locator": 6468321920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146308,25 +146332,25 @@ }, { "type_name": "CMsgGCCollectItem", - "vtable_address": 6464928936, - "methods": [ - 6446062768, - 6457189536, - 6446052048, - 6446052288, - 6446052336, - 6457189584, - 6457186560, - 6446052368, - 6446054064, - 6446052768, - 6443742160, - 6446053760, - 6457190896, - 6457192720, - 6446057152, - 6446058800, - 6446058784 + "vtable_address": 6464933032, + "methods": [ + 6446063680, + 6457191728, + 6446052528, + 6446053008, + 6446053104, + 6457191776, + 6457188752, + 6446053264, + 6446056528, + 6446054336, + 6443742160, + 6446056224, + 6457193088, + 6457194912, + 6446059104, + 6446059296, + 6446059200 ], "bases": [ { @@ -146360,7 +146384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317824, + "complete_object_locator": 6468322056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146369,25 +146393,25 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemFreeReward", - "vtable_address": 6464979456, + "vtable_address": 6464983552, "methods": [ - 6446326496, - 6457189536, - 6446309504, - 6446311648, - 6446311712, - 6457189584, - 6457186560, - 6446311728, - 6446317120, - 6446314048, + 6446326880, + 6457191728, + 6446309808, + 6446312032, + 6446312096, + 6457191776, + 6457188752, + 6446312112, + 6446317504, + 6446314432, 6443742160, - 6446316688, - 6457190896, - 6457192720, - 6446317152, - 6446317424, - 6446317408 + 6446317072, + 6457193088, + 6457194912, + 6446317536, + 6446317808, + 6446317792 ], "bases": [ { @@ -146421,7 +146445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468342936, + "complete_object_locator": 6468347168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146430,27 +146454,27 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemMissionReward", - "vtable_address": 6464977680, + "vtable_address": 6464981776, "methods": [ - 6446300672, - 6457189536, - 6446279008, - 6446286048, - 6446286208, - 6457189584, - 6457186560, - 6446286400, - 6446290032, - 6446287456, + 6446301056, + 6457191728, + 6446279392, + 6446286432, + 6446286592, + 6457191776, + 6457188752, + 6446286784, + 6446290416, + 6446287840, 6443742160, - 6446289312, - 6457190896, - 6457192720, - 6446291056, - 6446292096, - 6446292080, - 6457187520, - 6446299264 + 6446289696, + 6457193088, + 6457194912, + 6446291440, + 6446292480, + 6446292464, + 6457189712, + 6446299568 ], "bases": [ { @@ -146484,7 +146508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468343072, + "complete_object_locator": 6468347304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146493,29 +146517,29 @@ }, { "type_name": "CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded", - "vtable_address": 6464982696, - "methods": [ - 6446356256, - 6457189536, - 6446335376, - 6446336016, - 6446336192, - 6457189584, - 6457186560, - 6446336208, - 6446339376, - 6446336752, - 6443742160, - 6446338352, - 6457190896, - 6457192720, - 6446339472, - 6446339696, - 6446339680, - 6457187520, - 6446350720, - 6457187520, - 6446351648 + "vtable_address": 6464986792, + "methods": [ + 6446356192, + 6457191728, + 6446335760, + 6446336144, + 6446336336, + 6457191776, + 6457188752, + 6446336576, + 6446339760, + 6446337136, + 6443742160, + 6446338736, + 6457193088, + 6457194912, + 6446339856, + 6446340080, + 6446340064, + 6457189712, + 6446351680, + 6457189712, + 6446352496 ], "bases": [ { @@ -146549,7 +146573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468343208, + "complete_object_locator": 6468347440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146558,25 +146582,25 @@ }, { "type_name": "CMsgGCDev_SchemaReservationRequest", - "vtable_address": 6464925576, + "vtable_address": 6464929672, "methods": [ - 6446033872, - 6457189536, - 6446020608, - 6446020832, - 6446020944, - 6457189584, - 6457186560, - 6446020960, - 6446022160, - 6446021168, + 6446034256, + 6457191728, + 6446020992, + 6446021216, + 6446021328, + 6457191776, + 6457188752, + 6446021344, + 6446022544, + 6446021552, 6443742160, - 6446021792, - 6457190896, - 6457192720, - 6446023920, - 6446026528, - 6446026512 + 6446022176, + 6457193088, + 6457194912, + 6446024304, + 6446026912, + 6446026896 ], "bases": [ { @@ -146610,7 +146634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298560, + "complete_object_locator": 6468302792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146619,27 +146643,33 @@ }, { "type_name": "CMsgGCError", - "vtable_address": 6464971728, + "vtable_address": 6464975824, "methods": [ - 6446231632, - 6457189536, - 6446221072, - 6446225424, - 6446225520, - 6457189584, - 6457186560, - 6446225536, - 6446226192, - 6446225680, - 6443742160, + 6446233424, + 6457191728, + 6446221696, + 6446225904, + 6446225984, + 6457191776, + 6457188752, + 6446226016, + 6446226576, 6446226080, - 6457190896, - 6457192720, - 6446226208, - 6446226400, - 6446226384, - 6457388960, - 6457389040 + 6443742160, + 6446226464, + 6457193088, + 6457194912, + 6446226672, + 6446226784, + 6446226768, + 6457391152, + 6457391232, + 6457189712, + 6446231536, + 6457189712, + 6446231776, + 6457189712, + 6446231696 ], "bases": [ { @@ -146673,7 +146703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468317960, + "complete_object_locator": 6468322192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146682,25 +146712,25 @@ }, { "type_name": "CMsgGCGiftedItems", - "vtable_address": 6464923480, - "methods": [ - 6446007536, - 6457189536, - 6445995088, - 6445995904, - 6445995968, - 6457189584, - 6457186560, - 6445995984, - 6445998304, - 6445996672, - 6443742160, - 6445997696, - 6457190896, - 6457192720, - 6445999120, - 6445999328, - 6445999312 + "vtable_address": 6464927576, + "methods": [ + 6446007920, + 6457191728, + 6445995472, + 6445996288, + 6445996352, + 6457191776, + 6457188752, + 6445996368, + 6445998544, + 6445996912, + 6443742160, + 6445997936, + 6457193088, + 6457194912, + 6445999504, + 6445999712, + 6445999696 ], "bases": [ { @@ -146734,7 +146764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298696, + "complete_object_locator": 6468302928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146743,25 +146773,29 @@ }, { "type_name": "CMsgGCHAccountPhoneNumberChange", - "vtable_address": 6465003400, - "methods": [ - 6446424528, - 6457189536, - 6446410880, - 6446412544, - 6446412592, - 6457189584, - 6457186560, - 6446412624, - 6446415104, - 6446413104, - 6443742160, - 6446414544, - 6457190896, - 6457192720, - 6446416768, - 6446416832, - 6446416816 + "vtable_address": 6465007640, + "methods": [ + 6446424944, + 6457191728, + 6446411680, + 6446413264, + 6446413696, + 6457191776, + 6457188752, + 6446413984, + 6446416816, + 6446414832, + 6443742160, + 6446416368, + 6457193088, + 6457194912, + 6446417168, + 6446417296, + 6446417216, + 6457189712, + 6446421840, + 6457189712, + 6446422528 ], "bases": [ { @@ -146795,7 +146829,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314424, + "complete_object_locator": 6468318656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146804,33 +146838,33 @@ }, { "type_name": "CMsgGCHInviteUserToLobby", - "vtable_address": 6465005320, + "vtable_address": 6465009416, "methods": [ - 6446443408, - 6457189536, - 6446433152, - 6446433648, - 6446433712, - 6457189584, - 6457186560, - 6446433728, - 6446435664, - 6446433824, + 6446444528, + 6457191728, + 6446433904, + 6446434048, + 6446434464, + 6457191776, + 6457188752, + 6446434752, + 6446436624, + 6446435264, 6443742160, - 6446434976, - 6457190896, - 6457192720, - 6446436576, - 6446436976, - 6446436896, - 6457187520, - 6446441488, - 6457187520, - 6446442768, - 6457187520, - 6446444272, - 6457187520, - 6446445328 + 6446436320, + 6457193088, + 6457194912, + 6446437136, + 6446437360, + 6446437280, + 6457189712, + 6446441872, + 6457189712, + 6446443152, + 6457189712, + 6446445168, + 6457189712, + 6446445424 ], "bases": [ { @@ -146864,7 +146898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314560, + "complete_object_locator": 6468318792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146873,27 +146907,25 @@ }, { "type_name": "CMsgGCHRecurringSubscriptionStatusChange", - "vtable_address": 6465007064, + "vtable_address": 6465011160, "methods": [ - 6446467232, - 6457189536, - 6446453744, - 6446454272, - 6446454320, - 6457189584, - 6457186560, - 6446454336, - 6446456192, - 6446454976, + 6446467616, + 6457191728, + 6446454128, + 6446454656, + 6446454704, + 6457191776, + 6457188752, + 6446454720, + 6446456576, + 6446455360, 6443742160, - 6446455888, - 6457190896, - 6457192720, - 6446456224, - 6446456336, - 6446456320, - 6457187520, - 6446461664 + 6446456272, + 6457193088, + 6457194912, + 6446456608, + 6446456720, + 6446456704 ], "bases": [ { @@ -146927,7 +146959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314696, + "complete_object_locator": 6468318928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146936,25 +146968,25 @@ }, { "type_name": "CMsgGCHVacVerificationChange", - "vtable_address": 6464989640, - "methods": [ - 6446404608, - 6457189536, - 6446391792, - 6446392240, - 6446392688, - 6457189584, - 6457186560, - 6446392976, - 6446397664, - 6446394272, - 6443742160, - 6446397040, - 6457190896, - 6457192720, - 6446400736, - 6446401344, - 6446401248 + "vtable_address": 6464993736, + "methods": [ + 6446405552, + 6457191728, + 6446392368, + 6446394080, + 6446394144, + 6457191776, + 6457188752, + 6446395936, + 6446400704, + 6446398560, + 6443742160, + 6446399648, + 6457193088, + 6457194912, + 6446401584, + 6446401952, + 6446401872 ], "bases": [ { @@ -146988,7 +147020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314832, + "complete_object_locator": 6468319064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -146997,25 +147029,25 @@ }, { "type_name": "CMsgGCIncrementKillCountResponse", - "vtable_address": 6465032136, + "vtable_address": 6465036232, "methods": [ - 6446591808, - 6457189536, - 6446580816, - 6446582384, - 6446582416, - 6457189584, - 6457186560, - 6446582720, - 6446584896, - 6446583264, + 6446593072, + 6457191728, + 6446581296, + 6446583408, + 6446583440, + 6457191776, + 6457188752, + 6446583456, + 6446585600, + 6446584256, 6443742160, - 6446584432, - 6457190896, - 6457192720, - 6446585456, - 6446586224, - 6446586208 + 6446585136, + 6457193088, + 6457194912, + 6446586000, + 6446586832, + 6446586816 ], "bases": [ { @@ -147049,7 +147081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468318096, + "complete_object_locator": 6468322328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147058,29 +147090,29 @@ }, { "type_name": "CMsgGCItemCustomizationNotification", - "vtable_address": 6464932712, - "methods": [ - 6446096640, - 6457189536, - 6446083232, - 6446083840, - 6446083904, - 6457189584, - 6457186560, - 6446083936, - 6446085456, - 6446084096, + "vtable_address": 6464936808, + "methods": [ + 6446097024, + 6457191728, + 6446083168, + 6446084224, + 6446084288, + 6457191776, + 6457188752, + 6446084304, + 6446085840, + 6446084464, 6443742160, - 6446084976, - 6457190896, - 6457192720, - 6446085552, - 6446085600, - 6446085584, - 6457187520, - 6446093008, - 6457187520, - 6446094272 + 6446085360, + 6457193088, + 6457194912, + 6446085856, + 6446085984, + 6446085968, + 6457189712, + 6446093392, + 6457189712, + 6446094656 ], "bases": [ { @@ -147114,7 +147146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298832, + "complete_object_locator": 6468303064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147123,31 +147155,27 @@ }, { "type_name": "CMsgGCItemPreviewItemBoughtNotification", - "vtable_address": 6465077240, - "methods": [ - 6446676848, - 6457189536, - 6446663888, - 6446663968, - 6446664016, - 6457189584, - 6457186560, - 6446664096, - 6446664704, - 6446664144, - 6443742160, + "vtable_address": 6465081352, + "methods": [ + 6446677312, + 6457191728, + 6446664288, + 6446664432, + 6446664464, + 6457191776, + 6457188752, + 6446664480, + 6446665088, 6446664528, - 6457190896, - 6457192720, - 6446664720, - 6446664768, - 6446664752, - 6457187520, - 6446666912, - 6457187520, - 6446668592, - 6457187520, - 6446670320 + 6443742160, + 6446664912, + 6457193088, + 6457194912, + 6446665104, + 6446665168, + 6446665152, + 6457189712, + 6446668960 ], "bases": [ { @@ -147181,7 +147209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468318232, + "complete_object_locator": 6468322464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147190,25 +147218,25 @@ }, { "type_name": "CMsgGCMultiplexMessage", - "vtable_address": 6464974304, + "vtable_address": 6464978400, "methods": [ - 6446255648, - 6457189536, - 6446240032, - 6446241536, - 6446241808, - 6457189584, - 6457186560, - 6446241824, - 6446243088, - 6446242000, + 6446257024, + 6457191728, + 6446240832, + 6446242080, + 6446242192, + 6457191776, + 6457188752, + 6446242208, + 6446243472, + 6446242400, 6443742160, - 6446242736, - 6457190896, - 6457192720, - 6446243168, - 6446243440, - 6446243424 + 6446243120, + 6457193088, + 6457194912, + 6446243776, + 6446244512, + 6446244400 ], "bases": [ { @@ -147242,7 +147270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308824, + "complete_object_locator": 6468313056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147251,29 +147279,29 @@ }, { "type_name": "CMsgGCMultiplexMessage_Response", - "vtable_address": 6464976624, + "vtable_address": 6464980720, "methods": [ - 6446275232, - 6457189536, - 6446263920, + 6446277504, + 6457191728, 6446264464, - 6446264496, - 6457189584, - 6457186560, - 6446264512, - 6446265312, - 6446264576, + 6446264864, + 6446264896, + 6457191776, + 6457188752, + 6446265072, + 6446265840, + 6446265120, 6443742160, - 6446265136, - 6457190896, - 6457192720, - 6446265664, - 6446266624, - 6446266592, - 6457187520, - 6446268736, - 6457187520, - 6446269952 + 6446265648, + 6457193088, + 6457194912, + 6446266560, + 6446267856, + 6446267616, + 6457189712, + 6446269200, + 6457189712, + 6446269616 ], "bases": [ { @@ -147307,7 +147335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468308960, + "complete_object_locator": 6468313192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147316,29 +147344,27 @@ }, { "type_name": "CMsgGCNameItemNotification", - "vtable_address": 6465021328, - "methods": [ - 6446524992, - 6457189536, - 6446511200, - 6446512176, - 6446512288, - 6457189584, - 6457186560, - 6446512320, - 6446513680, - 6446512496, - 6443742160, - 6446513408, - 6457190896, - 6457192720, - 6446513968, - 6446514400, - 6446514368, - 6457187520, - 6446522688, - 6457187520, - 6446523920 + "vtable_address": 6465025440, + "methods": [ + 6446525472, + 6457191728, + 6446511600, + 6446512656, + 6446513120, + 6457191776, + 6457188752, + 6446513136, + 6446514272, + 6446513456, + 6443742160, + 6446514000, + 6457193088, + 6457194912, + 6446514464, + 6446515696, + 6446515648, + 6457189712, + 6446524064 ], "bases": [ { @@ -147372,7 +147398,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468318368, + "complete_object_locator": 6468322600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147381,29 +147407,29 @@ }, { "type_name": "CMsgGCReportAbuse", - "vtable_address": 6465008200, + "vtable_address": 6465012296, "methods": [ - 6446480208, - 6457189536, - 6446460624, - 6446461888, - 6446461968, - 6457189584, - 6457186560, - 6446461984, - 6446464352, - 6446462240, + 6446480672, + 6457191728, + 6446461696, + 6446462288, + 6446462368, + 6457191776, + 6457188752, + 6446462384, + 6446464736, + 6446462624, 6443742160, - 6446463760, - 6457190896, - 6457192720, - 6446466272, - 6446467408, - 6446467392, - 6457187520, - 6446476464, - 6457187520, - 6446477216 + 6446464144, + 6457193088, + 6457194912, + 6446466656, + 6446467984, + 6446467968, + 6457189712, + 6446476848, + 6457189712, + 6446476976 ], "bases": [ { @@ -147437,7 +147463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468318504, + "complete_object_locator": 6468322736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147446,27 +147472,25 @@ }, { "type_name": "CMsgGCReportAbuseResponse", - "vtable_address": 6465009992, + "vtable_address": 6465015056, "methods": [ - 6446504896, - 6457189536, - 6446492800, - 6446494096, - 6446494192, - 6457189584, - 6457186560, - 6446494208, - 6446495136, - 6446494352, + 6446505424, + 6457191728, + 6446493872, + 6446494512, + 6446494592, + 6457191776, + 6457188752, + 6446494608, + 6446495632, + 6446494768, 6443742160, - 6446494864, - 6457190896, - 6457192720, - 6446495344, - 6446496464, - 6446496448, - 6457388960, - 6457389040 + 6446495360, + 6457193088, + 6457194912, + 6446495936, + 6446498512, + 6446497888 ], "bases": [ { @@ -147500,7 +147524,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468318640, + "complete_object_locator": 6468322872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147509,29 +147533,27 @@ }, { "type_name": "CMsgGCRequestAnnouncements", - "vtable_address": 6464884880, - "methods": [ - 6445889312, - 6457189536, - 6445884448, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6445886272, - 6445886032, - 6457187520, - 6445886048, - 6457187520, - 6445888880 + "vtable_address": 6464888976, + "methods": [ + 6445889696, + 6457191728, + 6445885456, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6445886752, + 6445886496, + 6457189712, + 6445886512 ], "bases": [ { @@ -147579,7 +147601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468318776, + "complete_object_locator": 6468323008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147588,29 +147610,27 @@ }, { "type_name": "CMsgGCRequestAnnouncementsResponse", - "vtable_address": 6464897896, - "methods": [ - 6445903200, - 6457189536, - 6445896608, - 6445897440, - 6445897712, - 6457189584, - 6457186560, - 6445897744, - 6445898640, - 6445897968, + "vtable_address": 6464902008, + "methods": [ + 6445903664, + 6457191728, + 6445897120, + 6445897952, + 6445898112, + 6457191776, + 6457188752, + 6445898128, + 6445899024, + 6445898368, 6443742160, - 6445898416, - 6457190896, - 6457192720, - 6445898832, - 6445898960, - 6445898928, - 6457187520, - 6445901408, - 6457187520, - 6445901248 + 6445898800, + 6457193088, + 6457194912, + 6445899296, + 6445899408, + 6445899392, + 6457189712, + 6445901840 ], "bases": [ { @@ -147644,7 +147664,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468318920, + "complete_object_locator": 6468323152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147653,27 +147673,27 @@ }, { "type_name": "CMsgGCRequestSessionIP", - "vtable_address": 6465002648, + "vtable_address": 6465006744, "methods": [ - 6446418272, - 6457189536, - 6446408880, - 6446409312, - 6446409360, - 6457189584, - 6457186560, - 6446409504, - 6446412128, - 6446410896, + 6446418656, + 6457191728, + 6446409264, + 6446410592, + 6446410624, + 6457191776, + 6457188752, + 6446410640, + 6446412784, + 6446411696, 6443742160, - 6446412016, - 6457190896, - 6457192720, - 6446412768, - 6446416208, - 6446415744, - 6457187520, - 6446417072 + 6446412672, + 6457193088, + 6457194912, + 6446414128, + 6446417088, + 6446417072, + 6457189712, + 6446417456 ], "bases": [ { @@ -147707,7 +147727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468309096, + "complete_object_locator": 6468313328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147716,25 +147736,29 @@ }, { "type_name": "CMsgGCRequestSessionIPResponse", - "vtable_address": 6465004520, - "methods": [ - 6446436256, - 6457189536, - 6446425168, - 6446425232, - 6446425264, - 6457189584, - 6457186560, - 6446425280, - 6446425760, - 6446425312, - 6443742160, + "vtable_address": 6465008760, + "methods": [ + 6446436992, + 6457191728, + 6446425552, + 6446425616, 6446425648, - 6457190896, - 6457192720, - 6446425808, - 6446429872, - 6446428880 + 6457191776, + 6457188752, + 6446425664, + 6446426160, + 6446425712, + 6443742160, + 6446426048, + 6457193088, + 6457194912, + 6446427520, + 6446430832, + 6446430208, + 6457189712, + 6446433952, + 6457189712, + 6446434096 ], "bases": [ { @@ -147768,7 +147792,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468309232, + "complete_object_locator": 6468313464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147777,27 +147801,25 @@ }, { "type_name": "CMsgGCServerVersionUpdated", - "vtable_address": 6464948672, - "methods": [ - 6446157872, - 6457189536, - 6446150176, - 6446151152, - 6446151184, - 6457189584, - 6457186560, - 6446151504, - 6446152144, - 6446151568, - 6443742160, + "vtable_address": 6464952768, + "methods": [ + 6446158496, + 6457191728, + 6446150784, + 6446151856, + 6446151888, + 6457191776, + 6457188752, + 6446151904, + 6446152544, 6446151968, - 6457190896, - 6457192720, - 6446152240, - 6446152352, - 6446152336, - 6457187520, - 6446155248 + 6443742160, + 6446152368, + 6457193088, + 6457194912, + 6446152704, + 6446152736, + 6446152720 ], "bases": [ { @@ -147831,7 +147853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468319056, + "complete_object_locator": 6468323288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147840,25 +147862,27 @@ }, { "type_name": "CMsgGCShowItemsPickedUp", - "vtable_address": 6465027344, - "methods": [ - 6446572736, - 6457189536, - 6446566320, - 6446568064, - 6446568112, - 6457189584, - 6457186560, - 6446568128, - 6446568704, - 6446568256, + "vtable_address": 6465031584, + "methods": [ + 6446573760, + 6457191728, + 6446566976, + 6446568464, + 6446568496, + 6457191776, + 6457188752, + 6446568528, + 6446569088, + 6446568656, 6443742160, - 6446568592, - 6457190896, - 6457192720, - 6446568800, - 6446569120, - 6446569104 + 6446568976, + 6457193088, + 6457194912, + 6446569472, + 6446569504, + 6446569488, + 6457189712, + 6446570656 ], "bases": [ { @@ -147892,7 +147916,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468319192, + "complete_object_locator": 6468323424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147901,27 +147925,27 @@ }, { "type_name": "CMsgGCStorePurchaseCancel", - "vtable_address": 6464877008, + "vtable_address": 6464881104, "methods": [ - 6445803888, - 6457189536, - 6446685808, - 6446686176, - 6446686208, - 6457189584, - 6457186560, + 6445804272, + 6457191728, 6446686224, - 6445788368, - 6445787328, + 6445787120, + 6445787184, + 6457191776, + 6457188752, + 6445787280, + 6445788928, + 6445787888, 6443742160, - 6445788192, - 6457190896, - 6457192720, - 6445788704, - 6445789568, - 6445789552, - 6457187520, - 6445801312 + 6445788752, + 6457193088, + 6457194912, + 6445789680, + 6445789984, + 6445789968, + 6457189712, + 6445801696 ], "bases": [ { @@ -147955,7 +147979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468319328, + "complete_object_locator": 6468323560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -147964,27 +147988,27 @@ }, { "type_name": "CMsgGCStorePurchaseCancelResponse", - "vtable_address": 6464878400, - "methods": [ - 6445820768, - 6457189536, - 6445805312, - 6445807216, - 6445807264, - 6457189584, - 6457186560, - 6445807280, - 6445807952, - 6445807328, - 6443742160, - 6445807776, - 6457190896, - 6457192720, - 6445808896, - 6445809904, + "vtable_address": 6464882656, + "methods": [ + 6445822544, + 6457191728, + 6445806880, + 6445807600, + 6445807664, + 6457191776, + 6457188752, + 6445807680, + 6445808768, + 6445807920, + 6443742160, + 6445808592, + 6457193088, + 6457194912, 6445809888, - 6457187520, - 6445811456 + 6445810304, + 6445810288, + 6457189712, + 6445812448 ], "bases": [ { @@ -148018,7 +148042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468319464, + "complete_object_locator": 6468323696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148027,25 +148051,25 @@ }, { "type_name": "CMsgGCStorePurchaseFinalize", - "vtable_address": 6464879840, - "methods": [ - 6445830144, - 6457189536, - 6445826112, - 6445826272, - 6445826304, - 6457189584, - 6457186560, - 6445826320, - 6445827360, - 6445826688, + "vtable_address": 6464883936, + "methods": [ + 6445830528, + 6457191728, + 6445826512, + 6445827088, + 6445827120, + 6457191776, + 6457188752, + 6445827136, + 6445828640, + 6445827744, 6443742160, - 6445827184, - 6457190896, - 6457192720, - 6445828272, 6445828464, - 6445828448 + 6457193088, + 6457194912, + 6445828672, + 6445828928, + 6445828912 ], "bases": [ { @@ -148079,7 +148103,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468319600, + "complete_object_locator": 6468323832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148088,25 +148112,25 @@ }, { "type_name": "CMsgGCStorePurchaseFinalizeResponse", - "vtable_address": 6464881696, + "vtable_address": 6464885792, "methods": [ - 6445849216, - 6457189536, - 6445836288, - 6445836672, + 6445850880, + 6457191728, 6445836736, - 6457189584, - 6457186560, - 6445836768, - 6445838048, - 6445836880, - 6443742160, - 6445837648, - 6457190896, - 6457192720, - 6445838800, - 6445839184, - 6445839136 + 6445837072, + 6445837136, + 6457191776, + 6457188752, + 6445837152, + 6445838672, + 6445837568, + 6443742160, + 6445838272, + 6457193088, + 6457194912, + 6445839488, + 6445839968, + 6445839712 ], "bases": [ { @@ -148140,7 +148164,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468319736, + "complete_object_locator": 6468323968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148149,25 +148173,25 @@ }, { "type_name": "CMsgGCStorePurchaseInit", - "vtable_address": 6464983832, - "methods": [ - 6446365920, - 6457189536, - 6446332016, - 6446332272, - 6446332480, - 6457189584, - 6457186560, - 6446332496, - 6446334608, - 6446333360, + "vtable_address": 6464988072, + "methods": [ + 6446367088, + 6457191728, + 6446332416, + 6446333040, + 6446333408, + 6457191776, + 6457188752, + 6446333424, + 6446335712, + 6446334432, 6443742160, - 6446334224, - 6457190896, - 6457192720, - 6446335344, - 6446335408, - 6446335392 + 6446335328, + 6457193088, + 6457194912, + 6446335744, + 6446336352, + 6446336320 ], "bases": [ { @@ -148201,7 +148225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468319872, + "complete_object_locator": 6468324104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148210,27 +148234,27 @@ }, { "type_name": "CMsgGCStorePurchaseInitResponse", - "vtable_address": 6464986184, - "methods": [ - 6446386944, - 6457189536, - 6446374704, - 6446375184, - 6446375328, - 6457189584, - 6457186560, - 6446375680, - 6446378880, + "vtable_address": 6464990280, + "methods": [ + 6446387664, + 6457191728, + 6446375152, + 6446376400, + 6446376512, + 6457191776, + 6457188752, 6446376688, + 6446379904, + 6446377840, 6443742160, - 6446378400, - 6457190896, - 6457192720, - 6446379792, - 6446381760, - 6446381680, - 6457187520, - 6446385952 + 6446379440, + 6457193088, + 6457194912, + 6446381840, + 6446382240, + 6446382192, + 6457189712, + 6446386336 ], "bases": [ { @@ -148264,7 +148288,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320008, + "complete_object_locator": 6468324240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148273,27 +148297,25 @@ }, { "type_name": "CMsgGCToClientSteamDatagramTicket", - "vtable_address": 6464924904, + "vtable_address": 6464928856, "methods": [ - 6446026848, - 6457189536, - 6446010736, - 6446012128, + 6446027072, + 6457191728, + 6446010912, + 6446012112, 6446012352, - 6457189584, - 6457186560, - 6446012480, - 6446014176, - 6446012848, + 6457191776, + 6457188752, + 6446012464, + 6446014560, + 6446013216, 6443742160, - 6446014064, - 6457190896, - 6457192720, - 6446016976, - 6446020128, - 6446020112, - 6457187520, - 6446022176 + 6446014448, + 6457193088, + 6457194912, + 6446017280, + 6446020512, + 6446020496 ], "bases": [ { @@ -148327,7 +148349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468343344, + "complete_object_locator": 6468347576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148336,31 +148358,29 @@ }, { "type_name": "CMsgGCToGCBannedWordListBroadcast", - "vtable_address": 6464910408, - "methods": [ - 6445983616, - 6457189536, - 6445967616, - 6445967968, - 6445968720, - 6457189584, - 6457186560, - 6445969216, - 6445973664, - 6445970416, - 6443742160, - 6445973552, - 6457190896, - 6457192720, - 6445975888, - 6445976832, - 6445976816, - 6457187520, - 6445980240, - 6457187520, - 6445981392, - 6457187520, - 6445983456 + "vtable_address": 6464914520, + "methods": [ + 6445984448, + 6457191728, + 6445968016, + 6445970640, + 6445970720, + 6457191776, + 6457188752, + 6445973472, + 6445976240, + 6445975728, + 6443742160, + 6445976128, + 6457193088, + 6457194912, + 6445976432, + 6445977936, + 6445977760, + 6457189712, + 6445981776, + 6457189712, + 6445983840 ], "bases": [ { @@ -148394,7 +148414,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320144, + "complete_object_locator": 6468324376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148403,29 +148423,27 @@ }, { "type_name": "CMsgGCToGCBannedWordListUpdated", - "vtable_address": 6464922024, - "methods": [ - 6445996528, - 6457189536, - 6445987136, - 6445988304, - 6445989424, - 6457189584, - 6457186560, - 6445989440, - 6445990848, - 6445990064, + "vtable_address": 6464926136, + "methods": [ + 6445999040, + 6457191728, + 6445988256, + 6445990352, + 6445990384, + 6457191776, + 6457188752, + 6445990400, + 6445991264, + 6445990464, 6443742160, - 6445990672, - 6457190896, - 6457192720, - 6445991040, - 6445991408, - 6445991392, - 6457187520, - 6445993200, - 6457187520, - 6445994784 + 6445991088, + 6457193088, + 6457194912, + 6445991520, + 6445991792, + 6445991776, + 6457189712, + 6445994944 ], "bases": [ { @@ -148459,7 +148477,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320280, + "complete_object_locator": 6468324512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148468,29 +148486,29 @@ }, { "type_name": "CMsgGCToGCBroadcastConsoleCommand", - "vtable_address": 6464946800, + "vtable_address": 6464950896, "methods": [ - 6446144672, - 6457189536, - 6446134304, - 6446134880, - 6446134976, - 6457189584, - 6457186560, - 6446135152, - 6446136976, - 6446135952, + 6446145072, + 6457191728, + 6446134864, + 6446136176, + 6446136320, + 6457191776, + 6457188752, + 6446136336, + 6446137408, + 6446136880, 6443742160, - 6446136864, - 6457190896, - 6457192720, - 6446137136, - 6446140800, - 6446139520, - 6457187520, - 6446143792, - 6457187520, - 6446144864 + 6446137296, + 6457193088, + 6457194912, + 6446138064, + 6446142560, + 6446141904, + 6457189712, + 6446144176, + 6457189712, + 6446145248 ], "bases": [ { @@ -148524,7 +148542,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320416, + "complete_object_locator": 6468324648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148533,25 +148551,25 @@ }, { "type_name": "CMsgGCToGCDirtyMultipleSDOCache", - "vtable_address": 6464926040, - "methods": [ - 6446037200, - 6457189536, - 6446027792, - 6446028672, - 6446028768, - 6457189584, - 6457186560, - 6446029072, - 6446032336, - 6446030528, - 6443742160, - 6446032000, - 6457190896, - 6457192720, + "vtable_address": 6464930280, + "methods": [ + 6446037776, + 6457191728, + 6446028528, + 6446029952, + 6446030032, + 6457191776, + 6457188752, + 6446030304, + 6446032800, + 6446031600, + 6443742160, 6446032464, - 6446032672, - 6446032512 + 6457193088, + 6457194912, + 6446032848, + 6446033056, + 6446032976 ], "bases": [ { @@ -148585,7 +148603,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320552, + "complete_object_locator": 6468324784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148594,25 +148612,33 @@ }, { "type_name": "CMsgGCToGCDirtySDOCache", - "vtable_address": 6464924072, - "methods": [ - 6446011808, - 6457189536, - 6446005856, - 6446006304, - 6446006352, - 6457189584, - 6457186560, - 6446006384, - 6446007408, - 6446006544, - 6443742160, - 6446007120, - 6457190896, - 6457192720, - 6446007424, - 6446007472, - 6446007440 + "vtable_address": 6464928312, + "methods": [ + 6446012704, + 6457191728, + 6446006416, + 6446006768, + 6446006816, + 6457191776, + 6457188752, + 6446006832, + 6446007792, + 6446006928, + 6443742160, + 6446007504, + 6457193088, + 6457194912, + 6446007808, + 6446007856, + 6446007840, + 6457189712, + 6446009392, + 6457189712, + 6446010768, + 6457189712, + 6446011792, + 6457189712, + 6446012192 ], "bases": [ { @@ -148646,7 +148672,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320688, + "complete_object_locator": 6468324920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148655,27 +148681,27 @@ }, { "type_name": "CMsgGCToGCIsTrustedServer", - "vtable_address": 6464933976, + "vtable_address": 6464938072, "methods": [ - 6446107312, - 6457189536, - 6446099104, - 6446100800, - 6446100832, - 6457189584, - 6457186560, - 6446100864, - 6446101760, - 6446101328, + 6446108048, + 6457191728, + 6446100032, + 6446101632, + 6446101664, + 6457191776, + 6457188752, + 6446101680, + 6446102624, + 6446102096, 6443742160, - 6446101648, - 6457190896, - 6457192720, - 6446102656, - 6446103888, - 6446103712, - 6457187520, - 6446105616 + 6446102512, + 6457193088, + 6457194912, + 6446103424, + 6446104272, + 6446104256, + 6457189712, + 6446106000 ], "bases": [ { @@ -148709,7 +148735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320824, + "complete_object_locator": 6468325056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148718,25 +148744,27 @@ }, { "type_name": "CMsgGCToGCIsTrustedServerResponse", - "vtable_address": 6464942768, - "methods": [ - 6446122480, - 6457189536, - 6446116656, - 6446117136, - 6446117168, - 6457189584, - 6457186560, - 6446117184, - 6446117760, - 6446117216, + "vtable_address": 6464947008, + "methods": [ + 6446123440, + 6457191728, + 6446117120, + 6446117520, + 6446117568, + 6457191776, + 6457188752, + 6446117584, + 6446118240, + 6446117616, 6443742160, - 6446117648, - 6457190896, - 6457192720, - 6446117952, - 6446119280, - 6446119072 + 6446118128, + 6457193088, + 6457194912, + 6446118768, + 6446119680, + 6446119472, + 6457391152, + 6457391232 ], "bases": [ { @@ -148770,7 +148798,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468320960, + "complete_object_locator": 6468325192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148779,25 +148807,25 @@ }, { "type_name": "CMsgGCToGCRequestPassportItemGrant", - "vtable_address": 6464965824, + "vtable_address": 6464969920, "methods": [ - 6446214464, - 6457189536, - 6446196752, - 6446200432, - 6446200480, - 6457189584, - 6457186560, - 6446200912, - 6446202272, - 6446201392, + 6446215040, + 6457191728, + 6446198496, + 6446200992, + 6446201024, + 6457191776, + 6457188752, + 6446201472, + 6446202656, + 6446201792, 6443742160, - 6446201936, - 6457190896, - 6457192720, - 6446202304, - 6446202496, - 6446202480 + 6446202320, + 6457193088, + 6457194912, + 6446202768, + 6446202880, + 6446202864 ], "bases": [ { @@ -148831,7 +148859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468321096, + "complete_object_locator": 6468325328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148840,25 +148868,25 @@ }, { "type_name": "CMsgGCToGCUpdateSQLKeyValue", - "vtable_address": 6464932056, - "methods": [ - 6446088416, - 6457189536, - 6446082448, - 6446082720, - 6446082784, - 6457189584, - 6457186560, - 6446082800, - 6446083360, - 6446082864, + "vtable_address": 6464936152, + "methods": [ + 6446089632, + 6457191728, + 6446082992, + 6446083104, + 6446083184, + 6457191776, + 6457188752, + 6446083200, + 6446084208, + 6446083424, 6443742160, - 6446083248, - 6457190896, - 6457192720, - 6446083920, - 6446085488, - 6446085472 + 6446084096, + 6457193088, + 6457194912, + 6446085344, + 6446085888, + 6446085872 ], "bases": [ { @@ -148892,7 +148920,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468321232, + "complete_object_locator": 6468325464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148901,25 +148929,25 @@ }, { "type_name": "CMsgGCToGCWebAPIAccountChanged", - "vtable_address": 6464955400, - "methods": [ - 6446183152, - 6457189536, - 6446181584, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446182192, - 6446182144 + "vtable_address": 6464959576, + "methods": [ + 6446183536, + 6457191728, + 6446182432, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446182656, + 6446182544 ], "bases": [ { @@ -148967,7 +148995,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468321368, + "complete_object_locator": 6468325600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -148976,27 +149004,27 @@ }, { "type_name": "CMsgGCUpdateSessionIP", - "vtable_address": 6464989480, + "vtable_address": 6464993576, "methods": [ - 6446404128, - 6457189536, - 6446391776, - 6446392176, - 6446392288, - 6457189584, - 6457186560, - 6446392704, - 6446397024, - 6446393856, + 6446404528, + 6457191728, + 6446392352, + 6446393968, + 6446394128, + 6457191776, + 6457188752, + 6446394160, + 6446399632, + 6446396704, 6443742160, - 6446396544, - 6457190896, - 6457192720, - 6446400336, - 6446401264, - 6446401216, - 6457187520, - 6446403040 + 6446399472, + 6457193088, + 6457194912, + 6446401568, + 6446401888, + 6446401856, + 6457189712, + 6446403424 ], "bases": [ { @@ -149030,7 +149058,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468309368, + "complete_object_locator": 6468313600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149039,35 +149067,35 @@ }, { "type_name": "CMsgGCUserTrackTimePlayedConsecutively", - "vtable_address": 6464930328, - "methods": [ - 6446077680, - 6457189536, - 6446066832, - 6446066896, - 6446066928, - 6457189584, - 6457186560, - 6446066944, - 6446067568, - 6446066992, - 6443742160, - 6446067392, - 6457190896, - 6457192720, - 6446067920, + "vtable_address": 6464934424, + "methods": [ + 6446078064, + 6457191728, + 6446067024, + 6446067280, + 6446067312, + 6457191776, + 6457188752, + 6446067328, + 6446067952, + 6446067376, + 6443742160, + 6446067776, + 6457193088, + 6457194912, + 6446068304, + 6446069328, 6446069312, - 6446069120, - 6457187520, - 6446071824, - 6457187520, - 6446072064, - 6457187520, - 6446072368, - 6457187520, - 6446075568, - 6457187520, - 6446075824 + 6457189712, + 6446072208, + 6457189712, + 6446072448, + 6457189712, + 6446072672, + 6457189712, + 6446075952, + 6457189712, + 6446076208 ], "bases": [ { @@ -149101,7 +149129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298968, + "complete_object_locator": 6468303200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149110,25 +149138,25 @@ }, { "type_name": "CMsgGC_GlobalGame_Play", - "vtable_address": 6465003096, + "vtable_address": 6465007048, "methods": [ - 6446418880, - 6457189536, - 6446408864, - 6446409152, - 6446409344, - 6457189584, - 6457186560, - 6446409376, - 6446412000, - 6446410288, + 6446419120, + 6457191728, + 6446409232, + 6446409360, + 6446409392, + 6457191776, + 6457188752, + 6446409408, + 6446411648, + 6446409872, 6443742160, - 6446411616, - 6457190896, - 6457192720, - 6446412608, - 6446416144, - 6446415728 + 6446410672, + 6457193088, + 6457194912, + 6446412800, + 6446416000, + 6446415600 ], "bases": [ { @@ -149162,7 +149190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468343480, + "complete_object_locator": 6468347712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149171,25 +149199,25 @@ }, { "type_name": "CMsgGC_GlobalGame_Subscribe", - "vtable_address": 6464986040, - "methods": [ - 6446385792, - 6457189536, - 6446381488, - 6446381984, - 6446382016, - 6457189584, - 6457186560, - 6446382032, - 6446383024, - 6446382240, + "vtable_address": 6464990136, + "methods": [ + 6446386176, + 6457191728, + 6446381856, + 6446382208, + 6446382304, + 6457191776, + 6457188752, + 6446382336, + 6446383248, + 6446382480, 6443742160, - 6446382800, - 6457190896, - 6457192720, - 6446384064, - 6446384832, - 6446384816 + 6446383072, + 6457193088, + 6457194912, + 6446383440, + 6446385200, + 6446385184 ], "bases": [ { @@ -149223,7 +149251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468343616, + "complete_object_locator": 6468347848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149232,25 +149260,25 @@ }, { "type_name": "CMsgGC_GlobalGame_Unsubscribe", - "vtable_address": 6464989336, + "vtable_address": 6464993288, "methods": [ - 6446403984, - 6457189536, - 6446392672, - 6446397680, - 6446399184, - 6457189584, - 6457186560, - 6446399504, - 6446401200, - 6446400352, + 6446404208, + 6457191728, + 6446392768, + 6446397056, + 6446399104, + 6457191776, + 6457188752, + 6446399424, + 6446401552, + 6446400720, 6443742160, - 6446401024, - 6457190896, - 6457192720, - 6446401328, - 6446401744, - 6446401664 + 6446401376, + 6457193088, + 6457194912, + 6446401616, + 6446402128, + 6446402048 ], "bases": [ { @@ -149284,7 +149312,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468343752, + "complete_object_locator": 6468347984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149293,25 +149321,25 @@ }, { "type_name": "CMsgGC_ServerQuestUpdateData", - "vtable_address": 6464931432, + "vtable_address": 6464935528, "methods": [ - 6446083632, - 6457189536, - 6446058752, - 6446059376, - 6446059584, - 6457189584, - 6457186560, - 6446059664, - 6446061280, - 6446060064, + 6446083888, + 6457191728, + 6446059136, + 6446059760, + 6446059968, + 6457191776, + 6457188752, + 6446060048, + 6446061664, + 6446060448, 6443742160, - 6446060864, - 6457190896, - 6457192720, - 6446061600, - 6446062288, - 6446062272 + 6446061248, + 6457193088, + 6457194912, + 6446061984, + 6446062672, + 6446062656 ], "bases": [ { @@ -149345,7 +149373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468343888, + "complete_object_locator": 6468348120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149354,33 +149382,31 @@ }, { "type_name": "CMsgGameServerInfo", - "vtable_address": 6464973952, + "vtable_address": 6464978064, "methods": [ - 6446249344, - 6457189536, - 6446219776, - 6446221152, - 6446221296, - 6457189584, - 6457186560, - 6446221376, - 6446225488, - 6446222320, + 6446250192, + 6457191728, + 6446220960, + 6446222080, + 6446222208, + 6457191776, + 6457188752, + 6446222224, + 6446225968, + 6446222832, 6443742160, - 6446224160, - 6457190896, - 6457192720, - 6446226064, - 6446226320, - 6446226240, - 6457187520, - 6446246976, - 6457187520, - 6446249056, - 6457187520, - 6446250992, - 6457187520, - 6446252256 + 6446224640, + 6457193088, + 6457194912, + 6446226448, + 6446226704, + 6446226688, + 6457189712, + 6446249440, + 6457189712, + 6446251360, + 6457189712, + 6446252784 ], "bases": [ { @@ -149414,7 +149440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468321512, + "complete_object_locator": 6468325744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149423,25 +149449,25 @@ }, { "type_name": "CMsgIPCAddress", - "vtable_address": 6465167200, - "methods": [ - 6447170368, - 6457189536, - 6447168048, - 6447168416, - 6447168464, - 6457189584, - 6457186560, - 6447168480, - 6447169200, - 6447168560, + "vtable_address": 6465171280, + "methods": [ + 6447170496, + 6457191728, + 6447168272, + 6447168448, + 6447168688, + 6457191776, + 6457188752, + 6447168704, + 6447169424, + 6447168784, 6443742160, - 6447168976, - 6457190896, - 6457192720, - 6447169232, - 6447169344, - 6447169328 + 6447169200, + 6457193088, + 6457194912, + 6447169456, + 6447169568, + 6447169552 ], "bases": [ { @@ -149475,7 +149501,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384520, + "complete_object_locator": 6468388616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149484,25 +149510,25 @@ }, { "type_name": "CMsgIncrementKillCountAttribute", - "vtable_address": 6464883600, + "vtable_address": 6464887696, "methods": [ - 6445866608, - 6457189536, - 6445856384, - 6445856512, - 6445856560, - 6457189584, - 6457186560, - 6445856576, - 6445857856, - 6445856736, + 6445868176, + 6457191728, + 6445856768, + 6445856896, + 6445856944, + 6457191776, + 6457188752, + 6445856960, + 6445858240, + 6445857120, 6443742160, - 6445857408, - 6457190896, - 6457192720, - 6445858064, - 6445858512, - 6445858400 + 6445857792, + 6457193088, + 6457194912, + 6445858448, + 6445859552, + 6445859376 ], "bases": [ { @@ -149536,7 +149562,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468321648, + "complete_object_locator": 6468325880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149545,27 +149571,25 @@ }, { "type_name": "CMsgInvitationCreated", - "vtable_address": 6465008664, - "methods": [ - 6446481680, - 6457189536, - 6446475344, - 6446475648, - 6446475680, - 6457189584, - 6457186560, - 6446475696, - 6446476432, - 6446475760, + "vtable_address": 6465012920, + "methods": [ + 6446483184, + 6457191728, + 6446475728, + 6446476032, + 6446476064, + 6457191776, + 6457188752, + 6446476080, + 6446476832, + 6446476144, 6443742160, - 6446476192, - 6457190896, - 6457192720, - 6446476608, - 6446479152, - 6446478352, - 6457187520, - 6446480464 + 6446476592, + 6457193088, + 6457194912, + 6446477552, + 6446480416, + 6446480400 ], "bases": [ { @@ -149599,7 +149623,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468321784, + "complete_object_locator": 6468326016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149608,27 +149632,27 @@ }, { "type_name": "CMsgInviteToParty", - "vtable_address": 6465006904, - "methods": [ - 6446463392, - 6457189536, - 6446453648, - 6446454016, - 6446454048, - 6457189584, - 6457186560, - 6446454160, - 6446455872, - 6446454448, - 6443742160, - 6446455552, - 6457190896, - 6457192720, - 6446456208, + "vtable_address": 6465011000, + "methods": [ + 6446463776, + 6457191728, + 6446454112, + 6446454400, + 6446454432, + 6457191776, + 6457188752, + 6446454544, 6446456256, - 6446456240, - 6457187520, - 6446460448 + 6446454832, + 6443742160, + 6446455936, + 6457193088, + 6457194912, + 6446456592, + 6446456640, + 6446456624, + 6457189712, + 6446460832 ], "bases": [ { @@ -149662,7 +149686,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468321920, + "complete_object_locator": 6468326152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149671,25 +149695,25 @@ }, { "type_name": "CMsgItemAcknowledged", - "vtable_address": 6464929816, + "vtable_address": 6464933912, "methods": [ - 6446066464, - 6457189536, - 6446059968, - 6446061440, - 6446061504, - 6457189584, - 6457186560, - 6446061520, - 6446062256, - 6446061616, - 6443742160, - 6446062144, - 6457190896, - 6457192720, - 6446062352, + 6446066848, + 6457191728, + 6446060352, + 6446061824, + 6446061888, + 6457191776, + 6457188752, + 6446061904, + 6446062640, + 6446062000, + 6443742160, 6446062528, - 6446062512 + 6457193088, + 6457194912, + 6446062736, + 6446062912, + 6446062896 ], "bases": [ { @@ -149723,7 +149747,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344024, + "complete_object_locator": 6468348256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149732,25 +149756,25 @@ }, { "type_name": "CMsgItemAcknowledged__DEPRECATED", - "vtable_address": 6464989192, + "vtable_address": 6464993432, "methods": [ - 6446403840, - 6457189536, - 6446386032, - 6446387424, - 6446387488, - 6457189584, - 6457186560, - 6446387504, - 6446389552, - 6446387760, + 6446404384, + 6457191728, + 6446386576, + 6446387824, + 6446387872, + 6457191776, + 6457188752, + 6446387904, + 6446389936, + 6446388160, 6443742160, - 6446388784, - 6457190896, - 6457192720, - 6446389568, - 6446389680, - 6446389664 + 6446389168, + 6457193088, + 6457194912, + 6446390032, + 6446390064, + 6446390048 ], "bases": [ { @@ -149784,7 +149808,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468322056, + "complete_object_locator": 6468326288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149793,25 +149817,25 @@ }, { "type_name": "CMsgKickFromParty", - "vtable_address": 6465021504, + "vtable_address": 6465025600, "methods": [ - 6446525328, - 6457189536, - 6446515744, - 6446517424, - 6446517472, - 6457189584, - 6457186560, - 6446517488, - 6446519184, - 6446518016, + 6446525728, + 6457191728, + 6446516720, + 6446518320, + 6446518432, + 6457191776, + 6457188752, + 6446518784, + 6446522128, + 6446520240, 6443742160, - 6446519072, - 6457190896, - 6457192720, - 6446522320, - 6446522624, - 6446522464 + 6446522016, + 6457193088, + 6457194912, + 6446522800, + 6446523344, + 6446523216 ], "bases": [ { @@ -149845,7 +149869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468322192, + "complete_object_locator": 6468326424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149854,27 +149878,27 @@ }, { "type_name": "CMsgLANServerAvailable", - "vtable_address": 6465027184, + "vtable_address": 6465031280, "methods": [ - 6446572480, - 6457189536, - 6446562320, - 6446565984, - 6446566032, - 6457189584, - 6457186560, - 6446566048, - 6446567072, - 6446566544, - 6443742160, - 6446566960, - 6457190896, - 6457192720, - 6446568160, - 6446568736, - 6446568720, - 6457187520, - 6446569360 + 6446572864, + 6457191728, + 6446562720, + 6446566816, + 6446566928, + 6457191776, + 6457188752, + 6446566944, + 6446568336, + 6446567632, + 6443742160, + 6446568224, + 6457193088, + 6457194912, + 6446568560, + 6446569408, + 6446569184, + 6457189712, + 6446569744 ], "bases": [ { @@ -149908,7 +149932,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468322328, + "complete_object_locator": 6468326560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149917,25 +149941,25 @@ }, { "type_name": "CMsgLeaveParty", - "vtable_address": 6465024464, + "vtable_address": 6465028560, "methods": [ - 6446539216, - 6457189536, - 6446538000, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446538208, - 6446538192 + 6446540160, + 6457191728, + 6446538384, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446538592, + 6446538576 ], "bases": [ { @@ -149983,7 +150007,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468322464, + "complete_object_locator": 6468326696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -149992,27 +150016,29 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome", - "vtable_address": 6464878240, + "vtable_address": 6464882336, "methods": [ - 6445811616, - 6457189536, - 6446677696, - 6446678992, - 6446680144, - 6457189584, - 6457186560, - 6446680448, - 6446685824, - 6446682928, - 6443742160, - 6446685040, - 6457190896, - 6457192720, - 6446686000, - 6445788128, - 6445788048, - 6457187520, - 6445809984 + 6445811744, + 6457191728, + 6446678080, + 6446679376, + 6446680528, + 6457191776, + 6457188752, + 6446680832, + 6446686176, + 6446683312, + 6443742160, + 6446685408, + 6457193088, + 6457194912, + 6446686256, + 6445787824, + 6445787200, + 6457189712, + 6445810400, + 6457189712, + 6445811584 ], "bases": [ { @@ -150046,7 +150072,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344160, + "complete_object_locator": 6468348392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150055,29 +150081,31 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome_Location", - "vtable_address": 6465076920, - "methods": [ - 6446670160, - 6457189536, - 6446659696, - 6446660944, - 6446661168, - 6457189584, - 6457186560, - 6446661184, - 6446662112, - 6446661456, + "vtable_address": 6465081016, + "methods": [ + 6446670464, + 6457191728, + 6446660000, + 6446661328, + 6446661552, + 6457191776, + 6457188752, + 6446661568, + 6446662336, + 6446661680, 6443742160, - 6446661904, - 6457190896, - 6457192720, - 6446662224, - 6446662896, - 6446662880, - 6457187520, - 6446664832, - 6457187520, - 6446666144 + 6446662128, + 6457193088, + 6457194912, + 6446662608, + 6446663280, + 6446663264, + 6457189712, + 6446665232, + 6457189712, + 6446666032, + 6457189712, + 6446667280 ], "bases": [ { @@ -150111,7 +150139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344296, + "complete_object_locator": 6468348528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150120,27 +150148,27 @@ }, { "type_name": "CMsgModifyItemAttribute", - "vtable_address": 6464900744, - "methods": [ - 6445913424, - 6457189536, - 6445904528, - 6445906288, - 6445906528, - 6457189584, - 6457186560, - 6445906672, - 6445909488, - 6445907552, + "vtable_address": 6464904840, + "methods": [ + 6445913808, + 6457191728, + 6445906112, + 6445907760, + 6445908576, + 6457191776, + 6457188752, + 6445908592, + 6445910720, + 6445909504, 6443742160, - 6445909104, - 6457190896, - 6457192720, - 6445910368, - 6445910912, - 6445910832, - 6457187520, - 6445913584 + 6445910336, + 6457193088, + 6457194912, + 6445911024, + 6445911376, + 6445911360, + 6457189712, + 6445913968 ], "bases": [ { @@ -150174,7 +150202,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468322608, + "complete_object_locator": 6468326840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150183,35 +150211,35 @@ }, { "type_name": "CMsgOpenCrate", - "vtable_address": 6464984568, - "methods": [ - 6446367488, - 6457189536, - 6446352176, - 6446354768, - 6446354816, - 6457189584, - 6457186560, - 6446354832, - 6446356240, - 6446355008, - 6443742160, - 6446355808, - 6457190896, - 6457192720, - 6446356512, - 6446356608, - 6446356592, - 6457187520, - 6446367632, - 6457187520, - 6446368384, - 6457187520, - 6446369136, - 6457187520, - 6446369632, - 6457187520, - 6446371056 + "vtable_address": 6464988664, + "methods": [ + 6446368032, + 6457191728, + 6446353504, + 6446355168, + 6446355296, + 6457191776, + 6457188752, + 6446355312, + 6446356784, + 6446355472, + 6443742160, + 6446356352, + 6457193088, + 6457194912, + 6446356960, + 6446357008, + 6446356992, + 6457189712, + 6446367872, + 6457189712, + 6446368784, + 6457189712, + 6446368944, + 6457189712, + 6446370016, + 6457189712, + 6446371424 ], "bases": [ { @@ -150245,7 +150273,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468322744, + "complete_object_locator": 6468326976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150254,25 +150282,25 @@ }, { "type_name": "CMsgPartyInviteResponse", - "vtable_address": 6465013408, + "vtable_address": 6465017504, "methods": [ - 6446505584, - 6457189536, - 6446498208, - 6446498368, - 6446498432, - 6457189584, - 6457186560, - 6446498512, - 6446500512, - 6446498976, + 6446507024, + 6457191728, + 6446498640, + 6446499152, + 6446499424, + 6457191776, + 6457188752, + 6446499440, + 6446501936, + 6446500320, 6443742160, - 6446500080, - 6457190896, - 6457192720, - 6446502288, - 6446504400, - 6446504384 + 6446501504, + 6457193088, + 6457194912, + 6446502688, + 6446504864, + 6446504848 ], "bases": [ { @@ -150306,7 +150334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468322880, + "complete_object_locator": 6468327112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150315,27 +150343,29 @@ }, { "type_name": "CMsgPlaceDecalEvent", - "vtable_address": 6465026880, + "vtable_address": 6465030960, "methods": [ - 6446568896, - 6457189536, + 6446569200, + 6457191728, 6444865600, - 6446543936, - 6446544096, - 6457189584, - 6457186560, - 6446544432, + 6446543392, + 6446543664, + 6457191776, + 6457188752, + 6446544192, 6444784800, - 6446545456, + 6446545296, 6443742160, - 6446547424, - 6457190896, - 6457192720, - 6446548592, - 6446548768, - 6446548688, - 6457187520, - 6446567792 + 6446547456, + 6457193088, + 6457194912, + 6446548880, + 6446549088, + 6446549056, + 6457189712, + 6446565840, + 6457189712, + 6446568416 ], "bases": [ { @@ -150369,7 +150399,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305040, + "complete_object_locator": 6468309272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150378,25 +150408,25 @@ }, { "type_name": "CMsgPlayerBulletHit", - "vtable_address": 6464981472, + "vtable_address": 6464985424, "methods": [ - 6446341664, - 6457189536, - 6446328912, - 6446329680, - 6446329776, - 6457189584, - 6457186560, - 6446329792, - 6446331840, - 6446330144, + 6446341888, + 6457191728, + 6446329296, + 6446330064, + 6446330160, + 6457191776, + 6457188752, + 6446330176, + 6446332224, + 6446330528, 6443742160, - 6446331152, - 6457190896, - 6457192720, - 6446331920, - 6446331952, - 6446331936 + 6446331536, + 6457193088, + 6457194912, + 6446332304, + 6446332336, + 6446332320 ], "bases": [ { @@ -150430,7 +150460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297608, + "complete_object_locator": 6468301840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150439,25 +150469,25 @@ }, { "type_name": "CMsgPlayerInfo", - "vtable_address": 6465168224, + "vtable_address": 6465172304, "methods": [ 6447192208, - 6457189536, - 6447177344, - 6447179600, - 6447180368, - 6457189584, - 6457186560, - 6447180944, - 6447185280, - 6447183056, + 6457191728, + 6447177568, + 6447179824, + 6447179904, + 6457191776, + 6457188752, + 6447180624, + 6447185504, + 6447183280, 6443742160, - 6447184896, - 6457190896, - 6457192720, - 6447186160, - 6447188064, - 6447187984 + 6447185120, + 6457193088, + 6457194912, + 6447186384, + 6447188288, + 6447188208 ], "bases": [ { @@ -150491,7 +150521,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371024, + "complete_object_locator": 6468375120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150500,27 +150530,27 @@ }, { "type_name": "CMsgProtoBufHeader", - "vtable_address": 6465193072, - "methods": [ - 6447298368, - 6457189536, - 6447266672, - 6447269072, - 6447269216, - 6457189584, - 6457186560, - 6447270224, - 6447272880, - 6447270608, + "vtable_address": 6465197152, + "methods": [ + 6447298800, + 6457191728, + 6447267648, + 6447270288, + 6447270432, + 6457191776, + 6457188752, + 6447270448, + 6447273104, + 6447270848, 6443742160, - 6447272016, - 6457190896, - 6457192720, - 6447272896, - 6447273040, - 6447273024, - 6457187520, - 6447298528 + 6447272256, + 6457193088, + 6457194912, + 6447273216, + 6447273440, + 6447273408, + 6457189712, + 6447298592 ], "bases": [ { @@ -150554,7 +150584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390168, + "complete_object_locator": 6468394264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150563,27 +150593,27 @@ }, { "type_name": "CMsgQAngle", - "vtable_address": 6465162400, - "methods": [ - 6447132032, - 6457189536, - 6447124672, - 6447124928, - 6447124976, - 6457189584, - 6457186560, - 6447124992, - 6447125664, - 6447125056, - 6443742160, - 6447125456, - 6457190896, - 6457192720, - 6447125856, + "vtable_address": 6465166480, + "methods": [ + 6447132256, + 6457191728, + 6447124896, + 6447125152, + 6447125200, + 6457191776, + 6457188752, + 6447125216, + 6447125888, + 6447125280, + 6443742160, + 6447125680, + 6457193088, + 6457194912, 6447126080, - 6447126064, - 6457187520, - 6447131984 + 6447126304, + 6447126288, + 6457189712, + 6447132208 ], "bases": [ { @@ -150617,7 +150647,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371336, + "complete_object_locator": 6468375432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150626,25 +150656,25 @@ }, { "type_name": "CMsgQuaternion", - "vtable_address": 6465163904, - "methods": [ - 6447142128, - 6457189536, - 6447137680, - 6447137792, - 6447137824, - 6457189584, - 6457186560, - 6447137840, - 6447138608, - 6447137920, - 6443742160, - 6447138368, - 6457190896, - 6457192720, - 6447138624, - 6447138864, - 6447138848 + "vtable_address": 6465167840, + "methods": [ + 6447142352, + 6457191728, + 6447137904, + 6447138016, + 6447138048, + 6457191776, + 6457188752, + 6447138064, + 6447138832, + 6447138144, + 6443742160, + 6447138592, + 6457193088, + 6457194912, + 6447138848, + 6447139088, + 6447139056 ], "bases": [ { @@ -150678,7 +150708,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371472, + "complete_object_locator": 6468375568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150687,25 +150717,25 @@ }, { "type_name": "CMsgRGBA", - "vtable_address": 6465166912, - "methods": [ - 6447169824, - 6457189536, - 6447163328, - 6447164768, - 6447164816, - 6457189584, - 6457186560, - 6447164832, - 6447166576, - 6447165008, + "vtable_address": 6465170992, + "methods": [ + 6447170048, + 6457191728, + 6447163504, + 6447164976, + 6447165040, + 6457191776, + 6457188752, + 6447165056, + 6447166800, + 6447165232, 6443742160, - 6447166080, - 6457190896, - 6457192720, - 6447167520, - 6447167984, - 6447167968 + 6447166304, + 6457193088, + 6457194912, + 6447167728, + 6447168208, + 6447168192 ], "bases": [ { @@ -150739,7 +150769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371608, + "complete_object_locator": 6468375704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150748,25 +150778,25 @@ }, { "type_name": "CMsgRecurringMissionSchema", - "vtable_address": 6465026384, - "methods": [ - 6446566160, - 6457189536, - 6446538352, - 6446538704, - 6446538880, - 6457189584, - 6457186560, - 6446538896, - 6446539840, + "vtable_address": 6465030480, + "methods": [ + 6446565616, + 6457191728, + 6446538672, + 6446539088, + 6446539264, + 6457191776, + 6457188752, 6446539280, + 6446540224, + 6446539600, 6443742160, - 6446539696, - 6457190896, - 6457192720, - 6446539872, - 6446540960, - 6446540864 + 6446540016, + 6457193088, + 6457194912, + 6446540240, + 6446540800, + 6446540672 ], "bases": [ { @@ -150800,7 +150830,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344432, + "complete_object_locator": 6468348664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150809,25 +150839,25 @@ }, { "type_name": "CMsgRecurringMissionSchema_MissionTemplateList", - "vtable_address": 6465021736, + "vtable_address": 6465025832, "methods": [ - 6446527408, - 6457189536, - 6446513952, - 6446514096, - 6446514160, - 6457189584, - 6457186560, - 6446514176, - 6446515344, - 6446514528, - 6443742160, - 6446514992, - 6457190896, - 6457192720, - 6446515536, - 6446517120, - 6446516896 + 6446527792, + 6457191728, + 6446513968, + 6446514480, + 6446514544, + 6457191776, + 6457188752, + 6446514560, + 6446515664, + 6446514832, + 6443742160, + 6446515296, + 6457193088, + 6457194912, + 6446515920, + 6446517456, + 6446517280 ], "bases": [ { @@ -150861,7 +150891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344568, + "complete_object_locator": 6468348800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150870,25 +150900,25 @@ }, { "type_name": "CMsgReplayUploadedToYouTube", - "vtable_address": 6464982912, + "vtable_address": 6464987336, "methods": [ - 6446356672, - 6457189536, - 6446341840, - 6446342048, - 6446342144, - 6457189584, - 6457186560, - 6446342160, - 6446343120, - 6446342352, + 6446357072, + 6457191728, + 6446342224, + 6446342464, + 6446342560, + 6457191776, + 6457188752, + 6446342576, + 6446344192, + 6446342928, 6443742160, - 6446342864, - 6457190896, - 6457192720, - 6446343824, - 6446346096, - 6446346080 + 6446343936, + 6457193088, + 6457194912, + 6446346448, + 6446347024, + 6446347008 ], "bases": [ { @@ -150922,7 +150952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323016, + "complete_object_locator": 6468327248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150931,25 +150961,25 @@ }, { "type_name": "CMsgReplicateConVars", - "vtable_address": 6464978304, + "vtable_address": 6464982400, "methods": [ - 6446307312, - 6457189536, - 6446268688, - 6446268928, - 6446269216, - 6457189584, - 6457186560, - 6446269232, - 6446271072, - 6446269520, + 6446307696, + 6457191728, + 6446269072, + 6446269376, + 6446270240, + 6457191776, + 6457188752, + 6446270592, + 6446273920, + 6446271488, 6443742160, - 6446270928, - 6457190896, - 6457192720, - 6446275008, - 6446276128, - 6446275376 + 6446273776, + 6457193088, + 6457194912, + 6446275440, + 6446279328, + 6446279312 ], "bases": [ { @@ -150983,7 +151013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323152, + "complete_object_locator": 6468327384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -150992,29 +151022,29 @@ }, { "type_name": "CMsgRequestInventoryRefresh", - "vtable_address": 6464973152, - "methods": [ - 6446238912, - 6457189536, - 6446236944, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446238192, - 6446238176, - 6457187520, - 6446238800, - 6457187520, - 6446239856 + "vtable_address": 6464977248, + "methods": [ + 6446239312, + 6457191728, + 6446238032, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446238592, + 6446238576, + 6457189712, + 6446239200, + 6457189712, + 6446239680 ], "bases": [ { @@ -151062,7 +151092,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323288, + "complete_object_locator": 6468327520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151071,25 +151101,25 @@ }, { "type_name": "CMsgRequestRecurringMissionSchedule", - "vtable_address": 6465011104, + "vtable_address": 6465015200, "methods": [ - 6446505200, - 6457189536, - 6446504800, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446504832, - 6446504816 + 6446505584, + 6457191728, + 6446504960, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446505216, + 6446505200 ], "bases": [ { @@ -151137,7 +151167,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344704, + "complete_object_locator": 6468348936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151146,27 +151176,27 @@ }, { "type_name": "CMsgSDONoMemcached", - "vtable_address": 6464930168, - "methods": [ - 6446073824, - 6457189536, - 6446068768, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446070176, - 6446070144, - 6457187520, - 6446070240 + "vtable_address": 6464934264, + "methods": [ + 6446075776, + 6457191728, + 6446069392, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446070992, + 6446070736, + 6457189712, + 6446070384 ], "bases": [ { @@ -151214,7 +151244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323432, + "complete_object_locator": 6468327664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151223,29 +151253,29 @@ }, { "type_name": "CMsgSOCacheHaveVersion", - "vtable_address": 6465005992, - "methods": [ - 6446453760, - 6457189536, - 6446442960, - 6446444528, - 6446445120, - 6457189584, - 6457186560, - 6446445136, - 6446446928, - 6446445824, + "vtable_address": 6465010088, + "methods": [ + 6446454144, + 6457191728, + 6446443632, + 6446445904, + 6446446016, + 6457191776, + 6457188752, + 6446446528, + 6446448576, + 6446447520, 6443742160, - 6446446768, - 6457190896, - 6457192720, - 6446448208, - 6446448656, - 6446448640, - 6457187520, - 6446453936, - 6457187520, - 6446454064 + 6446448416, + 6457193088, + 6457194912, + 6446448688, + 6446450304, + 6446449744, + 6457189712, + 6446454320, + 6457189712, + 6446454448 ], "bases": [ { @@ -151279,7 +151309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468309504, + "complete_object_locator": 6468313736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151288,27 +151318,25 @@ }, { "type_name": "CMsgSOCacheSubscribed", - "vtable_address": 6464942608, + "vtable_address": 6464946720, "methods": [ - 6446121872, - 6457189536, - 6446096880, + 6446122352, + 6457191728, 6446097280, - 6446097504, - 6457189584, - 6457186560, - 6446097520, - 6446098912, - 6446098000, + 6446097664, + 6446098048, + 6457191776, + 6457188752, + 6446098064, + 6446099296, + 6446098544, 6443742160, - 6446098688, - 6457190896, - 6457192720, - 6446098928, - 6446099664, - 6446099392, - 6457187520, - 6446119520 + 6446099072, + 6457193088, + 6457194912, + 6446099472, + 6446101072, + 6446100352 ], "bases": [ { @@ -151342,7 +151370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468306776, + "complete_object_locator": 6468311008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151351,27 +151379,27 @@ }, { "type_name": "CMsgSOCacheSubscribed_SubscribedType", - "vtable_address": 6464931752, - "methods": [ - 6446086000, - 6457189536, - 6446079616, - 6446080368, - 6446080432, - 6457189584, - 6457186560, - 6446080448, - 6446081552, - 6446080640, - 6443742160, + "vtable_address": 6464935848, + "methods": [ + 6446087104, + 6457191728, + 6446080624, + 6446080752, + 6446080832, + 6457191776, + 6457188752, + 6446080912, + 6446082000, 6446081184, - 6457190896, - 6457192720, - 6446081632, - 6446081872, - 6446081856, - 6457187520, - 6446085664 + 6443742160, + 6446081648, + 6457193088, + 6457194912, + 6446082224, + 6446082256, + 6446082240, + 6457189712, + 6446086048 ], "bases": [ { @@ -151405,7 +151433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468306912, + "complete_object_locator": 6468311144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151414,27 +151442,27 @@ }, { "type_name": "CMsgSOCacheSubscriptionCheck", - "vtable_address": 6464948512, - "methods": [ - 6446157504, - 6457189536, - 6446148592, - 6446149248, - 6446149536, - 6457189584, - 6457186560, - 6446149568, - 6446150352, - 6446149760, - 6443742160, - 6446150192, - 6457190896, - 6457192720, - 6446150592, - 6446152160, - 6446151952, - 6457187520, - 6446152928 + "vtable_address": 6464952608, + "methods": [ + 6446158096, + 6457191728, + 6446149136, + 6446149840, + 6446149936, + 6457191776, + 6457188752, + 6446149952, + 6446150960, + 6446150224, + 6443742160, + 6446150800, + 6457193088, + 6457194912, + 6446151792, + 6446152560, + 6446152352, + 6457189712, + 6446153552 ], "bases": [ { @@ -151468,7 +151496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468309640, + "complete_object_locator": 6468313872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151477,27 +151505,35 @@ }, { "type_name": "CMsgSOCacheSubscriptionRefresh", - "vtable_address": 6464953960, - "methods": [ - 6446176448, - 6457189536, - 6446165504, - 6446165968, - 6446166112, - 6457189584, - 6457186560, - 6446166160, - 6446167888, - 6446166384, - 6443742160, - 6446167504, - 6457190896, - 6457192720, - 6446168816, - 6446168880, - 6446168864, - 6457187520, - 6446169408 + "vtable_address": 6464958088, + "methods": [ + 6446177680, + 6457191728, + 6446166048, + 6446166352, + 6446166688, + 6457191776, + 6457188752, + 6446166896, + 6446168784, + 6446167408, + 6443742160, + 6446168672, + 6457193088, + 6457194912, + 6446169200, + 6446169264, + 6446169248, + 6457189712, + 6446171744, + 6457189712, + 6446172384, + 6457189712, + 6446172048, + 6457189712, + 6446177856, + 6457189712, + 6446178768 ], "bases": [ { @@ -151531,7 +151567,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468309776, + "complete_object_locator": 6468314008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151540,25 +151576,25 @@ }, { "type_name": "CMsgSOCacheUnsubscribed", - "vtable_address": 6464946512, - "methods": [ - 6446143616, - 6457189536, - 6446130416, - 6446131680, - 6446133008, - 6457189584, - 6457186560, - 6446133024, - 6446134592, - 6446133936, - 6443742160, + "vtable_address": 6464950608, + "methods": [ + 6446144000, + 6457191728, + 6446131360, + 6446134048, + 6446134160, + 6457191776, + 6457188752, + 6446134320, + 6446135088, 6446134480, - 6457190896, - 6457192720, - 6446134944, - 6446137024, - 6446137008 + 6443742160, + 6446134880, + 6457193088, + 6457194912, + 6446136240, + 6446137456, + 6446137424 ], "bases": [ { @@ -151592,7 +151628,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468309912, + "complete_object_locator": 6468314144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151601,29 +151637,27 @@ }, { "type_name": "CMsgSOCacheVersion", - "vtable_address": 6464963712, - "methods": [ - 6446191856, - 6457189536, - 6446182064, - 6446182160, - 6446182256, - 6457189584, - 6457186560, - 6446182272, - 6446182816, - 6446182320, - 6443742160, - 6446182704, - 6457190896, - 6457192720, - 6446182976, - 6446183232, - 6446183216, - 6457187520, - 6446183936, - 6457187520, - 6446183728 + "vtable_address": 6464968112, + "methods": [ + 6446192656, + 6457191728, + 6446182464, + 6446182560, + 6446182720, + 6457191776, + 6457188752, + 6446182736, + 6446183200, + 6446182768, + 6443742160, + 6446183088, + 6457193088, + 6457194912, + 6446183360, + 6446183616, + 6446183600, + 6457189712, + 6446185072 ], "bases": [ { @@ -151657,7 +151691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468310048, + "complete_object_locator": 6468314280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151666,25 +151700,25 @@ }, { "type_name": "CMsgSOIDOwner", - "vtable_address": 6464910600, - "methods": [ - 6445984624, - 6457189536, - 6445975872, - 6445976000, - 6445976192, - 6457189584, - 6457186560, - 6445976208, - 6445977264, - 6445976320, - 6443742160, - 6445976912, - 6457190896, - 6457192720, - 6445978304, - 6445980016, - 6445980000 + "vtable_address": 6464914696, + "methods": [ + 6445985008, + 6457191728, + 6445976256, + 6445976544, + 6445976592, + 6457191776, + 6457188752, + 6445976608, + 6445978672, + 6445976784, + 6443742160, + 6445978016, + 6457193088, + 6457194912, + 6445980352, + 6445980528, + 6445980480 ], "bases": [ { @@ -151718,7 +151752,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468306640, + "complete_object_locator": 6468310872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151727,33 +151761,33 @@ }, { "type_name": "CMsgSOMultipleObjects", - "vtable_address": 6464929960, + "vtable_address": 6464934056, "methods": [ - 6446066640, - 6457189536, - 6446034096, - 6446035024, - 6446035408, - 6457189584, - 6457186560, - 6446035424, - 6446036832, - 6446036000, - 6443742160, - 6446036608, - 6457190896, - 6457192720, - 6446036864, - 6446037744, - 6446037728, - 6457187520, - 6446066848, - 6457388960, - 6457389040, - 6457187520, - 6446067584, - 6457187520, - 6446068944 + 6446067040, + 6457191728, + 6446034960, + 6446035568, + 6446035872, + 6457191776, + 6457188752, + 6446035904, + 6446037216, + 6446036464, + 6443742160, + 6446036992, + 6457193088, + 6457194912, + 6446037344, + 6446038416, + 6446038400, + 6457189712, + 6446067232, + 6457391152, + 6457391232, + 6457189712, + 6446067968, + 6457189712, + 6446069424 ], "bases": [ { @@ -151787,7 +151821,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468310184, + "complete_object_locator": 6468314416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151796,25 +151830,27 @@ }, { "type_name": "CMsgSOMultipleObjects_SingleObject", - "vtable_address": 6464924760, - "methods": [ - 6446026608, - 6457189536, - 6446009456, - 6446010528, - 6446010592, - 6457189584, - 6457186560, - 6446010608, - 6446011472, - 6446010752, + "vtable_address": 6464929000, + "methods": [ + 6446027296, + 6457191728, + 6446010000, + 6446010928, + 6446010992, + 6457191776, + 6457188752, + 6446011024, + 6446012176, + 6446011168, 6443742160, - 6446011248, - 6457190896, - 6457192720, - 6446012384, - 6446015696, - 6446015664 + 6446011888, + 6457193088, + 6457194912, + 6446013600, + 6446018992, + 6446018976, + 6457189712, + 6446022560 ], "bases": [ { @@ -151848,7 +151884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468310320, + "complete_object_locator": 6468314552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151857,27 +151893,25 @@ }, { "type_name": "CMsgSOSingleObject", - "vtable_address": 6464922696, + "vtable_address": 6464926808, "methods": [ - 6446002864, - 6457189536, - 6445991056, - 6445991792, - 6445991936, - 6457189584, - 6457186560, - 6445991952, - 6445993152, - 6445992240, - 6443742160, - 6445992848, - 6457190896, - 6457192720, - 6445993184, - 6445994320, - 6445994304, - 6457187520, - 6446000912 + 6446003472, + 6457191728, + 6445991760, + 6445992176, + 6445992320, + 6457191776, + 6457188752, + 6445992336, + 6445993552, + 6445992640, + 6443742160, + 6445993248, + 6457193088, + 6457194912, + 6445993968, + 6445995104, + 6445995072 ], "bases": [ { @@ -151911,7 +151945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468310456, + "complete_object_locator": 6468314688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151920,25 +151954,25 @@ }, { "type_name": "CMsgSerializedSOCache", - "vtable_address": 6464985464, - "methods": [ - 6446385136, - 6457189536, - 6446349600, - 6446351504, - 6446351936, - 6457189584, - 6457186560, - 6446352192, - 6446354320, - 6446352720, + "vtable_address": 6464989560, + "methods": [ + 6446385520, + 6457191728, + 6446351008, + 6446352704, + 6446352848, + 6457191776, + 6457188752, + 6446353520, + 6446355040, + 6446354080, 6443742160, - 6446353968, - 6457190896, - 6457192720, - 6446354976, - 6446356432, - 6446356416 + 6446354688, + 6457193088, + 6457194912, + 6446355456, + 6446356896, + 6446356880 ], "bases": [ { @@ -151972,7 +152006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468310592, + "complete_object_locator": 6468314824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -151981,25 +152015,25 @@ }, { "type_name": "CMsgSerializedSOCache_Cache", - "vtable_address": 6464981040, + "vtable_address": 6464985280, "methods": [ - 6446341104, - 6457189536, - 6446294368, - 6446295824, - 6446296080, - 6457189584, - 6457186560, - 6446296096, - 6446298096, - 6446296800, + 6446341696, + 6457191728, + 6446294752, + 6446296208, + 6446296464, + 6457191776, + 6457188752, + 6446296480, + 6446298480, + 6446297184, 6443742160, - 6446297696, - 6457190896, - 6457192720, - 6446298896, - 6446299200, - 6446299184 + 6446298080, + 6457193088, + 6457194912, + 6446299280, + 6446299920, + 6446299808 ], "bases": [ { @@ -152033,7 +152067,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468310728, + "complete_object_locator": 6468314960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152042,25 +152076,25 @@ }, { "type_name": "CMsgSerializedSOCache_Cache_Version", - "vtable_address": 6464976480, + "vtable_address": 6464980576, "methods": [ - 6446275056, - 6457189536, - 6446262432, - 6446262912, - 6446262960, - 6457189584, - 6457186560, - 6446262976, - 6446264224, - 6446263072, + 6446275472, + 6457191728, + 6446263200, + 6446263296, + 6446263504, + 6457191776, + 6457188752, + 6446263520, + 6446264768, + 6446263808, 6443742160, - 6446263936, - 6457190896, - 6457192720, - 6446264400, - 6446265328, - 6446265120 + 6446264480, + 6457193088, + 6457194912, + 6446264784, + 6446265856, + 6446265632 ], "bases": [ { @@ -152094,7 +152128,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468310864, + "complete_object_locator": 6468315096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152103,25 +152137,25 @@ }, { "type_name": "CMsgSerializedSOCache_TypeCache", - "vtable_address": 6464974160, + "vtable_address": 6464978256, "methods": [ - 6446253680, - 6457189536, - 6446238544, - 6446238992, - 6446239056, - 6457189584, - 6457186560, - 6446239072, - 6446240736, - 6446239296, + 6446254224, + 6457191728, + 6446239168, + 6446239376, + 6446239440, + 6457191776, + 6457188752, + 6446239456, + 6446241712, + 6446240112, 6443742160, - 6446240048, - 6457190896, - 6457192720, - 6446241344, - 6446243104, - 6446242720 + 6446240848, + 6457193088, + 6457194912, + 6446241888, + 6446243488, + 6446243104 ], "bases": [ { @@ -152155,7 +152189,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311000, + "complete_object_locator": 6468315232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152164,25 +152198,25 @@ }, { "type_name": "CMsgServerAvailable", - "vtable_address": 6465025472, + "vtable_address": 6465029568, "methods": [ - 6446556704, - 6457189536, - 6446554672, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446555696, - 6446555680 + 6446557296, + 6457191728, + 6446555248, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446556112, + 6446556080 ], "bases": [ { @@ -152230,7 +152264,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323576, + "complete_object_locator": 6468327808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152239,25 +152273,25 @@ }, { "type_name": "CMsgServerHello", - "vtable_address": 6465023376, - "methods": [ - 6446532288, - 6457189536, - 6446508688, - 6446509216, - 6446509520, - 6457189584, - 6457186560, - 6446509536, - 6446511920, - 6446510144, + "vtable_address": 6465027472, + "methods": [ + 6446534608, + 6457191728, + 6446509200, + 6446509600, + 6446509904, + 6457191776, + 6457188752, + 6446509920, + 6446512320, + 6446510544, 6443742160, - 6446511216, - 6457190896, - 6457192720, - 6446511952, - 6446513696, - 6446513392 + 6446511616, + 6457193088, + 6457194912, + 6446512480, + 6446514288, + 6446513984 ], "bases": [ { @@ -152291,7 +152325,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311136, + "complete_object_locator": 6468315368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152300,25 +152334,25 @@ }, { "type_name": "CMsgServerNetworkStats", - "vtable_address": 6465080120, - "methods": [ - 6446854448, - 6457189536, - 6447415616, - 6447416320, - 6447416704, - 6457189584, - 6457186560, - 6447416720, - 6447422400, - 6447417728, + "vtable_address": 6465084200, + "methods": [ + 6446854672, + 6457191728, + 6447415840, + 6447416544, + 6447416928, + 6457191776, + 6457188752, + 6447416944, + 6447422624, + 6447417952, 6443742160, - 6447420272, - 6457190896, - 6457192720, - 6447422416, - 6447422464, - 6447422448 + 6447420496, + 6457193088, + 6457194912, + 6447422640, + 6447422688, + 6447422672 ], "bases": [ { @@ -152352,7 +152386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384656, + "complete_object_locator": 6468388752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152361,29 +152395,29 @@ }, { "type_name": "CMsgServerNetworkStats_Player", - "vtable_address": 6465215832, + "vtable_address": 6465219912, "methods": [ - 6447403456, - 6457189536, - 6447393952, - 6447394400, - 6447394560, - 6457189584, - 6457186560, + 6447403680, + 6457191728, + 6447394160, 6447394624, - 6447397536, - 6447395120, + 6447394784, + 6457191776, + 6457188752, + 6447394848, + 6447397600, + 6447395168, 6443742160, - 6447396944, - 6457190896, - 6457192720, - 6447398304, - 6447398368, - 6447398352, - 6457187520, - 6447402096, - 6457187520, - 6447403712 + 6447397008, + 6457193088, + 6457194912, + 6447398512, + 6447398592, + 6447398576, + 6457189712, + 6447402320, + 6457189712, + 6447403936 ], "bases": [ { @@ -152417,7 +152451,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384792, + "complete_object_locator": 6468388888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152426,25 +152460,25 @@ }, { "type_name": "CMsgServerNetworkStats_Port", - "vtable_address": 6465214104, - "methods": [ - 6447386960, - 6457189536, - 6447381536, - 6447381856, - 6447381920, - 6457189584, - 6457186560, - 6447381936, - 6447383072, - 6447382048, + "vtable_address": 6465218184, + "methods": [ + 6447387184, + 6457191728, + 6447381760, + 6447382080, + 6447382144, + 6457191776, + 6457188752, + 6447382160, + 6447383296, + 6447382272, 6443742160, - 6447382832, - 6457190896, - 6457192720, - 6447383696, - 6447384688, - 6447384672 + 6447383056, + 6457193088, + 6457194912, + 6447383920, + 6447384912, + 6447384896 ], "bases": [ { @@ -152478,7 +152512,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468384928, + "complete_object_locator": 6468389024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152487,25 +152521,25 @@ }, { "type_name": "CMsgServerPeer", - "vtable_address": 6465168512, + "vtable_address": 6465172592, "methods": [ - 6447192384, - 6457189536, - 6447183856, - 6447186032, - 6447186176, - 6457189584, - 6457186560, - 6447186208, - 6447187824, - 6447186480, + 6447192608, + 6457191728, + 6447184080, + 6447186256, + 6447186400, + 6457191776, + 6457188752, + 6447186432, + 6447188048, + 6447186704, 6443742160, - 6447187440, - 6457190896, - 6457192720, - 6447188336, - 6447189088, - 6447189072 + 6447187664, + 6457193088, + 6457194912, + 6447188560, + 6447189312, + 6447189296 ], "bases": [ { @@ -152539,7 +152573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468385064, + "complete_object_locator": 6468389160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152548,25 +152582,25 @@ }, { "type_name": "CMsgServerUserCmd", - "vtable_address": 6465091696, - "methods": [ - 6446974048, - 6457189536, - 6446962896, - 6446963136, - 6446963216, - 6457189584, - 6457186560, - 6446963232, - 6446964848, - 6446963472, - 6443742160, - 6446964320, - 6457190896, - 6457192720, - 6446964896, - 6446967392, - 6446966800 + "vtable_address": 6465095776, + "methods": [ + 6446974272, + 6457191728, + 6446963120, + 6446963360, + 6446963440, + 6457191776, + 6457188752, + 6446963456, + 6446965072, + 6446963680, + 6443742160, + 6446964544, + 6457193088, + 6457194912, + 6446965120, + 6446967040, + 6446967024 ], "bases": [ { @@ -152600,7 +152634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468385200, + "complete_object_locator": 6468389296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152609,27 +152643,27 @@ }, { "type_name": "CMsgSetItemPositions", - "vtable_address": 6465005832, - "methods": [ - 6446453488, - 6457189536, - 6446425776, - 6446427328, - 6446427520, - 6457189584, - 6457186560, - 6446428528, - 6446430464, - 6446429440, + "vtable_address": 6465009928, + "methods": [ + 6446453952, + 6457191728, + 6446426512, + 6446429360, + 6446429520, + 6457191776, + 6457188752, + 6446429920, + 6446431056, + 6446430400, 6443742160, - 6446430320, - 6457190896, - 6457192720, - 6446430704, - 6446432112, - 6446431520, - 6457187520, - 6446450240 + 6446430912, + 6457193088, + 6457194912, + 6446431104, + 6446433472, + 6446433456, + 6457189712, + 6446450624 ], "bases": [ { @@ -152663,7 +152697,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323720, + "complete_object_locator": 6468327952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152672,25 +152706,25 @@ }, { "type_name": "CMsgSetItemPositions_ItemPosition", - "vtable_address": 6465002952, - "methods": [ - 6446418736, - 6457189536, - 6446408848, - 6446408976, - 6446409088, - 6457189584, - 6457186560, - 6446409184, - 6446411600, - 6446409696, + "vtable_address": 6465007192, + "methods": [ + 6446419264, + 6457191728, + 6446409248, + 6446409776, + 6446409808, + 6457191776, + 6457188752, + 6446410464, + 6446412400, + 6446411056, 6443742160, - 6446411216, - 6457190896, - 6457192720, - 6446412528, - 6446415664, - 6446415088 + 6446412016, + 6457193088, + 6457194912, + 6446413248, + 6446416992, + 6446416800 ], "bases": [ { @@ -152724,7 +152758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323856, + "complete_object_locator": 6468328088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152733,25 +152767,25 @@ }, { "type_name": "CMsgSortItems", - "vtable_address": 6464943072, - "methods": [ - 6446124624, - 6457189536, - 6446117632, - 6446118080, - 6446118112, - 6457189584, - 6457186560, - 6446118128, - 6446119264, - 6446118544, + "vtable_address": 6464947312, + "methods": [ + 6446125856, + 6457191728, + 6446118016, + 6446118832, + 6446118976, + 6457191776, + 6457188752, + 6446119008, + 6446119664, + 6446119072, 6443742160, - 6446119088, - 6457190896, - 6457192720, - 6446119648, - 6446121648, - 6446121616 + 6446119488, + 6457193088, + 6457194912, + 6446120320, + 6446122032, + 6446122016 ], "bases": [ { @@ -152785,7 +152819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468323992, + "complete_object_locator": 6468328224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152794,29 +152828,29 @@ }, { "type_name": "CMsgSosSetLibraryStackFields", - "vtable_address": 6464922200, + "vtable_address": 6464926296, "methods": [ - 6445999136, - 6457189536, + 6445999520, + 6457191728, 6445244544, - 6445987520, - 6445987952, - 6457189584, - 6457186560, - 6445987984, + 6445987664, + 6445987936, + 6457191776, + 6457188752, + 6445988272, 6445156768, - 6445988336, + 6445988560, 6443742160, - 6445989488, - 6457190896, - 6457192720, - 6445990864, - 6445991104, - 6445991072, - 6457187520, - 6445995776, - 6457187520, - 6445996208 + 6445989728, + 6457193088, + 6457194912, + 6445990448, + 6445991440, + 6445991424, + 6457189712, + 6445996160, + 6457189712, + 6445996592 ], "bases": [ { @@ -152850,7 +152884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305080, + "complete_object_locator": 6468309312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152859,25 +152893,25 @@ }, { "type_name": "CMsgSosSetSoundEventParams", - "vtable_address": 6464910264, + "vtable_address": 6464914216, "methods": [ - 6445982000, - 6457189536, + 6445982384, + 6457191728, 6445244560, - 6445966640, - 6445966704, - 6457189584, - 6457186560, - 6445966720, + 6445967008, + 6445967072, + 6457191776, + 6457188752, + 6445967088, 6445156784, - 6445966832, + 6445967216, 6443742160, - 6445967392, - 6457190896, - 6457192720, - 6445967648, - 6445973488, - 6445970800 + 6445967696, + 6457193088, + 6457194912, + 6445968032, + 6445970736, + 6445970704 ], "bases": [ { @@ -152911,7 +152945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305120, + "complete_object_locator": 6468309352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152920,33 +152954,33 @@ }, { "type_name": "CMsgSosStartSoundEvent", - "vtable_address": 6464900904, + "vtable_address": 6464905000, "methods": [ - 6445917200, - 6457189536, + 6445917216, + 6457191728, 6445244576, - 6445906544, - 6445906800, - 6457189584, - 6457186560, + 6445906784, + 6445906880, + 6457191776, + 6457188752, 6445906944, 6445156800, - 6445908144, - 6443742160, - 6445909536, - 6457190896, - 6457192720, - 6445910384, - 6445910992, - 6445910976, - 6457187520, - 6445914336, - 6457187520, - 6445914768, - 6457187520, - 6445916736, - 6457187520, - 6445917888 + 6445907792, + 6443742160, + 6445908912, + 6457193088, + 6457194912, + 6445910752, + 6445911296, + 6445911216, + 6457189712, + 6445914720, + 6457189712, + 6445915152, + 6457189712, + 6445917376, + 6457189712, + 6445917632 ], "bases": [ { @@ -152980,7 +153014,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305160, + "complete_object_locator": 6468309392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -152989,33 +153023,33 @@ }, { "type_name": "CMsgSosStopSoundEvent", - "vtable_address": 6464905120, + "vtable_address": 6464909216, "methods": [ - 6445938416, - 6457189536, + 6445938784, + 6457191728, 6445244592, - 6445928560, - 6445928592, - 6457189584, - 6457186560, - 6445928608, + 6445928784, + 6445928816, + 6457191776, + 6457188752, + 6445928832, 6445156816, - 6445928976, + 6445929360, 6443742160, - 6445929504, - 6457190896, - 6457192720, - 6445929680, 6445929744, - 6445929728, - 6457187520, - 6445932416, - 6457187520, - 6445934000, - 6457187520, - 6445934240, - 6457187520, - 6445938576 + 6457193088, + 6457194912, + 6445930064, + 6445930112, + 6445930096, + 6457189712, + 6445932784, + 6457189712, + 6445934384, + 6457189712, + 6445934480, + 6457189712, + 6445938960 ], "bases": [ { @@ -153049,7 +153083,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305200, + "complete_object_locator": 6468309432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153058,25 +153092,25 @@ }, { "type_name": "CMsgSosStopSoundEventHash", - "vtable_address": 6464906592, + "vtable_address": 6464910688, "methods": [ - 6445953680, - 6457189536, + 6445954064, + 6457191728, 6445244608, - 6445947568, - 6445947616, - 6457189584, - 6457186560, - 6445947632, + 6445947936, + 6445947984, + 6457191776, + 6457188752, + 6445948000, 6445156832, - 6445947712, + 6445948096, 6443742160, - 6445948352, - 6457190896, - 6457192720, - 6445948592, - 6445948640, - 6445948624 + 6445948512, + 6457193088, + 6457194912, + 6445948976, + 6445949024, + 6445949008 ], "bases": [ { @@ -153110,7 +153144,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305240, + "complete_object_locator": 6468309472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153119,27 +153153,25 @@ }, { "type_name": "CMsgSource1LegacyGameEvent", - "vtable_address": 6464886424, - "methods": [ - 6445899744, - 6457189536, - 6445865808, - 6445867008, - 6445867584, - 6457189584, - 6457186560, - 6445867600, - 6445869440, - 6445867936, - 6443742160, - 6445868880, - 6457190896, - 6457192720, - 6445870928, - 6445872160, - 6445872144, - 6457187520, - 6445899920 + "vtable_address": 6464890376, + "methods": [ + 6445899984, + 6457191728, + 6445866112, + 6445867088, + 6445867504, + 6457191776, + 6457188752, + 6445867840, + 6445869744, + 6445868320, + 6443742160, + 6445869120, + 6457193088, + 6457194912, + 6445871008, + 6445872544, + 6445872512 ], "bases": [ { @@ -153173,7 +153205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305280, + "complete_object_locator": 6468309512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153182,27 +153214,25 @@ }, { "type_name": "CMsgSource1LegacyGameEventList", - "vtable_address": 6464878560, + "vtable_address": 6464882512, "methods": [ - 6445821632, - 6457189536, - 6445788016, - 6445788576, - 6445788720, - 6457189584, - 6457186560, - 6445788736, - 6445789536, - 6445788896, + 6445821856, + 6457191728, + 6445787152, + 6445788944, + 6445789072, + 6457191776, + 6457188752, + 6445789088, + 6445789840, + 6445789264, 6443742160, - 6445789392, - 6457190896, - 6457192720, - 6445789648, - 6445792784, - 6445792768, - 6457187520, - 6445812080 + 6445789696, + 6457193088, + 6457194912, + 6445789952, + 6445793168, + 6445793152 ], "bases": [ { @@ -153236,7 +153266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305416, + "complete_object_locator": 6468309648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153245,25 +153275,27 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_descriptor_t", - "vtable_address": 6465077432, - "methods": [ - 6446677152, - 6457189536, - 6446649440, - 6446649952, - 6446650192, - 6457189584, - 6457186560, + "vtable_address": 6465081512, + "methods": [ + 6446677472, + 6457191728, + 6446649264, + 6446650080, 6446650320, - 6446652496, - 6446651360, + 6457191776, + 6457188752, + 6446650336, + 6446651952, + 6446650864, 6443742160, - 6446652208, - 6457190896, - 6457192720, - 6446652544, - 6446652800, - 6446652720 + 6446651664, + 6457193088, + 6457194912, + 6446652912, + 6446653104, + 6446653088, + 6457189712, + 6446671456 ], "bases": [ { @@ -153297,7 +153329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305552, + "complete_object_locator": 6468309784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153306,25 +153338,27 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_key_t", - "vtable_address": 6465074232, - "methods": [ - 6446640864, - 6457189536, - 6446630400, - 6446631664, - 6446631728, - 6457189584, - 6457186560, - 6446631744, - 6446633712, - 6446632592, - 6443742160, - 6446633488, - 6457190896, - 6457192720, - 6446633760, - 6446635040, - 6446635024 + "vtable_address": 6465078312, + "methods": [ + 6446641040, + 6457191728, + 6446630608, + 6446631520, + 6446632032, + 6457191776, + 6457188752, + 6446632048, + 6446634096, + 6446632912, + 6443742160, + 6446633872, + 6457193088, + 6457194912, + 6446634144, + 6446635424, + 6446634768, + 6457189712, + 6446639280 ], "bases": [ { @@ -153358,7 +153392,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305688, + "complete_object_locator": 6468309920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153367,27 +153401,25 @@ }, { "type_name": "CMsgSource1LegacyGameEvent_key_t", - "vtable_address": 6464882480, + "vtable_address": 6464886576, "methods": [ - 6445858096, - 6457189536, - 6445839120, - 6445839744, - 6445839856, - 6457189584, - 6457186560, - 6445839888, - 6445842912, - 6445840336, + 6445858464, + 6457191728, + 6445839504, + 6445840048, + 6445840128, + 6457191776, + 6457188752, + 6445840144, + 6445842688, + 6445840496, 6443742160, - 6445842192, - 6457190896, - 6457192720, - 6445844288, - 6445844960, - 6445844928, - 6457187520, - 6445856400 + 6445841872, + 6457193088, + 6457194912, + 6445844656, + 6445845328, + 6445845312 ], "bases": [ { @@ -153421,7 +153453,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305824, + "complete_object_locator": 6468310056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153430,25 +153462,25 @@ }, { "type_name": "CMsgSource1LegacyListenEvents", - "vtable_address": 6464880128, - "methods": [ - 6445830768, - 6457189536, - 6445826128, - 6445826464, - 6445826672, - 6457189584, - 6457186560, - 6445827072, - 6445828256, - 6445827376, + "vtable_address": 6464884224, + "methods": [ + 6445831072, + 6457191728, + 6445826496, + 6445826704, + 6445826768, + 6457191776, + 6457188752, + 6445826976, + 6445828448, + 6445827184, 6443742160, - 6445827936, - 6457190896, - 6457192720, - 6445828288, - 6445828544, - 6445828528 + 6445828128, + 6457193088, + 6457194912, + 6445828656, + 6445828848, + 6445828832 ], "bases": [ { @@ -153482,7 +153514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468305960, + "complete_object_locator": 6468310192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153491,33 +153523,33 @@ }, { "type_name": "CMsgSource2NetworkFlowQuality", - "vtable_address": 6465128848, - "methods": [ - 6447048704, - 6457189536, - 6447001024, - 6447001872, - 6447002032, - 6457189584, - 6457186560, - 6447002048, - 6447013712, - 6447003760, - 6443742160, - 6447009248, - 6457190896, - 6457192720, - 6447015072, - 6447016736, - 6447016720, - 6457187520, - 6447047008, - 6457187520, - 6447047152, - 6457187520, - 6447051392, - 6457187520, - 6447052384 + "vtable_address": 6465132928, + "methods": [ + 6447048928, + 6457191728, + 6447001248, + 6447002096, + 6447002256, + 6457191776, + 6457188752, + 6447002272, + 6447013936, + 6447003984, + 6443742160, + 6447009472, + 6457193088, + 6457194912, + 6447015296, + 6447016960, + 6447016944, + 6457189712, + 6447047232, + 6457189712, + 6447047504, + 6457189712, + 6447051616, + 6457189712, + 6447052608 ], "bases": [ { @@ -153551,7 +153583,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468370888, + "complete_object_locator": 6468374984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153560,27 +153592,27 @@ }, { "type_name": "CMsgSource2PerfIntervalSample", - "vtable_address": 6465155344, - "methods": [ - 6447083008, - 6457189536, - 6447060080, - 6447060336, - 6447060544, - 6457189584, - 6457186560, + "vtable_address": 6465159424, + "methods": [ + 6447083232, + 6457191728, + 6447060304, 6447060560, - 6447062192, - 6447061072, - 6443742160, - 6447061776, - 6457190896, - 6457192720, - 6447062208, - 6447062448, + 6447060768, + 6457191776, + 6457188752, + 6447060784, + 6447062416, + 6447061296, + 6443742160, + 6447062000, + 6457193088, + 6457194912, 6447062432, - 6457187520, - 6447081088 + 6447062672, + 6447062656, + 6457189712, + 6447081312 ], "bases": [ { @@ -153614,7 +153646,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468385336, + "complete_object_locator": 6468389432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153623,29 +153655,29 @@ }, { "type_name": "CMsgSource2PerfIntervalSample_Tag", - "vtable_address": 6465130176, - "methods": [ - 6447057072, - 6457189536, - 6447055344, - 6447055792, - 6447055856, - 6457189584, - 6457186560, - 6447055872, - 6447056688, - 6447055984, + "vtable_address": 6465134256, + "methods": [ + 6447057296, + 6457191728, + 6447055568, + 6447056016, + 6447056080, + 6457191776, + 6457188752, + 6447056096, + 6447056912, + 6447056208, 6443742160, - 6447056464, - 6457190896, - 6457192720, - 6447056704, - 6447056736, - 6447056720, - 6457187520, - 6447056832, - 6457187520, - 6447057248 + 6447056688, + 6457193088, + 6457194912, + 6447056928, + 6447056960, + 6447056944, + 6457189712, + 6447057056, + 6457189712, + 6447057472 ], "bases": [ { @@ -153679,7 +153711,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468385472, + "complete_object_locator": 6468389568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153688,27 +153720,27 @@ }, { "type_name": "CMsgSource2SystemSpecs", - "vtable_address": 6465088752, + "vtable_address": 6465092832, "methods": [ - 6446944016, - 6457189536, - 6446920288, - 6446921712, - 6446921968, - 6457189584, - 6457186560, - 6446922016, - 6446926208, - 6446922768, + 6446944240, + 6457191728, + 6446920512, + 6446921936, + 6446922192, + 6457191776, + 6457188752, + 6446922240, + 6446926432, + 6446922992, 6443742160, - 6446925040, - 6457190896, - 6457192720, - 6446926816, - 6446928624, - 6446928048, - 6457187520, - 6446943920 + 6446925264, + 6457193088, + 6457194912, + 6446927040, + 6446928848, + 6446928272, + 6457189712, + 6446944144 ], "bases": [ { @@ -153742,7 +153774,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468385608, + "complete_object_locator": 6468389704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153751,25 +153783,25 @@ }, { "type_name": "CMsgSource2VProfLiteReport", - "vtable_address": 6465094080, - "methods": [ - 6446997088, - 6457189536, - 6446978592, - 6446980976, - 6446981344, - 6457189584, - 6457186560, - 6446981680, - 6446982848, - 6446981952, + "vtable_address": 6465098160, + "methods": [ + 6446997312, + 6457191728, + 6446978816, + 6446981200, + 6446981568, + 6457191776, + 6457188752, + 6446981584, + 6446983072, + 6446982160, 6443742160, - 6446982560, - 6457190896, - 6457192720, - 6446982960, - 6446983168, - 6446983152 + 6446982784, + 6457193088, + 6457194912, + 6446983184, + 6446983392, + 6446983376 ], "bases": [ { @@ -153803,7 +153835,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468385744, + "complete_object_locator": 6468389840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153812,25 +153844,25 @@ }, { "type_name": "CMsgSource2VProfLiteReportItem", - "vtable_address": 6465091984, - "methods": [ - 6446974416, - 6457189536, - 6446952592, - 6446953040, - 6446953152, - 6457189584, - 6457186560, - 6446953168, - 6446957680, - 6446953840, - 6443742160, - 6446955936, - 6457190896, - 6457192720, - 6446957696, + "vtable_address": 6465096064, + "methods": [ + 6446974640, + 6457191728, + 6446952816, + 6446953264, + 6446953376, + 6457191776, + 6457188752, + 6446953392, + 6446957904, + 6446954064, + 6443742160, + 6446956160, + 6457193088, + 6457194912, 6446957920, - 6446957904 + 6446958144, + 6446958128 ], "bases": [ { @@ -153864,7 +153896,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468385880, + "complete_object_locator": 6468389976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153873,25 +153905,25 @@ }, { "type_name": "CMsgStoreGetUserData", - "vtable_address": 6464949312, + "vtable_address": 6464953552, "methods": [ - 6446161152, - 6457189536, - 6446152624, - 6446155328, - 6446155648, - 6457189584, - 6457186560, - 6446155872, - 6446156672, - 6446155984, + 6446162944, + 6457191728, + 6446153536, + 6446156048, + 6446156080, + 6457191776, + 6457188752, + 6446156272, + 6446157152, + 6446156400, 6443742160, - 6446156432, - 6457190896, - 6457192720, - 6446156848, - 6446158048, - 6446158032 + 6446156912, + 6457193088, + 6457194912, + 6446157968, + 6446158880, + 6446158832 ], "bases": [ { @@ -153925,7 +153957,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468324128, + "complete_object_locator": 6468328360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153934,25 +153966,25 @@ }, { "type_name": "CMsgStoreGetUserDataResponse", - "vtable_address": 6464955256, + "vtable_address": 6464959352, "methods": [ - 6446182992, - 6457189536, - 6446170528, - 6446171696, - 6446171856, - 6457189584, - 6457186560, - 6446171888, - 6446174832, - 6446172720, + 6446183376, + 6457191728, + 6446171680, + 6446172768, + 6446173520, + 6457191776, + 6457188752, + 6446173968, + 6446177504, + 6446175600, 6443742160, - 6446174432, - 6457190896, - 6457192720, - 6446177456, - 6446178400, - 6446178368 + 6446177088, + 6457193088, + 6457194912, + 6446178032, + 6446179440, + 6446179360 ], "bases": [ { @@ -153986,7 +154018,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468324264, + "complete_object_locator": 6468328496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -153995,25 +154027,25 @@ }, { "type_name": "CMsgSystemBroadcast", - "vtable_address": 6465005176, + "vtable_address": 6465009272, "methods": [ - 6446443056, - 6457189536, - 6446436608, - 6446436912, - 6446437040, - 6457189584, - 6457186560, - 6446437056, - 6446437680, - 6446437120, + 6446444352, + 6457191728, + 6446437152, + 6446437296, + 6446437440, + 6457191776, + 6457188752, + 6446437520, + 6446438208, + 6446437728, 6443742160, - 6446437568, - 6457190896, - 6457192720, - 6446437840, - 6446437904, - 6446437888 + 6446438096, + 6457193088, + 6457194912, + 6446438224, + 6446438368, + 6446438272 ], "bases": [ { @@ -154047,7 +154079,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468324400, + "complete_object_locator": 6468328632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154056,25 +154088,25 @@ }, { "type_name": "CMsgTEArmorRicochet", - "vtable_address": 6465084712, - "methods": [ - 6446886640, - 6457189536, - 6446873856, - 6446874288, - 6446874432, - 6457189584, - 6457186560, - 6446874464, - 6446875488, - 6446874832, - 6443742160, - 6446875312, - 6457190896, - 6457192720, - 6446875648, + "vtable_address": 6465088792, + "methods": [ + 6446886864, + 6457191728, + 6446874096, + 6446874512, + 6446874672, + 6457191776, + 6457188752, + 6446874752, 6446875712, - 6446875696 + 6446875056, + 6443742160, + 6446875536, + 6457193088, + 6457194912, + 6446875872, + 6446876256, + 6446875920 ], "bases": [ { @@ -154108,7 +154140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468400752, + "complete_object_locator": 6468404848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154117,25 +154149,25 @@ }, { "type_name": "CMsgTEBaseBeam", - "vtable_address": 6465086832, + "vtable_address": 6465090912, "methods": [ - 6446919648, - 6457189536, - 6446894880, + 6446919888, + 6457191728, 6446895104, - 6446895168, - 6457189584, - 6457186560, 6446895328, - 6446897536, - 6446895616, + 6446895392, + 6457191776, + 6457188752, + 6446895552, + 6446897760, + 6446895840, 6443742160, - 6446896704, - 6457190896, - 6457192720, - 6446897552, - 6446897600, - 6446897584 + 6446896928, + 6457193088, + 6457194912, + 6446897776, + 6446897824, + 6446897808 ], "bases": [ { @@ -154169,7 +154201,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468400888, + "complete_object_locator": 6468404984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154178,25 +154210,25 @@ }, { "type_name": "CMsgTEBeamEntPoint", - "vtable_address": 6465088448, + "vtable_address": 6465092528, "methods": [ - 6446943264, - 6457189536, - 6446931472, - 6446932224, + 6446943488, + 6457191728, + 6446931696, 6446932448, - 6457189584, - 6457186560, - 6446932464, - 6446934640, - 6446933248, + 6446932672, + 6457191776, + 6457188752, + 6446932688, + 6446934864, + 6446933488, 6443742160, - 6446934240, - 6457190896, - 6457192720, - 6446934944, - 6446936512, - 6446936336 + 6446934464, + 6457193088, + 6457194912, + 6446935344, + 6446936736, + 6446936720 ], "bases": [ { @@ -154230,7 +154262,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401024, + "complete_object_locator": 6468405120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154239,27 +154271,27 @@ }, { "type_name": "CMsgTEBeamEnts", - "vtable_address": 6465089872, - "methods": [ - 6446960000, - 6457189536, - 6446947344, - 6446948720, - 6446948848, - 6457189584, - 6457186560, - 6446949552, - 6446951088, - 6446950160, - 6443742160, - 6446950768, - 6457190896, - 6457192720, - 6446951424, - 6446952512, - 6446952496, - 6457187520, - 6446958000 + "vtable_address": 6465093952, + "methods": [ + 6446960224, + 6457191728, + 6446947568, + 6446948944, + 6446949760, + 6457191776, + 6457188752, + 6446949776, + 6446951312, + 6446950400, + 6443742160, + 6446950992, + 6457193088, + 6457194912, + 6446951648, + 6446952736, + 6446952720, + 6457189712, + 6446958224 ], "bases": [ { @@ -154293,7 +154325,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401160, + "complete_object_locator": 6468405256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154302,25 +154334,25 @@ }, { "type_name": "CMsgTEBeamPoints", - "vtable_address": 6465091840, + "vtable_address": 6465095920, "methods": [ - 6446974208, - 6457189536, - 6446964880, - 6446965744, - 6446965952, - 6457189584, - 6457186560, - 6446965984, - 6446968288, - 6446966816, + 6446974432, + 6457191728, + 6446965104, + 6446965968, + 6446966192, + 6457191776, + 6457188752, + 6446966688, + 6446968912, + 6446967344, 6443742160, - 6446967696, - 6457190896, - 6457192720, - 6446970656, - 6446971488, - 6446971456 + 6446968304, + 6457193088, + 6457194912, + 6446970880, + 6446971712, + 6446971696 ], "bases": [ { @@ -154354,7 +154386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401296, + "complete_object_locator": 6468405392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154363,25 +154395,25 @@ }, { "type_name": "CMsgTEBeamRing", - "vtable_address": 6465093424, + "vtable_address": 6465097504, "methods": [ - 6446984448, - 6457189536, - 6446978160, - 6446979184, - 6446979312, - 6457189584, - 6457186560, - 6446979744, - 6446981904, - 6446980080, - 6443742160, - 6446981360, - 6457190896, - 6457192720, - 6446982864, - 6446983072, - 6446983056 + 6446984672, + 6457191728, + 6446978384, + 6446979408, + 6446979952, + 6457191776, + 6457188752, + 6446979968, + 6446982128, + 6446980608, + 6443742160, + 6446981808, + 6457193088, + 6457194912, + 6446983088, + 6446983296, + 6446983280 ], "bases": [ { @@ -154415,7 +154447,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401432, + "complete_object_locator": 6468405528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154424,29 +154456,29 @@ }, { "type_name": "CMsgTEBloodStream", - "vtable_address": 6465166304, + "vtable_address": 6465170384, "methods": [ - 6447168224, - 6457189536, - 6447159888, - 6447160352, - 6447160512, - 6457189584, - 6457186560, - 6447160528, - 6447161872, - 6447160864, + 6447168496, + 6457191728, + 6447160112, + 6447160576, + 6447160736, + 6457191776, + 6457188752, + 6447160752, + 6447162096, + 6447161104, 6443742160, - 6447161568, - 6457190896, - 6457192720, - 6447161904, - 6447162704, - 6447162320, - 6457388960, - 6457389040, - 6457187520, - 6447168144 + 6447161792, + 6457193088, + 6457194912, + 6447162128, + 6447162928, + 6447162544, + 6457391152, + 6457391232, + 6457189712, + 6447168368 ], "bases": [ { @@ -154480,7 +154512,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401568, + "complete_object_locator": 6468405664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154489,25 +154521,25 @@ }, { "type_name": "CMsgTEBubbleTrail", - "vtable_address": 6465095872, + "vtable_address": 6465099952, "methods": [ - 6447021248, - 6457189536, - 6447017344, - 6447017808, - 6447017968, - 6457189584, - 6457186560, - 6447017984, - 6447019360, - 6447018336, + 6447021472, + 6457191728, + 6447017568, + 6447018032, + 6447018192, + 6457191776, + 6457188752, + 6447018208, + 6447019584, + 6447018560, 6443742160, - 6447019008, - 6457190896, - 6457192720, - 6447019376, - 6447019568, - 6447019552 + 6447019232, + 6457193088, + 6457194912, + 6447019600, + 6447019792, + 6447019776 ], "bases": [ { @@ -154541,7 +154573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401704, + "complete_object_locator": 6468405800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154550,35 +154582,35 @@ }, { "type_name": "CMsgTEBubbles", - "vtable_address": 6465094656, + "vtable_address": 6465098736, "methods": [ - 6446999232, - 6457189536, - 6446993696, - 6446994272, - 6446994432, - 6457189584, - 6457186560, - 6446994448, - 6446995920, - 6446994816, - 6443742160, - 6446995504, - 6457190896, - 6457192720, - 6446996064, - 6446996768, - 6446996752, - 6457187520, - 6446997808, - 6457187520, - 6446999152, - 6457187520, - 6447001056, - 6457187520, - 6447009088, - 6457187520, - 6447014528 + 6446999504, + 6457191728, + 6446993936, + 6446994496, + 6446994656, + 6457191776, + 6457188752, + 6446994672, + 6446996144, + 6446995040, + 6443742160, + 6446995792, + 6457193088, + 6457194912, + 6446996288, + 6446996992, + 6446996976, + 6457189712, + 6446998048, + 6457189712, + 6446999376, + 6457189712, + 6447001280, + 6457189712, + 6447009312, + 6457189712, + 6447014752 ], "bases": [ { @@ -154612,7 +154644,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401840, + "complete_object_locator": 6468405936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154621,29 +154653,29 @@ }, { "type_name": "CMsgTEDecal", - "vtable_address": 6465112664, + "vtable_address": 6465116744, "methods": [ - 6447035360, - 6457189536, + 6447035584, + 6457191728, 6444865616, - 6447030368, - 6447030528, - 6457189584, - 6457186560, - 6447030544, + 6447030592, + 6447030752, + 6457191776, + 6457188752, + 6447030768, 6444784816, - 6447030928, + 6447031152, 6443742160, - 6447031712, - 6457190896, - 6457192720, - 6447032176, - 6447032640, - 6447032496, - 6457388960, - 6457389040, - 6457187520, - 6447035552 + 6447031936, + 6457193088, + 6457194912, + 6447032400, + 6447032864, + 6447032720, + 6457391152, + 6457391232, + 6457189712, + 6447035776 ], "bases": [ { @@ -154677,7 +154709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468401976, + "complete_object_locator": 6468406072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154686,25 +154718,25 @@ }, { "type_name": "CMsgTEDust", - "vtable_address": 6465175320, - "methods": [ - 6447210928, - 6457189536, - 6447200144, - 6447200656, - 6447200848, - 6457189584, - 6457186560, - 6447200880, - 6447202720, - 6447201280, + "vtable_address": 6465179400, + "methods": [ + 6447211152, + 6457191728, + 6447200368, + 6447200912, + 6447201088, + 6457191776, + 6457188752, + 6447201152, + 6447202944, + 6447201952, 6443742160, - 6447202288, - 6457190896, - 6457192720, - 6447203504, - 6447205680, - 6447205648 + 6447202704, + 6457193088, + 6457194912, + 6447203744, + 6447205968, + 6447205888 ], "bases": [ { @@ -154738,7 +154770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402016, + "complete_object_locator": 6468406112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154747,25 +154779,25 @@ }, { "type_name": "CMsgTEEffectDispatch", - "vtable_address": 6465131312, - "methods": [ - 6447073760, - 6457189536, - 6447062816, - 6447064432, - 6447064640, - 6457189584, - 6457186560, - 6447064656, - 6447066176, - 6447065312, + "vtable_address": 6465135392, + "methods": [ + 6447074000, + 6457191728, + 6447063040, + 6447064800, + 6447064864, + 6457191776, + 6457188752, + 6447064880, + 6447066400, + 6447065536, 6443742160, - 6447066064, - 6457190896, - 6457192720, - 6447066224, - 6447066416, - 6447066384 + 6447066288, + 6457193088, + 6457194912, + 6447066448, + 6447066640, + 6447066624 ], "bases": [ { @@ -154799,7 +154831,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402152, + "complete_object_locator": 6468406248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154808,25 +154840,25 @@ }, { "type_name": "CMsgTEEnergySplash", - "vtable_address": 6465157120, - "methods": [ - 6447083264, - 6457189536, - 6447074544, - 6447074976, - 6447075120, - 6457189584, - 6457186560, - 6447075136, - 6447076400, - 6447075440, + "vtable_address": 6465161200, + "methods": [ + 6447083488, + 6457191728, + 6447074768, + 6447075200, + 6447075344, + 6457191776, + 6457188752, + 6447075360, + 6447076624, + 6447075664, 6443742160, - 6447076032, - 6457190896, - 6457192720, - 6447076432, - 6447077456, - 6447076912 + 6447076416, + 6457193088, + 6457194912, + 6447076656, + 6447077680, + 6447077376 ], "bases": [ { @@ -154860,7 +154892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402288, + "complete_object_locator": 6468406384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154869,25 +154901,25 @@ }, { "type_name": "CMsgTEExplosion", - "vtable_address": 6465168368, + "vtable_address": 6465172448, "methods": [ - 6447191984, - 6457189536, - 6447171008, - 6447172352, - 6447172608, - 6457189584, - 6457186560, - 6447172624, - 6447175328, - 6447173232, + 6447192368, + 6457191728, + 6447171232, + 6447172576, + 6447172832, + 6457191776, + 6457188752, + 6447172848, + 6447175552, + 6447173456, 6443742160, - 6447174560, - 6457190896, - 6457192720, - 6447175408, - 6447175440, - 6447175424 + 6447174784, + 6457193088, + 6457194912, + 6447175632, + 6447175664, + 6447175648 ], "bases": [ { @@ -154921,7 +154953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402424, + "complete_object_locator": 6468406520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154930,31 +154962,31 @@ }, { "type_name": "CMsgTEFireBullets", - "vtable_address": 6464978944, - "methods": [ - 6446319920, - 6457189536, - 6446268720, - 6446270640, - 6446270912, - 6457189584, - 6457186560, - 6446271088, - 6446275024, - 6446271824, + "vtable_address": 6464983040, + "methods": [ + 6446319952, + 6457191728, + 6446269104, + 6446270320, + 6446270880, + 6457191776, + 6457188752, + 6446270896, + 6446275392, + 6446271904, 6443742160, - 6446273696, - 6457190896, - 6457192720, - 6446275216, - 6446282912, - 6446281584, - 6457187520, - 6446317488, - 6457187520, - 6446319568, - 6457187520, - 6446320176 + 6446274080, + 6457193088, + 6457194912, + 6446275456, + 6446283296, + 6446281968, + 6457189712, + 6446317872, + 6457189712, + 6446320192, + 6457189712, + 6446320560 ], "bases": [ { @@ -154988,7 +155020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326576, + "complete_object_locator": 6468330808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -154997,27 +155029,27 @@ }, { "type_name": "CMsgTEFireBullets_Extra", - "vtable_address": 6464975088, + "vtable_address": 6464979184, "methods": [ - 6446262176, - 6457189536, - 6446243408, - 6446244096, - 6446244192, - 6457189584, - 6457186560, - 6446244208, - 6446246480, - 6446244704, + 6446262544, + 6457191728, + 6446243792, + 6446244416, + 6446244576, + 6457191776, + 6457188752, + 6446244592, + 6446246864, + 6446245088, 6443742160, - 6446245872, - 6457190896, - 6457192720, - 6446247744, - 6446248784, - 6446248768, - 6457187520, - 6446260240 + 6446246256, + 6457193088, + 6457194912, + 6446248128, + 6446249168, + 6446249152, + 6457189712, + 6446260624 ], "bases": [ { @@ -155051,7 +155083,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297744, + "complete_object_locator": 6468301976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155060,27 +155092,27 @@ }, { "type_name": "CMsgTEFizz", - "vtable_address": 6465159184, + "vtable_address": 6465163264, "methods": [ - 6447093776, - 6457189536, - 6447087696, - 6447087792, - 6447087840, - 6457189584, - 6457186560, - 6447087856, - 6447088960, - 6447087984, + 6447094000, + 6457191728, + 6447087920, + 6447088016, + 6447088064, + 6457191776, + 6457188752, + 6447088080, + 6447089184, + 6447088208, 6443742160, - 6447088576, - 6457190896, - 6457192720, - 6447088976, - 6447090224, - 6447090064, - 6457187520, - 6447092784 + 6447088800, + 6457193088, + 6457194912, + 6447089376, + 6447090448, + 6447090432, + 6457189712, + 6447093008 ], "bases": [ { @@ -155114,7 +155146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402560, + "complete_object_locator": 6468406656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155123,25 +155155,25 @@ }, { "type_name": "CMsgTEGlowSprite", - "vtable_address": 6465162048, + "vtable_address": 6465166128, "methods": [ - 6447125680, - 6457189536, - 6447120608, - 6447121568, - 6447121856, - 6457189584, - 6457186560, - 6447121904, - 6447124000, - 6447122480, + 6447125904, + 6457191728, + 6447120832, + 6447121792, + 6447122096, + 6457191776, + 6457188752, + 6447122128, + 6447124224, + 6447122720, 6443742160, - 6447123552, - 6457190896, - 6457192720, - 6447124128, - 6447124272, - 6447124240 + 6447123776, + 6457193088, + 6457194912, + 6447124352, + 6447124496, + 6447124464 ], "bases": [ { @@ -155175,7 +155207,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402696, + "complete_object_locator": 6468406792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155184,27 +155216,27 @@ }, { "type_name": "CMsgTEImpact", - "vtable_address": 6465163032, + "vtable_address": 6465167112, "methods": [ - 6447138640, - 6457189536, - 6447132272, - 6447133280, - 6447133440, - 6457189584, - 6457186560, - 6447133456, - 6447134944, - 6447133792, + 6447138864, + 6457191728, + 6447132496, + 6447133520, + 6447133664, + 6457191776, + 6457188752, + 6447133680, + 6447135184, + 6447134016, 6443742160, - 6447134608, - 6457190896, - 6457192720, - 6447136336, - 6447137216, - 6447137200, - 6457187520, - 6447137696 + 6447134912, + 6457193088, + 6457194912, + 6447136560, + 6447137440, + 6447137424, + 6457189712, + 6447137920 ], "bases": [ { @@ -155238,7 +155270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402832, + "complete_object_locator": 6468406928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155247,27 +155279,27 @@ }, { "type_name": "CMsgTELargeFunnel", - "vtable_address": 6465176424, - "methods": [ - 6447219904, - 6457189536, - 6447215152, - 6447215440, - 6447215536, - 6457189584, - 6457186560, - 6447215552, - 6447216704, - 6447215744, + "vtable_address": 6465180504, + "methods": [ + 6447220128, + 6457191728, + 6447215376, + 6447215664, + 6447215760, + 6457191776, + 6457188752, + 6447215776, + 6447217216, + 6447215968, 6443742160, - 6447216464, - 6457190896, - 6457192720, - 6447217520, - 6447217856, - 6447217840, - 6457187520, - 6447218480 + 6447216704, + 6457193088, + 6457194912, + 6447218016, + 6447218080, + 6447218064, + 6457189712, + 6447218704 ], "bases": [ { @@ -155301,7 +155333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468402968, + "complete_object_locator": 6468407064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155310,27 +155342,25 @@ }, { "type_name": "CMsgTEMuzzleFlash", - "vtable_address": 6465164976, - "methods": [ - 6447149392, - 6457189536, - 6447142272, - 6447142704, - 6447142864, - 6457189584, - 6457186560, - 6447142880, - 6447144144, - 6447143216, - 6443742160, - 6447143840, - 6457190896, - 6457192720, - 6447144352, - 6447144400, + "vtable_address": 6465169072, + "methods": [ + 6447149808, + 6457191728, + 6447142496, + 6447142928, + 6447143088, + 6457191776, + 6457188752, + 6447143104, 6447144368, - 6457187520, - 6447146176 + 6447143440, + 6443742160, + 6447144064, + 6457193088, + 6457194912, + 6447144576, + 6447144624, + 6447144592 ], "bases": [ { @@ -155364,7 +155394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468403104, + "complete_object_locator": 6468407200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155373,29 +155403,29 @@ }, { "type_name": "CMsgTEPhysicsProp", - "vtable_address": 6465179768, - "methods": [ - 6447257104, - 6457189536, - 6447241840, - 6447242848, - 6447243296, - 6457189584, - 6457186560, - 6447243312, - 6447246304, - 6447244112, - 6443742160, - 6447245456, - 6457190896, - 6457192720, - 6447246576, - 6447246608, + "vtable_address": 6465183848, + "methods": [ + 6447257328, + 6457191728, + 6447242064, + 6447243216, + 6447243520, + 6457191776, + 6457188752, + 6447243536, 6447246592, - 6457187520, - 6447255536, - 6457187520, - 6447256272 + 6447244336, + 6443742160, + 6447245696, + 6457193088, + 6457194912, + 6447246800, + 6447246832, + 6447246816, + 6457189712, + 6447255760, + 6457189712, + 6447256496 ], "bases": [ { @@ -155429,7 +155459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468403240, + "complete_object_locator": 6468407336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155438,25 +155468,25 @@ }, { "type_name": "CMsgTEPlayerAnimEvent", - "vtable_address": 6464966592, + "vtable_address": 6464970688, "methods": [ - 6446219152, - 6457189536, - 6446212944, - 6446213328, - 6446213376, - 6457189584, - 6457186560, - 6446213392, - 6446214448, - 6446213504, + 6446219536, + 6457191728, + 6446213248, + 6446213712, + 6446213760, + 6457191776, + 6457188752, + 6446213776, + 6446214832, + 6446213888, 6443742160, - 6446214112, - 6457190896, - 6457192720, - 6446214768, - 6446216256, - 6446216128 + 6446214496, + 6457193088, + 6457194912, + 6446215008, + 6446216640, + 6446216512 ], "bases": [ { @@ -155490,7 +155520,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468297880, + "complete_object_locator": 6468302112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155499,25 +155529,25 @@ }, { "type_name": "CMsgTERadioIcon", - "vtable_address": 6464972368, + "vtable_address": 6464976464, "methods": [ - 6446235232, - 6457189536, - 6446230816, - 6446231504, - 6446231616, - 6457189584, - 6457186560, - 6446231872, - 6446233664, - 6446232848, + 6446235616, + 6457191728, + 6446231184, + 6446231888, + 6446232000, + 6457191776, + 6457188752, + 6446232080, + 6446234048, + 6446232992, 6443742160, - 6446233536, - 6457190896, - 6457192720, - 6446233712, - 6446233968, - 6446233888 + 6446233920, + 6457193088, + 6457194912, + 6446234096, + 6446234288, + 6446234208 ], "bases": [ { @@ -155551,7 +155581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468298016, + "complete_object_locator": 6468302248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155560,25 +155590,25 @@ }, { "type_name": "CMsgTEShatterSurface", - "vtable_address": 6465160944, - "methods": [ - 6447117040, - 6457189536, - 6447094624, - 6447095984, - 6447096256, - 6457189584, - 6457186560, - 6447096704, - 6447100912, - 6447098224, - 6443742160, - 6447099920, - 6457190896, - 6457192720, - 6447101200, - 6447101344, - 6447101248 + "vtable_address": 6465165024, + "methods": [ + 6447117264, + 6457191728, + 6447094848, + 6447096208, + 6447096480, + 6457191776, + 6457188752, + 6447097024, + 6447101136, + 6447098528, + 6443742160, + 6447100592, + 6457193088, + 6457194912, + 6447101424, + 6447101568, + 6447101488 ], "bases": [ { @@ -155612,7 +155642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468403376, + "complete_object_locator": 6468407472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155621,25 +155651,25 @@ }, { "type_name": "CMsgTESmoke", - "vtable_address": 6465191984, + "vtable_address": 6465196064, "methods": [ - 6447273280, - 6457189536, - 6447265088, - 6447265360, - 6447265456, - 6457189584, - 6457186560, - 6447265472, - 6447266224, - 6447265632, + 6447273536, + 6457191728, + 6447265312, + 6447265584, + 6447265680, + 6457191776, + 6457188752, + 6447265696, + 6447266448, + 6447265856, 6443742160, - 6447266048, - 6457190896, - 6457192720, - 6447266384, - 6447266416, - 6447266400 + 6447266272, + 6457193088, + 6457194912, + 6447266608, + 6447266640, + 6447266624 ], "bases": [ { @@ -155673,7 +155703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468403512, + "complete_object_locator": 6468407608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155682,29 +155712,29 @@ }, { "type_name": "CMsgTESparks", - "vtable_address": 6465177704, + "vtable_address": 6465181784, "methods": [ - 6447237792, - 6457189536, - 6447224960, - 6447225760, - 6447225920, - 6457189584, - 6457186560, - 6447225936, - 6447227616, - 6447226288, + 6447238384, + 6457191728, + 6447225248, + 6447225984, + 6447226144, + 6457191776, + 6457188752, + 6447226160, + 6447227840, + 6447226512, 6443742160, - 6447226976, - 6457190896, - 6457192720, - 6447227648, - 6447228432, - 6447228416, - 6457187520, - 6447232144, - 6457187520, - 6447232464 + 6447227472, + 6457193088, + 6457194912, + 6447227872, + 6447229184, + 6447228640, + 6457189712, + 6447232368, + 6457189712, + 6447232704 ], "bases": [ { @@ -155738,7 +155768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468403648, + "complete_object_locator": 6468407744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155747,27 +155777,27 @@ }, { "type_name": "CMsgTEWorldDecal", - "vtable_address": 6465193232, + "vtable_address": 6465197312, "methods": [ - 6447299568, - 6457189536, + 6447299792, + 6457191728, 6444865632, - 6447294896, - 6447295040, - 6457189584, - 6457186560, - 6447295056, + 6447295120, + 6447295264, + 6457191776, + 6457188752, + 6447295280, 6444784832, - 6447295376, + 6447295600, 6443742160, - 6447295952, - 6457190896, - 6457192720, - 6447296208, - 6447296384, - 6447296368, - 6457187520, - 6447299776 + 6447296176, + 6457193088, + 6457194912, + 6447296432, + 6447296608, + 6447296592, + 6457189712, + 6447300000 ], "bases": [ { @@ -155801,7 +155831,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468403784, + "complete_object_locator": 6468407880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155810,25 +155840,25 @@ }, { "type_name": "CMsgTransform", - "vtable_address": 6465165488, - "methods": [ - 6447157504, - 6457189536, - 6447145968, - 6447146608, - 6447146864, - 6457189584, - 6457186560, - 6447146880, - 6447148928, - 6447147712, + "vtable_address": 6465169568, + "methods": [ + 6447157728, + 6457191728, + 6447146176, + 6447146816, + 6447146976, + 6457191776, + 6457188752, + 6447147104, + 6447149136, + 6447147936, 6443742160, - 6447148720, - 6457190896, - 6457192720, - 6447148960, - 6447149584, - 6447149360 + 6447148928, + 6457193088, + 6457194912, + 6447149184, + 6447149616, + 6447149520 ], "bases": [ { @@ -155862,7 +155892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371744, + "complete_object_locator": 6468375840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155871,31 +155901,31 @@ }, { "type_name": "CMsgUpdateItemSchema", - "vtable_address": 6464965968, + "vtable_address": 6464970064, "methods": [ - 6446215040, - 6457189536, - 6446196208, - 6446198320, - 6446199520, - 6457189584, - 6457186560, - 6446199536, - 6446201376, - 6446200496, + 6446216352, + 6457191728, + 6446197584, + 6446200512, + 6446200608, + 6457191776, + 6457188752, + 6446200624, + 6446201776, + 6446201040, 6443742160, - 6446201184, - 6457190896, - 6457192720, - 6446202288, - 6446202416, - 6446202400, - 6457187520, - 6446213248, - 6457187520, - 6446214608, - 6457187520, - 6446214800 + 6446201584, + 6457193088, + 6457194912, + 6446202688, + 6446202800, + 6446202784, + 6457189712, + 6446213632, + 6457189712, + 6446214848, + 6457189712, + 6446215184 ], "bases": [ { @@ -155929,7 +155959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468324536, + "complete_object_locator": 6468328768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -155938,29 +155968,29 @@ }, { "type_name": "CMsgUseItem", - "vtable_address": 6464980080, - "methods": [ - 6446335472, - 6457189536, - 6446322080, - 6446322320, - 6446322432, - 6457189584, - 6457186560, - 6446322512, - 6446324176, - 6446322688, - 6443742160, - 6446323648, - 6457190896, - 6457192720, - 6446325840, - 6446326352, - 6446326336, - 6457187520, - 6446332048, - 6457187520, - 6446332976 + "vtable_address": 6464984176, + "methods": [ + 6446336416, + 6457191728, + 6446322464, + 6446322720, + 6446322816, + 6457191776, + 6457188752, + 6446322896, + 6446325216, + 6446323536, + 6443742160, + 6446324688, + 6457193088, + 6457194912, + 6446326688, + 6446326736, + 6446326720, + 6457189712, + 6446332432, + 6457189712, + 6446332800 ], "bases": [ { @@ -155994,7 +156024,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468324672, + "complete_object_locator": 6468328904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156003,29 +156033,25 @@ }, { "type_name": "CMsgVDebugGameSessionIDEvent", - "vtable_address": 6465023968, + "vtable_address": 6465027920, "methods": [ - 6446535536, - 6457189536, - 6446523008, - 6446524064, - 6446524128, - 6457189584, - 6457186560, - 6446524144, - 6446524976, - 6446524256, + 6446535472, + 6457191728, + 6446523232, + 6446524448, + 6446524512, + 6457191776, + 6457188752, + 6446524528, + 6446525360, + 6446524640, 6443742160, - 6446524752, - 6457190896, - 6457192720, - 6446525168, - 6446525264, - 6446525248, - 6457187520, - 6446528640, - 6457187520, - 6446534800 + 6446525136, + 6457193088, + 6457194912, + 6446525376, + 6446525648, + 6446525632 ], "bases": [ { @@ -156059,7 +156085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468306096, + "complete_object_locator": 6468310328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156068,27 +156094,27 @@ }, { "type_name": "CMsgVector", - "vtable_address": 6465160320, - "methods": [ - 6447109008, - 6457189536, - 6447094640, - 6447097392, - 6447098208, - 6457189584, - 6457186560, - 6447099216, - 6447101168, - 6447100464, - 6443742160, - 6447100928, - 6457190896, - 6457192720, - 6447101216, - 6447101424, - 6447101408, - 6457187520, - 6447107872 + "vtable_address": 6465164400, + "methods": [ + 6447109232, + 6457191728, + 6447094864, + 6447097616, + 6447097648, + 6457191776, + 6457188752, + 6447098448, + 6447101392, + 6447100144, + 6443742160, + 6447101152, + 6457193088, + 6457194912, + 6447101440, + 6447101648, + 6447101632, + 6457189712, + 6447108112 ], "bases": [ { @@ -156122,7 +156148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371880, + "complete_object_locator": 6468375976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156131,35 +156157,35 @@ }, { "type_name": "CMsgVector2D", - "vtable_address": 6465161248, - "methods": [ - 6447122336, - 6457189536, - 6447117440, - 6447117536, - 6447117568, - 6457189584, - 6457186560, - 6447117776, - 6447118368, - 6447117824, - 6443742160, - 6447118192, - 6457190896, - 6457192720, - 6447118384, + "vtable_address": 6465165328, + "methods": [ + 6447122560, + 6457191728, + 6447117664, + 6447117760, + 6447117792, + 6457191776, + 6457188752, + 6447117808, + 6447118592, + 6447118048, + 6443742160, 6447118416, - 6447118400, - 6457187520, - 6447118512, - 6457187520, + 6457193088, + 6457194912, + 6447118608, + 6447118640, + 6447118624, + 6457189712, 6447118736, - 6457388960, - 6457389040, - 6457187520, - 6447121392, - 6457187520, - 6447121104 + 6457189712, + 6447118960, + 6457391152, + 6457391232, + 6457189712, + 6447121616, + 6457189712, + 6447121328 ], "bases": [ { @@ -156193,7 +156219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372016, + "complete_object_locator": 6468376112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156202,27 +156228,27 @@ }, { "type_name": "CMsgVoiceAudio", - "vtable_address": 6465211672, + "vtable_address": 6465215752, "methods": [ - 6447359024, - 6457189536, - 6447349344, - 6447349680, - 6447349792, - 6457189584, - 6457186560, - 6447349824, - 6447352656, - 6447350352, + 6447359248, + 6457191728, + 6447349568, + 6447349904, + 6447350016, + 6457191776, + 6457188752, + 6447350048, + 6447352880, + 6447350576, 6443742160, - 6447351680, - 6457190896, - 6457192720, - 6447353504, - 6447353888, - 6447353856, - 6457187520, - 6447357760 + 6447351904, + 6457193088, + 6457194912, + 6447353728, + 6447354112, + 6447354080, + 6457189712, + 6447357984 ], "bases": [ { @@ -156256,7 +156282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386016, + "complete_object_locator": 6468390112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156265,25 +156291,25 @@ }, { "type_name": "CMsg_CVars", - "vtable_address": 6465178216, - "methods": [ - 6447241680, - 6457189536, - 6447223376, - 6447223600, - 6447223840, - 6457189584, - 6457186560, - 6447223920, - 6447224912, - 6447224272, + "vtable_address": 6465182296, + "methods": [ + 6447241904, + 6457191728, + 6447223216, + 6447223824, + 6447224064, + 6457191776, + 6457188752, + 6447224144, + 6447225072, + 6447224496, 6443742160, - 6447224768, - 6457190896, - 6457192720, 6447224928, - 6447224976, - 6447224944 + 6457193088, + 6457194912, + 6447225152, + 6447225184, + 6447225168 ], "bases": [ { @@ -156317,7 +156343,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372152, + "complete_object_locator": 6468376248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156326,25 +156352,25 @@ }, { "type_name": "CMsg_CVars_CVar", - "vtable_address": 6465176280, + "vtable_address": 6465180360, "methods": [ - 6447218304, - 6457189536, - 6447213040, + 6447218528, + 6457191728, 6447213264, - 6447213360, - 6457189584, - 6457186560, - 6447213376, - 6447214192, - 6447213552, + 6447213488, + 6447213584, + 6457191776, + 6457188752, + 6447213600, + 6447214368, + 6447213728, 6443742160, - 6447214032, - 6457190896, - 6457192720, - 6447214784, - 6447215008, - 6447214992 + 6447214208, + 6457193088, + 6457194912, + 6447214992, + 6447215232, + 6447215216 ], "bases": [ { @@ -156378,7 +156404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372288, + "complete_object_locator": 6468376384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156387,35 +156413,35 @@ }, { "type_name": "CNETMsg_DebugOverlay", - "vtable_address": 6465092592, - "methods": [ - 6446976848, - 6457189536, - 6446936976, - 6446937328, - 6446937632, - 6457189584, - 6457186560, - 6446937648, - 6446940528, - 6446938448, - 6443742160, - 6446939728, - 6457190896, - 6457192720, - 6446940800, - 6446941888, - 6446941872, - 6457187520, - 6446977088, - 6457187520, - 6446978176, - 6457388960, - 6457389040, - 6457187520, - 6446978992, - 6457187520, - 6446980736 + "vtable_address": 6465096672, + "methods": [ + 6446977072, + 6457191728, + 6446937200, + 6446937552, + 6446937856, + 6457191776, + 6457188752, + 6446937872, + 6446940752, + 6446938656, + 6443742160, + 6446939952, + 6457193088, + 6457194912, + 6446940928, + 6446942112, + 6446942096, + 6457189712, + 6446977312, + 6457189712, + 6446978400, + 6457391152, + 6457391232, + 6457189712, + 6446979216, + 6457189712, + 6446980368 ], "bases": [ { @@ -156449,7 +156475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372424, + "complete_object_locator": 6468376520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156458,25 +156484,25 @@ }, { "type_name": "CNETMsg_NOP", - "vtable_address": 6465179000, - "methods": [ - 6447250448, - 6457189536, - 6447247008, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447247648, - 6447247264 + "vtable_address": 6465183080, + "methods": [ + 6447250672, + 6457191728, + 6447247232, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447247872, + 6447247488 ], "bases": [ { @@ -156524,7 +156550,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372464, + "complete_object_locator": 6468376560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156533,25 +156559,25 @@ }, { "type_name": "CNETMsg_SetConVar", - "vtable_address": 6465194512, - "methods": [ - 6447311616, - 6457189536, - 6447309248, - 6447309552, - 6447309616, - 6457189584, - 6457186560, - 6447309632, - 6447310192, - 6447309696, + "vtable_address": 6465198592, + "methods": [ + 6447311840, + 6457191728, + 6447309472, + 6447309776, + 6447309840, + 6457191776, + 6457188752, + 6447309856, + 6447310416, + 6447309920, 6443742160, - 6447310080, - 6457190896, - 6457192720, - 6447310208, - 6447310240, - 6447310224 + 6447310304, + 6457193088, + 6457194912, + 6447310432, + 6447310464, + 6447310448 ], "bases": [ { @@ -156585,7 +156611,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372608, + "complete_object_locator": 6468376704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156594,27 +156620,27 @@ }, { "type_name": "CNETMsg_SignonState", - "vtable_address": 6465197272, - "methods": [ - 6447323632, - 6457189536, - 6447314736, - 6447315008, - 6447315152, - 6457189584, - 6457186560, - 6447315168, - 6447317072, - 6447315536, - 6443742160, - 6447316448, - 6457190896, - 6457192720, - 6447317088, - 6447317120, - 6447317104, - 6457187520, - 6447321760 + "vtable_address": 6465201352, + "methods": [ + 6447323856, + 6457191728, + 6447314896, + 6447315232, + 6447315376, + 6457191776, + 6457188752, + 6447315392, + 6447317296, + 6447315760, + 6443742160, + 6447316672, + 6457193088, + 6457194912, + 6447317312, + 6447317344, + 6447317328, + 6457189712, + 6447321984 ], "bases": [ { @@ -156648,7 +156674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372648, + "complete_object_locator": 6468376744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156657,27 +156683,27 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load", - "vtable_address": 6465217944, - "methods": [ - 6447432656, - 6457189536, - 6447403440, - 6447404688, - 6447405120, - 6457189584, - 6457186560, - 6447405136, - 6447409568, - 6447406240, - 6443742160, - 6447408272, - 6457190896, - 6457192720, - 6447411184, - 6447412288, - 6447412144, - 6457388960, - 6457389040 + "vtable_address": 6465222024, + "methods": [ + 6447432880, + 6457191728, + 6447403664, + 6447404912, + 6447405344, + 6457191776, + 6457188752, + 6447405360, + 6447409632, + 6447406304, + 6443742160, + 6447408336, + 6457193088, + 6457194912, + 6447411392, + 6447412512, + 6447412368, + 6457391152, + 6457391232 ], "bases": [ { @@ -156711,7 +156737,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372688, + "complete_object_locator": 6468376784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156720,37 +156746,37 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted", - "vtable_address": 6465084472, + "vtable_address": 6465088552, "methods": [ - 6446883424, - 6457189536, - 6446873040, - 6446873184, - 6446873216, - 6457189584, - 6457186560, - 6446873232, - 6446873840, - 6446873280, - 6443742160, - 6446873664, - 6457190896, - 6457192720, - 6446873872, - 6446874768, - 6446874448, - 6457187520, - 6446875776, - 6457187520, - 6446876352, - 6457187520, - 6446880896, - 6457187520, - 6446881344, - 6457187520, - 6446884624, - 6457187520, - 6446884480 + 6446883648, + 6457191728, + 6446873264, + 6446873408, + 6446873440, + 6457191776, + 6457188752, + 6446873456, + 6446874064, + 6446873504, + 6443742160, + 6446873888, + 6457193088, + 6457194912, + 6446874080, + 6446874688, + 6446874656, + 6457189712, + 6446875936, + 6457189712, + 6446877248, + 6457189712, + 6446881104, + 6457189712, + 6446881568, + 6457189712, + 6446884848, + 6457189712, + 6446884640 ], "bases": [ { @@ -156784,7 +156810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372728, + "complete_object_locator": 6468376824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156793,25 +156819,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate", - "vtable_address": 6465078792, - "methods": [ - 6446843888, - 6457189536, - 6447437184, - 6447437616, - 6447437696, - 6457189584, - 6457186560, - 6447437712, - 6447439392, - 6447438112, - 6443742160, - 6447439136, - 6457190896, - 6457192720, - 6447440704, - 6447441328, - 6447441296 + "vtable_address": 6465082872, + "methods": [ + 6446844112, + 6457191728, + 6447437408, + 6447437840, + 6447437920, + 6457191776, + 6457188752, + 6447437936, + 6447439344, + 6447438048, + 6443742160, + 6447439088, + 6457193088, + 6457194912, + 6447440912, + 6447441536, + 6447441488 ], "bases": [ { @@ -156845,7 +156871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372768, + "complete_object_locator": 6468376864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156854,25 +156880,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick", - "vtable_address": 6465079976, - "methods": [ - 6446854160, - 6457189536, - 6446847904, - 6446848192, - 6446848736, - 6457189584, - 6457186560, - 6446848752, - 6446850272, - 6446849136, - 6443742160, - 6446849904, - 6457190896, - 6457192720, - 6446850688, - 6446852352, - 6446852336 + "vtable_address": 6465084056, + "methods": [ + 6446854384, + 6457191728, + 6446848128, + 6446848416, + 6446848464, + 6457191776, + 6457188752, + 6446848976, + 6446850496, + 6446849344, + 6443742160, + 6446850128, + 6457193088, + 6457194912, + 6446850912, + 6446852576, + 6446852560 ], "bases": [ { @@ -156906,7 +156932,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372808, + "complete_object_locator": 6468376904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156915,31 +156941,31 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload", - "vtable_address": 6465083064, + "vtable_address": 6465087144, "methods": [ - 6446867952, - 6457189536, - 6446859232, - 6446859616, - 6446859680, - 6457189584, - 6457186560, - 6446859696, - 6446861088, + 6446868176, + 6457191728, + 6446859456, 6446859824, - 6443742160, - 6446860560, - 6457190896, - 6457192720, - 6446862560, - 6446863472, - 6446863424, - 6457187520, - 6446866640, - 6457187520, - 6446867808, - 6457187520, - 6446869168 + 6446859904, + 6457191776, + 6457188752, + 6446859920, + 6446861312, + 6446860048, + 6443742160, + 6446860784, + 6457193088, + 6457194912, + 6446862784, + 6446863696, + 6446863648, + 6457189712, + 6446866848, + 6457189712, + 6446868032, + 6457189712, + 6446869392 ], "bases": [ { @@ -156973,7 +156999,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372848, + "complete_object_locator": 6468376944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -156982,27 +157008,27 @@ }, { "type_name": "CNETMsg_SplitScreenUser", - "vtable_address": 6465179944, - "methods": [ - 6447263520, - 6457189536, - 6447255520, - 6447255584, - 6447255616, - 6457189584, - 6457186560, - 6447255632, - 6447256256, - 6447255680, - 6443742160, - 6447256080, - 6457190896, - 6457192720, + "vtable_address": 6465184024, + "methods": [ + 6447263568, + 6457191728, + 6447255744, + 6447255808, + 6447255840, + 6457191776, + 6457188752, + 6447255856, 6447256480, - 6447257424, - 6447257408, - 6457187520, - 6447257600 + 6447255904, + 6443742160, + 6447256304, + 6457193088, + 6457194912, + 6447256640, + 6447257648, + 6447257616, + 6457189712, + 6447257824 ], "bases": [ { @@ -157036,7 +157062,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468372888, + "complete_object_locator": 6468376984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -157045,25 +157071,25 @@ }, { "type_name": "CNETMsg_StringCmd", - "vtable_address": 6465193728, - "methods": [ - 6447305312, - 6457189536, - 6447301088, - 6447301440, - 6447301680, - 6457189584, - 6457186560, - 6447301776, - 6447303376, - 6447302256, + "vtable_address": 6465197808, + "methods": [ + 6447305536, + 6457191728, + 6447301312, + 6447301488, + 6447301744, + 6457191776, + 6457188752, + 6447301984, + 6447303600, + 6447302480, 6443742160, - 6447303152, - 6457190896, - 6457192720, - 6447303856, - 6447304176, - 6447304064 + 6447303376, + 6457193088, + 6457194912, + 6447304080, + 6447304144, + 6447304128 ], "bases": [ { @@ -157097,7 +157123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373024, + "complete_object_locator": 6468377120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -157106,25 +157132,25 @@ }, { "type_name": "CNETMsg_Tick", - "vtable_address": 6465192768, + "vtable_address": 6465196848, "methods": [ - 6447296816, - 6457189536, - 6447266656, - 6447266944, - 6447267040, - 6457189584, - 6457186560, - 6447267056, - 6447270208, - 6447267440, + 6447297040, + 6457191728, + 6447266880, + 6447267152, + 6447267248, + 6457191776, + 6457188752, + 6447267264, + 6447269920, + 6447267664, 6443742160, - 6447269232, - 6457190896, - 6457192720, - 6447272864, - 6447272944, - 6447272928 + 6447268944, + 6457193088, + 6457194912, + 6447270832, + 6447273152, + 6447273136 ], "bases": [ { @@ -157158,7 +157184,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373064, + "complete_object_locator": 6468377160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -157167,18 +157193,18 @@ }, { "type_name": "CNetMessage", - "vtable_address": 6464397592, + "vtable_address": 6464401688, "methods": [ 6443723904, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468211288, + "complete_object_locator": 6468215384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -157187,13 +157213,13 @@ }, { "type_name": "CNetMessagePB<101,class CUserMessageAchievementEvent,13,1,1>", - "vtable_address": 6465868880, + "vtable_address": 6465873072, "methods": [ - 6450069392, - 6450069136, - 6450069120, - 6450069152, - 6450069232 + 6450070960, + 6450070704, + 6450070688, + 6450070720, + 6450070800 ], "bases": [ { @@ -157255,7 +157281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538368, + "complete_object_locator": 6468542464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -157264,25 +157290,25 @@ }, { "type_name": "CNetMessagePB<101,class CUserMessageAchievementEvent,13,1,1>", - "vtable_address": 6465868928, - "methods": [ - 6450064020, - 6457189536, - 6447323904, - 6447323984, - 6447324016, - 6457189584, - 6457186560, - 6447324032, - 6447324864, - 6447324080, + "vtable_address": 6465873120, + "methods": [ + 6450065588, + 6457191728, + 6447324128, + 6447324208, + 6447324240, + 6457191776, + 6457188752, + 6447324256, + 6447325088, + 6447324304, 6443742160, - 6447324544, - 6457190896, - 6457192720, - 6447324880, - 6447325232, - 6447325216 + 6447324704, + 6457193088, + 6457194912, + 6447325104, + 6447325456, + 6447325440 ], "bases": [ { @@ -157344,7 +157370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538560, + "complete_object_locator": 6468542656, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -157353,17 +157379,17 @@ }, { "type_name": "CNetMessagePB<101,class CUserMessageAchievementEvent,13,1,1>::CProtobufBinding", - "vtable_address": 6465859736, - "methods": [ - 6450039664, - 6450039648, - 6450039376, - 6450040752, - 6450040768, - 6450040912, - 6450040928, - 6450041088, - 6450041104 + "vtable_address": 6465863928, + "methods": [ + 6450041232, + 6450041216, + 6450040944, + 6450042320, + 6450042336, + 6450042480, + 6450042496, + 6450042656, + 6450042672 ], "bases": [ { @@ -157383,7 +157409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538600, + "complete_object_locator": 6468542696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -157392,13 +157418,13 @@ }, { "type_name": "CNetMessagePB<102,class CUserMessageCloseCaption,13,1,1>", - "vtable_address": 6465872944, + "vtable_address": 6465877136, "methods": [ - 6450071232, - 6450070976, - 6450070960, - 6450070992, - 6450071072 + 6450072800, + 6450072544, + 6450072528, + 6450072560, + 6450072640 ], "bases": [ { @@ -157460,7 +157486,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540168, + "complete_object_locator": 6468544264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -157469,25 +157495,25 @@ }, { "type_name": "CNetMessagePB<102,class CUserMessageCloseCaption,13,1,1>", - "vtable_address": 6465872992, - "methods": [ - 6450064080, - 6457189536, - 6447334416, - 6447334688, - 6447334736, - 6457189584, - 6457186560, - 6447334752, - 6447336656, - 6447335232, - 6443742160, - 6447336224, - 6457190896, - 6457192720, - 6447337408, - 6447337712, - 6447337696 + "vtable_address": 6465877184, + "methods": [ + 6450065648, + 6457191728, + 6447334640, + 6447334912, + 6447334960, + 6457191776, + 6457188752, + 6447334976, + 6447336880, + 6447335456, + 6443742160, + 6447336448, + 6457193088, + 6457194912, + 6447337632, + 6447337936, + 6447337920 ], "bases": [ { @@ -157549,7 +157575,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540360, + "complete_object_locator": 6468544456, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -157558,17 +157584,17 @@ }, { "type_name": "CNetMessagePB<102,class CUserMessageCloseCaption,13,1,1>::CProtobufBinding", - "vtable_address": 6465859216, - "methods": [ - 6450030944, - 6450030928, - 6450030656, - 6450032032, - 6450032048, - 6450032192, - 6450032208, - 6450032368, - 6450032384 + "vtable_address": 6465863408, + "methods": [ + 6450032512, + 6450032496, + 6450032224, + 6450033600, + 6450033616, + 6450033760, + 6450033776, + 6450033936, + 6450033952 ], "bases": [ { @@ -157588,7 +157614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540400, + "complete_object_locator": 6468544496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -157597,13 +157623,13 @@ }, { "type_name": "CNetMessagePB<103,class CUserMessageCloseCaptionDirect,13,1,1>", - "vtable_address": 6465873136, + "vtable_address": 6465877328, "methods": [ - 6450071600, - 6450071344, - 6450071328, - 6450071360, - 6450071440 + 6450073168, + 6450072912, + 6450072896, + 6450072928, + 6450073008 ], "bases": [ { @@ -157665,7 +157691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540528, + "complete_object_locator": 6468544624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -157674,25 +157700,25 @@ }, { "type_name": "CNetMessagePB<103,class CUserMessageCloseCaptionDirect,13,1,1>", - "vtable_address": 6465873184, - "methods": [ - 6450064092, - 6457189536, - 6447349808, - 6447352768, - 6447352816, - 6457189584, - 6457186560, - 6447352832, - 6447353840, - 6447352928, + "vtable_address": 6465877376, + "methods": [ + 6450065660, + 6457191728, + 6447350032, + 6447352992, + 6447353040, + 6457191776, + 6457188752, + 6447353056, + 6447354064, + 6447353152, 6443742160, - 6447353520, - 6457190896, - 6457192720, - 6447353872, - 6447353968, - 6447353952 + 6447353744, + 6457193088, + 6457194912, + 6447354096, + 6447354192, + 6447354176 ], "bases": [ { @@ -157754,7 +157780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540720, + "complete_object_locator": 6468544816, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -157763,17 +157789,17 @@ }, { "type_name": "CNetMessagePB<103,class CUserMessageCloseCaptionDirect,13,1,1>::CProtobufBinding", - "vtable_address": 6465859136, - "methods": [ - 6450029200, - 6450029184, - 6450028912, - 6450030288, - 6450030304, - 6450030448, - 6450030464, - 6450030624, - 6450030640 + "vtable_address": 6465863328, + "methods": [ + 6450030768, + 6450030752, + 6450030480, + 6450031856, + 6450031872, + 6450032016, + 6450032032, + 6450032192, + 6450032208 ], "bases": [ { @@ -157793,7 +157819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540760, + "complete_object_locator": 6468544856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -157802,13 +157828,13 @@ }, { "type_name": "CNetMessagePB<104,class CUserMessageCurrentTimescale,13,1,1>", - "vtable_address": 6465862448, + "vtable_address": 6465866640, "methods": [ - 6450064608, - 6450064352, - 6450064336, - 6450064368, - 6450064448 + 6450066176, + 6450065920, + 6450065904, + 6450065936, + 6450066016 ], "bases": [ { @@ -157870,7 +157896,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533640, + "complete_object_locator": 6468537736, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -157879,25 +157905,25 @@ }, { "type_name": "CNetMessagePB<104,class CUserMessageCurrentTimescale,13,1,1>", - "vtable_address": 6465862496, - "methods": [ - 6450051732, - 6457189536, - 6447380752, - 6447380832, - 6447380864, - 6457189584, - 6457186560, - 6447380880, - 6447381424, - 6447380992, + "vtable_address": 6465866688, + "methods": [ + 6450053300, + 6457191728, + 6447380976, + 6447381056, + 6447381088, + 6457191776, + 6457188752, + 6447381104, + 6447381648, + 6447381216, 6443742160, - 6447381312, - 6457190896, - 6457192720, - 6447381440, - 6447381472, - 6447381456 + 6447381536, + 6457193088, + 6457194912, + 6447381664, + 6447381696, + 6447381680 ], "bases": [ { @@ -157959,7 +157985,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533832, + "complete_object_locator": 6468537928, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -157968,17 +157994,17 @@ }, { "type_name": "CNetMessagePB<104,class CUserMessageCurrentTimescale,13,1,1>::CProtobufBinding", - "vtable_address": 6465861216, + "vtable_address": 6465865376, "methods": [ - 6450062560, - 6450062544, - 6450062272, - 6450063648, - 6450063664, - 6450063824, + 6450064128, + 6450064112, 6450063840, - 6450064000, - 6450064016 + 6450065216, + 6450065232, + 6450065392, + 6450065408, + 6450065568, + 6450065584 ], "bases": [ { @@ -157998,7 +158024,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533872, + "complete_object_locator": 6468537968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -158007,13 +158033,13 @@ }, { "type_name": "CNetMessagePB<105,class CUserMessageDesiredTimescale,13,1,1>", - "vtable_address": 6465862832, + "vtable_address": 6465867024, "methods": [ - 6450064976, - 6450064720, - 6450064704, - 6450064736, - 6450064816 + 6450066544, + 6450066288, + 6450066272, + 6450066304, + 6450066384 ], "bases": [ { @@ -158075,7 +158101,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534000, + "complete_object_locator": 6468538096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -158084,25 +158110,25 @@ }, { "type_name": "CNetMessagePB<105,class CUserMessageDesiredTimescale,13,1,1>", - "vtable_address": 6465862904, + "vtable_address": 6465867072, "methods": [ - 6450051744, - 6457189536, - 6447390816, - 6447391664, - 6447391712, - 6457189584, - 6457186560, - 6447391728, - 6447392656, - 6447391808, + 6450053312, + 6457191728, + 6447391040, + 6447391888, + 6447391936, + 6457191776, + 6457188752, + 6447391952, + 6447392880, + 6447392032, 6443742160, - 6447392256, - 6457190896, - 6457192720, - 6447392752, - 6447392784, - 6447392768 + 6447392480, + 6457193088, + 6457194912, + 6447392976, + 6447393008, + 6447392992 ], "bases": [ { @@ -158164,7 +158190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534192, + "complete_object_locator": 6468538288, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -158173,17 +158199,17 @@ }, { "type_name": "CNetMessagePB<105,class CUserMessageDesiredTimescale,13,1,1>::CProtobufBinding", - "vtable_address": 6465861072, - "methods": [ - 6450060816, - 6450060800, - 6450060528, - 6450061904, - 6450061920, - 6450062064, - 6450062080, - 6450062240, - 6450062256 + "vtable_address": 6465865264, + "methods": [ + 6450062384, + 6450062368, + 6450062096, + 6450063472, + 6450063488, + 6450063632, + 6450063648, + 6450063808, + 6450063824 ], "bases": [ { @@ -158203,7 +158229,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534232, + "complete_object_locator": 6468538328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -158212,13 +158238,13 @@ }, { "type_name": "CNetMessagePB<106,class CUserMessageFade,13,1,1>", - "vtable_address": 6465868104, + "vtable_address": 6465872184, "methods": [ - 6450069024, - 6450068768, - 6450068752, - 6450068784, - 6450068864 + 6450070592, + 6450070336, + 6450070320, + 6450070352, + 6450070432 ], "bases": [ { @@ -158280,7 +158306,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538008, + "complete_object_locator": 6468542104, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -158289,25 +158315,25 @@ }, { "type_name": "CNetMessagePB<106,class CUserMessageFade,13,1,1>", - "vtable_address": 6465868200, - "methods": [ - 6450063800, - 6457189536, - 6447401920, - 6447402192, - 6447402224, - 6457189584, - 6457186560, - 6447402240, - 6447403408, - 6447402368, - 6443742160, - 6447402992, - 6457190896, - 6457192720, - 6447403424, + "vtable_address": 6465872232, + "methods": [ + 6450065368, + 6457191728, + 6447402144, + 6447402416, + 6447402448, + 6457191776, + 6457188752, + 6447402464, + 6447403632, + 6447402592, + 6443742160, + 6447403216, + 6457193088, + 6457194912, 6447403648, - 6447403616 + 6447403856, + 6447403840 ], "bases": [ { @@ -158369,7 +158395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538200, + "complete_object_locator": 6468542296, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -158378,17 +158404,17 @@ }, { "type_name": "CNetMessagePB<106,class CUserMessageFade,13,1,1>::CProtobufBinding", - "vtable_address": 6465859816, + "vtable_address": 6465864008, "methods": [ - 6450041552, - 6450041536, - 6450041120, - 6450042640, - 6450042656, - 6450042800, - 6450042816, 6450042976, - 6450042992 + 6450042960, + 6450042688, + 6450044064, + 6450044080, + 6450044224, + 6450044240, + 6450044400, + 6450044416 ], "bases": [ { @@ -158408,7 +158434,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538240, + "complete_object_locator": 6468542336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -158417,13 +158443,13 @@ }, { "type_name": "CNetMessagePB<110,class CUserMessageHudMsg,13,1,1>", - "vtable_address": 6465873928, + "vtable_address": 6465878120, "methods": [ - 6450073072, - 6450072816, - 6450072800, - 6450072832, - 6450072912 + 6450074640, + 6450074384, + 6450074368, + 6450074400, + 6450074480 ], "bases": [ { @@ -158485,7 +158511,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541968, + "complete_object_locator": 6468546064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -158494,25 +158520,25 @@ }, { "type_name": "CNetMessagePB<110,class CUserMessageHudMsg,13,1,1>", - "vtable_address": 6465873976, + "vtable_address": 6465878168, "methods": [ - 6450064140, - 6457189536, - 6446920912, - 6446921888, - 6446921984, - 6457189584, - 6457186560, - 6446922576, - 6446926688, - 6446924272, + 6450065708, + 6457191728, + 6446921136, + 6446922112, + 6446922208, + 6457191776, + 6457188752, + 6446922800, + 6446926912, + 6446924496, 6443742160, - 6446926224, - 6457190896, - 6457192720, - 6446926832, - 6446928688, - 6446928064 + 6446926448, + 6457193088, + 6457194912, + 6446927056, + 6446928912, + 6446928288 ], "bases": [ { @@ -158574,7 +158600,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542160, + "complete_object_locator": 6468546256, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -158583,17 +158609,17 @@ }, { "type_name": "CNetMessagePB<110,class CUserMessageHudMsg,13,1,1>::CProtobufBinding", - "vtable_address": 6465858816, - "methods": [ - 6450022208, - 6450022192, - 6450021920, - 6450023296, - 6450023312, - 6450023456, - 6450023472, - 6450023648, - 6450023664 + "vtable_address": 6465863008, + "methods": [ + 6450023776, + 6450023760, + 6450023488, + 6450024864, + 6450024880, + 6450025024, + 6450025040, + 6450025216, + 6450025232 ], "bases": [ { @@ -158613,7 +158639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542200, + "complete_object_locator": 6468546296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -158622,13 +158648,13 @@ }, { "type_name": "CNetMessagePB<111,class CUserMessageHudText,13,1,1>", - "vtable_address": 6465874120, + "vtable_address": 6465878312, "methods": [ - 6450073440, - 6450073184, - 6450073168, - 6450073200, - 6450073280 + 6450075008, + 6450074752, + 6450074736, + 6450074768, + 6450074848 ], "bases": [ { @@ -158690,7 +158716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542328, + "complete_object_locator": 6468546424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -158699,25 +158725,25 @@ }, { "type_name": "CNetMessagePB<111,class CUserMessageHudText,13,1,1>", - "vtable_address": 6465874168, + "vtable_address": 6465878360, "methods": [ - 6450064152, - 6457189536, - 6446943904, - 6446944192, - 6446944256, - 6457189584, - 6457186560, - 6446944272, - 6446944832, - 6446944352, - 6443742160, - 6446944720, - 6457190896, - 6457192720, - 6446945728, - 6446946512, - 6446946496 + 6450065720, + 6457191728, + 6446944128, + 6446944416, + 6446944480, + 6457191776, + 6457188752, + 6446944496, + 6446945056, + 6446944560, + 6443742160, + 6446944944, + 6457193088, + 6457194912, + 6446945648, + 6446946736, + 6446946720 ], "bases": [ { @@ -158779,7 +158805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542520, + "complete_object_locator": 6468546616, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -158788,17 +158814,17 @@ }, { "type_name": "CNetMessagePB<111,class CUserMessageHudText,13,1,1>::CProtobufBinding", - "vtable_address": 6465858736, - "methods": [ - 6450020464, - 6450020448, - 6450020176, - 6450021552, - 6450021568, - 6450021712, - 6450021728, - 6450021888, - 6450021904 + "vtable_address": 6465862928, + "methods": [ + 6450022032, + 6450022016, + 6450021744, + 6450023120, + 6450023136, + 6450023280, + 6450023296, + 6450023456, + 6450023472 ], "bases": [ { @@ -158818,7 +158844,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542560, + "complete_object_locator": 6468546656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -158827,13 +158853,13 @@ }, { "type_name": "CNetMessagePB<113,class CUserMessageColoredText,13,1,1>", - "vtable_address": 6465864728, + "vtable_address": 6465868920, "methods": [ - 6450067184, - 6450066928, - 6450066912, - 6450066944, - 6450067024 + 6450068752, + 6450068496, + 6450068480, + 6450068512, + 6450068592 ], "bases": [ { @@ -158895,7 +158921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536208, + "complete_object_locator": 6468540304, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -158904,25 +158930,25 @@ }, { "type_name": "CNetMessagePB<113,class CUserMessageColoredText,13,1,1>", - "vtable_address": 6465864776, - "methods": [ - 6450058724, - 6457189536, - 6447067520, - 6447067968, - 6447068064, - 6457189584, - 6457186560, - 6447068080, - 6447069792, + "vtable_address": 6465868968, + "methods": [ + 6450060292, + 6457191728, + 6447067744, + 6447068192, + 6447068288, + 6457191776, + 6457188752, 6447068304, + 6447070016, + 6447068528, 6443742160, - 6447069232, - 6457190896, - 6457192720, - 6447069904, - 6447072480, - 6447072464 + 6447069456, + 6457193088, + 6457194912, + 6447070128, + 6447072704, + 6447072688 ], "bases": [ { @@ -158984,7 +159010,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536400, + "complete_object_locator": 6468540496, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -158993,17 +159019,17 @@ }, { "type_name": "CNetMessagePB<113,class CUserMessageColoredText,13,1,1>::CProtobufBinding", - "vtable_address": 6465860240, + "vtable_address": 6465864432, "methods": [ - 6450050272, - 6450050256, - 6450049984, - 6450051360, - 6450051376, - 6450051520, - 6450051536, - 6450051712, - 6450051728 + 6450051840, + 6450051824, + 6450051552, + 6450052928, + 6450052944, + 6450053088, + 6450053104, + 6450053280, + 6450053296 ], "bases": [ { @@ -159023,7 +159049,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536440, + "complete_object_locator": 6468540536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -159032,13 +159058,13 @@ }, { "type_name": "CNetMessagePB<114,class CUserMessageRequestState,13,1,1>", - "vtable_address": 6465863240, + "vtable_address": 6465867400, "methods": [ - 6450065344, - 6450065088, - 6450065072, - 6450065104, - 6450065184 + 6450066912, + 6450066656, + 6450066640, + 6450066672, + 6450066752 ], "bases": [ { @@ -159114,7 +159140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534360, + "complete_object_locator": 6468538456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -159123,25 +159149,25 @@ }, { "type_name": "CNetMessagePB<114,class CUserMessageRequestState,13,1,1>", - "vtable_address": 6465863288, - "methods": [ - 6450051756, - 6457189536, - 6447036800, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447036864, - 6447036848 + "vtable_address": 6465867448, + "methods": [ + 6450053324, + 6457191728, + 6447037024, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447037088, + 6447037072 ], "bases": [ { @@ -159217,7 +159243,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534600, + "complete_object_locator": 6468538696, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -159226,17 +159252,17 @@ }, { "type_name": "CNetMessagePB<114,class CUserMessageRequestState,13,1,1>::CProtobufBinding", - "vtable_address": 6465860992, + "vtable_address": 6465865184, "methods": [ - 6450059056, - 6450059040, - 6450058768, - 6450060144, - 6450060160, - 6450060304, - 6450060320, - 6450060480, - 6450060496 + 6450060624, + 6450060608, + 6450060336, + 6450061712, + 6450061728, + 6450061872, + 6450061888, + 6450062048, + 6450062064 ], "bases": [ { @@ -159256,7 +159282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534640, + "complete_object_locator": 6468538736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -159265,13 +159291,13 @@ }, { "type_name": "CNetMessagePB<115,class CUserMessageResetHUD,13,1,1>", - "vtable_address": 6465874312, + "vtable_address": 6465878504, "methods": [ - 6450073808, - 6450073552, - 6450073536, - 6450073568, - 6450073648 + 6450075376, + 6450075120, + 6450075104, + 6450075136, + 6450075216 ], "bases": [ { @@ -159347,7 +159373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542688, + "complete_object_locator": 6468546784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -159356,25 +159382,25 @@ }, { "type_name": "CNetMessagePB<115,class CUserMessageResetHUD,13,1,1>", - "vtable_address": 6465874360, - "methods": [ - 6450064164, - 6457189536, - 6446983744, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446984080, - 6446984064 + "vtable_address": 6465878552, + "methods": [ + 6450065732, + 6457191728, + 6446983968, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446984304, + 6446984288 ], "bases": [ { @@ -159450,7 +159476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542888, + "complete_object_locator": 6468546984, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -159459,17 +159485,17 @@ }, { "type_name": "CNetMessagePB<115,class CUserMessageResetHUD,13,1,1>::CProtobufBinding", - "vtable_address": 6465858656, - "methods": [ - 6450018720, - 6450018704, - 6450018432, - 6450019808, - 6450019824, - 6450019968, - 6450019984, - 6450020144, - 6450020160 + "vtable_address": 6465862848, + "methods": [ + 6450020288, + 6450020272, + 6450020000, + 6450021376, + 6450021392, + 6450021536, + 6450021552, + 6450021712, + 6450021728 ], "bases": [ { @@ -159489,7 +159515,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468542928, + "complete_object_locator": 6468547024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -159498,13 +159524,13 @@ }, { "type_name": "CNetMessagePB<116,class CUserMessageRumble,13,1,1>", - "vtable_address": 6465869912, + "vtable_address": 6465873992, "methods": [ - 6450069760, - 6450069504, - 6450069488, - 6450069520, - 6450069600 + 6450071328, + 6450071072, + 6450071056, + 6450071088, + 6450071168 ], "bases": [ { @@ -159566,7 +159592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538728, + "complete_object_locator": 6468542824, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -159575,25 +159601,25 @@ }, { "type_name": "CNetMessagePB<116,class CUserMessageRumble,13,1,1>", - "vtable_address": 6465869960, - "methods": [ - 6450064032, - 6457189536, - 6447046976, - 6447047088, - 6447047136, - 6457189584, - 6457186560, + "vtable_address": 6465874040, + "methods": [ + 6450065600, + 6457191728, + 6447047200, + 6447047312, + 6447047360, + 6457191776, + 6457188752, 6447047376, - 6447050416, - 6447048112, + 6447050640, + 6447047888, 6443742160, - 6447050016, - 6457190896, - 6457192720, - 6447051344, - 6447051488, - 6447051440 + 6447049072, + 6457193088, + 6457194912, + 6447051568, + 6447051712, + 6447051664 ], "bases": [ { @@ -159655,7 +159681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538920, + "complete_object_locator": 6468543016, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -159664,17 +159690,17 @@ }, { "type_name": "CNetMessagePB<116,class CUserMessageRumble,13,1,1>::CProtobufBinding", - "vtable_address": 6465859656, - "methods": [ - 6450037920, - 6450037904, - 6450037632, - 6450039008, - 6450039024, - 6450039168, - 6450039184, - 6450039344, - 6450039360 + "vtable_address": 6465863848, + "methods": [ + 6450039488, + 6450039472, + 6450039200, + 6450040576, + 6450040592, + 6450040736, + 6450040752, + 6450040912, + 6450040928 ], "bases": [ { @@ -159694,7 +159720,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468538960, + "complete_object_locator": 6468543056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -159703,13 +159729,13 @@ }, { "type_name": "CNetMessagePB<117,class CUserMessageSayText,13,1,1>", - "vtable_address": 6465864536, + "vtable_address": 6465868728, "methods": [ - 6450066816, - 6450066560, - 6450066544, - 6450066576, - 6450066656 + 6450068384, + 6450068128, + 6450068112, + 6450068144, + 6450068224 ], "bases": [ { @@ -159771,7 +159797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535848, + "complete_object_locator": 6468539944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -159780,25 +159806,25 @@ }, { "type_name": "CNetMessagePB<117,class CUserMessageSayText,13,1,1>", - "vtable_address": 6465864584, + "vtable_address": 6465868776, "methods": [ - 6450055524, - 6457189536, - 6446870352, - 6446870832, - 6446871296, - 6457189584, - 6457186560, - 6446871456, - 6446872624, - 6446871776, + 6450057092, + 6457191728, + 6446870576, + 6446871056, + 6446871136, + 6457191776, + 6457188752, + 6446871680, + 6446872848, + 6446871984, 6443742160, - 6446872368, - 6457190896, - 6457192720, - 6446872656, - 6446873072, - 6446873056 + 6446872592, + 6457193088, + 6457194912, + 6446872880, + 6446873296, + 6446873280 ], "bases": [ { @@ -159860,7 +159886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536040, + "complete_object_locator": 6468540136, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -159869,17 +159895,17 @@ }, { "type_name": "CNetMessagePB<117,class CUserMessageSayText,13,1,1>::CProtobufBinding", - "vtable_address": 6465860320, - "methods": [ - 6450052064, - 6450052048, - 6450051776, - 6450053152, - 6450053168, - 6450053312, - 6450053328, - 6450053488, - 6450053504 + "vtable_address": 6465864512, + "methods": [ + 6450053632, + 6450053616, + 6450053344, + 6450054720, + 6450054736, + 6450054880, + 6450054896, + 6450055056, + 6450055072 ], "bases": [ { @@ -159899,7 +159925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536080, + "complete_object_locator": 6468540176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -159908,13 +159934,13 @@ }, { "type_name": "CNetMessagePB<118,class CUserMessageSayText2,13,1,1>", - "vtable_address": 6465804696, + "vtable_address": 6465808888, "methods": [ - 6449409104, - 6449408848, - 6449408832, - 6449408864, - 6449408944 + 6449410672, + 6449410416, + 6449410400, + 6449410432, + 6449410512 ], "bases": [ { @@ -159976,7 +160002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468513848, + "complete_object_locator": 6468517944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -159985,25 +160011,25 @@ }, { "type_name": "CNetMessagePB<118,class CUserMessageSayText2,13,1,1>", - "vtable_address": 6465804744, - "methods": [ - 6449401780, - 6457189536, - 6446887840, - 6446888480, - 6446888688, - 6457189584, - 6457186560, + "vtable_address": 6465808936, + "methods": [ + 6449403332, + 6457191728, + 6446888048, 6446888704, - 6446891888, - 6446889984, + 6446888912, + 6457191776, + 6457188752, + 6446888928, + 6446892112, + 6446890208, 6443742160, - 6446891504, - 6457190896, - 6457192720, - 6446894544, - 6446894736, - 6446894720 + 6446891728, + 6457193088, + 6457194912, + 6446894768, + 6446894960, + 6446894944 ], "bases": [ { @@ -160065,7 +160091,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468514040, + "complete_object_locator": 6468518136, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -160074,17 +160100,17 @@ }, { "type_name": "CNetMessagePB<118,class CUserMessageSayText2,13,1,1>::CProtobufBinding", - "vtable_address": 6465799936, + "vtable_address": 6465804128, "methods": [ - 6449400320, - 6449400304, - 6449400032, - 6449401408, - 6449401424, - 6449401568, + 6449401872, + 6449401856, 6449401584, - 6449401760, - 6449401776 + 6449402960, + 6449402976, + 6449403120, + 6449403136, + 6449403312, + 6449403328 ], "bases": [ { @@ -160104,7 +160130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468514080, + "complete_object_locator": 6468518176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -160113,13 +160139,13 @@ }, { "type_name": "CNetMessagePB<119,class CUserMessageSayTextChannel,13,1,1>", - "vtable_address": 6465864920, + "vtable_address": 6465869112, "methods": [ - 6450067552, - 6450067296, - 6450067280, - 6450067312, - 6450067392 + 6450069120, + 6450068864, + 6450068848, + 6450068880, + 6450068960 ], "bases": [ { @@ -160181,7 +160207,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536568, + "complete_object_locator": 6468540664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -160190,25 +160216,25 @@ }, { "type_name": "CNetMessagePB<119,class CUserMessageSayTextChannel,13,1,1>", - "vtable_address": 6465864968, + "vtable_address": 6465869160, "methods": [ - 6450058756, - 6457189536, - 6447056800, - 6447056992, - 6447057232, - 6457189584, - 6457186560, - 6447057328, - 6447058912, - 6447057584, + 6450060324, + 6457191728, + 6447057024, + 6447057216, + 6447057456, + 6457191776, + 6457188752, + 6447057552, + 6447059136, + 6447057808, 6443742160, - 6447058576, - 6457190896, - 6457192720, - 6447059168, - 6447059216, - 6447059200 + 6447058800, + 6457193088, + 6457194912, + 6447059392, + 6447059440, + 6447059424 ], "bases": [ { @@ -160270,7 +160296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536760, + "complete_object_locator": 6468540856, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -160279,17 +160305,17 @@ }, { "type_name": "CNetMessagePB<119,class CUserMessageSayTextChannel,13,1,1>::CProtobufBinding", - "vtable_address": 6465860160, - "methods": [ - 6450048528, - 6450048512, - 6450048240, - 6450049616, - 6450049632, - 6450049776, - 6450049792, - 6450049952, - 6450049968 + "vtable_address": 6465864352, + "methods": [ + 6450050096, + 6450050080, + 6450049808, + 6450051184, + 6450051200, + 6450051344, + 6450051360, + 6450051520, + 6450051536 ], "bases": [ { @@ -160309,7 +160335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536800, + "complete_object_locator": 6468540896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -160318,13 +160344,13 @@ }, { "type_name": "CNetMessagePB<120,class CUserMessageShake,13,1,1>", - "vtable_address": 6465866592, + "vtable_address": 6465870784, "methods": [ - 6450067920, - 6450067664, - 6450067648, - 6450067680, - 6450067760 + 6450069488, + 6450069232, + 6450069216, + 6450069248, + 6450069328 ], "bases": [ { @@ -160386,7 +160412,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468536928, + "complete_object_locator": 6468541024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -160395,25 +160421,25 @@ }, { "type_name": "CNetMessagePB<120,class CUserMessageShake,13,1,1>", - "vtable_address": 6465866640, + "vtable_address": 6465870832, "methods": [ - 6450060500, - 6457189536, - 6447423696, - 6447424576, - 6447424608, - 6457189584, - 6457186560, - 6447424736, - 6447425680, + 6450062068, + 6457191728, + 6447423920, + 6447424800, + 6447424832, + 6457191776, + 6457188752, 6447424848, + 6447425888, + 6447425072, 6443742160, - 6447425360, - 6457190896, - 6457192720, - 6447425712, - 6447426496, - 6447426080 + 6447425584, + 6457193088, + 6457194912, + 6447425936, + 6447426720, + 6447426304 ], "bases": [ { @@ -160475,7 +160501,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537120, + "complete_object_locator": 6468541216, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -160484,17 +160510,17 @@ }, { "type_name": "CNetMessagePB<120,class CUserMessageShake,13,1,1>::CProtobufBinding", - "vtable_address": 6465860056, - "methods": [ - 6450046784, - 6450046768, - 6450046496, - 6450047872, - 6450047888, - 6450048032, - 6450048048, - 6450048208, - 6450048224 + "vtable_address": 6465864248, + "methods": [ + 6450048352, + 6450048336, + 6450048064, + 6450049440, + 6450049456, + 6450049600, + 6450049616, + 6450049776, + 6450049792 ], "bases": [ { @@ -160514,7 +160540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537160, + "complete_object_locator": 6468541256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -160523,13 +160549,13 @@ }, { "type_name": "CNetMessagePB<121,class CUserMessageShakeDir,13,1,1>", - "vtable_address": 6465866784, + "vtable_address": 6465870976, "methods": [ - 6450068288, - 6450068032, - 6450068016, - 6450068048, - 6450068128 + 6450069856, + 6450069600, + 6450069584, + 6450069616, + 6450069696 ], "bases": [ { @@ -160591,7 +160617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537288, + "complete_object_locator": 6468541384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -160600,25 +160626,25 @@ }, { "type_name": "CNetMessagePB<121,class CUserMessageShakeDir,13,1,1>", - "vtable_address": 6465866832, + "vtable_address": 6465871024, "methods": [ - 6450060512, - 6457189536, - 6447433664, - 6447435072, - 6447435216, - 6457189584, - 6457186560, - 6447435248, - 6447436224, - 6447435568, - 6443742160, - 6447436048, - 6457190896, - 6457192720, - 6447436320, - 6447436368, - 6447436352 + 6450062080, + 6457191728, + 6447433888, + 6447435296, + 6447435440, + 6457191776, + 6457188752, + 6447435472, + 6447436448, + 6447435792, + 6443742160, + 6447436272, + 6457193088, + 6457194912, + 6447436544, + 6447436592, + 6447436576 ], "bases": [ { @@ -160680,7 +160706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537480, + "complete_object_locator": 6468541576, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -160689,17 +160715,17 @@ }, { "type_name": "CNetMessagePB<121,class CUserMessageShakeDir,13,1,1>::CProtobufBinding", - "vtable_address": 6465859976, - "methods": [ - 6450045040, - 6450045024, - 6450044752, - 6450046128, - 6450046144, - 6450046288, - 6450046304, - 6450046464, - 6450046480 + "vtable_address": 6465864168, + "methods": [ + 6450046608, + 6450046592, + 6450046320, + 6450047696, + 6450047712, + 6450047856, + 6450047872, + 6450048032, + 6450048048 ], "bases": [ { @@ -160719,7 +160745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537520, + "complete_object_locator": 6468541616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -160728,13 +160754,13 @@ }, { "type_name": "CNetMessagePB<122,class CUserMessageWaterShake,13,1,1>", - "vtable_address": 6465866976, + "vtable_address": 6465871168, "methods": [ - 6450068656, - 6450068400, - 6450068384, - 6450068416, - 6450068496 + 6450070224, + 6450069968, + 6450069952, + 6450069984, + 6450070064 ], "bases": [ { @@ -160796,7 +160822,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537648, + "complete_object_locator": 6468541744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -160805,25 +160831,25 @@ }, { "type_name": "CNetMessagePB<122,class CUserMessageWaterShake,13,1,1>", - "vtable_address": 6465867024, + "vtable_address": 6465871216, "methods": [ - 6450062260, - 6457189536, - 6446844688, - 6446845712, - 6446845744, - 6457189584, - 6457186560, - 6446845760, - 6446846704, - 6446845872, + 6450063828, + 6457191728, + 6446844912, + 6446845936, + 6446845968, + 6457191776, + 6457188752, + 6446845984, + 6446846928, + 6446846096, 6443742160, - 6446846400, - 6457190896, - 6457192720, - 6446846800, - 6446847552, - 6446847344 + 6446846624, + 6457193088, + 6457194912, + 6446847024, + 6446847776, + 6446847568 ], "bases": [ { @@ -160885,7 +160911,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537840, + "complete_object_locator": 6468541936, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -160894,17 +160920,17 @@ }, { "type_name": "CNetMessagePB<122,class CUserMessageWaterShake,13,1,1>::CProtobufBinding", - "vtable_address": 6465859896, - "methods": [ - 6450043296, - 6450043280, - 6450043008, - 6450044384, - 6450044400, - 6450044544, - 6450044560, - 6450044720, - 6450044736 + "vtable_address": 6465864088, + "methods": [ + 6450044864, + 6450044848, + 6450044576, + 6450045952, + 6450045968, + 6450046112, + 6450046128, + 6450046288, + 6450046304 ], "bases": [ { @@ -160924,7 +160950,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468537880, + "complete_object_locator": 6468541976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -160933,13 +160959,13 @@ }, { "type_name": "CNetMessagePB<124,class CUserMessageTextMsg,13,1,1>", - "vtable_address": 6465878712, + "vtable_address": 6465882904, "methods": [ - 6450113504, - 6450122128, - 6450122112, - 6450194256, - 6450138864 + 6450115072, + 6450123696, + 6450123680, + 6450195824, + 6450140432 ], "bases": [ { @@ -161001,7 +161027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468548080, + "complete_object_locator": 6468552176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -161010,25 +161036,25 @@ }, { "type_name": "CNetMessagePB<124,class CUserMessageTextMsg,13,1,1>", - "vtable_address": 6465878760, + "vtable_address": 6465882952, "methods": [ - 6450112160, - 6457189536, - 6446960432, - 6446960624, - 6446960688, - 6457189584, - 6457186560, - 6446960704, - 6446961712, - 6446960896, + 6450113728, + 6457191728, + 6446960656, + 6446960848, + 6446960912, + 6457191776, + 6457188752, + 6446960928, + 6446961936, + 6446961120, 6443742160, - 6446961360, - 6457190896, - 6457192720, - 6446961728, - 6446961760, - 6446961744 + 6446961584, + 6457193088, + 6457194912, + 6446961952, + 6446961984, + 6446961968 ], "bases": [ { @@ -161090,7 +161116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468548272, + "complete_object_locator": 6468552368, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -161099,17 +161125,17 @@ }, { "type_name": "CNetMessagePB<124,class CUserMessageTextMsg,13,1,1>::CProtobufBinding", - "vtable_address": 6465879448, - "methods": [ - 6450187920, - 6450192560, - 6450288096, - 6450181424, - 6450181440, - 6450176816, - 6450119808, - 6450233424, - 6450207936 + "vtable_address": 6465883640, + "methods": [ + 6450189488, + 6450194128, + 6450289664, + 6450182992, + 6450183008, + 6450178384, + 6450121376, + 6450234992, + 6450209504 ], "bases": [ { @@ -161129,7 +161155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468548312, + "complete_object_locator": 6468552408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -161138,13 +161164,13 @@ }, { "type_name": "CNetMessagePB<125,class CUserMessageScreenTilt,13,1,1>", - "vtable_address": 6465871088, + "vtable_address": 6465875088, "methods": [ - 6450070128, - 6450069872, - 6450069856, - 6450069888, - 6450069968 + 6450071696, + 6450071440, + 6450071424, + 6450071456, + 6450071536 ], "bases": [ { @@ -161206,7 +161232,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468539088, + "complete_object_locator": 6468543184, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -161215,25 +161241,25 @@ }, { "type_name": "CNetMessagePB<125,class CUserMessageScreenTilt,13,1,1>", - "vtable_address": 6465871136, - "methods": [ - 6450064044, - 6457189536, - 6446856320, - 6446856880, - 6446856992, - 6457189584, - 6457186560, - 6446857008, - 6446858336, + "vtable_address": 6465875184, + "methods": [ + 6450065612, + 6457191728, + 6446856544, + 6446857104, + 6446857216, + 6457191776, + 6457188752, 6446857232, + 6446858560, + 6446857456, 6443742160, - 6446857936, - 6457190896, - 6457192720, - 6446858496, - 6446858528, - 6446858512 + 6446858160, + 6457193088, + 6457194912, + 6446858576, + 6446858752, + 6446858736 ], "bases": [ { @@ -161295,7 +161321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468539280, + "complete_object_locator": 6468543376, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -161304,17 +161330,17 @@ }, { "type_name": "CNetMessagePB<125,class CUserMessageScreenTilt,13,1,1>::CProtobufBinding", - "vtable_address": 6465859576, - "methods": [ - 6450036176, - 6450036160, - 6450035888, - 6450037264, - 6450037280, - 6450037424, - 6450037440, - 6450037600, - 6450037616 + "vtable_address": 6465863768, + "methods": [ + 6450037744, + 6450037728, + 6450037456, + 6450038832, + 6450038848, + 6450038992, + 6450039008, + 6450039168, + 6450039184 ], "bases": [ { @@ -161334,7 +161360,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468539320, + "complete_object_locator": 6468543416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -161343,13 +161369,13 @@ }, { "type_name": "CNetMessagePB<128,class CUserMessageVoiceMask,13,1,1>", - "vtable_address": 6465863624, + "vtable_address": 6465867776, "methods": [ - 6450065712, - 6450065456, - 6450065440, - 6450065472, - 6450065552 + 6450067280, + 6450067024, + 6450067008, + 6450067040, + 6450067120 ], "bases": [ { @@ -161411,7 +161437,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534768, + "complete_object_locator": 6468538864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -161420,25 +161446,25 @@ }, { "type_name": "CNetMessagePB<128,class CUserMessageVoiceMask,13,1,1>", - "vtable_address": 6465863672, - "methods": [ - 6450053492, - 6457189536, - 6447023312, - 6447024576, - 6447024640, - 6457189584, - 6457186560, - 6447025904, - 6447028256, - 6447027088, - 6443742160, - 6447027840, - 6457190896, - 6457192720, - 6447028304, - 6447029312, - 6447029296 + "vtable_address": 6465867824, + "methods": [ + 6450055060, + 6457191728, + 6447023536, + 6447024800, + 6447024864, + 6457191776, + 6457188752, + 6447026128, + 6447028480, + 6447027312, + 6443742160, + 6447028064, + 6457193088, + 6457194912, + 6447028528, + 6447029536, + 6447029104 ], "bases": [ { @@ -161500,7 +161526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468534960, + "complete_object_locator": 6468539056, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -161509,17 +161535,17 @@ }, { "type_name": "CNetMessagePB<128,class CUserMessageVoiceMask,13,1,1>::CProtobufBinding", - "vtable_address": 6465860912, - "methods": [ - 6450057296, - 6450057280, - 6450057008, - 6450058384, - 6450058400, - 6450058544, - 6450058560, - 6450058736, - 6450058752 + "vtable_address": 6465865104, + "methods": [ + 6450058864, + 6450058848, + 6450058576, + 6450059952, + 6450059968, + 6450060112, + 6450060128, + 6450060304, + 6450060320 ], "bases": [ { @@ -161539,7 +161565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535000, + "complete_object_locator": 6468539096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -161548,13 +161574,13 @@ }, { "type_name": "CNetMessagePB<130,class CUserMessageSendAudio,13,1,1>", - "vtable_address": 6465872752, + "vtable_address": 6465876944, "methods": [ - 6450070864, - 6450070608, - 6450070592, - 6450070624, - 6450070704 + 6450072432, + 6450072176, + 6450072160, + 6450072192, + 6450072272 ], "bases": [ { @@ -161616,7 +161642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468539808, + "complete_object_locator": 6468543904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -161625,25 +161651,25 @@ }, { "type_name": "CNetMessagePB<130,class CUserMessageSendAudio,13,1,1>", - "vtable_address": 6465872800, + "vtable_address": 6465876992, "methods": [ - 6450064068, - 6457189536, - 6446988320, - 6446992880, - 6446992944, - 6457189584, - 6457186560, - 6446992960, - 6446993712, - 6446993056, + 6450065636, + 6457191728, + 6446988544, + 6446993104, + 6446993168, + 6457191776, + 6457188752, + 6446993184, + 6446993920, + 6446993280, 6443742160, - 6446993536, - 6457190896, - 6457192720, - 6446993808, - 6446995856, - 6446995488 + 6446993760, + 6457193088, + 6457194912, + 6446994032, + 6446995728, + 6446995712 ], "bases": [ { @@ -161705,7 +161731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540000, + "complete_object_locator": 6468544096, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -161714,17 +161740,17 @@ }, { "type_name": "CNetMessagePB<130,class CUserMessageSendAudio,13,1,1>::CProtobufBinding", - "vtable_address": 6465859296, - "methods": [ - 6450032688, - 6450032672, - 6450032400, - 6450033776, - 6450033792, - 6450033936, - 6450033952, - 6450034112, - 6450034128 + "vtable_address": 6465863488, + "methods": [ + 6450034256, + 6450034240, + 6450033968, + 6450035344, + 6450035360, + 6450035504, + 6450035520, + 6450035680, + 6450035696 ], "bases": [ { @@ -161744,7 +161770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540040, + "complete_object_locator": 6468544136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -161753,13 +161779,13 @@ }, { "type_name": "CNetMessagePB<131,class CUserMessageItemPickup,13,1,1>", - "vtable_address": 6465864016, + "vtable_address": 6465868176, "methods": [ - 6450066080, - 6450065824, - 6450065808, - 6450065840, - 6450065920 + 6450067648, + 6450067392, + 6450067376, + 6450067408, + 6450067488 ], "bases": [ { @@ -161821,7 +161847,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535128, + "complete_object_locator": 6468539224, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -161830,25 +161856,25 @@ }, { "type_name": "CNetMessagePB<131,class CUserMessageItemPickup,13,1,1>", - "vtable_address": 6465864064, - "methods": [ - 6450053508, - 6457189536, - 6447083248, - 6447083552, - 6447083616, - 6457189584, - 6457186560, - 6447083632, - 6447084176, - 6447083696, - 6443742160, - 6447084064, - 6457190896, - 6457192720, - 6447084368, + "vtable_address": 6465868224, + "methods": [ + 6450055076, + 6457191728, + 6447083472, + 6447083776, + 6447083840, + 6457191776, + 6457188752, + 6447083856, 6447084400, - 6447084384 + 6447083920, + 6443742160, + 6447084288, + 6457193088, + 6457194912, + 6447084592, + 6447084624, + 6447084608 ], "bases": [ { @@ -161910,7 +161936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535320, + "complete_object_locator": 6468539416, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -161919,17 +161945,17 @@ }, { "type_name": "CNetMessagePB<131,class CUserMessageItemPickup,13,1,1>::CProtobufBinding", - "vtable_address": 6465860832, - "methods": [ - 6450055552, - 6450055536, - 6450055264, - 6450056640, - 6450056656, - 6450056800, - 6450056816, - 6450056976, - 6450056992 + "vtable_address": 6465864992, + "methods": [ + 6450057120, + 6450057104, + 6450056832, + 6450058208, + 6450058224, + 6450058368, + 6450058384, + 6450058544, + 6450058560 ], "bases": [ { @@ -161949,7 +161975,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535360, + "complete_object_locator": 6468539456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -161958,13 +161984,13 @@ }, { "type_name": "CNetMessagePB<132,class CUserMessageAmmoDenied,13,1,1>", - "vtable_address": 6465864320, + "vtable_address": 6465868512, "methods": [ - 6450066448, - 6450066192, - 6450066176, - 6450066208, - 6450066288 + 6450068016, + 6450067760, + 6450067744, + 6450067776, + 6450067856 ], "bases": [ { @@ -162026,7 +162052,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535488, + "complete_object_locator": 6468539584, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -162035,25 +162061,25 @@ }, { "type_name": "CNetMessagePB<132,class CUserMessageAmmoDenied,13,1,1>", - "vtable_address": 6465864368, - "methods": [ - 6450055252, - 6457189536, - 6447092752, - 6447092832, - 6447092864, - 6457189584, - 6457186560, - 6447092880, - 6447093568, - 6447092928, - 6443742160, - 6447093392, - 6457190896, - 6457192720, - 6447093920, - 6447093952, - 6447093936 + "vtable_address": 6465868560, + "methods": [ + 6450056820, + 6457191728, + 6447092976, + 6447093056, + 6447093088, + 6457191776, + 6457188752, + 6447093104, + 6447093792, + 6447093152, + 6443742160, + 6447093616, + 6457193088, + 6457194912, + 6447094144, + 6447094176, + 6447094160 ], "bases": [ { @@ -162115,7 +162141,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535680, + "complete_object_locator": 6468539776, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -162124,17 +162150,17 @@ }, { "type_name": "CNetMessagePB<132,class CUserMessageAmmoDenied,13,1,1>::CProtobufBinding", - "vtable_address": 6465860496, - "methods": [ - 6450053808, - 6450053792, - 6450053520, - 6450054896, - 6450054912, - 6450055056, - 6450055072, - 6450055232, - 6450055248 + "vtable_address": 6465864632, + "methods": [ + 6450055376, + 6450055360, + 6450055088, + 6450056464, + 6450056480, + 6450056624, + 6450056640, + 6450056800, + 6450056816 ], "bases": [ { @@ -162154,7 +162180,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468535720, + "complete_object_locator": 6468539816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -162163,13 +162189,13 @@ }, { "type_name": "CNetMessagePB<134,class CUserMessageShowMenu,13,1,1>", - "vtable_address": 6465872000, + "vtable_address": 6465876192, "methods": [ - 6450070496, - 6450070240, - 6450070224, - 6450070256, - 6450070336 + 6450072064, + 6450071808, + 6450071792, + 6450071824, + 6450071904 ], "bases": [ { @@ -162231,7 +162257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468539448, + "complete_object_locator": 6468543544, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -162240,25 +162266,25 @@ }, { "type_name": "CNetMessagePB<134,class CUserMessageShowMenu,13,1,1>", - "vtable_address": 6465872048, - "methods": [ - 6450064056, - 6457189536, - 6447104368, - 6447104880, - 6447104960, - 6457189584, - 6457186560, - 6447104976, - 6447106608, - 6447105376, - 6443742160, - 6447106256, - 6457190896, - 6457192720, - 6447107744, - 6447107808, - 6447107792 + "vtable_address": 6465876240, + "methods": [ + 6450065624, + 6457191728, + 6447104592, + 6447105104, + 6447105184, + 6457191776, + 6457188752, + 6447105200, + 6447106832, + 6447105600, + 6443742160, + 6447106480, + 6457193088, + 6457194912, + 6447107968, + 6447108032, + 6447108016 ], "bases": [ { @@ -162320,7 +162346,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468539640, + "complete_object_locator": 6468543736, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -162329,17 +162355,17 @@ }, { "type_name": "CNetMessagePB<134,class CUserMessageShowMenu,13,1,1>::CProtobufBinding", - "vtable_address": 6465859496, + "vtable_address": 6465863624, "methods": [ - 6450034432, - 6450034416, - 6450034144, - 6450035520, - 6450035536, - 6450035680, - 6450035696, - 6450035856, - 6450035872 + 6450036000, + 6450035984, + 6450035712, + 6450037088, + 6450037104, + 6450037248, + 6450037264, + 6450037424, + 6450037440 ], "bases": [ { @@ -162359,7 +162385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468539680, + "complete_object_locator": 6468543776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -162368,13 +162394,13 @@ }, { "type_name": "CNetMessagePB<135,class CUserMessageCreditsMsg,13,1,1>", - "vtable_address": 6465874592, + "vtable_address": 6465878784, "methods": [ - 6450074448, - 6450074192, - 6450074176, - 6450074208, - 6450074288 + 6450076016, + 6450075760, + 6450075744, + 6450075776, + 6450075856 ], "bases": [ { @@ -162436,7 +162462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543056, + "complete_object_locator": 6468547152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -162445,25 +162471,25 @@ }, { "type_name": "CNetMessagePB<135,class CUserMessageCreditsMsg,13,1,1>", - "vtable_address": 6465874640, - "methods": [ - 6450064176, - 6457189536, - 6447118480, - 6447118592, - 6447118640, - 6457189584, - 6457186560, - 6447118656, - 6447119904, - 6447118992, + "vtable_address": 6465878832, + "methods": [ + 6450065744, + 6457191728, + 6447118704, + 6447118816, + 6447118864, + 6457191776, + 6457188752, + 6447118880, + 6447120128, + 6447119216, 6443742160, - 6447119680, - 6457190896, - 6457192720, - 6447121088, - 6447123488, - 6447123472 + 6447119904, + 6457193088, + 6457194912, + 6447121312, + 6447123712, + 6447122704 ], "bases": [ { @@ -162525,7 +162551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543248, + "complete_object_locator": 6468547344, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -162534,17 +162560,17 @@ }, { "type_name": "CNetMessagePB<135,class CUserMessageCreditsMsg,13,1,1>::CProtobufBinding", - "vtable_address": 6465858576, - "methods": [ - 6450016976, - 6450016960, - 6450016688, - 6450018064, - 6450018080, - 6450018224, - 6450018240, - 6450018400, - 6450018416 + "vtable_address": 6465862768, + "methods": [ + 6450018544, + 6450018528, + 6450018256, + 6450019632, + 6450019648, + 6450019792, + 6450019808, + 6450019968, + 6450019984 ], "bases": [ { @@ -162564,7 +162590,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543288, + "complete_object_locator": 6468547384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -162573,13 +162599,13 @@ }, { "type_name": "CNetMessagePB<137,class CEntityMessageScreenOverlay,13,1,1>", - "vtable_address": 6465874808, + "vtable_address": 6465879000, "methods": [ - 6450074816, - 6450074560, - 6450074544, - 6450074576, - 6450074656 + 6450076384, + 6450076128, + 6450076112, + 6450076144, + 6450076224 ], "bases": [ { @@ -162641,7 +162667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543416, + "complete_object_locator": 6468547512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -162650,25 +162676,25 @@ }, { "type_name": "CNetMessagePB<137,class CEntityMessageScreenOverlay,13,1,1>", - "vtable_address": 6465874856, - "methods": [ - 6450064188, - 6457189536, - 6447139024, - 6447140032, - 6447140112, - 6457189584, - 6457186560, - 6447140128, - 6447140944, - 6447140256, - 6443742160, - 6447140768, - 6457190896, - 6457192720, - 6447140976, - 6447141088, - 6447141072 + "vtable_address": 6465879048, + "methods": [ + 6450065756, + 6457191728, + 6447139232, + 6447140240, + 6447140336, + 6457191776, + 6457188752, + 6447140352, + 6447141168, + 6447140480, + 6443742160, + 6447140992, + 6457193088, + 6457194912, + 6447141184, + 6447141312, + 6447141296 ], "bases": [ { @@ -162730,7 +162756,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543608, + "complete_object_locator": 6468547704, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -162739,17 +162765,17 @@ }, { "type_name": "CNetMessagePB<137,class CEntityMessageScreenOverlay,13,1,1>::CProtobufBinding", - "vtable_address": 6465858496, - "methods": [ - 6450015232, - 6450015216, - 6450014944, - 6450016320, - 6450016336, - 6450016480, - 6450016496, - 6450016656, - 6450016672 + "vtable_address": 6465862688, + "methods": [ + 6450016800, + 6450016784, + 6450016512, + 6450017888, + 6450017904, + 6450018048, + 6450018064, + 6450018224, + 6450018240 ], "bases": [ { @@ -162769,7 +162795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543648, + "complete_object_locator": 6468547744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -162778,13 +162804,13 @@ }, { "type_name": "CNetMessagePB<138,class CEntityMessageRemoveAllDecals,13,1,1>", - "vtable_address": 6465875008, + "vtable_address": 6465879200, "methods": [ - 6450075184, - 6450074928, - 6450074912, - 6450074944, - 6450075024 + 6450076752, + 6450076496, + 6450076480, + 6450076512, + 6450076592 ], "bases": [ { @@ -162846,7 +162872,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543776, + "complete_object_locator": 6468547872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -162855,25 +162881,25 @@ }, { "type_name": "CNetMessagePB<138,class CEntityMessageRemoveAllDecals,13,1,1>", - "vtable_address": 6465875056, - "methods": [ - 6450064200, - 6457189536, - 6447148976, - 6447149216, - 6447149376, - 6457189584, - 6457186560, - 6447149648, - 6447150448, - 6447149776, - 6443742160, - 6447150272, - 6457190896, - 6457192720, + "vtable_address": 6465879248, + "methods": [ + 6450065768, + 6457191728, + 6447149200, + 6447149424, + 6447149536, + 6457191776, + 6457188752, + 6447149680, + 6447150672, + 6447150000, + 6443742160, 6447150496, - 6447152400, - 6447151984 + 6457193088, + 6457194912, + 6447150720, + 6447152624, + 6447152208 ], "bases": [ { @@ -162935,7 +162961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468543968, + "complete_object_locator": 6468548064, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -162944,17 +162970,17 @@ }, { "type_name": "CNetMessagePB<138,class CEntityMessageRemoveAllDecals,13,1,1>::CProtobufBinding", - "vtable_address": 6465858416, - "methods": [ - 6450013488, - 6450013472, - 6450013200, - 6450014576, - 6450014592, - 6450014736, - 6450014752, - 6450014912, - 6450014928 + "vtable_address": 6465862608, + "methods": [ + 6450015056, + 6450015040, + 6450014768, + 6450016144, + 6450016160, + 6450016304, + 6450016320, + 6450016480, + 6450016496 ], "bases": [ { @@ -162974,7 +163000,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544008, + "complete_object_locator": 6468548104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -162983,13 +163009,13 @@ }, { "type_name": "CNetMessagePB<139,class CEntityMessagePropagateForce,13,1,1>", - "vtable_address": 6465875200, + "vtable_address": 6465879392, "methods": [ - 6450075552, - 6450075296, - 6450075280, - 6450075312, - 6450075392 + 6450077120, + 6450076864, + 6450076848, + 6450076880, + 6450076960 ], "bases": [ { @@ -163051,7 +163077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544136, + "complete_object_locator": 6468548232, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -163060,25 +163086,25 @@ }, { "type_name": "CNetMessagePB<139,class CEntityMessagePropagateForce,13,1,1>", - "vtable_address": 6465875248, + "vtable_address": 6465879440, "methods": [ - 6450064212, - 6457189536, - 6447164800, - 6447166592, - 6447166736, - 6457189584, - 6457186560, - 6447166752, - 6447167776, - 6447167024, + 6450065780, + 6457191728, + 6447165008, + 6447166816, + 6447166960, + 6457191776, + 6457188752, + 6447166976, + 6447168000, + 6447167248, 6443742160, - 6447167600, - 6457190896, - 6457192720, - 6447167952, - 6447168080, - 6447168064 + 6447167760, + 6457193088, + 6457194912, + 6447168176, + 6447168304, + 6447168288 ], "bases": [ { @@ -163140,7 +163166,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544328, + "complete_object_locator": 6468548424, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -163149,17 +163175,17 @@ }, { "type_name": "CNetMessagePB<139,class CEntityMessagePropagateForce,13,1,1>::CProtobufBinding", - "vtable_address": 6465858336, - "methods": [ - 6450011744, - 6450011728, - 6450011456, - 6450012832, - 6450012848, - 6450012992, - 6450013008, - 6450013168, - 6450013184 + "vtable_address": 6465862528, + "methods": [ + 6450013312, + 6450013296, + 6450013024, + 6450014400, + 6450014416, + 6450014560, + 6450014576, + 6450014736, + 6450014752 ], "bases": [ { @@ -163179,7 +163205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544368, + "complete_object_locator": 6468548464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -163188,13 +163214,13 @@ }, { "type_name": "CNetMessagePB<140,class CEntityMessageDoSpark,13,1,1>", - "vtable_address": 6465875392, + "vtable_address": 6465879584, "methods": [ - 6450075920, - 6450075664, - 6450075648, - 6450075680, - 6450075760 + 6450077488, + 6450077232, + 6450077216, + 6450077248, + 6450077328 ], "bases": [ { @@ -163256,7 +163282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544496, + "complete_object_locator": 6468548592, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -163265,25 +163291,25 @@ }, { "type_name": "CNetMessagePB<140,class CEntityMessageDoSpark,13,1,1>", - "vtable_address": 6465875440, + "vtable_address": 6465879632, "methods": [ - 6450064224, - 6457189536, - 6447177200, - 6447177840, - 6447178000, - 6457189584, - 6457186560, - 6447178016, - 6447181728, - 6447178736, + 6450065792, + 6457191728, + 6447177424, + 6447178048, + 6447178224, + 6457191776, + 6457188752, + 6447178240, + 6447181936, + 6447178960, 6443742160, - 6447181184, - 6457190896, - 6457192720, - 6447185296, - 6447187376, - 6447186464 + 6447180864, + 6457193088, + 6457194912, + 6447185520, + 6447187600, + 6447186688 ], "bases": [ { @@ -163345,7 +163371,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544688, + "complete_object_locator": 6468548784, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -163354,17 +163380,17 @@ }, { "type_name": "CNetMessagePB<140,class CEntityMessageDoSpark,13,1,1>::CProtobufBinding", - "vtable_address": 6465858256, + "vtable_address": 6465862448, "methods": [ - 6450009984, - 6450009968, - 6450009696, - 6450011072, - 6450011088, - 6450011232, - 6450011248, - 6450011424, - 6450011440 + 6450011552, + 6450011536, + 6450011264, + 6450012640, + 6450012656, + 6450012800, + 6450012816, + 6450012992, + 6450013008 ], "bases": [ { @@ -163384,7 +163410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544728, + "complete_object_locator": 6468548824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -163393,13 +163419,13 @@ }, { "type_name": "CNetMessagePB<142,class CUserMessageCloseCaptionPlaceholder,13,1,1>", - "vtable_address": 6465873328, + "vtable_address": 6465877520, "methods": [ - 6450071968, - 6450071712, - 6450071696, - 6450071728, - 6450071808 + 6450073536, + 6450073280, + 6450073264, + 6450073296, + 6450073376 ], "bases": [ { @@ -163461,7 +163487,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468540888, + "complete_object_locator": 6468544984, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -163470,25 +163496,25 @@ }, { "type_name": "CNetMessagePB<142,class CUserMessageCloseCaptionPlaceholder,13,1,1>", - "vtable_address": 6465873376, - "methods": [ - 6450064104, - 6457189536, - 6447362560, - 6447365072, - 6447365328, - 6457189584, - 6457186560, - 6447365344, - 6447366704, + "vtable_address": 6465877568, + "methods": [ + 6450065672, + 6457191728, + 6447362784, + 6447365296, + 6447365552, + 6457191776, + 6457188752, 6447365568, + 6447366928, + 6447365792, 6443742160, - 6447366208, - 6457190896, - 6457192720, - 6447366800, - 6447366832, - 6447366816 + 6447366432, + 6457193088, + 6457194912, + 6447367024, + 6447367056, + 6447367040 ], "bases": [ { @@ -163550,7 +163576,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541080, + "complete_object_locator": 6468545176, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -163559,17 +163585,17 @@ }, { "type_name": "CNetMessagePB<142,class CUserMessageCloseCaptionPlaceholder,13,1,1>::CProtobufBinding", - "vtable_address": 6465859056, - "methods": [ - 6450027456, - 6450027440, - 6450027168, - 6450028544, - 6450028560, - 6450028704, - 6450028720, - 6450028880, - 6450028896 + "vtable_address": 6465863248, + "methods": [ + 6450029024, + 6450029008, + 6450028736, + 6450030112, + 6450030128, + 6450030272, + 6450030288, + 6450030448, + 6450030464 ], "bases": [ { @@ -163589,7 +163615,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541120, + "complete_object_locator": 6468545216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -163598,13 +163624,13 @@ }, { "type_name": "CNetMessagePB<143,class CUserMessageCameraTransition,13,1,1>", - "vtable_address": 6465873520, + "vtable_address": 6465877712, "methods": [ - 6450072336, - 6450072080, - 6450072064, - 6450072096, - 6450072176 + 6450073904, + 6450073648, + 6450073632, + 6450073664, + 6450073744 ], "bases": [ { @@ -163666,7 +163692,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541248, + "complete_object_locator": 6468545344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -163675,25 +163701,25 @@ }, { "type_name": "CNetMessagePB<143,class CUserMessageCameraTransition,13,1,1>", - "vtable_address": 6465873568, + "vtable_address": 6465877760, "methods": [ - 6450064116, - 6457189536, - 6447227632, - 6447228000, - 6447228144, - 6457189584, - 6457186560, - 6447228160, - 6447229280, - 6447228496, + 6450065684, + 6457191728, + 6447227856, + 6447228224, + 6447228368, + 6457191776, + 6457188752, + 6447228384, + 6447229504, + 6447228656, 6443742160, - 6447229024, - 6457190896, - 6457192720, - 6447229456, - 6447229632, - 6447229616 + 6447229248, + 6457193088, + 6457194912, + 6447229680, + 6447229856, + 6447229840 ], "bases": [ { @@ -163755,7 +163781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541440, + "complete_object_locator": 6468545536, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -163764,17 +163790,17 @@ }, { "type_name": "CNetMessagePB<143,class CUserMessageCameraTransition,13,1,1>::CProtobufBinding", - "vtable_address": 6465858976, - "methods": [ - 6450025712, - 6450025696, - 6450025424, - 6450026800, - 6450026816, - 6450026960, - 6450026976, - 6450027136, - 6450027152 + "vtable_address": 6465863168, + "methods": [ + 6450027280, + 6450027264, + 6450026992, + 6450028368, + 6450028384, + 6450028528, + 6450028544, + 6450028704, + 6450028720 ], "bases": [ { @@ -163794,7 +163820,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541480, + "complete_object_locator": 6468545576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -163803,13 +163829,13 @@ }, { "type_name": "CNetMessagePB<144,class CUserMessageAudioParameter,13,1,1>", - "vtable_address": 6465873736, + "vtable_address": 6465877928, "methods": [ - 6450072704, - 6450072448, - 6450072432, - 6450072464, - 6450072544 + 6450074272, + 6450074016, + 6450074000, + 6450074032, + 6450074112 ], "bases": [ { @@ -163871,7 +163897,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541608, + "complete_object_locator": 6468545704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -163880,25 +163906,25 @@ }, { "type_name": "CNetMessagePB<144,class CUserMessageAudioParameter,13,1,1>", - "vtable_address": 6465873784, + "vtable_address": 6465877976, "methods": [ - 6450064128, - 6457189536, - 6447001040, - 6447009200, - 6447009232, - 6457189584, - 6457186560, - 6447013728, - 6447015088, - 6447013888, - 6443742160, - 6447014656, - 6457190896, - 6457192720, - 6447015968, - 6447016960, - 6447016944 + 6450065696, + 6457191728, + 6447001264, + 6447009424, + 6447009456, + 6457191776, + 6457188752, + 6447013952, + 6447015312, + 6447014112, + 6443742160, + 6447014880, + 6457193088, + 6457194912, + 6447016192, + 6447017184, + 6447017168 ], "bases": [ { @@ -163960,7 +163986,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541800, + "complete_object_locator": 6468545896, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -163969,17 +163995,17 @@ }, { "type_name": "CNetMessagePB<144,class CUserMessageAudioParameter,13,1,1>::CProtobufBinding", - "vtable_address": 6465858896, - "methods": [ - 6450023968, - 6450023952, - 6450023680, - 6450025056, - 6450025072, - 6450025216, - 6450025232, - 6450025392, - 6450025408 + "vtable_address": 6465863088, + "methods": [ + 6450025536, + 6450025520, + 6450025248, + 6450026624, + 6450026640, + 6450026784, + 6450026800, + 6450026960, + 6450026976 ], "bases": [ { @@ -163999,7 +164025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468541840, + "complete_object_locator": 6468545936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -164008,13 +164034,13 @@ }, { "type_name": "CNetMessagePB<145,class CUserMsg_ParticleManager,13,1,1>", - "vtable_address": 6465754856, + "vtable_address": 6465759048, "methods": [ - 6449163792, - 6449180688, - 6449180672, - 6449279488, - 6449196896 + 6449165344, + 6449182240, + 6449182224, + 6449281040, + 6449198448 ], "bases": [ { @@ -164076,7 +164102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506488, + "complete_object_locator": 6468510584, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -164085,25 +164111,25 @@ }, { "type_name": "CNetMessagePB<145,class CUserMsg_ParticleManager,13,1,1>", - "vtable_address": 6465754904, + "vtable_address": 6465759096, "methods": [ - 6449163636, - 6457189536, - 6447276112, - 6447280912, - 6447283088, - 6457189584, - 6457186560, - 6447283168, - 6447294224, - 6447287376, + 6449165188, + 6457191728, + 6447276336, + 6447281136, + 6447283312, + 6457191776, + 6457188752, + 6447283376, + 6447294448, + 6447287600, 6443742160, - 6447292176, - 6457190896, - 6457192720, - 6447294240, - 6447294416, - 6447294400 + 6447292400, + 6457193088, + 6457194912, + 6447294464, + 6447294640, + 6447294624 ], "bases": [ { @@ -164165,7 +164191,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506680, + "complete_object_locator": 6468510776, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -164174,17 +164200,17 @@ }, { "type_name": "CNetMessagePB<145,class CUserMsg_ParticleManager,13,1,1>::CProtobufBinding", - "vtable_address": 6465757560, + "vtable_address": 6465761752, "methods": [ - 6449275792, - 6449278816, - 6449390080, - 6449275440, - 6449275456, - 6449265184, - 6449178144, - 6449317664, - 6449301216 + 6449277344, + 6449280368, + 6449391632, + 6449276992, + 6449277008, + 6449266736, + 6449179696, + 6449319216, + 6449302768 ], "bases": [ { @@ -164204,7 +164230,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506720, + "complete_object_locator": 6468510816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -164213,13 +164239,13 @@ }, { "type_name": "CNetMessagePB<146,class CUserMsg_HudError,13,1,1>", - "vtable_address": 6465875616, + "vtable_address": 6465879808, "methods": [ - 6450076288, - 6450076032, - 6450076016, - 6450076048, - 6450076128 + 6450077856, + 6450077600, + 6450077584, + 6450077616, + 6450077696 ], "bases": [ { @@ -164281,7 +164307,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468544856, + "complete_object_locator": 6468548952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -164290,25 +164316,25 @@ }, { "type_name": "CNetMessagePB<146,class CUserMsg_HudError,13,1,1>", - "vtable_address": 6465875664, + "vtable_address": 6465879856, "methods": [ - 6450064236, - 6457189536, - 6447334400, - 6447334496, - 6447334528, - 6457189584, - 6457186560, - 6447334640, - 6447336192, - 6447334848, - 6443742160, - 6447335952, - 6457190896, - 6457192720, - 6447337152, - 6447337632, - 6447337440 + 6450065804, + 6457191728, + 6447334624, + 6447334720, + 6447334752, + 6457191776, + 6457188752, + 6447334864, + 6447336416, + 6447335072, + 6443742160, + 6447336176, + 6457193088, + 6457194912, + 6447337376, + 6447337856, + 6447337664 ], "bases": [ { @@ -164370,7 +164396,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545048, + "complete_object_locator": 6468549144, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -164379,17 +164405,17 @@ }, { "type_name": "CNetMessagePB<146,class CUserMsg_HudError,13,1,1>::CProtobufBinding", - "vtable_address": 6465858128, - "methods": [ - 6450008240, - 6450008224, - 6450007952, - 6450009328, - 6450009344, - 6450009488, - 6450009504, - 6450009664, - 6450009680 + "vtable_address": 6465862320, + "methods": [ + 6450009808, + 6450009792, + 6450009520, + 6450010896, + 6450010912, + 6450011056, + 6450011072, + 6450011232, + 6450011248 ], "bases": [ { @@ -164409,7 +164435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545088, + "complete_object_locator": 6468549184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -164418,7 +164444,7 @@ }, { "type_name": "CNetMessagePB<148,class CBaseCmdKeyValues,13,1,1>", - "vtable_address": 6464662832, + "vtable_address": 6464667008, "methods": [ 6444487600, 6444487456, @@ -164500,7 +164526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468252680, + "complete_object_locator": 6468256776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -164509,25 +164535,25 @@ }, { "type_name": "CNetMessagePB<148,class CBaseCmdKeyValues,13,1,1>", - "vtable_address": 6464662880, + "vtable_address": 6464667056, "methods": [ 6444481044, - 6457189536, + 6457191728, 6444489248, - 6447346352, - 6447346448, - 6457189584, - 6457186560, - 6447346480, - 6444489264, + 6447346576, 6447346672, + 6457191776, + 6457188752, + 6447346688, + 6444489264, + 6447346896, 6443742160, - 6447347872, - 6457190896, - 6457192720, - 6447349008, - 6447349616, - 6447349376 + 6447348096, + 6457193088, + 6457194912, + 6447349232, + 6447349840, + 6447349600 ], "bases": [ { @@ -164603,7 +164629,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468252920, + "complete_object_locator": 6468257016, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -164612,7 +164638,7 @@ }, { "type_name": "CNetMessagePB<148,class CBaseCmdKeyValues,13,1,1>::CProtobufBinding", - "vtable_address": 6464658872, + "vtable_address": 6464663048, "methods": [ 6444478800, 6444478784, @@ -164642,7 +164668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468252960, + "complete_object_locator": 6468257056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -164651,13 +164677,13 @@ }, { "type_name": "CNetMessagePB<150,class CUserMessageHapticsManagerPulse,13,1,1>", - "vtable_address": 6465875816, + "vtable_address": 6465880008, "methods": [ - 6450077808, - 6450077552, - 6450077536, - 6450077568, - 6450077648 + 6450079376, + 6450079120, + 6450079104, + 6450079136, + 6450079216 ], "bases": [ { @@ -164719,7 +164745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545216, + "complete_object_locator": 6468549312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -164728,25 +164754,25 @@ }, { "type_name": "CNetMessagePB<150,class CUserMessageHapticsManagerPulse,13,1,1>", - "vtable_address": 6465875864, + "vtable_address": 6465880056, "methods": [ - 6450064248, - 6457189536, - 6447357744, - 6447357856, - 6447357888, - 6457189584, - 6457186560, - 6447357904, - 6447358816, - 6447358000, + 6450065816, + 6457191728, + 6447357968, + 6447358080, + 6447358112, + 6457191776, + 6457188752, + 6447358128, + 6447359040, + 6447358224, 6443742160, - 6447358512, - 6457190896, - 6457192720, - 6447358992, - 6447359472, - 6447359184 + 6447358736, + 6457193088, + 6457194912, + 6447359216, + 6447359680, + 6447359408 ], "bases": [ { @@ -164808,7 +164834,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545408, + "complete_object_locator": 6468549504, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -164817,17 +164843,17 @@ }, { "type_name": "CNetMessagePB<150,class CUserMessageHapticsManagerPulse,13,1,1>::CProtobufBinding", - "vtable_address": 6465858048, - "methods": [ - 6450006496, - 6450006480, - 6450006208, - 6450007584, - 6450007600, - 6450007744, - 6450007760, - 6450007920, - 6450007936 + "vtable_address": 6465862240, + "methods": [ + 6450008064, + 6450008048, + 6450007776, + 6450009152, + 6450009168, + 6450009312, + 6450009328, + 6450009488, + 6450009504 ], "bases": [ { @@ -164847,7 +164873,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545448, + "complete_object_locator": 6468549544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -164856,13 +164882,13 @@ }, { "type_name": "CNetMessagePB<151,class CUserMessageHapticsManagerEffect,13,1,1>", - "vtable_address": 6465876008, + "vtable_address": 6465880200, "methods": [ - 6450078176, - 6450077920, - 6450077904, - 6450077936, - 6450078016 + 6450079744, + 6450079488, + 6450079472, + 6450079504, + 6450079584 ], "bases": [ { @@ -164924,7 +164950,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545576, + "complete_object_locator": 6468549672, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -164933,25 +164959,25 @@ }, { "type_name": "CNetMessagePB<151,class CUserMessageHapticsManagerEffect,13,1,1>", - "vtable_address": 6465876056, + "vtable_address": 6465880248, "methods": [ - 6450064260, - 6457189536, - 6447373808, - 6447373920, - 6447373968, - 6457189584, - 6457186560, - 6447373984, - 6447375680, - 6447374256, + 6450065828, + 6457191728, + 6447374032, + 6447374144, + 6447374192, + 6457191776, + 6457188752, + 6447374208, + 6447375904, + 6447374480, 6443742160, - 6447375344, - 6457190896, - 6457192720, - 6447376768, - 6447377120, - 6447377104 + 6447375568, + 6457193088, + 6457194912, + 6447376992, + 6447377344, + 6447377328 ], "bases": [ { @@ -165013,7 +165039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545768, + "complete_object_locator": 6468549864, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -165022,17 +165048,17 @@ }, { "type_name": "CNetMessagePB<151,class CUserMessageHapticsManagerEffect,13,1,1>::CProtobufBinding", - "vtable_address": 6465857968, - "methods": [ - 6450004752, - 6450004736, - 6450004464, - 6450005840, - 6450005856, - 6450006000, - 6450006016, - 6450006176, - 6450006192 + "vtable_address": 6465862160, + "methods": [ + 6450006320, + 6450006304, + 6450006032, + 6450007408, + 6450007424, + 6450007568, + 6450007584, + 6450007744, + 6450007760 ], "bases": [ { @@ -165052,7 +165078,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545808, + "complete_object_locator": 6468549904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -165061,7 +165087,7 @@ }, { "type_name": "CNetMessagePB<153,class CUserMessageUpdateCssClasses,13,1,1>", - "vtable_address": 6464416504, + "vtable_address": 6464420600, "methods": [ 6443795136, 6443800368, @@ -165129,7 +165155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468217728, + "complete_object_locator": 6468221824, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -165138,25 +165164,25 @@ }, { "type_name": "CNetMessagePB<153,class CUserMessageUpdateCssClasses,13,1,1>", - "vtable_address": 6464416552, + "vtable_address": 6464420648, "methods": [ 6443794836, - 6457189536, + 6457191728, 6443844176, - 6447400592, - 6447400832, - 6457189584, - 6457186560, - 6447400848, + 6447400816, + 6447401056, + 6457191776, + 6457188752, + 6447401072, 6443817408, - 6447400976, + 6447401200, 6443742160, - 6447401568, - 6457190896, - 6457192720, - 6447401824, - 6447401856, - 6447401840 + 6447401792, + 6457193088, + 6457194912, + 6447402048, + 6447402080, + 6447402064 ], "bases": [ { @@ -165218,7 +165244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468218016, + "complete_object_locator": 6468222112, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -165227,7 +165253,7 @@ }, { "type_name": "CNetMessagePB<153,class CUserMessageUpdateCssClasses,13,1,1>::CProtobufBinding", - "vtable_address": 6464417448, + "vtable_address": 6464421544, "methods": [ 6443822496, 6443824432, @@ -165257,7 +165283,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468218056, + "complete_object_locator": 6468222152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -165266,13 +165292,13 @@ }, { "type_name": "CNetMessagePB<154,class CUserMessageServerFrameTime,13,1,1>", - "vtable_address": 6465876200, + "vtable_address": 6465880392, "methods": [ - 6450078544, - 6450078288, - 6450078272, - 6450078304, - 6450078384 + 6450080112, + 6450079856, + 6450079840, + 6450079872, + 6450079952 ], "bases": [ { @@ -165334,7 +165360,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468545936, + "complete_object_locator": 6468550032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -165343,25 +165369,25 @@ }, { "type_name": "CNetMessagePB<154,class CUserMessageServerFrameTime,13,1,1>", - "vtable_address": 6465876248, - "methods": [ - 6450064272, - 6457189536, - 6447422432, - 6447422576, - 6447422608, - 6457189584, - 6457186560, - 6447422624, - 6447423088, + "vtable_address": 6465880440, + "methods": [ + 6450065840, + 6457191728, 6447422656, + 6447422800, + 6447422832, + 6457191776, + 6457188752, + 6447422848, + 6447423312, + 6447422880, 6443742160, - 6447422976, - 6457190896, - 6457192720, - 6447423104, - 6447423296, - 6447423280 + 6447423200, + 6457193088, + 6457194912, + 6447423328, + 6447423520, + 6447423504 ], "bases": [ { @@ -165423,7 +165449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546128, + "complete_object_locator": 6468550224, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -165432,17 +165458,17 @@ }, { "type_name": "CNetMessagePB<154,class CUserMessageServerFrameTime,13,1,1>::CProtobufBinding", - "vtable_address": 6465857888, - "methods": [ - 6450003008, - 6450002992, - 6450002720, - 6450004096, - 6450004112, - 6450004256, - 6450004272, - 6450004432, - 6450004448 + "vtable_address": 6465862080, + "methods": [ + 6450004576, + 6450004560, + 6450004288, + 6450005664, + 6450005680, + 6450005824, + 6450005840, + 6450006000, + 6450006016 ], "bases": [ { @@ -165462,7 +165488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546168, + "complete_object_locator": 6468550264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -165471,13 +165497,13 @@ }, { "type_name": "CNetMessagePB<155,class CUserMessageLagCompensationError,13,1,1>", - "vtable_address": 6465876392, + "vtable_address": 6465880584, "methods": [ - 6450078912, - 6450078656, - 6450078640, - 6450078672, - 6450078752 + 6450080480, + 6450080224, + 6450080208, + 6450080240, + 6450080320 ], "bases": [ { @@ -165539,7 +165565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546296, + "complete_object_locator": 6468550392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -165548,25 +165574,25 @@ }, { "type_name": "CNetMessagePB<155,class CUserMessageLagCompensationError,13,1,1>", - "vtable_address": 6465876440, + "vtable_address": 6465880632, "methods": [ - 6450064284, - 6457189536, - 6447431680, - 6447431872, - 6447431904, - 6457189584, - 6457186560, - 6447431920, - 6447432384, - 6447431952, + 6450065852, + 6457191728, + 6447431888, + 6447432096, + 6447432128, + 6457191776, + 6457188752, + 6447432144, + 6447432608, + 6447432176, 6443742160, - 6447432272, - 6457190896, - 6457192720, - 6447432400, - 6447432576, - 6447432560 + 6447432496, + 6457193088, + 6457194912, + 6447432624, + 6447432800, + 6447432784 ], "bases": [ { @@ -165628,7 +165654,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546488, + "complete_object_locator": 6468550584, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -165637,17 +165663,17 @@ }, { "type_name": "CNetMessagePB<155,class CUserMessageLagCompensationError,13,1,1>::CProtobufBinding", - "vtable_address": 6465857808, - "methods": [ - 6450001264, - 6450001248, - 6450000976, - 6450002352, - 6450002368, - 6450002512, - 6450002528, - 6450002688, - 6450002704 + "vtable_address": 6465862000, + "methods": [ + 6450002832, + 6450002816, + 6450002544, + 6450003920, + 6450003936, + 6450004080, + 6450004096, + 6450004256, + 6450004272 ], "bases": [ { @@ -165667,7 +165693,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546528, + "complete_object_locator": 6468550624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -165676,13 +165702,13 @@ }, { "type_name": "CNetMessagePB<156,class CUserMessageRequestDllStatus,13,1,1>", - "vtable_address": 6465876584, + "vtable_address": 6465880776, "methods": [ - 6450079280, - 6450079024, - 6450079008, - 6450079040, - 6450079120 + 6450080848, + 6450080592, + 6450080576, + 6450080608, + 6450080688 ], "bases": [ { @@ -165744,7 +165770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546656, + "complete_object_locator": 6468550752, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -165753,25 +165779,25 @@ }, { "type_name": "CNetMessagePB<156,class CUserMessageRequestDllStatus,13,1,1>", - "vtable_address": 6465876632, - "methods": [ - 6450064296, - 6457189536, - 6447440176, - 6447441056, - 6447441120, - 6457189584, - 6457186560, - 6447441184, - 6447442592, - 6447441424, - 6443742160, - 6447442416, - 6457190896, - 6457192720, + "vtable_address": 6465880824, + "methods": [ + 6450065864, + 6457191728, + 6447440400, + 6447441264, + 6447441344, + 6457191776, + 6457188752, + 6447441360, 6447442800, - 6447443008, - 6447442992 + 6447441616, + 6443742160, + 6447442320, + 6457193088, + 6457194912, + 6447443024, + 6447443232, + 6447443216 ], "bases": [ { @@ -165833,7 +165859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546848, + "complete_object_locator": 6468550944, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -165842,17 +165868,17 @@ }, { "type_name": "CNetMessagePB<156,class CUserMessageRequestDllStatus,13,1,1>::CProtobufBinding", - "vtable_address": 6465857728, - "methods": [ - 6449999520, - 6449999504, - 6449999232, - 6450000608, - 6450000624, - 6450000768, - 6450000784, - 6450000944, - 6450000960 + "vtable_address": 6465861920, + "methods": [ + 6450001088, + 6450001072, + 6450000800, + 6450002176, + 6450002192, + 6450002336, + 6450002352, + 6450002512, + 6450002528 ], "bases": [ { @@ -165872,7 +165898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468546888, + "complete_object_locator": 6468550984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -165881,13 +165907,13 @@ }, { "type_name": "CNetMessagePB<157,class CUserMessageRequestUtilAction,13,1,1>", - "vtable_address": 6465876776, + "vtable_address": 6465880968, "methods": [ - 6450079648, - 6450079392, - 6450079376, - 6450079408, - 6450079488 + 6450081216, + 6450080960, + 6450080944, + 6450080976, + 6450081056 ], "bases": [ { @@ -165949,7 +165975,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547016, + "complete_object_locator": 6468551112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -165958,25 +165984,25 @@ }, { "type_name": "CNetMessagePB<157,class CUserMessageRequestUtilAction,13,1,1>", - "vtable_address": 6465876824, - "methods": [ - 6450064308, - 6457189536, - 6446848880, - 6446850400, - 6446850464, - 6457189584, - 6457186560, - 6446850480, - 6446852240, + "vtable_address": 6465881016, + "methods": [ + 6450065876, + 6457191728, + 6446849104, + 6446850624, + 6446850672, + 6457191776, + 6457188752, 6446850704, + 6446852464, + 6446850928, 6443742160, - 6446851648, - 6457190896, - 6457192720, - 6446852416, - 6446852592, - 6446852576 + 6446851872, + 6457193088, + 6457194912, + 6446852640, + 6446852816, + 6446852800 ], "bases": [ { @@ -166038,7 +166064,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547208, + "complete_object_locator": 6468551304, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -166047,17 +166073,17 @@ }, { "type_name": "CNetMessagePB<157,class CUserMessageRequestUtilAction,13,1,1>::CProtobufBinding", - "vtable_address": 6465857648, - "methods": [ - 6449997776, - 6449997760, - 6449997488, - 6449998864, - 6449998880, - 6449999024, - 6449999040, - 6449999200, - 6449999216 + "vtable_address": 6465861840, + "methods": [ + 6449999344, + 6449999328, + 6449999056, + 6450000432, + 6450000448, + 6450000592, + 6450000608, + 6450000768, + 6450000784 ], "bases": [ { @@ -166077,7 +166103,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547248, + "complete_object_locator": 6468551344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -166086,13 +166112,13 @@ }, { "type_name": "CNetMessagePB<160,class CUserMessageRequestInventory,13,1,1>", - "vtable_address": 6465877016, + "vtable_address": 6465881208, "methods": [ - 6450080016, - 6450079760, - 6450079744, - 6450079776, - 6450079856 + 6450081584, + 6450081328, + 6450081312, + 6450081344, + 6450081424 ], "bases": [ { @@ -166154,7 +166180,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547376, + "complete_object_locator": 6468551472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -166163,25 +166189,25 @@ }, { "type_name": "CNetMessagePB<160,class CUserMessageRequestInventory,13,1,1>", - "vtable_address": 6465877064, - "methods": [ - 6450064320, - 6457189536, - 6447009184, - 6447014608, - 6447015104, - 6457189584, - 6457186560, - 6447015120, - 6447016704, + "vtable_address": 6465881256, + "methods": [ + 6450065888, + 6457191728, + 6447009408, + 6447014832, + 6447015328, + 6457191776, + 6457188752, 6447015344, - 6443742160, - 6447015984, - 6457190896, - 6457192720, 6447016928, - 6447017056, - 6447017040 + 6447015568, + 6443742160, + 6447016208, + 6457193088, + 6457194912, + 6447017152, + 6447017280, + 6447017264 ], "bases": [ { @@ -166243,7 +166269,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547568, + "complete_object_locator": 6468551664, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -166252,17 +166278,17 @@ }, { "type_name": "CNetMessagePB<160,class CUserMessageRequestInventory,13,1,1>::CProtobufBinding", - "vtable_address": 6465857568, - "methods": [ - 6449996032, - 6449996016, - 6449995744, - 6449997120, - 6449997136, - 6449997280, - 6449997296, - 6449997456, - 6449997472 + "vtable_address": 6465861760, + "methods": [ + 6449997600, + 6449997584, + 6449997312, + 6449998688, + 6449998704, + 6449998848, + 6449998864, + 6449999024, + 6449999040 ], "bases": [ { @@ -166282,7 +166308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468547608, + "complete_object_locator": 6468551704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -166291,7 +166317,7 @@ }, { "type_name": "CNetMessagePB<162,class CUserMessageRequestDiagnostic,13,1,1>", - "vtable_address": 6464398040, + "vtable_address": 6464402136, "methods": [ 6443723808, 6443727168, @@ -166359,7 +166385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468212104, + "complete_object_locator": 6468216200, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -166368,25 +166394,25 @@ }, { "type_name": "CNetMessagePB<162,class CUserMessageRequestDiagnostic,13,1,1>", - "vtable_address": 6464398088, + "vtable_address": 6464402184, "methods": [ 6443723664, - 6457189536, + 6457191728, 6443741712, - 6447089168, - 6447089472, - 6457189584, - 6457186560, - 6447089488, + 6447089392, + 6447089696, + 6457191776, + 6457188752, + 6447089712, 6443734400, - 6447089648, + 6447089872, 6443742160, - 6447090080, - 6457190896, - 6457192720, 6447090288, - 6447090336, - 6447090320 + 6457193088, + 6457194912, + 6447090512, + 6447090560, + 6447090544 ], "bases": [ { @@ -166448,7 +166474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468212392, + "complete_object_locator": 6468216488, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -166457,7 +166483,7 @@ }, { "type_name": "CNetMessagePB<162,class CUserMessageRequestDiagnostic,13,1,1>::CProtobufBinding", - "vtable_address": 6464398800, + "vtable_address": 6464402896, "methods": [ 6443735824, 6443736928, @@ -166487,7 +166513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468212432, + "complete_object_locator": 6468216528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -166496,13 +166522,13 @@ }, { "type_name": "CNetMessagePB<165,class CUserMessage_NotifyResponseFound,13,1,1>", - "vtable_address": 6465712072, + "vtable_address": 6465716264, "methods": [ - 6448808624, - 6448830512, - 6448830496, - 6448925504, - 6448840208 + 6448810192, + 6448832080, + 6448832064, + 6448927072, + 6448841776 ], "bases": [ { @@ -166564,7 +166590,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491360, + "complete_object_locator": 6468495456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -166573,25 +166599,25 @@ }, { "type_name": "CNetMessagePB<165,class CUserMessage_NotifyResponseFound,13,1,1>", - "vtable_address": 6465712120, + "vtable_address": 6465716312, "methods": [ - 6448806992, - 6457189536, - 6447192992, - 6447194192, - 6447194576, - 6457189584, - 6457186560, - 6447194592, - 6447198512, - 6447195408, + 6448808560, + 6457191728, + 6447193216, + 6447194416, + 6447194800, + 6457191776, + 6457188752, + 6447194816, + 6447198736, + 6447195632, 6443742160, - 6447196944, - 6457190896, - 6457192720, - 6447198544, - 6447198640, - 6447198624 + 6447197168, + 6457193088, + 6457194912, + 6447198768, + 6447198864, + 6447198848 ], "bases": [ { @@ -166653,7 +166679,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491552, + "complete_object_locator": 6468495648, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -166662,17 +166688,17 @@ }, { "type_name": "CNetMessagePB<165,class CUserMessage_NotifyResponseFound,13,1,1>::CProtobufBinding", - "vtable_address": 6465728128, + "vtable_address": 6465732320, "methods": [ - 6448912144, - 6448923520, - 6449058176, - 6448908096, - 6448908128, - 6448904192, - 6448817792, - 6448968224, - 6448950272 + 6448913712, + 6448925088, + 6449059728, + 6448909664, + 6448909696, + 6448905760, + 6448819360, + 6448969792, + 6448951840 ], "bases": [ { @@ -166692,7 +166718,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491592, + "complete_object_locator": 6468495688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -166701,13 +166727,13 @@ }, { "type_name": "CNetMessagePB<166,class CUserMessage_PlayResponseConditional,13,1,1>", - "vtable_address": 6465712456, + "vtable_address": 6465716648, "methods": [ - 6448808720, - 6448830544, - 6448830528, - 6448925584, - 6448840368 + 6448810288, + 6448832112, + 6448832096, + 6448927152, + 6448841936 ], "bases": [ { @@ -166769,7 +166795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491720, + "complete_object_locator": 6468495816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -166778,25 +166804,25 @@ }, { "type_name": "CNetMessagePB<166,class CUserMessage_PlayResponseConditional,13,1,1>", - "vtable_address": 6465712504, - "methods": [ - 6448807004, - 6457189536, - 6447229696, - 6447230080, - 6447230240, - 6457189584, - 6457186560, - 6447230256, - 6447232080, - 6447230592, + "vtable_address": 6465716696, + "methods": [ + 6448808572, + 6457191728, + 6447229920, + 6447230304, + 6447230464, + 6457191776, + 6457188752, + 6447230480, + 6447232304, + 6447230816, 6443742160, - 6447231504, - 6457190896, - 6457192720, - 6447232096, - 6447232400, - 6447232304 + 6447231728, + 6457193088, + 6457194912, + 6447232320, + 6447232624, + 6447232528 ], "bases": [ { @@ -166858,7 +166884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491912, + "complete_object_locator": 6468496008, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -166867,17 +166893,17 @@ }, { "type_name": "CNetMessagePB<166,class CUserMessage_PlayResponseConditional,13,1,1>::CProtobufBinding", - "vtable_address": 6465728048, + "vtable_address": 6465732240, "methods": [ - 6448913248, - 6448923536, - 6449058448, - 6448908112, - 6448908272, - 6448904208, - 6448817952, - 6448968240, - 6448950288 + 6448914816, + 6448925104, + 6449060000, + 6448909680, + 6448909840, + 6448905776, + 6448819520, + 6448969808, + 6448951856 ], "bases": [ { @@ -166897,7 +166923,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468491952, + "complete_object_locator": 6468496048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -166906,7 +166932,7 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>", - "vtable_address": 6464708360, + "vtable_address": 6464712440, "methods": [ 6445075600, 6445089856, @@ -166974,7 +167000,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468275176, + "complete_object_locator": 6468279272, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -166983,25 +167009,25 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>", - "vtable_address": 6464708408, + "vtable_address": 6464712488, "methods": [ 6445075504, - 6457189536, + 6457191728, 6445244528, - 6447367072, - 6447367152, - 6457189584, - 6457186560, - 6447367168, + 6447367296, + 6447367376, + 6457191776, + 6457188752, + 6447367392, 6445156752, - 6447367408, + 6447367632, 6443742160, - 6447368096, - 6457190896, - 6457192720, - 6447368496, - 6447368528, - 6447368512 + 6447368320, + 6457193088, + 6457194912, + 6447368720, + 6447368752, + 6447368736 ], "bases": [ { @@ -167063,7 +167089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468275464, + "complete_object_locator": 6468279560, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -167072,7 +167098,7 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>::CProtobufBinding", - "vtable_address": 6464710920, + "vtable_address": 6464715000, "methods": [ 6445164672, 6445176432, @@ -167102,7 +167128,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468275504, + "complete_object_locator": 6468279600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -167111,7 +167137,7 @@ }, { "type_name": "CNetMessagePB<201,class CMsgPlaceDecalEvent,12,1,1>", - "vtable_address": 6464682536, + "vtable_address": 6464686616, "methods": [ 6444570640, 6444599920, @@ -167179,7 +167205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468263952, + "complete_object_locator": 6468268048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -167188,25 +167214,25 @@ }, { "type_name": "CNetMessagePB<201,class CMsgPlaceDecalEvent,12,1,1>", - "vtable_address": 6464682584, + "vtable_address": 6464686664, "methods": [ 6444568872, - 6457189536, + 6457191728, 6444865600, - 6446543936, - 6446544096, - 6457189584, - 6457186560, - 6446544432, + 6446543392, + 6446543664, + 6457191776, + 6457188752, + 6446544192, 6444784800, - 6446545456, + 6446545296, 6443742160, - 6446547424, - 6457190896, - 6457192720, - 6446548592, - 6446548768, - 6446548688 + 6446547456, + 6457193088, + 6457194912, + 6446548880, + 6446549088, + 6446549056 ], "bases": [ { @@ -167268,7 +167294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468264240, + "complete_object_locator": 6468268336, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -167277,7 +167303,7 @@ }, { "type_name": "CNetMessagePB<201,class CMsgPlaceDecalEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6464693120, + "vtable_address": 6464697200, "methods": [ 6444807552, 6444814288, @@ -167307,7 +167333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468264280, + "complete_object_locator": 6468268376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -167316,7 +167342,7 @@ }, { "type_name": "CNetMessagePB<202,class CMsgClearWorldDecalsEvent,12,1,1>", - "vtable_address": 6464682728, + "vtable_address": 6464686808, "methods": [ 6444570736, 6444599952, @@ -167384,7 +167410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468264408, + "complete_object_locator": 6468268504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -167393,25 +167419,25 @@ }, { "type_name": "CNetMessagePB<202,class CMsgClearWorldDecalsEvent,12,1,1>", - "vtable_address": 6464682776, + "vtable_address": 6464686856, "methods": [ 6444568884, - 6457189536, + 6457191728, 6444865584, - 6446578128, - 6446578160, - 6457189584, - 6457186560, - 6446578352, + 6446578448, + 6446578544, + 6457191776, + 6457188752, + 6446578560, 6444784784, - 6446578480, - 6443742160, 6446578864, - 6457190896, - 6457192720, - 6446579056, - 6446579936, - 6446579328 + 6443742160, + 6446579248, + 6457193088, + 6457194912, + 6446579440, + 6446579728, + 6446579712 ], "bases": [ { @@ -167473,7 +167499,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468264696, + "complete_object_locator": 6468268792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -167482,7 +167508,7 @@ }, { "type_name": "CNetMessagePB<202,class CMsgClearWorldDecalsEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6464693040, + "vtable_address": 6464697120, "methods": [ 6444808640, 6444814304, @@ -167512,7 +167538,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468264736, + "complete_object_locator": 6468268832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -167521,7 +167547,7 @@ }, { "type_name": "CNetMessagePB<203,class CMsgClearEntityDecalsEvent,12,1,1>", - "vtable_address": 6464682920, + "vtable_address": 6464687000, "methods": [ 6444570832, 6444599984, @@ -167589,7 +167615,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468264864, + "complete_object_locator": 6468268960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -167598,25 +167624,25 @@ }, { "type_name": "CNetMessagePB<203,class CMsgClearEntityDecalsEvent,12,1,1>", - "vtable_address": 6464682968, + "vtable_address": 6464687048, "methods": [ 6444568896, - 6457189536, + 6457191728, 6444865568, - 6446594608, - 6446594640, - 6457189584, - 6457186560, - 6446594656, + 6446594848, + 6446594880, + 6457191776, + 6457188752, + 6446594896, 6444784768, - 6446594720, + 6446594944, 6443742160, - 6446595200, - 6457190896, - 6457192720, - 6446595904, - 6446597280, - 6446597264 + 6446595552, + 6457193088, + 6457194912, + 6446596256, + 6446597664, + 6446597648 ], "bases": [ { @@ -167678,7 +167704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468265152, + "complete_object_locator": 6468269248, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -167687,7 +167713,7 @@ }, { "type_name": "CNetMessagePB<203,class CMsgClearEntityDecalsEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6464692960, + "vtable_address": 6464697040, "methods": [ 6444809728, 6444814320, @@ -167717,7 +167743,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468265192, + "complete_object_locator": 6468269288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -167726,7 +167752,7 @@ }, { "type_name": "CNetMessagePB<204,class CMsgClearDecalsForEntityEvent,12,1,1>", - "vtable_address": 6464683112, + "vtable_address": 6464687192, "methods": [ 6444570928, 6444600016, @@ -167794,7 +167820,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468265320, + "complete_object_locator": 6468269416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -167803,25 +167829,25 @@ }, { "type_name": "CNetMessagePB<204,class CMsgClearDecalsForEntityEvent,12,1,1>", - "vtable_address": 6464683160, + "vtable_address": 6464687240, "methods": [ 6444568908, - 6457189536, + 6457191728, 6444865552, - 6446616496, - 6446616544, - 6457189584, - 6457186560, - 6446616576, + 6446616880, + 6446616928, + 6457191776, + 6457188752, + 6446616944, 6444784752, - 6446616736, + 6446617120, 6443742160, - 6446617360, - 6457190896, - 6457192720, - 6446618368, - 6446618832, - 6446618816 + 6446617696, + 6457193088, + 6457194912, + 6446618752, + 6446619216, + 6446619200 ], "bases": [ { @@ -167883,7 +167909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468265608, + "complete_object_locator": 6468269704, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -167892,7 +167918,7 @@ }, { "type_name": "CNetMessagePB<204,class CMsgClearDecalsForEntityEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6464692880, + "vtable_address": 6464696960, "methods": [ 6444810816, 6444814336, @@ -167922,7 +167948,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468265648, + "complete_object_locator": 6468269744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -167931,13 +167957,13 @@ }, { "type_name": "CNetMessagePB<205,class CMsgSource1LegacyGameEventList,10,1,1>", - "vtable_address": 6465808264, + "vtable_address": 6465812456, "methods": [ - 6449420272, - 6449420016, - 6449420000, - 6449420032, - 6449420112 + 6449421840, + 6449421584, + 6449421568, + 6449421600, + 6449421680 ], "bases": [ { @@ -167999,7 +168025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468515928, + "complete_object_locator": 6468520024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -168008,25 +168034,25 @@ }, { "type_name": "CNetMessagePB<205,class CMsgSource1LegacyGameEventList,10,1,1>", - "vtable_address": 6465808312, + "vtable_address": 6465812504, "methods": [ - 6449407300, - 6457189536, - 6445788016, - 6445788576, - 6445788720, - 6457189584, - 6457186560, - 6445788736, - 6445789536, - 6445788896, + 6449408852, + 6457191728, + 6445787152, + 6445788944, + 6445789072, + 6457191776, + 6457188752, + 6445789088, + 6445789840, + 6445789264, 6443742160, - 6445789392, - 6457190896, - 6457192720, - 6445789648, - 6445792784, - 6445792768 + 6445789696, + 6457193088, + 6457194912, + 6445789952, + 6445793168, + 6445793152 ], "bases": [ { @@ -168088,7 +168114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516120, + "complete_object_locator": 6468520216, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -168097,17 +168123,17 @@ }, { "type_name": "CNetMessagePB<205,class CMsgSource1LegacyGameEventList,10,1,1>::CProtobufBinding", - "vtable_address": 6465806608, + "vtable_address": 6465810800, "methods": [ - 6449415600, - 6449415584, - 6449415312, - 6449416688, - 6449416704, - 6449416848, - 6449416864, - 6449417024, - 6449417040 + 6449417168, + 6449417152, + 6449416880, + 6449418256, + 6449418272, + 6449418416, + 6449418432, + 6449418592, + 6449418608 ], "bases": [ { @@ -168127,7 +168153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516160, + "complete_object_locator": 6468520256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -168136,13 +168162,13 @@ }, { "type_name": "CNetMessagePB<206,class CMsgSource1LegacyListenEvents,10,1,1>", - "vtable_address": 6465817656, + "vtable_address": 6465821848, "methods": [ - 6449497152, - 6449515744, - 6449515728, - 6449595184, - 6449525664 + 6449498720, + 6449517312, + 6449517296, + 6449596752, + 6449527232 ], "bases": [ { @@ -168204,7 +168230,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468524536, + "complete_object_locator": 6468528632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -168213,25 +168239,25 @@ }, { "type_name": "CNetMessagePB<206,class CMsgSource1LegacyListenEvents,10,1,1>", - "vtable_address": 6465817704, - "methods": [ - 6449496124, - 6457189536, - 6445826128, - 6445826464, - 6445826672, - 6457189584, - 6457186560, - 6445827072, - 6445828256, - 6445827376, + "vtable_address": 6465821896, + "methods": [ + 6449497692, + 6457191728, + 6445826496, + 6445826704, + 6445826768, + 6457191776, + 6457188752, + 6445826976, + 6445828448, + 6445827184, 6443742160, - 6445827936, - 6457190896, - 6457192720, - 6445828288, - 6445828544, - 6445828528 + 6445828128, + 6457193088, + 6457194912, + 6445828656, + 6445828848, + 6445828832 ], "bases": [ { @@ -168293,7 +168319,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468524576, + "complete_object_locator": 6468528672, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -168302,17 +168328,17 @@ }, { "type_name": "CNetMessagePB<206,class CMsgSource1LegacyListenEvents,10,1,1>::CProtobufBinding", - "vtable_address": 6465832016, + "vtable_address": 6465836208, "methods": [ - 6449589840, - 6449594592, - 6449753744, - 6449585536, - 6449585552, - 6449581520, - 6449513264, - 6449643424, - 6449626432 + 6449591408, + 6449596160, + 6449755312, + 6449587104, + 6449587120, + 6449583088, + 6449514832, + 6449644992, + 6449628000 ], "bases": [ { @@ -168332,7 +168358,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468524616, + "complete_object_locator": 6468528712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -168341,13 +168367,13 @@ }, { "type_name": "CNetMessagePB<207,class CMsgSource1LegacyGameEvent,5,1,1>", - "vtable_address": 6465808456, + "vtable_address": 6465812648, "methods": [ - 6449420640, - 6449420384, - 6449420368, - 6449420400, - 6449420480 + 6449422208, + 6449421952, + 6449421936, + 6449421968, + 6449422048 ], "bases": [ { @@ -168409,7 +168435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516288, + "complete_object_locator": 6468520384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -168418,25 +168444,25 @@ }, { "type_name": "CNetMessagePB<207,class CMsgSource1LegacyGameEvent,5,1,1>", - "vtable_address": 6465808504, - "methods": [ - 6449407312, - 6457189536, - 6445865808, - 6445867008, - 6445867584, - 6457189584, - 6457186560, - 6445867600, - 6445869440, - 6445867936, - 6443742160, - 6445868880, - 6457190896, - 6457192720, - 6445870928, - 6445872160, - 6445872144 + "vtable_address": 6465812696, + "methods": [ + 6449408864, + 6457191728, + 6445866112, + 6445867088, + 6445867504, + 6457191776, + 6457188752, + 6445867840, + 6445869744, + 6445868320, + 6443742160, + 6445869120, + 6457193088, + 6457194912, + 6445871008, + 6445872544, + 6445872512 ], "bases": [ { @@ -168498,7 +168524,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516328, + "complete_object_locator": 6468520424, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -168507,17 +168533,17 @@ }, { "type_name": "CNetMessagePB<207,class CMsgSource1LegacyGameEvent,5,1,1>::CProtobufBinding", - "vtable_address": 6465806400, + "vtable_address": 6465810592, "methods": [ - 6449413408, - 6449413392, - 6449413120, - 6449414496, - 6449414512, - 6449414656, - 6449414672, - 6449414848, - 6449414864 + 6449414976, + 6449414960, + 6449414688, + 6449416064, + 6449416080, + 6449416224, + 6449416240, + 6449416416, + 6449416432 ], "bases": [ { @@ -168537,7 +168563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516368, + "complete_object_locator": 6468520464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -168546,7 +168572,7 @@ }, { "type_name": "CNetMessagePB<208,class CMsgSosStartSoundEvent,4,1,1>", - "vtable_address": 6464708768, + "vtable_address": 6464712848, "methods": [ 6445075696, 6445089888, @@ -168614,7 +168640,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468275632, + "complete_object_locator": 6468279728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -168623,25 +168649,25 @@ }, { "type_name": "CNetMessagePB<208,class CMsgSosStartSoundEvent,4,1,1>", - "vtable_address": 6464708816, + "vtable_address": 6464712896, "methods": [ 6445075516, - 6457189536, + 6457191728, 6445244576, - 6445906544, - 6445906800, - 6457189584, - 6457186560, + 6445906784, + 6445906880, + 6457191776, + 6457188752, 6445906944, 6445156800, - 6445908144, + 6445907792, 6443742160, - 6445909536, - 6457190896, - 6457192720, - 6445910384, - 6445910992, - 6445910976 + 6445908912, + 6457193088, + 6457194912, + 6445910752, + 6445911296, + 6445911216 ], "bases": [ { @@ -168703,7 +168729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468275920, + "complete_object_locator": 6468280016, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -168712,7 +168738,7 @@ }, { "type_name": "CNetMessagePB<208,class CMsgSosStartSoundEvent,4,1,1>::CProtobufBinding", - "vtable_address": 6464710840, + "vtable_address": 6464714920, "methods": [ 6445165760, 6445176448, @@ -168742,7 +168768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468275960, + "complete_object_locator": 6468280056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -168751,7 +168777,7 @@ }, { "type_name": "CNetMessagePB<209,class CMsgSosStopSoundEvent,4,1,1>", - "vtable_address": 6464708960, + "vtable_address": 6464713040, "methods": [ 6445075792, 6445089920, @@ -168819,7 +168845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468276088, + "complete_object_locator": 6468280184, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -168828,25 +168854,25 @@ }, { "type_name": "CNetMessagePB<209,class CMsgSosStopSoundEvent,4,1,1>", - "vtable_address": 6464709008, + "vtable_address": 6464713088, "methods": [ 6445075528, - 6457189536, + 6457191728, 6445244592, - 6445928560, - 6445928592, - 6457189584, - 6457186560, - 6445928608, + 6445928784, + 6445928816, + 6457191776, + 6457188752, + 6445928832, 6445156816, - 6445928976, + 6445929360, 6443742160, - 6445929504, - 6457190896, - 6457192720, - 6445929680, 6445929744, - 6445929728 + 6457193088, + 6457194912, + 6445930064, + 6445930112, + 6445930096 ], "bases": [ { @@ -168908,7 +168934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468276376, + "complete_object_locator": 6468280472, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -168917,7 +168943,7 @@ }, { "type_name": "CNetMessagePB<209,class CMsgSosStopSoundEvent,4,1,1>::CProtobufBinding", - "vtable_address": 6464710760, + "vtable_address": 6464714840, "methods": [ 6445166848, 6445176464, @@ -168947,7 +168973,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468276416, + "complete_object_locator": 6468280512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -168956,7 +168982,7 @@ }, { "type_name": "CNetMessagePB<210,class CMsgSosSetSoundEventParams,4,1,1>", - "vtable_address": 6464709344, + "vtable_address": 6464713424, "methods": [ 6445075888, 6445089952, @@ -169024,7 +169050,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468277000, + "complete_object_locator": 6468281096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -169033,25 +169059,25 @@ }, { "type_name": "CNetMessagePB<210,class CMsgSosSetSoundEventParams,4,1,1>", - "vtable_address": 6464709392, + "vtable_address": 6464713472, "methods": [ 6445075540, - 6457189536, + 6457191728, 6445244560, - 6445966640, - 6445966704, - 6457189584, - 6457186560, - 6445966720, + 6445967008, + 6445967072, + 6457191776, + 6457188752, + 6445967088, 6445156784, - 6445966832, + 6445967216, 6443742160, - 6445967392, - 6457190896, - 6457192720, - 6445967648, - 6445973488, - 6445970800 + 6445967696, + 6457193088, + 6457194912, + 6445968032, + 6445970736, + 6445970704 ], "bases": [ { @@ -169113,7 +169139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468277288, + "complete_object_locator": 6468281384, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -169122,7 +169148,7 @@ }, { "type_name": "CNetMessagePB<210,class CMsgSosSetSoundEventParams,4,1,1>::CProtobufBinding", - "vtable_address": 6464710600, + "vtable_address": 6464714680, "methods": [ 6445167936, 6445176480, @@ -169152,7 +169178,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468277328, + "complete_object_locator": 6468281424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -169161,7 +169187,7 @@ }, { "type_name": "CNetMessagePB<211,class CMsgSosSetLibraryStackFields,4,1,1>", - "vtable_address": 6464709536, + "vtable_address": 6464713616, "methods": [ 6445075984, 6445089984, @@ -169229,7 +169255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468277456, + "complete_object_locator": 6468281552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -169238,25 +169264,25 @@ }, { "type_name": "CNetMessagePB<211,class CMsgSosSetLibraryStackFields,4,1,1>", - "vtable_address": 6464709584, + "vtable_address": 6464713664, "methods": [ 6445075552, - 6457189536, + 6457191728, 6445244544, - 6445987520, - 6445987952, - 6457189584, - 6457186560, - 6445987984, + 6445987664, + 6445987936, + 6457191776, + 6457188752, + 6445988272, 6445156768, - 6445988336, + 6445988560, 6443742160, - 6445989488, - 6457190896, - 6457192720, - 6445990864, - 6445991104, - 6445991072 + 6445989728, + 6457193088, + 6457194912, + 6445990448, + 6445991440, + 6445991424 ], "bases": [ { @@ -169318,7 +169344,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468277744, + "complete_object_locator": 6468281840, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -169327,7 +169353,7 @@ }, { "type_name": "CNetMessagePB<211,class CMsgSosSetLibraryStackFields,4,1,1>::CProtobufBinding", - "vtable_address": 6464710520, + "vtable_address": 6464714600, "methods": [ 6445169024, 6445176496, @@ -169357,7 +169383,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468277784, + "complete_object_locator": 6468281880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -169366,7 +169392,7 @@ }, { "type_name": "CNetMessagePB<212,class CMsgSosStopSoundEventHash,4,1,1>", - "vtable_address": 6464709152, + "vtable_address": 6464713232, "methods": [ 6445076080, 6445090016, @@ -169434,7 +169460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468276544, + "complete_object_locator": 6468280640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -169443,25 +169469,25 @@ }, { "type_name": "CNetMessagePB<212,class CMsgSosStopSoundEventHash,4,1,1>", - "vtable_address": 6464709200, + "vtable_address": 6464713280, "methods": [ 6445075564, - 6457189536, + 6457191728, 6445244608, - 6445947568, - 6445947616, - 6457189584, - 6457186560, - 6445947632, + 6445947936, + 6445947984, + 6457191776, + 6457188752, + 6445948000, 6445156832, - 6445947712, + 6445948096, 6443742160, - 6445948352, - 6457190896, - 6457192720, - 6445948592, - 6445948640, - 6445948624 + 6445948512, + 6457193088, + 6457194912, + 6445948976, + 6445949024, + 6445949008 ], "bases": [ { @@ -169523,7 +169549,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468276832, + "complete_object_locator": 6468280928, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -169532,7 +169558,7 @@ }, { "type_name": "CNetMessagePB<212,class CMsgSosStopSoundEventHash,4,1,1>::CProtobufBinding", - "vtable_address": 6464710680, + "vtable_address": 6464714760, "methods": [ 6445170112, 6445176512, @@ -169562,7 +169588,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468276872, + "complete_object_locator": 6468280968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -169571,13 +169597,13 @@ }, { "type_name": "CNetMessagePB<22,class CCLCMsg_VoiceData,6,0,0>", - "vtable_address": 6465966416, + "vtable_address": 6465970608, "methods": [ - 6450765104, - 6450777120, - 6450777104, - 6450808736, - 6450780016 + 6450766672, + 6450778688, + 6450778672, + 6450810304, + 6450781584 ], "bases": [ { @@ -169639,7 +169665,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567928, + "complete_object_locator": 6468572024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -169648,25 +169674,25 @@ }, { "type_name": "CNetMessagePB<22,class CCLCMsg_VoiceData,6,0,0>", - "vtable_address": 6465966464, + "vtable_address": 6465970656, "methods": [ - 6450764576, - 6457189536, - 6447368752, - 6447369216, - 6447369408, - 6457189584, - 6457186560, - 6447369424, - 6447370336, - 6447369568, + 6450766144, + 6457191728, + 6447368976, + 6447369440, + 6447369632, + 6457191776, + 6457188752, + 6447369648, + 6447370560, + 6447369792, 6443742160, - 6447370080, - 6457190896, - 6457192720, - 6447370352, - 6447370640, - 6447370448 + 6447370304, + 6457193088, + 6457194912, + 6447370576, + 6447370864, + 6447370672 ], "bases": [ { @@ -169728,7 +169754,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568120, + "complete_object_locator": 6468572216, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -169737,17 +169763,17 @@ }, { "type_name": "CNetMessagePB<22,class CCLCMsg_VoiceData,6,0,0>::CProtobufBinding", - "vtable_address": 6465967072, + "vtable_address": 6465971264, "methods": [ - 6450804896, - 6450808464, - 6450872160, - 6450799744, - 6450800208, - 6450798368, - 6450775136, - 6450822240, - 6450818640 + 6450806464, + 6450810032, + 6450873728, + 6450801312, + 6450801776, + 6450799936, + 6450776704, + 6450823808, + 6450820208 ], "bases": [ { @@ -169767,7 +169793,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568160, + "complete_object_locator": 6468572256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -169776,13 +169802,13 @@ }, { "type_name": "CNetMessagePB<256,class CP2P_TextMessage,0,1,0>", - "vtable_address": 6465981496, + "vtable_address": 6465985688, "methods": [ - 6450764816, - 6450777024, - 6450777008, - 6450808496, - 6450779536 + 6450766384, + 6450778592, + 6450778576, + 6450810064, + 6450781104 ], "bases": [ { @@ -169844,7 +169870,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571192, + "complete_object_locator": 6468575288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -169853,25 +169879,25 @@ }, { "type_name": "CNetMessagePB<256,class CP2P_TextMessage,0,1,0>", - "vtable_address": 6465981544, - "methods": [ - 6450764540, - 6457189536, - 6446214032, - 6446214704, - 6446214784, - 6457189584, - 6457186560, - 6446214896, - 6446216112, - 6446215264, - 6443742160, - 6446216000, - 6457190896, - 6457192720, + "vtable_address": 6465985736, + "methods": [ + 6450766108, + 6457191728, + 6446214416, + 6446214944, + 6446215024, + 6457191776, + 6457188752, + 6446215280, 6446216336, - 6446216384, - 6446216368 + 6446215488, + 6443742160, + 6446216224, + 6457193088, + 6457194912, + 6446216720, + 6446216768, + 6446216752 ], "bases": [ { @@ -169933,7 +169959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571384, + "complete_object_locator": 6468575480, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -169942,17 +169968,17 @@ }, { "type_name": "CNetMessagePB<256,class CP2P_TextMessage,0,1,0>::CProtobufBinding", - "vtable_address": 6466003472, + "vtable_address": 6466007664, "methods": [ - 6450801632, - 6450808416, - 6450871344, - 6450799696, - 6450799776, - 6450798320, - 6450774656, - 6450822192, - 6450818592 + 6450803200, + 6450809984, + 6450872912, + 6450801264, + 6450801344, + 6450799888, + 6450776224, + 6450823760, + 6450820160 ], "bases": [ { @@ -169972,7 +169998,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571424, + "complete_object_locator": 6468575520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -169981,13 +170007,13 @@ }, { "type_name": "CNetMessagePB<257,class CP2P_Voice,6,2,0>", - "vtable_address": 6465981688, + "vtable_address": 6465985880, "methods": [ - 6450764912, - 6450777056, - 6450777040, - 6450808576, - 6450779696 + 6450766480, + 6450778624, + 6450778608, + 6450810144, + 6450781264 ], "bases": [ { @@ -170049,7 +170075,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571904, + "complete_object_locator": 6468576000, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -170058,25 +170084,25 @@ }, { "type_name": "CNetMessagePB<257,class CP2P_Voice,6,2,0>", - "vtable_address": 6465981736, + "vtable_address": 6465985928, "methods": [ - 6450764552, - 6457189536, - 6446243504, - 6446244640, - 6446245584, - 6457189584, - 6457186560, - 6446245600, - 6446247728, - 6446246496, + 6450766120, + 6457191728, + 6446243808, + 6446245024, + 6446245968, + 6457191776, + 6457188752, + 6446245984, + 6446248112, + 6446246880, 6443742160, - 6446247312, - 6457190896, - 6457192720, - 6446248736, - 6446248896, - 6446248864 + 6446247696, + 6457193088, + 6457194912, + 6446249120, + 6446249280, + 6446249248 ], "bases": [ { @@ -170138,7 +170164,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571944, + "complete_object_locator": 6468576040, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -170147,17 +170173,17 @@ }, { "type_name": "CNetMessagePB<257,class CP2P_Voice,6,2,0>::CProtobufBinding", - "vtable_address": 6466003392, + "vtable_address": 6466007584, "methods": [ - 6450802720, - 6450808432, - 6450871616, - 6450799712, - 6450799920, - 6450798336, - 6450774816, - 6450822208, - 6450818608 + 6450804288, + 6450810000, + 6450873184, + 6450801280, + 6450801488, + 6450799904, + 6450776384, + 6450823776, + 6450820176 ], "bases": [ { @@ -170177,7 +170203,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571984, + "complete_object_locator": 6468576080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -170186,13 +170212,13 @@ }, { "type_name": "CNetMessagePB<258,class CP2P_Ping,0,1,0>", - "vtable_address": 6465982072, + "vtable_address": 6465986264, "methods": [ - 6450765008, - 6450777088, - 6450777072, - 6450808656, - 6450779856 + 6450766576, + 6450778656, + 6450778640, + 6450810224, + 6450781424 ], "bases": [ { @@ -170254,7 +170280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572464, + "complete_object_locator": 6468576560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -170263,25 +170289,25 @@ }, { "type_name": "CNetMessagePB<258,class CP2P_Ping,0,1,0>", - "vtable_address": 6465982120, - "methods": [ - 6450764564, - 6457189536, - 6446264560, - 6446265472, - 6446265520, - 6457189584, - 6457186560, - 6446265536, - 6446266448, - 6446265680, - 6443742160, - 6446266192, - 6457190896, - 6457192720, - 6446266848, - 6446268592, - 6446268368 + "vtable_address": 6465986312, + "methods": [ + 6450766132, + 6457191728, + 6446264848, + 6446265584, + 6446265824, + 6457191776, + 6457188752, + 6446265920, + 6446266832, + 6446266048, + 6443742160, + 6446266576, + 6457193088, + 6457194912, + 6446267152, + 6446268976, + 6446268752 ], "bases": [ { @@ -170343,7 +170369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572504, + "complete_object_locator": 6468576600, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -170352,17 +170378,17 @@ }, { "type_name": "CNetMessagePB<258,class CP2P_Ping,0,1,0>::CProtobufBinding", - "vtable_address": 6466003312, + "vtable_address": 6466007504, "methods": [ - 6450803808, - 6450808448, - 6450871888, - 6450799728, - 6450800064, - 6450798352, - 6450774976, - 6450822224, - 6450818624 + 6450805376, + 6450810016, + 6450873456, + 6450801296, + 6450801632, + 6450799920, + 6450776544, + 6450823792, + 6450820192 ], "bases": [ { @@ -170382,7 +170408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572544, + "complete_object_locator": 6468576640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -170391,7 +170417,7 @@ }, { "type_name": "CNetMessagePB<280,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6464680840, + "vtable_address": 6464684920, "methods": [ 6444570160, 6444599792, @@ -170473,7 +170499,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468262824, + "complete_object_locator": 6468266920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -170482,25 +170508,25 @@ }, { "type_name": "CNetMessagePB<280,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6464680888, + "vtable_address": 6464684968, "methods": [ 6444568824, - 6457189536, + 6457191728, 6444865488, - 6445808256, - 6445808352, - 6457189584, - 6457186560, - 6445808368, + 6445808304, + 6445808400, + 6457191776, + 6457188752, + 6445808464, 6444784688, - 6445808976, + 6445808960, 6443742160, - 6445809552, - 6457190896, - 6457192720, - 6445809968, - 6445810608, - 6445810576 + 6445809728, + 6457193088, + 6457194912, + 6445810240, + 6445810592, + 6445810368 ], "bases": [ { @@ -170576,7 +170602,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468262864, + "complete_object_locator": 6468266960, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -170585,7 +170611,7 @@ }, { "type_name": "CNetMessagePB<280,class CBaseCmdKeyValues,14,1,1>::CProtobufBinding", - "vtable_address": 6464693280, + "vtable_address": 6464697360, "methods": [ 6444803008, 6444814224, @@ -170615,7 +170641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468262904, + "complete_object_locator": 6468267000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -170624,7 +170650,7 @@ }, { "type_name": "CNetMessagePB<281,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6464681176, + "vtable_address": 6464685256, "methods": [ 6444570304, 6444599824, @@ -170706,7 +170732,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468263472, + "complete_object_locator": 6468267568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -170715,25 +170741,25 @@ }, { "type_name": "CNetMessagePB<281,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6464681224, + "vtable_address": 6464685304, "methods": [ 6444568836, - 6457189536, + 6457191728, 6444865504, - 6445828800, - 6445828912, - 6457189584, - 6457186560, - 6445829072, + 6445829184, + 6445829296, + 6457191776, + 6457188752, + 6445829456, 6444784704, - 6445829232, + 6445829616, 6443742160, - 6445829728, - 6457190896, - 6457192720, - 6445829984, - 6445830080, - 6445830064 + 6445830112, + 6457193088, + 6457194912, + 6445830368, + 6445830464, + 6445830448 ], "bases": [ { @@ -170809,7 +170835,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468263512, + "complete_object_locator": 6468267608, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -170818,7 +170844,7 @@ }, { "type_name": "CNetMessagePB<281,class CBaseCmdKeyValues,14,1,1>::CProtobufBinding", - "vtable_address": 6464693200, + "vtable_address": 6464697280, "methods": [ 6444804192, 6444814240, @@ -170848,7 +170874,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468263552, + "complete_object_locator": 6468267648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -170857,7 +170883,7 @@ }, { "type_name": "CNetMessagePB<282,class CClientMsg_ClientUIEvent,14,1,1>", - "vtable_address": 6464417584, + "vtable_address": 6464421680, "methods": [ 6443795040, 6443800336, @@ -170925,7 +170951,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220736, + "complete_object_locator": 6468224832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -170934,25 +170960,25 @@ }, { "type_name": "CNetMessagePB<282,class CClientMsg_ClientUIEvent,14,1,1>", - "vtable_address": 6464417632, + "vtable_address": 6464421728, "methods": [ 6443794824, - 6457189536, + 6457191728, 6443844160, - 6445845584, - 6445845696, - 6457189584, - 6457186560, - 6445845712, + 6445845792, + 6445845904, + 6457191776, + 6457188752, + 6445845920, 6443817392, - 6445845936, + 6445846320, 6443742160, - 6445846720, - 6457190896, - 6457192720, - 6445847168, - 6445847632, - 6445847600 + 6445847104, + 6457193088, + 6457194912, + 6445847552, + 6445848016, + 6445847984 ], "bases": [ { @@ -171014,7 +171040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220776, + "complete_object_locator": 6468224872, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -171023,7 +171049,7 @@ }, { "type_name": "CNetMessagePB<282,class CClientMsg_ClientUIEvent,14,1,1>::CProtobufBinding", - "vtable_address": 6464441760, + "vtable_address": 6464445856, "methods": [ 6443821408, 6443824416, @@ -171053,7 +171079,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220816, + "complete_object_locator": 6468224912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -171062,13 +171088,13 @@ }, { "type_name": "CNetMessagePB<286,class CClientMsg_ListenForResponseFound,14,1,1>", - "vtable_address": 6465701792, + "vtable_address": 6465706128, "methods": [ - 6448746752, - 6448746496, - 6448746480, - 6448746512, - 6448746592 + 6448748320, + 6448748064, + 6448748048, + 6448748080, + 6448748160 ], "bases": [ { @@ -171130,7 +171156,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489312, + "complete_object_locator": 6468493408, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -171139,25 +171165,25 @@ }, { "type_name": "CNetMessagePB<286,class CClientMsg_ListenForResponseFound,14,1,1>", - "vtable_address": 6465701840, + "vtable_address": 6465706176, "methods": [ - 6448745920, - 6457189536, - 6445919584, - 6445920080, - 6445920272, - 6457189584, - 6457186560, - 6445920368, - 6445924784, - 6445921504, + 6448747488, + 6457191728, + 6445919968, + 6445920464, + 6445920656, + 6457191776, + 6457188752, + 6445920752, + 6445925168, + 6445921728, 6443742160, - 6445923088, - 6457190896, - 6457192720, - 6445926048, - 6445926304, - 6445926128 + 6445923472, + 6457193088, + 6457194912, + 6445926432, + 6445926688, + 6445926512 ], "bases": [ { @@ -171219,7 +171245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489352, + "complete_object_locator": 6468493448, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -171228,17 +171254,17 @@ }, { "type_name": "CNetMessagePB<286,class CClientMsg_ListenForResponseFound,14,1,1>::CProtobufBinding", - "vtable_address": 6465706016, + "vtable_address": 6465710368, "methods": [ - 6448748096, - 6448748080, - 6448747808, - 6448749184, - 6448749200, - 6448749344, - 6448749360, - 6448749520, - 6448749536 + 6448749664, + 6448749648, + 6448749376, + 6448750752, + 6448750768, + 6448750912, + 6448750928, + 6448751088, + 6448751104 ], "bases": [ { @@ -171258,7 +171284,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489392, + "complete_object_locator": 6468493488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -171267,7 +171293,7 @@ }, { "type_name": "CNetMessagePB<301,class CCSUsrMsg_VGUIMenu,13,1,1>", - "vtable_address": 6465238168, + "vtable_address": 6465242248, "methods": [ 6447563888, 6447563632, @@ -171335,7 +171361,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468417464, + "complete_object_locator": 6468421560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -171344,25 +171370,25 @@ }, { "type_name": "CNetMessagePB<301,class CCSUsrMsg_VGUIMenu,13,1,1>", - "vtable_address": 6465238216, + "vtable_address": 6465242296, "methods": [ 6447551024, - 6457189536, - 6445890480, - 6445890800, - 6445891056, - 6457189584, - 6457186560, - 6445891072, - 6445892416, - 6445891584, + 6457191728, + 6445890848, + 6445891104, + 6445891360, + 6457191776, + 6457188752, + 6445891376, + 6445892800, + 6445891968, 6443742160, - 6445892192, - 6457190896, - 6457192720, - 6445892448, - 6445893008, - 6445892976 + 6445892576, + 6457193088, + 6457194912, + 6445892832, + 6445893392, + 6445893360 ], "bases": [ { @@ -171424,7 +171450,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468417656, + "complete_object_locator": 6468421752, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -171433,7 +171459,7 @@ }, { "type_name": "CNetMessagePB<301,class CCSUsrMsg_VGUIMenu,13,1,1>::CProtobufBinding", - "vtable_address": 6465239448, + "vtable_address": 6465243528, "methods": [ 6447572768, 6447572752, @@ -171463,7 +171489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468417696, + "complete_object_locator": 6468421792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -171472,7 +171498,7 @@ }, { "type_name": "CNetMessagePB<317,class CCSUsrMsg_SendAudio,13,1,1>", - "vtable_address": 6465230328, + "vtable_address": 6465234408, "methods": [ 6447551344, 6447551072, @@ -171540,7 +171566,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405264, + "complete_object_locator": 6468409360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -171549,25 +171575,25 @@ }, { "type_name": "CNetMessagePB<317,class CCSUsrMsg_SendAudio,13,1,1>", - "vtable_address": 6465230376, + "vtable_address": 6465234456, "methods": [ 6447549128, - 6457189536, - 6446112528, - 6446113136, - 6446113200, - 6457189584, - 6457186560, - 6446113216, - 6446115024, - 6446114048, + 6457191728, + 6446112912, + 6446113520, + 6446113584, + 6457191776, + 6457188752, + 6446113600, + 6446115408, + 6446114432, 6443742160, - 6446114912, - 6457190896, - 6457192720, - 6446115136, - 6446116400, - 6446116384 + 6446115296, + 6457193088, + 6457194912, + 6446115520, + 6446116624, + 6446116608 ], "bases": [ { @@ -171629,7 +171655,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405456, + "complete_object_locator": 6468409552, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -171638,7 +171664,7 @@ }, { "type_name": "CNetMessagePB<317,class CCSUsrMsg_SendAudio,13,1,1>::CProtobufBinding", - "vtable_address": 6465242168, + "vtable_address": 6465246248, "methods": [ 6447632160, 6447632144, @@ -171668,7 +171694,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405496, + "complete_object_locator": 6468409592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -171677,7 +171703,7 @@ }, { "type_name": "CNetMessagePB<318,class CCSUsrMsg_RawAudio,13,1,1>", - "vtable_address": 6465234520, + "vtable_address": 6465238600, "methods": [ 6447556896, 6447556640, @@ -171745,7 +171771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410664, + "complete_object_locator": 6468414760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -171754,25 +171780,25 @@ }, { "type_name": "CNetMessagePB<318,class CCSUsrMsg_RawAudio,13,1,1>", - "vtable_address": 6465234568, + "vtable_address": 6465238648, "methods": [ 6447549308, - 6457189536, - 6446128704, - 6446128976, - 6446129056, - 6457189584, - 6457186560, - 6446129072, - 6446130224, - 6446129232, + 6457191728, + 6446129088, + 6446129360, + 6446129440, + 6457191776, + 6457188752, + 6446129456, + 6446130608, + 6446129616, 6443742160, - 6446129856, - 6457190896, - 6457192720, - 6446130400, - 6446131776, - 6446131664 + 6446130240, + 6457193088, + 6457194912, + 6446130784, + 6446131872, + 6446131856 ], "bases": [ { @@ -171834,7 +171860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410856, + "complete_object_locator": 6468414952, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -171843,7 +171869,7 @@ }, { "type_name": "CNetMessagePB<318,class CCSUsrMsg_RawAudio,13,1,1>::CProtobufBinding", - "vtable_address": 6465240968, + "vtable_address": 6465245048, "methods": [ 6447605968, 6447605952, @@ -171873,7 +171899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410896, + "complete_object_locator": 6468414992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -171882,7 +171908,7 @@ }, { "type_name": "CNetMessagePB<321,class CCSUsrMsg_Damage,13,1,1>", - "vtable_address": 6465229752, + "vtable_address": 6465233832, "methods": [ 6447550048, 6447549792, @@ -171950,7 +171976,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404184, + "complete_object_locator": 6468408280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -171959,25 +171985,25 @@ }, { "type_name": "CNetMessagePB<321,class CCSUsrMsg_Damage,13,1,1>", - "vtable_address": 6465229800, + "vtable_address": 6465233880, "methods": [ 6447549092, - 6457189536, - 6446202576, - 6446203616, - 6446204080, - 6457189584, - 6457186560, - 6446204336, - 6446211088, - 6446207456, - 6443742160, - 6446210752, - 6457190896, - 6457192720, - 6446212576, - 6446212960, - 6446212928 + 6457191728, + 6446202944, + 6446203184, + 6446203648, + 6457191776, + 6457188752, + 6446204272, + 6446210576, + 6446205664, + 6443742160, + 6446210240, + 6457193088, + 6457194912, + 6446212944, + 6446213264, + 6446213232 ], "bases": [ { @@ -172039,7 +172065,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404376, + "complete_object_locator": 6468408472, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -172048,7 +172074,7 @@ }, { "type_name": "CNetMessagePB<321,class CCSUsrMsg_Damage,13,1,1>::CProtobufBinding", - "vtable_address": 6465242408, + "vtable_address": 6465246488, "methods": [ 6447637408, 6447637392, @@ -172078,7 +172104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404416, + "complete_object_locator": 6468408512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -172087,7 +172113,7 @@ }, { "type_name": "CNetMessagePB<322,class CCSUsrMsg_RadioText,13,1,1>", - "vtable_address": 6465230136, + "vtable_address": 6465234216, "methods": [ 6447550912, 6447550640, @@ -172155,7 +172181,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404904, + "complete_object_locator": 6468409000, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -172164,25 +172190,25 @@ }, { "type_name": "CNetMessagePB<322,class CCSUsrMsg_RadioText,13,1,1>", - "vtable_address": 6465230184, + "vtable_address": 6465234264, "methods": [ 6447549116, - 6457189536, - 6446226464, - 6446226896, + 6457191728, + 6446226848, 6446227280, - 6457189584, - 6457186560, - 6446227408, - 6446230016, - 6446227984, - 6443742160, - 6446229536, - 6457190896, - 6457192720, - 6446230592, - 6446231008, - 6446230992 + 6446227664, + 6457191776, + 6457188752, + 6446227792, + 6446230400, + 6446228368, + 6443742160, + 6446229920, + 6457193088, + 6457194912, + 6446230976, + 6446231392, + 6446231360 ], "bases": [ { @@ -172244,7 +172270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405096, + "complete_object_locator": 6468409192, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -172253,7 +172279,7 @@ }, { "type_name": "CNetMessagePB<322,class CCSUsrMsg_RadioText,13,1,1>::CProtobufBinding", - "vtable_address": 6465242248, + "vtable_address": 6465246328, "methods": [ 6447633904, 6447633888, @@ -172283,7 +172309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405136, + "complete_object_locator": 6468409232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -172292,7 +172318,7 @@ }, { "type_name": "CNetMessagePB<323,class CCSUsrMsg_HintText,13,1,1>", - "vtable_address": 6465237784, + "vtable_address": 6465241864, "methods": [ 6447563152, 6447562896, @@ -172360,7 +172386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416744, + "complete_object_locator": 6468420840, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -172369,25 +172395,25 @@ }, { "type_name": "CNetMessagePB<323,class CCSUsrMsg_HintText,13,1,1>", - "vtable_address": 6465237832, + "vtable_address": 6465241912, "methods": [ 6447551000, - 6457189536, - 6446248976, - 6446251088, - 6446251152, - 6457189584, - 6457186560, - 6446251824, - 6446252688, - 6446251888, - 6443742160, - 6446252544, - 6457190896, - 6457192720, + 6457191728, + 6446249360, + 6446251456, + 6446251520, + 6457191776, + 6457188752, + 6446252192, + 6446252768, + 6446252272, + 6443742160, + 6446252640, + 6457193088, + 6457194912, 6446253216, - 6446253520, - 6446253504 + 6446253888, + 6446253872 ], "bases": [ { @@ -172449,7 +172475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416936, + "complete_object_locator": 6468421032, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -172458,7 +172484,7 @@ }, { "type_name": "CNetMessagePB<323,class CCSUsrMsg_HintText,13,1,1>::CProtobufBinding", - "vtable_address": 6465239608, + "vtable_address": 6465243688, "methods": [ 6447576272, 6447576256, @@ -172488,7 +172514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416976, + "complete_object_locator": 6468421072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -172497,7 +172523,7 @@ }, { "type_name": "CNetMessagePB<324,class CCSUsrMsg_KeyHintText,13,1,1>", - "vtable_address": 6465237976, + "vtable_address": 6465242056, "methods": [ 6447563520, 6447563264, @@ -172565,7 +172591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468417104, + "complete_object_locator": 6468421200, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -172574,25 +172600,25 @@ }, { "type_name": "CNetMessagePB<324,class CCSUsrMsg_KeyHintText,13,1,1>", - "vtable_address": 6465238024, + "vtable_address": 6465242104, "methods": [ 6447551012, - 6457189536, - 6446265648, - 6446266544, - 6446266608, - 6457189584, - 6457186560, - 6446266688, - 6446267872, - 6446266944, + 6457191728, + 6446266032, + 6446266928, + 6446266976, + 6457191776, + 6457188752, + 6446266992, + 6446268256, + 6446267248, 6443742160, - 6446267616, - 6457190896, - 6457192720, - 6446268672, - 6446269152, - 6446268912 + 6446268000, + 6457193088, + 6457194912, + 6446269056, + 6446269136, + 6446269120 ], "bases": [ { @@ -172654,7 +172680,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468417296, + "complete_object_locator": 6468421392, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -172663,7 +172689,7 @@ }, { "type_name": "CNetMessagePB<324,class CCSUsrMsg_KeyHintText,13,1,1>::CProtobufBinding", - "vtable_address": 6465239528, + "vtable_address": 6465243608, "methods": [ 6447574528, 6447574512, @@ -172693,7 +172719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468417336, + "complete_object_locator": 6468421432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -172702,7 +172728,7 @@ }, { "type_name": "CNetMessagePB<325,class CCSUsrMsg_ProcessSpottedEntityUpdate,13,1,1>", - "vtable_address": 6465229560, + "vtable_address": 6465233640, "methods": [ 6447549616, 6447549360, @@ -172770,7 +172796,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468403824, + "complete_object_locator": 6468407920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -172779,25 +172805,25 @@ }, { "type_name": "CNetMessagePB<325,class CCSUsrMsg_ProcessSpottedEntityUpdate,13,1,1>", - "vtable_address": 6465229608, + "vtable_address": 6465233688, "methods": [ 6447549080, - 6457189536, - 6446332032, - 6446333168, - 6446333344, - 6457189584, - 6457186560, - 6446334064, - 6446335328, - 6446334624, + 6457191728, + 6446332400, + 6446332624, + 6446333024, + 6457191776, + 6457188752, + 6446333248, + 6446335312, + 6446333904, 6443742160, - 6446335152, - 6457190896, - 6457192720, - 6446335360, - 6446335952, - 6446335648 + 6446335136, + 6457193088, + 6457194912, + 6446335728, + 6446336080, + 6446335776 ], "bases": [ { @@ -172859,7 +172885,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404016, + "complete_object_locator": 6468408112, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -172868,7 +172894,7 @@ }, { "type_name": "CNetMessagePB<325,class CCSUsrMsg_ProcessSpottedEntityUpdate,13,1,1>::CProtobufBinding", - "vtable_address": 6465229480, + "vtable_address": 6465233560, "methods": [ 6447639152, 6447639136, @@ -172898,7 +172924,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404056, + "complete_object_locator": 6468408152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -172907,7 +172933,7 @@ }, { "type_name": "CNetMessagePB<327,class CCSUsrMsg_AdjustMoney,13,1,1>", - "vtable_address": 6465229944, + "vtable_address": 6465234024, "methods": [ 6447550480, 6447550208, @@ -172975,7 +173001,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404544, + "complete_object_locator": 6468408640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -172984,25 +173010,25 @@ }, { "type_name": "CNetMessagePB<327,class CCSUsrMsg_AdjustMoney,13,1,1>", - "vtable_address": 6465229992, + "vtable_address": 6465234072, "methods": [ 6447549104, - 6457189536, - 6446511936, - 6446512256, - 6446512304, - 6457189584, - 6457186560, - 6446512448, - 6446513936, - 6446513008, - 6443742160, - 6446513760, - 6457190896, - 6457192720, - 6446513984, - 6446514464, - 6446514384 + 6457191728, + 6446510528, + 6446512384, + 6446512416, + 6457191776, + 6457188752, + 6446512432, + 6446513440, + 6446512736, + 6443742160, + 6446513264, + 6457193088, + 6457194912, + 6446514352, + 6446514768, + 6446514752 ], "bases": [ { @@ -173064,7 +173090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404736, + "complete_object_locator": 6468408832, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -173073,7 +173099,7 @@ }, { "type_name": "CNetMessagePB<327,class CCSUsrMsg_AdjustMoney,13,1,1>::CProtobufBinding", - "vtable_address": 6465242328, + "vtable_address": 6465246408, "methods": [ 6447635664, 6447635648, @@ -173103,7 +173129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468404776, + "complete_object_locator": 6468408872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -173112,7 +173138,7 @@ }, { "type_name": "CNetMessagePB<330,class CCSUsrMsg_KillCam,13,1,1>", - "vtable_address": 6465230712, + "vtable_address": 6465234792, "methods": [ 6447552112, 6447551856, @@ -173180,7 +173206,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405984, + "complete_object_locator": 6468410080, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -173189,25 +173215,25 @@ }, { "type_name": "CNetMessagePB<330,class CCSUsrMsg_KillCam,13,1,1>", - "vtable_address": 6465230760, + "vtable_address": 6465234840, "methods": [ 6447549152, - 6457189536, - 6446556960, - 6446557248, - 6446557296, - 6457189584, - 6457186560, - 6446557312, - 6446558944, - 6446557728, + 6457191728, + 6446557280, + 6446557632, + 6446557680, + 6457191776, + 6457188752, + 6446557696, + 6446559152, + 6446557936, 6443742160, - 6446558544, - 6457190896, - 6457192720, - 6446559968, - 6446560016, - 6446560000 + 6446558752, + 6457193088, + 6457194912, + 6446560352, + 6446560400, + 6446560384 ], "bases": [ { @@ -173269,7 +173295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406176, + "complete_object_locator": 6468410272, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -173278,7 +173304,7 @@ }, { "type_name": "CNetMessagePB<330,class CCSUsrMsg_KillCam,13,1,1>::CProtobufBinding", - "vtable_address": 6465242008, + "vtable_address": 6465246088, "methods": [ 6447628672, 6447628656, @@ -173308,7 +173334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406216, + "complete_object_locator": 6468410312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -173317,7 +173343,7 @@ }, { "type_name": "CNetMessagePB<334,class CCSUsrMsg_MatchEndConditions,13,1,1>", - "vtable_address": 6465236440, + "vtable_address": 6465240520, "methods": [ 6447560576, 6447560320, @@ -173385,7 +173411,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414224, + "complete_object_locator": 6468418320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -173394,25 +173420,25 @@ }, { "type_name": "CNetMessagePB<334,class CCSUsrMsg_MatchEndConditions,13,1,1>", - "vtable_address": 6465236488, + "vtable_address": 6465240568, "methods": [ 6447550172, - 6457189536, - 6446633728, + 6457191728, 6446634112, - 6446634144, - 6457189584, - 6457186560, - 6446634160, - 6446635776, - 6446634384, + 6446634496, + 6446634528, + 6457191776, + 6457188752, + 6446634544, + 6446636160, + 6446634784, 6443742160, - 6446635328, - 6457190896, - 6457192720, - 6446635792, - 6446637104, - 6446637008 + 6446635712, + 6457193088, + 6457194912, + 6446636176, + 6446637488, + 6446637392 ], "bases": [ { @@ -173474,7 +173500,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414416, + "complete_object_locator": 6468418512, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -173483,7 +173509,7 @@ }, { "type_name": "CNetMessagePB<334,class CCSUsrMsg_MatchEndConditions,13,1,1>::CProtobufBinding", - "vtable_address": 6465240168, + "vtable_address": 6465244248, "methods": [ 6447588512, 6447588496, @@ -173513,7 +173539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414456, + "complete_object_locator": 6468418552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -173522,7 +173548,7 @@ }, { "type_name": "CNetMessagePB<335,class CCSUsrMsg_DisconnectToLobby,13,1,1>", - "vtable_address": 6465235288, + "vtable_address": 6465239368, "methods": [ 6447558368, 6447558112, @@ -173590,7 +173616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412104, + "complete_object_locator": 6468416200, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -173599,25 +173625,25 @@ }, { "type_name": "CNetMessagePB<335,class CCSUsrMsg_DisconnectToLobby,13,1,1>", - "vtable_address": 6465235336, + "vtable_address": 6465239416, "methods": [ 6447549728, - 6457189536, - 6445954608, - 6445955056, - 6445955088, - 6457189584, - 6457186560, - 6445955104, - 6445955712, - 6445955152, - 6443742160, + 6457191728, + 6445954992, + 6445955280, + 6445955312, + 6457191776, + 6457188752, + 6445955488, + 6445956096, 6445955536, - 6457190896, - 6457192720, - 6445955728, - 6445955776, - 6445955760 + 6443742160, + 6445955920, + 6457193088, + 6457194912, + 6445956112, + 6445956160, + 6445956144 ], "bases": [ { @@ -173679,7 +173705,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412296, + "complete_object_locator": 6468416392, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -173688,7 +173714,7 @@ }, { "type_name": "CNetMessagePB<335,class CCSUsrMsg_DisconnectToLobby,13,1,1>::CProtobufBinding", - "vtable_address": 6465240648, + "vtable_address": 6465244728, "methods": [ 6447598992, 6447598976, @@ -173718,7 +173744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412336, + "complete_object_locator": 6468416432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -173727,7 +173753,7 @@ }, { "type_name": "CNetMessagePB<336,class CCSUsrMsg_PlayerStatsUpdate,13,1,1>", - "vtable_address": 6465231288, + "vtable_address": 6465235368, "methods": [ 6447553216, 6447552960, @@ -173795,7 +173821,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407064, + "complete_object_locator": 6468411160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -173804,25 +173830,25 @@ }, { "type_name": "CNetMessagePB<336,class CCSUsrMsg_PlayerStatsUpdate,13,1,1>", - "vtable_address": 6465231336, + "vtable_address": 6465235416, "methods": [ 6447549188, - 6457189536, - 6446666416, - 6446667328, - 6446667504, - 6457189584, - 6457186560, - 6446667536, - 6446670144, + 6457191728, + 6446666112, + 6446667696, + 6446667872, + 6457191776, + 6457188752, 6446667888, + 6446670448, + 6446668256, 6443742160, - 6446669216, - 6457190896, - 6457192720, - 6446673472, - 6446676768, - 6446676752 + 6446669520, + 6457193088, + 6457194912, + 6446672320, + 6446676976, + 6446676960 ], "bases": [ { @@ -173884,7 +173910,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407256, + "complete_object_locator": 6468411352, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -173893,7 +173919,7 @@ }, { "type_name": "CNetMessagePB<336,class CCSUsrMsg_PlayerStatsUpdate,13,1,1>::CProtobufBinding", - "vtable_address": 6465241768, + "vtable_address": 6465245848, "methods": [ 6447623424, 6447623408, @@ -173923,7 +173949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407296, + "complete_object_locator": 6468411392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -173932,7 +173958,7 @@ }, { "type_name": "CNetMessagePB<345,class CCSUsrMsg_CallVoteFailed,13,1,1>", - "vtable_address": 6465232984, + "vtable_address": 6465237064, "methods": [ 6447555056, 6447554800, @@ -174000,7 +174026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408864, + "complete_object_locator": 6468412960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -174009,25 +174035,25 @@ }, { "type_name": "CNetMessagePB<345,class CCSUsrMsg_CallVoteFailed,13,1,1>", - "vtable_address": 6465233032, + "vtable_address": 6465237112, "methods": [ 6447549248, - 6457189536, - 6445903552, - 6445903888, - 6445903920, - 6457189584, - 6457186560, + 6457191728, 6445903936, - 6445905744, - 6445904560, - 6443742160, - 6445905424, - 6457190896, - 6457192720, - 6445906816, - 6445910288, - 6445910272 + 6445904272, + 6445904304, + 6457191776, + 6457188752, + 6445904320, + 6445906128, + 6445904928, + 6443742160, + 6445905792, + 6457193088, + 6457194912, + 6445907152, + 6445910272, + 6445910256 ], "bases": [ { @@ -174089,7 +174115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409056, + "complete_object_locator": 6468413152, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -174098,7 +174124,7 @@ }, { "type_name": "CNetMessagePB<345,class CCSUsrMsg_CallVoteFailed,13,1,1>::CProtobufBinding", - "vtable_address": 6465241368, + "vtable_address": 6465245448, "methods": [ 6447614704, 6447614688, @@ -174128,7 +174154,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409096, + "complete_object_locator": 6468413192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -174137,7 +174163,7 @@ }, { "type_name": "CNetMessagePB<346,class CCSUsrMsg_VoteStart,13,1,1>", - "vtable_address": 6465233392, + "vtable_address": 6465237472, "methods": [ 6447555424, 6447555168, @@ -174205,7 +174231,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409224, + "complete_object_locator": 6468413320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -174214,25 +174240,25 @@ }, { "type_name": "CNetMessagePB<346,class CCSUsrMsg_VoteStart,13,1,1>", - "vtable_address": 6465233440, + "vtable_address": 6465237520, "methods": [ 6447549260, - 6457189536, - 6445919696, - 6445921312, - 6445921488, - 6457189584, - 6457186560, - 6445921904, - 6445925840, - 6445923264, + 6457191728, + 6445920000, + 6445921536, + 6445921712, + 6457191776, + 6457188752, + 6445922128, + 6445926224, + 6445923648, 6443742160, - 6445925200, - 6457190896, - 6457192720, - 6445926096, - 6445926768, - 6445926720 + 6445925584, + 6457193088, + 6457194912, + 6445926464, + 6445926992, + 6445926960 ], "bases": [ { @@ -174294,7 +174320,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409416, + "complete_object_locator": 6468413512, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -174303,7 +174329,7 @@ }, { "type_name": "CNetMessagePB<346,class CCSUsrMsg_VoteStart,13,1,1>::CProtobufBinding", - "vtable_address": 6465241288, + "vtable_address": 6465245368, "methods": [ 6447612944, 6447612928, @@ -174333,7 +174359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409456, + "complete_object_locator": 6468413552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -174342,7 +174368,7 @@ }, { "type_name": "CNetMessagePB<347,class CCSUsrMsg_VotePass,13,1,1>", - "vtable_address": 6465233760, + "vtable_address": 6465237840, "methods": [ 6447555792, 6447555536, @@ -174410,7 +174436,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409584, + "complete_object_locator": 6468413680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -174419,25 +174445,25 @@ }, { "type_name": "CNetMessagePB<347,class CCSUsrMsg_VotePass,13,1,1>", - "vtable_address": 6465233808, + "vtable_address": 6465237888, "methods": [ 6447549272, - 6457189536, - 6445948608, - 6445948912, - 6445949040, - 6457189584, - 6457186560, - 6445949056, - 6445950560, - 6445949248, + 6457191728, + 6445948992, + 6445949296, + 6445949424, + 6457191776, + 6457188752, + 6445949440, + 6445950944, + 6445949632, 6443742160, - 6445950016, - 6457190896, - 6457192720, - 6445951424, - 6445952112, - 6445952080 + 6445950400, + 6457193088, + 6457194912, + 6445951808, + 6445952496, + 6445952464 ], "bases": [ { @@ -174499,7 +174525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409776, + "complete_object_locator": 6468413872, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -174508,7 +174534,7 @@ }, { "type_name": "CNetMessagePB<347,class CCSUsrMsg_VotePass,13,1,1>::CProtobufBinding", - "vtable_address": 6465241208, + "vtable_address": 6465245288, "methods": [ 6447611200, 6447611184, @@ -174538,7 +174564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409816, + "complete_object_locator": 6468413912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -174547,7 +174573,7 @@ }, { "type_name": "CNetMessagePB<348,class CCSUsrMsg_VoteFailed,13,1,1>", - "vtable_address": 6465234136, + "vtable_address": 6465238216, "methods": [ 6447556160, 6447555904, @@ -174615,7 +174641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468409944, + "complete_object_locator": 6468414040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -174624,25 +174650,25 @@ }, { "type_name": "CNetMessagePB<348,class CCSUsrMsg_VoteFailed,13,1,1>", - "vtable_address": 6465234184, + "vtable_address": 6465238264, "methods": [ 6447549284, - 6457189536, - 6445979984, - 6445980320, - 6445980352, - 6457189584, - 6457186560, + 6457191728, 6445980368, - 6445981360, - 6445980464, - 6443742160, - 6445981040, - 6457190896, - 6457192720, - 6445981376, - 6445983504, - 6445983040 + 6445980496, + 6445980592, + 6457191776, + 6457188752, + 6445980608, + 6445981744, + 6445980848, + 6443742160, + 6445981424, + 6457193088, + 6457194912, + 6445981760, + 6445983888, + 6445983424 ], "bases": [ { @@ -174704,7 +174730,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410136, + "complete_object_locator": 6468414232, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -174713,7 +174739,7 @@ }, { "type_name": "CNetMessagePB<348,class CCSUsrMsg_VoteFailed,13,1,1>::CProtobufBinding", - "vtable_address": 6465241128, + "vtable_address": 6465245208, "methods": [ 6447609456, 6447609440, @@ -174743,7 +174769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410176, + "complete_object_locator": 6468414272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -174752,7 +174778,7 @@ }, { "type_name": "CNetMessagePB<349,class CCSUsrMsg_VoteSetup,13,1,1>", - "vtable_address": 6465234328, + "vtable_address": 6465238408, "methods": [ 6447556528, 6447556272, @@ -174820,7 +174846,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410304, + "complete_object_locator": 6468414400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -174829,25 +174855,25 @@ }, { "type_name": "CNetMessagePB<349,class CCSUsrMsg_VoteSetup,13,1,1>", - "vtable_address": 6465234376, + "vtable_address": 6465238456, "methods": [ 6447549296, - 6457189536, - 6445993584, - 6445994864, - 6445994912, - 6457189584, - 6457186560, - 6445994928, - 6445995760, - 6445995120, - 6443742160, + 6457191728, + 6445993952, + 6445995024, + 6445995088, + 6457191776, + 6457188752, + 6445995168, + 6445996144, 6445995504, - 6457190896, - 6457192720, - 6445996512, - 6445999056, - 6445999040 + 6443742160, + 6445995888, + 6457193088, + 6457194912, + 6445996896, + 6445999440, + 6445999424 ], "bases": [ { @@ -174909,7 +174935,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410496, + "complete_object_locator": 6468414592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -174918,7 +174944,7 @@ }, { "type_name": "CNetMessagePB<349,class CCSUsrMsg_VoteSetup,13,1,1>::CProtobufBinding", - "vtable_address": 6465241048, + "vtable_address": 6465245128, "methods": [ 6447607712, 6447607696, @@ -174948,7 +174974,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468410536, + "complete_object_locator": 6468414632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -174957,7 +174983,7 @@ }, { "type_name": "CNetMessagePB<350,class CCSUsrMsg_ServerRankRevealAll,13,1,1>", - "vtable_address": 6465231480, + "vtable_address": 6465235560, "methods": [ 6447553584, 6447553328, @@ -175025,7 +175051,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407424, + "complete_object_locator": 6468411520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -175034,25 +175060,25 @@ }, { "type_name": "CNetMessagePB<350,class CCSUsrMsg_ServerRankRevealAll,13,1,1>", - "vtable_address": 6465231568, + "vtable_address": 6465235648, "methods": [ 6447549200, - 6457189536, - 6445995488, - 6445996448, - 6445997552, - 6457189584, - 6457186560, - 6445997568, - 6445999024, - 6445998320, - 6443742160, - 6445998800, - 6457190896, - 6457192720, - 6445999296, - 6445999424, - 6445999408 + 6457191728, + 6445995872, + 6445996832, + 6445997792, + 6457191776, + 6457188752, + 6445997808, + 6445999408, + 6445998560, + 6443742160, + 6445999184, + 6457193088, + 6457194912, + 6445999680, + 6445999792, + 6445999776 ], "bases": [ { @@ -175114,7 +175140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407616, + "complete_object_locator": 6468411712, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -175123,7 +175149,7 @@ }, { "type_name": "CNetMessagePB<350,class CCSUsrMsg_ServerRankRevealAll,13,1,1>::CProtobufBinding", - "vtable_address": 6465241688, + "vtable_address": 6465245768, "methods": [ 6447621680, 6447621664, @@ -175153,7 +175179,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407656, + "complete_object_locator": 6468411752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -175162,7 +175188,7 @@ }, { "type_name": "CNetMessagePB<351,class CCSUsrMsg_SendLastKillerDamageToClient,13,1,1>", - "vtable_address": 6465230520, + "vtable_address": 6465234600, "methods": [ 6447551744, 6447551472, @@ -175230,7 +175256,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405624, + "complete_object_locator": 6468409720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -175239,25 +175265,25 @@ }, { "type_name": "CNetMessagePB<351,class CCSUsrMsg_SendLastKillerDamageToClient,13,1,1>", - "vtable_address": 6465230568, + "vtable_address": 6465234648, "methods": [ 6447549140, - 6457189536, - 6446011488, - 6446012800, - 6446013216, - 6457189584, - 6457186560, - 6446013824, - 6446016960, - 6446014688, + 6457191728, + 6446011152, + 6446013168, + 6446013584, + 6457191776, + 6457188752, + 6446014208, + 6446017264, + 6446015072, 6443742160, - 6446016256, - 6457190896, - 6457192720, - 6446020096, - 6446020304, - 6446020288 + 6446016560, + 6457193088, + 6457194912, + 6446020480, + 6446020688, + 6446020672 ], "bases": [ { @@ -175319,7 +175345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405816, + "complete_object_locator": 6468409912, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -175328,7 +175354,7 @@ }, { "type_name": "CNetMessagePB<351,class CCSUsrMsg_SendLastKillerDamageToClient,13,1,1>::CProtobufBinding", - "vtable_address": 6465242088, + "vtable_address": 6465246168, "methods": [ 6447630416, 6447630400, @@ -175358,7 +175384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468405856, + "complete_object_locator": 6468409952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -175367,7 +175393,7 @@ }, { "type_name": "CNetMessagePB<352,class CCSUsrMsg_ServerRankUpdate,13,1,1>", - "vtable_address": 6465234904, + "vtable_address": 6465238984, "methods": [ 6447557632, 6447557376, @@ -175435,7 +175461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411384, + "complete_object_locator": 6468415480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -175444,25 +175470,25 @@ }, { "type_name": "CNetMessagePB<352,class CCSUsrMsg_ServerRankUpdate,13,1,1>", - "vtable_address": 6465234952, + "vtable_address": 6465239032, "methods": [ 6447549704, - 6457189536, - 6446067376, + 6457191728, 6446067760, - 6446067936, - 6457189584, - 6457186560, - 6446067952, - 6446068928, - 6446068352, + 6446068144, + 6446068320, + 6457191776, + 6457188752, + 6446068336, + 6446069296, + 6446068720, 6443742160, - 6446068784, - 6457190896, - 6457192720, - 6446069568, - 6446070464, - 6446070416 + 6446069152, + 6457193088, + 6457194912, + 6446069600, + 6446070784, + 6446070704 ], "bases": [ { @@ -175524,7 +175550,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411576, + "complete_object_locator": 6468415672, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -175533,7 +175559,7 @@ }, { "type_name": "CNetMessagePB<352,class CCSUsrMsg_ServerRankUpdate,13,1,1>::CProtobufBinding", - "vtable_address": 6465240808, + "vtable_address": 6465244888, "methods": [ 6447602480, 6447602464, @@ -175563,7 +175589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411616, + "complete_object_locator": 6468415712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -175572,7 +175598,7 @@ }, { "type_name": "CNetMessagePB<36,class CCLCMsg_HltvReplay,17,1,0>", - "vtable_address": 6464861808, + "vtable_address": 6464865888, "methods": [ 6445598800, 6445599280, @@ -175640,7 +175666,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468290784, + "complete_object_locator": 6468294880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -175649,25 +175675,25 @@ }, { "type_name": "CNetMessagePB<36,class CCLCMsg_HltvReplay,17,1,0>", - "vtable_address": 6464861856, + "vtable_address": 6464865936, "methods": [ 6445598772, - 6457189536, + 6457191728, 6445605664, - 6446881472, - 6446881904, - 6457189584, - 6457186560, - 6446882080, + 6446881696, + 6446882128, + 6457191776, + 6457188752, + 6446882304, 6445603328, - 6446882816, + 6446883040, 6443742160, - 6446883904, - 6457190896, - 6457192720, - 6446884784, - 6446886384, - 6446886368 + 6446884128, + 6457193088, + 6457194912, + 6446885008, + 6446886608, + 6446886592 ], "bases": [ { @@ -175729,7 +175755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291072, + "complete_object_locator": 6468295168, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -175738,7 +175764,7 @@ }, { "type_name": "CNetMessagePB<36,class CCLCMsg_HltvReplay,17,1,0>::CProtobufBinding", - "vtable_address": 6464862208, + "vtable_address": 6464866288, "methods": [ 6445604240, 6445605328, @@ -175768,7 +175794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291112, + "complete_object_locator": 6468295208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -175777,7 +175803,7 @@ }, { "type_name": "CNetMessagePB<361,class CCSUsrMsg_SendPlayerItemDrops,13,1,1>", - "vtable_address": 6465231880, + "vtable_address": 6465235960, "methods": [ 6447553952, 6447553696, @@ -175845,7 +175871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407784, + "complete_object_locator": 6468411880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -175854,25 +175880,25 @@ }, { "type_name": "CNetMessagePB<361,class CCSUsrMsg_SendPlayerItemDrops,13,1,1>", - "vtable_address": 6465231928, + "vtable_address": 6465236008, "methods": [ 6447549212, - 6457189536, - 6446368928, - 6446370400, - 6446370544, - 6457189584, - 6457186560, - 6446370560, - 6446373248, - 6446371424, - 6443742160, - 6446373104, - 6457190896, - 6457192720, - 6446374752, - 6446375488, - 6446375296 + 6457191728, + 6446368880, + 6446370784, + 6446370912, + 6457191776, + 6457188752, + 6446370928, + 6446373632, + 6446371792, + 6443742160, + 6446373488, + 6457193088, + 6457194912, + 6446375056, + 6446375424, + 6446375392 ], "bases": [ { @@ -175934,7 +175960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468407976, + "complete_object_locator": 6468412072, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -175943,7 +175969,7 @@ }, { "type_name": "CNetMessagePB<361,class CCSUsrMsg_SendPlayerItemDrops,13,1,1>::CProtobufBinding", - "vtable_address": 6465241608, + "vtable_address": 6465245688, "methods": [ 6447619936, 6447619920, @@ -175973,7 +175999,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408016, + "complete_object_locator": 6468412112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -175982,7 +176008,7 @@ }, { "type_name": "CNetMessagePB<362,class CCSUsrMsg_RoundBackupFilenames,13,1,1>", - "vtable_address": 6465232616, + "vtable_address": 6465236696, "methods": [ 6447554688, 6447554432, @@ -176050,7 +176076,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408504, + "complete_object_locator": 6468412600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -176059,25 +176085,25 @@ }, { "type_name": "CNetMessagePB<362,class CCSUsrMsg_RoundBackupFilenames,13,1,1>", - "vtable_address": 6465232664, + "vtable_address": 6465236744, "methods": [ 6447549236, - 6457189536, - 6446244448, - 6446247184, - 6446247296, - 6457189584, - 6457186560, - 6446247536, - 6446248752, - 6446247760, + 6457191728, + 6446244832, + 6446247568, + 6446247680, + 6457191776, + 6457188752, + 6446247920, + 6446249136, + 6446248144, 6443742160, - 6446248368, - 6457190896, - 6457192720, - 6446248848, - 6446248992, - 6446248960 + 6446248752, + 6457193088, + 6457194912, + 6446249232, + 6446249376, + 6446249344 ], "bases": [ { @@ -176139,7 +176165,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408696, + "complete_object_locator": 6468412792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -176148,7 +176174,7 @@ }, { "type_name": "CNetMessagePB<362,class CCSUsrMsg_RoundBackupFilenames,13,1,1>::CProtobufBinding", - "vtable_address": 6465241448, + "vtable_address": 6465245528, "methods": [ 6447616448, 6447616432, @@ -176178,7 +176204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408736, + "complete_object_locator": 6468412832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -176187,7 +176213,7 @@ }, { "type_name": "CNetMessagePB<363,class CCSUsrMsg_SendPlayerItemFound,13,1,1>", - "vtable_address": 6465232256, + "vtable_address": 6465236336, "methods": [ 6447554320, 6447554064, @@ -176255,7 +176281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408144, + "complete_object_locator": 6468412240, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -176264,25 +176290,25 @@ }, { "type_name": "CNetMessagePB<363,class CCSUsrMsg_SendPlayerItemFound,13,1,1>", - "vtable_address": 6465232304, + "vtable_address": 6465236384, "methods": [ 6447549224, - 6457189536, - 6446405648, - 6446405856, - 6446405936, - 6457189584, - 6457186560, - 6446405952, - 6446406896, - 6446406096, - 6443742160, - 6446406656, - 6457190896, - 6457192720, - 6446407664, - 6446408528, - 6446408512 + 6457191728, + 6446406032, + 6446406240, + 6446406320, + 6457191776, + 6457188752, + 6446406336, + 6446407280, + 6446406480, + 6443742160, + 6446407040, + 6457193088, + 6457194912, + 6446408048, + 6446408768, + 6446408752 ], "bases": [ { @@ -176344,7 +176370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408336, + "complete_object_locator": 6468412432, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -176353,7 +176379,7 @@ }, { "type_name": "CNetMessagePB<363,class CCSUsrMsg_SendPlayerItemFound,13,1,1>::CProtobufBinding", - "vtable_address": 6465241528, + "vtable_address": 6465245608, "methods": [ 6447618192, 6447618176, @@ -176383,7 +176409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468408376, + "complete_object_locator": 6468412472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -176392,7 +176418,7 @@ }, { "type_name": "CNetMessagePB<364,class CCSUsrMsg_ReportHit,13,1,1>", - "vtable_address": 6465231096, + "vtable_address": 6465235176, "methods": [ 6447552848, 6447552592, @@ -176460,7 +176486,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406704, + "complete_object_locator": 6468410800, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -176469,25 +176495,25 @@ }, { "type_name": "CNetMessagePB<364,class CCSUsrMsg_ReportHit,13,1,1>", - "vtable_address": 6465231144, + "vtable_address": 6465235224, "methods": [ 6447549176, - 6457189536, - 6446534400, - 6446534960, - 6446534992, - 6457189584, - 6457186560, - 6446535008, - 6446536176, - 6446535088, + 6457191728, + 6446534592, + 6446535152, + 6446535184, + 6457191776, + 6457188752, + 6446535200, + 6446536560, + 6446535632, 6443742160, - 6446535872, - 6457190896, - 6457192720, - 6446536192, - 6446536240, - 6446536224 + 6446536256, + 6457193088, + 6457194912, + 6446536576, + 6446536624, + 6446536608 ], "bases": [ { @@ -176549,7 +176575,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406896, + "complete_object_locator": 6468410992, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -176558,7 +176584,7 @@ }, { "type_name": "CNetMessagePB<364,class CCSUsrMsg_ReportHit,13,1,1>::CProtobufBinding", - "vtable_address": 6465241848, + "vtable_address": 6465245928, "methods": [ 6447625184, 6447625168, @@ -176588,7 +176614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406936, + "complete_object_locator": 6468411032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -176597,7 +176623,7 @@ }, { "type_name": "CNetMessagePB<365,class CCSUsrMsg_XpUpdate,13,1,1>", - "vtable_address": 6465235096, + "vtable_address": 6465239176, "methods": [ 6447558000, 6447557744, @@ -176665,7 +176691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411744, + "complete_object_locator": 6468415840, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -176674,25 +176700,25 @@ }, { "type_name": "CNetMessagePB<365,class CCSUsrMsg_XpUpdate,13,1,1>", - "vtable_address": 6465235144, + "vtable_address": 6465239224, "methods": [ 6447549716, - 6457189536, - 6446100848, - 6446101920, - 6446102160, - 6457189584, - 6457186560, - 6446102176, - 6446102960, - 6446102272, + 6457191728, + 6446101136, + 6446101856, + 6446102416, + 6457191776, + 6457188752, + 6446102432, + 6446103328, + 6446102640, 6443742160, - 6446102848, - 6457190896, - 6457192720, - 6446103728, - 6446105296, - 6446105280 + 6446103216, + 6457193088, + 6457194912, + 6446103792, + 6446105680, + 6446105648 ], "bases": [ { @@ -176754,7 +176780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411936, + "complete_object_locator": 6468416032, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -176763,7 +176789,7 @@ }, { "type_name": "CNetMessagePB<365,class CCSUsrMsg_XpUpdate,13,1,1>::CProtobufBinding", - "vtable_address": 6465240728, + "vtable_address": 6465244808, "methods": [ 6447600736, 6447600720, @@ -176793,7 +176819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411976, + "complete_object_locator": 6468416072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -176802,7 +176828,7 @@ }, { "type_name": "CNetMessagePB<366,class CCSUsrMsg_QuestProgress,13,1,1>", - "vtable_address": 6465230904, + "vtable_address": 6465234984, "methods": [ 6447552480, 6447552224, @@ -176870,7 +176896,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406344, + "complete_object_locator": 6468410440, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -176879,25 +176905,25 @@ }, { "type_name": "CNetMessagePB<366,class CCSUsrMsg_QuestProgress,13,1,1>", - "vtable_address": 6465230952, + "vtable_address": 6465235032, "methods": [ 6447549164, - 6457189536, - 6445817056, - 6445819392, - 6445819440, - 6457189584, - 6457186560, - 6445820560, - 6445822288, - 6445820912, - 6443742160, - 6445821792, - 6457190896, - 6457192720, - 6445822448, - 6445822560, - 6445822544 + 6457191728, + 6445817360, + 6445819776, + 6445819824, + 6457191776, + 6457188752, + 6445820944, + 6445822528, + 6445821152, + 6443742160, + 6445822032, + 6457193088, + 6457194912, + 6445822688, + 6445822944, + 6445822928 ], "bases": [ { @@ -176959,7 +176985,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406536, + "complete_object_locator": 6468410632, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -176968,7 +176994,7 @@ }, { "type_name": "CNetMessagePB<366,class CCSUsrMsg_QuestProgress,13,1,1>::CProtobufBinding", - "vtable_address": 6465241928, + "vtable_address": 6465246008, "methods": [ 6447626928, 6447626912, @@ -176998,7 +177024,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468406576, + "complete_object_locator": 6468410672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -177007,7 +177033,7 @@ }, { "type_name": "CNetMessagePB<367,class CCSUsrMsg_ScoreLeaderboardData,13,1,1>", - "vtable_address": 6465236248, + "vtable_address": 6465240328, "methods": [ 6447560208, 6447559952, @@ -177075,7 +177101,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413864, + "complete_object_locator": 6468417960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -177084,25 +177110,25 @@ }, { "type_name": "CNetMessagePB<367,class CCSUsrMsg_ScoreLeaderboardData,13,1,1>", - "vtable_address": 6465236296, + "vtable_address": 6465240376, "methods": [ 6447550160, - 6457189536, - 6445830448, - 6445830608, - 6445830672, - 6457189584, - 6457186560, - 6445830688, - 6445831584, - 6445831088, - 6443742160, - 6445831472, - 6457190896, - 6457192720, - 6445831760, - 6445832656, - 6445832240 + 6457191728, + 6445830832, + 6445830992, + 6445831056, + 6457191776, + 6457188752, + 6445831232, + 6445831808, + 6445831312, + 6443742160, + 6445831696, + 6457193088, + 6457194912, + 6445832144, + 6445833040, + 6445832624 ], "bases": [ { @@ -177164,7 +177190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414056, + "complete_object_locator": 6468418152, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -177173,7 +177199,7 @@ }, { "type_name": "CNetMessagePB<367,class CCSUsrMsg_ScoreLeaderboardData,13,1,1>::CProtobufBinding", - "vtable_address": 6465240248, + "vtable_address": 6465244328, "methods": [ 6447590256, 6447590240, @@ -177203,7 +177229,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414096, + "complete_object_locator": 6468418192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -177212,7 +177238,7 @@ }, { "type_name": "CNetMessagePB<368,class CCSUsrMsg_PlayerDecalDigitalSignature,13,1,1>", - "vtable_address": 6465235672, + "vtable_address": 6465239752, "methods": [ 6447559104, 6447558848, @@ -177280,7 +177306,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412784, + "complete_object_locator": 6468416880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -177289,25 +177315,25 @@ }, { "type_name": "CNetMessagePB<368,class CCSUsrMsg_PlayerDecalDigitalSignature,13,1,1>", - "vtable_address": 6465235720, + "vtable_address": 6465239800, "methods": [ 6447549752, - 6457189536, - 6445847696, - 6445850448, - 6445850656, - 6457189584, - 6457186560, + 6457191728, + 6445848080, 6445850672, - 6445851424, - 6445850752, + 6445851040, + 6457191776, + 6457188752, + 6445851056, + 6445851808, + 6445851136, 6443742160, - 6445851312, - 6457190896, - 6457192720, - 6445851632, - 6445853872, - 6445853152 + 6445851696, + 6457193088, + 6457194912, + 6445851872, + 6445854256, + 6445853536 ], "bases": [ { @@ -177369,7 +177395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412976, + "complete_object_locator": 6468417072, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -177378,7 +177404,7 @@ }, { "type_name": "CNetMessagePB<368,class CCSUsrMsg_PlayerDecalDigitalSignature,13,1,1>::CProtobufBinding", - "vtable_address": 6465240488, + "vtable_address": 6465244568, "methods": [ 6447595504, 6447595488, @@ -177408,7 +177434,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413016, + "complete_object_locator": 6468417112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -177417,7 +177443,7 @@ }, { "type_name": "CNetMessagePB<369,class CCSUsrMsg_WeaponSound,13,1,1>", - "vtable_address": 6465236056, + "vtable_address": 6465240136, "methods": [ 6447559840, 6447559584, @@ -177485,7 +177511,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413504, + "complete_object_locator": 6468417600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -177494,25 +177520,25 @@ }, { "type_name": "CNetMessagePB<369,class CCSUsrMsg_WeaponSound,13,1,1>", - "vtable_address": 6465236104, + "vtable_address": 6465240184, "methods": [ 6447550148, - 6457189536, - 6446442736, - 6446442976, - 6446443216, - 6457189584, - 6457186560, - 6446443232, - 6446445104, - 6446443568, + 6457191728, + 6446443120, + 6446443344, + 6446443424, + 6457191776, + 6457188752, + 6446443440, + 6446445152, + 6446443648, 6443742160, - 6446444624, - 6457190896, - 6457192720, - 6446446752, - 6446448240, - 6446448224 + 6446444672, + 6457193088, + 6457194912, + 6446446720, + 6446448608, + 6446448592 ], "bases": [ { @@ -177574,7 +177600,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413696, + "complete_object_locator": 6468417792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -177583,7 +177609,7 @@ }, { "type_name": "CNetMessagePB<369,class CCSUsrMsg_WeaponSound,13,1,1>::CProtobufBinding", - "vtable_address": 6465240328, + "vtable_address": 6465244408, "methods": [ 6447592000, 6447591984, @@ -177613,7 +177639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413736, + "complete_object_locator": 6468417832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -177622,7 +177648,7 @@ }, { "type_name": "CNetMessagePB<370,class CCSUsrMsg_UpdateScreenHealthBar,13,1,1>", - "vtable_address": 6465236824, + "vtable_address": 6465240904, "methods": [ 6447561312, 6447561056, @@ -177690,7 +177716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414944, + "complete_object_locator": 6468419040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -177699,25 +177725,25 @@ }, { "type_name": "CNetMessagePB<370,class CCSUsrMsg_UpdateScreenHealthBar,13,1,1>", - "vtable_address": 6465236872, + "vtable_address": 6465240952, "methods": [ 6447550568, - 6457189536, - 6446467904, - 6446468960, - 6446469024, - 6457189584, - 6457186560, - 6446469040, - 6446472272, - 6446469904, + 6457191728, + 6446468288, + 6446469344, + 6446469408, + 6457191776, + 6457188752, + 6446469424, + 6446472656, + 6446470288, 6443742160, - 6446471136, - 6457190896, - 6457192720, - 6446474576, - 6446474880, - 6446474864 + 6446471520, + 6457193088, + 6457194912, + 6446474960, + 6446475264, + 6446475248 ], "bases": [ { @@ -177779,7 +177805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415136, + "complete_object_locator": 6468419232, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -177788,7 +177814,7 @@ }, { "type_name": "CNetMessagePB<370,class CCSUsrMsg_UpdateScreenHealthBar,13,1,1>::CProtobufBinding", - "vtable_address": 6465240008, + "vtable_address": 6465244088, "methods": [ 6447585008, 6447584992, @@ -177818,7 +177844,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415176, + "complete_object_locator": 6468419272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -177827,7 +177853,7 @@ }, { "type_name": "CNetMessagePB<371,class CCSUsrMsg_EntityOutlineHighlight,13,1,1>", - "vtable_address": 6465235864, + "vtable_address": 6465239944, "methods": [ 6447559472, 6447559216, @@ -177895,7 +177921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413144, + "complete_object_locator": 6468417240, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -177904,25 +177930,25 @@ }, { "type_name": "CNetMessagePB<371,class CCSUsrMsg_EntityOutlineHighlight,13,1,1>", - "vtable_address": 6465235912, + "vtable_address": 6465239992, "methods": [ 6447550136, - 6457189536, - 6446495152, - 6446495440, - 6446495488, - 6457189584, - 6457186560, - 6446495504, - 6446496752, - 6446495728, + 6457191728, + 6446494736, + 6446495808, + 6446495856, + 6457191776, + 6457188752, + 6446495872, + 6446497056, + 6446496112, 6443742160, - 6446496528, - 6457190896, - 6457192720, - 6446498224, - 6446498448, - 6446498416 + 6446496832, + 6457193088, + 6457194912, + 6446498592, + 6446498672, + 6446498656 ], "bases": [ { @@ -177984,7 +178010,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413336, + "complete_object_locator": 6468417432, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -177993,7 +178019,7 @@ }, { "type_name": "CNetMessagePB<371,class CCSUsrMsg_EntityOutlineHighlight,13,1,1>::CProtobufBinding", - "vtable_address": 6465240408, + "vtable_address": 6465244488, "methods": [ 6447593760, 6447593744, @@ -178023,7 +178049,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468413376, + "complete_object_locator": 6468417472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -178032,7 +178058,7 @@ }, { "type_name": "CNetMessagePB<372,class CCSUsrMsg_SSUI,13,1,1>", - "vtable_address": 6465237016, + "vtable_address": 6465241096, "methods": [ 6447561680, 6447561424, @@ -178100,7 +178126,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415304, + "complete_object_locator": 6468419400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -178109,25 +178135,25 @@ }, { "type_name": "CNetMessagePB<372,class CCSUsrMsg_SSUI,13,1,1>", - "vtable_address": 6465237064, + "vtable_address": 6465241144, "methods": [ 6447550580, - 6457189536, - 6446266432, - 6446267312, - 6446267536, - 6457189584, - 6457186560, - 6446267552, - 6446268656, - 6446267888, + 6457191728, + 6446266816, + 6446267632, + 6446267920, + 6457191776, + 6457188752, + 6446267936, + 6446269040, + 6446268272, 6443742160, - 6446268384, - 6457190896, - 6457192720, - 6446268704, - 6446270576, - 6446269936 + 6446268768, + 6457193088, + 6457194912, + 6446269088, + 6446270256, + 6446269600 ], "bases": [ { @@ -178189,7 +178215,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415496, + "complete_object_locator": 6468419592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -178198,7 +178224,7 @@ }, { "type_name": "CNetMessagePB<372,class CCSUsrMsg_SSUI,13,1,1>::CProtobufBinding", - "vtable_address": 6465239928, + "vtable_address": 6465244008, "methods": [ 6447583264, 6447583248, @@ -178228,7 +178254,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415536, + "complete_object_locator": 6468419632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -178237,7 +178263,7 @@ }, { "type_name": "CNetMessagePB<373,class CCSUsrMsg_SurvivalStats,13,1,1>", - "vtable_address": 6465234712, + "vtable_address": 6465238792, "methods": [ 6447557264, 6447557008, @@ -178305,7 +178331,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411024, + "complete_object_locator": 6468415120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -178314,25 +178340,25 @@ }, { "type_name": "CNetMessagePB<373,class CCSUsrMsg_SurvivalStats,13,1,1>", - "vtable_address": 6465234760, + "vtable_address": 6465238840, "methods": [ 6447549320, - 6457189536, - 6446369616, - 6446371840, - 6446372192, - 6457189584, - 6457186560, - 6446372208, - 6446374736, - 6446373360, + 6457191728, + 6446369808, + 6446372224, + 6446372576, + 6457191776, + 6457188752, + 6446372592, + 6446375040, + 6446373664, 6443742160, - 6446374224, - 6457190896, - 6457192720, - 6446374864, - 6446377968, - 6446377472 + 6446374528, + 6457193088, + 6457194912, + 6446375232, + 6446376960, + 6446376672 ], "bases": [ { @@ -178394,7 +178420,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411216, + "complete_object_locator": 6468415312, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -178403,7 +178429,7 @@ }, { "type_name": "CNetMessagePB<373,class CCSUsrMsg_SurvivalStats,13,1,1>::CProtobufBinding", - "vtable_address": 6465240888, + "vtable_address": 6465244968, "methods": [ 6447604224, 6447604208, @@ -178433,7 +178459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468411256, + "complete_object_locator": 6468415352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -178442,7 +178468,7 @@ }, { "type_name": "CNetMessagePB<374,class CCSUsrMsg_DisconnectToLobby,13,1,1>", - "vtable_address": 6465235480, + "vtable_address": 6465239560, "methods": [ 6447558736, 6447558480, @@ -178510,7 +178536,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412464, + "complete_object_locator": 6468416560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -178519,25 +178545,25 @@ }, { "type_name": "CNetMessagePB<374,class CCSUsrMsg_DisconnectToLobby,13,1,1>", - "vtable_address": 6465235528, + "vtable_address": 6465239608, "methods": [ 6447549740, - 6457189536, - 6445954608, - 6445955056, - 6445955088, - 6457189584, - 6457186560, - 6445955104, - 6445955712, - 6445955152, - 6443742160, + 6457191728, + 6445954992, + 6445955280, + 6445955312, + 6457191776, + 6457188752, + 6445955488, + 6445956096, 6445955536, - 6457190896, - 6457192720, - 6445955728, - 6445955776, - 6445955760 + 6443742160, + 6445955920, + 6457193088, + 6457194912, + 6445956112, + 6445956160, + 6445956144 ], "bases": [ { @@ -178599,7 +178625,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412616, + "complete_object_locator": 6468416712, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -178608,7 +178634,7 @@ }, { "type_name": "CNetMessagePB<374,class CCSUsrMsg_DisconnectToLobby,13,1,1>::CProtobufBinding", - "vtable_address": 6465240568, + "vtable_address": 6465244648, "methods": [ 6447597248, 6447597232, @@ -178638,7 +178664,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468412656, + "complete_object_locator": 6468416752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -178647,7 +178673,7 @@ }, { "type_name": "CNetMessagePB<375,class CCSUsrMsg_EndOfMatchAllPlayersData,13,1,1>", - "vtable_address": 6465236632, + "vtable_address": 6465240712, "methods": [ 6447560944, 6447560688, @@ -178715,7 +178741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414584, + "complete_object_locator": 6468418680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -178724,25 +178750,25 @@ }, { "type_name": "CNetMessagePB<375,class CCSUsrMsg_EndOfMatchAllPlayersData,13,1,1>", - "vtable_address": 6465236680, + "vtable_address": 6465240760, "methods": [ 6447550464, - 6457189536, - 6446491648, - 6446492080, - 6446492208, - 6457189584, - 6457186560, - 6446492224, - 6446493760, - 6446492816, - 6443742160, - 6446493504, - 6457190896, - 6457192720, + 6457191728, + 6446492032, + 6446492464, + 6446492592, + 6457191776, + 6457188752, + 6446492608, + 6446494144, + 6446493184, + 6443742160, + 6446493888, + 6457193088, + 6457194912, 6446494336, - 6446495280, - 6446495248 + 6446495664, + 6446495344 ], "bases": [ { @@ -178804,7 +178830,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414776, + "complete_object_locator": 6468418872, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -178813,7 +178839,7 @@ }, { "type_name": "CNetMessagePB<375,class CCSUsrMsg_EndOfMatchAllPlayersData,13,1,1>::CProtobufBinding", - "vtable_address": 6465240088, + "vtable_address": 6465244168, "methods": [ 6447586752, 6447586736, @@ -178843,7 +178869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468414816, + "complete_object_locator": 6468418912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -178852,7 +178878,7 @@ }, { "type_name": "CNetMessagePB<376,class CCSUsrMsg_PostRoundDamageReport,13,1,1>", - "vtable_address": 6465238360, + "vtable_address": 6465242440, "methods": [ 6447564256, 6447564000, @@ -178920,7 +178946,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468417824, + "complete_object_locator": 6468421920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -178929,25 +178955,25 @@ }, { "type_name": "CNetMessagePB<376,class CCSUsrMsg_PostRoundDamageReport,13,1,1>", - "vtable_address": 6465238408, + "vtable_address": 6465242488, "methods": [ 6447551036, - 6457189536, - 6445801280, - 6445801440, - 6445801488, - 6457189584, - 6457186560, - 6445801504, - 6445803856, - 6445801776, - 6443742160, - 6445803056, - 6457190896, - 6457192720, - 6445803872, - 6445804048, - 6445804032 + 6457191728, + 6445801664, + 6445801824, + 6445801872, + 6457191776, + 6457188752, + 6445801888, + 6445804240, + 6445802160, + 6443742160, + 6445803440, + 6457193088, + 6457194912, + 6445804256, + 6445804432, + 6445804416 ], "bases": [ { @@ -179009,7 +179035,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418016, + "complete_object_locator": 6468422112, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -179018,7 +179044,7 @@ }, { "type_name": "CNetMessagePB<376,class CCSUsrMsg_PostRoundDamageReport,13,1,1>::CProtobufBinding", - "vtable_address": 6465239368, + "vtable_address": 6465243448, "methods": [ 6447570912, 6447570896, @@ -179048,7 +179074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418056, + "complete_object_locator": 6468422152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -179057,7 +179083,7 @@ }, { "type_name": "CNetMessagePB<379,class CCSUsrMsg_RoundEndReportData,13,1,1>", - "vtable_address": 6465237208, + "vtable_address": 6465241288, "methods": [ 6447562048, 6447561792, @@ -179125,7 +179151,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415664, + "complete_object_locator": 6468419760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -179134,25 +179160,25 @@ }, { "type_name": "CNetMessagePB<379,class CCSUsrMsg_RoundEndReportData,13,1,1>", - "vtable_address": 6465237256, + "vtable_address": 6465241336, "methods": [ 6447550592, - 6457189536, - 6446653888, - 6446655600, - 6446655792, - 6457189584, - 6457186560, - 6446655808, - 6446656832, - 6446656144, + 6457191728, + 6446654272, + 6446655984, + 6446656176, + 6457191776, + 6457188752, + 6446656192, + 6446657216, + 6446656528, 6443742160, - 6446656656, - 6457190896, - 6457192720, - 6446656928, - 6446657184, - 6446657168 + 6446657040, + 6457193088, + 6457194912, + 6446657312, + 6446657424, + 6446657408 ], "bases": [ { @@ -179214,7 +179240,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415856, + "complete_object_locator": 6468419952, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -179223,7 +179249,7 @@ }, { "type_name": "CNetMessagePB<379,class CCSUsrMsg_RoundEndReportData,13,1,1>::CProtobufBinding", - "vtable_address": 6465239848, + "vtable_address": 6465243928, "methods": [ 6447581504, 6447581488, @@ -179253,7 +179279,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468415896, + "complete_object_locator": 6468419992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -179262,7 +179288,7 @@ }, { "type_name": "CNetMessagePB<380,class CCSUsrMsg_CurrentRoundOdds,13,1,1>", - "vtable_address": 6465237400, + "vtable_address": 6465241480, "methods": [ 6447562416, 6447562160, @@ -179330,7 +179356,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416024, + "complete_object_locator": 6468420120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -179339,25 +179365,25 @@ }, { "type_name": "CNetMessagePB<380,class CCSUsrMsg_CurrentRoundOdds,13,1,1>", - "vtable_address": 6465237448, + "vtable_address": 6465241528, "methods": [ 6447550604, - 6457189536, - 6445822784, - 6445822848, - 6445822880, - 6457189584, - 6457186560, - 6445822896, - 6445823504, - 6445822944, - 6443742160, + 6457191728, + 6445823168, + 6445823232, + 6445823264, + 6457191776, + 6457188752, + 6445823280, + 6445823888, 6445823328, - 6457190896, - 6457192720, - 6445823536, - 6445825072, - 6445824016 + 6443742160, + 6445823712, + 6457193088, + 6457194912, + 6445823920, + 6445825456, + 6445824400 ], "bases": [ { @@ -179419,7 +179445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416216, + "complete_object_locator": 6468420312, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -179428,7 +179454,7 @@ }, { "type_name": "CNetMessagePB<380,class CCSUsrMsg_CurrentRoundOdds,13,1,1>::CProtobufBinding", - "vtable_address": 6465239768, + "vtable_address": 6465243848, "methods": [ 6447579760, 6447579744, @@ -179458,7 +179484,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416256, + "complete_object_locator": 6468420352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -179467,7 +179493,7 @@ }, { "type_name": "CNetMessagePB<381,class CCSUsrMsg_DeepStats,13,1,1>", - "vtable_address": 6465237592, + "vtable_address": 6465241672, "methods": [ 6447562784, 6447562528, @@ -179535,7 +179561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416384, + "complete_object_locator": 6468420480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -179544,25 +179570,25 @@ }, { "type_name": "CNetMessagePB<381,class CCSUsrMsg_DeepStats,13,1,1>", - "vtable_address": 6465237640, + "vtable_address": 6465241720, "methods": [ 6447550896, - 6457189536, - 6445831744, - 6445831920, - 6445832144, - 6457189584, - 6457186560, - 6445832160, - 6445832832, - 6445832272, + 6457191728, + 6445832128, + 6445832304, + 6445832528, + 6457191776, + 6457188752, + 6445832544, + 6445833216, + 6445832656, 6443742160, - 6445832720, - 6457190896, - 6457192720, - 6445833088, - 6445835232, - 6445835216 + 6445833104, + 6457193088, + 6457194912, + 6445833472, + 6445835600, + 6445835584 ], "bases": [ { @@ -179624,7 +179650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416576, + "complete_object_locator": 6468420672, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -179633,7 +179659,7 @@ }, { "type_name": "CNetMessagePB<381,class CCSUsrMsg_DeepStats,13,1,1>::CProtobufBinding", - "vtable_address": 6465239688, + "vtable_address": 6465243768, "methods": [ 6447578016, 6447578000, @@ -179663,7 +179689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468416616, + "complete_object_locator": 6468420712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -179672,7 +179698,7 @@ }, { "type_name": "CNetMessagePB<383,class CCSUsrMsg_ShootInfo,13,1,1>", - "vtable_address": 6465238552, + "vtable_address": 6465242632, "methods": [ 6447564624, 6447564368, @@ -179740,7 +179766,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418184, + "complete_object_locator": 6468422280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -179749,25 +179775,25 @@ }, { "type_name": "CNetMessagePB<383,class CCSUsrMsg_ShootInfo,13,1,1>", - "vtable_address": 6465238600, + "vtable_address": 6465242680, "methods": [ 6447551328, - 6457189536, - 6445851584, - 6445852128, - 6445852496, - 6457189584, - 6457186560, - 6445852576, - 6445855328, - 6445853168, - 6443742160, - 6445855008, - 6457190896, - 6457192720, - 6445856192, - 6445856240, - 6445856224 + 6457191728, + 6445851824, + 6445852512, + 6445852880, + 6457191776, + 6457188752, + 6445852960, + 6445855712, + 6445853552, + 6443742160, + 6445855392, + 6457193088, + 6457194912, + 6445856576, + 6445856624, + 6445856608 ], "bases": [ { @@ -179829,7 +179855,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418376, + "complete_object_locator": 6468422472, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -179838,7 +179864,7 @@ }, { "type_name": "CNetMessagePB<383,class CCSUsrMsg_ShootInfo,13,1,1>::CProtobufBinding", - "vtable_address": 6465239096, + "vtable_address": 6465243176, "methods": [ 6447568880, 6447568864, @@ -179868,7 +179894,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418416, + "complete_object_locator": 6468422512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -179877,7 +179903,7 @@ }, { "type_name": "CNetMessagePB<387,class CCSUsrMsg_RecurringMissionSchema,13,1,1>", - "vtable_address": 6465238904, + "vtable_address": 6465242984, "methods": [ 6447568496, 6447568240, @@ -179945,7 +179971,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418544, + "complete_object_locator": 6468422640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -179954,25 +179980,25 @@ }, { "type_name": "CNetMessagePB<387,class CCSUsrMsg_RecurringMissionSchema,13,1,1>", - "vtable_address": 6465238952, + "vtable_address": 6465243032, "methods": [ 6447551432, - 6457189536, - 6446085568, - 6446085808, - 6446085872, - 6457189584, - 6457186560, - 6446085888, - 6446086864, - 6446086160, + 6457191728, + 6446085952, + 6446086192, + 6446086256, + 6457191776, + 6457188752, + 6446086272, + 6446087088, + 6446086384, 6443742160, - 6446086640, - 6457190896, - 6457192720, - 6446086896, - 6446087648, - 6446087632 + 6446086864, + 6457193088, + 6457194912, + 6446087280, + 6446088032, + 6446088016 ], "bases": [ { @@ -180034,7 +180060,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418736, + "complete_object_locator": 6468422832, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -180043,7 +180069,7 @@ }, { "type_name": "CNetMessagePB<387,class CCSUsrMsg_RecurringMissionSchema,13,1,1>::CProtobufBinding", - "vtable_address": 6465238824, + "vtable_address": 6465242904, "methods": [ 6447566768, 6447566752, @@ -180073,7 +180099,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418776, + "complete_object_locator": 6468422872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -180082,7 +180108,7 @@ }, { "type_name": "CNetMessagePB<388,class CCSUsrMsg_SendPlayerLoadout,13,1,1>", - "vtable_address": 6465239176, + "vtable_address": 6465243256, "methods": [ 6447572176, 6447570368, @@ -180150,7 +180176,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468418904, + "complete_object_locator": 6468423000, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -180159,25 +180185,25 @@ }, { "type_name": "CNetMessagePB<388,class CCSUsrMsg_SendPlayerLoadout,13,1,1>", - "vtable_address": 6465239224, + "vtable_address": 6465243304, "methods": [ 6447551488, - 6457189536, - 6446122624, - 6446123488, - 6446123696, - 6457189584, - 6457186560, - 6446123712, - 6446125024, - 6446124112, + 6457191728, + 6446122864, + 6446123872, + 6446124080, + 6457191776, + 6457188752, + 6446124096, + 6446125264, + 6446124496, 6443742160, - 6446124768, - 6457190896, - 6457192720, - 6446126640, - 6446128528, - 6446128512 + 6446125008, + 6457193088, + 6457194912, + 6446126960, + 6446128912, + 6446128896 ], "bases": [ { @@ -180239,7 +180265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468419096, + "complete_object_locator": 6468423192, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -180248,7 +180274,7 @@ }, { "type_name": "CNetMessagePB<388,class CCSUsrMsg_SendPlayerLoadout,13,1,1>::CProtobufBinding", - "vtable_address": 6465238744, + "vtable_address": 6465242824, "methods": [ 6447565008, 6447564992, @@ -180278,7 +180304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468419136, + "complete_object_locator": 6468423232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -180287,13 +180313,13 @@ }, { "type_name": "CNetMessagePB<400,class CMsgTEEffectDispatch,5,0,1>", - "vtable_address": 6466158904, + "vtable_address": 6466163112, "methods": [ - 6451662752, - 6451662496, - 6451662480, - 6451662512, - 6451662592 + 6451664432, + 6451664176, + 6451664160, + 6451664192, + 6451664272 ], "bases": [ { @@ -180355,7 +180381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623568, + "complete_object_locator": 6468627664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -180364,25 +180390,25 @@ }, { "type_name": "CNetMessagePB<400,class CMsgTEEffectDispatch,5,0,1>", - "vtable_address": 6466158952, + "vtable_address": 6466163160, "methods": [ - 6451656880, - 6457189536, - 6447062816, - 6447064432, - 6447064640, - 6457189584, - 6457186560, - 6447064656, - 6447066176, - 6447065312, + 6451658560, + 6457191728, + 6447063040, + 6447064800, + 6447064864, + 6457191776, + 6457188752, + 6447064880, + 6447066400, + 6447065536, 6443742160, - 6447066064, - 6457190896, - 6457192720, - 6447066224, - 6447066416, - 6447066384 + 6447066288, + 6457193088, + 6457194912, + 6447066448, + 6447066640, + 6447066624 ], "bases": [ { @@ -180444,7 +180470,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623608, + "complete_object_locator": 6468627704, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -180453,17 +180479,17 @@ }, { "type_name": "CNetMessagePB<400,class CMsgTEEffectDispatch,5,0,1>::CProtobufBinding", - "vtable_address": 6466155584, - "methods": [ - 6451655376, - 6451655360, - 6451654992, - 6451656464, - 6451656480, - 6451656624, - 6451656640, - 6451656800, - 6451656816 + "vtable_address": 6466159792, + "methods": [ + 6451657056, + 6451657040, + 6451656672, + 6451658144, + 6451658160, + 6451658304, + 6451658320, + 6451658480, + 6451658496 ], "bases": [ { @@ -180483,7 +180509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623648, + "complete_object_locator": 6468627744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -180492,13 +180518,13 @@ }, { "type_name": "CNetMessagePB<401,class CMsgTEArmorRicochet,5,0,1>", - "vtable_address": 6466139736, + "vtable_address": 6466143944, "methods": [ - 6451602752, - 6451602496, - 6451602480, - 6451602512, - 6451602592 + 6451604336, + 6451604080, + 6451604064, + 6451604096, + 6451604176 ], "bases": [ { @@ -180560,7 +180586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616624, + "complete_object_locator": 6468620720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -180569,25 +180595,25 @@ }, { "type_name": "CNetMessagePB<401,class CMsgTEArmorRicochet,5,0,1>", - "vtable_address": 6466139784, + "vtable_address": 6466143992, "methods": [ - 6451601600, - 6457189536, - 6446873856, - 6446874288, - 6446874432, - 6457189584, - 6457186560, - 6446874464, - 6446875488, - 6446874832, - 6443742160, - 6446875312, - 6457190896, - 6457192720, - 6446875648, + 6451603184, + 6457191728, + 6446874096, + 6446874512, + 6446874672, + 6457191776, + 6457188752, + 6446874752, 6446875712, - 6446875696 + 6446875056, + 6443742160, + 6446875536, + 6457193088, + 6457194912, + 6446875872, + 6446876256, + 6446875920 ], "bases": [ { @@ -180649,7 +180675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616664, + "complete_object_locator": 6468620760, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -180658,17 +180684,17 @@ }, { "type_name": "CNetMessagePB<401,class CMsgTEArmorRicochet,5,0,1>::CProtobufBinding", - "vtable_address": 6466153152, + "vtable_address": 6466157360, "methods": [ - 6451631040, - 6451632128, - 6451645712, - 6451630800, - 6451630816, - 6451629936, - 6451616880, - 6451636352, - 6451635280 + 6451632624, + 6451633712, + 6451647296, + 6451632384, + 6451632400, + 6451631520, + 6451618464, + 6451637936, + 6451636864 ], "bases": [ { @@ -180688,7 +180714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621376, + "complete_object_locator": 6468625472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -180697,13 +180723,13 @@ }, { "type_name": "CNetMessagePB<402,class CMsgTEBeamEntPoint,5,0,1>", - "vtable_address": 6466152528, + "vtable_address": 6466156736, "methods": [ - 6451615120, - 6451617056, - 6451617040, - 6451632176, - 6451617376 + 6451616704, + 6451618640, + 6451618624, + 6451633760, + 6451618960 ], "bases": [ { @@ -180765,7 +180791,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621856, + "complete_object_locator": 6468625952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -180774,25 +180800,25 @@ }, { "type_name": "CNetMessagePB<402,class CMsgTEBeamEntPoint,5,0,1>", - "vtable_address": 6466152576, + "vtable_address": 6466156784, "methods": [ - 6451615052, - 6457189536, - 6446931472, - 6446932224, + 6451616636, + 6457191728, + 6446931696, 6446932448, - 6457189584, - 6457186560, - 6446932464, - 6446934640, - 6446933248, + 6446932672, + 6457191776, + 6457188752, + 6446932688, + 6446934864, + 6446933488, 6443742160, - 6446934240, - 6457190896, - 6457192720, - 6446934944, - 6446936512, - 6446936336 + 6446934464, + 6457193088, + 6457194912, + 6446935344, + 6446936736, + 6446936720 ], "bases": [ { @@ -180854,7 +180880,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621896, + "complete_object_locator": 6468625992, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -180863,17 +180889,17 @@ }, { "type_name": "CNetMessagePB<402,class CMsgTEBeamEntPoint,5,0,1>::CProtobufBinding", - "vtable_address": 6466138688, + "vtable_address": 6466142896, "methods": [ - 6451600128, - 6451600112, - 6451599840, - 6451601216, - 6451601232, - 6451601376, - 6451601392, - 6451601568, - 6451601584 + 6451601712, + 6451601696, + 6451601424, + 6451602800, + 6451602816, + 6451602960, + 6451602976, + 6451603152, + 6451603168 ], "bases": [ { @@ -180893,7 +180919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616936, + "complete_object_locator": 6468621032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -180902,13 +180928,13 @@ }, { "type_name": "CNetMessagePB<403,class CMsgTEBeamEnts,5,0,1>", - "vtable_address": 6466140248, + "vtable_address": 6466144456, "methods": [ - 6451603440, - 6451603184, - 6451603168, - 6451603200, - 6451603280 + 6451605024, + 6451604768, + 6451604752, + 6451604784, + 6451604864 ], "bases": [ { @@ -180970,7 +180996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468617416, + "complete_object_locator": 6468621512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -180979,25 +181005,25 @@ }, { "type_name": "CNetMessagePB<403,class CMsgTEBeamEnts,5,0,1>", - "vtable_address": 6466140296, - "methods": [ - 6451601624, - 6457189536, - 6446947344, - 6446948720, - 6446948848, - 6457189584, - 6457186560, - 6446949552, - 6446951088, - 6446950160, - 6443742160, - 6446950768, - 6457190896, - 6457192720, - 6446951424, - 6446952512, - 6446952496 + "vtable_address": 6466144504, + "methods": [ + 6451603208, + 6457191728, + 6446947568, + 6446948944, + 6446949760, + 6457191776, + 6457188752, + 6446949776, + 6446951312, + 6446950400, + 6443742160, + 6446950992, + 6457193088, + 6457194912, + 6446951648, + 6446952736, + 6446952720 ], "bases": [ { @@ -181059,7 +181085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468617456, + "complete_object_locator": 6468621552, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -181068,17 +181094,17 @@ }, { "type_name": "CNetMessagePB<403,class CMsgTEBeamEnts,5,0,1>::CProtobufBinding", - "vtable_address": 6466138608, + "vtable_address": 6466142816, "methods": [ - 6451598384, - 6451598368, - 6451598096, - 6451599472, - 6451599488, - 6451599632, - 6451599648, - 6451599808, - 6451599824 + 6451599968, + 6451599952, + 6451599680, + 6451601056, + 6451601072, + 6451601216, + 6451601232, + 6451601392, + 6451601408 ], "bases": [ { @@ -181098,7 +181124,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468617496, + "complete_object_locator": 6468621592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -181107,13 +181133,13 @@ }, { "type_name": "CNetMessagePB<404,class CMsgTEBeamPoints,5,0,1>", - "vtable_address": 6466140696, + "vtable_address": 6466144904, "methods": [ - 6451604128, - 6451603872, - 6451603856, - 6451603888, - 6451603968 + 6451605712, + 6451605456, + 6451605440, + 6451605472, + 6451605552 ], "bases": [ { @@ -181175,7 +181201,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618120, + "complete_object_locator": 6468622216, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -181184,25 +181210,25 @@ }, { "type_name": "CNetMessagePB<404,class CMsgTEBeamPoints,5,0,1>", - "vtable_address": 6466140744, + "vtable_address": 6466144952, "methods": [ - 6451601648, - 6457189536, - 6446964880, - 6446965744, - 6446965952, - 6457189584, - 6457186560, - 6446965984, - 6446968288, - 6446966816, + 6451603232, + 6457191728, + 6446965104, + 6446965968, + 6446966192, + 6457191776, + 6457188752, + 6446966688, + 6446968912, + 6446967344, 6443742160, - 6446967696, - 6457190896, - 6457192720, - 6446970656, - 6446971488, - 6446971456 + 6446968304, + 6457193088, + 6457194912, + 6446970880, + 6446971712, + 6446971696 ], "bases": [ { @@ -181264,7 +181290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618160, + "complete_object_locator": 6468622256, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -181273,17 +181299,17 @@ }, { "type_name": "CNetMessagePB<404,class CMsgTEBeamPoints,5,0,1>::CProtobufBinding", - "vtable_address": 6466138528, + "vtable_address": 6466142736, "methods": [ - 6451596640, - 6451596624, - 6451596352, - 6451597728, - 6451597744, - 6451597888, - 6451597904, - 6451598064, - 6451598080 + 6451598224, + 6451598208, + 6451597936, + 6451599312, + 6451599328, + 6451599472, + 6451599488, + 6451599648, + 6451599664 ], "bases": [ { @@ -181303,7 +181329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618200, + "complete_object_locator": 6468622296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -181312,13 +181338,13 @@ }, { "type_name": "CNetMessagePB<405,class CMsgTEBeamRing,5,0,1>", - "vtable_address": 6466141168, + "vtable_address": 6466145376, "methods": [ - 6451604816, - 6451604560, - 6451604544, - 6451604576, - 6451604656 + 6451606400, + 6451606144, + 6451606128, + 6451606160, + 6451606240 ], "bases": [ { @@ -181380,7 +181406,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618824, + "complete_object_locator": 6468622920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -181389,25 +181415,25 @@ }, { "type_name": "CNetMessagePB<405,class CMsgTEBeamRing,5,0,1>", - "vtable_address": 6466141216, - "methods": [ - 6451601672, - 6457189536, - 6446978160, - 6446979184, - 6446979312, - 6457189584, - 6457186560, - 6446979744, - 6446981904, - 6446980080, - 6443742160, - 6446981360, - 6457190896, - 6457192720, - 6446982864, - 6446983072, - 6446983056 + "vtable_address": 6466145424, + "methods": [ + 6451603256, + 6457191728, + 6446978384, + 6446979408, + 6446979952, + 6457191776, + 6457188752, + 6446979968, + 6446982128, + 6446980608, + 6443742160, + 6446981808, + 6457193088, + 6457194912, + 6446983088, + 6446983296, + 6446983280 ], "bases": [ { @@ -181469,7 +181495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618864, + "complete_object_locator": 6468622960, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -181478,17 +181504,17 @@ }, { "type_name": "CNetMessagePB<405,class CMsgTEBeamRing,5,0,1>::CProtobufBinding", - "vtable_address": 6466138448, + "vtable_address": 6466142656, "methods": [ - 6451594896, - 6451594880, - 6451594608, - 6451595984, - 6451596000, - 6451596144, - 6451596160, - 6451596320, - 6451596336 + 6451596480, + 6451596464, + 6451596192, + 6451597568, + 6451597584, + 6451597728, + 6451597744, + 6451597904, + 6451597920 ], "bases": [ { @@ -181508,7 +181534,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618904, + "complete_object_locator": 6468623000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -181517,13 +181543,13 @@ }, { "type_name": "CNetMessagePB<408,class CMsgTEBubbles,5,0,1>", - "vtable_address": 6466159880, + "vtable_address": 6466164088, "methods": [ - 6451664096, - 6451663840, - 6451663824, - 6451663856, - 6451663936 + 6451665776, + 6451665520, + 6451665504, + 6451665536, + 6451665616 ], "bases": [ { @@ -181585,7 +181611,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468622432, + "complete_object_locator": 6468626528, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -181594,25 +181620,25 @@ }, { "type_name": "CNetMessagePB<408,class CMsgTEBubbles,5,0,1>", - "vtable_address": 6466159928, + "vtable_address": 6466164136, "methods": [ - 6451656832, - 6457189536, - 6446993696, - 6446994272, - 6446994432, - 6457189584, - 6457186560, - 6446994448, - 6446995920, - 6446994816, + 6451658512, + 6457191728, + 6446993936, + 6446994496, + 6446994656, + 6457191776, + 6457188752, + 6446994672, + 6446996144, + 6446995040, 6443742160, - 6446995504, - 6457190896, - 6457192720, - 6446996064, - 6446996768, - 6446996752 + 6446995792, + 6457193088, + 6457194912, + 6446996288, + 6446996992, + 6446996976 ], "bases": [ { @@ -181674,7 +181700,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468622472, + "complete_object_locator": 6468626568, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -181683,17 +181709,17 @@ }, { "type_name": "CNetMessagePB<408,class CMsgTEBubbles,5,0,1>::CProtobufBinding", - "vtable_address": 6466162696, + "vtable_address": 6466166904, "methods": [ - 6451677920, - 6451688848, - 6451690544, - 6451676320, - 6451676480, - 6451676160, - 6451668592, - 6451689168, - 6451689008 + 6451679504, + 6451690432, + 6451692128, + 6451677904, + 6451678064, + 6451677744, + 6451670176, + 6451690752, + 6451690592 ], "bases": [ { @@ -181713,7 +181739,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629848, + "complete_object_locator": 6468633944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -181722,13 +181748,13 @@ }, { "type_name": "CNetMessagePB<409,class CMsgTEBubbleTrail,5,0,1>", - "vtable_address": 6466154632, + "vtable_address": 6466158840, "methods": [ - 6451652272, - 6451652016, - 6451652000, - 6451652032, - 6451652112 + 6451653952, + 6451653696, + 6451653680, + 6451653712, + 6451653792 ], "bases": [ { @@ -181790,7 +181816,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623000, + "complete_object_locator": 6468627096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -181799,25 +181825,25 @@ }, { "type_name": "CNetMessagePB<409,class CMsgTEBubbleTrail,5,0,1>", - "vtable_address": 6466154680, + "vtable_address": 6466158888, "methods": [ - 6451656856, - 6457189536, - 6447017344, - 6447017808, - 6447017968, - 6457189584, - 6457186560, - 6447017984, - 6447019360, - 6447018336, + 6451658536, + 6457191728, + 6447017568, + 6447018032, + 6447018192, + 6457191776, + 6457188752, + 6447018208, + 6447019584, + 6447018560, 6443742160, - 6447019008, - 6457190896, - 6457192720, - 6447019376, - 6447019568, - 6447019552 + 6447019232, + 6457193088, + 6457194912, + 6447019600, + 6447019792, + 6447019776 ], "bases": [ { @@ -181879,7 +181905,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623040, + "complete_object_locator": 6468627136, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -181888,17 +181914,17 @@ }, { "type_name": "CNetMessagePB<409,class CMsgTEBubbleTrail,5,0,1>::CProtobufBinding", - "vtable_address": 6466162616, + "vtable_address": 6466166824, "methods": [ - 6451679008, - 6451688864, - 6451690816, - 6451676336, - 6451676624, - 6451676176, - 6451668768, - 6451689184, - 6451689024 + 6451680592, + 6451690448, + 6451692400, + 6451677920, + 6451678208, + 6451677760, + 6451670352, + 6451690768, + 6451690608 ], "bases": [ { @@ -181918,7 +181944,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629976, + "complete_object_locator": 6468634072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -181927,7 +181953,7 @@ }, { "type_name": "CNetMessagePB<410,class CMsgTEDecal,5,0,1>", - "vtable_address": 6464683304, + "vtable_address": 6464687384, "methods": [ 6444570448, 6444599856, @@ -181995,7 +182021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468265776, + "complete_object_locator": 6468269872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -182004,25 +182030,25 @@ }, { "type_name": "CNetMessagePB<410,class CMsgTEDecal,5,0,1>", - "vtable_address": 6464683352, + "vtable_address": 6464687432, "methods": [ 6444568848, - 6457189536, + 6457191728, 6444865616, - 6447030368, - 6447030528, - 6457189584, - 6457186560, - 6447030544, + 6447030592, + 6447030752, + 6457191776, + 6457188752, + 6447030768, 6444784816, - 6447030928, + 6447031152, 6443742160, - 6447031712, - 6457190896, - 6457192720, - 6447032176, - 6447032640, - 6447032496 + 6447031936, + 6457193088, + 6457194912, + 6447032400, + 6447032864, + 6447032720 ], "bases": [ { @@ -182084,7 +182110,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266064, + "complete_object_locator": 6468270160, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -182093,7 +182119,7 @@ }, { "type_name": "CNetMessagePB<410,class CMsgTEDecal,5,0,1>::CProtobufBinding", - "vtable_address": 6464692800, + "vtable_address": 6464696880, "methods": [ 6444805376, 6444814256, @@ -182123,7 +182149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266104, + "complete_object_locator": 6468270200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -182132,7 +182158,7 @@ }, { "type_name": "CNetMessagePB<411,class CMsgTEWorldDecal,5,0,1>", - "vtable_address": 6464683496, + "vtable_address": 6464687576, "methods": [ 6444570544, 6444599888, @@ -182200,7 +182226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266232, + "complete_object_locator": 6468270328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -182209,25 +182235,25 @@ }, { "type_name": "CNetMessagePB<411,class CMsgTEWorldDecal,5,0,1>", - "vtable_address": 6464683544, + "vtable_address": 6464687624, "methods": [ 6444568860, - 6457189536, + 6457191728, 6444865632, - 6447294896, - 6447295040, - 6457189584, - 6457186560, - 6447295056, + 6447295120, + 6447295264, + 6457191776, + 6457188752, + 6447295280, 6444784832, - 6447295376, + 6447295600, 6443742160, - 6447295952, - 6457190896, - 6457192720, - 6447296208, - 6447296384, - 6447296368 + 6447296176, + 6457193088, + 6457194912, + 6447296432, + 6447296608, + 6447296592 ], "bases": [ { @@ -182289,7 +182315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266520, + "complete_object_locator": 6468270616, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -182298,7 +182324,7 @@ }, { "type_name": "CNetMessagePB<411,class CMsgTEWorldDecal,5,0,1>::CProtobufBinding", - "vtable_address": 6464692720, + "vtable_address": 6464696800, "methods": [ 6444806464, 6444814272, @@ -182328,7 +182354,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468266560, + "complete_object_locator": 6468270656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -182337,13 +182363,13 @@ }, { "type_name": "CNetMessagePB<412,class CMsgTEEnergySplash,5,0,1>", - "vtable_address": 6466159424, + "vtable_address": 6466163632, "methods": [ - 6451663424, - 6451663168, - 6451663152, - 6451663184, - 6451663264 + 6451665104, + 6451664848, + 6451664832, + 6451664864, + 6451664944 ], "bases": [ { @@ -182405,7 +182431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624264, + "complete_object_locator": 6468628360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -182414,25 +182440,25 @@ }, { "type_name": "CNetMessagePB<412,class CMsgTEEnergySplash,5,0,1>", - "vtable_address": 6466159472, - "methods": [ - 6451656904, - 6457189536, - 6447074544, - 6447074976, - 6447075120, - 6457189584, - 6457186560, - 6447075136, - 6447076400, - 6447075440, + "vtable_address": 6466163680, + "methods": [ + 6451658584, + 6457191728, + 6447074768, + 6447075200, + 6447075344, + 6457191776, + 6457188752, + 6447075360, + 6447076624, + 6447075664, 6443742160, - 6447076032, - 6457190896, - 6457192720, - 6447076432, - 6447077456, - 6447076912 + 6447076416, + 6457193088, + 6457194912, + 6447076656, + 6447077680, + 6447077376 ], "bases": [ { @@ -182494,7 +182520,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624304, + "complete_object_locator": 6468628400, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -182503,17 +182529,17 @@ }, { "type_name": "CNetMessagePB<412,class CMsgTEEnergySplash,5,0,1>::CProtobufBinding", - "vtable_address": 6466162536, + "vtable_address": 6466166744, "methods": [ - 6451680096, - 6451688880, - 6451691088, - 6451676352, - 6451676768, - 6451676192, - 6451668944, - 6451689200, - 6451689040 + 6451681680, + 6451690464, + 6451692672, + 6451677936, + 6451678352, + 6451677776, + 6451670528, + 6451690784, + 6451690624 ], "bases": [ { @@ -182533,7 +182559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468630104, + "complete_object_locator": 6468634200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -182542,13 +182568,13 @@ }, { "type_name": "CNetMessagePB<413,class CMsgTEFizz,5,0,1>", - "vtable_address": 6466160328, + "vtable_address": 6466164536, "methods": [ - 6451664768, - 6451664512, - 6451664496, - 6451664528, - 6451664608 + 6451666448, + 6451666192, + 6451666176, + 6451666208, + 6451666288 ], "bases": [ { @@ -182610,7 +182636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624832, + "complete_object_locator": 6468628928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -182619,25 +182645,25 @@ }, { "type_name": "CNetMessagePB<413,class CMsgTEFizz,5,0,1>", - "vtable_address": 6466160376, + "vtable_address": 6466164584, "methods": [ - 6451656928, - 6457189536, - 6447087696, - 6447087792, - 6447087840, - 6457189584, - 6457186560, - 6447087856, - 6447088960, - 6447087984, + 6451658608, + 6457191728, + 6447087920, + 6447088016, + 6447088064, + 6457191776, + 6457188752, + 6447088080, + 6447089184, + 6447088208, 6443742160, - 6447088576, - 6457190896, - 6457192720, - 6447088976, - 6447090224, - 6447090064 + 6447088800, + 6457193088, + 6457194912, + 6447089376, + 6447090448, + 6447090432 ], "bases": [ { @@ -182699,7 +182725,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624872, + "complete_object_locator": 6468628968, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -182708,17 +182734,17 @@ }, { "type_name": "CNetMessagePB<413,class CMsgTEFizz,5,0,1>::CProtobufBinding", - "vtable_address": 6466162456, + "vtable_address": 6466166664, "methods": [ - 6451681184, - 6451688896, - 6451691360, - 6451676368, - 6451676912, - 6451676208, - 6451669104, - 6451689216, - 6451689056 + 6451682768, + 6451690480, + 6451692944, + 6451677952, + 6451678496, + 6451677792, + 6451670688, + 6451690800, + 6451690640 ], "bases": [ { @@ -182738,7 +182764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468630368, + "complete_object_locator": 6468634464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -182747,13 +182773,13 @@ }, { "type_name": "CNetMessagePB<415,class CMsgTEGlowSprite,5,0,1>", - "vtable_address": 6466155720, + "vtable_address": 6466159928, "methods": [ - 6451657408, - 6451657152, - 6451657136, - 6451657168, - 6451657248 + 6451659088, + 6451658832, + 6451658816, + 6451658848, + 6451658928 ], "bases": [ { @@ -182815,7 +182841,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625968, + "complete_object_locator": 6468630064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -182824,25 +182850,25 @@ }, { "type_name": "CNetMessagePB<415,class CMsgTEGlowSprite,5,0,1>", - "vtable_address": 6466155768, - "methods": [ - 6451656976, - 6457189536, - 6447120608, - 6447121568, - 6447121856, - 6457189584, - 6457186560, - 6447121904, - 6447124000, - 6447122480, + "vtable_address": 6466159976, + "methods": [ + 6451658656, + 6457191728, + 6447120832, + 6447121792, + 6447122096, + 6457191776, + 6457188752, + 6447122128, + 6447124224, + 6447122720, 6443742160, - 6447123552, - 6457190896, - 6457192720, - 6447124128, - 6447124272, - 6447124240 + 6447123776, + 6457193088, + 6457194912, + 6447124352, + 6447124496, + 6447124464 ], "bases": [ { @@ -182904,7 +182930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626008, + "complete_object_locator": 6468630104, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -182913,17 +182939,17 @@ }, { "type_name": "CNetMessagePB<415,class CMsgTEGlowSprite,5,0,1>::CProtobufBinding", - "vtable_address": 6466162296, - "methods": [ - 6451682272, - 6451688912, - 6451691632, - 6451676384, - 6451677056, - 6451676224, - 6451669264, - 6451689232, - 6451689072 + "vtable_address": 6466166504, + "methods": [ + 6451683856, + 6451690496, + 6451693216, + 6451677968, + 6451678640, + 6451677808, + 6451670848, + 6451690816, + 6451690656 ], "bases": [ { @@ -182943,7 +182969,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468630624, + "complete_object_locator": 6468634720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -182952,13 +182978,13 @@ }, { "type_name": "CNetMessagePB<416,class CMsgTEImpact,5,0,1>", - "vtable_address": 6466156176, + "vtable_address": 6466160384, "methods": [ - 6451658224, - 6451657968, - 6451657952, - 6451657984, - 6451658064 + 6451659904, + 6451659648, + 6451659632, + 6451659664, + 6451659744 ], "bases": [ { @@ -183020,7 +183046,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626536, + "complete_object_locator": 6468630632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -183029,25 +183055,25 @@ }, { "type_name": "CNetMessagePB<416,class CMsgTEImpact,5,0,1>", - "vtable_address": 6466156224, + "vtable_address": 6466160432, "methods": [ - 6451657000, - 6457189536, - 6447132272, - 6447133280, - 6447133440, - 6457189584, - 6457186560, - 6447133456, - 6447134944, - 6447133792, + 6451658680, + 6457191728, + 6447132496, + 6447133520, + 6447133664, + 6457191776, + 6457188752, + 6447133680, + 6447135184, + 6447134016, 6443742160, - 6447134608, - 6457190896, - 6457192720, - 6447136336, - 6447137216, - 6447137200 + 6447134912, + 6457193088, + 6457194912, + 6447136560, + 6447137440, + 6447137424 ], "bases": [ { @@ -183109,7 +183135,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626576, + "complete_object_locator": 6468630672, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -183118,17 +183144,17 @@ }, { "type_name": "CNetMessagePB<416,class CMsgTEImpact,5,0,1>::CProtobufBinding", - "vtable_address": 6466155016, + "vtable_address": 6466159224, "methods": [ - 6451652752, - 6451652736, - 6451652368, - 6451653840, - 6451653856, - 6451654000, - 6451654016, - 6451654176, - 6451654192 + 6451654432, + 6451654416, + 6451654048, + 6451655520, + 6451655536, + 6451655680, + 6451655696, + 6451655856, + 6451655872 ], "bases": [ { @@ -183148,7 +183174,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626616, + "complete_object_locator": 6468630712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -183157,13 +183183,13 @@ }, { "type_name": "CNetMessagePB<417,class CMsgTEMuzzleFlash,5,0,1>", - "vtable_address": 6466157096, + "vtable_address": 6466161304, "methods": [ - 6451659744, - 6451659488, - 6451659472, - 6451659504, - 6451659584 + 6451661424, + 6451661168, + 6451661152, + 6451661184, + 6451661264 ], "bases": [ { @@ -183225,7 +183251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627800, + "complete_object_locator": 6468631896, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -183234,25 +183260,25 @@ }, { "type_name": "CNetMessagePB<417,class CMsgTEMuzzleFlash,5,0,1>", - "vtable_address": 6466157144, - "methods": [ - 6451657048, - 6457189536, - 6447142272, - 6447142704, - 6447142864, - 6457189584, - 6457186560, - 6447142880, - 6447144144, - 6447143216, - 6443742160, - 6447143840, - 6457190896, - 6457192720, - 6447144352, - 6447144400, - 6447144368 + "vtable_address": 6466161352, + "methods": [ + 6451658728, + 6457191728, + 6447142496, + 6447142928, + 6447143088, + 6457191776, + 6457188752, + 6447143104, + 6447144368, + 6447143440, + 6443742160, + 6447144064, + 6457193088, + 6457194912, + 6447144576, + 6447144624, + 6447144592 ], "bases": [ { @@ -183314,7 +183340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627840, + "complete_object_locator": 6468631936, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -183323,17 +183349,17 @@ }, { "type_name": "CNetMessagePB<417,class CMsgTEMuzzleFlash,5,0,1>::CProtobufBinding", - "vtable_address": 6466162136, + "vtable_address": 6466166344, "methods": [ - 6451683360, - 6451688928, - 6451691904, - 6451676400, - 6451677200, - 6451676240, - 6451669424, - 6451689248, - 6451689088 + 6451684944, + 6451690512, + 6451693488, + 6451677984, + 6451678784, + 6451677824, + 6451671008, + 6451690832, + 6451690672 ], "bases": [ { @@ -183353,7 +183379,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468630880, + "complete_object_locator": 6468634976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -183362,13 +183388,13 @@ }, { "type_name": "CNetMessagePB<418,class CMsgTEBloodStream,5,0,1>", - "vtable_address": 6466141648, + "vtable_address": 6466145856, "methods": [ - 6451605600, - 6451605344, - 6451605328, - 6451605360, - 6451605440 + 6451607184, + 6451606928, + 6451606912, + 6451606944, + 6451607024 ], "bases": [ { @@ -183430,7 +183456,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619528, + "complete_object_locator": 6468623624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -183439,25 +183465,25 @@ }, { "type_name": "CNetMessagePB<418,class CMsgTEBloodStream,5,0,1>", - "vtable_address": 6466141696, + "vtable_address": 6466145904, "methods": [ - 6451601696, - 6457189536, - 6447159888, - 6447160352, - 6447160512, - 6457189584, - 6457186560, - 6447160528, - 6447161872, - 6447160864, + 6451603280, + 6457191728, + 6447160112, + 6447160576, + 6447160736, + 6457191776, + 6457188752, + 6447160752, + 6447162096, + 6447161104, 6443742160, - 6447161568, - 6457190896, - 6457192720, - 6447161904, - 6447162704, - 6447162320 + 6447161792, + 6457193088, + 6457194912, + 6447162128, + 6447162928, + 6447162544 ], "bases": [ { @@ -183519,7 +183545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619568, + "complete_object_locator": 6468623664, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -183528,17 +183554,17 @@ }, { "type_name": "CNetMessagePB<418,class CMsgTEBloodStream,5,0,1>::CProtobufBinding", - "vtable_address": 6466138368, + "vtable_address": 6466142576, "methods": [ - 6451593152, - 6451593136, - 6451592864, - 6451594240, - 6451594256, - 6451594400, - 6451594416, - 6451594576, - 6451594592 + 6451594736, + 6451594720, + 6451594448, + 6451595824, + 6451595840, + 6451595984, + 6451596000, + 6451596160, + 6451596176 ], "bases": [ { @@ -183558,7 +183584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619608, + "complete_object_locator": 6468623704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -183567,13 +183593,13 @@ }, { "type_name": "CNetMessagePB<419,class CMsgTEExplosion,5,0,1>", - "vtable_address": 6466054264, + "vtable_address": 6466058472, "methods": [ - 6451086848, - 6451093440, - 6451093424, - 6451121552, - 6451096352 + 6451088416, + 6451095008, + 6451094992, + 6451123120, + 6451097920 ], "bases": [ { @@ -183635,7 +183661,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591024, + "complete_object_locator": 6468595120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -183644,25 +183670,25 @@ }, { "type_name": "CNetMessagePB<419,class CMsgTEExplosion,5,0,1>", - "vtable_address": 6466054312, + "vtable_address": 6466058520, "methods": [ - 6451086432, - 6457189536, - 6447171008, - 6447172352, - 6447172608, - 6457189584, - 6457186560, - 6447172624, - 6447175328, - 6447173232, + 6451088000, + 6457191728, + 6447171232, + 6447172576, + 6447172832, + 6457191776, + 6457188752, + 6447172848, + 6447175552, + 6447173456, 6443742160, - 6447174560, - 6457190896, - 6457192720, - 6447175408, - 6447175440, - 6447175424 + 6447174784, + 6457193088, + 6457194912, + 6447175632, + 6447175664, + 6447175648 ], "bases": [ { @@ -183724,7 +183750,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591064, + "complete_object_locator": 6468595160, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -183733,17 +183759,17 @@ }, { "type_name": "CNetMessagePB<419,class CMsgTEExplosion,5,0,1>::CProtobufBinding", - "vtable_address": 6466055912, + "vtable_address": 6466060120, "methods": [ - 6451118816, - 6451121120, - 6451152688, - 6451118272, - 6451118288, - 6451116384, - 6451092944, - 6451132000, - 6451128928 + 6451120384, + 6451122688, + 6451154256, + 6451119840, + 6451119856, + 6451117952, + 6451094512, + 6451133568, + 6451130496 ], "bases": [ { @@ -183763,7 +183789,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591104, + "complete_object_locator": 6468595200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -183772,13 +183798,13 @@ }, { "type_name": "CNetMessagePB<420,class CMsgTEDust,5,0,1>", - "vtable_address": 6466155160, + "vtable_address": 6466159368, "methods": [ - 6451654688, - 6451654432, - 6451654416, - 6451654448, - 6451654528 + 6451656368, + 6451656112, + 6451656096, + 6451656128, + 6451656208 ], "bases": [ { @@ -183840,7 +183866,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625400, + "complete_object_locator": 6468629496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -183849,25 +183875,25 @@ }, { "type_name": "CNetMessagePB<420,class CMsgTEDust,5,0,1>", - "vtable_address": 6466155208, - "methods": [ - 6451656952, - 6457189536, - 6447200144, - 6447200656, - 6447200848, - 6457189584, - 6457186560, - 6447200880, - 6447202720, - 6447201280, + "vtable_address": 6466159416, + "methods": [ + 6451658632, + 6457191728, + 6447200368, + 6447200912, + 6447201088, + 6457191776, + 6457188752, + 6447201152, + 6447202944, + 6447201952, 6443742160, - 6447202288, - 6457190896, - 6457192720, - 6447203504, - 6447205680, - 6447205648 + 6447202704, + 6457193088, + 6457194912, + 6447203744, + 6447205968, + 6447205888 ], "bases": [ { @@ -183929,7 +183955,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625440, + "complete_object_locator": 6468629536, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -183938,17 +183964,17 @@ }, { "type_name": "CNetMessagePB<420,class CMsgTEDust,5,0,1>::CProtobufBinding", - "vtable_address": 6466162376, + "vtable_address": 6466166584, "methods": [ - 6451684448, - 6451688944, - 6451692176, - 6451676416, - 6451677344, - 6451676256, - 6451669584, - 6451689264, - 6451689104 + 6451686032, + 6451690528, + 6451693760, + 6451678000, + 6451678928, + 6451677840, + 6451671168, + 6451690848, + 6451690688 ], "bases": [ { @@ -183968,7 +183994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468630496, + "complete_object_locator": 6468634592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -183977,13 +184003,13 @@ }, { "type_name": "CNetMessagePB<421,class CMsgTELargeFunnel,5,0,1>", - "vtable_address": 6466156640, + "vtable_address": 6466160848, "methods": [ - 6451658928, - 6451658672, - 6451658656, - 6451658688, - 6451658768 + 6451660608, + 6451660352, + 6451660336, + 6451660368, + 6451660448 ], "bases": [ { @@ -184045,7 +184071,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627232, + "complete_object_locator": 6468631328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -184054,25 +184080,25 @@ }, { "type_name": "CNetMessagePB<421,class CMsgTELargeFunnel,5,0,1>", - "vtable_address": 6466156688, - "methods": [ - 6451657024, - 6457189536, - 6447215152, - 6447215440, - 6447215536, - 6457189584, - 6457186560, - 6447215552, - 6447216704, - 6447215744, + "vtable_address": 6466160896, + "methods": [ + 6451658704, + 6457191728, + 6447215376, + 6447215664, + 6447215760, + 6457191776, + 6457188752, + 6447215776, + 6447217216, + 6447215968, 6443742160, - 6447216464, - 6457190896, - 6457192720, - 6447217520, - 6447217856, - 6447217840 + 6447216704, + 6457193088, + 6457194912, + 6447218016, + 6447218080, + 6447218064 ], "bases": [ { @@ -184134,7 +184160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627272, + "complete_object_locator": 6468631368, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -184143,17 +184169,17 @@ }, { "type_name": "CNetMessagePB<421,class CMsgTELargeFunnel,5,0,1>::CProtobufBinding", - "vtable_address": 6466162216, + "vtable_address": 6466166424, "methods": [ - 6451685536, - 6451688960, - 6451692448, - 6451676432, - 6451677488, - 6451676272, - 6451669744, - 6451689280, - 6451689120 + 6451687120, + 6451690544, + 6451694032, + 6451678016, + 6451679072, + 6451677856, + 6451671328, + 6451690864, + 6451690704 ], "bases": [ { @@ -184173,7 +184199,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468630752, + "complete_object_locator": 6468634848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -184182,13 +184208,13 @@ }, { "type_name": "CNetMessagePB<422,class CMsgTESparks,5,0,1>", - "vtable_address": 6466158456, + "vtable_address": 6466162664, "methods": [ - 6451661952, - 6451661696, - 6451661680, - 6451661712, - 6451661792 + 6451663632, + 6451663376, + 6451663360, + 6451663392, + 6451663472 ], "bases": [ { @@ -184250,7 +184276,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629632, + "complete_object_locator": 6468633728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -184259,25 +184285,25 @@ }, { "type_name": "CNetMessagePB<422,class CMsgTESparks,5,0,1>", - "vtable_address": 6466158504, + "vtable_address": 6466162712, "methods": [ - 6451657120, - 6457189536, - 6447224960, - 6447225760, - 6447225920, - 6457189584, - 6457186560, - 6447225936, - 6447227616, - 6447226288, + 6451658800, + 6457191728, + 6447225248, + 6447225984, + 6447226144, + 6457191776, + 6457188752, + 6447226160, + 6447227840, + 6447226512, 6443742160, - 6447226976, - 6457190896, - 6457192720, - 6447227648, - 6447228432, - 6447228416 + 6447227472, + 6457193088, + 6457194912, + 6447227872, + 6447229184, + 6447228640 ], "bases": [ { @@ -184339,7 +184365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629672, + "complete_object_locator": 6468633768, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -184348,17 +184374,17 @@ }, { "type_name": "CNetMessagePB<422,class CMsgTESparks,5,0,1>::CProtobufBinding", - "vtable_address": 6466161976, - "methods": [ - 6451686624, - 6451688976, - 6451692720, - 6451676448, - 6451677632, - 6451676288, - 6451669904, - 6451689296, - 6451689136 + "vtable_address": 6466166184, + "methods": [ + 6451688208, + 6451690560, + 6451694304, + 6451678032, + 6451679216, + 6451677872, + 6451671488, + 6451690880, + 6451690720 ], "bases": [ { @@ -184378,7 +184404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631136, + "complete_object_locator": 6468635232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -184387,13 +184413,13 @@ }, { "type_name": "CNetMessagePB<423,class CMsgTEPhysicsProp,5,0,1>", - "vtable_address": 6466157552, + "vtable_address": 6466161760, "methods": [ - 6451660592, - 6451660336, - 6451660320, - 6451660352, - 6451660432 + 6451662272, + 6451662016, + 6451662000, + 6451662032, + 6451662112 ], "bases": [ { @@ -184455,7 +184481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468628368, + "complete_object_locator": 6468632464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -184464,25 +184490,25 @@ }, { "type_name": "CNetMessagePB<423,class CMsgTEPhysicsProp,5,0,1>", - "vtable_address": 6466157600, - "methods": [ - 6451657072, - 6457189536, - 6447241840, - 6447242848, - 6447243296, - 6457189584, - 6457186560, - 6447243312, - 6447246304, - 6447244112, - 6443742160, - 6447245456, - 6457190896, - 6457192720, - 6447246576, - 6447246608, - 6447246592 + "vtable_address": 6466161808, + "methods": [ + 6451658752, + 6457191728, + 6447242064, + 6447243216, + 6447243520, + 6457191776, + 6457188752, + 6447243536, + 6447246592, + 6447244336, + 6443742160, + 6447245696, + 6457193088, + 6457194912, + 6447246800, + 6447246832, + 6447246816 ], "bases": [ { @@ -184544,7 +184570,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468628408, + "complete_object_locator": 6468632504, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -184553,17 +184579,17 @@ }, { "type_name": "CNetMessagePB<423,class CMsgTEPhysicsProp,5,0,1>::CProtobufBinding", - "vtable_address": 6466154552, + "vtable_address": 6466158760, "methods": [ - 6451650512, - 6451650496, - 6451650224, - 6451651600, - 6451651616, - 6451651760, - 6451651776, - 6451651968, - 6451651984 + 6451652192, + 6451652176, + 6451651904, + 6451653280, + 6451653296, + 6451653440, + 6451653456, + 6451653648, + 6451653664 ], "bases": [ { @@ -184583,7 +184609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468628448, + "complete_object_locator": 6468632544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -184592,13 +184618,13 @@ }, { "type_name": "CNetMessagePB<426,class CMsgTESmoke,5,0,1>", - "vtable_address": 6466158008, + "vtable_address": 6466162216, "methods": [ - 6451661280, - 6451661024, - 6451661008, - 6451661040, - 6451661120 + 6451662960, + 6451662704, + 6451662688, + 6451662720, + 6451662800 ], "bases": [ { @@ -184660,7 +184686,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629064, + "complete_object_locator": 6468633160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -184669,25 +184695,25 @@ }, { "type_name": "CNetMessagePB<426,class CMsgTESmoke,5,0,1>", - "vtable_address": 6466158056, + "vtable_address": 6466162264, "methods": [ - 6451657096, - 6457189536, - 6447265088, - 6447265360, - 6447265456, - 6457189584, - 6457186560, - 6447265472, - 6447266224, - 6447265632, + 6451658776, + 6457191728, + 6447265312, + 6447265584, + 6447265680, + 6457191776, + 6457188752, + 6447265696, + 6447266448, + 6447265856, 6443742160, - 6447266048, - 6457190896, - 6457192720, - 6447266384, - 6447266416, - 6447266400 + 6447266272, + 6457193088, + 6457194912, + 6447266608, + 6447266640, + 6447266624 ], "bases": [ { @@ -184749,7 +184775,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629104, + "complete_object_locator": 6468633200, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -184758,17 +184784,17 @@ }, { "type_name": "CNetMessagePB<426,class CMsgTESmoke,5,0,1>::CProtobufBinding", - "vtable_address": 6466162056, + "vtable_address": 6466166264, "methods": [ - 6451687712, - 6451688992, - 6451692992, - 6451676464, - 6451677776, - 6451676304, - 6451670064, - 6451689312, - 6451689152 + 6451689296, + 6451690576, + 6451694576, + 6451678048, + 6451679360, + 6451677888, + 6451671648, + 6451690896, + 6451690736 ], "bases": [ { @@ -184788,7 +184814,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468631008, + "complete_object_locator": 6468635104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -184797,7 +184823,7 @@ }, { "type_name": "CNetMessagePB<452,class CMsgTEFireBullets,5,0,1>", - "vtable_address": 6465298208, + "vtable_address": 6465302280, "methods": [ 6447746176, 6447750640, @@ -184865,7 +184891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468429320, + "complete_object_locator": 6468433416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -184874,25 +184900,25 @@ }, { "type_name": "CNetMessagePB<452,class CMsgTEFireBullets,5,0,1>", - "vtable_address": 6465298256, + "vtable_address": 6465302328, "methods": [ 6447745868, - 6457189536, - 6446268720, - 6446270640, - 6446270912, - 6457189584, - 6457186560, - 6446271088, - 6446275024, - 6446271824, + 6457191728, + 6446269104, + 6446270320, + 6446270880, + 6457191776, + 6457188752, + 6446270896, + 6446275392, + 6446271904, 6443742160, - 6446273696, - 6457190896, - 6457192720, - 6446275216, - 6446282912, - 6446281584 + 6446274080, + 6457193088, + 6457194912, + 6446275456, + 6446283296, + 6446281968 ], "bases": [ { @@ -184954,7 +184980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468429512, + "complete_object_locator": 6468433608, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -184963,7 +184989,7 @@ }, { "type_name": "CNetMessagePB<452,class CMsgTEFireBullets,5,0,1>::CProtobufBinding", - "vtable_address": 6465308192, + "vtable_address": 6465312256, "methods": [ 6447760640, 6447764336, @@ -184993,7 +185019,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468429552, + "complete_object_locator": 6468433648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185002,7 +185028,7 @@ }, { "type_name": "CNetMessagePB<453,class CMsgPlayerBulletHit,5,0,1>", - "vtable_address": 6465298400, + "vtable_address": 6465302472, "methods": [ 6447746272, 6447750672, @@ -185070,7 +185096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468429680, + "complete_object_locator": 6468433776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -185079,25 +185105,25 @@ }, { "type_name": "CNetMessagePB<453,class CMsgPlayerBulletHit,5,0,1>", - "vtable_address": 6465298448, + "vtable_address": 6465302520, "methods": [ 6447745880, - 6457189536, - 6446328912, - 6446329680, - 6446329776, - 6457189584, - 6457186560, - 6446329792, - 6446331840, - 6446330144, + 6457191728, + 6446329296, + 6446330064, + 6446330160, + 6457191776, + 6457188752, + 6446330176, + 6446332224, + 6446330528, 6443742160, - 6446331152, - 6457190896, - 6457192720, - 6446331920, - 6446331952, - 6446331936 + 6446331536, + 6457193088, + 6457194912, + 6446332304, + 6446332336, + 6446332320 ], "bases": [ { @@ -185159,7 +185185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468429872, + "complete_object_locator": 6468433968, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -185168,7 +185194,7 @@ }, { "type_name": "CNetMessagePB<453,class CMsgPlayerBulletHit,5,0,1>::CProtobufBinding", - "vtable_address": 6465308112, + "vtable_address": 6465312176, "methods": [ 6447761728, 6447764352, @@ -185198,7 +185224,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468429912, + "complete_object_locator": 6468434008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185207,13 +185233,13 @@ }, { "type_name": "CNetMessagePB<47,class CSVCMsg_VoiceData,6,0,0>", - "vtable_address": 6465966800, + "vtable_address": 6465970992, "methods": [ - 6450765200, - 6450777152, - 6450777136, - 6450808816, - 6450780176 + 6450766768, + 6450778720, + 6450778704, + 6450810384, + 6450781744 ], "bases": [ { @@ -185275,7 +185301,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568288, + "complete_object_locator": 6468572384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -185284,25 +185310,25 @@ }, { "type_name": "CNetMessagePB<47,class CSVCMsg_VoiceData,6,0,0>", - "vtable_address": 6465966848, + "vtable_address": 6465971040, "methods": [ - 6450764588, - 6457189536, - 6447076416, - 6447076704, - 6447076896, - 6457189584, - 6457186560, - 6447077216, - 6447080608, - 6447078288, + 6450766156, + 6457191728, + 6447076640, + 6447076928, + 6447077120, + 6457191776, + 6457188752, + 6447077136, + 6447080096, + 6447078032, 6443742160, - 6447080000, - 6457190896, - 6457192720, - 6447081056, - 6447082000, - 6447081984 + 6447079488, + 6457193088, + 6457194912, + 6447081280, + 6447082224, + 6447082208 ], "bases": [ { @@ -185364,7 +185390,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568480, + "complete_object_locator": 6468572576, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -185373,17 +185399,17 @@ }, { "type_name": "CNetMessagePB<47,class CSVCMsg_VoiceData,6,0,0>::CProtobufBinding", - "vtable_address": 6465966992, + "vtable_address": 6465971184, "methods": [ - 6450805984, - 6450808480, - 6450872432, - 6450799760, - 6450800352, - 6450798384, - 6450775296, - 6450822256, - 6450818656 + 6450807552, + 6450810048, + 6450874000, + 6450801328, + 6450801920, + 6450799952, + 6450776864, + 6450823824, + 6450820224 ], "bases": [ { @@ -185403,7 +185429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568520, + "complete_object_locator": 6468572616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185412,13 +185438,13 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>", - "vtable_address": 6466061784, + "vtable_address": 6466065984, "methods": [ - 6451173376, - 6451176768, - 6451176752, - 6451202800, - 6451185952 + 6451174944, + 6451178336, + 6451178320, + 6451204368, + 6451187520 ], "bases": [ { @@ -185480,7 +185506,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468593664, + "complete_object_locator": 6468597760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -185489,25 +185515,25 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>", - "vtable_address": 6466061832, + "vtable_address": 6466066032, "methods": [ - 6451173136, - 6457189536, - 6447118496, - 6447118912, - 6447119488, - 6457189584, - 6457186560, - 6447119504, - 6447121072, - 6447119920, + 6451174704, + 6457191728, + 6447118720, + 6447119136, + 6447119712, + 6457191776, + 6457188752, + 6447119728, + 6447121296, + 6447120144, 6443742160, - 6447120640, - 6457190896, - 6457192720, - 6447121888, - 6447124064, - 6447124048 + 6447120864, + 6457193088, + 6457194912, + 6447122080, + 6447124288, + 6447124256 ], "bases": [ { @@ -185569,7 +185595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468593856, + "complete_object_locator": 6468597952, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -185578,17 +185604,17 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>::CProtobufBinding", - "vtable_address": 6466062968, - "methods": [ - 6451199984, - 6451202768, - 6451229040, - 6451198976, - 6451198992, - 6451196704, - 6451175696, - 6451208208, - 6451205792 + "vtable_address": 6466067168, + "methods": [ + 6451201552, + 6451204336, + 6451230608, + 6451200544, + 6451200560, + 6451198272, + 6451177264, + 6451209776, + 6451207360 ], "bases": [ { @@ -185608,7 +185634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468593896, + "complete_object_locator": 6468597992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185617,7 +185643,7 @@ }, { "type_name": "CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0>", - "vtable_address": 6464397656, + "vtable_address": 6464401752, "methods": [ 6443723712, 6443727136, @@ -185685,7 +185711,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468211648, + "complete_object_locator": 6468215744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -185694,25 +185720,25 @@ }, { "type_name": "CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0>", - "vtable_address": 6464397704, + "vtable_address": 6464401800, "methods": [ 6443723652, - 6457189536, + 6457191728, 6443741696, - 6447414144, - 6447414224, - 6457189584, - 6457186560, - 6447414240, + 6447414368, + 6447414448, + 6457191776, + 6457188752, + 6447414464, 6443734384, - 6447414384, + 6447414608, 6443742160, - 6447414960, - 6457190896, - 6457192720, - 6447415456, - 6447415648, - 6447415632 + 6447415184, + 6457193088, + 6457194912, + 6447415680, + 6447415872, + 6447415856 ], "bases": [ { @@ -185774,7 +185800,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468211936, + "complete_object_locator": 6468216032, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -185783,7 +185809,7 @@ }, { "type_name": "CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0>::CProtobufBinding", - "vtable_address": 6464398880, + "vtable_address": 6464402976, "methods": [ 6443734736, 6443736912, @@ -185813,7 +185839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468211976, + "complete_object_locator": 6468216072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185822,13 +185848,13 @@ }, { "type_name": "CNetworkFieldScratchData", - "vtable_address": 6467179896, + "vtable_address": 6467183960, "methods": [ - 6459912992, - 6459962864, - 6459919040, - 6459977472, - 6459973984 + 6459915184, + 6459965056, + 6459921232, + 6459979664, + 6459976176 ], "bases": [ { @@ -185848,7 +185874,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468938248, + "complete_object_locator": 6468942344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185857,13 +185883,13 @@ }, { "type_name": "CNetworkSerializerBindingBuildFilter", - "vtable_address": 6467192576, + "vtable_address": 6467196640, "methods": [ - 6460066912, - 6460067792, - 6460067776, - 6460068256, - 6460067968 + 6460069104, + 6460069984, + 6460069968, + 6460070448, + 6460070160 ], "bases": [ { @@ -185883,7 +185909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468938928, + "complete_object_locator": 6468943024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185892,7 +185918,7 @@ }, { "type_name": "CNetworkTransmitComponent", - "vtable_address": 6464456536, + "vtable_address": 6464460632, "methods": [ 6443967248, 6443986432, @@ -185916,7 +185942,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468229824, + "complete_object_locator": 6468233920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185925,16 +185951,16 @@ }, { "type_name": "CNewParticleEffect", - "vtable_address": 6467720720, + "vtable_address": 6467724816, "methods": [ - 6462478608, - 6462470912, - 6462479936, - 6462479792, - 6462479776, - 6462479728, - 6462476880, - 6462476480 + 6462480800, + 6462473104, + 6462482128, + 6462481984, + 6462481968, + 6462481920, + 6462479072, + 6462478672 ], "bases": [ { @@ -185954,7 +185980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468986592, + "complete_object_locator": 6468990688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -185963,22 +185989,22 @@ }, { "type_name": "CNmAdditiveBlendTask", - "vtable_address": 6466990384, + "vtable_address": 6466994448, "methods": [ - 6458193664, - 6458193232, - 6458472656, - 6458471888, + 6458195856, + 6458195424, + 6458474848, + 6458474080, 6447722784, 6447716640, - 6458193552, - 6458477696, - 6458471968, - 6458193584, - 6458477408, - 6458193568, - 6458193648, - 6458472320 + 6458195744, + 6458479888, + 6458474160, + 6458195776, + 6458479600, + 6458195760, + 6458195840, + 6458474512 ], "bases": [ { @@ -186012,7 +186038,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468837896, + "complete_object_locator": 6468841992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186021,7 +186047,7 @@ }, { "type_name": "CNmAimCSNode", - "vtable_address": 6465259040, + "vtable_address": 6465263120, "methods": [ 6447706032, 6447720032, @@ -186031,7 +186057,7 @@ 6447722320, 6447717616, 6447723664, - 6457927504, + 6457929696, 6447717424, 6447724688, 6447712016 @@ -186082,7 +186108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468423520, + "complete_object_locator": 6468427616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186091,7 +186117,7 @@ }, { "type_name": "CNmAimCSNode::CDefinition", - "vtable_address": 6465258976, + "vtable_address": 6465263056, "methods": [ 6447722800, 6447720704, @@ -186147,7 +186173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468423664, + "complete_object_locator": 6468427760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186156,12 +186182,12 @@ }, { "type_name": "CNmAimCSTask", - "vtable_address": 6465258848, + "vtable_address": 6465262928, "methods": [ 6447722944, 6447706096, 6447712784, - 6457925952, + 6457928144, 6447722784, 6447716640, 6447706416, @@ -186191,7 +186217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468423392, + "complete_object_locator": 6468427488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186200,19 +186226,19 @@ }, { "type_name": "CNmAndNode", - "vtable_address": 6467009168, + "vtable_address": 6467013232, "methods": [ - 6458534096, + 6458536288, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458535392, - 6458536528, - 6458407808, - 6458534864, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458537584, + 6458538720, + 6458410000, + 6458537056, + 6458411168 ], "bases": [ { @@ -186260,7 +186286,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468855376, + "complete_object_locator": 6468859472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186269,15 +186295,15 @@ }, { "type_name": "CNmAndNode::CDefinition", - "vtable_address": 6466995584, + "vtable_address": 6466999648, "methods": [ - 6458266368, - 6458263936, - 6458262672, - 6458263888, - 6458261888, - 6458535744, - 6458262608 + 6458268560, + 6458266128, + 6458264864, + 6458266080, + 6458264080, + 6458537936, + 6458264800 ], "bases": [ { @@ -186325,7 +186351,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468841464, + "complete_object_locator": 6468845560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186334,19 +186360,19 @@ }, { "type_name": "CNmAnimationPoseNode", - "vtable_address": 6467012392, + "vtable_address": 6467016456, "methods": [ - 6458560896, - 6458562048, + 6458563088, + 6458564240, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6458562080, - 6458561088, - 6458561136, - 6458562144, + 6458564272, + 6458563280, + 6458563328, + 6458564336, 6447712016 ], "bases": [ @@ -186381,7 +186407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468859184, + "complete_object_locator": 6468863280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186390,15 +186416,15 @@ }, { "type_name": "CNmAnimationPoseNode::CDefinition", - "vtable_address": 6466999256, + "vtable_address": 6467003320, "methods": [ - 6458313808, - 6458310848, - 6458309760, - 6458310800, - 6458309568, - 6458561312, - 6458309712 + 6458316000, + 6458313040, + 6458311952, + 6458312992, + 6458311760, + 6458563504, + 6458311904 ], "bases": [ { @@ -186432,7 +186458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845272, + "complete_object_locator": 6468849368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186441,19 +186467,19 @@ }, { "type_name": "CNmBlend1DNode", - "vtable_address": 6467008432, + "vtable_address": 6467012496, "methods": [ - 6458512912, - 6458516512, + 6458515104, + 6458518704, 6447716656, 6447717392, - 6458516544, - 6458516800, + 6458518736, + 6458518992, 6447717616, - 6458517232, - 6458515072, - 6458515088, - 6458517376, + 6458519424, + 6458517264, + 6458517280, + 6458519568, 6447712016 ], "bases": [ @@ -186502,7 +186528,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468854280, + "complete_object_locator": 6468858376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186511,15 +186537,15 @@ }, { "type_name": "CNmBlend1DNode::CDefinition", - "vtable_address": 6466994208, + "vtable_address": 6466998272, "methods": [ - 6458237616, - 6458232176, - 6458230912, - 6458231968, - 6458229520, - 6458515808, - 6458230496 + 6458239808, + 6458234368, + 6458233104, + 6458234160, + 6458231712, + 6458518000, + 6458232688 ], "bases": [ { @@ -186567,7 +186593,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468840368, + "complete_object_locator": 6468844464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186576,19 +186602,19 @@ }, { "type_name": "CNmBlend2DNode", - "vtable_address": 6467008640, + "vtable_address": 6467012704, "methods": [ - 6458522016, - 6458525712, + 6458524208, + 6458527904, 6447716656, 6447717392, - 6458525824, - 6458525968, + 6458528016, + 6458528160, 6447717616, - 6458526160, - 6458524848, - 6458524864, - 6458526368, + 6458528352, + 6458527040, + 6458527056, + 6458528560, 6447712016 ], "bases": [ @@ -186623,7 +186649,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468854568, + "complete_object_locator": 6468858664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186632,15 +186658,15 @@ }, { "type_name": "CNmBlend2DNode::CDefinition", - "vtable_address": 6466994696, + "vtable_address": 6466998760, "methods": [ + 6458248272, + 6458246096, + 6458244816, 6458246080, - 6458243904, - 6458242624, - 6458243888, - 6458240560, - 6458525056, - 6458241632 + 6458242752, + 6458527248, + 6458243824 ], "bases": [ { @@ -186674,7 +186700,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468840656, + "complete_object_locator": 6468844752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186683,22 +186709,22 @@ }, { "type_name": "CNmBlendTask", - "vtable_address": 6466990128, + "vtable_address": 6466994192, "methods": [ - 6458193712, - 6458193296, - 6458474784, - 6458471888, + 6458195904, + 6458195488, + 6458476976, + 6458474080, 6447722784, 6447716640, - 6458193552, - 6458477696, - 6458471968, - 6458193600, - 6458477504, - 6458193568, - 6458193648, - 6458472320 + 6458195744, + 6458479888, + 6458474160, + 6458195792, + 6458479696, + 6458195760, + 6458195840, + 6458474512 ], "bases": [ { @@ -186732,7 +186758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468837624, + "complete_object_locator": 6468841720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186741,22 +186767,22 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 6466990008, + "vtable_address": 6466994072, "methods": [ - 6458193760, - 6458193360, - 6463705588, - 6458471888, + 6458195952, + 6458195552, + 6463707780, + 6458474080, 6447722784, 6447716640, - 6458193552, - 6458477696, - 6458471968, + 6458195744, + 6458479888, + 6458474160, 6447716240, 6447716288, - 6458193568, - 6458193648, - 6458472320 + 6458195760, + 6458195840, + 6458474512 ], "bases": [ { @@ -186776,7 +186802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468837496, + "complete_object_locator": 6468841592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186785,15 +186811,15 @@ }, { "type_name": "CNmBodyGroupEvent", - "vtable_address": 6466992344, + "vtable_address": 6466996408, "methods": [ - 6458200400, - 6458200176, - 6458199840, - 6458200160, - 6458199696, - 6457958768, - 6458199760 + 6458202592, + 6458202368, + 6458202032, + 6458202352, + 6458201888, + 6457960960, + 6458201952 ], "bases": [ { @@ -186813,7 +186839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839064, + "complete_object_locator": 6468843160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186822,19 +186848,19 @@ }, { "type_name": "CNmBoneMaskBlendNode", - "vtable_address": 6467008936, + "vtable_address": 6467013000, "methods": [ - 6458529808, + 6458532000, 6447720016, - 6458531584, - 6457909504, - 6457910096, - 6457910720, - 6458531600, - 6458533856, - 6458407968, - 6458530480, - 6458408976 + 6458533776, + 6457911696, + 6457912288, + 6457912912, + 6458533792, + 6458536048, + 6458410160, + 6458532672, + 6458411168 ], "bases": [ { @@ -186882,7 +186908,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468855088, + "complete_object_locator": 6468859184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186891,15 +186917,15 @@ }, { "type_name": "CNmBoneMaskBlendNode::CDefinition", - "vtable_address": 6466995336, + "vtable_address": 6466999400, "methods": [ - 6458257376, - 6458254368, - 6458252208, - 6458254304, - 6458250704, - 6458531936, - 6458251632 + 6458259568, + 6458256560, + 6458254400, + 6458256496, + 6458252896, + 6458534128, + 6458253824 ], "bases": [ { @@ -186947,7 +186973,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468841176, + "complete_object_locator": 6468845272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -186956,19 +186982,19 @@ }, { "type_name": "CNmBoneMaskNode", - "vtable_address": 6467008744, + "vtable_address": 6467012808, "methods": [ - 6458529936, + 6458532128, 6447720016, - 6458531584, - 6457909504, - 6457910096, - 6457910720, - 6458531680, - 6457910880, - 6458407968, - 6458530688, - 6458408976 + 6458533776, + 6457911696, + 6457912288, + 6457912912, + 6458533872, + 6457913072, + 6458410160, + 6458532880, + 6458411168 ], "bases": [ { @@ -187016,7 +187042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468854800, + "complete_object_locator": 6468858896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187025,15 +187051,15 @@ }, { "type_name": "CNmBoneMaskNode::CDefinition", - "vtable_address": 6466995208, + "vtable_address": 6466999272, "methods": [ - 6458257424, - 6458254528, - 6458252448, - 6458254320, - 6458250752, - 6458532144, - 6458251648 + 6458259616, + 6458256720, + 6458254640, + 6458256512, + 6458252944, + 6458534336, + 6458253840 ], "bases": [ { @@ -187081,7 +187107,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468840888, + "complete_object_locator": 6468844984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187090,19 +187116,19 @@ }, { "type_name": "CNmBoneMaskSelectorNode", - "vtable_address": 6467009032, + "vtable_address": 6467013096, "methods": [ - 6458530064, + 6458532256, 6447720016, - 6458531584, - 6457909504, - 6458533344, - 6458533536, - 6458531696, - 6458533936, - 6458407968, - 6458530768, - 6458408976 + 6458533776, + 6457911696, + 6458535536, + 6458535728, + 6458533888, + 6458536128, + 6458410160, + 6458532960, + 6458411168 ], "bases": [ { @@ -187150,7 +187176,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468855232, + "complete_object_locator": 6468859328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187159,15 +187185,15 @@ }, { "type_name": "CNmBoneMaskSelectorNode::CDefinition", - "vtable_address": 6466995400, + "vtable_address": 6466999464, "methods": [ - 6458257472, - 6458254736, - 6458252464, - 6458254336, - 6458250800, - 6458532480, - 6458251664 + 6458259664, + 6458256928, + 6458254656, + 6458256528, + 6458252992, + 6458534672, + 6458253856 ], "bases": [ { @@ -187215,7 +187241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468841320, + "complete_object_locator": 6468845416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187224,19 +187250,19 @@ }, { "type_name": "CNmCachedBoolNode", - "vtable_address": 6467003400, + "vtable_address": 6467007464, "methods": [ - 6458404112, + 6458406304, 6447720016, - 6458405520, - 6457909504, - 6458406832, - 6458408000, - 6458405600, - 6458408992, - 6458407808, - 6458404672, - 6458408976 + 6458407712, + 6457911696, + 6458409024, + 6458410192, + 6458407792, + 6458411184, + 6458410000, + 6458406864, + 6458411168 ], "bases": [ { @@ -187284,7 +187310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468847832, + "complete_object_locator": 6468851928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187293,15 +187319,15 @@ }, { "type_name": "CNmCachedBoolNode::CDefinition", - "vtable_address": 6466973456, + "vtable_address": 6466977520, "methods": [ - 6457994592, - 6457989072, - 6457987632, - 6457988992, - 6457987312, - 6458406256, - 6457987552 + 6457996784, + 6457991264, + 6457989824, + 6457991184, + 6457989504, + 6458408448, + 6457989744 ], "bases": [ { @@ -187349,7 +187375,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468831040, + "complete_object_locator": 6468835136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187358,19 +187384,19 @@ }, { "type_name": "CNmCachedFloatNode", - "vtable_address": 6467003592, + "vtable_address": 6467007656, "methods": [ - 6458404176, + 6458406368, 6447720016, - 6458405536, - 6457909504, - 6458407104, - 6458408096, - 6458405712, - 6458409040, - 6458407840, - 6458404816, - 6458408976 + 6458407728, + 6457911696, + 6458409296, + 6458410288, + 6458407904, + 6458411232, + 6458410032, + 6458407008, + 6458411168 ], "bases": [ { @@ -187418,7 +187444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468848120, + "complete_object_locator": 6468852216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187427,15 +187453,15 @@ }, { "type_name": "CNmCachedFloatNode::CDefinition", - "vtable_address": 6466973584, + "vtable_address": 6466977648, "methods": [ - 6457994640, - 6457989200, - 6457987904, - 6457989008, - 6457987360, - 6458406352, - 6457987568 + 6457996832, + 6457991392, + 6457990096, + 6457991200, + 6457989552, + 6458408544, + 6457989760 ], "bases": [ { @@ -187483,7 +187509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468831328, + "complete_object_locator": 6468835424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187492,19 +187518,19 @@ }, { "type_name": "CNmCachedIDNode", - "vtable_address": 6467003496, + "vtable_address": 6467007560, "methods": [ - 6458404240, + 6458406432, 6447720016, - 6458405552, - 6457909504, - 6458407264, - 6458408192, - 6458405824, - 6458409088, - 6458407872, - 6458404976, - 6458408976 + 6458407744, + 6457911696, + 6458409456, + 6458410384, + 6458408016, + 6458411280, + 6458410064, + 6458407168, + 6458411168 ], "bases": [ { @@ -187552,7 +187578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468847976, + "complete_object_locator": 6468852072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187561,15 +187587,15 @@ }, { "type_name": "CNmCachedIDNode::CDefinition", - "vtable_address": 6466973520, + "vtable_address": 6466977584, "methods": [ - 6457994688, - 6457989328, - 6457988176, - 6457989024, - 6457987408, - 6458406464, - 6457987584 + 6457996880, + 6457991520, + 6457990368, + 6457991216, + 6457989600, + 6458408656, + 6457989776 ], "bases": [ { @@ -187617,7 +187643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468831184, + "complete_object_locator": 6468835280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187626,22 +187652,22 @@ }, { "type_name": "CNmCachedPoseReadTask", - "vtable_address": 6466990848, + "vtable_address": 6466994912, "methods": [ - 6458194832, - 6458194608, - 6458479456, - 6457925952, + 6458197024, + 6458196800, + 6458481648, + 6457928144, 6447722784, 6447716640, - 6458194736, - 6458479856, - 6458478688, - 6458194800, + 6458196928, + 6458482048, + 6458480880, + 6458196992, 6447716288, - 6458194768, + 6458196960, 6447716272, - 6457926016 + 6457928208 ], "bases": [ { @@ -187661,7 +187687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838296, + "complete_object_locator": 6468842392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187670,22 +187696,22 @@ }, { "type_name": "CNmCachedPoseWriteTask", - "vtable_address": 6466990704, + "vtable_address": 6466994768, "methods": [ - 6458194880, - 6458194672, - 6458479680, - 6457925952, + 6458197072, + 6458196864, + 6458481872, + 6457928144, 6447722784, 6447716640, - 6458194752, - 6458480240, - 6458479008, - 6458194816, + 6458196944, + 6458482432, + 6458481200, + 6458197008, 6447716288, - 6458194784, + 6458196976, 6447716272, - 6457926016 + 6457928208 ], "bases": [ { @@ -187705,7 +187731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838168, + "complete_object_locator": 6468842264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187714,19 +187740,19 @@ }, { "type_name": "CNmCachedTargetNode", - "vtable_address": 6467003784, + "vtable_address": 6467007848, "methods": [ - 6458404304, + 6458406496, 6447720016, - 6458405568, - 6457909504, - 6458407440, - 6458408384, - 6458405936, - 6458409136, - 6458407904, - 6458405136, - 6458408976 + 6458407760, + 6457911696, + 6458409632, + 6458410576, + 6458408128, + 6458411328, + 6458410096, + 6458407328, + 6458411168 ], "bases": [ { @@ -187774,7 +187800,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468848408, + "complete_object_locator": 6468852504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187783,15 +187809,15 @@ }, { "type_name": "CNmCachedTargetNode::CDefinition", - "vtable_address": 6466973712, + "vtable_address": 6466977776, "methods": [ - 6457994736, - 6457989456, - 6457988448, - 6457989040, - 6457987456, - 6458406576, - 6457987600 + 6457996928, + 6457991648, + 6457990640, + 6457991232, + 6457989648, + 6458408768, + 6457989792 ], "bases": [ { @@ -187839,7 +187865,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468831616, + "complete_object_locator": 6468835712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187848,19 +187874,19 @@ }, { "type_name": "CNmCachedVectorNode", - "vtable_address": 6467003688, + "vtable_address": 6467007752, "methods": [ - 6458404368, + 6458406560, 6447720016, - 6458405584, - 6457909504, - 6458407616, - 6458408864, - 6458406144, - 6458409184, - 6458407984, - 6458405392, - 6458408976 + 6458407776, + 6457911696, + 6458409808, + 6458411056, + 6458408336, + 6458411376, + 6458410176, + 6458407584, + 6458411168 ], "bases": [ { @@ -187908,7 +187934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468848264, + "complete_object_locator": 6468852360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187917,15 +187943,15 @@ }, { "type_name": "CNmCachedVectorNode::CDefinition", - "vtable_address": 6466973648, + "vtable_address": 6466977712, "methods": [ - 6457994784, - 6457989584, - 6457988720, - 6457989056, - 6457987504, - 6458406720, - 6457987616 + 6457996976, + 6457991776, + 6457990912, + 6457991248, + 6457989696, + 6458408912, + 6457989808 ], "bases": [ { @@ -187973,7 +187999,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468831472, + "complete_object_locator": 6468835568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -187982,19 +188008,19 @@ }, { "type_name": "CNmChainLookatNode", - "vtable_address": 6467009456, + "vtable_address": 6467013520, "methods": [ - 6458536992, + 6458539184, 6447720032, 6447716656, 6447717392, - 6458537552, - 6458538128, + 6458539744, + 6458540320, 6447717616, - 6458538256, - 6457927504, - 6458537056, - 6458538336, + 6458540448, + 6457929696, + 6458539248, + 6458540528, 6447712016 ], "bases": [ @@ -188043,7 +188069,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468855808, + "complete_object_locator": 6468859904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188052,15 +188078,15 @@ }, { "type_name": "CNmChainLookatNode::CDefinition", - "vtable_address": 6466996024, + "vtable_address": 6467000088, "methods": [ - 6458270048, - 6458268352, - 6458267104, - 6458268336, - 6458267040, - 6458537328, - 6458267088 + 6458272240, + 6458270544, + 6458269296, + 6458270528, + 6458269232, + 6458539520, + 6458269280 ], "bases": [ { @@ -188108,7 +188134,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468841896, + "complete_object_locator": 6468845992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188117,22 +188143,22 @@ }, { "type_name": "CNmChainLookatTask", - "vtable_address": 6466991296, + "vtable_address": 6466995360, "methods": [ - 6458195472, - 6458195360, - 6458482288, - 6457925952, + 6458197664, + 6458197552, + 6458484480, + 6457928144, 6447722784, 6447716640, - 6458195424, - 6458486720, - 6458481360, - 6458195456, + 6458197616, + 6458488912, + 6458483552, + 6458197648, 6447716288, - 6458195440, + 6458197632, 6447716272, - 6458481776 + 6458483968 ], "bases": [ { @@ -188152,7 +188178,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838424, + "complete_object_locator": 6468842520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188161,22 +188187,22 @@ }, { "type_name": "CNmChainSolverTask", - "vtable_address": 6466991672, + "vtable_address": 6466995736, "methods": [ - 6458196240, - 6458196128, - 6458489888, - 6457925952, + 6458198432, + 6458198320, + 6458492080, + 6457928144, 6447722784, 6447716640, - 6458196192, - 6458496128, - 6458488528, - 6458196224, - 6458493120, - 6458196208, + 6458198384, + 6458498320, + 6458490720, + 6458198416, + 6458495312, + 6458198400, 6447716272, - 6458489344 + 6458491536 ], "bases": [ { @@ -188196,7 +188222,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838552, + "complete_object_locator": 6468842648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188205,24 +188231,24 @@ }, { "type_name": "CNmClipNode", - "vtable_address": 6467009736, + "vtable_address": 6467013800, "methods": [ - 6458539680, - 6458545600, + 6458541872, + 6458547792, 6447716656, 6447717392, - 6458545936, - 6458546192, + 6458548128, + 6458548384, 6447717616, - 6458546272, - 6458543632, - 6458544544, - 6458546576, + 6458548464, + 6458545824, + 6458546736, + 6458548768, 6447712016, - 6458544464, - 6458543136, - 6458543120, - 6458545584 + 6458546656, + 6458545328, + 6458545312, + 6458547776 ], "bases": [ { @@ -188270,7 +188296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468856048, + "complete_object_locator": 6468860144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188279,15 +188305,15 @@ }, { "type_name": "CNmClipNode::CDefinition", - "vtable_address": 6466996344, + "vtable_address": 6467000408, "methods": [ - 6458272832, - 6458271472, - 6458270560, - 6458271456, - 6458270496, - 6458544800, - 6458270544 + 6458275024, + 6458273664, + 6458272752, + 6458273648, + 6458272688, + 6458546992, + 6458272736 ], "bases": [ { @@ -188335,7 +188361,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468842136, + "complete_object_locator": 6468846232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188344,24 +188370,24 @@ }, { "type_name": "CNmClipSelectorNode", - "vtable_address": 6467012912, + "vtable_address": 6467016976, "methods": [ - 6458568512, - 6458573600, + 6458570704, + 6458575792, 6447716656, 6447717392, - 6458574160, - 6458574352, + 6458576352, + 6458576544, 6447717616, - 6458579184, - 6458570656, - 6458570848, - 6458579472, + 6458581376, + 6458572848, + 6458573040, + 6458581664, 6447712016, - 6458570784, - 6458570592, - 6458569184, - 6458573536 + 6458572976, + 6458572784, + 6458571376, + 6458575728 ], "bases": [ { @@ -188409,7 +188435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468859736, + "complete_object_locator": 6468863832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188418,15 +188444,15 @@ }, { "type_name": "CNmClipSelectorNode::CDefinition", - "vtable_address": 6467000048, + "vtable_address": 6467004112, "methods": [ - 6458332304, - 6458327632, - 6458326224, - 6458327568, - 6458324480, - 6458571840, - 6458326128 + 6458334496, + 6458329824, + 6458328416, + 6458329760, + 6458326672, + 6458574032, + 6458328320 ], "bases": [ { @@ -188474,7 +188500,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845824, + "complete_object_locator": 6468849920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188483,19 +188509,19 @@ }, { "type_name": "CNmConstBoolNode", - "vtable_address": 6467010064, + "vtable_address": 6467014128, "methods": [ - 6458547328, + 6458549520, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6457909568, - 6457910880, - 6458407808, - 6458547648, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6457911760, + 6457913072, + 6458410000, + 6458549840, + 6458411168 ], "bases": [ { @@ -188543,7 +188569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468856192, + "complete_object_locator": 6468860288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188552,15 +188578,15 @@ }, { "type_name": "CNmConstBoolNode::CDefinition", - "vtable_address": 6466996664, + "vtable_address": 6467000728, "methods": [ - 6458284384, - 6458283136, - 6458279648, - 6458283056, - 6458279328, - 6458548000, - 6458279568 + 6458286576, + 6458285328, + 6458281840, + 6458285248, + 6458281520, + 6458550192, + 6458281760 ], "bases": [ { @@ -188608,7 +188634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468842280, + "complete_object_locator": 6468846376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188617,19 +188643,19 @@ }, { "type_name": "CNmConstFloatNode", - "vtable_address": 6467010256, + "vtable_address": 6467014320, "methods": [ - 6458547392, + 6458549584, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6457909568, - 6457910880, - 6458407840, - 6458547712, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6457911760, + 6457913072, + 6458410032, + 6458549904, + 6458411168 ], "bases": [ { @@ -188677,7 +188703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468856480, + "complete_object_locator": 6468860576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188686,15 +188712,15 @@ }, { "type_name": "CNmConstFloatNode::CDefinition", - "vtable_address": 6466996792, + "vtable_address": 6467000856, "methods": [ - 6458284432, - 6458283360, - 6458279664, - 6458283072, - 6458279376, - 6458548048, - 6458279584 + 6458286624, + 6458285552, + 6458281856, + 6458285264, + 6458281568, + 6458550240, + 6458281776 ], "bases": [ { @@ -188742,7 +188768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468842568, + "complete_object_locator": 6468846664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188751,19 +188777,19 @@ }, { "type_name": "CNmConstIDNode", - "vtable_address": 6467010160, + "vtable_address": 6467014224, "methods": [ - 6458547456, + 6458549648, 6447720016, - 6458405552, - 6457909504, - 6457910096, - 6457910720, - 6457909568, - 6457910880, - 6458407872, - 6458547776, - 6458408976 + 6458407744, + 6457911696, + 6457912288, + 6457912912, + 6457911760, + 6457913072, + 6458410064, + 6458549968, + 6458411168 ], "bases": [ { @@ -188811,7 +188837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468856336, + "complete_object_locator": 6468860432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188820,15 +188846,15 @@ }, { "type_name": "CNmConstIDNode::CDefinition", - "vtable_address": 6466996728, + "vtable_address": 6467000792, "methods": [ - 6458284480, - 6458283600, - 6458279680, - 6458283088, - 6458279424, - 6458548096, - 6458279600 + 6458286672, + 6458285792, + 6458281872, + 6458285280, + 6458281616, + 6458550288, + 6458281792 ], "bases": [ { @@ -188876,7 +188902,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468842424, + "complete_object_locator": 6468846520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188885,19 +188911,19 @@ }, { "type_name": "CNmConstTargetNode", - "vtable_address": 6467010448, + "vtable_address": 6467014512, "methods": [ - 6458547520, + 6458549712, 6447720016, - 6458405568, - 6457909504, - 6457910096, - 6457910720, - 6457909568, - 6457910880, - 6458407904, - 6458547840, - 6458408976 + 6458407760, + 6457911696, + 6457912288, + 6457912912, + 6457911760, + 6457913072, + 6458410096, + 6458550032, + 6458411168 ], "bases": [ { @@ -188945,7 +188971,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468856768, + "complete_object_locator": 6468860864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -188954,15 +188980,15 @@ }, { "type_name": "CNmConstTargetNode::CDefinition", - "vtable_address": 6466996920, + "vtable_address": 6467000984, "methods": [ - 6458284528, - 6458283808, - 6458279696, - 6458283104, - 6458279472, - 6458548144, - 6458279616 + 6458286720, + 6458286000, + 6458281888, + 6458285296, + 6458281664, + 6458550336, + 6458281808 ], "bases": [ { @@ -189010,7 +189036,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468842856, + "complete_object_locator": 6468846952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189019,19 +189045,19 @@ }, { "type_name": "CNmConstVectorNode", - "vtable_address": 6467010352, + "vtable_address": 6467014416, "methods": [ - 6458547584, + 6458549776, 6447720016, - 6458405584, - 6457909504, - 6457910096, - 6457910720, - 6457909568, - 6457910880, - 6458407984, - 6458547936, - 6458408976 + 6458407776, + 6457911696, + 6457912288, + 6457912912, + 6457911760, + 6457913072, + 6458410176, + 6458550128, + 6458411168 ], "bases": [ { @@ -189079,7 +189105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468856624, + "complete_object_locator": 6468860720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189088,15 +189114,15 @@ }, { "type_name": "CNmConstVectorNode::CDefinition", - "vtable_address": 6466996856, + "vtable_address": 6467000920, "methods": [ - 6458284576, - 6458284192, - 6458280032, - 6458283120, - 6458279520, - 6458548192, - 6458279632 + 6458286768, + 6458286384, + 6458282224, + 6458285312, + 6458281712, + 6458550384, + 6458281824 ], "bases": [ { @@ -189144,7 +189170,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468842712, + "complete_object_locator": 6468846808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189153,19 +189179,19 @@ }, { "type_name": "CNmControlParameterBoolNode", - "vtable_address": 6467010544, + "vtable_address": 6467014608, "methods": [ - 6458548240, + 6458550432, 6447720016, - 6458405520, - 6457909504, - 6458551568, - 6458551952, - 6457909568, - 6457910880, - 6458407808, - 6458549008, - 6458552816 + 6458407712, + 6457911696, + 6458553760, + 6458554144, + 6457911760, + 6457913072, + 6458410000, + 6458551200, + 6458555008 ], "bases": [ { @@ -189213,7 +189239,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468856912, + "complete_object_locator": 6468861008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189222,15 +189248,15 @@ }, { "type_name": "CNmControlParameterBoolNode::CDefinition", - "vtable_address": 6466997672, + "vtable_address": 6467001736, "methods": [ - 6458300128, - 6458290480, - 6458288416, - 6458290304, - 6458287712, - 6458550496, - 6458288240 + 6458302320, + 6458292672, + 6458290608, + 6458292496, + 6458289904, + 6458552688, + 6458290432 ], "bases": [ { @@ -189278,7 +189304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468843000, + "complete_object_locator": 6468847096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189287,19 +189313,19 @@ }, { "type_name": "CNmControlParameterFloatNode", - "vtable_address": 6467010736, + "vtable_address": 6467014800, "methods": [ - 6458548304, + 6458550496, 6447720016, - 6458405536, - 6457909504, - 6458551712, - 6458552016, - 6457909568, - 6457910880, - 6458407840, - 6458549072, - 6458552832 + 6458407728, + 6457911696, + 6458553904, + 6458554208, + 6457911760, + 6457913072, + 6458410032, + 6458551264, + 6458555024 ], "bases": [ { @@ -189347,7 +189373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468857200, + "complete_object_locator": 6468861296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189356,15 +189382,15 @@ }, { "type_name": "CNmControlParameterFloatNode::CDefinition", - "vtable_address": 6466997800, + "vtable_address": 6467001864, "methods": [ - 6458300176, - 6458290496, - 6458288544, - 6458290320, - 6458287760, - 6458550560, - 6458288256 + 6458302368, + 6458292688, + 6458290736, + 6458292512, + 6458289952, + 6458552752, + 6458290448 ], "bases": [ { @@ -189412,7 +189438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468843288, + "complete_object_locator": 6468847384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189421,19 +189447,19 @@ }, { "type_name": "CNmControlParameterIDNode", - "vtable_address": 6467010640, + "vtable_address": 6467014704, "methods": [ - 6458548368, + 6458550560, 6447720016, - 6458405552, - 6457909504, - 6458551760, - 6458552096, - 6457909568, - 6457910880, - 6458407872, - 6458549136, - 6458552848 + 6458407744, + 6457911696, + 6458553952, + 6458554288, + 6457911760, + 6457913072, + 6458410064, + 6458551328, + 6458555040 ], "bases": [ { @@ -189481,7 +189507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468857056, + "complete_object_locator": 6468861152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189490,15 +189516,15 @@ }, { "type_name": "CNmControlParameterIDNode::CDefinition", - "vtable_address": 6466997736, + "vtable_address": 6467001800, "methods": [ - 6458300224, - 6458290512, - 6458288672, - 6458290336, - 6458287808, - 6458550624, - 6458288272 + 6458302416, + 6458292704, + 6458290864, + 6458292528, + 6458290000, + 6458552816, + 6458290464 ], "bases": [ { @@ -189546,7 +189572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468843144, + "complete_object_locator": 6468847240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189555,19 +189581,19 @@ }, { "type_name": "CNmControlParameterTargetNode", - "vtable_address": 6467010928, + "vtable_address": 6467014992, "methods": [ - 6458548432, + 6458550624, 6447720016, - 6458405568, - 6457909504, - 6458551824, - 6458552256, - 6457909568, - 6457910880, - 6458407904, - 6458549216, - 6458552864 + 6458407760, + 6457911696, + 6458554016, + 6458554448, + 6457911760, + 6457913072, + 6458410096, + 6458551408, + 6458555056 ], "bases": [ { @@ -189615,7 +189641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468857488, + "complete_object_locator": 6468861584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189624,15 +189650,15 @@ }, { "type_name": "CNmControlParameterTargetNode::CDefinition", - "vtable_address": 6466997928, + "vtable_address": 6467001992, "methods": [ - 6458300272, - 6458290528, - 6458288800, - 6458290352, - 6458287856, - 6458550688, - 6458288288 + 6458302464, + 6458292720, + 6458290992, + 6458292544, + 6458290048, + 6458552880, + 6458290480 ], "bases": [ { @@ -189680,7 +189706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468843576, + "complete_object_locator": 6468847672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189689,19 +189715,19 @@ }, { "type_name": "CNmControlParameterVectorNode", - "vtable_address": 6467010832, + "vtable_address": 6467014896, "methods": [ - 6458548496, + 6458550688, 6447720016, - 6458405584, - 6457909504, - 6458551872, - 6458552720, - 6457909568, - 6457910880, - 6458407984, - 6458549312, - 6458552928 + 6458407776, + 6457911696, + 6458554064, + 6458554912, + 6457911760, + 6457913072, + 6458410176, + 6458551504, + 6458555120 ], "bases": [ { @@ -189749,7 +189775,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468857344, + "complete_object_locator": 6468861440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189758,15 +189784,15 @@ }, { "type_name": "CNmControlParameterVectorNode::CDefinition", - "vtable_address": 6466997864, + "vtable_address": 6467001928, "methods": [ - 6458300320, - 6458290544, - 6458288928, - 6458290368, - 6458287904, - 6458550816, - 6458288304 + 6458302512, + 6458292736, + 6458291120, + 6458292560, + 6458290096, + 6458553008, + 6458290496 ], "bases": [ { @@ -189814,7 +189840,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468843432, + "complete_object_locator": 6468847528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189823,19 +189849,19 @@ }, { "type_name": "CNmCurrentSyncEventIDNode", - "vtable_address": 6467004648, + "vtable_address": 6467008712, "methods": [ - 6458409776, + 6458411968, 6447720016, - 6458405552, - 6457909504, - 6457910096, - 6457910720, - 6458414432, - 6457910880, - 6458407872, - 6458410544, - 6458408976 + 6458407744, + 6457911696, + 6457912288, + 6457912912, + 6458416624, + 6457913072, + 6458410064, + 6458412736, + 6458411168 ], "bases": [ { @@ -189883,7 +189909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468849704, + "complete_object_locator": 6468853800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189892,15 +189918,15 @@ }, { "type_name": "CNmCurrentSyncEventIDNode::CDefinition", - "vtable_address": 6466976296, + "vtable_address": 6466980360, "methods": [ - 6458029776, - 6458015232, - 6458009840, - 6458015040, - 6458007360, - 6458414848, - 6458008928 + 6458031968, + 6458017424, + 6458012032, + 6458017232, + 6458009552, + 6458417040, + 6458011120 ], "bases": [ { @@ -189948,7 +189974,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468832912, + "complete_object_locator": 6468837008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -189957,19 +189983,19 @@ }, { "type_name": "CNmCurrentSyncEventNode", - "vtable_address": 6467004744, + "vtable_address": 6467008808, "methods": [ - 6458409840, + 6458412032, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458414464, - 6457910880, - 6458407840, - 6458410752, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458416656, + 6457913072, + 6458410032, + 6458412944, + 6458411168 ], "bases": [ { @@ -190017,7 +190043,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468849848, + "complete_object_locator": 6468853944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190026,15 +190052,15 @@ }, { "type_name": "CNmCurrentSyncEventNode::CDefinition", - "vtable_address": 6466976360, + "vtable_address": 6466980424, "methods": [ - 6458029824, - 6458015312, - 6458010048, - 6458015056, - 6458007408, - 6458414944, - 6458008944 + 6458032016, + 6458017504, + 6458012240, + 6458017248, + 6458009600, + 6458417136, + 6458011136 ], "bases": [ { @@ -190082,7 +190108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468833056, + "complete_object_locator": 6468837152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190091,21 +190117,21 @@ }, { "type_name": "CNmDurationScaleNode", - "vtable_address": 6467013440, + "vtable_address": 6467017504, "methods": [ - 6458580368, + 6458582560, 6447720032, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6458581744, - 6457927504, - 6458581120, - 6458581936, + 6458583936, + 6457929696, + 6458583312, + 6458584128, 6447712016, - 6458580560 + 6458582752 ], "bases": [ { @@ -190167,7 +190193,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468860416, + "complete_object_locator": 6468864512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190176,15 +190202,15 @@ }, { "type_name": "CNmDurationScaleNode::CDefinition", - "vtable_address": 6467000896, + "vtable_address": 6467004960, "methods": [ - 6458338704, - 6458335200, - 6458334096, - 6458335136, - 6458333840, - 6458581312, - 6458334032 + 6458340896, + 6458337392, + 6458336288, + 6458337328, + 6458336032, + 6458583504, + 6458336224 ], "bases": [ { @@ -190246,7 +190272,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468846544, + "complete_object_locator": 6468850640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190255,15 +190281,15 @@ }, { "type_name": "CNmEntityAttributeEventBase", - "vtable_address": 6466993280, + "vtable_address": 6466997344, "methods": [ - 6458220784, - 6458218368, - 6458217072, - 6458218320, - 6458216640, - 6457958768, - 6458216832 + 6458222976, + 6458220560, + 6458219264, + 6458220512, + 6458218832, + 6457960960, + 6458219024 ], "bases": [ { @@ -190283,7 +190309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839704, + "complete_object_locator": 6468843800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190292,15 +190318,15 @@ }, { "type_name": "CNmEntityAttributeFloatEvent", - "vtable_address": 6466993456, + "vtable_address": 6466997520, "methods": [ - 6458220832, - 6458218384, - 6458217088, - 6458218336, - 6458216704, - 6457958768, - 6458216912 + 6458223024, + 6458220576, + 6458219280, + 6458220528, + 6458218896, + 6457960960, + 6458219104 ], "bases": [ { @@ -190334,7 +190360,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839968, + "complete_object_locator": 6468844064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190343,15 +190369,15 @@ }, { "type_name": "CNmEntityAttributeIntEvent", - "vtable_address": 6466993368, + "vtable_address": 6466997432, "methods": [ - 6458220880, - 6458218768, - 6458217104, - 6458218352, - 6458216768, - 6457958768, - 6458216992 + 6458223072, + 6458220960, + 6458219296, + 6458220544, + 6458218960, + 6457960960, + 6458219184 ], "bases": [ { @@ -190385,7 +190411,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839832, + "complete_object_locator": 6468843928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190394,14 +190420,14 @@ }, { "type_name": "CNmEventConsumerAttributes", - "vtable_address": 6464849504, + "vtable_address": 6464853584, "methods": [ 6445570064, 6445566384, 6445565824, 6445566320, 6445565280, - 6450309360, + 6450310928, 6445565808 ], "bases": [ @@ -190422,7 +190448,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468289728, + "complete_object_locator": 6468293824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190431,15 +190457,15 @@ }, { "type_name": "CNmEventConsumerHudModelArmsAttributes", - "vtable_address": 6466740872, + "vtable_address": 6466744968, "methods": [ - 6455741392, - 6455729168, - 6455729024, - 6455729152, - 6455701760, - 6450309360, - 6455723584 + 6455743184, + 6455730960, + 6455730816, + 6455730944, + 6455703520, + 6450310928, + 6455725376 ], "bases": [ { @@ -190473,7 +190499,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774616, + "complete_object_locator": 6468778712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190482,14 +190508,14 @@ }, { "type_name": "CNmEventConsumerLegacy", - "vtable_address": 6464849568, + "vtable_address": 6464853648, "methods": [ 6445570112, 6445566400, 6445565920, 6445566336, 6445565440, - 6450309824 + 6450311392 ], "bases": [ { @@ -190509,7 +190535,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468289856, + "complete_object_locator": 6468293952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190518,14 +190544,14 @@ }, { "type_name": "CNmEventConsumerParticle", - "vtable_address": 6464849624, + "vtable_address": 6464853704, "methods": [ 6445570160, 6445566416, 6445566016, 6445566352, 6445565488, - 6450310768 + 6450312336 ], "bases": [ { @@ -190545,7 +190571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468289984, + "complete_object_locator": 6468294080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190554,14 +190580,14 @@ }, { "type_name": "CNmEventConsumerSound", - "vtable_address": 6464849680, + "vtable_address": 6464853760, "methods": [ 6445570208, 6445566432, 6445566112, 6445566368, 6445565648, - 6450311872 + 6450313440 ], "bases": [ { @@ -190581,7 +190607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468290112, + "complete_object_locator": 6468294208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190590,19 +190616,19 @@ }, { "type_name": "CNmExternalGraphNode", - "vtable_address": 6467011600, + "vtable_address": 6467015664, "methods": [ - 6458553232, + 6458555424, 6447720016, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6457910880, - 6458553296, - 6458553328, - 6458553504, + 6457913072, + 6458555488, + 6458555520, + 6458555696, 6447712016 ], "bases": [ @@ -190637,7 +190663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468858496, + "complete_object_locator": 6468862592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190646,15 +190672,15 @@ }, { "type_name": "CNmExternalGraphNode::CDefinition", - "vtable_address": 6466998432, + "vtable_address": 6467002496, "methods": [ - 6458301856, - 6458301136, - 6458300992, - 6458301120, - 6458300928, - 6458553424, - 6458300976 + 6458304048, + 6458303328, + 6458303184, + 6458303312, + 6458303120, + 6458555616, + 6458303168 ], "bases": [ { @@ -190688,7 +190714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468844584, + "complete_object_locator": 6468848680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190697,19 +190723,19 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode", - "vtable_address": 6467008840, + "vtable_address": 6467012904, "methods": [ - 6458530352, + 6458532544, 6447720016, - 6458531584, - 6457909504, - 6457910096, - 6457910720, - 6458531920, - 6457910880, - 6458407968, - 6458531504, - 6458408976 + 6458533776, + 6457911696, + 6457912288, + 6457912912, + 6458534112, + 6457913072, + 6458410160, + 6458533696, + 6458411168 ], "bases": [ { @@ -190757,7 +190783,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468854944, + "complete_object_locator": 6468859040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190766,15 +190792,15 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode::CDefinition", - "vtable_address": 6466995272, + "vtable_address": 6466999336, "methods": [ - 6458257520, - 6458254752, - 6458252480, - 6458254352, - 6458250864, - 6458533024, - 6458251680 + 6458259712, + 6458256944, + 6458254672, + 6458256544, + 6458253056, + 6458535216, + 6458253872 ], "bases": [ { @@ -190822,7 +190848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468841032, + "complete_object_locator": 6468845128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190831,19 +190857,19 @@ }, { "type_name": "CNmFloatAngleMathNode", - "vtable_address": 6467005800, + "vtable_address": 6467009864, "methods": [ - 6458417136, + 6458419328, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458423440, - 6458426288, - 6458407840, - 6458418096, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458425632, + 6458428480, + 6458410032, + 6458420288, + 6458411168 ], "bases": [ { @@ -190891,7 +190917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468851432, + "complete_object_locator": 6468855528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190900,15 +190926,15 @@ }, { "type_name": "CNmFloatAngleMathNode::CDefinition", - "vtable_address": 6466979272, + "vtable_address": 6466983336, "methods": [ - 6458062672, - 6458054208, - 6458048976, - 6458054048, - 6458046928, - 6458424176, - 6458048320 + 6458064864, + 6458056400, + 6458051168, + 6458056240, + 6458049120, + 6458426368, + 6458050512 ], "bases": [ { @@ -190956,7 +190982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468834640, + "complete_object_locator": 6468838736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -190965,19 +190991,19 @@ }, { "type_name": "CNmFloatClampNode", - "vtable_address": 6467005128, + "vtable_address": 6467009192, "methods": [ - 6458417200, + 6458419392, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458423488, - 6458426336, - 6458407840, - 6458418592, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458425680, + 6458428528, + 6458410032, + 6458420784, + 6458411168 ], "bases": [ { @@ -191025,7 +191051,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468850424, + "complete_object_locator": 6468854520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191034,15 +191060,15 @@ }, { "type_name": "CNmFloatClampNode::CDefinition", - "vtable_address": 6466978824, + "vtable_address": 6466982888, "methods": [ - 6458062720, - 6458054624, - 6458048992, - 6458054064, - 6458046976, - 6458424272, - 6458048336 + 6458064912, + 6458056816, + 6458051184, + 6458056256, + 6458049168, + 6458426464, + 6458050528 ], "bases": [ { @@ -191090,7 +191116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468833632, + "complete_object_locator": 6468837728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191099,19 +191125,19 @@ }, { "type_name": "CNmFloatComparisonNode", - "vtable_address": 6467005512, + "vtable_address": 6467009576, "methods": [ - 6458417264, + 6458419456, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458423536, - 6458426384, - 6458407808, - 6458418720, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458425728, + 6458428576, + 6458410000, + 6458420912, + 6458411168 ], "bases": [ { @@ -191159,7 +191185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468851000, + "complete_object_locator": 6468855096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191168,15 +191194,15 @@ }, { "type_name": "CNmFloatComparisonNode::CDefinition", - "vtable_address": 6466979080, + "vtable_address": 6466983144, "methods": [ - 6458062768, - 6458054736, - 6458049248, - 6458054080, - 6458047024, - 6458424368, - 6458048352 + 6458064960, + 6458056928, + 6458051440, + 6458056272, + 6458049216, + 6458426560, + 6458050544 ], "bases": [ { @@ -191224,7 +191250,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468834208, + "complete_object_locator": 6468838304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191233,15 +191259,15 @@ }, { "type_name": "CNmFloatCurveEvent", - "vtable_address": 6466992464, + "vtable_address": 6466996528, "methods": [ - 6458203472, - 6458201984, - 6458201232, - 6458201968, - 6458200912, - 6457958768, - 6458201152 + 6458205664, + 6458204176, + 6458203424, + 6458204160, + 6458203104, + 6457960960, + 6458203344 ], "bases": [ { @@ -191261,7 +191287,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839192, + "complete_object_locator": 6468843288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191270,19 +191296,19 @@ }, { "type_name": "CNmFloatCurveEventNode", - "vtable_address": 6467004936, + "vtable_address": 6467009000, "methods": [ - 6458409904, + 6458412096, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458414496, - 6458416256, - 6458407840, - 6458410912, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458416688, + 6458418448, + 6458410032, + 6458413104, + 6458411168 ], "bases": [ { @@ -191330,7 +191356,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468850136, + "complete_object_locator": 6468854232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191339,15 +191365,15 @@ }, { "type_name": "CNmFloatCurveEventNode::CDefinition", - "vtable_address": 6466976488, + "vtable_address": 6466980552, "methods": [ - 6458029872, - 6458015744, - 6458010064, - 6458015072, - 6458007456, - 6458415040, - 6458008960 + 6458032064, + 6458017936, + 6458012256, + 6458017264, + 6458009648, + 6458417232, + 6458011152 ], "bases": [ { @@ -191395,7 +191421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468833344, + "complete_object_locator": 6468837440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191404,19 +191430,19 @@ }, { "type_name": "CNmFloatCurveNode", - "vtable_address": 6467005320, + "vtable_address": 6467009384, "methods": [ - 6458417328, + 6458419520, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458423616, - 6458426448, - 6458407840, - 6458418944, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458425808, + 6458428640, + 6458410032, + 6458421136, + 6458411168 ], "bases": [ { @@ -191464,7 +191490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468850712, + "complete_object_locator": 6468854808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191473,15 +191499,15 @@ }, { "type_name": "CNmFloatCurveNode::CDefinition", - "vtable_address": 6466978952, + "vtable_address": 6466983016, "methods": [ - 6458062816, - 6458054752, + 6458065008, + 6458056944, + 6458051456, + 6458056288, 6458049264, - 6458054096, - 6458047072, - 6458424544, - 6458048368 + 6458426736, + 6458050560 ], "bases": [ { @@ -191529,7 +191555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468833920, + "complete_object_locator": 6468838016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191538,19 +191564,19 @@ }, { "type_name": "CNmFloatEaseNode", - "vtable_address": 6467005224, + "vtable_address": 6467009288, "methods": [ - 6458417568, + 6458419760, 6447720016, - 6458405536, - 6457909504, - 6458425872, - 6458426064, - 6458423664, - 6458426496, - 6458407840, - 6458419072, - 6458408976 + 6458407728, + 6457911696, + 6458428064, + 6458428256, + 6458425856, + 6458428688, + 6458410032, + 6458421264, + 6458411168 ], "bases": [ { @@ -191598,7 +191624,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468850568, + "complete_object_locator": 6468854664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191607,15 +191633,15 @@ }, { "type_name": "CNmFloatEaseNode::CDefinition", - "vtable_address": 6466978888, + "vtable_address": 6466982952, "methods": [ - 6458062864, - 6458055184, - 6458049280, - 6458054112, - 6458047312, - 6458424704, - 6458048384 + 6458065056, + 6458057376, + 6458051472, + 6458056304, + 6458049504, + 6458426896, + 6458050576 ], "bases": [ { @@ -191663,7 +191689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468833776, + "complete_object_locator": 6468837872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191672,19 +191698,19 @@ }, { "type_name": "CNmFloatMathNode", - "vtable_address": 6467005416, + "vtable_address": 6467009480, "methods": [ - 6458417632, + 6458419824, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458423808, - 6458426544, - 6458407840, - 6458420624, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458426000, + 6458428736, + 6458410032, + 6458422816, + 6458411168 ], "bases": [ { @@ -191732,7 +191758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468850856, + "complete_object_locator": 6468854952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191741,15 +191767,15 @@ }, { "type_name": "CNmFloatMathNode::CDefinition", - "vtable_address": 6466979016, + "vtable_address": 6466983080, "methods": [ - 6458062912, - 6458055440, - 6458049600, - 6458054128, - 6458047360, - 6458424800, - 6458048400 + 6458065104, + 6458057632, + 6458051792, + 6458056320, + 6458049552, + 6458426992, + 6458050592 ], "bases": [ { @@ -191797,7 +191823,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468834064, + "complete_object_locator": 6468838160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191806,19 +191832,19 @@ }, { "type_name": "CNmFloatRangeComparisonNode", - "vtable_address": 6467005608, + "vtable_address": 6467009672, "methods": [ - 6458417696, + 6458419888, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458423872, - 6458426608, - 6458407808, - 6458421280, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458426064, + 6458428800, + 6458410000, + 6458423472, + 6458411168 ], "bases": [ { @@ -191866,7 +191892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468851144, + "complete_object_locator": 6468855240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191875,15 +191901,15 @@ }, { "type_name": "CNmFloatRangeComparisonNode::CDefinition", - "vtable_address": 6466979144, + "vtable_address": 6466983208, "methods": [ - 6458062960, - 6458055456, - 6458049616, - 6458054144, - 6458047408, - 6458424960, - 6458048416 + 6458065152, + 6458057648, + 6458051808, + 6458056336, + 6458049600, + 6458427152, + 6458050608 ], "bases": [ { @@ -191931,7 +191957,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468834352, + "complete_object_locator": 6468838448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -191940,19 +191966,19 @@ }, { "type_name": "CNmFloatRemapNode", - "vtable_address": 6467005032, + "vtable_address": 6467009096, "methods": [ - 6458417760, + 6458419952, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458423936, - 6458426656, - 6458407840, - 6458421440, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458426128, + 6458428848, + 6458410032, + 6458423632, + 6458411168 ], "bases": [ { @@ -192000,7 +192026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468850280, + "complete_object_locator": 6468854376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192009,15 +192035,15 @@ }, { "type_name": "CNmFloatRemapNode::CDefinition", - "vtable_address": 6466978760, + "vtable_address": 6466982824, "methods": [ - 6458063008, - 6458055616, - 6458049632, - 6458054160, - 6458047456, - 6458425072, - 6458048432 + 6458065200, + 6458057808, + 6458051824, + 6458056352, + 6458049648, + 6458427264, + 6458050624 ], "bases": [ { @@ -192065,7 +192091,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468833488, + "complete_object_locator": 6468837584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192074,19 +192100,19 @@ }, { "type_name": "CNmFloatSelectorNode", - "vtable_address": 6467005896, + "vtable_address": 6467009960, "methods": [ - 6458417824, + 6458420016, 6447720016, - 6458405536, - 6457909504, - 6458425968, + 6458407728, + 6457911696, + 6458428160, + 6458428368, 6458426176, - 6458423984, - 6458426704, - 6458407840, - 6458421648, - 6458408976 + 6458428896, + 6458410032, + 6458423840, + 6458411168 ], "bases": [ { @@ -192134,7 +192160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468851576, + "complete_object_locator": 6468855672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192143,15 +192169,15 @@ }, { "type_name": "CNmFloatSelectorNode::CDefinition", - "vtable_address": 6466979336, + "vtable_address": 6466983400, "methods": [ - 6458063056, - 6458055776, - 6458049856, - 6458054176, - 6458047504, - 6458425168, - 6458048448 + 6458065248, + 6458057968, + 6458052048, + 6458056368, + 6458049696, + 6458427360, + 6458050640 ], "bases": [ { @@ -192199,7 +192225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468834784, + "complete_object_locator": 6468838880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192208,19 +192234,19 @@ }, { "type_name": "CNmFloatSwitchNode", - "vtable_address": 6467005704, + "vtable_address": 6467009768, "methods": [ - 6458418032, + 6458420224, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458424080, - 6458426816, - 6458407840, - 6458423264, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458426272, + 6458429008, + 6458410032, + 6458425456, + 6458411168 ], "bases": [ { @@ -192268,7 +192294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468851288, + "complete_object_locator": 6468855384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192277,15 +192303,15 @@ }, { "type_name": "CNmFloatSwitchNode::CDefinition", - "vtable_address": 6466979208, + "vtable_address": 6466983272, "methods": [ - 6458063104, - 6458055792, - 6458050272, - 6458054192, - 6458047568, - 6458425648, - 6458048464 + 6458065296, + 6458057984, + 6458052464, + 6458056384, + 6458049760, + 6458427840, + 6458050656 ], "bases": [ { @@ -192333,7 +192359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468834496, + "complete_object_locator": 6468838592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192342,19 +192368,19 @@ }, { "type_name": "CNmFollowBoneNode", - "vtable_address": 6467011704, + "vtable_address": 6467015768, "methods": [ - 6458554000, - 6458554336, + 6458556192, + 6458556528, 6447716656, 6447717392, - 6458554400, - 6458554464, + 6458556592, + 6458556656, 6447717616, - 6458554576, - 6457927504, - 6458554064, - 6458554640, + 6458556768, + 6457929696, + 6458556256, + 6458556832, 6447712016 ], "bases": [ @@ -192403,7 +192429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468858632, + "complete_object_locator": 6468862728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192412,15 +192438,15 @@ }, { "type_name": "CNmFollowBoneNode::CDefinition", - "vtable_address": 6466998576, + "vtable_address": 6467002640, "methods": [ - 6458305504, - 6458303856, - 6458303088, - 6458303840, - 6458303024, - 6458554160, - 6458303072 + 6458307696, + 6458306048, + 6458305280, + 6458306032, + 6458305216, + 6458556352, + 6458305264 ], "bases": [ { @@ -192468,7 +192494,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468844720, + "complete_object_locator": 6468848816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192477,22 +192503,22 @@ }, { "type_name": "CNmFollowBoneTask", - "vtable_address": 6466969824, + "vtable_address": 6466973888, "methods": [ - 6457957504, - 6457957392, - 6458402320, - 6457925952, + 6457959696, + 6457959584, + 6458404512, + 6457928144, 6447722784, 6447716640, - 6457957456, - 6458402944, - 6458402016, - 6457957488, - 6458402864, - 6457957472, + 6457959648, + 6458405136, + 6458404208, + 6457959680, + 6458405056, + 6457959664, 6447716272, - 6457926016 + 6457928208 ], "bases": [ { @@ -192512,7 +192538,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468829368, + "complete_object_locator": 6468833464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192521,15 +192547,15 @@ }, { "type_name": "CNmFootEvent", - "vtable_address": 6466970480, + "vtable_address": 6466974544, "methods": [ - 6457960416, - 6457959216, - 6457958784, - 6457959200, - 6457958640, - 6457958768, - 6457958688 + 6457962608, + 6457961408, + 6457960976, + 6457961392, + 6457960832, + 6457960960, + 6457960880 ], "bases": [ { @@ -192549,7 +192575,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468829576, + "complete_object_locator": 6468833672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192558,19 +192584,19 @@ }, { "type_name": "CNmFootEventConditionNode", - "vtable_address": 6467004264, + "vtable_address": 6467008328, "methods": [ - 6458409968, + 6458412160, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458414560, - 6457910880, - 6458407808, - 6458411472, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458416752, + 6457913072, + 6458410000, + 6458413664, + 6458411168 ], "bases": [ { @@ -192618,7 +192644,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468849128, + "complete_object_locator": 6468853224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192627,15 +192653,15 @@ }, { "type_name": "CNmFootEventConditionNode::CDefinition", - "vtable_address": 6466976040, + "vtable_address": 6466980104, "methods": [ - 6458029920, - 6458016176, - 6458010080, - 6458015088, - 6458007504, - 6458415152, - 6458008976 + 6458032112, + 6458018368, + 6458012272, + 6458017280, + 6458009696, + 6458417344, + 6458011168 ], "bases": [ { @@ -192683,7 +192709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468832336, + "complete_object_locator": 6468836432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192692,19 +192718,19 @@ }, { "type_name": "CNmFootstepEventIDNode", - "vtable_address": 6467004456, + "vtable_address": 6467008520, "methods": [ - 6458410032, + 6458412224, 6447720016, - 6458405552, - 6457909504, - 6457910096, - 6457910720, - 6458414592, - 6457910880, - 6458407872, - 6458411840, - 6458408976 + 6458407744, + 6457911696, + 6457912288, + 6457912912, + 6458416784, + 6457913072, + 6458410064, + 6458414032, + 6458411168 ], "bases": [ { @@ -192752,7 +192778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468849416, + "complete_object_locator": 6468853512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192761,15 +192787,15 @@ }, { "type_name": "CNmFootstepEventIDNode::CDefinition", - "vtable_address": 6466976168, + "vtable_address": 6466980232, "methods": [ - 6458029968, - 6458016336, - 6458010400, - 6458015104, - 6458007552, - 6458415280, - 6458008992 + 6458032160, + 6458018528, + 6458012592, + 6458017296, + 6458009744, + 6458417472, + 6458011184 ], "bases": [ { @@ -192817,7 +192843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468832624, + "complete_object_locator": 6468836720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192826,19 +192852,19 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode", - "vtable_address": 6467004360, + "vtable_address": 6467008424, "methods": [ - 6458410096, + 6458412288, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458414624, - 6457910880, - 6458407840, - 6458412256, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458416816, + 6457913072, + 6458410032, + 6458414448, + 6458411168 ], "bases": [ { @@ -192886,7 +192912,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468849272, + "complete_object_locator": 6468853368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192895,15 +192921,15 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode::CDefinition", - "vtable_address": 6466976104, + "vtable_address": 6466980168, "methods": [ - 6458030016, - 6458016464, - 6458010672, - 6458015120, - 6458007600, - 6458415392, - 6458009008 + 6458032208, + 6458018656, + 6458012864, + 6458017312, + 6458009792, + 6458417584, + 6458011200 ], "bases": [ { @@ -192951,7 +192977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468832480, + "complete_object_locator": 6468836576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192960,15 +192986,15 @@ }, { "type_name": "CNmFrameSnapEvent", - "vtable_address": 6466970704, + "vtable_address": 6466974768, "methods": [ - 6457963216, - 6457962048, - 6457961648, - 6457962032, - 6457961504, - 6457958768, - 6457961552 + 6457965408, + 6457964240, + 6457963840, + 6457964224, + 6457963696, + 6457960960, + 6457963744 ], "bases": [ { @@ -192988,7 +193014,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468829704, + "complete_object_locator": 6468833800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -192997,19 +193023,19 @@ }, { "type_name": "CNmGraphEventConditionNode", - "vtable_address": 6467004168, + "vtable_address": 6467008232, "methods": [ - 6458410160, + 6458412352, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458414656, - 6457910880, - 6458407808, - 6458412800, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458416848, + 6457913072, + 6458410000, + 6458414992, + 6458411168 ], "bases": [ { @@ -193057,7 +193083,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468848984, + "complete_object_locator": 6468853080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193066,15 +193092,15 @@ }, { "type_name": "CNmGraphEventConditionNode::CDefinition", - "vtable_address": 6466975976, + "vtable_address": 6466980040, "methods": [ - 6458030064, - 6458016624, - 6458010992, - 6458015136, - 6458007648, - 6458415520, - 6458009024 + 6458032256, + 6458018816, + 6458013184, + 6458017328, + 6458009840, + 6458417712, + 6458011216 ], "bases": [ { @@ -193122,7 +193148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468832192, + "complete_object_locator": 6468836288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193131,21 +193157,21 @@ }, { "type_name": "CNmGraphNode", - "vtable_address": 6465258528, + "vtable_address": 6465262608, "methods": [ 6447706160, 6447720016, - 6463705588, - 6457909504, - 6457910096, - 6457910720, - 6457909568, - 6457910880 + 6463707780, + 6457911696, + 6457912288, + 6457912912, + 6457911760, + 6457913072 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468422784, + "complete_object_locator": 6468426880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193154,19 +193180,19 @@ }, { "type_name": "CNmIDComparisonNode", - "vtable_address": 6467006064, + "vtable_address": 6467010128, "methods": [ - 6458426896, + 6458429088, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458428208, - 6458429664, - 6458407808, - 6458427296, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458430400, + 6458431856, + 6458410000, + 6458429488, + 6458411168 ], "bases": [ { @@ -193214,7 +193240,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468851720, + "complete_object_locator": 6468855816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193223,15 +193249,15 @@ }, { "type_name": "CNmIDComparisonNode::CDefinition", - "vtable_address": 6466979792, + "vtable_address": 6466983856, "methods": [ - 6458080656, - 6458074832, - 6458072544, - 6458074768, - 6458070624, - 6458428512, - 6458072432 + 6458082848, + 6458077024, + 6458074736, + 6458076960, + 6458072816, + 6458430704, + 6458074624 ], "bases": [ { @@ -193279,7 +193305,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468834928, + "complete_object_locator": 6468839024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193288,15 +193314,15 @@ }, { "type_name": "CNmIDEvent", - "vtable_address": 6466992592, + "vtable_address": 6466996656, "methods": [ - 6458205552, - 6458204384, - 6458204096, - 6458204368, - 6458203904, - 6457958768, - 6458203952 + 6458207744, + 6458206576, + 6458206288, + 6458206560, + 6458206096, + 6457960960, + 6458206144 ], "bases": [ { @@ -193316,7 +193342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839320, + "complete_object_locator": 6468843416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193325,19 +193351,19 @@ }, { "type_name": "CNmIDEventConditionNode", - "vtable_address": 6467003880, + "vtable_address": 6467007944, "methods": [ - 6458410224, + 6458412416, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458414688, - 6458416320, - 6458407808, - 6458412896, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458416880, + 6458418512, + 6458410000, + 6458415088, + 6458411168 ], "bases": [ { @@ -193385,7 +193411,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468848552, + "complete_object_locator": 6468852648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193394,15 +193420,15 @@ }, { "type_name": "CNmIDEventConditionNode::CDefinition", - "vtable_address": 6466975784, + "vtable_address": 6466979848, "methods": [ - 6458030112, - 6458016800, - 6458011008, - 6458015152, - 6458007840, - 6458415648, - 6458009040 + 6458032304, + 6458018992, + 6458013200, + 6458017344, + 6458010032, + 6458417840, + 6458011232 ], "bases": [ { @@ -193450,7 +193476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468831760, + "complete_object_locator": 6468835856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193459,19 +193485,19 @@ }, { "type_name": "CNmIDEventNode", - "vtable_address": 6467003976, + "vtable_address": 6467008040, "methods": [ - 6458410288, + 6458412480, 6447720016, - 6458405552, - 6457909504, - 6457910096, - 6457910720, - 6458414720, - 6458416336, - 6458407872, - 6458412992, - 6458408976 + 6458407744, + 6457911696, + 6457912288, + 6457912912, + 6458416912, + 6458418528, + 6458410064, + 6458415184, + 6458411168 ], "bases": [ { @@ -193519,7 +193545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468848696, + "complete_object_locator": 6468852792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193528,15 +193554,15 @@ }, { "type_name": "CNmIDEventNode::CDefinition", - "vtable_address": 6466975848, + "vtable_address": 6466979912, "methods": [ - 6458030160, - 6458017200, - 6458011024, - 6458015168, - 6458008032, - 6458415776, - 6458009056 + 6458032352, + 6458019392, + 6458013216, + 6458017360, + 6458010224, + 6458417968, + 6458011248 ], "bases": [ { @@ -193584,7 +193610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468831904, + "complete_object_locator": 6468836000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193593,19 +193619,19 @@ }, { "type_name": "CNmIDEventPercentageThroughNode", - "vtable_address": 6467004072, + "vtable_address": 6467008136, "methods": [ - 6458410352, + 6458412544, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458414752, - 6457910880, - 6458407840, - 6458413456, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458416944, + 6457913072, + 6458410032, + 6458415648, + 6458411168 ], "bases": [ { @@ -193653,7 +193679,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468848840, + "complete_object_locator": 6468852936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193662,15 +193688,15 @@ }, { "type_name": "CNmIDEventPercentageThroughNode::CDefinition", - "vtable_address": 6466975912, + "vtable_address": 6466979976, "methods": [ - 6458030208, - 6458017504, - 6458011360, - 6458015184, - 6458008080, - 6458415888, - 6458009072 + 6458032400, + 6458019696, + 6458013552, + 6458017376, + 6458010272, + 6458418080, + 6458011264 ], "bases": [ { @@ -193718,7 +193744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468832048, + "complete_object_locator": 6468836144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193727,19 +193753,19 @@ }, { "type_name": "CNmIDSelectorNode", - "vtable_address": 6467006352, + "vtable_address": 6467010416, "methods": [ - 6458426960, + 6458429152, 6447720016, - 6458405552, - 6457909504, - 6458429440, - 6458429504, - 6458428272, - 6458429712, - 6458407872, - 6458427584, - 6458408976 + 6458407744, + 6457911696, + 6458431632, + 6458431696, + 6458430464, + 6458431904, + 6458410064, + 6458429776, + 6458411168 ], "bases": [ { @@ -193787,7 +193813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468852152, + "complete_object_locator": 6468856248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193796,15 +193822,15 @@ }, { "type_name": "CNmIDSelectorNode::CDefinition", - "vtable_address": 6466979984, + "vtable_address": 6466984048, "methods": [ - 6458080704, - 6458074848, - 6458072560, - 6458074784, - 6458070736, - 6458428624, - 6458072448 + 6458082896, + 6458077040, + 6458074752, + 6458076976, + 6458072928, + 6458430816, + 6458074640 ], "bases": [ { @@ -193852,7 +193878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468835360, + "complete_object_locator": 6468839456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193861,19 +193887,19 @@ }, { "type_name": "CNmIDSwitchNode", - "vtable_address": 6467006256, + "vtable_address": 6467010320, "methods": [ - 6458427168, + 6458429360, 6447720016, - 6458405552, - 6457909504, - 6457910096, - 6457910720, - 6458428368, - 6458429824, - 6458407872, - 6458427792, - 6458408976 + 6458407744, + 6457911696, + 6457912288, + 6457912912, + 6458430560, + 6458432016, + 6458410064, + 6458429984, + 6458411168 ], "bases": [ { @@ -193921,7 +193947,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468852008, + "complete_object_locator": 6468856104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193930,15 +193956,15 @@ }, { "type_name": "CNmIDSwitchNode::CDefinition", - "vtable_address": 6466979920, + "vtable_address": 6466983984, "methods": [ - 6458080752, - 6458074864, - 6458072576, - 6458074800, - 6458070800, - 6458429120, - 6458072464 + 6458082944, + 6458077056, + 6458074768, + 6458076992, + 6458072992, + 6458431312, + 6458074656 ], "bases": [ { @@ -193986,7 +194012,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468835216, + "complete_object_locator": 6468839312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -193995,19 +194021,19 @@ }, { "type_name": "CNmIDToFloatNode", - "vtable_address": 6467006160, + "vtable_address": 6467010224, "methods": [ - 6458427232, + 6458429424, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458428464, - 6458429920, - 6458407840, - 6458427984, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458430656, + 6458432112, + 6458410032, + 6458430176, + 6458411168 ], "bases": [ { @@ -194055,7 +194081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468851864, + "complete_object_locator": 6468855960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194064,15 +194090,15 @@ }, { "type_name": "CNmIDToFloatNode::CDefinition", - "vtable_address": 6466979856, + "vtable_address": 6466983920, "methods": [ - 6458080800, - 6458074880, - 6458072992, - 6458074816, - 6458070848, - 6458429344, - 6458072480 + 6458082992, + 6458077072, + 6458075184, + 6458077008, + 6458073040, + 6458431536, + 6458074672 ], "bases": [ { @@ -194120,7 +194146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468835072, + "complete_object_locator": 6468839168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194129,15 +194155,15 @@ }, { "type_name": "CNmIsInactiveBranchConditionNode::CDefinition", - "vtable_address": 6466983648, + "vtable_address": 6466987712, "methods": [ - 6458110912, - 6458107584, - 6458106288, - 6458107536, - 6458106096, - 6458448208, - 6458106240 + 6458113104, + 6458109776, + 6458108480, + 6458109728, + 6458108288, + 6458450400, + 6458108432 ], "bases": [ { @@ -194185,7 +194211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468836064, + "complete_object_locator": 6468840160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194194,19 +194220,19 @@ }, { "type_name": "CNmIsTargetSetNode", - "vtable_address": 6467007080, + "vtable_address": 6467011144, "methods": [ - 6458448704, + 6458450896, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458450704, - 6458451408, - 6458407808, - 6458448960, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458452896, + 6458453600, + 6458410000, + 6458451152, + 6458411168 ], "bases": [ { @@ -194254,7 +194280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468853000, + "complete_object_locator": 6468857096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194263,15 +194289,15 @@ }, { "type_name": "CNmIsTargetSetNode::CDefinition", - "vtable_address": 6466984536, + "vtable_address": 6466988600, "methods": [ - 6458120528, - 6458116736, - 6458114464, - 6458116672, - 6458114208, - 6458450912, - 6458114400 + 6458122720, + 6458118928, + 6458116656, + 6458118864, + 6458116400, + 6458453104, + 6458116592 ], "bases": [ { @@ -194319,7 +194345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468836352, + "complete_object_locator": 6468840448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194328,19 +194354,19 @@ }, { "type_name": "CNmLayerBlendNode", - "vtable_address": 6467006448, + "vtable_address": 6467010512, "methods": [ - 6458431872, - 6458435712, + 6458434064, + 6458437904, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6458435744, - 6458433936, - 6458434496, - 6458435936, + 6458437936, + 6458436128, + 6458436688, + 6458438128, 6447712016 ], "bases": [ @@ -194375,7 +194401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468852296, + "complete_object_locator": 6468856392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194384,15 +194410,15 @@ }, { "type_name": "CNmLayerBlendNode::CDefinition", - "vtable_address": 6466981096, + "vtable_address": 6466985160, "methods": [ - 6458088624, - 6458086320, - 6458085008, - 6458086304, - 6458083984, - 6458435168, - 6458084624 + 6458090816, + 6458088512, + 6458087200, + 6458088496, + 6458086176, + 6458437360, + 6458086816 ], "bases": [ { @@ -194426,7 +194452,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468835504, + "complete_object_locator": 6468839600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194435,15 +194461,15 @@ }, { "type_name": "CNmLegacyEvent", - "vtable_address": 6466992744, + "vtable_address": 6466996808, "methods": [ - 6458208032, - 6458206832, - 6458206144, - 6458206816, - 6458206064, - 6457958768, - 6458507568 + 6458210224, + 6458209024, + 6458208336, + 6458209008, + 6458208256, + 6457960960, + 6458509760 ], "bases": [ { @@ -194463,7 +194489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839448, + "complete_object_locator": 6468843544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194472,15 +194498,15 @@ }, { "type_name": "CNmMaterialAttributeEvent", - "vtable_address": 6466992960, + "vtable_address": 6466997024, "methods": [ - 6458213136, - 6458211824, - 6458211104, - 6458211808, - 6458210960, - 6457958768, - 6458211024 + 6458215328, + 6458214016, + 6458213296, + 6458214000, + 6458213152, + 6457960960, + 6458213216 ], "bases": [ { @@ -194500,7 +194526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468839576, + "complete_object_locator": 6468843672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194509,22 +194535,22 @@ }, { "type_name": "CNmModelSpaceBlendTask", - "vtable_address": 6466990520, + "vtable_address": 6466994584, "methods": [ - 6458193808, - 6458193424, - 6458475616, - 6458471888, + 6458196000, + 6458195616, + 6458477808, + 6458474080, 6447722784, 6447716640, - 6458193552, - 6458477696, - 6458471968, - 6458193616, + 6458195744, + 6458479888, + 6458474160, + 6458195808, 6447716288, - 6458193568, - 6458193648, - 6458472320 + 6458195760, + 6458195840, + 6458474512 ], "bases": [ { @@ -194558,7 +194584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838032, + "complete_object_locator": 6468842128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194567,19 +194593,19 @@ }, { "type_name": "CNmNotNode", - "vtable_address": 6467009360, + "vtable_address": 6467013424, "methods": [ - 6458534224, + 6458536416, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458535536, - 6458536672, - 6458407808, - 6458535072, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458537728, + 6458538864, + 6458410000, + 6458537264, + 6458411168 ], "bases": [ { @@ -194627,7 +194653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468855664, + "complete_object_locator": 6468859760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194636,15 +194662,15 @@ }, { "type_name": "CNmNotNode::CDefinition", - "vtable_address": 6466995712, + "vtable_address": 6466999776, "methods": [ - 6458266416, - 6458264016, - 6458262880, - 6458263904, - 6458262000, - 6458536080, - 6458262624 + 6458268608, + 6458266208, + 6458265072, + 6458266096, + 6458264192, + 6458538272, + 6458264816 ], "bases": [ { @@ -194692,7 +194718,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468841752, + "complete_object_locator": 6468845848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194701,19 +194727,19 @@ }, { "type_name": "CNmOrNode", - "vtable_address": 6467009264, + "vtable_address": 6467013328, "methods": [ - 6458534288, + 6458536480, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458535600, - 6458536720, - 6458407808, - 6458535184, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458537792, + 6458538912, + 6458410000, + 6458537376, + 6458411168 ], "bases": [ { @@ -194761,7 +194787,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468855520, + "complete_object_locator": 6468859616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194770,15 +194796,15 @@ }, { "type_name": "CNmOrNode::CDefinition", - "vtable_address": 6466995648, + "vtable_address": 6466999712, "methods": [ - 6458266464, + 6458268656, + 6458266432, + 6458265088, + 6458266112, 6458264240, - 6458262896, - 6458263920, - 6458262048, - 6458536192, - 6458262640 + 6458538384, + 6458264832 ], "bases": [ { @@ -194826,7 +194852,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468841608, + "complete_object_locator": 6468845704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194835,15 +194861,15 @@ }, { "type_name": "CNmOrientationWarpEvent", - "vtable_address": 6466972928, + "vtable_address": 6466976992, "methods": [ - 6457984016, - 6457981760, - 6457980928, - 6457981728, - 6457980752, - 6457958768, - 6457980848 + 6457986208, + 6457983952, + 6457983120, + 6457983920, + 6457982944, + 6457960960, + 6457983040 ], "bases": [ { @@ -194863,7 +194889,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468830216, + "complete_object_locator": 6468834312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194872,20 +194898,20 @@ }, { "type_name": "CNmOrientationWarpNode", - "vtable_address": 6467011808, + "vtable_address": 6467015872, "methods": [ - 6458555152, - 6458556256, + 6458557344, + 6458558448, 6447716656, 6447717392, - 6458558880, - 6458559072, + 6458561072, + 6458561264, 6447717616, - 6458560320, - 6458555728, - 6458555744, - 6458560400, - 6458555312 + 6458562512, + 6458557920, + 6458557936, + 6458562592, + 6458557504 ], "bases": [ { @@ -194919,7 +194945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468858776, + "complete_object_locator": 6468862872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194928,15 +194954,15 @@ }, { "type_name": "CNmOrientationWarpNode::CDefinition", - "vtable_address": 6466998808, + "vtable_address": 6467002872, "methods": [ - 6458308528, - 6458307232, - 6458306624, - 6458307216, - 6458306560, - 6458555952, - 6458306608 + 6458310720, + 6458309424, + 6458308816, + 6458309408, + 6458308752, + 6458558144, + 6458308800 ], "bases": [ { @@ -194970,7 +194996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468844864, + "complete_object_locator": 6468848960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -194979,22 +195005,22 @@ }, { "type_name": "CNmOverlayBlendTask", - "vtable_address": 6466990248, + "vtable_address": 6466994312, "methods": [ - 6458193856, - 6458193488, - 6458476560, - 6458471888, + 6458196048, + 6458195680, + 6458478752, + 6458474080, 6447722784, 6447716640, - 6458193552, - 6458477696, - 6458471968, - 6458193632, - 6458477600, - 6458193568, - 6458193648, - 6458472320 + 6458195744, + 6458479888, + 6458474160, + 6458195824, + 6458479792, + 6458195760, + 6458195840, + 6458474512 ], "bases": [ { @@ -195028,7 +195054,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468837760, + "complete_object_locator": 6468841856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195037,19 +195063,19 @@ }, { "type_name": "CNmParameterizedBlendNode", - "vtable_address": 6467008328, + "vtable_address": 6467012392, "methods": [ - 6458512976, - 6458516512, + 6458515168, + 6458518704, 6447716656, 6447717392, - 6458516544, - 6458516800, + 6458518736, + 6458518992, 6447717616, - 6458517232, - 6458515072, - 6458515088, - 6458517376, + 6458519424, + 6458517264, + 6458517280, + 6458519568, 6447712016 ], "bases": [ @@ -195084,7 +195110,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468854144, + "complete_object_locator": 6468858240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195093,15 +195119,15 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 6466994144, + "vtable_address": 6466998208, "methods": [ - 6458237664, - 6458232640, - 6458231328, - 6458231984, - 6458229584, - 6458515952, - 6458230512 + 6458239856, + 6458234832, + 6458233520, + 6458234176, + 6458231776, + 6458518144, + 6458232704 ], "bases": [ { @@ -195135,7 +195161,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468840232, + "complete_object_locator": 6468844328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195144,24 +195170,24 @@ }, { "type_name": "CNmParameterizedClipSelectorNode", - "vtable_address": 6467013152, + "vtable_address": 6467017216, "methods": [ - 6458568720, - 6458573616, + 6458570912, + 6458575808, 6447716656, 6447717392, - 6458574208, - 6458574480, + 6458576400, + 6458576672, 6447717616, - 6458579264, - 6458570688, - 6458571104, - 6458579696, + 6458581456, + 6458572880, + 6458573296, + 6458581888, 6447712016, - 6458570816, - 6458570624, - 6458569216, - 6458573568 + 6458573008, + 6458572816, + 6458571408, + 6458575760 ], "bases": [ { @@ -195209,7 +195235,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468860016, + "complete_object_locator": 6468864112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195218,15 +195244,15 @@ }, { "type_name": "CNmParameterizedClipSelectorNode::CDefinition", - "vtable_address": 6467000176, + "vtable_address": 6467004240, "methods": [ - 6458332352, - 6458327760, - 6458326496, - 6458327584, - 6458324672, - 6458572336, - 6458326144 + 6458334544, + 6458329952, + 6458328688, + 6458329776, + 6458326864, + 6458574528, + 6458328336 ], "bases": [ { @@ -195274,7 +195300,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468846104, + "complete_object_locator": 6468850200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195283,19 +195309,19 @@ }, { "type_name": "CNmParameterizedSelectorNode", - "vtable_address": 6467013048, + "vtable_address": 6467017112, "methods": [ - 6458568848, - 6458573632, + 6458571040, + 6458575824, 6447716656, 6447717392, - 6458574256, - 6458574640, + 6458576448, + 6458576832, 6447717616, - 6458579328, - 6458570720, - 6458571344, - 6458579920, + 6458581520, + 6458572912, + 6458573536, + 6458582112, 6447712016 ], "bases": [ @@ -195330,7 +195356,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468859880, + "complete_object_locator": 6468863976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195339,15 +195365,15 @@ }, { "type_name": "CNmParameterizedSelectorNode::CDefinition", - "vtable_address": 6467000112, + "vtable_address": 6467004176, "methods": [ - 6458332400, - 6458328000, - 6458326896, - 6458327600, - 6458324864, - 6458572688, - 6458326160 + 6458334592, + 6458330192, + 6458329088, + 6458329792, + 6458327056, + 6458574880, + 6458328352 ], "bases": [ { @@ -195381,7 +195407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845968, + "complete_object_locator": 6468850064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195390,15 +195416,15 @@ }, { "type_name": "CNmParticleEvent", - "vtable_address": 6466971200, + "vtable_address": 6466975264, "methods": [ - 6457970640, - 6457967664, - 6457966480, - 6457967648, - 6457966192, - 6457958768, - 6457966400 + 6457972832, + 6457969856, + 6457968672, + 6457969840, + 6457968384, + 6457960960, + 6457968592 ], "bases": [ { @@ -195418,7 +195444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468829832, + "complete_object_locator": 6468833928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195427,14 +195453,14 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 6465258752, + "vtable_address": 6465262832, "methods": [ 6447722848, - 6457905840, - 6457905008, + 6457908032, + 6457907200, 6447720672, 6447705936, - 6457927696, + 6457929888, 6447716608 ], "bases": [ @@ -195469,7 +195495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468423256, + "complete_object_locator": 6468427352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195478,12 +195504,12 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 6465258632, + "vtable_address": 6465262712, "methods": [ 6447722992, 6447706224, - 6463705588, - 6457925952, + 6463707780, + 6457928144, 6447722784, 6447716640, 6447706432, @@ -195493,12 +195519,12 @@ 6447716288, 6447716192, 6447716272, - 6457926016 + 6457928208 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468422664, + "complete_object_locator": 6468426760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195507,19 +195533,19 @@ }, { "type_name": "CNmReferencePoseNode", - "vtable_address": 6467012288, + "vtable_address": 6467016352, "methods": [ - 6458560960, + 6458563152, 6447720016, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6457910880, - 6458561104, - 6458561216, - 6458562864, + 6457913072, + 6458563296, + 6458563408, + 6458565056, 6447712016 ], "bases": [ @@ -195554,7 +195580,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468859048, + "complete_object_locator": 6468863144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195563,15 +195589,15 @@ }, { "type_name": "CNmReferencePoseNode::CDefinition", - "vtable_address": 6466999192, + "vtable_address": 6467003256, "methods": [ - 6458313856, - 6458310864, - 6458309776, - 6458310816, - 6458309616, - 6458561920, - 6458309728 + 6458316048, + 6458313056, + 6458311968, + 6458313008, + 6458311808, + 6458564112, + 6458311920 ], "bases": [ { @@ -195605,7 +195631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845136, + "complete_object_locator": 6468849232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195614,22 +195640,22 @@ }, { "type_name": "CNmReferencePoseTask", - "vtable_address": 6466967304, + "vtable_address": 6466971368, "methods": [ - 6457951856, - 6457950528, - 6458401472, - 6457925952, + 6457954048, + 6457952720, + 6458403664, + 6457928144, 6447722784, 6447716640, - 6457950592, - 6457951904, - 6457950640, - 6457950704, + 6457952784, + 6457954096, + 6457952832, + 6457952896, 6447716288, - 6457950688, + 6457952880, 6447716272, - 6457926016 + 6457928208 ], "bases": [ { @@ -195649,7 +195675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468829240, + "complete_object_locator": 6468833336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195658,19 +195684,19 @@ }, { "type_name": "CNmReferencedGraphNode", - "vtable_address": 6467012496, + "vtable_address": 6467016560, "methods": [ - 6458563984, - 6458565904, + 6458566176, + 6458568096, 6447716656, 6447717392, - 6458565984, - 6458566752, + 6458568176, + 6458568944, 6447717616, - 6458566880, - 6458564560, - 6458564656, - 6458566960, + 6458569072, + 6458566752, + 6458566848, + 6458569152, 6447712016 ], "bases": [ @@ -195705,7 +195731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468859320, + "complete_object_locator": 6468863416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195714,15 +195740,15 @@ }, { "type_name": "CNmReferencedGraphNode::CDefinition", - "vtable_address": 6466999424, + "vtable_address": 6467003488, "methods": [ - 6458315792, - 6458314592, - 6458314320, - 6458314576, - 6458314256, - 6458564960, - 6458314304 + 6458317984, + 6458316784, + 6458316512, + 6458316768, + 6458316448, + 6458567152, + 6458316496 ], "bases": [ { @@ -195756,7 +195782,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845408, + "complete_object_locator": 6468849504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195765,15 +195791,15 @@ }, { "type_name": "CNmRootMotionEvent", - "vtable_address": 6466993584, + "vtable_address": 6466997648, "methods": [ - 6458223408, - 6458223168, - 6458222320, - 6458223152, - 6458222208, - 6457958768, - 6458222256 + 6458225600, + 6458225360, + 6458224512, + 6458225344, + 6458224400, + 6457960960, + 6458224448 ], "bases": [ { @@ -195793,7 +195819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468840104, + "complete_object_locator": 6468844200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195802,19 +195828,19 @@ }, { "type_name": "CNmRootMotionOverrideNode", - "vtable_address": 6467006672, + "vtable_address": 6467010736, "methods": [ - 6458440160, + 6458442352, 6447720032, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6458442960, - 6457927504, - 6458440736, - 6458443072, + 6458445152, + 6457929696, + 6458442928, + 6458445264, 6447712016 ], "bases": [ @@ -195863,7 +195889,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468852432, + "complete_object_locator": 6468856528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195872,15 +195898,15 @@ }, { "type_name": "CNmRootMotionOverrideNode::CDefinition", - "vtable_address": 6466981928, + "vtable_address": 6466985992, "methods": [ + 6458093584, + 6458092160, 6458091392, - 6458089968, - 6458089200, - 6458089952, - 6458089136, - 6458440864, - 6458089184 + 6458092144, + 6458091328, + 6458443056, + 6458091376 ], "bases": [ { @@ -195928,7 +195954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468835640, + "complete_object_locator": 6468839736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195937,22 +195963,22 @@ }, { "type_name": "CNmSampleTask", - "vtable_address": 6466992008, + "vtable_address": 6466996072, "methods": [ - 6458197696, - 6458197568, - 6458503216, - 6457925952, - 6458504752, + 6458199888, + 6458199760, + 6458505408, + 6457928144, + 6458506944, 6447716640, - 6458197632, - 6458505904, - 6458501728, - 6458197664, - 6458503840, - 6458197648, - 6458197680, - 6457926016 + 6458199824, + 6458508096, + 6458503920, + 6458199856, + 6458506032, + 6458199840, + 6458199872, + 6457928208 ], "bases": [ { @@ -195972,7 +195998,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838808, + "complete_object_locator": 6468842904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -195981,19 +196007,19 @@ }, { "type_name": "CNmScaleNode", - "vtable_address": 6467012704, + "vtable_address": 6467016768, "methods": [ - 6458567568, + 6458569760, 6447720032, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6458567904, - 6457927504, - 6458567632, - 6458567968, + 6458570096, + 6457929696, + 6458569824, + 6458570160, 6447712016 ], "bases": [ @@ -196042,7 +196068,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468859456, + "complete_object_locator": 6468863552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196051,15 +196077,15 @@ }, { "type_name": "CNmScaleNode::CDefinition", - "vtable_address": 6466999576, + "vtable_address": 6467003640, "methods": [ - 6458317664, - 6458316480, - 6458316208, - 6458316464, - 6458316144, - 6458567696, - 6458316192 + 6458319856, + 6458318672, + 6458318400, + 6458318656, + 6458318336, + 6458569888, + 6458318384 ], "bases": [ { @@ -196107,7 +196133,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845544, + "complete_object_locator": 6468849640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196116,22 +196142,22 @@ }, { "type_name": "CNmScaleTask", - "vtable_address": 6466992152, + "vtable_address": 6466996216, "methods": [ - 6458198288, - 6458198112, - 6458506624, - 6457925952, + 6458200480, + 6458200304, + 6458508816, + 6457928144, 6447722784, 6447716640, - 6458198240, - 6458507344, - 6458506416, - 6458198272, + 6458200432, + 6458509536, + 6458508608, + 6458200464, 6447716288, - 6458198256, + 6458200448, 6447716272, - 6457926016 + 6457928208 ], "bases": [ { @@ -196151,7 +196177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838936, + "complete_object_locator": 6468843032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196160,19 +196186,19 @@ }, { "type_name": "CNmSelectorNode", - "vtable_address": 6467012808, + "vtable_address": 6467016872, "methods": [ - 6458568976, - 6458573648, + 6458571168, + 6458575840, 6447716656, 6447717392, - 6458574304, - 6458574800, + 6458576496, + 6458576992, 6447717616, - 6458579392, - 6458570752, - 6458571584, - 6458580144, + 6458581584, + 6458572944, + 6458573776, + 6458582336, 6447712016 ], "bases": [ @@ -196207,7 +196233,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468859600, + "complete_object_locator": 6468863696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196216,15 +196242,15 @@ }, { "type_name": "CNmSelectorNode::CDefinition", - "vtable_address": 6466999984, + "vtable_address": 6467004048, "methods": [ - 6458332448, - 6458328240, - 6458327296, - 6458327616, - 6458325056, - 6458573040, - 6458326176 + 6458334640, + 6458330432, + 6458329488, + 6458329808, + 6458327248, + 6458575232, + 6458328368 ], "bases": [ { @@ -196258,7 +196284,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845688, + "complete_object_locator": 6468849784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196267,7 +196293,7 @@ }, { "type_name": "CNmSnapWeaponNode", - "vtable_address": 6465259208, + "vtable_address": 6465263288, "methods": [ 6447706288, 6447720064, @@ -196277,7 +196303,7 @@ 6447722432, 6447717616, 6447723760, - 6457927504, + 6457929696, 6447717648, 6447725424, 6447712016 @@ -196328,7 +196354,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468423808, + "complete_object_locator": 6468427904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196337,7 +196363,7 @@ }, { "type_name": "CNmSnapWeaponNode::CDefinition", - "vtable_address": 6465259144, + "vtable_address": 6465263224, "methods": [ 6447722896, 6447720944, @@ -196393,7 +196419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468423952, + "complete_object_locator": 6468428048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196402,12 +196428,12 @@ }, { "type_name": "CNmSnapWeaponTask", - "vtable_address": 6465259312, + "vtable_address": 6465263392, "methods": [ 6447723040, 6447706352, 6447713360, - 6457925952, + 6457928144, 6447722784, 6447716640, 6447706448, @@ -196417,7 +196443,7 @@ 6447716288, 6447716208, 6447716272, - 6457926016 + 6457928208 ], "bases": [ { @@ -196437,7 +196463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468424096, + "complete_object_locator": 6468428192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196446,15 +196472,15 @@ }, { "type_name": "CNmSoundEvent", - "vtable_address": 6466971688, + "vtable_address": 6466975752, "methods": [ - 6457975504, - 6457973216, - 6457971968, - 6457973200, - 6448520688, - 6457958768, - 6457971888 + 6457977696, + 6457975408, + 6457974160, + 6457975392, + 6448522256, + 6457960960, + 6457974080 ], "bases": [ { @@ -196474,7 +196500,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468829960, + "complete_object_locator": 6468834056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196483,15 +196509,15 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 6467000768, + "vtable_address": 6467004832, "methods": [ - 6458338752, - 6458335216, - 6458334224, - 6458335152, - 6458333888, - 6457927696, - 6458334048 + 6458340944, + 6458337408, + 6458336416, + 6458337344, + 6458336080, + 6457929888, + 6458336240 ], "bases": [ { @@ -196539,7 +196565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468846248, + "complete_object_locator": 6468850344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196548,21 +196574,21 @@ }, { "type_name": "CNmSpeedScaleNode", - "vtable_address": 6467013328, + "vtable_address": 6467017392, "methods": [ - 6458580432, + 6458582624, 6447720032, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6458581808, - 6457927504, - 6458581184, - 6458581936, + 6458584000, + 6457929696, + 6458583376, + 6458584128, 6447712016, - 6458580784 + 6458582976 ], "bases": [ { @@ -196624,7 +196650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468860264, + "complete_object_locator": 6468864360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196633,15 +196659,15 @@ }, { "type_name": "CNmSpeedScaleNode::CDefinition", - "vtable_address": 6467000832, + "vtable_address": 6467004896, "methods": [ - 6458338800, - 6458335232, - 6458334240, - 6458335168, - 6458333936, - 6458581456, - 6458334064 + 6458340992, + 6458337424, + 6458336432, + 6458337360, + 6458336128, + 6458583648, + 6458336256 ], "bases": [ { @@ -196703,7 +196729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468846392, + "complete_object_locator": 6468850488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196712,19 +196738,19 @@ }, { "type_name": "CNmStateCompletedConditionNode", - "vtable_address": 6467006888, + "vtable_address": 6467010952, "methods": [ - 6458447392, + 6458449584, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458448112, - 6458448640, - 6458407808, - 6458447520, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458450304, + 6458450832, + 6458410000, + 6458449712, + 6458411168 ], "bases": [ { @@ -196772,7 +196798,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468852712, + "complete_object_locator": 6468856808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196781,15 +196807,15 @@ }, { "type_name": "CNmStateCompletedConditionNode::CDefinition", - "vtable_address": 6466983584, + "vtable_address": 6466987648, "methods": [ - 6458110960, - 6458107600, - 6458106416, - 6458107552, - 6458106144, - 6458448288, - 6458106256 + 6458113152, + 6458109792, + 6458108608, + 6458109744, + 6458108336, + 6458450480, + 6458108448 ], "bases": [ { @@ -196837,7 +196863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468835920, + "complete_object_locator": 6468840016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196846,19 +196872,19 @@ }, { "type_name": "CNmStateMachineNode", - "vtable_address": 6467013800, + "vtable_address": 6467017864, "methods": [ - 6458583792, - 6458588048, + 6458585984, + 6458590240, 6447716656, 6447717392, - 6458588352, - 6458588928, + 6458590544, + 6458591120, 6447717616, - 6458589776, - 6458586944, - 6458587024, - 6458590064, + 6458591968, + 6458589136, + 6458589216, + 6458592256, 6447712016 ], "bases": [ @@ -196893,7 +196919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468860720, + "complete_object_locator": 6468864816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196902,15 +196928,15 @@ }, { "type_name": "CNmStateMachineNode::CDefinition", - "vtable_address": 6467001408, + "vtable_address": 6467005472, "methods": [ - 6458351216, - 6458348032, - 6458346704, - 6458348016, - 6458345200, - 6458587344, - 6458346320 + 6458353408, + 6458350224, + 6458348896, + 6458350208, + 6458347392, + 6458589536, + 6458348512 ], "bases": [ { @@ -196944,7 +196970,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468846848, + "complete_object_locator": 6468850944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -196953,19 +196979,19 @@ }, { "type_name": "CNmStateNode", - "vtable_address": 6467006784, + "vtable_address": 6467010848, "methods": [ - 6458443152, - 6458444304, + 6458445344, + 6458446496, 6447716656, 6447717392, - 6458444352, - 6458444784, + 6458446544, + 6458446976, 6447717616, - 6458446384, - 6458443216, - 6458443776, - 6458446720, + 6458448576, + 6458445408, + 6458445968, + 6458448912, 6447712016 ], "bases": [ @@ -197000,7 +197026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468852576, + "complete_object_locator": 6468856672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197009,15 +197035,15 @@ }, { "type_name": "CNmStateNode::CDefinition", - "vtable_address": 6466982488, + "vtable_address": 6466986552, "methods": [ - 6458103600, - 6458100912, - 6458099456, - 6458100896, - 6458098368, - 6458443968, - 6458099408 + 6458105792, + 6458103104, + 6458101648, + 6458103088, + 6458100560, + 6458446160, + 6458101600 ], "bases": [ { @@ -197051,7 +197077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468835784, + "complete_object_locator": 6468839880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197060,19 +197086,19 @@ }, { "type_name": "CNmSyncEventIndexConditionNode", - "vtable_address": 6467004552, + "vtable_address": 6467008616, "methods": [ - 6458410416, + 6458412608, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458414784, - 6457910880, - 6458407808, - 6458413888, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458416976, + 6457913072, + 6458410000, + 6458416080, + 6458411168 ], "bases": [ { @@ -197120,7 +197146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468849560, + "complete_object_locator": 6468853656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197129,15 +197155,15 @@ }, { "type_name": "CNmSyncEventIndexConditionNode::CDefinition", - "vtable_address": 6466976232, + "vtable_address": 6466980296, "methods": [ - 6458030256, - 6458017792, - 6458011680, - 6458015200, - 6458008128, - 6458416016, - 6458009088 + 6458032448, + 6458019984, + 6458013872, + 6458017392, + 6458010320, + 6458418208, + 6458011280 ], "bases": [ { @@ -197185,7 +197211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468832768, + "complete_object_locator": 6468836864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197194,19 +197220,19 @@ }, { "type_name": "CNmTargetInfoNode", - "vtable_address": 6467007176, + "vtable_address": 6467011240, "methods": [ - 6458448768, + 6458450960, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458450768, - 6458451456, - 6458407840, - 6458449120, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458452960, + 6458453648, + 6458410032, + 6458451312, + 6458411168 ], "bases": [ { @@ -197254,7 +197280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468853144, + "complete_object_locator": 6468857240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197263,15 +197289,15 @@ }, { "type_name": "CNmTargetInfoNode::CDefinition", - "vtable_address": 6466984600, + "vtable_address": 6466988664, "methods": [ - 6458120576, - 6458116816, - 6458114672, - 6458116688, - 6458114256, - 6458451024, - 6458114416 + 6458122768, + 6458119008, + 6458116864, + 6458118880, + 6458116448, + 6458453216, + 6458116608 ], "bases": [ { @@ -197319,7 +197345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468836496, + "complete_object_locator": 6468840592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197328,19 +197354,19 @@ }, { "type_name": "CNmTargetOffsetNode", - "vtable_address": 6467007368, + "vtable_address": 6467011432, "methods": [ - 6458448832, + 6458451024, 6447720016, - 6458405568, - 6457909504, - 6457910096, - 6457910720, - 6458450816, - 6458451504, - 6458407904, - 6458450112, - 6458408976 + 6458407760, + 6457911696, + 6457912288, + 6457912912, + 6458453008, + 6458453696, + 6458410096, + 6458452304, + 6458411168 ], "bases": [ { @@ -197388,7 +197414,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468853432, + "complete_object_locator": 6468857528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197397,15 +197423,15 @@ }, { "type_name": "CNmTargetOffsetNode::CDefinition", - "vtable_address": 6466984728, + "vtable_address": 6466988792, "methods": [ - 6458120624, - 6458116832, - 6458114688, - 6458116704, - 6458114304, - 6458451120, - 6458114432 + 6458122816, + 6458119024, + 6458116880, + 6458118896, + 6458116496, + 6458453312, + 6458116624 ], "bases": [ { @@ -197453,7 +197479,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468836784, + "complete_object_locator": 6468840880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197462,19 +197488,19 @@ }, { "type_name": "CNmTargetPointNode", - "vtable_address": 6467007272, + "vtable_address": 6467011336, "methods": [ - 6458448896, + 6458451088, 6447720016, - 6458405584, - 6457909504, - 6457910096, - 6457910720, - 6458450864, - 6458451552, - 6458407984, - 6458450416, - 6458408976 + 6458407776, + 6457911696, + 6457912288, + 6457912912, + 6458453056, + 6458453744, + 6458410176, + 6458452608, + 6458411168 ], "bases": [ { @@ -197522,7 +197548,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468853288, + "complete_object_locator": 6468857384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197531,15 +197557,15 @@ }, { "type_name": "CNmTargetPointNode::CDefinition", - "vtable_address": 6466984664, + "vtable_address": 6466988728, "methods": [ - 6458120672, - 6458117216, - 6458114704, - 6458116720, - 6458114352, - 6458451280, - 6458114448 + 6458122864, + 6458119408, + 6458116896, + 6458118912, + 6458116544, + 6458453472, + 6458116640 ], "bases": [ { @@ -197587,7 +197613,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468836640, + "complete_object_locator": 6468840736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197596,15 +197622,15 @@ }, { "type_name": "CNmTargetWarpEvent", - "vtable_address": 6466973000, + "vtable_address": 6466977064, "methods": [ - 6457984064, - 6457981776, - 6457981056, - 6457981744, - 6457980800, - 6457958768, - 6458404032 + 6457986256, + 6457983968, + 6457983248, + 6457983936, + 6457982992, + 6457960960, + 6458406224 ], "bases": [ { @@ -197624,7 +197650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468830344, + "complete_object_locator": 6468834440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197633,20 +197659,20 @@ }, { "type_name": "CNmTargetWarpNode", - "vtable_address": 6467013904, + "vtable_address": 6467017968, "methods": [ - 6458591216, - 6458591632, + 6458593408, + 6458593824, 6447716656, 6447717392, - 6458591664, - 6458592048, + 6458593856, + 6458594240, 6447717616, - 6458592720, - 6458591296, - 6458591312, - 6458592992, - 6458591280 + 6458594912, + 6458593488, + 6458593504, + 6458595184, + 6458593472 ], "bases": [ { @@ -197680,7 +197706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468860856, + "complete_object_locator": 6468864952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197689,15 +197715,15 @@ }, { "type_name": "CNmTargetWarpNode::CDefinition", - "vtable_address": 6467002160, + "vtable_address": 6467006224, "methods": [ - 6458354736, - 6458353136, - 6458352160, - 6458353120, - 6458352096, - 6458591488, - 6458352144 + 6458356928, + 6458355328, + 6458354352, + 6458355312, + 6458354288, + 6458593680, + 6458354336 ], "bases": [ { @@ -197731,7 +197757,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468846984, + "complete_object_locator": 6468851080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197740,19 +197766,19 @@ }, { "type_name": "CNmTimeConditionNode", - "vtable_address": 6467006984, + "vtable_address": 6467011048, "methods": [ - 6458447456, + 6458449648, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458448176, - 6457910880, - 6458407808, - 6458447792, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458450368, + 6457913072, + 6458410000, + 6458449984, + 6458411168 ], "bases": [ { @@ -197800,7 +197826,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468852856, + "complete_object_locator": 6468856952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197809,15 +197835,15 @@ }, { "type_name": "CNmTimeConditionNode::CDefinition", - "vtable_address": 6466983712, + "vtable_address": 6466987776, "methods": [ - 6458111008, - 6458107760, - 6458106736, - 6458107568, - 6458106192, - 6458448464, - 6458106272 + 6458113200, + 6458109952, + 6458108928, + 6458109760, + 6458108384, + 6458450656, + 6458108464 ], "bases": [ { @@ -197865,7 +197891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468836208, + "complete_object_locator": 6468840304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197874,15 +197900,15 @@ }, { "type_name": "CNmTransitionEvent", - "vtable_address": 6466972376, + "vtable_address": 6466976440, "methods": [ - 6457978768, - 6457977408, - 6457976688, - 6457977392, - 6457976640, - 6457958768, - 6458403664 + 6457980960, + 6457979600, + 6457978880, + 6457979584, + 6457978832, + 6457960960, + 6458405856 ], "bases": [ { @@ -197902,7 +197928,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468830088, + "complete_object_locator": 6468834184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197911,19 +197937,19 @@ }, { "type_name": "CNmTransitionEventConditionNode", - "vtable_address": 6467004840, + "vtable_address": 6467008904, "methods": [ - 6458410480, + 6458412672, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458414816, - 6457910880, - 6458407808, - 6458414048, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458417008, + 6457913072, + 6458410000, + 6458416240, + 6458411168 ], "bases": [ { @@ -197971,7 +197997,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468849992, + "complete_object_locator": 6468854088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -197980,15 +198006,15 @@ }, { "type_name": "CNmTransitionEventConditionNode::CDefinition", - "vtable_address": 6466976424, + "vtable_address": 6466980488, "methods": [ - 6458030304, - 6458017808, - 6458011696, - 6458015216, - 6458008176, - 6458416128, - 6458009104 + 6458032496, + 6458020000, + 6458013888, + 6458017408, + 6458010368, + 6458418320, + 6458011296 ], "bases": [ { @@ -198036,7 +198062,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468833200, + "complete_object_locator": 6468837296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198045,19 +198071,19 @@ }, { "type_name": "CNmTransitionNode", - "vtable_address": 6467007536, + "vtable_address": 6467011600, "methods": [ - 6458452704, + 6458454896, 6447720016, 6447716656, 6447717392, - 6458459488, - 6458461840, + 6458461680, + 6458464032, 6447717616, - 6458462096, - 6458454336, - 6458454576, - 6458462288, + 6458464288, + 6458456528, + 6458456768, + 6458464480, 6447712016 ], "bases": [ @@ -198092,7 +198118,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468853576, + "complete_object_locator": 6468857672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198101,15 +198127,15 @@ }, { "type_name": "CNmTransitionNode::CDefinition", - "vtable_address": 6466985688, + "vtable_address": 6466989752, "methods": [ - 6458126096, - 6458123520, - 6458122016, - 6458123504, - 6458121952, - 6458458208, - 6458122000 + 6458128288, + 6458125712, + 6458124208, + 6458125696, + 6458124144, + 6458460400, + 6458124192 ], "bases": [ { @@ -198143,7 +198169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468836928, + "complete_object_locator": 6468841024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198152,19 +198178,19 @@ }, { "type_name": "CNmTwoBoneIKNode", - "vtable_address": 6467014144, + "vtable_address": 6467018208, "methods": [ - 6458593984, + 6458596176, 6447720032, 6447716656, 6447717392, - 6458594656, - 6458595232, + 6458596848, + 6458597424, 6447717616, - 6458595360, - 6457927504, - 6458594048, - 6458595440, + 6458597552, + 6457929696, + 6458596240, + 6458597632, 6447712016 ], "bases": [ @@ -198213,7 +198239,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468860992, + "complete_object_locator": 6468865088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198222,15 +198248,15 @@ }, { "type_name": "CNmTwoBoneIKNode::CDefinition", - "vtable_address": 6467002352, + "vtable_address": 6467006416, "methods": [ - 6458358704, - 6458356992, - 6458355952, - 6458356976, - 6458355888, - 6458594400, - 6458355936 + 6458360896, + 6458359184, + 6458358144, + 6458359168, + 6458358080, + 6458596592, + 6458358128 ], "bases": [ { @@ -198278,7 +198304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468847120, + "complete_object_locator": 6468851216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198287,19 +198313,19 @@ }, { "type_name": "CNmVectorCreateNode", - "vtable_address": 6467007736, + "vtable_address": 6467011800, "methods": [ - 6458465280, + 6458467472, 6447720016, - 6458405584, - 6457909504, - 6457910096, - 6457910720, - 6458466928, + 6458407776, + 6457911696, + 6457912288, + 6457912912, + 6458469120, + 6458469856, + 6458410176, 6458467664, - 6458407984, - 6458465472, - 6458408976 + 6458411168 ], "bases": [ { @@ -198347,7 +198373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468853856, + "complete_object_locator": 6468857952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198356,15 +198382,15 @@ }, { "type_name": "CNmVectorCreateNode::CDefinition", - "vtable_address": 6466986320, + "vtable_address": 6466990384, "methods": [ - 6458133056, - 6458131456, - 6458130032, - 6458131408, - 6458129840, - 6458467136, - 6458129984 + 6458135248, + 6458133648, + 6458132224, + 6458133600, + 6458132032, + 6458469328, + 6458132176 ], "bases": [ { @@ -198412,7 +198438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468837208, + "complete_object_locator": 6468841304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198421,19 +198447,19 @@ }, { "type_name": "CNmVectorInfoNode", - "vtable_address": 6467007640, + "vtable_address": 6467011704, "methods": [ - 6458465344, + 6458467536, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458467040, - 6458467776, - 6458407840, - 6458465712, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458469232, + 6458469968, + 6458410032, + 6458467904, + 6458411168 ], "bases": [ { @@ -198481,7 +198507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468853712, + "complete_object_locator": 6468857808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198490,15 +198516,15 @@ }, { "type_name": "CNmVectorInfoNode::CDefinition", - "vtable_address": 6466986256, + "vtable_address": 6466990320, "methods": [ - 6458133104, - 6458131648, - 6458130304, - 6458131424, - 6458129888, - 6458467440, - 6458130000 + 6458135296, + 6458133840, + 6458132496, + 6458133616, + 6458132080, + 6458469632, + 6458132192 ], "bases": [ { @@ -198546,7 +198572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468837064, + "complete_object_locator": 6468841160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198555,19 +198581,19 @@ }, { "type_name": "CNmVectorNegateNode", - "vtable_address": 6467007832, + "vtable_address": 6467011896, "methods": [ - 6458465408, + 6458467600, 6447720016, - 6458405584, - 6457909504, - 6457910096, - 6457910720, - 6458467088, - 6458467824, - 6458407984, - 6458466752, - 6458408976 + 6458407776, + 6457911696, + 6457912288, + 6457912912, + 6458469280, + 6458470016, + 6458410176, + 6458468944, + 6458411168 ], "bases": [ { @@ -198615,7 +198641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468854000, + "complete_object_locator": 6468858096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198624,15 +198650,15 @@ }, { "type_name": "CNmVectorNegateNode::CDefinition", - "vtable_address": 6466986384, + "vtable_address": 6466990448, "methods": [ - 6458133152, - 6458132064, - 6458130320, - 6458131440, - 6458129936, - 6458467536, - 6458130016 + 6458135344, + 6458134256, + 6458132512, + 6458133632, + 6458132128, + 6458469728, + 6458132208 ], "bases": [ { @@ -198680,7 +198706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468837352, + "complete_object_locator": 6468841448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198689,21 +198715,21 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode", - "vtable_address": 6467013552, + "vtable_address": 6467017616, "methods": [ - 6458580496, + 6458582688, 6447720032, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6458581872, - 6457927504, - 6458581248, - 6458581936, + 6458584064, + 6457929696, + 6458583440, + 6458584128, 6447712016, - 6458580912 + 6458583104 ], "bases": [ { @@ -198765,7 +198791,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468860568, + "complete_object_locator": 6468864664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198774,15 +198800,15 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode::CDefinition", - "vtable_address": 6467000960, + "vtable_address": 6467005024, "methods": [ - 6458338848, - 6458335248, - 6458334368, - 6458335184, - 6458333984, - 6458581600, - 6458334080 + 6458341040, + 6458337440, + 6458336560, + 6458337376, + 6458336176, + 6458583792, + 6458336272 ], "bases": [ { @@ -198844,7 +198870,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468846696, + "complete_object_locator": 6468850792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198853,19 +198879,19 @@ }, { "type_name": "CNmVelocityBlendNode", - "vtable_address": 6467008536, + "vtable_address": 6467012600, "methods": [ - 6458513040, - 6458516512, + 6458515232, + 6458518704, 6447716656, 6447717392, - 6458516544, - 6458517008, + 6458518736, + 6458519200, 6447717616, - 6458517232, - 6458515072, - 6458515264, - 6458517376, + 6458519424, + 6458517264, + 6458517456, + 6458519568, 6447712016 ], "bases": [ @@ -198914,7 +198940,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468854424, + "complete_object_locator": 6468858520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198923,15 +198949,15 @@ }, { "type_name": "CNmVelocityBlendNode::CDefinition", - "vtable_address": 6466994272, + "vtable_address": 6466998336, "methods": [ - 6458237712, - 6458232656, - 6458231344, - 6458232000, - 6458229776, - 6458516400, - 6458230528 + 6458239904, + 6458234848, + 6458233536, + 6458234192, + 6458231968, + 6458518592, + 6458232720 ], "bases": [ { @@ -198979,7 +199005,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468840512, + "complete_object_locator": 6468844608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -198988,19 +199014,19 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode", - "vtable_address": 6467011504, + "vtable_address": 6467015568, "methods": [ - 6458548560, + 6458550752, 6447720016, - 6458531584, - 6457909504, - 6457910096, - 6457910720, - 6458550208, - 6458552944, - 6458407968, - 6458549376, - 6458408976 + 6458533776, + 6457911696, + 6457912288, + 6457912912, + 6458552400, + 6458555136, + 6458410160, + 6458551568, + 6458411168 ], "bases": [ { @@ -199048,7 +199074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468858352, + "complete_object_locator": 6468862448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199057,15 +199083,15 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode::CDefinition", - "vtable_address": 6466998312, + "vtable_address": 6467002376, "methods": [ - 6458300368, - 6458290560, - 6458289056, - 6458290384, - 6458287952, - 6458550880, - 6458288320 + 6458302560, + 6458292752, + 6458291248, + 6458292576, + 6458290144, + 6458553072, + 6458290512 ], "bases": [ { @@ -199113,7 +199139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468844440, + "complete_object_locator": 6468848536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199122,19 +199148,19 @@ }, { "type_name": "CNmVirtualParameterBoolNode", - "vtable_address": 6467011024, + "vtable_address": 6467015088, "methods": [ - 6458548688, + 6458550880, 6447720016, - 6458405520, - 6457909504, - 6457910096, - 6457910720, - 6458550256, - 6458552992, - 6458407808, - 6458549488, - 6458408976 + 6458407712, + 6457911696, + 6457912288, + 6457912912, + 6458552448, + 6458555184, + 6458410000, + 6458551680, + 6458411168 ], "bases": [ { @@ -199182,7 +199208,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468857632, + "complete_object_locator": 6468861728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199191,15 +199217,15 @@ }, { "type_name": "CNmVirtualParameterBoolNode::CDefinition", - "vtable_address": 6466997992, + "vtable_address": 6467002056, "methods": [ - 6458300416, - 6458290640, - 6458289264, - 6458290400, - 6458288000, - 6458551008, - 6458288336 + 6458302608, + 6458292832, + 6458291456, + 6458292592, + 6458290192, + 6458553200, + 6458290528 ], "bases": [ { @@ -199247,7 +199273,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468843720, + "complete_object_locator": 6468847816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199256,19 +199282,19 @@ }, { "type_name": "CNmVirtualParameterFloatNode", - "vtable_address": 6467011216, + "vtable_address": 6467015280, "methods": [ - 6458548752, + 6458550944, 6447720016, - 6458405536, - 6457909504, - 6457910096, - 6457910720, - 6458550304, - 6458553040, - 6458407840, - 6458549600, - 6458408976 + 6458407728, + 6457911696, + 6457912288, + 6457912912, + 6458552496, + 6458555232, + 6458410032, + 6458551792, + 6458411168 ], "bases": [ { @@ -199316,7 +199342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468857920, + "complete_object_locator": 6468862016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199325,15 +199351,15 @@ }, { "type_name": "CNmVirtualParameterFloatNode::CDefinition", - "vtable_address": 6466998120, + "vtable_address": 6467002184, "methods": [ - 6458300464, - 6458290720, - 6458289472, - 6458290416, - 6458288048, - 6458551120, - 6458288352 + 6458302656, + 6458292912, + 6458291664, + 6458292608, + 6458290240, + 6458553312, + 6458290544 ], "bases": [ { @@ -199381,7 +199407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468844008, + "complete_object_locator": 6468848104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199390,19 +199416,19 @@ }, { "type_name": "CNmVirtualParameterIDNode", - "vtable_address": 6467011120, + "vtable_address": 6467015184, "methods": [ - 6458548816, + 6458551008, 6447720016, - 6458405552, - 6457909504, - 6457910096, - 6457910720, - 6458550352, - 6458553088, - 6458407872, - 6458549712, - 6458408976 + 6458407744, + 6457911696, + 6457912288, + 6457912912, + 6458552544, + 6458555280, + 6458410064, + 6458551904, + 6458411168 ], "bases": [ { @@ -199450,7 +199476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468857776, + "complete_object_locator": 6468861872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199459,15 +199485,15 @@ }, { "type_name": "CNmVirtualParameterIDNode::CDefinition", - "vtable_address": 6466998056, + "vtable_address": 6467002120, "methods": [ - 6458300512, - 6458290800, - 6458289680, - 6458290432, - 6458288096, - 6458551216, - 6458288368 + 6458302704, + 6458292992, + 6458291872, + 6458292624, + 6458290288, + 6458553408, + 6458290560 ], "bases": [ { @@ -199515,7 +199541,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468843864, + "complete_object_locator": 6468847960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199524,19 +199550,19 @@ }, { "type_name": "CNmVirtualParameterTargetNode", - "vtable_address": 6467011408, + "vtable_address": 6467015472, "methods": [ - 6458548880, + 6458551072, 6447720016, - 6458405568, - 6457909504, - 6457910096, - 6457910720, - 6458550400, - 6458553136, - 6458407904, - 6458549840, - 6458408976 + 6458407760, + 6457911696, + 6457912288, + 6457912912, + 6458552592, + 6458555328, + 6458410096, + 6458552032, + 6458411168 ], "bases": [ { @@ -199584,7 +199610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468858208, + "complete_object_locator": 6468862304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199593,15 +199619,15 @@ }, { "type_name": "CNmVirtualParameterTargetNode::CDefinition", - "vtable_address": 6466998248, + "vtable_address": 6467002312, "methods": [ - 6458300560, - 6458290880, - 6458289888, - 6458290448, - 6458288144, - 6458551312, - 6458288384 + 6458302752, + 6458293072, + 6458292080, + 6458292640, + 6458290336, + 6458553504, + 6458290576 ], "bases": [ { @@ -199649,7 +199675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468844296, + "complete_object_locator": 6468848392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199658,19 +199684,19 @@ }, { "type_name": "CNmVirtualParameterVectorNode", - "vtable_address": 6467011312, + "vtable_address": 6467015376, "methods": [ - 6458548944, + 6458551136, 6447720016, - 6458405584, - 6457909504, - 6457910096, - 6457910720, - 6458550448, - 6458553184, - 6458407984, - 6458550080, - 6458408976 + 6458407776, + 6457911696, + 6457912288, + 6457912912, + 6458552640, + 6458555376, + 6458410176, + 6458552272, + 6458411168 ], "bases": [ { @@ -199718,7 +199744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468858064, + "complete_object_locator": 6468862160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199727,15 +199753,15 @@ }, { "type_name": "CNmVirtualParameterVectorNode::CDefinition", - "vtable_address": 6466998184, + "vtable_address": 6467002248, "methods": [ - 6458300608, - 6458290960, - 6458290096, - 6458290464, - 6458288192, - 6458551472, - 6458288400 + 6458302800, + 6458293152, + 6458292288, + 6458292656, + 6458290384, + 6458553664, + 6458290592 ], "bases": [ { @@ -199783,7 +199809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468844152, + "complete_object_locator": 6468848248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199792,19 +199818,19 @@ }, { "type_name": "CNmZeroPoseNode", - "vtable_address": 6467012184, + "vtable_address": 6467016248, "methods": [ - 6458561024, + 6458563216, 6447720016, 6447716656, 6447717392, - 6457910400, - 6457910768, + 6457912592, + 6457912960, 6447717616, - 6457910880, - 6458561120, - 6458561264, - 6458563424, + 6457913072, + 6458563312, + 6458563456, + 6458565616, 6447712016 ], "bases": [ @@ -199839,7 +199865,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468858912, + "complete_object_locator": 6468863008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199848,15 +199874,15 @@ }, { "type_name": "CNmZeroPoseNode::CDefinition", - "vtable_address": 6466999128, + "vtable_address": 6467003192, "methods": [ - 6458313904, - 6458310880, - 6458309904, - 6458310832, - 6458309664, - 6458561984, - 6458309744 + 6458316096, + 6458313072, + 6458312096, + 6458313024, + 6458311856, + 6458564176, + 6458311936 ], "bases": [ { @@ -199890,7 +199916,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468845000, + "complete_object_locator": 6468849096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199899,22 +199925,22 @@ }, { "type_name": "CNmZeroPoseTask", - "vtable_address": 6466991856, + "vtable_address": 6466995920, "methods": [ - 6458197120, - 6458196992, - 6458401600, - 6457925952, + 6458199312, + 6458199184, + 6458403792, + 6457928144, 6447722784, 6447716640, - 6458197056, - 6458197184, - 6458197072, - 6458197104, + 6458199248, + 6458199376, + 6458199264, + 6458199296, 6447716288, - 6458197088, + 6458199280, 6447716272, - 6457926016 + 6457928208 ], "bases": [ { @@ -199934,7 +199960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468838680, + "complete_object_locator": 6468842776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -199943,61 +199969,61 @@ }, { "type_name": "CNoClipCamera", - "vtable_address": 6466020488, - "methods": [ - 6450922224, - 6450991920, - 6451026608, - 6451051664, - 6451026336, - 6450924928, - 6451021072, - 6451021296, - 6451016672, - 6451015488, - 6451042816, - 6451043040, - 6450986864, - 6450984624, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6450983760, - 6450983664, - 6450989216, - 6450989280, - 6451046288, - 6451046400, - 6451042976, - 6450984432, - 6450980704, - 6450980832, - 6450980768, - 6450931200, - 6451046256, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952, - 6450979664 + "vtable_address": 6466024696, + "methods": [ + 6450923792, + 6450993488, + 6451028176, + 6451053232, + 6451027904, + 6450926496, + 6451022640, + 6451022864, + 6451018240, + 6451017056, + 6451044384, + 6451044608, + 6450988432, + 6450986192, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6450985328, + 6450985232, + 6450990784, + 6450990848, + 6451047856, + 6451047968, + 6451044544, + 6450986000, + 6450982272, + 6450982400, + 6450982336, + 6450932768, + 6451047824, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520, + 6450981232 ], "bases": [ { @@ -200059,7 +200085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581792, + "complete_object_locator": 6468585888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -200068,9 +200094,9 @@ }, { "type_name": "CNoClipCamera", - "vtable_address": 6466020920, + "vtable_address": 6466025128, "methods": [ - 6450989808 + 6450991376 ], "bases": [ { @@ -200132,7 +200158,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581944, + "complete_object_locator": 6468586040, "offset": 128, "constructor_displacement": 0, "class_attributes": 1 @@ -200141,7 +200167,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 6464660352, + "vtable_address": 6464664528, "methods": [ 6443748576, 6443748592, @@ -200265,7 +200291,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468255248, + "complete_object_locator": 6468259344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -200274,7 +200300,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 6464660848, + "vtable_address": 6464665024, "methods": [ 6444481568, 6444481904, @@ -200342,7 +200368,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468255480, + "complete_object_locator": 6468259576, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -200351,7 +200377,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 6464660896, + "vtable_address": 6464665072, "methods": [ 6444482544, 6444481072, @@ -200418,7 +200444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468255520, + "complete_object_locator": 6468259616, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -200427,16 +200453,16 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 6465801712, + "vtable_address": 6465805904, "methods": [ - 6449402208, - 6449399664, - 6449402112, - 6449402128, - 6449402144, - 6449402160, - 6449402176, - 6449402192 + 6449403760, + 6449401216, + 6449403664, + 6449403680, + 6449403696, + 6449403712, + 6449403728, + 6449403744 ], "bases": [ { @@ -200512,7 +200538,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517344, + "complete_object_locator": 6468521440, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -200521,13 +200547,13 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 6465801784, + "vtable_address": 6465805976, "methods": [ 6443748576, 6443748592, 6443748608, - 6449402080, - 6449400016, + 6449403632, + 6449401568, 6443748656, 6443748672, 6443748688, @@ -200559,7 +200585,7 @@ 6443749104, 6443749120, 6443749136, - 6449402096, + 6449403648, 6443749168, 6443749184, 6443749200, @@ -200579,11 +200605,11 @@ 6443749424, 6443749440, 6443749456, - 6449402048, + 6449403600, 6443749488, - 6449402032, - 6449408332, - 6449402016 + 6449403584, + 6449410328, + 6449403568 ], "bases": [ { @@ -200659,7 +200685,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468517504, + "complete_object_locator": 6468521600, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -200668,31 +200694,33 @@ }, { "type_name": "COAuthToken_ImplicitGrantNoPrompt_Request", - "vtable_address": 6465096016, - "methods": [ - 6447023744, - 6457189536, - 6447020064, - 6447020176, - 6447020240, - 6457189584, - 6457186560, - 6447020256, - 6447020864, - 6447020384, + "vtable_address": 6465100096, + "methods": [ + 6447024096, + 6457191728, + 6447020288, + 6447020400, + 6447020464, + 6457191776, + 6457188752, + 6447020480, + 6447021088, + 6447020608, 6443742160, - 6447020752, - 6457190896, - 6457192720, - 6447020880, - 6447020912, - 6447020896, - 6457187520, - 6447021008, - 6457187520, - 6447021936, - 6457187520, - 6447023360 + 6447020976, + 6457193088, + 6457194912, + 6447021104, + 6447021136, + 6447021120, + 6457189712, + 6447021232, + 6457189712, + 6447021664, + 6457189712, + 6447023568, + 6457189712, + 6447024688 ], "bases": [ { @@ -200726,7 +200754,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468392216, + "complete_object_locator": 6468396312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -200735,27 +200763,27 @@ }, { "type_name": "COAuthToken_ImplicitGrantNoPrompt_Response", - "vtable_address": 6465112504, + "vtable_address": 6465116584, "methods": [ - 6447035104, - 6457189536, - 6447032160, + 6447035328, + 6457191728, 6447032384, - 6447032480, - 6457189584, - 6457186560, - 6447032512, - 6447033312, + 6447032608, 6447032704, + 6457191776, + 6457188752, + 6447032736, + 6447033536, + 6447032928, 6443742160, - 6447033088, - 6457190896, - 6457192720, - 6447033328, - 6447033360, - 6447033344, - 6457187520, - 6447033696 + 6447033376, + 6457193088, + 6457194912, + 6447033552, + 6447033744, + 6447033568, + 6457189712, + 6447033920 ], "bases": [ { @@ -200789,7 +200817,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468392352, + "complete_object_locator": 6468396448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -200798,35 +200826,35 @@ }, { "type_name": "CP2P_Ping", - "vtable_address": 6464976800, - "methods": [ - 6446289888, - 6457189536, - 6446264560, - 6446265472, - 6446265520, - 6457189584, - 6457186560, - 6446265536, - 6446266448, - 6446265680, - 6443742160, - 6446266192, - 6457190896, - 6457192720, - 6446266848, - 6446268592, - 6446268368, - 6457187520, - 6446275392, - 6457187520, - 6446276192, - 6457187520, - 6446285760, - 6457187520, - 6446285920, - 6457187520, - 6446286224 + "vtable_address": 6464980896, + "methods": [ + 6446290272, + 6457191728, + 6446264848, + 6446265584, + 6446265824, + 6457191776, + 6457188752, + 6446265920, + 6446266832, + 6446266048, + 6443742160, + 6446266576, + 6457193088, + 6457194912, + 6446267152, + 6446268976, + 6446268752, + 6457189712, + 6446275616, + 6457189712, + 6446276352, + 6457189712, + 6446286144, + 6457189712, + 6446286304, + 6457189712, + 6446286608 ], "bases": [ { @@ -200860,7 +200888,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468295992, + "complete_object_locator": 6468300224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -200869,13 +200897,13 @@ }, { "type_name": "CP2P_Ping_t", - "vtable_address": 6465982264, + "vtable_address": 6465986456, "methods": [ - 6450765552, - 6450777088, - 6450777072, - 6450808656, - 6450779856 + 6450767120, + 6450778656, + 6450778640, + 6450810224, + 6450781424 ], "bases": [ { @@ -200951,7 +200979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572112, + "complete_object_locator": 6468576208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -200960,25 +200988,25 @@ }, { "type_name": "CP2P_Ping_t", - "vtable_address": 6465982312, - "methods": [ - 6450764612, - 6457189536, - 6446264560, - 6446265472, - 6446265520, - 6457189584, - 6457186560, - 6446265536, - 6446266448, - 6446265680, - 6443742160, - 6446266192, - 6457190896, - 6457192720, - 6446266848, - 6446268592, - 6446268368 + "vtable_address": 6465986504, + "methods": [ + 6450766180, + 6457191728, + 6446264848, + 6446265584, + 6446265824, + 6457191776, + 6457188752, + 6446265920, + 6446266832, + 6446266048, + 6443742160, + 6446266576, + 6457193088, + 6457194912, + 6446267152, + 6446268976, + 6446268752 ], "bases": [ { @@ -201054,7 +201082,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572424, + "complete_object_locator": 6468576520, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -201063,25 +201091,25 @@ }, { "type_name": "CP2P_TextMessage", - "vtable_address": 6464966448, - "methods": [ - 6446218384, - 6457189536, - 6446214032, - 6446214704, - 6446214784, - 6457189584, - 6457186560, - 6446214896, - 6446216112, - 6446215264, - 6443742160, - 6446216000, - 6457190896, - 6457192720, + "vtable_address": 6464970544, + "methods": [ + 6446218768, + 6457191728, + 6446214416, + 6446214944, + 6446215024, + 6457191776, + 6457188752, + 6446215280, 6446216336, - 6446216384, - 6446216368 + 6446215488, + 6443742160, + 6446216224, + 6457193088, + 6457194912, + 6446216720, + 6446216768, + 6446216752 ], "bases": [ { @@ -201115,7 +201143,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296128, + "complete_object_locator": 6468300360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201124,31 +201152,25 @@ }, { "type_name": "CP2P_VRAvatarPosition", - "vtable_address": 6464982504, - "methods": [ - 6446348176, - 6457189536, - 6446322416, - 6446324192, - 6446324416, - 6457189584, - 6457186560, - 6446324576, - 6446326304, - 6446324992, + "vtable_address": 6464985904, + "methods": [ + 6446348304, + 6457191728, + 6446322496, + 6446323296, + 6446323520, + 6457191776, + 6457188752, + 6446324272, + 6446326672, + 6446325232, 6443742160, - 6446325856, - 6457190896, - 6457192720, - 6446326320, - 6446326432, - 6446326416, - 6457187520, - 6446346192, - 6457187520, - 6446347264, - 6457187520, - 6446349440 + 6446326224, + 6457193088, + 6457194912, + 6446326704, + 6446326816, + 6446326800 ], "bases": [ { @@ -201182,7 +201204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296264, + "complete_object_locator": 6468300496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201191,31 +201213,31 @@ }, { "type_name": "CP2P_VRAvatarPosition_COrientation", - "vtable_address": 6464978448, - "methods": [ - 6446307904, - 6457189536, - 6446299008, - 6446299520, - 6446299680, - 6457189584, - 6457186560, - 6446299696, - 6446300656, - 6446299840, - 6443742160, - 6446300320, - 6457190896, - 6457192720, - 6446300816, - 6446300880, - 6446300864, - 6457187520, - 6446305520, - 6457187520, - 6446307488, - 6457187520, - 6446309520 + "vtable_address": 6464982544, + "methods": [ + 6446308272, + 6457191728, + 6446299312, + 6446299824, + 6446299984, + 6457191776, + 6457188752, + 6446300000, + 6446301040, + 6446300160, + 6443742160, + 6446300704, + 6457193088, + 6457194912, + 6446301200, + 6446301264, + 6446301248, + 6457189712, + 6446305904, + 6457189712, + 6446307856, + 6457189712, + 6446309904 ], "bases": [ { @@ -201249,7 +201271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296400, + "complete_object_locator": 6468300632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201258,29 +201280,29 @@ }, { "type_name": "CP2P_Voice", - "vtable_address": 6464974448, + "vtable_address": 6464978544, "methods": [ - 6446258064, - 6457189536, - 6446243504, - 6446244640, - 6446245584, - 6457189584, - 6457186560, - 6446245600, - 6446247728, - 6446246496, + 6446258448, + 6457191728, + 6446243808, + 6446245024, + 6446245968, + 6457191776, + 6457188752, + 6446245984, + 6446248112, + 6446246880, 6443742160, - 6446247312, - 6457190896, - 6457192720, - 6446248736, - 6446248896, - 6446248864, - 6457187520, - 6446253840, - 6457187520, - 6446255008 + 6446247696, + 6457193088, + 6457194912, + 6446249120, + 6446249280, + 6446249248, + 6457189712, + 6446254064, + 6457189712, + 6446255392 ], "bases": [ { @@ -201314,7 +201336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296536, + "complete_object_locator": 6468300768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201323,13 +201345,13 @@ }, { "type_name": "CP2P_Voice_t", - "vtable_address": 6465981880, + "vtable_address": 6465986072, "methods": [ - 6450765648, - 6450777056, - 6450777040, - 6450808576, - 6450779696 + 6450767216, + 6450778624, + 6450778608, + 6450810144, + 6450781264 ], "bases": [ { @@ -201405,7 +201427,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571552, + "complete_object_locator": 6468575648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -201414,25 +201436,25 @@ }, { "type_name": "CP2P_Voice_t", - "vtable_address": 6465981928, + "vtable_address": 6465986120, "methods": [ - 6450764624, - 6457189536, - 6446243504, - 6446244640, - 6446245584, - 6457189584, - 6457186560, - 6446245600, - 6446247728, - 6446246496, + 6450766192, + 6457191728, + 6446243808, + 6446245024, + 6446245968, + 6457191776, + 6457188752, + 6446245984, + 6446248112, + 6446246880, 6443742160, - 6446247312, - 6457190896, - 6457192720, - 6446248736, - 6446248896, - 6446248864 + 6446247696, + 6457193088, + 6457194912, + 6446249120, + 6446249280, + 6446249248 ], "bases": [ { @@ -201508,7 +201530,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468571864, + "complete_object_locator": 6468575960, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -201517,29 +201539,29 @@ }, { "type_name": "CP2P_WatchSynchronization", - "vtable_address": 6464985144, - "methods": [ - 6446384080, - 6457189536, - 6446364064, - 6446364240, - 6446364288, - 6457189584, - 6457186560, - 6446364304, - 6446366864, - 6446364640, - 6443742160, - 6446366096, - 6457190896, - 6457192720, - 6446367040, - 6446367264, - 6446367248, - 6457187520, - 6446381920, - 6457187520, - 6446382688 + "vtable_address": 6464989240, + "methods": [ + 6446383456, + 6457191728, + 6446364448, + 6446364624, + 6446364672, + 6457191776, + 6457188752, + 6446364688, + 6446367072, + 6446365024, + 6443742160, + 6446366304, + 6457193088, + 6457194912, + 6446367424, + 6446367648, + 6446367632, + 6457189712, + 6446382144, + 6457189712, + 6446383264 ], "bases": [ { @@ -201573,7 +201595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296672, + "complete_object_locator": 6468300904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201582,24 +201604,24 @@ }, { "type_name": "CP4File", - "vtable_address": 6467860800, - "methods": [ - 6463572320, - 6463572464, - 6463572528, - 6463572400, - 6463572640, - 6463572768, - 6463573472, - 6463572704, - 6463573552, - 6463573344, - 6463572592 + "vtable_address": 6467864896, + "methods": [ + 6463574512, + 6463574656, + 6463574720, + 6463574592, + 6463574832, + 6463574960, + 6463575664, + 6463574896, + 6463575744, + 6463575536, + 6463574784 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468995144, + "complete_object_locator": 6468999240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201608,13 +201630,13 @@ }, { "type_name": "CPASAttenuationFilter", - "vtable_address": 6465401728, + "vtable_address": 6465405888, "methods": [ - 6447989376, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6447990944, + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -201662,7 +201684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468442552, + "complete_object_locator": 6468446648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201671,13 +201693,13 @@ }, { "type_name": "CPASFilter", - "vtable_address": 6464708280, + "vtable_address": 6464712360, "methods": [ 6445077552, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -201711,7 +201733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468275040, + "complete_object_locator": 6468279136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201720,13 +201742,13 @@ }, { "type_name": "CPVSFilter", - "vtable_address": 6465290160, + "vtable_address": 6465294232, "methods": [ 6447747296, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -201760,7 +201782,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468426472, + "complete_object_locator": 6468430568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201769,28 +201791,28 @@ }, { "type_name": "CPanoramaMarshallHelper", - "vtable_address": 6466599736, - "methods": [ - 6454072224, - 6454072240, - 6454072256, - 6454072288, - 6454072304, - 6454072800, - 6454072944, - 6454073008, - 6454073280, - 6454073296, - 6454073680, - 6454073552, - 6454073488, - 6454073408, - 6454073328, - 6454073312, - 6454073808, - 6454073840, - 6454073824, - 6454073856 + "vtable_address": 6466603840, + "methods": [ + 6454073984, + 6454074000, + 6454074016, + 6454074048, + 6454074064, + 6454074560, + 6454074704, + 6454074768, + 6454075040, + 6454075056, + 6454075440, + 6454075312, + 6454075248, + 6454075168, + 6454075088, + 6454075072, + 6454075568, + 6454075600, + 6454075584, + 6454075616 ], "bases": [ { @@ -201810,7 +201832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468731072, + "complete_object_locator": 6468735168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201819,7 +201841,7 @@ }, { "type_name": "CPanoramaWorldPanel", - "vtable_address": 6464424688, + "vtable_address": 6464428784, "methods": [ 6443837392, 6443869056, @@ -201856,7 +201878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468221984, + "complete_object_locator": 6468226080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201865,7 +201887,7 @@ }, { "type_name": "CPanoramaWorldPanelSceneObject", - "vtable_address": 6464403576, + "vtable_address": 6464407672, "methods": [ 6443760224, 6443765216, @@ -201903,7 +201925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468216264, + "complete_object_locator": 6468220360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201912,7 +201934,7 @@ }, { "type_name": "CPanoramaWorldPanelSceneObjectDesc", - "vtable_address": 6464405040, + "vtable_address": 6464409136, "methods": [ 6443760464, 6443760480, @@ -201970,7 +201992,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468216400, + "complete_object_locator": 6468220496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -201979,7 +202001,7 @@ }, { "type_name": "CPanoramaWorldPanelSystem", - "vtable_address": 6464402720, + "vtable_address": 6464406816, "methods": [ 6443748576, 6443748592, @@ -202075,7 +202097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468215864, + "complete_object_locator": 6468219960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202084,7 +202106,7 @@ }, { "type_name": "CPanoramaWorldPanel_CPanoramaProceduralLayer", - "vtable_address": 6464403464, + "vtable_address": 6464407560, "methods": [ 6443760000, 6443760096, @@ -202108,7 +202130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468216136, + "complete_object_locator": 6468220232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202117,7 +202139,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6464754128, + "vtable_address": 6464758208, "methods": [ 6445076224, 6445321744 @@ -202140,7 +202162,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468283072, + "complete_object_locator": 6468287168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202149,10 +202171,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6465956696, + "vtable_address": 6465960888, "methods": [ - 6450392768, - 6450663808 + 6450394336, + 6450665376 ], "bases": [ { @@ -202172,7 +202194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564136, + "complete_object_locator": 6468568232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202181,7 +202203,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob const &)'::`29':: >", - "vtable_address": 6464688712, + "vtable_address": 6464692792, "methods": [ 6444571072, 6444933584 @@ -202204,7 +202226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468267248, + "complete_object_locator": 6468271344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202213,10 +202235,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6467546192, + "vtable_address": 6467550288, "methods": [ - 6461106736, - 6461111856 + 6461108928, + 6461114048 ], "bases": [ { @@ -202236,7 +202258,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468953280, + "complete_object_locator": 6468957376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202245,10 +202267,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob &)'::`10':: >", - "vtable_address": 6467720304, + "vtable_address": 6467724400, "methods": [ - 6462453648, - 6462463136 + 6462455840, + 6462465328 ], "bases": [ { @@ -202268,7 +202290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468986208, + "complete_object_locator": 6468990304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202277,7 +202299,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6464754152, + "vtable_address": 6464758232, "methods": [ 6445076176, 6445321600 @@ -202300,7 +202322,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468283200, + "complete_object_locator": 6468287296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202309,10 +202331,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6467021112, + "vtable_address": 6467025176, "methods": [ - 6458760016, - 6458762496 + 6458762208, + 6458764688 ], "bases": [ { @@ -202332,7 +202354,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468863352, + "complete_object_locator": 6468867448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202341,10 +202363,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6467017736, + "vtable_address": 6467021800, "methods": [ - 6458644672, - 6458676016 + 6458646864, + 6458678208 ], "bases": [ { @@ -202364,7 +202386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468861688, + "complete_object_locator": 6468865784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202373,10 +202395,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6467017760, + "vtable_address": 6467021824, "methods": [ - 6458644720, - 6458676032 + 6458646912, + 6458678224 ], "bases": [ { @@ -202396,7 +202418,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468861816, + "complete_object_locator": 6468865912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202405,10 +202427,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6467017784, + "vtable_address": 6467021848, "methods": [ - 6458644768, - 6458676048 + 6458646960, + 6458678240 ], "bases": [ { @@ -202428,7 +202450,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468861944, + "complete_object_locator": 6468866040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202437,7 +202459,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6464755232, + "vtable_address": 6464759312, "methods": [ 6445076272, 6445322112 @@ -202460,7 +202482,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468283328, + "complete_object_locator": 6468287424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202469,10 +202491,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467018080, + "vtable_address": 6467022144, "methods": [ - 6458732256, - 6458753376 + 6458734448, + 6458755568 ], "bases": [ { @@ -202492,7 +202514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862840, + "complete_object_locator": 6468866936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202501,10 +202523,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA16161616F_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct RGBA16161616F_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467018104, + "vtable_address": 6467022168, "methods": [ - 6458732304, - 6458753488 + 6458734496, + 6458755680 ], "bases": [ { @@ -202524,7 +202546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862968, + "complete_object_locator": 6468867064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202533,10 +202555,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA32323232F_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct RGBA32323232F_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467018128, + "vtable_address": 6467022192, "methods": [ - 6458732352, - 6458753504 + 6458734544, + 6458755696 ], "bases": [ { @@ -202556,7 +202578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468863096, + "complete_object_locator": 6468867192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202565,10 +202587,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467018056, + "vtable_address": 6467022120, "methods": [ - 6458732400, - 6458753520 + 6458734592, + 6458755712 ], "bases": [ { @@ -202588,7 +202610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862712, + "complete_object_locator": 6468866808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202597,10 +202619,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC7(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467018152, + "vtable_address": 6467022216, "methods": [ - 6458732448, - 6458753632 + 6458734640, + 6458755824 ], "bases": [ { @@ -202620,7 +202642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468863224, + "complete_object_locator": 6468867320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202629,10 +202651,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC7(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467018032, + "vtable_address": 6467022096, "methods": [ - 6458732496, - 6458753648 + 6458734688, + 6458755840 ], "bases": [ { @@ -202652,7 +202674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862584, + "complete_object_locator": 6468866680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202661,10 +202683,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayAIEventFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797640, + "vtable_address": 6465801832, "methods": [ - 6449163888, - 6449346032 + 6449165440, + 6449347584 ], "bases": [ { @@ -202684,7 +202706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512696, + "complete_object_locator": 6468516792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202693,10 +202715,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayCombinedFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797544, + "vtable_address": 6465801736, "methods": [ - 6449164272, - 6449346768 + 6449165824, + 6449348320 ], "bases": [ { @@ -202716,7 +202738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512184, + "complete_object_locator": 6468516280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202725,10 +202747,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayEntityFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797520, + "vtable_address": 6465801712, "methods": [ - 6449163936, - 6449346048 + 6449165488, + 6449347600 ], "bases": [ { @@ -202748,7 +202770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512056, + "complete_object_locator": 6468516152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202757,10 +202779,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayPathfindingFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797664, + "vtable_address": 6465801856, "methods": [ - 6449163984, - 6449346064 + 6449165536, + 6449347616 ], "bases": [ { @@ -202780,7 +202802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512824, + "complete_object_locator": 6468516920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202789,10 +202811,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayScheduleFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797592, + "vtable_address": 6465801784, "methods": [ - 6449164032, - 6449346080 + 6449165584, + 6449347632 ], "bases": [ { @@ -202812,7 +202834,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512440, + "complete_object_locator": 6468516536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202821,10 +202843,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayTacticalFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797568, + "vtable_address": 6465801760, "methods": [ - 6449164080, - 6449346096 + 6449165632, + 6449347648 ], "bases": [ { @@ -202844,7 +202866,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512312, + "complete_object_locator": 6468516408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202853,10 +202875,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayTaskFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797616, + "vtable_address": 6465801808, "methods": [ - 6449164128, - 6449346384 + 6449165680, + 6449347936 ], "bases": [ { @@ -202876,7 +202898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512568, + "complete_object_locator": 6468516664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202885,10 +202907,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayTextFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797496, + "vtable_address": 6465801688, "methods": [ - 6449164176, - 6449346400 + 6449165728, + 6449347952 ], "bases": [ { @@ -202908,7 +202930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468511928, + "complete_object_locator": 6468516024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202917,7 +202939,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob const &)'::`22':: >(int,int,char const *,class `private: void __cdecl CAnimGraphGameSystem::UpdateAnimGraphAnimations(enum AnimationAdvanceType_t,class CUtlVectorFixedGrowable const &)'::`22':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6464692296, + "vtable_address": 6464696376, "methods": [ 6444571024, 6444933408 @@ -202940,7 +202962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272800, + "complete_object_locator": 6468276896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202949,10 +202971,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: void __cdecl CDirtySpatialPartitionEntityList::ParallelUpdateSurroundingBoundsForDirtyEntities(struct RnQueryAttr_t const *)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6466055832, + "vtable_address": 6466060040, "methods": [ - 6451086944, - 6451141904 + 6451088512, + 6451143472 ], "bases": [ { @@ -202972,7 +202994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591504, + "complete_object_locator": 6468595600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -202981,10 +203003,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `protected: bool __cdecl FloatBitMap_t::WriteToBufferBC6H_ispctexcomp(void *,uint64_t,struct FloatBitmapEncodeSettings_t const &) const'::`12':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467017808, + "vtable_address": 6467021872, "methods": [ - 6458644912, - 6458676336 + 6458647104, + 6458678528 ], "bases": [ { @@ -203004,7 +203026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862072, + "complete_object_locator": 6468866168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203013,10 +203035,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: static void __cdecl CGameSceneNode::BatchCallsToInvalidatePhysicsRecursive(bool)'::`23':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465831992, + "vtable_address": 6465836184, "methods": [ - 6449497248, - 6449719680 + 6449498816, + 6449721248 ], "bases": [ { @@ -203036,7 +203058,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526704, + "complete_object_locator": 6468530800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203045,10 +203067,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: virtual void __cdecl CEntitySaveRestoreBlockHandler::Save(class ISave *)'::`5':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465797968, + "vtable_address": 6465802160, "methods": [ - 6449164224, - 6449346416 + 6449165776, + 6449347968 ], "bases": [ { @@ -203068,7 +203090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468513592, + "complete_object_locator": 6468517688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203077,10 +203099,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: virtual void __cdecl CPhysSaveRestoreBlockHandler::Save(class ISave *)'::`7':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6466069592, + "vtable_address": 6466073800, "methods": [ - 6451238976, - 6451238960 + 6451240544, + 6451240528 ], "bases": [ { @@ -203100,7 +203122,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468598608, + "complete_object_locator": 6468602704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203109,10 +203131,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: virtual void __cdecl CPrediction::PostEntityPacketReceived(void)'::`6':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6466101608, + "vtable_address": 6466105816, "methods": [ - 6451280640, - 6451380672 + 6451282208, + 6451382240 ], "bases": [ { @@ -203132,7 +203154,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603624, + "complete_object_locator": 6468607720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203141,10 +203163,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: virtual void __cdecl CPrediction::PostNetworkDataReceived(struct PostDataUpdateCall_t const *,uint64_t)'::`11':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6466101632, + "vtable_address": 6466105840, "methods": [ - 6451280688, - 6451380864 + 6451282256, + 6451382432 ], "bases": [ { @@ -203164,7 +203186,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603752, + "complete_object_locator": 6468607848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203173,10 +203195,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: void __cdecl CRagdollPoseControlSystem::OnPreSolve(float)'::`11':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6465741192, + "vtable_address": 6465745384, "methods": [ - 6448808816, - 6449020976 + 6448810384, + 6449022528 ], "bases": [ { @@ -203196,7 +203218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468501616, + "complete_object_locator": 6468505712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203205,10 +203227,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: void __cdecl FloatBitMap_t::DownsampleNiceFiltered(struct DownsampleInfo_t const &,class FloatBitMap_t *)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467017880, + "vtable_address": 6467021944, "methods": [ - 6458644816, - 6458676064 + 6458647008, + 6458678256 ], "bases": [ { @@ -203228,7 +203250,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862456, + "complete_object_locator": 6468866552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203237,10 +203259,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: void __cdecl FloatBitMap_t::QuarterSize(class FloatBitMap_t *)'::`10':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467017856, + "vtable_address": 6467021920, "methods": [ - 6458644960, - 6458676448 + 6458647152, + 6458678640 ], "bases": [ { @@ -203260,7 +203282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862328, + "complete_object_locator": 6468866424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203269,10 +203291,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: void __cdecl FloatBitMap_t::QuarterSize(class FloatBitMap_t *)'::`8':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6467017832, + "vtable_address": 6467021896, "methods": [ - 6458644864, - 6458676192 + 6458647056, + 6458678384 ], "bases": [ { @@ -203292,7 +203314,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468862200, + "complete_object_locator": 6468866296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203301,10 +203323,10 @@ }, { "type_name": "CParallelProcessorAbstract > >", - "vtable_address": 6465956744, + "vtable_address": 6465960936, "methods": [ - 6450392816, - 6450663904 + 6450394384, + 6450665472 ], "bases": [ { @@ -203338,7 +203360,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468562192, + "complete_object_locator": 6468566288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -203347,10 +203369,10 @@ }, { "type_name": "CParallelProcessorAbstract >", - "vtable_address": 6465956720, + "vtable_address": 6465960912, "methods": [ - 6450392864, - 6450664400 + 6450394432, + 6450665968 ], "bases": [ { @@ -203384,7 +203406,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468562056, + "complete_object_locator": 6468566152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -203393,10 +203415,10 @@ }, { "type_name": "CParallelProcessorAbstract,1> >", - "vtable_address": 6465919352, + "vtable_address": 6465923544, "methods": [ - 6450392912, - 6450664896 + 6450394480, + 6450666464 ], "bases": [ { @@ -203430,7 +203452,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468556768, + "complete_object_locator": 6468560864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -203439,14 +203461,14 @@ }, { "type_name": "CParticleCluster", - "vtable_address": 6465788760, + "vtable_address": 6465792952, "methods": [ - 6449329712 + 6449331264 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468511400, + "complete_object_locator": 6468515496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203455,14 +203477,14 @@ }, { "type_name": "CParticleMgr", - "vtable_address": 6467719760, + "vtable_address": 6467723856, "methods": [ - 6462453696 + 6462455888 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468986088, + "complete_object_locator": 6468990184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203471,10 +203493,10 @@ }, { "type_name": "CParticleShadowRenderer", - "vtable_address": 6466884336, + "vtable_address": 6466888448, "methods": [ - 6457006032, - 6456702624, + 6457008224, + 6456704432, 6443773360 ], "bases": [ @@ -203495,7 +203517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813304, + "complete_object_locator": 6468817400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203504,100 +203526,100 @@ }, { "type_name": "CParticleSystemQuery", - "vtable_address": 6465843792, - "methods": [ - 6449918960, - 6449836144, - 6449893664, - 6449885024, - 6449946944, - 6449826272, - 6449890368, - 6449869872, - 6449860304, - 6449873280, - 6449873760, - 6449870000, - 6449870480, - 6449871936, - 6449875488, - 6449946816, - 6449888928, - 6449859904, - 6449887984, - 6449878208, - 6449893680, - 6449878464, - 6449859744, - 6449890848, - 6449890592, - 6449890080, - 6449885696, - 6449885392, - 6449952784, - 6449840128, - 6449948896, - 6449840080, - 6449954688, - 6449840160, - 6449948608, - 6449840048, - 6449851920, - 6449840208, - 6449931408, - 6449954672, - 6449840112, - 6449927856, - 6449927840, - 6449926336, - 6449926816, - 6449878144, - 6449893584, - 6449891360, - 6449891184, - 6449859760, - 6449891664, - 6449876064, - 6449905632, - 6449822336, - 6449822416, - 6449822240, - 6449822400, - 6449905280, - 6449828528, - 6449884288, - 6449822320, - 6449904432, - 6449885952, - 6449932464, - 6449932480, - 6449930880, - 6449932704, - 6449891696, - 6449828560, - 6449891168, - 6449893552, - 6449892480, - 6449884304, - 6449931968, - 6449878720, - 6449838272, - 6449828544, - 6449939648, - 6449840752, - 6449840192, - 6449887968, - 6449863872, - 6449931392, - 6449831568, - 6449859888, - 6449857296, - 6449838128, - 6449888608, - 6449825680, - 6449877376, - 6449917872, - 6449878160 + "vtable_address": 6465847984, + "methods": [ + 6449920528, + 6449837712, + 6449895232, + 6449886592, + 6449948512, + 6449827840, + 6449891936, + 6449871440, + 6449861872, + 6449874848, + 6449875328, + 6449871568, + 6449872048, + 6449873504, + 6449877056, + 6449948384, + 6449890496, + 6449861472, + 6449889552, + 6449879776, + 6449895248, + 6449880032, + 6449861312, + 6449892416, + 6449892160, + 6449891648, + 6449887264, + 6449886960, + 6449954352, + 6449841696, + 6449950464, + 6449841648, + 6449956256, + 6449841728, + 6449950176, + 6449841616, + 6449853488, + 6449841776, + 6449932976, + 6449956240, + 6449841680, + 6449929424, + 6449929408, + 6449927904, + 6449928384, + 6449879712, + 6449895152, + 6449892928, + 6449892752, + 6449861328, + 6449893232, + 6449877632, + 6449907200, + 6449823904, + 6449823984, + 6449823808, + 6449823968, + 6449906848, + 6449830096, + 6449885856, + 6449823888, + 6449906000, + 6449887520, + 6449934032, + 6449934048, + 6449932448, + 6449934272, + 6449893264, + 6449830128, + 6449892736, + 6449895120, + 6449894048, + 6449885872, + 6449933536, + 6449880288, + 6449839840, + 6449830112, + 6449941216, + 6449842320, + 6449841760, + 6449889536, + 6449865440, + 6449932960, + 6449833136, + 6449861456, + 6449858864, + 6449839696, + 6449890176, + 6449827248, + 6449878944, + 6449919440, + 6449879728 ], "bases": [ { @@ -203631,7 +203653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528520, + "complete_object_locator": 6468532616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203640,7 +203662,7 @@ }, { "type_name": "CParticleSystemQueryGameSystem", - "vtable_address": 6465833744, + "vtable_address": 6465837952, "methods": [ 6443748576, 6443748592, @@ -203657,10 +203679,10 @@ 6443748768, 6443748784, 6443748800, - 6449795488, + 6449797056, 6443748832, 6443748848, - 6449796224, + 6449797792, 6443748880, 6443748896, 6443748912, @@ -203671,7 +203693,7 @@ 6443748992, 6443749008, 6443749024, - 6449797056, + 6449798624, 6443749056, 6443749072, 6443749088, @@ -203698,11 +203720,11 @@ 6443749424, 6443749440, 6443749456, - 6449795456, + 6449797024, 6443749488, - 6449795440, - 6449797232, - 6449795424 + 6449797008, + 6449798800, + 6449796992 ], "bases": [ { @@ -203736,7 +203758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527216, + "complete_object_locator": 6468531312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203745,35 +203767,35 @@ }, { "type_name": "CParticlesLibHost_Client", - "vtable_address": 6466065152, - "methods": [ - 6451203472, - 6451203520, - 6451203504, - 6451209392, - 6451228080, - 6451197232, - 6451205824, - 6451207552, - 6451217568, - 6451217456, - 6451224912, - 6451196720, - 6451198128, - 6451202096, - 6451209360, - 6451209552, - 6451218192, - 6451181424, - 6451202896, - 6451202640, - 6451202352, - 6451205776, - 6451228160, - 6451201344, - 6451201168, - 6451205856, - 6451205888 + "vtable_address": 6466069360, + "methods": [ + 6451205040, + 6451205088, + 6451205072, + 6451210960, + 6451229648, + 6451198800, + 6451207392, + 6451209120, + 6451219136, + 6451219024, + 6451226480, + 6451198288, + 6451199696, + 6451203664, + 6451210928, + 6451211120, + 6451219760, + 6451182992, + 6451204464, + 6451204208, + 6451203920, + 6451207344, + 6451229728, + 6451202912, + 6451202736, + 6451207424, + 6451207456 ], "bases": [ { @@ -203793,7 +203815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468595648, + "complete_object_locator": 6468599744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -203802,11 +203824,11 @@ }, { "type_name": "CPathQueryComponent", - "vtable_address": 6465846712, + "vtable_address": 6465850904, "methods": [ - 6449925760, - 6449877056, - 6449878192 + 6449927328, + 6449878624, + 6449879760 ], "bases": [ { @@ -203840,7 +203862,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528736, + "complete_object_locator": 6468532832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -203849,32 +203871,32 @@ }, { "type_name": "CPathSimple", - "vtable_address": 6465846872, + "vtable_address": 6465851064, "methods": [ 6445466896, - 6449819328, + 6449820896, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6449937392, - 6450413456, - 6450585280, - 6450586832, - 6449821008, - 6450715424, - 6450580640, + 6450411680, + 6449938960, + 6450415024, + 6450586848, + 6450588400, + 6449822576, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -203883,25 +203905,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449877072, + 6460060080, + 6449878640, 6445562704, - 6449925808, + 6449927376, 6443799760, 6445559440, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -203918,13 +203940,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -203932,39 +203954,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, - 6449955744, - 6450578848, + 6449957312, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -203978,33 +204000,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -204032,34 +204054,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -204069,8 +204091,8 @@ 6444207072, 6444190512, 6443887696, - 6449933696, - 6449854032 + 6449935264, + 6449855600 ], "bases": [ { @@ -204118,7 +204140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468529216, + "complete_object_locator": 6468533312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -204127,14 +204149,14 @@ }, { "type_name": "CPathSimple", - "vtable_address": 6465848640, + "vtable_address": 6465852832, "methods": [ - 6449818892, - 6449849600, - 6449886192, - 6449886704, - 6449887232, - 6449853136 + 6449820460, + 6449851168, + 6449887760, + 6449888272, + 6449888800, + 6449854704 ], "bases": [ { @@ -204182,7 +204204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468529360, + "complete_object_locator": 6468533456, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -204191,13 +204213,13 @@ }, { "type_name": "CPawnListGameSystem", - "vtable_address": 6465852416, + "vtable_address": 6465856608, "methods": [ 6443748576, 6443748592, 6443748608, 6443748624, - 6449957216, + 6449958784, 6443748656, 6443748672, 6443748688, @@ -204249,11 +204271,11 @@ 6443749424, 6443749440, 6443749456, - 6449957184, + 6449958752, 6443749488, - 6449957168, - 6449957472, - 6449957152 + 6449958736, + 6449959040, + 6449958720 ], "bases": [ { @@ -204287,7 +204309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532424, + "complete_object_locator": 6468536520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204296,31 +204318,31 @@ }, { "type_name": "CPerFrameConCommandSystem", - "vtable_address": 6465848712, - "methods": [ - 6447891584, - 6447893552, - 6447913232, - 6447907360, - 6447917600, - 6447911792, - 6447897728, - 6447900944, - 6447913248, - 6447910160, - 6447900784, - 6447900496, - 6447900176, - 6449935664, - 6447911472, - 6447911696, - 6447909968, - 6447916288, - 6447916736, - 6449917968, - 6447900512, - 6447916752, - 6449819440 + "vtable_address": 6465852904, + "methods": [ + 6447893152, + 6447895120, + 6447914800, + 6447908928, + 6447919168, + 6447913360, + 6447899296, + 6447902512, + 6447914816, + 6447911728, + 6447902352, + 6447902064, + 6447901744, + 6449937232, + 6447913040, + 6447913264, + 6447911536, + 6447917856, + 6447918304, + 6449919536, + 6447902080, + 6447918320, + 6449821008 ], "bases": [ { @@ -204452,7 +204474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468529400, + "complete_object_locator": 6468533496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204461,12 +204483,12 @@ }, { "type_name": "CPhysObjSaveRestoreOps", - "vtable_address": 6466066232, + "vtable_address": 6466070440, "methods": [ - 6451231984, - 6451232064, - 6451232432, - 6451232400, + 6451233552, + 6451233632, + 6451234000, + 6451233968, 6443852464, 6443799744 ], @@ -204502,7 +204524,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468596520, + "complete_object_locator": 6468600616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204511,9 +204533,9 @@ }, { "type_name": "CPhysPropClientsideDestroyFilter", - "vtable_address": 6466081216, + "vtable_address": 6466085424, "methods": [ - 6451387104 + 6451388672 ], "bases": [ { @@ -204533,7 +204555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468600792, + "complete_object_locator": 6468604888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204542,10 +204564,10 @@ }, { "type_name": "CPhysPropEntitySpawnFilter", - "vtable_address": 6466071592, + "vtable_address": 6466075800, "methods": [ - 6451242032, - 6451241536 + 6451243600, + 6451243104 ], "bases": [ { @@ -204565,7 +204587,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468596792, + "complete_object_locator": 6468600888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204574,17 +204596,17 @@ }, { "type_name": "CPhysSaveRestoreBlockHandler", - "vtable_address": 6466076336, + "vtable_address": 6466080544, "methods": [ - 6451243216, - 6451243232, - 6451243248, - 6451244160, - 6451244272, - 6451244384, - 6451244400, - 6451244512, - 6451245072 + 6451244784, + 6451244800, + 6451244816, + 6451245728, + 6451245840, + 6451245952, + 6451245968, + 6451246080, + 6451246640 ], "bases": [ { @@ -204618,7 +204640,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468596384, + "complete_object_locator": 6468600480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204627,7 +204649,7 @@ }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 6464711112, + "vtable_address": 6464715192, "methods": [ 6443748576, 6443748592, @@ -204723,7 +204745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468278584, + "complete_object_locator": 6468282680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -204732,7 +204754,7 @@ }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 6464711608, + "vtable_address": 6464715688, "methods": [ 6445261792 ], @@ -204768,7 +204790,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468278760, + "complete_object_locator": 6468282856, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -204777,14 +204799,14 @@ }, { "type_name": "CPhysicsGameSystem::PhysicsWorld_t", - "vtable_address": 6464711096, + "vtable_address": 6464715176, "methods": [ 6445078944 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468279816, + "complete_object_locator": 6468283912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204793,7 +204815,7 @@ }, { "type_name": "CPhysicsSystem", - "vtable_address": 6466056216, + "vtable_address": 6466060448, "methods": [ 6443748576, 6443748592, @@ -204802,7 +204824,7 @@ 6443748640, 6443748656, 6443748672, - 6451162064, + 6451163632, 6443748704, 6443748720, 6443748736, @@ -204851,11 +204873,11 @@ 6443749424, 6443749440, 6443749456, - 6451162032, + 6451163600, 6443749488, - 6451162016, - 6451162080, - 6451162000 + 6451163584, + 6451163648, + 6451163568 ], "bases": [ { @@ -204875,7 +204897,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468593400, + "complete_object_locator": 6468597496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204884,27 +204906,27 @@ }, { "type_name": "CPlayerControllerComponent", - "vtable_address": 6465658560, - "methods": [ - 6448497264, - 6449981520, - 6449983024, - 6448403664, - 6448482976, - 6448403872, - 6448507088, - 6448482784, - 6448490416, - 6448489824, - 6448489408, - 6448482352, - 6448478912, - 6448493712 + "vtable_address": 6465662736, + "methods": [ + 6448498832, + 6449983088, + 6449984592, + 6448405232, + 6448484544, + 6448405440, + 6448508656, + 6448484352, + 6448491984, + 6448491392, + 6448490976, + 6448483920, + 6448480480, + 6448495280 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468483680, + "complete_object_locator": 6468487776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204913,10 +204935,10 @@ }, { "type_name": "CPlayerHealthGlowRenderer", - "vtable_address": 6466884368, + "vtable_address": 6466888480, "methods": [ - 6457009040, - 6456702688, + 6457011232, + 6456704496, 6443773360 ], "bases": [ @@ -204937,7 +204959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813432, + "complete_object_locator": 6468817528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -204946,32 +204968,32 @@ }, { "type_name": "CPlayerInventory", - "vtable_address": 6466758304, + "vtable_address": 6466762400, "methods": [ - 6456393280, - 6456394800, - 6456393776, - 6456392288, - 6456392960, - 6455880688, - 6448286368, - 6456148368, - 6456142176, - 6448307312, - 6456058016, - 6456081104, - 6456154432, - 6456392992, - 6456287872, - 6456325552, - 6463705588, - 6456395904, - 6448310272, - 6448310288, - 6456419248, - 6456256304, - 6448307296, - 6456279248 + 6456395056, + 6456396576, + 6456395552, + 6456394064, + 6456394736, + 6455882448, + 6448287936, + 6456150144, + 6456143952, + 6448308880, + 6456059792, + 6456082880, + 6456156208, + 6456394768, + 6456289648, + 6456327328, + 6463707780, + 6456397680, + 6448311840, + 6448311856, + 6456421024, + 6456258080, + 6448308864, + 6456281024 ], "bases": [ { @@ -204991,7 +205013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780048, + "complete_object_locator": 6468784144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205000,38 +205022,38 @@ }, { "type_name": "CPlayerPawnComponent", - "vtable_address": 6465639720, + "vtable_address": 6465643896, "methods": [ - 6448386144, - 6449981536, - 6449983040, - 6448342608, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6448381408 + 6448387712, + 6449983104, + 6449984608, + 6448344176, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6448382976 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468478528, + "complete_object_locator": 6468482624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205040,9 +205062,9 @@ }, { "type_name": "CPlayerVisibilityDataColorSceneObject", - "vtable_address": 6466321408, + "vtable_address": 6466325568, "methods": [ - 6452351248, + 6452352864, 6443765216, 6443765488 ], @@ -205064,7 +205086,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468674240, + "complete_object_locator": 6468678336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205073,14 +205095,14 @@ }, { "type_name": "CPlayerVisibilityDataColorSceneObjectDesc", - "vtable_address": 6466320000, + "vtable_address": 6466324160, "methods": [ - 6452333024, + 6452334640, 6443766096, 6443766128, - 6452334704, - 6452333040, - 6452332992, + 6452336320, + 6452334656, + 6452334608, 6443766480, 6443766496, 6443766512, @@ -205097,7 +205119,7 @@ 6443766688, 6443766704, 6443766720, - 6452334896 + 6452336512 ], "bases": [ { @@ -205131,7 +205153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468670104, + "complete_object_locator": 6468674200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205140,9 +205162,9 @@ }, { "type_name": "CPlayerVisibilityStencilProxySceneObject", - "vtable_address": 6466321440, + "vtable_address": 6466325600, "methods": [ - 6452351328, + 6452352944, 6443765216, 6443765488 ], @@ -205164,7 +205186,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468674368, + "complete_object_locator": 6468678464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205173,14 +205195,14 @@ }, { "type_name": "CPlayerVisibilityStencilProxySceneObjectDesc", - "vtable_address": 6466320680, + "vtable_address": 6466324840, "methods": [ - 6452335120, - 6452335136, + 6452336736, + 6452336752, 6443766128, - 6452336352, + 6452337968, 6443766144, - 6452335088, + 6452336704, 6443766480, 6443766496, 6443766512, @@ -205197,7 +205219,7 @@ 6443766688, 6443766704, 6443766720, - 6452336544 + 6452338160 ], "bases": [ { @@ -205231,7 +205253,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468670328, + "complete_object_locator": 6468674424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205240,27 +205262,27 @@ }, { "type_name": "CPlayer_AcceptSSA_Request", - "vtable_address": 6465196456, - "methods": [ + "vtable_address": 6465200536, + "methods": [ + 6447314912, + 6457191728, + 6447313472, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, 6447314672, - 6457189536, - 6447312768, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447314448, - 6447314416, - 6457187520, - 6447314752 + 6447314656, + 6457189712, + 6447314976 ], "bases": [ { @@ -205308,7 +205330,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468392488, + "complete_object_locator": 6468396584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205317,27 +205339,27 @@ }, { "type_name": "CPlayer_AcceptSSA_Response", - "vtable_address": 6465196920, - "methods": [ - 6447317616, - 6457189536, - 6447317504, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447317536, - 6447317520, - 6457187520, - 6447317680 + "vtable_address": 6465201000, + "methods": [ + 6447317840, + 6457191728, + 6447317728, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447317760, + 6447317744, + 6457189712, + 6447317904 ], "bases": [ { @@ -205385,7 +205407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468392632, + "complete_object_locator": 6468396728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205394,25 +205416,25 @@ }, { "type_name": "CPlayer_AddFriend_Request", - "vtable_address": 6465078024, - "methods": [ - 6446842752, - 6457189536, - 6447440720, - 6447441264, - 6447441312, - 6457189584, - 6457186560, - 6447441392, - 6447442784, + "vtable_address": 6465082104, + "methods": [ + 6446843696, + 6457191728, + 6447440944, + 6447441504, + 6447441600, + 6457191776, + 6457188752, 6447442096, + 6447443008, + 6447442480, 6443742160, - 6447442672, - 6457190896, - 6457192720, - 6447442816, - 6447443088, - 6447443072 + 6447442896, + 6457193088, + 6457194912, + 6447443040, + 6447443312, + 6447443296 ], "bases": [ { @@ -205446,7 +205468,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468392776, + "complete_object_locator": 6468396872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205455,27 +205477,27 @@ }, { "type_name": "CPlayer_AddFriend_Response", - "vtable_address": 6465079816, - "methods": [ - 6446854016, - 6457189536, - 6446847888, - 6446848000, - 6446848032, - 6457189584, - 6457186560, - 6446848048, - 6446849120, - 6446848240, + "vtable_address": 6465083896, + "methods": [ + 6446854240, + 6457191728, + 6446848112, + 6446848224, + 6446848256, + 6457191776, + 6457188752, + 6446848272, + 6446850112, + 6446848480, 6443742160, - 6446848896, - 6457190896, - 6457192720, - 6446850448, - 6446852272, - 6446852256, - 6457187520, - 6446852672 + 6446849120, + 6457193088, + 6457194912, + 6446850688, + 6446852496, + 6446852480, + 6457189712, + 6446852896 ], "bases": [ { @@ -205509,7 +205531,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468392912, + "complete_object_locator": 6468397008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205518,49 +205540,49 @@ }, { "type_name": "CPlayer_CameraServices", - "vtable_address": 6465849696, - "methods": [ - 6449925856, - 6449877088, - 6449890256, - 6449819504, - 6449910944, - 6449931168, - 6448342816, - 6448373344, - 6448391360, - 6449915120, - 6449914192, - 6448390320, - 6449910800, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6449914496, - 6449913264, - 6449910624, - 6449908272, - 6449935936, - 6449914512, - 6448379600, - 6449918000, - 6448359024, - 6448354304, - 6449884880, - 6449831088, - 6449830432, - 6449878704, - 6449877408, - 6449929680, - 6449956272, - 6449830416, - 6449885936, - 6448354976, - 6449885360, - 6449949168, - 6449951840, - 6448354992 + "vtable_address": 6465853888, + "methods": [ + 6449927424, + 6449878656, + 6449891824, + 6449821072, + 6449912512, + 6449932736, + 6448344384, + 6448374912, + 6448392928, + 6449916688, + 6449915760, + 6448391888, + 6449912368, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6449916064, + 6449914832, + 6449912192, + 6449909840, + 6449937504, + 6449916080, + 6448381168, + 6449919568, + 6448360592, + 6448355872, + 6449886448, + 6449832656, + 6449832000, + 6449880272, + 6449878976, + 6449931248, + 6449957840, + 6449831984, + 6449887504, + 6448356544, + 6449886928, + 6449950736, + 6449953408, + 6448356560 ], "bases": [ { @@ -205580,7 +205602,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527872, + "complete_object_locator": 6468531968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205589,12 +205611,12 @@ }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_PlayerFog", - "vtable_address": 6465848976, + "vtable_address": 6465853168, "methods": [ - 6449926192, - 6449907632, - 6449907792, - 6449907744 + 6449927760, + 6449909200, + 6449909360, + 6449909312 ], "bases": [ { @@ -205614,7 +205636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468529720, + "complete_object_locator": 6468533816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205623,12 +205645,12 @@ }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_audio", - "vtable_address": 6465849016, + "vtable_address": 6465853208, "methods": [ - 6449926240, - 6449907680, - 6449907808, - 6449907760 + 6449927808, + 6449909248, + 6449909376, + 6449909328 ], "bases": [ { @@ -205648,7 +205670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468529848, + "complete_object_locator": 6468533944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205657,27 +205679,27 @@ }, { "type_name": "CPlayer_CommunityPreferences", - "vtable_address": 6465088912, - "methods": [ - 6446946592, - 6457189536, - 6446938432, - 6446940640, - 6446940688, - 6457189584, - 6457186560, - 6446940704, - 6446941856, - 6446940816, - 6443742160, - 6446941552, - 6457190896, - 6457192720, - 6446941952, - 6446942512, - 6446942400, - 6457187520, - 6446944848 + "vtable_address": 6465092992, + "methods": [ + 6446946816, + 6457191728, + 6446939936, + 6446940864, + 6446940912, + 6457191776, + 6457188752, + 6446940944, + 6446942080, + 6446941040, + 6443742160, + 6446941776, + 6457193088, + 6457194912, + 6446942176, + 6446942752, + 6446942720, + 6457189712, + 6446945072 ], "bases": [ { @@ -205711,7 +205733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468393048, + "complete_object_locator": 6468397144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205720,27 +205742,27 @@ }, { "type_name": "CPlayer_GetCommunityPreferences_Request", - "vtable_address": 6465087360, - "methods": [ - 6446931568, - 6457189536, - 6446930976, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446931168, - 6446931152, - 6457187520, - 6446931488 + "vtable_address": 6465091440, + "methods": [ + 6446931792, + 6457191728, + 6446931200, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446931392, + 6446931376, + 6457189712, + 6446931712 ], "bases": [ { @@ -205788,7 +205810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468393184, + "complete_object_locator": 6468397280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205797,25 +205819,25 @@ }, { "type_name": "CPlayer_GetCommunityPreferences_Response", - "vtable_address": 6465090208, - "methods": [ - 6446961840, - 6457189536, - 6446957984, - 6446958224, - 6446958320, - 6457189584, - 6457186560, - 6446958336, - 6446959168, - 6446958656, - 6443742160, - 6446959056, - 6457190896, - 6457192720, - 6446959264, - 6446960192, - 6446960176 + "vtable_address": 6465094288, + "methods": [ + 6446962064, + 6457191728, + 6446958208, + 6446958448, + 6446958544, + 6457191776, + 6457188752, + 6446958560, + 6446959392, + 6446958880, + 6443742160, + 6446959280, + 6457193088, + 6457194912, + 6446959504, + 6446960416, + 6446960400 ], "bases": [ { @@ -205849,7 +205871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468393328, + "complete_object_locator": 6468397424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205858,25 +205880,25 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Request", - "vtable_address": 6465163760, - "methods": [ - 6447141984, - 6457189536, - 6447138832, - 6447138976, - 6447139008, - 6457189584, - 6457186560, - 6447139040, - 6447140016, - 6447139088, - 6443742160, - 6447139632, - 6457190896, - 6457192720, - 6447140752, - 6447140992, - 6447140960 + "vtable_address": 6465167984, + "methods": [ + 6447142208, + 6457191728, + 6447139072, + 6447139200, + 6447139248, + 6457191776, + 6457188752, + 6447139264, + 6447140320, + 6447139312, + 6443742160, + 6447140064, + 6457193088, + 6457194912, + 6447140976, + 6447141216, + 6447141200 ], "bases": [ { @@ -205910,7 +205932,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468393464, + "complete_object_locator": 6468397560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205919,25 +205941,25 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Response", - "vtable_address": 6465175176, + "vtable_address": 6465179256, "methods": [ - 6447206368, - 6457189536, - 6447177824, - 6447180400, - 6447181712, - 6457189584, - 6457186560, - 6447181808, - 6447185728, - 6447183872, + 6447206592, + 6457191728, + 6447178208, + 6447181392, + 6447182016, + 6457191776, + 6457188752, + 6447182032, + 6447185952, + 6447184096, 6443742160, - 6447185312, - 6457190896, - 6457192720, - 6447186448, - 6447188272, - 6447188144 + 6447185536, + 6457193088, + 6457194912, + 6447186672, + 6447188496, + 6447188480 ], "bases": [ { @@ -205971,7 +205993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468393600, + "complete_object_locator": 6468397696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -205980,25 +206002,25 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Response_FriendsGameplayInfo", - "vtable_address": 6465165344, + "vtable_address": 6465169424, "methods": [ - 6447157344, - 6457189536, - 6447145952, - 6447146144, - 6447146592, - 6457189584, - 6457186560, - 6447146752, - 6447148704, - 6447147184, + 6447157568, + 6457191728, + 6447146192, + 6447146784, + 6447146960, + 6457191776, + 6457188752, + 6447146992, + 6447149152, + 6447147408, 6443742160, - 6447148384, - 6457190896, - 6457192720, - 6447148944, - 6447149296, - 6447149200 + 6447148608, + 6457193088, + 6457194912, + 6447149168, + 6447149552, + 6447149504 ], "bases": [ { @@ -206032,7 +206054,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468393736, + "complete_object_locator": 6468397832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206041,25 +206063,25 @@ }, { "type_name": "CPlayer_GetFriendsGameplayInfo_Response_OwnGameplayInfo", - "vtable_address": 6465167056, + "vtable_address": 6465171136, "methods": [ - 6447169968, - 6457189536, - 6447163152, - 6447163280, - 6447163344, - 6457189584, - 6457186560, - 6447163360, - 6447164752, - 6447163488, + 6447170192, + 6457191728, + 6447163376, + 6447163520, + 6447163568, + 6457191776, + 6457188752, + 6447163584, + 6447165024, + 6447163712, 6443742160, - 6447164240, - 6457190896, - 6457192720, - 6447165712, - 6447167536, - 6447167504 + 6447164560, + 6457193088, + 6457194912, + 6447165936, + 6447167936, + 6447167744 ], "bases": [ { @@ -206093,7 +206115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468393872, + "complete_object_locator": 6468397968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206102,25 +206124,25 @@ }, { "type_name": "CPlayer_GetGameBadgeLevels_Request", - "vtable_address": 6465176136, + "vtable_address": 6465180216, "methods": [ - 6447218160, - 6457189536, - 6447213056, - 6447213936, - 6447213968, - 6457189584, - 6457186560, - 6447213984, - 6447214768, - 6447214208, + 6447218384, + 6457191728, + 6447213280, + 6447214160, + 6447214192, + 6457191776, + 6457188752, + 6447214384, + 6447215008, + 6447214432, 6443742160, - 6447214592, - 6457190896, - 6457192720, - 6447214976, - 6447215088, - 6447215072 + 6447214816, + 6457193088, + 6457194912, + 6447215200, + 6447215312, + 6447215296 ], "bases": [ { @@ -206154,7 +206176,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394008, + "complete_object_locator": 6468398104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206163,25 +206185,25 @@ }, { "type_name": "CPlayer_GetGameBadgeLevels_Response", - "vtable_address": 6465179480, + "vtable_address": 6465183560, "methods": [ - 6447255296, - 6457189536, - 6447239040, - 6447240064, - 6447240224, - 6457189584, - 6457186560, - 6447240240, - 6447241328, - 6447240576, - 6443742160, - 6447241088, - 6457190896, - 6457192720, - 6447241424, - 6447241456, - 6447241440 + 6447255520, + 6457191728, + 6447239264, + 6447240288, + 6447240448, + 6457191776, + 6457188752, + 6447240464, + 6447241552, + 6447240800, + 6443742160, + 6447241312, + 6457193088, + 6457194912, + 6447241648, + 6447241680, + 6447241664 ], "bases": [ { @@ -206215,7 +206237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394144, + "complete_object_locator": 6468398240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206224,29 +206246,29 @@ }, { "type_name": "CPlayer_GetGameBadgeLevels_Response_Badge", - "vtable_address": 6465177528, + "vtable_address": 6465181608, "methods": [ - 6447229472, - 6457189536, - 6447221040, - 6447222016, - 6447222064, - 6457189584, - 6457186560, - 6447222256, - 6447223392, - 6447222384, - 6443742160, - 6447222976, - 6457190896, - 6457192720, - 6447223408, - 6447224704, - 6447224688, - 6457187520, - 6447227664, - 6457187520, - 6447229712 + 6447229696, + 6457191728, + 6447221424, + 6447222240, + 6447222464, + 6457191776, + 6457188752, + 6447222480, + 6447223616, + 6447222608, + 6443742160, + 6447223232, + 6457193088, + 6457194912, + 6447223632, + 6447225088, + 6447224912, + 6457189712, + 6447227888, + 6457189712, + 6447229936 ], "bases": [ { @@ -206280,7 +206302,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394280, + "complete_object_locator": 6468398376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206289,27 +206311,27 @@ }, { "type_name": "CPlayer_GetLastPlayedTimes_Request", - "vtable_address": 6465191632, - "methods": [ - 6447266240, - 6457189536, - 6447260688, - 6447262496, - 6447262528, - 6457189584, - 6457186560, - 6447262560, - 6447263680, - 6447262608, - 6443742160, - 6447263344, - 6457190896, - 6457192720, - 6447264352, - 6447264592, - 6447264576, - 6457187520, - 6447265104 + "vtable_address": 6465195712, + "methods": [ + 6447266464, + 6457191728, + 6447260912, + 6447262720, + 6447262768, + 6457191776, + 6457188752, + 6447262784, + 6447264064, + 6447262832, + 6443742160, + 6447263728, + 6457193088, + 6457194912, + 6447264752, + 6447264816, + 6447264800, + 6457189712, + 6447265328 ], "bases": [ { @@ -206343,7 +206365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394416, + "complete_object_locator": 6468398512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206352,27 +206374,27 @@ }, { "type_name": "CPlayer_GetLastPlayedTimes_Response", - "vtable_address": 6465194352, - "methods": [ - 6447311232, - 6457189536, - 6447301104, - 6447301520, - 6447301760, - 6457189584, - 6457186560, - 6447301888, - 6447303536, - 6447302736, - 6443742160, - 6447303392, - 6457190896, - 6457192720, - 6447303872, - 6447304240, - 6447304080, - 6457187520, - 6447310624 + "vtable_address": 6465198432, + "methods": [ + 6447311008, + 6457191728, + 6447301328, + 6447301824, + 6447302096, + 6457191776, + 6457188752, + 6447302112, + 6447303920, + 6447302960, + 6443742160, + 6447303616, + 6457193088, + 6457194912, + 6447304096, + 6447304224, + 6447304208, + 6457189712, + 6447310848 ], "bases": [ { @@ -206406,7 +206428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394552, + "complete_object_locator": 6468398648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206415,27 +206437,27 @@ }, { "type_name": "CPlayer_GetLastPlayedTimes_Response_Game", - "vtable_address": 6465192912, + "vtable_address": 6465196992, "methods": [ - 6447296976, - 6457189536, - 6447274032, - 6447274304, - 6447274352, - 6457189584, - 6457186560, - 6447274368, - 6447275936, + 6447297872, + 6457191728, + 6447274256, + 6447274528, 6447274576, + 6457191776, + 6457188752, + 6447274592, + 6447276160, + 6447274800, 6443742160, - 6447275376, - 6457190896, - 6457192720, - 6447276128, - 6447287312, - 6447283152, - 6457187520, - 6447296464 + 6447275600, + 6457193088, + 6457194912, + 6447276352, + 6447287536, + 6447287520, + 6457189712, + 6447296688 ], "bases": [ { @@ -206469,7 +206491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394688, + "complete_object_locator": 6468398784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206478,31 +206500,31 @@ }, { "type_name": "CPlayer_GetMutualFriendsForIncomingInvites_Request", - "vtable_address": 6465159792, - "methods": [ - 6447094544, - 6457189536, - 6447094160, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447094480, - 6447094464, - 6457187520, - 6447094656, - 6457187520, - 6447095008, - 6457187520, - 6447097296 + "vtable_address": 6465163872, + "methods": [ + 6447094768, + 6457191728, + 6447094384, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447094704, + 6447094688, + 6457189712, + 6447094880, + 6457189712, + 6447095232, + 6457189712, + 6447096928 ], "bases": [ { @@ -206550,7 +206572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394824, + "complete_object_locator": 6468398920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206559,27 +206581,27 @@ }, { "type_name": "CPlayer_GetMutualFriendsForIncomingInvites_Response", - "vtable_address": 6465162560, - "methods": [ - 6447137024, - 6457189536, - 6447120624, - 6447121680, - 6447121872, - 6457189584, - 6457186560, + "vtable_address": 6465166640, + "methods": [ + 6447137248, + 6457191728, + 6447120848, + 6447121904, 6447122112, - 6447124016, - 6447123056, + 6457191776, + 6457188752, + 6447122336, + 6447124240, + 6447123296, 6443742160, - 6447123856, - 6457190896, - 6457192720, - 6447124144, - 6447124336, - 6447124256, - 6457187520, - 6447132864 + 6447124080, + 6457193088, + 6457194912, + 6447124368, + 6447124560, + 6447124480, + 6457189712, + 6447133088 ], "bases": [ { @@ -206613,7 +206635,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468394968, + "complete_object_locator": 6468399064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206622,27 +206644,25 @@ }, { "type_name": "CPlayer_GetNewSteamAnnouncementState_Request", - "vtable_address": 6465093760, - "methods": [ - 6446996480, - 6457189536, - 6446984768, - 6446984832, - 6446984864, - 6457189584, - 6457186560, - 6446984880, - 6446985488, - 6446984928, + "vtable_address": 6465097840, + "methods": [ + 6446996816, + 6457191728, + 6446984992, + 6446985056, + 6446985088, + 6457191776, + 6457188752, + 6446985104, + 6446985712, + 6446985152, 6443742160, - 6446985312, - 6457190896, - 6457192720, - 6446985520, - 6446988256, - 6446987008, - 6457187520, - 6446993824 + 6446985536, + 6457193088, + 6457194912, + 6446985744, + 6446988480, + 6446988464 ], "bases": [ { @@ -206676,7 +206696,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468395104, + "complete_object_locator": 6468399200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206685,27 +206705,27 @@ }, { "type_name": "CPlayer_GetNewSteamAnnouncementState_Response", - "vtable_address": 6465095120, - "methods": [ - 6447019392, - 6457189536, - 6446997792, - 6446998080, - 6446998192, - 6457189584, - 6457186560, - 6446998208, - 6446999920, + "vtable_address": 6465099200, + "methods": [ + 6447019616, + 6457191728, + 6446998016, + 6446998304, + 6446998416, + 6457191776, + 6457188752, 6446998432, + 6447000160, + 6446998656, 6443742160, - 6446999424, - 6457190896, - 6457192720, - 6447000528, - 6447000880, - 6447000864, - 6457187520, - 6447017360 + 6446999696, + 6457193088, + 6457194912, + 6447000752, + 6447001104, + 6447001088, + 6457189712, + 6447017584 ], "bases": [ { @@ -206739,7 +206759,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468395240, + "complete_object_locator": 6468399336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -206748,25 +206768,224 @@ }, { "type_name": "CPlayer_GetNicknameList_Request", - "vtable_address": 6465197896, + "vtable_address": 6465201976, + "methods": [ + 6447325520, + 6457191728, + 6447324144, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447324880, + 6447324688 + ], + "bases": [ + { + "type_name": "google::protobuf::internal::ZeroFieldsBase", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 2 + } + } + }, + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468399472, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CPlayer_GetNicknameList_Response", + "vtable_address": 6465215608, "methods": [ - 6447325296, - 6457189536, - 6447323920, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, + 6447359056, + 6457191728, + 6447343248, + 6447343456, + 6447343664, + 6457191776, + 6457188752, + 6447343744, + 6447345872, + 6447344480, 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447324480, - 6447324464 + 6447345136, + 6457193088, + 6457194912, + 6447346192, + 6447346832, + 6447346816 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468399616, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CPlayer_GetNicknameList_Response_PlayerNickname", + "vtable_address": 6465203128, + "methods": [ + 6447338080, + 6457191728, + 6447332864, + 6447333408, + 6447333488, + 6457191776, + 6457188752, + 6447333504, + 6447334368, + 6447333664, + 6443742160, + 6447334208, + 6457193088, + 6457194912, + 6447334528, + 6447334560, + 6447334544 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468399752, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CPlayer_GetPerFriendPreferences_Request", + "vtable_address": 6465216568, + "methods": [ + 6447370592, + 6457191728, + 6447368816, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447369184, + 6447369168, + 6457189712, + 6447369248 ], "bases": [ { @@ -206814,206 +207033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468395376, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CPlayer_GetNicknameList_Response", - "vtable_address": 6465211528, - "methods": [ - 6447358832, - 6457189536, - 6447343008, - 6447343232, - 6447343424, - 6457189584, - 6457186560, - 6447343456, - 6447345056, - 6447344240, - 6443742160, - 6447344912, - 6457190896, - 6457192720, - 6447345968, - 6447346608, - 6447346464 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468395520, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CPlayer_GetNicknameList_Response_PlayerNickname", - "vtable_address": 6465199048, - "methods": [ - 6447337856, - 6457189536, - 6447332640, - 6447333184, - 6447333248, - 6457189584, - 6457186560, - 6447333280, - 6447334144, - 6447333440, - 6443742160, - 6447333984, - 6457190896, - 6457192720, - 6447334304, - 6447334336, - 6447334320 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468395656, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CPlayer_GetPerFriendPreferences_Request", - "vtable_address": 6465212488, - "methods": [ - 6447370368, - 6457189536, - 6447368592, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447368960, - 6447368768, - 6457187520, - 6447369024 - ], - "bases": [ - { - "type_name": "google::protobuf::internal::ZeroFieldsBase", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 2 - } - } - }, - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468395792, + "complete_object_locator": 6468399888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207022,25 +207042,25 @@ }, { "type_name": "CPlayer_GetPerFriendPreferences_Response", - "vtable_address": 6465216200, - "methods": [ - 6447415296, - 6457189536, - 6447394160, - 6447396080, - 6447396768, - 6457189584, - 6457186560, - 6447396784, - 6447398288, - 6447397728, - 6443742160, - 6447398144, - 6457190896, - 6457192720, - 6447398336, - 6447398544, - 6447398528 + "vtable_address": 6465220280, + "methods": [ + 6447415520, + 6457191728, + 6447394384, + 6447396720, + 6447396992, + 6457191776, + 6457188752, + 6447397616, + 6447398528, + 6447397952, + 6443742160, + 6447398368, + 6457193088, + 6457194912, + 6447398560, + 6447398768, + 6447398752 ], "bases": [ { @@ -207074,7 +207094,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468395936, + "complete_object_locator": 6468400032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207083,25 +207103,25 @@ }, { "type_name": "CPlayer_IgnoreFriend_Request", - "vtable_address": 6465085480, - "methods": [ - 6446895184, - 6457189536, - 6446886832, - 6446886928, - 6446886976, - 6457189584, - 6457186560, - 6446886992, - 6446887648, - 6446887040, - 6443742160, - 6446887472, - 6457190896, - 6457192720, - 6446887664, - 6446887856, - 6446887824 + "vtable_address": 6465089560, + "methods": [ + 6446895408, + 6457191728, + 6446887056, + 6446887152, + 6446887200, + 6457191776, + 6457188752, + 6446887216, + 6446887872, + 6446887264, + 6443742160, + 6446887696, + 6457193088, + 6457194912, + 6446887888, + 6446888080, + 6446888064 ], "bases": [ { @@ -207135,7 +207155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468396072, + "complete_object_locator": 6468400168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207144,25 +207164,25 @@ }, { "type_name": "CPlayer_IgnoreFriend_Response", - "vtable_address": 6465086544, + "vtable_address": 6465090624, "methods": [ - 6446919328, - 6457189536, - 6446917488, + 6446919552, + 6457191728, 6446917712, - 6446917744, - 6457189584, - 6457186560, - 6446917760, - 6446918368, - 6446917808, - 6443742160, - 6446918192, - 6457190896, - 6457192720, - 6446918560, - 6446918944, - 6446918928 + 6446917936, + 6446917968, + 6457191776, + 6457188752, + 6446917984, + 6446918768, + 6446918032, + 6443742160, + 6446918416, + 6457193088, + 6457194912, + 6446918784, + 6446919168, + 6446919152 ], "bases": [ { @@ -207196,7 +207216,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468396208, + "complete_object_locator": 6468400304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207205,25 +207225,25 @@ }, { "type_name": "CPlayer_IncomingInviteMutualFriendList", - "vtable_address": 6465160800, + "vtable_address": 6465164880, "methods": [ - 6447117280, - 6457189536, - 6447107776, - 6447107984, - 6447108112, - 6457189584, - 6457186560, - 6447108128, - 6447108976, - 6447108224, + 6447117504, + 6457191728, + 6447108000, + 6447108272, + 6447108336, + 6457191776, + 6457188752, + 6447108352, + 6447109200, + 6447108448, 6443742160, - 6447108720, - 6457190896, - 6457192720, - 6447108992, - 6447109168, - 6447109152 + 6447108944, + 6457193088, + 6457194912, + 6447109216, + 6447109392, + 6447109376 ], "bases": [ { @@ -207257,7 +207277,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468396344, + "complete_object_locator": 6468400440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207266,33 +207286,33 @@ }, { "type_name": "CPlayer_ItemServices", - "vtable_address": 6465850760, - "methods": [ - 6449925904, - 6449877104, - 6449890272, - 6449819840, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6449918032 + "vtable_address": 6465854952, + "methods": [ + 6449927472, + 6449878672, + 6449891840, + 6449821408, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6449919600 ], "bases": [ { @@ -207312,7 +207332,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527992, + "complete_object_locator": 6468532088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207321,54 +207341,54 @@ }, { "type_name": "CPlayer_MovementServices", - "vtable_address": 6465837568, - "methods": [ - 6449925952, - 6449877120, - 6449890288, - 6449820048, - 6449911104, - 6449931184, - 6449821056, - 6448373344, - 6449951856, - 6448379744, - 6448379568, - 6448390304, - 6449910816, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6449918064, - 6449951280, - 6448391344, - 6449922288, - 6449916976, - 6448346752, - 6449916816, - 6449890832, - 6449933056, - 6449933680, - 6449935552, - 6449946672, - 6449852608, - 6448352720, - 6448390928, - 6449943312, - 6449852576, - 6449935680, - 6448346768, - 6449905664, - 6449856160, - 6448343488 + "vtable_address": 6465841760, + "methods": [ + 6449927520, + 6449878688, + 6449891856, + 6449821616, + 6449912672, + 6449932752, + 6449822624, + 6448374912, + 6449953424, + 6448381312, + 6448381136, + 6448391872, + 6449912384, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6449919632, + 6449952848, + 6448392912, + 6449923856, + 6449918544, + 6448348320, + 6449918384, + 6449892400, + 6449934624, + 6449935248, + 6449937120, + 6449948240, + 6449854176, + 6448354288, + 6448392496, + 6449944880, + 6449854144, + 6449937248, + 6448348336, + 6449907232, + 6449857728, + 6448345056 ], "bases": [ { @@ -207388,7 +207408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527912, + "complete_object_locator": 6468532008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207397,65 +207417,65 @@ }, { "type_name": "CPlayer_MovementServices_Humanoid", - "vtable_address": 6465837944, - "methods": [ - 6449926000, - 6449877136, - 6449890304, - 6449820256, - 6449911104, - 6449931232, - 6449821056, - 6448373344, - 6449951936, - 6449915136, - 6449914208, - 6448630512, - 6449910880, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6449936112, - 6448379616, - 6448379600, - 6449988480, - 6449951280, - 6448391344, - 6449922288, - 6449916976, - 6448346752, - 6449916816, - 6449890832, - 6449933056, - 6449933680, - 6449935552, - 6449946672, - 6449852608, - 6448352720, - 6448390928, - 6449943312, - 6449852576, - 6449935696, - 6448346768, - 6449905664, - 6449856160, - 6449827872, - 6449888544, - 6449948640, - 6448625824, - 6449884848, - 6449954720, - 6449912496, - 6449891648, - 6449932496, - 6449883696, - 6449883808, - 6448599152 + "vtable_address": 6465842136, + "methods": [ + 6449927568, + 6449878704, + 6449891872, + 6449821824, + 6449912672, + 6449932800, + 6449822624, + 6448374912, + 6449953504, + 6449916704, + 6449915776, + 6448632080, + 6449912448, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6449937680, + 6448381184, + 6448381168, + 6449990048, + 6449952848, + 6448392912, + 6449923856, + 6449918544, + 6448348320, + 6449918384, + 6449892400, + 6449934624, + 6449935248, + 6449937120, + 6449948240, + 6449854176, + 6448354288, + 6448392496, + 6449944880, + 6449854144, + 6449937264, + 6448348336, + 6449907232, + 6449857728, + 6449829440, + 6449890112, + 6449950208, + 6448627392, + 6449886416, + 6449956288, + 6449914064, + 6449893216, + 6449934064, + 6449885264, + 6449885376, + 6448600720 ], "bases": [ { @@ -207489,7 +207509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527952, + "complete_object_locator": 6468532048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207498,58 +207518,58 @@ }, { "type_name": "CPlayer_ObserverServices", - "vtable_address": 6465855824, + "vtable_address": 6465860016, "methods": [ - 6449989888, - 6449981552, - 6449983056, - 6449963824, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6449988496, - 6448357296, - 6449989104, - 6448357344, - 6449982160, - 6449969584, - 6449992192, - 6449994176, - 6449994448, - 6449990592, - 6449978832, - 6449982480, - 6449985536, - 6449970304, - 6449979584, - 6449983744, - 6449984656, - 6449986496, - 6449986512, - 6449982736, - 6449985296, - 6449980976, - 6449980672, - 6449966736, - 6449968816, - 6449969744 + 6449991456, + 6449983120, + 6449984624, + 6449965392, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6449990064, + 6448358864, + 6449990672, + 6448358912, + 6449983728, + 6449971152, + 6449993760, + 6449995744, + 6449996016, + 6449992160, + 6449980400, + 6449984048, + 6449987104, + 6449971872, + 6449981152, + 6449985312, + 6449986224, + 6449988064, + 6449988080, + 6449984304, + 6449986864, + 6449982544, + 6449982240, + 6449968304, + 6449970384, + 6449971312 ], "bases": [ { @@ -207569,7 +207589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532984, + "complete_object_locator": 6468537080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207578,27 +207598,27 @@ }, { "type_name": "CPlayer_RemoveFriend_Request", - "vtable_address": 6465082744, - "methods": [ - 6446865648, - 6457189536, - 6446858768, - 6446858832, - 6446858864, - 6457189584, - 6457186560, - 6446858880, - 6446859360, - 6446858912, - 6443742160, - 6446859248, - 6457190896, - 6457192720, - 6446859600, - 6446861168, - 6446861104, - 6457187520, - 6446863536 + "vtable_address": 6465086824, + "methods": [ + 6446865872, + 6457191728, + 6446858992, + 6446859056, + 6446859088, + 6457191776, + 6457188752, + 6446859104, + 6446859584, + 6446859136, + 6443742160, + 6446859472, + 6457193088, + 6457194912, + 6446859888, + 6446861408, + 6446861376, + 6457189712, + 6446863760 ], "bases": [ { @@ -207632,7 +207652,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468396480, + "complete_object_locator": 6468400576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207641,27 +207661,27 @@ }, { "type_name": "CPlayer_RemoveFriend_Response", - "vtable_address": 6465084168, + "vtable_address": 6465088248, "methods": [ - 6446875504, - 6457189536, - 6446870176, - 6446870416, - 6446870448, - 6457189584, - 6457186560, - 6446870464, - 6446871760, - 6446870912, - 6443742160, - 6446871584, - 6457190896, - 6457192720, - 6446872640, - 6446872976, - 6446872960, - 6457187520, - 6446873888 + 6446875728, + 6457191728, + 6446870400, + 6446870640, + 6446870672, + 6457191776, + 6457188752, + 6446870688, + 6446872576, + 6446871152, + 6443742160, + 6446871808, + 6457193088, + 6457194912, + 6446872864, + 6446873200, + 6446873184, + 6457189712, + 6446874112 ], "bases": [ { @@ -207695,7 +207715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468396616, + "complete_object_locator": 6468400712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207704,27 +207724,27 @@ }, { "type_name": "CPlayer_SetCommunityPreferences_Request", - "vtable_address": 6465092128, + "vtable_address": 6465096208, "methods": [ - 6446974576, - 6457189536, - 6446971952, - 6446972192, - 6446972288, - 6457189584, - 6457186560, - 6446972304, - 6446972976, - 6446972480, + 6446974816, + 6457191728, + 6446972176, + 6446972416, + 6446972512, + 6457191776, + 6457188752, + 6446972544, + 6446973280, + 6446972704, 6443742160, - 6446972864, - 6457190896, - 6457192720, - 6446973168, - 6446973728, - 6446973712, - 6457388960, - 6457389040 + 6446973088, + 6457193088, + 6457194912, + 6446973744, + 6446973968, + 6446973936, + 6457391152, + 6457391232 ], "bases": [ { @@ -207758,7 +207778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468396752, + "complete_object_locator": 6468400848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207767,25 +207787,25 @@ }, { "type_name": "CPlayer_SetCommunityPreferences_Response", - "vtable_address": 6465092816, + "vtable_address": 6465096896, "methods": [ - 6446983680, - 6457189536, - 6446981920, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446982992, - 6446982976 + 6446983904, + 6457191728, + 6446982768, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446983216, + 6446983200 ], "bases": [ { @@ -207833,7 +207853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468396888, + "complete_object_locator": 6468400984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207842,27 +207862,27 @@ }, { "type_name": "CPlayer_SetPerFriendPreferences_Request", - "vtable_address": 6465217304, + "vtable_address": 6465221384, "methods": [ - 6447426944, - 6457189536, - 6447423360, - 6447423856, - 6447424000, - 6457189584, - 6457186560, - 6447424016, - 6447424832, - 6447424096, + 6447427552, + 6457191728, + 6447423584, + 6447424080, + 6447424224, + 6457191776, + 6457188752, + 6447424240, + 6447425056, + 6447424416, 6443742160, - 6447424624, - 6457190896, - 6457192720, - 6447425664, - 6447425744, - 6447425728, - 6457187520, - 6447426800 + 6447424944, + 6457193088, + 6457194912, + 6447425904, + 6447426016, + 6447425952, + 6457189712, + 6447427024 ], "bases": [ { @@ -207896,7 +207916,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468397032, + "complete_object_locator": 6468401128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207905,25 +207925,29 @@ }, { "type_name": "CPlayer_SetPerFriendPreferences_Response", - "vtable_address": 6465218248, - "methods": [ - 6447433456, - 6457189536, - 6447432640, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447432944, - 6447432928 + "vtable_address": 6465222472, + "methods": [ + 6447433696, + 6457191728, + 6447432864, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447433168, + 6447433152, + 6457189712, + 6447433408, + 6457189712, + 6447434896 ], "bases": [ { @@ -207971,7 +207995,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468397168, + "complete_object_locator": 6468401264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -207980,25 +208004,25 @@ }, { "type_name": "CPlayer_UpdateSteamAnnouncementLastRead_Request", - "vtable_address": 6465104968, - "methods": [ - 6447029632, - 6457189536, - 6447020976, - 6447021088, - 6447021136, - 6457189584, - 6457186560, - 6447021152, - 6447022448, - 6447021440, - 6443742160, - 6447022080, - 6457190896, - 6457192720, - 6447023264, - 6447023680, - 6447023344 + "vtable_address": 6465109048, + "methods": [ + 6447029856, + 6457191728, + 6447021200, + 6447021312, + 6447021360, + 6457191776, + 6457188752, + 6447021376, + 6447022672, + 6447021744, + 6443742160, + 6447022384, + 6457193088, + 6457194912, + 6447023504, + 6447024032, + 6447023888 ], "bases": [ { @@ -208032,7 +208056,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468397312, + "complete_object_locator": 6468401408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -208041,25 +208065,25 @@ }, { "type_name": "CPlayer_UpdateSteamAnnouncementLastRead_Response", - "vtable_address": 6465110904, - "methods": [ - 6447034592, - 6457189536, - 6447033584, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447033616, - 6447033600 + "vtable_address": 6465114984, + "methods": [ + 6447034816, + 6457191728, + 6447033808, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447033840, + 6447033824 ], "bases": [ { @@ -208107,7 +208131,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468397448, + "complete_object_locator": 6468401544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -208116,35 +208140,35 @@ }, { "type_name": "CPlayer_UseServices", - "vtable_address": 6465856584, - "methods": [ - 6449989936, - 6449981568, - 6449983072, - 6449964032, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6449988512, - 6449985376, - 6448359008 + "vtable_address": 6465860776, + "methods": [ + 6449991504, + 6449983136, + 6449984640, + 6449965600, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6449990080, + 6449986944, + 6448360576 ], "bases": [ { @@ -208164,7 +208188,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533064, + "complete_object_locator": 6468537160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -208173,34 +208197,34 @@ }, { "type_name": "CPlayer_WaterServices", - "vtable_address": 6465856808, + "vtable_address": 6465861000, "methods": [ - 6449989984, - 6449981584, - 6449983088, - 6449964240, - 6448372896, - 6448389696, - 6448342816, - 6448373344, - 6448391360, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6449988528, - 6448599424 + 6449991552, + 6449983152, + 6449984656, + 6449965808, + 6448374464, + 6448391264, + 6448344384, + 6448374912, + 6448392928, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6449990096, + 6448600992 ], "bases": [ { @@ -208220,7 +208244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533024, + "complete_object_locator": 6468537120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -208229,47 +208253,47 @@ }, { "type_name": "CPlayer_WeaponServices", - "vtable_address": 6465856232, - "methods": [ - 6449990032, - 6449981600, - 6449983104, - 6449964448, - 6448372896, - 6449993408, - 6449964800, - 6448373344, - 6449994864, - 6448379744, - 6448379568, - 6448390304, - 6448372864, - 6448371360, - 6448380256, - 6448371408, - 6448372880, - 6448379584, - 6448378848, - 6448372848, - 6448371376, - 6448390448, - 6448379616, - 6448379600, - 6449988544, - 6448718832, - 6448712192, - 6449983248, - 6449983216, - 6449970288, - 6449978384, - 6449994480, - 6448714208, - 6448703200, - 6449987136, - 6448702112, - 6448702144, - 6448701712, - 6449986400 + "vtable_address": 6465860424, + "methods": [ + 6449991600, + 6449983168, + 6449984672, + 6449966016, + 6448374464, + 6449994976, + 6449966368, + 6448374912, + 6449996432, + 6448381312, + 6448381136, + 6448391872, + 6448374432, + 6448372928, + 6448381824, + 6448372976, + 6448374448, + 6448381152, + 6448380416, + 6448374416, + 6448372944, + 6448392016, + 6448381184, + 6448381168, + 6449990112, + 6448720400, + 6448713760, + 6449984816, + 6449984784, + 6449971856, + 6449979952, + 6449996048, + 6448715776, + 6448704768, + 6449988704, + 6448703680, + 6448703712, + 6448703280, + 6449987968 ], "bases": [ { @@ -208289,7 +208313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532944, + "complete_object_locator": 6468537040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -208298,31 +208322,31 @@ }, { "type_name": "CPointChildModifier", - "vtable_address": 6464573512, + "vtable_address": 6464577608, "methods": [ 6444163808, 6444333968, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, 6444376176, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -208332,25 +208356,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444347936, 6444365824, 6444370016, 6443799760, 6444159920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -208367,13 +208391,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -208381,39 +208405,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -208427,33 +208451,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -208481,34 +208505,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -208565,7 +208589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245656, + "complete_object_locator": 6468249752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -208574,12 +208598,12 @@ }, { "type_name": "CPointClientUIWorldTextPanelPreviewer", - "vtable_address": 6464439064, + "vtable_address": 6464443160, "methods": [ 6443795904, 6443883232, 6443824448, - 6451299104, + 6451300672, 6443816480, 6443816464, 6443816496, @@ -208617,7 +208641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468224544, + "complete_object_locator": 6468228640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -208626,31 +208650,31 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 6464434256, + "vtable_address": 6464438352, "methods": [ 6445466928, 6443796048, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6443870800, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6443797904, 6443880272, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6443844656, 6443858256, 6443844048, @@ -208660,25 +208684,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817568, 6443854752, 6443865072, 6443799760, 6443818784, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -208695,13 +208719,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -208709,41 +208733,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6443883552, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6443869152, - 6449042320, - 6450473488, + 6449043872, + 6450475056, 6443845376, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -208755,33 +208779,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6443804992, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -208809,34 +208833,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -208846,24 +208870,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -209005,7 +209029,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223112, + "complete_object_locator": 6468227208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -209014,14 +209038,14 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 6464436344, + "vtable_address": 6464440440, "methods": [ 6443794860, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -209139,7 +209163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223448, + "complete_object_locator": 6468227544, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -209148,9 +209172,9 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 6464436400, + "vtable_address": 6464440496, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -209268,7 +209292,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223488, + "complete_object_locator": 6468227584, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -209277,7 +209301,7 @@ }, { "type_name": "CPointOffScreenIndicatorUi", - "vtable_address": 6464436416, + "vtable_address": 6464440512, "methods": [ 6443846736, 6443846160 @@ -209398,7 +209422,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223528, + "complete_object_locator": 6468227624, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -209407,32 +209431,32 @@ }, { "type_name": "CPointOrient", - "vtable_address": 6464575296, + "vtable_address": 6464579392, "methods": [ 6445466896, 6444334032, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, 6444335040, - 6450715424, - 6450580640, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -209441,25 +209465,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444347952, 6444365840, 6444370064, 6443799760, 6444351504, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -209476,13 +209500,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -209490,39 +209514,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377600, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444372848, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -209536,33 +209560,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -209590,34 +209614,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -209660,7 +209684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245800, + "complete_object_locator": 6468249896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -209669,32 +209693,32 @@ }, { "type_name": "CPointTemplate", - "vtable_address": 6464577216, + "vtable_address": 6464581312, "methods": [ 6444352000, 6444334096, 6444122752, - 6460051264, + 6460053456, 6444363792, - 6450410112, + 6450411680, 6444373584, - 6450413456, - 6450585280, - 6450586832, - 6450396576, + 6450415024, + 6450586848, + 6450588400, + 6450398144, 6444376496, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -209703,25 +209727,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444347968, 6444365856, 6444370112, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -209738,13 +209762,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -209752,39 +209776,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -209798,33 +209822,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -209852,34 +209876,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -209938,7 +209962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245936, + "complete_object_locator": 6468250032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -209947,12 +209971,12 @@ }, { "type_name": "CPointWorldTextPreviewer", - "vtable_address": 6466085312, + "vtable_address": 6466089520, "methods": [ - 6451280896, - 6451408384, + 6451282464, + 6451409968, 6443824448, - 6451299104, + 6451300672, 6443816480, 6443816464, 6443816496, @@ -209976,7 +210000,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468601304, + "complete_object_locator": 6468605400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -209985,34 +210009,34 @@ }, { "type_name": "CPopupWorkshopAnnotationSubmit", - "vtable_address": 6466568520, + "vtable_address": 6466572648, "methods": [ 6443876544, - 6461535472, - 6453897888, - 6453901376, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899648, + 6453903136, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -210026,12 +210050,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -210046,29 +210070,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897632, - 6453886192, + 6461548896, + 6453899392, + 6453887952, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443914768, @@ -210123,7 +210147,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727056, + "complete_object_locator": 6468731152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -210132,34 +210156,34 @@ }, { "type_name": "CPopupWorkshopSubmit", - "vtable_address": 6466570576, + "vtable_address": 6466574704, "methods": [ 6443876544, - 6461535472, - 6453897904, - 6453901408, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899664, + 6453903168, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -210173,12 +210197,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -210193,29 +210217,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897648, - 6453886272, + 6461548896, + 6453899408, + 6453888032, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443914768, @@ -210270,7 +210294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727200, + "complete_object_locator": 6468731296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -210279,14 +210303,14 @@ }, { "type_name": "CPostConnectCallback", - "vtable_address": 6467854712, + "vtable_address": 6467858808, "methods": [ - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468994536, + "complete_object_locator": 6468998632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -210295,27 +210319,25 @@ }, { "type_name": "CPreMatchInfoData", - "vtable_address": 6465007752, - "methods": [ - 6446475440, - 6457189536, - 6446443552, - 6446445584, - 6446446240, - 6457189584, - 6457186560, - 6446446256, - 6446448176, - 6446446944, - 6443742160, - 6446447728, - 6457190896, - 6457192720, - 6446448304, - 6446449904, - 6446449424, - 6457187520, - 6446475360 + "vtable_address": 6465011848, + "methods": [ + 6446475744, + 6457191728, + 6446443616, + 6446445664, + 6446446000, + 6457191776, + 6457188752, + 6446446032, + 6446448384, + 6446446736, + 6443742160, + 6446447936, + 6457193088, + 6457194912, + 6446448672, + 6446450224, + 6446449728 ], "bases": [ { @@ -210349,7 +210371,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344848, + "complete_object_locator": 6468349080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -210358,29 +210380,25 @@ }, { "type_name": "CPreMatchInfoData_TeamStats", - "vtable_address": 6465004664, + "vtable_address": 6465008616, "methods": [ - 6446436624, - 6457189536, - 6446419712, - 6446421616, - 6446421712, - 6457189584, - 6457186560, - 6446421728, - 6446423376, - 6446422272, + 6446436832, + 6457191728, + 6446420096, + 6446422000, + 6446422096, + 6457191776, + 6457188752, + 6446422112, + 6446423760, + 6446422656, 6443742160, - 6446423008, - 6457190896, - 6457192720, - 6446424512, - 6446424864, - 6446424688, - 6457187520, - 6446433552, - 6457187520, - 6446434320 + 6446423392, + 6457193088, + 6457194912, + 6446424896, + 6446425248, + 6446424928 ], "bases": [ { @@ -210414,7 +210432,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468344984, + "complete_object_locator": 6468349216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -210423,17 +210441,17 @@ }, { "type_name": "CPrecacheRegister", - "vtable_address": 6466067032, + "vtable_address": 6466071240, "methods": [ 6443748576, 6443748592, 6443748608, - 6451232544, - 6451232592, + 6451234112, + 6451234160, 6443748656, 6443748672, 6443748688, - 6451232608, + 6451234176, 6443748720, 6443748736, 6443748752, @@ -210481,11 +210499,11 @@ 6443749424, 6443749440, 6443749456, - 6451232512, + 6451234080, 6443749488, - 6451232496, - 6451232624, - 6451232480 + 6451234064, + 6451234192, + 6451234048 ], "bases": [ { @@ -210519,7 +210537,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468596656, + "complete_object_locator": 6468600752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -210528,7 +210546,7 @@ }, { "type_name": "CPrecipitationVData", - "vtable_address": 6464645744, + "vtable_address": 6464649824, "methods": [ 6444463376, 6444477040, @@ -210569,7 +210587,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468250976, + "complete_object_locator": 6468255072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -210578,7 +210596,7 @@ }, { "type_name": "CPredTrackAutoCompletionFunctor", - "vtable_address": 6464865784, + "vtable_address": 6464869864, "methods": [ 6445658400 ], @@ -210614,7 +210632,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294224, + "complete_object_locator": 6468298320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -210623,7 +210641,7 @@ }, { "type_name": "CPredTrackAutoCompletionFunctor", - "vtable_address": 6464865800, + "vtable_address": 6464869880, "methods": [ 6445658656 ], @@ -210659,7 +210677,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294360, + "complete_object_locator": 6468298456, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -210668,40 +210686,40 @@ }, { "type_name": "CPrediction", - "vtable_address": 6466077120, - "methods": [ - 6451298224, - 6451305408, - 6451369408, - 6451331216, - 6451388016, - 6451361088, - 6451320560, - 6451327264, - 6451370928, - 6451340896, - 6451327248, - 6451397232, - 6451347856, - 6451348384, - 6451356560, - 6451357344, - 6451352720, - 6451292448, - 6450986944, - 6451288832, - 6451328976, - 6451329232, - 6451329152, - 6451322288, - 6451385360, - 6451385408, - 6451340848, - 6451387328, - 6448952000, - 6451340912, - 6451328960, - 6451351520 + "vtable_address": 6466081328, + "methods": [ + 6451299792, + 6451306976, + 6451370976, + 6451332784, + 6451389584, + 6451362656, + 6451322128, + 6451328832, + 6451372496, + 6451342464, + 6451328816, + 6451398800, + 6451349424, + 6451349952, + 6451358128, + 6451358912, + 6451354288, + 6451294016, + 6450988512, + 6451290400, + 6451330544, + 6451330800, + 6451330720, + 6451323856, + 6451386928, + 6451386976, + 6451342416, + 6451388896, + 6448953568, + 6451342480, + 6451330528, + 6451353088 ], "bases": [ { @@ -210833,7 +210851,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468599040, + "complete_object_locator": 6468603136, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -210842,9 +210860,9 @@ }, { "type_name": "CPrediction", - "vtable_address": 6466077384, + "vtable_address": 6466081592, "methods": [ - 6451346112 + 6451347680 ], "bases": [ { @@ -210976,7 +210994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468600048, + "complete_object_locator": 6468604144, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -210985,7 +211003,7 @@ }, { "type_name": "CPredictionCopyPackedData", - "vtable_address": 6464871376, + "vtable_address": 6464875456, "methods": [ 6445707648, 6445762320, @@ -211018,7 +211036,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468294520, + "complete_object_locator": 6468298616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211027,29 +211045,29 @@ }, { "type_name": "CPredictionEvent_Diagnostic", - "vtable_address": 6465092960, + "vtable_address": 6465097040, "methods": [ - 6446983904, - 6457189536, - 6446974752, - 6446974896, - 6446974960, - 6457189584, - 6457186560, - 6446974976, - 6446976512, - 6446975232, + 6446984128, + 6457191728, + 6446974992, + 6446975120, + 6446975184, + 6457191776, + 6457188752, + 6446975200, + 6446976880, + 6446975456, 6443742160, - 6446976000, - 6457190896, - 6457192720, - 6446976672, - 6446976768, - 6446976688, - 6457388960, - 6457389040, - 6457187520, - 6446983232 + 6446976224, + 6457193088, + 6457194912, + 6446976896, + 6446976992, + 6446976976, + 6457391152, + 6457391232, + 6457189712, + 6446983456 ], "bases": [ { @@ -211083,7 +211101,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390304, + "complete_object_locator": 6468394400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211092,25 +211110,25 @@ }, { "type_name": "CPredictionEvent_StringCommand", - "vtable_address": 6465090576, - "methods": [ - 6446971632, - 6457189536, - 6446961824, - 6446962112, - 6446962176, - 6457189584, - 6457186560, - 6446962192, - 6446962880, + "vtable_address": 6465094656, + "methods": [ + 6446971856, + 6457191728, + 6446962048, + 6446962336, 6446962400, - 6443742160, - 6446962768, - 6457190896, - 6457192720, - 6446962912, - 6446964256, - 6446963456 + 6457191776, + 6457188752, + 6446962416, + 6446963104, + 6446962624, + 6443742160, + 6446962992, + 6457193088, + 6457194912, + 6446963136, + 6446964480, + 6446964464 ], "bases": [ { @@ -211144,7 +211162,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390440, + "complete_object_locator": 6468394536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211153,25 +211171,25 @@ }, { "type_name": "CPredictionEvent_StringCommand_t", - "vtable_address": 6465735960, - "methods": [ - 6448809424, - 6457189536, - 6446961824, - 6446962112, - 6446962176, - 6457189584, - 6457186560, - 6446962192, - 6446962880, + "vtable_address": 6465740152, + "methods": [ + 6448810992, + 6457191728, + 6446962048, + 6446962336, 6446962400, - 6443742160, - 6446962768, - 6457190896, - 6457192720, - 6446962912, - 6446964256, - 6446963456 + 6457191776, + 6457188752, + 6446962416, + 6446963104, + 6446962624, + 6443742160, + 6446962992, + 6457193088, + 6457194912, + 6446963136, + 6446964480, + 6446964464 ], "bases": [ { @@ -211233,7 +211251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468499648, + "complete_object_locator": 6468503744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211242,27 +211260,27 @@ }, { "type_name": "CPredictionEvent_Teleport", - "vtable_address": 6465089424, - "methods": [ - 6446957712, - 6457189536, - 6446944336, - 6446945248, - 6446945408, - 6457189584, - 6457186560, - 6446945424, - 6446946480, - 6446945744, - 6443742160, - 6446946272, - 6457190896, - 6457192720, - 6446946576, - 6446946768, - 6446946736, - 6457187520, - 6446952688 + "vtable_address": 6465093504, + "methods": [ + 6446957936, + 6457191728, + 6446944928, + 6446945472, + 6446945632, + 6457191776, + 6457188752, + 6446945664, + 6446946704, + 6446945968, + 6443742160, + 6446946496, + 6457193088, + 6457194912, + 6446946800, + 6446946992, + 6446946976, + 6457189712, + 6446952912 ], "bases": [ { @@ -211296,7 +211314,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468390576, + "complete_object_locator": 6468394672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211305,19 +211323,19 @@ }, { "type_name": "CPredictionGameSystem", - "vtable_address": 6466073376, + "vtable_address": 6466077584, "methods": [ 6443748576, 6443748592, 6443748608, - 6451245760, + 6451247328, 6443748640, 6443748656, 6443748672, 6443748688, 6443748704, - 6451245856, - 6451245872, + 6451247424, + 6451247440, 6443748752, 6443748768, 6443748784, @@ -211363,11 +211381,11 @@ 6443749424, 6443749440, 6443749456, - 6451245728, + 6451247296, 6443749488, - 6451245712, - 6451245888, - 6451245696 + 6451247280, + 6451247456, + 6451247264 ], "bases": [ { @@ -211401,7 +211419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468596248, + "complete_object_locator": 6468600344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211410,14 +211428,14 @@ }, { "type_name": "CPredictionSuppressEffects", - "vtable_address": 6465853024, + "vtable_address": 6465857216, "methods": [ - 6449957728, - 6449957744, - 6449957760, - 6449957776, - 6449957792, - 6449957808 + 6449959296, + 6449959312, + 6449959328, + 6449959344, + 6449959360, + 6449959376 ], "bases": [ { @@ -211437,7 +211455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532776, + "complete_object_locator": 6468536872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211446,35 +211464,35 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request", - "vtable_address": 6464966880, + "vtable_address": 6464970976, "methods": [ - 6446219312, - 6457189536, - 6446183312, - 6446184208, - 6446184432, - 6457189584, - 6457186560, - 6446184992, - 6446189392, + 6446220016, + 6457191728, + 6446183712, 6446186736, + 6446187248, + 6457191776, + 6457188752, + 6446187264, + 6446189792, + 6446188816, 6443742160, - 6446188928, - 6457190896, - 6457192720, 6446189440, - 6446191792, - 6446190928, - 6457187520, - 6446216896, - 6457187520, - 6446219072, - 6457187520, - 6446220704, - 6457187520, - 6446220608, - 6457187520, - 6446223952 + 6457193088, + 6457194912, + 6446190288, + 6446192592, + 6446192576, + 6457189712, + 6446217280, + 6457189712, + 6446219456, + 6457189712, + 6446220992, + 6457189712, + 6446221328, + 6457189712, + 6446224480 ], "bases": [ { @@ -211508,7 +211526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311272, + "complete_object_locator": 6468315504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211517,25 +211535,25 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_LanguageSection", - "vtable_address": 6464954504, - "methods": [ - 6446180016, - 6457189536, - 6446152608, - 6446153248, - 6446153536, - 6457189584, - 6457186560, - 6446153664, - 6446155952, - 6446154752, + "vtable_address": 6464958600, + "methods": [ + 6446180544, + 6457191728, + 6446152992, + 6446154528, + 6446154784, + 6457191776, + 6457188752, + 6446154800, + 6446156352, + 6446155472, 6443742160, - 6446155696, - 6457190896, - 6457192720, - 6446156688, - 6446157440, - 6446157280 + 6446156096, + 6457193088, + 6457194912, + 6446157168, + 6446158032, + 6446158016 ], "bases": [ { @@ -211569,7 +211587,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311408, + "complete_object_locator": 6468315640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211578,25 +211596,25 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_Token", - "vtable_address": 6464947264, + "vtable_address": 6464951360, "methods": [ - 6446147376, - 6457189536, - 6446137424, - 6446140864, - 6446141616, - 6457189584, - 6457186560, - 6446141632, - 6446143216, - 6446142480, + 6446147776, + 6457191728, + 6446138688, + 6446142624, + 6446142720, + 6457191776, + 6457188752, + 6446142736, + 6446143632, + 6446143056, 6443742160, - 6446142880, - 6457190896, - 6457192720, - 6446143280, - 6446143536, - 6446143520 + 6446143472, + 6457193088, + 6457194912, + 6446143760, + 6446143920, + 6446143904 ], "bases": [ { @@ -211630,7 +211648,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311544, + "complete_object_locator": 6468315776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211639,31 +211657,25 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Response", - "vtable_address": 6464971888, - "methods": [ - 6446233744, - 6457189536, - 6446230784, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446231904, - 6446231792, - 6457187520, - 6446231152, - 6457187520, - 6446231392, - 6457187520, - 6446231312 + "vtable_address": 6464976032, + "methods": [ + 6446234352, + 6457191728, + 6446231376, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446233616, + 6446233584 ], "bases": [ { @@ -211711,7 +211723,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311680, + "complete_object_locator": 6468315912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211720,14 +211732,14 @@ }, { "type_name": "CProjectedTextureBase", - "vtable_address": 6465953032, + "vtable_address": 6465957224, "methods": [ - 6450393392 + 6450394960 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468558976, + "complete_object_locator": 6468563072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211736,7 +211748,7 @@ }, { "type_name": "CPropData", - "vtable_address": 6464586088, + "vtable_address": 6464590184, "methods": [ 6443748576, 6443748592, @@ -211846,7 +211858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247768, + "complete_object_locator": 6468251864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -211855,7 +211867,7 @@ }, { "type_name": "CPropData", - "vtable_address": 6464586584, + "vtable_address": 6464590680, "methods": [ 6444410224, 6444410240, @@ -211907,7 +211919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247952, + "complete_object_locator": 6468252048, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -211916,9 +211928,9 @@ }, { "type_name": "CPropDataComponent", - "vtable_address": 6465725528, + "vtable_address": 6465729720, "methods": [ - 6449027504, + 6449029056, 6444399648, 6444402048 ], @@ -211940,7 +211952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468498304, + "complete_object_locator": 6468502400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211949,7 +211961,7 @@ }, { "type_name": "CPropsBreakableSystem", - "vtable_address": 6464492464, + "vtable_address": 6464496560, "methods": [ 6444064752, 6444199216 @@ -211972,7 +211984,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468237104, + "complete_object_locator": 6468241200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -211981,27 +211993,27 @@ }, { "type_name": "CPublishedFile_GetDetails_Request", - "vtable_address": 6465216968, - "methods": [ - 6447423376, - 6457189536, - 6447403632, - 6447408016, - 6447408080, - 6457189584, - 6457186560, - 6447408112, - 6447411168, - 6447409584, - 6443742160, - 6447410656, - 6457190896, - 6457192720, - 6447411744, - 6447413360, - 6447413328, - 6457187520, - 6447423712 + "vtable_address": 6465221048, + "methods": [ + 6447423760, + 6457191728, + 6447403920, + 6447408240, + 6447408320, + 6457191776, + 6457188752, + 6447409648, + 6447411456, + 6447409808, + 6443742160, + 6447410960, + 6457193088, + 6457194912, + 6447411968, + 6447413584, + 6447413568, + 6457189712, + 6447423936 ], "bases": [ { @@ -212035,7 +212047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468397728, + "complete_object_locator": 6468401824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212044,25 +212056,25 @@ }, { "type_name": "CPublishedFile_GetDetails_Response", - "vtable_address": 6465112984, + "vtable_address": 6465117064, "methods": [ - 6447037072, - 6457189536, - 6447028272, + 6447037296, + 6457191728, 6447028496, - 6447028624, - 6457189584, - 6457186560, - 6447028640, - 6447029520, + 6447028720, + 6447028848, + 6457191776, + 6457188752, 6447028880, + 6447029744, + 6447029120, 6443742160, - 6447029376, - 6457190896, - 6457192720, - 6447029536, - 6447029568, - 6447029552 + 6447029600, + 6457193088, + 6457194912, + 6447029760, + 6447029792, + 6447029776 ], "bases": [ { @@ -212096,7 +212108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468397864, + "complete_object_locator": 6468401960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212105,25 +212117,25 @@ }, { "type_name": "CPublishedFile_GetUserFiles_Request", - "vtable_address": 6465130352, - "methods": [ - 6447059360, - 6457189536, - 6447046992, - 6447047504, - 6447047648, - 6457189584, - 6457186560, - 6447047664, - 6447051328, - 6447048848, + "vtable_address": 6465134432, + "methods": [ + 6447059584, + 6457191728, + 6447047216, + 6447047728, + 6447047872, + 6457191776, + 6457188752, + 6447048480, + 6447051552, + 6447049472, 6443742160, - 6447050432, - 6457190896, - 6457192720, - 6447051376, - 6447051632, - 6447051568 + 6447050656, + 6457193088, + 6457194912, + 6447051600, + 6447051856, + 6447051840 ], "bases": [ { @@ -212157,7 +212169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398000, + "complete_object_locator": 6468402096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212166,25 +212178,25 @@ }, { "type_name": "CPublishedFile_GetUserFiles_Response", - "vtable_address": 6465159040, + "vtable_address": 6465163120, "methods": [ - 6447093584, - 6457189536, - 6447076448, - 6447077520, - 6447077792, - 6457189584, - 6457186560, - 6447077808, - 6447081024, - 6447079264, + 6447093808, + 6457191728, + 6447076672, + 6447077744, + 6447078016, + 6457191776, + 6457188752, + 6447079008, + 6447081248, + 6447080112, 6443742160, - 6447080624, - 6457190896, - 6457192720, - 6447081072, - 6447082656, - 6447082640 + 6447080848, + 6457193088, + 6457194912, + 6447081296, + 6447082880, + 6447082864 ], "bases": [ { @@ -212218,7 +212230,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398136, + "complete_object_locator": 6468402232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212227,25 +212239,25 @@ }, { "type_name": "CPublishedFile_GetUserFiles_Response_App", - "vtable_address": 6465133336, - "methods": [ - 6447074208, - 6457189536, - 6447062512, - 6447062720, - 6447062800, - 6457189584, - 6457186560, - 6447062832, - 6447064400, - 6447062976, + "vtable_address": 6465137416, + "methods": [ + 6447074432, + 6457191728, + 6447062736, + 6447062944, + 6447063024, + 6457191776, + 6457188752, + 6447063056, + 6447064640, + 6447063200, 6443742160, - 6447063824, - 6457190896, - 6457192720, - 6447065696, - 6447066240, - 6447066208 + 6447064128, + 6457193088, + 6457194912, + 6447065920, + 6447066464, + 6447066432 ], "bases": [ { @@ -212279,7 +212291,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398272, + "complete_object_locator": 6468402368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212288,25 +212300,25 @@ }, { "type_name": "CPublishedFile_Publish_Request", - "vtable_address": 6465213960, + "vtable_address": 6465218040, "methods": [ - 6447386672, - 6457189536, - 6447359456, - 6447361056, - 6447361696, - 6457189584, - 6457186560, - 6447361728, - 6447364880, - 6447362576, + 6447386896, + 6457191728, + 6447359840, + 6447361504, + 6447361936, + 6457191776, + 6457188752, + 6447361952, + 6447365104, + 6447362800, 6443742160, - 6447363760, - 6457190896, - 6457192720, - 6447365472, - 6447366736, - 6447366720 + 6447363984, + 6457193088, + 6457194912, + 6447365696, + 6447366960, + 6447366944 ], "bases": [ { @@ -212340,7 +212352,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398408, + "complete_object_locator": 6468402504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212349,25 +212361,25 @@ }, { "type_name": "CPublishedFile_Publish_Response", - "vtable_address": 6465215240, + "vtable_address": 6465219320, "methods": [ - 6447400064, - 6457189536, - 6447392848, - 6447393024, - 6447393088, - 6457189584, - 6457186560, - 6447393104, - 6447393936, - 6447393216, + 6447400288, + 6457191728, + 6447393072, + 6447393248, + 6447393312, + 6457191776, + 6457188752, + 6447393328, + 6447394336, + 6447393440, 6443742160, - 6447393696, - 6457190896, - 6457192720, - 6447394144, - 6447396704, - 6447396064 + 6447393920, + 6457193088, + 6457194912, + 6447394368, + 6447396928, + 6447396704 ], "bases": [ { @@ -212401,7 +212413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398544, + "complete_object_locator": 6468402640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212410,29 +212422,29 @@ }, { "type_name": "CPublishedFile_RefreshVotingQueue_Request", - "vtable_address": 6465163192, - "methods": [ - 6447139472, - 6457189536, - 6447126752, - 6447128688, - 6447128768, - 6457189584, - 6457186560, - 6447128784, - 6447130768, - 6447129136, - 6443742160, - 6447130032, - 6457190896, - 6457192720, - 6447130816, - 6447131680, - 6447131664, - 6457187520, - 6447138928, - 6457187520, - 6447139808 + "vtable_address": 6465167272, + "methods": [ + 6447139696, + 6457191728, + 6447127312, + 6447128912, + 6447128992, + 6457191776, + 6457188752, + 6447129008, + 6447130992, + 6447129376, + 6443742160, + 6447130256, + 6457193088, + 6457194912, + 6447131104, + 6447131904, + 6447131888, + 6457189712, + 6447139152, + 6457189712, + 6447139856 ], "bases": [ { @@ -212466,7 +212478,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398680, + "complete_object_locator": 6468402776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212475,25 +212487,25 @@ }, { "type_name": "CPublishedFile_RefreshVotingQueue_Response", - "vtable_address": 6465164512, - "methods": [ - 6447144896, - 6457189536, - 6447144160, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447144464, - 6447144384 + "vtable_address": 6465168592, + "methods": [ + 6447145120, + 6457191728, + 6447144384, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447144688, + 6447144608 ], "bases": [ { @@ -212541,7 +212553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398816, + "complete_object_locator": 6468402912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212550,25 +212562,25 @@ }, { "type_name": "CPublishedFile_Subscribe_Request", - "vtable_address": 6465197592, + "vtable_address": 6465201672, "methods": [ - 6447324896, - 6457189536, - 6447317600, - 6447317776, + 6447325296, + 6457191728, 6447317824, - 6457189584, - 6457186560, - 6447317840, - 6447319152, - 6447317984, + 6447318000, + 6447318048, + 6457191776, + 6457188752, + 6447318064, + 6447319376, + 6447318208, 6443742160, - 6447318720, - 6457190896, - 6457192720, - 6447319264, - 6447321312, - 6447321296 + 6447318944, + 6457193088, + 6457194912, + 6447319536, + 6447321536, + 6447321520 ], "bases": [ { @@ -212602,7 +212614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468398960, + "complete_object_locator": 6468403056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212611,29 +212623,29 @@ }, { "type_name": "CPublishedFile_Subscribe_Response", - "vtable_address": 6465198680, - "methods": [ - 6447334160, - 6457189536, - 6447329008, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447331792, - 6447331776, - 6457187520, - 6447330048, - 6457187520, - 6447333040 + "vtable_address": 6465202760, + "methods": [ + 6447334400, + 6457191728, + 6447329488, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447332016, + 6447332000, + 6457189712, + 6447330272, + 6457189712, + 6447333264 ], "bases": [ { @@ -212681,7 +212693,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468399096, + "complete_object_locator": 6468403192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212690,29 +212702,29 @@ }, { "type_name": "CPublishedFile_Unsubscribe_Request", - "vtable_address": 6465200728, - "methods": [ - 6447347056, - 6457189536, - 6447338192, - 6447339328, - 6447339376, - 6457189584, - 6457186560, - 6447339392, - 6447341280, - 6447340128, - 6443742160, - 6447340848, - 6457190896, - 6457192720, - 6447341552, - 6447341664, - 6447341648, - 6457187520, - 6447343776, - 6457187520, - 6447346016 + "vtable_address": 6465204808, + "methods": [ + 6447347728, + 6457191728, + 6447338416, + 6447339552, + 6447339600, + 6457191776, + 6457188752, + 6447340208, + 6447341760, + 6447340352, + 6443742160, + 6447341072, + 6457193088, + 6457194912, + 6447341776, + 6447341888, + 6447341872, + 6457189712, + 6447344000, + 6457189712, + 6447346240 ], "bases": [ { @@ -212746,7 +212758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468399240, + "complete_object_locator": 6468403336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212755,25 +212767,25 @@ }, { "type_name": "CPublishedFile_Unsubscribe_Response", - "vtable_address": 6465208864, + "vtable_address": 6465212944, "methods": [ - 6447355616, - 6457189536, - 6447354048, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447354960, - 6447354752 + 6447355952, + 6457191728, + 6447354272, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447355184, + 6447355168 ], "bases": [ { @@ -212821,7 +212833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468399376, + "complete_object_locator": 6468403472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212830,27 +212842,27 @@ }, { "type_name": "CPublishedFile_Update_Request", - "vtable_address": 6465161088, - "methods": [ - 6447117584, - 6457189536, - 6447094608, - 6447095792, - 6447096240, - 6457189584, - 6457186560, - 6447096272, - 6447100448, - 6447097424, - 6443742160, - 6447099296, - 6457190896, - 6457192720, - 6447101184, - 6447101264, - 6447101232, - 6457187520, - 6447117456 + "vtable_address": 6465165168, + "methods": [ + 6447117856, + 6457191728, + 6447094832, + 6447096016, + 6447096464, + 6457191776, + 6457188752, + 6447096496, + 6447101120, + 6447097664, + 6443742160, + 6447099520, + 6457193088, + 6457194912, + 6447101408, + 6447101504, + 6447101456, + 6457189712, + 6447117680 ], "bases": [ { @@ -212884,7 +212896,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468399520, + "complete_object_locator": 6468403616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212893,25 +212905,25 @@ }, { "type_name": "CPublishedFile_Update_Response", - "vtable_address": 6465161616, + "vtable_address": 6465165696, "methods": [ - 6447124464, - 6457189536, - 6447124032, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447124176, - 6447124160 + 6447124688, + 6457191728, + 6447124272, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447124400, + 6447124384 ], "bases": [ { @@ -212959,7 +212971,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468399656, + "complete_object_locator": 6468403752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212968,15 +212980,15 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 6464571648, + "vtable_address": 6464575744, "methods": [ 6444370160, - 6462752944, - 6462744288, + 6462755136, + 6462746480, 6444358704, - 6462821856, - 6462827872, - 6462820864, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -212986,7 +212998,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468242664, + "complete_object_locator": 6468246760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -212995,15 +213007,15 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 6464571768, + "vtable_address": 6464575864, "methods": [ 6444370208, - 6462752960, - 6462744304, + 6462755152, + 6462746496, 6444358720, - 6462821856, - 6462827872, - 6462820864, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -213028,7 +213040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468242784, + "complete_object_locator": 6468246880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213037,23 +213049,23 @@ }, { "type_name": "CPulseCell_BaseLerp", - "vtable_address": 6464571928, + "vtable_address": 6464576024, "methods": [ 6444370256, - 6462752976, - 6462744432, + 6462755168, + 6462746624, 6444358736, - 6462821856, - 6462827872, - 6462820864, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6462825664, + 6462827856, 6444362976, - 6462824864, + 6462827056, 6444362960, 6444362928, 6444336080, @@ -213062,7 +213074,7 @@ 6444361680, 6444362944, 6444377712, - 6463705588, + 6463707780, 6444361648 ], "bases": [ @@ -213111,7 +213123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245360, + "complete_object_locator": 6468249456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213120,23 +213132,23 @@ }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 6467803088, - "methods": [ - 6462784608, - 6462753056, - 6462744640, - 6462752640, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467807184, + "methods": [ + 6462786800, + 6462755248, + 6462746832, + 6462754832, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6462742336, - 6462743472, - 6462742816 + 6462744528, + 6462745664, + 6462745008 ], "bases": [ { @@ -213156,7 +213168,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468989768, + "complete_object_locator": 6468993864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213165,15 +213177,15 @@ }, { "type_name": "CPulseCell_BaseValue", - "vtable_address": 6467803840, - "methods": [ - 6462784656, - 6462753072, - 6462744768, - 6462752656, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467807936, + "methods": [ + 6462786848, + 6462755264, + 6462746960, + 6462754848, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -213198,7 +213210,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988968, + "complete_object_locator": 6468993064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213207,29 +213219,29 @@ }, { "type_name": "CPulseCell_BooleanSwitchState", - "vtable_address": 6467832480, - "methods": [ - 6463116160, - 6463109744, - 6463108160, - 6463109712, - 6462821856, - 6462827872, - 6462820864, - 6463107376, - 6463107344, - 6463107360, - 6463113568, + "vtable_address": 6467836576, + "methods": [ + 6463118352, + 6463111936, + 6463110352, + 6463111904, + 6462824048, + 6462830064, + 6462823056, + 6463109568, + 6463109536, + 6463109552, 6463115760, - 6463157632, + 6463117952, + 6463159824, 6444362976, 6444362672, - 6463156496, + 6463158688, 6444362928, 6444336144, 6444341120, - 6463116128, - 6463113776, + 6463118320, + 6463115968, 6444362944 ], "bases": [ @@ -213292,7 +213304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468993552, + "complete_object_locator": 6468997648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213301,32 +213313,32 @@ }, { "type_name": "CPulseCell_CursorQueue", - "vtable_address": 6467837152, - "methods": [ - 6463137536, - 6463128064, - 6463126592, - 6463128016, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467841248, + "methods": [ + 6463139728, + 6463130256, + 6463128784, + 6463130208, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463159856, - 6463159664, + 6463162048, + 6463161856, 6444362672, 6444362960, 6444362928, - 6463126464, - 6463126544, - 6463159920, - 6463159056, + 6463128656, + 6463128736, + 6463162112, + 6463161248, 6444362944, - 6463158880, - 6463160496 + 6463161072, + 6463162688 ], "bases": [ { @@ -213388,7 +213400,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468994000, + "complete_object_locator": 6468998096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213397,29 +213409,29 @@ }, { "type_name": "CPulseCell_FireCursors", - "vtable_address": 6467828344, - "methods": [ - 6463080464, - 6463079248, - 6463078464, - 6463079232, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467832440, + "methods": [ + 6463082656, + 6463081440, + 6463080656, + 6463081424, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463150992, - 6463150960, + 6463153184, + 6463153152, 6444362672, 6444362960, 6444362928, 6444336144, 6444341120, - 6463080448, - 6463080432, + 6463082640, + 6463082624, 6444362944 ], "bases": [ @@ -213468,7 +213480,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468992736, + "complete_object_locator": 6468996832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213477,15 +213489,15 @@ }, { "type_name": "CPulseCell_Inflow_BaseEntrypoint", - "vtable_address": 6467803216, - "methods": [ - 6462784704, - 6462753088, - 6462744896, - 6462752672, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467807312, + "methods": [ + 6462786896, + 6462755280, + 6462747088, + 6462754864, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -213524,7 +213536,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468989896, + "complete_object_locator": 6468993992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213533,15 +213545,15 @@ }, { "type_name": "CPulseCell_Inflow_EntOutputHandler", - "vtable_address": 6467803632, - "methods": [ - 6462784752, - 6462753104, - 6462744912, - 6462752688, - 6462821952, - 6462827872, - 6462820880, + "vtable_address": 6467807728, + "methods": [ + 6462786944, + 6462755296, + 6462747104, + 6462754880, + 6462824144, + 6462830064, + 6462823072, 6444347856, 6444338192, 6444341488, @@ -213594,7 +213606,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468989096, + "complete_object_locator": 6468993192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213603,15 +213615,15 @@ }, { "type_name": "CPulseCell_Inflow_EventHandler", - "vtable_address": 6467803424, - "methods": [ - 6462784800, - 6462753488, - 6462745248, - 6462752704, - 6462822160, - 6462827872, - 6462820864, + "vtable_address": 6467807520, + "methods": [ + 6462786992, + 6462755680, + 6462747440, + 6462754896, + 6462824352, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -213664,7 +213676,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468989480, + "complete_object_locator": 6468993576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213673,15 +213685,15 @@ }, { "type_name": "CPulseCell_Inflow_GraphHook", - "vtable_address": 6467803528, - "methods": [ - 6462784848, - 6462753696, - 6462745488, - 6462752720, - 6462822336, - 6462827872, - 6462820864, + "vtable_address": 6467807624, + "methods": [ + 6462787040, + 6462755888, + 6462747680, + 6462754912, + 6462824528, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -213734,7 +213746,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468989624, + "complete_object_locator": 6468993720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213743,15 +213755,15 @@ }, { "type_name": "CPulseCell_Inflow_Method", - "vtable_address": 6467803320, - "methods": [ - 6462784896, - 6462753904, - 6462745712, - 6462752736, - 6462822512, - 6462827872, - 6462821152, + "vtable_address": 6467807416, + "methods": [ + 6462787088, + 6462756096, + 6462747904, + 6462754928, + 6462824704, + 6462830064, + 6462823344, 6444347856, 6444338192, 6444341488, @@ -213804,7 +213816,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468989336, + "complete_object_locator": 6468993432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213813,15 +213825,15 @@ }, { "type_name": "CPulseCell_Inflow_ObservableVariableListener", - "vtable_address": 6467803736, - "methods": [ - 6462784944, - 6462753920, - 6462745728, - 6462752752, - 6462822688, - 6462827872, - 6462820864, + "vtable_address": 6467807832, + "methods": [ + 6462787136, + 6462756112, + 6462747920, + 6462754944, + 6462824880, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -213874,7 +213886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468989936, + "complete_object_locator": 6468994032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213883,29 +213895,29 @@ }, { "type_name": "CPulseCell_Inflow_Wait", - "vtable_address": 6467804232, - "methods": [ - 6462784992, - 6462754208, - 6462746208, - 6462752768, - 6462822944, - 6462827872, - 6462820864, + "vtable_address": 6467808328, + "methods": [ + 6462787184, + 6462756400, + 6462748400, + 6462754960, + 6462825136, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6462825696, + 6462827888, 6444362976, - 6462825184, + 6462827376, 6444362960, 6444362928, 6444336144, 6444341120, - 6462827456, - 6462824496, + 6462829648, + 6462826688, 6444362944 ], "bases": [ @@ -213954,7 +213966,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468990360, + "complete_object_locator": 6468994456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -213963,29 +213975,29 @@ }, { "type_name": "CPulseCell_Inflow_Yield", - "vtable_address": 6467804048, - "methods": [ - 6462785040, - 6462754288, - 6462746496, - 6462752784, + "vtable_address": 6467808144, + "methods": [ + 6462787232, + 6462756480, + 6462748688, + 6462754976, + 6462825248, + 6462830064, 6462823056, - 6462827872, - 6462820864, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6462825728, + 6462827920, 6444362976, 6444362672, 6444362960, 6444362928, 6444336144, 6444341120, - 6462784592, - 6462779328, + 6462786784, + 6462781520, 6444362944 ], "bases": [ @@ -214034,7 +214046,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468990216, + "complete_object_locator": 6468994312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214043,15 +214055,15 @@ }, { "type_name": "CPulseCell_InlineNodeSkipSelector", - "vtable_address": 6467817976, - "methods": [ - 6463017968, - 6463004976, - 6463002960, - 6463004912, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467822072, + "methods": [ + 6463020160, + 6463007168, + 6463005152, + 6463007104, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -214090,7 +214102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468992328, + "complete_object_locator": 6468996424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214099,29 +214111,29 @@ }, { "type_name": "CPulseCell_IntervalTimer", - "vtable_address": 6467830256, - "methods": [ - 6463093424, - 6463089056, - 6463087744, - 6463089040, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467834352, + "methods": [ + 6463095616, + 6463091248, + 6463089936, + 6463091232, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463152496, + 6463154688, 6444362976, - 6463152096, + 6463154288, 6444362960, 6444362928, - 6463087680, - 6463087728, - 6463093008, - 6463091616, + 6463089872, + 6463089920, + 6463095200, + 6463093808, 6444362944 ], "bases": [ @@ -214170,7 +214182,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468993016, + "complete_object_locator": 6468997112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214179,23 +214191,23 @@ }, { "type_name": "CPulseCell_IsRequirementValid", - "vtable_address": 6467817848, - "methods": [ - 6463018016, - 6463005440, - 6463002976, - 6463004928, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467821944, + "methods": [ + 6463020208, + 6463007632, + 6463005168, + 6463007120, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463001856, - 6463002368, - 6463002288 + 6463004048, + 6463004560, + 6463004480 ], "bases": [ { @@ -214229,7 +214241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468992192, + "complete_object_locator": 6468996288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214238,23 +214250,23 @@ }, { "type_name": "CPulseCell_LerpCameraSettings", - "vtable_address": 6464573040, + "vtable_address": 6464577136, "methods": [ 6444370304, 6444358768, 6444358368, 6444358752, - 6462821856, - 6462827872, - 6462820864, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6462825664, + 6462827856, 6444362976, - 6462824864, + 6462827056, 6444362960, 6444362928, 6444336160, @@ -214326,7 +214338,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245504, + "complete_object_locator": 6468249600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214335,23 +214347,23 @@ }, { "type_name": "CPulseCell_LimitCount", - "vtable_address": 6467817720, - "methods": [ - 6463018064, - 6463005456, - 6463003104, - 6463004944, - 6462821856, - 6462827872, - 6462820864, - 6463002336, - 6463002272, - 6463002320, - 6463012992, - 6463017600, - 6463001888, - 6463002416, - 6463002304 + "vtable_address": 6467821816, + "methods": [ + 6463020256, + 6463007648, + 6463005296, + 6463007136, + 6462824048, + 6462830064, + 6462823056, + 6463004528, + 6463004464, + 6463004512, + 6463015184, + 6463019792, + 6463004080, + 6463004608, + 6463004496 ], "bases": [ { @@ -214385,7 +214397,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468992056, + "complete_object_locator": 6468996152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214394,20 +214406,20 @@ }, { "type_name": "CPulseCell_Outflow_CycleOrdered", - "vtable_address": 6467804416, - "methods": [ - 6462785088, - 6462754368, - 6462746784, - 6462752800, - 6462821856, - 6462827872, - 6462820864, - 6462743408, - 6462742768, - 6462742848, - 6462779168, - 6462783856 + "vtable_address": 6467808512, + "methods": [ + 6462787280, + 6462756560, + 6462748976, + 6462754992, + 6462824048, + 6462830064, + 6462823056, + 6462745600, + 6462744960, + 6462745040, + 6462781360, + 6462786048 ], "bases": [ { @@ -214441,7 +214453,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468990504, + "complete_object_locator": 6468994600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214450,15 +214462,15 @@ }, { "type_name": "CPulseCell_Outflow_CycleRandom", - "vtable_address": 6467804520, - "methods": [ - 6462785136, - 6462754448, - 6462747072, - 6462752816, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467808616, + "methods": [ + 6462787328, + 6462756640, + 6462749264, + 6462755008, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -214497,7 +214509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468990640, + "complete_object_locator": 6468994736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214506,20 +214518,20 @@ }, { "type_name": "CPulseCell_Outflow_CycleShuffled", - "vtable_address": 6467804624, - "methods": [ - 6462785184, - 6462754528, - 6462747360, - 6462752832, - 6462821856, - 6462827872, - 6462820864, - 6462743440, - 6462742784, - 6462742864, - 6462779184, - 6462784224 + "vtable_address": 6467808720, + "methods": [ + 6462787376, + 6462756720, + 6462749552, + 6462755024, + 6462824048, + 6462830064, + 6462823056, + 6462745632, + 6462744976, + 6462745056, + 6462781376, + 6462786416 ], "bases": [ { @@ -214553,7 +214565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468990776, + "complete_object_locator": 6468994872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214562,15 +214574,15 @@ }, { "type_name": "CPulseCell_PickBestOutflowSelector", - "vtable_address": 6467818080, - "methods": [ - 6463018112, - 6463005680, - 6463003312, - 6463004960, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467822176, + "methods": [ + 6463020304, + 6463007872, + 6463005504, + 6463007152, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -214609,7 +214621,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468992464, + "complete_object_locator": 6468996560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214618,15 +214630,15 @@ }, { "type_name": "CPulseCell_PlaySequence", - "vtable_address": 6465256760, + "vtable_address": 6465260840, "methods": [ 6447697296, 6447685808, 6447683792, 6447685776, - 6462821856, - 6462827872, - 6462820864, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -214689,7 +214701,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468422160, + "complete_object_locator": 6468426256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214698,29 +214710,29 @@ }, { "type_name": "CPulseCell_Step_CallExternalMethod", - "vtable_address": 6467805040, - "methods": [ - 6462785232, - 6462754608, - 6462747648, - 6462752848, - 6462823168, - 6462827872, - 6462820864, + "vtable_address": 6467809136, + "methods": [ + 6462787424, + 6462756800, + 6462749840, + 6462755040, + 6462825360, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6462825760, - 6462825216, + 6462827952, + 6462827408, 6444362672, 6444362960, 6444362928, - 6462742352, - 6462742832, - 6462827472, - 6462824512, + 6462744544, + 6462745024, + 6462829664, + 6462826704, 6444362944 ], "bases": [ @@ -214769,7 +214781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468991320, + "complete_object_locator": 6468995416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214778,15 +214790,15 @@ }, { "type_name": "CPulseCell_Step_DebugLog", - "vtable_address": 6467804936, - "methods": [ - 6462785280, - 6462754624, - 6462747664, - 6462752864, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467809032, + "methods": [ + 6462787472, + 6462756816, + 6462749856, + 6462755056, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -214825,7 +214837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468991184, + "complete_object_locator": 6468995280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214834,15 +214846,15 @@ }, { "type_name": "CPulseCell_Step_EntFire", - "vtable_address": 6465256656, + "vtable_address": 6465260736, "methods": [ 6447697344, 6447685824, 6447683808, 6447685792, - 6462821856, - 6462827872, - 6462820864, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -214881,7 +214893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468422024, + "complete_object_locator": 6468426120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214890,15 +214902,15 @@ }, { "type_name": "CPulseCell_Step_PublicOutput", - "vtable_address": 6467803944, - "methods": [ - 6462785328, - 6462754640, - 6462747888, - 6462752880, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467808040, + "methods": [ + 6462787520, + 6462756832, + 6462750080, + 6462755072, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -214937,7 +214949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468990080, + "complete_object_locator": 6468994176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -214946,29 +214958,29 @@ }, { "type_name": "CPulseCell_Timeline", - "vtable_address": 6467830800, - "methods": [ - 6463101648, - 6463099168, - 6463097904, - 6463099152, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467834896, + "methods": [ + 6463103840, + 6463101360, + 6463100096, + 6463101344, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463154528, - 6463154432, - 6463154416, + 6463156720, + 6463156624, + 6463156608, 6444362960, 6444362928, - 6463097360, - 6463097424, - 6463155232, - 6463154336, + 6463099552, + 6463099616, + 6463157424, + 6463156528, 6444362944 ], "bases": [ @@ -215017,7 +215029,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468993160, + "complete_object_locator": 6468997256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215026,15 +215038,15 @@ }, { "type_name": "CPulseCell_Unknown", - "vtable_address": 6467805224, - "methods": [ - 6462785376, - 6462824448, - 6462824288, - 6462752896, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467809320, + "methods": [ + 6462787568, + 6462826640, + 6462826480, + 6462755088, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -215059,7 +215071,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468991464, + "complete_object_locator": 6468995560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215068,15 +215080,15 @@ }, { "type_name": "CPulseCell_Value_Curve", - "vtable_address": 6467828096, - "methods": [ - 6463077072, - 6463074512, - 6463074016, - 6463074496, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467832192, + "methods": [ + 6463079264, + 6463076704, + 6463076208, + 6463076688, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -215115,7 +215127,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468992600, + "complete_object_locator": 6468996696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215124,15 +215136,15 @@ }, { "type_name": "CPulseCell_Value_Gradient", - "vtable_address": 6467828712, - "methods": [ - 6463084832, - 6463082256, - 6463081760, - 6463082240, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467832808, + "methods": [ + 6463087024, + 6463084448, + 6463083952, + 6463084432, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -215171,7 +215183,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468992880, + "complete_object_locator": 6468996976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215180,15 +215192,15 @@ }, { "type_name": "CPulseCell_Value_RandomFloat", - "vtable_address": 6467804832, - "methods": [ - 6462785424, - 6462754864, - 6462747904, - 6462752912, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467808928, + "methods": [ + 6462787616, + 6462757056, + 6462750096, + 6462755104, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -215227,7 +215239,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468991048, + "complete_object_locator": 6468995144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215236,15 +215248,15 @@ }, { "type_name": "CPulseCell_Value_RandomInt", - "vtable_address": 6467804728, - "methods": [ - 6462785472, - 6462754880, - 6462748128, - 6462752928, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467808824, + "methods": [ + 6462787664, + 6462757072, + 6462750320, + 6462755120, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, @@ -215283,7 +215295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468990912, + "complete_object_locator": 6468995008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215292,32 +215304,32 @@ }, { "type_name": "CPulseCell_WaitForCursorsWithTag", - "vtable_address": 6467836952, - "methods": [ - 6463137584, - 6463128304, - 6463126816, - 6463128032, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467841048, + "methods": [ + 6463139776, + 6463130496, + 6463129008, + 6463130224, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463159856, - 6463159664, + 6463162048, + 6463161856, 6444362672, 6444362960, 6444362928, - 6463126464, - 6463126544, - 6463159920, - 6463159056, + 6463128656, + 6463128736, + 6463162112, + 6463161248, 6444362944, - 6463158896, - 6463160512 + 6463161088, + 6463162704 ], "bases": [ { @@ -215379,7 +215391,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468993848, + "complete_object_locator": 6468997944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215388,32 +215400,32 @@ }, { "type_name": "CPulseCell_WaitForCursorsWithTagBase", - "vtable_address": 6467836752, - "methods": [ - 6463137632, - 6463128672, - 6463126832, - 6463128048, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467840848, + "methods": [ + 6463139824, + 6463130864, + 6463129024, + 6463130240, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463159856, - 6463159664, + 6463162048, + 6463161856, 6444362672, 6444362960, 6444362928, - 6463126464, - 6463126544, - 6463159920, - 6463159056, + 6463128656, + 6463128736, + 6463162112, + 6463161248, 6444362944, - 6463158896, - 6463160528 + 6463161088, + 6463162720 ], "bases": [ { @@ -215461,7 +215473,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468993704, + "complete_object_locator": 6468997800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215470,29 +215482,29 @@ }, { "type_name": "CPulseCell_WaitForObservable", - "vtable_address": 6467832296, - "methods": [ - 6463116208, - 6463109952, - 6463108528, - 6463109728, - 6462821856, - 6462827872, - 6462820864, + "vtable_address": 6467836392, + "methods": [ + 6463118400, + 6463112144, + 6463110720, + 6463111920, + 6462824048, + 6462830064, + 6462823056, 6444347856, 6444338192, 6444341488, 6444361664, 6444368976, - 6463158000, + 6463160192, 6444362976, 6444362672, - 6463157216, + 6463159408, 6444362928, 6444336144, 6444341120, - 6463116144, - 6463113792, + 6463118336, + 6463115984, 6444362944 ], "bases": [ @@ -215541,7 +215553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468993304, + "complete_object_locator": 6468997400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215550,16 +215562,16 @@ }, { "type_name": "CPulseClientPanoramaService", - "vtable_address": 6466071088, + "vtable_address": 6466075296, "methods": [ - 6451239824, - 6451239840, - 6451239872, - 6451239984, - 6451240128, - 6451240224, - 6451240368, - 6451240608 + 6451241392, + 6451241408, + 6451241440, + 6451241552, + 6451241696, + 6451241792, + 6451241936, + 6451242176 ], "bases": [ { @@ -215607,7 +215619,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468597672, + "complete_object_locator": 6468601768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -215616,9 +215628,9 @@ }, { "type_name": "CPulseClientPanoramaService", - "vtable_address": 6466071160, + "vtable_address": 6466075368, "methods": [ - 6451241120 + 6451242688 ], "bases": [ { @@ -215666,7 +215678,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468597856, + "complete_object_locator": 6468601952, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -215675,27 +215687,27 @@ }, { "type_name": "CPulseDomainScopeLoader", - "vtable_address": 6467786904, - "methods": [ - 6462648752, - 6462643648, - 6462643584, - 6462643600, - 6462643536, - 6462647584, - 6462647712, - 6462638896, - 6462639008, - 6462639376, - 6462640496, - 6462640368, - 6462640432, - 6462647520, - 6462643408, - 6462640736, - 6462649264, - 6462650368, - 6462649936 + "vtable_address": 6467791000, + "methods": [ + 6462650944, + 6462645840, + 6462645776, + 6462645792, + 6462645728, + 6462649776, + 6462649904, + 6462641088, + 6462641200, + 6462641568, + 6462642688, + 6462642560, + 6462642624, + 6462649712, + 6462645600, + 6462642928, + 6462651456, + 6462652560, + 6462652128 ], "bases": [ { @@ -215729,7 +215741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468987352, + "complete_object_locator": 6468991448, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -215738,7 +215750,7 @@ }, { "type_name": "CPulseEntityFindFilter", - "vtable_address": 6464482776, + "vtable_address": 6464486872, "methods": [ 6444234432 ], @@ -215760,7 +215772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468235864, + "complete_object_locator": 6468239960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -215769,31 +215781,31 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 6465254744, + "vtable_address": 6465258824, "methods": [ 6445466896, 6447677664, 6444122752, - 6460051264, + 6460053456, 6447692720, - 6450410112, + 6450411680, 6447697440, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6447677872, 6447697456, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, 6447696528, 6447695936, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6447691472, 6443858256, 6443844048, @@ -215803,25 +215815,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6447681312, 6447695920, 6447697392, 6443799760, 6447682896, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -215838,13 +215850,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -215852,39 +215864,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6447698496, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -215898,33 +215910,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -215952,34 +215964,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -216036,7 +216048,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468421320, + "complete_object_locator": 6468425416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -216045,7 +216057,7 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 6465256496, + "vtable_address": 6465260576, "methods": [ 6447692608 ], @@ -216095,7 +216107,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468421504, + "complete_object_locator": 6468425600, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -216104,31 +216116,31 @@ }, { "type_name": "CPulseGraphDef", - "vtable_address": 6467811224, - "methods": [ - 6462942784, - 6462898960, - 6462945808, - 6462943200, - 6462944624, - 6462942864, - 6462945760, - 6462944608, - 6462933056, - 6462945744, - 6462942480, - 6462942336, - 6462945872, - 6462946000, - 6462946048, - 6462945936, - 6462946096, - 6462946736, - 6462946784, - 6462946160, - 6462931488, - 6462926400, - 6462942176 + "vtable_address": 6467815320, + "methods": [ + 6462944976, + 6462901152, + 6462948000, + 6462945392, + 6462946816, + 6462945056, + 6462947952, + 6462946800, + 6462935248, + 6462947936, + 6462944672, + 6462944528, + 6462948064, + 6462948192, + 6462948240, + 6462948128, + 6462948288, + 6462948928, + 6462948976, + 6462948352, + 6462933680, + 6462928592, + 6462944368 ], "bases": [ { @@ -216148,7 +216160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468991848, + "complete_object_locator": 6468995944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -216157,7 +216169,7 @@ }, { "type_name": "CPulseInputHost", - "vtable_address": 6464482728, + "vtable_address": 6464486824, "methods": [ 6444153856, 6444156288 @@ -216180,7 +216192,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468235736, + "complete_object_locator": 6468239832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -216189,7 +216201,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Blackboard", - "vtable_address": 6465256600, + "vtable_address": 6465260680, "methods": [ 6447690768 ], @@ -216239,7 +216251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468421680, + "complete_object_locator": 6468425776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -216248,7 +216260,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Blackboard", - "vtable_address": 6465256616, + "vtable_address": 6465260696, "methods": [ 6447690432 ], @@ -216298,7 +216310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468421864, + "complete_object_locator": 6468425960, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -216307,7 +216319,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Blackboard", - "vtable_address": 6465256632, + "vtable_address": 6465260712, "methods": [ 6447695856, 6447695792 @@ -216358,7 +216370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468421904, + "complete_object_locator": 6468426000, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -216367,7 +216379,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6465256944, + "vtable_address": 6465261024, "methods": [ 6447690752 ], @@ -216445,7 +216457,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468422344, + "complete_object_locator": 6468426440, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -216454,7 +216466,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6465256960, + "vtable_address": 6465261040, "methods": [ 6447690784 ], @@ -216532,7 +216544,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468422504, + "complete_object_locator": 6468426600, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -216541,7 +216553,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6465256976, + "vtable_address": 6465261056, "methods": [ 6447690656 ], @@ -216619,7 +216631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468422544, + "complete_object_locator": 6468426640, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -216628,7 +216640,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6465256992, + "vtable_address": 6465261072, "methods": [ 6447695888, 6447695824 @@ -216707,7 +216719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468422584, + "complete_object_locator": 6468426680, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -216716,7 +216728,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6465257016, + "vtable_address": 6465261096, "methods": [ 6447678576 ], @@ -216794,7 +216806,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468422624, + "complete_object_locator": 6468426720, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -216803,9 +216815,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6467787176, + "vtable_address": 6467791272, "methods": [ - 6462647696 + 6462649888 ], "bases": [ { @@ -216951,7 +216963,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468987912, + "complete_object_locator": 6468992008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -216960,9 +216972,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6467787192, + "vtable_address": 6467791288, "methods": [ - 6462648736 + 6462650928 ], "bases": [ { @@ -217108,7 +217120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988320, + "complete_object_locator": 6468992416, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -217117,9 +217129,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6467787208, + "vtable_address": 6467791304, "methods": [ - 6460091776 + 6460093968 ], "bases": [ { @@ -217265,7 +217277,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988360, + "complete_object_locator": 6468992456, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -217274,10 +217286,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6467787224, + "vtable_address": 6467791320, "methods": [ - 6462649232, - 6462649200 + 6462651424, + 6462651392 ], "bases": [ { @@ -217423,7 +217435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988400, + "complete_object_locator": 6468992496, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -217432,9 +217444,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6467787248, + "vtable_address": 6467791344, "methods": [ - 6449074192 + 6449075712 ], "bases": [ { @@ -217580,7 +217592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988440, + "complete_object_locator": 6468992536, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -217589,9 +217601,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6465814128, + "vtable_address": 6465818320, "methods": [ - 6449720608 + 6449722176 ], "bases": [ { @@ -217695,7 +217707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468522848, + "complete_object_locator": 6468526944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -217704,9 +217716,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6465814144, + "vtable_address": 6465818336, "methods": [ - 6449720656 + 6449722224 ], "bases": [ { @@ -217810,7 +217822,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523024, + "complete_object_locator": 6468527120, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -217819,7 +217831,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6465814160, + "vtable_address": 6465818352, "methods": [ 6447696544 ], @@ -217925,7 +217937,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523064, + "complete_object_locator": 6468527160, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -217934,10 +217946,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6465814176, + "vtable_address": 6465818368, "methods": [ - 6449683584, - 6449683392 + 6449685152, + 6449684960 ], "bases": [ { @@ -218041,7 +218053,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523104, + "complete_object_locator": 6468527200, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -218050,9 +218062,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6467799728, + "vtable_address": 6467803824, "methods": [ - 6449720608 + 6449722176 ], "bases": [ { @@ -218170,7 +218182,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988616, + "complete_object_locator": 6468992712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -218179,9 +218191,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6467799744, + "vtable_address": 6467803840, "methods": [ - 6449720656 + 6449722224 ], "bases": [ { @@ -218299,7 +218311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988848, + "complete_object_locator": 6468992944, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -218308,9 +218320,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6467799760, + "vtable_address": 6467803856, "methods": [ - 6460094080 + 6460096272 ], "bases": [ { @@ -218428,7 +218440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988888, + "complete_object_locator": 6468992984, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -218437,10 +218449,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6467799776, + "vtable_address": 6467803872, "methods": [ - 6449683584, - 6449683392 + 6449685152, + 6449684960 ], "bases": [ { @@ -218558,7 +218570,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988928, + "complete_object_locator": 6468993024, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -218567,16 +218579,16 @@ }, { "type_name": "CPulseScopeEnumeratingTypeService", - "vtable_address": 6467787264, + "vtable_address": 6467791360, "methods": [ - 6462643568, - 6462647504, - 6462640416, - 6462640480, - 6462647568, - 6462643488, - 6462640816, - 6462649312 + 6462645760, + 6462649696, + 6462642608, + 6462642672, + 6462649760, + 6462645680, + 6462643008, + 6462651504 ], "bases": [ { @@ -218610,7 +218622,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468988480, + "complete_object_locator": 6468992576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218619,7 +218631,7 @@ }, { "type_name": "CPulseSharedEHandleService", - "vtable_address": 6465252200, + "vtable_address": 6465256280, "methods": [ 6447660304, 6447660320, @@ -218662,7 +218674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468420456, + "complete_object_locator": 6468424552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218671,7 +218683,7 @@ }, { "type_name": "CPulseSharedSaveRestoreBlockHandler", - "vtable_address": 6465253504, + "vtable_address": 6465257584, "methods": [ 6447666960, 6447666976, @@ -218715,7 +218727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468420320, + "complete_object_locator": 6468424416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218724,9 +218736,9 @@ }, { "type_name": "CPulseTypeQueriesModuleMetadataProvider", - "vtable_address": 6467809256, + "vtable_address": 6467813352, "methods": [ - 6462829312 + 6462831504 ], "bases": [ { @@ -218746,7 +218758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468991720, + "complete_object_locator": 6468995816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218755,27 +218767,25 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request", - "vtable_address": 6465023664, + "vtable_address": 6465027776, "methods": [ - 6446534576, - 6457189536, - 6446499696, - 6446501872, - 6446502128, - 6457189584, - 6457186560, - 6446502304, - 6446504368, - 6446502784, + 6446535280, + 6457191728, + 6446501040, + 6446502400, + 6446502672, + 6457191776, + 6457188752, + 6446502704, + 6446504752, + 6446503184, 6443742160, - 6446503760, - 6457190896, - 6457192720, - 6446504480, - 6446504576, - 6446504560, - 6457187520, - 6446527568 + 6446504144, + 6457193088, + 6457194912, + 6446504928, + 6446504976, + 6446504944 ], "bases": [ { @@ -218809,7 +218819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468314968, + "complete_object_locator": 6468319200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218818,29 +218828,29 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute", - "vtable_address": 6465008968, - "methods": [ - 6446484304, - 6457189536, - 6446476176, - 6446476544, - 6446476592, - 6457189584, - 6457186560, - 6446476624, - 6446478336, - 6446476720, + "vtable_address": 6465013064, + "methods": [ + 6446486832, + 6457191728, + 6446476560, + 6446476928, + 6446477200, + 6457191776, + 6457188752, + 6446477568, + 6446479648, + 6446477936, 6443742160, - 6446477792, - 6457190896, - 6457192720, - 6446479888, - 6446480144, - 6446480128, - 6457187520, - 6446481536, - 6457187520, - 6446483456 + 6446479360, + 6457193088, + 6457194912, + 6446480480, + 6446480528, + 6446480512, + 6457189712, + 6446481920, + 6457189712, + 6446483840 ], "bases": [ { @@ -218874,7 +218884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468315104, + "complete_object_locator": 6468319336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218883,27 +218893,27 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Response", - "vtable_address": 6465025168, - "methods": [ - 6446555792, - 6457189536, - 6446540144, - 6446541408, - 6446541600, - 6457189584, - 6457186560, - 6446541616, - 6446543920, - 6446542080, - 6443742160, - 6446543056, - 6457190896, - 6457192720, - 6446547072, - 6446548608, - 6446548576, - 6457187520, - 6446554528 + "vtable_address": 6465029264, + "methods": [ + 6446556176, + 6457191728, + 6446540688, + 6446542320, + 6446542352, + 6457191776, + 6457188752, + 6446542640, + 6446547280, + 6446543696, + 6443742160, + 6446545024, + 6457193088, + 6457194912, + 6446548768, + 6446548992, + 6446548976, + 6457189712, + 6446554912 ], "bases": [ { @@ -218937,7 +218947,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468315240, + "complete_object_locator": 6468319472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218946,11 +218956,11 @@ }, { "type_name": "CQueueMatchServerListListener", - "vtable_address": 6466287416, + "vtable_address": 6466291528, "methods": [ - 6452271024, - 6452271008, - 6452261072 + 6452272608, + 6452272592, + 6452262656 ], "bases": [ { @@ -218970,7 +218980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468657984, + "complete_object_locator": 6468662080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -218979,15 +218989,15 @@ }, { "type_name": "CRadioStatus", - "vtable_address": 6466845880, + "vtable_address": 6466849992, "methods": [ - 6456562640, + 6456564416, 6443748592, - 6456571040, + 6456572816, 6443748624, 6443748640, - 6456561904, - 6456562080, + 6456563680, + 6456563856, 6443748688, 6443748704, 6443748720, @@ -219008,7 +219018,7 @@ 6443748960, 6443748976, 6443748992, - 6456571504, + 6456573280, 6443749024, 6443749040, 6443749056, @@ -219037,11 +219047,11 @@ 6443749424, 6443749440, 6443749456, - 6456570928, + 6456572704, 6443749488, - 6456560416, - 6456552016, - 6456573536 + 6456562192, + 6456553792, + 6456575312 ], "bases": [ { @@ -219075,7 +219085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468803192, + "complete_object_locator": 6468807288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219084,7 +219094,7 @@ }, { "type_name": "CRagdollGameSystem", - "vtable_address": 6466075320, + "vtable_address": 6466079528, "methods": [ 6443748576, 6443748592, @@ -219101,11 +219111,11 @@ 6443748768, 6443748784, 6443748800, - 6451249344, - 6451249616, + 6451250912, + 6451251184, 6443748848, 6443748864, - 6451249712, + 6451251280, 6443748896, 6443748912, 6443748928, @@ -219142,11 +219152,11 @@ 6443749424, 6443749440, 6443749456, - 6451249312, + 6451250880, 6443749488, - 6451249296, - 6451249888, - 6451249280 + 6451250864, + 6451251456, + 6451250848 ], "bases": [ { @@ -219180,7 +219190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468596112, + "complete_object_locator": 6468600208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219189,12 +219199,12 @@ }, { "type_name": "CRagdollLRURetirement", - "vtable_address": 6466074152, + "vtable_address": 6466078360, "methods": [ 6443748576, 6443748592, 6443748608, - 6451247568, + 6451249136, 6443748640, 6443748656, 6443748672, @@ -219218,11 +219228,11 @@ 6443748960, 6443748976, 6443748992, - 6451246224, + 6451247792, 6443749024, 6443749040, 6443749056, - 6451247536, + 6451249104, 6443749088, 6443749104, 6443749120, @@ -219247,11 +219257,11 @@ 6443749424, 6443749440, 6443749456, - 6451246144, + 6451247600, 6443749488, - 6451246112, - 6451249040, - 6451246080 + 6451247536, + 6451250608, + 6451247520 ], "bases": [ { @@ -219285,7 +219295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468598736, + "complete_object_locator": 6468602832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219294,32 +219304,32 @@ }, { "type_name": "CRagdollManager", - "vtable_address": 6464589656, + "vtable_address": 6464593752, "methods": [ 6445466896, 6444389376, 6444122752, - 6460051264, + 6460053456, 6444197472, 6444393952, - 6450687312, - 6450413456, - 6450585280, - 6450586832, + 6450688880, + 6450415024, + 6450586848, + 6450588400, 6444392288, 6444428752, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444397088, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -219328,25 +219338,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399664, 6444418656, 6444424256, 6443799760, 6444402288, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -219363,13 +219373,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -219377,39 +219387,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, + 6450735600, + 6450684352, + 6450685600, + 6450475056, 6444409984, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -219423,33 +219433,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -219477,34 +219487,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -219547,7 +219557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247552, + "complete_object_locator": 6468251648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219556,15 +219566,15 @@ }, { "type_name": "CRagdollPoseControlSystem", - "vtable_address": 6465708824, + "vtable_address": 6465713104, "methods": [ 6443748576, 6443748592, 6443748608, 6443748624, 6443748640, - 6448751584, - 6448751712, + 6448753152, + 6448753280, 6443748688, 6443748704, 6443748720, @@ -219614,11 +219624,11 @@ 6443749424, 6443749440, 6443749456, - 6448751552, + 6448753120, 6443749488, - 6448751536, - 6448752224, - 6448751520 + 6448753104, + 6448753792, + 6448753088 ], "bases": [ { @@ -219652,7 +219662,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490288, + "complete_object_locator": 6468494384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219661,15 +219671,15 @@ }, { "type_name": "CReadOnlyBlackboardView", - "vtable_address": 6465254672, + "vtable_address": 6465258752, "methods": [ 6447677760, - 6462845872, - 6462846000, - 6462846016, - 6462845568, - 6462848240, - 6462847488, + 6462848064, + 6462848192, + 6462848208, + 6462847760, + 6462850432, + 6462849680, 6447692704 ], "bases": [ @@ -219690,7 +219700,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468421192, + "complete_object_locator": 6468425288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219699,13 +219709,13 @@ }, { "type_name": "CRecipientFilter", - "vtable_address": 6465855720, + "vtable_address": 6465859912, "methods": [ - 6449964752, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6449966320, + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -219725,7 +219735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532904, + "complete_object_locator": 6468537000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219734,13 +219744,13 @@ }, { "type_name": "CRecordingList", - "vtable_address": 6465895528, + "vtable_address": 6465899720, "methods": [ - 6450322944, - 6450322496, - 6450322784, - 6450322896, - 6450322912 + 6450324512, + 6450324064, + 6450324352, + 6450324464, + 6450324480 ], "bases": [ { @@ -219760,7 +219770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468553776, + "complete_object_locator": 6468557872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219769,14 +219779,14 @@ }, { "type_name": "CRefCountedMemPoolObject", - "vtable_address": 6464672800, + "vtable_address": 6464676880, "methods": [ 6444571120 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468257296, + "complete_object_locator": 6468261392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219785,18 +219795,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466212864, + "vtable_address": 6466216976, "methods": [ - 6451823904, - 6451808944, - 6451834304, - 6451819744, - 6451872592, - 6451872896, - 6451859504, - 6451878256, - 6451877440, - 6451861488 + 6451825488, + 6451810528, + 6451835888, + 6451821328, + 6451874176, + 6451874480, + 6451861088, + 6451879840, + 6451879024, + 6451863072 ], "bases": [ { @@ -219830,7 +219840,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468639488, + "complete_object_locator": 6468643584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219839,18 +219849,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466212776, + "vtable_address": 6466216888, "methods": [ - 6451824496, - 6451809648, - 6451835184, - 6451819920, - 6451872608, - 6451872912, - 6451859680, - 6451878272, - 6451877504, - 6451862064 + 6451826080, + 6451811232, + 6451836768, + 6451821504, + 6451874192, + 6451874496, + 6451861264, + 6451879856, + 6451879088, + 6451863648 ], "bases": [ { @@ -219884,7 +219894,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468639352, + "complete_object_locator": 6468643448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219893,18 +219903,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466213128, + "vtable_address": 6466217240, "methods": [ - 6451825088, - 6451810352, - 6451836064, - 6451820096, - 6451872624, - 6451872928, - 6451859856, - 6451878288, - 6451877568, - 6451862640 + 6451826672, + 6451811936, + 6451837648, + 6451821680, + 6451874208, + 6451874512, + 6451861440, + 6451879872, + 6451879152, + 6451864224 ], "bases": [ { @@ -219938,7 +219948,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468639896, + "complete_object_locator": 6468643992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -219947,18 +219957,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466213216, + "vtable_address": 6466217328, "methods": [ - 6451825664, - 6451811056, - 6451836944, - 6451820272, - 6451872640, - 6451872944, - 6451860032, - 6451878304, - 6451877632, - 6451863216 + 6451827248, + 6451812640, + 6451838528, + 6451821856, + 6451874224, + 6451874528, + 6451861616, + 6451879888, + 6451879216, + 6451864800 ], "bases": [ { @@ -219992,7 +220002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640032, + "complete_object_locator": 6468644128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220001,18 +220011,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466213480, + "vtable_address": 6466217592, "methods": [ - 6451826240, - 6451811760, - 6451837824, - 6451820448, - 6451872656, - 6451872960, - 6451860208, - 6451878320, - 6451877696, - 6451863792 + 6451827824, + 6451813344, + 6451839408, + 6451822032, + 6451874240, + 6451874544, + 6451861792, + 6451879904, + 6451879280, + 6451865376 ], "bases": [ { @@ -220046,7 +220056,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640440, + "complete_object_locator": 6468644536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220055,18 +220065,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466213040, + "vtable_address": 6466217152, "methods": [ - 6451826816, - 6451812464, - 6451838704, - 6451820624, - 6451872672, - 6451872976, - 6451860384, - 6451878336, - 6451877760, - 6451864368 + 6451828400, + 6451814048, + 6451840288, + 6451822208, + 6451874256, + 6451874560, + 6451861968, + 6451879920, + 6451879344, + 6451865952 ], "bases": [ { @@ -220100,7 +220110,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468639760, + "complete_object_locator": 6468643856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220109,18 +220119,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466213392, + "vtable_address": 6466217504, "methods": [ - 6451827392, - 6451813168, - 6451839584, - 6451820800, - 6451872688, - 6451872992, - 6451860560, - 6451878352, - 6451877824, - 6451864944 + 6451828976, + 6451814752, + 6451841168, + 6451822384, + 6451874272, + 6451874576, + 6451862144, + 6451879936, + 6451879408, + 6451866528 ], "bases": [ { @@ -220154,7 +220164,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640304, + "complete_object_locator": 6468644400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220163,18 +220173,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466213304, + "vtable_address": 6466217416, "methods": [ - 6451827968, - 6451813872, - 6451840464, - 6451820976, - 6451872704, - 6451873008, - 6451860736, - 6451878368, - 6451877888, - 6451865520 + 6451829552, + 6451815456, + 6451842048, + 6451822560, + 6451874288, + 6451874592, + 6451862320, + 6451879952, + 6451879472, + 6451867104 ], "bases": [ { @@ -220208,7 +220218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640168, + "complete_object_locator": 6468644264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220217,18 +220227,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6466212952, + "vtable_address": 6466217064, "methods": [ - 6451828544, - 6451814576, - 6451841344, - 6451821152, - 6451872720, - 6451873024, - 6451860912, - 6451878384, - 6451877952, - 6451866096 + 6451830128, + 6451816160, + 6451842928, + 6451822736, + 6451874304, + 6451874608, + 6451862496, + 6451879968, + 6451879536, + 6451867680 ], "bases": [ { @@ -220262,7 +220272,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468639624, + "complete_object_locator": 6468643720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220271,7 +220281,7 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6464466816, + "vtable_address": 6464470912, "methods": [ 6443959392, 6443953584, @@ -220316,7 +220326,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468232544, + "complete_object_locator": 6468236640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220325,18 +220335,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6465957456, + "vtable_address": 6465961648, "methods": [ - 6450434208, - 6450422576, - 6450450832, - 6450428912, - 6450485472, - 6450486144, - 6450476320, - 6450497728, - 6450496816, - 6450477376 + 6450435776, + 6450424144, + 6450452400, + 6450430480, + 6450487040, + 6450487712, + 6450477888, + 6450499296, + 6450498384, + 6450478944 ], "bases": [ { @@ -220370,7 +220380,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468565344, + "complete_object_locator": 6468569440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220379,18 +220389,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6465957192, + "vtable_address": 6465961384, "methods": [ - 6450434784, - 6450423280, - 6450451712, - 6450429088, - 6450485488, - 6450486160, - 6450476496, - 6450497744, - 6450496880, - 6450477952 + 6450436352, + 6450424848, + 6450453280, + 6450430656, + 6450487056, + 6450487728, + 6450478064, + 6450499312, + 6450498448, + 6450479520 ], "bases": [ { @@ -220424,7 +220434,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564936, + "complete_object_locator": 6468569032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220433,18 +220443,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6465957544, + "vtable_address": 6465961736, "methods": [ - 6450435360, - 6450423984, - 6450452592, - 6450429264, - 6450485504, - 6450486176, - 6450476672, - 6450497760, - 6450496944, - 6450478528 + 6450436928, + 6450425552, + 6450454160, + 6450430832, + 6450487072, + 6450487744, + 6450478240, + 6450499328, + 6450498512, + 6450480096 ], "bases": [ { @@ -220478,7 +220488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468565480, + "complete_object_locator": 6468569576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220487,18 +220497,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6465957280, + "vtable_address": 6465961472, "methods": [ - 6450435936, - 6450424688, - 6450453472, - 6450429440, - 6450485520, - 6450486192, - 6450476848, - 6450497776, - 6450497008, - 6450479104 + 6450437504, + 6450426256, + 6450455040, + 6450431008, + 6450487088, + 6450487760, + 6450478416, + 6450499344, + 6450498576, + 6450480672 ], "bases": [ { @@ -220532,7 +220542,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468565072, + "complete_object_locator": 6468569168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220541,18 +220551,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6465957368, + "vtable_address": 6465961560, "methods": [ - 6450436512, - 6450425392, - 6450454352, - 6450429616, - 6450485536, - 6450486208, - 6450477024, - 6450497792, - 6450497072, - 6450479680 + 6450438080, + 6450426960, + 6450455920, + 6450431184, + 6450487104, + 6450487776, + 6450478592, + 6450499360, + 6450498640, + 6450481248 ], "bases": [ { @@ -220586,7 +220596,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468565208, + "complete_object_locator": 6468569304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220595,18 +220605,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6465957104, + "vtable_address": 6465961296, "methods": [ - 6450437088, - 6450426096, - 6450455232, - 6450429792, - 6450485552, - 6450486224, - 6450477200, - 6450497808, - 6450497136, - 6450480256 + 6450438656, + 6450427664, + 6450456800, + 6450431360, + 6450487120, + 6450487792, + 6450478768, + 6450499376, + 6450498704, + 6450481824 ], "bases": [ { @@ -220640,7 +220650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564800, + "complete_object_locator": 6468568896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220649,18 +220659,18 @@ }, { "type_name": "CReferencedFieldPredictionCopyDataOps", - "vtable_address": 6465739264, - "methods": [ - 6448851264, - 6448843536, - 6448863808, - 6448845664, - 6448905584, - 6448906352, - 6448898464, - 6448915392, - 6448914944, - 6448898624 + "vtable_address": 6465743456, + "methods": [ + 6448852832, + 6448845104, + 6448865376, + 6448847232, + 6448907152, + 6448907920, + 6448900032, + 6448916960, + 6448916512, + 6448900192 ], "bases": [ { @@ -220694,7 +220704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468500120, + "complete_object_locator": 6468504216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220703,13 +220713,13 @@ }, { "type_name": "CReliableBroadcastRecipientFilter", - "vtable_address": 6464482448, + "vtable_address": 6464486544, "methods": [ 6444064928, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -220757,7 +220767,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468235592, + "complete_object_locator": 6468239688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220766,7 +220776,7 @@ }, { "type_name": "CReloadMatchFilter", - "vtable_address": 6464679520, + "vtable_address": 6464683600, "methods": [ 6444950928 ], @@ -220788,7 +220798,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468261928, + "complete_object_locator": 6468266024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220797,7 +220807,7 @@ }, { "type_name": "CRender", - "vtable_address": 6464715784, + "vtable_address": 6464719864, "methods": [ 6445113136, 6445323472, @@ -220808,7 +220818,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468280936, + "complete_object_locator": 6468285032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220817,7 +220827,7 @@ }, { "type_name": "CRenderComponent", - "vtable_address": 6464457224, + "vtable_address": 6464461320, "methods": [ 6443986480, 6443969184, @@ -220841,7 +220851,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468230072, + "complete_object_locator": 6468234168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220850,7 +220860,7 @@ }, { "type_name": "CRenderComponentToolsResourceListener", - "vtable_address": 6464451560, + "vtable_address": 6464455656, "methods": [ 6443926160, 6443924944 @@ -220873,7 +220883,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468228200, + "complete_object_locator": 6468232296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -220882,7 +220892,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 6464713360, + "vtable_address": 6464717440, "methods": [ 6443748576, 6443748592, @@ -220998,7 +221008,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468278800, + "complete_object_locator": 6468282896, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -221007,7 +221017,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 6464713904, + "vtable_address": 6464717984, "methods": [ 6445090624 ], @@ -221057,7 +221067,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468279184, + "complete_object_locator": 6468283280, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -221066,7 +221076,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 6464713920, + "vtable_address": 6464718000, "methods": [ 6445087616, 6445112144, @@ -221118,7 +221128,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468279224, + "complete_object_locator": 6468283320, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -221127,20 +221137,20 @@ }, { "type_name": "CRenderingPipelineCS2Shadows", - "vtable_address": 6466901024, + "vtable_address": 6466905104, "methods": [ - 6456745664, - 6456676432, - 6456680800, - 6456680784, - 6456680768, - 6456680832, - 6456680848, - 6456680864, - 6456680880, - 6456680896, - 6456680912, - 6456676448 + 6456747856, + 6456678240, + 6456682608, + 6456682592, + 6456682576, + 6456682640, + 6456682656, + 6456682672, + 6456682688, + 6456682704, + 6456682720, + 6456678256 ], "bases": [ { @@ -221174,7 +221184,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468815056, + "complete_object_locator": 6468819152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221183,20 +221193,20 @@ }, { "type_name": "CRenderingPipelineCsgo", - "vtable_address": 6466884232, + "vtable_address": 6466888344, "methods": [ - 6456747072, - 6456714144, - 6456942816, - 6456680784, - 6456680768, - 6457041376, - 6456680848, - 6456946032, - 6456945968, - 6456941920, - 6456680912, - 6456676448 + 6456749264, + 6456715952, + 6456945008, + 6456682592, + 6456682576, + 6457043568, + 6456682656, + 6456948224, + 6456948160, + 6456944112, + 6456682720, + 6456678256 ], "bases": [ { @@ -221230,7 +221240,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813168, + "complete_object_locator": 6468817264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221239,20 +221249,20 @@ }, { "type_name": "CRenderingPipelineCsgo3DSkybox", - "vtable_address": 6466877840, + "vtable_address": 6466881952, "methods": [ - 6456668768, - 6456676432, - 6456680800, - 6456680784, - 6456680768, - 6456680832, - 6456680848, - 6456680864, - 6456680880, - 6456680896, - 6456680912, - 6456676448 + 6456670576, + 6456678240, + 6456682608, + 6456682592, + 6456682576, + 6456682640, + 6456682656, + 6456682672, + 6456682688, + 6456682704, + 6456682720, + 6456678256 ], "bases": [ { @@ -221286,7 +221296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468808944, + "complete_object_locator": 6468813040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221295,20 +221305,20 @@ }, { "type_name": "CRenderingPipelineCsgoPostHud", - "vtable_address": 6466868016, + "vtable_address": 6466872128, "methods": [ - 6456667808, - 6456676432, - 6456680800, - 6456680784, - 6456680768, - 6456680832, - 6456680848, - 6456680864, - 6456680880, - 6456680896, - 6456680912, - 6456676448 + 6456669616, + 6456678240, + 6456682608, + 6456682592, + 6456682576, + 6456682640, + 6456682656, + 6456682672, + 6456682688, + 6456682704, + 6456682720, + 6456678256 ], "bases": [ { @@ -221342,7 +221352,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468809960, + "complete_object_locator": 6468814056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221351,10 +221361,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 6466878512, + "vtable_address": 6466882624, "methods": [ - 6456680624, - 6456680656 + 6456682432, + 6456682464 ], "bases": [ { @@ -221388,7 +221398,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468809488, + "complete_object_locator": 6468813584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221397,10 +221407,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 6466870208, + "vtable_address": 6466874320, "methods": [ - 6456668192, - 6456668336 + 6456670000, + 6456670144 ], "bases": [ { @@ -221434,7 +221444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468810232, + "complete_object_locator": 6468814328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221443,10 +221453,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 6466877944, + "vtable_address": 6466882056, "methods": [ - 6456675760, - 6456675856 + 6456677568, + 6456677664 ], "bases": [ { @@ -221480,7 +221490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468809080, + "complete_object_locator": 6468813176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221489,10 +221499,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 6466878040, + "vtable_address": 6466882152, "methods": [ - 6456676336, - 6456676384 + 6456678144, + 6456678192 ], "bases": [ { @@ -221526,7 +221536,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468809216, + "complete_object_locator": 6468813312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221535,10 +221545,10 @@ }, { "type_name": "CRenderingPipelineFactory", - "vtable_address": 6466868120, + "vtable_address": 6466872232, "methods": [ - 6456668016, - 6456668048 + 6456669824, + 6456669856 ], "bases": [ { @@ -221572,7 +221582,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468810096, + "complete_object_locator": 6468814192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221581,7 +221591,7 @@ }, { "type_name": "CResourceManifestPrerequisite", - "vtable_address": 6464671432, + "vtable_address": 6464675512, "methods": [ 6444572080, 6444580288, @@ -221608,7 +221618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468256184, + "complete_object_locator": 6468260280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221617,7 +221627,7 @@ }, { "type_name": "CResourcePrecacherGameSystem", - "vtable_address": 6464581136, + "vtable_address": 6464585232, "methods": [ 6443748576, 6443748592, @@ -221713,7 +221723,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468246624, + "complete_object_locator": 6468250720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221722,9 +221732,9 @@ }, { "type_name": "CRestore", - "vtable_address": 6465810096, + "vtable_address": 6465814288, "methods": [ - 6449498480 + 6449500048 ], "bases": [ { @@ -221786,7 +221796,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468519296, + "complete_object_locator": 6468523392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -221795,86 +221805,86 @@ }, { "type_name": "CRestore", - "vtable_address": 6465810112, + "vtable_address": 6465814304, "methods": [ - 6449496136, - 6449752080, - 6449547840, - 6449666032, - 6449667616, - 6449546336, - 6449750608, - 6449758768, - 6449547472, - 6449668384, - 6449678848, - 6449678608, - 6449678384, - 6449679328, - 6449679584, - 6449666320, - 6449672448, - 6449668864, - 6449681904, - 6449681328, - 6449681520, - 6449668672, - 6449681712, - 6449666144, - 6449668192, - 6449668000, - 6449666880, - 6449666512, - 6449683040, - 6449682656, - 6449682848, - 6449672256, - 6449669056, - 6449672640, - 6449680176, - 6449679728, - 6449671792, - 6449667408, - 6449667024, - 6449682096, - 6449682288, + 6449497704, + 6449753648, + 6449549408, + 6449667600, 6449669184, - 6449669376, - 6449680880, - 6449681280, - 6449669680, - 6449669744, + 6449547904, + 6449752176, + 6449760336, + 6449549040, + 6449669952, + 6449680416, + 6449680176, + 6449679952, + 6449680896, + 6449681152, + 6449667888, + 6449674016, + 6449670432, + 6449683472, + 6449682896, + 6449683088, + 6449670240, + 6449683280, + 6449667712, 6449669760, - 6449670848, - 6449669152, - 6449670368, - 6449672048, - 6449728544, - 6449585488, - 6449594400, - 6449594368, - 6449594416, - 6449577856, - 6449734704, - 6449734848, - 6449626496, - 6449581904, - 6449581888, - 6449727552, - 6449602464, - 6449540448, - 6449594352, - 6449562816, - 6449546224, - 6449565424, - 6449580608, - 6449581968, - 6449750128, - 6449750512, - 6449758640, - 6449547440, - 6449547408, - 6449589088 + 6449669568, + 6449668448, + 6449668080, + 6449684608, + 6449684224, + 6449684416, + 6449673824, + 6449670624, + 6449674208, + 6449681744, + 6449681296, + 6449673360, + 6449668976, + 6449668592, + 6449683664, + 6449683856, + 6449670752, + 6449670944, + 6449682448, + 6449682848, + 6449671248, + 6449671312, + 6449671328, + 6449672416, + 6449670720, + 6449671936, + 6449673616, + 6449730112, + 6449587056, + 6449595968, + 6449595936, + 6449595984, + 6449579424, + 6449736272, + 6449736416, + 6449628064, + 6449583472, + 6449583456, + 6449729120, + 6449604032, + 6449542016, + 6449595920, + 6449564384, + 6449547792, + 6449566992, + 6449582176, + 6449583536, + 6449751696, + 6449752080, + 6449760208, + 6449549008, + 6449548976, + 6449590656 ], "bases": [ { @@ -221936,7 +221946,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468519488, + "complete_object_locator": 6468523584, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -221945,10 +221955,10 @@ }, { "type_name": "CRopePhysics<10>", - "vtable_address": 6465824800, + "vtable_address": 6465828992, "methods": [ - 6450189504, - 6450121456 + 6450191072, + 6450123024 ], "bases": [ { @@ -221982,7 +221992,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468525568, + "complete_object_locator": 6468529664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -221991,34 +222001,34 @@ }, { "type_name": "CSConfirmWorkshopDownloadPopup", - "vtable_address": 6466330784, + "vtable_address": 6466334944, "methods": [ 6443876544, - 6461535472, - 6452384288, - 6452387584, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6452385904, + 6452389200, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -222032,12 +222042,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -222052,29 +222062,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6452384272, - 6452351392, + 6461548896, + 6452385888, + 6452353008, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443914768, @@ -222129,7 +222139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468675496, + "complete_object_locator": 6468679592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -222138,27 +222148,27 @@ }, { "type_name": "CSGOInputHistoryEntryPB", - "vtable_address": 6465394768, + "vtable_address": 6465398928, "methods": [ - 6447965648, - 6457189536, - 6447960352, - 6447961520, - 6447961872, - 6457189584, - 6457186560, - 6447961888, - 6447965536, - 6447962864, + 6447967216, + 6457191728, + 6447961920, + 6447963088, + 6447963440, + 6457191776, + 6457188752, + 6447963456, + 6447967104, + 6447964432, 6443742160, - 6447964608, - 6457190896, - 6457192720, - 6447965552, - 6447965584, - 6447965568, - 6457187520, - 6447966000 + 6447966176, + 6457193088, + 6457194912, + 6447967120, + 6447967152, + 6447967136, + 6457189712, + 6447967568 ], "bases": [ { @@ -222192,7 +222202,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441664, + "complete_object_locator": 6468445760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -222201,27 +222211,27 @@ }, { "type_name": "CSGOInterpolationInfoPB", - "vtable_address": 6465394448, - "methods": [ - 6447959376, - 6457189536, - 6447958128, - 6447958224, - 6447958272, - 6457189584, - 6457186560, - 6447958288, - 6447959264, - 6447958400, + "vtable_address": 6465398608, + "methods": [ + 6447960944, + 6457191728, + 6447959696, + 6447959792, + 6447959840, + 6457191776, + 6457188752, + 6447959856, + 6447960832, + 6447959968, 6443742160, - 6447958928, - 6457190896, - 6457192720, - 6447959280, - 6447959312, - 6447959296, - 6457187520, - 6447959536 + 6447960496, + 6457193088, + 6457194912, + 6447960848, + 6447960880, + 6447960864, + 6457189712, + 6447961104 ], "bases": [ { @@ -222255,7 +222265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441800, + "complete_object_locator": 6468445896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -222264,27 +222274,27 @@ }, { "type_name": "CSGOInterpolationInfoPB_CL", - "vtable_address": 6465394608, - "methods": [ - 6447960208, - 6457189536, - 6447959520, - 6447959584, - 6447959616, - 6457189584, - 6457186560, - 6447959632, - 6447960096, - 6447959664, + "vtable_address": 6465398768, + "methods": [ + 6447961776, + 6457191728, + 6447961088, + 6447961152, + 6447961184, + 6457191776, + 6457188752, + 6447961200, + 6447961664, + 6447961232, 6443742160, - 6447959984, - 6457190896, - 6457192720, - 6447960112, - 6447960144, - 6447960128, - 6457187520, - 6447960368 + 6447961552, + 6457193088, + 6457194912, + 6447961680, + 6447961712, + 6447961696, + 6457189712, + 6447961936 ], "bases": [ { @@ -222318,7 +222328,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441936, + "complete_object_locator": 6468446032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -222327,25 +222337,25 @@ }, { "type_name": "CSGOUserCmdPB", - "vtable_address": 6465394928, + "vtable_address": 6465399088, "methods": [ - 6447968640, - 6457189536, - 6447965984, - 6447966304, - 6447966464, - 6457189584, - 6457186560, - 6447966480, - 6447968528, - 6447966800, + 6447970208, + 6457191728, + 6447967552, + 6447967872, + 6447968032, + 6457191776, + 6457188752, + 6447968048, + 6447970096, + 6447968368, 6443742160, - 6447967984, - 6457190896, - 6457192720, - 6447968544, - 6447968576, - 6447968560 + 6447969552, + 6457193088, + 6457194912, + 6447970112, + 6447970144, + 6447970128 ], "bases": [ { @@ -222379,7 +222389,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468442072, + "complete_object_locator": 6468446168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -222388,35 +222398,35 @@ }, { "type_name": "CSGO_AudioMeter", - "vtable_address": 6466558328, + "vtable_address": 6466562456, "methods": [ 6443876544, - 6461535472, - 6453897920, - 6453901440, - 6453909232, - 6461546688, - 6453915280, + 6461537664, + 6453899680, + 6453903200, + 6453910992, + 6461548880, + 6453917040, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -222429,12 +222439,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -222444,37 +222454,37 @@ 6443847696, 6443847680, 6443848160, - 6453906768, - 6453909152, + 6453908528, + 6453910912, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897664, - 6453886352, + 6461548896, + 6453899424, + 6453888112, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453910048 + 6453911808 ], "bases": [ { @@ -222522,7 +222532,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468724552, + "complete_object_locator": 6468728648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -222531,10 +222541,10 @@ }, { "type_name": "CSGO_AudioMeter", - "vtable_address": 6466559016, + "vtable_address": 6466563144, "methods": [ - 6453886688, - 6453900304 + 6453888448, + 6453902064 ], "bases": [ { @@ -222582,7 +222592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468724736, + "complete_object_locator": 6468728832, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -222591,35 +222601,35 @@ }, { "type_name": "CSGO_BaseSlider", - "vtable_address": 6466565296, + "vtable_address": 6466569424, "methods": [ 6443876544, - 6461535472, - 6453897936, - 6453901472, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899696, + 6453903232, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6453886848, - 6461503872, - 6453888416, + 6461537648, + 6461547232, + 6453888608, + 6461506064, + 6453890176, 6443844992, 6443848064, 6443844976, @@ -222632,12 +222642,12 @@ 6443913856, 6443821360, 6443848384, - 6453914720, - 6461505456, - 6461505088, - 6461526000, + 6453916480, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -222652,38 +222662,38 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897680, - 6453886464, + 6461548896, + 6453899440, + 6453888224, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453908032, - 6453896144, - 6453896864, - 6453916320, - 6463705588, - 6463705588, - 6453897184 + 6453909792, + 6453897904, + 6453898624, + 6453918080, + 6463707780, + 6463707780, + 6453898944 ], "bases": [ { @@ -222717,7 +222727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726288, + "complete_object_locator": 6468730384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -222726,35 +222736,35 @@ }, { "type_name": "CSGO_ContextMenu_CustomLayout", - "vtable_address": 6466442432, + "vtable_address": 6466446592, "methods": [ 6443876544, - 6461535472, - 6453006624, - 6453013392, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008240, + 6453015008, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461759392, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461761584, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461758336, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461760528, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -222767,12 +222777,12 @@ 6443913856, 6443821360, 6443848384, - 6456655296, - 6461505456, - 6461505088, - 6461526000, + 6456657072, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -222787,33 +222797,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006320, - 6452958016, + 6461548896, + 6453007936, + 6452959632, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461757104, - 6453005456 + 6461759296, + 6453007072 ], "bases": [ { @@ -222875,7 +222885,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468698416, + "complete_object_locator": 6468702512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -222884,35 +222894,35 @@ }, { "type_name": "CSGO_HudCameraGraph", - "vtable_address": 6466500432, + "vtable_address": 6466504560, "methods": [ 6443876544, - 6461535472, - 6453520560, - 6453526048, - 6453550464, - 6461546688, - 6461559344, + 6461537664, + 6453522320, + 6453527808, + 6453552224, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -222925,12 +222935,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -222945,29 +222955,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453520256, - 6453489248, + 6461548896, + 6453522016, + 6453491008, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -223045,7 +223055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711504, + "complete_object_locator": 6468715600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -223054,20 +223064,20 @@ }, { "type_name": "CSGO_HudCameraGraph", - "vtable_address": 6466501112, + "vtable_address": 6466505240, "methods": [ - 6453486596, - 6451193744, - 6451190848, - 6451190864, - 6451219152, - 6451190880, - 6451190896, - 6453503856, - 6453561648, - 6451205360, - 6453565312, - 6451228144 + 6453488356, + 6451195312, + 6451192416, + 6451192432, + 6451220720, + 6451192448, + 6451192464, + 6453505616, + 6453563408, + 6451206928, + 6453567072, + 6451229712 ], "bases": [ { @@ -223143,7 +223153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468711744, + "complete_object_locator": 6468715840, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -223152,35 +223162,35 @@ }, { "type_name": "CSGO_SettingsSlider", - "vtable_address": 6466566032, + "vtable_address": 6466570160, "methods": [ 6443876544, - 6461535472, - 6453897952, - 6453901504, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453899712, + 6453903264, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6453886848, - 6461503872, - 6453889472, + 6461537648, + 6461547232, + 6453888608, + 6461506064, + 6453891232, 6443844992, 6443848064, 6443844976, @@ -223193,12 +223203,12 @@ 6443913856, 6443821360, 6443848384, - 6453914976, - 6461505456, - 6461505088, - 6461526000, + 6453916736, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -223213,38 +223223,38 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453897696, - 6453886560, + 6461548896, + 6453899456, + 6453888320, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453908032, - 6453896144, - 6453896864, - 6453916320, - 6453899232, - 6453914320, - 6453897200 + 6453909792, + 6453897904, + 6453898624, + 6453918080, + 6453900992, + 6453916080, + 6453898960 ], "bases": [ { @@ -223306,7 +223316,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726424, + "complete_object_locator": 6468730520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -223315,9 +223325,9 @@ }, { "type_name": "CSGO_SettingsSlider", - "vtable_address": 6466566768, + "vtable_address": 6466570896, "methods": [ - 6453897168 + 6453898928 ], "bases": [ { @@ -223379,7 +223389,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468726616, + "complete_object_locator": 6468730712, "offset": 128, "constructor_displacement": 0, "class_attributes": 1 @@ -223388,14 +223398,14 @@ }, { "type_name": "CSHA1", - "vtable_address": 6464402344, + "vtable_address": 6464406440, "methods": [ 6443758192 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468214160, + "complete_object_locator": 6468218256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223404,13 +223414,13 @@ }, { "type_name": "CSMatchStats_t", - "vtable_address": 6465353200, + "vtable_address": 6465357264, "methods": [ - 6447915904, - 6447911024, - 6447911296, - 6447911184, - 6447910992 + 6447917472, + 6447912592, + 6447912864, + 6447912752, + 6447912560 ], "bases": [ { @@ -223430,7 +223440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468433040, + "complete_object_locator": 6468437136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223439,25 +223449,25 @@ }, { "type_name": "CSOAccountItemPersonalStore", - "vtable_address": 6464929080, + "vtable_address": 6464933176, "methods": [ - 6446063808, - 6457189536, - 6446043744, - 6446044816, - 6446044880, - 6457189584, - 6457186560, - 6446044896, - 6446048240, - 6446046048, - 6443742160, - 6446047808, - 6457190896, - 6457192720, - 6446052080, - 6446052480, - 6446052352 + 6446064192, + 6457191728, + 6446044128, + 6446045184, + 6446045264, + 6457191776, + 6457188752, + 6446045280, + 6446047168, + 6446045424, + 6443742160, + 6446046128, + 6457193088, + 6457194912, + 6446050880, + 6446052640, + 6446052592 ], "bases": [ { @@ -223491,7 +223501,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468345120, + "complete_object_locator": 6468349352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223500,25 +223510,25 @@ }, { "type_name": "CSOAccountKeychainRemoveToolCharges", - "vtable_address": 6464949024, + "vtable_address": 6464953120, "methods": [ - 6446160240, - 6457189536, - 6446152416, - 6446153216, - 6446153520, - 6457189584, - 6457186560, - 6446153616, - 6446155664, - 6446154368, + 6446160624, + 6457191728, + 6446152800, + 6446153360, + 6446153408, + 6457191776, + 6457188752, + 6446153488, + 6446155424, + 6446154144, 6443742160, - 6446155472, - 6457190896, - 6457192720, - 6446156416, - 6446157360, - 6446156880 + 6446155248, + 6457193088, + 6457194912, + 6446156384, + 6446157712, + 6446157248 ], "bases": [ { @@ -223552,7 +223562,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468345256, + "complete_object_locator": 6468349488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223561,27 +223571,29 @@ }, { "type_name": "CSOAccountRecurringMission", - "vtable_address": 6464977840, - "methods": [ - 6446304048, - 6457189536, - 6446292240, - 6446292512, - 6446292560, - 6457189584, - 6457186560, - 6446292800, - 6446294128, - 6446292960, - 6443742160, - 6446293664, - 6457190896, - 6457192720, - 6446294144, - 6446294192, - 6446294176, - 6457187520, - 6446300944 + "vtable_address": 6464981936, + "methods": [ + 6446304432, + 6457191728, + 6446292624, + 6446292896, + 6446292944, + 6457191776, + 6457188752, + 6446293184, + 6446294512, + 6446293344, + 6443742160, + 6446294048, + 6457193088, + 6457194912, + 6446294528, + 6446294576, + 6446294560, + 6457189712, + 6446301328, + 6457189712, + 6446301616 ], "bases": [ { @@ -223615,7 +223627,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468345392, + "complete_object_locator": 6468349624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223624,25 +223636,25 @@ }, { "type_name": "CSOAccountRecurringSubscription", - "vtable_address": 6464971408, + "vtable_address": 6464975504, "methods": [ - 6446230608, - 6457189536, - 6446217264, - 6446219632, - 6446219664, - 6457189584, - 6457186560, - 6446219680, - 6446220592, - 6446219808, + 6446230992, + 6457191728, + 6446217648, + 6446219856, + 6446219888, + 6457191776, + 6457188752, + 6446219904, + 6446220976, + 6446220176, 6443742160, - 6446220320, - 6457190896, - 6457192720, - 6446221872, - 6446225616, - 6446225600 + 6446220688, + 6457193088, + 6457194912, + 6446221248, + 6446224576, + 6446224464 ], "bases": [ { @@ -223676,7 +223688,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468345528, + "complete_object_locator": 6468349760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223685,25 +223697,25 @@ }, { "type_name": "CSOAccountSeasonalOperation", - "vtable_address": 6464965536, - "methods": [ - 6446213104, - 6457189536, - 6446188912, - 6446189600, - 6446189648, - 6457189584, - 6457186560, - 6446189664, - 6446191776, - 6446189920, - 6443742160, - 6446190960, - 6457190896, - 6457192720, - 6446192432, - 6446194752, - 6446193792 + "vtable_address": 6464969632, + "methods": [ + 6446213488, + 6457191728, + 6446188672, + 6446189968, + 6446190016, + 6457191776, + 6457188752, + 6446190032, + 6446192144, + 6446190304, + 6443742160, + 6446191328, + 6457193088, + 6457194912, + 6446192816, + 6446195136, + 6446194176 ], "bases": [ { @@ -223737,7 +223749,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468345664, + "complete_object_locator": 6468349896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223746,25 +223758,25 @@ }, { "type_name": "CSOAccountXpShop", - "vtable_address": 6464931144, - "methods": [ - 6446082464, - 6457189536, - 6446069552, - 6446070352, - 6446070432, - 6457189584, - 6457186560, - 6446070528, - 6446071808, - 6446070704, + "vtable_address": 6464935240, + "methods": [ + 6446082832, + 6457191728, + 6446069408, + 6446070496, + 6446070720, + 6457191776, + 6457188752, + 6446070848, + 6446072192, + 6446071072, 6443742160, - 6446071392, - 6457190896, - 6457192720, - 6446073216, - 6446075504, - 6446075472 + 6446071776, + 6457193088, + 6457194912, + 6446073520, + 6446075888, + 6446075856 ], "bases": [ { @@ -223798,7 +223810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468345800, + "complete_object_locator": 6468350032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223807,25 +223819,25 @@ }, { "type_name": "CSOAccountXpShopBids", - "vtable_address": 6464933496, + "vtable_address": 6464937592, "methods": [ - 6446103360, - 6457189536, - 6446089408, - 6446090960, - 6446090992, - 6457189584, - 6457186560, - 6446091008, - 6446092544, - 6446091184, - 6443742160, - 6446092064, - 6457190896, - 6457192720, - 6446092864, - 6446095200, - 6446095120 + 6446103440, + 6457191728, + 6446089792, + 6446091344, + 6446091376, + 6457191776, + 6457188752, + 6446091392, + 6446092768, + 6446091568, + 6443742160, + 6446092288, + 6457193088, + 6457194912, + 6446093248, + 6446095584, + 6446095504 ], "bases": [ { @@ -223859,7 +223871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468345936, + "complete_object_locator": 6468350168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223868,25 +223880,25 @@ }, { "type_name": "CSOEconClaimCode", - "vtable_address": 6464947408, - "methods": [ - 6446147552, - 6457189536, - 6446136384, - 6446137328, - 6446137408, - 6457189584, - 6457186560, - 6446137440, - 6446139952, - 6446138336, - 6443742160, - 6446139536, - 6457190896, - 6457192720, - 6446142864, - 6446143296, - 6446143264 + "vtable_address": 6464951504, + "methods": [ + 6446148112, + 6457191728, + 6446137264, + 6446138432, + 6446138672, + 6457191776, + 6457188752, + 6446139040, + 6446142352, + 6446140528, + 6443742160, + 6446141920, + 6457193088, + 6457194912, + 6446143456, + 6446143840, + 6446143744 ], "bases": [ { @@ -223920,7 +223932,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468324808, + "complete_object_locator": 6468329040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223929,25 +223941,27 @@ }, { "type_name": "CSOEconCoupon", - "vtable_address": 6464925720, - "methods": [ - 6446035264, - 6457189536, - 6446026496, - 6446027008, - 6446027056, - 6457189584, - 6457186560, - 6446027072, - 6446028144, - 6446027248, - 6443742160, - 6446027824, - 6457190896, - 6457192720, - 6446028448, - 6446032368, - 6446031984 + "vtable_address": 6464929816, + "methods": [ + 6446035104, + 6457191728, + 6446026880, + 6446027232, + 6446027280, + 6457191776, + 6457188752, + 6446027456, + 6446028496, + 6446027632, + 6443742160, + 6446028176, + 6457193088, + 6457194912, + 6446028752, + 6446031040, + 6446031008, + 6457391152, + 6457391232 ], "bases": [ { @@ -223981,7 +223995,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468346072, + "complete_object_locator": 6468350304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -223990,25 +224004,25 @@ }, { "type_name": "CSOEconEquipSlot", - "vtable_address": 6464976336, + "vtable_address": 6464980432, "methods": [ - 6446271680, - 6457189536, - 6446259984, - 6446260352, - 6446260400, - 6457189584, - 6457186560, - 6446260416, - 6446261984, + 6446273936, + 6457191728, 6446260608, - 6443742160, - 6446261424, - 6457190896, - 6457192720, - 6446262160, + 6446260736, + 6446260784, + 6457191776, + 6457188752, + 6446260800, 6446262368, - 6446262352 + 6446260992, + 6443742160, + 6446261808, + 6457193088, + 6457194912, + 6446262720, + 6446262752, + 6446262736 ], "bases": [ { @@ -224042,7 +224056,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468324944, + "complete_object_locator": 6468329176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224051,27 +224065,27 @@ }, { "type_name": "CSOEconGameAccountClient", - "vtable_address": 6465032280, + "vtable_address": 6465036376, "methods": [ - 6446594464, - 6457189536, - 6446580400, - 6446580560, - 6446580608, - 6457189584, - 6457186560, - 6446580624, - 6446582272, - 6446580912, + 6446595328, + 6457191728, + 6446580800, + 6446581024, + 6446581072, + 6457191776, + 6457188752, + 6446581104, + 6446582656, + 6446581312, 6443742160, - 6446581744, - 6457190896, - 6457192720, - 6446583008, - 6446585344, - 6446585312, - 6457187520, - 6446591296 + 6446582128, + 6457193088, + 6457194912, + 6446584080, + 6446585888, + 6446585696, + 6457189712, + 6446591680 ], "bases": [ { @@ -224105,7 +224119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468325080, + "complete_object_locator": 6468329312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224114,27 +224128,27 @@ }, { "type_name": "CSOEconItem", - "vtable_address": 6464934280, - "methods": [ - 6446108992, - 6457189536, - 6446043872, - 6446045648, - 6446046736, - 6457189584, - 6457186560, - 6446046768, - 6446052032, - 6446048256, - 6443742160, - 6446050480, - 6457190896, - 6457192720, - 6446052176, - 6446053488, - 6446053328, - 6457187520, - 6446107040 + "vtable_address": 6464938376, + "methods": [ + 6446110752, + 6457191728, + 6446045248, + 6446047184, + 6446047584, + 6457191776, + 6457188752, + 6446047600, + 6446052512, + 6446048784, + 6443742160, + 6446050960, + 6457193088, + 6457194912, + 6446052608, + 6446055632, + 6446055600, + 6457189712, + 6446107424 ], "bases": [ { @@ -224168,7 +224182,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468325216, + "complete_object_locator": 6468329448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224177,25 +224191,25 @@ }, { "type_name": "CSOEconItemAttribute", - "vtable_address": 6464923928, + "vtable_address": 6464928168, "methods": [ - 6446011504, - 6457189536, - 6446002848, - 6446003536, - 6446004128, - 6457189584, - 6457186560, - 6446004144, - 6446005840, - 6446004608, + 6446012528, + 6457191728, + 6446003440, + 6446004752, + 6446004992, + 6457191776, + 6457188752, + 6446005008, + 6446006400, + 6446005328, 6443742160, - 6446005520, - 6457190896, - 6457192720, - 6446006048, - 6446007056, - 6446007040 + 6446006080, + 6457193088, + 6457194912, + 6446006608, + 6446007440, + 6446007424 ], "bases": [ { @@ -224229,7 +224243,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468325352, + "complete_object_locator": 6468329584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224238,25 +224252,25 @@ }, { "type_name": "CSOEconItemDropRateBonus", - "vtable_address": 6465069480, - "methods": [ - 6446620272, - 6457189536, - 6446609008, - 6446609312, - 6446609360, - 6457189584, - 6457186560, - 6446609392, - 6446611008, - 6446609664, + "vtable_address": 6465073576, + "methods": [ + 6446620656, + 6457191728, + 6446609536, + 6446609696, + 6446609744, + 6457191776, + 6457188752, + 6446609776, + 6446611392, + 6446610048, 6443742160, - 6446610464, - 6457190896, - 6457192720, - 6446611584, - 6446612800, - 6446612784 + 6446610848, + 6457193088, + 6457194912, + 6446611968, + 6446613856, + 6446613472 ], "bases": [ { @@ -224290,7 +224304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468325488, + "complete_object_locator": 6468329720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224299,29 +224313,27 @@ }, { "type_name": "CSOEconItemEquipped", - "vtable_address": 6464925864, - "methods": [ - 6446035856, - 6457189536, - 6446027776, - 6446028560, - 6446028736, - 6457189584, - 6457186560, - 6446028784, - 6446031536, - 6446029344, + "vtable_address": 6464929976, + "methods": [ + 6446036320, + 6457191728, + 6446028512, + 6446029232, + 6446030016, + 6457191776, + 6457188752, + 6446030048, + 6446032448, + 6446031104, 6443742160, - 6446031264, - 6457190896, - 6457192720, - 6446032432, - 6446032528, - 6446032480, - 6457388960, - 6457389040, - 6457187520, - 6446033728 + 6446032176, + 6457193088, + 6457194912, + 6446032832, + 6446032992, + 6446032960, + 6457189712, + 6446034112 ], "bases": [ { @@ -224355,7 +224367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468325624, + "complete_object_locator": 6468329856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224364,27 +224376,25 @@ }, { "type_name": "CSOEconItemEventTicket", - "vtable_address": 6465075672, - "methods": [ - 6446657024, - 6457189536, - 6446647872, - 6446648112, - 6446648144, - 6457189584, - 6457186560, - 6446648160, - 6446649264, - 6446648288, + "vtable_address": 6465079784, + "methods": [ + 6446657488, + 6457191728, + 6446648400, + 6446648496, + 6446648528, + 6457191776, + 6457188752, + 6446648544, + 6446649664, + 6446648672, 6443742160, - 6446648880, - 6457190896, - 6457192720, - 6446649472, - 6446650704, - 6446650688, - 6457187520, - 6446654992 + 6446649280, + 6457193088, + 6457194912, + 6446650304, + 6446651984, + 6446651968 ], "bases": [ { @@ -224418,7 +224428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468325760, + "complete_object_locator": 6468329992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224427,29 +224437,25 @@ }, { "type_name": "CSOEconItemLeagueViewPass", - "vtable_address": 6465074056, + "vtable_address": 6465078168, "methods": [ - 6446640400, - 6457189536, - 6446622544, - 6446623296, - 6446623568, - 6457189584, - 6457186560, - 6446623584, - 6446626592, - 6446624736, + 6446640864, + 6457191728, + 6446623184, + 6446623680, + 6446623952, + 6457191776, + 6457188752, + 6446623968, + 6446627056, + 6446625200, 6443742160, - 6446626128, - 6457190896, - 6457192720, - 6446627872, - 6446630304, - 6446630288, - 6457187520, - 6446637024, - 6457187520, - 6446638800 + 6446626592, + 6457193088, + 6457194912, + 6446628256, + 6446630720, + 6446630704 ], "bases": [ { @@ -224483,7 +224489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468325896, + "complete_object_locator": 6468330128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224492,27 +224498,27 @@ }, { "type_name": "CSOEconRentalHistory", - "vtable_address": 6464986344, - "methods": [ - 6446389744, - 6457189536, - 6446381968, - 6446382976, - 6446383040, - 6457189584, - 6457186560, - 6446383056, - 6446384784, - 6446383248, - 6443742160, - 6446384224, - 6457190896, - 6457192720, - 6446384800, - 6446384912, - 6446384896, - 6457187520, - 6446386816 + "vtable_address": 6464990440, + "methods": [ + 6446390128, + 6457191728, + 6446382448, + 6446383376, + 6446383424, + 6457191776, + 6457188752, + 6446383600, + 6446385168, + 6446383792, + 6443742160, + 6446384608, + 6457193088, + 6457194912, + 6446385264, + 6446385296, + 6446385280, + 6457189712, + 6446387536 ], "bases": [ { @@ -224546,7 +224552,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326032, + "complete_object_locator": 6468330264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224555,29 +224561,31 @@ }, { "type_name": "CSOGameAccountSteamChina", - "vtable_address": 6464973776, - "methods": [ - 6446245728, - 6457189536, - 6446235728, - 6446236160, - 6446236208, - 6457189584, - 6457186560, - 6446236224, - 6446237584, - 6446236352, + "vtable_address": 6464977872, + "methods": [ + 6446246112, + 6457191728, + 6446236112, + 6446236544, + 6446236592, + 6457191776, + 6457188752, + 6446236608, + 6446237952, + 6446236736, 6443742160, - 6446237216, - 6457190896, - 6457192720, - 6446238144, - 6446238288, - 6446238272, - 6457187520, - 6446243856, - 6457187520, - 6446244464 + 6446237584, + 6457193088, + 6457194912, + 6446238528, + 6446238672, + 6446238656, + 6457189712, + 6446244160, + 6457189712, + 6446244848, + 6457189712, + 6446247360 ], "bases": [ { @@ -224611,7 +224619,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468346208, + "complete_object_locator": 6468350440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224620,33 +224628,33 @@ }, { "type_name": "CSOItemCriteria", - "vtable_address": 6465076424, - "methods": [ - 6446661280, - 6457189536, - 6446623744, - 6446626992, - 6446627264, - 6457189584, - 6457186560, - 6446627280, - 6446630192, - 6446627888, - 6443742160, - 6446629344, - 6457190896, - 6457192720, - 6446630384, - 6446631600, - 6446630992, - 6457187520, - 6446659392, - 6457187520, - 6446660784, - 6457187520, - 6446662240, - 6457187520, - 6446663920 + "vtable_address": 6465080520, + "methods": [ + 6446662352, + 6457191728, + 6446624128, + 6446627376, + 6446627648, + 6457191776, + 6457188752, + 6446627664, + 6446630576, + 6446628272, + 6443742160, + 6446629728, + 6457193088, + 6457194912, + 6446630784, + 6446633392, + 6446632896, + 6457189712, + 6446659696, + 6457189712, + 6446661168, + 6457189712, + 6446662624, + 6457189712, + 6446664384 ], "bases": [ { @@ -224680,7 +224688,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468306232, + "complete_object_locator": 6468310464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224689,27 +224697,27 @@ }, { "type_name": "CSOItemCriteriaCondition", - "vtable_address": 6465069624, - "methods": [ - 6446620432, - 6457189536, - 6446609376, - 6446611264, - 6446611376, - 6457189584, - 6457186560, - 6446611392, - 6446612608, - 6446611600, - 6443742160, - 6446612272, - 6457190896, - 6457192720, - 6446612864, - 6446614560, - 6446613952, - 6457187520, - 6446619184 + "vtable_address": 6465073720, + "methods": [ + 6446620896, + 6457191728, + 6446609760, + 6446611648, + 6446611760, + 6457191776, + 6457188752, + 6446611776, + 6446613152, + 6446611984, + 6443742160, + 6446612816, + 6457193088, + 6457194912, + 6446613920, + 6446615168, + 6446615152, + 6457189712, + 6446619568 ], "bases": [ { @@ -224743,7 +224751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468306368, + "complete_object_locator": 6468310600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224752,27 +224760,27 @@ }, { "type_name": "CSOItemRecipe", - "vtable_address": 6464879680, + "vtable_address": 6464883776, "methods": [ - 6445830000, - 6457189536, - 6446667520, - 6446671168, - 6446672240, - 6457189584, - 6457186560, - 6446672256, - 6446676544, - 6446673504, + 6445830384, + 6457191728, + 6446669488, + 6446672352, + 6446672976, + 6457191776, + 6457188752, + 6446672992, + 6446676944, + 6446673952, 6443742160, - 6446675312, - 6457190896, - 6457192720, - 6446676832, - 6446677088, - 6446677072, - 6457187520, - 6445828608 + 6446675712, + 6457193088, + 6457194912, + 6446677232, + 6446677648, + 6446677456, + 6457189712, + 6445828992 ], "bases": [ { @@ -224806,7 +224814,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468306504, + "complete_object_locator": 6468310736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224815,25 +224823,25 @@ }, { "type_name": "CSOLobbyInvite", - "vtable_address": 6465003720, + "vtable_address": 6465007816, "methods": [ - 6446425008, - 6457189536, - 6446417056, - 6446417232, - 6446417312, - 6457189584, - 6457186560, - 6446417328, - 6446418240, - 6446417456, + 6446425392, + 6457191728, + 6446417440, + 6446417616, + 6446417696, + 6457191776, + 6457188752, + 6446417712, + 6446418624, + 6446417840, 6443742160, - 6446417968, - 6457190896, - 6457192720, - 6446418256, - 6446418432, - 6446418416 + 6446418352, + 6457193088, + 6457194912, + 6446418640, + 6446418816, + 6446418800 ], "bases": [ { @@ -224867,7 +224875,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326168, + "complete_object_locator": 6468330400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224876,25 +224884,27 @@ }, { "type_name": "CSOPartyInvite", - "vtable_address": 6464990088, - "methods": [ - 6446408592, - 6457189536, - 6446401632, - 6446401968, - 6446402048, - 6457189584, - 6457186560, - 6446402064, - 6446402976, - 6446402192, + "vtable_address": 6465006056, + "methods": [ + 6446408992, + 6457191728, + 6446402016, + 6446402352, + 6446402432, + 6457191776, + 6457188752, + 6446402448, + 6446403360, + 6446402576, 6443742160, - 6446402704, - 6457190896, - 6457192720, - 6446402992, 6446403088, - 6446403024 + 6457193088, + 6457194912, + 6446403376, + 6446403472, + 6446403408, + 6457189712, + 6446407296 ], "bases": [ { @@ -224928,7 +224938,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468326304, + "complete_object_locator": 6468330536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -224937,31 +224947,33 @@ }, { "type_name": "CSOPersonaDataPublic", - "vtable_address": 6464976144, - "methods": [ - 6446267360, - 6457189536, - 6446255328, - 6446257600, - 6446257712, - 6457189584, - 6457186560, - 6446257728, - 6446259616, - 6446258256, - 6443742160, - 6446259168, - 6457190896, - 6457192720, - 6446259648, - 6446260176, - 6446260160, - 6457187520, - 6446265392, - 6457187520, - 6446266464, - 6457187520, - 6446266864 + "vtable_address": 6464980224, + "methods": [ + 6446267680, + 6457191728, + 6446255712, + 6446257984, + 6446258096, + 6457191776, + 6457188752, + 6446258128, + 6446260000, + 6446258640, + 6443742160, + 6446259552, + 6457193088, + 6457194912, + 6446260032, + 6446260544, + 6446260528, + 6457189712, + 6446264800, + 6457189712, + 6446265504, + 6457189712, + 6446266848, + 6457189712, + 6446267168 ], "bases": [ { @@ -224995,7 +225007,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468346344, + "complete_object_locator": 6468350576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225004,25 +225016,25 @@ }, { "type_name": "CSOQuestProgress", - "vtable_address": 6464954648, - "methods": [ - 6446180336, - 6457189536, - 6446169104, - 6446169216, - 6446169264, - 6457189584, - 6457186560, - 6446169280, - 6446170512, - 6446169456, + "vtable_address": 6464958744, + "methods": [ + 6446180720, + 6457191728, + 6446169488, + 6446169600, + 6446169648, + 6457191776, + 6457188752, + 6446169664, + 6446170896, + 6446169840, 6443742160, - 6446170144, - 6457190896, - 6457192720, - 6446171344, - 6446174000, - 6446173360 + 6446170528, + 6457193088, + 6457194912, + 6446171728, + 6446173536, + 6446172880 ], "bases": [ { @@ -225056,7 +225068,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468346480, + "complete_object_locator": 6468350712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225065,25 +225077,25 @@ }, { "type_name": "CSOVolatileItemClaimedRewards", - "vtable_address": 6464946976, - "methods": [ - 6446147216, - 6457189536, - 6446134320, - 6446134816, - 6446134960, - 6457189584, - 6457186560, - 6446134992, - 6446136992, - 6446135216, + "vtable_address": 6464951072, + "methods": [ + 6446147600, + 6457191728, + 6446134144, + 6446135104, + 6446135168, + 6457191776, + 6457188752, + 6446135184, + 6446136864, + 6446135440, 6443742160, 6446136400, - 6457190896, - 6457192720, - 6446137120, - 6446140736, - 6446139504 + 6457193088, + 6457194912, + 6446137440, + 6446139808, + 6446139216 ], "bases": [ { @@ -225117,7 +225129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468346616, + "complete_object_locator": 6468350848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225126,27 +225138,25 @@ }, { "type_name": "CSOVolatileItemOffer", - "vtable_address": 6464942912, - "methods": [ - 6446122320, - 6457189536, - 6446112512, - 6446112800, - 6446112864, - 6457189584, - 6457186560, - 6446112976, - 6446114880, - 6446113280, + "vtable_address": 6464946864, + "methods": [ + 6446122704, + 6457191728, + 6446112896, + 6446113184, + 6446113248, + 6457191776, + 6457188752, + 6446113360, + 6446115264, + 6446113664, 6443742160, - 6446114416, - 6457190896, - 6457192720, - 6446115040, - 6446116032, - 6446116016, - 6457388960, - 6457389040 + 6446114800, + 6457193088, + 6457194912, + 6446115424, + 6446116256, + 6446116240 ], "bases": [ { @@ -225180,7 +225190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468346752, + "complete_object_locator": 6468350984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225189,18 +225199,18 @@ }, { "type_name": "CSPerRoundStats_t", - "vtable_address": 6465353152, + "vtable_address": 6465357216, "methods": [ - 6447915952, - 6447911024, - 6447911296, - 6447911184, - 6447910992 + 6447917520, + 6447912592, + 6447912864, + 6447912752, + 6447912560 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468432920, + "complete_object_locator": 6468437016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225209,25 +225219,25 @@ }, { "type_name": "CSVCMsgList_GameEvents", - "vtable_address": 6465215096, - "methods": [ - 6447399904, - 6457189536, - 6447383680, - 6447384352, - 6447384496, - 6457189584, - 6457186560, - 6447384512, - 6447385328, - 6447384752, - 6443742160, - 6447385184, - 6457190896, - 6457192720, - 6447385568, - 6447386512, - 6447386496 + "vtable_address": 6465219176, + "methods": [ + 6447400128, + 6457191728, + 6447383904, + 6447384576, + 6447384720, + 6457191776, + 6457188752, + 6447384736, + 6447385552, + 6447384976, + 6443742160, + 6447385408, + 6457193088, + 6457194912, + 6447385792, + 6447386736, + 6447386720 ], "bases": [ { @@ -225261,7 +225271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373104, + "complete_object_locator": 6468377200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225270,27 +225280,27 @@ }, { "type_name": "CSVCMsgList_GameEvents_event_t", - "vtable_address": 6465213128, - "methods": [ - 6447377184, - 6457189536, - 6447370432, - 6447370720, - 6447371008, - 6457189584, - 6457186560, - 6447371024, - 6447372224, - 6447371392, + "vtable_address": 6465217208, + "methods": [ + 6447377408, + 6457191728, + 6447370656, + 6447370944, + 6447371232, + 6457191776, + 6457188752, + 6447371248, + 6447372448, + 6447371616, 6443742160, - 6447371952, - 6457190896, - 6457192720, - 6447373200, - 6447373664, - 6447373648, - 6457187520, - 6447374784 + 6447372176, + 6457193088, + 6457194912, + 6447373424, + 6447373888, + 6447373872, + 6457189712, + 6447375008 ], "bases": [ { @@ -225324,7 +225334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373240, + "complete_object_locator": 6468377336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225333,31 +225343,31 @@ }, { "type_name": "CSVCMsg_BSPDecal", - "vtable_address": 6465211992, + "vtable_address": 6465216072, "methods": [ - 6447366528, - 6457189536, - 6447355040, - 6447355680, - 6447355792, - 6457189584, - 6457186560, - 6447355808, - 6447357344, - 6447356080, - 6443742160, - 6447356880, - 6457190896, - 6457192720, - 6447357504, - 6447357536, - 6447357520, - 6457187520, - 6447360320, - 6457187520, - 6447364896, - 6457187520, - 6447366896 + 6447366752, + 6457191728, + 6447355264, + 6447355840, + 6447356016, + 6457191776, + 6457188752, + 6447356032, + 6447357568, + 6447356304, + 6443742160, + 6447357104, + 6457193088, + 6457194912, + 6447357728, + 6447357760, + 6447357744, + 6457189712, + 6447360544, + 6457189712, + 6447365120, + 6457189712, + 6447367120 ], "bases": [ { @@ -225391,7 +225401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386152, + "complete_object_locator": 6468390248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225400,25 +225410,25 @@ }, { "type_name": "CSVCMsg_Broadcast_Command", - "vtable_address": 6465086400, - "methods": [ - 6446919168, - 6457189536, - 6446914352, - 6446915456, - 6446915648, - 6457189584, - 6457186560, - 6446915696, - 6446917056, - 6446916048, - 6443742160, - 6446916944, - 6457190896, - 6457192720, - 6446917456, - 6446917536, - 6446917504 + "vtable_address": 6465090480, + "methods": [ + 6446919392, + 6457191728, + 6446914512, + 6446915440, + 6446915744, + 6457191776, + 6457188752, + 6446915904, + 6446917280, + 6446916272, + 6443742160, + 6446917168, + 6457193088, + 6457194912, + 6446917680, + 6446917744, + 6446917728 ], "bases": [ { @@ -225452,7 +225462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386288, + "complete_object_locator": 6468390384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225461,27 +225471,27 @@ }, { "type_name": "CSVCMsg_ClassInfo", - "vtable_address": 6465175816, - "methods": [ - 6447216720, - 6457189536, - 6447198704, - 6447198912, - 6447199104, - 6457189584, - 6457186560, - 6447199120, - 6447200112, - 6447199408, - 6443742160, - 6447199936, - 6457190896, - 6457192720, + "vtable_address": 6465179896, + "methods": [ + 6447216928, + 6457191728, + 6447198928, + 6447199136, + 6447199328, + 6457191776, + 6457188752, + 6447199344, + 6447200336, + 6447199632, + 6443742160, 6447200160, - 6447202224, - 6447201264, - 6457187520, - 6447215168 + 6457193088, + 6457194912, + 6447200384, + 6447201888, + 6447201488, + 6457189712, + 6447215408 ], "bases": [ { @@ -225515,7 +225525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386328, + "complete_object_locator": 6468390424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225524,27 +225534,27 @@ }, { "type_name": "CSVCMsg_ClassInfo_class_t", - "vtable_address": 6465168064, - "methods": [ - 6447191744, - 6457189536, - 6447186192, - 6447188000, - 6447188128, - 6457189584, - 6457186560, - 6447188160, - 6447189056, + "vtable_address": 6465172144, + "methods": [ + 6447191968, + 6457191728, + 6447186416, + 6447188224, 6447188352, + 6457191776, + 6457188752, + 6447188368, + 6447189280, + 6447188576, 6443742160, - 6447188832, - 6457190896, - 6457192720, - 6447189152, - 6447189184, - 6447189168, - 6457187520, - 6447189584 + 6447189056, + 6457193088, + 6457194912, + 6447189376, + 6447189408, + 6447189392, + 6457189712, + 6447189808 ], "bases": [ { @@ -225578,7 +225588,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386368, + "complete_object_locator": 6468390464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225587,25 +225597,25 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables", - "vtable_address": 6465177384, + "vtable_address": 6465181464, "methods": [ - 6447229296, - 6457189536, - 6447221008, - 6447221216, - 6447221280, - 6457189584, - 6457186560, - 6447221296, - 6447222240, - 6447221376, + 6447229520, + 6457191728, + 6447221232, + 6447221440, + 6447221504, + 6457191776, + 6457188752, + 6447221520, + 6447222448, + 6447221600, 6443742160, - 6447222080, - 6457190896, - 6457192720, - 6447223360, - 6447223856, - 6447223824 + 6447222288, + 6457193088, + 6457194912, + 6447223200, + 6447224080, + 6447224048 ], "bases": [ { @@ -225639,7 +225649,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386504, + "complete_object_locator": 6468390600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225648,25 +225658,25 @@ }, { "type_name": "CSVCMsg_CmdKeyValues", - "vtable_address": 6465164224, - "methods": [ - 6447144528, - 6457189536, - 6447141056, - 6447141248, - 6447141312, - 6457189584, - 6457186560, - 6447141328, - 6447141872, - 6447141392, + "vtable_address": 6465168304, + "methods": [ + 6447144752, + 6457191728, + 6447141280, + 6447141472, + 6447141536, + 6457191776, + 6457188752, + 6447141552, + 6447142096, + 6447141616, 6443742160, - 6447141760, - 6457190896, - 6457192720, - 6447141888, - 6447141920, - 6447141904 + 6447141984, + 6457193088, + 6457194912, + 6447142112, + 6447142144, + 6447142128 ], "bases": [ { @@ -225700,7 +225710,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386544, + "complete_object_locator": 6468390640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225709,25 +225719,25 @@ }, { "type_name": "CSVCMsg_CreateStringTable", - "vtable_address": 6465130496, - "methods": [ - 6447059536, - 6457189536, - 6447052288, - 6447052688, - 6447052816, - 6457189584, - 6457186560, - 6447052832, - 6447055232, - 6447053184, - 6443742160, - 6447054432, - 6457190896, - 6457192720, - 6447055248, - 6447055280, - 6447055264 + "vtable_address": 6465134576, + "methods": [ + 6447059760, + 6457191728, + 6447052512, + 6447052912, + 6447053040, + 6457191776, + 6457188752, + 6447053056, + 6447055456, + 6447053408, + 6443742160, + 6447054656, + 6457193088, + 6457194912, + 6447055472, + 6447055504, + 6447055488 ], "bases": [ { @@ -225761,7 +225771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386584, + "complete_object_locator": 6468390680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225770,25 +225780,25 @@ }, { "type_name": "CSVCMsg_CrosshairAngle", - "vtable_address": 6465200904, + "vtable_address": 6465204984, "methods": [ - 6447350176, - 6457189536, - 6447342032, + 6447350400, + 6457191728, 6447342256, - 6447342352, - 6457189584, - 6457186560, - 6447342368, - 6447342992, - 6447342496, - 6443742160, - 6447342880, - 6457190896, - 6457192720, - 6447343024, - 6447343712, - 6447343440 + 6447342480, + 6447342576, + 6457191776, + 6457188752, + 6447342592, + 6447343216, + 6447342720, + 6443742160, + 6447343104, + 6457193088, + 6457194912, + 6447343232, + 6447343680, + 6447343648 ], "bases": [ { @@ -225822,7 +225832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386624, + "complete_object_locator": 6468390720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225831,31 +225841,31 @@ }, { "type_name": "CSVCMsg_FixAngle", - "vtable_address": 6465198856, + "vtable_address": 6465202936, "methods": [ - 6447337456, - 6457189536, - 6447328992, - 6447329280, - 6447329376, - 6457189584, - 6457186560, - 6447329392, - 6447331200, - 6447329552, + 6447337680, + 6457191728, + 6447329216, + 6447329504, + 6447329600, + 6457191776, + 6457188752, + 6447329616, + 6447331424, + 6447329776, 6443742160, - 6447331024, - 6457190896, - 6457192720, - 6447332656, - 6447333376, - 6447333360, - 6457187520, - 6447334432, - 6457187520, - 6447334544, - 6457187520, - 6447335808 + 6447331248, + 6457193088, + 6457194912, + 6447332880, + 6447333600, + 6447333584, + 6457189712, + 6447334656, + 6457189712, + 6447334768, + 6457189712, + 6447336032 ], "bases": [ { @@ -225889,7 +225899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386760, + "complete_object_locator": 6468390856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225898,25 +225908,25 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer", - "vtable_address": 6465197128, + "vtable_address": 6465201208, "methods": [ - 6447323440, - 6457189536, - 6447305472, - 6447305760, - 6447306144, - 6457189584, - 6457186560, - 6447306256, - 6447308544, - 6447306912, - 6443742160, - 6447308192, - 6457190896, - 6457192720, - 6447308896, - 6447309104, - 6447309088 + 6447323664, + 6457191728, + 6447305696, + 6447305984, + 6447306368, + 6457191776, + 6457188752, + 6447306480, + 6447308768, + 6447307136, + 6443742160, + 6447308416, + 6457193088, + 6457194912, + 6447309120, + 6447309328, + 6447309312 ], "bases": [ { @@ -225950,7 +225960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468370848, + "complete_object_locator": 6468374944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -225959,29 +225969,29 @@ }, { "type_name": "CSVCMsg_FullFrameSplit", - "vtable_address": 6465160624, - "methods": [ - 6447116720, - 6457189536, - 6447104544, - 6447105296, - 6447106064, - 6457189584, - 6457186560, - 6447106080, - 6447107728, - 6447106624, - 6443742160, - 6447107296, - 6457190896, - 6457192720, - 6447107760, - 6447108048, - 6447107968, - 6457187520, - 6447109264, - 6457187520, - 6447109920 + "vtable_address": 6465164704, + "methods": [ + 6447116944, + 6457191728, + 6447104768, + 6447105520, + 6447106288, + 6457191776, + 6457188752, + 6447106304, + 6447107952, + 6447106848, + 6443742160, + 6447107520, + 6457193088, + 6457194912, + 6447107984, + 6447108208, + 6447108096, + 6457189712, + 6447109488, + 6457189712, + 6447110144 ], "bases": [ { @@ -226015,7 +226025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386896, + "complete_object_locator": 6468390992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226024,27 +226034,27 @@ }, { "type_name": "CSVCMsg_GameEvent", - "vtable_address": 6465211832, - "methods": [ - 6447365152, - 6457189536, - 6447343040, - 6447344000, - 6447344656, - 6457189584, - 6457186560, - 6447344672, - 6447345952, - 6447345072, - 6443742160, - 6447345664, - 6457190896, - 6457192720, - 6447345984, - 6447347648, - 6447347200, - 6457187520, - 6447359200 + "vtable_address": 6465215912, + "methods": [ + 6447365376, + 6457191728, + 6447343264, + 6447344224, + 6447344464, + 6457191776, + 6457188752, + 6447344896, + 6447346176, + 6447345280, + 6443742160, + 6447345888, + 6457193088, + 6457194912, + 6447346208, + 6447347872, + 6447347280, + 6457189712, + 6447359424 ], "bases": [ { @@ -226078,7 +226088,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373376, + "complete_object_locator": 6468377472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226087,27 +226097,27 @@ }, { "type_name": "CSVCMsg_GameEventList", - "vtable_address": 6465088592, - "methods": [ - 6446943664, - 6457189536, - 6446919792, - 6446919984, - 6446920112, - 6457189584, - 6457186560, - 6446920128, - 6446921072, - 6446920496, - 6443742160, - 6446920928, - 6457190896, - 6457192720, - 6446922000, - 6446926720, - 6446926704, - 6457187520, - 6446942208 + "vtable_address": 6465092672, + "methods": [ + 6446943888, + 6457191728, + 6446919872, + 6446920208, + 6446920336, + 6457191776, + 6457188752, + 6446920352, + 6446921296, + 6446920720, + 6443742160, + 6446921152, + 6457193088, + 6457194912, + 6446922224, + 6446926944, + 6446926928, + 6457189712, + 6446942432 ], "bases": [ { @@ -226141,7 +226151,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468386936, + "complete_object_locator": 6468391032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226150,25 +226160,25 @@ }, { "type_name": "CSVCMsg_GameEventList_descriptor_t", - "vtable_address": 6465085808, - "methods": [ - 6446918384, - 6457189536, - 6446877168, - 6446881120, - 6446881456, - 6457189584, - 6457186560, - 6446881520, - 6446883856, - 6446882224, - 6443742160, - 6446883568, - 6457190896, - 6457192720, - 6446884464, - 6446886160, - 6446885920 + "vtable_address": 6465089888, + "methods": [ + 6446918592, + 6457191728, + 6446877376, + 6446881344, + 6446881680, + 6457191776, + 6457188752, + 6446881744, + 6446884080, + 6446882432, + 6443742160, + 6446883792, + 6457193088, + 6457194912, + 6446884624, + 6446886384, + 6446886144 ], "bases": [ { @@ -226202,7 +226212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387072, + "complete_object_locator": 6468391168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226211,25 +226221,25 @@ }, { "type_name": "CSVCMsg_GameEventList_key_t", - "vtable_address": 6465083544, + "vtable_address": 6465087624, "methods": [ - 6446870672, - 6457189536, - 6446866256, - 6446866784, - 6446866848, - 6457189584, - 6457186560, - 6446866864, - 6446867696, - 6446866976, - 6443742160, - 6446867472, - 6457190896, - 6457192720, - 6446867792, - 6446868096, - 6446867920 + 6446870896, + 6457191728, + 6446866480, + 6446867008, + 6446867072, + 6457191776, + 6457188752, + 6446867088, + 6446867904, + 6446867200, + 6443742160, + 6446867680, + 6457193088, + 6457194912, + 6446868016, + 6446868320, + 6446868144 ], "bases": [ { @@ -226263,7 +226273,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387208, + "complete_object_locator": 6468391304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226272,25 +226282,25 @@ }, { "type_name": "CSVCMsg_GameEvent_key_t", - "vtable_address": 6465199192, - "methods": [ - 6447338016, - 6457189536, - 6447325536, - 6447325872, - 6447325984, - 6457189584, - 6457186560, - 6447326000, - 6447328624, - 6447326592, + "vtable_address": 6465203272, + "methods": [ + 6447338240, + 6457191728, + 6447325760, + 6447326096, + 6447326208, + 6457191776, + 6457188752, + 6447326224, + 6447328848, + 6447326816, 6443742160, - 6447327920, - 6457190896, - 6457192720, - 6447328816, - 6447328928, - 6447328912 + 6447328144, + 6457193088, + 6457194912, + 6447329040, + 6447329152, + 6447329136 ], "bases": [ { @@ -226324,7 +226334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373512, + "complete_object_locator": 6468377608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226333,25 +226343,25 @@ }, { "type_name": "CSVCMsg_GameSessionConfiguration", - "vtable_address": 6465087216, + "vtable_address": 6465091296, "methods": [ - 6446931232, - 6457189536, - 6446888080, - 6446889680, - 6446890864, - 6457189584, - 6457186560, - 6446890880, - 6446894528, - 6446891904, + 6446931456, + 6457191728, + 6446888304, + 6446889904, + 6446891088, + 6457191776, + 6457188752, + 6446891104, + 6446894752, + 6446892128, 6443742160, - 6446893568, - 6457190896, - 6457192720, - 6446894704, - 6446894816, - 6446894800 + 6446893792, + 6457193088, + 6457194912, + 6446894928, + 6446895040, + 6446895024 ], "bases": [ { @@ -226385,7 +226395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468373648, + "complete_object_locator": 6468377744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226394,29 +226404,29 @@ }, { "type_name": "CSVCMsg_GetCvarValue", - "vtable_address": 6465214552, - "methods": [ - 6447392496, - 6457189536, - 6447385168, - 6447385584, - 6447385648, - 6457189584, - 6457186560, - 6447385664, - 6447386480, - 6447385776, + "vtable_address": 6465218632, + "methods": [ + 6447392720, + 6457191728, + 6447385392, + 6447385808, + 6447385872, + 6457191776, + 6457188752, + 6447385888, + 6447386704, + 6447386000, 6443742160, - 6447386256, - 6457190896, - 6457192720, - 6447386576, - 6447386608, - 6447386592, - 6457187520, - 6447388288, - 6457187520, - 6447391568 + 6447386480, + 6457193088, + 6457194912, + 6447386800, + 6447386832, + 6447386816, + 6457189712, + 6447388512, + 6457189712, + 6447391792 ], "bases": [ { @@ -226450,7 +226460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387344, + "complete_object_locator": 6468391440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226459,25 +226469,25 @@ }, { "type_name": "CSVCMsg_HLTVStatus", - "vtable_address": 6465161904, + "vtable_address": 6465165984, "methods": [ - 6447124688, - 6457189536, - 6447118496, - 6447118912, - 6447119488, - 6457189584, - 6457186560, - 6447119504, - 6447121072, - 6447119920, + 6447124912, + 6457191728, + 6447118720, + 6447119136, + 6447119712, + 6457191776, + 6457188752, + 6447119728, + 6447121296, + 6447120144, 6443742160, - 6447120640, - 6457190896, - 6457192720, - 6447121888, - 6447124064, - 6447124048 + 6447120864, + 6457193088, + 6457194912, + 6447122080, + 6447124288, + 6447124256 ], "bases": [ { @@ -226511,7 +226521,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387384, + "complete_object_locator": 6468391480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226520,25 +226530,25 @@ }, { "type_name": "CSVCMsg_HltvFixupOperatorStatus", - "vtable_address": 6465089584, - "methods": [ - 6446958496, - 6457189536, - 6446946752, - 6446946992, - 6446947056, - 6457189584, - 6457186560, - 6446947072, - 6446948320, - 6446947360, + "vtable_address": 6465093664, + "methods": [ + 6446958720, + 6457191728, + 6446946960, + 6446947216, + 6446947280, + 6457191776, + 6457188752, + 6446947296, + 6446948544, + 6446947584, 6443742160, - 6446948096, - 6457190896, - 6457192720, - 6446949728, - 6446951264, - 6446951232 + 6446948320, + 6457193088, + 6457194912, + 6446949952, + 6446951488, + 6446951456 ], "bases": [ { @@ -226572,7 +226582,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387424, + "complete_object_locator": 6468391520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226581,25 +226591,25 @@ }, { "type_name": "CSVCMsg_HltvReplay", - "vtable_address": 6465083688, + "vtable_address": 6465087768, "methods": [ - 6446871312, - 6457189536, - 6446859664, - 6446861120, - 6446861232, - 6457189584, - 6457186560, - 6446861248, - 6446863408, - 6446861536, + 6446871536, + 6457191728, + 6446859872, + 6446861328, + 6446861392, + 6457191776, + 6457188752, + 6446861472, + 6446863632, + 6446861760, 6443742160, - 6446862576, - 6457190896, - 6457192720, - 6446863440, - 6446863824, - 6446863792 + 6446862800, + 6457193088, + 6457194912, + 6446863664, + 6446864048, + 6446864016 ], "bases": [ { @@ -226633,7 +226643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387464, + "complete_object_locator": 6468391560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226642,25 +226652,25 @@ }, { "type_name": "CSVCMsg_Menu", - "vtable_address": 6465215688, - "methods": [ - 6447401936, - 6457189536, - 6447398512, - 6447398896, - 6447398960, - 6457189584, - 6457186560, - 6447398976, - 6447399792, - 6447399088, + "vtable_address": 6465219768, + "methods": [ + 6447402160, + 6457191728, + 6447398736, + 6447399120, + 6447399184, + 6457191776, + 6457188752, + 6447399200, + 6447400016, + 6447399312, 6443742160, - 6447399568, - 6457190896, - 6457192720, - 6447399808, - 6447399840, - 6447399824 + 6447399792, + 6457193088, + 6457194912, + 6447400032, + 6447400064, + 6447400048 ], "bases": [ { @@ -226694,7 +226704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387504, + "complete_object_locator": 6468391600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226703,27 +226713,27 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted", - "vtable_address": 6465094880, - "methods": [ - 6447017200, - 6457189536, - 6446998064, - 6446999872, - 6446999936, - 6457189584, - 6457186560, - 6446999952, - 6447000832, - 6447000048, + "vtable_address": 6465098960, + "methods": [ + 6447017424, + 6457191728, + 6446998032, + 6446999456, + 6447000144, + 6457191776, + 6457188752, + 6447000176, + 6447001056, + 6447000272, 6443742160, - 6447000544, - 6457190896, - 6457192720, - 6447000848, - 6447000960, - 6447000944, - 6457187520, - 6447015248 + 6447000768, + 6457193088, + 6457194912, + 6447001072, + 6447001184, + 6447001168, + 6457189712, + 6447015472 ], "bases": [ { @@ -226757,7 +226767,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387544, + "complete_object_locator": 6468391640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226766,27 +226776,25 @@ }, { "type_name": "CSVCMsg_PacketEntities", - "vtable_address": 6465110584, + "vtable_address": 6465114664, "methods": [ - 6447033248, - 6457189536, - 6446985504, - 6446986512, - 6446986992, - 6457189584, - 6457186560, - 6446987024, - 6446992704, - 6446988336, + 6447033312, + 6457191728, + 6446985728, + 6446986736, + 6446987216, + 6457191776, + 6457188752, + 6446987232, + 6446992928, + 6446988560, 6443742160, - 6446990816, - 6457190896, - 6457192720, - 6446993040, - 6446993744, - 6446993728, - 6457187520, - 6447032192 + 6446991040, + 6457193088, + 6457194912, + 6446993264, + 6446993968, + 6446993952 ], "bases": [ { @@ -226820,7 +226828,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387584, + "complete_object_locator": 6468391680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226829,25 +226837,25 @@ }, { "type_name": "CSVCMsg_PacketEntities_alternate_baseline_t", - "vtable_address": 6465089728, - "methods": [ - 6446959728, - 6457189536, - 6446949712, - 6446951200, - 6446951248, - 6457189584, - 6457186560, - 6446951328, - 6446952400, - 6446951440, - 6443742160, - 6446952096, - 6457190896, - 6457192720, - 6446952576, + "vtable_address": 6465093808, + "methods": [ + 6446959952, + 6457191728, + 6446949936, + 6446951424, + 6446951472, + 6457191776, + 6457188752, + 6446951552, 6446952624, - 6446952608 + 6446951664, + 6443742160, + 6446952320, + 6457193088, + 6457194912, + 6446952800, + 6446952848, + 6446952832 ], "bases": [ { @@ -226881,7 +226889,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387624, + "complete_object_locator": 6468391720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226890,25 +226898,27 @@ }, { "type_name": "CSVCMsg_PacketEntities_non_transmitted_entities_t", - "vtable_address": 6465090880, + "vtable_address": 6465094960, "methods": [ - 6446973808, - 6457189536, - 6446964864, - 6446965056, - 6446965120, - 6457189584, - 6457186560, - 6446965632, - 6446967680, - 6446966320, + 6446974032, + 6457191728, + 6446965088, + 6446965280, + 6446965344, + 6457191776, + 6457188752, + 6446965360, + 6446967328, + 6446966208, 6443742160, - 6446967456, - 6457190896, - 6457192720, - 6446969568, - 6446971392, - 6446971376 + 6446967104, + 6457193088, + 6457194912, + 6446969792, + 6446971616, + 6446971600, + 6457189712, + 6446973200 ], "bases": [ { @@ -226942,7 +226952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387760, + "complete_object_locator": 6468391856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -226951,25 +226961,25 @@ }, { "type_name": "CSVCMsg_PacketEntities_outofpvs_entity_updates_t", - "vtable_address": 6465093136, - "methods": [ - 6446984224, - 6457189536, - 6446976832, - 6446977232, - 6446977296, - 6457189584, - 6457186560, - 6446977312, - 6446978144, - 6446977424, + "vtable_address": 6465097216, + "methods": [ + 6446984448, + 6457191728, + 6446977056, + 6446977456, + 6446977520, + 6457191776, + 6457188752, + 6446977536, + 6446978368, + 6446977648, 6443742160, - 6446977920, - 6457190896, - 6457192720, - 6446978352, - 6446980672, - 6446980048 + 6446978144, + 6457193088, + 6457194912, + 6446978576, + 6446980304, + 6446980272 ], "bases": [ { @@ -227003,7 +227013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468387896, + "complete_object_locator": 6468391992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227012,27 +227022,27 @@ }, { "type_name": "CSVCMsg_PacketReliable", - "vtable_address": 6465159632, + "vtable_address": 6465163712, "methods": [ - 6447094320, - 6457189536, - 6447091424, - 6447091536, - 6447091584, - 6457189584, - 6457186560, - 6447091600, - 6447092736, - 6447091712, + 6447094544, + 6457191728, + 6447091648, + 6447091760, + 6447091808, + 6457191776, + 6457188752, + 6447091824, + 6447092960, + 6447091936, 6443742160, - 6447092400, - 6457190896, - 6457192720, - 6447092768, - 6447093328, - 6447093312, - 6457388960, - 6457389040 + 6447092624, + 6457193088, + 6457194912, + 6447092992, + 6447093552, + 6447093536, + 6457391152, + 6457391232 ], "bases": [ { @@ -227066,7 +227076,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388032, + "complete_object_locator": 6468392128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227075,27 +227085,27 @@ }, { "type_name": "CSVCMsg_PeerList", - "vtable_address": 6465175976, + "vtable_address": 6465180056, "methods": [ - 6447217920, - 6457189536, - 6447201248, - 6447203088, - 6447203328, - 6457189584, - 6457186560, - 6447203344, - 6447204768, - 6447203696, + 6447218144, + 6457191728, + 6447201472, + 6447203312, + 6447203552, + 6457191776, + 6457188752, + 6447203568, + 6447204992, + 6447203920, 6443742160, - 6447204624, - 6457190896, - 6457192720, - 6447206016, - 6447206080, - 6447206064, - 6457187520, - 6447216224 + 6447204848, + 6457193088, + 6457194912, + 6447206240, + 6447206304, + 6447206288, + 6457189712, + 6447216448 ], "bases": [ { @@ -227129,7 +227139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388072, + "complete_object_locator": 6468392168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227138,25 +227148,25 @@ }, { "type_name": "CSVCMsg_Prefetch", - "vtable_address": 6465196616, - "methods": [ - 6447317184, - 6457189536, - 6447311968, - 6447312416, - 6447312464, - 6457189584, - 6457186560, - 6447312672, - 6447314384, - 6447313264, - 6443742160, - 6447314064, - 6457190896, - 6457192720, - 6447314432, + "vtable_address": 6465200696, + "methods": [ + 6447317408, + 6457191728, + 6447312032, + 6447312640, + 6447312688, + 6457191776, + 6457188752, + 6447312896, 6447314608, - 6447314528 + 6447313488, + 6443742160, + 6447314288, + 6457193088, + 6457194912, + 6447314640, + 6447314832, + 6447314752 ], "bases": [ { @@ -227190,7 +227200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388112, + "complete_object_locator": 6468392208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227199,29 +227209,29 @@ }, { "type_name": "CSVCMsg_Print", - "vtable_address": 6465179304, - "methods": [ - 6447255136, - 6457189536, - 6447246992, - 6447247120, - 6447247184, - 6457189584, - 6457186560, - 6447247200, - 6447247824, - 6447247280, - 6443742160, - 6447247712, - 6457190896, - 6457192720, - 6447247856, - 6447250384, - 6447250368, - 6457187520, - 6447252016, - 6457388960, - 6457389040 + "vtable_address": 6465183384, + "methods": [ + 6447255360, + 6457191728, + 6447247216, + 6447247344, + 6447247408, + 6457191776, + 6457188752, + 6447247424, + 6447248048, + 6447247504, + 6443742160, + 6447247936, + 6457193088, + 6457194912, + 6447248080, + 6447250608, + 6447250592, + 6457189712, + 6447252240, + 6457391152, + 6457391232 ], "bases": [ { @@ -227255,7 +227265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388152, + "complete_object_locator": 6468392248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227264,27 +227274,27 @@ }, { "type_name": "CSVCMsg_RconServerDetails", - "vtable_address": 6465165792, + "vtable_address": 6465169872, "methods": [ - 6447161920, - 6457189536, - 6447150464, - 6447150848, - 6447150944, - 6457189584, - 6457186560, - 6447150960, - 6447153264, - 6447152000, + 6447162144, + 6457191728, + 6447150688, + 6447150928, + 6447151168, + 6457191776, + 6457188752, + 6447151184, + 6447153488, + 6447152224, 6443742160, - 6447153104, - 6457190896, - 6457192720, - 6447155968, - 6447157104, - 6447157072, - 6457187520, - 6447159920 + 6447153328, + 6457193088, + 6457194912, + 6447156192, + 6447157328, + 6447157296, + 6457189712, + 6447160144 ], "bases": [ { @@ -227318,7 +227328,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388192, + "complete_object_locator": 6468392288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227327,25 +227337,25 @@ }, { "type_name": "CSVCMsg_SendTable", - "vtable_address": 6465082264, + "vtable_address": 6465084680, "methods": [ - 6446858592, - 6457189536, - 6447443152, - 6446842208, - 6446842496, - 6457189584, - 6457186560, - 6446842512, - 6446843872, - 6446842896, + 6446858816, + 6457191728, + 6447443376, + 6446842432, + 6446842720, + 6457191776, + 6457188752, + 6446842736, + 6446844096, + 6446842976, 6443742160, - 6446843616, - 6457190896, - 6457192720, - 6446844048, - 6446844608, - 6446844496 + 6446843840, + 6457193088, + 6457194912, + 6446844272, + 6446844832, + 6446844720 ], "bases": [ { @@ -227379,7 +227389,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388232, + "complete_object_locator": 6468392328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227388,27 +227398,27 @@ }, { "type_name": "CSVCMsg_SendTable_sendprop_t", - "vtable_address": 6465218568, - "methods": [ - 6447437280, - 6457189536, - 6447427696, - 6447428272, - 6447428400, - 6457189584, - 6457186560, - 6447428496, - 6447431440, - 6447429312, + "vtable_address": 6465222648, + "methods": [ + 6447437504, + 6457191728, + 6447427920, + 6447428432, + 6447428608, + 6457191776, + 6457188752, + 6447428640, + 6447431504, + 6447429056, 6443742160, - 6447430704, - 6457190896, - 6457192720, - 6447431488, - 6447431760, - 6447431664, - 6457187520, - 6447436432 + 6447430768, + 6457193088, + 6457194912, + 6447431696, + 6447431920, + 6447431872, + 6457189712, + 6447436656 ], "bases": [ { @@ -227442,7 +227452,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388368, + "complete_object_locator": 6468392464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227451,29 +227461,29 @@ }, { "type_name": "CSVCMsg_ServerInfo", - "vtable_address": 6465167344, - "methods": [ - 6447171328, - 6457189536, - 6447150480, - 6447151680, - 6447152384, - 6457189584, - 6457186560, - 6447152464, - 6447155792, - 6447153280, - 6443742160, - 6447154752, - 6457190896, - 6457192720, - 6447156208, - 6447157184, - 6447157168, - 6457187520, - 6447170128, - 6457187520, - 6447171552 + "vtable_address": 6465171424, + "methods": [ + 6447171552, + 6457191728, + 6447150704, + 6447151904, + 6447152608, + 6457191776, + 6457188752, + 6447152688, + 6447156016, + 6447153504, + 6443742160, + 6447154976, + 6457193088, + 6457194912, + 6447156432, + 6447157408, + 6447157392, + 6457189712, + 6447170352, + 6457189712, + 6447171776 ], "bases": [ { @@ -227507,7 +227517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388504, + "complete_object_locator": 6468392600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227516,25 +227526,25 @@ }, { "type_name": "CSVCMsg_ServerSteamID", - "vtable_address": 6465162880, + "vtable_address": 6465166960, "methods": [ - 6447137536, - 6457189536, - 6447131888, - 6447132176, - 6447132208, - 6457189584, - 6457186560, - 6447132224, - 6447132848, - 6447132288, + 6447137760, + 6457191728, + 6447132112, + 6447132400, + 6447132432, + 6457191776, + 6457188752, + 6447132448, + 6447133072, + 6447132512, 6443742160, - 6447132672, - 6457190896, - 6457192720, - 6447133776, - 6447135328, - 6447135312 + 6447132896, + 6457193088, + 6457194912, + 6447134000, + 6447135552, + 6447135536 ], "bases": [ { @@ -227568,7 +227578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388544, + "complete_object_locator": 6468392640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227577,25 +227587,25 @@ }, { "type_name": "CSVCMsg_SetPause", - "vtable_address": 6465176936, - "methods": [ - 6447225040, - 6457189536, - 6447220096, - 6447220240, - 6447220272, - 6457189584, - 6457186560, - 6447220448, - 6447220992, - 6447220480, + "vtable_address": 6465181016, + "methods": [ + 6447225264, + 6457191728, + 6447220320, + 6447220464, + 6447220496, + 6457191776, + 6457188752, + 6447220672, + 6447221216, + 6447220704, 6443742160, - 6447220880, - 6457190896, - 6457192720, - 6447221024, - 6447221952, - 6447221856 + 6447221104, + 6457193088, + 6457194912, + 6447221248, + 6447222096, + 6447222080 ], "bases": [ { @@ -227629,7 +227639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388584, + "complete_object_locator": 6468392680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227638,27 +227648,27 @@ }, { "type_name": "CSVCMsg_SetView", - "vtable_address": 6465197432, + "vtable_address": 6465201512, "methods": [ - 6447324720, - 6457189536, - 6447318704, - 6447319280, - 6447319328, - 6457189584, - 6457186560, - 6447319344, - 6447320800, - 6447319808, + 6447324944, + 6457191728, + 6447318928, + 6447319488, + 6447319552, + 6457191776, + 6457188752, + 6447319568, + 6447321024, + 6447320032, 6443742160, - 6447320496, - 6457190896, - 6457192720, - 6447321616, - 6447321680, - 6447321664, - 6457388960, - 6457389040 + 6447320720, + 6457193088, + 6457194912, + 6447321840, + 6447321904, + 6447321888, + 6457391152, + 6457391232 ], "bases": [ { @@ -227692,7 +227702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388624, + "complete_object_locator": 6468392720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227701,25 +227711,25 @@ }, { "type_name": "CSVCMsg_Sounds", - "vtable_address": 6465194064, + "vtable_address": 6465198144, "methods": [ - 6447310464, - 6457189536, - 6447299760, - 6447299968, - 6447300176, - 6457189584, - 6457186560, + 6447310672, + 6457191728, + 6447299984, 6447300192, - 6447301056, - 6447300352, + 6447300400, + 6457191776, + 6457188752, + 6447300416, + 6447301280, + 6447300576, 6443742160, - 6447300880, - 6457190896, - 6457192720, - 6447301072, - 6447301696, - 6447301504 + 6447301104, + 6457193088, + 6457194912, + 6447301296, + 6447301760, + 6447301552 ], "bases": [ { @@ -227753,7 +227763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388664, + "complete_object_locator": 6468392760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227762,27 +227772,27 @@ }, { "type_name": "CSVCMsg_Sounds_sounddata_t", - "vtable_address": 6465192608, + "vtable_address": 6465196688, "methods": [ - 6447296224, - 6457189536, - 6447257520, - 6447257920, - 6447258016, - 6457189584, - 6457186560, - 6447258032, - 6447262416, - 6447258656, + 6447296448, + 6457191728, + 6447257728, + 6447258144, + 6447258240, + 6457191776, + 6457188752, + 6447258256, + 6447262640, + 6447258880, 6443742160, - 6447260704, - 6457190896, - 6457192720, - 6447262544, - 6447263872, - 6447263856, - 6457187520, - 6447294480 + 6447260928, + 6457193088, + 6457194912, + 6447262752, + 6447264096, + 6447264080, + 6457189712, + 6447294704 ], "bases": [ { @@ -227816,7 +227826,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388704, + "complete_object_locator": 6468392800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227825,29 +227835,29 @@ }, { "type_name": "CSVCMsg_SplitScreen", - "vtable_address": 6465213288, + "vtable_address": 6465217368, "methods": [ - 6447380608, - 6457189536, - 6447370704, - 6447372176, - 6447372240, - 6457189584, - 6457186560, - 6447372256, - 6447373616, - 6447372384, - 6443742160, - 6447373216, - 6457190896, - 6457192720, - 6447373632, - 6447373744, - 6447373728, - 6457187520, - 6447377360, - 6457187520, - 6447380784 + 6447380832, + 6457191728, + 6447370928, + 6447372400, + 6447372464, + 6457191776, + 6457188752, + 6447372480, + 6447373840, + 6447372608, + 6443742160, + 6447373440, + 6457193088, + 6457194912, + 6447373856, + 6447373968, + 6447373952, + 6457189712, + 6447377584, + 6457189712, + 6447381008 ], "bases": [ { @@ -227881,7 +227891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388840, + "complete_object_locator": 6468392936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227890,25 +227900,25 @@ }, { "type_name": "CSVCMsg_StopSound", - "vtable_address": 6465198536, + "vtable_address": 6465202616, "methods": [ - 6447333840, - 6457189536, - 6447325360, - 6447325600, - 6447325856, - 6457189584, - 6457186560, - 6447325952, - 6447327760, - 6447326272, - 6443742160, - 6447327648, - 6457190896, - 6457192720, - 6447328640, - 6447328848, - 6447328832 + 6447334064, + 6457191728, + 6447325584, + 6447325824, + 6447326080, + 6457191776, + 6457188752, + 6447326176, + 6447327984, + 6447326496, + 6443742160, + 6447327872, + 6457193088, + 6457194912, + 6447328864, + 6447329072, + 6447329056 ], "bases": [ { @@ -227942,7 +227952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388880, + "complete_object_locator": 6468392976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -227951,29 +227961,29 @@ }, { "type_name": "CSVCMsg_TempEntities", - "vtable_address": 6465128672, - "methods": [ - 6447045360, - 6457189536, - 6447035264, - 6447035712, - 6447035792, - 6457189584, - 6457186560, - 6447035808, - 6447036816, + "vtable_address": 6465132752, + "methods": [ + 6447045584, + 6457191728, + 6447035488, 6447035936, + 6447036016, + 6457191776, + 6457188752, + 6447036032, + 6447037040, + 6447036160, 6443742160, - 6447036528, - 6457190896, - 6457192720, - 6447036832, - 6447036944, - 6447036928, - 6457187520, - 6447037408, - 6457187520, - 6447041536 + 6447036752, + 6457193088, + 6457194912, + 6447037056, + 6447037168, + 6447037152, + 6457189712, + 6447037632, + 6457189712, + 6447041760 ], "bases": [ { @@ -228007,7 +228017,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468388920, + "complete_object_locator": 6468393016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -228016,25 +228026,25 @@ }, { "type_name": "CSVCMsg_UpdateStringTable", - "vtable_address": 6465133192, - "methods": [ - 6447074048, - 6457189536, - 6447062704, - 6447064176, - 6447064416, - 6457189584, - 6457186560, - 6447064496, - 6447066048, - 6447064736, + "vtable_address": 6465137272, + "methods": [ + 6447074272, + 6457191728, + 6447062752, + 6447064048, + 6447064480, + 6457191776, + 6457188752, + 6447064656, + 6447066272, + 6447064960, 6443742160, - 6447065712, - 6457190896, - 6457192720, - 6447066192, - 6447066320, - 6447066304 + 6447065936, + 6457193088, + 6457194912, + 6447066416, + 6447066544, + 6447066528 ], "bases": [ { @@ -228068,7 +228078,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389056, + "complete_object_locator": 6468393152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -228077,27 +228087,29 @@ }, { "type_name": "CSVCMsg_UserCommands", - "vtable_address": 6465093920, + "vtable_address": 6465097984, "methods": [ - 6446996848, - 6457189536, - 6446977904, - 6446978368, - 6446978576, - 6457189584, - 6457186560, - 6446978608, - 6446980064, - 6446979328, + 6446997072, + 6457191728, + 6446978128, + 6446978592, + 6446978800, + 6457191776, + 6457188752, + 6446978832, + 6446980288, + 6446979536, 6443742160, - 6446979904, - 6457190896, - 6457192720, - 6446981936, - 6446982896, - 6446982880, - 6457187520, - 6446995936 + 6446980128, + 6457193088, + 6457194912, + 6446982144, + 6446983120, + 6446983104, + 6457189712, + 6446994048, + 6457189712, + 6446996160 ], "bases": [ { @@ -228131,7 +228143,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389096, + "complete_object_locator": 6468393192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -228140,25 +228152,25 @@ }, { "type_name": "CSVCMsg_UserMessage", - "vtable_address": 6465216824, + "vtable_address": 6465220904, "methods": [ - 6447423536, - 6457189536, + 6447423600, + 6457191728, 6443741696, - 6447414144, - 6447414224, - 6457189584, - 6457186560, - 6447414240, + 6447414368, + 6447414448, + 6457191776, + 6457188752, + 6447414464, 6443734384, - 6447414384, + 6447414608, 6443742160, - 6447414960, - 6457190896, - 6457192720, - 6447415456, - 6447415648, - 6447415632 + 6447415184, + 6457193088, + 6457194912, + 6447415680, + 6447415872, + 6447415856 ], "bases": [ { @@ -228192,7 +228204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468371160, + "complete_object_locator": 6468375256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -228201,7 +228213,7 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 6464397848, + "vtable_address": 6464401944, "methods": [ 6443723952, 6443727136, @@ -228283,7 +228295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468212560, + "complete_object_locator": 6468216656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -228292,25 +228304,25 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 6464397896, + "vtable_address": 6464401992, "methods": [ 6443723676, - 6457189536, + 6457191728, 6443741696, - 6447414144, - 6447414224, - 6457189584, - 6457186560, - 6447414240, + 6447414368, + 6447414448, + 6457191776, + 6457188752, + 6447414464, 6443734384, - 6447414384, + 6447414608, 6443742160, - 6447414960, - 6457190896, - 6457192720, - 6447415456, - 6447415648, - 6447415632 + 6447415184, + 6457193088, + 6457194912, + 6447415680, + 6447415872, + 6447415856 ], "bases": [ { @@ -228386,7 +228398,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468212720, + "complete_object_locator": 6468216816, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -228395,27 +228407,27 @@ }, { "type_name": "CSVCMsg_VoiceData", - "vtable_address": 6465158672, + "vtable_address": 6465162752, "methods": [ - 6447087248, - 6457189536, - 6447076416, - 6447076704, - 6447076896, - 6457189584, - 6457186560, - 6447077216, - 6447080608, - 6447078288, + 6447087472, + 6457191728, + 6447076640, + 6447076928, + 6447077120, + 6457191776, + 6457188752, + 6447077136, + 6447080096, + 6447078032, 6443742160, - 6447080000, - 6457190896, - 6457192720, - 6447081056, - 6447082000, - 6447081984, - 6457187520, - 6447084672 + 6447079488, + 6457193088, + 6457194912, + 6447081280, + 6447082224, + 6447082208, + 6457189712, + 6447084896 ], "bases": [ { @@ -228449,7 +228461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389136, + "complete_object_locator": 6468393232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -228458,25 +228470,25 @@ }, { "type_name": "CSVCMsg_VoiceInit", - "vtable_address": 6465178072, + "vtable_address": 6465182152, "methods": [ - 6447241520, - 6457189536, - 6447232112, - 6447232320, - 6447232656, - 6457189584, - 6457186560, - 6447232928, - 6447234688, - 6447233264, - 6443742160, - 6447234352, - 6457190896, - 6457192720, - 6447236160, - 6447238384, - 6447238368 + 6447241744, + 6457191728, + 6447232336, + 6447232544, + 6447232688, + 6457191776, + 6457188752, + 6447232896, + 6447234912, + 6447233488, + 6443742160, + 6447234576, + 6457193088, + 6457194912, + 6447236384, + 6447238608, + 6447238592 ], "bases": [ { @@ -228510,7 +228522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389176, + "complete_object_locator": 6468393272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -228519,11 +228531,11 @@ }, { "type_name": "CS_App_Lifetime_Gamestats", - "vtable_address": 6466295344, + "vtable_address": 6466299504, "methods": [ - 6452203472, - 6447951904, - 6452277104, + 6452205056, + 6447953472, + 6452278688, 6443748624, 6443748640, 6443748656, @@ -228551,10 +228563,10 @@ 6443749008, 6443749024, 6443749040, - 6447945104, - 6447944912, + 6447946672, + 6447946480, 6443749088, - 6447951920, + 6447953488, 6443749120, 6443749136, 6443749152, @@ -228568,8 +228580,8 @@ 6443749280, 6443749296, 6443749312, - 6447953072, - 6447952912, + 6447954640, + 6447954480, 6443749360, 6443749376, 6443749392, @@ -228577,18 +228589,18 @@ 6443749424, 6443749440, 6443749456, - 6452272496, + 6452274080, 6443749488, - 6452151888, - 6452110896, - 6452300688, - 6447942176, - 6447957840, - 6447953056, - 6447949872, - 6452186304, - 6452115040, - 6447952576 + 6452153472, + 6452112480, + 6452302272, + 6447943744, + 6447959408, + 6447954624, + 6447951440, + 6452187888, + 6452116624, + 6447954144 ], "bases": [ { @@ -228664,7 +228676,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468661488, + "complete_object_locator": 6468665584, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -228673,10 +228685,10 @@ }, { "type_name": "CS_App_Lifetime_Gamestats", - "vtable_address": 6466295896, + "vtable_address": 6466300056, "methods": [ - 6452103628, - 6447942800 + 6452105212, + 6447944368 ], "bases": [ { @@ -228752,7 +228764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468661648, + "complete_object_locator": 6468665744, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -228761,9 +228773,9 @@ }, { "type_name": "CSave", - "vtable_address": 6465753992, + "vtable_address": 6465758184, "methods": [ - 6449166864 + 6449168416 ], "bases": [ { @@ -228825,7 +228837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468505232, + "complete_object_locator": 6468509328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -228834,88 +228846,88 @@ }, { "type_name": "CSave", - "vtable_address": 6465754008, - "methods": [ - 6449163660, - 6449752128, - 6449547904, - 6449393808, - 6449775984, - 6449750704, - 6449547488, - 6449774640, - 6449779216, - 6449776976, - 6449787312, - 6449787168, - 6449787216, - 6449776928, - 6449787264, - 6449774592, - 6449776480, + "vtable_address": 6465758200, + "methods": [ + 6449165212, + 6449753696, + 6449549472, + 6449395360, + 6449777552, + 6449752272, + 6449549056, 6449776208, - 6449775232, - 6449774688, - 6449784720, - 6449784672, - 6449784624, - 6449784768, - 6449784432, - 6449788512, - 6449788320, - 6449787520, - 6449787456, - 6449787952, - 6449787888, + 6449780784, + 6449778544, + 6449788880, + 6449788736, + 6449788784, + 6449778496, + 6449788832, + 6449776160, + 6449778048, + 6449777776, + 6449776800, + 6449776256, + 6449786288, + 6449786240, + 6449786192, + 6449786336, + 6449786000, + 6449790080, + 6449789888, + 6449789088, + 6449789024, + 6449789520, + 6449789456, + 6449780416, + 6449780352, + 6449788928, + 6449787440, + 6449779008, + 6449786720, + 6449786384, + 6449780304, + 6449780256, + 6449778320, + 6449777040, + 6449776992, + 6449788976, + 6449778912, + 6449778960, + 6449788688, + 6449779072, + 6449779088, + 6449779520, + 6449779104, 6449778848, - 6449778784, - 6449787360, - 6449785872, - 6449777440, - 6449785152, - 6449784816, - 6449778736, - 6449778688, - 6449776752, - 6449775472, - 6449775424, - 6449787408, - 6449777344, - 6449777392, - 6449787120, - 6449777504, - 6449777520, - 6449777952, - 6449777536, - 6449777280, - 6449275424, - 6449278496, - 6449278480, - 6449594432, - 6449577872, - 6449734720, - 6449734864, - 6449626512, - 6449502832, - 6449695344, - 6449581936, - 6449581920, - 6449727568, - 6449602480, - 6449540464, - 6449507104, - 6449563072, - 6449563200, - 6449565120, - 6449580704, - 6449265328, - 6449531936, - 6449750288, - 6449750560, - 6449758704, - 6449547456, - 6449547424, - 6449275600 + 6449276976, + 6449280048, + 6449280032, + 6449596000, + 6449579440, + 6449736288, + 6449736432, + 6449628080, + 6449504400, + 6449696912, + 6449583504, + 6449583488, + 6449729136, + 6449604048, + 6449542032, + 6449508672, + 6449564640, + 6449564768, + 6449566688, + 6449582272, + 6449266880, + 6449533504, + 6449751856, + 6449752128, + 6449760272, + 6449549024, + 6449548992, + 6449277152 ], "bases": [ { @@ -228977,7 +228989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468505584, + "complete_object_locator": 6468509680, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -228986,20 +228998,20 @@ }, { "type_name": "CSaveRestoreBlockSet", - "vtable_address": 6465751456, - "methods": [ - 6449083488, - 6449083520, - 6449083632, - 6449084048, - 6449084448, - 6449084560, - 6449084640, - 6449085392, - 6449085712, - 6449085792, - 6449086048, - 6449085168 + "vtable_address": 6465755648, + "methods": [ + 6449085040, + 6449085072, + 6449085184, + 6449085600, + 6449086000, + 6449086112, + 6449086192, + 6449086944, + 6449087264, + 6449087344, + 6449087600, + 6449086720 ], "bases": [ { @@ -229033,7 +229045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468504536, + "complete_object_locator": 6468508632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229042,16 +229054,16 @@ }, { "type_name": "CSaveRestoreFileData", - "vtable_address": 6465754656, + "vtable_address": 6465758848, "methods": [ - 6449260752, - 6449275200, - 6449274928, - 6449196112, - 6449199552, - 6449202816, - 6449284960, - 6449166928 + 6449262304, + 6449276752, + 6449276480, + 6449197664, + 6449201104, + 6449204368, + 6449286512, + 6449168480 ], "bases": [ { @@ -229071,7 +229083,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468507400, + "complete_object_locator": 6468511496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229080,26 +229092,26 @@ }, { "type_name": "CSaveRestoreFileSystemPassthrough", - "vtable_address": 6465805024, - "methods": [ - 6449409296, - 6449409344, - 6449409360, - 6449409376, - 6449409408, - 6449409424, - 6449409488, - 6449409456, - 6449409200, - 6449409264, - 6449409232, - 6449409520, - 6449409776, + "vtable_address": 6465809216, + "methods": [ + 6449410864, 6449410912, - 6449412080, - 6449412304, - 6449412800, - 6449412816 + 6449410928, + 6449410944, + 6449410976, + 6449410992, + 6449411056, + 6449411024, + 6449410768, + 6449410832, + 6449410800, + 6449411088, + 6449411344, + 6449412480, + 6449413648, + 6449413872, + 6449414368, + 6449414384 ], "bases": [ { @@ -229119,7 +229131,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468514720, + "complete_object_locator": 6468518816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229128,14 +229140,14 @@ }, { "type_name": "CSaveRestoreShared", - "vtable_address": 6465810080, + "vtable_address": 6465814272, "methods": [ - 6449498752 + 6449500320 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468521968, + "complete_object_locator": 6468526064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229144,7 +229156,7 @@ }, { "type_name": "CSceneObject", - "vtable_address": 6464410424, + "vtable_address": 6464414520, "methods": [ 6443765504, 6443765216, @@ -229153,7 +229165,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468216912, + "complete_object_locator": 6468221008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229162,7 +229174,7 @@ }, { "type_name": "CScenePrecacheSystem", - "vtable_address": 6465700088, + "vtable_address": 6465704424, "methods": [ 6443748576, 6443748592, @@ -229181,7 +229193,7 @@ 6443748800, 6443748816, 6443748832, - 6448743360, + 6448744928, 6443748864, 6443748880, 6443748896, @@ -229220,11 +229232,11 @@ 6443749424, 6443749440, 6443749456, - 6448743328, + 6448744896, 6443749488, - 6448743312, - 6448743568, - 6448743296 + 6448744880, + 6448745136, + 6448744864 ], "bases": [ { @@ -229258,7 +229270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468489520, + "complete_object_locator": 6468493616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229267,21 +229279,21 @@ }, { "type_name": "CSchemaAttributeType_Default", - "vtable_address": 6466794256, - "methods": [ - 6455880960, - 6456166048, - 6456277264, - 6456047712, - 6455893136, - 6456047776, - 6456276944, - 6456189488, - 6456415248, - 6456290768, - 6456029440, - 6456048704, - 6456047584 + "vtable_address": 6466798352, + "methods": [ + 6455882720, + 6456167824, + 6456279040, + 6456049488, + 6455894896, + 6456049552, + 6456278720, + 6456191264, + 6456417024, + 6456292544, + 6456031216, + 6456050480, + 6456049360 ], "bases": [ { @@ -229329,7 +229341,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468795824, + "complete_object_locator": 6468799920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229338,21 +229350,21 @@ }, { "type_name": "CSchemaAttributeType_Float", - "vtable_address": 6466794144, - "methods": [ - 6455881008, - 6456166160, - 6456277296, - 6456047728, - 6455893264, - 6456048240, - 6456277008, - 6456189504, - 6456415264, - 6456291632, - 6456029456, - 6456048912, - 6456047616 + "vtable_address": 6466798240, + "methods": [ + 6455882768, + 6456167936, + 6456279072, + 6456049504, + 6455895024, + 6456050016, + 6456278784, + 6456191280, + 6456417040, + 6456293408, + 6456031232, + 6456050688, + 6456049392 ], "bases": [ { @@ -229400,7 +229412,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468795456, + "complete_object_locator": 6468799552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229409,21 +229421,21 @@ }, { "type_name": "CSchemaAttributeType_String", - "vtable_address": 6466793472, - "methods": [ - 6455881056, - 6456166384, - 6456277360, - 6456047760, - 6455893312, - 6456048368, - 6456277136, - 6456189568, - 6456415328, - 6456290864, - 6456029488, - 6456048688, - 6456047568 + "vtable_address": 6466797568, + "methods": [ + 6455882816, + 6456168160, + 6456279136, + 6456049536, + 6455895072, + 6456050144, + 6456278912, + 6456191344, + 6456417104, + 6456292640, + 6456031264, + 6456050464, + 6456049344 ], "bases": [ { @@ -229485,7 +229497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468794240, + "complete_object_locator": 6468798336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229494,21 +229506,21 @@ }, { "type_name": "CSchemaAttributeType_Uint32", - "vtable_address": 6466793920, - "methods": [ - 6455881104, - 6456166048, - 6456277264, - 6456047712, - 6455893568, - 6456048432, - 6456276944, - 6456189488, - 6456415248, - 6456290768, - 6456029472, - 6456049120, - 6456047648 + "vtable_address": 6466798016, + "methods": [ + 6455882864, + 6456167824, + 6456279040, + 6456049488, + 6455895328, + 6456050208, + 6456278720, + 6456191264, + 6456417024, + 6456292544, + 6456031248, + 6456050896, + 6456049424 ], "bases": [ { @@ -229556,7 +229568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468795088, + "complete_object_locator": 6468799184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229565,21 +229577,21 @@ }, { "type_name": "CSchemaAttributeType_Vector", - "vtable_address": 6466793696, - "methods": [ - 6455881152, - 6456166272, - 6456277328, - 6456047744, - 6455893600, - 6456048560, - 6456277072, - 6456189520, - 6456415280, - 6456290832, - 6456029488, - 6456049328, - 6456047680 + "vtable_address": 6466797792, + "methods": [ + 6455882912, + 6456168048, + 6456279104, + 6456049520, + 6455895360, + 6456050336, + 6456278848, + 6456191296, + 6456417056, + 6456292608, + 6456031264, + 6456051104, + 6456049456 ], "bases": [ { @@ -229627,7 +229639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468794720, + "complete_object_locator": 6468798816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229636,9 +229648,9 @@ }, { "type_name": "CSchemaInstallCallback", - "vtable_address": 6467860920, + "vtable_address": 6467865016, "methods": [ - 6463573616 + 6463575808 ], "bases": [ { @@ -229658,7 +229670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468995264, + "complete_object_locator": 6468999360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229667,9 +229679,9 @@ }, { "type_name": "CSchemaRegistration_animlib", - "vtable_address": 6466966760, + "vtable_address": 6466970824, "methods": [ - 6457890880 + 6457893072 ], "bases": [ { @@ -229689,7 +229701,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468829112, + "complete_object_locator": 6468833208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229698,9 +229710,9 @@ }, { "type_name": "CSchemaRegistration_client", - "vtable_address": 6466917904, + "vtable_address": 6466921968, "methods": [ - 6457162208 + 6457164400 ], "bases": [ { @@ -229720,7 +229732,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468816632, + "complete_object_locator": 6468820728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229729,9 +229741,9 @@ }, { "type_name": "CSchemaRegistration_compositematerialslib", - "vtable_address": 6467052560, + "vtable_address": 6467056624, "methods": [ - 6459103584 + 6459105776 ], "bases": [ { @@ -229751,7 +229763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468871848, + "complete_object_locator": 6468875944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229760,9 +229772,9 @@ }, { "type_name": "CSchemaRegistration_entity2", - "vtable_address": 6467197136, + "vtable_address": 6467201200, "methods": [ - 6460120160 + 6460122352 ], "bases": [ { @@ -229782,7 +229794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468940696, + "complete_object_locator": 6468944792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229791,9 +229803,9 @@ }, { "type_name": "CSchemaRegistration_mathlib_extended", - "vtable_address": 6467548768, + "vtable_address": 6467552864, "methods": [ - 6461178784 + 6461180976 ], "bases": [ { @@ -229813,7 +229825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468953920, + "complete_object_locator": 6468958016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229822,9 +229834,9 @@ }, { "type_name": "CSchemaRegistration_pulse_runtime_lib", - "vtable_address": 6467809168, + "vtable_address": 6467813264, "methods": [ - 6462828528 + 6462830720 ], "bases": [ { @@ -229844,7 +229856,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468991592, + "complete_object_locator": 6468995688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229853,9 +229865,9 @@ }, { "type_name": "CSchemaRegistration_tier2", - "vtable_address": 6467860984, + "vtable_address": 6467865080, "methods": [ - 6463577152 + 6463579344 ], "bases": [ { @@ -229875,7 +229887,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468995392, + "complete_object_locator": 6468999488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229884,9 +229896,9 @@ }, { "type_name": "CSchemaReservationListener", - "vtable_address": 6466124552, + "vtable_address": 6466128760, "methods": [ - 6451499200 + 6451500784 ], "bases": [ { @@ -229906,7 +229918,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609888, + "complete_object_locator": 6468613984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -229915,11 +229927,11 @@ }, { "type_name": "CScriptComponent", - "vtable_address": 6467194168, + "vtable_address": 6467198232, "methods": [ - 6460116368, - 6460120128, - 6460113120 + 6460118560, + 6460122320, + 6460115312 ], "bases": [ { @@ -229981,7 +229993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468939936, + "complete_object_locator": 6468944032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -229990,7 +230002,7 @@ }, { "type_name": "CScriptConsoleCommand", - "vtable_address": 6464734208, + "vtable_address": 6464738288, "methods": [ 6445114400, 6445077968 @@ -230013,7 +230025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468282592, + "complete_object_locator": 6468286688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230022,7 +230034,7 @@ }, { "type_name": "CScriptSpawnGroupEntityFilterProxy", - "vtable_address": 6464737056, + "vtable_address": 6464741136, "methods": [ 6445078144, 6445144656 @@ -230045,7 +230057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468282944, + "complete_object_locator": 6468287040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230054,7 +230066,7 @@ }, { "type_name": "CScriptUniformRandomStream", - "vtable_address": 6464732720, + "vtable_address": 6464736800, "methods": [ 6445323424, 6445078192, @@ -230063,7 +230075,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468282472, + "complete_object_locator": 6468286568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230072,31 +230084,31 @@ }, { "type_name": "CScriptedIconLesson", - "vtable_address": 6465929920, - "methods": [ - 6450393568, - 6450471184, - 6450538112, - 6450696688, - 6450698752, - 6450699056, - 6450700544, - 6450578896, - 6450705440, - 6450712224, - 6450682560, - 6450556016, - 6450735872, - 6450701184, - 6450701968, - 6450552896, - 6450421360, - 6450483360, - 6450714512, - 6450638608, - 6450606512, - 6450640976, - 6450642224 + "vtable_address": 6465934112, + "methods": [ + 6450395136, + 6450472752, + 6450539680, + 6450698256, + 6450700320, + 6450700624, + 6450702112, + 6450580464, + 6450707008, + 6450713792, + 6450684128, + 6450557584, + 6450737440, + 6450702752, + 6450703536, + 6450554464, + 6450422928, + 6450484928, + 6450716080, + 6450640176, + 6450608080, + 6450642544, + 6450643792 ], "bases": [ { @@ -230172,7 +230184,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468562760, + "complete_object_locator": 6468566856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230181,7 +230193,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 6464712824, + "vtable_address": 6464716904, "methods": [ 6443748576, 6443748592, @@ -230305,7 +230317,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468280624, + "complete_object_locator": 6468284720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -230314,7 +230326,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 6464713320, + "vtable_address": 6464717400, "methods": [ 6445254752, 6445255488 @@ -230379,7 +230391,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468280856, + "complete_object_locator": 6468284952, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -230388,7 +230400,7 @@ }, { "type_name": "CScrubSystemEventListener", - "vtable_address": 6464712800, + "vtable_address": 6464716880, "methods": [ 6445255472, 6445255504 @@ -230411,7 +230423,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468280496, + "complete_object_locator": 6468284592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230420,14 +230432,14 @@ }, { "type_name": "CSecureLaunchSystem", - "vtable_address": 6466091832, + "vtable_address": 6466096040, "methods": [ - 6451281040 + 6451282608 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468601880, + "complete_object_locator": 6468605976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230436,12 +230448,12 @@ }, { "type_name": "CSecureLaunchSystem::CCallbackInternal_OnGameRichPresenceJoinRequested", - "vtable_address": 6466091792, + "vtable_address": 6466096000, "methods": [ - 6451380656, - 6451380880, - 6451319520, - 6451280736 + 6451382224, + 6451382448, + 6451321088, + 6451282304 ], "bases": [ { @@ -230475,7 +230487,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602176, + "complete_object_locator": 6468606272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230484,12 +230496,12 @@ }, { "type_name": "CSecureLaunchSystem::CCallbackInternal_OnNewUrlLaunchParameters", - "vtable_address": 6466091712, + "vtable_address": 6466095920, "methods": [ 6447785712, - 6451381216, + 6451382784, 6447758384, - 6451280816 + 6451282384 ], "bases": [ { @@ -230523,7 +230535,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602000, + "complete_object_locator": 6468606096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230532,9 +230544,9 @@ }, { "type_name": "CServerConfirmedReservationCheckCallback", - "vtable_address": 6466287336, + "vtable_address": 6466291448, "methods": [ - 6452237728 + 6452239312 ], "bases": [ { @@ -230554,7 +230566,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468657736, + "complete_object_locator": 6468661832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -230563,31 +230575,31 @@ }, { "type_name": "CServerOnlyModelEntity", - "vtable_address": 6464777272, + "vtable_address": 6464781352, "methods": [ 6445466928, 6445450176, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6445478800, 6443858256, 6443844048, @@ -230597,25 +230609,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905472, + 6460060080, + 6448907040, 6445479888, 6445483904, 6443799760, 6445466096, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -230632,13 +230644,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -230646,41 +230658,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -230692,33 +230704,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -230746,34 +230758,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -230783,24 +230795,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -230879,7 +230891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284944, + "complete_object_locator": 6468289040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -230888,14 +230900,14 @@ }, { "type_name": "CServerOnlyModelEntity", - "vtable_address": 6464779192, + "vtable_address": 6464783272, "methods": [ 6445449648, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -230971,7 +230983,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285104, + "complete_object_locator": 6468289200, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -230980,9 +230992,9 @@ }, { "type_name": "CServerOnlyModelEntity", - "vtable_address": 6464779248, + "vtable_address": 6464783328, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -231058,7 +231070,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285144, + "complete_object_locator": 6468289240, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -231067,12 +231079,12 @@ }, { "type_name": "CServerViewAngleChangeSystem", - "vtable_address": 6465707520, + "vtable_address": 6465711872, "methods": [ 6443748576, 6443748592, 6443748608, - 6448751952, + 6448753520, 6443748640, 6443748656, 6443748672, @@ -231125,11 +231137,11 @@ 6443749424, 6443749440, 6443749456, - 6448751920, + 6448753488, 6443749488, - 6448751904, - 6448751968, - 6448751888 + 6448753472, + 6448753536, + 6448753456 ], "bases": [ { @@ -231163,7 +231175,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468488616, + "complete_object_locator": 6468492712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231172,13 +231184,13 @@ }, { "type_name": "CShatterGlassGameSystem", - "vtable_address": 6466036592, + "vtable_address": 6466040800, "methods": [ 6443748576, 6443748592, 6443748608, 6443748624, - 6451063728, + 6451065296, 6443748656, 6443748672, 6443748688, @@ -231210,7 +231222,7 @@ 6443749104, 6443749120, 6443749136, - 6451063712, + 6451065280, 6443749168, 6443749184, 6443749200, @@ -231230,11 +231242,11 @@ 6443749424, 6443749440, 6443749456, - 6451063680, + 6451065248, 6443749488, - 6451063664, - 6451063824, - 6451063648 + 6451065232, + 6451065392, + 6451065216 ], "bases": [ { @@ -231268,7 +231280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468584840, + "complete_object_locator": 6468588936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231277,10 +231289,10 @@ }, { "type_name": "CShootingDebugtRdr", - "vtable_address": 6466296976, + "vtable_address": 6466301136, "methods": [ - 6452254080, - 6452154832 + 6452255664, + 6452156416 ], "bases": [ { @@ -231300,7 +231312,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468661824, + "complete_object_locator": 6468665920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231309,7 +231321,7 @@ }, { "type_name": "CSignalSemaphoreProceduralLayer", - "vtable_address": 6464427176, + "vtable_address": 6464431272, "methods": [ 6443858128, 6443796176, @@ -231333,7 +231345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222384, + "complete_object_locator": 6468226480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231342,10 +231354,10 @@ }, { "type_name": "CSimSequenceSetup", - "vtable_address": 6465882192, + "vtable_address": 6465886384, "methods": [ - 6450116064, - 6450115904 + 6450117632, + 6450117472 ], "bases": [ { @@ -231365,7 +231377,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551968, + "complete_object_locator": 6468556064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231374,7 +231386,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 6464716736, + "vtable_address": 6464720816, "methods": [ 6443748576, 6443748592, @@ -231484,7 +231496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281056, + "complete_object_locator": 6468285152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -231493,7 +231505,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 6464717232, + "vtable_address": 6464721312, "methods": [ 6445322192, 6445178208, @@ -231548,7 +231560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281240, + "complete_object_locator": 6468285336, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -231557,61 +231569,61 @@ }, { "type_name": "CSimpleCamera", - "vtable_address": 6466020936, - "methods": [ - 6450922336, - 6450991808, - 6451026608, - 6451049616, - 6451026336, - 6450924928, - 6451021232, - 6451021280, - 6451016672, - 6451015488, - 6451042768, - 6451042992, - 6450986864, - 6450984624, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6450983712, - 6450983616, - 6450989248, - 6450989328, - 6451046288, - 6451046400, - 6451042976, - 6450984432, - 6450980704, - 6450980832, - 6450980768, - 6450931200, - 6451046256, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952, - 6450979680 + "vtable_address": 6466025144, + "methods": [ + 6450923904, + 6450993376, + 6451028176, + 6451051184, + 6451027904, + 6450926496, + 6451022800, + 6451022848, + 6451018240, + 6451017056, + 6451044336, + 6451044560, + 6450988432, + 6450986192, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6450985280, + 6450985184, + 6450990816, + 6450990896, + 6451047856, + 6451047968, + 6451044544, + 6450986000, + 6450982272, + 6450982400, + 6450982336, + 6450932768, + 6451047824, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520, + 6450981248 ], "bases": [ { @@ -231645,7 +231657,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468581984, + "complete_object_locator": 6468586080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231654,13 +231666,13 @@ }, { "type_name": "CSimpleLoggingListener", - "vtable_address": 6467014936, + "vtable_address": 6467019000, "methods": [ - 6458620864, - 6458620976, - 6458620816, - 6458620832, - 6458620848 + 6458623056, + 6458623168, + 6458623008, + 6458623024, + 6458623040 ], "bases": [ { @@ -231680,7 +231692,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468861424, + "complete_object_locator": 6468865520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231689,13 +231701,13 @@ }, { "type_name": "CSingleUserRecipientFilter", - "vtable_address": 6464708232, + "vtable_address": 6464712312, "methods": [ 6445078448, - 6449982464, - 6449985312, - 6449983120, - 6449982976 + 6449984032, + 6449986880, + 6449984688, + 6449984544 ], "bases": [ { @@ -231729,7 +231741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468274904, + "complete_object_locator": 6468279000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231738,37 +231750,37 @@ }, { "type_name": "CSkeletonAnimationController", - "vtable_address": 6465879120, - "methods": [ - 6450256656, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450120016, - 6450119984, - 6448827856, - 6450120000, - 6448827040, - 6463705588, - 6463705588, - 6450192576, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6450189648, - 6450177280, - 6450267600, - 6450159216, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6465883312, + "methods": [ + 6450258224, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450121584, + 6450121552, + 6448829424, + 6450121568, + 6448828608, + 6463707780, + 6463707780, + 6450194144, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6450191216, + 6450178848, + 6450269168, + 6450160784, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -231788,7 +231800,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468550968, + "complete_object_locator": 6468555064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231797,10 +231809,10 @@ }, { "type_name": "CSkeletonAnimationHistoryContext", - "vtable_address": 6465879096, + "vtable_address": 6465883288, "methods": [ - 6450116864, - 6450119440 + 6450118432, + 6450121008 ], "bases": [ { @@ -231820,7 +231832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551416, + "complete_object_locator": 6468555512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231829,10 +231841,10 @@ }, { "type_name": "CSkeletonBoneSetupHelperSequenceSetup", - "vtable_address": 6465879888, + "vtable_address": 6465884080, "methods": [ - 6450116320, - 6450116032 + 6450117888, + 6450117600 ], "bases": [ { @@ -231852,7 +231864,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468548720, + "complete_object_locator": 6468552816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -231861,37 +231873,37 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 6465878456, - "methods": [ - 6450189664, - 6450113600, - 6450119696, - 6450147280, - 6450273904, - 6450114768, - 6450297248, - 6450235680, + "vtable_address": 6465882648, + "methods": [ + 6450191232, + 6450115168, + 6450121264, + 6450148848, + 6450275472, + 6450116336, + 6450298816, + 6450237248, 6443972304, 6443972288, - 6450207488, - 6450256816, - 6450258320, - 6450267680, - 6450158576, - 6450177152, - 6450236704, - 6450243712, - 6450241296, - 6449657760, - 6450241504, - 6450238496, - 6450235408, - 6450158272, - 6450159232, + 6450209056, + 6450258384, + 6450259888, + 6450269248, + 6450160144, + 6450178720, + 6450238272, + 6450245280, + 6450242864, + 6449659328, + 6450243072, + 6450240064, + 6450236976, + 6450159840, + 6450160800, 6443986528, - 6450231696, + 6450233264, 6443981728, - 6450231792 + 6450233360 ], "bases": [ { @@ -231925,7 +231937,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468548520, + "complete_object_locator": 6468552616, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -231934,9 +231946,9 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 6465878696, + "vtable_address": 6465882888, "methods": [ - 6450257520 + 6450259088 ], "bases": [ { @@ -231970,7 +231982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468548560, + "complete_object_locator": 6468552656, "offset": 384, "constructor_displacement": 0, "class_attributes": 1 @@ -231979,13 +231991,13 @@ }, { "type_name": "CSkeletonInstance::NetworkVar_m_modelState", - "vtable_address": 6465878408, + "vtable_address": 6465882600, "methods": [ - 6450189632, - 6450231728, - 6450231856, - 6450231824, - 6450256608 + 6450191200, + 6450233296, + 6450233424, + 6450233392, + 6450258176 ], "bases": [ { @@ -232005,7 +232017,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468550840, + "complete_object_locator": 6468554936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232014,32 +232026,32 @@ }, { "type_name": "CSkyboxReference", - "vtable_address": 6466098640, + "vtable_address": 6466102848, "methods": [ 6445466896, - 6451281168, + 6451282736, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451388960, - 6450413456, - 6450585280, - 6450586832, - 6451281920, - 6451404592, - 6450580640, + 6450411680, + 6451390528, + 6450415024, + 6450586848, + 6450588400, + 6451283488, + 6451406160, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -232048,25 +232060,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451320368, + 6460060080, + 6451321936, 6445562720, - 6451384000, + 6451385568, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -232083,13 +232095,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -232097,39 +232109,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -232143,33 +232155,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -232197,34 +232209,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -232267,7 +232279,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603352, + "complete_object_locator": 6468607448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232276,10 +232288,10 @@ }, { "type_name": "CSmokeDepthCopy", - "vtable_address": 6466884504, + "vtable_address": 6466888616, "methods": [ - 6452400032, - 6456702736, + 6452401648, + 6456704544, 6443773360 ], "bases": [ @@ -232314,7 +232326,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813688, + "complete_object_locator": 6468817784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232323,9 +232335,9 @@ }, { "type_name": "CSmokeVolumeSceneObject", - "vtable_address": 6466322312, + "vtable_address": 6466326472, "methods": [ - 6452351504, + 6452353120, 6443765216, 6443765488 ], @@ -232347,7 +232359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468674496, + "complete_object_locator": 6468678592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232356,14 +232368,14 @@ }, { "type_name": "CSmokeVolumeSceneObjectDesc", - "vtable_address": 6466322344, + "vtable_address": 6466326504, "methods": [ - 6452384768, - 6452360640, + 6452386384, + 6452362256, 6443766128, - 6452366304, - 6452380512, - 6452360336, + 6452367920, + 6452382128, + 6452361952, 6443766480, 6443766496, 6443766512, @@ -232380,7 +232392,7 @@ 6443766688, 6443766704, 6443766720, - 6452360016 + 6452361632 ], "bases": [ { @@ -232414,7 +232426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468674624, + "complete_object_locator": 6468678720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232423,13 +232435,13 @@ }, { "type_name": "CSmokeVolumeSystem", - "vtable_address": 6465355824, + "vtable_address": 6465359984, "methods": [ 6443748576, 6443748592, 6443748608, - 6447896176, - 6447896352, + 6447897744, + 6447897920, 6443748656, 6443748672, 6443748688, @@ -232462,7 +232474,7 @@ 6443749120, 6443749136, 6443749152, - 6447911328, + 6447912896, 6443749184, 6443749200, 6443749216, @@ -232481,11 +232493,11 @@ 6443749424, 6443749440, 6443749456, - 6447916640, + 6447918208, 6443749488, - 6447893632, + 6447895200, 6447875520, - 6447928464 + 6447930032 ], "bases": [ { @@ -232519,7 +232531,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468434240, + "complete_object_locator": 6468438336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232528,10 +232540,10 @@ }, { "type_name": "CSniperZoomStencilRenderer", - "vtable_address": 6466884400, + "vtable_address": 6466888512, "methods": [ - 6457011408, - 6456702784, + 6457013600, + 6456704592, 6443773360 ], "bases": [ @@ -232552,7 +232564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468813560, + "complete_object_locator": 6468817656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232561,16 +232573,16 @@ }, { "type_name": "CSoundArea", - "vtable_address": 6466118352, + "vtable_address": 6466122560, "methods": [ - 6451447600, - 6463705588, - 6463705588 + 6451449184, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468608864, + "complete_object_locator": 6468612960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232579,7 +232591,7 @@ }, { "type_name": "CSoundAreaGameSystem", - "vtable_address": 6466118448, + "vtable_address": 6466122656, "methods": [ 6443748576, 6443748592, @@ -232607,7 +232619,7 @@ 6443748944, 6443748960, 6443748976, - 6451460400, + 6451461984, 6443749008, 6443749024, 6443749040, @@ -232637,11 +232649,11 @@ 6443749424, 6443749440, 6443749456, - 6451521808, + 6451523392, 6443749488, - 6451465712, - 6451447648, - 6451544064 + 6451467296, + 6451449232, + 6451545648 ], "bases": [ { @@ -232675,7 +232687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609240, + "complete_object_locator": 6468613336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232684,11 +232696,11 @@ }, { "type_name": "CSoundAreaOrientedBox", - "vtable_address": 6466118416, + "vtable_address": 6466122624, "methods": [ - 6451447712, - 6451495120, - 6451462608 + 6451449296, + 6451496704, + 6451464192 ], "bases": [ { @@ -232708,7 +232720,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609112, + "complete_object_locator": 6468613208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232717,11 +232729,11 @@ }, { "type_name": "CSoundAreaSphere", - "vtable_address": 6466118384, + "vtable_address": 6466122592, "methods": [ - 6451447760, - 6451495232, - 6451462896 + 6451449344, + 6451496816, + 6451464480 ], "bases": [ { @@ -232741,7 +232753,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608984, + "complete_object_locator": 6468613080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232750,33 +232762,33 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 6466104256, + "vtable_address": 6466108464, "methods": [ - 6451415120, - 6451415280, - 6451414512, - 6451414976, - 6451415600, - 6451415808, + 6451416704, + 6451416864, + 6451416096, + 6451416560, 6451417184, - 6451416608, - 6451416032, - 6451417776, - 6451417968, - 6451418000, - 6451418032, + 6451417392, + 6451418768, 6451418192, - 6451418208, - 6451418224, - 6451418272, - 6451418320, - 6451418896, - 6451418432, - 6451418944, - 6451418352, - 6451418384, - 6451418416, - 6451419392 + 6451417616, + 6451419360, + 6451419552, + 6451419584, + 6451419616, + 6451419776, + 6451419792, + 6451419808, + 6451419856, + 6451419904, + 6451420480, + 6451420016, + 6451420528, + 6451419936, + 6451419968, + 6451420000, + 6451420976 ], "bases": [ { @@ -232824,7 +232836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468604944, + "complete_object_locator": 6468609040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -232833,7 +232845,7 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 6466104464, + "vtable_address": 6466108672, "methods": [ 6443748576, 6443748592, @@ -232847,7 +232859,7 @@ 6443748720, 6443748736, 6443748752, - 6451419456, + 6451421040, 6443748784, 6443748800, 6443748816, @@ -232862,7 +232874,7 @@ 6443748960, 6443748976, 6443748992, - 6451419440, + 6451421024, 6443749024, 6443749040, 6443749056, @@ -232883,7 +232895,7 @@ 6443749296, 6443749312, 6443749328, - 6451414016, + 6451415600, 6443749360, 6443749376, 6443749392, @@ -232891,11 +232903,11 @@ 6443749424, 6443749440, 6443749456, - 6451413984, + 6451415568, 6443749488, - 6451413968, - 6451425336, - 6451413952 + 6451415552, + 6451426920, + 6451415536 ], "bases": [ { @@ -232943,7 +232955,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605088, + "complete_object_locator": 6468609184, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -232952,12 +232964,12 @@ }, { "type_name": "CSoundEmitterSystem", - "vtable_address": 6466108320, + "vtable_address": 6466112528, "methods": [ - 6451428240, + 6451429824, 6443748592, 6443748608, - 6451428256, + 6451429840, 6443748640, 6443748656, 6443748672, @@ -233010,11 +233022,11 @@ 6443749424, 6443749440, 6443749456, - 6451428208, + 6451429792, 6443749488, - 6451428192, - 6451428656, - 6451428176 + 6451429776, + 6451430240, + 6451429760 ], "bases": [ { @@ -233034,7 +233046,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468604600, + "complete_object_locator": 6468608696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -233043,7 +233055,7 @@ }, { "type_name": "CSoundOpGameSystem", - "vtable_address": 6464709760, + "vtable_address": 6464713840, "methods": [ 6445184064, 6443748592, @@ -233153,7 +233165,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468279544, + "complete_object_locator": 6468283640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -233162,7 +233174,7 @@ }, { "type_name": "CSoundOpvarSetPointManager", - "vtable_address": 6466112424, + "vtable_address": 6466116632, "methods": [ 6443748576, 6443748592, @@ -233174,7 +233186,7 @@ 6443748688, 6443748704, 6443748720, - 6451460384, + 6451461968, 6443748752, 6443748768, 6443748784, @@ -233220,11 +233232,11 @@ 6443749424, 6443749440, 6443749456, - 6451521840, + 6451523424, 6443749488, - 6451465728, - 6451448032, - 6451544080 + 6451467312, + 6451449616, + 6451545664 ], "bases": [ { @@ -233258,7 +233270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608512, + "complete_object_locator": 6468612608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -233267,13 +233279,13 @@ }, { "type_name": "CSoundOpvarSetPointManager_MP", - "vtable_address": 6466107672, + "vtable_address": 6466111880, "methods": [ 6443748576, 6443748592, 6443748608, 6443748624, - 6451425712, + 6451427296, 6443748656, 6443748672, 6443748688, @@ -233290,7 +233302,7 @@ 6443748864, 6443748880, 6443748896, - 6451425664, + 6451427248, 6443748928, 6443748944, 6443748960, @@ -233325,11 +233337,11 @@ 6443749424, 6443749440, 6443749456, - 6451425392, + 6451426976, 6443749488, - 6451425376, - 6451427152, - 6451425360 + 6451426960, + 6451428736, + 6451426944 ], "bases": [ { @@ -233363,7 +233375,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468604056, + "complete_object_locator": 6468608152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -233372,15 +233384,15 @@ }, { "type_name": "CSoundPatch", - "vtable_address": 6466119200, + "vtable_address": 6466123408, "methods": [ - 6451520240, - 6451476656 + 6451521824, + 6451478240 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468608392, + "complete_object_locator": 6468612488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -233389,12 +233401,12 @@ }, { "type_name": "CSoundPatchSaveRestoreOps", - "vtable_address": 6466105136, + "vtable_address": 6466109344, "methods": [ - 6451422624, - 6451423200, - 6451430672, - 6451430720, + 6451424208, + 6451424784, + 6451432256, + 6451432304, 6443852464, 6443799744 ], @@ -233444,7 +233456,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605264, + "complete_object_locator": 6468609360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -233453,7 +233465,7 @@ }, { "type_name": "CSoundscapeSystem", - "vtable_address": 6464723032, + "vtable_address": 6464727112, "methods": [ 6443748576, 6443748592, @@ -233549,7 +233561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468281464, + "complete_object_locator": 6468285560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -233558,13 +233570,13 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem", - "vtable_address": 6465805336, + "vtable_address": 6465809528, "methods": [ 6443748576, 6443748592, 6443748608, - 6449407392, - 6449407664, + 6449408944, + 6449409232, 6443748656, 6443748672, 6443748688, @@ -233580,7 +233592,7 @@ 6443748848, 6443748864, 6443748880, - 6449408016, + 6449409584, 6443748912, 6443748928, 6443748944, @@ -233616,11 +233628,11 @@ 6443749424, 6443749440, 6443749456, - 6449407360, + 6449408912, 6443749488, - 6449407344, - 6449412848, - 6449407328 + 6449408896, + 6449414416, + 6449408880 ], "bases": [ { @@ -233668,7 +233680,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516496, + "complete_object_locator": 6468520592, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -233677,10 +233689,10 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem::CServerSideClient_GameEventLegacyProxy", - "vtable_address": 6465804344, + "vtable_address": 6465808536, "methods": [ - 6449408784, - 6449408352 + 6449410352, + 6449409904 ], "bases": [ { @@ -233700,7 +233712,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516640, + "complete_object_locator": 6468520736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -233709,203 +233721,203 @@ }, { "type_name": "CSource2Client", - "vtable_address": 6466021552, - "methods": [ - 6450946256, - 6450957392, - 6451031616, - 6450991968, - 6451046480, - 6451026576, - 6450980304, - 6450987936, - 6451032640, - 6451004272, - 6450987920, - 6451042912, - 6451003488, - 6451032096, - 6451025856, - 6450955200, - 6450975472, - 6451047840, - 6450984480, - 6450984528, - 6450985008, - 6451020160, - 6451029776, - 6451057296, - 6450958544, - 6450955264, - 6450988192, - 6451042880, - 6451047936, - 6450982400, - 6450950448, - 6450957136, - 6450985568, - 6451014672, - 6450977744, - 6451032544, - 6450975808, - 6450990368, - 6450989888, - 6450989872, - 6451019808, - 6450942080, - 6451056464, - 6451020288, - 6451049280, - 6450942064, - 6451018416, - 6451020176, - 6451056816, - 6450930512, - 6450977360, - 6450985312, - 6451053392, - 6451020144, - 6450991472, - 6451056768, - 6451014048, - 6450942000, - 6450980288, - 6450941856, - 6451016272, - 6451016304, - 6451015696, - 6451016128, - 6451015664, + "vtable_address": 6466025760, + "methods": [ + 6450947824, + 6450958960, + 6451033184, + 6450993536, + 6451048048, + 6451028144, + 6450981872, + 6450989504, + 6451034208, + 6451005840, + 6450989488, 6451044480, - 6450942640, - 6451016336, - 6451016752, - 6451046416, - 6450994256, - 6450942624, - 6451054352, - 6451046448, - 6450979344, - 6451019376, - 6450979504, - 6450983184, - 6451047856, + 6451005056, + 6451033664, + 6451027424, + 6450956768, + 6450977040, + 6451049408, + 6450986048, + 6450986096, + 6450986576, + 6451021728, + 6451031344, + 6451058864, + 6450960112, + 6450956832, + 6450989760, + 6451044448, + 6451049504, + 6450983968, + 6450952016, + 6450958704, + 6450987136, + 6451016240, + 6450979312, + 6451034112, + 6450977376, + 6450991936, + 6450991456, + 6450991440, + 6451021376, + 6450943648, + 6451058032, + 6451021856, + 6451050848, + 6450943632, + 6451019984, + 6451021744, + 6451058384, + 6450932080, + 6450978928, + 6450986880, + 6451054960, + 6451021712, + 6450993040, + 6451058336, + 6451015616, + 6450943568, + 6450981856, + 6450943424, + 6451017840, + 6451017872, + 6451017264, + 6451017696, + 6451017232, + 6451046048, + 6450944208, + 6451017904, + 6451018320, + 6451047984, + 6450995824, + 6450944192, + 6451055920, + 6451048016, + 6450980912, + 6451020944, + 6450981072, + 6450984752, + 6451049424, + 6450984496, + 6450986400, + 6451005392, + 6450982768, 6450982928, - 6450984832, - 6451003824, - 6450981200, - 6450981360, - 6450981056, + 6450982624, + 6450984128, + 6450983888, + 6450981584, + 6450984032, + 6450983040, + 6450983344, + 6450984704, + 6450986528, + 6450985824, + 6450987200, + 6450987904, + 6450956960, + 6451024896, + 6450988320, + 6450980944, + 6451056192, + 6450956896, + 6451055840, + 6450956880, + 6451056912, + 6450956928, + 6451055136, + 6450956848, + 6451053248, + 6450988352, + 6451008976, + 6450960064, + 6451005808, + 6450988336, + 6450981296, + 6451016224, + 6451058368, + 6451057808, + 6451055904, + 6450985536, + 6451021696, + 6451055856, 6450982560, - 6450982320, - 6450980016, - 6450982464, - 6450981472, - 6450981776, - 6450983136, - 6450984960, - 6450984256, - 6450985632, - 6450986336, - 6450955392, - 6451023328, - 6450986752, - 6450979376, - 6451054624, - 6450955328, - 6451054272, - 6450955312, - 6451055344, - 6450955360, - 6451053568, - 6450955280, - 6451051680, - 6450986784, - 6451007408, - 6450958496, - 6451004240, - 6450986768, - 6450979728, - 6451014656, - 6451056800, - 6451056240, - 6451054336, - 6450983968, - 6451020128, - 6451054288, - 6450980992, - 6450977664, - 6451014272, - 6450985168, - 6450930544, - 6450930656, - 6450983984, - 6450989856, - 6450988176, + 6450979232, + 6451015840, + 6450986736, + 6450932112, + 6450932224, + 6450985552, + 6450991424, + 6450989744, + 6450981312, + 6450988688, + 6450984592, + 6450989712, + 6450924960, + 6450924976, + 6451005856, + 6450989040, + 6450956784, + 6450951264, + 6451022432, + 6450985568, + 6450984608, + 6450979344, + 6451036928, + 6451056880, + 6450924992, 6450979744, - 6450987120, - 6450983024, - 6450988144, - 6450923392, - 6450923408, - 6451004288, - 6450987472, - 6450955216, - 6450949696, - 6451020864, + 6450979456, + 6451035680, + 6451050864, + 6451054912, + 6450990496, + 6450981392, + 6450988752, + 6451020880, + 6451020912, + 6450985616, + 6451020816, + 6450989024, + 6450986144, + 6451017776, + 6450960224, + 6450958944, + 6450987952, + 6450983744, + 6450963872, + 6450960048, + 6450927696, + 6451036640, + 6450981360, 6450984000, - 6450983040, - 6450977776, - 6451035360, - 6451055312, - 6450923424, - 6450978176, - 6450977888, - 6451034112, - 6451049296, - 6451053344, - 6450988928, - 6450979824, - 6450987184, - 6451019312, - 6451019344, - 6450984048, - 6451019248, - 6450987456, - 6450984576, - 6451016208, - 6450958656, - 6450957376, - 6450986384, - 6450982176, - 6450962304, - 6450958480, - 6450926128, - 6451035072, - 6450979792, - 6450982432, - 6451027216, - 6451022832, - 6451030400, - 6450995296, - 6451027328, - 6451026512, - 6451027360, - 6451026544, - 6451020080, - 6450980976, - 6450980960, - 6450981024, - 6450981008, - 6450980944, - 6450981040, - 6450980272, - 6450980256, - 6450979696, - 6450985264, - 6450979712, - 6450980208, - 6451004080 + 6451028784, + 6451024400, + 6451031968, + 6450996864, + 6451028896, + 6451028080, + 6451028928, + 6451028112, + 6451021648, + 6450982544, + 6450982528, + 6450982592, + 6450982576, + 6450982512, + 6450982608, + 6450981840, + 6450981824, + 6450981264, + 6450986832, + 6450981280, + 6450981776, + 6451005648 ], "bases": [ { @@ -234051,7 +234063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468579336, + "complete_object_locator": 6468583432, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -234060,9 +234072,9 @@ }, { "type_name": "CSource2Client", - "vtable_address": 6466023120, + "vtable_address": 6466027328, "methods": [ - 6451048800 + 6451050368 ], "bases": [ { @@ -234208,7 +234220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468580336, + "complete_object_locator": 6468584432, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -234217,9 +234229,9 @@ }, { "type_name": "CSource2Client", - "vtable_address": 6466023136, + "vtable_address": 6466027344, "methods": [ - 6451020640 + 6451022208 ], "bases": [ { @@ -234365,7 +234377,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468580376, + "complete_object_locator": 6468584472, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -234374,11 +234386,11 @@ }, { "type_name": "CSource2ClientMiniDumpCommentBuilder", - "vtable_address": 6466006552, + "vtable_address": 6466010808, "methods": [ - 6450888784, - 6463407805, - 6450888592 + 6450890352, + 6463409997, + 6450890160 ], "bases": [ { @@ -234398,7 +234410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468576008, + "complete_object_locator": 6468580104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -234407,7 +234419,7 @@ }, { "type_name": "CSource2EntitySystem", - "vtable_address": 6465816864, + "vtable_address": 6465821056, "methods": [ 6443748576, 6443748592, @@ -234465,11 +234477,11 @@ 6443749424, 6443749440, 6443749456, - 6449728304, + 6449729872, 6443749488, - 6449545728, - 6449498976, - 6449788576 + 6449547296, + 6449500544, + 6449790144 ], "bases": [ { @@ -234503,7 +234515,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468523784, + "complete_object_locator": 6468527880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -234512,7 +234524,7 @@ }, { "type_name": "CSource2EntitySystemDeallocator", - "vtable_address": 6465803600, + "vtable_address": 6465807792, "methods": [ 6443748576, 6443748592, @@ -234570,11 +234582,11 @@ 6443749424, 6443749440, 6443749456, - 6449406336, + 6449407888, 6443749488, - 6449406320, - 6449406592, - 6449406304 + 6449407872, + 6449408144, + 6449407856 ], "bases": [ { @@ -234608,7 +234620,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468515656, + "complete_object_locator": 6468519752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -234617,25 +234629,25 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification", - "vtable_address": 6465164368, + "vtable_address": 6465168448, "methods": [ - 6447144688, - 6457189536, - 6447126048, - 6447126496, - 6447126736, - 6457189584, - 6457186560, - 6447126768, - 6447128528, - 6447127104, + 6447144912, + 6457191728, + 6447126272, + 6447126720, + 6447126960, + 6457191776, + 6457188752, + 6447126976, + 6447128752, + 6447127328, 6443742160, - 6447128032, - 6457190896, - 6457192720, - 6447130016, - 6447130832, - 6447130800 + 6447128256, + 6457193088, + 6457194912, + 6447129360, + 6447131040, + 6447131024 ], "bases": [ { @@ -234669,7 +234681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389216, + "complete_object_locator": 6468393312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -234678,25 +234690,25 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification_Client", - "vtable_address": 6465161472, + "vtable_address": 6465165552, "methods": [ - 6447124400, - 6457189536, - 6447109248, - 6447111056, - 6447111760, - 6457189584, - 6457186560, - 6447111776, - 6447116512, - 6447113728, + 6447124624, + 6457191728, + 6447109472, + 6447111280, + 6447111984, + 6457191776, + 6457188752, + 6447112000, + 6447116736, + 6447113952, 6443742160, - 6447116064, - 6457190896, - 6457192720, - 6447116544, - 6447116976, - 6447116960 + 6447116288, + 6457193088, + 6457194912, + 6447116768, + 6447117200, + 6447117184 ], "bases": [ { @@ -234730,7 +234742,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389352, + "complete_object_locator": 6468393448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -234739,17 +234751,17 @@ }, { "type_name": "CSpaceAgnosticBoneAccessor", - "vtable_address": 6467023872, + "vtable_address": 6467027936, "methods": [ - 6458827312, - 6458827680, - 6458827792, - 6458828592, - 6458827824, - 6458828496, - 6458827696, - 6458828704, - 6458827872 + 6458829504, + 6458829872, + 6458829984, + 6458830784, + 6458830016, + 6458830688, + 6458829888, + 6458830896, + 6458830064 ], "bases": [ { @@ -234769,7 +234781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468864280, + "complete_object_locator": 6468868376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -234778,13 +234790,13 @@ }, { "type_name": "CSparseShadowTreeGameSystem", - "vtable_address": 6465883824, + "vtable_address": 6465888016, "methods": [ - 6450197168, + 6450198736, 6443748592, - 6450272528, - 6450168800, - 6450168832, + 6450274096, + 6450170368, + 6450170400, 6443748656, 6443748672, 6443748688, @@ -234795,8 +234807,8 @@ 6443748768, 6443748784, 6443748800, - 6450244256, - 6450243584, + 6450245824, + 6450245152, 6443748848, 6443748864, 6443748880, @@ -234809,7 +234821,7 @@ 6443748992, 6443749008, 6443749024, - 6450241568, + 6450243136, 6443749056, 6443749072, 6443749088, @@ -234825,7 +234837,7 @@ 6443749248, 6443749264, 6443749280, - 6450168128, + 6450169696, 6443749312, 6443749328, 6443749344, @@ -234836,11 +234848,11 @@ 6443749424, 6443749440, 6443749456, - 6450259456, + 6450261024, 6443749488, - 6450162192, - 6450113952, - 6450302544 + 6450163760, + 6450115520, + 6450304112 ], "bases": [ { @@ -234888,7 +234900,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552096, + "complete_object_locator": 6468556192, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -234897,10 +234909,10 @@ }, { "type_name": "CSparseShadowTreeGameSystem", - "vtable_address": 6465884320, + "vtable_address": 6465888512, "methods": [ - 6450297504, - 6450258288 + 6450299072, + 6450259856 ], "bases": [ { @@ -234948,7 +234960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552280, + "complete_object_locator": 6468556376, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -234957,7 +234969,7 @@ }, { "type_name": "CSpawnGroupCompletionCallbackGameSystem", - "vtable_address": 6465803104, + "vtable_address": 6465807296, "methods": [ 6443748576, 6443748592, @@ -234973,9 +234985,9 @@ 6443748752, 6443748768, 6443748784, - 6449399456, + 6449401008, 6443748816, - 6449398032, + 6449399584, 6443748848, 6443748864, 6443748880, @@ -234985,11 +234997,11 @@ 6443748944, 6443748960, 6443748976, - 6449397824, + 6449399376, 6443749008, 6443749024, 6443749040, - 6449397616, + 6449399168, 6443749072, 6443749088, 6443749104, @@ -235015,11 +235027,11 @@ 6443749424, 6443749440, 6443749456, - 6449397584, + 6449399136, 6443749488, - 6449397568, - 6449406368, - 6449397552 + 6449399120, + 6449407920, + 6449399104 ], "bases": [ { @@ -235053,7 +235065,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468514848, + "complete_object_locator": 6468518944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -235062,7 +235074,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 6464711624, + "vtable_address": 6464715704, "methods": [ 6445089184, 6445294640, @@ -235133,7 +235145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468280016, + "complete_object_locator": 6468284112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -235142,7 +235154,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 6464711808, + "vtable_address": 6464715888, "methods": [ 6443748576, 6443748592, @@ -235252,7 +235264,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468280240, + "complete_object_locator": 6468284336, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -235261,10 +235273,10 @@ }, { "type_name": "CSpawnInPortraitEntityFilter", - "vtable_address": 6466456208, + "vtable_address": 6466460352, "methods": [ - 6453089040, - 6453087712 + 6453090656, + 6453089328 ], "bases": [ { @@ -235284,7 +235296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468699688, + "complete_object_locator": 6468703784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -235293,35 +235305,35 @@ }, { "type_name": "CSpiderGraph", - "vtable_address": 6466580688, + "vtable_address": 6466584816, "methods": [ 6443876544, - 6461535472, - 6453996736, - 6454003424, - 6461352784, - 6461546688, - 6461559344, + 6461537664, + 6453998496, + 6454005184, + 6461354976, + 6461548880, + 6461561536, 6443845056, - 6454025536, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6454027296, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -235334,12 +235346,12 @@ 6443913856, 6443821360, 6443848384, - 6454048304, - 6461505456, - 6461505088, - 6461526000, + 6454050064, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -235354,33 +235366,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453996592, - 6453975648, + 6461548896, + 6453998352, + 6453977408, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453976560, - 6453976320 + 6453978320, + 6453978080 ], "bases": [ { @@ -235442,7 +235454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468729576, + "complete_object_locator": 6468733672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -235451,32 +235463,32 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 6464654768, + "vtable_address": 6464658848, "methods": [ 6445466928, 6444463520, - 6448846864, - 6460051264, - 6451501408, - 6448816832, - 6451527792, - 6450413456, - 6450585280, - 6450586832, - 6451449696, - 6451536432, - 6448980192, + 6448848432, + 6460053456, + 6451502992, + 6448818400, + 6451529376, + 6450415024, + 6450586848, + 6450588400, + 6451451280, + 6451538016, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -235485,26 +235497,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444467696, 6444476832, 6444477088, 6443799760, 6444468864, - 6451480224, + 6451481808, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6451501008, + 6450678224, + 6451502592, 6443817344, 6443817328, 6443817248, @@ -235520,13 +235532,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -235534,41 +235546,41 @@ 6443887776, 6443887712, 6443887840, - 6451461472, + 6451463056, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6451527680, - 6449042320, - 6450473488, - 6451498480, - 6451498688, + 6450735600, + 6451529264, + 6449043872, + 6450475056, + 6451500064, + 6451500272, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -235580,33 +235592,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451460736, - 6451215568, + 6451462320, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -235634,34 +235646,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6451480320, - 6450500240, + 6450653808, + 6451481904, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -235671,29 +235683,29 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6451480688, - 6451480480 + 6451482272, + 6451482064 ], "bases": [ { @@ -235783,7 +235795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468252072, + "complete_object_locator": 6468256168, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -235792,14 +235804,14 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 6464656704, + "vtable_address": 6464660784, "methods": [ 6444463244, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -235889,7 +235901,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468252360, + "complete_object_locator": 6468256456, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -235898,9 +235910,9 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 6464656760, + "vtable_address": 6464660840, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -235990,7 +236002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468252400, + "complete_object_locator": 6468256496, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -235999,9 +236011,9 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 6465879360, + "vtable_address": 6465883552, "methods": [ - 6450114144 + 6450115712 ], "bases": [ { @@ -236049,7 +236061,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551544, + "complete_object_locator": 6468555640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -236058,10 +236070,10 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 6465879376, + "vtable_address": 6465883568, "methods": [ - 6450112936, - 6450233440 + 6450114504, + 6450235008 ], "bases": [ { @@ -236109,7 +236121,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551728, + "complete_object_locator": 6468555824, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -236118,11 +236130,11 @@ }, { "type_name": "CSteamWorksGameStatsClient", - "vtable_address": 6466329656, + "vtable_address": 6466333816, "methods": [ - 6452388176, - 6447951904, - 6447953952, + 6452389792, + 6447953472, + 6447955520, 6443748624, 6443748640, 6443748656, @@ -236150,10 +236162,10 @@ 6443749008, 6443749024, 6443749040, - 6447945104, - 6447944912, + 6447946672, + 6447946480, 6443749088, - 6447951920, + 6447953488, 6443749120, 6443749136, 6443749152, @@ -236167,8 +236179,8 @@ 6443749280, 6443749296, 6443749312, - 6447953072, - 6447952912, + 6447954640, + 6447954480, 6443749360, 6443749376, 6443749392, @@ -236176,19 +236188,19 @@ 6443749424, 6443749440, 6443749456, - 6452407360, + 6452408976, 6443749488, - 6452360624, - 6452351568, - 6452431360, - 6447942176, - 6452431264, - 6447953056, - 6447949872, - 6452383104, - 6452353600, - 6452402800, - 6452359264 + 6452362240, + 6452353184, + 6452432976, + 6447943744, + 6452432880, + 6447954624, + 6447951440, + 6452384720, + 6452355216, + 6452404416, + 6452360880 ], "bases": [ { @@ -236264,7 +236276,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468676120, + "complete_object_locator": 6468680216, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -236273,10 +236285,10 @@ }, { "type_name": "CSteamWorksGameStatsClient", - "vtable_address": 6466330216, + "vtable_address": 6466334376, "methods": [ - 6452350476, - 6452379680 + 6452352092, + 6452381296 ], "bases": [ { @@ -236352,7 +236364,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468676280, + "complete_object_locator": 6468680376, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -236361,11 +236373,11 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 6465392824, + "vtable_address": 6465396984, "methods": [ - 6447949648, - 6447951904, - 6447953952, + 6447951216, + 6447953472, + 6447955520, 6443748624, 6443748640, 6443748656, @@ -236393,10 +236405,10 @@ 6443749008, 6443749024, 6443749040, - 6447945104, - 6447944912, + 6447946672, + 6447946480, 6443749088, - 6447951920, + 6447953488, 6443749120, 6443749136, 6443749152, @@ -236410,8 +236422,8 @@ 6443749280, 6443749296, 6443749312, - 6447953072, - 6447952912, + 6447954640, + 6447954480, 6443749360, 6443749376, 6443749392, @@ -236422,15 +236434,15 @@ 6443749472, 6443749488, 6443749504, - 6447935424, - 6463705588, - 6447942176, - 6447957840, - 6447953056, - 6447949872, - 6463705588, - 6463705588, - 6447952576 + 6447936992, + 6463707780, + 6447943744, + 6447959408, + 6447954624, + 6447951440, + 6463707780, + 6463707780, + 6447954144 ], "bases": [ { @@ -236492,7 +236504,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441120, + "complete_object_locator": 6468445216, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -236501,10 +236513,10 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 6465393376, + "vtable_address": 6465397536, "methods": [ - 6447934668, - 6447942800 + 6447936236, + 6447944368 ], "bases": [ { @@ -236566,7 +236578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441272, + "complete_object_locator": 6468445368, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -236575,25 +236587,25 @@ }, { "type_name": "CSteam_Voice_Encoding", - "vtable_address": 6464972512, - "methods": [ - 6446235744, - 6457189536, - 6446230768, - 6446231248, - 6446231440, - 6457189584, - 6457186560, - 6446231536, - 6446233280, - 6446231968, + "vtable_address": 6464976608, + "methods": [ + 6446236128, + 6457191728, + 6446231152, + 6446231632, + 6446231824, + 6457191776, + 6457188752, + 6446231920, + 6446233600, + 6446232112, 6443742160, - 6446233168, - 6457190896, - 6457192720, - 6446233680, - 6446233808, - 6446233728 + 6446233312, + 6457193088, + 6457194912, + 6446234064, + 6446234128, + 6446234112 ], "bases": [ { @@ -236627,7 +236639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468296808, + "complete_object_locator": 6468301040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236636,14 +236648,14 @@ }, { "type_name": "CStructuredReport,class Vec3D,float,float,class Vec3D,float,bool,bool,bool,bool,float,float,float>", - "vtable_address": 6465669504, + "vtable_address": 6465673680, "methods": [ - 6448510464 + 6448512032 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468484816, + "complete_object_locator": 6468488912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236652,14 +236664,14 @@ }, { "type_name": "CStructuredReport,class Vec3D,class Vec3D,class Vec3D,float,float,float,float,bool,bool>", - "vtable_address": 6465670472, + "vtable_address": 6465674648, "methods": [ - 6448510688 + 6448512256 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468484936, + "complete_object_locator": 6468489032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236668,14 +236680,14 @@ }, { "type_name": "CStructuredReport,class Vec3D,class Vec3D,class Vec3D,class Vec3D,class Vec3D >", - "vtable_address": 6464703752, + "vtable_address": 6464707864, "methods": [ 6444999840 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468273448, + "complete_object_locator": 6468277544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236684,14 +236696,14 @@ }, { "type_name": "CStructuredReport,float,float,class Vec2D,class Vec2D,float,float>", - "vtable_address": 6466058336, + "vtable_address": 6466062560, "methods": [ - 6451162624 + 6451164192 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468593072, + "complete_object_locator": 6468597168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236700,26 +236712,26 @@ }, { "type_name": "CSubtickMoveStep", - "vtable_address": 6464859072, + "vtable_address": 6464863152, "methods": [ 6445585920, - 6457189536, + 6457191728, 6445584272, 6445584432, 6445584480, - 6457189584, - 6457186560, + 6457191776, + 6457188752, 6445584496, 6445585808, 6445584624, 6443742160, 6445585376, - 6457190896, - 6457192720, + 6457193088, + 6457194912, 6445585824, 6445585856, 6445585840, - 6457187520, + 6457189712, 6445586080 ], "bases": [ @@ -236754,7 +236766,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468290512, + "complete_object_locator": 6468294608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236763,12 +236775,12 @@ }, { "type_name": "CSurfacePropReloadableDataTableBase", - "vtable_address": 6467786792, + "vtable_address": 6467790888, "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -236788,7 +236800,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468987224, + "complete_object_locator": 6468991320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236797,12 +236809,12 @@ }, { "type_name": "CTEArmorRicochet", - "vtable_address": 6466140120, + "vtable_address": 6466144328, "methods": [ - 6451603056, - 6451602944, - 6451602960, - 6447928784 + 6451604640, + 6451604528, + 6451604544, + 6447930352 ], "bases": [ { @@ -236836,7 +236848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616704, + "complete_object_locator": 6468620800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236845,12 +236857,12 @@ }, { "type_name": "CTEBeamEntPoint", - "vtable_address": 6466152912, + "vtable_address": 6466157120, "methods": [ - 6451615216, - 6451617536, - 6451644400, - 6447928784 + 6451616800, + 6451619120, + 6451645984, + 6447930352 ], "bases": [ { @@ -236898,7 +236910,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621936, + "complete_object_locator": 6468626032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236907,12 +236919,12 @@ }, { "type_name": "CTEBeamEnts", - "vtable_address": 6466140632, + "vtable_address": 6466144840, "methods": [ - 6451603744, - 6451603632, - 6451603648, - 6447928784 + 6451605328, + 6451605216, + 6451605232, + 6447930352 ], "bases": [ { @@ -236960,7 +236972,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468617624, + "complete_object_locator": 6468621720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -236969,12 +236981,12 @@ }, { "type_name": "CTEBeamPoints", - "vtable_address": 6466141080, + "vtable_address": 6466145288, "methods": [ - 6451604432, - 6451604320, - 6451604336, - 6447928784 + 6451606016, + 6451605904, + 6451605920, + 6447930352 ], "bases": [ { @@ -237022,7 +237034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618328, + "complete_object_locator": 6468622424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237031,12 +237043,12 @@ }, { "type_name": "CTEBeamRing", - "vtable_address": 6466141552, + "vtable_address": 6466145760, "methods": [ - 6451605120, - 6451605008, - 6451605024, - 6447928784 + 6451606704, + 6451606592, + 6451606608, + 6447930352 ], "bases": [ { @@ -237084,7 +237096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619032, + "complete_object_locator": 6468623128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237093,12 +237105,12 @@ }, { "type_name": "CTEBloodStream", - "vtable_address": 6466142032, + "vtable_address": 6466146240, "methods": [ - 6451605904, - 6451605792, - 6451605808, - 6447928784 + 6451607488, + 6451607376, + 6451607392, + 6447930352 ], "bases": [ { @@ -237132,7 +237144,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619736, + "complete_object_locator": 6468623832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237141,12 +237153,12 @@ }, { "type_name": "CTEBubbleTrail", - "vtable_address": 6466155120, + "vtable_address": 6466159328, "methods": [ - 6451654320, - 6451654208, - 6451654224, - 6447928784 + 6451656000, + 6451655888, + 6451655904, + 6447930352 ], "bases": [ { @@ -237180,7 +237192,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623080, + "complete_object_locator": 6468627176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237189,12 +237201,12 @@ }, { "type_name": "CTEBubbles", - "vtable_address": 6466160288, + "vtable_address": 6466164496, "methods": [ - 6451664400, - 6451664288, - 6451664304, - 6447928784 + 6451666080, + 6451665968, + 6451665984, + 6447930352 ], "bases": [ { @@ -237228,7 +237240,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468622512, + "complete_object_locator": 6468626608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237237,12 +237249,12 @@ }, { "type_name": "CTEDust", - "vtable_address": 6466155544, + "vtable_address": 6466159752, "methods": [ - 6451655264, - 6451654880, - 6451654896, - 6447928784 + 6451656944, + 6451656560, + 6451656576, + 6447930352 ], "bases": [ { @@ -237276,7 +237288,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625480, + "complete_object_locator": 6468629576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237285,12 +237297,12 @@ }, { "type_name": "CTEEffectDispatch", - "vtable_address": 6466159288, + "vtable_address": 6466163496, "methods": [ - 6451663056, - 6451662944, - 6451662960, - 6447928784 + 6451664736, + 6451664624, + 6451664640, + 6447930352 ], "bases": [ { @@ -237324,7 +237336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623776, + "complete_object_locator": 6468627872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237333,12 +237345,12 @@ }, { "type_name": "CTEEnergySplash", - "vtable_address": 6466159808, + "vtable_address": 6466164016, "methods": [ - 6451663728, - 6451663616, - 6451663632, - 6447928784 + 6451665408, + 6451665296, + 6451665312, + 6447930352 ], "bases": [ { @@ -237372,7 +237384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624344, + "complete_object_locator": 6468628440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237381,13 +237393,13 @@ }, { "type_name": "CTEExplosion", - "vtable_address": 6466161192, + "vtable_address": 6466165400, "methods": [ - 6451668496, - 6451671216, - 6451689472, - 6447928784, - 6451689328 + 6451670080, + 6451672800, + 6451691056, + 6447930352, + 6451690912 ], "bases": [ { @@ -237421,7 +237433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468630232, + "complete_object_locator": 6468634328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237430,12 +237442,12 @@ }, { "type_name": "CTEFireBullets", - "vtable_address": 6465373992, + "vtable_address": 6465378152, "methods": [ - 6447929408, - 6447929296, - 6447929312, - 6447928784 + 6447930976, + 6447930864, + 6447930880, + 6447930352 ], "bases": [ { @@ -237469,7 +237481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468437672, + "complete_object_locator": 6468441768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237478,12 +237490,12 @@ }, { "type_name": "CTEFizz", - "vtable_address": 6466154488, + "vtable_address": 6466158696, "methods": [ - 6451650128, - 6451664960, - 6451665040, - 6447928784 + 6451651808, + 6451666640, + 6451651712, + 6447930352 ], "bases": [ { @@ -237517,7 +237529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624912, + "complete_object_locator": 6468629008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237526,12 +237538,12 @@ }, { "type_name": "CTEGlowSprite", - "vtable_address": 6466156104, + "vtable_address": 6466160312, "methods": [ - 6451657856, - 6451657600, - 6451657760, - 6447928784 + 6451659536, + 6451659280, + 6451659440, + 6447930352 ], "bases": [ { @@ -237565,7 +237577,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626048, + "complete_object_locator": 6468630144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237574,14 +237586,14 @@ }, { "type_name": "CTEImpact", - "vtable_address": 6466156560, + "vtable_address": 6466160768, "methods": [ - 6451658560, - 6451658416, - 6451658432, - 6447928784, - 6451658528, - 6451658544 + 6451660240, + 6451660096, + 6451660112, + 6447930352, + 6451660208, + 6451660224 ], "bases": [ { @@ -237615,7 +237627,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626744, + "complete_object_locator": 6468630840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237624,12 +237636,12 @@ }, { "type_name": "CTELargeFunnel", - "vtable_address": 6466157024, + "vtable_address": 6466161232, "methods": [ - 6451659376, - 6451659120, - 6451659280, - 6447928784 + 6451661056, + 6451660800, + 6451660960, + 6447930352 ], "bases": [ { @@ -237663,7 +237675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627312, + "complete_object_locator": 6468631408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237672,12 +237684,12 @@ }, { "type_name": "CTEMuzzleFlash", - "vtable_address": 6466157480, + "vtable_address": 6466161688, "methods": [ - 6451660224, - 6451659936, - 6451660128, - 6447928784 + 6451661904, + 6451661616, + 6451661808, + 6447930352 ], "bases": [ { @@ -237711,7 +237723,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627880, + "complete_object_locator": 6468631976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237720,12 +237732,12 @@ }, { "type_name": "CTEPhysicsProp", - "vtable_address": 6466157936, + "vtable_address": 6466162144, "methods": [ - 6451660912, - 6451660784, - 6451660800, - 6451660896 + 6451662592, + 6451662464, + 6451662480, + 6451662576 ], "bases": [ { @@ -237759,7 +237771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468628576, + "complete_object_locator": 6468632672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237768,12 +237780,12 @@ }, { "type_name": "CTESmoke", - "vtable_address": 6466158392, + "vtable_address": 6466162600, "methods": [ - 6451661584, - 6451661472, - 6451661488, - 6447928784 + 6451663264, + 6451663152, + 6451663168, + 6447930352 ], "bases": [ { @@ -237807,7 +237819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629144, + "complete_object_locator": 6468633240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237816,12 +237828,12 @@ }, { "type_name": "CTESparks", - "vtable_address": 6466158840, + "vtable_address": 6466163048, "methods": [ - 6451662384, - 6451662144, - 6451662288, - 6447928784 + 6451664064, + 6451663824, + 6451663968, + 6447930352 ], "bases": [ { @@ -237855,7 +237867,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629712, + "complete_object_locator": 6468633808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237864,16 +237876,16 @@ }, { "type_name": "CTakeDamageInfo", - "vtable_address": 6465657696, + "vtable_address": 6465661872, "methods": [ - 6448497312, + 6448498880, 6444469328, - 6451460944 + 6451462528 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468483160, + "complete_object_locator": 6468487256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237882,18 +237894,18 @@ }, { "type_name": "CTempEnts", - "vtable_address": 6466150800, + "vtable_address": 6466155008, "methods": [ - 6451615328, - 6451632464, - 6451642784, - 6451635296, - 6451635312, - 6451646208, - 6451635504, - 6451635520, - 6451643344, - 6451636672 + 6451616912, + 6451634048, + 6451644368, + 6451636880, + 6451636896, + 6451647792, + 6451637088, + 6451637104, + 6451644928, + 6451638256 ], "bases": [ { @@ -237913,7 +237925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621000, + "complete_object_locator": 6468625096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237922,9 +237934,9 @@ }, { "type_name": "CTemplateSceneViewFactory_RenderCsgoPictureInPicture", - "vtable_address": 6466878536, + "vtable_address": 6466882648, "methods": [ - 6456680688 + 6456682496 ], "bases": [ { @@ -237944,7 +237956,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468809624, + "complete_object_locator": 6468813720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -237953,35 +237965,35 @@ }, { "type_name": "CTextInputDaisyGroup", - "vtable_address": 6467713816, + "vtable_address": 6467717912, "methods": [ 6443876544, - 6461535472, - 6462403408, - 6462403424, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462405600, + 6462405616, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -237994,12 +238006,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -238014,29 +238026,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462403392, - 6462403456, + 6461548896, + 6462405584, + 6462405648, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -238072,7 +238084,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985544, + "complete_object_locator": 6468989640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238081,35 +238093,35 @@ }, { "type_name": "CTextInputPickPanel", - "vtable_address": 6467714624, + "vtable_address": 6467718720, "methods": [ 6443876544, - 6461535472, - 6462403536, - 6462403552, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462405728, + 6462405744, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -238122,12 +238134,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -238142,29 +238154,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462403520, - 6462403584, + 6461548896, + 6462405712, + 6462405776, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -238200,7 +238212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985680, + "complete_object_locator": 6468989776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238209,26 +238221,26 @@ }, { "type_name": "CTextLesson", - "vtable_address": 6465929608, - "methods": [ - 6450393872, - 6463705588, - 6450538096, - 6450697520, - 6450698736, - 6450699520, - 6450700528, - 6450578880, - 6450704624, - 6450712208, - 6450682544, - 6450556000, - 6450735872, - 6450700832, - 6450701952, - 6450552880, - 6450421296, - 6450483360 + "vtable_address": 6465933800, + "methods": [ + 6450395440, + 6463707780, + 6450539664, + 6450699088, + 6450700304, + 6450701088, + 6450702096, + 6450580448, + 6450706192, + 6450713776, + 6450684112, + 6450557568, + 6450737440, + 6450702400, + 6450703520, + 6450554448, + 6450422864, + 6450484928 ], "bases": [ { @@ -238276,7 +238288,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468562464, + "complete_object_locator": 6468566560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238285,35 +238297,35 @@ }, { "type_name": "CTexturePanel", - "vtable_address": 6467665608, + "vtable_address": 6467669704, "methods": [ 6443876544, - 6461535472, - 6456629776, + 6461537664, + 6456631552, 6443827424, - 6462101184, - 6461546688, - 6461559344, + 6462103376, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -238324,14 +238336,14 @@ 6443848128, 6443802160, 6443913856, - 6462077120, + 6462079312, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -238346,29 +238358,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629280, - 6462072976, + 6461548896, + 6456631056, + 6462075168, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -238404,7 +238416,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974544, + "complete_object_locator": 6468978640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238413,15 +238425,15 @@ }, { "type_name": "CThreadedJob", - "vtable_address": 6466040072, + "vtable_address": 6466044280, "methods": [ - 6451087696, - 6451092672, - 6451140160, - 6451102432, - 6451144272, - 6463705588, - 6451104208 + 6451089264, + 6451094240, + 6451141728, + 6451104000, + 6451145840, + 6463707780, + 6451105776 ], "bases": [ { @@ -238469,7 +238481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468586336, + "complete_object_locator": 6468590432, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -238478,13 +238490,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467103720, + "vtable_address": 6467107784, "methods": [ - 6459260384, - 6459247344, - 6459246448, - 6459267568, - 6459253856 + 6459262576, + 6459249536, + 6459248640, + 6459269760, + 6459256048 ], "bases": [ { @@ -238504,7 +238516,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468897656, + "complete_object_locator": 6468901752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238513,13 +238525,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467105344, + "vtable_address": 6467109408, "methods": [ - 6459260496, - 6459247360, - 6459246464, - 6459267712, - 6459254016 + 6459262688, + 6459249552, + 6459248656, + 6459269904, + 6459256208 ], "bases": [ { @@ -238539,7 +238551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468898744, + "complete_object_locator": 6468902840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238548,13 +238560,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467158032, + "vtable_address": 6467162096, "methods": [ - 6459260608, - 6459247376, - 6459246480, - 6459267856, - 6459254176 + 6459262800, + 6459249568, + 6459248672, + 6459270048, + 6459256368 ], "bases": [ { @@ -238574,7 +238586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468934664, + "complete_object_locator": 6468938760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238583,13 +238595,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467130712, + "vtable_address": 6467134776, "methods": [ - 6459260720, - 6459247392, - 6459246496, - 6459268000, - 6459254336 + 6459262912, + 6459249584, + 6459248688, + 6459270192, + 6459256528 ], "bases": [ { @@ -238609,7 +238621,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468914200, + "complete_object_locator": 6468918296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238618,13 +238630,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467072520, + "vtable_address": 6467076584, "methods": [ - 6459260832, - 6459247408, - 6459246512, - 6459268144, - 6459254496 + 6459263024, + 6459249600, + 6459248704, + 6459270336, + 6459256688 ], "bases": [ { @@ -238644,7 +238656,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878552, + "complete_object_locator": 6468882648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238653,13 +238665,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467069392, + "vtable_address": 6467073456, "methods": [ - 6459260944, - 6459247424, - 6459246528, - 6459268288, - 6459254656 + 6459263136, + 6459249616, + 6459248720, + 6459270480, + 6459256848 ], "bases": [ { @@ -238679,7 +238691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468876504, + "complete_object_locator": 6468880600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238688,13 +238700,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467152080, + "vtable_address": 6467156144, "methods": [ - 6459256688, - 6459246816, - 6459245920, - 6459262816, - 6459248576 + 6459258880, + 6459249008, + 6459248112, + 6459265008, + 6459250768 ], "bases": [ { @@ -238714,7 +238726,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468930824, + "complete_object_locator": 6468934920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238723,13 +238735,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467094528, + "vtable_address": 6467098592, "methods": [ - 6459256800, - 6459246832, - 6459245936, - 6459262960, - 6459248736 + 6459258992, + 6459249024, + 6459248128, + 6459265152, + 6459250928 ], "bases": [ { @@ -238749,7 +238761,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468891928, + "complete_object_locator": 6468896024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238758,13 +238770,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467133688, + "vtable_address": 6467137752, "methods": [ - 6459256912, - 6459246848, - 6459245952, - 6459263104, - 6459248896 + 6459259104, + 6459249040, + 6459248144, + 6459265296, + 6459251088 ], "bases": [ { @@ -238784,7 +238796,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468916328, + "complete_object_locator": 6468920424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238793,13 +238805,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialInputLooseVariable_t>", - "vtable_address": 6467092536, + "vtable_address": 6467096600, "methods": [ - 6459257024, - 6459246864, - 6459245968, - 6459263248, - 6459249056 + 6459259216, + 6459249056, + 6459248160, + 6459265440, + 6459251248 ], "bases": [ { @@ -238819,7 +238831,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890536, + "complete_object_locator": 6468894632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238828,13 +238840,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467101224, + "vtable_address": 6467105288, "methods": [ - 6459258480, - 6459247072, - 6459246176, - 6459265120, - 6459251136 + 6459260672, + 6459249264, + 6459248368, + 6459267312, + 6459253328 ], "bases": [ { @@ -238854,7 +238866,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896248, + "complete_object_locator": 6468900344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238863,13 +238875,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467108824, + "vtable_address": 6467112888, "methods": [ - 6459258592, - 6459247088, - 6459246192, - 6459265264, - 6459251296 + 6459260784, + 6459249280, + 6459248384, + 6459267456, + 6459253488 ], "bases": [ { @@ -238889,7 +238901,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900952, + "complete_object_locator": 6468905048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238898,13 +238910,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467135176, + "vtable_address": 6467139240, "methods": [ - 6459258704, - 6459247104, - 6459246208, - 6459265408, - 6459251456 + 6459260896, + 6459249296, + 6459248400, + 6459267600, + 6459253648 ], "bases": [ { @@ -238924,7 +238936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468917288, + "complete_object_locator": 6468921384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238933,13 +238945,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467071032, + "vtable_address": 6467075096, "methods": [ - 6459258816, - 6459247120, - 6459246224, - 6459265552, - 6459251616 + 6459261008, + 6459249312, + 6459248416, + 6459267744, + 6459253808 ], "bases": [ { @@ -238959,7 +238971,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468877592, + "complete_object_locator": 6468881688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -238968,13 +238980,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467067400, + "vtable_address": 6467071464, "methods": [ - 6459258928, - 6459247136, - 6459246240, - 6459265696, - 6459251776 + 6459261120, + 6459249328, + 6459248432, + 6459267888, + 6459253968 ], "bases": [ { @@ -238994,7 +239006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468875112, + "complete_object_locator": 6468879208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239003,13 +239015,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467146224, + "vtable_address": 6467150288, "methods": [ - 6459259040, - 6459247152, - 6459246256, - 6459265840, - 6459251936 + 6459261232, + 6459249344, + 6459248448, + 6459268032, + 6459254128 ], "bases": [ { @@ -239029,7 +239041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468926296, + "complete_object_locator": 6468930392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239038,13 +239050,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,int,class CUtlVectorMemory_Growable >,int,0> >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467139872, + "vtable_address": 6467143936, "methods": [ - 6459258144, - 6459247024, - 6459246128, - 6459264688, - 6459250656 + 6459260336, + 6459249216, + 6459248320, + 6459266880, + 6459252848 ], "bases": [ { @@ -239064,7 +239076,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468921088, + "complete_object_locator": 6468925184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239073,13 +239085,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467112328, + "vtable_address": 6467116392, "methods": [ - 6459258256, - 6459247040, - 6459246144, - 6459264832, - 6459250816 + 6459260448, + 6459249232, + 6459248336, + 6459267024, + 6459253008 ], "bases": [ { @@ -239099,7 +239111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468902888, + "complete_object_locator": 6468906984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239108,13 +239120,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467129024, + "vtable_address": 6467133088, "methods": [ - 6459257136, - 6459246880, - 6459245984, - 6459263392, - 6459249216 + 6459259328, + 6459249072, + 6459248176, + 6459265584, + 6459251408 ], "bases": [ { @@ -239134,7 +239146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468913120, + "complete_object_locator": 6468917216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239143,13 +239155,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompMatPropertyMutator_t>", - "vtable_address": 6467121944, + "vtable_address": 6467126008, "methods": [ - 6459257248, - 6459246896, - 6459246000, - 6459263536, - 6459249376 + 6459259440, + 6459249088, + 6459248192, + 6459265728, + 6459251568 ], "bases": [ { @@ -239169,7 +239181,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908448, + "complete_object_locator": 6468912544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239178,13 +239190,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467144528, + "vtable_address": 6467148592, "methods": [ - 6459257360, - 6459246912, - 6459246016, - 6459263680, - 6459249536 + 6459259552, + 6459249104, + 6459248208, + 6459265872, + 6459251728 ], "bases": [ { @@ -239204,7 +239216,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468925208, + "complete_object_locator": 6468929304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239213,13 +239225,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467160024, + "vtable_address": 6467164088, "methods": [ - 6459257472, - 6459246928, - 6459246032, - 6459263824, - 6459249696 + 6459259664, + 6459249120, + 6459248224, + 6459266016, + 6459251888 ], "bases": [ { @@ -239239,7 +239251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468936296, + "complete_object_locator": 6468940392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239248,13 +239260,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467142976, + "vtable_address": 6467147040, "methods": [ - 6459257584, - 6459246944, - 6459246048, - 6459263968, - 6459249856 + 6459259776, + 6459249136, + 6459248240, + 6459266160, + 6459252048 ], "bases": [ { @@ -239274,7 +239286,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923968, + "complete_object_locator": 6468928064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239283,13 +239295,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialInputContainer_t>", - "vtable_address": 6467137168, + "vtable_address": 6467141232, "methods": [ - 6459257696, - 6459246960, - 6459246064, - 6459264112, - 6459250016 + 6459259888, + 6459249152, + 6459248256, + 6459266304, + 6459252208 ], "bases": [ { @@ -239309,7 +239321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918840, + "complete_object_locator": 6468922936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239318,13 +239330,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialAssemblyProcedure_t>", - "vtable_address": 6467141424, + "vtable_address": 6467145488, "methods": [ - 6459257808, - 6459246976, - 6459246080, - 6459264256, - 6459250176 + 6459260000, + 6459249168, + 6459248272, + 6459266448, + 6459252368 ], "bases": [ { @@ -239344,7 +239356,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468922528, + "complete_object_locator": 6468926624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239353,13 +239365,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterialEditorPoint_t>", - "vtable_address": 6467161576, + "vtable_address": 6467165640, "methods": [ - 6459257920, - 6459246992, - 6459246096, - 6459264400, - 6459250336 + 6459260112, + 6459249184, + 6459248288, + 6459266592, + 6459252528 ], "bases": [ { @@ -239379,7 +239391,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937736, + "complete_object_locator": 6468941832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239388,13 +239400,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess >,struct CompositeMaterial_t>", - "vtable_address": 6467150344, + "vtable_address": 6467154408, "methods": [ - 6459258032, - 6459247008, - 6459246112, - 6459264544, - 6459250496 + 6459260224, + 6459249200, + 6459248304, + 6459266736, + 6459252688 ], "bases": [ { @@ -239414,7 +239426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468929536, + "complete_object_locator": 6468933632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239423,13 +239435,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467127032, + "vtable_address": 6467131096, "methods": [ - 6459259152, - 6459247168, - 6459246272, - 6459265984, - 6459252096 + 6459261344, + 6459249360, + 6459248464, + 6459268176, + 6459254288 ], "bases": [ { @@ -239449,7 +239461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911448, + "complete_object_locator": 6468915544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239458,13 +239470,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467089560, + "vtable_address": 6467093624, "methods": [ - 6459259264, - 6459247184, - 6459246288, - 6459266128, - 6459252256 + 6459261456, + 6459249376, + 6459248480, + 6459268320, + 6459254448 ], "bases": [ { @@ -239484,7 +239496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468888152, + "complete_object_locator": 6468892248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239493,13 +239505,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467156544, + "vtable_address": 6467160608, "methods": [ - 6459259376, - 6459247200, - 6459246304, - 6459266272, - 6459252416 + 6459261568, + 6459249392, + 6459248496, + 6459268464, + 6459254608 ], "bases": [ { @@ -239519,7 +239531,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468933704, + "complete_object_locator": 6468937800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239528,13 +239540,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467147848, + "vtable_address": 6467151912, "methods": [ - 6459259488, - 6459247216, - 6459246320, - 6459266416, - 6459252576 + 6459261680, + 6459249408, + 6459248512, + 6459268608, + 6459254768 ], "bases": [ { @@ -239554,7 +239566,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468927640, + "complete_object_locator": 6468931736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239563,13 +239575,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess,struct CompMatPropertyMutator_t>", - "vtable_address": 6467125544, + "vtable_address": 6467129608, "methods": [ - 6459258368, - 6459247056, - 6459246160, - 6459264976, - 6459250976 + 6459260560, + 6459249248, + 6459248352, + 6459267168, + 6459253168 ], "bases": [ { @@ -239589,7 +239601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468910488, + "complete_object_locator": 6468914584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239598,13 +239610,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467099736, + "vtable_address": 6467103800, "methods": [ - 6459259600, - 6459247232, - 6459246336, - 6459266560, - 6459252736 + 6459261792, + 6459249424, + 6459248528, + 6459268752, + 6459254928 ], "bases": [ { @@ -239624,7 +239636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468895288, + "complete_object_locator": 6468899384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239633,13 +239645,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467106832, + "vtable_address": 6467110896, "methods": [ - 6459259712, - 6459247248, - 6459246352, - 6459266704, - 6459252896 + 6459261904, + 6459249440, + 6459248544, + 6459268896, + 6459255088 ], "bases": [ { @@ -239659,7 +239671,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468899912, + "complete_object_locator": 6468904008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239668,13 +239680,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467132200, + "vtable_address": 6467136264, "methods": [ - 6459259824, - 6459247264, - 6459246368, - 6459266848, - 6459253056 + 6459262016, + 6459249456, + 6459248560, + 6459269040, + 6459255248 ], "bases": [ { @@ -239694,7 +239706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468915368, + "complete_object_locator": 6468919464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239703,13 +239715,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467077032, + "vtable_address": 6467081096, "methods": [ - 6459259936, - 6459247280, - 6459246384, - 6459266992, - 6459253216 + 6459262128, + 6459249472, + 6459248576, + 6459269184, + 6459255408 ], "bases": [ { @@ -239729,7 +239741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468881064, + "complete_object_locator": 6468885160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239738,13 +239750,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467096520, + "vtable_address": 6467100584, "methods": [ - 6459260048, - 6459247296, - 6459246400, - 6459267136, - 6459253376 + 6459262240, + 6459249488, + 6459248592, + 6459269328, + 6459255568 ], "bases": [ { @@ -239764,7 +239776,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893320, + "complete_object_locator": 6468897416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239773,13 +239785,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467065912, + "vtable_address": 6467069976, "methods": [ - 6459260160, - 6459247312, - 6459246416, - 6459267280, - 6459253536 + 6459262352, + 6459249504, + 6459248608, + 6459269472, + 6459255728 ], "bases": [ { @@ -239799,7 +239811,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468873896, + "complete_object_locator": 6468877992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239808,13 +239820,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467091048, + "vtable_address": 6467095112, "methods": [ - 6459260272, - 6459247328, - 6459246432, - 6459267424, - 6459253696 + 6459262464, + 6459249520, + 6459248624, + 6459269616, + 6459255888 ], "bases": [ { @@ -239834,7 +239846,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468889320, + "complete_object_locator": 6468893416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239843,13 +239855,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467155056, + "vtable_address": 6467159120, "methods": [ - 6459256384, - 6459246768, - 6459245872, - 6459262384, - 6459248096 + 6459258576, + 6459248960, + 6459248064, + 6459264576, + 6459250288 ], "bases": [ { @@ -239869,7 +239881,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468932744, + "complete_object_locator": 6468936840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239878,13 +239890,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467082528, + "vtable_address": 6467086592, "methods": [ - 6459256480, - 6459246784, - 6459245888, - 6459262528, - 6459248256 + 6459258672, + 6459248976, + 6459248080, + 6459264720, + 6459250448 ], "bases": [ { @@ -239904,7 +239916,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884520, + "complete_object_locator": 6468888616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239913,13 +239925,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467118440, + "vtable_address": 6467122504, "methods": [ - 6459256048, - 6459246720, - 6459245824, - 6459261952, - 6459247616 + 6459258240, + 6459248912, + 6459248016, + 6459264144, + 6459249808 ], "bases": [ { @@ -239939,7 +239951,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906104, + "complete_object_locator": 6468910200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239948,13 +239960,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467153568, + "vtable_address": 6467157632, "methods": [ - 6459256160, - 6459246736, - 6459245840, - 6459262096, - 6459247776 + 6459258352, + 6459248928, + 6459248032, + 6459264288, + 6459249968 ], "bases": [ { @@ -239974,7 +239986,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468931784, + "complete_object_locator": 6468935880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -239983,13 +239995,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467079024, + "vtable_address": 6467083088, "methods": [ - 6459256272, - 6459246752, - 6459245856, - 6459262240, - 6459247936 + 6459258464, + 6459248944, + 6459248048, + 6459264432, + 6459250128 ], "bases": [ { @@ -240009,7 +240021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882456, + "complete_object_locator": 6468886552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240018,13 +240030,13 @@ }, { "type_name": "CToolAttrDirectMemberAccess", - "vtable_address": 6467115896, + "vtable_address": 6467119960, "methods": [ - 6459256576, - 6459246800, - 6459245904, - 6459262672, - 6459248416 + 6459258768, + 6459248992, + 6459248096, + 6459264864, + 6459250608 ], "bases": [ { @@ -240044,7 +240056,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468904696, + "complete_object_locator": 6468908792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240053,26 +240065,26 @@ }, { "type_name": "CToolClientSimulationAPI", - "vtable_address": 6466104048, - "methods": [ - 6451419520, - 6451419536, - 6451419552, - 6451419568, - 6451419584, - 6451419632, - 6451419648, - 6451419680, - 6451419712, - 6451419760, - 6451419808, - 6451420032, - 6451420048, - 6451420208, - 6451420496, - 6451420720, - 6451420736, - 6451421088 + "vtable_address": 6466108256, + "methods": [ + 6451421104, + 6451421120, + 6451421136, + 6451421152, + 6451421168, + 6451421216, + 6451421232, + 6451421264, + 6451421296, + 6451421344, + 6451421392, + 6451421616, + 6451421632, + 6451421792, + 6451422080, + 6451422304, + 6451422320, + 6451422672 ], "bases": [ { @@ -240092,7 +240104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605536, + "complete_object_locator": 6468609632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240101,9 +240113,9 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 6464479384, + "vtable_address": 6464483480, "methods": [ - 6444028288 + 6444028544 ], "bases": [ { @@ -240123,7 +240135,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468233480, + "complete_object_locator": 6468237576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240132,7 +240144,7 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 6464510712, + "vtable_address": 6464514808, "methods": [ 6444263168 ], @@ -240154,7 +240166,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239800, + "complete_object_locator": 6468243896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240163,9 +240175,9 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 6466109392, + "vtable_address": 6466113600, "methods": [ - 6451430256 + 6451431840 ], "bases": [ { @@ -240185,7 +240197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605408, + "complete_object_locator": 6468609504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240194,9 +240206,9 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 6465900504, + "vtable_address": 6465904696, "methods": [ - 6450335808 + 6450337376 ], "bases": [ { @@ -240216,7 +240228,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555992, + "complete_object_locator": 6468560088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240225,7 +240237,7 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 6464403608, + "vtable_address": 6464407704, "methods": [ 6443760144 ], @@ -240247,7 +240259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468216624, + "complete_object_locator": 6468220720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240256,9 +240268,9 @@ }, { "type_name": "CToolObjectFactory", - "vtable_address": 6466069720, + "vtable_address": 6466073928, "methods": [ - 6451239696 + 6451241264 ], "bases": [ { @@ -240278,7 +240290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468597272, + "complete_object_locator": 6468601368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240287,7 +240299,7 @@ }, { "type_name": "CTraceFilter", - "vtable_address": 6464482584, + "vtable_address": 6464486680, "methods": [ 6444064976, 6444234736 @@ -240324,7 +240336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468234984, + "complete_object_locator": 6468239080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240333,10 +240345,10 @@ }, { "type_name": "CTraceFilterEntityPush", - "vtable_address": 6465811024, + "vtable_address": 6465815216, "methods": [ - 6449499040, - 6449737104 + 6449500608, + 6449738672 ], "bases": [ { @@ -240398,7 +240410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468522160, + "complete_object_locator": 6468526256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240407,10 +240419,10 @@ }, { "type_name": "CTraceFilterEntitySweep", - "vtable_address": 6465811000, + "vtable_address": 6465815192, "methods": [ - 6449499088, - 6449737120 + 6449500656, + 6449738688 ], "bases": [ { @@ -240472,7 +240484,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468522008, + "complete_object_locator": 6468526104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240481,10 +240493,10 @@ }, { "type_name": "CTraceFilterForPlayerHeadCollision", - "vtable_address": 6465677480, + "vtable_address": 6465681656, "methods": [ - 6448520800, - 6448629936 + 6448522368, + 6448631504 ], "bases": [ { @@ -240546,7 +240558,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486464, + "complete_object_locator": 6468490560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240555,10 +240567,10 @@ }, { "type_name": "CTraceFilterKnifeIgnoreTeammates", - "vtable_address": 6465614656, + "vtable_address": 6465618832, "methods": [ - 6448238096, - 6448258352 + 6448239664, + 6448259920 ], "bases": [ { @@ -240620,7 +240632,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474352, + "complete_object_locator": 6468478448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240629,10 +240641,10 @@ }, { "type_name": "CTraceFilterNoCombatCharacters", - "vtable_address": 6465919376, + "vtable_address": 6465923568, "methods": [ - 6450393936, - 6450683152 + 6450395504, + 6450684720 ], "bases": [ { @@ -240708,7 +240720,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560880, + "complete_object_locator": 6468564976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240717,10 +240729,10 @@ }, { "type_name": "CTraceFilterNoNPCsOrPlayer", - "vtable_address": 6465353128, + "vtable_address": 6465357192, "methods": [ 6447875664, - 6449737136 + 6449738704 ], "bases": [ { @@ -240782,7 +240794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468432544, + "complete_object_locator": 6468436640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240791,9 +240803,9 @@ }, { "type_name": "CTraceFilterOmitPlayers", - "vtable_address": 6466188240, + "vtable_address": 6466192400, "methods": [ - 6451774688, + 6451776272, 6444234736 ], "bases": [ @@ -240842,7 +240854,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468632072, + "complete_object_locator": 6468636168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240851,10 +240863,10 @@ }, { "type_name": "CTraceFilterPlayerMovementCS", - "vtable_address": 6465674800, + "vtable_address": 6465678976, "methods": [ - 6448520848, - 6448630224 + 6448522416, + 6448631792 ], "bases": [ { @@ -240916,7 +240928,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468485912, + "complete_object_locator": 6468490008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240925,10 +240937,10 @@ }, { "type_name": "CTraceFilterTaserIgnoreTeammates", - "vtable_address": 6465629712, + "vtable_address": 6465633888, "methods": [ - 6448238144, - 6448258496 + 6448239712, + 6448260064 ], "bases": [ { @@ -240990,7 +241002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476488, + "complete_object_locator": 6468480584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -240999,31 +241011,31 @@ }, { "type_name": "CTriggerFan", - "vtable_address": 6464610120, + "vtable_address": 6464614216, "methods": [ 6445466928, 6444389440, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392304, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -241033,25 +241045,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399680, 6444418672, 6444424304, 6443799760, 6444402336, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -241068,13 +241080,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -241082,41 +241094,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -241128,33 +241140,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -241182,34 +241194,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -241219,24 +241231,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -241351,7 +241363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249600, + "complete_object_locator": 6468253696, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -241360,14 +241372,14 @@ }, { "type_name": "CTriggerFan", - "vtable_address": 6464612104, + "vtable_address": 6464616200, "methods": [ 6444388964, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -241471,7 +241483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249776, + "complete_object_locator": 6468253872, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -241480,9 +241492,9 @@ }, { "type_name": "CTriggerFan", - "vtable_address": 6464612160, + "vtable_address": 6464616256, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -241586,7 +241598,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249816, + "complete_object_locator": 6468253912, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -241595,10 +241607,10 @@ }, { "type_name": "CTriggerFan::NetworkVar_m_RampTimer", - "vtable_address": 6464610072, + "vtable_address": 6464614168, "methods": [ 6444424832, - 6450189680, + 6450191248, 6444409504, 6444409584, 6444409552 @@ -241621,7 +241633,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249856, + "complete_object_locator": 6468253952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -241630,14 +241642,14 @@ }, { "type_name": "CUGCDetailsRequest", - "vtable_address": 6466325208, + "vtable_address": 6466329368, "methods": [ - 6452351632 + 6452353248 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468674984, + "complete_object_locator": 6468679080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -241646,7 +241658,7 @@ }, { "type_name": "CUIRootGameSystem", - "vtable_address": 6464443704, + "vtable_address": 6464447800, "methods": [ 6443748576, 6443748592, @@ -241742,7 +241754,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468226464, + "complete_object_locator": 6468230560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -241751,35 +241763,35 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 6466463072, + "vtable_address": 6466467200, "methods": [ 6443876544, - 6461535472, - 6453256992, - 6453269680, - 6453322160, - 6461546688, - 6461559344, + 6461537664, + 6453258592, + 6453271440, + 6453323920, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453313360, - 6453314448, - 6461536080, - 6461536928, - 6453316800, - 6453314752, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453315120, + 6453316208, + 6461538272, + 6461539120, + 6453318560, + 6453316512, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453214352, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453215968, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -241792,12 +241804,12 @@ 6443913856, 6443821360, 6443848384, - 6453377856, - 6461505456, - 6461505088, - 6461526000, + 6453379616, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -241812,54 +241824,54 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256800, - 6453195456, + 6461548896, + 6453258400, + 6453197072, 6443817520, - 6461547664, - 6461547840, - 6453317664, - 6453317264, - 6453317392, - 6453317536, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6453319424, + 6453319024, + 6453319152, + 6453319296, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453219168, - 6453418256, - 6453415056, - 6453244480, - 6453333152, - 6453299184, - 6453214272, - 6453355536, - 6453211872, - 6453229456, - 6453226656, - 6453241024, - 6453243520, - 6453243360, - 6453244304, - 6453243888, - 6453364064, - 6453397424, - 6453303248, - 6453420976, - 6453354896, - 6453312208, - 6453214336 + 6453220784, + 6453420016, + 6453416816, + 6453246080, + 6453334912, + 6453300944, + 6453215888, + 6453357296, + 6453213488, + 6453231072, + 6453228272, + 6453242640, + 6453245120, + 6453244960, + 6453245904, + 6453245488, + 6453365824, + 6453399184, + 6453305008, + 6453422736, + 6453356656, + 6453313968, + 6453215952 ], "bases": [ { @@ -241977,7 +241989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701112, + "complete_object_locator": 6468705208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -241986,10 +241998,10 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 6466463936, + "vtable_address": 6466468064, "methods": [ - 6453194652, - 6453247200 + 6453196268, + 6453248800 ], "bases": [ { @@ -242107,7 +242119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701504, + "complete_object_locator": 6468705600, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -242116,10 +242128,10 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 6466463960, + "vtable_address": 6466468088, "methods": [ - 6453306016, - 6453401664 + 6453307776, + 6453403424 ], "bases": [ { @@ -242237,7 +242249,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701544, + "complete_object_locator": 6468705640, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -242246,11 +242258,11 @@ }, { "type_name": "CUI_3dPanel", - "vtable_address": 6466463984, + "vtable_address": 6466468112, "methods": [ - 6453194664, - 6453280608, - 6453320704 + 6453196280, + 6453282368, + 6453322464 ], "bases": [ { @@ -242368,7 +242380,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701584, + "complete_object_locator": 6468705680, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -242377,35 +242389,35 @@ }, { "type_name": "CUI_Canvas", - "vtable_address": 6466856896, + "vtable_address": 6466861008, "methods": [ 6443876544, - 6461535472, - 6456629792, - 6454003472, - 6461352784, - 6461546688, - 6461559344, + 6461537664, + 6456631568, + 6454005232, + 6461354976, + 6461548880, + 6461561536, 6443845056, - 6456639232, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6456641008, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -242418,12 +242430,12 @@ 6443913856, 6443821360, 6443848384, - 6456655232, - 6461505456, - 6461505088, - 6461526000, + 6456657008, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -242438,33 +242450,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629296, - 6456601920, + 6461548896, + 6456631072, + 6456603696, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453976560, - 6453976320 + 6453978320, + 6453978080 ], "bases": [ { @@ -242512,7 +242524,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805984, + "complete_object_locator": 6468810080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -242521,10 +242533,10 @@ }, { "type_name": "CUI_CanvasRenderer", - "vtable_address": 6466857616, + "vtable_address": 6466861728, "methods": [ - 6456601984, - 6456648336, + 6456603760, + 6456650112, 6443802816 ], "bases": [ @@ -242573,7 +242585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806104, + "complete_object_locator": 6468810200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -242582,10 +242594,10 @@ }, { "type_name": "CUI_Canvas_DrawCommandLambda >", - "vtable_address": 6466857824, + "vtable_address": 6466861936, "methods": [ - 6456601376, - 6456624704 + 6456603152, + 6456626480 ], "bases": [ { @@ -242605,7 +242617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806248, + "complete_object_locator": 6468810344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -242614,10 +242626,10 @@ }, { "type_name": "CUI_Canvas_DrawCommandLambda const &,float,class Color const &)'::`2':: >", - "vtable_address": 6466857848, + "vtable_address": 6466861960, "methods": [ - 6456601328, - 6456624256 + 6456603104, + 6456626032 ], "bases": [ { @@ -242637,7 +242649,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806376, + "complete_object_locator": 6468810472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -242646,10 +242658,10 @@ }, { "type_name": "CUI_Canvas_DrawPolyCommand", - "vtable_address": 6466857872, + "vtable_address": 6466861984, "methods": [ - 6456602272, - 6456624768 + 6456604048, + 6456626544 ], "bases": [ { @@ -242669,7 +242681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806504, + "complete_object_locator": 6468810600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -242678,35 +242690,35 @@ }, { "type_name": "CUI_ContextMenuManager", - "vtable_address": 6466859392, + "vtable_address": 6466863504, "methods": [ 6443876544, - 6461535472, - 6456629808, - 6456634608, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631584, + 6456636384, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -242719,12 +242731,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -242739,29 +242751,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629312, - 6456602336, + 6461548896, + 6456631088, + 6456604112, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -242797,7 +242809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806824, + "complete_object_locator": 6468810920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -242806,35 +242818,35 @@ }, { "type_name": "CUI_ContextMenu_Base", - "vtable_address": 6466858000, + "vtable_address": 6466862112, "methods": [ 6443876544, - 6461535472, - 6456629824, - 6453013440, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631600, + 6453015056, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461759392, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461761584, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461758336, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461760528, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -242847,12 +242859,12 @@ 6443913856, 6443821360, 6443848384, - 6456655296, - 6461505456, - 6461505088, - 6461526000, + 6456657072, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -242867,33 +242879,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629328, - 6456602400, + 6461548896, + 6456631104, + 6456604176, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461757104, - 6453005456 + 6461759296, + 6453007072 ], "bases": [ { @@ -242941,7 +242953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806632, + "complete_object_locator": 6468810728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -242950,35 +242962,35 @@ }, { "type_name": "CUI_ContextMenu_Script", - "vtable_address": 6466858696, + "vtable_address": 6466862808, "methods": [ 6443876544, - 6461535472, - 6456629840, - 6456634640, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631616, + 6456636416, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461759392, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461761584, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461758336, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461760528, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -242991,12 +243003,12 @@ 6443913856, 6443821360, 6443848384, - 6456655296, - 6461505456, - 6461505088, - 6461526000, + 6456657072, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -243011,33 +243023,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629344, - 6456602496, + 6461548896, + 6456631120, + 6456604272, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461757104, - 6453005456 + 6461759296, + 6453007072 ], "bases": [ { @@ -243099,7 +243111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806672, + "complete_object_locator": 6468810768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -243108,35 +243120,35 @@ }, { "type_name": "CUI_CustomLayoutPanel", - "vtable_address": 6466860112, + "vtable_address": 6466864224, "methods": [ 6443876544, - 6461535472, - 6456629856, - 6456634688, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631632, + 6456636464, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6456608784, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6456610560, 6443844992, 6443848064, 6443844976, @@ -243149,12 +243161,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -243169,29 +243181,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629360, - 6456602592, + 6461548896, + 6456631136, + 6456604368, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -243227,7 +243239,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468807000, + "complete_object_locator": 6468811096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -243236,35 +243248,35 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 6466474888, + "vtable_address": 6466479016, "methods": [ 6443876544, - 6461535472, - 6453257008, - 6453269712, - 6453322496, - 6461546688, - 6453397408, + 6461537664, + 6453258608, + 6453271472, + 6453324256, + 6461548880, + 6453399168, 6443845056, 6443847712, - 6453313264, - 6453313312, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453313888, - 6453314592, - 6461536080, - 6461536928, - 6453317104, - 6453315504, + 6453315024, + 6453315072, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453315648, + 6453316352, + 6461538272, + 6461539120, + 6453318864, + 6453317264, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453214352, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453215968, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -243277,12 +243289,12 @@ 6443913856, 6443821360, 6443848384, - 6453377856, - 6461505456, - 6461505088, - 6461526000, + 6453379616, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -243297,54 +243309,54 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256816, - 6453195520, + 6461548896, + 6453258416, + 6453197136, 6443817520, - 6461547664, - 6461547840, - 6453317664, - 6453317264, - 6453317392, - 6453317536, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6453319424, + 6453319024, + 6453319152, + 6453319296, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453219168, - 6453419968, - 6453415056, - 6453244480, - 6453333472, - 6453300000, - 6453214272, - 6453355536, - 6453211872, - 6453229456, - 6453226656, - 6453241024, - 6453243552, - 6453243360, - 6453244304, - 6453243888, - 6453364080, - 6453397424, - 6453303248, - 6453420976, - 6453354896, - 6453312208, - 6453214336 + 6453220784, + 6453421728, + 6453416816, + 6453246080, + 6453335232, + 6453301760, + 6453215888, + 6453357296, + 6453213488, + 6453231072, + 6453228272, + 6453242640, + 6453245152, + 6453244960, + 6453245904, + 6453245488, + 6453365840, + 6453399184, + 6453305008, + 6453422736, + 6453356656, + 6453313968, + 6453215952 ], "bases": [ { @@ -243476,7 +243488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704336, + "complete_object_locator": 6468708432, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -243485,10 +243497,10 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 6466475752, + "vtable_address": 6466479880, "methods": [ - 6453194676, - 6453247200 + 6453196292, + 6453248800 ], "bases": [ { @@ -243620,7 +243632,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704528, + "complete_object_locator": 6468708624, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -243629,10 +243641,10 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 6466475776, + "vtable_address": 6466479904, "methods": [ - 6453306016, - 6453401664 + 6453307776, + 6453403424 ], "bases": [ { @@ -243764,7 +243776,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704568, + "complete_object_locator": 6468708664, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -243773,11 +243785,11 @@ }, { "type_name": "CUI_GraphicsSettings3dPanel", - "vtable_address": 6466475800, + "vtable_address": 6466479928, "methods": [ - 6453194688, - 6453280608, - 6453320704 + 6453196304, + 6453282368, + 6453322464 ], "bases": [ { @@ -243909,7 +243921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704608, + "complete_object_locator": 6468708704, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -243918,35 +243930,35 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 6466476312, + "vtable_address": 6466480440, "methods": [ 6443876544, - 6461535472, - 6453257024, - 6453269760, - 6453322160, - 6461546688, - 6461559344, + 6461537664, + 6453258624, + 6453271520, + 6453323920, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453314080, - 6453314448, - 6461536080, - 6461536928, - 6453316800, - 6453314752, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453315840, + 6453316208, + 6461538272, + 6461539120, + 6453318560, + 6453316512, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453216144, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453217760, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -243959,12 +243971,12 @@ 6443913856, 6443821360, 6443848384, - 6453379056, - 6461505456, - 6461505088, - 6461526000, + 6453380816, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -243979,54 +243991,54 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256832, - 6453195776, + 6461548896, + 6453258432, + 6453197392, 6443817520, - 6461547664, - 6461547840, - 6453317664, - 6453317264, - 6453317392, - 6453317536, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6453319424, + 6453319024, + 6453319152, + 6453319296, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453219168, - 6453418256, - 6453415056, - 6453244480, - 6453333152, - 6453299184, - 6453214272, - 6453355536, - 6453211872, - 6453229456, - 6453226656, - 6453241968, - 6453243664, - 6453243360, - 6453244336, - 6453243888, - 6453364384, - 6453397424, - 6453303264, - 6453420976, - 6453354896, - 6453312208, - 6453214336 + 6453220784, + 6453420016, + 6453416816, + 6453246080, + 6453334912, + 6453300944, + 6453215888, + 6453357296, + 6453213488, + 6453231072, + 6453228272, + 6453243584, + 6453245264, + 6453244960, + 6453245936, + 6453245488, + 6453366144, + 6453399184, + 6453305024, + 6453422736, + 6453356656, + 6453313968, + 6453215952 ], "bases": [ { @@ -244158,7 +244170,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704896, + "complete_object_locator": 6468708992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -244167,10 +244179,10 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 6466477176, + "vtable_address": 6466481304, "methods": [ - 6453194700, - 6453247200 + 6453196316, + 6453248800 ], "bases": [ { @@ -244302,7 +244314,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705088, + "complete_object_locator": 6468709184, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -244311,10 +244323,10 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 6466477200, + "vtable_address": 6466481328, "methods": [ - 6453307792, - 6453401664 + 6453309552, + 6453403424 ], "bases": [ { @@ -244446,7 +244458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705128, + "complete_object_locator": 6468709224, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -244455,11 +244467,11 @@ }, { "type_name": "CUI_Item3dPanel", - "vtable_address": 6466477224, + "vtable_address": 6466481352, "methods": [ - 6453194712, - 6453280608, - 6453320704 + 6453196328, + 6453282368, + 6453322464 ], "bases": [ { @@ -244591,7 +244603,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468705168, + "complete_object_locator": 6468709264, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -244600,11 +244612,11 @@ }, { "type_name": "CUI_MMStatus_Popup", - "vtable_address": 6466350560, + "vtable_address": 6466354720, "methods": [ - 6452508304, - 6452505408, - 6452511936 + 6452509920, + 6452507024, + 6452513552 ], "bases": [ { @@ -244694,7 +244706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468680664, + "complete_object_locator": 6468684760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -244703,34 +244715,34 @@ }, { "type_name": "CUI_MMStatus_Popup", - "vtable_address": 6466350592, + "vtable_address": 6466354752, "methods": [ 6443876544, - 6461535472, + 6461537664, 6443910048, 6443911312, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -244744,12 +244756,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -244764,35 +244776,35 @@ 6443879584, 6443817680, 6443848032, - 6461546704, + 6461548896, 6443909824, - 6452504272, + 6452505888, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443914768, 6443913872, 6443910512, - 6452505168, + 6452506784, 6443921712, 6443911616, 6443911600, @@ -244886,7 +244898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468680992, + "complete_object_locator": 6468685088, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -244895,58 +244907,58 @@ }, { "type_name": "CUI_MapPreviewCameraManager", - "vtable_address": 6466462640, - "methods": [ - 6453195840, - 6453271152, - 6451049680, - 6451016688, - 6453256720, - 6451015504, - 6451015264, - 6451015472, - 6450987968, - 6453400512, - 6450955232, - 6450955248, - 6451004128, - 6451046304, - 6451046352, - 6451004304, - 6451003744, - 6451003776, - 6450988160, - 6451042784, - 6451043008, - 6450986896, - 6450984656, - 6450987072, - 6450977840, - 6450986992, - 6450983360, - 6450983424, - 6450983728, - 6450983632, - 6450980656, - 6450980784, - 6450980720, - 6450989296, - 6450989184, - 6450980192, - 6450977712, - 6450977728, - 6450984448, - 6450931568, - 6451046224, - 6451028064, - 6451015280, - 6453271232, - 6450993632, - 6453310880, - 6453310896, - 6453310848, - 6453310864, - 6453310912 + "vtable_address": 6466466768, + "methods": [ + 6453197456, + 6453272912, + 6451051248, + 6451018256, + 6453258320, + 6451017072, + 6451016832, + 6451017040, + 6450989536, + 6453402272, + 6450956800, + 6450956816, + 6451005696, + 6451047872, + 6451047920, + 6451005872, + 6451005312, + 6451005344, + 6450989728, + 6451044352, + 6451044576, + 6450988464, + 6450986224, + 6450988640, + 6450979408, + 6450988560, + 6450984928, + 6450984992, + 6450985296, + 6450985200, + 6450982224, + 6450982352, + 6450982288, + 6450990864, + 6450990752, + 6450981760, + 6450979280, + 6450979296, + 6450986016, + 6450933136, + 6451047792, + 6451029632, + 6451016848, + 6453272992, + 6450995200, + 6453312640, + 6453312656, + 6453312608, + 6453312624, + 6453312672 ], "bases": [ { @@ -245008,7 +245020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702016, + "complete_object_locator": 6468706112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -245017,10 +245029,10 @@ }, { "type_name": "CUI_MapPreviewCameraManager", - "vtable_address": 6466463048, + "vtable_address": 6466467176, "methods": [ - 6453194724, - 6450975488 + 6453196340, + 6450977056 ], "bases": [ { @@ -245082,7 +245094,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702168, + "complete_object_locator": 6468706264, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -245091,35 +245103,35 @@ }, { "type_name": "CUI_MapPreviewMagnifier", - "vtable_address": 6466474200, + "vtable_address": 6466478328, "methods": [ 6443876544, - 6461535472, - 6453257040, - 6453269808, - 6461352784, - 6461546688, - 6461559344, + 6461537664, + 6453258640, + 6453271568, + 6461354976, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -245132,12 +245144,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -245152,32 +245164,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256848, - 6453196048, + 6461548896, + 6453258448, + 6453197664, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651168 + 6452652784 ], "bases": [ { @@ -245225,7 +245237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468704048, + "complete_object_locator": 6468708144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -245234,61 +245246,61 @@ }, { "type_name": "CUI_MapPreviewPathDrivenCamera", - "vtable_address": 6466471296, - "methods": [ - 6453196176, - 6450991808, - 6451026608, - 6453398720, - 6451026336, - 6450924928, - 6453321456, - 6453321568, - 6451016672, - 6451015488, - 6451042768, - 6451042992, - 6450986864, - 6450984624, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6450983712, - 6450983616, - 6453260496, - 6453260752, - 6451046288, - 6451046400, - 6451042976, - 6450984432, - 6450980704, - 6450980832, - 6450980768, - 6450931200, - 6451046256, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952, - 6453251280 + "vtable_address": 6466475424, + "methods": [ + 6453197792, + 6450993376, + 6451028176, + 6453400480, + 6451027904, + 6450926496, + 6453323216, + 6453323328, + 6451018240, + 6451017056, + 6451044336, + 6451044560, + 6450988432, + 6450986192, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6450985280, + 6450985184, + 6453262096, + 6453262352, + 6451047856, + 6451047968, + 6451044544, + 6450986000, + 6450982272, + 6450982400, + 6450982336, + 6450932768, + 6451047824, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520, + 6453252880 ], "bases": [ { @@ -245322,7 +245334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468703664, + "complete_object_locator": 6468707760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -245331,61 +245343,61 @@ }, { "type_name": "CUI_MapPreviewPointCamera", - "vtable_address": 6466470784, - "methods": [ - 6453196240, - 6450991808, - 6451026608, - 6453399008, - 6451026336, - 6450924928, - 6451020896, - 6451021280, - 6451016672, - 6451015488, - 6451042768, - 6451042992, - 6450986864, - 6450984624, - 6450987040, - 6450977808, - 6450986960, - 6450983408, - 6450983312, - 6450983712, - 6450983616, - 6453260624, - 6453260880, - 6451046288, - 6451046400, - 6451042976, - 6450984432, - 6450980704, - 6450980832, - 6450980768, - 6450931200, - 6451046256, - 6451042592, - 6451042624, - 6451042576, - 6451042752, - 6451042736, - 6450980848, - 6450980896, - 6450980912, - 6450980880, - 6450980864, - 6450980928, - 6450983792, - 6450983696, - 6451019024, - 6451019056, - 6451018432, - 6451020112, - 6451020096, - 6451019088, - 6450987952, - 6453251296 + "vtable_address": 6466474912, + "methods": [ + 6453197856, + 6450993376, + 6451028176, + 6453400768, + 6451027904, + 6450926496, + 6451022464, + 6451022848, + 6451018240, + 6451017056, + 6451044336, + 6451044560, + 6450988432, + 6450986192, + 6450988608, + 6450979376, + 6450988528, + 6450984976, + 6450984880, + 6450985280, + 6450985184, + 6453262224, + 6453262480, + 6451047856, + 6451047968, + 6451044544, + 6450986000, + 6450982272, + 6450982400, + 6450982336, + 6450932768, + 6451047824, + 6451044160, + 6451044192, + 6451044144, + 6451044320, + 6451044304, + 6450982416, + 6450982464, + 6450982480, + 6450982448, + 6450982432, + 6450982496, + 6450985360, + 6450985264, + 6451020592, + 6451020624, + 6451020000, + 6451021680, + 6451021664, + 6451020656, + 6450989520, + 6453252896 ], "bases": [ { @@ -245419,7 +245431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468703528, + "complete_object_locator": 6468707624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -245428,35 +245440,35 @@ }, { "type_name": "CUI_PageManager", - "vtable_address": 6466860792, + "vtable_address": 6466864904, "methods": [ 6443876544, - 6461535472, - 6456629872, - 6456634720, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631648, + 6456636496, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -245469,12 +245481,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -245489,29 +245501,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629376, - 6456602656, + 6461548896, + 6456631152, + 6456604432, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -245547,7 +245559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468807136, + "complete_object_locator": 6468811232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -245556,35 +245568,35 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 6466464016, + "vtable_address": 6466468144, "methods": [ 6443876544, - 6461535472, - 6453257056, - 6453269840, - 6453322160, - 6461546688, - 6461559344, + 6461537664, + 6453258656, + 6453271600, + 6453323920, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453314128, - 6453314448, - 6461536080, - 6461536928, - 6453316800, - 6453314752, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453315888, + 6453316208, + 6461538272, + 6461539120, + 6453318560, + 6453316512, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453217136, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453218752, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -245597,12 +245609,12 @@ 6443913856, 6443821360, 6443848384, - 6453379856, - 6461505456, - 6461505088, - 6461526000, + 6453381616, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -245617,56 +245629,56 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256864, - 6453196304, + 6461548896, + 6453258464, + 6453197920, 6443817520, - 6461547664, - 6461547840, - 6453317664, - 6453317264, - 6453317392, - 6453317536, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6453319424, + 6453319024, + 6453319152, + 6453319296, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453219168, - 6453418256, - 6453415056, - 6453244480, - 6453333152, - 6453299184, - 6453214272, - 6453355536, - 6453212176, - 6453229952, - 6453226656, - 6453241024, - 6453243712, - 6453243360, - 6453244304, - 6453244016, - 6453364064, - 6453397424, - 6453303248, - 6453420976, - 6453355184, - 6453312208, - 6453214336, - 6453373616, - 6453239584 + 6453220784, + 6453420016, + 6453416816, + 6453246080, + 6453334912, + 6453300944, + 6453215888, + 6453357296, + 6453213792, + 6453231568, + 6453228272, + 6453242640, + 6453245312, + 6453244960, + 6453245904, + 6453245616, + 6453365824, + 6453399184, + 6453305008, + 6453422736, + 6453356944, + 6453313968, + 6453215952, + 6453375376, + 6453241200 ], "bases": [ { @@ -245798,7 +245810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702208, + "complete_object_locator": 6468706304, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -245807,10 +245819,10 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 6466464896, + "vtable_address": 6466469024, "methods": [ - 6453194736, - 6453247200 + 6453196352, + 6453248800 ], "bases": [ { @@ -245942,7 +245954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702400, + "complete_object_locator": 6468706496, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -245951,10 +245963,10 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 6466464920, + "vtable_address": 6466469048, "methods": [ - 6453309040, - 6453401664 + 6453310800, + 6453403424 ], "bases": [ { @@ -246086,7 +246098,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702440, + "complete_object_locator": 6468706536, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -246095,11 +246107,11 @@ }, { "type_name": "CUI_Player3dPanel", - "vtable_address": 6466464944, + "vtable_address": 6466469072, "methods": [ - 6453194748, - 6453280608, - 6453320704 + 6453196364, + 6453282368, + 6453322464 ], "bases": [ { @@ -246231,7 +246243,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702480, + "complete_object_locator": 6468706576, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -246240,34 +246252,34 @@ }, { "type_name": "CUI_Popup", - "vtable_address": 6464445304, + "vtable_address": 6464449400, "methods": [ 6443876544, - 6461535472, + 6461537664, 6443910000, 6443911216, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -246281,12 +246293,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -246301,29 +246313,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, + 6461548896, 6443909776, 6443901840, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443914768, @@ -246364,7 +246376,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468227424, + "complete_object_locator": 6468231520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -246373,35 +246385,35 @@ }, { "type_name": "CUI_PopupManager", - "vtable_address": 6464446024, + "vtable_address": 6464450120, "methods": [ 6443876544, - 6461535472, + 6461537664, 6443910016, 6443911248, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443903072, - 6461503872, - 6461504016, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443913808, @@ -246414,12 +246426,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -246434,29 +246446,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, + 6461548896, 6443909792, 6443902064, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443903696 @@ -246493,7 +246505,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468227288, + "complete_object_locator": 6468231384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -246502,34 +246514,34 @@ }, { "type_name": "CUI_Popup_CustomLayout", - "vtable_address": 6464446744, + "vtable_address": 6464450840, "methods": [ 6443876544, - 6461535472, + 6461537664, 6443910032, 6443911280, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -246543,12 +246555,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -246563,29 +246575,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, + 6461548896, 6443909808, 6443902128, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443914768, @@ -246640,7 +246652,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468227704, + "complete_object_locator": 6468231800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -246649,34 +246661,34 @@ }, { "type_name": "CUI_Popup_Generic", - "vtable_address": 6464447464, + "vtable_address": 6464451560, "methods": [ 6443876544, - 6461535472, + 6461537664, 6443910048, 6443911312, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, + 6461537648, + 6461547232, 6443902912, - 6461503872, + 6461506064, 6443903232, 6443844992, 6443848064, @@ -246690,12 +246702,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -246710,29 +246722,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, + 6461548896, 6443909824, 6443902368, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443914768, @@ -246790,7 +246802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468227560, + "complete_object_locator": 6468231656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -246799,35 +246811,35 @@ }, { "type_name": "CUI_Root", - "vtable_address": 6464448416, + "vtable_address": 6464452512, "methods": [ 6443876544, - 6461535472, + 6461537664, 6443910064, 6443911344, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -246840,12 +246852,12 @@ 6443913856, 6443821360, 6443914784, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -246860,29 +246872,29 @@ 6443923408, 6443817680, 6443848032, - 6461546704, + 6461548896, 6443909840, 6443902608, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, 6443922912 @@ -246947,7 +246959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468227848, + "complete_object_locator": 6468231944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -246956,7 +246968,7 @@ }, { "type_name": "CUI_Root", - "vtable_address": 6464449104, + "vtable_address": 6464453200, "methods": [ 6443901580, 6443908704 @@ -247021,7 +247033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468228080, + "complete_object_locator": 6468232176, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -247030,35 +247042,35 @@ }, { "type_name": "CUI_ToastManager", - "vtable_address": 6466861504, + "vtable_address": 6466865616, "methods": [ 6443876544, - 6461535472, - 6456629888, - 6456634752, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631664, + 6456636528, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6456608928, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6456610704, 6443844992, 6443848064, 6443844976, @@ -247071,12 +247083,12 @@ 6443913856, 6443821360, 6443848384, - 6456655344, - 6461505456, - 6461505088, - 6461526000, + 6456657120, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -247086,34 +247098,34 @@ 6443847696, 6443847680, 6443848160, - 6456639536, + 6456641312, 6443914800, - 6456667792, + 6456669600, 6443817680, 6443848032, - 6461546704, - 6456629392, - 6456602944, + 6461548896, + 6456631168, + 6456604720, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -247149,7 +247161,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468807272, + "complete_object_locator": 6468811368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -247158,35 +247170,35 @@ }, { "type_name": "CUI_TooltipContents", - "vtable_address": 6466862936, + "vtable_address": 6466867048, "methods": [ 6443876544, - 6461535472, - 6456629904, - 6456634784, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631680, + 6456636560, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6456607136, - 6461503872, - 6456608784, + 6461537648, + 6461547232, + 6456608912, + 6461506064, + 6456610560, 6443844992, 6443848064, 6443844976, @@ -247199,12 +247211,12 @@ 6443913856, 6443821360, 6443848384, - 6456655408, - 6461505456, - 6461505088, - 6461526000, + 6456657184, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -247219,29 +247231,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629408, - 6456603008, + 6461548896, + 6456631184, + 6456604784, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -247291,7 +247303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468807408, + "complete_object_locator": 6468811504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -247300,35 +247312,35 @@ }, { "type_name": "CUI_TooltipManager", - "vtable_address": 6466864440, + "vtable_address": 6466868552, "methods": [ 6443876544, - 6461535472, - 6456629920, - 6453013472, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631696, + 6453015088, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -247341,12 +247353,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -247361,32 +247373,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629424, - 6456603072, + 6461548896, + 6456631200, + 6456604848, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456655456 + 6456657232 ], "bases": [ { @@ -247420,7 +247432,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468806960, + "complete_object_locator": 6468811056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -247429,35 +247441,35 @@ }, { "type_name": "CUI_Tooltip_Base", - "vtable_address": 6466862240, + "vtable_address": 6466866352, "methods": [ 6443876544, - 6461535472, - 6456629936, - 6456634816, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631712, + 6456636592, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462113024, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462115216, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -247470,12 +247482,12 @@ 6443913856, 6443821360, 6443848384, - 6462114016, - 6461505456, - 6461505088, - 6461526000, + 6462116208, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -247490,33 +247502,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629440, - 6456603136, + 6461548896, + 6456631216, + 6456604912, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456609520, - 6462114064 + 6456611296, + 6462116256 ], "bases": [ { @@ -247564,7 +247576,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468807552, + "complete_object_locator": 6468811648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -247573,35 +247585,35 @@ }, { "type_name": "CUI_Tooltip_CustomLayout", - "vtable_address": 6466863744, + "vtable_address": 6466867856, "methods": [ 6443876544, - 6461535472, - 6456629952, - 6456634848, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631728, + 6456636624, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462113024, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462115216, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -247614,12 +247626,12 @@ 6443913856, 6443821360, 6443848384, - 6462114016, - 6461505456, - 6461505088, - 6461526000, + 6462116208, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -247634,33 +247646,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629456, - 6456603200, + 6461548896, + 6456631232, + 6456604976, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456609520, - 6462114064 + 6456611296, + 6462116256 ], "bases": [ { @@ -247722,7 +247734,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468807792, + "complete_object_locator": 6468811888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -247731,35 +247743,35 @@ }, { "type_name": "CUI_Tooltip_Text", - "vtable_address": 6466865128, + "vtable_address": 6466869240, "methods": [ 6443876544, - 6461535472, - 6456629968, - 6456634896, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631744, + 6456636672, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462113024, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462115216, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -247772,12 +247784,12 @@ 6443913856, 6443821360, 6443848384, - 6462114016, - 6461505456, - 6461505088, - 6461526000, + 6462116208, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -247792,33 +247804,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629472, - 6456603264, + 6461548896, + 6456631248, + 6456605040, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456609520, - 6462114064 + 6456611296, + 6462116256 ], "bases": [ { @@ -247880,7 +247892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468807944, + "complete_object_locator": 6468812040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -247889,35 +247901,35 @@ }, { "type_name": "CUI_Tooltip_TitleImageText", - "vtable_address": 6466866520, + "vtable_address": 6466870632, "methods": [ 6443876544, - 6461535472, - 6456629984, - 6456634944, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631760, + 6456636720, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462113024, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462115216, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -247930,12 +247942,12 @@ 6443913856, 6443821360, 6443848384, - 6462114016, - 6461505456, - 6461505088, - 6461526000, + 6462116208, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -247950,33 +247962,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629488, - 6456603328, + 6461548896, + 6456631264, + 6456605104, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456609520, - 6462114064 + 6456611296, + 6462116256 ], "bases": [ { @@ -248038,7 +248050,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468808248, + "complete_object_locator": 6468812344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -248047,35 +248059,35 @@ }, { "type_name": "CUI_Tooltip_TitleText", - "vtable_address": 6466865824, + "vtable_address": 6466869936, "methods": [ 6443876544, - 6461535472, - 6456630000, - 6456634992, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6456631776, + 6456636768, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462113024, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462115216, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -248088,12 +248100,12 @@ 6443913856, 6443821360, 6443848384, - 6462114016, - 6461505456, - 6461505088, - 6461526000, + 6462116208, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -248108,33 +248120,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629504, - 6456603392, + 6461548896, + 6456631280, + 6456605168, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456609520, - 6462114064 + 6456611296, + 6462116256 ], "bases": [ { @@ -248196,7 +248208,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468808096, + "complete_object_locator": 6468812192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -248205,35 +248217,35 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 6466481080, + "vtable_address": 6466485208, "methods": [ 6443876544, - 6461535472, - 6453257072, - 6453269888, - 6453322160, - 6461546688, - 6461559344, + 6461537664, + 6453258672, + 6453271648, + 6453323920, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6453314128, - 6453314448, - 6461536080, - 6461536928, - 6453316800, - 6453314752, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6453315888, + 6453316208, + 6461538272, + 6461539120, + 6453318560, + 6453316512, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6453217136, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6453218752, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -248246,12 +248258,12 @@ 6443913856, 6443821360, 6443848384, - 6453379856, - 6461505456, - 6461505088, - 6461526000, + 6453381616, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -248266,56 +248278,56 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256880, - 6453196448, + 6461548896, + 6453258480, + 6453198064, 6443817520, - 6461547664, - 6461547840, - 6453317664, - 6453317264, - 6453317392, - 6453317536, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6453319424, + 6453319024, + 6453319152, + 6453319296, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6453219168, - 6453418256, - 6453415056, - 6453244480, - 6453334272, - 6453300240, - 6453214288, - 6453355536, - 6453212176, - 6453229952, - 6453226656, - 6453241024, - 6453243712, - 6453243360, - 6453244304, - 6453244016, - 6453364480, - 6453397520, - 6453303248, - 6453420976, - 6453355184, - 6453312208, - 6453214336, - 6453374432, - 6453240704 + 6453220784, + 6453420016, + 6453416816, + 6453246080, + 6453336032, + 6453302000, + 6453215904, + 6453357296, + 6453213792, + 6453231568, + 6453228272, + 6453242640, + 6453245312, + 6453244960, + 6453245904, + 6453245616, + 6453366240, + 6453399280, + 6453305008, + 6453422736, + 6453356944, + 6453313968, + 6453215952, + 6453376192, + 6453242320 ], "bases": [ { @@ -248461,7 +248473,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702520, + "complete_object_locator": 6468706616, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -248470,10 +248482,10 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 6466481960, + "vtable_address": 6466486088, "methods": [ - 6453194760, - 6453247200 + 6453196376, + 6453248800 ], "bases": [ { @@ -248619,7 +248631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702728, + "complete_object_locator": 6468706824, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -248628,10 +248640,10 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 6466481984, + "vtable_address": 6466486112, "methods": [ - 6453309792, - 6453401664 + 6453311552, + 6453403424 ], "bases": [ { @@ -248777,7 +248789,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702768, + "complete_object_locator": 6468706864, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -248786,11 +248798,11 @@ }, { "type_name": "CUI_Vanity3dPanel", - "vtable_address": 6466482008, + "vtable_address": 6466486136, "methods": [ - 6453194772, - 6453280608, - 6453320704 + 6453196388, + 6453282368, + 6453322464 ], "bases": [ { @@ -248936,7 +248948,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468702808, + "complete_object_locator": 6468706904, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -248945,35 +248957,35 @@ }, { "type_name": "CUI_VanityCapturePanel", - "vtable_address": 6466482040, + "vtable_address": 6466486168, "methods": [ 6443876544, - 6461535472, - 6453257088, - 6453269952, - 6453323680, - 6461546688, - 6461559344, + 6461537664, + 6453258688, + 6453271712, + 6453325440, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -248986,12 +248998,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -249006,32 +249018,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256896, - 6453196608, + 6461548896, + 6453258496, + 6453198224, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651168 + 6452652784 ], "bases": [ { @@ -249093,7 +249105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706224, + "complete_object_locator": 6468710320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -249102,9 +249114,9 @@ }, { "type_name": "CUI_VanityCapturePanel", - "vtable_address": 6466482728, + "vtable_address": 6466486856, "methods": [ - 6453335328 + 6453337088 ], "bases": [ { @@ -249166,7 +249178,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706416, + "complete_object_locator": 6468710512, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -249175,35 +249187,35 @@ }, { "type_name": "CUI_VanityCrossFadePanel", - "vtable_address": 6466483480, + "vtable_address": 6466487608, "methods": [ 6443876544, - 6461535472, - 6453257104, - 6453269984, - 6461352784, - 6461546688, - 6461559344, + 6461537664, + 6453258704, + 6453271744, + 6461354976, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -249216,12 +249228,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -249236,32 +249248,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256912, - 6453196880, + 6461548896, + 6453258512, + 6453198496, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651168 + 6452652784 ], "bases": [ { @@ -249323,7 +249335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706648, + "complete_object_locator": 6468710744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -249332,9 +249344,9 @@ }, { "type_name": "CUI_VanityCrossFadePanel", - "vtable_address": 6466484168, + "vtable_address": 6466488296, "methods": [ - 6453336288 + 6453338048 ], "bases": [ { @@ -249396,7 +249408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706800, + "complete_object_locator": 6468710896, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -249405,35 +249417,35 @@ }, { "type_name": "CUI_VanityOverlayPanel", - "vtable_address": 6466482776, + "vtable_address": 6466486904, "methods": [ 6443876544, - 6461535472, - 6453257120, - 6453270016, - 6461352784, - 6461546688, - 6461559344, + 6461537664, + 6453258720, + 6453271776, + 6461354976, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -249446,12 +249458,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -249466,32 +249478,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453256928, - 6453197152, + 6461548896, + 6453258528, + 6453198768, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651168 + 6452652784 ], "bases": [ { @@ -249553,7 +249565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706456, + "complete_object_locator": 6468710552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -249562,9 +249574,9 @@ }, { "type_name": "CUI_VanityOverlayPanel", - "vtable_address": 6466483464, + "vtable_address": 6466487592, "methods": [ - 6453337408 + 6453339168 ], "bases": [ { @@ -249626,7 +249638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706608, + "complete_object_locator": 6468710704, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -249635,14 +249647,14 @@ }, { "type_name": "CUiComponentGlobalInstanceHelper", - "vtable_address": 6466604928, + "vtable_address": 6466609024, "methods": [ - 6454936064, - 6454845168, - 6454912656, - 6463705588, - 6463705588, - 6454555200 + 6454937824, + 6454846928, + 6454914416, + 6463707780, + 6463707780, + 6454556960 ], "bases": [ { @@ -249662,7 +249674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468734192, + "complete_object_locator": 6468738288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249671,14 +249683,14 @@ }, { "type_name": "CUiComponentLeaderboardContainer", - "vtable_address": 6466633712, + "vtable_address": 6466637808, "methods": [ - 6454477232 + 6454478992 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468744016, + "complete_object_locator": 6468748112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249687,17 +249699,17 @@ }, { "type_name": "CUiComponentMatchListContainer", - "vtable_address": 6466640600, + "vtable_address": 6466644696, "methods": [ - 6454477504, - 6454903744, - 6454903712, - 6463705588 + 6454479264, + 6454905504, + 6454905472, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468737712, + "complete_object_locator": 6468741808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249706,12 +249718,12 @@ }, { "type_name": "CUiComponentMatchListContainer_Downloaded", - "vtable_address": 6466644448, + "vtable_address": 6466648544, "methods": [ - 6454477600, - 6454903760, - 6454903712, - 6454874320 + 6454479360, + 6454905520, + 6454905472, + 6454876080 ], "bases": [ { @@ -249731,7 +249743,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748288, + "complete_object_locator": 6468752384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249740,12 +249752,12 @@ }, { "type_name": "CUiComponentMatchListContainer_Inmemory", - "vtable_address": 6466644488, + "vtable_address": 6466648584, "methods": [ - 6454477696, - 6454903776, - 6454903728, - 6454875312 + 6454479456, + 6454905536, + 6454905488, + 6454877072 ], "bases": [ { @@ -249779,7 +249791,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748416, + "complete_object_locator": 6468752512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249788,12 +249800,12 @@ }, { "type_name": "CUiComponentMatchListContainer_Live", - "vtable_address": 6466644312, + "vtable_address": 6466648408, "methods": [ - 6454477792, - 6454903744, - 6454903712, - 6454875440 + 6454479552, + 6454905504, + 6454905472, + 6454877200 ], "bases": [ { @@ -249813,7 +249825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747904, + "complete_object_locator": 6468752000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249822,12 +249834,12 @@ }, { "type_name": "CUiComponentMatchListContainer_Recent", - "vtable_address": 6466644352, + "vtable_address": 6466648448, "methods": [ - 6454477888, - 6454903744, - 6454903712, - 6454875984 + 6454479648, + 6454905504, + 6454905472, + 6454877744 ], "bases": [ { @@ -249847,7 +249859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748032, + "complete_object_locator": 6468752128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249856,12 +249868,12 @@ }, { "type_name": "CUiComponentMatchListContainer_Tournament", - "vtable_address": 6466644392, + "vtable_address": 6466648488, "methods": [ - 6454477984, - 6454903744, - 6454903712, - 6454876576 + 6454479744, + 6454905504, + 6454905472, + 6454878336 ], "bases": [ { @@ -249881,7 +249893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748160, + "complete_object_locator": 6468752256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249890,14 +249902,14 @@ }, { "type_name": "CUiComponent_Blog", - "vtable_address": 6466603584, + "vtable_address": 6466607680, "methods": [ - 6454928416, - 6454845168, - 6454911712, - 6454762432, - 6454913168, - 6454555008 + 6454930176, + 6454846928, + 6454913472, + 6454764192, + 6454914928, + 6454556768 ], "bases": [ { @@ -249931,7 +249943,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468733216, + "complete_object_locator": 6468737312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249940,14 +249952,14 @@ }, { "type_name": "CUiComponent_CompetitiveMatch", - "vtable_address": 6466604872, + "vtable_address": 6466608968, "methods": [ - 6454936064, - 6454845168, - 6454911824, - 6454762576, - 6454913184, - 6454555024 + 6454937824, + 6454846928, + 6454913584, + 6454764336, + 6454914944, + 6454556784 ], "bases": [ { @@ -249981,7 +249993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468733568, + "complete_object_locator": 6468737664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -249990,14 +250002,14 @@ }, { "type_name": "CUiComponent_DeepStats", - "vtable_address": 6466607376, + "vtable_address": 6466611472, "methods": [ - 6454928432, - 6454844336, - 6454911888, - 6454762720, - 6454913200, - 6454555040 + 6454930192, + 6454846096, + 6454913648, + 6454764480, + 6454914960, + 6454556800 ], "bases": [ { @@ -250031,7 +250043,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468734232, + "complete_object_locator": 6468738328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250040,16 +250052,16 @@ }, { "type_name": "CUiComponent_EmbeddedStream", - "vtable_address": 6466608704, + "vtable_address": 6466612800, "methods": [ - 6454928848, - 6454845168, - 6454911968, - 6454762864, - 6454913216, - 6454555056, - 6454830928, - 6454707872 + 6454930608, + 6454846928, + 6454913728, + 6454764624, + 6454914976, + 6454556816, + 6454832688, + 6454709632 ], "bases": [ { @@ -250083,7 +250095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468734672, + "complete_object_locator": 6468738768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250092,10 +250104,10 @@ }, { "type_name": "CUiComponent_FriendsList", - "vtable_address": 6466612232, + "vtable_address": 6466616328, "methods": [ - 6454478080, - 6455378496 + 6454479840, + 6455380256 ], "bases": [ { @@ -250157,7 +250169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468735016, + "complete_object_locator": 6468739112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -250166,9 +250178,9 @@ }, { "type_name": "CUiComponent_FriendsList", - "vtable_address": 6466612256, + "vtable_address": 6466616352, "methods": [ - 6454826976 + 6454828736 ], "bases": [ { @@ -250230,7 +250242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468735336, + "complete_object_locator": 6468739432, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -250239,14 +250251,14 @@ }, { "type_name": "CUiComponent_FriendsList", - "vtable_address": 6466612272, + "vtable_address": 6466616368, "methods": [ - 6454930016, - 6454845168, - 6454912064, - 6454763008, - 6454913232, - 6454555072 + 6454931776, + 6454846928, + 6454913824, + 6454764768, + 6454914992, + 6454556832 ], "bases": [ { @@ -250308,7 +250320,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468735376, + "complete_object_locator": 6468739472, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -250317,14 +250329,14 @@ }, { "type_name": "CUiComponent_GameInterface", - "vtable_address": 6466615600, + "vtable_address": 6466619696, "methods": [ - 6454930048, - 6454845168, - 6454912112, - 6454763168, - 6454913248, - 6454555088 + 6454931808, + 6454846928, + 6454913872, + 6454764928, + 6454915008, + 6454556848 ], "bases": [ { @@ -250358,7 +250370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736936, + "complete_object_locator": 6468741032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250367,14 +250379,14 @@ }, { "type_name": "CUiComponent_GameState", - "vtable_address": 6466617432, + "vtable_address": 6466621528, "methods": [ - 6454930192, - 6454844384, - 6454913152, - 6454763312, - 6454913264, - 6454555104 + 6454931952, + 6454846144, + 6454914912, + 6454765072, + 6454915024, + 6454556864 ], "bases": [ { @@ -250436,7 +250448,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468737352, + "complete_object_locator": 6468741448, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -250445,10 +250457,10 @@ }, { "type_name": "CUiComponent_GameState", - "vtable_address": 6466617488, + "vtable_address": 6466621584, "methods": [ - 6454468708, - 6454552912 + 6454470468, + 6454554672 ], "bases": [ { @@ -250510,7 +250522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468737672, + "complete_object_locator": 6468741768, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -250519,14 +250531,14 @@ }, { "type_name": "CUiComponent_GameTypes", - "vtable_address": 6466612328, + "vtable_address": 6466616424, "methods": [ - 6454936064, - 6454845168, - 6454912176, - 6454763472, - 6454913280, - 6454555120 + 6454937824, + 6454846928, + 6454913936, + 6454765232, + 6454915040, + 6454556880 ], "bases": [ { @@ -250560,7 +250572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468735416, + "complete_object_locator": 6468739512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250569,14 +250581,14 @@ }, { "type_name": "CUiComponent_GlobalGame", - "vtable_address": 6466625376, + "vtable_address": 6466629472, "methods": [ - 6454932080, - 6454845168, - 6454912320, - 6454763616, - 6454913296, - 6454555136 + 6454933840, + 6454846928, + 6454914080, + 6454765376, + 6454915056, + 6454556896 ], "bases": [ { @@ -250624,7 +250636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468740192, + "complete_object_locator": 6468744288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -250633,9 +250645,9 @@ }, { "type_name": "CUiComponent_GlobalGame", - "vtable_address": 6466625432, + "vtable_address": 6466629528, "methods": [ - 6454828608 + 6454830368 ], "bases": [ { @@ -250683,7 +250695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468740424, + "complete_object_locator": 6468744520, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -250692,14 +250704,14 @@ }, { "type_name": "CUiComponent_Inventory", - "vtable_address": 6466625736, + "vtable_address": 6466629832, "methods": [ - 6454936064, - 6454845168, - 6454912432, - 6454763776, - 6454913312, - 6454555152 + 6454937824, + 6454846928, + 6454914192, + 6454765536, + 6454915072, + 6454556912 ], "bases": [ { @@ -250733,7 +250745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468740464, + "complete_object_locator": 6468744560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250742,14 +250754,14 @@ }, { "type_name": "CUiComponent_Leaderboards", - "vtable_address": 6466633824, + "vtable_address": 6466637920, "methods": [ - 6454936064, - 6454845168, - 6454912512, - 6454763920, - 6454913328, - 6454555168 + 6454937824, + 6454846928, + 6454914272, + 6454765680, + 6454915088, + 6454556928 ], "bases": [ { @@ -250783,7 +250795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468744136, + "complete_object_locator": 6468748232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250792,14 +250804,14 @@ }, { "type_name": "CUiComponent_Loadout", - "vtable_address": 6466625792, + "vtable_address": 6466629888, "methods": [ - 6454932208, - 6454845168, - 6454912592, - 6454764064, - 6454913344, - 6454555184 + 6454933968, + 6454846928, + 6454914352, + 6454765824, + 6454915104, + 6454556944 ], "bases": [ { @@ -250833,7 +250845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468740688, + "complete_object_locator": 6468744784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -250842,14 +250854,14 @@ }, { "type_name": "CUiComponent_Lobby", - "vtable_address": 6466604984, + "vtable_address": 6466609080, "methods": [ - 6454932240, - 6454844992, - 6454912656, - 6454764208, - 6454913360, - 6454555200 + 6454934000, + 6454846752, + 6454914416, + 6454765968, + 6454915120, + 6454556960 ], "bases": [ { @@ -250911,7 +250923,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468733792, + "complete_object_locator": 6468737888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -250920,9 +250932,9 @@ }, { "type_name": "CUiComponent_Lobby", - "vtable_address": 6466605040, + "vtable_address": 6466609136, "methods": [ - 6454828672 + 6454830432 ], "bases": [ { @@ -250984,7 +250996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468734112, + "complete_object_locator": 6468738208, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -250993,12 +251005,12 @@ }, { "type_name": "CUiComponent_Lobby", - "vtable_address": 6466605056, + "vtable_address": 6466609152, "methods": [ - 6454904176, - 6454489504, - 6452145648, - 6452279680 + 6454905936, + 6454491264, + 6452147232, + 6452281264 ], "bases": [ { @@ -251060,7 +251072,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468734152, + "complete_object_locator": 6468738248, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -251069,14 +251081,14 @@ }, { "type_name": "CUiComponent_MatchDraft", - "vtable_address": 6466640544, + "vtable_address": 6466644640, "methods": [ - 6454936064, - 6454845168, - 6454912880, - 6454764368, - 6454913376, - 6454555216 + 6454937824, + 6454846928, + 6454914640, + 6454766128, + 6454915136, + 6454556976 ], "bases": [ { @@ -251110,7 +251122,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468745528, + "complete_object_locator": 6468749624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -251119,14 +251131,14 @@ }, { "type_name": "CUiComponent_MatchInfo", - "vtable_address": 6466617624, + "vtable_address": 6466621720, "methods": [ - 6454933008, - 6454845168, - 6454912944, - 6454764512, - 6454913392, - 6454555232 + 6454934768, + 6454846928, + 6454914704, + 6454766272, + 6454915152, + 6454556992 ], "bases": [ { @@ -251160,7 +251172,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468737832, + "complete_object_locator": 6468741928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -251169,14 +251181,14 @@ }, { "type_name": "CUiComponent_MatchList", - "vtable_address": 6466640736, + "vtable_address": 6466644832, "methods": [ - 6454934864, - 6454845168, - 6454912992, - 6454764656, - 6454913408, - 6454555248 + 6454936624, + 6454846928, + 6454914752, + 6454766416, + 6454915168, + 6454557008 ], "bases": [ { @@ -251210,7 +251222,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468746776, + "complete_object_locator": 6468750872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -251219,14 +251231,14 @@ }, { "type_name": "CUiComponent_MatchStats", - "vtable_address": 6466617680, + "vtable_address": 6466621776, "methods": [ - 6454936064, - 6454845168, - 6454913088, - 6454764800, - 6454913424, - 6454555264 + 6454937824, + 6454846928, + 6454914848, + 6454766560, + 6454915184, + 6454557024 ], "bases": [ { @@ -251260,7 +251272,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468738456, + "complete_object_locator": 6468742552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -251269,14 +251281,14 @@ }, { "type_name": "CUiComponent_Missions", - "vtable_address": 6466666384, + "vtable_address": 6466670480, "methods": [ - 6455657200, - 6455552368, - 6455640608, - 6455485184, - 6455640736, - 6455368176 + 6455658960, + 6455554128, + 6455642368, + 6455486944, + 6455642496, + 6455369936 ], "bases": [ { @@ -251324,7 +251336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468753872, + "complete_object_locator": 6468757968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -251333,13 +251345,13 @@ }, { "type_name": "CUiComponent_Missions", - "vtable_address": 6466666440, + "vtable_address": 6466670536, "methods": [ - 6455605408, - 6455605568, - 6455605488, - 6455605008, - 6455605344 + 6455607168, + 6455607328, + 6455607248, + 6455606768, + 6455607104 ], "bases": [ { @@ -251387,7 +251399,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754144, + "complete_object_locator": 6468758240, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -251396,14 +251408,14 @@ }, { "type_name": "CUiComponent_MyPersona", - "vtable_address": 6466666752, + "vtable_address": 6466670848, "methods": [ - 6455657648, - 6454845168, - 6455639280, - 6455485344, - 6455640752, - 6455367936 + 6455659408, + 6454846928, + 6455641040, + 6455487104, + 6455642512, + 6455369696 ], "bases": [ { @@ -251451,7 +251463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754184, + "complete_object_locator": 6468758280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -251460,9 +251472,9 @@ }, { "type_name": "CUiComponent_MyPersona", - "vtable_address": 6466666808, + "vtable_address": 6466670904, "methods": [ - 6455531088 + 6455532848 ], "bases": [ { @@ -251510,7 +251522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468754416, + "complete_object_locator": 6468758512, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -251519,14 +251531,14 @@ }, { "type_name": "CUiComponent_News", - "vtable_address": 6466675392, + "vtable_address": 6466679488, "methods": [ - 6455665280, - 6454845168, - 6455639360, - 6455485504, - 6455640768, - 6455367952 + 6455667040, + 6454846928, + 6455641120, + 6455487264, + 6455642528, + 6455369712 ], "bases": [ { @@ -251560,7 +251572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468761864, + "complete_object_locator": 6468765960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -251569,14 +251581,14 @@ }, { "type_name": "CUiComponent_OptionsMenu", - "vtable_address": 6466676552, + "vtable_address": 6466680648, "methods": [ - 6454936064, - 6454845168, - 6455639424, - 6455485648, - 6455640784, - 6455367968 + 6454937824, + 6454846928, + 6455641184, + 6455487408, + 6455642544, + 6455369728 ], "bases": [ { @@ -251610,7 +251622,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468762736, + "complete_object_locator": 6468766832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -251619,14 +251631,14 @@ }, { "type_name": "CUiComponent_Overwatch", - "vtable_address": 6466676992, + "vtable_address": 6466681088, "methods": [ - 6455665296, - 6454845168, - 6455639488, - 6455485792, - 6455640800, - 6455367984 + 6455667056, + 6454846928, + 6455641248, + 6455487552, + 6455642560, + 6455369744 ], "bases": [ { @@ -251660,7 +251672,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468762960, + "complete_object_locator": 6468767056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -251669,14 +251681,14 @@ }, { "type_name": "CUiComponent_PartyBrowser", - "vtable_address": 6466678296, + "vtable_address": 6466682392, "methods": [ - 6455666880, - 6454845168, - 6455639568, - 6455485936, - 6455640816, - 6455368000 + 6455668640, + 6454846928, + 6455641328, + 6455487696, + 6455642576, + 6455369760 ], "bases": [ { @@ -251724,7 +251736,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468764216, + "complete_object_locator": 6468768312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -251733,9 +251745,9 @@ }, { "type_name": "CUiComponent_PartyBrowser", - "vtable_address": 6466678352, + "vtable_address": 6466682448, "methods": [ - 6455531424 + 6455533184 ], "bases": [ { @@ -251783,7 +251795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468764448, + "complete_object_locator": 6468768544, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -251792,10 +251804,10 @@ }, { "type_name": "CUiComponent_PartyList", - "vtable_address": 6466668856, + "vtable_address": 6466672952, "methods": [ - 6455311248, - 6455378496 + 6455313008, + 6455380256 ], "bases": [ { @@ -251857,7 +251869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757072, + "complete_object_locator": 6468761168, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -251866,9 +251878,9 @@ }, { "type_name": "CUiComponent_PartyList", - "vtable_address": 6466668880, + "vtable_address": 6466672976, "methods": [ - 6455532224 + 6455533984 ], "bases": [ { @@ -251930,7 +251942,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757352, + "complete_object_locator": 6468761448, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -251939,14 +251951,14 @@ }, { "type_name": "CUiComponent_PartyList", - "vtable_address": 6466668896, + "vtable_address": 6466672992, "methods": [ - 6455667936, - 6455552832, - 6455640720, - 6455486096, - 6455640832, - 6455368016 + 6455669696, + 6455554592, + 6455642480, + 6455487856, + 6455642592, + 6455369776 ], "bases": [ { @@ -252008,7 +252020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757392, + "complete_object_locator": 6468761488, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -252017,14 +252029,14 @@ }, { "type_name": "CUiComponent_Predictions", - "vtable_address": 6466681896, + "vtable_address": 6466685992, "methods": [ - 6454936064, - 6454845168, - 6455639648, - 6455486256, - 6455640848, - 6455368032 + 6454937824, + 6454846928, + 6455641408, + 6455488016, + 6455642608, + 6455369792 ], "bases": [ { @@ -252058,7 +252070,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468766016, + "complete_object_locator": 6468770112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252067,14 +252079,14 @@ }, { "type_name": "CUiComponent_SteamOverlay", - "vtable_address": 6466668512, + "vtable_address": 6466672608, "methods": [ - 6454936064, - 6454845168, - 6455639728, - 6455486400, - 6455640864, - 6455368048 + 6454937824, + 6454846928, + 6455641488, + 6455488160, + 6455642624, + 6455369808 ], "bases": [ { @@ -252108,7 +252120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468756032, + "complete_object_locator": 6468760128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252117,14 +252129,14 @@ }, { "type_name": "CUiComponent_Store", - "vtable_address": 6466668760, + "vtable_address": 6466672856, "methods": [ - 6454936064, - 6454845168, - 6455639792, - 6455486544, - 6455640880, - 6455368064 + 6454937824, + 6454846928, + 6455641552, + 6455488304, + 6455642640, + 6455369824 ], "bases": [ { @@ -252172,7 +252184,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468756528, + "complete_object_locator": 6468760624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -252181,9 +252193,9 @@ }, { "type_name": "CUiComponent_Store", - "vtable_address": 6466668816, + "vtable_address": 6466672912, "methods": [ - 6455534576 + 6455536336 ], "bases": [ { @@ -252231,7 +252243,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468756760, + "complete_object_locator": 6468760856, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -252240,14 +252252,14 @@ }, { "type_name": "CUiComponent_Streams", - "vtable_address": 6466688024, + "vtable_address": 6466692120, "methods": [ - 6454936064, - 6454845168, - 6455639872, - 6455486704, - 6455640896, - 6455368080 + 6454937824, + 6454846928, + 6455641632, + 6455488464, + 6455642656, + 6455369840 ], "bases": [ { @@ -252281,7 +252293,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468767880, + "complete_object_locator": 6468771976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252290,10 +252302,10 @@ }, { "type_name": "CUiComponent_Teammates", - "vtable_address": 6466689392, + "vtable_address": 6466693488, "methods": [ - 6455311472, - 6455378400 + 6455313232, + 6455380160 ], "bases": [ { @@ -252355,7 +252367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768360, + "complete_object_locator": 6468772456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -252364,9 +252376,9 @@ }, { "type_name": "CUiComponent_Teammates", - "vtable_address": 6466689416, + "vtable_address": 6466693512, "methods": [ - 6455534960 + 6455536720 ], "bases": [ { @@ -252428,7 +252440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768640, + "complete_object_locator": 6468772736, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -252437,14 +252449,14 @@ }, { "type_name": "CUiComponent_Teammates", - "vtable_address": 6466689432, + "vtable_address": 6466693528, "methods": [ - 6455668384, - 6454845168, - 6455640160, - 6455486848, - 6455640912, - 6455368096 + 6455670144, + 6454846928, + 6455641920, + 6455488608, + 6455642672, + 6455369856 ], "bases": [ { @@ -252506,7 +252518,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768680, + "complete_object_locator": 6468772776, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -252515,14 +252527,14 @@ }, { "type_name": "CUiComponent_Tournaments", - "vtable_address": 6466681984, + "vtable_address": 6466686080, "methods": [ - 6455668400, - 6454845168, - 6455640208, - 6455487008, - 6455640928, - 6455368112 + 6455670160, + 6454846928, + 6455641968, + 6455488768, + 6455642688, + 6455369872 ], "bases": [ { @@ -252556,7 +252568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468766240, + "complete_object_locator": 6468770336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252565,14 +252577,14 @@ }, { "type_name": "CUiComponent_UiToolkit", - "vtable_address": 6466691744, + "vtable_address": 6466695840, "methods": [ - 6454936064, - 6454845168, - 6455640288, - 6455487152, - 6455640944, - 6455368128 + 6454937824, + 6454846928, + 6455642048, + 6455488912, + 6455642704, + 6455369888 ], "bases": [ { @@ -252606,7 +252618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468770280, + "complete_object_locator": 6468774376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252615,15 +252627,15 @@ }, { "type_name": "CUiComponent_UsersListBase", - "vtable_address": 6466612208, + "vtable_address": 6466616304, "methods": [ - 6454478816, - 6455378496 + 6454480576, + 6455380256 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468734896, + "complete_object_locator": 6468738992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252632,14 +252644,14 @@ }, { "type_name": "CUiComponent_Workshop", - "vtable_address": 6466703040, + "vtable_address": 6466707136, "methods": [ - 6454936064, - 6454845168, - 6455640448, - 6455487296, - 6455640960, - 6455368144 + 6454937824, + 6454846928, + 6455642208, + 6455489056, + 6455642720, + 6455369904 ], "bases": [ { @@ -252673,7 +252685,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468770656, + "complete_object_locator": 6468774752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252682,11 +252694,11 @@ }, { "type_name": "CUiComponent_WorkshopAnnotation", - "vtable_address": 6466703920, + "vtable_address": 6466708016, "methods": [ - 6455582928, - 6455369824, - 6455609520 + 6455584688, + 6455371584, + 6455611280 ], "bases": [ { @@ -252734,7 +252746,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468771672, + "complete_object_locator": 6468775768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -252743,14 +252755,14 @@ }, { "type_name": "CUiComponent_WorkshopAnnotation", - "vtable_address": 6466703952, + "vtable_address": 6466708048, "methods": [ - 6454936064, - 6454845168, - 6455640528, - 6455487440, - 6455640976, - 6455368160 + 6454937824, + 6454846928, + 6455642288, + 6455489200, + 6455642736, + 6455369920 ], "bases": [ { @@ -252798,7 +252810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468771984, + "complete_object_locator": 6468776080, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -252807,10 +252819,10 @@ }, { "type_name": "CUniformRandomStreamATP", - "vtable_address": 6467014912, + "vtable_address": 6467018976, "methods": [ - 6458620784, - 6458620640 + 6458622976, + 6458622832 ], "bases": [ { @@ -252830,7 +252842,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468861216, + "complete_object_locator": 6468865312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -252839,18 +252851,18 @@ }, { "type_name": "CUserCmd", - "vtable_address": 6465720432, + "vtable_address": 6465724624, "methods": [ - 6448809488, - 6448911776, - 6450252416, - 6448830560, + 6448811056, + 6448913344, + 6450253984, + 6448832128, 6447801072, - 6448743104, - 6449026896, - 6449015840, - 6449067600, - 6449007152 + 6448744672, + 6449028448, + 6449017392, + 6449069152, + 6449008704 ], "bases": [ { @@ -252940,7 +252952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468495112, + "complete_object_locator": 6468499208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -252949,25 +252961,25 @@ }, { "type_name": "CUserCmd", - "vtable_address": 6465720520, + "vtable_address": 6465724712, "methods": [ - 6448807040, - 6457189536, - 6447965984, - 6447966304, - 6447966464, - 6457189584, - 6457186560, - 6447966480, - 6447968528, - 6447966800, + 6448808608, + 6457191728, + 6447967552, + 6447967872, + 6447968032, + 6457191776, + 6457188752, + 6447968048, + 6447970096, + 6447968368, 6443742160, - 6447967984, - 6457190896, - 6457192720, - 6447968544, - 6447968576, - 6447968560 + 6447969552, + 6457193088, + 6457194912, + 6447970112, + 6447970144, + 6447970128 ], "bases": [ { @@ -253057,7 +253069,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468495400, + "complete_object_locator": 6468499496, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -253066,21 +253078,21 @@ }, { "type_name": "CUserCmdBase", - "vtable_address": 6465720128, + "vtable_address": 6465724320, "methods": [ - 6448809568, - 6463705588, - 6450252416, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6448811136, + 6463707780, + 6450253984, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468493832, + "complete_object_locator": 6468497928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -253089,18 +253101,18 @@ }, { "type_name": "CUserCmdBaseHost", - "vtable_address": 6465720200, + "vtable_address": 6465724392, "methods": [ - 6448808864, - 6448911776, - 6450252416, - 6448830560, + 6448810432, + 6448913344, + 6450253984, + 6448832128, 6447801072, - 6448743104, - 6449026896, - 6449015840, - 6449067600, - 6449007152 + 6448744672, + 6449028448, + 6449017392, + 6449069152, + 6449008704 ], "bases": [ { @@ -253162,7 +253174,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468493952, + "complete_object_locator": 6468498048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -253171,25 +253183,25 @@ }, { "type_name": "CUserCmdBaseHost", - "vtable_address": 6465720288, + "vtable_address": 6465724480, "methods": [ - 6448807016, - 6457189536, - 6447965984, - 6447966304, - 6447966464, - 6457189584, - 6457186560, - 6447966480, - 6447968528, - 6447966800, + 6448808584, + 6457191728, + 6447967552, + 6447967872, + 6447968032, + 6457191776, + 6457188752, + 6447968048, + 6447970096, + 6447968368, 6443742160, - 6447967984, - 6457190896, - 6457192720, - 6447968544, - 6447968576, - 6447968560 + 6447969552, + 6457193088, + 6457194912, + 6447970112, + 6447970144, + 6447970128 ], "bases": [ { @@ -253251,7 +253263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494224, + "complete_object_locator": 6468498320, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -253260,22 +253272,22 @@ }, { "type_name": "CUserCmdBasePB", - "vtable_address": 6464859392, + "vtable_address": 6464863472, "methods": [ 6445592864, - 6457189536, + 6457191728, 6445591936, 6445592096, 6445592160, - 6457189584, - 6457186560, + 6457191776, + 6457188752, 6445592176, 6445592752, 6445592256, 6443742160, 6445592640, - 6457190896, - 6457192720, + 6457193088, + 6457194912, 6445592768, 6445592800, 6445592784 @@ -253312,7 +253324,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468290648, + "complete_object_locator": 6468294744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -253321,10 +253333,10 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 6465706096, + "vtable_address": 6465710448, "methods": [ - 6448747440, - 6448747792 + 6448749008, + 6448749360 ], "bases": [ { @@ -253372,7 +253384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490696, + "complete_object_locator": 6468494792, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -253381,11 +253393,11 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 6465706120, + "vtable_address": 6465710472, "methods": [ - 6448747360, + 6448748928, 6443748592, - 6448747408, + 6448748976, 6443748624, 6443748640, 6443748656, @@ -253439,11 +253451,11 @@ 6443749424, 6443749440, 6443749456, - 6448747328, + 6448748896, 6443749488, - 6448747312, - 6448745944, - 6448747296 + 6448748880, + 6448747512, + 6448748864 ], "bases": [ { @@ -253491,7 +253503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468490920, + "complete_object_locator": 6468495016, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -253500,25 +253512,25 @@ }, { "type_name": "CUserMessageAchievementEvent", - "vtable_address": 6465198184, - "methods": [ - 6447327776, - 6457189536, - 6447323904, - 6447323984, - 6447324016, - 6457189584, - 6457186560, - 6447324032, - 6447324864, - 6447324080, + "vtable_address": 6465202264, + "methods": [ + 6447328000, + 6457191728, + 6447324128, + 6447324208, + 6447324240, + 6457191776, + 6457188752, + 6447324256, + 6447325088, + 6447324304, 6443742160, - 6447324544, - 6457190896, - 6457192720, - 6447324880, - 6447325232, - 6447325216 + 6447324704, + 6457193088, + 6457194912, + 6447325104, + 6447325456, + 6447325440 ], "bases": [ { @@ -253552,7 +253564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374216, + "complete_object_locator": 6468378312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -253561,25 +253573,25 @@ }, { "type_name": "CUserMessageAmmoDenied", - "vtable_address": 6465159488, - "methods": [ + "vtable_address": 6465163568, + "methods": [ + 6447094400, + 6457191728, + 6447092976, + 6447093056, + 6447093088, + 6457191776, + 6457188752, + 6447093104, + 6447093792, + 6447093152, + 6443742160, + 6447093616, + 6457193088, + 6457194912, + 6447094144, 6447094176, - 6457189536, - 6447092752, - 6447092832, - 6447092864, - 6457189584, - 6457186560, - 6447092880, - 6447093568, - 6447092928, - 6443742160, - 6447093392, - 6457190896, - 6457192720, - 6447093920, - 6447093952, - 6447093936 + 6447094160 ], "bases": [ { @@ -253613,7 +253625,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374256, + "complete_object_locator": 6468378352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -253622,33 +253634,33 @@ }, { "type_name": "CUserMessageAnimStateGraphState", - "vtable_address": 6465214728, + "vtable_address": 6465218808, "methods": [ - 6447393968, - 6457189536, - 6447386736, - 6447386896, + 6447394176, + 6457191728, + 6447386960, 6447387120, - 6457189584, - 6457186560, - 6447387280, + 6447387344, + 6457191776, + 6457188752, + 6447387504, + 6447388496, + 6447387616, + 6443742160, 6447388272, - 6447387392, - 6443742160, - 6447388048, - 6457190896, - 6457192720, - 6447388896, - 6447391504, - 6447391488, - 6457187520, - 6447392864, - 6457187520, - 6447394176, - 6457187520, - 6447394480, - 6457187520, - 6447394944 + 6457193088, + 6457194912, + 6447389120, + 6447391728, + 6447391712, + 6457189712, + 6447393088, + 6457189712, + 6447394400, + 6457189712, + 6447394704, + 6457189712, + 6447396112 ], "bases": [ { @@ -253682,7 +253694,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374296, + "complete_object_locator": 6468378392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -253691,25 +253703,25 @@ }, { "type_name": "CUserMessageAudioParameter", - "vtable_address": 6465095568, - "methods": [ - 6447019920, - 6457189536, - 6447001040, - 6447009200, - 6447009232, - 6457189584, - 6457186560, - 6447013728, - 6447015088, - 6447013888, - 6443742160, - 6447014656, - 6457190896, - 6457192720, - 6447015968, - 6447016960, - 6447016944 + "vtable_address": 6465099648, + "methods": [ + 6447020144, + 6457191728, + 6447001264, + 6447009424, + 6447009456, + 6457191776, + 6457188752, + 6447013952, + 6447015312, + 6447014112, + 6443742160, + 6447014880, + 6457193088, + 6457194912, + 6447016192, + 6447017184, + 6447017168 ], "bases": [ { @@ -253743,7 +253755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374336, + "complete_object_locator": 6468378432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -253752,13 +253764,13 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 6466040616, + "vtable_address": 6466044824, "methods": [ - 6451087808, - 6450072448, - 6450072432, - 6450072464, - 6450072544 + 6451089376, + 6450074016, + 6450074000, + 6450074032, + 6450074112 ], "bases": [ { @@ -253848,7 +253860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468587616, + "complete_object_locator": 6468591712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -253857,25 +253869,25 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 6466040664, - "methods": [ - 6451086456, - 6457189536, - 6447001040, - 6447009200, - 6447009232, - 6457189584, - 6457186560, - 6447013728, - 6447015088, - 6447013888, - 6443742160, - 6447014656, - 6457190896, - 6457192720, - 6447015968, - 6447016960, - 6447016944 + "vtable_address": 6466044872, + "methods": [ + 6451088024, + 6457191728, + 6447001264, + 6447009424, + 6447009456, + 6457191776, + 6457188752, + 6447013952, + 6447015312, + 6447014112, + 6443742160, + 6447014880, + 6457193088, + 6457194912, + 6447016192, + 6447017184, + 6447017168 ], "bases": [ { @@ -253965,7 +253977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468587904, + "complete_object_locator": 6468592000, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -253974,31 +253986,31 @@ }, { "type_name": "CUserMessageCameraTransition", - "vtable_address": 6465177880, - "methods": [ - 6447238544, - 6457189536, - 6447227632, - 6447228000, - 6447228144, - 6457189584, - 6457186560, - 6447228160, - 6447229280, - 6447228496, - 6443742160, - 6447229024, - 6457190896, - 6457192720, - 6447229456, - 6447229632, - 6447229616, - 6457187520, - 6447234976, - 6457187520, - 6447238736, - 6457187520, - 6447239872 + "vtable_address": 6465181960, + "methods": [ + 6447238768, + 6457191728, + 6447227856, + 6447228224, + 6447228368, + 6457191776, + 6457188752, + 6447228384, + 6447229504, + 6447228656, + 6443742160, + 6447229248, + 6457193088, + 6457194912, + 6447229680, + 6447229856, + 6447229840, + 6457189712, + 6447235200, + 6457189712, + 6447238960, + 6457189712, + 6447240096 ], "bases": [ { @@ -254032,7 +254044,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374376, + "complete_object_locator": 6468378472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -254041,29 +254053,29 @@ }, { "type_name": "CUserMessageCameraTransition_Transition_DataDriven", - "vtable_address": 6465176584, + "vtable_address": 6465180664, "methods": [ - 6447220288, - 6457189536, - 6447215424, - 6447216384, + 6447220512, + 6457191728, + 6447215392, + 6447216608, 6447216688, - 6457189584, - 6457186560, - 6447216880, - 6447217808, - 6447217008, - 6443742160, - 6447217536, - 6457190896, - 6457192720, - 6447217824, - 6447218096, - 6447218080, - 6457187520, - 6447220192, - 6457187520, - 6447221056 + 6457191776, + 6457188752, + 6447217088, + 6447218032, + 6447217232, + 6443742160, + 6447217744, + 6457193088, + 6457194912, + 6447218048, + 6447218320, + 6447218304, + 6457189712, + 6447220416, + 6457189712, + 6447221264 ], "bases": [ { @@ -254097,7 +254109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374416, + "complete_object_locator": 6468378512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -254106,13 +254118,13 @@ }, { "type_name": "CUserMessageCameraTransition_t", - "vtable_address": 6466012496, + "vtable_address": 6466016696, "methods": [ - 6450922400, - 6450072080, - 6450072064, - 6450072096, - 6450072176 + 6450923968, + 6450073648, + 6450073632, + 6450073664, + 6450073744 ], "bases": [ { @@ -254202,7 +254214,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468578344, + "complete_object_locator": 6468582440, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -254211,25 +254223,25 @@ }, { "type_name": "CUserMessageCameraTransition_t", - "vtable_address": 6466012544, + "vtable_address": 6466016744, "methods": [ - 6450920968, - 6457189536, - 6447227632, - 6447228000, - 6447228144, - 6457189584, - 6457186560, - 6447228160, - 6447229280, - 6447228496, + 6450922536, + 6457191728, + 6447227856, + 6447228224, + 6447228368, + 6457191776, + 6457188752, + 6447228384, + 6447229504, + 6447228656, 6443742160, - 6447229024, - 6457190896, - 6457192720, - 6447229456, - 6447229632, - 6447229616 + 6447229248, + 6457193088, + 6457194912, + 6447229680, + 6447229856, + 6447229840 ], "bases": [ { @@ -254319,7 +254331,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468578632, + "complete_object_locator": 6468582728, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -254328,27 +254340,27 @@ }, { "type_name": "CUserMessageCloseCaption", - "vtable_address": 6465199800, + "vtable_address": 6465203880, "methods": [ - 6447341888, - 6457189536, - 6447334416, - 6447334688, - 6447334736, - 6457189584, - 6457186560, - 6447334752, - 6447336656, - 6447335232, - 6443742160, - 6447336224, - 6457190896, - 6457192720, - 6447337408, - 6447337712, - 6447337696, - 6457187520, - 6447342048 + 6447342112, + 6457191728, + 6447334640, + 6447334912, + 6447334960, + 6457191776, + 6457188752, + 6447334976, + 6447336880, + 6447335456, + 6443742160, + 6447336448, + 6457193088, + 6457194912, + 6447337632, + 6447337936, + 6447337920, + 6457189712, + 6447342272 ], "bases": [ { @@ -254382,7 +254394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374552, + "complete_object_locator": 6468378648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -254391,25 +254403,25 @@ }, { "type_name": "CUserMessageCloseCaptionDirect", - "vtable_address": 6465209008, - "methods": [ - 6447357360, - 6457189536, - 6447349808, - 6447352768, - 6447352816, - 6457189584, - 6457186560, - 6447352832, - 6447353840, - 6447352928, + "vtable_address": 6465213088, + "methods": [ + 6447357584, + 6457191728, + 6447350032, + 6447352992, + 6447353040, + 6457191776, + 6457188752, + 6447353056, + 6447354064, + 6447353152, 6443742160, - 6447353520, - 6457190896, - 6457192720, - 6447353872, - 6447353968, - 6447353952 + 6447353744, + 6457193088, + 6457194912, + 6447354096, + 6447354192, + 6447354176 ], "bases": [ { @@ -254443,7 +254455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374592, + "complete_object_locator": 6468378688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -254452,13 +254464,13 @@ }, { "type_name": "CUserMessageCloseCaptionDirect_t", - "vtable_address": 6466134528, + "vtable_address": 6466138736, "methods": [ - 6451556432, - 6450071344, - 6450071328, - 6450071360, - 6450071440 + 6451558016, + 6450072912, + 6450072896, + 6450072928, + 6450073008 ], "bases": [ { @@ -254548,7 +254560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468613376, + "complete_object_locator": 6468617472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -254557,25 +254569,25 @@ }, { "type_name": "CUserMessageCloseCaptionDirect_t", - "vtable_address": 6466134576, - "methods": [ - 6451555976, - 6457189536, - 6447349808, - 6447352768, - 6447352816, - 6457189584, - 6457186560, - 6447352832, - 6447353840, - 6447352928, + "vtable_address": 6466138784, + "methods": [ + 6451557560, + 6457191728, + 6447350032, + 6447352992, + 6447353040, + 6457191776, + 6457188752, + 6447353056, + 6447354064, + 6447353152, 6443742160, - 6447353520, - 6457190896, - 6457192720, - 6447353872, - 6447353968, - 6447353952 + 6447353744, + 6457193088, + 6457194912, + 6447354096, + 6447354192, + 6447354176 ], "bases": [ { @@ -254665,7 +254677,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468613664, + "complete_object_locator": 6468617760, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -254674,29 +254686,29 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder", - "vtable_address": 6465212648, - "methods": [ - 6447373040, - 6457189536, - 6447362560, - 6447365072, - 6447365328, - 6457189584, - 6457186560, - 6447365344, - 6447366704, + "vtable_address": 6465216728, + "methods": [ + 6447373264, + 6457191728, + 6447362784, + 6447365296, + 6447365552, + 6457191776, + 6457188752, 6447365568, + 6447366928, + 6447365792, 6443742160, - 6447366208, - 6457190896, - 6457192720, - 6447366800, - 6447366832, - 6447366816, - 6457187520, - 6447370464, - 6457187520, - 6447371872 + 6447366432, + 6457193088, + 6457194912, + 6447367024, + 6447367056, + 6447367040, + 6457189712, + 6447370688, + 6457189712, + 6447372096 ], "bases": [ { @@ -254730,7 +254742,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374632, + "complete_object_locator": 6468378728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -254739,13 +254751,13 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder_t", - "vtable_address": 6466134720, + "vtable_address": 6466138928, "methods": [ - 6451556528, - 6450071712, - 6450071696, - 6450071728, - 6450071808 + 6451558112, + 6450073280, + 6450073264, + 6450073296, + 6450073376 ], "bases": [ { @@ -254835,7 +254847,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468613704, + "complete_object_locator": 6468617800, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -254844,25 +254856,25 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder_t", - "vtable_address": 6466134768, - "methods": [ - 6451555988, - 6457189536, - 6447362560, - 6447365072, - 6447365328, - 6457189584, - 6457186560, - 6447365344, - 6447366704, + "vtable_address": 6466138976, + "methods": [ + 6451557572, + 6457191728, + 6447362784, + 6447365296, + 6447365552, + 6457191776, + 6457188752, 6447365568, + 6447366928, + 6447365792, 6443742160, - 6447366208, - 6457190896, - 6457192720, - 6447366800, - 6447366832, - 6447366816 + 6447366432, + 6457193088, + 6457194912, + 6447367024, + 6447367056, + 6447367040 ], "bases": [ { @@ -254952,7 +254964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468613992, + "complete_object_locator": 6468618088, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -254961,13 +254973,13 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 6466134336, + "vtable_address": 6466138544, "methods": [ - 6451556624, - 6450070976, - 6450070960, - 6450070992, - 6450071072 + 6451558208, + 6450072544, + 6450072528, + 6450072560, + 6450072640 ], "bases": [ { @@ -255057,7 +255069,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468613048, + "complete_object_locator": 6468617144, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -255066,25 +255078,25 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 6466134384, - "methods": [ - 6451556000, - 6457189536, - 6447334416, - 6447334688, - 6447334736, - 6457189584, - 6457186560, - 6447334752, - 6447336656, - 6447335232, - 6443742160, - 6447336224, - 6457190896, - 6457192720, - 6447337408, - 6447337712, - 6447337696 + "vtable_address": 6466138592, + "methods": [ + 6451557584, + 6457191728, + 6447334640, + 6447334912, + 6447334960, + 6457191776, + 6457188752, + 6447334976, + 6447336880, + 6447335456, + 6443742160, + 6447336448, + 6457193088, + 6457194912, + 6447337632, + 6447337936, + 6447337920 ], "bases": [ { @@ -255174,7 +255186,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468613336, + "complete_object_locator": 6468617432, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -255183,27 +255195,27 @@ }, { "type_name": "CUserMessageColoredText", - "vtable_address": 6465133624, - "methods": [ - 6447076240, - 6457189536, - 6447067520, - 6447067968, - 6447068064, - 6457189584, - 6457186560, - 6447068080, - 6447069792, + "vtable_address": 6465137704, + "methods": [ + 6447076256, + 6457191728, + 6447067744, + 6447068192, + 6447068288, + 6457191776, + 6457188752, 6447068304, + 6447070016, + 6447068528, 6443742160, - 6447069232, - 6457190896, - 6457192720, - 6447069904, - 6447072480, - 6447072464, - 6457187520, - 6447074560 + 6447069456, + 6457193088, + 6457194912, + 6447070128, + 6447072704, + 6447072688, + 6457189712, + 6447074784 ], "bases": [ { @@ -255237,7 +255249,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374672, + "complete_object_locator": 6468378768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -255246,25 +255258,25 @@ }, { "type_name": "CUserMessageCreditsMsg", - "vtable_address": 6465161760, - "methods": [ - 6447124528, - 6457189536, - 6447118480, - 6447118592, - 6447118640, - 6457189584, - 6457186560, - 6447118656, - 6447119904, - 6447118992, + "vtable_address": 6465165840, + "methods": [ + 6447124752, + 6457191728, + 6447118704, + 6447118816, + 6447118864, + 6457191776, + 6457188752, + 6447118880, + 6447120128, + 6447119216, 6443742160, - 6447119680, - 6457190896, - 6457192720, - 6447121088, - 6447123488, - 6447123472 + 6447119904, + 6457193088, + 6457194912, + 6447121312, + 6447123712, + 6447122704 ], "bases": [ { @@ -255298,7 +255310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374712, + "complete_object_locator": 6468378808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -255307,33 +255319,33 @@ }, { "type_name": "CUserMessageCurrentTimescale", - "vtable_address": 6465213752, - "methods": [ - 6447384032, - 6457189536, - 6447380752, - 6447380832, - 6447380864, - 6457189584, - 6457186560, - 6447380880, - 6447381424, - 6447380992, + "vtable_address": 6465217832, + "methods": [ + 6447384256, + 6457191728, + 6447380976, + 6447381056, + 6447381088, + 6457191776, + 6457188752, + 6447381104, + 6447381648, + 6447381216, 6443742160, - 6447381312, - 6457190896, - 6457192720, - 6447381440, - 6447381472, - 6447381456, - 6457187520, - 6447381712, - 6457187520, - 6447382528, - 6457187520, - 6447384176, - 6457187520, - 6447385424 + 6447381536, + 6457193088, + 6457194912, + 6447381664, + 6447381696, + 6447381680, + 6457189712, + 6447381936, + 6457189712, + 6447382752, + 6457189712, + 6447384400, + 6457189712, + 6447385648 ], "bases": [ { @@ -255367,7 +255379,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374752, + "complete_object_locator": 6468378848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -255376,13 +255388,13 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 6466061976, + "vtable_address": 6466066176, "methods": [ - 6451173712, - 6450064352, - 6450064336, - 6450064368, - 6450064448 + 6451175280, + 6450065920, + 6450065904, + 6450065936, + 6450066016 ], "bases": [ { @@ -255472,7 +255484,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468594024, + "complete_object_locator": 6468598120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -255481,25 +255493,25 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 6466062024, - "methods": [ - 6451173148, - 6457189536, - 6447380752, - 6447380832, - 6447380864, - 6457189584, - 6457186560, - 6447380880, - 6447381424, - 6447380992, + "vtable_address": 6466066224, + "methods": [ + 6451174716, + 6457191728, + 6447380976, + 6447381056, + 6447381088, + 6457191776, + 6457188752, + 6447381104, + 6447381648, + 6447381216, 6443742160, - 6447381312, - 6457190896, - 6457192720, - 6447381440, - 6447381472, - 6447381456 + 6447381536, + 6457193088, + 6457194912, + 6447381664, + 6447381696, + 6447381680 ], "bases": [ { @@ -255589,7 +255601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468594312, + "complete_object_locator": 6468598408, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -255598,27 +255610,27 @@ }, { "type_name": "CUserMessageDesiredTimescale", - "vtable_address": 6465214936, + "vtable_address": 6465219016, "methods": [ - 6447398752, - 6457189536, - 6447390816, - 6447391664, - 6447391712, - 6457189584, - 6457186560, - 6447391728, - 6447392656, - 6447391808, + 6447398976, + 6457191728, + 6447391040, + 6447391888, + 6447391936, + 6457191776, + 6457188752, + 6447391952, + 6447392880, + 6447392032, 6443742160, - 6447392256, - 6457190896, - 6457192720, - 6447392752, - 6447392784, - 6447392768, - 6457187520, - 6447398608 + 6447392480, + 6457193088, + 6457194912, + 6447392976, + 6447393008, + 6447392992, + 6457189712, + 6447398832 ], "bases": [ { @@ -255652,7 +255664,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374792, + "complete_object_locator": 6468378888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -255661,13 +255673,13 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 6466062168, + "vtable_address": 6466066368, "methods": [ - 6451173808, - 6450064720, - 6450064704, - 6450064736, - 6450064816 + 6451175376, + 6450066288, + 6450066272, + 6450066304, + 6450066384 ], "bases": [ { @@ -255757,7 +255769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468594352, + "complete_object_locator": 6468598448, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -255766,25 +255778,25 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 6466062216, + "vtable_address": 6466066416, "methods": [ - 6451173160, - 6457189536, - 6447390816, - 6447391664, - 6447391712, - 6457189584, - 6457186560, - 6447391728, - 6447392656, - 6447391808, + 6451174728, + 6457191728, + 6447391040, + 6447391888, + 6447391936, + 6457191776, + 6457188752, + 6447391952, + 6447392880, + 6447392032, 6443742160, - 6447392256, - 6457190896, - 6457192720, - 6447392752, - 6447392784, - 6447392768 + 6447392480, + 6457193088, + 6457194912, + 6447392976, + 6447393008, + 6447392992 ], "bases": [ { @@ -255874,7 +255886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468594640, + "complete_object_locator": 6468598736, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -255883,27 +255895,27 @@ }, { "type_name": "CUserMessageFade", - "vtable_address": 6465216344, - "methods": [ - 6447415472, - 6457189536, - 6447401920, - 6447402192, - 6447402224, - 6457189584, - 6457186560, - 6447402240, - 6447403408, - 6447402368, - 6443742160, - 6447402992, - 6457190896, - 6457192720, - 6447403424, + "vtable_address": 6465220424, + "methods": [ + 6447415696, + 6457191728, + 6447402144, + 6447402416, + 6447402448, + 6457191776, + 6457188752, + 6447402464, + 6447403632, + 6447402592, + 6443742160, + 6447403216, + 6457193088, + 6457194912, 6447403648, - 6447403616, - 6457187520, - 6447413984 + 6447403856, + 6447403840, + 6457189712, + 6447414208 ], "bases": [ { @@ -255937,7 +255949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374832, + "complete_object_locator": 6468378928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -255946,13 +255958,13 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 6466112208, + "vtable_address": 6466116416, "methods": [ - 6451448304, - 6450068768, - 6450068752, - 6450068784, - 6450068864 + 6451449888, + 6450070336, + 6450070320, + 6450070352, + 6450070432 ], "bases": [ { @@ -256042,7 +256054,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608064, + "complete_object_locator": 6468612160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -256051,25 +256063,25 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 6466112256, - "methods": [ - 6451446620, - 6457189536, - 6447401920, - 6447402192, - 6447402224, - 6457189584, - 6457186560, - 6447402240, - 6447403408, - 6447402368, - 6443742160, - 6447402992, - 6457190896, - 6457192720, - 6447403424, + "vtable_address": 6466116464, + "methods": [ + 6451448204, + 6457191728, + 6447402144, + 6447402416, + 6447402448, + 6457191776, + 6457188752, + 6447402464, + 6447403632, + 6447402592, + 6443742160, + 6447403216, + 6457193088, + 6457194912, 6447403648, - 6447403616 + 6447403856, + 6447403840 ], "bases": [ { @@ -256159,7 +256171,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608352, + "complete_object_locator": 6468612448, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -256168,27 +256180,27 @@ }, { "type_name": "CUserMessageGameTitle", - "vtable_address": 6465092432, - "methods": [ - 6446976704, - 6457189536, - 6446974768, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446975168, - 6446975152, - 6457187520, - 6446974784 + "vtable_address": 6465096512, + "methods": [ + 6446976912, + 6457191728, + 6446974800, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446975392, + 6446975376, + 6457189712, + 6446975008 ], "bases": [ { @@ -256236,7 +256248,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468374872, + "complete_object_locator": 6468378968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256245,25 +256257,25 @@ }, { "type_name": "CUserMessageHapticsManagerEffect", - "vtable_address": 6465213464, + "vtable_address": 6465217544, "methods": [ - 6447381552, - 6457189536, - 6447373808, - 6447373920, - 6447373968, - 6457189584, - 6457186560, - 6447373984, - 6447375680, - 6447374256, + 6447381776, + 6457191728, + 6447374032, + 6447374144, + 6447374192, + 6457191776, + 6457188752, + 6447374208, + 6447375904, + 6447374480, 6443742160, - 6447375344, - 6457190896, - 6457192720, - 6447376768, - 6447377120, - 6447377104 + 6447375568, + 6457193088, + 6457194912, + 6447376992, + 6447377344, + 6447377328 ], "bases": [ { @@ -256297,7 +256309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375016, + "complete_object_locator": 6468379112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256306,25 +256318,25 @@ }, { "type_name": "CUserMessageHapticsManagerPulse", - "vtable_address": 6465212184, + "vtable_address": 6465216264, "methods": [ - 6447368608, - 6457189536, - 6447357744, - 6447357856, - 6447357888, - 6457189584, - 6457186560, - 6447357904, - 6447358816, - 6447358000, + 6447368832, + 6457191728, + 6447357968, + 6447358080, + 6447358112, + 6457191776, + 6457188752, + 6447358128, + 6447359040, + 6447358224, 6443742160, - 6447358512, - 6457190896, - 6457192720, - 6447358992, - 6447359472, - 6447359184 + 6447358736, + 6457193088, + 6457194912, + 6447359216, + 6447359680, + 6447359408 ], "bases": [ { @@ -256358,7 +256370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375056, + "complete_object_locator": 6468379152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256367,25 +256379,25 @@ }, { "type_name": "CUserMessageHudMsg", - "vtable_address": 6465087840, + "vtable_address": 6465091920, "methods": [ - 6446936816, - 6457189536, - 6446920912, - 6446921888, - 6446921984, - 6457189584, - 6457186560, - 6446922576, - 6446926688, - 6446924272, + 6446937040, + 6457191728, + 6446921136, + 6446922112, + 6446922208, + 6457191776, + 6457188752, + 6446922800, + 6446926912, + 6446924496, 6443742160, - 6446926224, - 6457190896, - 6457192720, - 6446926832, - 6446928688, - 6446928064 + 6446926448, + 6457193088, + 6457194912, + 6446927056, + 6446928912, + 6446928288 ], "bases": [ { @@ -256419,7 +256431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375096, + "complete_object_locator": 6468379192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256428,31 +256440,31 @@ }, { "type_name": "CUserMessageHudText", - "vtable_address": 6465089232, - "methods": [ - 6446951936, - 6457189536, - 6446943904, - 6446944192, - 6446944256, - 6457189584, - 6457186560, - 6446944272, - 6446944832, - 6446944352, - 6443742160, - 6446944720, - 6457190896, - 6457192720, - 6446945728, - 6446946512, - 6446946496, - 6457187520, - 6446947840, - 6457187520, - 6446948528, - 6457187520, - 6446951104 + "vtable_address": 6465093312, + "methods": [ + 6446952160, + 6457191728, + 6446944128, + 6446944416, + 6446944480, + 6457191776, + 6457188752, + 6446944496, + 6446945056, + 6446944560, + 6443742160, + 6446944944, + 6457193088, + 6457194912, + 6446945648, + 6446946736, + 6446946720, + 6457189712, + 6446948064, + 6457189712, + 6446948752, + 6457189712, + 6446951328 ], "bases": [ { @@ -256486,7 +256498,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375136, + "complete_object_locator": 6468379232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256495,33 +256507,33 @@ }, { "type_name": "CUserMessageItemPickup", - "vtable_address": 6465158832, - "methods": [ - 6447087536, - 6457189536, - 6447083248, - 6447083552, - 6447083616, - 6457189584, - 6457186560, - 6447083632, - 6447084176, - 6447083696, - 6443742160, - 6447084064, - 6457190896, - 6457192720, - 6447084368, + "vtable_address": 6465162912, + "methods": [ + 6447087760, + 6457191728, + 6447083472, + 6447083776, + 6447083840, + 6457191776, + 6457188752, + 6447083856, 6447084400, - 6447084384, - 6457187520, - 6447087712, - 6457187520, - 6447088992, - 6457187520, - 6447090400, - 6457187520, - 6447091456 + 6447083920, + 6443742160, + 6447084288, + 6457193088, + 6457194912, + 6447084592, + 6447084624, + 6447084608, + 6457189712, + 6447087936, + 6457189712, + 6447089200, + 6457189712, + 6447090624, + 6457189712, + 6447091680 ], "bases": [ { @@ -256555,7 +256567,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375176, + "complete_object_locator": 6468379272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256564,29 +256576,25 @@ }, { "type_name": "CUserMessageLagCompensationError", - "vtable_address": 6465218392, + "vtable_address": 6465222328, "methods": [ - 6447433312, - 6457189536, - 6447431680, - 6447431872, - 6447431904, - 6457189584, - 6457186560, - 6447431920, - 6447432384, - 6447431952, + 6447433536, + 6457191728, + 6447431888, + 6447432096, + 6447432128, + 6457191776, + 6457188752, + 6447432144, + 6447432608, + 6447432176, 6443742160, - 6447432272, - 6457190896, - 6457192720, - 6447432400, - 6447432576, - 6447432560, - 6457187520, - 6447433184, - 6457187520, - 6447434672 + 6447432496, + 6457193088, + 6457194912, + 6447432624, + 6447432800, + 6447432784 ], "bases": [ { @@ -256620,7 +256628,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375216, + "complete_object_locator": 6468379312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256629,25 +256637,25 @@ }, { "type_name": "CUserMessageRequestDiagnostic", - "vtable_address": 6465159984, + "vtable_address": 6465164064, "methods": [ - 6447104384, - 6457189536, + 6447104608, + 6457191728, 6443741712, - 6447089168, - 6447089472, - 6457189584, - 6457186560, - 6447089488, + 6447089392, + 6447089696, + 6457191776, + 6457188752, + 6447089712, 6443734400, - 6447089648, + 6447089872, 6443742160, - 6447090080, - 6457190896, - 6457192720, 6447090288, - 6447090336, - 6447090320 + 6457193088, + 6457194912, + 6447090512, + 6447090560, + 6447090544 ], "bases": [ { @@ -256681,7 +256689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375256, + "complete_object_locator": 6468379352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256690,27 +256698,27 @@ }, { "type_name": "CUserMessageRequestDiagnostic_Diagnostic", - "vtable_address": 6465157264, - "methods": [ - 6447084192, - 6457189536, - 6447069824, - 6447070304, - 6447070480, - 6457189584, - 6457186560, - 6447070496, - 6447073936, - 6447071024, - 6443742160, - 6447072544, - 6457190896, - 6457192720, - 6447073952, + "vtable_address": 6465161344, + "methods": [ + 6447084416, + 6457191728, + 6447070048, + 6447070528, + 6447070704, + 6457191776, + 6457188752, + 6447070720, 6447073984, - 6447073968, - 6457187520, - 6447083456 + 6447071248, + 6443742160, + 6447072768, + 6457193088, + 6457194912, + 6447074176, + 6447074208, + 6447074192, + 6457189712, + 6447083680 ], "bases": [ { @@ -256744,7 +256752,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375296, + "complete_object_locator": 6468379392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -256753,7 +256761,7 @@ }, { "type_name": "CUserMessageRequestDiagnostic_t", - "vtable_address": 6464398232, + "vtable_address": 6464402328, "methods": [ 6443724048, 6443727168, @@ -256849,7 +256857,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468212760, + "complete_object_locator": 6468216856, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -256858,25 +256866,25 @@ }, { "type_name": "CUserMessageRequestDiagnostic_t", - "vtable_address": 6464398280, + "vtable_address": 6464402376, "methods": [ 6443723688, - 6457189536, + 6457191728, 6443741712, - 6447089168, - 6447089472, - 6457189584, - 6457186560, - 6447089488, + 6447089392, + 6447089696, + 6457191776, + 6457188752, + 6447089712, 6443734400, - 6447089648, + 6447089872, 6443742160, - 6447090080, - 6457190896, - 6457192720, 6447090288, - 6447090336, - 6447090320 + 6457193088, + 6457194912, + 6447090512, + 6447090560, + 6447090544 ], "bases": [ { @@ -256966,7 +256974,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468213048, + "complete_object_locator": 6468217144, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -256975,29 +256983,29 @@ }, { "type_name": "CUserMessageRequestDllStatus", - "vtable_address": 6465078984, - "methods": [ - 6446844080, - 6457189536, - 6447440176, - 6447441056, - 6447441120, - 6457189584, - 6457186560, - 6447441184, - 6447442592, - 6447441424, - 6443742160, - 6447442416, - 6457190896, - 6457192720, + "vtable_address": 6465083064, + "methods": [ + 6446844304, + 6457191728, + 6447440400, + 6447441264, + 6447441344, + 6457191776, + 6457188752, + 6447441360, 6447442800, - 6447443008, - 6447442992, - 6457187520, - 6447443168, - 6457187520, - 6446844240 + 6447441616, + 6443742160, + 6447442320, + 6457193088, + 6457194912, + 6447443024, + 6447443232, + 6447443216, + 6457189712, + 6446842208, + 6457189712, + 6446844464 ], "bases": [ { @@ -257031,7 +257039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375432, + "complete_object_locator": 6468379528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -257040,25 +257048,25 @@ }, { "type_name": "CUserMessageRequestInventory", - "vtable_address": 6465095424, - "methods": [ - 6447019776, - 6457189536, - 6447009184, - 6447014608, - 6447015104, - 6457189584, - 6457186560, - 6447015120, - 6447016704, + "vtable_address": 6465099504, + "methods": [ + 6447020000, + 6457191728, + 6447009408, + 6447014832, + 6447015328, + 6457191776, + 6457188752, 6447015344, - 6443742160, - 6447015984, - 6457190896, - 6457192720, 6447016928, - 6447017056, - 6447017040 + 6447015568, + 6443742160, + 6447016208, + 6457193088, + 6457194912, + 6447017152, + 6447017280, + 6447017264 ], "bases": [ { @@ -257092,7 +257100,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375472, + "complete_object_locator": 6468379568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -257101,25 +257109,25 @@ }, { "type_name": "CUserMessageRequestState", - "vtable_address": 6465112840, + "vtable_address": 6465116920, "methods": [ - 6447037008, - 6457189536, - 6447036800, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447036864, - 6447036848 + 6447037232, + 6457191728, + 6447037024, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447037088, + 6447037072 ], "bases": [ { @@ -257167,7 +257175,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375512, + "complete_object_locator": 6468379608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -257176,13 +257184,13 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 6466111440, + "vtable_address": 6466115648, "methods": [ - 6451448400, - 6450065088, - 6450065072, - 6450065104, - 6450065184 + 6451449984, + 6450066656, + 6450066640, + 6450066672, + 6450066752 ], "bases": [ { @@ -257286,7 +257294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468606728, + "complete_object_locator": 6468610824, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -257295,25 +257303,25 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 6466111488, - "methods": [ - 6451446632, - 6457189536, - 6447036800, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447036864, - 6447036848 + "vtable_address": 6466115696, + "methods": [ + 6451448216, + 6457191728, + 6447037024, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447037088, + 6447037072 ], "bases": [ { @@ -257417,7 +257425,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468607040, + "complete_object_locator": 6468611136, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -257426,29 +257434,29 @@ }, { "type_name": "CUserMessageRequestUtilAction", - "vtable_address": 6465080264, - "methods": [ - 6446856368, - 6457189536, - 6446848880, - 6446850400, - 6446850464, - 6457189584, - 6457186560, - 6446850480, - 6446852240, + "vtable_address": 6465084344, + "methods": [ + 6446856592, + 6457191728, + 6446849104, + 6446850624, + 6446850672, + 6457191776, + 6457188752, 6446850704, - 6443742160, - 6446851648, - 6457190896, - 6457192720, - 6446852416, - 6446852592, - 6446852576, - 6457187520, - 6446854320, - 6457187520, - 6446855664 + 6446852464, + 6446850928, + 6443742160, + 6446851872, + 6457193088, + 6457194912, + 6446852640, + 6446852816, + 6446852800, + 6457189712, + 6446854544, + 6457189712, + 6446855888 ], "bases": [ { @@ -257482,7 +257490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375552, + "complete_object_locator": 6468379648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -257491,25 +257499,25 @@ }, { "type_name": "CUserMessageResetHUD", - "vtable_address": 6465093280, - "methods": [ - 6446984384, - 6457189536, - 6446983744, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446984080, - 6446984064 + "vtable_address": 6465097360, + "methods": [ + 6446984608, + 6457191728, + 6446983968, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446984304, + 6446984288 ], "bases": [ { @@ -257557,7 +257565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375592, + "complete_object_locator": 6468379688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -257566,13 +257574,13 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 6466489696, + "vtable_address": 6466493824, "methods": [ - 6453489424, - 6450073552, - 6450073536, - 6450073568, - 6450073648 + 6453491184, + 6450075120, + 6450075104, + 6450075136, + 6450075216 ], "bases": [ { @@ -257676,7 +257684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468708504, + "complete_object_locator": 6468712600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -257685,25 +257693,25 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 6466489744, + "vtable_address": 6466493872, "methods": [ - 6453486608, - 6457189536, - 6446983744, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446984080, - 6446984064 + 6453488368, + 6457191728, + 6446983968, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446984304, + 6446984288 ], "bases": [ { @@ -257807,7 +257815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468708816, + "complete_object_locator": 6468712912, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -257816,25 +257824,25 @@ }, { "type_name": "CUserMessageRumble", - "vtable_address": 6465129056, - "methods": [ - 6447055360, - 6457189536, - 6447046976, - 6447047088, - 6447047136, - 6457189584, - 6457186560, + "vtable_address": 6465133136, + "methods": [ + 6447055584, + 6457191728, + 6447047200, + 6447047312, + 6447047360, + 6457191776, + 6457188752, 6447047376, - 6447050416, - 6447048112, + 6447050640, + 6447047888, 6443742160, - 6447050016, - 6457190896, - 6457192720, - 6447051344, - 6447051488, - 6447051440 + 6447049072, + 6457193088, + 6457194912, + 6447051568, + 6447051712, + 6447051664 ], "bases": [ { @@ -257868,7 +257876,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375632, + "complete_object_locator": 6468379728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -257877,13 +257885,13 @@ }, { "type_name": "CUserMessageRumble_t", - "vtable_address": 6466040232, + "vtable_address": 6466044440, "methods": [ - 6451087904, - 6450069504, - 6450069488, - 6450069520, - 6450069600 + 6451089472, + 6450071072, + 6450071056, + 6450071088, + 6450071168 ], "bases": [ { @@ -257973,7 +257981,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468586960, + "complete_object_locator": 6468591056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -257982,25 +257990,25 @@ }, { "type_name": "CUserMessageRumble_t", - "vtable_address": 6466040280, - "methods": [ - 6451086468, - 6457189536, - 6447046976, - 6447047088, - 6447047136, - 6457189584, - 6457186560, + "vtable_address": 6466044488, + "methods": [ + 6451088036, + 6457191728, + 6447047200, + 6447047312, + 6447047360, + 6457191776, + 6457188752, 6447047376, - 6447050416, - 6447048112, + 6447050640, + 6447047888, 6443742160, - 6447050016, - 6457190896, - 6457192720, - 6447051344, - 6447051488, - 6447051440 + 6447049072, + 6457193088, + 6457194912, + 6447051568, + 6447051712, + 6447051664 ], "bases": [ { @@ -258090,7 +258098,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468587248, + "complete_object_locator": 6468591344, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -258099,25 +258107,25 @@ }, { "type_name": "CUserMessageSayText", - "vtable_address": 6465084328, + "vtable_address": 6465088408, "methods": [ - 6446881920, - 6457189536, - 6446870352, - 6446870832, - 6446871296, - 6457189584, - 6457186560, - 6446871456, - 6446872624, - 6446871776, + 6446882144, + 6457191728, + 6446870576, + 6446871056, + 6446871136, + 6457191776, + 6457188752, + 6446871680, + 6446872848, + 6446871984, 6443742160, - 6446872368, - 6457190896, - 6457192720, - 6446872656, - 6446873072, - 6446873056 + 6446872592, + 6457193088, + 6457194912, + 6446872880, + 6446873296, + 6446873280 ], "bases": [ { @@ -258151,7 +258159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375672, + "complete_object_locator": 6468379768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -258160,27 +258168,27 @@ }, { "type_name": "CUserMessageSayText2", - "vtable_address": 6465086096, - "methods": [ - 6446918736, - 6457189536, - 6446887840, - 6446888480, - 6446888688, - 6457189584, - 6457186560, + "vtable_address": 6465090176, + "methods": [ + 6446918960, + 6457191728, + 6446888048, 6446888704, - 6446891888, - 6446889984, + 6446888912, + 6457191776, + 6457188752, + 6446888928, + 6446892112, + 6446890208, 6443742160, - 6446891504, - 6457190896, - 6457192720, - 6446894544, - 6446894736, - 6446894720, - 6457187520, - 6446917664 + 6446891728, + 6457193088, + 6457194912, + 6446894768, + 6446894960, + 6446894944, + 6457189712, + 6446917888 ], "bases": [ { @@ -258214,7 +258222,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375712, + "complete_object_locator": 6468379808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -258223,13 +258231,13 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 6466845168, + "vtable_address": 6466849280, "methods": [ - 6456552080, - 6449408848, - 6449408832, - 6449408864, - 6449408944 + 6456553856, + 6449410416, + 6449410400, + 6449410432, + 6449410512 ], "bases": [ { @@ -258319,7 +258327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468802064, + "complete_object_locator": 6468806160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -258328,25 +258336,25 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 6466845216, - "methods": [ - 6456551164, - 6457189536, - 6446887840, - 6446888480, - 6446888688, - 6457189584, - 6457186560, + "vtable_address": 6466849328, + "methods": [ + 6456552940, + 6457191728, + 6446888048, 6446888704, - 6446891888, - 6446889984, + 6446888912, + 6457191776, + 6457188752, + 6446888928, + 6446892112, + 6446890208, 6443742160, - 6446891504, - 6457190896, - 6457192720, - 6446894544, - 6446894736, - 6446894720 + 6446891728, + 6457193088, + 6457194912, + 6446894768, + 6446894960, + 6446894944 ], "bases": [ { @@ -258436,7 +258444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468802352, + "complete_object_locator": 6468806448, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -258445,25 +258453,25 @@ }, { "type_name": "CUserMessageSayTextChannel", - "vtable_address": 6465130928, + "vtable_address": 6465135008, "methods": [ - 6447060912, - 6457189536, - 6447056800, - 6447056992, - 6447057232, - 6457189584, - 6457186560, - 6447057328, - 6447058912, - 6447057584, + 6447061136, + 6457191728, + 6447057024, + 6447057216, + 6447057456, + 6457191776, + 6457188752, + 6447057552, + 6447059136, + 6447057808, 6443742160, - 6447058576, - 6457190896, - 6457192720, - 6447059168, - 6447059216, - 6447059200 + 6447058800, + 6457193088, + 6457194912, + 6447059392, + 6447059440, + 6447059424 ], "bases": [ { @@ -258497,7 +258505,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375752, + "complete_object_locator": 6468379848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -258506,13 +258514,13 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 6466844976, + "vtable_address": 6466849088, "methods": [ - 6456552176, - 6450066560, - 6450066544, - 6450066576, - 6450066656 + 6456553952, + 6450068128, + 6450068112, + 6450068144, + 6450068224 ], "bases": [ { @@ -258602,7 +258610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468801736, + "complete_object_locator": 6468805832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -258611,25 +258619,25 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 6466845024, + "vtable_address": 6466849136, "methods": [ - 6456551176, - 6457189536, - 6446870352, - 6446870832, - 6446871296, - 6457189584, - 6457186560, - 6446871456, - 6446872624, - 6446871776, + 6456552952, + 6457191728, + 6446870576, + 6446871056, + 6446871136, + 6457191776, + 6457188752, + 6446871680, + 6446872848, + 6446871984, 6443742160, - 6446872368, - 6457190896, - 6457192720, - 6446872656, - 6446873072, - 6446873056 + 6446872592, + 6457193088, + 6457194912, + 6446872880, + 6446873296, + 6446873280 ], "bases": [ { @@ -258719,7 +258727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468802024, + "complete_object_locator": 6468806120, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -258728,27 +258736,27 @@ }, { "type_name": "CUserMessageScreenTilt", - "vtable_address": 6465082904, - "methods": [ - 6446866432, - 6457189536, - 6446856320, - 6446856880, - 6446856992, - 6457189584, - 6457186560, - 6446857008, - 6446858336, + "vtable_address": 6465086984, + "methods": [ + 6446866496, + 6457191728, + 6446856544, + 6446857104, + 6446857216, + 6457191776, + 6457188752, 6446857232, + 6446858560, + 6446857456, 6443742160, - 6446857936, - 6457190896, - 6457192720, - 6446858496, - 6446858528, - 6446858512, - 6457187520, - 6446865216 + 6446858160, + 6457193088, + 6457194912, + 6446858576, + 6446858752, + 6446858736, + 6457189712, + 6446865440 ], "bases": [ { @@ -258782,7 +258790,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375792, + "complete_object_locator": 6468379888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -258791,25 +258799,25 @@ }, { "type_name": "CUserMessageSendAudio", - "vtable_address": 6465094224, + "vtable_address": 6465098304, "methods": [ - 6446997280, - 6457189536, - 6446988320, - 6446992880, - 6446992944, - 6457189584, - 6457186560, - 6446992960, - 6446993712, - 6446993056, + 6446997504, + 6457191728, + 6446988544, + 6446993104, + 6446993168, + 6457191776, + 6457188752, + 6446993184, + 6446993920, + 6446993280, 6443742160, - 6446993536, - 6457190896, - 6457192720, - 6446993808, - 6446995856, - 6446995488 + 6446993760, + 6457193088, + 6457194912, + 6446994032, + 6446995728, + 6446995712 ], "bases": [ { @@ -258843,7 +258851,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375832, + "complete_object_locator": 6468379928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -258852,13 +258860,13 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 6466040424, + "vtable_address": 6466044632, "methods": [ - 6451088000, - 6450070608, - 6450070592, - 6450070624, - 6450070704 + 6451089568, + 6450072176, + 6450072160, + 6450072192, + 6450072272 ], "bases": [ { @@ -258948,7 +258956,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468587288, + "complete_object_locator": 6468591384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -258957,25 +258965,25 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 6466040472, + "vtable_address": 6466044680, "methods": [ - 6451086480, - 6457189536, - 6446988320, - 6446992880, - 6446992944, - 6457189584, - 6457186560, - 6446992960, - 6446993712, - 6446993056, + 6451088048, + 6457191728, + 6446988544, + 6446993104, + 6446993168, + 6457191776, + 6457188752, + 6446993184, + 6446993920, + 6446993280, 6443742160, - 6446993536, - 6457190896, - 6457192720, - 6446993808, - 6446995856, - 6446995488 + 6446993760, + 6457193088, + 6457194912, + 6446994032, + 6446995728, + 6446995712 ], "bases": [ { @@ -259065,7 +259073,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468587576, + "complete_object_locator": 6468591672, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -259074,29 +259082,29 @@ }, { "type_name": "CUserMessageServerFrameTime", - "vtable_address": 6465217128, + "vtable_address": 6465221208, "methods": [ - 6447425888, - 6457189536, - 6447422432, - 6447422576, - 6447422608, - 6457189584, - 6457186560, - 6447422624, - 6447423088, + 6447426112, + 6457191728, 6447422656, + 6447422800, + 6447422832, + 6457191776, + 6457188752, + 6447422848, + 6447423312, + 6447422880, 6443742160, - 6447422976, - 6457190896, - 6457192720, - 6447423104, - 6447423296, - 6447423280, - 6457187520, - 6447424480, - 6457187520, - 6447425808 + 6447423200, + 6457193088, + 6457194912, + 6447423328, + 6447423520, + 6447423504, + 6457189712, + 6447424320, + 6457189712, + 6447425968 ], "bases": [ { @@ -259130,7 +259138,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375872, + "complete_object_locator": 6468379968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -259139,29 +259147,29 @@ }, { "type_name": "CUserMessageShake", - "vtable_address": 6465217608, + "vtable_address": 6465221688, "methods": [ - 6447431504, - 6457189536, - 6447423696, - 6447424576, - 6447424608, - 6457189584, - 6457186560, - 6447424736, - 6447425680, + 6447431728, + 6457191728, + 6447423920, + 6447424800, + 6447424832, + 6457191776, + 6457188752, 6447424848, + 6447425888, + 6447425072, 6443742160, - 6447425360, - 6457190896, - 6457192720, - 6447425712, - 6447426496, - 6447426080, - 6457187520, - 6447427904, - 6457187520, - 6447427744 + 6447425584, + 6457193088, + 6457194912, + 6447425936, + 6447426720, + 6447426304, + 6457189712, + 6447427968, + 6457189712, + 6447428272 ], "bases": [ { @@ -259195,7 +259203,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375912, + "complete_object_locator": 6468380008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -259204,27 +259212,27 @@ }, { "type_name": "CUserMessageShakeDir", - "vtable_address": 6465218888, - "methods": [ - 6447441904, - 6457189536, - 6447433664, - 6447435072, - 6447435216, - 6457189584, - 6457186560, - 6447435248, - 6447436224, - 6447435568, - 6443742160, - 6447436048, - 6457190896, - 6457192720, - 6447436320, - 6447436368, - 6447436352, - 6457187520, - 6447437824 + "vtable_address": 6465222968, + "methods": [ + 6447442128, + 6457191728, + 6447433888, + 6447435296, + 6447435440, + 6457191776, + 6457188752, + 6447435472, + 6447436448, + 6447435792, + 6443742160, + 6447436272, + 6457193088, + 6457194912, + 6447436544, + 6447436592, + 6447436576, + 6457189712, + 6447438640 ], "bases": [ { @@ -259258,7 +259266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375952, + "complete_object_locator": 6468380048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -259267,13 +259275,13 @@ }, { "type_name": "CUserMessageShakeDir_t", - "vtable_address": 6466112016, + "vtable_address": 6466116224, "methods": [ - 6451448496, - 6450068032, - 6450068016, - 6450068048, - 6450068128 + 6451450080, + 6450069600, + 6450069584, + 6450069616, + 6450069696 ], "bases": [ { @@ -259363,7 +259371,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468607736, + "complete_object_locator": 6468611832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -259372,25 +259380,25 @@ }, { "type_name": "CUserMessageShakeDir_t", - "vtable_address": 6466112064, - "methods": [ - 6451446644, - 6457189536, - 6447433664, - 6447435072, - 6447435216, - 6457189584, - 6457186560, - 6447435248, - 6447436224, - 6447435568, - 6443742160, - 6447436048, - 6457190896, - 6457192720, - 6447436320, - 6447436368, - 6447436352 + "vtable_address": 6466116272, + "methods": [ + 6451448228, + 6457191728, + 6447433888, + 6447435296, + 6447435440, + 6457191776, + 6457188752, + 6447435472, + 6447436448, + 6447435792, + 6443742160, + 6447436272, + 6457193088, + 6457194912, + 6447436544, + 6447436592, + 6447436576 ], "bases": [ { @@ -259480,7 +259488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608024, + "complete_object_locator": 6468612120, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -259489,13 +259497,13 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 6466111824, + "vtable_address": 6466116032, "methods": [ - 6451448592, - 6450067664, - 6450067648, - 6450067680, - 6450067760 + 6451450176, + 6450069232, + 6450069216, + 6450069248, + 6450069328 ], "bases": [ { @@ -259585,7 +259593,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468607408, + "complete_object_locator": 6468611504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -259594,25 +259602,25 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 6466111872, - "methods": [ - 6451446656, - 6457189536, - 6447423696, - 6447424576, - 6447424608, - 6457189584, - 6457186560, - 6447424736, - 6447425680, + "vtable_address": 6466116080, + "methods": [ + 6451448240, + 6457191728, + 6447423920, + 6447424800, + 6447424832, + 6457191776, + 6457188752, 6447424848, + 6447425888, + 6447425072, 6443742160, - 6447425360, - 6457190896, - 6457192720, - 6447425712, - 6447426496, - 6447426080 + 6447425584, + 6457193088, + 6457194912, + 6447425936, + 6447426720, + 6447426304 ], "bases": [ { @@ -259702,7 +259710,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468607696, + "complete_object_locator": 6468611792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -259711,25 +259719,25 @@ }, { "type_name": "CUserMessageShowMenu", - "vtable_address": 6465160480, - "methods": [ - 6447116560, - 6457189536, - 6447104368, - 6447104880, - 6447104960, - 6457189584, - 6457186560, - 6447104976, - 6447106608, - 6447105376, - 6443742160, - 6447106256, - 6457190896, - 6457192720, - 6447107744, - 6447107808, - 6447107792 + "vtable_address": 6465164560, + "methods": [ + 6447116784, + 6457191728, + 6447104592, + 6447105104, + 6447105184, + 6457191776, + 6457188752, + 6447105200, + 6447106832, + 6447105600, + 6443742160, + 6447106480, + 6457193088, + 6457194912, + 6447107968, + 6447108032, + 6447108016 ], "bases": [ { @@ -259763,7 +259771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468375992, + "complete_object_locator": 6468380088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -259772,27 +259780,27 @@ }, { "type_name": "CUserMessageTextMsg", - "vtable_address": 6465090720, + "vtable_address": 6465094800, "methods": [ - 6446971792, - 6457189536, - 6446960432, - 6446960624, - 6446960688, - 6457189584, - 6457186560, - 6446960704, - 6446961712, - 6446960896, + 6446972016, + 6457191728, + 6446960656, + 6446960848, + 6446960912, + 6457191776, + 6457188752, + 6446960928, + 6446961936, + 6446961120, 6443742160, - 6446961360, - 6457190896, - 6457192720, - 6446961728, - 6446961760, - 6446961744, - 6457187520, - 6446971968 + 6446961584, + 6457193088, + 6457194912, + 6446961952, + 6446961984, + 6446961968, + 6457189712, + 6446972192 ], "bases": [ { @@ -259826,7 +259834,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376032, + "complete_object_locator": 6468380128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -259835,13 +259843,13 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 6465878904, + "vtable_address": 6465883096, "methods": [ - 6450114336, - 6450122128, - 6450122112, - 6450194256, - 6450138864 + 6450115904, + 6450123696, + 6450123680, + 6450195824, + 6450140432 ], "bases": [ { @@ -259931,7 +259939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551008, + "complete_object_locator": 6468555104, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -259940,25 +259948,25 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 6465878952, + "vtable_address": 6465883144, "methods": [ - 6450112948, - 6457189536, - 6446960432, - 6446960624, - 6446960688, - 6457189584, - 6457186560, - 6446960704, - 6446961712, - 6446960896, + 6450114516, + 6457191728, + 6446960656, + 6446960848, + 6446960912, + 6457191776, + 6457188752, + 6446960928, + 6446961936, + 6446961120, 6443742160, - 6446961360, - 6457190896, - 6457192720, - 6446961728, - 6446961760, - 6446961744 + 6446961584, + 6457193088, + 6457194912, + 6446961952, + 6446961984, + 6446961968 ], "bases": [ { @@ -260048,7 +260056,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468551296, + "complete_object_locator": 6468555392, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -260057,31 +260065,31 @@ }, { "type_name": "CUserMessageUpdateCssClasses", - "vtable_address": 6465216008, + "vtable_address": 6465220088, "methods": [ - 6447412560, - 6457189536, + 6447412784, + 6457191728, 6443844176, - 6447400592, - 6447400832, - 6457189584, - 6457186560, - 6447400848, + 6447400816, + 6447401056, + 6457191776, + 6457188752, + 6447401072, 6443817408, - 6447400976, - 6443742160, - 6447401568, - 6457190896, - 6457192720, - 6447401824, - 6447401856, - 6447401840, - 6457187520, - 6447406080, - 6457187520, - 6447411088, - 6457187520, - 6447411760 + 6447401200, + 6443742160, + 6447401792, + 6457193088, + 6457194912, + 6447402048, + 6447402080, + 6447402064, + 6457189712, + 6447408080, + 6457189712, + 6447410880, + 6457189712, + 6447411984 ], "bases": [ { @@ -260115,7 +260123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376072, + "complete_object_locator": 6468380168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -260124,7 +260132,7 @@ }, { "type_name": "CUserMessageUpdateCssClasses_t", - "vtable_address": 6464416696, + "vtable_address": 6464420792, "methods": [ 6443796224, 6443800368, @@ -260220,7 +260228,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468219424, + "complete_object_locator": 6468223520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -260229,25 +260237,25 @@ }, { "type_name": "CUserMessageUpdateCssClasses_t", - "vtable_address": 6464416744, + "vtable_address": 6464420840, "methods": [ 6443794872, - 6457189536, + 6457191728, 6443844176, - 6447400592, - 6447400832, - 6457189584, - 6457186560, - 6447400848, + 6447400816, + 6447401056, + 6457191776, + 6457188752, + 6447401072, 6443817408, - 6447400976, + 6447401200, 6443742160, - 6447401568, - 6457190896, - 6457192720, - 6447401824, - 6447401856, - 6447401840 + 6447401792, + 6457193088, + 6457194912, + 6447402048, + 6447402080, + 6447402064 ], "bases": [ { @@ -260337,7 +260345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468219712, + "complete_object_locator": 6468223808, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -260346,27 +260354,29 @@ }, { "type_name": "CUserMessageVoiceMask", - "vtable_address": 6465110744, + "vtable_address": 6465114808, "methods": [ - 6447033424, - 6457189536, - 6447023312, - 6447024576, - 6447024640, - 6457189584, - 6457186560, - 6447025904, - 6447028256, - 6447027088, - 6443742160, - 6447027840, - 6457190896, - 6457192720, - 6447028304, - 6447029312, - 6447029296, - 6457388960, - 6457389040 + 6447033584, + 6457191728, + 6447023536, + 6447024800, + 6447024864, + 6457191776, + 6457188752, + 6447026128, + 6447028480, + 6447027312, + 6443742160, + 6447028064, + 6457193088, + 6457194912, + 6447028528, + 6447029536, + 6447029104, + 6457189712, + 6447032416, + 6457391152, + 6457391232 ], "bases": [ { @@ -260400,7 +260410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376112, + "complete_object_locator": 6468380208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -260409,13 +260419,13 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 6466111632, + "vtable_address": 6466115840, "methods": [ - 6451448688, - 6450065456, - 6450065440, - 6450065472, - 6450065552 + 6451450272, + 6450067024, + 6450067008, + 6450067040, + 6450067120 ], "bases": [ { @@ -260505,7 +260515,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468607080, + "complete_object_locator": 6468611176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -260514,25 +260524,25 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 6466111680, - "methods": [ - 6451446668, - 6457189536, - 6447023312, - 6447024576, - 6447024640, - 6457189584, - 6457186560, - 6447025904, - 6447028256, - 6447027088, - 6443742160, - 6447027840, - 6457190896, - 6457192720, - 6447028304, - 6447029312, - 6447029296 + "vtable_address": 6466115888, + "methods": [ + 6451448252, + 6457191728, + 6447023536, + 6447024800, + 6447024864, + 6457191776, + 6457188752, + 6447026128, + 6447028480, + 6447027312, + 6443742160, + 6447028064, + 6457193088, + 6457194912, + 6447028528, + 6447029536, + 6447029104 ], "bases": [ { @@ -260622,7 +260632,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468607368, + "complete_object_locator": 6468611464, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -260631,27 +260641,27 @@ }, { "type_name": "CUserMessageWaterShake", - "vtable_address": 6465079656, + "vtable_address": 6465083736, "methods": [ - 6446852432, - 6457189536, - 6446844688, - 6446845712, - 6446845744, - 6457189584, - 6457186560, - 6446845760, - 6446846704, - 6446845872, + 6446852656, + 6457191728, + 6446844912, + 6446845936, + 6446845968, + 6457191776, + 6457188752, + 6446845984, + 6446846928, + 6446846096, 6443742160, - 6446846400, - 6457190896, - 6457192720, - 6446846800, - 6446847552, - 6446847344, - 6457187520, - 6446850288 + 6446846624, + 6457193088, + 6457194912, + 6446847024, + 6446847776, + 6446847568, + 6457189712, + 6446850512 ], "bases": [ { @@ -260685,7 +260695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376152, + "complete_object_locator": 6468380248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -260694,27 +260704,29 @@ }, { "type_name": "CUserMessage_Diagnostic_Response", - "vtable_address": 6465164816, - "methods": [ - 6447148224, - 6457189536, - 6447133424, - 6447134864, - 6447134960, - 6457189584, - 6457186560, - 6447134976, - 6447137008, - 6447135392, - 6443742160, - 6447136352, - 6457190896, - 6457192720, - 6447137184, - 6447137472, - 6447137456, - 6457187520, - 6447146000 + "vtable_address": 6465168896, + "methods": [ + 6447148448, + 6457191728, + 6447133504, + 6447134832, + 6447135168, + 6457191776, + 6457188752, + 6447135200, + 6447137232, + 6447135616, + 6443742160, + 6447136576, + 6457193088, + 6457194912, + 6447137408, + 6447137696, + 6447137680, + 6457189712, + 6447146368, + 6457189712, + 6447146224 ], "bases": [ { @@ -260748,7 +260760,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376192, + "complete_object_locator": 6468380288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -260757,33 +260769,33 @@ }, { "type_name": "CUserMessage_Diagnostic_Response_Diagnostic", - "vtable_address": 6465162192, - "methods": [ - 6447125872, - 6457189536, - 6447109232, - 6447109712, - 6447109904, - 6457189584, - 6457186560, - 6447110448, - 6447116048, - 6447112128, - 6443742160, - 6447114688, - 6457190896, - 6457192720, - 6447116528, - 6447116896, - 6447116880, - 6457187520, - 6447124848, - 6457187520, - 6447126144, - 6457187520, - 6447128544, - 6457187520, - 6447130896 + "vtable_address": 6465166272, + "methods": [ + 6447126096, + 6457191728, + 6447109456, + 6447109936, + 6447110128, + 6457191776, + 6457188752, + 6447110672, + 6447116272, + 6447112352, + 6443742160, + 6447114912, + 6457193088, + 6457194912, + 6447116752, + 6447117120, + 6447117104, + 6457189712, + 6447125072, + 6457189712, + 6447126368, + 6457189712, + 6447128768, + 6457189712, + 6447131120 ], "bases": [ { @@ -260817,7 +260829,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376232, + "complete_object_locator": 6468380328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -260826,25 +260838,25 @@ }, { "type_name": "CUserMessage_DllStatus", - "vtable_address": 6465094368, - "methods": [ - 6446997440, - 6457189536, - 6446965968, - 6446968304, - 6446968704, - 6457189584, - 6457186560, - 6446968720, - 6446971360, - 6446969584, - 6443742160, - 6446970672, - 6457190896, - 6457192720, - 6446971472, - 6446971568, - 6446971552 + "vtable_address": 6465098448, + "methods": [ + 6446997664, + 6457191728, + 6446966176, + 6446968512, + 6446968928, + 6457191776, + 6457188752, + 6446968944, + 6446971584, + 6446969808, + 6443742160, + 6446970896, + 6457193088, + 6457194912, + 6446971680, + 6446971792, + 6446971776 ], "bases": [ { @@ -260878,7 +260890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376368, + "complete_object_locator": 6468380464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -260887,29 +260899,29 @@ }, { "type_name": "CUserMessage_DllStatus_CModule", - "vtable_address": 6465090032, + "vtable_address": 6465094112, "methods": [ - 6446960272, - 6457189536, - 6446946976, - 6446948016, - 6446948336, - 6457189584, - 6457186560, - 6446948352, - 6446950752, - 6446948864, + 6446960496, + 6457191728, + 6446947200, + 6446948240, + 6446948560, + 6457191776, + 6457188752, + 6446948576, + 6446950384, + 6446949072, 6443742160, - 6446949744, - 6457190896, - 6457192720, - 6446951184, - 6446952432, - 6446952416, - 6457187520, - 6446959184, - 6457187520, - 6446960528 + 6446949968, + 6457193088, + 6457194912, + 6446951408, + 6446952656, + 6446952640, + 6457189712, + 6446959408, + 6457189712, + 6446960752 ], "bases": [ { @@ -260943,7 +260955,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376504, + "complete_object_locator": 6468380600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -260952,25 +260964,25 @@ }, { "type_name": "CUserMessage_DllStatus_CVDiagnostic", - "vtable_address": 6465088304, + "vtable_address": 6465092384, "methods": [ - 6446942720, - 6457189536, - 6446934208, - 6446934848, - 6446934928, - 6457189584, - 6457186560, - 6446934960, - 6446936320, - 6446935136, + 6446942944, + 6457191728, + 6446933472, + 6446935072, + 6446935152, + 6457191776, + 6457188752, + 6446935168, + 6446936480, + 6446935360, 6443742160, - 6446935840, - 6457190896, - 6457192720, - 6446936576, - 6446936608, - 6446936592 + 6446936048, + 6457193088, + 6457194912, + 6446936800, + 6446936832, + 6446936816 ], "bases": [ { @@ -261004,7 +261016,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376640, + "complete_object_locator": 6468380736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261013,25 +261025,25 @@ }, { "type_name": "CUserMessage_ExtraUserData", - "vtable_address": 6465166624, + "vtable_address": 6465170704, "methods": [ - 6447169472, - 6457189536, - 6447157488, - 6447157824, - 6447157904, - 6457189584, - 6457186560, - 6447157920, - 6447159872, - 6447158272, + 6447169696, + 6457191728, + 6447157712, + 6447158048, + 6447158128, + 6457191776, + 6457188752, + 6447158144, + 6447160096, + 6447158496, 6443742160, - 6447159200, - 6457190896, - 6457192720, - 6447159904, - 6447161504, - 6447161488 + 6447159424, + 6457193088, + 6457194912, + 6447160128, + 6447161728, + 6447161088 ], "bases": [ { @@ -261065,7 +261077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376776, + "complete_object_locator": 6468380872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261074,37 +261086,37 @@ }, { "type_name": "CUserMessage_Inventory_Response", - "vtable_address": 6465131072, + "vtable_address": 6465135152, "methods": [ - 6447062224, - 6457189536, - 6447037392, - 6447037872, - 6447037984, - 6457189584, - 6457186560, - 6447038000, - 6447041520, - 6447038688, - 6443742160, - 6447040288, - 6457190896, - 6457192720, - 6447042752, - 6447046816, - 6447046800, - 6457187520, - 6447060096, - 6457187520, - 6447062528, - 6457187520, - 6447063664, - 6457187520, - 6447064256, - 6457187520, - 6447066480, - 6457187520, - 6447067776 + 6447062448, + 6457191728, + 6447037616, + 6447038096, + 6447038208, + 6457191776, + 6457188752, + 6447038224, + 6447041744, + 6447038912, + 6443742160, + 6447040512, + 6457193088, + 6457194912, + 6447042672, + 6447047040, + 6447047008, + 6457189712, + 6447060320, + 6457189712, + 6447062768, + 6457189712, + 6447063888, + 6457189712, + 6447064496, + 6457189712, + 6447066704, + 6457189712, + 6447068000 ], "bases": [ { @@ -261138,7 +261150,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376912, + "complete_object_locator": 6468381008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261147,25 +261159,25 @@ }, { "type_name": "CUserMessage_Inventory_Response_InventoryDetail", - "vtable_address": 6465111048, + "vtable_address": 6465115128, "methods": [ - 6447034928, - 6457189536, - 6447023296, + 6447035152, + 6457191728, + 6447023520, 6447023904, - 6447024032, - 6457189584, - 6457186560, - 6447024048, - 6447027824, - 6447024656, + 6447024256, + 6457191776, + 6457188752, + 6447024272, + 6447028048, + 6447024880, 6443742160, - 6447026112, - 6457190896, - 6457192720, - 6447028288, - 6447028816, - 6447028800 + 6447026336, + 6457193088, + 6457194912, + 6447028512, + 6447029040, + 6447028864 ], "bases": [ { @@ -261199,7 +261211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468376952, + "complete_object_locator": 6468381048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261208,29 +261220,29 @@ }, { "type_name": "CUserMessage_NotifyResponseFound", - "vtable_address": 6465176760, + "vtable_address": 6465180840, "methods": [ - 6447224208, - 6457189536, - 6447192992, - 6447194192, - 6447194576, - 6457189584, - 6457186560, - 6447194592, - 6447198512, - 6447195408, + 6447224432, + 6457191728, + 6447193216, + 6447194416, + 6447194800, + 6457191776, + 6457188752, + 6447194816, + 6447198736, + 6447195632, 6443742160, - 6447196944, - 6457190896, - 6457192720, - 6447198544, - 6447198640, - 6447198624, - 6457187520, - 6447221872, - 6457187520, - 6447223424 + 6447197168, + 6457193088, + 6457194912, + 6447198768, + 6447198864, + 6447198848, + 6457189712, + 6447222160, + 6457189712, + 6447223648 ], "bases": [ { @@ -261264,7 +261276,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377088, + "complete_object_locator": 6468381184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261273,25 +261285,25 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_Criteria", - "vtable_address": 6465167920, - "methods": [ - 6447189408, - 6457189536, - 6447175504, - 6447175680, - 6447175840, - 6457189584, - 6457186560, - 6447175920, - 6447177184, - 6447176112, + "vtable_address": 6465172000, + "methods": [ + 6447189632, + 6457191728, + 6447175728, + 6447175904, + 6447176064, + 6457191776, + 6457188752, + 6447176144, + 6447177408, + 6447176336, 6443742160, - 6447176960, - 6457190896, - 6457192720, - 6447177360, - 6447181104, - 6447180384 + 6447177184, + 6457193088, + 6457194912, + 6447177584, + 6447180784, + 6447179920 ], "bases": [ { @@ -261325,7 +261337,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377128, + "complete_object_locator": 6468381224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261334,13 +261346,13 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_t", - "vtable_address": 6465712264, + "vtable_address": 6465716456, "methods": [ - 6448809776, - 6448830512, - 6448830496, - 6448925504, - 6448840208 + 6448811344, + 6448832080, + 6448832064, + 6448927072, + 6448841776 ], "bases": [ { @@ -261430,7 +261442,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468495440, + "complete_object_locator": 6468499536, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -261439,25 +261451,25 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_t", - "vtable_address": 6465712312, + "vtable_address": 6465716504, "methods": [ - 6448807052, - 6457189536, - 6447192992, - 6447194192, - 6447194576, - 6457189584, - 6457186560, - 6447194592, - 6447198512, - 6447195408, + 6448808620, + 6457191728, + 6447193216, + 6447194416, + 6447194800, + 6457191776, + 6457188752, + 6447194816, + 6447198736, + 6447195632, 6443742160, - 6447196944, - 6457190896, - 6457192720, - 6447198544, - 6447198640, - 6447198624 + 6447197168, + 6457193088, + 6457194912, + 6447198768, + 6447198864, + 6447198848 ], "bases": [ { @@ -261547,7 +261559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468495728, + "complete_object_locator": 6468499824, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -261556,27 +261568,27 @@ }, { "type_name": "CUserMessage_PlayResponseConditional", - "vtable_address": 6465178520, + "vtable_address": 6465182600, "methods": [ - 6447246384, - 6457189536, - 6447229696, - 6447230080, - 6447230240, - 6457189584, - 6457186560, - 6447230256, - 6447232080, - 6447230592, - 6443742160, - 6447231504, - 6457190896, - 6457192720, - 6447232096, - 6447232400, + 6447246608, + 6457191728, + 6447229920, + 6447230304, + 6447230464, + 6457191776, + 6457188752, + 6447230480, 6447232304, - 6457187520, - 6447241872 + 6447230816, + 6443742160, + 6447231728, + 6457193088, + 6457194912, + 6447232320, + 6447232624, + 6447232528, + 6457189712, + 6447242096 ], "bases": [ { @@ -261610,7 +261622,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377264, + "complete_object_locator": 6468381360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261619,13 +261631,13 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 6465712648, + "vtable_address": 6465716840, "methods": [ - 6448809872, - 6448830544, - 6448830528, - 6448925584, - 6448840368 + 6448811440, + 6448832112, + 6448832096, + 6448927152, + 6448841936 ], "bases": [ { @@ -261715,7 +261727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468495768, + "complete_object_locator": 6468499864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -261724,25 +261736,25 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 6465712696, - "methods": [ - 6448807064, - 6457189536, - 6447229696, - 6447230080, - 6447230240, - 6457189584, - 6457186560, - 6447230256, - 6447232080, - 6447230592, + "vtable_address": 6465716888, + "methods": [ + 6448808632, + 6457191728, + 6447229920, + 6447230304, + 6447230464, + 6457191776, + 6457188752, + 6447230480, + 6447232304, + 6447230816, 6443742160, - 6447231504, - 6457190896, - 6457192720, - 6447232096, - 6447232400, - 6447232304 + 6447231728, + 6457193088, + 6457194912, + 6447232320, + 6447232624, + 6447232528 ], "bases": [ { @@ -261832,7 +261844,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468496056, + "complete_object_locator": 6468500152, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -261841,37 +261853,37 @@ }, { "type_name": "CUserMessage_UtilMsg_Response", - "vtable_address": 6465086976, - "methods": [ - 6446920304, - 6457189536, - 6446875664, - 6446876096, - 6446876336, - 6457189584, - 6457186560, - 6446876432, - 6446880544, - 6446877296, - 6443742160, - 6446879296, - 6457190896, - 6457192720, - 6446881888, - 6446884320, - 6446884304, - 6457187520, - 6446919808, - 6457187520, - 6446921088, - 6457187520, - 6446921520, - 6457187520, - 6446926848, - 6457187520, - 6446927008, - 6457388960, - 6457389040 + "vtable_address": 6465091056, + "methods": [ + 6446920528, + 6457191728, + 6446875888, + 6446876320, + 6446876560, + 6457191776, + 6457188752, + 6446876576, + 6446880768, + 6446877408, + 6443742160, + 6446878992, + 6457193088, + 6457194912, + 6446882112, + 6446884544, + 6446884528, + 6457189712, + 6446920032, + 6457189712, + 6446921312, + 6457189712, + 6446921744, + 6457189712, + 6446927072, + 6457189712, + 6446927232, + 6457391152, + 6457391232 ], "bases": [ { @@ -261905,7 +261917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377304, + "complete_object_locator": 6468381400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261914,25 +261926,25 @@ }, { "type_name": "CUserMessage_UtilMsg_Response_ItemDetail", - "vtable_address": 6465083256, + "vtable_address": 6465087336, "methods": [ - 6446870016, - 6457189536, - 6446863456, - 6446863712, - 6446863808, - 6457189584, - 6457186560, - 6446863888, - 6446865168, - 6446864064, + 6446870240, + 6457191728, + 6446863680, + 6446863936, + 6446864032, + 6457191776, + 6457188752, + 6446864112, + 6446865392, + 6446864288, 6443742160, - 6446864736, - 6457190896, - 6457192720, - 6446865200, - 6446866192, - 6446866176 + 6446864960, + 6457193088, + 6457194912, + 6446865424, + 6446866416, + 6446866016 ], "bases": [ { @@ -261966,7 +261978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377344, + "complete_object_locator": 6468381440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -261975,27 +261987,27 @@ }, { "type_name": "CUserMsg_CustomGameEvent", - "vtable_address": 6465208544, + "vtable_address": 6465212624, "methods": [ - 6447354064, - 6457189536, + 6447354288, + 6457191728, 6444489248, - 6447346352, - 6447346448, - 6457189584, - 6457186560, - 6447346480, - 6444489264, + 6447346576, 6447346672, + 6457191776, + 6457188752, + 6447346688, + 6444489264, + 6447346896, 6443742160, - 6447347872, - 6457190896, - 6457192720, - 6447349008, - 6447349616, - 6447349376, - 6457388960, - 6457389040 + 6447348096, + 6457193088, + 6457194912, + 6447349232, + 6447349840, + 6447349600, + 6457391152, + 6457391232 ], "bases": [ { @@ -262029,7 +262041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377480, + "complete_object_locator": 6468381576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262038,25 +262050,25 @@ }, { "type_name": "CUserMsg_HudError", - "vtable_address": 6465199336, + "vtable_address": 6465203416, "methods": [ - 6447339984, - 6457189536, - 6447334400, - 6447334496, - 6447334528, - 6457189584, - 6457186560, - 6447334640, - 6447336192, - 6447334848, - 6443742160, - 6447335952, - 6457190896, - 6457192720, - 6447337152, - 6447337632, - 6447337440 + 6447340064, + 6457191728, + 6447334624, + 6447334720, + 6447334752, + 6457191776, + 6457188752, + 6447334864, + 6447336416, + 6447335072, + 6443742160, + 6447336176, + 6457193088, + 6457194912, + 6447337376, + 6447337856, + 6447337664 ], "bases": [ { @@ -262090,7 +262102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377520, + "complete_object_locator": 6468381616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262099,25 +262111,25 @@ }, { "type_name": "CUserMsg_ParticleManager", - "vtable_address": 6465198040, + "vtable_address": 6465202120, "methods": [ - 6447325376, - 6457189536, - 6447276112, - 6447280912, - 6447283088, - 6457189584, - 6457186560, - 6447283168, - 6447294224, - 6447287376, + 6447325600, + 6457191728, + 6447276336, + 6447281136, + 6447283312, + 6457191776, + 6457188752, + 6447283376, + 6447294448, + 6447287600, 6443742160, - 6447292176, - 6457190896, - 6457192720, - 6447294240, - 6447294416, - 6447294400 + 6447292400, + 6457193088, + 6457194912, + 6447294464, + 6447294640, + 6447294624 ], "bases": [ { @@ -262151,7 +262163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377560, + "complete_object_locator": 6468381656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262160,27 +262172,27 @@ }, { "type_name": "CUserMsg_ParticleManager_AddFan", - "vtable_address": 6465177224, - "methods": [ - 6447227344, - 6457189536, - 6447206432, - 6447207616, - 6447208016, - 6457189584, - 6457186560, - 6447208032, - 6447212128, - 6447209232, - 6443742160, - 6447211216, - 6457190896, - 6457192720, - 6447212848, - 6447212896, - 6447212880, - 6457187520, - 6447225328 + "vtable_address": 6465181304, + "methods": [ + 6447227200, + 6457191728, + 6447206656, + 6447207840, + 6447208240, + 6457191776, + 6457188752, + 6447208256, + 6447212352, + 6447209296, + 6443742160, + 6447211440, + 6457193088, + 6457194912, + 6447213072, + 6447213120, + 6447213104, + 6457189712, + 6447225552 ], "bases": [ { @@ -262214,7 +262226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377600, + "complete_object_locator": 6468381696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262223,25 +262235,25 @@ }, { "type_name": "CUserMsg_ParticleManager_AddModellistOverrideElement", - "vtable_address": 6465113128, + "vtable_address": 6465117208, "methods": [ - 6447037232, - 6457189536, - 6447033680, - 6447033856, - 6447033936, - 6457189584, - 6457186560, - 6447033952, - 6447034912, + 6447037456, + 6457191728, + 6447033904, 6447034080, + 6447034160, + 6457191776, + 6457188752, + 6447034176, + 6447035136, + 6447034304, 6443742160, - 6447034656, - 6457190896, - 6457192720, - 6447035088, - 6447035296, - 6447035280 + 6447034880, + 6457193088, + 6457194912, + 6447035312, + 6447035520, + 6447035504 ], "bases": [ { @@ -262275,7 +262287,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377736, + "complete_object_locator": 6468381832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262284,27 +262296,27 @@ }, { "type_name": "CUserMsg_ParticleManager_ChangeControlPointAttachment", - "vtable_address": 6465218728, + "vtable_address": 6465222808, "methods": [ - 6447440736, - 6457189536, - 6447433168, - 6447433264, - 6447433520, - 6457189584, - 6457186560, - 6447433536, - 6447434656, + 6447440960, + 6457191728, + 6447433392, + 6447433488, 6447433680, + 6457191776, + 6457188752, + 6447433760, + 6447434880, + 6447433904, 6443742160, - 6447434272, - 6457190896, - 6457192720, - 6447435232, - 6447436256, - 6447436240, - 6457187520, - 6447437456 + 6447434496, + 6457193088, + 6457194912, + 6447435456, + 6447436480, + 6447436464, + 6457189712, + 6447437680 ], "bases": [ { @@ -262338,7 +262350,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468377872, + "complete_object_locator": 6468381968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262347,27 +262359,27 @@ }, { "type_name": "CUserMsg_ParticleManager_ClearModellistOverride", - "vtable_address": 6465129200, + "vtable_address": 6465133280, "methods": [ - 6447055504, - 6457189536, - 6447051360, - 6447051456, - 6447051552, - 6457189584, - 6457186560, + 6447055728, + 6457191728, 6447051584, - 6447052256, - 6447051696, - 6443742160, - 6447052080, - 6457190896, - 6457192720, - 6447052272, - 6447052320, + 6447051680, + 6447051776, + 6457191776, + 6457188752, + 6447051792, + 6447052480, + 6447051920, + 6443742160, 6447052304, - 6457187520, - 6447055648 + 6457193088, + 6457194912, + 6447052496, + 6447052544, + 6447052528, + 6457189712, + 6447055872 ], "bases": [ { @@ -262401,7 +262413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378008, + "complete_object_locator": 6468382104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262410,25 +262422,25 @@ }, { "type_name": "CUserMsg_ParticleManager_CreateParticle", - "vtable_address": 6465191488, - "methods": [ - 6447264896, - 6457189536, - 6447251760, - 6447252448, - 6447252624, - 6457189584, - 6457186560, - 6447252640, - 6447254928, - 6447253040, - 6443742160, - 6447254208, - 6457190896, - 6457192720, - 6447254960, - 6447255072, - 6447254992 + "vtable_address": 6465195568, + "methods": [ + 6447265120, + 6457191728, + 6447251984, + 6447252672, + 6447252848, + 6457191776, + 6457188752, + 6447252864, + 6447255152, + 6447253264, + 6443742160, + 6447254432, + 6457193088, + 6457194912, + 6447255184, + 6447255296, + 6447255216 ], "bases": [ { @@ -262462,7 +262474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378144, + "complete_object_locator": 6468382240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262471,29 +262483,29 @@ }, { "type_name": "CUserMsg_ParticleManager_CreatePhysicsSim", - "vtable_address": 6465165952, + "vtable_address": 6465170032, "methods": [ - 6447162912, - 6457189536, - 6447153088, - 6447155984, - 6447156064, - 6457189584, - 6457186560, - 6447156080, - 6447157088, - 6447156224, - 6443742160, - 6447156816, - 6457190896, - 6457192720, - 6447157248, - 6447157280, - 6447157264, - 6457187520, - 6447162080, - 6457187520, - 6447163168 + 6447163136, + 6457191728, + 6447153312, + 6447156208, + 6447156288, + 6457191776, + 6457188752, + 6447156304, + 6447157312, + 6447156448, + 6443742160, + 6447157040, + 6457193088, + 6457194912, + 6447157472, + 6447157504, + 6447157488, + 6457189712, + 6447162304, + 6457189712, + 6447163392 ], "bases": [ { @@ -262527,7 +262539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378280, + "complete_object_locator": 6468382376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262536,27 +262548,27 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticle", - "vtable_address": 6465192448, + "vtable_address": 6465196528, "methods": [ - 6447294256, - 6457189536, - 6447273008, + 6447294480, + 6457191728, 6447273232, - 6447273264, - 6457189584, - 6457186560, - 6447273456, - 6447274000, - 6447273488, - 6443742160, - 6447273888, - 6457190896, - 6457192720, - 6447274016, - 6447274240, + 6447273376, + 6447273424, + 6457191776, + 6457188752, + 6447273504, + 6447274224, + 6447273712, + 6443742160, 6447274112, - 6457187520, - 6447276144 + 6457193088, + 6457194912, + 6447274240, + 6447274352, + 6447274336, + 6457189712, + 6447276368 ], "bases": [ { @@ -262590,7 +262602,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378416, + "complete_object_locator": 6468382512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262599,31 +262611,31 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleInvolving", - "vtable_address": 6465193536, - "methods": [ - 6447303712, - 6457189536, - 6447298272, - 6447298608, - 6447298656, - 6457189584, - 6457186560, + "vtable_address": 6465197616, + "methods": [ + 6447303936, + 6457191728, + 6447298496, 6447298672, - 6447299456, + 6447298720, + 6457191776, + 6457188752, 6447298736, + 6447299680, + 6447298960, 6443742160, - 6447299232, - 6457190896, - 6457192720, - 6447299472, - 6447299504, - 6447299488, - 6457187520, - 6447301120, - 6457187520, - 6447301264, - 6457187520, - 6447303904 + 6447299456, + 6457193088, + 6457194912, + 6447299696, + 6447299728, + 6447299712, + 6457189712, + 6447301344, + 6457189712, + 6447301568, + 6457189712, + 6447304288 ], "bases": [ { @@ -262657,7 +262669,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378552, + "complete_object_locator": 6468382648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262666,25 +262678,25 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleNamed", - "vtable_address": 6465194208, - "methods": [ - 6447310320, - 6457189536, - 6447305488, - 6447306752, - 6447306800, - 6457189584, - 6457186560, - 6447306816, - 6447308880, - 6447307536, + "vtable_address": 6465198288, + "methods": [ + 6447310528, + 6457191728, + 6447305712, + 6447306976, + 6447307024, + 6457191776, + 6457188752, + 6447307040, + 6447309104, + 6447307760, 6443742160, - 6447308560, - 6457190896, - 6457192720, - 6447308912, - 6447309184, - 6447309168 + 6447308784, + 6457193088, + 6457194912, + 6447309136, + 6447309408, + 6447309392 ], "bases": [ { @@ -262718,7 +262730,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378688, + "complete_object_locator": 6468382784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262727,25 +262739,25 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyPhysicsSim", - "vtable_address": 6465166480, + "vtable_address": 6465170560, "methods": [ - 6447169408, - 6457189536, - 6447169216, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447169264, - 6447169248 + 6447169632, + 6457191728, + 6447169440, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447169488, + 6447169472 ], "bases": [ { @@ -262793,7 +262805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378824, + "complete_object_locator": 6468382920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262802,25 +262814,25 @@ }, { "type_name": "CUserMsg_ParticleManager_FreezeParticleInvolving", - "vtable_address": 6465109896, + "vtable_address": 6465113976, "methods": [ - 6447030224, - 6457189536, - 6447020992, - 6447022016, - 6447022064, - 6457189584, - 6457186560, - 6447022368, - 6447023280, - 6447022464, + 6447030000, + 6457191728, + 6447021216, + 6447022240, + 6447022288, + 6457191776, + 6457188752, + 6447022304, + 6447023488, + 6447022688, 6443742160, - 6447023008, - 6457190896, - 6457192720, - 6447023328, - 6447026048, - 6447025888 + 6447023232, + 6457193088, + 6457194912, + 6447023552, + 6447026272, + 6447026112 ], "bases": [ { @@ -262854,7 +262866,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468378968, + "complete_object_locator": 6468383064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262863,25 +262875,25 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleCanFreeze", - "vtable_address": 6465094512, + "vtable_address": 6465098592, "methods": [ - 6446997648, - 6457189536, - 6446994800, - 6446995984, - 6446996016, - 6457189584, - 6457186560, - 6446996032, - 6446996736, - 6446996080, + 6446997872, + 6457191728, + 6446995024, + 6446996208, + 6446996240, + 6457191776, + 6457188752, + 6446996256, + 6446996960, + 6446996304, 6443742160, - 6446996624, - 6457190896, - 6457192720, - 6446996832, - 6446997024, - 6446997008 + 6446996704, + 6457193088, + 6457194912, + 6446997056, + 6446997248, + 6446997232 ], "bases": [ { @@ -262915,7 +262927,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468379104, + "complete_object_locator": 6468383200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262924,25 +262936,25 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleFreezeTransitionOverride", - "vtable_address": 6465095280, - "methods": [ - 6447019632, - 6457189536, - 6447013872, - 6447015296, - 6447015328, - 6457189584, - 6457186560, - 6447015936, - 6447016912, - 6447016384, - 6443742160, - 6447016800, - 6457190896, - 6457192720, - 6447017024, + "vtable_address": 6465099360, + "methods": [ + 6447019856, + 6457191728, + 6447014096, + 6447015520, + 6447015552, + 6457191776, + 6457188752, + 6447016160, 6447017136, - 6447017120 + 6447016608, + 6443742160, + 6447017024, + 6457193088, + 6457194912, + 6447017248, + 6447017360, + 6447017344 ], "bases": [ { @@ -262976,7 +262988,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468379240, + "complete_object_locator": 6468383336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -262985,31 +262997,31 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleSkipToTime", - "vtable_address": 6465093568, - "methods": [ - 6446984624, - 6457189536, - 6446983136, - 6446983280, - 6446983312, - 6457189584, - 6457186560, - 6446983328, - 6446983872, + "vtable_address": 6465097648, + "methods": [ + 6446984848, + 6457191728, 6446983360, - 6443742160, - 6446983760, - 6457190896, - 6457192720, - 6446983888, - 6446984160, - 6446984144, - 6457187520, - 6446984784, - 6457187520, - 6446985536, - 6457187520, - 6446992720 + 6446983504, + 6446983536, + 6457191776, + 6457188752, + 6446983552, + 6446984096, + 6446983584, + 6443742160, + 6446983984, + 6457193088, + 6457194912, + 6446984112, + 6446984384, + 6446984368, + 6457189712, + 6446985008, + 6457189712, + 6446985760, + 6457189712, + 6446992944 ], "bases": [ { @@ -263043,7 +263055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468379376, + "complete_object_locator": 6468383472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263052,25 +263064,25 @@ }, { "type_name": "CUserMsg_ParticleManager_ReleaseParticleIndex", - "vtable_address": 6465178680, - "methods": [ - 6447246672, - 6457189536, - 6447241856, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447246320, - 6447246288 + "vtable_address": 6465182760, + "methods": [ + 6447246896, + 6457191728, + 6447242080, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447246528, + 6447245680 ], "bases": [ { @@ -263118,7 +263130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468379512, + "complete_object_locator": 6468383608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263127,25 +263139,25 @@ }, { "type_name": "CUserMsg_ParticleManager_RemoveFan", - "vtable_address": 6465179624, + "vtable_address": 6465183704, "methods": [ - 6447255456, - 6457189536, - 6447254944, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6447255008, - 6447254976 + 6447255680, + 6457191728, + 6447255168, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6447255232, + 6447255200 ], "bases": [ { @@ -263193,7 +263205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468379656, + "complete_object_locator": 6468383752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263202,25 +263214,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointModel", - "vtable_address": 6465085160, - "methods": [ - 6446890704, - 6457189536, - 6446883872, - 6446884720, - 6446884864, - 6457189584, - 6457186560, - 6446884896, - 6446886336, - 6446885072, - 6443742160, - 6446885936, - 6457190896, - 6457192720, - 6446886448, - 6446886512, - 6446886480 + "vtable_address": 6465089240, + "methods": [ + 6446890928, + 6457191728, + 6446884096, + 6446884944, + 6446885088, + 6457191776, + 6457188752, + 6446885120, + 6446886560, + 6446885296, + 6443742160, + 6446886160, + 6457193088, + 6457194912, + 6446886672, + 6446886736, + 6446886704 ], "bases": [ { @@ -263254,7 +263266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468379800, + "complete_object_locator": 6468383896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263263,25 +263275,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointSnapshot", - "vtable_address": 6465086256, + "vtable_address": 6465090336, "methods": [ - 6446919008, - 6457189536, - 6446913408, - 6446914080, - 6446914144, - 6457189584, - 6457186560, - 6446914160, - 6446915104, + 6446919232, + 6457191728, + 6446913632, + 6446914304, + 6446914368, + 6457191776, + 6457188752, 6446914384, + 6446915328, + 6446914608, 6443742160, - 6446914880, - 6457190896, - 6457192720, - 6446915824, - 6446917392, - 6446917376 + 6446915104, + 6457193088, + 6457194912, + 6446916032, + 6446917616, + 6446917600 ], "bases": [ { @@ -263315,7 +263327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468379936, + "complete_object_locator": 6468384032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263324,25 +263336,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetMaterialOverride", - "vtable_address": 6465168856, + "vtable_address": 6465172936, "methods": [ - 6447202752, - 6457189536, - 6447192368, - 6447192720, - 6447192976, - 6457189584, - 6457186560, - 6447193008, - 6447193728, - 6447193088, + 6447202976, + 6457191728, + 6447192592, + 6447192944, + 6447193200, + 6457191776, + 6457188752, + 6447193232, + 6447193952, + 6447193312, 6443742160, - 6447193568, - 6457190896, - 6457192720, - 6447196928, - 6447198560, - 6447198528 + 6447193792, + 6457193088, + 6457194912, + 6447197152, + 6447198784, + 6447198752 ], "bases": [ { @@ -263376,7 +263388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468380072, + "complete_object_locator": 6468384168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263385,31 +263397,31 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleClusterGrowth", - "vtable_address": 6465191792, - "methods": [ - 6447266480, - 6457189536, - 6447262480, - 6447263248, - 6447263664, - 6457189584, - 6457186560, - 6447263696, - 6447264544, - 6447263936, + "vtable_address": 6465195872, + "methods": [ + 6447266704, + 6457191728, + 6447262656, + 6447263472, + 6447263712, + 6457191776, + 6457188752, + 6447263904, + 6447264768, + 6447264160, 6443742160, - 6447264368, - 6457190896, - 6457192720, - 6447264560, - 6447264672, - 6447264656, - 6457187520, - 6447266688, - 6457187520, - 6447268720, - 6457388960, - 6457389040 + 6447264576, + 6457193088, + 6457194912, + 6447264784, + 6447264896, + 6447264880, + 6457189712, + 6447266896, + 6457391152, + 6457391232, + 6457189712, + 6447269936 ], "bases": [ { @@ -263443,7 +263455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468380208, + "complete_object_locator": 6468384304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263452,31 +263464,31 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleFoWProperties", - "vtable_address": 6465082552, - "methods": [ - 6446860416, - 6457189536, - 6446854304, - 6446854400, - 6446854640, - 6457189584, - 6457186560, - 6446854656, - 6446855648, - 6446854784, - 6443742160, - 6446855312, - 6457190896, - 6457192720, - 6446855792, - 6446856512, - 6446856352, - 6457187520, - 6446858784, - 6457187520, - 6446859520, - 6457187520, - 6446860944 + "vtable_address": 6465086632, + "methods": [ + 6446860640, + 6457191728, + 6446854528, + 6446854624, + 6446854864, + 6457191776, + 6457188752, + 6446854880, + 6446855872, + 6446855008, + 6443742160, + 6446855536, + 6457193088, + 6457194912, + 6446856016, + 6446856736, + 6446856576, + 6457189712, + 6446859008, + 6457189712, + 6446859744, + 6457189712, + 6446861168 ], "bases": [ { @@ -263510,7 +263522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468380344, + "complete_object_locator": 6468384440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263519,27 +263531,27 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext", - "vtable_address": 6465164656, - "methods": [ - 6447144960, - 6457189536, - 6447101328, - 6447101888, - 6447102432, - 6457189584, - 6457186560, - 6447102448, - 6447104336, - 6447103216, + "vtable_address": 6465168736, + "methods": [ + 6447145184, + 6457191728, + 6447101472, + 6447102112, + 6447102656, + 6457191776, + 6457188752, + 6447102672, + 6447104560, + 6447103440, 6443742160, - 6447104032, - 6457190896, - 6457192720, - 6447104352, - 6447104816, - 6447104624, - 6457187520, - 6447145216 + 6447104256, + 6457193088, + 6457194912, + 6447104576, + 6447105040, + 6447104848, + 6457189712, + 6447145440 ], "bases": [ { @@ -263573,7 +263585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468380480, + "complete_object_locator": 6468384576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263582,25 +263594,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext", - "vtable_address": 6465159344, + "vtable_address": 6465163424, "methods": [ - 6447094016, - 6457189536, - 6447090304, - 6447090480, + 6447094240, + 6457191728, 6447090528, - 6457189584, - 6457186560, - 6447090544, - 6447091408, - 6447090640, + 6447090704, + 6447090752, + 6457191776, + 6457188752, + 6447090768, + 6447091632, + 6447090864, 6443742160, - 6447091136, - 6457190896, - 6457192720, - 6447091440, - 6447092336, - 6447092320 + 6447091360, + 6457193088, + 6457194912, + 6447091664, + 6447092560, + 6447092544 ], "bases": [ { @@ -263634,7 +263646,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468380616, + "complete_object_locator": 6468384712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263643,25 +263655,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue", - "vtable_address": 6465130784, - "methods": [ - 6447059936, - 6457189536, - 6447056816, - 6447057472, - 6447057504, - 6457189584, - 6457186560, - 6447057520, - 6447059152, - 6447058160, + "vtable_address": 6465134864, + "methods": [ + 6447060160, + 6457191728, + 6447057040, + 6447057696, + 6447057728, + 6457191776, + 6457188752, + 6447057744, + 6447059376, + 6447058384, 6443742160, - 6447058928, - 6457190896, - 6457192720, - 6447059184, - 6447059296, - 6447059280 + 6447059152, + 6457193088, + 6457194912, + 6447059408, + 6447059520, + 6447059504 ], "bases": [ { @@ -263695,7 +263707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468380752, + "complete_object_locator": 6468384848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263704,25 +263716,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue", - "vtable_address": 6465157424, + "vtable_address": 6465161504, "methods": [ - 6447084464, - 6457189536, - 6447081040, - 6447081488, - 6447081648, - 6457189584, - 6457186560, - 6447081664, - 6447082976, - 6447082064, + 6447084688, + 6457191728, + 6447081264, + 6447081712, + 6447081872, + 6457191776, + 6457188752, + 6447081888, + 6447083200, + 6447082288, 6443742160, - 6447082720, - 6457190896, - 6457192720, - 6447082992, - 6447083184, - 6447083168 + 6447082944, + 6457193088, + 6457194912, + 6447083216, + 6447083408, + 6447083392 ], "bases": [ { @@ -263756,7 +263768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468380888, + "complete_object_locator": 6468384984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263765,25 +263777,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue", - "vtable_address": 6465133480, - "methods": [ - 6447074368, - 6457189536, - 6447066400, - 6447066736, - 6447066832, - 6457189584, - 6457186560, - 6447066848, - 6447067760, - 6447067040, + "vtable_address": 6465137560, + "methods": [ + 6447074592, + 6457191728, + 6447066608, + 6447066960, + 6447067056, + 6457191776, + 6457188752, + 6447067072, + 6447067984, + 6447067264, 6443742160, - 6447067536, - 6457190896, - 6457192720, - 6447068048, - 6447069840, - 6447069808 + 6447067760, + 6457193088, + 6457194912, + 6447068272, + 6447070064, + 6447070032 ], "bases": [ { @@ -263817,7 +263829,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381024, + "complete_object_locator": 6468385120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263826,31 +263838,31 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleShouldCheckFoW", - "vtable_address": 6465083976, - "methods": [ - 6446872672, - 6457189536, - 6446868256, - 6446869216, - 6446869248, - 6457189584, - 6457186560, - 6446869264, - 6446869824, - 6446869312, - 6443742160, - 6446869712, - 6457190896, - 6457192720, - 6446869920, - 6446869952, + "vtable_address": 6465088056, + "methods": [ + 6446872896, + 6457191728, + 6446868480, + 6446869440, + 6446869472, + 6457191776, + 6457188752, + 6446869488, + 6446870048, + 6446869536, + 6443742160, 6446869936, - 6457187520, - 6446870368, - 6457187520, - 6446870512, - 6457187520, - 6446873136 + 6457193088, + 6457194912, + 6446870144, + 6446870176, + 6446870160, + 6457189712, + 6446870592, + 6457189712, + 6446870736, + 6457189712, + 6446873360 ], "bases": [ { @@ -263884,7 +263896,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381160, + "complete_object_locator": 6468385256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263893,29 +263905,29 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleText", - "vtable_address": 6465087520, + "vtable_address": 6465091600, "methods": [ - 6446936352, - 6457189536, - 6446926784, - 6446926944, - 6446927712, - 6457189584, - 6457186560, - 6446927968, - 6446930336, - 6446928752, - 6443742160, - 6446930224, - 6457190896, - 6457192720, - 6446930944, - 6446931008, - 6446930992, - 6457187520, - 6446931648, - 6457187520, - 6446934672 + 6446936560, + 6457191728, + 6446927008, + 6446927168, + 6446927936, + 6457191776, + 6457188752, + 6446928192, + 6446930560, + 6446928976, + 6443742160, + 6446930448, + 6457193088, + 6457194912, + 6446931168, + 6446931232, + 6446931216, + 6457189712, + 6446931872, + 6457189712, + 6446934880 ], "bases": [ { @@ -263949,7 +263961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381296, + "complete_object_locator": 6468385392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -263958,35 +263970,35 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectGenericFlag", - "vtable_address": 6465090352, + "vtable_address": 6465094432, "methods": [ - 6446962256, - 6457189536, - 6446959040, - 6446959232, - 6446959280, - 6457189584, - 6457186560, - 6446959296, - 6446959984, - 6446959328, - 6443742160, - 6446959872, - 6457190896, - 6457192720, - 6446960256, - 6446960464, - 6446960448, - 6457187520, - 6446962016, - 6457187520, - 6446962928, - 6457187520, - 6446964912, - 6457187520, + 6446962480, + 6457191728, + 6446959264, + 6446959456, + 6446959488, + 6457191776, + 6457188752, + 6446959520, + 6446960208, + 6446959552, + 6443742160, + 6446960096, + 6457193088, + 6457194912, + 6446960480, + 6446960688, + 6446960672, + 6457189712, + 6446962240, + 6457189712, + 6446963152, + 6457189712, 6446965136, - 6457187520, - 6446967904 + 6457189712, + 6446965472, + 6457189712, + 6446967920 ], "bases": [ { @@ -264020,7 +264032,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381432, + "complete_object_locator": 6468385528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264029,25 +264041,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectTintAndDesat", - "vtable_address": 6465092288, - "methods": [ - 6446976528, - 6457189536, - 6446972464, - 6446973072, - 6446973104, - 6457189584, - 6457186560, - 6446973120, - 6446973696, - 6446973184, - 6443742160, - 6446973536, - 6457190896, - 6457192720, - 6446973792, - 6446973984, - 6446973968 + "vtable_address": 6465096368, + "methods": [ + 6446976736, + 6457191728, + 6446972528, + 6446973296, + 6446973328, + 6457191776, + 6457188752, + 6446973344, + 6446973920, + 6446973392, + 6443742160, + 6446973760, + 6457193088, + 6457194912, + 6446973952, + 6446974208, + 6446974192 ], "bases": [ { @@ -264081,7 +264093,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381568, + "complete_object_locator": 6468385664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264090,27 +264102,27 @@ }, { "type_name": "CUserMsg_ParticleManager_SetTextureAttribute", - "vtable_address": 6465089072, + "vtable_address": 6465093152, "methods": [ - 6446947184, - 6457189536, - 6446941968, - 6446942416, - 6446942576, - 6457189584, - 6457186560, - 6446942592, - 6446943632, - 6446942880, + 6446947408, + 6457191728, + 6446942192, + 6446942624, + 6446942736, + 6457191776, + 6457188752, + 6446942816, + 6446943856, + 6446943104, 6443742160, - 6446943472, - 6457190896, - 6457192720, - 6446943648, - 6446943840, - 6446943824, - 6457187520, - 6446946832 + 6446943696, + 6457193088, + 6457194912, + 6446943872, + 6446944064, + 6446944048, + 6457189712, + 6446947056 ], "bases": [ { @@ -264144,7 +264156,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381704, + "complete_object_locator": 6468385800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264153,25 +264165,25 @@ }, { "type_name": "CUserMsg_ParticleManager_SetVData", - "vtable_address": 6465167776, + "vtable_address": 6465171856, "methods": [ - 6447189248, - 6457189536, - 6447175520, - 6447175856, - 6447176032, - 6457189584, - 6457186560, - 6447176048, - 6447177328, - 6447176592, + 6447189472, + 6457191728, + 6447175744, + 6447176080, + 6447176256, + 6457191776, + 6457188752, + 6447176272, + 6447177552, + 6447176816, 6443742160, - 6447177216, - 6457190896, - 6457192720, - 6447177376, - 6447181744, - 6447181168 + 6447177440, + 6457193088, + 6457194912, + 6447177600, + 6447181952, + 6447180848 ], "bases": [ { @@ -264205,7 +264217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381840, + "complete_object_locator": 6468385936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264214,25 +264226,25 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateEntityPosition", - "vtable_address": 6465079336, - "methods": [ - 6446849728, - 6457189536, - 6446844064, - 6446844512, - 6446844672, - 6457189584, - 6457186560, - 6446844704, - 6446845600, + "vtable_address": 6465083416, + "methods": [ + 6446849936, + 6457191728, + 6446844288, + 6446844736, 6446844896, + 6457191776, + 6457188752, + 6446844928, + 6446845824, + 6446845120, 6443742160, - 6446845376, - 6457190896, - 6457192720, - 6446845856, - 6446846736, - 6446846720 + 6446845600, + 6457193088, + 6457194912, + 6446846080, + 6446846960, + 6446846944 ], "bases": [ { @@ -264266,7 +264278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468381976, + "complete_object_locator": 6468386072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264275,29 +264287,29 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateFan", - "vtable_address": 6465178824, - "methods": [ - 6447246736, - 6457189536, - 6447233840, - 6447235872, - 6447236176, - 6457189584, - 6457186560, - 6447236192, - 6447238352, - 6447236848, - 6443742160, - 6447237984, - 6457190896, - 6457192720, - 6447238720, - 6447238976, - 6447238960, - 6457388960, - 6457389040, - 6457187520, - 6447247024 + "vtable_address": 6465182904, + "methods": [ + 6447246960, + 6457191728, + 6447234064, + 6447236096, + 6447236400, + 6457191776, + 6457188752, + 6447236416, + 6447238576, + 6447237072, + 6443742160, + 6447238016, + 6457193088, + 6457194912, + 6447238944, + 6447239200, + 6447239184, + 6457391152, + 6457391232, + 6457189712, + 6447247248 ], "bases": [ { @@ -264331,7 +264343,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468382112, + "complete_object_locator": 6468386208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264340,25 +264352,25 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleEnt", - "vtable_address": 6465215384, + "vtable_address": 6465219464, "methods": [ - 6447400224, - 6457189536, - 6447388032, - 6447388912, + 6447400448, + 6457191728, + 6447388096, 6447389136, - 6457189584, - 6457186560, - 6447389152, - 6447391472, - 6447389696, - 6443742160, - 6447390832, - 6457190896, - 6457192720, + 6447389360, + 6457191776, + 6457188752, + 6447389376, 6447391696, - 6447392688, - 6447392672 + 6447389920, + 6443742160, + 6447391056, + 6457193088, + 6457194912, + 6447391920, + 6447392912, + 6447392896 ], "bases": [ { @@ -264392,7 +264404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468382248, + "complete_object_locator": 6468386344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264401,27 +264413,27 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFallback", - "vtable_address": 6465212328, - "methods": [ - 6447368784, - 6457189536, - 6447359008, - 6447359536, - 6447359632, - 6457189584, - 6457186560, - 6447359648, - 6447361712, - 6447359840, + "vtable_address": 6465216408, + "methods": [ + 6447368992, + 6457191728, + 6447359232, + 6447359744, + 6447359856, + 6457191776, + 6457188752, + 6447359872, + 6447361920, + 6447360064, 6443742160, - 6447361472, - 6457190896, - 6457192720, - 6447363744, - 6447365504, - 6447365488, - 6457388960, - 6457389040 + 6447361280, + 6457193088, + 6457194912, + 6447363968, + 6447365728, + 6447365712, + 6457391152, + 6457391232 ], "bases": [ { @@ -264455,7 +264467,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468382384, + "complete_object_locator": 6468386480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264464,27 +264476,27 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE", - "vtable_address": 6465197736, - "methods": [ - 6447325040, - 6457189536, - 6447319168, - 6447319696, - 6447319792, - 6457189584, - 6457186560, - 6447320304, - 6447321600, - 6447320816, + "vtable_address": 6465201816, + "methods": [ + 6447325120, + 6457191728, + 6447319392, + 6447319920, + 6447320016, + 6457191776, + 6457188752, + 6447320528, + 6447321824, + 6447321040, 6443742160, - 6447321376, - 6457190896, - 6457192720, - 6447321632, + 6447321600, + 6457193088, + 6457194912, + 6447321856, + 6447322192, 6447321968, - 6447321744, - 6457187520, - 6447323936 + 6457189712, + 6447324160 ], "bases": [ { @@ -264518,7 +264530,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468382520, + "complete_object_locator": 6468386616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264527,25 +264539,25 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOffset", - "vtable_address": 6465213608, + "vtable_address": 6465217688, "methods": [ - 6447382608, - 6457189536, - 6447373824, - 6447375184, - 6447375664, - 6457189584, - 6457186560, - 6447375696, - 6447377056, - 6447376016, + 6447382832, + 6457191728, + 6447374048, + 6447375408, + 6447375888, + 6457191776, + 6457188752, + 6447375920, + 6447377280, + 6447376240, 6443742160, - 6447376784, - 6457190896, - 6457192720, - 6447377088, - 6447378048, - 6447377696 + 6447377008, + 6457193088, + 6457194912, + 6447377296, + 6447377936, + 6447377904 ], "bases": [ { @@ -264579,7 +264591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468382656, + "complete_object_locator": 6468386752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264588,29 +264600,29 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE", - "vtable_address": 6465199480, - "methods": [ - 6447341312, - 6457189536, - 6447329264, - 6447330784, - 6447331216, - 6457189584, - 6457186560, - 6447331232, - 6447333024, - 6447331856, + "vtable_address": 6465203560, + "methods": [ + 6447341520, + 6457191728, + 6447329472, + 6447331008, + 6447331440, + 6457191776, + 6457188752, + 6447331456, + 6447333248, + 6447332080, 6443742160, - 6447332672, - 6457190896, - 6457192720, - 6447333264, - 6447334240, - 6447334224, - 6457187520, - 6447338208, - 6457187520, - 6447338512 + 6447332896, + 6457193088, + 6457194912, + 6447333472, + 6447334464, + 6447334384, + 6457189712, + 6447338432, + 6457189712, + 6447339456 ], "bases": [ { @@ -264644,7 +264656,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468382792, + "complete_object_locator": 6468386888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264653,27 +264665,27 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleSetFrozen", - "vtable_address": 6465216504, - "methods": [ - 6447420128, - 6457189536, - 6447408096, - 6447411216, - 6447411248, - 6457189584, - 6457186560, - 6447411264, - 6447412272, - 6447411312, + "vtable_address": 6465220584, + "methods": [ + 6447420352, + 6457191728, + 6447408304, + 6447411424, + 6447411472, + 6457191776, + 6457188752, + 6447411488, + 6447412496, + 6447411536, 6443742160, - 6447411968, - 6457190896, - 6457192720, - 6447413344, - 6447413840, - 6447413824, - 6457187520, - 6447415712 + 6447412192, + 6457193088, + 6457194912, + 6447413552, + 6447414064, + 6447414048, + 6457189712, + 6447415936 ], "bases": [ { @@ -264707,7 +264719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468382928, + "complete_object_locator": 6468387024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264716,25 +264728,25 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleShouldDraw", - "vtable_address": 6465217464, - "methods": [ - 6447430400, - 6457189536, - 6447425696, - 6447425856, - 6447426032, - 6457189584, - 6457186560, - 6447426048, - 6447426672, - 6447426096, - 6443742160, - 6447426560, - 6457190896, - 6457192720, - 6447426688, - 6447426720, - 6447426704 + "vtable_address": 6465221544, + "methods": [ + 6447430624, + 6457191728, + 6447425920, + 6447426080, + 6447426256, + 6457191776, + 6457188752, + 6447426272, + 6447426896, + 6447426320, + 6443742160, + 6447426784, + 6457193088, + 6457194912, + 6447426912, + 6447426944, + 6447426928 ], "bases": [ { @@ -264768,7 +264780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383064, + "complete_object_locator": 6468387160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264777,27 +264789,27 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleTransform", - "vtable_address": 6465208704, + "vtable_address": 6465212784, "methods": [ - 6447355056, - 6457189536, - 6447346000, - 6447347712, - 6447348032, - 6457189584, - 6457186560, - 6447348048, - 6447349328, - 6447348384, + 6447355280, + 6457191728, + 6447346224, + 6447347936, + 6447348256, + 6457191776, + 6457188752, + 6447348272, + 6447349552, + 6447348608, 6443742160, - 6447349024, - 6457190896, - 6457192720, - 6447349360, - 6447351616, - 6447351600, - 6457187520, - 6447354224 + 6447349248, + 6457193088, + 6457194912, + 6447349584, + 6447351840, + 6447351824, + 6457189712, + 6447354448 ], "bases": [ { @@ -264831,7 +264843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383200, + "complete_object_locator": 6468387296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264840,27 +264852,27 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticle_OBSOLETE", - "vtable_address": 6465196760, + "vtable_address": 6465200840, "methods": [ - 6447317328, - 6457189536, - 6447311952, - 6447312320, - 6447312448, - 6457189584, - 6457186560, - 6447312480, - 6447314368, - 6447312784, + 6447317552, + 6457191728, + 6447312016, + 6447312544, + 6447312672, + 6457191776, + 6457188752, + 6447312704, + 6447314592, + 6447312992, 6443742160, - 6447313840, - 6457190896, - 6457192720, - 6447314400, - 6447314544, - 6447314512, - 6457388960, - 6457389040 + 6447314064, + 6457193088, + 6457194912, + 6447314624, + 6447314768, + 6447314736, + 6457391152, + 6457391232 ], "bases": [ { @@ -264894,7 +264906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468383336, + "complete_object_locator": 6468387432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -264903,13 +264915,13 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 6465755048, + "vtable_address": 6465759240, "methods": [ - 6449167024, - 6449180688, - 6449180672, - 6449279488, - 6449196896 + 6449168576, + 6449182240, + 6449182224, + 6449281040, + 6449198448 ], "bases": [ { @@ -264999,7 +265011,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468507608, + "complete_object_locator": 6468511704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -265008,25 +265020,25 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 6465755096, + "vtable_address": 6465759288, "methods": [ - 6449163672, - 6457189536, - 6447276112, - 6447280912, - 6447283088, - 6457189584, - 6457186560, - 6447283168, - 6447294224, - 6447287376, + 6449165224, + 6457191728, + 6447276336, + 6447281136, + 6447283312, + 6457191776, + 6457188752, + 6447283376, + 6447294448, + 6447287600, 6443742160, - 6447292176, - 6457190896, - 6457192720, - 6447294240, - 6447294416, - 6447294400 + 6447292400, + 6457193088, + 6457194912, + 6447294464, + 6447294640, + 6447294624 ], "bases": [ { @@ -265116,7 +265128,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468507896, + "complete_object_locator": 6468511992, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -265125,7 +265137,7 @@ }, { "type_name": "CUtilRemoveDeferralGameSystem", - "vtable_address": 6465807000, + "vtable_address": 6465811192, "methods": [ 6443748576, 6443748592, @@ -265139,7 +265151,7 @@ 6443748720, 6443748736, 6443748752, - 6449419008, + 6449420576, 6443748784, 6443748800, 6443748816, @@ -265154,7 +265166,7 @@ 6443748960, 6443748976, 6443748992, - 6449418656, + 6449420224, 6443749024, 6443749040, 6443749056, @@ -265183,11 +265195,11 @@ 6443749424, 6443749440, 6443749456, - 6449418624, + 6449420192, 6443749488, - 6449418608, - 6449419648, - 6449418592 + 6449420176, + 6449421216, + 6449420160 ], "bases": [ { @@ -265221,7 +265233,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468515120, + "complete_object_locator": 6468519216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265230,14 +265242,14 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6465326984, + "vtable_address": 6465331048, "methods": [ 6447808112 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468430760, + "complete_object_locator": 6468434856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265246,14 +265258,14 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6465380224, + "vtable_address": 6465384384, "methods": [ - 6447934720 + 6447936288 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468439520, + "complete_object_locator": 6468443616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265262,14 +265274,14 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6465989408, + "vtable_address": 6465993600, "methods": [ - 6450765296 + 6450766864 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468573808, + "complete_object_locator": 6468577904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265278,14 +265290,14 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6465418552, + "vtable_address": 6465422712, "methods": [ - 6447989088 + 6447990656 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468448056, + "complete_object_locator": 6468452152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265294,12 +265306,12 @@ }, { "type_name": "CUtlMapDataOps,int>,79,5>", - "vtable_address": 6465739664, + "vtable_address": 6465743856, "methods": [ - 6449025136, - 6449013856, - 6448950048, - 6448963152, + 6449026688, + 6449015408, + 6448951616, + 6448964720, 6443852464, 6443799744 ], @@ -265335,7 +265347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468500936, + "complete_object_locator": 6468505032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265344,14 +265356,14 @@ }, { "type_name": "CUtlMultiJobProcessor", - "vtable_address": 6464713344, + "vtable_address": 6464717424, "methods": [ 6445090624 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468280896, + "complete_object_locator": 6468284992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265360,12 +265372,12 @@ }, { "type_name": "CUtlSymbolDataOps", - "vtable_address": 6465808840, + "vtable_address": 6465813032, "methods": [ - 6449420832, - 6449421008, - 6449421216, - 6449421200, + 6449422400, + 6449422576, + 6449422784, + 6449422768, 6443852464, 6443799744 ], @@ -265401,7 +265413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468518024, + "complete_object_locator": 6468522120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265410,7 +265422,7 @@ }, { "type_name": "CUtlVectorDataOps >,13,0>", - "vtable_address": 6464580280, + "vtable_address": 6464584376, "methods": [ 6444368704, 6444367904, @@ -265451,7 +265463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468246352, + "complete_object_locator": 6468250448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265460,7 +265472,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6464507400, + "vtable_address": 6464511496, "methods": [ 6444215168, 6444208528, @@ -265501,7 +265513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239016, + "complete_object_locator": 6468243112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265510,12 +265522,12 @@ }, { "type_name": "CUtlVectorDataOps >,5,0>", - "vtable_address": 6466129848, + "vtable_address": 6466134056, "methods": [ - 6451518304, - 6451511760, - 6451494784, - 6451497424, + 6451519888, + 6451513344, + 6451496368, + 6451499008, 6443852464, 6443799744 ], @@ -265551,7 +265563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611464, + "complete_object_locator": 6468615560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265560,12 +265572,12 @@ }, { "type_name": "CUtlVectorDataOps >,2,0>", - "vtable_address": 6465851672, + "vtable_address": 6465855864, "methods": [ - 6449923584, - 6449919552, - 6449905504, - 6449907120, + 6449925152, + 6449921120, + 6449907072, + 6449908688, 6443852464, 6443799744 ], @@ -265601,7 +265613,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468530936, + "complete_object_locator": 6468535032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265610,12 +265622,12 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,3,0>", - "vtable_address": 6465852064, + "vtable_address": 6465856256, "methods": [ - 6449923312, - 6449919248, - 6449905488, + 6449924880, + 6449920816, 6449907056, + 6449908624, 6443852464, 6443799744 ], @@ -265651,7 +265663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468531888, + "complete_object_locator": 6468535984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265660,7 +265672,7 @@ }, { "type_name": "CUtlVectorDataOps >,1,0>", - "vtable_address": 6464507464, + "vtable_address": 6464511560, "methods": [ 6444214896, 6444208224, @@ -265701,7 +265713,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239152, + "complete_object_locator": 6468243248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265710,12 +265722,12 @@ }, { "type_name": "CUtlVectorDataOps >,5,0>", - "vtable_address": 6465831656, + "vtable_address": 6465835848, "methods": [ - 6449719856, - 6449708544, - 6449625632, - 6449640736, + 6449721424, + 6449710112, + 6449627200, + 6449642304, 6443852464, 6443799744 ], @@ -265751,7 +265763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526432, + "complete_object_locator": 6468530528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265760,12 +265772,12 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6466129904, + "vtable_address": 6466134112, "methods": [ - 6451517936, - 6451511344, - 6451494768, - 6451497392, + 6451519520, + 6451512928, + 6451496352, + 6451498976, 6443852464, 6443799744 ], @@ -265801,7 +265813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611600, + "complete_object_locator": 6468615696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265810,12 +265822,12 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6465831712, + "vtable_address": 6465835904, "methods": [ - 6449720128, - 6449708848, - 6449625648, - 6449640800, + 6449721696, + 6449710416, + 6449627216, + 6449642368, 6443852464, 6443799744 ], @@ -265851,7 +265863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526568, + "complete_object_locator": 6468530664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265860,7 +265872,7 @@ }, { "type_name": "CUtlVectorDataOps >,37,0>", - "vtable_address": 6464580224, + "vtable_address": 6464584320, "methods": [ 6444368432, 6444367600, @@ -265901,7 +265913,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468246216, + "complete_object_locator": 6468250312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265910,12 +265922,12 @@ }, { "type_name": "CUtlVectorDataOps >,58,0>", - "vtable_address": 6465795488, + "vtable_address": 6465799680, "methods": [ - 6449361456, - 6449338480, - 6449300736, - 6449313328, + 6449363008, + 6449340032, + 6449302288, + 6449314880, 6443852464, 6443799744 ], @@ -265951,7 +265963,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468511792, + "complete_object_locator": 6468515888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -265960,12 +265972,12 @@ }, { "type_name": "CUtlVectorDataOps,6,0>", - "vtable_address": 6465851952, + "vtable_address": 6465856144, "methods": [ - 6449925488, - 6449921840, - 6449905616, - 6449907600, + 6449927056, + 6449923408, + 6449907184, + 6449909168, 6443852464, 6443799744 ], @@ -266001,7 +266013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468531616, + "complete_object_locator": 6468535712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266010,7 +266022,7 @@ }, { "type_name": "CUtlVectorDataOps,79,0>", - "vtable_address": 6464689800, + "vtable_address": 6464693880, "methods": [ 6444937488, 6444923936, @@ -266051,7 +266063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269960, + "complete_object_locator": 6468274056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266060,7 +266072,7 @@ }, { "type_name": "CUtlVectorDataOps,79,0>", - "vtable_address": 6464689240, + "vtable_address": 6464693320, "methods": [ 6444937760, 6444924336, @@ -266101,7 +266113,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468268600, + "complete_object_locator": 6468272696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266110,7 +266122,7 @@ }, { "type_name": "CUtlVectorDataOps,class C_Team::NetworkVar_m_aPlayerControllers,-1,int>,13,0>", - "vtable_address": 6464612840, + "vtable_address": 6464616936, "methods": [ 6444423664, 6444420704, @@ -266151,7 +266163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468250200, + "complete_object_locator": 6468254296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266160,12 +266172,12 @@ }, { "type_name": "CUtlVectorDataOps,class C_FuncConveyor::NetworkVar_m_hConveyorModels,-1,int>,13,0>", - "vtable_address": 6466260072, + "vtable_address": 6466264184, "methods": [ - 6452037824, - 6452037504, - 6452029856, - 6452029872, + 6452039408, + 6452039088, + 6452031440, + 6452031456, 6443852464, 6443799744 ], @@ -266201,7 +266213,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468647192, + "complete_object_locator": 6468651288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266210,12 +266222,12 @@ }, { "type_name": "CUtlVectorDataOps,class ActiveModelConfig_t::NetworkVar_m_AssociatedEntities,-1,int>,13,0>", - "vtable_address": 6465739352, + "vtable_address": 6465743544, "methods": [ - 6449025648, - 6449014400, - 6448950064, - 6448963296, + 6449027200, + 6449015952, + 6448951632, + 6448964864, 6443852464, 6443799744 ], @@ -266251,7 +266263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468500256, + "complete_object_locator": 6468504352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266260,7 +266272,7 @@ }, { "type_name": "CUtlVectorDataOps,class CInfoOffscreenPanoramaTexture::NetworkVar_m_TargetEntities,-1,int>,13,0>", - "vtable_address": 6464440896, + "vtable_address": 6464444992, "methods": [ 6443863920, 6443858272, @@ -266301,7 +266313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468224768, + "complete_object_locator": 6468228864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266310,12 +266322,12 @@ }, { "type_name": "CUtlVectorDataOps,class C_BarnLight::NetworkVar_m_LightStyleTargets,-1,int>,13,0>", - "vtable_address": 6466365144, + "vtable_address": 6466369304, "methods": [ - 6452555648, - 6452553312, - 6452548016, - 6452549152, + 6452557264, + 6452554928, + 6452549632, + 6452550768, 6443852464, 6443799744 ], @@ -266351,7 +266363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682304, + "complete_object_locator": 6468686400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266360,12 +266372,12 @@ }, { "type_name": "CUtlVectorDataOps,class C_BaseModelEntity::NetworkVar_m_ConfigEntitiesToPropagateMaterialDecalsTo,-1,int>,13,0>", - "vtable_address": 6465739720, + "vtable_address": 6465743912, "methods": [ - 6449025920, - 6449014720, - 6448950080, - 6448963328, + 6449027472, + 6449016272, + 6448951648, + 6448964896, 6443852464, 6443799744 ], @@ -266401,7 +266413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468501072, + "complete_object_locator": 6468505168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266410,7 +266422,7 @@ }, { "type_name": "CUtlVectorDataOps,class C_Team::NetworkVar_m_aPlayers,-1,int>,13,0>", - "vtable_address": 6464612784, + "vtable_address": 6464616880, "methods": [ 6444423936, 6444421024, @@ -266451,7 +266463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468250064, + "complete_object_locator": 6468254160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266460,12 +266472,12 @@ }, { "type_name": "CUtlVectorDataOps,class CPlayer_WeaponServices::NetworkVar_m_hMyWeapons,-1,int>,13,0>", - "vtable_address": 6465857112, + "vtable_address": 6465861304, "methods": [ - 6449989616, - 6449989232, - 6449985280, - 6449986256, + 6449991184, + 6449990800, + 6449986848, + 6449987824, 6443852464, 6443799744 ], @@ -266501,7 +266513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533376, + "complete_object_locator": 6468537472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266510,12 +266522,12 @@ }, { "type_name": "CUtlVectorDataOps,class CPlayer_CameraServices::NetworkVar_m_PostProcessingVolumes,-1,int>,13,0>", - "vtable_address": 6465852176, + "vtable_address": 6465856368, "methods": [ - 6449924128, - 6449920176, - 6449905536, - 6449907216, + 6449925696, + 6449921744, + 6449907104, + 6449908784, 6443852464, 6443799744 ], @@ -266551,7 +266563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532160, + "complete_object_locator": 6468536256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266560,12 +266572,12 @@ }, { "type_name": "CUtlVectorDataOps,59,0>", - "vtable_address": 6466101456, + "vtable_address": 6466105664, "methods": [ - 6451383200, - 6451374240, - 6451340816, - 6451346016, + 6451384768, + 6451375808, + 6451342384, + 6451347584, 6443852464, 6443799744 ], @@ -266601,7 +266613,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603488, + "complete_object_locator": 6468607584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266610,12 +266622,12 @@ }, { "type_name": "CUtlVectorDataOps,53,0>", - "vtable_address": 6466365088, + "vtable_address": 6466369248, "methods": [ - 6452555920, - 6452553632, - 6452548032, - 6452549184, + 6452557536, + 6452555248, + 6452549648, + 6452550800, 6443852464, 6443799744 ], @@ -266651,7 +266663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682168, + "complete_object_locator": 6468686264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266660,12 +266672,12 @@ }, { "type_name": "CUtlVectorDataOps,53,0>", - "vtable_address": 6466365032, + "vtable_address": 6466369192, "methods": [ - 6452556192, - 6452553920, - 6452548048, - 6452549200, + 6452557808, + 6452555536, + 6452549664, + 6452550816, 6443852464, 6443799744 ], @@ -266701,7 +266713,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682032, + "complete_object_locator": 6468686128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266710,12 +266722,12 @@ }, { "type_name": "CUtlVectorDataOps,2,0>", - "vtable_address": 6465739408, + "vtable_address": 6465743600, "methods": [ - 6449026192, - 6449015040, - 6448950096, - 6448963360, + 6449027744, + 6449016592, + 6448951664, + 6448964928, 6443852464, 6443799744 ], @@ -266751,7 +266763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468500392, + "complete_object_locator": 6468504488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266760,7 +266772,7 @@ }, { "type_name": "CUtlVectorDataOps,2,0>", - "vtable_address": 6464440952, + "vtable_address": 6464445048, "methods": [ 6443864192, 6443858592, @@ -266801,7 +266813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468224904, + "complete_object_locator": 6468229000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266810,7 +266822,7 @@ }, { "type_name": "CUtlVectorDataOps,2,0>", - "vtable_address": 6464441008, + "vtable_address": 6464445104, "methods": [ 6443864464, 6443858992, @@ -266851,7 +266863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225040, + "complete_object_locator": 6468229136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266860,7 +266872,7 @@ }, { "type_name": "CUtlVectorDataOps,2,0>", - "vtable_address": 6464441064, + "vtable_address": 6464445160, "methods": [ 6443864736, 6443859392, @@ -266901,7 +266913,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225176, + "complete_object_locator": 6468229272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266910,7 +266922,7 @@ }, { "type_name": "CUtlVectorDataOps,4,0>", - "vtable_address": 6464689744, + "vtable_address": 6464693824, "methods": [ 6444938032, 6444924736, @@ -266951,7 +266963,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269824, + "complete_object_locator": 6468273920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -266960,7 +266972,7 @@ }, { "type_name": "CUtlVectorDataOps,4,0>", - "vtable_address": 6464689184, + "vtable_address": 6464693264, "methods": [ 6444938304, 6444925056, @@ -267001,7 +267013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468268464, + "complete_object_locator": 6468272560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267010,12 +267022,12 @@ }, { "type_name": "CUtlVectorDataOps,class shard_model_desc_t::NetworkVar_m_vecPanelVertices,-1,int>,25,0>", - "vtable_address": 6466055576, + "vtable_address": 6466059784, "methods": [ - 6451141920, - 6451141056, - 6451128880, - 6451130912, + 6451143488, + 6451142624, + 6451130448, + 6451132480, 6443852464, 6443799744 ], @@ -267051,7 +267063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591232, + "complete_object_locator": 6468595328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267060,7 +267072,7 @@ }, { "type_name": "CUtlVectorDataOps,class CAnimGraphNetworkedVariables::NetworkVar_m_OwnerOnlyPredNetVectorVariables,-1,int>,3,0>", - "vtable_address": 6464689688, + "vtable_address": 6464693768, "methods": [ 6444936944, 6444923296, @@ -267101,7 +267113,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269688, + "complete_object_locator": 6468273784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267110,7 +267122,7 @@ }, { "type_name": "CUtlVectorDataOps,class CAnimGraphNetworkedVariables::NetworkVar_m_PredNetVectorVariables,-1,int>,3,0>", - "vtable_address": 6464689128, + "vtable_address": 6464693208, "methods": [ 6444937216, 6444923616, @@ -267151,7 +267163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468268328, + "complete_object_locator": 6468272424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267160,12 +267172,12 @@ }, { "type_name": "CUtlVectorDataOps,class C_PathParticleRope::NetworkVar_m_PathNodes_Color,-1,int>,3,0>", - "vtable_address": 6465851896, + "vtable_address": 6465856088, "methods": [ - 6449924400, - 6449920560, - 6449905552, - 6449907344, + 6449925968, + 6449922128, + 6449907120, + 6449908912, 6443852464, 6443799744 ], @@ -267201,7 +267213,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468531480, + "complete_object_locator": 6468535576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267210,12 +267222,12 @@ }, { "type_name": "CUtlVectorDataOps,class C_PathParticleRope::NetworkVar_m_PathNodes_Position,-1,int>,3,0>", - "vtable_address": 6465851728, + "vtable_address": 6465855920, "methods": [ - 6449924672, - 6449920880, - 6449905568, - 6449907408, + 6449926240, + 6449922448, + 6449907136, + 6449908976, 6443852464, 6443799744 ], @@ -267251,7 +267263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468531072, + "complete_object_locator": 6468535168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267260,12 +267272,12 @@ }, { "type_name": "CUtlVectorDataOps,class C_PathParticleRope::NetworkVar_m_PathNodes_TangentIn,-1,int>,3,0>", - "vtable_address": 6465851784, + "vtable_address": 6465855976, "methods": [ - 6449924944, - 6449921200, - 6449905584, - 6449907472, + 6449926512, + 6449922768, + 6449907152, + 6449909040, 6443852464, 6443799744 ], @@ -267301,7 +267313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468531208, + "complete_object_locator": 6468535304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267310,12 +267322,12 @@ }, { "type_name": "CUtlVectorDataOps,class C_PathParticleRope::NetworkVar_m_PathNodes_TangentOut,-1,int>,3,0>", - "vtable_address": 6465851840, + "vtable_address": 6465856032, "methods": [ - 6449925216, - 6449921520, - 6449905600, - 6449907536, + 6449926784, + 6449923088, + 6449907168, + 6449909104, 6443852464, 6443799744 ], @@ -267351,7 +267363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468531344, + "complete_object_locator": 6468535440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267360,12 +267372,12 @@ }, { "type_name": "CUtlVectorDataOps,class shard_model_desc_t::NetworkVar_m_vInitialPanelVertices,-1,int>,27,0>", - "vtable_address": 6466055632, + "vtable_address": 6466059840, "methods": [ - 6451142192, - 6451141376, - 6451128896, - 6451130976, + 6451143760, + 6451142944, + 6451130464, + 6451132544, 6443852464, 6443799744 ], @@ -267401,7 +267413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591368, + "complete_object_locator": 6468595464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267410,7 +267422,7 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6464689632, + "vtable_address": 6464693712, "methods": [ 6444936400, 6444922656, @@ -267451,7 +267463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269552, + "complete_object_locator": 6468273648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267460,7 +267472,7 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6464689072, + "vtable_address": 6464693152, "methods": [ 6444936672, 6444922976, @@ -267501,7 +267513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468268192, + "complete_object_locator": 6468272288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267510,12 +267522,12 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6465956880, + "vtable_address": 6465961072, "methods": [ - 6450666160, - 6450654656, - 6450553056, - 6450568704, + 6450667728, + 6450656224, + 6450554624, + 6450570272, 6443852464, 6443799744 ], @@ -267551,7 +267563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564536, + "complete_object_locator": 6468568632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267560,12 +267572,12 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6465852008, + "vtable_address": 6465856200, "methods": [ - 6449923856, - 6449919856, - 6449905520, - 6449907152, + 6449925424, + 6449921424, + 6449907088, + 6449908720, 6443852464, 6443799744 ], @@ -267601,7 +267613,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468531752, + "complete_object_locator": 6468535848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267610,7 +267622,7 @@ }, { "type_name": "CUtlVectorDataOps,5,0>", - "vtable_address": 6464689464, + "vtable_address": 6464693544, "methods": [ 6444934768, 6444920736, @@ -267651,7 +267663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269144, + "complete_object_locator": 6468273240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267660,7 +267672,7 @@ }, { "type_name": "CUtlVectorDataOps,5,0>", - "vtable_address": 6464688904, + "vtable_address": 6464692984, "methods": [ 6444935040, 6444921056, @@ -267701,7 +267713,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468267784, + "complete_object_locator": 6468271880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267710,12 +267722,12 @@ }, { "type_name": "CUtlVectorDataOps,5,0>", - "vtable_address": 6465891368, + "vtable_address": 6465895560, "methods": [ - 6450256336, - 6450252944, - 6450207568, - 6450231648, + 6450257904, + 6450254512, + 6450209136, + 6450233216, 6443852464, 6443799744 ], @@ -267751,7 +267763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552800, + "complete_object_locator": 6468556896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267760,7 +267772,7 @@ }, { "type_name": "CUtlVectorDataOps,33,0>", - "vtable_address": 6464689576, + "vtable_address": 6464693656, "methods": [ 6444938576, 6444925376, @@ -267801,7 +267813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269416, + "complete_object_locator": 6468273512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267810,7 +267822,7 @@ }, { "type_name": "CUtlVectorDataOps,33,0>", - "vtable_address": 6464689016, + "vtable_address": 6464693096, "methods": [ 6444938848, 6444925696, @@ -267851,7 +267863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468268056, + "complete_object_locator": 6468272152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267860,7 +267872,7 @@ }, { "type_name": "CUtlVectorDataOps,8,0>", - "vtable_address": 6464689352, + "vtable_address": 6464693432, "methods": [ 6444933680, 6444919488, @@ -267901,7 +267913,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468268872, + "complete_object_locator": 6468272968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267910,7 +267922,7 @@ }, { "type_name": "CUtlVectorDataOps,8,0>", - "vtable_address": 6464688792, + "vtable_address": 6464692872, "methods": [ 6444933952, 6444919792, @@ -267951,7 +267963,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468267512, + "complete_object_locator": 6468271608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -267960,7 +267972,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6464689296, + "vtable_address": 6464693376, "methods": [ 6444935312, 6444921376, @@ -268001,7 +268013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468268736, + "complete_object_locator": 6468272832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268010,7 +268022,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6464689520, + "vtable_address": 6464693600, "methods": [ 6444935584, 6444921696, @@ -268051,7 +268063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269280, + "complete_object_locator": 6468273376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268060,7 +268072,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6464688736, + "vtable_address": 6464692816, "methods": [ 6444935856, 6444922016, @@ -268101,7 +268113,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468267376, + "complete_object_locator": 6468271472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268110,7 +268122,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6464688960, + "vtable_address": 6464693040, "methods": [ 6444936128, 6444922336, @@ -268151,7 +268163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468267920, + "complete_object_locator": 6468272016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268160,7 +268172,7 @@ }, { "type_name": "CUtlVectorDataOps,58,0>", - "vtable_address": 6464689408, + "vtable_address": 6464693488, "methods": [ 6444934224, 6444920096, @@ -268201,7 +268213,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468269008, + "complete_object_locator": 6468273104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268210,7 +268222,7 @@ }, { "type_name": "CUtlVectorDataOps,58,0>", - "vtable_address": 6464688848, + "vtable_address": 6464692928, "methods": [ 6444934496, 6444920416, @@ -268251,7 +268263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468267648, + "complete_object_locator": 6468271744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268260,12 +268272,12 @@ }, { "type_name": "CUtlVectorDataOps,58,0>", - "vtable_address": 6466364976, + "vtable_address": 6466369136, "methods": [ - 6452555376, - 6452552992, - 6452548000, - 6452549088, + 6452556992, + 6452554608, + 6452549616, + 6452550704, 6443852464, 6443799744 ], @@ -268301,7 +268313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681896, + "complete_object_locator": 6468685992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268310,12 +268322,12 @@ }, { "type_name": "CUtlVectorDataOps,10,0>", - "vtable_address": 6465739608, + "vtable_address": 6465743800, "methods": [ - 6449026464, - 6449015360, - 6448950112, - 6448963392, + 6449028016, + 6449016912, + 6448951680, + 6448964960, 6443852464, 6443799744 ], @@ -268351,7 +268363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468500800, + "complete_object_locator": 6468504896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268360,12 +268372,12 @@ }, { "type_name": "CUtlVectorDataOps,10,0>", - "vtable_address": 6465663096, + "vtable_address": 6465667272, "methods": [ - 6448496464, - 6448495600, - 6448471376, - 6448474608, + 6448498032, + 6448497168, + 6448472944, + 6448476176, 6443852464, 6443799744 ], @@ -268401,7 +268413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468484040, + "complete_object_locator": 6468488136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268410,12 +268422,12 @@ }, { "type_name": "CUtlVectorDataOps,10,0>", - "vtable_address": 6465644896, + "vtable_address": 6465649072, "methods": [ - 6448384208, - 6448383792, - 6448369040, - 6448371088, + 6448385776, + 6448385360, + 6448370608, + 6448372656, 6443852464, 6443799744 ], @@ -268451,7 +268463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468480808, + "complete_object_locator": 6468484904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268460,7 +268472,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464691352, + "vtable_address": 6464695432, "methods": [ 6444682736, 6444635792, @@ -268505,7 +268517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272408, + "complete_object_locator": 6468276504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268514,7 +268526,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690560, + "vtable_address": 6464694640, "methods": [ 6444685664, 6444637248, @@ -268559,7 +268571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468271184, + "complete_object_locator": 6468275280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268568,17 +268580,17 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps,class CPlayer_WeaponServices::NetworkVar_m_hMyWeapons,-1,int> >", - "vtable_address": 6465857024, - "methods": [ - 6449972976, - 6449970928, - 6449975712, - 6449972384, - 6449981616, - 6449981632, - 6449979936, - 6449982800, - 6449982752, + "vtable_address": 6465861216, + "methods": [ + 6449974544, + 6449972496, + 6449977280, + 6449973952, + 6449983184, + 6449983200, + 6449981504, + 6449984368, + 6449984320, 6443968624 ], "bases": [ @@ -268613,7 +268625,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533240, + "complete_object_locator": 6468537336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268622,7 +268634,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464691264, + "vtable_address": 6464695344, "methods": [ 6444688592, 6444638704, @@ -268667,7 +268679,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272272, + "complete_object_locator": 6468276368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268676,7 +268688,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690472, + "vtable_address": 6464694552, "methods": [ 6444691456, 6444640160, @@ -268721,7 +268733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468271048, + "complete_object_locator": 6468275144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268730,7 +268742,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps,class CAnimGraphNetworkedVariables::NetworkVar_m_OwnerOnlyPredNetVectorVariables,-1,int> >", - "vtable_address": 6464691176, + "vtable_address": 6464695256, "methods": [ 6444677808, 6444632880, @@ -268775,7 +268787,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272136, + "complete_object_locator": 6468276232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268784,7 +268796,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps,class CAnimGraphNetworkedVariables::NetworkVar_m_PredNetVectorVariables,-1,int> >", - "vtable_address": 6464690384, + "vtable_address": 6464694464, "methods": [ 6444680272, 6444634336, @@ -268829,7 +268841,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468270912, + "complete_object_locator": 6468275008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268838,7 +268850,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464691088, + "vtable_address": 6464695168, "methods": [ 6444672176, 6444629968, @@ -268883,7 +268895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272000, + "complete_object_locator": 6468276096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268892,7 +268904,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690296, + "vtable_address": 6464694376, "methods": [ 6444674992, 6444631424, @@ -268937,7 +268949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468270776, + "complete_object_locator": 6468274872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -268946,7 +268958,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690912, + "vtable_address": 6464694992, "methods": [ 6444655280, 6444621232, @@ -268991,7 +269003,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468271728, + "complete_object_locator": 6468275824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269000,7 +269012,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690120, + "vtable_address": 6464694200, "methods": [ 6444658096, 6444622688, @@ -269045,7 +269057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468270504, + "complete_object_locator": 6468274600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269054,7 +269066,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690736, + "vtable_address": 6464694816, "methods": [ 6444644816, 6444615408, @@ -269099,7 +269111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468271456, + "complete_object_locator": 6468275552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269108,7 +269120,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464689944, + "vtable_address": 6464694024, "methods": [ 6444647232, 6444616864, @@ -269153,7 +269165,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468270232, + "complete_object_locator": 6468274328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269162,7 +269174,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690648, + "vtable_address": 6464694728, "methods": [ 6444660912, 6444624144, @@ -269207,7 +269219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468271320, + "complete_object_locator": 6468275416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269216,7 +269228,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464691000, + "vtable_address": 6464695080, "methods": [ 6444663728, 6444625600, @@ -269261,7 +269273,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468271864, + "complete_object_locator": 6468275960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269270,7 +269282,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464689856, + "vtable_address": 6464693936, "methods": [ 6444666544, 6444627056, @@ -269315,7 +269327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468270096, + "complete_object_locator": 6468274192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269324,7 +269336,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690208, + "vtable_address": 6464694288, "methods": [ 6444669360, 6444628512, @@ -269369,7 +269381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468270640, + "complete_object_locator": 6468274736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269378,7 +269390,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690824, + "vtable_address": 6464694904, "methods": [ 6444649648, 6444618320, @@ -269423,7 +269435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468271592, + "complete_object_locator": 6468275688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269432,7 +269444,7 @@ }, { "type_name": "CUtlVectorPredictionCopyDataOps >", - "vtable_address": 6464690032, + "vtable_address": 6464694112, "methods": [ 6444652464, 6444619776, @@ -269477,7 +269489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468270368, + "complete_object_locator": 6468274464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269486,17 +269498,17 @@ }, { "type_name": "CVDataFileManager", - "vtable_address": 6465750768, + "vtable_address": 6465754960, "methods": [ 6444410224, - 6463216656, + 6463218848, 6444410832, - 6449079952, - 6449087568, - 6449080096, - 6449080080, - 6449086160, - 6449086672 + 6449081504, + 6449089120, + 6449081648, + 6449081632, + 6449087712, + 6449088224 ], "bases": [ { @@ -269544,7 +269556,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468503232, + "complete_object_locator": 6468507328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269553,25 +269565,25 @@ }, { "type_name": "CVDiagnostic", - "vtable_address": 6464977536, + "vtable_address": 6464981632, "methods": [ - 6446300496, - 6457189536, - 6446282976, - 6446286608, - 6446287264, - 6457189584, - 6457186560, - 6446287280, - 6446290480, - 6446288624, - 6443742160, - 6446290048, - 6457190896, - 6457192720, - 6446291408, - 6446292176, - 6446292160 + 6446300880, + 6457191728, + 6446283360, + 6446286992, + 6446287648, + 6457191776, + 6457188752, + 6446287664, + 6446290864, + 6446289008, + 6443742160, + 6446290432, + 6457193088, + 6457194912, + 6446291792, + 6446292560, + 6446292544 ], "bases": [ { @@ -269605,7 +269617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468346888, + "complete_object_locator": 6468351120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269614,18 +269626,18 @@ }, { "type_name": "CVGUILocalizationProvider", - "vtable_address": 6466832168, + "vtable_address": 6466836280, "methods": [ - 6456463440, - 6456458256, - 6456458128, - 6456458368, - 6456458416, - 6456458512, - 6456458560, - 6456458688, - 6456458704, - 6456466992 + 6456465216, + 6456460032, + 6456459904, + 6456460144, + 6456460192, + 6456460288, + 6456460336, + 6456460464, + 6456460480, + 6456468768 ], "bases": [ { @@ -269645,7 +269657,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797816, + "complete_object_locator": 6468801912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269654,10 +269666,10 @@ }, { "type_name": "CVPKSignatureCallbacks", - "vtable_address": 6466023832, + "vtable_address": 6466028040, "methods": [ - 6451021344, - 6450933184 + 6451022912, + 6450934752 ], "bases": [ { @@ -269677,7 +269689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468582792, + "complete_object_locator": 6468586888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269686,7 +269698,7 @@ }, { "type_name": "CVScriptGameEventListener", - "vtable_address": 6464701016, + "vtable_address": 6464705128, "methods": [ 6444998768, 6444997856 @@ -269723,7 +269735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468274384, + "complete_object_locator": 6468278480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -269732,7 +269744,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 6464731880, + "vtable_address": 6464735960, "methods": [ 6443748576, 6443748592, @@ -269831,7 +269843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468282256, + "complete_object_locator": 6468286352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -269840,7 +269852,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 6464732400, + "vtable_address": 6464736480, "methods": [ 6445396528, 6445397584, @@ -269892,7 +269904,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468282432, + "complete_object_locator": 6468286528, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -269901,35 +269913,35 @@ }, { "type_name": "CVanityLoadoutPanel", - "vtable_address": 6466434680, + "vtable_address": 6466438840, "methods": [ 6443876544, - 6461535472, - 6453006640, - 6453013504, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008256, + 6453015120, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -269942,12 +269954,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -269962,29 +269974,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006336, - 6452958096, + 6461548896, + 6453007952, + 6452959712, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -270034,7 +270046,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695736, + "complete_object_locator": 6468699832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -270043,9 +270055,9 @@ }, { "type_name": "CVanityLoadoutPanel", - "vtable_address": 6466435360, + "vtable_address": 6466439520, "methods": [ - 6453010544 + 6453012160 ], "bases": [ { @@ -270093,7 +270105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695880, + "complete_object_locator": 6468699976, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -270102,10 +270114,10 @@ }, { "type_name": "CVanityQuadRenderer", - "vtable_address": 6466484232, + "vtable_address": 6466488360, "methods": [ - 6453332624, - 6453197216, + 6453334384, + 6453198832, 6443773360 ], "bases": [ @@ -270126,7 +270138,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468706968, + "complete_object_locator": 6468711064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270135,12 +270147,12 @@ }, { "type_name": "CVariantSaveDataOps", - "vtable_address": 6467179296, + "vtable_address": 6467183360, "methods": [ - 6459897328, - 6459898144, - 6459898976, - 6459899024, + 6459899520, + 6459900336, + 6459901168, + 6459901216, 6443852464, 6443799744 ], @@ -270176,7 +270188,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937992, + "complete_object_locator": 6468942088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270185,28 +270197,28 @@ }, { "type_name": "CViewEffects", - "vtable_address": 6466125192, - "methods": [ - 6451485392, - 6451527728, - 6451495536, - 6451476816, - 6451527152, - 6451472304, - 6451495328, - 6451460032, - 6451460208, - 6451459760, - 6451453952, - 6451452384, - 6451455360, - 6451452464, - 6451518576, - 6451512128, - 6451459888, - 6451482688, - 6451530272, - 6451472960 + "vtable_address": 6466129400, + "methods": [ + 6451486976, + 6451529312, + 6451497120, + 6451478400, + 6451528736, + 6451473888, + 6451496912, + 6451461616, + 6451461792, + 6451461344, + 6451455536, + 6451453968, + 6451456944, + 6451454048, + 6451520160, + 6451513712, + 6451461472, + 6451484272, + 6451531856, + 6451474544 ], "bases": [ { @@ -270226,7 +270238,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468610384, + "complete_object_locator": 6468614480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270235,7 +270247,7 @@ }, { "type_name": "CViewEffectsGameSystem", - "vtable_address": 6466105704, + "vtable_address": 6466109912, "methods": [ 6443748576, 6443748592, @@ -270258,10 +270270,10 @@ 6443748864, 6443748880, 6443748896, - 6451424512, + 6451426096, 6443748928, 6443748944, - 6451424528, + 6451426112, 6443748976, 6443748992, 6443749008, @@ -270293,11 +270305,11 @@ 6443749424, 6443749440, 6443749456, - 6451424480, + 6451426064, 6443749488, - 6451424464, - 6451424544, - 6451424448 + 6451426048, + 6451426128, + 6451426032 ], "bases": [ { @@ -270331,7 +270343,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605800, + "complete_object_locator": 6468609896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270340,17 +270352,17 @@ }, { "type_name": "CViewEffectsSaveRestoreBlockHandler", - "vtable_address": 6466105496, + "vtable_address": 6466109704, "methods": [ - 6451423760, + 6451425344, 6444489280, - 6451423776, - 6451424128, + 6451425360, + 6451425712, 6444489296, - 6451424192, - 6451424208, - 6451424288, - 6451424432 + 6451425776, + 6451425792, + 6451425872, + 6451426016 ], "bases": [ { @@ -270384,7 +270396,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468605664, + "complete_object_locator": 6468609760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270393,32 +270405,32 @@ }, { "type_name": "CViewRender", - "vtable_address": 6466124728, - "methods": [ - 6451486576, - 6451495696, - 6451495888, - 6451527744, - 6451498704, - 6451510432, - 6451511296, - 6451479760, - 6451462368, - 6451482672, - 6451512496, - 6451463360, - 6451478656, - 6451478400, - 6451483104, - 6451482736, - 6451483088, - 6451478784, - 6451476576, - 6451448784, - 6451527712, - 6451501392, - 6451500992, - 6451497568 + "vtable_address": 6466128936, + "methods": [ + 6451488160, + 6451497280, + 6451497472, + 6451529328, + 6451500288, + 6451512016, + 6451512880, + 6451481344, + 6451463952, + 6451484256, + 6451514080, + 6451464944, + 6451480240, + 6451479984, + 6451484688, + 6451484320, + 6451484672, + 6451480368, + 6451478160, + 6451450368, + 6451529296, + 6451502976, + 6451502576, + 6451499152 ], "bases": [ { @@ -270438,7 +270450,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468610176, + "complete_object_locator": 6468614272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270447,9 +270459,9 @@ }, { "type_name": "CViewportClientSystem", - "vtable_address": 6466106312, + "vtable_address": 6466110520, "methods": [ - 6451424960, + 6451426544, 6443748592, 6443748608, 6443748624, @@ -270505,11 +270517,11 @@ 6443749424, 6443749440, 6443749456, - 6451424928, + 6451426512, 6443749488, - 6451424912, - 6451425088, - 6451424896 + 6451426496, + 6451426672, + 6451426480 ], "bases": [ { @@ -270529,7 +270541,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468606072, + "complete_object_locator": 6468610168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270538,13 +270550,13 @@ }, { "type_name": "CVoiceStatus", - "vtable_address": 6466125968, + "vtable_address": 6466130176, "methods": [ 6443748576, 6443748592, 6443748608, - 6451475424, - 6451476384, + 6451477008, + 6451477968, 6443748656, 6443748672, 6443748688, @@ -270596,11 +270608,11 @@ 6443749424, 6443749440, 6443749456, - 6451521872, + 6451523456, 6443749488, - 6451465744, - 6451448848, - 6451544096 + 6451467328, + 6451450432, + 6451545680 ], "bases": [ { @@ -270634,7 +270646,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468610920, + "complete_object_locator": 6468615016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270643,13 +270655,13 @@ }, { "type_name": "CWatchableFriendsInfo", - "vtable_address": 6466591120, + "vtable_address": 6466595248, "methods": [ - 6454067952, - 6454067008, - 6454068384, - 6454068368, - 6454068512 + 6454069712, + 6454068768, + 6454070144, + 6454070128, + 6454070272 ], "bases": [ { @@ -270669,7 +270681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468731536, + "complete_object_locator": 6468735632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270678,7 +270690,7 @@ }, { "type_name": "CWaterLevelChangeGameSystem", - "vtable_address": 6465896856, + "vtable_address": 6465901048, "methods": [ 6443748576, 6443748592, @@ -270700,7 +270712,7 @@ 6443748848, 6443748864, 6443748880, - 6450323728, + 6450325296, 6443748912, 6443748928, 6443748944, @@ -270736,11 +270748,11 @@ 6443749424, 6443749440, 6443749456, - 6450323696, + 6450325264, 6443749488, - 6450323680, - 6450323920, - 6450323664 + 6450325248, + 6450325488, + 6450325232 ], "bases": [ { @@ -270774,7 +270786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468554928, + "complete_object_locator": 6468559024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -270783,32 +270795,32 @@ }, { "type_name": "CWaterSplasher", - "vtable_address": 6465386368, + "vtable_address": 6465390528, "methods": [ 6445466928, - 6447935488, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6447937056, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -270817,25 +270829,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946656, - 6447952064, - 6447953328, + 6460060080, + 6447948224, + 6447953632, + 6447954896, 6443799760, 6445466096, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -270847,18 +270859,18 @@ 6443817200, 6443817712, 6443817696, - 6447937440, + 6447939008, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -270866,41 +270878,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -270912,33 +270924,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -270966,34 +270978,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -271003,24 +271015,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -271099,7 +271111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468440064, + "complete_object_locator": 6468444160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -271108,14 +271120,14 @@ }, { "type_name": "CWaterSplasher", - "vtable_address": 6465388288, + "vtable_address": 6465392448, "methods": [ - 6447934680, - 6448995376, - 6448972352, - 6448972096, + 6447936248, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -271191,7 +271203,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468440224, + "complete_object_locator": 6468444320, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -271200,9 +271212,9 @@ }, { "type_name": "CWaterSplasher", - "vtable_address": 6465388344, + "vtable_address": 6465392504, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -271278,7 +271290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468440264, + "complete_object_locator": 6468444360, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -271287,9 +271299,9 @@ }, { "type_name": "CWeaponEconData", - "vtable_address": 6465402112, + "vtable_address": 6465406272, "methods": [ - 6448006672 + 6448008240 ], "bases": [ { @@ -271309,7 +271321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468442952, + "complete_object_locator": 6468447048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271318,35 +271330,35 @@ }, { "type_name": "CWeaponSpiderGraph", - "vtable_address": 6466583608, + "vtable_address": 6466587736, "methods": [ 6443876544, - 6461535472, - 6453996752, - 6454003504, - 6454030800, - 6461546688, - 6461559344, + 6461537664, + 6453998512, + 6454005264, + 6454032560, + 6461548880, + 6461561536, 6443845056, - 6454025776, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6454027536, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6453976336, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6453978096, 6443844992, 6443848064, 6443844976, @@ -271359,12 +271371,12 @@ 6443913856, 6443821360, 6443848384, - 6454048496, - 6461505456, - 6461505088, - 6461526000, + 6454050256, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -271374,39 +271386,39 @@ 6443847696, 6443847680, 6443848160, - 6454026960, - 6454030656, + 6454028720, + 6454032416, 6443879584, 6443817680, 6443848032, - 6461546704, - 6453996608, - 6453975744, + 6461548896, + 6453998368, + 6453977504, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6454029040, - 6453985680, - 6454023184 + 6454030800, + 6453987440, + 6454024944 ], "bases": [ { @@ -271454,7 +271466,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468729952, + "complete_object_locator": 6468734048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271463,29 +271475,25 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Request", - "vtable_address": 6464934776, + "vtable_address": 6464938904, "methods": [ - 6446115856, - 6457189536, - 6446102256, - 6446103264, - 6446103344, - 6457189584, - 6457186560, - 6446103504, - 6446105264, + 6446116688, + 6457191728, + 6446103200, 6446103952, - 6443742160, - 6446104752, - 6457190896, - 6457192720, - 6446105360, - 6446105552, - 6446105520, - 6457187520, - 6446112704, - 6457187520, - 6446112880 + 6446104032, + 6457191776, + 6457188752, + 6446104048, + 6446105664, + 6446104336, + 6443742160, + 6446105136, + 6457193088, + 6457194912, + 6446105888, + 6446105936, + 6446105920 ], "bases": [ { @@ -271519,7 +271527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311824, + "complete_object_locator": 6468316056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271528,31 +271536,31 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Response", - "vtable_address": 6464943520, - "methods": [ - 6446126064, - 6457189536, - 6446122160, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6446123040, - 6446123024, - 6457187520, - 6446123296, - 6457187520, - 6446125200, - 6457187520, - 6446125888 + "vtable_address": 6464947616, + "methods": [ + 6446127872, + 6457191728, + 6446122592, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446123616, + 6446123600, + 6457189712, + 6446123680, + 6457189712, + 6446125440, + 6457189712, + 6446126272 ], "bases": [ { @@ -271600,7 +271608,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468311960, + "complete_object_locator": 6468316192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271609,27 +271617,25 @@ }, { "type_name": "CWorkshop_GetContributors_Request", - "vtable_address": 6464881984, - "methods": [ - 6445851440, - 6457189536, - 6445839152, - 6445839824, - 6445839872, - 6457189584, - 6457186560, - 6445840176, - 6445843520, - 6445841392, - 6443742160, - 6445842928, - 6457190896, - 6457192720, - 6445844896, - 6445845024, - 6445844944, - 6457187520, - 6445847344 + "vtable_address": 6464886096, + "methods": [ + 6445851952, + 6457191728, + 6445839728, + 6445841632, + 6445841856, + 6457191776, + 6457188752, + 6445842704, + 6445844672, + 6445843136, + 6443742160, + 6445844384, + 6457193088, + 6457194912, + 6445845280, + 6445845408, + 6445845392 ], "bases": [ { @@ -271663,7 +271669,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468312104, + "complete_object_locator": 6468316336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271672,33 +271678,31 @@ }, { "type_name": "CWorkshop_GetContributors_Response", - "vtable_address": 6464883888, - "methods": [ - 6445870768, - 6457189536, - 6445860432, - 6445861312, - 6445862352, - 6457189584, - 6457186560, - 6445862384, - 6445863888, - 6445863296, - 6443742160, + "vtable_address": 6464888000, + "methods": [ + 6445872352, + 6457191728, + 6445861024, + 6445863536, + 6445863584, + 6457191776, + 6457188752, + 6445863600, + 6445864384, 6445863696, - 6457190896, - 6457192720, - 6445864080, - 6445865008, - 6445864992, - 6457187520, - 6445865728, - 6457187520, - 6445866752, - 6457187520, - 6445868752, - 6457187520, - 6445869472 + 6443742160, + 6445864192, + 6457193088, + 6457194912, + 6445864912, + 6445865568, + 6445865552, + 6457189712, + 6445866848, + 6457189712, + 6445869616, + 6457189712, + 6445869856 ], "bases": [ { @@ -271732,7 +271736,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468312240, + "complete_object_locator": 6468316472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271741,25 +271745,25 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request", - "vtable_address": 6464880272, - "methods": [ - 6445830928, - 6457189536, - 6445809712, - 6445810176, - 6445810320, - 6457189584, - 6457186560, - 6445810400, - 6445811424, - 6445810672, + "vtable_address": 6464884368, + "methods": [ + 6445831824, + 6457191728, + 6445810256, + 6445810656, + 6445810800, + 6457191776, + 6457188752, + 6445810880, + 6445812112, + 6445811072, 6443742160, - 6445811184, - 6457190896, - 6457192720, - 6445812064, - 6445816528, - 6445816512 + 6445811856, + 6457193088, + 6457194912, + 6445815104, + 6445818224, + 6445817792 ], "bases": [ { @@ -271793,7 +271797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468312376, + "complete_object_locator": 6468316608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271802,25 +271806,25 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock", - "vtable_address": 6464877312, + "vtable_address": 6464881408, "methods": [ - 6445804256, - 6457189536, - 6446664736, - 6446665072, - 6446665312, - 6457189584, - 6457186560, - 6446665328, - 6446666400, - 6446665648, - 6443742160, - 6446666192, - 6457190896, - 6457192720, - 6446666896, - 6446669152, - 6446669120 + 6445804640, + 6457191728, + 6446665120, + 6446665456, + 6446665696, + 6457191776, + 6457188752, + 6446665712, + 6446667248, + 6446666144, + 6443742160, + 6446666688, + 6457193088, + 6457194912, + 6446668240, + 6446671152, + 6446671136 ], "bases": [ { @@ -271854,7 +271858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468312512, + "complete_object_locator": 6468316744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271863,25 +271867,25 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription", - "vtable_address": 6465075832, - "methods": [ - 6446658912, - 6457189536, - 6446649456, - 6446649872, - 6446650176, - 6457189584, - 6457186560, - 6446650208, - 6446652512, - 6446650768, + "vtable_address": 6465079928, + "methods": [ + 6446659312, + 6457191728, + 6446649840, + 6446651456, + 6446651536, + 6457191776, + 6457188752, + 6446651552, + 6446652896, + 6446652048, 6443742160, - 6446651952, - 6457190896, - 6457192720, - 6446652528, - 6446652736, - 6446652704 + 6446652640, + 6457193088, + 6457194912, + 6446653072, + 6446653360, + 6446653344 ], "bases": [ { @@ -271915,7 +271919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468312648, + "complete_object_locator": 6468316880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271924,25 +271928,25 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request", - "vtable_address": 6464921240, + "vtable_address": 6464925336, "methods": [ - 6445990448, - 6457189536, - 6445941440, - 6445942000, + 6445990864, + 6457191728, + 6445941840, 6445942400, - 6457189584, - 6457186560, - 6445942416, - 6445945136, - 6445943216, - 6443742160, - 6445944576, - 6457190896, - 6457192720, - 6445945600, - 6445945984, - 6445945968 + 6445942864, + 6457191776, + 6457188752, + 6445942880, + 6445945968, + 6445943936, + 6443742160, + 6445945056, + 6457193088, + 6457194912, + 6445946320, + 6445946512, + 6445946496 ], "bases": [ { @@ -271976,7 +271980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468312784, + "complete_object_locator": 6468317016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -271985,25 +271989,25 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule", - "vtable_address": 6464904352, + "vtable_address": 6464908736, "methods": [ - 6445928352, - 6457189536, - 6445915824, + 6445929200, + 6457191728, 6445916896, - 6445916976, - 6457189584, - 6457186560, - 6445917024, - 6445918560, - 6445917376, - 6443742160, + 6445917552, + 6445917824, + 6457191776, + 6457188752, + 6445917920, + 6445919568, 6445918176, - 6457190896, - 6457192720, - 6445919536, - 6445919632, - 6445919616 + 6443742160, + 6445919296, + 6457193088, + 6457194912, + 6445919936, + 6445920048, + 6445920032 ], "bases": [ { @@ -272037,7 +272041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468312920, + "complete_object_locator": 6468317152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272046,25 +272050,25 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule", - "vtable_address": 6464899864, + "vtable_address": 6464904104, "methods": [ - 6445911056, - 6457189536, - 6445901216, - 6445901488, - 6445901600, - 6457189584, - 6457186560, - 6445901632, - 6445903136, - 6445901808, + 6445911440, + 6457191728, + 6445901616, + 6445902000, + 6445902464, + 6457191776, + 6457188752, + 6445902480, + 6445903536, + 6445902816, 6443742160, - 6445902688, - 6457190896, - 6457192720, - 6445903168, - 6445903408, - 6445903376 + 6445903296, + 6457193088, + 6457194912, + 6445903568, + 6445903872, + 6445903840 ], "bases": [ { @@ -272098,7 +272102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468313056, + "complete_object_locator": 6468317288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272107,27 +272111,27 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule", - "vtable_address": 6464885408, - "methods": [ - 6445898656, - 6457189536, - 6445888544, - 6445889056, - 6445889136, - 6457189584, - 6457186560, - 6445889152, - 6445890448, - 6445889376, - 6443742160, - 6445890080, - 6457190896, - 6457192720, + "vtable_address": 6464889504, + "methods": [ + 6445899056, + 6457191728, + 6445888944, + 6445889440, + 6445889520, + 6457191776, + 6457188752, + 6445889536, + 6445890832, + 6445889760, + 6443742160, 6445890464, - 6445890736, - 6445890496, - 6457187520, - 6445896624 + 6457193088, + 6457194912, + 6445890864, + 6445891904, + 6445891888, + 6457189712, + 6445896992 ], "bases": [ { @@ -272161,7 +272165,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468313192, + "complete_object_locator": 6468317424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272170,27 +272174,29 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Response", - "vtable_address": 6464922536, - "methods": [ - 6446002672, - 6457189536, - 6445999392, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6445999696, - 6445999680, - 6457187520, - 6445999776 + "vtable_address": 6464926632, + "methods": [ + 6446003056, + 6457191728, + 6445999856, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6446000272, + 6446000192, + 6457189712, + 6446000080, + 6457189712, + 6446001296 ], "bases": [ { @@ -272238,7 +272244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468313328, + "complete_object_locator": 6468317560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272247,7 +272253,7 @@ }, { "type_name": "CWorldGameSystem", - "vtable_address": 6464712304, + "vtable_address": 6464716384, "methods": [ 6443748576, 6443748592, @@ -272343,7 +272349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468280280, + "complete_object_locator": 6468284376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272352,9 +272358,9 @@ }, { "type_name": "CWorldTextSceneObject", - "vtable_address": 6466068048, + "vtable_address": 6466072256, "methods": [ - 6451232688, + 6451234256, 6443765216, 6443765488 ], @@ -272376,7 +272382,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468596920, + "complete_object_locator": 6468601016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272385,14 +272391,14 @@ }, { "type_name": "CWorldTextSceneObjectDesc", - "vtable_address": 6466068808, + "vtable_address": 6466073016, "methods": [ - 6451232896, - 6451232912, + 6451234464, + 6451234480, 6443766128, 6443766112, 6443766144, - 6451232864, + 6451234432, 6443766480, 6443766496, 6443766512, @@ -272400,17 +272406,17 @@ 6443766544, 6443766560, 6443766576, - 6451233184, + 6451234752, 6443766608, 6443766624, 6443766640, 6443766656, - 6451233344, + 6451234912, 6443766688, 6443766704, 6443766720, - 6451238816, - 6451233856 + 6451240384, + 6451235424 ], "bases": [ { @@ -272444,7 +272450,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468597048, + "complete_object_locator": 6468601144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272453,9 +272459,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 6465905352, + "vtable_address": 6465909544, "methods": [ - 6450558640 + 6450560208 ], "bases": [ { @@ -272475,7 +272481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468558848, + "complete_object_locator": 6468562944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272484,9 +272490,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 6465713680, + "vtable_address": 6465717872, "methods": [ - 6448955872 + 6448957440 ], "bases": [ { @@ -272506,7 +272512,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468497008, + "complete_object_locator": 6468501104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272515,9 +272521,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 6465849680, + "vtable_address": 6465853872, "methods": [ - 6449905680 + 6449907248 ], "bases": [ { @@ -272537,7 +272543,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468530416, + "complete_object_locator": 6468534512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272546,9 +272552,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts,1,class Vec3D,0,class CInterpolatedVar > >", - "vtable_address": 6465655728, + "vtable_address": 6465659904, "methods": [ - 6448473472 + 6448475040 ], "bases": [ { @@ -272568,7 +272574,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468483552, + "complete_object_locator": 6468487648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272577,9 +272583,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 6465907936, + "vtable_address": 6465912128, "methods": [ - 6450558944 + 6450560512 ], "bases": [ { @@ -272599,7 +272605,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468559448, + "complete_object_locator": 6468563544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272608,9 +272614,9 @@ }, { "type_name": "CWrappedInterpolatedVarGuts >", - "vtable_address": 6465405224, + "vtable_address": 6465409384, "methods": [ - 6448029984 + 6448031552 ], "bases": [ { @@ -272630,7 +272636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445464, + "complete_object_locator": 6468449560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272639,28 +272645,28 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 6465956528, - "methods": [ - 6450392960, - 6450669344, - 6450485664, - 6450507232, - 6450507216, - 6450437664, - 6450413968, - 6450671904, - 6450507312, - 6450496096, - 6450507568, - 6450675568, - 6450491664, - 6450552928, - 6450404432, - 6450652384, - 6450654144, - 6450670192, - 6450487296, - 6450490112 + "vtable_address": 6465960720, + "methods": [ + 6450394528, + 6450670912, + 6450487232, + 6450508800, + 6450508784, + 6450439232, + 6450415536, + 6450673472, + 6450508880, + 6450497664, + 6450509136, + 6450677136, + 6450493232, + 6450554496, + 6450406000, + 6450653952, + 6450655712, + 6450671760, + 6450488864, + 6450491680 ], "bases": [ { @@ -272680,7 +272686,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564008, + "complete_object_locator": 6468568104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272689,28 +272695,28 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 6465957632, - "methods": [ - 6450393008, - 6450669360, - 6450485712, - 6450507264, - 6450507248, - 6450437744, - 6450414016, - 6450672000, - 6450507344, - 6450496112, - 6450507584, - 6450675584, - 6450491680, - 6450552960, - 6450404480, - 6450652576, - 6450654256, - 6450670208, - 6450487312, - 6450490144 + "vtable_address": 6465961824, + "methods": [ + 6450394576, + 6450670928, + 6450487280, + 6450508832, + 6450508816, + 6450439312, + 6450415584, + 6450673568, + 6450508912, + 6450497680, + 6450509152, + 6450677152, + 6450493248, + 6450554528, + 6450406048, + 6450654144, + 6450655824, + 6450671776, + 6450488880, + 6450491712 ], "bases": [ { @@ -272730,7 +272736,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468565616, + "complete_object_locator": 6468569712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272739,28 +272745,28 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 6465852232, - "methods": [ - 6449819072, - 6449927808, - 6449877248, - 6449892432, - 6449892416, - 6449837248, - 6449831536, - 6449929888, - 6449892448, - 6449885344, - 6449893840, - 6449930864, - 6449884832, - 6449905264, - 6449823456, - 6449918528, - 6449918752, - 6449929424, - 6449878448, - 6449884816 + "vtable_address": 6465856424, + "methods": [ + 6449820640, + 6449929376, + 6449878816, + 6449894000, + 6449893984, + 6449838816, + 6449833104, + 6449931456, + 6449894016, + 6449886912, + 6449895408, + 6449932432, + 6449886400, + 6449906832, + 6449825024, + 6449920096, + 6449920320, + 6449930992, + 6449880016, + 6449886384 ], "bases": [ { @@ -272780,7 +272786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468532296, + "complete_object_locator": 6468536392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272789,28 +272795,28 @@ }, { "type_name": "CWrappedVar > >", - "vtable_address": 6465663152, - "methods": [ - 6448402000, - 6448498000, - 6448432560, - 6448440672, - 6448440656, - 6448418688, - 6448415056, - 6448498624, - 6448440688, - 6448439312, - 6448440752, - 6448499600, - 6448439280, - 6448471344, - 6448404912, - 6448495264, - 6448495488, - 6448498480, - 6448437392, - 6448437856 + "vtable_address": 6465667328, + "methods": [ + 6448403568, + 6448499568, + 6448434128, + 6448442240, + 6448442224, + 6448420256, + 6448416624, + 6448500192, + 6448442256, + 6448440880, + 6448442320, + 6448501168, + 6448440848, + 6448472912, + 6448406480, + 6448496832, + 6448497056, + 6448500048, + 6448438960, + 6448439424 ], "bases": [ { @@ -272830,7 +272836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468484176, + "complete_object_locator": 6468488272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272839,28 +272845,28 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 6465956936, - "methods": [ - 6450393056, - 6450669376, - 6450485760, - 6450507296, - 6450507280, - 6450437824, - 6450414064, - 6450672096, - 6450507376, - 6450496128, - 6450507600, - 6450675600, - 6450491696, - 6450552992, - 6450404528, - 6450652768, - 6450654368, - 6450670224, + "vtable_address": 6465961128, + "methods": [ + 6450394624, + 6450670944, 6450487328, - 6450490176 + 6450508864, + 6450508848, + 6450439392, + 6450415632, + 6450673664, + 6450508944, + 6450497696, + 6450509168, + 6450677168, + 6450493264, + 6450554560, + 6450406096, + 6450654336, + 6450655936, + 6450671792, + 6450488896, + 6450491744 ], "bases": [ { @@ -272880,7 +272886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468564672, + "complete_object_locator": 6468568768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272889,28 +272895,28 @@ }, { "type_name": "CWrappedVar >", - "vtable_address": 6465425824, - "methods": [ - 6447989248, - 6448047008, - 6448010016, - 6448017312, - 6448017296, - 6447997888, - 6447995328, - 6448047312, - 6448017328, - 6448013600, - 6448017824, - 6448048288, - 6448013568, - 6448027056, - 6447991296, - 6448042128, - 6448042352, - 6448047168, - 6448010928, - 6448012224 + "vtable_address": 6465429984, + "methods": [ + 6447990816, + 6448048576, + 6448011584, + 6448018880, + 6448018864, + 6447999456, + 6447996896, + 6448048880, + 6448018896, + 6448015168, + 6448019392, + 6448049856, + 6448015136, + 6448028624, + 6447992864, + 6448043696, + 6448043920, + 6448048736, + 6448012496, + 6448013792 ], "bases": [ { @@ -272930,7 +272936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448176, + "complete_object_locator": 6468452272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -272939,32 +272945,32 @@ }, { "type_name": "C_AK47", - "vtable_address": 6465467312, + "vtable_address": 6465471488, "methods": [ 6445466912, - 6448111536, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448113104, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -272973,26 +272979,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156512, - 6448203888, - 6448208256, + 6460060080, + 6448158080, + 6448205456, + 6448209824, 6443799760, - 6448157776, - 6448161440, + 6448159344, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -273003,98 +273009,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -273105,51 +273111,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -273159,208 +273165,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -273590,7 +273596,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454448, + "complete_object_locator": 6468458544, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -273599,14 +273605,14 @@ }, { "type_name": "C_AK47", - "vtable_address": 6465470680, + "vtable_address": 6465474856, "methods": [ - 6448110380, - 6448995376, - 6448972352, - 6448972096, + 6448111948, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -273836,7 +273842,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454696, + "complete_object_locator": 6468458792, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -273845,9 +273851,9 @@ }, { "type_name": "C_AK47", - "vtable_address": 6465470736, + "vtable_address": 6465474912, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -274077,7 +274083,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454736, + "complete_object_locator": 6468458832, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -274086,12 +274092,12 @@ }, { "type_name": "C_AK47", - "vtable_address": 6465470752, + "vtable_address": 6465474928, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -274321,7 +274327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454776, + "complete_object_locator": 6468458872, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -274330,14 +274336,14 @@ }, { "type_name": "C_AK47", - "vtable_address": 6465470792, + "vtable_address": 6465474968, "methods": [ - 6448208292, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448209860, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -274567,7 +274573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454816, + "complete_object_locator": 6468458912, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -274576,10 +274582,10 @@ }, { "type_name": "C_AK47", - "vtable_address": 6465470848, + "vtable_address": 6465475024, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -274809,7 +274815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454856, + "complete_object_locator": 6468458952, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -274818,10 +274824,10 @@ }, { "type_name": "C_AK47", - "vtable_address": 6465470872, + "vtable_address": 6465475048, "methods": [ - 6448110368, - 6448154928 + 6448111936, + 6448156496 ], "bases": [ { @@ -275051,7 +275057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454896, + "complete_object_locator": 6468458992, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -275060,19 +275066,19 @@ }, { "type_name": "C_AttributeContainer", - "vtable_address": 6466755512, + "vtable_address": 6466759608, "methods": [ - 6452038096, - 6456134176, - 6456279632, - 6452030064, - 6456279760, - 6455881664, - 6456189360, - 6455891920, - 6456294704, - 6456290160, - 6455892304 + 6452039680, + 6456135952, + 6456281408, + 6452031648, + 6456281536, + 6455883424, + 6456191136, + 6455893680, + 6456296480, + 6456291936, + 6455894064 ], "bases": [ { @@ -275092,7 +275098,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779496, + "complete_object_locator": 6468783592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -275101,44 +275107,44 @@ }, { "type_name": "C_AttributeContainer::NetworkVar_m_Item", - "vtable_address": 6466755216, - "methods": [ - 6447916240, - 6455882496, - 6456466320, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, + "vtable_address": 6466759312, + "methods": [ + 6447917808, + 6455884256, + 6456468096, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6447900400, 6447898832, - 6447897264, - 6447898848, - 6456477232, - 6456478336, - 6456457152, - 6456474736, - 6456478112, - 6447898880, - 6447898768, - 6456465632, - 6456465200, - 6456472976, - 6456510704, - 6456279696, - 6447911312, - 6456279808, - 6447900480, + 6447900416, + 6456479008, + 6456480112, + 6456458928, + 6456476512, + 6456479888, 6447900448, - 6447917584, - 6447910176, - 6447913456, - 6447900464 + 6447900336, + 6456467408, + 6456466976, + 6456474752, + 6456512480, + 6456281472, + 6447912880, + 6456281584, + 6447902048, + 6447902016, + 6447919152, + 6447911744, + 6447915024, + 6447902032 ], "bases": [ { @@ -275172,7 +275178,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779536, + "complete_object_locator": 6468783632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -275181,32 +275187,32 @@ }, { "type_name": "C_BarnLight", - "vtable_address": 6466357216, + "vtable_address": 6466361376, "methods": [ 6445466928, - 6452535648, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6452561280, - 6450413456, - 6450585280, - 6450586832, - 6452535840, - 6452567072, - 6448980192, + 6452537264, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6452562896, + 6450415024, + 6450586848, + 6450588400, + 6452537456, + 6452568688, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6452550016, - 6450573696, - 6450573648, + 6452551632, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -275215,25 +275221,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452542304, - 6452550816, - 6452556464, + 6460060080, + 6452543920, + 6452552432, + 6452558080, 6443799760, - 6452542832, - 6448917040, + 6452544448, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -275250,13 +275256,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -275264,41 +275270,41 @@ 6443887776, 6443887712, 6443887840, - 6452537264, + 6452538880, 6443845040, 6443866784, 6444163696, - 6452570368, - 6450578848, + 6452571984, + 6450580416, 6443848048, - 6450496704, - 6452549216, - 6452549680, + 6450498272, + 6452550832, + 6452551296, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6452561264, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6452562880, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -275310,33 +275316,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -275364,34 +275370,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -275401,30 +275407,30 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6452547552, - 6452538576, - 6452563312 + 6452549168, + 6452540192, + 6452564928 ], "bases": [ { @@ -275500,7 +275506,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681160, + "complete_object_locator": 6468685256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -275509,14 +275515,14 @@ }, { "type_name": "C_BarnLight", - "vtable_address": 6466359160, + "vtable_address": 6466363320, "methods": [ - 6452535604, - 6448995376, - 6448972352, - 6448972096, + 6452537220, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -275592,7 +275598,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681320, + "complete_object_locator": 6468685416, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -275601,9 +275607,9 @@ }, { "type_name": "C_BarnLight", - "vtable_address": 6466359216, + "vtable_address": 6466363376, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -275679,7 +275685,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681360, + "complete_object_locator": 6468685456, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -275688,32 +275694,32 @@ }, { "type_name": "C_BaseButton", - "vtable_address": 6464784712, + "vtable_address": 6464788792, "methods": [ 6445466928, 6445450240, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573504, + 6448981552, + 6450575264, + 6450575072, 6443858256, 6443844048, 6443844080, @@ -275722,25 +275728,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485232, + 6460060080, + 6450486800, 6445479904, 6445483952, 6443799760, 6445465856, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -275757,13 +275763,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -275771,41 +275777,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555392, - 6450735056, + 6450556960, + 6450736624, 6443838560, 6443824992, - 6450488272, + 6450489840, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -275817,33 +275823,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -275871,34 +275877,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -275908,24 +275914,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -276018,7 +276024,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285424, + "complete_object_locator": 6468289520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -276027,14 +276033,14 @@ }, { "type_name": "C_BaseButton", - "vtable_address": 6464786632, + "vtable_address": 6464790712, "methods": [ 6445449660, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -276124,7 +276130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285592, + "complete_object_locator": 6468289688, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -276133,9 +276139,9 @@ }, { "type_name": "C_BaseButton", - "vtable_address": 6464786688, + "vtable_address": 6464790768, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -276225,7 +276231,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285632, + "complete_object_locator": 6468289728, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -276234,32 +276240,32 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 6465421120, + "vtable_address": 6465425280, "methods": [ 6445466912, - 6447989424, - 6450431440, - 6448866800, - 6448035744, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6447990992, + 6450433008, + 6448868368, + 6448037312, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -276268,26 +276274,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448009856, - 6448037360, - 6448046128, + 6460060080, + 6448011424, + 6448038928, + 6448047696, 6443799760, - 6448011056, - 6448013872, + 6448012624, + 6448015440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -276298,98 +276304,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448048912, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448050480, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -276400,51 +276406,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -276454,211 +276460,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448003664, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448002208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069568, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448018592, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448005232, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448003776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071136, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448020160, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050544, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448048976, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448034464, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035488, - 6447994912, - 6448035984, - 6448046464, - 6448028672, - 6448170624, - 6448027936, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448018736, - 6448037472, - 6448147040, - 6448027744, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448033248, - 6448027856, - 6448027888, - 6448027040, - 6447992448, - 6448033632, - 6448059312, - 6448003728, - 6448011472 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448036032, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037056, + 6447996480, + 6448037552, + 6448048032, + 6448030240, + 6448172192, + 6448029504, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448020304, + 6448039040, + 6448148608, + 6448029312, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448034816, + 6448029424, + 6448029456, + 6448028608, + 6447994016, + 6448035200, + 6448060880, + 6448005296, + 6448013040 ], "bases": [ { @@ -276874,7 +276880,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468443480, + "complete_object_locator": 6468447576, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -276883,14 +276889,14 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 6465424512, + "vtable_address": 6465428672, "methods": [ - 6447988752, - 6448995376, - 6448972352, - 6448972096, + 6447990320, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -277106,7 +277112,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468444576, + "complete_object_locator": 6468448672, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -277115,9 +277121,9 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 6465424568, + "vtable_address": 6465428728, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -277333,7 +277339,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468444616, + "complete_object_locator": 6468448712, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -277342,12 +277348,12 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 6465424584, + "vtable_address": 6465428744, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -277563,7 +277569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468444656, + "complete_object_locator": 6468448752, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -277572,14 +277578,14 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 6465424624, + "vtable_address": 6465428784, "methods": [ - 6448046164, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448047732, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -277795,7 +277801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468444696, + "complete_object_locator": 6468448792, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -277804,10 +277810,10 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 6465424680, + "vtable_address": 6465428840, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -278023,7 +278029,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468444736, + "complete_object_locator": 6468448832, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -278032,10 +278038,10 @@ }, { "type_name": "C_BaseCSGrenade", - "vtable_address": 6465424704, + "vtable_address": 6465428864, "methods": [ - 6447988740, - 6448154928 + 6447990308, + 6448156496 ], "bases": [ { @@ -278251,7 +278257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468444776, + "complete_object_locator": 6468448872, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -278260,32 +278266,32 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 6465402168, + "vtable_address": 6465406328, "methods": [ 6445466912, - 6447989696, - 6450431440, - 6448866800, + 6447991264, + 6450433008, + 6448868368, 6447783584, - 6448816736, - 6448054576, - 6450413456, - 6448034688, - 6450586832, - 6450396992, - 6448065280, - 6448980064, + 6448818304, + 6448056144, + 6450415024, + 6448036256, + 6450588400, + 6450398560, + 6448066848, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -278294,25 +278300,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448009872, - 6448037376, - 6448046176, + 6460060080, + 6448011440, + 6448038944, + 6448047744, 6443799760, - 6448011104, + 6448012672, 6447763584, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -278329,93 +278335,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447995376, - 6451215568, + 6447996944, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -278440,37 +278446,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -278480,65 +278486,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, 6447771840, 6447756624, @@ -278682,7 +278688,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468443160, + "complete_object_locator": 6468447256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -278691,14 +278697,14 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 6465404488, + "vtable_address": 6465408648, "methods": [ - 6447988764, - 6448995376, - 6448972352, - 6448972096, + 6447990332, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -278830,7 +278836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468443360, + "complete_object_locator": 6468447456, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -278839,9 +278845,9 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 6465404544, + "vtable_address": 6465408704, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -278973,7 +278979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468443400, + "complete_object_locator": 6468447496, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -278982,9 +278988,9 @@ }, { "type_name": "C_BaseCSGrenadeProjectile", - "vtable_address": 6465404560, + "vtable_address": 6465408720, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -279119,7 +279125,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468443440, + "complete_object_locator": 6468447536, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -279128,32 +279134,32 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 6464418464, + "vtable_address": 6464422560, "methods": [ 6445466928, 6443796320, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -279162,25 +279168,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817584, 6443854768, 6443865120, 6443799760, 6443818640, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -279197,13 +279203,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -279211,41 +279217,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -279257,33 +279263,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -279311,34 +279317,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -279348,28 +279354,28 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6463705588, + 6463707780, 6443825536, 6443819296, 6443847632, @@ -279466,7 +279472,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468219752, + "complete_object_locator": 6468223848, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -279475,14 +279481,14 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 6464420448, + "vtable_address": 6464424544, "methods": [ 6443794884, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -279572,7 +279578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220040, + "complete_object_locator": 6468224136, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -279581,9 +279587,9 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 6464420504, + "vtable_address": 6464424600, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -279673,7 +279679,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220080, + "complete_object_locator": 6468224176, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -279682,7 +279688,7 @@ }, { "type_name": "C_BaseClientUIEntity", - "vtable_address": 6464420520, + "vtable_address": 6464424616, "methods": [ 6443846736, 6443846160 @@ -279775,7 +279781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468220120, + "complete_object_locator": 6468224216, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -279784,32 +279790,32 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 6465910296, + "vtable_address": 6465914488, "methods": [ 6445466720, - 6450393984, - 6450431440, - 6448866800, - 6450597968, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6450396432, - 6450715344, - 6448980064, + 6450395552, + 6450433008, + 6448868368, + 6450599536, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6450398000, + 6450716912, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -279818,25 +279824,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485248, + 6460060080, + 6450486816, 6445479920, - 6450666640, + 6450668208, 6443799760, 6445465904, - 6450497840, + 6450499408, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -279853,93 +279859,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6450684016, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6450685584, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -279947,9 +279953,9 @@ 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, @@ -279962,39 +279968,39 @@ 6443815024, 6443841936, 6443813504, - 6450412128, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -280004,78 +280010,78 @@ 6444207072, 6444190512, 6443887696, - 6450577488, + 6450579056, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6450487920, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872 + 6450509056, + 6450489488, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440 ], "bases": [ { @@ -280193,7 +280199,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557568, + "complete_object_locator": 6468561664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -280202,14 +280208,14 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 6465912624, + "vtable_address": 6465916816, "methods": [ - 6450392264, - 6448995376, - 6448972352, - 6448972096, + 6450393832, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -280327,7 +280333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557608, + "complete_object_locator": 6468561704, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -280336,9 +280342,9 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 6465912680, + "vtable_address": 6465916872, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -280456,7 +280462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557648, + "complete_object_locator": 6468561744, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -280465,9 +280471,9 @@ }, { "type_name": "C_BaseCombatCharacter", - "vtable_address": 6465912696, + "vtable_address": 6465916888, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -280588,7 +280594,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557688, + "complete_object_locator": 6468561784, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -280597,32 +280603,32 @@ }, { "type_name": "C_BaseDoor", - "vtable_address": 6465924288, + "vtable_address": 6465928480, "methods": [ 6445466928, - 6450394048, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6450395616, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573632, + 6448981552, + 6450575264, + 6450575200, 6443858256, 6443844048, 6443844080, @@ -280631,25 +280637,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445463776, 6445479936, - 6450666688, + 6450668256, 6443799760, 6445465952, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -280666,13 +280672,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -280680,41 +280686,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -280726,33 +280732,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -280780,34 +280786,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -280817,24 +280823,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -280927,7 +280933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561592, + "complete_object_locator": 6468565688, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -280936,14 +280942,14 @@ }, { "type_name": "C_BaseDoor", - "vtable_address": 6465926208, + "vtable_address": 6465930400, "methods": [ - 6450392276, - 6448995376, - 6448972352, - 6448972096, + 6450393844, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -281033,7 +281039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561760, + "complete_object_locator": 6468565856, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -281042,9 +281048,9 @@ }, { "type_name": "C_BaseDoor", - "vtable_address": 6465926264, + "vtable_address": 6465930456, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -281134,7 +281140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561800, + "complete_object_locator": 6468565896, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -281143,32 +281149,32 @@ }, { "type_name": "C_BaseEntity", - "vtable_address": 6465905368, + "vtable_address": 6465909560, "methods": [ 6445466896, - 6450394144, + 6450395712, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -281177,25 +281183,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485264, + 6460060080, + 6450486832, 6445479952, - 6450666736, + 6450668304, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -281212,13 +281218,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -281226,39 +281232,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -281272,33 +281278,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -281326,34 +281332,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -281382,7 +281388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557528, + "complete_object_locator": 6468561624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -281391,20 +281397,20 @@ }, { "type_name": "C_BaseEntityOuterHelper", - "vtable_address": 6465904592, + "vtable_address": 6465908784, "methods": [ - 6450394208, - 6450598736, - 6450598720, - 6450598880, - 6450598624, - 6450598912, - 6450598688, - 6450598848, - 6450598656, - 6450598816, - 6450598752, - 6450598784 + 6450395776, + 6450600304, + 6450600288, + 6450600448, + 6450600192, + 6450600480, + 6450600256, + 6450600416, + 6450600224, + 6450600384, + 6450600320, + 6450600352 ], "bases": [ { @@ -281452,7 +281458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468556288, + "complete_object_locator": 6468560384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -281461,11 +281467,11 @@ }, { "type_name": "C_BaseEntityOuterHelper", - "vtable_address": 6465904696, + "vtable_address": 6465908888, "methods": [ - 6450411984, - 6450578864, - 6450579632 + 6450413552, + 6450580432, + 6450581200 ], "bases": [ { @@ -281513,7 +281519,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468556472, + "complete_object_locator": 6468560568, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -281522,21 +281528,21 @@ }, { "type_name": "C_BaseExplosionEffect", - "vtable_address": 6466035184, + "vtable_address": 6466039392, "methods": [ - 6451060320, - 6451060528, - 6451061184, - 6451061568, - 6451061952, - 6451061968, - 6451061984, - 6451062128 + 6451061888, + 6451062096, + 6451062752, + 6451063136, + 6451063520, + 6451063536, + 6451063552, + 6451063696 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468585112, + "complete_object_locator": 6468589208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -281545,32 +281551,32 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 6465907952, + "vtable_address": 6465912144, "methods": [ 6445466912, - 6450394288, - 6450431440, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6450396992, - 6450716512, - 6448980064, + 6450395856, + 6450433008, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6450398560, + 6450718080, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -281579,25 +281585,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485280, + 6460060080, + 6450486848, 6445479968, - 6450666784, + 6450668352, 6443799760, 6445466048, - 6450497872, + 6450499440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -281614,93 +281620,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -281725,37 +281731,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -281765,65 +281771,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464 ], "bases": [ @@ -281928,7 +281934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557864, + "complete_object_locator": 6468561960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -281937,14 +281943,14 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 6465910184, + "vtable_address": 6465914376, "methods": [ - 6450392288, - 6448995376, - 6448972352, - 6448972096, + 6450393856, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -282048,7 +282054,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557904, + "complete_object_locator": 6468562000, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -282057,9 +282063,9 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 6465910240, + "vtable_address": 6465914432, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -282163,7 +282169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557944, + "complete_object_locator": 6468562040, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -282172,9 +282178,9 @@ }, { "type_name": "C_BaseFlex", - "vtable_address": 6465910256, + "vtable_address": 6465914448, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -282281,7 +282287,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557984, + "complete_object_locator": 6468562080, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -282290,32 +282296,32 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 6465294896, + "vtable_address": 6465298968, "methods": [ 6445466912, 6447747344, - 6450431440, - 6448866800, + 6450433008, + 6448868368, 6447783584, - 6448816736, + 6448818304, 6447786672, - 6450413456, - 6448987824, - 6450586832, - 6450396992, - 6450716512, - 6448980064, + 6450415024, + 6448989392, + 6450588400, + 6450398560, + 6450718080, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -282324,14 +282330,14 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6447758512, 6447783936, 6447785936, @@ -282339,10 +282345,10 @@ 6447759104, 6447763584, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -282359,93 +282365,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -282470,37 +282476,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -282510,65 +282516,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, 6447771840, 6447756624, @@ -282698,7 +282704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428664, + "complete_object_locator": 6468432760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -282707,14 +282713,14 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 6465297216, + "vtable_address": 6465301288, "methods": [ 6447745892, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -282832,7 +282838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428704, + "complete_object_locator": 6468432800, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -282841,9 +282847,9 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 6465297272, + "vtable_address": 6465301344, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -282961,7 +282967,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428744, + "complete_object_locator": 6468432840, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -282970,9 +282976,9 @@ }, { "type_name": "C_BaseGrenade", - "vtable_address": 6465297288, + "vtable_address": 6465301360, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -283093,7 +283099,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428784, + "complete_object_locator": 6468432880, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -283102,32 +283108,32 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 6465713696, + "vtable_address": 6465717888, "methods": [ 6445466928, - 6448809968, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448811536, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -283136,25 +283142,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905488, + 6460060080, + 6448907056, 6445479984, - 6449027552, + 6449029104, 6443799760, 6445466096, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -283171,13 +283177,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -283185,41 +283191,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -283231,33 +283237,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -283285,34 +283291,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -283322,24 +283328,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -283404,7 +283410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494264, + "complete_object_locator": 6468498360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -283413,14 +283419,14 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 6465715616, + "vtable_address": 6465719808, "methods": [ - 6448807076, - 6448995376, - 6448972352, - 6448972096, + 6448808644, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -283482,7 +283488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494304, + "complete_object_locator": 6468498400, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -283491,9 +283497,9 @@ }, { "type_name": "C_BaseModelEntity", - "vtable_address": 6465715672, + "vtable_address": 6465719864, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -283555,7 +283561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494344, + "complete_object_locator": 6468498440, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -283564,13 +283570,13 @@ }, { "type_name": "C_BaseModelEntity::NetworkVar_m_Collision", - "vtable_address": 6465712968, + "vtable_address": 6465717160, "methods": [ - 6449027408, - 6451120144, - 6448965664, - 6448966064, - 6448965920 + 6449028960, + 6451121712, + 6448967232, + 6448967632, + 6448967488 ], "bases": [ { @@ -283590,7 +283596,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468496240, + "complete_object_locator": 6468500336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -283599,12 +283605,12 @@ }, { "type_name": "C_BaseModelEntity::NetworkVar_m_Glow", - "vtable_address": 6465713016, + "vtable_address": 6465717208, "methods": [ - 6449027456, - 6448965712, - 6448966080, - 6448965952 + 6449029008, + 6448967280, + 6448967648, + 6448967520 ], "bases": [ { @@ -283624,7 +283630,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468496448, + "complete_object_locator": 6468500544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -283633,32 +283639,32 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 6465916496, + "vtable_address": 6465920688, "methods": [ 6445466720, - 6450394352, - 6450431568, - 6450456544, - 6450597968, - 6448816736, - 6450687552, - 6450413456, - 6450585936, - 6450586832, - 6450397056, - 6450716576, - 6448980064, + 6450395920, + 6450433136, + 6450458112, + 6450599536, + 6448818304, + 6450689120, + 6450415024, + 6450587504, + 6450588400, + 6450398624, + 6450718144, + 6448981632, 6443817760, 6443797616, - 6450587120, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6450588688, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580320, - 6450573696, - 6450573648, + 6450581888, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -283667,26 +283673,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485296, + 6460060080, + 6450486864, 6445480000, - 6450666832, + 6450668400, 6443799760, 6445466144, - 6450497888, + 6450499456, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587184, + 6450678224, + 6450588752, 6443817344, 6443817328, 6445463744, @@ -283697,108 +283703,108 @@ 6445463696, 6443817712, 6443817696, - 6450414368, + 6450415936, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6450682864, - 6450684128, - 6450473504, - 6450575184, - 6450579856, + 6450735600, + 6450684432, + 6450685696, + 6450475072, + 6450576752, + 6450581424, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, - 6450683600, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6450685168, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450499040, - 6448992672, - 6450537248, - 6449036960, - 6450683632, - 6450599344, - 6450580256, - 6450683488, + 6450500608, + 6448994240, + 6450538816, + 6449038512, + 6450685200, + 6450600912, + 6450581824, + 6450685056, 6444168384, 6444234384, - 6450597328, - 6448975008, + 6450598896, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6448987456, + 6450417520, + 6448989024, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, - 6448950880, + 6448952448, 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, @@ -283807,43 +283813,43 @@ 6443821104, 6444188416, 6444189392, - 6448893792, - 6448893472, - 6448959952, - 6448884016, - 6450412128, + 6448895360, + 6448895040, + 6448961520, + 6448885584, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, - 6450576688, + 6451200448, + 6450578256, 6443818944, 6443869104, - 6448982448, + 6448984016, 6443836208, - 6449067024, - 6450683376, + 6449068576, + 6450684944, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, - 6448980304, + 6448981872, 6443798848, - 6451209568, - 6450577280, + 6451211136, + 6450578848, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -283853,129 +283859,129 @@ 6444207072, 6444190512, 6443887696, - 6450578080, + 6450579648, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968432, + 6448970000, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907520, + 6448908736, + 6448909088, 6445471568, - 6448831984, - 6450499136, + 6448833552, + 6450500704, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6448906992, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, - 6448855744, - 6448865440, - 6450446800, - 6450444992, - 6450438128, - 6450445104, - 6450446784, - 6450446768, - 6450444976, - 6450442496, - 6450445088, - 6450577040, - 6448916384, - 6450553776, - 6450580624, - 6450481424, - 6450669520, - 6450497520, - 6450553152, - 6448950624, - 6448893728, - 6450507504, - 6450573872, - 6450702704, - 6450683072, - 6450587280, - 6448990496, - 6448987808, - 6450597888, - 6450586912, - 6450471168, - 6448952160, - 6448952144, - 6450707008, - 6450583360, - 6448916528, - 6448916224, - 6448916080, - 6450497824, - 6450581104, - 6450556288, - 6450599120, - 6450580032, - 6450579728, - 6450571152, - 6450586848, - 6450491712, - 6450497952, - 6450498032, - 6450445008, - 6450715120 + 6450509056, + 6448908560, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, + 6448857312, + 6448867008, + 6450448368, + 6450446560, + 6450439696, + 6450446672, + 6450448352, + 6450448336, + 6450446544, + 6450444064, + 6450446656, + 6450578608, + 6448917952, + 6450555344, + 6450582192, + 6450482992, + 6450671088, + 6450499088, + 6450554720, + 6448952192, + 6448895296, + 6450509072, + 6450575440, + 6450704272, + 6450684640, + 6450588848, + 6448992064, + 6448989376, + 6450599456, + 6450588480, + 6450472736, + 6448953728, + 6448953712, + 6450708576, + 6450584928, + 6448918096, + 6448917792, + 6448917648, + 6450499392, + 6450582672, + 6450557856, + 6450600688, + 6450581600, + 6450581296, + 6450572720, + 6450588416, + 6450493280, + 6450499520, + 6450499600, + 6450446576, + 6450716688 ], "bases": [ { @@ -284107,7 +284113,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557064, + "complete_object_locator": 6468561160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -284116,14 +284122,14 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 6465919232, + "vtable_address": 6465923424, "methods": [ - 6450392300, - 6448995376, - 6448972352, - 6448972096, + 6450393868, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -284255,7 +284261,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557408, + "complete_object_locator": 6468561504, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -284264,9 +284270,9 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 6465919288, + "vtable_address": 6465923480, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -284398,7 +284404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557448, + "complete_object_locator": 6468561544, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -284407,9 +284413,9 @@ }, { "type_name": "C_BasePlayerPawn", - "vtable_address": 6465919304, + "vtable_address": 6465923496, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -284544,7 +284550,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557488, + "complete_object_locator": 6468561584, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -284553,12 +284559,12 @@ }, { "type_name": "C_BasePlayerPawn::NetworkVar_m_skybox3d", - "vtable_address": 6465916456, + "vtable_address": 6465920648, "methods": [ - 6449720848, - 6450569280, - 6449641552, - 6450569360 + 6449722416, + 6450570848, + 6449643120, + 6450570928 ], "bases": [ { @@ -284578,7 +284584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560240, + "complete_object_locator": 6468564336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -284587,32 +284593,32 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 6465720664, + "vtable_address": 6465724856, "methods": [ 6445466912, - 6448810032, - 6450431440, - 6448866800, - 6448990768, - 6448816736, - 6449044032, - 6450413456, - 6456309296, - 6450586832, - 6450396992, - 6456418624, - 6456295120, + 6448811600, + 6450433008, + 6448868368, + 6448992336, + 6448818304, + 6449045584, + 6450415024, + 6456311072, + 6450588400, + 6450398560, + 6456420400, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448968080, + 6448981552, + 6450575264, + 6448969648, 6443858256, 6443844048, 6443844080, @@ -284621,26 +284627,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905504, - 6449008768, - 6449027600, + 6460060080, + 6448907072, + 6449010320, + 6449029152, 6443799760, - 6448907808, - 6448917056, + 6448909376, + 6448918624, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448990256, + 6449037376, + 6448991824, 6443817344, 6443817328, 6445463744, @@ -284656,93 +284662,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041392, - 6449042320, - 6450473504, - 6448973424, - 6456294720, + 6450735600, + 6449042944, + 6449043872, + 6450475072, + 6448974992, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6450683472, + 6450600912, + 6448980384, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -284753,9 +284759,9 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, @@ -284767,37 +284773,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041552, + 6449043104, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448925312, - 6448925296, - 6448980384, + 6448926880, + 6448926864, + 6448981952, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -284807,130 +284813,130 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448934784, + 6448936352, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448951168, - 6448890064, - 6448883744, - 6448034656, - 6448002560, - 6448836944, - 6447994896, - 6448836992, - 6448861552, - 6448935968, - 6449039888, - 6448952112, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448914336, - 6448927072, - 6448926928, - 6448923744, - 6448916816, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, - 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448911408, - 6449037792, - 6448029968, - 6448900752 + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448952736, + 6448891632, + 6448885312, + 6448036224, + 6448004128, + 6448838512, + 6447996464, + 6448838560, + 6448863120, + 6448937536, + 6449041440, + 6448953680, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448915904, + 6448928640, + 6448928496, + 6448925312, + 6448918384, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448912976, + 6449039344, + 6448031536, + 6448902320 ], "bases": [ { @@ -285090,7 +285096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494384, + "complete_object_locator": 6468498480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -285099,14 +285105,14 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 6465723408, + "vtable_address": 6465727600, "methods": [ - 6448807088, - 6448995376, - 6448972352, - 6448972096, + 6448808656, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -285266,7 +285272,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494424, + "complete_object_locator": 6468498520, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -285275,9 +285281,9 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 6465723464, + "vtable_address": 6465727656, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -285437,7 +285443,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494464, + "complete_object_locator": 6468498560, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -285446,9 +285452,9 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 6465723480, + "vtable_address": 6465727672, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -285611,7 +285617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494504, + "complete_object_locator": 6468498600, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -285620,14 +285626,14 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 6465723520, + "vtable_address": 6465727712, "methods": [ - 6449027636, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6449029188, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -285787,7 +285793,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494544, + "complete_object_locator": 6468498640, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -285796,10 +285802,10 @@ }, { "type_name": "C_BasePlayerWeapon", - "vtable_address": 6465723576, + "vtable_address": 6465727768, "methods": [ - 6456278672, - 6456151520 + 6456280448, + 6456153296 ], "bases": [ { @@ -285959,7 +285965,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494584, + "complete_object_locator": 6468498680, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -285968,32 +285974,32 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 6465977344, + "vtable_address": 6465981536, "methods": [ 6445466544, - 6450765744, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449381552, - 6450413456, - 6450834976, - 6450586832, - 6450768288, - 6450880112, - 6450831168, + 6450767312, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449383104, + 6450415024, + 6450836544, + 6450588400, + 6450769856, + 6450881680, + 6450832736, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450822128, + 6448981552, + 6450575264, + 6450823696, 6443858256, 6443844048, 6443844080, @@ -286002,25 +286008,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504192, 6445514352, - 6450857088, + 6450858656, 6443799760, 6445505168, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -286036,14 +286042,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -286051,86 +286057,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450796816, - 6449317904, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450798384, + 6449319456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -286148,37 +286154,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -286188,68 +286194,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -286409,7 +286415,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570832, + "complete_object_locator": 6468574928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -286418,14 +286424,14 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 6465979592, + "vtable_address": 6465983784, "methods": [ - 6450764648, - 6448995376, - 6448972352, - 6448972096, + 6450766216, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -286585,7 +286591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570872, + "complete_object_locator": 6468574968, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -286594,9 +286600,9 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 6465979648, + "vtable_address": 6465983840, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -286756,7 +286762,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570912, + "complete_object_locator": 6468575008, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -286765,10 +286771,10 @@ }, { "type_name": "C_BasePropDoor", - "vtable_address": 6465979664, + "vtable_address": 6465983856, "methods": [ - 6450764636, - 6450796384 + 6450766204, + 6450797952 ], "bases": [ { @@ -286928,7 +286934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570952, + "complete_object_locator": 6468575048, "offset": 5152, "constructor_displacement": 0, "class_attributes": 1 @@ -286937,32 +286943,32 @@ }, { "type_name": "C_BaseToggle", - "vtable_address": 6464487936, + "vtable_address": 6464492032, "methods": [ 6445466928, 6444065024, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -286971,25 +286977,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485312, + 6460060080, + 6450486880, 6445480016, 6444215536, 6443799760, 6445466192, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -287006,13 +287012,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -287020,41 +287026,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -287066,33 +287072,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -287120,34 +287126,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -287157,24 +287163,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -287253,7 +287259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468236984, + "complete_object_locator": 6468241080, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -287262,14 +287268,14 @@ }, { "type_name": "C_BaseToggle", - "vtable_address": 6464489856, + "vtable_address": 6464493952, "methods": [ 6444064476, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -287345,7 +287351,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468237024, + "complete_object_locator": 6468241120, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -287354,9 +287360,9 @@ }, { "type_name": "C_BaseToggle", - "vtable_address": 6464489912, + "vtable_address": 6464494008, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -287432,7 +287438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468237064, + "complete_object_locator": 6468241160, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -287441,31 +287447,31 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 6464489944, + "vtable_address": 6464494040, "methods": [ 6445466928, 6444065088, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -287475,25 +287481,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444156400, 6444206976, 6444215584, 6443799760, 6444159728, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -287510,13 +287516,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -287524,41 +287530,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -287570,33 +287576,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -287624,34 +287630,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -287661,24 +287667,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -287779,7 +287785,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468236112, + "complete_object_locator": 6468240208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -287788,14 +287794,14 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 6464491928, + "vtable_address": 6464496024, "methods": [ 6444064488, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -287885,7 +287891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468236400, + "complete_object_locator": 6468240496, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -287894,9 +287900,9 @@ }, { "type_name": "C_BaseTrigger", - "vtable_address": 6464491984, + "vtable_address": 6464496080, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -287986,7 +287992,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468236440, + "complete_object_locator": 6468240536, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -287995,32 +288001,32 @@ }, { "type_name": "C_Beam", - "vtable_address": 6465919400, + "vtable_address": 6465923592, "methods": [ 6445466928, - 6450394608, - 6448846864, - 6460051264, - 6450597984, - 6448816832, - 6450687616, - 6450413456, - 6450585280, - 6450586832, - 6450397248, - 6450716800, - 6448980192, + 6450396176, + 6448848432, + 6460053456, + 6450599552, + 6448818400, + 6450689184, + 6450415024, + 6450586848, + 6450588400, + 6450398816, + 6450718368, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, - 6450458720, - 6449026832, - 6450654976, + 6448991792, + 6448884288, + 6450460288, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -288029,26 +288035,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485328, + 6460060080, + 6450486896, 6444443792, - 6450666880, + 6450668448, 6443799760, 6444439248, - 6450497904, + 6450499472, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587264, + 6450678224, + 6450588832, 6443817344, 6443817328, 6443817248, @@ -288064,55 +288070,55 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, 6443837904, 6443887776, 6443887712, - 6450736160, - 6450431424, + 6450737728, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6450684192, - 6450473488, - 6450575280, - 6450579744, + 6450735600, + 6449042848, + 6450685760, + 6450475056, + 6450576848, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -288124,33 +288130,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -288178,34 +288184,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -288215,28 +288221,28 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6450486112 + 6450487680 ], "bases": [ { @@ -288312,7 +288318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561040, + "complete_object_locator": 6468565136, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -288321,14 +288327,14 @@ }, { "type_name": "C_Beam", - "vtable_address": 6465921328, + "vtable_address": 6465925520, "methods": [ - 6450392312, - 6448995376, - 6448972352, - 6448972096, + 6450393880, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -288404,7 +288410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561200, + "complete_object_locator": 6468565296, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -288413,9 +288419,9 @@ }, { "type_name": "C_Beam", - "vtable_address": 6465921384, + "vtable_address": 6465925576, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -288491,7 +288497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561240, + "complete_object_locator": 6468565336, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -288500,32 +288506,32 @@ }, { "type_name": "C_Breakable", - "vtable_address": 6464809600, + "vtable_address": 6464813680, "methods": [ 6445466928, 6445501888, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -288534,25 +288540,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504208, 6445514368, 6445514656, 6443799760, 6445505216, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -288569,13 +288575,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -288583,41 +288589,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -288629,33 +288635,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -288683,34 +288689,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -288720,24 +288726,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -288816,7 +288822,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468286160, + "complete_object_locator": 6468290256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -288825,14 +288831,14 @@ }, { "type_name": "C_Breakable", - "vtable_address": 6464811520, + "vtable_address": 6464815600, "methods": [ 6445501636, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -288908,7 +288914,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468286320, + "complete_object_locator": 6468290416, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -288917,9 +288923,9 @@ }, { "type_name": "C_Breakable", - "vtable_address": 6464811576, + "vtable_address": 6464815656, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -288995,7 +289001,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468286360, + "complete_object_locator": 6468290456, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -289004,32 +289010,32 @@ }, { "type_name": "C_BreakableProp", - "vtable_address": 6465725584, + "vtable_address": 6465729776, "methods": [ 6445466544, - 6448810304, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449044240, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6449062816, - 6448980064, + 6448811872, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449045792, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6449064368, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -289038,25 +289044,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905520, + 6460060080, + 6448907088, 6445480032, - 6449027648, + 6449029200, 6443799760, 6445466240, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -289073,13 +289079,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -289087,79 +289093,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -289184,37 +289190,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -289224,68 +289230,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6447950480, + 6448811984, + 6447952048, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -289389,7 +289395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494864, + "complete_object_locator": 6468498960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -289398,14 +289404,14 @@ }, { "type_name": "C_BreakableProp", - "vtable_address": 6465727832, + "vtable_address": 6465732024, "methods": [ - 6448807100, - 6448995376, - 6448972352, - 6448972096, + 6448808668, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -289509,7 +289515,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494904, + "complete_object_locator": 6468499000, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -289518,9 +289524,9 @@ }, { "type_name": "C_BreakableProp", - "vtable_address": 6465727888, + "vtable_address": 6465732080, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -289624,7 +289630,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468494944, + "complete_object_locator": 6468499040, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -289633,32 +289639,32 @@ }, { "type_name": "C_BulletHitModel", - "vtable_address": 6466194872, + "vtable_address": 6466199032, "methods": [ 6445466544, - 6451774736, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6449061952, - 6448980064, + 6451776320, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -289667,25 +289673,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905344, + 6460060080, + 6448906912, 6445479824, - 6451942128, + 6451943712, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -289702,13 +289708,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -289716,79 +289722,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -289813,37 +289819,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -289853,61 +289859,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -289997,7 +290003,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636304, + "complete_object_locator": 6468640400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -290006,14 +290012,14 @@ }, { "type_name": "C_BulletHitModel", - "vtable_address": 6466197064, + "vtable_address": 6466201224, "methods": [ - 6451773100, - 6448995376, - 6448972352, - 6448972096, + 6451774684, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -290103,7 +290109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636472, + "complete_object_locator": 6468640568, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -290112,9 +290118,9 @@ }, { "type_name": "C_BulletHitModel", - "vtable_address": 6466197120, + "vtable_address": 6466201280, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -290204,7 +290210,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636512, + "complete_object_locator": 6468640608, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -290213,32 +290219,32 @@ }, { "type_name": "C_C4", - "vtable_address": 6465456296, + "vtable_address": 6465460464, "methods": [ 6445466912, - 6448111600, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215072, - 6450413456, - 6448197904, - 6450586832, - 6448115120, - 6448219552, - 6456295120, + 6448113168, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216640, + 6450415024, + 6448199472, + 6450588400, + 6448116688, + 6448221120, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -290247,26 +290253,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156528, - 6448203904, - 6448208304, + 6460060080, + 6448158096, + 6448205472, + 6448209872, 6443799760, - 6448157824, - 6448161392, + 6448159392, + 6448162960, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -290277,98 +290283,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212672, - 6448155936, - 6448192736, - 6456294720, + 6448226848, + 6448213728, + 6448214240, + 6448157504, + 6448194304, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6448139472, - 6451215568, + 6448141040, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -290379,51 +290385,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -290433,209 +290439,209 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149536, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448147344, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151104, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448148912, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448219184, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448217616, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448160752, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193376, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448200288, - 6448210368, - 6448171440, - 6448170624, - 6448171056, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168032, - 6448204592, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448141184, - 6448148256, - 6448159648 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448162320, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194944, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448201856, + 6448211936, + 6448173008, + 6448172192, + 6448172624, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448169600, + 6448206160, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448142752, + 6448149824, + 6448161216 ], "bases": [ { @@ -290851,7 +290857,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452240, + "complete_object_locator": 6468456336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -290860,14 +290866,14 @@ }, { "type_name": "C_C4", - "vtable_address": 6465459672, + "vtable_address": 6465463840, "methods": [ - 6448110404, - 6448995376, - 6448972352, - 6448972096, + 6448111972, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -291083,7 +291089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452480, + "complete_object_locator": 6468456576, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -291092,9 +291098,9 @@ }, { "type_name": "C_C4", - "vtable_address": 6465459728, + "vtable_address": 6465463896, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -291310,7 +291316,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452520, + "complete_object_locator": 6468456616, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -291319,12 +291325,12 @@ }, { "type_name": "C_C4", - "vtable_address": 6465459744, + "vtable_address": 6465463912, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -291540,7 +291546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452560, + "complete_object_locator": 6468456656, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -291549,14 +291555,14 @@ }, { "type_name": "C_C4", - "vtable_address": 6465459784, + "vtable_address": 6465463952, "methods": [ - 6448208340, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448209908, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -291772,7 +291778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452600, + "complete_object_locator": 6468456696, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -291781,10 +291787,10 @@ }, { "type_name": "C_C4", - "vtable_address": 6465459840, + "vtable_address": 6465464008, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -292000,7 +292006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452640, + "complete_object_locator": 6468456736, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -292009,10 +292015,10 @@ }, { "type_name": "C_C4", - "vtable_address": 6465459864, + "vtable_address": 6465464032, "methods": [ - 6448110392, - 6448154928 + 6448111960, + 6448156496 ], "bases": [ { @@ -292228,7 +292234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452680, + "complete_object_locator": 6468456776, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -292237,12 +292243,12 @@ }, { "type_name": "C_C4::NetworkVar_m_entitySpottedState", - "vtable_address": 6465456256, + "vtable_address": 6465460424, "methods": [ - 6448210320, - 6448190512, - 6448190608, - 6448190576 + 6448211888, + 6448192080, + 6448192176, + 6448192144 ], "bases": [ { @@ -292262,7 +292268,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452720, + "complete_object_locator": 6468456816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -292271,32 +292277,32 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 6466716824, + "vtable_address": 6466720920, "methods": [ 6445466544, - 6455701920, - 6448846688, - 6448866800, - 6455739088, - 6448816736, - 6455745904, - 6450413456, - 6448987824, - 6450586832, - 6455705360, - 6455762432, - 6448980064, + 6455703680, + 6448848256, + 6448868368, + 6455740880, + 6448818304, + 6455747696, + 6450415024, + 6448989392, + 6450588400, + 6455707120, + 6455764192, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -292305,25 +292311,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723616, - 6455739152, - 6455741440, + 6460060080, + 6455725408, + 6455740944, + 6455743232, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -292335,18 +292341,18 @@ 6445463696, 6443817712, 6443817696, - 6455711552, + 6455713344, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -292354,79 +292360,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6455742848, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6455744640, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6455743568, + 6450600912, + 6450581824, + 6455745360, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -292451,37 +292457,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6455743536, + 6455745328, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -292491,61 +292497,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, - 6455728144, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448917296, + 6449036480, + 6448906096, + 6455729936, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -292663,7 +292669,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773944, + "complete_object_locator": 6468778040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -292672,14 +292678,14 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 6466719016, + "vtable_address": 6466723112, "methods": [ - 6455701624, - 6448995376, - 6448972352, - 6448972096, + 6455703384, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -292797,7 +292803,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774176, + "complete_object_locator": 6468778272, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -292806,9 +292812,9 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 6466719072, + "vtable_address": 6466723168, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -292926,7 +292932,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774216, + "complete_object_locator": 6468778312, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -292935,10 +292941,10 @@ }, { "type_name": "C_CS2HudModelAddon", - "vtable_address": 6466719088, + "vtable_address": 6466723184, "methods": [ - 6455733792, - 6451912784 + 6455735584, + 6451914368 ], "bases": [ { @@ -293056,7 +293062,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774256, + "complete_object_locator": 6468778352, "offset": 4592, "constructor_displacement": 0, "class_attributes": 1 @@ -293065,32 +293071,32 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 6466723688, + "vtable_address": 6466727784, "methods": [ 6445466544, - 6455702032, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6455745952, - 6450413456, - 6448987824, - 6450586832, - 6455704928, - 6455761232, - 6448980064, + 6455703792, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6455747744, + 6450415024, + 6448989392, + 6450588400, + 6455706688, + 6455762992, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -293099,25 +293105,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723632, - 6455739168, - 6455741488, + 6460060080, + 6455725424, + 6455740960, + 6455743280, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -293129,18 +293135,18 @@ 6445463696, 6443817712, 6443817696, - 6455711568, + 6455713360, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -293148,79 +293154,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6455767760, - 6455742928, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6455769520, + 6455744720, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6455768208, + 6455769968, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6455743584, + 6450600912, + 6450581824, + 6455745376, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -293239,43 +293245,43 @@ 6443821104, 6444188416, 6444189392, - 6455721392, + 6455723184, 6443815024, 6443841936, 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6455743552, + 6455745344, 6443824256, - 6448973664, - 6455742080, + 6448975232, + 6455743872, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -293285,61 +293291,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, - 6455728144, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448917296, + 6449036480, + 6448906096, + 6455729936, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6455738704, - 6448861456, - 6448951216, + 6455740496, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6455725088, + 6455726880, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, - 6455702768, + 6448919440, + 6448973152, + 6448975280, + 6455704528, 6445450368, 6445450384, - 6455702544 + 6455704304 ], "bases": [ { @@ -293485,7 +293491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773416, + "complete_object_locator": 6468777512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -293494,14 +293500,14 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 6466725880, + "vtable_address": 6466729976, "methods": [ - 6455701636, - 6448995376, - 6448972352, - 6448972096, + 6455703396, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -293647,7 +293653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773664, + "complete_object_locator": 6468777760, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -293656,9 +293662,9 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 6466725936, + "vtable_address": 6466730032, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -293804,7 +293810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773704, + "complete_object_locator": 6468777800, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -293813,10 +293819,10 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 6466725952, + "vtable_address": 6466730048, "methods": [ - 6455734704, - 6451912784 + 6455736496, + 6451914368 ], "bases": [ { @@ -293962,7 +293968,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773744, + "complete_object_locator": 6468777840, "offset": 4592, "constructor_displacement": 0, "class_attributes": 1 @@ -293971,10 +293977,10 @@ }, { "type_name": "C_CS2HudModelArms", - "vtable_address": 6466725976, + "vtable_address": 6466730072, "methods": [ - 6455730272, - 6455724496 + 6455732064, + 6455726288 ], "bases": [ { @@ -294120,7 +294126,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773784, + "complete_object_locator": 6468777880, "offset": 4640, "constructor_displacement": 0, "class_attributes": 1 @@ -294129,32 +294135,32 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 6466719112, + "vtable_address": 6466723208, "methods": [ 6445466544, - 6455702176, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6455746992, - 6450413456, - 6448987824, - 6450586832, - 6455705360, - 6455762032, - 6448980064, + 6455703936, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6455748784, + 6450415024, + 6448989392, + 6450588400, + 6455707120, + 6455763792, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -294163,25 +294169,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723648, - 6455739184, - 6455741536, + 6460060080, + 6455725440, + 6455740976, + 6455743328, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -294198,13 +294204,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -294212,79 +294218,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6455767760, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6455769520, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6455768208, + 6455769968, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6455743584, + 6450600912, + 6450581824, + 6455745376, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -294309,37 +294315,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6455743552, + 6455745344, 6443824256, - 6448973664, - 6455742080, + 6448975232, + 6455743872, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -294349,61 +294355,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, - 6455728144, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448917296, + 6449036480, + 6448906096, + 6455729936, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -294521,7 +294527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772936, + "complete_object_locator": 6468777032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -294530,14 +294536,14 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 6466721304, + "vtable_address": 6466725400, "methods": [ - 6455701648, - 6448995376, - 6448972352, - 6448972096, + 6455703408, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -294655,7 +294661,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773296, + "complete_object_locator": 6468777392, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -294664,9 +294670,9 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 6466721360, + "vtable_address": 6466725456, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -294784,7 +294790,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773336, + "complete_object_locator": 6468777432, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -294793,10 +294799,10 @@ }, { "type_name": "C_CS2HudModelBase", - "vtable_address": 6466721376, + "vtable_address": 6466725472, "methods": [ - 6463705588, - 6451912784 + 6463707780, + 6451914368 ], "bases": [ { @@ -294914,7 +294920,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773376, + "complete_object_locator": 6468777472, "offset": 4592, "constructor_displacement": 0, "class_attributes": 1 @@ -294923,32 +294929,32 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 6466721400, + "vtable_address": 6466725496, "methods": [ 6445466544, - 6455702304, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6455747184, - 6450413456, - 6448987824, - 6450586832, - 6455705360, - 6455762032, - 6448980064, + 6455704064, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6455748976, + 6450415024, + 6448989392, + 6450588400, + 6455707120, + 6455763792, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -294957,25 +294963,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723664, - 6455739200, - 6455741584, + 6460060080, + 6455725456, + 6455740992, + 6455743376, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -294987,18 +294993,18 @@ 6445463696, 6443817712, 6443817696, - 6455711584, + 6455713376, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -295006,79 +295012,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6455767760, - 6455743312, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6455769520, + 6455745104, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6455768208, + 6455769968, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6455743584, + 6450600912, + 6450581824, + 6455745376, 6444168384, 6444234384, - 6450597312, - 6455736768, + 6450598880, + 6455738560, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -295103,37 +295109,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6455743552, + 6455745344, 6443824256, - 6448973664, - 6455742080, + 6448975232, + 6455743872, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -295143,61 +295149,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, - 6455728144, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448917296, + 6449036480, + 6448906096, + 6455729936, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6455738944, - 6448861456, - 6448951216, + 6455740736, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -295329,7 +295335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774296, + "complete_object_locator": 6468778392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -295338,14 +295344,14 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 6466723592, + "vtable_address": 6466727688, "methods": [ - 6455701660, - 6448995376, - 6448972352, - 6448972096, + 6455703420, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -295477,7 +295483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774496, + "complete_object_locator": 6468778592, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -295486,9 +295492,9 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 6466723648, + "vtable_address": 6466727744, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -295620,7 +295626,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774536, + "complete_object_locator": 6468778632, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -295629,10 +295635,10 @@ }, { "type_name": "C_CS2HudModelWeapon", - "vtable_address": 6466723664, + "vtable_address": 6466727760, "methods": [ - 6455735504, - 6455732960 + 6455737296, + 6455734752 ], "bases": [ { @@ -295764,7 +295770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774576, + "complete_object_locator": 6468778672, "offset": 4592, "constructor_displacement": 0, "class_attributes": 1 @@ -295773,12 +295779,12 @@ }, { "type_name": "C_CS2VoicePeerGroup", - "vtable_address": 6466188456, + "vtable_address": 6466192616, "methods": [ - 6451774800, - 6451878400, - 6451898864, - 6451876560 + 6451776384, + 6451879984, + 6451900448, + 6451878144 ], "bases": [ { @@ -295826,7 +295832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635400, + "complete_object_locator": 6468639496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -295835,10 +295841,10 @@ }, { "type_name": "C_CS2VoicePeerGroup", - "vtable_address": 6466188496, + "vtable_address": 6466192656, "methods": [ - 6451776800, - 6451883664 + 6451778384, + 6451885248 ], "bases": [ { @@ -295886,7 +295892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635584, + "complete_object_locator": 6468639680, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -295895,9 +295901,9 @@ }, { "type_name": "C_CS2VoicePeerGroup", - "vtable_address": 6466188520, + "vtable_address": 6466192680, "methods": [ - 6451883328 + 6451884912 ], "bases": [ { @@ -295945,7 +295951,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635624, + "complete_object_locator": 6468639720, "offset": 72, "constructor_displacement": 0, "class_attributes": 1 @@ -295954,32 +295960,32 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 6465439720, + "vtable_address": 6465443888, "methods": [ 6445466544, - 6448111888, - 6448846688, - 6448866800, - 6448199216, - 6448816736, - 6448215152, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6448219808, - 6448980064, + 6448113456, + 6448848256, + 6448868368, + 6448200784, + 6448818304, + 6448216720, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6448221376, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -295988,25 +295994,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156544, - 6448203920, - 6448208352, + 6460060080, + 6448158112, + 6448205488, + 6448209920, 6443799760, 6445465808, - 6448161408, + 6448162976, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -296023,13 +296029,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -296037,79 +296043,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6448212000, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6448213568, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448161520, - 6448992672, - 6450537248, - 6449036960, + 6448163088, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6448212384, + 6450600912, + 6450581824, + 6448213952, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -296134,37 +296140,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448212320, + 6448213888, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -296174,61 +296180,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -296332,7 +296338,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450592, + "complete_object_locator": 6468454688, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -296341,14 +296347,14 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 6465441912, + "vtable_address": 6465446080, "methods": [ - 6448110416, - 6448995376, - 6448972352, - 6448972096, + 6448111984, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -296452,7 +296458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450808, + "complete_object_locator": 6468454904, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -296461,9 +296467,9 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 6465441968, + "vtable_address": 6465446136, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -296567,7 +296573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450848, + "complete_object_locator": 6468454944, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -296576,11 +296582,11 @@ }, { "type_name": "C_CS2WeaponModuleBase", - "vtable_address": 6465441984, + "vtable_address": 6465446152, "methods": [ 6444481056, 6444481072, - 6448192960, + 6448194528, 6444481104 ], "bases": [ @@ -296685,7 +296691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450888, + "complete_object_locator": 6468454984, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -296694,32 +296700,32 @@ }, { "type_name": "C_CSGO_CounterTerroristTeamIntroCamera", - "vtable_address": 6466236800, + "vtable_address": 6466240912, "methods": [ 6445466896, - 6452006496, + 6452008080, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946256, - 6450413456, - 6450585280, - 6450586832, - 6451775968, - 6450715424, - 6450580640, + 6450411680, + 6451947840, + 6450415024, + 6450586848, + 6450588400, + 6451777552, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -296728,25 +296734,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024272, - 6452035920, - 6452038144, + 6460060080, + 6452025856, + 6452037504, + 6452039728, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -296763,13 +296769,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -296777,39 +296783,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -296823,33 +296829,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451803120, - 6451215568, + 6451804704, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -296877,34 +296883,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6451945424, + 6451947008, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -296975,7 +296981,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468644320, + "complete_object_locator": 6468648416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -296984,32 +296990,32 @@ }, { "type_name": "C_CSGO_CounterTerroristWingmanIntroCamera", - "vtable_address": 6466238552, + "vtable_address": 6466242664, "methods": [ 6445466896, - 6452006560, + 6452008144, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946256, - 6450413456, - 6450585280, - 6450586832, - 6451775968, - 6450715424, - 6450580640, + 6450411680, + 6451947840, + 6450415024, + 6450586848, + 6450588400, + 6451777552, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -297018,25 +297024,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024288, - 6452035936, - 6452038192, + 6460060080, + 6452025872, + 6452037520, + 6452039776, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -297053,13 +297059,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -297067,39 +297073,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -297113,33 +297119,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451803120, - 6451215568, + 6451804704, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -297167,34 +297173,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6451945424, + 6451947008, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -297265,7 +297271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468644472, + "complete_object_locator": 6468648568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -297274,32 +297280,32 @@ }, { "type_name": "C_CSGO_EndOfMatchCamera", - "vtable_address": 6466240304, + "vtable_address": 6466244416, "methods": [ 6445466896, - 6452006624, + 6452008208, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946256, - 6450413456, - 6450585280, - 6450586832, - 6451775968, - 6450715424, - 6450580640, + 6450411680, + 6451947840, + 6450415024, + 6450586848, + 6450588400, + 6451777552, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -297308,25 +297314,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024304, - 6452035952, - 6452038240, + 6460060080, + 6452025888, + 6452037536, + 6452039824, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -297343,13 +297349,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -297357,39 +297363,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -297403,33 +297409,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451803120, - 6451215568, + 6451804704, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -297457,34 +297463,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6451945424, + 6451947008, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -297555,7 +297561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468644624, + "complete_object_locator": 6468648720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -297564,32 +297570,32 @@ }, { "type_name": "C_CSGO_EndOfMatchCharacterPosition", - "vtable_address": 6466245056, + "vtable_address": 6466249168, "methods": [ 6445466896, - 6452006688, + 6452008272, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -297598,25 +297604,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024320, - 6452035968, - 6452038288, + 6460060080, + 6452025904, + 6452037552, + 6452039872, 6443799760, - 6447898624, - 6450497856, + 6447900192, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -297633,13 +297639,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -297647,39 +297653,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -297693,33 +297699,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -297747,34 +297753,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -297784,7 +297790,7 @@ 6444207072, 6444190512, 6443887696, - 6452023232 + 6452024816 ], "bases": [ { @@ -297832,7 +297838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468644776, + "complete_object_locator": 6468648872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -297841,32 +297847,32 @@ }, { "type_name": "C_CSGO_EndOfMatchLineupEnd", - "vtable_address": 6466248568, + "vtable_address": 6466252680, "methods": [ 6445466896, - 6452006800, + 6452008384, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -297875,25 +297881,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024336, - 6452035984, - 6452038336, + 6460060080, + 6452025920, + 6452037568, + 6452039920, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -297910,13 +297916,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -297924,39 +297930,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -297970,33 +297976,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -298024,34 +298030,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -298108,7 +298114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645160, + "complete_object_locator": 6468649256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -298117,32 +298123,32 @@ }, { "type_name": "C_CSGO_EndOfMatchLineupStart", - "vtable_address": 6466246816, + "vtable_address": 6466250928, "methods": [ 6445466896, - 6452006864, + 6452008448, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -298151,25 +298157,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024352, - 6452036000, - 6452038384, + 6460060080, + 6452025936, + 6452037584, + 6452039968, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -298186,13 +298192,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -298200,39 +298206,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -298246,33 +298252,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -298300,34 +298306,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -298384,7 +298390,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645016, + "complete_object_locator": 6468649112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -298393,32 +298399,32 @@ }, { "type_name": "C_CSGO_MapPreviewCameraPath", - "vtable_address": 6466190808, + "vtable_address": 6466194968, "methods": [ 6445466896, - 6451774864, + 6451776448, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946256, - 6450413456, - 6450585280, - 6450586832, - 6451775968, - 6450715424, - 6450580640, + 6450411680, + 6451947840, + 6450415024, + 6450586848, + 6450588400, + 6451777552, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -298427,25 +298433,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872464, - 6451927520, - 6451942176, + 6460060080, + 6451874048, + 6451929104, + 6451943760, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -298462,13 +298468,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -298476,39 +298482,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -298522,33 +298528,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451803120, - 6451215568, + 6451804704, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -298576,34 +298582,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6451945424, + 6451947008, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -298646,7 +298652,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635800, + "complete_object_locator": 6468639896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -298655,32 +298661,32 @@ }, { "type_name": "C_CSGO_MapPreviewCameraPathNode", - "vtable_address": 6466189024, + "vtable_address": 6466193184, "methods": [ 6445466896, - 6451775168, + 6451776752, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946400, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6451947984, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -298689,25 +298695,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872480, - 6451927536, - 6451942224, + 6460060080, + 6451874064, + 6451929120, + 6451943808, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -298724,13 +298730,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -298738,39 +298744,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -298784,33 +298790,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -298838,34 +298844,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -298908,7 +298914,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468635664, + "complete_object_locator": 6468639760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -298917,32 +298923,32 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 6466217672, + "vtable_address": 6466221784, "methods": [ 6445466912, - 6452006928, - 6450431440, - 6448866800, - 6452033008, - 6448816736, - 6452045184, - 6450413456, - 6448987824, - 6450586832, - 6452008336, - 6452051792, - 6448980064, + 6452008512, + 6450433008, + 6448868368, + 6452034592, + 6448818304, + 6452046768, + 6450415024, + 6448989392, + 6450588400, + 6452009920, + 6452053376, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -298951,25 +298957,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024368, - 6452036016, - 6452038432, + 6460060080, + 6452025952, + 6452037600, + 6452040016, 6443799760, 6445466048, - 6450497872, + 6450499440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -298986,93 +298992,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6452013104, - 6451215568, + 6452014688, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6452031936, - 6448995312, - 6448950416, + 6450667344, + 6452033520, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -299097,37 +299103,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6452044448, + 6452046032, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -299137,65 +299143,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, - 6452031376, - 6448928112, + 6452032960, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464 ], "bases": [ @@ -299314,7 +299320,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641248, + "complete_object_locator": 6468645344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -299323,14 +299329,14 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 6466219904, + "vtable_address": 6466224016, "methods": [ - 6452006360, - 6448995376, - 6448972352, - 6448972096, + 6452007944, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -299448,7 +299454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641432, + "complete_object_locator": 6468645528, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -299457,9 +299463,9 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 6466219960, + "vtable_address": 6466224072, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -299577,7 +299583,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641472, + "complete_object_locator": 6468645568, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -299586,9 +299592,9 @@ }, { "type_name": "C_CSGO_PreviewModel", - "vtable_address": 6466219976, + "vtable_address": 6466224088, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -299709,7 +299715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641512, + "complete_object_locator": 6468645608, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -299718,32 +299724,32 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 6466220016, + "vtable_address": 6466224128, "methods": [ 6445466912, - 6452006992, - 6450431440, - 6448866800, - 6452033008, - 6448816736, - 6452045184, - 6450413456, - 6448987824, - 6450586832, - 6452008336, - 6452051792, - 6448980064, + 6452008576, + 6450433008, + 6448868368, + 6452034592, + 6448818304, + 6452046768, + 6450415024, + 6448989392, + 6450588400, + 6452009920, + 6452053376, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -299752,25 +299758,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024384, - 6452036032, - 6452038480, + 6460060080, + 6452025968, + 6452037616, + 6452040064, 6443799760, 6445466048, - 6450497872, + 6450499440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -299787,93 +299793,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6452013104, - 6451215568, + 6452014688, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6452031936, - 6448995312, - 6448950416, + 6450667344, + 6452033520, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -299898,37 +299904,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6452044448, + 6452046032, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -299938,65 +299944,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, - 6452031376, - 6448928112, + 6452032960, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464 ], "bases": [ @@ -300129,7 +300135,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641552, + "complete_object_locator": 6468645648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -300138,14 +300144,14 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 6466222248, + "vtable_address": 6466226360, "methods": [ - 6452006372, - 6448995376, - 6448972352, - 6448972096, + 6452007956, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -300277,7 +300283,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641744, + "complete_object_locator": 6468645840, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -300286,9 +300292,9 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 6466222304, + "vtable_address": 6466226416, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -300420,7 +300426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641784, + "complete_object_locator": 6468645880, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -300429,9 +300435,9 @@ }, { "type_name": "C_CSGO_PreviewModelAlias_csgo_item_previewmodel", - "vtable_address": 6466222320, + "vtable_address": 6466226432, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -300566,7 +300572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641824, + "complete_object_locator": 6468645920, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -300575,32 +300581,32 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 6466223336, + "vtable_address": 6466227448, "methods": [ 6445466720, - 6452007056, - 6451823264, - 6450456544, - 6452034224, - 6451777680, - 6452048784, - 6450413456, - 6451923216, - 6450586832, - 6452008400, - 6451972320, - 6451919728, + 6452008640, + 6451824848, + 6450458112, + 6452035808, + 6451779264, + 6452050368, + 6450415024, + 6451924800, + 6450588400, + 6452009984, + 6451973904, + 6451921312, 6443817760, 6443797616, - 6451924320, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6451925904, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580320, - 6450573696, - 6450573648, + 6450581888, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -300609,26 +300615,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024400, - 6452036048, - 6452038528, + 6460060080, + 6452025984, + 6452037632, + 6452040112, 6443799760, - 6451874336, - 6451878544, + 6451875920, + 6451880128, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587184, + 6450678224, + 6450588752, 6443817344, 6443817328, 6445463744, @@ -300639,153 +300645,153 @@ 6445463696, 6443817712, 6443817696, - 6450414368, + 6450415936, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, - 6451987792, + 6451989376, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, - 6448634768, + 6450554384, + 6450499104, + 6450709568, + 6450489632, + 6448636336, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448595680, - 6449035856, + 6450432992, + 6448597248, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6451983728, - 6452044432, - 6451946192, - 6451858016, - 6451915024, - 6450579856, + 6451985312, + 6452046016, + 6451947776, + 6451859600, + 6451916608, + 6450581424, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, - 6450683600, - 6448935120, - 6448901216, - 6448901152, - 6452009488, - 6452009984, - 6448820960, - 6448821632, + 6450685168, + 6448936688, + 6448902784, + 6448902720, + 6452011072, + 6452011568, + 6448822528, + 6448823200, 6445471584, - 6450499040, - 6448992672, - 6450537248, - 6451943616, - 6450683632, - 6450599344, - 6450580256, - 6450683488, - 6448582688, + 6450500608, + 6448994240, + 6450538816, + 6451945200, + 6450685200, + 6450600912, + 6450581824, + 6450685056, + 6448584256, 6444234384, - 6451924400, - 6448975008, + 6451925984, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, - 6451953104, + 6451954688, 6444142576, 6443875152, - 6452013152, - 6448987456, + 6452014736, + 6448989024, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, - 6448950880, + 6448952448, 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, 6443837344, 6443837776, - 6451877024, + 6451878608, 6444188416, 6444189392, - 6448893792, - 6451849856, - 6448959952, - 6448884016, - 6450412128, + 6448895360, + 6451851440, + 6448961520, + 6448885584, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, - 6450576688, + 6451200448, + 6450578256, 6443818944, 6443869104, - 6448982448, + 6448984016, 6443836208, - 6452053088, - 6451945440, + 6452054672, + 6451947024, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, - 6448980304, + 6448981872, 6443798848, - 6451209568, - 6450577280, + 6451211136, + 6450578848, 6443824224, 6443824208, - 6451877280, - 6450652240, - 6451878752, - 6450500240, + 6451878864, + 6450653808, + 6451880336, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -300795,140 +300801,140 @@ 6444207072, 6444190512, 6443887696, - 6451918400, + 6451919984, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448598976, - 6448599104, - 6448598368, - 6448599024, - 6448981600, + 6448600544, + 6448600672, + 6448599936, + 6448600592, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6451923648, - 6451834112, - 6448951216, - 6451944656, - 6451866912, - 6448968432, + 6451925232, + 6451835696, + 6448952784, + 6451946240, + 6451868496, + 6448970000, 6445458352, - 6452018096, + 6452019680, 6445450432, 6445452848, - 6451959808, - 6448844240, + 6451961392, + 6448845808, 6445478864, 6445478896, - 6451883200, + 6451884784, 6445484480, - 6448817776, - 6451780832, + 6448819344, + 6451782416, 6445450448, 6445450464, - 6452010096, - 6448821472, - 6449041728, - 6448947760, + 6452011680, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907520, + 6448908736, + 6448909088, 6445471568, - 6451797184, - 6451878736, - 6451926752, - 6451926768, - 6451878688, - 6451914800, - 6448973712, + 6451798768, + 6451880320, + 6451928336, + 6451928352, + 6451880272, + 6451916384, + 6448975280, 6445450400, 6445450368, - 6451775952, - 6448810416, - 6450537024, - 6450698592, + 6451777536, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6448906992, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, - 6451831888, - 6451842224, - 6448551200, - 6448550032, - 6450438128, - 6450445104, - 6448551072, - 6448550976, - 6450444976, - 6448549952, - 6448550112, - 6451917488, - 6448916384, - 6451898848, - 6450580624, - 6451867440, - 6451942800, - 6450497520, - 6451898640, - 6448587648, - 6448893728, - 6451879808, - 6450573872, - 6451952816, - 6451945408, - 6450587280, - 6448990496, - 6448987808, - 6451924416, - 6451923696, - 6448564032, - 6448952160, - 6448952144, - 6450707008, - 6450583360, - 6448916528, - 6448916224, - 6448916080, - 6450497824, - 6450581104, - 6451899408, - 6450599120, - 6450580032, - 6450579728, - 6450571152, - 6450586848, - 6450491712, - 6451878592, - 6450498032, - 6451832896, - 6450715120, - 6448645168, - 6448645152, - 6452053072, - 6451952464, - 6448534096, - 6451790816, - 6451916160, - 6451831728, - 6451832656, - 6451831808, - 6452032896 + 6450509056, + 6448908560, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, + 6451833472, + 6451843808, + 6448552768, + 6448551600, + 6450439696, + 6450446672, + 6448552640, + 6448552544, + 6450446544, + 6448551520, + 6448551680, + 6451919072, + 6448917952, + 6451900432, + 6450582192, + 6451869024, + 6451944384, + 6450499088, + 6451900224, + 6448589216, + 6448895296, + 6451881392, + 6450575440, + 6451954400, + 6451946992, + 6450588848, + 6448992064, + 6448989376, + 6451926000, + 6451925280, + 6448565600, + 6448953728, + 6448953712, + 6450708576, + 6450584928, + 6448918096, + 6448917792, + 6448917648, + 6450499392, + 6450582672, + 6451900992, + 6450600688, + 6450581600, + 6450581296, + 6450572720, + 6450588416, + 6450493280, + 6451880176, + 6450499600, + 6451834480, + 6450716688, + 6448646736, + 6448646720, + 6452054656, + 6451954048, + 6448535664, + 6451792400, + 6451917744, + 6451833312, + 6451834240, + 6451833392, + 6452034480 ], "bases": [ { @@ -301158,7 +301164,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642128, + "complete_object_locator": 6468646224, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -301167,14 +301173,14 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 6466226160, + "vtable_address": 6466230272, "methods": [ - 6452006396, - 6448995376, - 6448972352, - 6448972096, + 6452007980, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -301404,7 +301410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642376, + "complete_object_locator": 6468646472, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -301413,9 +301419,9 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 6466226216, + "vtable_address": 6466230328, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -301645,7 +301651,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642416, + "complete_object_locator": 6468646512, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -301654,9 +301660,9 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 6466226232, + "vtable_address": 6466230344, "methods": [ - 6451867632, + 6451869216, 6447786432, 6447786416, 6447764288 @@ -301889,7 +301895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642456, + "complete_object_locator": 6468646552, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -301898,10 +301904,10 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 6466226272, + "vtable_address": 6466230384, "methods": [ - 6452006384, - 6451851088 + 6452007968, + 6451852672 ], "bases": [ { @@ -302131,7 +302137,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642496, + "complete_object_locator": 6468646592, "offset": 5576, "constructor_displacement": 0, "class_attributes": 1 @@ -302140,9 +302146,9 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 6466226296, + "vtable_address": 6466230408, "methods": [ - 6448578240 + 6448579808 ], "bases": [ { @@ -302372,7 +302378,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642536, + "complete_object_locator": 6468646632, "offset": 5736, "constructor_displacement": 0, "class_attributes": 1 @@ -302381,10 +302387,10 @@ }, { "type_name": "C_CSGO_PreviewPlayer", - "vtable_address": 6466226312, + "vtable_address": 6466230424, "methods": [ - 6451912800, - 6451912784 + 6451914384, + 6451914368 ], "bases": [ { @@ -302614,7 +302620,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642576, + "complete_object_locator": 6468646672, "offset": 5744, "constructor_displacement": 0, "class_attributes": 1 @@ -302623,32 +302629,32 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 6466226336, + "vtable_address": 6466230448, "methods": [ 6445466720, - 6452007120, - 6451823264, - 6450456544, - 6452034224, - 6451777680, - 6452048784, - 6450413456, - 6451923216, - 6450586832, - 6452008400, - 6451972320, - 6451919728, + 6452008704, + 6451824848, + 6450458112, + 6452035808, + 6451779264, + 6452050368, + 6450415024, + 6451924800, + 6450588400, + 6452009984, + 6451973904, + 6451921312, 6443817760, 6443797616, - 6451924320, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6451925904, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580320, - 6450573696, - 6450573648, + 6450581888, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -302657,26 +302663,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024416, - 6452036064, - 6452038576, + 6460060080, + 6452026000, + 6452037648, + 6452040160, 6443799760, - 6451874336, - 6451878544, + 6451875920, + 6451880128, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587184, + 6450678224, + 6450588752, 6443817344, 6443817328, 6445463744, @@ -302687,153 +302693,153 @@ 6445463696, 6443817712, 6443817696, - 6450414368, + 6450415936, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, - 6451987792, + 6451989376, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, - 6448634768, + 6450554384, + 6450499104, + 6450709568, + 6450489632, + 6448636336, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448595680, - 6449035856, + 6450432992, + 6448597248, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6451983728, - 6452044432, - 6451946192, - 6451858016, - 6451915024, - 6450579856, + 6451985312, + 6452046016, + 6451947776, + 6451859600, + 6451916608, + 6450581424, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, - 6450683600, - 6448935120, - 6448901216, - 6448901152, - 6452009488, - 6452009984, - 6448820960, - 6448821632, + 6450685168, + 6448936688, + 6448902784, + 6448902720, + 6452011072, + 6452011568, + 6448822528, + 6448823200, 6445471584, - 6450499040, - 6448992672, - 6450537248, - 6451943616, - 6450683632, - 6450599344, - 6450580256, - 6450683488, - 6448582688, + 6450500608, + 6448994240, + 6450538816, + 6451945200, + 6450685200, + 6450600912, + 6450581824, + 6450685056, + 6448584256, 6444234384, - 6451924400, - 6448975008, + 6451925984, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, - 6451953104, + 6451954688, 6444142576, 6443875152, - 6452013152, - 6448987456, + 6452014736, + 6448989024, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, - 6448950880, + 6448952448, 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, 6443837344, 6443837776, - 6451877024, + 6451878608, 6444188416, 6444189392, - 6448893792, - 6451849856, - 6448959952, - 6448884016, - 6450412128, + 6448895360, + 6451851440, + 6448961520, + 6448885584, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, - 6450576688, + 6451200448, + 6450578256, 6443818944, 6443869104, - 6448982448, + 6448984016, 6443836208, - 6452053088, - 6451945440, + 6452054672, + 6451947024, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, - 6448980304, + 6448981872, 6443798848, - 6451209568, - 6450577280, + 6451211136, + 6450578848, 6443824224, 6443824208, - 6451877280, - 6450652240, - 6451878752, - 6450500240, + 6451878864, + 6450653808, + 6451880336, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -302843,140 +302849,140 @@ 6444207072, 6444190512, 6443887696, - 6451918400, + 6451919984, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448598976, - 6448599104, - 6448598368, - 6448599024, - 6448981600, + 6448600544, + 6448600672, + 6448599936, + 6448600592, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6451923648, - 6451834112, - 6448951216, - 6451944656, - 6451866912, - 6448968432, + 6451925232, + 6451835696, + 6448952784, + 6451946240, + 6451868496, + 6448970000, 6445458352, - 6452018096, + 6452019680, 6445450432, 6445452848, - 6451959808, - 6448844240, + 6451961392, + 6448845808, 6445478864, 6445478896, - 6451883200, + 6451884784, 6445484480, - 6448817776, - 6451780832, + 6448819344, + 6451782416, 6445450448, 6445450464, - 6452010096, - 6448821472, - 6449041728, - 6448947760, + 6452011680, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907520, + 6448908736, + 6448909088, 6445471568, - 6451797184, - 6451878736, - 6451926752, - 6451926768, - 6451878688, - 6451914800, - 6448973712, + 6451798768, + 6451880320, + 6451928336, + 6451928352, + 6451880272, + 6451916384, + 6448975280, 6445450400, 6445450368, - 6451775952, - 6448810416, - 6450537024, - 6450698592, + 6451777536, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6448906992, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, - 6451831888, - 6451842224, - 6448551200, - 6448550032, - 6450438128, - 6450445104, - 6448551072, - 6448550976, - 6450444976, - 6448549952, - 6448550112, - 6451917488, - 6448916384, - 6451898848, - 6450580624, - 6451867440, - 6451942800, - 6450497520, - 6451898640, - 6448587648, - 6448893728, - 6451879808, - 6450573872, - 6451952816, - 6451945408, - 6450587280, - 6448990496, - 6448987808, - 6451924416, - 6451923696, - 6448564032, - 6448952160, - 6448952144, - 6450707008, - 6450583360, - 6448916528, - 6448916224, - 6448916080, - 6450497824, - 6450581104, - 6451899408, - 6450599120, - 6450580032, - 6450579728, - 6450571152, - 6450586848, - 6450491712, - 6451878592, - 6450498032, - 6451832896, - 6450715120, - 6448645168, - 6448645152, - 6452053072, - 6451952464, - 6448534096, - 6451790816, - 6451916160, - 6451831728, - 6451832656, - 6451831808, - 6452032896 + 6450509056, + 6448908560, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, + 6451833472, + 6451843808, + 6448552768, + 6448551600, + 6450439696, + 6450446672, + 6448552640, + 6448552544, + 6450446544, + 6448551520, + 6448551680, + 6451919072, + 6448917952, + 6451900432, + 6450582192, + 6451869024, + 6451944384, + 6450499088, + 6451900224, + 6448589216, + 6448895296, + 6451881392, + 6450575440, + 6451954400, + 6451946992, + 6450588848, + 6448992064, + 6448989376, + 6451926000, + 6451925280, + 6448565600, + 6448953728, + 6448953712, + 6450708576, + 6450584928, + 6448918096, + 6448917792, + 6448917648, + 6450499392, + 6450582672, + 6451900992, + 6450600688, + 6450581600, + 6450581296, + 6450572720, + 6450588416, + 6450493280, + 6451880176, + 6450499600, + 6451834480, + 6450716688, + 6448646736, + 6448646720, + 6452054656, + 6451954048, + 6448535664, + 6451792400, + 6451917744, + 6451833312, + 6451834240, + 6451833392, + 6452034480 ], "bases": [ { @@ -303220,7 +303226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642616, + "complete_object_locator": 6468646712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -303229,14 +303235,14 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 6466229160, + "vtable_address": 6466233272, "methods": [ - 6452006420, - 6448995376, - 6448972352, - 6448972096, + 6452008004, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -303480,7 +303486,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642880, + "complete_object_locator": 6468646976, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -303489,9 +303495,9 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 6466229216, + "vtable_address": 6466233328, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -303735,7 +303741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642920, + "complete_object_locator": 6468647016, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -303744,9 +303750,9 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 6466229232, + "vtable_address": 6466233344, "methods": [ - 6451867632, + 6451869216, 6447786432, 6447786416, 6447764288 @@ -303993,7 +303999,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468642960, + "complete_object_locator": 6468647056, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -304002,10 +304008,10 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 6466229272, + "vtable_address": 6466233384, "methods": [ - 6452006408, - 6451851088 + 6452007992, + 6451852672 ], "bases": [ { @@ -304249,7 +304255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643000, + "complete_object_locator": 6468647096, "offset": 5576, "constructor_displacement": 0, "class_attributes": 1 @@ -304258,9 +304264,9 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 6466229296, + "vtable_address": 6466233408, "methods": [ - 6448578240 + 6448579808 ], "bases": [ { @@ -304504,7 +304510,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643040, + "complete_object_locator": 6468647136, "offset": 5736, "constructor_displacement": 0, "class_attributes": 1 @@ -304513,10 +304519,10 @@ }, { "type_name": "C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel", - "vtable_address": 6466229312, + "vtable_address": 6466233424, "methods": [ - 6451912800, - 6451912784 + 6451914384, + 6451914368 ], "bases": [ { @@ -304760,7 +304766,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643080, + "complete_object_locator": 6468647176, "offset": 5744, "constructor_displacement": 0, "class_attributes": 1 @@ -304769,24 +304775,24 @@ }, { "type_name": "C_CSGO_PreviewPlayer_GraphController", - "vtable_address": 6466223200, - "methods": [ - 6452038624, - 6452007184, - 6452020592, - 6452028992, - 6452016976, - 6452036800, - 6452018928, - 6452018112, - 6452021616, + "vtable_address": 6466227312, + "methods": [ + 6452040208, + 6452008768, + 6452022176, + 6452030576, + 6452018560, + 6452038384, + 6452020512, + 6452019696, + 6452023200, 6445458368, 6445460880, 6445459968, 6445481536, - 6452023920, - 6448990368, - 6448989680 + 6452025504, + 6448991936, + 6448991248 ], "bases": [ { @@ -304820,7 +304826,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641992, + "complete_object_locator": 6468646088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -304829,32 +304835,32 @@ }, { "type_name": "C_CSGO_TeamIntroCounterTerroristPosition", - "vtable_address": 6465364248, + "vtable_address": 6465368408, "methods": [ 6445466896, 6447875712, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -304863,25 +304869,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447897648, - 6447913376, - 6447916000, + 6460060080, + 6447899216, + 6447914944, + 6447917568, 6443799760, - 6447898528, - 6450497856, + 6447900096, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -304898,13 +304904,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -304912,39 +304918,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -304958,33 +304964,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -305012,34 +305018,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -305049,7 +305055,7 @@ 6444207072, 6444190512, 6443887696, - 6447897296 + 6447898864 ], "bases": [ { @@ -305111,7 +305117,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468435752, + "complete_object_locator": 6468439848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -305120,32 +305126,32 @@ }, { "type_name": "C_CSGO_TeamIntroTerroristPosition", - "vtable_address": 6465362488, + "vtable_address": 6465366648, "methods": [ 6445466896, 6447875824, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -305154,25 +305160,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447897664, - 6447913392, - 6447916048, + 6460060080, + 6447899232, + 6447914960, + 6447917616, 6443799760, - 6447898576, - 6450497856, + 6447900144, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -305189,13 +305195,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -305203,39 +305209,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -305249,33 +305255,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -305303,34 +305309,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -305340,7 +305346,7 @@ 6444207072, 6444190512, 6443887696, - 6447897296 + 6447898864 ], "bases": [ { @@ -305402,7 +305408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468435600, + "complete_object_locator": 6468439696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -305411,32 +305417,32 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition", - "vtable_address": 6465357208, + "vtable_address": 6465361368, "methods": [ 6445466896, 6447875936, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -305445,25 +305451,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447897680, - 6447913408, - 6447916096, + 6460060080, + 6447899248, + 6447914976, + 6447917664, 6443799760, - 6447898624, - 6450497856, + 6447900192, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -305480,13 +305486,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -305494,39 +305500,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -305540,33 +305546,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -305594,34 +305600,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -305631,7 +305637,7 @@ 6444207072, 6444190512, 6443887696, - 6463705588 + 6463707780 ], "bases": [ { @@ -305665,7 +305671,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468434376, + "complete_object_locator": 6468438472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -305674,44 +305680,44 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition::NetworkVar_m_agentItem", - "vtable_address": 6465356320, + "vtable_address": 6465360480, "methods": [ - 6447916240, + 6447917808, 6447876320, - 6456466320, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, + 6456468096, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6447900400, 6447898832, - 6447897264, - 6447898848, - 6456477232, - 6456478336, - 6456457152, - 6456474736, - 6456478112, - 6447898880, - 6447898768, - 6456465632, - 6456465200, - 6456472976, - 6456510704, - 6447911040, - 6447911312, - 6447911200, - 6447900480, + 6447900416, + 6456479008, + 6456480112, + 6456458928, + 6456476512, + 6456479888, 6447900448, - 6447917584, - 6447910176, - 6447913456, - 6447900464 + 6447900336, + 6456467408, + 6456466976, + 6456474752, + 6456512480, + 6447912608, + 6447912880, + 6447912768, + 6447902048, + 6447902016, + 6447919152, + 6447911744, + 6447915024, + 6447902032 ], "bases": [ { @@ -305745,7 +305751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468434512, + "complete_object_locator": 6468438608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -305754,44 +305760,44 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition::NetworkVar_m_glovesItem", - "vtable_address": 6465356616, + "vtable_address": 6465360776, "methods": [ - 6447916240, + 6447917808, 6447876384, - 6456466320, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, + 6456468096, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6447900400, 6447898832, - 6447897264, - 6447898848, - 6456477232, - 6456478336, - 6456457152, - 6456474736, - 6456478112, - 6447898880, - 6447898768, - 6456465632, - 6456465200, - 6456472976, - 6456510704, - 6447911088, - 6447911312, - 6447911232, - 6447900480, + 6447900416, + 6456479008, + 6456480112, + 6456458928, + 6456476512, + 6456479888, 6447900448, - 6447917584, - 6447910176, - 6447913456, - 6447900464 + 6447900336, + 6456467408, + 6456466976, + 6456474752, + 6456512480, + 6447912656, + 6447912880, + 6447912800, + 6447902048, + 6447902016, + 6447919152, + 6447911744, + 6447915024, + 6447902032 ], "bases": [ { @@ -305825,7 +305831,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468434816, + "complete_object_locator": 6468438912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -305834,44 +305840,44 @@ }, { "type_name": "C_CSGO_TeamPreviewCharacterPosition::NetworkVar_m_weaponItem", - "vtable_address": 6465356912, + "vtable_address": 6465361072, "methods": [ - 6447916240, + 6447917808, 6447876448, - 6456466320, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, + 6456468096, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6447900400, 6447898832, - 6447897264, - 6447898848, - 6456477232, - 6456478336, - 6456457152, - 6456474736, - 6456478112, - 6447898880, - 6447898768, - 6456465632, - 6456465200, - 6456472976, - 6456510704, - 6447911136, - 6447911312, - 6447911264, - 6447900480, + 6447900416, + 6456479008, + 6456480112, + 6456458928, + 6456476512, + 6456479888, 6447900448, - 6447917584, - 6447910176, - 6447913456, - 6447900464 + 6447900336, + 6456467408, + 6456466976, + 6456474752, + 6456512480, + 6447912704, + 6447912880, + 6447912832, + 6447902048, + 6447902016, + 6447919152, + 6447911744, + 6447915024, + 6447902032 ], "bases": [ { @@ -305905,7 +305911,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468434952, + "complete_object_locator": 6468439048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -305914,32 +305920,32 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 6466242056, + "vtable_address": 6466246168, "methods": [ 6445466720, - 6452007248, - 6451823264, - 6450456544, - 6452034224, - 6451777680, - 6452048784, - 6450413456, - 6451923216, - 6450586832, - 6452008400, - 6451972320, - 6451919728, + 6452008832, + 6451824848, + 6450458112, + 6452035808, + 6451779264, + 6452050368, + 6450415024, + 6451924800, + 6450588400, + 6452009984, + 6451973904, + 6451921312, 6443817760, 6443797616, - 6451924320, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6451925904, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580320, - 6450573696, - 6450573648, + 6450581888, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -305948,26 +305954,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024432, - 6452036080, - 6452038672, + 6460060080, + 6452026016, + 6452037664, + 6452040256, 6443799760, - 6451874336, - 6451878544, + 6451875920, + 6451880128, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587184, + 6450678224, + 6450588752, 6443817344, 6443817328, 6445463744, @@ -305978,153 +305984,153 @@ 6445463696, 6443817712, 6443817696, - 6450414368, + 6450415936, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, - 6451987792, + 6451989376, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, - 6448634768, + 6450554384, + 6450499104, + 6450709568, + 6450489632, + 6448636336, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448595680, - 6449035856, + 6450432992, + 6448597248, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6451983728, - 6452044432, - 6451946192, - 6451858016, - 6451915024, - 6450579856, + 6451985312, + 6452046016, + 6451947776, + 6451859600, + 6451916608, + 6450581424, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, - 6450683600, - 6448935120, - 6448901216, - 6448901152, - 6452009488, - 6452009984, - 6448820960, - 6448821632, + 6450685168, + 6448936688, + 6448902784, + 6448902720, + 6452011072, + 6452011568, + 6448822528, + 6448823200, 6445471584, - 6450499040, - 6448992672, - 6450537248, - 6451943616, - 6450683632, - 6450599344, - 6450580256, - 6450683488, - 6448582688, + 6450500608, + 6448994240, + 6450538816, + 6451945200, + 6450685200, + 6450600912, + 6450581824, + 6450685056, + 6448584256, 6444234384, - 6451924400, - 6448975008, + 6451925984, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, - 6451953104, + 6451954688, 6444142576, 6443875152, - 6452013152, - 6448987456, + 6452014736, + 6448989024, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, - 6448950880, + 6448952448, 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, 6443837344, 6443837776, - 6451877024, + 6451878608, 6444188416, 6444189392, - 6448893792, - 6451849856, - 6448959952, - 6448884016, - 6450412128, + 6448895360, + 6451851440, + 6448961520, + 6448885584, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, - 6450576688, + 6451200448, + 6450578256, 6443818944, 6443869104, - 6448982448, + 6448984016, 6443836208, - 6452053088, - 6451945440, + 6452054672, + 6451947024, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, - 6448980304, + 6448981872, 6443798848, - 6451209568, - 6450577280, + 6451211136, + 6450578848, 6443824224, 6443824208, - 6451877280, - 6450652240, - 6451878752, - 6450500240, + 6451878864, + 6450653808, + 6451880336, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -306134,140 +306140,140 @@ 6444207072, 6444190512, 6443887696, - 6451918400, + 6451919984, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448598976, - 6448599104, - 6448598368, - 6448599024, - 6448981600, + 6448600544, + 6448600672, + 6448599936, + 6448600592, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6451923648, - 6451834112, - 6448951216, - 6451944656, - 6451866912, - 6448968432, + 6451925232, + 6451835696, + 6448952784, + 6451946240, + 6451868496, + 6448970000, 6445458352, - 6452018096, + 6452019680, 6445450432, 6445452848, - 6451959808, - 6448844240, + 6451961392, + 6448845808, 6445478864, 6445478896, - 6451883200, + 6451884784, 6445484480, - 6448817776, - 6451780832, + 6448819344, + 6451782416, 6445450448, 6445450464, - 6452010096, - 6448821472, - 6449041728, - 6448947760, + 6452011680, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907520, + 6448908736, + 6448909088, 6445471568, - 6451797184, - 6451878736, - 6451926752, - 6451926768, - 6451878688, - 6451914800, - 6448973712, + 6451798768, + 6451880320, + 6451928336, + 6451928352, + 6451880272, + 6451916384, + 6448975280, 6445450400, 6445450368, - 6451775952, - 6448810416, - 6450537024, - 6450698592, + 6451777536, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6448906992, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, - 6451831888, - 6451842224, - 6448551200, - 6448550032, - 6450438128, - 6450445104, - 6448551072, - 6448550976, - 6450444976, - 6448549952, - 6448550112, - 6451917488, - 6448916384, - 6451898848, - 6450580624, - 6451867440, - 6451942800, - 6450497520, - 6451898640, - 6448587648, - 6448893728, - 6451879808, - 6450573872, - 6451952816, - 6451945408, - 6450587280, - 6448990496, - 6448987808, - 6451924416, - 6451923696, - 6448564032, - 6448952160, - 6448952144, - 6450707008, - 6450583360, - 6448916528, - 6448916224, - 6448916080, - 6450497824, - 6450581104, - 6451899408, - 6450599120, - 6450580032, - 6450579728, - 6450571152, - 6450586848, - 6450491712, - 6451878592, - 6450498032, - 6451832896, - 6450715120, - 6448645168, - 6448645152, - 6452053072, - 6451952464, - 6448534096, - 6451790816, - 6451916160, - 6451831728, - 6451832656, - 6451831808, - 6452032896 + 6450509056, + 6448908560, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, + 6451833472, + 6451843808, + 6448552768, + 6448551600, + 6450439696, + 6450446672, + 6448552640, + 6448552544, + 6450446544, + 6448551520, + 6448551680, + 6451919072, + 6448917952, + 6451900432, + 6450582192, + 6451869024, + 6451944384, + 6450499088, + 6451900224, + 6448589216, + 6448895296, + 6451881392, + 6450575440, + 6451954400, + 6451946992, + 6450588848, + 6448992064, + 6448989376, + 6451926000, + 6451925280, + 6448565600, + 6448953728, + 6448953712, + 6450708576, + 6450584928, + 6448918096, + 6448917792, + 6448917648, + 6450499392, + 6450582672, + 6451900992, + 6450600688, + 6450581600, + 6450581296, + 6450572720, + 6450588416, + 6450493280, + 6451880176, + 6450499600, + 6451834480, + 6450716688, + 6448646736, + 6448646720, + 6452054656, + 6451954048, + 6448535664, + 6451792400, + 6451917744, + 6451833312, + 6451834240, + 6451833392, + 6452034480 ], "bases": [ { @@ -306511,7 +306517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643264, + "complete_object_locator": 6468647360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -306520,14 +306526,14 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 6466244880, + "vtable_address": 6466248992, "methods": [ - 6452006444, - 6448995376, - 6448972352, - 6448972096, + 6452008028, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -306771,7 +306777,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643520, + "complete_object_locator": 6468647616, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -306780,9 +306786,9 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 6466244936, + "vtable_address": 6466249048, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -307026,7 +307032,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643560, + "complete_object_locator": 6468647656, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -307035,9 +307041,9 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 6466244952, + "vtable_address": 6466249064, "methods": [ - 6451867632, + 6451869216, 6447786432, 6447786416, 6447764288 @@ -307284,7 +307290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643600, + "complete_object_locator": 6468647696, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -307293,10 +307299,10 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 6466244992, + "vtable_address": 6466249104, "methods": [ - 6452006432, - 6451851088 + 6452008016, + 6451852672 ], "bases": [ { @@ -307540,7 +307546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643640, + "complete_object_locator": 6468647736, "offset": 5576, "constructor_displacement": 0, "class_attributes": 1 @@ -307549,9 +307555,9 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 6466245016, + "vtable_address": 6466249128, "methods": [ - 6448578240 + 6448579808 ], "bases": [ { @@ -307795,7 +307801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643680, + "complete_object_locator": 6468647776, "offset": 5736, "constructor_displacement": 0, "class_attributes": 1 @@ -307804,10 +307810,10 @@ }, { "type_name": "C_CSGO_TeamPreviewModel", - "vtable_address": 6466245032, + "vtable_address": 6466249144, "methods": [ - 6451912800, - 6451912784 + 6451914384, + 6451914368 ], "bases": [ { @@ -308051,7 +308057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643720, + "complete_object_locator": 6468647816, "offset": 5744, "constructor_displacement": 0, "class_attributes": 1 @@ -308060,32 +308066,32 @@ }, { "type_name": "C_CSGO_TeamSelectCamera", - "vtable_address": 6466231544, + "vtable_address": 6466235656, "methods": [ 6445466896, - 6452007312, + 6452008896, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946256, - 6450413456, - 6450585280, - 6450586832, - 6451775968, - 6450715424, - 6450580640, + 6450411680, + 6451947840, + 6450415024, + 6450586848, + 6450588400, + 6451777552, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -308094,25 +308100,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024448, - 6452036096, - 6452038720, + 6460060080, + 6452026032, + 6452037680, + 6452040304, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -308129,13 +308135,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -308143,39 +308149,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -308189,33 +308195,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451803120, - 6451215568, + 6451804704, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -308243,34 +308249,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6451945424, + 6451947008, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -308341,7 +308347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643864, + "complete_object_locator": 6468647960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -308350,32 +308356,32 @@ }, { "type_name": "C_CSGO_TeamSelectCounterTerroristPosition", - "vtable_address": 6465360728, + "vtable_address": 6465364888, "methods": [ 6445466896, 6447876048, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -308384,25 +308390,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447897696, - 6447913424, - 6447916144, + 6460060080, + 6447899264, + 6447914992, + 6447917712, 6443799760, - 6447898672, - 6450497856, + 6447900240, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -308419,13 +308425,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -308433,39 +308439,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -308479,33 +308485,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -308533,34 +308539,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -308570,7 +308576,7 @@ 6444207072, 6444190512, 6443887696, - 6447897312 + 6447898880 ], "bases": [ { @@ -308632,7 +308638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468435344, + "complete_object_locator": 6468439440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -308641,32 +308647,32 @@ }, { "type_name": "C_CSGO_TeamSelectTerroristPosition", - "vtable_address": 6465358968, + "vtable_address": 6465363128, "methods": [ 6445466896, 6447876160, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6447918368, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6447928336, - 6450580640, + 6450411680, + 6447919936, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6447929904, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -308675,25 +308681,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447897712, - 6447913440, - 6447916192, + 6460060080, + 6447899280, + 6447915008, + 6447917760, 6443799760, - 6447898720, - 6450497856, + 6447900288, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -308710,13 +308716,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -308724,39 +308730,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -308770,33 +308776,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447891424, - 6451215568, + 6447892992, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -308824,34 +308830,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -308861,7 +308867,7 @@ 6444207072, 6444190512, 6443887696, - 6447897312 + 6447898880 ], "bases": [ { @@ -308923,7 +308929,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468435192, + "complete_object_locator": 6468439288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -308932,32 +308938,32 @@ }, { "type_name": "C_CSGO_TerroristTeamIntroCamera", - "vtable_address": 6466233296, + "vtable_address": 6466237408, "methods": [ 6445466896, - 6452007376, + 6452008960, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946256, - 6450413456, - 6450585280, - 6450586832, - 6451775968, - 6450715424, - 6450580640, + 6450411680, + 6451947840, + 6450415024, + 6450586848, + 6450588400, + 6451777552, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -308966,25 +308972,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024464, - 6452036112, - 6452038768, + 6460060080, + 6452026048, + 6452037696, + 6452040352, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -309001,13 +309007,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -309015,39 +309021,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -309061,33 +309067,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451803120, - 6451215568, + 6451804704, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -309115,34 +309121,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6451945424, + 6451947008, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -309213,7 +309219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468644016, + "complete_object_locator": 6468648112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -309222,32 +309228,32 @@ }, { "type_name": "C_CSGO_TerroristWingmanIntroCamera", - "vtable_address": 6466235048, + "vtable_address": 6466239160, "methods": [ 6445466896, - 6452007440, + 6452009024, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451946256, - 6450413456, - 6450585280, - 6450586832, - 6451775968, - 6450715424, - 6450580640, + 6450411680, + 6451947840, + 6450415024, + 6450586848, + 6450588400, + 6451777552, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -309256,25 +309262,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024480, - 6452036128, - 6452038816, + 6460060080, + 6452026064, + 6452037712, + 6452040400, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -309291,13 +309297,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -309305,39 +309311,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -309351,33 +309357,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451803120, - 6451215568, + 6451804704, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -309405,34 +309411,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6451945424, + 6451947008, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -309503,7 +309509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468644168, + "complete_object_locator": 6468648264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -309512,7 +309518,7 @@ }, { "type_name": "C_CSGameRules", - "vtable_address": 6465294288, + "vtable_address": 6465298360, "methods": [ 6447785984, 6447783296, @@ -309529,7 +309535,7 @@ 6447757376, 6447785728, 6447784528, - 6451176912, + 6451178480, 6447786656, 6447783264, 6447783536, @@ -309537,21 +309543,21 @@ 6447788048, 6447783312, 6447747472, - 6451205136, + 6451206704, 6447786624, 6447769584, 6447783520, 6447783280, - 6451193488, - 6451189824, - 6451189808, - 6451189840, + 6451195056, + 6451191392, + 6451191376, + 6451191408, 6447769744, 6447770128, 6447755424, 6447766592, 6447758480, - 6451205808, + 6451207376, 6447767488, 6447783920, 6447757520, @@ -309561,28 +309567,28 @@ 6447773680, 6447749648, 6447760000, - 6451208496, + 6451210064, 6447757008, 6447760240, - 6451185072, + 6451186640, 6447786448, - 6451202464, + 6451204032, 6447756640, 6447756672, 6447756656, - 6451202592, + 6451204160, 6447764368, - 6451225776, - 6451198368, - 6451205440, - 6451198160, - 6451198288, - 6451198208, - 6451196544, - 6451190928, - 6451196560, - 6451191104, - 6451228544, + 6451227344, + 6451199936, + 6451207008, + 6451199728, + 6451199856, + 6451199776, + 6451198112, + 6451192496, + 6451198128, + 6451192672, + 6451230112, 6447784256, 6447772688, 6447767456, @@ -309648,7 +309654,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468427624, + "complete_object_locator": 6468431720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -309657,7 +309663,7 @@ }, { "type_name": "C_CSGameRules::NetworkVar_m_RetakeRules", - "vtable_address": 6465294232, + "vtable_address": 6465298304, "methods": [ 6447748112, 6447816144, @@ -309712,7 +309718,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428424, + "complete_object_locator": 6468432520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -309721,31 +309727,31 @@ }, { "type_name": "C_CSGameRulesProxy", - "vtable_address": 6465292480, + "vtable_address": 6465296552, "methods": [ 6445466896, 6447747552, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6444443760, 6443858256, 6443844048, @@ -309755,25 +309761,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6447758528, 6447783952, 6447786032, 6443799760, 6447759152, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -309790,13 +309796,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -309804,39 +309810,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, - 6451230800, - 6450578848, + 6451232368, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -309850,33 +309856,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -309904,34 +309910,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -309988,7 +309994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468427776, + "complete_object_locator": 6468431872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -309997,32 +310003,32 @@ }, { "type_name": "C_CSMinimapBoundary", - "vtable_address": 6465331040, + "vtable_address": 6465335104, "methods": [ 6445466896, 6447808544, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -310031,25 +310037,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6447821184, 6447844048, 6447845536, 6443799760, 6447821264, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -310066,13 +310072,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -310080,39 +310086,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6447851744, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -310126,33 +310132,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -310180,34 +310186,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -310250,7 +310256,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431288, + "complete_object_locator": 6468435384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -310259,32 +310265,32 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 6466204432, + "vtable_address": 6466208592, "methods": [ 6445466720, - 6451775232, - 6450431568, - 6450456544, - 6450597968, - 6451777680, - 6448390464, - 6450413456, - 6451922960, - 6450586832, - 6451776352, - 6450716576, - 6448980064, + 6451776816, + 6450433136, + 6450458112, + 6450599536, + 6451779264, + 6448392032, + 6450415024, + 6451924544, + 6450588400, + 6451777936, + 6450718144, + 6448981632, 6443817760, 6443797616, - 6450587120, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6450588688, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580320, - 6450573696, - 6450573648, + 6450581888, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -310293,26 +310299,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872496, - 6451927552, - 6451942272, + 6460060080, + 6451874080, + 6451929136, + 6451943856, 6443799760, - 6451874288, - 6451878528, + 6451875872, + 6451880112, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587184, + 6450678224, + 6450588752, 6443817344, 6443817328, 6445463744, @@ -310323,153 +310329,153 @@ 6445463696, 6443817712, 6443817696, - 6450414368, + 6450415936, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, - 6451987792, + 6451989376, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6451983728, - 6451944800, - 6451946192, - 6450473504, - 6451915680, - 6450579856, + 6451985312, + 6451946384, + 6451947776, + 6450475072, + 6451917264, + 6450581424, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, - 6450683600, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6450685168, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450499040, - 6448992672, - 6450537248, - 6449036960, - 6450683632, - 6450599344, - 6450580256, - 6450683488, - 6448582688, + 6450500608, + 6448994240, + 6450538816, + 6449038512, + 6450685200, + 6450600912, + 6450581824, + 6450685056, + 6448584256, 6444234384, - 6450597328, - 6448975008, + 6450598896, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, - 6451953104, + 6451954688, 6444142576, 6443875152, - 6451806240, - 6448987456, + 6451807824, + 6448989024, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, - 6448950880, + 6448952448, 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, 6443837344, 6443837776, - 6451877024, + 6451878608, 6444188416, 6444189392, - 6448893792, - 6448893472, - 6448959952, - 6448884016, - 6450412128, + 6448895360, + 6448895040, + 6448961520, + 6448885584, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, - 6450576688, + 6451200448, + 6450578256, 6443818944, 6443869104, - 6448982448, + 6448984016, 6443836208, - 6449067024, - 6451945440, + 6449068576, + 6451947024, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, - 6448980304, + 6448981872, 6443798848, - 6451209568, - 6450577280, + 6451211136, + 6450578848, 6443824224, 6443824208, 6443823632, - 6450652240, - 6451878752, - 6450500240, + 6450653808, + 6451880336, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -310479,136 +310485,136 @@ 6444207072, 6444190512, 6443887696, - 6450578080, + 6450579648, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968432, + 6448970000, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6451883296, + 6451884880, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6451945600, - 6448947760, + 6448822960, + 6448823040, + 6451947184, + 6448949328, 6445485136, - 6448907168, - 6448907520, + 6448908736, + 6448909088, 6445471568, - 6448831984, - 6451878736, + 6448833552, + 6451880320, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6448906992, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, - 6451832528, - 6451842416, - 6450446800, - 6450444992, - 6450438128, - 6448350784, - 6450446784, - 6448350928, - 6450444976, - 6448348640, - 6448349120, - 6450577040, - 6448916384, - 6450553776, - 6450580624, - 6451867440, - 6451942800, - 6450497520, - 6451898640, - 6448587648, - 6448893728, - 6450507504, - 6450573872, - 6450702704, - 6451945408, - 6450587280, - 6448990496, - 6448987808, - 6448379760, - 6451924032, - 6450471168, - 6448952160, - 6448952144, - 6450707008, - 6450583360, - 6448916528, - 6448916224, - 6448916080, - 6450497824, - 6450581104, - 6450556288, - 6450599120, - 6450580032, - 6450579728, - 6450571152, - 6450586848, - 6450491712, - 6451878592, - 6450498032, - 6450445008, - 6450715120, - 6448645184, - 6448391376, - 6451988640, - 6451952640, - 6448534416, - 6451791040, - 6451916224 + 6450509056, + 6448908560, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, + 6451834112, + 6451844000, + 6450448368, + 6450446560, + 6450439696, + 6448352352, + 6450448352, + 6448352496, + 6450446544, + 6448350208, + 6448350688, + 6450578608, + 6448917952, + 6450555344, + 6450582192, + 6451869024, + 6451944384, + 6450499088, + 6451900224, + 6448589216, + 6448895296, + 6450509072, + 6450575440, + 6450704272, + 6451946992, + 6450588848, + 6448992064, + 6448989376, + 6448381328, + 6451925616, + 6450472736, + 6448953728, + 6448953712, + 6450708576, + 6450584928, + 6448918096, + 6448917792, + 6448917648, + 6450499392, + 6450582672, + 6450557856, + 6450600688, + 6450581600, + 6450581296, + 6450572720, + 6450588416, + 6450493280, + 6451880176, + 6450499600, + 6450446576, + 6450716688, + 6448646752, + 6448392944, + 6451990224, + 6451954224, + 6448535984, + 6451792624, + 6451917808 ], "bases": [ { @@ -310796,7 +310802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633408, + "complete_object_locator": 6468637504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -310805,14 +310811,14 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 6466207224, + "vtable_address": 6466211384, "methods": [ - 6451773124, - 6448995376, - 6448972352, - 6448972096, + 6451774708, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -311000,7 +311006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633632, + "complete_object_locator": 6468637728, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -311009,9 +311015,9 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 6466207280, + "vtable_address": 6466211440, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -311199,7 +311205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633672, + "complete_object_locator": 6468637768, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -311208,9 +311214,9 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 6466207296, + "vtable_address": 6466211456, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -311401,7 +311407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633712, + "complete_object_locator": 6468637808, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -311410,10 +311416,10 @@ }, { "type_name": "C_CSObserverPawn", - "vtable_address": 6466207336, + "vtable_address": 6466211496, "methods": [ - 6451773112, - 6451854928 + 6451774696, + 6451856512 ], "bases": [ { @@ -311601,7 +311607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633752, + "complete_object_locator": 6468637848, "offset": 5576, "constructor_displacement": 0, "class_attributes": 1 @@ -311610,32 +311616,32 @@ }, { "type_name": "C_CSPetPlacement", - "vtable_address": 6465334480, + "vtable_address": 6465338544, "methods": [ 6445466896, 6447808608, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -311644,25 +311650,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6447821200, 6447844064, 6447845584, 6443799760, 6447821312, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -311679,13 +311685,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -311693,39 +311699,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6447851760, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -311739,33 +311745,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -311793,34 +311799,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -311863,7 +311869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468431560, + "complete_object_locator": 6468435656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -311872,32 +311878,32 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 6466197496, + "vtable_address": 6466201656, "methods": [ 6445466720, - 6451775360, - 6451823264, - 6450456544, - 6450597968, - 6451777680, - 6451946512, - 6450413456, - 6451923216, - 6450586832, - 6451776000, - 6451972320, - 6451919728, + 6451776944, + 6451824848, + 6450458112, + 6450599536, + 6451779264, + 6451948096, + 6450415024, + 6451924800, + 6450588400, + 6451777584, + 6451973904, + 6451921312, 6443817760, 6443797616, - 6451924320, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6451925904, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580320, - 6450573696, - 6450573648, + 6450581888, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -311906,26 +311912,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872512, - 6451927568, - 6451942320, + 6460060080, + 6451874096, + 6451929152, + 6451943904, 6443799760, - 6451874336, - 6451878544, + 6451875920, + 6451880128, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587184, + 6450678224, + 6450588752, 6443817344, 6443817328, 6445463744, @@ -311936,153 +311942,153 @@ 6445463696, 6443817712, 6443817696, - 6450414368, + 6450415936, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, - 6451987792, + 6451989376, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, - 6448634768, + 6450554384, + 6450499104, + 6450709568, + 6450489632, + 6448636336, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448595680, - 6449035856, + 6450432992, + 6448597248, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6451983728, - 6451944816, - 6451946192, - 6451858016, - 6451915024, - 6450579856, + 6451985312, + 6451946400, + 6451947776, + 6451859600, + 6451916608, + 6450581424, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, - 6450683600, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6451780960, - 6448820960, - 6448821632, + 6450685168, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6451782544, + 6448822528, + 6448823200, 6445471584, - 6450499040, - 6448992672, - 6450537248, - 6451943616, - 6450683632, - 6450599344, - 6450580256, - 6450683488, - 6448582688, + 6450500608, + 6448994240, + 6450538816, + 6451945200, + 6450685200, + 6450600912, + 6450581824, + 6450685056, + 6448584256, 6444234384, - 6451924400, - 6448975008, + 6451925984, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, - 6451953104, + 6451954688, 6444142576, 6443875152, - 6451803520, - 6448987456, + 6451805104, + 6448989024, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, - 6448950880, + 6448952448, 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, 6443837344, 6443837776, - 6451877024, + 6451878608, 6444188416, 6444189392, - 6448893792, - 6451849856, - 6448959952, - 6448884016, - 6450412128, + 6448895360, + 6451851440, + 6448961520, + 6448885584, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, - 6450576688, + 6451200448, + 6450578256, 6443818944, 6443869104, - 6448982448, + 6448984016, 6443836208, - 6449067024, - 6451945440, + 6449068576, + 6451947024, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, - 6448980304, + 6448981872, 6443798848, - 6451209568, - 6450577280, + 6451211136, + 6450578848, 6443824224, 6443824208, - 6451877280, - 6450652240, - 6451878752, - 6450500240, + 6451878864, + 6450653808, + 6451880336, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -312092,140 +312098,140 @@ 6444207072, 6444190512, 6443887696, - 6451918400, + 6451919984, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448598976, - 6448599104, - 6448598368, - 6448599024, - 6448981600, + 6448600544, + 6448600672, + 6448599936, + 6448600592, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6451923648, - 6451834112, - 6448951216, - 6451944656, - 6451866912, - 6448968432, + 6451925232, + 6451835696, + 6448952784, + 6451946240, + 6451868496, + 6448970000, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6451959808, - 6448844240, + 6451961392, + 6448845808, 6445478864, 6445478896, - 6451883200, + 6451884784, 6445484480, - 6448817776, - 6451780832, + 6448819344, + 6451782416, 6445450448, 6445450464, - 6451781008, - 6448821472, - 6449041728, - 6448947760, + 6451782592, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907520, + 6448908736, + 6448909088, 6445471568, - 6451797184, - 6451878736, - 6451926752, - 6451926768, - 6451878688, - 6451914800, - 6448973712, + 6451798768, + 6451880320, + 6451928336, + 6451928352, + 6451880272, + 6451916384, + 6448975280, 6445450400, 6445450368, - 6451775952, - 6448810416, - 6450537024, - 6450698592, + 6451777536, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6448906992, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, - 6451831888, - 6451842224, - 6448551200, - 6448550032, - 6450438128, - 6450445104, - 6448551072, - 6448550976, - 6450444976, - 6448549952, - 6448550112, - 6451917488, - 6448916384, - 6451898848, - 6450580624, - 6451867440, - 6451942800, - 6450497520, - 6451898640, - 6448587648, - 6448893728, - 6451879808, - 6450573872, - 6451952816, - 6451945408, - 6450587280, - 6448990496, - 6448987808, - 6451924416, - 6451923696, - 6448564032, - 6448952160, - 6448952144, - 6450707008, - 6450583360, - 6448916528, - 6448916224, - 6448916080, - 6450497824, - 6450581104, - 6451899408, - 6450599120, - 6450580032, - 6450579728, - 6450571152, - 6450586848, - 6450491712, - 6451878592, - 6450498032, - 6451832896, - 6450715120, - 6448645168, - 6448645152, - 6451988640, - 6451952464, - 6448534096, - 6451790816, - 6451916160, - 6451831728, - 6451832656, - 6451831808, - 6451922000 + 6450509056, + 6448908560, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, + 6451833472, + 6451843808, + 6448552768, + 6448551600, + 6450439696, + 6450446672, + 6448552640, + 6448552544, + 6450446544, + 6448551520, + 6448551680, + 6451919072, + 6448917952, + 6451900432, + 6450582192, + 6451869024, + 6451944384, + 6450499088, + 6451900224, + 6448589216, + 6448895296, + 6451881392, + 6450575440, + 6451954400, + 6451946992, + 6450588848, + 6448992064, + 6448989376, + 6451926000, + 6451925280, + 6448565600, + 6448953728, + 6448953712, + 6450708576, + 6450584928, + 6448918096, + 6448917792, + 6448917648, + 6450499392, + 6450582672, + 6451900992, + 6450600688, + 6450581600, + 6450581296, + 6450572720, + 6450588416, + 6450493280, + 6451880176, + 6450499600, + 6451834480, + 6450716688, + 6448646736, + 6448646720, + 6451990224, + 6451954048, + 6448535664, + 6451792400, + 6451917744, + 6451833312, + 6451834240, + 6451833392, + 6451923584 ], "bases": [ { @@ -312441,7 +312447,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468632680, + "complete_object_locator": 6468636776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -312450,14 +312456,14 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 6466200320, + "vtable_address": 6466204480, "methods": [ - 6451773148, - 6448995376, - 6448972352, - 6448972096, + 6451774732, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -312673,7 +312679,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633168, + "complete_object_locator": 6468637264, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -312682,9 +312688,9 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 6466200376, + "vtable_address": 6466204536, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -312900,7 +312906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633208, + "complete_object_locator": 6468637304, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -312909,9 +312915,9 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 6466200392, + "vtable_address": 6466204552, "methods": [ - 6451867632, + 6451869216, 6447786432, 6447786416, 6447764288 @@ -313130,7 +313136,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633248, + "complete_object_locator": 6468637344, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -313139,10 +313145,10 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 6466200432, + "vtable_address": 6466204592, "methods": [ - 6451773136, - 6451851088 + 6451774720, + 6451852672 ], "bases": [ { @@ -313358,7 +313364,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633288, + "complete_object_locator": 6468637384, "offset": 5576, "constructor_displacement": 0, "class_attributes": 1 @@ -313367,9 +313373,9 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 6466200456, + "vtable_address": 6466204616, "methods": [ - 6448578240 + 6448579808 ], "bases": [ { @@ -313585,7 +313591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633328, + "complete_object_locator": 6468637424, "offset": 5736, "constructor_displacement": 0, "class_attributes": 1 @@ -313594,10 +313600,10 @@ }, { "type_name": "C_CSPlayerPawn", - "vtable_address": 6466200472, + "vtable_address": 6466204632, "methods": [ - 6451912800, - 6451912784 + 6451914384, + 6451914368 ], "bases": [ { @@ -313813,7 +313819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633368, + "complete_object_locator": 6468637464, "offset": 5744, "constructor_displacement": 0, "class_attributes": 1 @@ -313822,44 +313828,44 @@ }, { "type_name": "C_CSPlayerPawn::NetworkVar_m_EconGloves", - "vtable_address": 6466197136, - "methods": [ - 6447916240, - 6451775888, - 6456466320, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, + "vtable_address": 6466201296, + "methods": [ + 6447917808, + 6451777472, + 6456468096, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6447900400, 6447898832, - 6447897264, - 6447898848, - 6456477232, - 6456478336, - 6456457152, - 6456474736, - 6456478112, - 6447898880, - 6447898768, - 6456465632, - 6456465200, - 6456472976, - 6456510704, - 6451913232, - 6447911312, - 6451913440, - 6447900480, + 6447900416, + 6456479008, + 6456480112, + 6456458928, + 6456476512, + 6456479888, 6447900448, - 6447917584, - 6447910176, - 6447913456, - 6447900464 + 6447900336, + 6456467408, + 6456466976, + 6456474752, + 6456512480, + 6451914816, + 6447912880, + 6451915024, + 6447902048, + 6447902016, + 6447919152, + 6447911744, + 6447915024, + 6447902032 ], "bases": [ { @@ -313893,7 +313899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636552, + "complete_object_locator": 6468640648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -313902,12 +313908,12 @@ }, { "type_name": "C_CSPlayerPawn::NetworkVar_m_entitySpottedState", - "vtable_address": 6466197432, + "vtable_address": 6466201592, "methods": [ - 6448210320, - 6451913280, - 6448190608, - 6451913472 + 6448211888, + 6451914864, + 6448192176, + 6451915056 ], "bases": [ { @@ -313927,7 +313933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636688, + "complete_object_locator": 6468640784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -313936,32 +313942,32 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 6466185312, + "vtable_address": 6466189472, "methods": [ 6445466720, - 6451775424, - 6450431568, - 6450456544, - 6450597968, - 6451777680, - 6450687552, - 6450413456, - 6450585936, - 6450586832, - 6451776352, - 6450716576, - 6448980064, + 6451777008, + 6450433136, + 6450458112, + 6450599536, + 6451779264, + 6450689120, + 6450415024, + 6450587504, + 6450588400, + 6451777936, + 6450718144, + 6448981632, 6443817760, 6443797616, - 6450587120, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6450588688, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580320, - 6450573696, - 6450573648, + 6450581888, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -313970,26 +313976,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872528, - 6452036144, - 6451942368, + 6460060080, + 6451874112, + 6452037728, + 6451943952, 6443799760, - 6452027824, - 6451878560, + 6452029408, + 6451880144, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6450587184, + 6450678224, + 6450588752, 6443817344, 6443817328, 6445463744, @@ -314000,153 +314006,153 @@ 6445463696, 6443817712, 6443817696, - 6450414368, + 6450415936, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, - 6451987792, + 6451989376, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6451983728, - 6451945136, - 6451946192, - 6450473504, - 6451915680, - 6450579856, + 6451985312, + 6451946720, + 6451947776, + 6450475072, + 6451917264, + 6450581424, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, - 6450683600, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6450685168, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450499040, - 6448992672, - 6450537248, - 6449036960, - 6450683632, - 6450599344, - 6450580256, - 6450683488, - 6448582688, + 6450500608, + 6448994240, + 6450538816, + 6449038512, + 6450685200, + 6450600912, + 6450581824, + 6450685056, + 6448584256, 6444234384, - 6450597328, - 6448975008, + 6450598896, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, - 6451953104, + 6451954688, 6444142576, 6443875152, - 6451806240, - 6448987456, + 6451807824, + 6448989024, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, - 6448950880, + 6448952448, 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, 6443837344, 6443837776, - 6451877024, + 6451878608, 6444188416, 6444189392, - 6448893792, - 6448893472, - 6448959952, - 6448884016, - 6450412128, + 6448895360, + 6448895040, + 6448961520, + 6448885584, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, - 6450576688, + 6451200448, + 6450578256, 6443818944, 6443869104, - 6448982448, + 6448984016, 6443836208, - 6449067024, - 6451945440, + 6449068576, + 6451947024, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, - 6448980304, + 6448981872, 6443798848, - 6451209568, - 6450577280, + 6451211136, + 6450578848, 6443824224, 6443824208, 6443823632, - 6450652240, - 6451878752, - 6450500240, + 6450653808, + 6451880336, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -314156,136 +314162,136 @@ 6444207072, 6444190512, 6443887696, - 6450578080, + 6450579648, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968432, + 6448970000, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6451883296, + 6451884880, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907520, + 6448908736, + 6448909088, 6445471568, - 6448831984, - 6451878736, + 6448833552, + 6451880320, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6448906992, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, - 6451832528, - 6451842416, - 6450446800, - 6450444992, - 6450438128, - 6450445104, - 6450446784, - 6450446768, - 6450444976, - 6450442496, - 6450445088, - 6450577040, - 6448916384, - 6450553776, - 6450580624, - 6451867440, - 6451942800, - 6450497520, - 6451898640, - 6448587648, - 6448893728, - 6450507504, - 6450573872, - 6450702704, - 6451945408, - 6450587280, - 6448990496, - 6448987808, - 6450597888, - 6451924032, - 6450471168, - 6448952160, - 6448952144, - 6450707008, - 6450583360, - 6448916528, - 6448916224, - 6448916080, - 6450497824, - 6450581104, - 6450556288, - 6450599120, - 6450580032, - 6450579728, - 6450571152, - 6450586848, - 6450491712, - 6451878592, - 6450498032, - 6450445008, - 6450715120, - 6448645184, - 6448645152, - 6451988640, - 6451952640, - 6448534416, - 6451791040, - 6451916224 + 6450509056, + 6448908560, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, + 6451834112, + 6451844000, + 6450448368, + 6450446560, + 6450439696, + 6450446672, + 6450448352, + 6450448336, + 6450446544, + 6450444064, + 6450446656, + 6450578608, + 6448917952, + 6450555344, + 6450582192, + 6451869024, + 6451944384, + 6450499088, + 6451900224, + 6448589216, + 6448895296, + 6450509072, + 6450575440, + 6450704272, + 6451946992, + 6450588848, + 6448992064, + 6448989376, + 6450599456, + 6451925616, + 6450472736, + 6448953728, + 6448953712, + 6450708576, + 6450584928, + 6448918096, + 6448917792, + 6448917648, + 6450499392, + 6450582672, + 6450557856, + 6450600688, + 6450581600, + 6450581296, + 6450572720, + 6450588416, + 6450493280, + 6451880176, + 6450499600, + 6450446576, + 6450716688, + 6448646752, + 6448646720, + 6451990224, + 6451954224, + 6448535984, + 6451792624, + 6451917808 ], "bases": [ { @@ -314459,7 +314465,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468632216, + "complete_object_locator": 6468636312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -314468,14 +314474,14 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 6466188104, + "vtable_address": 6466192264, "methods": [ - 6451773172, - 6448995376, - 6448972352, - 6448972096, + 6451774756, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -314649,7 +314655,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468632520, + "complete_object_locator": 6468636616, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -314658,9 +314664,9 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 6466188160, + "vtable_address": 6466192320, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -314834,7 +314840,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468632560, + "complete_object_locator": 6468636656, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -314843,9 +314849,9 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 6466188176, + "vtable_address": 6466192336, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -315022,7 +315028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468632600, + "complete_object_locator": 6468636696, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -315031,10 +315037,10 @@ }, { "type_name": "C_CSPlayerPawnBase", - "vtable_address": 6466188216, + "vtable_address": 6466192376, "methods": [ - 6451773160, - 6451854928 + 6451774744, + 6451856512 ], "bases": [ { @@ -315208,7 +315214,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468632640, + "complete_object_locator": 6468636736, "offset": 5576, "constructor_displacement": 0, "class_attributes": 1 @@ -315217,32 +315223,32 @@ }, { "type_name": "C_CSPlayerResource", - "vtable_address": 6465680952, + "vtable_address": 6465685128, "methods": [ 6445466896, - 6448520896, + 6448522464, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6448631680, - 6450413456, - 6450585280, - 6450586832, - 6448522864, - 6448641952, - 6450580640, + 6450411680, + 6448633248, + 6450415024, + 6450586848, + 6450588400, + 6448524432, + 6448643520, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -315251,25 +315257,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448570608, - 6448622416, - 6448625568, + 6460060080, + 6448572176, + 6448623984, + 6448627136, 6443799760, - 6448574256, - 6450497856, + 6448575824, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -315286,13 +315292,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -315300,39 +315306,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -315346,33 +315352,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -315400,34 +315406,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -315470,7 +315476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486752, + "complete_object_locator": 6468490848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -315479,32 +315485,32 @@ }, { "type_name": "C_CSTeam", - "vtable_address": 6466229784, + "vtable_address": 6466233896, "methods": [ 6445466896, - 6452007504, + 6452009088, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, 6444393248, 6444429008, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -315513,25 +315519,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024496, - 6452036160, - 6452038864, + 6460060080, + 6452026080, + 6452037744, + 6452040448, 6443799760, - 6452027872, + 6452029456, 6444403312, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -315548,13 +315554,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -315562,39 +315568,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -315608,33 +315614,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -315662,34 +315668,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -315746,7 +315752,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468643120, + "complete_object_locator": 6468647216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -315755,32 +315761,32 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 6465449032, + "vtable_address": 6465453200, "methods": [ 6445466912, - 6448111952, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448113520, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -315789,26 +315795,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156560, - 6448203936, - 6448208400, + 6460060080, + 6448158128, + 6448205504, + 6448209968, 6443799760, - 6448157872, - 6448161424, + 6448159440, + 6448162992, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -315819,98 +315825,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -315921,51 +315927,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -315975,206 +315981,206 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448147344, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448148912, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202176, - 6448210368, - 6448171488, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168144, - 6448204592, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203744, + 6448211936, + 6448173056, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448169712, + 6448206160, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608 ], "bases": [ { @@ -316376,7 +316382,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450168, + "complete_object_locator": 6468454264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -316385,14 +316391,14 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 6465452384, + "vtable_address": 6465456552, "methods": [ - 6448110440, - 6448995376, - 6448972352, - 6448972096, + 6448112008, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -316594,7 +316600,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450208, + "complete_object_locator": 6468454304, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -316603,9 +316609,9 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 6465452440, + "vtable_address": 6465456608, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -316807,7 +316813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450248, + "complete_object_locator": 6468454344, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -316816,12 +316822,12 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 6465452456, + "vtable_address": 6465456624, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -317023,7 +317029,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450288, + "complete_object_locator": 6468454384, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -317032,14 +317038,14 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 6465452496, + "vtable_address": 6465456664, "methods": [ - 6448208436, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210004, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -317241,7 +317247,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450328, + "complete_object_locator": 6468454424, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -317250,10 +317256,10 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 6465452552, + "vtable_address": 6465456720, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -317455,7 +317461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450368, + "complete_object_locator": 6468454464, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -317464,10 +317470,10 @@ }, { "type_name": "C_CSWeaponBase", - "vtable_address": 6465452576, + "vtable_address": 6465456744, "methods": [ - 6448110428, - 6448154928 + 6448111996, + 6448156496 ], "bases": [ { @@ -317669,7 +317675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450408, + "complete_object_locator": 6468454504, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -317678,32 +317684,32 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 6465463728, + "vtable_address": 6465467904, "methods": [ 6445466912, - 6448112016, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448113584, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -317712,26 +317718,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156576, - 6448203952, - 6448208448, + 6460060080, + 6448158144, + 6448205520, + 6448210016, 6443799760, - 6448157920, - 6448161440, + 6448159488, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -317742,98 +317748,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -317844,51 +317850,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -317898,208 +317904,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -318315,7 +318321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468453968, + "complete_object_locator": 6468458064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -318324,14 +318330,14 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 6465467096, + "vtable_address": 6465471272, "methods": [ - 6448110464, - 6448995376, - 6448972352, - 6448972096, + 6448112032, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -318547,7 +318553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454208, + "complete_object_locator": 6468458304, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -318556,9 +318562,9 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 6465467152, + "vtable_address": 6465471328, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -318774,7 +318780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454248, + "complete_object_locator": 6468458344, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -318783,12 +318789,12 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 6465467168, + "vtable_address": 6465471344, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -319004,7 +319010,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454288, + "complete_object_locator": 6468458384, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -319013,14 +319019,14 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 6465467208, + "vtable_address": 6465471384, "methods": [ - 6448208484, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210052, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -319236,7 +319242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454328, + "complete_object_locator": 6468458424, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -319245,10 +319251,10 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 6465467264, + "vtable_address": 6465471440, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -319464,7 +319470,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454368, + "complete_object_locator": 6468458464, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -319473,10 +319479,10 @@ }, { "type_name": "C_CSWeaponBaseGun", - "vtable_address": 6465467288, + "vtable_address": 6465471464, "methods": [ - 6448110452, - 6448154928 + 6448112020, + 6448156496 ], "bases": [ { @@ -319692,7 +319698,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454408, + "complete_object_locator": 6468458504, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -319701,32 +319707,32 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 6465569928, + "vtable_address": 6465574104, "methods": [ 6445466912, - 6448112080, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448113648, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -319735,26 +319741,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156592, - 6448203968, - 6448208496, + 6460060080, + 6448158160, + 6448205536, + 6448210064, 6443799760, - 6448157968, - 6448161424, + 6448159536, + 6448162992, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -319765,98 +319771,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -319867,51 +319873,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -319921,206 +319927,206 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448147344, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448148912, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202176, - 6448210368, - 6448171488, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168144, - 6448204912, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203744, + 6448211936, + 6448173056, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448169712, + 6448206480, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608 ], "bases": [ { @@ -320336,7 +320342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468328, + "complete_object_locator": 6468472424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -320345,14 +320351,14 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 6465573280, + "vtable_address": 6465577456, "methods": [ - 6448110488, - 6448995376, - 6448972352, - 6448972096, + 6448112056, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -320568,7 +320574,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468576, + "complete_object_locator": 6468472672, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -320577,9 +320583,9 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 6465573336, + "vtable_address": 6465577512, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -320795,7 +320801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468616, + "complete_object_locator": 6468472712, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -320804,12 +320810,12 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 6465573352, + "vtable_address": 6465577528, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -321025,7 +321031,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468656, + "complete_object_locator": 6468472752, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -321034,14 +321040,14 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 6465573392, + "vtable_address": 6465577568, "methods": [ - 6448208532, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210100, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -321257,7 +321263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468696, + "complete_object_locator": 6468472792, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -321266,10 +321272,10 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 6465573448, + "vtable_address": 6465577624, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -321485,7 +321491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468736, + "complete_object_locator": 6468472832, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -321494,10 +321500,10 @@ }, { "type_name": "C_CSWeaponBaseShotgun", - "vtable_address": 6465573472, + "vtable_address": 6465577648, "methods": [ - 6448110476, - 6448154928 + 6448112044, + 6448156496 ], "bases": [ { @@ -321713,7 +321719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468776, + "complete_object_locator": 6468472872, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -321722,32 +321728,32 @@ }, { "type_name": "C_Chicken", - "vtable_address": 6466334608, + "vtable_address": 6466338768, "methods": [ 6445466544, - 6452439024, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449381552, - 6450413456, - 6452463120, - 6450586832, - 6452439488, - 6449393072, - 6448980064, + 6452440640, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449383104, + 6450415024, + 6452464736, + 6450588400, + 6452441104, + 6449394624, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -321756,26 +321762,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452445824, - 6452463648, - 6452466624, + 6460060080, + 6452447440, + 6452465264, + 6452468240, 6443799760, - 6452451264, - 6448916960, + 6452452880, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6452463200, + 6450678224, + 6452464816, 6443817344, 6443817328, 6445463744, @@ -321790,14 +321796,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -321805,86 +321811,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6452468000, - 6449042320, - 6450473488, - 6452462464, - 6450579744, + 6450735600, + 6452469616, + 6449043872, + 6450475056, + 6452464080, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6452440288, - 6451215568, + 6452441904, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -321902,37 +321908,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -321942,68 +321948,68 @@ 6444207072, 6444190512, 6443887696, - 6452462544, + 6452464160, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6452441648, + 6452443264, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -322149,7 +322155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468676928, + "complete_object_locator": 6468681024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -322158,14 +322164,14 @@ }, { "type_name": "C_Chicken", - "vtable_address": 6466336856, + "vtable_address": 6466341016, "methods": [ - 6452438728, - 6448995376, - 6448972352, - 6448972096, + 6452440344, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -322311,7 +322317,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677168, + "complete_object_locator": 6468681264, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -322320,9 +322326,9 @@ }, { "type_name": "C_Chicken", - "vtable_address": 6466336912, + "vtable_address": 6466341072, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -322468,7 +322474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677208, + "complete_object_locator": 6468681304, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -322477,14 +322483,14 @@ }, { "type_name": "C_Chicken", - "vtable_address": 6466336928, + "vtable_address": 6466341088, "methods": [ - 6452466660, - 6452445712, - 6452445680, - 6452445728, - 6452445696, - 6452463264 + 6452468276, + 6452447328, + 6452447296, + 6452447344, + 6452447312, + 6452464880 ], "bases": [ { @@ -322630,7 +322636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677248, + "complete_object_locator": 6468681344, "offset": 5152, "constructor_displacement": 0, "class_attributes": 1 @@ -322639,19 +322645,19 @@ }, { "type_name": "C_Chicken::NetworkVar_m_AttributeManager", - "vtable_address": 6466334512, + "vtable_address": 6466338672, "methods": [ - 6452038096, - 6456134176, - 6452462384, - 6452030064, - 6452462432, - 6452439424, - 6456189360, - 6455891920, - 6456294704, - 6456290160, - 6455892304 + 6452039680, + 6456135952, + 6452464000, + 6452031648, + 6452464048, + 6452441040, + 6456191136, + 6455893680, + 6456296480, + 6456291936, + 6455894064 ], "bases": [ { @@ -322685,7 +322691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677288, + "complete_object_locator": 6468681384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -322694,32 +322700,32 @@ }, { "type_name": "C_ClientRagdoll", - "vtable_address": 6465940984, + "vtable_address": 6465945176, "methods": [ 6445466544, - 6450394912, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6450687648, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6450716848, - 6448980064, + 6450396480, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6450689216, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6450718416, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450580384, - 6450573696, - 6450573664, + 6450581952, + 6450575264, + 6450575232, 6443858256, 6443844048, 6443844080, @@ -322728,25 +322734,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485344, + 6460060080, + 6450486912, 6445480048, - 6450666928, + 6450668496, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -322761,15 +322767,15 @@ 6443803216, 6443848592, 6443843664, - 6450683616, + 6450685184, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -322777,79 +322783,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, - 6450555536, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450557104, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, - 6450508368, + 6450600912, + 6450581824, + 6450685040, + 6450509936, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415968, - 6451215568, + 6450417536, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665840, - 6448982528, - 6448995312, - 6448950416, + 6450667408, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -322874,37 +322880,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -322914,61 +322920,61 @@ 6444207072, 6444190512, 6443887696, - 6450578496, + 6450580064, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, - 6450553008, - 6448831984, - 6448918000, + 6448908736, + 6448908912, + 6450554576, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -323058,7 +323064,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560368, + "complete_object_locator": 6468564464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -323067,14 +323073,14 @@ }, { "type_name": "C_ClientRagdoll", - "vtable_address": 6465943176, + "vtable_address": 6465947368, "methods": [ - 6450392324, - 6448995376, - 6448972352, - 6448972096, + 6450393892, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -323164,7 +323170,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560536, + "complete_object_locator": 6468564632, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -323173,9 +323179,9 @@ }, { "type_name": "C_ClientRagdoll", - "vtable_address": 6465943232, + "vtable_address": 6465947424, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -323265,7 +323271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560576, + "complete_object_locator": 6468564672, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -323274,32 +323280,32 @@ }, { "type_name": "C_ColorCorrection", - "vtable_address": 6465938968, + "vtable_address": 6465943160, "methods": [ 6445466896, - 6450394976, + 6450396544, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450716976, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450718544, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -323308,25 +323314,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445463792, 6445480064, - 6450666976, + 6450668544, 6443799760, 6445466288, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -323343,13 +323349,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -323357,39 +323363,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682992, - 6450684032, - 6450473488, - 6450575488, - 6450579744, + 6450735600, + 6450684560, + 6450685600, + 6450475056, + 6450577056, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -323403,33 +323409,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -323457,34 +323463,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -323494,7 +323500,7 @@ 6444207072, 6444190512, 6443887696, - 6450706096 + 6450707664 ], "bases": [ { @@ -323528,7 +323534,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468557728, + "complete_object_locator": 6468561824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -323537,31 +323543,31 @@ }, { "type_name": "C_ColorCorrectionVolume", - "vtable_address": 6465943248, + "vtable_address": 6465947440, "methods": [ 6445466928, - 6450395040, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6450396608, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, - 6450717024, - 6448980192, + 6450718592, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -323571,25 +323577,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485360, - 6450647280, - 6450667024, + 6460060080, + 6450486928, + 6450648848, + 6450668592, 6443799760, - 6450487968, - 6450497920, + 6450489536, + 6450499488, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -323606,13 +323612,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -323620,41 +323626,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6450683008, - 6449042320, - 6450473488, - 6450575664, - 6450579744, + 6450735600, + 6450684576, + 6449043872, + 6450475056, + 6450577232, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -323666,33 +323672,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -323720,34 +323726,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -323757,31 +323763,31 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6450584816, + 6450586384, 6444191248, - 6450580976, - 6450576592, + 6450582544, + 6450578160, 6444190720, 6444190624, 6444191200, @@ -323889,7 +323895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560616, + "complete_object_locator": 6468564712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -323898,14 +323904,14 @@ }, { "type_name": "C_ColorCorrectionVolume", - "vtable_address": 6465945232, + "vtable_address": 6465949424, "methods": [ - 6450392336, - 6448995376, - 6448972352, - 6448972096, + 6450393904, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -324009,7 +324015,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560800, + "complete_object_locator": 6468564896, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -324018,9 +324024,9 @@ }, { "type_name": "C_ColorCorrectionVolume", - "vtable_address": 6465945288, + "vtable_address": 6465949480, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -324124,7 +324130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560840, + "complete_object_locator": 6468564936, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -324133,32 +324139,32 @@ }, { "type_name": "C_CsmFovOverride", - "vtable_address": 6466250368, + "vtable_address": 6466254480, "methods": [ 6445466896, - 6452007568, + 6452009152, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -324167,25 +324173,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024512, - 6452036176, - 6452038912, + 6460060080, + 6452026096, + 6452037760, + 6452040496, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -324202,13 +324208,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -324216,39 +324222,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -324262,33 +324268,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -324316,34 +324322,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -324386,7 +324392,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645552, + "complete_object_locator": 6468649648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -324395,32 +324401,32 @@ }, { "type_name": "C_DEagle", - "vtable_address": 6465588224, + "vtable_address": 6465592400, "methods": [ 6445466912, - 6448112144, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448113712, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -324429,26 +324435,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156608, - 6448203984, - 6448208544, + 6460060080, + 6448158176, + 6448205552, + 6448210112, 6443799760, - 6448158016, - 6448161456, + 6448159584, + 6448163024, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -324459,98 +324465,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -324561,51 +324567,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -324615,208 +324621,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -325046,7 +325052,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470792, + "complete_object_locator": 6468474888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -325055,14 +325061,14 @@ }, { "type_name": "C_DEagle", - "vtable_address": 6465591592, + "vtable_address": 6465595768, "methods": [ - 6448110512, - 6448995376, - 6448972352, - 6448972096, + 6448112080, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -325292,7 +325298,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471048, + "complete_object_locator": 6468475144, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -325301,9 +325307,9 @@ }, { "type_name": "C_DEagle", - "vtable_address": 6465591648, + "vtable_address": 6465595824, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -325533,7 +325539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471088, + "complete_object_locator": 6468475184, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -325542,12 +325548,12 @@ }, { "type_name": "C_DEagle", - "vtable_address": 6465591664, + "vtable_address": 6465595840, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -325777,7 +325783,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471128, + "complete_object_locator": 6468475224, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -325786,14 +325792,14 @@ }, { "type_name": "C_DEagle", - "vtable_address": 6465591704, + "vtable_address": 6465595880, "methods": [ - 6448208580, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210148, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -326023,7 +326029,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471168, + "complete_object_locator": 6468475264, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -326032,10 +326038,10 @@ }, { "type_name": "C_DEagle", - "vtable_address": 6465591760, + "vtable_address": 6465595936, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -326265,7 +326271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471208, + "complete_object_locator": 6468475304, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -326274,10 +326280,10 @@ }, { "type_name": "C_DEagle", - "vtable_address": 6465591784, + "vtable_address": 6465595960, "methods": [ - 6448110500, - 6448154928 + 6448112068, + 6448156496 ], "bases": [ { @@ -326507,7 +326513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471248, + "complete_object_locator": 6468475344, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -326516,32 +326522,32 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 6465591808, + "vtable_address": 6465595984, "methods": [ 6445466912, - 6448112208, - 6450431440, - 6448866800, - 6448035744, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448113776, + 6450433008, + 6448868368, + 6448037312, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -326550,26 +326556,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156624, - 6448204000, - 6448208592, + 6460060080, + 6448158192, + 6448205568, + 6448210160, 6443799760, - 6448158064, - 6448161472, + 6448159632, + 6448163040, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -326580,98 +326586,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448048912, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448050480, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -326682,51 +326688,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -326736,211 +326742,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448003664, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448002208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069568, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448018592, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448005232, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448003776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071136, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448020160, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050544, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448048976, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448034464, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035488, - 6447994912, - 6448035984, - 6448046464, - 6448028672, - 6448170624, - 6448027936, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448018736, - 6448037472, - 6448147040, - 6448027744, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448033248, - 6448027856, - 6448027888, - 6448027040, - 6447992448, - 6448033632, - 6448059312, - 6448151072, - 6448159680 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448036032, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037056, + 6447996480, + 6448037552, + 6448048032, + 6448030240, + 6448172192, + 6448029504, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448020304, + 6448039040, + 6448148608, + 6448029312, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448034816, + 6448029424, + 6448029456, + 6448028608, + 6447994016, + 6448035200, + 6448060880, + 6448152640, + 6448161248 ], "bases": [ { @@ -327170,7 +327176,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471288, + "complete_object_locator": 6468475384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -327179,14 +327185,14 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 6465595200, + "vtable_address": 6465599376, "methods": [ - 6448110536, - 6448995376, - 6448972352, - 6448972096, + 6448112104, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -327416,7 +327422,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471544, + "complete_object_locator": 6468475640, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -327425,9 +327431,9 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 6465595256, + "vtable_address": 6465599432, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -327657,7 +327663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471584, + "complete_object_locator": 6468475680, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -327666,12 +327672,12 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 6465595272, + "vtable_address": 6465599448, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -327901,7 +327907,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471624, + "complete_object_locator": 6468475720, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -327910,14 +327916,14 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 6465595312, + "vtable_address": 6465599488, "methods": [ - 6448208628, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210196, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -328147,7 +328153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471664, + "complete_object_locator": 6468475760, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -328156,10 +328162,10 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 6465595368, + "vtable_address": 6465599544, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -328389,7 +328395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471704, + "complete_object_locator": 6468475800, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -328398,10 +328404,10 @@ }, { "type_name": "C_DecoyGrenade", - "vtable_address": 6465595392, + "vtable_address": 6465599568, "methods": [ - 6448110524, - 6448154928 + 6448112092, + 6448156496 ], "bases": [ { @@ -328631,7 +328637,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471744, + "complete_object_locator": 6468475840, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -328640,32 +328646,32 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 6465406752, + "vtable_address": 6465410912, "methods": [ 6445466912, - 6447989760, - 6450431440, - 6448866800, + 6447991328, + 6450433008, + 6448868368, 6447783584, - 6448816736, - 6448054576, - 6450413456, - 6448034688, - 6450586832, - 6450396992, - 6448065280, - 6448980064, + 6448818304, + 6448056144, + 6450415024, + 6448036256, + 6450588400, + 6450398560, + 6448066848, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -328674,25 +328680,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448009888, - 6448037392, - 6448046224, + 6460060080, + 6448011456, + 6448038960, + 6448047792, 6443799760, - 6448011152, + 6448012720, 6447763584, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -328709,93 +328715,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6448033824, - 6448034240, - 6448911696, + 6448035392, + 6448035808, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6448049136, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6448050704, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447995376, - 6451215568, + 6447996944, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -328820,37 +328826,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -328860,65 +328866,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, 6447771840, 6447756624, @@ -328928,7 +328934,7 @@ 6447750752, 6447764304, 6447764320, - 6448011488, + 6448013056, 6447758496, 6447786240 ], @@ -329076,7 +329082,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445632, + "complete_object_locator": 6468449728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -329085,14 +329091,14 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 6465409072, + "vtable_address": 6465413232, "methods": [ - 6447988776, - 6448995376, - 6448972352, - 6448972096, + 6447990344, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -329238,7 +329244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445832, + "complete_object_locator": 6468449928, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -329247,9 +329253,9 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 6465409128, + "vtable_address": 6465413288, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -329395,7 +329401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445872, + "complete_object_locator": 6468449968, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -329404,9 +329410,9 @@ }, { "type_name": "C_DecoyProjectile", - "vtable_address": 6465409144, + "vtable_address": 6465413304, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -329555,7 +329561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445912, + "complete_object_locator": 6468450008, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -329564,32 +329570,32 @@ }, { "type_name": "C_DynamicLight", - "vtable_address": 6465945408, + "vtable_address": 6465949600, "methods": [ 6445466928, - 6450395104, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6450717072, - 6448980192, + 6450396672, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6450718640, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -329598,25 +329604,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485376, - 6450647296, - 6450667072, + 6460060080, + 6450486944, + 6450648864, + 6450668640, 6443799760, - 6450488016, - 6448917040, + 6450489584, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -329633,13 +329639,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -329647,41 +329653,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6450683024, - 6449042320, - 6450473488, - 6450575888, - 6450579744, + 6450735600, + 6450684592, + 6449043872, + 6450475056, + 6450577456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -329693,33 +329699,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450416448, - 6451215568, + 6450418016, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -329747,34 +329753,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -329784,24 +329790,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -329880,7 +329886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563248, + "complete_object_locator": 6468567344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -329889,14 +329895,14 @@ }, { "type_name": "C_DynamicLight", - "vtable_address": 6465947328, + "vtable_address": 6465951520, "methods": [ - 6450392348, - 6448995376, - 6448972352, - 6448972096, + 6450393916, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -329972,7 +329978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563408, + "complete_object_locator": 6468567504, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -329981,9 +329987,9 @@ }, { "type_name": "C_DynamicLight", - "vtable_address": 6465947384, + "vtable_address": 6465951576, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -330059,7 +330065,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563448, + "complete_object_locator": 6468567544, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -330068,32 +330074,32 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 6465755240, + "vtable_address": 6465759432, "methods": [ 6445466544, - 6449167120, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449381552, - 6450413456, - 6448987824, - 6450586832, - 6449168480, - 6449393072, - 6448980064, + 6449168672, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449383104, + 6450415024, + 6448989392, + 6450588400, + 6449170032, + 6449394624, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -330102,25 +330108,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265504, + 6460060080, + 6449267056, 6445538304, - 6449370832, + 6449372384, 6443799760, 6445536320, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -330136,14 +330142,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -330151,86 +330157,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6449317904, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6449319456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -330248,37 +330254,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -330288,68 +330294,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -330467,7 +330473,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506848, + "complete_object_locator": 6468510944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -330476,14 +330482,14 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 6465757488, + "vtable_address": 6465761680, "methods": [ - 6449163684, - 6448995376, - 6448972352, - 6448972096, + 6449165236, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -330601,7 +330607,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506888, + "complete_object_locator": 6468510984, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -330610,9 +330616,9 @@ }, { "type_name": "C_DynamicProp", - "vtable_address": 6465757544, + "vtable_address": 6465761736, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -330730,7 +330736,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468506928, + "complete_object_locator": 6468511024, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -330739,32 +330745,32 @@ }, { "type_name": "C_DynamicPropAlias_cable_dynamic", - "vtable_address": 6464838336, + "vtable_address": 6464842416, "methods": [ 6445466544, 6445528448, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449381552, - 6450413456, - 6448987824, - 6450586832, - 6449168480, - 6449393072, - 6448980064, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449383104, + 6450415024, + 6448989392, + 6450588400, + 6449170032, + 6449394624, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -330773,25 +330779,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445533440, 6445538320, 6445538464, 6443799760, 6445536320, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -330807,14 +330813,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -330822,86 +330828,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6449317904, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6449319456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -330919,37 +330925,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -330959,68 +330965,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -331152,7 +331158,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288960, + "complete_object_locator": 6468293056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -331161,14 +331167,14 @@ }, { "type_name": "C_DynamicPropAlias_cable_dynamic", - "vtable_address": 6464840584, + "vtable_address": 6464844664, "methods": [ 6445528400, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -331300,7 +331306,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468289152, + "complete_object_locator": 6468293248, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -331309,9 +331315,9 @@ }, { "type_name": "C_DynamicPropAlias_cable_dynamic", - "vtable_address": 6464840640, + "vtable_address": 6464844720, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -331443,7 +331449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468289192, + "complete_object_locator": 6468293288, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -331452,32 +331458,32 @@ }, { "type_name": "C_DynamicPropAlias_dynamic_prop", - "vtable_address": 6464833696, + "vtable_address": 6464837776, "methods": [ 6445466544, 6445528512, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449381552, - 6450413456, - 6448987824, - 6450586832, - 6449168480, - 6449393072, - 6448980064, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449383104, + 6450415024, + 6448989392, + 6450588400, + 6449170032, + 6449394624, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -331486,25 +331492,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445533456, 6445538336, 6445538512, 6443799760, 6445536320, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -331520,14 +331526,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -331535,86 +331541,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6449317904, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6449319456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -331632,37 +331638,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -331672,68 +331678,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -331865,7 +331871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288408, + "complete_object_locator": 6468292504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -331874,14 +331880,14 @@ }, { "type_name": "C_DynamicPropAlias_dynamic_prop", - "vtable_address": 6464835944, + "vtable_address": 6464840024, "methods": [ 6445528412, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -332013,7 +332019,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288608, + "complete_object_locator": 6468292704, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -332022,9 +332028,9 @@ }, { "type_name": "C_DynamicPropAlias_dynamic_prop", - "vtable_address": 6464836000, + "vtable_address": 6464840080, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -332156,7 +332162,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288648, + "complete_object_locator": 6468292744, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -332165,32 +332171,32 @@ }, { "type_name": "C_DynamicPropAlias_prop_dynamic_override", - "vtable_address": 6464836016, + "vtable_address": 6464840096, "methods": [ 6445466544, 6445528576, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449381552, - 6450413456, - 6448987824, - 6450586832, - 6449168480, - 6449393072, - 6448980064, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449383104, + 6450415024, + 6448989392, + 6450588400, + 6449170032, + 6449394624, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -332199,25 +332205,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445533472, 6445538352, 6445538560, 6443799760, 6445536320, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -332233,14 +332239,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -332248,86 +332254,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6449317904, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6449319456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -332345,37 +332351,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -332385,68 +332391,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -332578,7 +332584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288688, + "complete_object_locator": 6468292784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -332587,14 +332593,14 @@ }, { "type_name": "C_DynamicPropAlias_prop_dynamic_override", - "vtable_address": 6464838264, + "vtable_address": 6464842344, "methods": [ 6445528424, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -332726,7 +332732,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288880, + "complete_object_locator": 6468292976, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -332735,9 +332741,9 @@ }, { "type_name": "C_DynamicPropAlias_prop_dynamic_override", - "vtable_address": 6464838320, + "vtable_address": 6464842400, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -332869,7 +332875,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288920, + "complete_object_locator": 6468293016, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -332878,32 +332884,32 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 6466755704, + "vtable_address": 6466759800, "methods": [ 6445466912, - 6455881888, - 6450431440, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6456309296, - 6450586832, - 6450396992, - 6456418624, - 6456295120, + 6455883648, + 6450433008, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6456311072, + 6450588400, + 6450398560, + 6456420400, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -332912,25 +332918,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6456134192, - 6456321184, - 6456395264, + 6460060080, + 6456135968, + 6456322960, + 6456397040, 6443799760, - 6456139504, - 6450497872, + 6456141280, + 6450499440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -332947,93 +332953,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6456290336, - 6456294720, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6456292112, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -333058,37 +333064,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -333098,88 +333104,88 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000 + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776 ], "bases": [ { @@ -333325,7 +333331,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779672, + "complete_object_locator": 6468783768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -333334,14 +333340,14 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 6466758112, + "vtable_address": 6466762208, "methods": [ - 6455868192, - 6448995376, - 6448972352, - 6448972096, + 6455869952, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -333487,7 +333493,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779712, + "complete_object_locator": 6468783808, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -333496,9 +333502,9 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 6466758168, + "vtable_address": 6466762264, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -333644,7 +333650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779752, + "complete_object_locator": 6468783848, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -333653,9 +333659,9 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 6466758184, + "vtable_address": 6466762280, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -333804,7 +333810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779792, + "complete_object_locator": 6468783888, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -333813,14 +333819,14 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 6466758224, + "vtable_address": 6466762320, "methods": [ - 6456395300, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6456397076, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -333966,7 +333972,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779832, + "complete_object_locator": 6468783928, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -333975,10 +333981,10 @@ }, { "type_name": "C_EconEntity", - "vtable_address": 6466758280, + "vtable_address": 6466762376, "methods": [ - 6456278672, - 6456151520 + 6456280448, + 6456153296 ], "bases": [ { @@ -334124,7 +334130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779872, + "complete_object_locator": 6468783968, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -334133,19 +334139,19 @@ }, { "type_name": "C_EconEntity::NetworkVar_m_AttributeManager", - "vtable_address": 6466755608, + "vtable_address": 6466759704, "methods": [ - 6452038096, - 6456134176, - 6456279648, - 6452030064, - 6456279776, - 6455882272, - 6456189360, - 6455891920, - 6456294704, - 6456290160, - 6455892304 + 6452039680, + 6456135952, + 6456281424, + 6452031648, + 6456281552, + 6455884032, + 6456191136, + 6455893680, + 6456296480, + 6456291936, + 6455894064 ], "bases": [ { @@ -334179,7 +334185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468779912, + "complete_object_locator": 6468784008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -334188,44 +334194,44 @@ }, { "type_name": "C_EconItemView", - "vtable_address": 6466832424, - "methods": [ - 6447916240, - 6456442144, - 6456466320, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, + "vtable_address": 6466836536, + "methods": [ + 6447917808, + 6456443920, + 6456468096, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6447900400, 6447898832, - 6447897264, - 6447898848, - 6456477232, - 6456478336, - 6456457152, - 6456474736, - 6456478112, - 6447898880, - 6447898768, - 6456465632, - 6456465200, - 6456472976, - 6456510704, - 6456514816, - 6447911312, - 6456514960, - 6447900480, + 6447900416, + 6456479008, + 6456480112, + 6456458928, + 6456476512, + 6456479888, 6447900448, - 6447917584, - 6447910176, - 6447913456, - 6447900464 + 6447900336, + 6456467408, + 6456466976, + 6456474752, + 6456512480, + 6456516592, + 6447912880, + 6456516736, + 6447902048, + 6447902016, + 6447919152, + 6447911744, + 6447915024, + 6447902032 ], "bases": [ { @@ -334245,7 +334251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468796984, + "complete_object_locator": 6468801080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -334254,12 +334260,12 @@ }, { "type_name": "C_EconItemView::NetworkVar_m_AttributeList", - "vtable_address": 6466832344, + "vtable_address": 6466836456, "methods": [ - 6456530368, - 6456514832, - 6456515040, - 6456514976 + 6456532144, + 6456516608, + 6456516816, + 6456516752 ], "bases": [ { @@ -334279,7 +334285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468798600, + "complete_object_locator": 6468802696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -334288,12 +334294,12 @@ }, { "type_name": "C_EconItemView::NetworkVar_m_NetworkedDynamicAttributes", - "vtable_address": 6466832384, + "vtable_address": 6466836496, "methods": [ - 6456530368, - 6456514880, - 6456515040, - 6456515008 + 6456532144, + 6456516656, + 6456516816, + 6456516784 ], "bases": [ { @@ -334313,7 +334319,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468798728, + "complete_object_locator": 6468802824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -334322,32 +334328,32 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 6466837352, + "vtable_address": 6466841464, "methods": [ 6445466912, - 6456442208, - 6450431440, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6456309296, - 6450586832, - 6450396992, - 6456418624, - 6456295120, + 6456443984, + 6450433008, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6456311072, + 6450588400, + 6450398560, + 6456420400, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -334356,25 +334362,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6456466608, - 6456523552, - 6456530464, + 6460060080, + 6456468384, + 6456525328, + 6456532240, 6443799760, - 6456468096, - 6450497872, + 6456469872, + 6450499440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -334391,93 +334397,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6456533680, - 6449042320, - 6450473504, - 6456519824, - 6456294720, + 6450735600, + 6456535456, + 6449043872, + 6450475072, + 6456521600, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6456458080, - 6451215568, + 6456459856, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -334502,37 +334508,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -334542,100 +334548,100 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456534176, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6456510240, - 6456479760, - 6456525328, - 6456457136, - 6456461616, - 6456536288, - 6456521888, - 6456466624, - 6456479552, - 6456478704, - 6456479088, - 6456531152 + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456535952, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6456512016, + 6456481536, + 6456527104, + 6456458912, + 6456463392, + 6456538064, + 6456523664, + 6456468400, + 6456481328, + 6456480480, + 6456480864, + 6456532928 ], "bases": [ { @@ -334795,7 +334801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797024, + "complete_object_locator": 6468801120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -334804,14 +334810,14 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 6466839856, + "vtable_address": 6466843968, "methods": [ - 6456440164, - 6448995376, - 6448972352, - 6448972096, + 6456441940, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -334971,7 +334977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797232, + "complete_object_locator": 6468801328, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -334980,9 +334986,9 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 6466839912, + "vtable_address": 6466844024, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -335142,7 +335148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797272, + "complete_object_locator": 6468801368, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -335151,9 +335157,9 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 6466839928, + "vtable_address": 6466844040, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -335316,7 +335322,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797312, + "complete_object_locator": 6468801408, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -335325,14 +335331,14 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 6466839968, + "vtable_address": 6466844080, "methods": [ - 6456530500, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6456532276, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -335492,7 +335498,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797352, + "complete_object_locator": 6468801448, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -335501,10 +335507,10 @@ }, { "type_name": "C_EconWearable", - "vtable_address": 6466840024, + "vtable_address": 6466844136, "methods": [ - 6456278672, - 6456151520 + 6456280448, + 6456153296 ], "bases": [ { @@ -335664,7 +335670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468797392, + "complete_object_locator": 6468801488, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -335673,32 +335679,32 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 6465947416, + "vtable_address": 6465951608, "methods": [ 6445466928, - 6450395168, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6450717216, - 6448980192, + 6450396736, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6450718784, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -335707,25 +335713,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445463808, 6445480080, - 6450667120, + 6450668688, 6443799760, 6445466336, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -335742,13 +335748,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -335756,41 +335762,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6450683040, - 6449042320, - 6450473488, - 6450576080, - 6450579744, + 6450735600, + 6450684608, + 6449043872, + 6450475056, + 6450577648, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -335802,33 +335808,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450418240, - 6451215568, + 6450419808, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -335856,34 +335862,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500112, - 6450500240, + 6450653808, + 6450501680, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -335893,24 +335899,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -336003,7 +336009,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468562920, + "complete_object_locator": 6468567016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -336012,14 +336018,14 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 6465949336, + "vtable_address": 6465953528, "methods": [ - 6450392360, - 6448995376, - 6448972352, - 6448972096, + 6450393928, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -336109,7 +336115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563128, + "complete_object_locator": 6468567224, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -336118,9 +336124,9 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 6465949392, + "vtable_address": 6465953584, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -336210,7 +336216,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563168, + "complete_object_locator": 6468567264, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -336219,12 +336225,12 @@ }, { "type_name": "C_EntityDissolve", - "vtable_address": 6465949408, + "vtable_address": 6465953600, "methods": [ - 6447935888, - 6450685152, - 6447950256, - 6447953936 + 6447937456, + 6450686720, + 6447951824, + 6447955504 ], "bases": [ { @@ -336314,7 +336320,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563208, + "complete_object_locator": 6468567304, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -336323,32 +336329,32 @@ }, { "type_name": "C_EntityFlame", - "vtable_address": 6465949672, + "vtable_address": 6465953864, "methods": [ 6445466896, - 6450395232, + 6450396800, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450397424, - 6450717296, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398992, + 6450718864, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -336357,25 +336363,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485392, + 6460060080, + 6450486960, 6445514384, - 6450667168, + 6450668736, 6443799760, 6445505264, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -336392,13 +336398,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -336406,39 +336412,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450576256, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450577824, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -336452,33 +336458,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450419232, - 6451215568, + 6450420800, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -336506,34 +336512,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -336576,7 +336582,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563488, + "complete_object_locator": 6468567584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -336585,31 +336591,31 @@ }, { "type_name": "C_EnvCombinedLightProbeVolume", - "vtable_address": 6464495096, + "vtable_address": 6464499192, "methods": [ 6445466896, 6444065152, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444236144, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066880, 6444244800, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6444190560, 6443858256, 6443844048, @@ -336619,25 +336625,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444156416, 6444206992, 6444215632, 6443799760, 6444159776, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -336654,13 +336660,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -336668,39 +336674,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250384, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444234400, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -336714,33 +336720,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, 6444196256, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -336768,34 +336774,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -336894,7 +336900,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468237688, + "complete_object_locator": 6468241784, "offset": 0, "constructor_displacement": 0, "class_attributes": 5 @@ -336903,7 +336909,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolume", - "vtable_address": 6464496848, + "vtable_address": 6464500944, "methods": [ 6444064500, 6444248304, @@ -337002,7 +337008,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238104, + "complete_object_locator": 6468242200, "offset": 1528, "constructor_displacement": 0, "class_attributes": 5 @@ -337011,7 +337017,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolume", - "vtable_address": 6464496920, + "vtable_address": 6464501016, "methods": [ 6444064512, 6444305840, @@ -337110,7 +337116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238144, + "complete_object_locator": 6468242240, "offset": 1656, "constructor_displacement": 0, "class_attributes": 5 @@ -337119,31 +337125,31 @@ }, { "type_name": "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 6464497560, + "vtable_address": 6464501656, "methods": [ 6445466896, 6444065216, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444236144, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066880, 6444244800, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6444190560, 6443858256, 6443844048, @@ -337153,25 +337159,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444156432, 6444207008, 6444215680, 6443799760, 6444159776, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -337188,13 +337194,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -337202,39 +337208,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250384, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444234400, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -337248,33 +337254,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, 6444196256, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -337302,34 +337308,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -337442,7 +337448,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238184, + "complete_object_locator": 6468242280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -337451,7 +337457,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 6464499312, + "vtable_address": 6464503408, "methods": [ 6444064524, 6444248304, @@ -337564,7 +337570,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238368, + "complete_object_locator": 6468242464, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -337573,7 +337579,7 @@ }, { "type_name": "C_EnvCombinedLightProbeVolumeAlias_func_combined_light_probe_volume", - "vtable_address": 6464499384, + "vtable_address": 6464503480, "methods": [ 6444064536, 6444305840, @@ -337686,7 +337692,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238408, + "complete_object_locator": 6468242504, "offset": 1656, "constructor_displacement": 0, "class_attributes": 1 @@ -337695,31 +337701,31 @@ }, { "type_name": "C_EnvCubemap", - "vtable_address": 6464501312, + "vtable_address": 6464505408, "methods": [ 6445466896, 6444065280, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444236240, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444068448, 6444244928, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6444190592, 6443858256, 6443844048, @@ -337729,25 +337735,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444156448, 6444207024, 6444215728, 6443799760, 6444159824, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -337764,13 +337770,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -337778,39 +337784,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250400, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444234416, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -337824,33 +337830,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, 6444196912, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -337878,34 +337884,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -337976,7 +337982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238584, + "complete_object_locator": 6468242680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -337985,7 +337991,7 @@ }, { "type_name": "C_EnvCubemap", - "vtable_address": 6464503064, + "vtable_address": 6464507160, "methods": [ 6444064548, 6444248304, @@ -338056,7 +338062,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238776, + "complete_object_locator": 6468242872, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -338065,31 +338071,31 @@ }, { "type_name": "C_EnvCubemapBox", - "vtable_address": 6464503136, + "vtable_address": 6464507232, "methods": [ 6445466896, 6444065472, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444236240, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444068448, 6444244928, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6444190592, 6443858256, 6443844048, @@ -338099,25 +338105,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444156464, 6444207040, 6444215776, 6443799760, 6444159872, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -338134,13 +338140,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -338148,39 +338154,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250400, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444234416, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -338194,33 +338200,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, 6444196912, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -338248,34 +338254,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -338360,7 +338366,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238816, + "complete_object_locator": 6468242912, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -338369,7 +338375,7 @@ }, { "type_name": "C_EnvCubemapBox", - "vtable_address": 6464504888, + "vtable_address": 6464508984, "methods": [ 6444064560, 6444248304, @@ -338454,7 +338460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238976, + "complete_object_locator": 6468243072, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -338463,32 +338469,32 @@ }, { "type_name": "C_EnvCubemapFog", - "vtable_address": 6464499488, + "vtable_address": 6464503584, "methods": [ 6445466896, 6444065664, 6444122752, - 6460051264, + 6460053456, 6444198448, - 6450410112, + 6450411680, 6444236288, - 6450413456, + 6450415024, 6444195424, - 6450586832, + 6450588400, 6444069056, 6444244992, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444139984, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -338497,25 +338503,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444156480, 6444293808, 6444215824, 6443799760, 6444285536, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -338532,13 +338538,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -338546,39 +338552,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250416, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -338592,33 +338598,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -338646,34 +338652,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -338716,7 +338722,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468238448, + "complete_object_locator": 6468242544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -338725,32 +338731,32 @@ }, { "type_name": "C_EnvDecal", - "vtable_address": 6466044224, + "vtable_address": 6466048432, "methods": [ 6445466928, - 6451088096, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6451089296, - 6451156464, - 6448980192, + 6451089664, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6451090864, + 6451158032, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -338759,25 +338765,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451116960, + 6460060080, + 6451118528, 6445538368, - 6451142480, + 6451144048, 6443799760, 6445536368, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -338794,13 +338800,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -338808,41 +338814,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6451132320, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6451133888, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -338854,33 +338860,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -338908,34 +338914,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6451148224, + 6448975232, + 6451149792, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6451120368, - 6451120688, + 6450653808, + 6451121936, + 6451122256, 6444219248, 6444185328, 6444185280, @@ -338945,24 +338951,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -339041,7 +339047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589096, + "complete_object_locator": 6468593192, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -339050,14 +339056,14 @@ }, { "type_name": "C_EnvDecal", - "vtable_address": 6466046144, + "vtable_address": 6466050352, "methods": [ - 6451086492, - 6448995376, - 6448972352, - 6448972096, + 6451088060, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -339133,7 +339139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589256, + "complete_object_locator": 6468593352, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -339142,9 +339148,9 @@ }, { "type_name": "C_EnvDecal", - "vtable_address": 6466046200, + "vtable_address": 6466050408, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -339220,7 +339226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589296, + "complete_object_locator": 6468593392, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -339229,32 +339235,32 @@ }, { "type_name": "C_EnvDetailController", - "vtable_address": 6466046328, + "vtable_address": 6466050536, "methods": [ 6445466896, - 6451088240, + 6451089808, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -339263,25 +339269,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451116976, + 6460060080, + 6451118544, 6444443808, - 6451142528, + 6451144096, 6443799760, 6444439296, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -339298,13 +339304,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -339312,39 +339318,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, - 6451157920, - 6450578848, + 6451159488, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -339358,33 +339364,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -339412,34 +339418,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -339482,7 +339488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589336, + "complete_object_locator": 6468593432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -339491,31 +339497,31 @@ }, { "type_name": "C_EnvLightProbeVolume", - "vtable_address": 6464520360, + "vtable_address": 6464524456, "methods": [ 6445466896, 6444275264, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444297888, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444276112, 6444299584, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6444291648, 6443858256, 6443844048, @@ -339525,25 +339531,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284704, 6444293824, 6444297232, 6443799760, 6444285584, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -339560,13 +339566,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -339574,39 +339580,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308256, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444297824, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -339620,33 +339626,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, 6444293216, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -339674,34 +339680,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -339772,7 +339778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240896, + "complete_object_locator": 6468244992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -339781,7 +339787,7 @@ }, { "type_name": "C_EnvLightProbeVolume", - "vtable_address": 6464522112, + "vtable_address": 6464526208, "methods": [ 6444275168, 6444305840, @@ -339852,7 +339858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241088, + "complete_object_locator": 6468245184, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -339861,32 +339867,32 @@ }, { "type_name": "C_EnvParticleGlow", - "vtable_address": 6465841568, + "vtable_address": 6465845760, "methods": [ 6445466928, - 6449820464, - 6448846864, - 6460051264, - 6449915392, - 6448816832, - 6449937648, - 6450413456, - 6449913648, - 6450586832, - 6449821280, - 6449952016, - 6448980192, + 6449822032, + 6448848432, + 6460053456, + 6449916960, + 6448818400, + 6449939216, + 6450415024, + 6449915216, + 6450588400, + 6449822848, + 6449953584, + 6448981760, 6443817760, 6443797616, - 6449914336, - 6448882720, + 6449915904, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6449908224, + 6448981552, + 6450575264, + 6449909792, 6443858256, 6443844048, 6443844080, @@ -339895,25 +339901,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449877152, - 6449918096, - 6449926048, + 6460060080, + 6449878720, + 6449919664, + 6449927616, 6443799760, - 6449884192, - 6448917040, + 6449885760, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -339930,13 +339936,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -339944,41 +339950,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -339990,33 +339996,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6449831584, - 6451215568, + 6449833152, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -340044,34 +340050,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -340081,28 +340087,28 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6449878176 + 6449879744 ], "bases": [ { @@ -340192,7 +340198,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528272, + "complete_object_locator": 6468532368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -340201,14 +340207,14 @@ }, { "type_name": "C_EnvParticleGlow", - "vtable_address": 6465843496, + "vtable_address": 6465847688, "methods": [ - 6449818904, - 6448995376, - 6448972352, - 6448972096, + 6449820472, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -340298,7 +340304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528440, + "complete_object_locator": 6468532536, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -340307,9 +340313,9 @@ }, { "type_name": "C_EnvParticleGlow", - "vtable_address": 6465843552, + "vtable_address": 6465847744, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -340399,7 +340405,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528480, + "complete_object_locator": 6468532576, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -340408,32 +340414,32 @@ }, { "type_name": "C_EnvSky", - "vtable_address": 6464524720, + "vtable_address": 6464528816, "methods": [ 6445466928, 6444275328, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444297936, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444277424, 6444299664, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -340442,25 +340448,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284720, 6444293840, 6444297280, 6443799760, 6444285632, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -340477,13 +340483,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -340491,41 +340497,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308272, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6444297840, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -340537,33 +340543,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -340591,34 +340597,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -340628,24 +340634,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -340724,7 +340730,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241264, + "complete_object_locator": 6468245360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -340733,14 +340739,14 @@ }, { "type_name": "C_EnvSky", - "vtable_address": 6464526640, + "vtable_address": 6464530736, "methods": [ 6444275180, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -340816,7 +340822,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241424, + "complete_object_locator": 6468245520, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -340825,9 +340831,9 @@ }, { "type_name": "C_EnvSky", - "vtable_address": 6464526696, + "vtable_address": 6464530792, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -340903,7 +340909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241464, + "complete_object_locator": 6468245560, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -340912,32 +340918,32 @@ }, { "type_name": "C_EnvVolumetricFogController", - "vtable_address": 6464530704, + "vtable_address": 6464534800, "methods": [ 6445466896, 6444275584, 6444122752, - 6460051264, + 6460053456, 6444293584, - 6450410112, + 6450411680, 6444297984, - 6450413456, + 6450415024, 6444291952, - 6450586832, + 6450588400, 6444277568, 6444299840, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444282800, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -340946,25 +340952,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284736, 6444293856, 6444297328, 6443799760, 6444285680, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -340981,13 +340987,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -340995,39 +341001,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308288, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -341041,33 +341047,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -341095,34 +341101,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -341165,7 +341171,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241648, + "complete_object_locator": 6468245744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -341174,32 +341180,32 @@ }, { "type_name": "C_EnvVolumetricFogVolume", - "vtable_address": 6464533232, + "vtable_address": 6464537328, "methods": [ 6445466896, 6444275728, 6444122752, - 6460051264, + 6460053456, 6444293600, - 6450410112, + 6450411680, 6444298384, - 6450413456, + 6450415024, 6444292336, - 6450586832, + 6450588400, 6444277584, 6444299888, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444282816, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -341208,25 +341214,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284752, 6444293872, 6444297376, 6443799760, 6444285728, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -341243,13 +341249,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -341257,39 +341263,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308304, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -341303,33 +341309,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -341357,34 +341363,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -341427,7 +341433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241784, + "complete_object_locator": 6468245880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -341436,32 +341442,32 @@ }, { "type_name": "C_EnvWind", - "vtable_address": 6466146264, + "vtable_address": 6466150472, "methods": [ 6445466896, - 6451615392, + 6451616976, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6451647200, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6451648784, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -341470,25 +341476,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451629952, - 6451639696, - 6451641024, + 6460060080, + 6451631536, + 6451641280, + 6451642608, 6443799760, - 6451630752, - 6450497856, + 6451632336, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -341505,13 +341511,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -341519,39 +341525,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6451642768, - 6450684032, - 6450473488, - 6451636368, - 6450579744, + 6450735600, + 6451644352, + 6450685600, + 6450475056, + 6451637952, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -341565,33 +341571,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451617072, - 6451215568, + 6451618656, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -341619,34 +341625,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -341689,7 +341695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620368, + "complete_object_locator": 6468624464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -341698,12 +341704,12 @@ }, { "type_name": "C_EnvWind::NetworkVar_m_EnvWindShared", - "vtable_address": 6466146224, + "vtable_address": 6466150432, "methods": [ 6444297472, - 6451636272, + 6451637856, 6444291632, - 6451636320 + 6451637904 ], "bases": [ { @@ -341723,7 +341729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620504, + "complete_object_locator": 6468624600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -341732,32 +341738,32 @@ }, { "type_name": "C_EnvWindClientside", - "vtable_address": 6465912776, + "vtable_address": 6465916968, "methods": [ 6445466896, - 6450395376, + 6450396944, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687840, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450717328, - 6450580640, + 6450411680, + 6450689408, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450718896, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -341766,25 +341772,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485408, - 6450647312, - 6450667216, + 6460060080, + 6450486976, + 6450648880, + 6450668784, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -341801,13 +341807,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -341815,39 +341821,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -341861,33 +341867,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -341915,34 +341921,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -341985,7 +341991,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468559936, + "complete_object_locator": 6468564032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -341994,12 +342000,12 @@ }, { "type_name": "C_EnvWindClientside::NetworkVar_m_EnvWindShared", - "vtable_address": 6465912736, + "vtable_address": 6465916928, "methods": [ 6444297472, - 6450569232, + 6450570800, 6444291632, - 6450569328 + 6450570896 ], "bases": [ { @@ -342019,7 +342025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468560072, + "complete_object_locator": 6468564168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -342028,32 +342034,32 @@ }, { "type_name": "C_EnvWindController", - "vtable_address": 6464535320, + "vtable_address": 6464539416, "methods": [ 6445466896, 6444275792, 6444122752, - 6460051264, + 6460053456, 6444293616, - 6450410112, + 6450411680, 6444298432, - 6450413456, + 6450415024, 6444292912, - 6450586832, + 6450588400, 6444277600, 6444300032, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444282832, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -342062,25 +342068,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284768, 6444293888, 6444297424, 6443799760, 6444285776, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -342097,13 +342103,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -342111,39 +342117,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308320, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, + 6450735600, + 6450684352, + 6450685600, + 6450475056, 6444291680, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -342157,33 +342163,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6444279584, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -342211,34 +342217,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -342281,7 +342287,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241920, + "complete_object_locator": 6468246016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -342290,7 +342296,7 @@ }, { "type_name": "C_EnvWindController::NetworkVar_m_EnvWindShared", - "vtable_address": 6464535280, + "vtable_address": 6464539376, "methods": [ 6444297472, 6444291552, @@ -342315,7 +342321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468242056, + "complete_object_locator": 6468246152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -342324,17 +342330,17 @@ }, { "type_name": "C_EnvWindShared", - "vtable_address": 6466040808, + "vtable_address": 6466045016, "methods": [ 6444297472, - 6451131744, + 6451133312, 6444291632, - 6451131872 + 6451133440 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468587944, + "complete_object_locator": 6468592040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -342343,32 +342349,32 @@ }, { "type_name": "C_EnvWindVolume", - "vtable_address": 6464545656, + "vtable_address": 6464549752, "methods": [ 6445466896, 6444334400, 6444122752, - 6460051264, + 6460053456, 6444364144, - 6450410112, + 6450411680, 6444373680, - 6450413456, + 6450415024, 6444363392, - 6450586832, + 6450588400, 6444335152, 6444376624, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444341504, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -342377,25 +342383,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444347984, 6444365872, 6444370352, 6443799760, 6444351552, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -342412,13 +342418,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -342426,39 +342432,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377616, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -342472,33 +342478,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -342526,34 +342532,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -342596,7 +342602,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243144, + "complete_object_locator": 6468247240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -342605,32 +342611,32 @@ }, { "type_name": "C_FireCrackerBlast", - "vtable_address": 6466339240, + "vtable_address": 6466343400, "methods": [ 6445466928, - 6452439296, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6452439552, - 6449062640, - 6448980192, + 6452440912, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6452441168, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -342639,25 +342645,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452445840, - 6452463664, - 6452466672, + 6460060080, + 6452447456, + 6452465280, + 6452468288, 6443799760, - 6452451312, - 6448917040, + 6452452928, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -342674,13 +342680,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -342688,41 +342694,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6452462784, - 6452463008, - 6450496704, + 6452464400, + 6452464624, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6452468080, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6452469696, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -342734,33 +342740,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6452440320, - 6451215568, + 6452441936, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -342788,34 +342794,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6452452048, + 6450653808, + 6450501568, + 6452453664, 6444219248, 6444185328, 6444185280, @@ -342825,28 +342831,28 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6452472464 + 6452474080 ], "bases": [ { @@ -342936,7 +342942,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468678016, + "complete_object_locator": 6468682112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -342945,14 +342951,14 @@ }, { "type_name": "C_FireCrackerBlast", - "vtable_address": 6466341168, + "vtable_address": 6466345328, "methods": [ - 6452438740, - 6448995376, - 6448972352, - 6448972096, + 6452440356, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -343042,7 +343048,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468678184, + "complete_object_locator": 6468682280, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -343051,9 +343057,9 @@ }, { "type_name": "C_FireCrackerBlast", - "vtable_address": 6466341224, + "vtable_address": 6466345384, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -343143,7 +343149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468678224, + "complete_object_locator": 6468682320, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -343152,32 +343158,32 @@ }, { "type_name": "C_Fish", - "vtable_address": 6465953080, + "vtable_address": 6465957272, "methods": [ 6445466544, - 6450395456, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6450397952, - 6449061952, - 6448980064, + 6450397024, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6450399520, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -343186,25 +343192,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504224, 6445514400, - 6450667264, + 6450668832, 6443799760, 6445505312, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -343221,13 +343227,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -343235,79 +343241,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450576496, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450578064, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450419264, - 6451215568, + 6450420832, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -343332,37 +343338,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -343372,61 +343378,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -343516,7 +343522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563624, + "complete_object_locator": 6468567720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -343525,14 +343531,14 @@ }, { "type_name": "C_Fish", - "vtable_address": 6465955272, + "vtable_address": 6465959464, "methods": [ - 6450392372, - 6448995376, - 6448972352, - 6448972096, + 6450393940, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -343622,7 +343628,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563792, + "complete_object_locator": 6468567888, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -343631,9 +343637,9 @@ }, { "type_name": "C_Fish", - "vtable_address": 6465955328, + "vtable_address": 6465959520, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -343723,7 +343729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468563832, + "complete_object_locator": 6468567928, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -343732,32 +343738,32 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 6465603312, + "vtable_address": 6465607488, "methods": [ 6445466912, - 6448238192, - 6450431440, - 6448866800, - 6448035744, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448239760, + 6450433008, + 6448868368, + 6448037312, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -343766,26 +343772,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246144, - 6448249216, - 6448257776, + 6460060080, + 6448247712, + 6448250784, + 6448259344, 6443799760, - 6448246608, - 6448247360, + 6448248176, + 6448248928, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -343796,98 +343802,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448048912, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448050480, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -343898,51 +343904,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -343952,211 +343958,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448003664, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448002208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069568, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448018592, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448005232, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448003776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071136, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448020160, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050544, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448048976, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448034464, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035488, - 6447994912, - 6448035984, - 6448046464, - 6448028672, - 6448170624, - 6448027936, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448018736, - 6448037472, - 6448147040, - 6448027744, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448033248, - 6448027856, - 6448027888, - 6448027040, - 6447992448, - 6448033632, - 6448059312, - 6448243264, - 6448246992 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448036032, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037056, + 6447996480, + 6448037552, + 6448048032, + 6448030240, + 6448172192, + 6448029504, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448020304, + 6448039040, + 6448148608, + 6448029312, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448034816, + 6448029424, + 6448029456, + 6448028608, + 6447994016, + 6448035200, + 6448060880, + 6448244832, + 6448248560 ], "bases": [ { @@ -344386,7 +344392,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472872, + "complete_object_locator": 6468476968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -344395,14 +344401,14 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 6465606704, + "vtable_address": 6465610880, "methods": [ - 6448237836, - 6448995376, - 6448972352, - 6448972096, + 6448239404, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -344632,7 +344638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473128, + "complete_object_locator": 6468477224, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -344641,9 +344647,9 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 6465606760, + "vtable_address": 6465610936, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -344873,7 +344879,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473168, + "complete_object_locator": 6468477264, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -344882,12 +344888,12 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 6465606776, + "vtable_address": 6465610952, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -345117,7 +345123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473208, + "complete_object_locator": 6468477304, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -345126,14 +345132,14 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 6465606816, + "vtable_address": 6465610992, "methods": [ - 6448257812, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259380, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -345363,7 +345369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473248, + "complete_object_locator": 6468477344, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -345372,10 +345378,10 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 6465606872, + "vtable_address": 6465611048, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -345605,7 +345611,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473288, + "complete_object_locator": 6468477384, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -345614,10 +345620,10 @@ }, { "type_name": "C_Flashbang", - "vtable_address": 6465606896, + "vtable_address": 6465611072, "methods": [ - 6448237824, - 6448154928 + 6448239392, + 6448156496 ], "bases": [ { @@ -345847,7 +345853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473328, + "complete_object_locator": 6468477424, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -345856,32 +345862,32 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 6466726000, + "vtable_address": 6466730096, "methods": [ 6445466912, - 6455702368, - 6450431440, - 6448866800, + 6455704128, + 6450433008, + 6448868368, 6447783584, - 6448816736, - 6448054576, - 6450413456, - 6448034688, - 6450586832, - 6450396992, - 6448065280, - 6448980064, + 6448818304, + 6448056144, + 6450415024, + 6448036256, + 6450588400, + 6450398560, + 6448066848, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -345890,25 +345896,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723680, - 6455739216, - 6455741632, + 6460060080, + 6455725472, + 6455741008, + 6455743424, 6443799760, - 6455724080, + 6455725872, 6447763584, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -345925,93 +345931,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447995376, - 6451215568, + 6447996944, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -346036,37 +346042,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -346076,65 +346082,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, 6447771840, 6447756624, @@ -346144,7 +346150,7 @@ 6447750752, 6447764304, 6447764320, - 6455724176, + 6455725968, 6447758496, 6447786240 ], @@ -346292,7 +346298,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774752, + "complete_object_locator": 6468778848, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -346301,14 +346307,14 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 6466728320, + "vtable_address": 6466732416, "methods": [ - 6455701672, - 6448995376, - 6448972352, - 6448972096, + 6455703432, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -346454,7 +346460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774952, + "complete_object_locator": 6468779048, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -346463,9 +346469,9 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 6466728376, + "vtable_address": 6466732472, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -346611,7 +346617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468774992, + "complete_object_locator": 6468779088, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -346620,9 +346626,9 @@ }, { "type_name": "C_FlashbangProjectile", - "vtable_address": 6466728392, + "vtable_address": 6466732488, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -346771,7 +346777,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775032, + "complete_object_locator": 6468779128, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -346780,32 +346786,32 @@ }, { "type_name": "C_FogController", - "vtable_address": 6464547616, + "vtable_address": 6464551712, "methods": [ 6445466896, 6444334464, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444373728, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444335168, - 6450715424, - 6450580640, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444341520, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -346814,25 +346820,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348000, 6444365888, 6444370400, 6443799760, 6444351600, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -346849,13 +346855,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -346863,39 +346869,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377632, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -346909,33 +346915,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -346963,34 +346969,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -347033,7 +347039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468242528, + "complete_object_locator": 6468246624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -347042,7 +347048,7 @@ }, { "type_name": "C_FogController::NetworkVar_m_fog", - "vtable_address": 6464547576, + "vtable_address": 6464551672, "methods": [ 6443865456, 6444362560, @@ -347067,7 +347073,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243280, + "complete_object_locator": 6468247376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -347076,31 +347082,31 @@ }, { "type_name": "C_FootstepControl", - "vtable_address": 6465674824, + "vtable_address": 6465679000, "methods": [ 6445466928, - 6448520960, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6448631696, - 6450413456, - 6450585280, - 6450586832, - 6448522896, - 6448641984, - 6448980192, + 6448522528, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6448633264, + 6450415024, + 6450586848, + 6450588400, + 6448524464, + 6448643552, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -347110,25 +347116,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448570624, - 6448622432, - 6448625616, + 6460060080, + 6448572192, + 6448624000, + 6448627184, 6443799760, - 6448574304, - 6448917040, + 6448575872, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -347145,13 +347151,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -347159,41 +347165,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -347205,33 +347211,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -347259,34 +347265,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -347296,24 +347302,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -347428,7 +347434,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486064, + "complete_object_locator": 6468490160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -347437,14 +347443,14 @@ }, { "type_name": "C_FootstepControl", - "vtable_address": 6465676808, + "vtable_address": 6465680984, "methods": [ - 6448519892, - 6448995376, - 6448972352, - 6448972096, + 6448521460, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -347548,7 +347554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486240, + "complete_object_locator": 6468490336, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -347557,9 +347563,9 @@ }, { "type_name": "C_FootstepControl", - "vtable_address": 6465676864, + "vtable_address": 6465681040, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -347663,7 +347669,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486280, + "complete_object_locator": 6468490376, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -347672,32 +347678,32 @@ }, { "type_name": "C_FuncBrush", - "vtable_address": 6464805560, + "vtable_address": 6464809640, "methods": [ 6445466928, 6445501952, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -347706,25 +347712,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504240, 6445514448, 6445514704, 6443799760, 6445505360, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -347741,13 +347747,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -347755,41 +347761,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -347801,33 +347807,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -347855,34 +347861,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -347892,24 +347898,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -347988,7 +347994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285672, + "complete_object_locator": 6468289768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -347997,14 +348003,14 @@ }, { "type_name": "C_FuncBrush", - "vtable_address": 6464807480, + "vtable_address": 6464811560, "methods": [ 6445501648, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -348080,7 +348086,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285832, + "complete_object_locator": 6468289928, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -348089,9 +348095,9 @@ }, { "type_name": "C_FuncBrush", - "vtable_address": 6464807536, + "vtable_address": 6464811616, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -348167,7 +348173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285872, + "complete_object_locator": 6468289968, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -348176,32 +348182,32 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 6466252136, + "vtable_address": 6466256248, "methods": [ 6445466928, - 6452007664, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6452052272, - 6448980192, + 6452009248, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6452053856, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -348210,25 +348216,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024528, - 6452036192, - 6452038960, + 6460060080, + 6452026112, + 6452037776, + 6452040544, 6443799760, - 6452027920, - 6448917040, + 6452029504, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -348245,13 +348251,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, - 6452052880, + 6452054464, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -348259,41 +348265,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6452030112, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6452031696, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -348305,33 +348311,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6452032912, + 6452034496, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -348359,34 +348365,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, - 6452028048, + 6452029632, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -348396,24 +348402,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -348506,7 +348512,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645688, + "complete_object_locator": 6468649784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -348515,14 +348521,14 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 6466254056, + "vtable_address": 6466258168, "methods": [ - 6452006456, - 6448995376, - 6448972352, - 6448972096, + 6452008040, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -348612,7 +348618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645896, + "complete_object_locator": 6468649992, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -348621,9 +348627,9 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 6466254112, + "vtable_address": 6466258224, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -348713,7 +348719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645936, + "complete_object_locator": 6468650032, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -348722,9 +348728,9 @@ }, { "type_name": "C_FuncConveyor", - "vtable_address": 6466254128, + "vtable_address": 6466258240, "methods": [ - 6452016704 + 6452018288 ], "bases": [ { @@ -348814,7 +348820,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468645976, + "complete_object_locator": 6468650072, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -348823,32 +348829,32 @@ }, { "type_name": "C_FuncElectrifiedVolume", - "vtable_address": 6464807552, + "vtable_address": 6464811632, "methods": [ 6445466928, 6445502016, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450768336, - 6450880176, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450769904, + 6450881744, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -348857,25 +348863,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504256, 6445514464, 6445514752, 6443799760, 6445505408, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -348891,14 +348897,14 @@ 6443848592, 6443843664, 6444234768, - 6450784960, - 6448882736, + 6450786528, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -348906,41 +348912,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450823728, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825296, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -348952,33 +348958,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -349006,34 +349012,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -349043,24 +349049,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -349153,7 +349159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468285912, + "complete_object_locator": 6468290008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -349162,14 +349168,14 @@ }, { "type_name": "C_FuncElectrifiedVolume", - "vtable_address": 6464809472, + "vtable_address": 6464813552, "methods": [ 6445501660, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -349259,7 +349265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468286080, + "complete_object_locator": 6468290176, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -349268,9 +349274,9 @@ }, { "type_name": "C_FuncElectrifiedVolume", - "vtable_address": 6464809528, + "vtable_address": 6464813608, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -349360,7 +349366,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468286120, + "complete_object_locator": 6468290216, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -349369,32 +349375,32 @@ }, { "type_name": "C_FuncLadder", - "vtable_address": 6466049384, + "vtable_address": 6466053592, "methods": [ 6445466928, - 6451088336, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6451150928, - 6450413456, - 6450585280, - 6450586832, - 6451089456, - 6449062640, - 6448980192, + 6451089904, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6451152496, + 6450415024, + 6450586848, + 6450588400, + 6451091024, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6451105232, + 6448991792, + 6451106800, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -349403,26 +349409,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451116992, + 6460060080, + 6451118560, 6444443824, - 6451142576, + 6451144144, 6443799760, 6444439344, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6451138080, + 6450678224, + 6451139648, 6443817344, 6443817328, 6443817248, @@ -349438,13 +349444,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -349452,41 +349458,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -349498,33 +349504,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -349552,34 +349558,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -349589,24 +349595,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -349685,7 +349691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589800, + "complete_object_locator": 6468593896, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -349694,14 +349700,14 @@ }, { "type_name": "C_FuncLadder", - "vtable_address": 6466051304, + "vtable_address": 6466055512, "methods": [ - 6451086504, - 6448995376, - 6448972352, - 6448972096, + 6451088072, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -349777,7 +349783,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468589960, + "complete_object_locator": 6468594056, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -349786,9 +349792,9 @@ }, { "type_name": "C_FuncLadder", - "vtable_address": 6466051360, + "vtable_address": 6466055568, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -349864,7 +349870,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590000, + "complete_object_locator": 6468594096, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -349873,32 +349879,32 @@ }, { "type_name": "C_FuncMonitor", - "vtable_address": 6465967152, + "vtable_address": 6465971344, "methods": [ 6445466928, - 6450765920, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450768464, - 6450880256, - 6448980192, + 6450767488, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450770032, + 6450881824, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -349907,25 +349913,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798400, - 6450850016, - 6450857136, + 6460060080, + 6450799968, + 6450851584, + 6450858704, 6443799760, - 6450799296, - 6448917040, + 6450800864, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -349942,13 +349948,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -349956,41 +349962,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6450860384, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6450861952, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -350002,33 +350008,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -350056,34 +350062,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -350093,24 +350099,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -350203,7 +350209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569608, + "complete_object_locator": 6468573704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -350212,14 +350218,14 @@ }, { "type_name": "C_FuncMonitor", - "vtable_address": 6465969072, + "vtable_address": 6465973264, "methods": [ - 6450764660, - 6448995376, - 6448972352, - 6448972096, + 6450766228, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -350309,7 +350315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569776, + "complete_object_locator": 6468573872, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -350318,9 +350324,9 @@ }, { "type_name": "C_FuncMonitor", - "vtable_address": 6465969128, + "vtable_address": 6465973320, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -350410,7 +350416,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569816, + "complete_object_locator": 6468573912, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -350419,32 +350425,32 @@ }, { "type_name": "C_FuncMoveLinear", - "vtable_address": 6465969328, + "vtable_address": 6465973520, "methods": [ 6445466928, - 6450766224, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6450767792, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -350453,25 +350459,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798416, - 6450850032, - 6450857184, + 6460060080, + 6450799984, + 6450851600, + 6450858752, 6443799760, - 6450799344, - 6448917040, + 6450800912, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -350488,13 +350494,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -350502,41 +350508,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450823840, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825408, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -350548,33 +350554,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -350602,34 +350608,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -350639,24 +350645,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -350749,7 +350755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569856, + "complete_object_locator": 6468573952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -350758,14 +350764,14 @@ }, { "type_name": "C_FuncMoveLinear", - "vtable_address": 6465971248, + "vtable_address": 6465975440, "methods": [ - 6450764672, - 6448995376, - 6448972352, - 6448972096, + 6450766240, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -350855,7 +350861,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570024, + "complete_object_locator": 6468574120, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -350864,9 +350870,9 @@ }, { "type_name": "C_FuncMoveLinear", - "vtable_address": 6465971304, + "vtable_address": 6465975496, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -350956,7 +350962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570064, + "complete_object_locator": 6468574160, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -350965,32 +350971,32 @@ }, { "type_name": "C_FuncMover", - "vtable_address": 6465971336, + "vtable_address": 6465975528, "methods": [ 6445466928, - 6450766288, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6450767856, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -350999,25 +351005,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798432, - 6450850048, - 6450857232, + 6460060080, + 6450800000, + 6450851616, + 6450858800, 6443799760, - 6450799392, - 6448917040, + 6450800960, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -351034,13 +351040,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -351048,41 +351054,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450823856, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825424, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -351094,33 +351100,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -351148,34 +351154,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -351185,24 +351191,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -351295,7 +351301,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570104, + "complete_object_locator": 6468574200, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -351304,14 +351310,14 @@ }, { "type_name": "C_FuncMover", - "vtable_address": 6465973256, + "vtable_address": 6465977448, "methods": [ - 6450764684, - 6448995376, - 6448972352, - 6448972096, + 6450766252, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -351401,7 +351407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570272, + "complete_object_locator": 6468574368, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -351410,9 +351416,9 @@ }, { "type_name": "C_FuncMover", - "vtable_address": 6465973312, + "vtable_address": 6465977504, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -351502,7 +351508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570312, + "complete_object_locator": 6468574408, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -351511,32 +351517,32 @@ }, { "type_name": "C_FuncRotating", - "vtable_address": 6465973344, + "vtable_address": 6465977536, "methods": [ 6445466928, - 6450766352, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6450767920, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -351545,25 +351551,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504272, 6445514480, - 6450857280, + 6450858848, 6443799760, 6445505456, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -351580,13 +351586,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -351594,41 +351600,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -351640,33 +351646,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -351694,34 +351700,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -351731,24 +351737,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -351827,7 +351833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570352, + "complete_object_locator": 6468574448, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -351836,14 +351842,14 @@ }, { "type_name": "C_FuncRotating", - "vtable_address": 6465975264, + "vtable_address": 6465979456, "methods": [ - 6450764696, - 6448995376, - 6448972352, - 6448972096, + 6450766264, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -351919,7 +351925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570512, + "complete_object_locator": 6468574608, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -351928,9 +351934,9 @@ }, { "type_name": "C_FuncRotating", - "vtable_address": 6465975320, + "vtable_address": 6465979512, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -352006,7 +352012,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570552, + "complete_object_locator": 6468574648, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -352015,32 +352021,32 @@ }, { "type_name": "C_FuncTrackTrain", - "vtable_address": 6465975336, + "vtable_address": 6465979528, "methods": [ 6445466928, - 6450766416, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6450767984, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -352049,25 +352055,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798448, - 6450850064, - 6450857328, + 6460060080, + 6450800016, + 6450851632, + 6450858896, 6443799760, - 6450799440, - 6448917040, + 6450801008, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -352084,13 +352090,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -352098,41 +352104,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450823872, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825440, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -352144,33 +352150,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -352184,7 +352190,7 @@ 6443837328, 6443844016, 6443844000, - 6450818224, + 6450819792, 6443837776, 6443821104, 6444188416, @@ -352198,34 +352204,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -352235,24 +352241,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -352331,7 +352337,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570592, + "complete_object_locator": 6468574688, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -352340,14 +352346,14 @@ }, { "type_name": "C_FuncTrackTrain", - "vtable_address": 6465977256, + "vtable_address": 6465981448, "methods": [ - 6450764708, - 6448995376, - 6448972352, - 6448972096, + 6450766276, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -352423,7 +352429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570752, + "complete_object_locator": 6468574848, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -352432,9 +352438,9 @@ }, { "type_name": "C_FuncTrackTrain", - "vtable_address": 6465977312, + "vtable_address": 6465981504, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -352510,7 +352516,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468570792, + "complete_object_locator": 6468574888, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -352519,10 +352525,10 @@ }, { "type_name": "C_GameInstructor", - "vtable_address": 6465958968, + "vtable_address": 6465963160, "methods": [ - 6450744320, - 6450741008 + 6450745888, + 6450742576 ], "bases": [ { @@ -352556,7 +352562,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566520, + "complete_object_locator": 6468570616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -352565,7 +352571,7 @@ }, { "type_name": "C_GameInstructorGameSystem", - "vtable_address": 6465962720, + "vtable_address": 6465966912, "methods": [ 6443748576, 6443748592, @@ -352594,7 +352600,7 @@ 6443748960, 6443748976, 6443748992, - 6450746464, + 6450748032, 6443749024, 6443749040, 6443749056, @@ -352623,11 +352629,11 @@ 6443749424, 6443749440, 6443749456, - 6450746432, + 6450748000, 6443749488, - 6450746416, - 6450746480, - 6450746400 + 6450747984, + 6450748048, + 6450747968 ], "bases": [ { @@ -352661,7 +352667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566384, + "complete_object_locator": 6468570480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -352670,9 +352676,9 @@ }, { "type_name": "C_GameRules", - "vtable_address": 6466062400, + "vtable_address": 6466066600, "methods": [ - 6451224320, + 6451225888, 6447783296, 6447757184, 6447757360, @@ -352687,66 +352693,66 @@ 6447757376, 6447785728, 6447784528, - 6451176912, + 6451178480, 6447786656, 6447783264, 6447783536, 6447754640, 6447788096, - 6451217472, - 6451173904, - 6451204640, + 6451219040, + 6451175472, + 6451206208, 6447786640, - 6451205152, + 6451206720, 6447783520, 6447783280, - 6451193488, - 6463705588, - 6463705588, - 6463705588, - 6451205296, - 6451205312, + 6451195056, + 6463707780, + 6463707780, + 6463707780, + 6451206864, + 6451206880, 6447755440, - 6451203456, + 6451205024, 6447758480, - 6463705588, + 6463707780, 6447767488, 6447783920, - 6451196640, + 6451198208, 6447754624, 6447754288, 6447773664, 6447773680, 6447749648, 6447760000, - 6463705588, + 6463707780, 6447757056, 6447760240, - 6451185072, + 6451186640, 6447786448, - 6451202464, + 6451204032, 6447756640, 6447756672, 6447756656, - 6451202592, + 6451204160, 6447765616, - 6451225776, - 6451198368, - 6451205440, - 6451198160, - 6451198288, - 6451198208, - 6451196544, - 6451190928, - 6451196560, - 6451191104, - 6451228544, + 6451227344, + 6451199936, + 6451207008, + 6451199728, + 6451199856, + 6451199776, + 6451198112, + 6451192496, + 6451198128, + 6451192672, + 6451230112, 6447784256 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468594720, + "complete_object_locator": 6468598816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -352755,31 +352761,31 @@ }, { "type_name": "C_GameRulesProxy", - "vtable_address": 6464627128, + "vtable_address": 6464631208, "methods": [ 6445466896, 6444436768, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6444443760, 6443858256, 6443844048, @@ -352789,25 +352795,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444438320, 6444443840, 6444443888, 6443799760, 6444439392, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -352824,13 +352830,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -352838,39 +352844,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, - 6451230800, - 6450578848, + 6451232368, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -352884,33 +352890,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -352938,34 +352944,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -353008,7 +353014,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468250336, + "complete_object_locator": 6468254432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -353017,32 +353023,32 @@ }, { "type_name": "C_GlobalLight", - "vtable_address": 6465914616, + "vtable_address": 6465918808, "methods": [ 6445466896, - 6450395520, + 6450397088, 6444122752, - 6460051264, - 6450598032, - 6450410112, - 6450688112, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450717408, - 6450580640, + 6460053456, + 6450599600, + 6450411680, + 6450689680, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450718976, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -353051,25 +353057,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485424, - 6450647328, - 6450667312, + 6460060080, + 6450486992, + 6450648896, + 6450668880, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -353086,13 +353092,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -353100,39 +353106,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450683056, - 6450684032, - 6450475728, - 6450574656, - 6450579744, + 6450735600, + 6450684624, + 6450685600, + 6450477296, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -353146,33 +353152,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450421120, - 6451215568, + 6450422688, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -353200,34 +353206,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -353298,7 +353304,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468559576, + "complete_object_locator": 6468563672, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -353307,18 +353313,18 @@ }, { "type_name": "C_GlobalLight", - "vtable_address": 6465916368, + "vtable_address": 6465920560, "methods": [ - 6450392384, - 6450720992, - 6450500416, + 6450393952, + 6450722560, + 6450501984, 6443810016, 6443816480, 6443816464, 6443816496, 6443806896, - 6450667348, - 6450507552 + 6450668916, + 6450509120 ], "bases": [ { @@ -353380,7 +353386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468559896, + "complete_object_locator": 6468563992, "offset": 1536, "constructor_displacement": 0, "class_attributes": 1 @@ -353389,32 +353395,32 @@ }, { "type_name": "C_GradientFog", - "vtable_address": 6464517840, + "vtable_address": 6464521936, "methods": [ 6445466896, 6444275856, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444298704, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444277616, - 6450715424, - 6450580640, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444282848, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -353423,25 +353429,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284784, 6444293904, 6444297520, 6443799760, 6444285824, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -353458,13 +353464,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -353472,39 +353478,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308336, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444297856, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -353518,33 +353524,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6444279664, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -353572,34 +353578,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -353642,7 +353648,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240720, + "complete_object_locator": 6468244816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -353651,32 +353657,32 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 6465606920, + "vtable_address": 6465611096, "methods": [ 6445466912, - 6448238256, - 6450431440, - 6448866800, - 6448035744, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448239824, + 6450433008, + 6448868368, + 6448037312, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -353685,26 +353691,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246160, - 6448249232, - 6448257824, + 6460060080, + 6448247728, + 6448250800, + 6448259392, 6443799760, - 6448246656, - 6448247376, + 6448248224, + 6448248944, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -353715,98 +353721,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448048912, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448050480, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -353817,51 +353823,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -353871,211 +353877,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448003664, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448002208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069568, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448018592, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448005232, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448003776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071136, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448020160, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050544, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448048976, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448034464, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035488, - 6447994912, - 6448035984, - 6448046464, - 6448028672, - 6448170624, - 6448027936, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448018736, - 6448037472, - 6448147040, - 6448027744, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448033248, - 6448027856, - 6448027888, - 6448027040, - 6447992448, - 6448033632, - 6448059312, - 6448243280, - 6448247008 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448036032, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037056, + 6447996480, + 6448037552, + 6448048032, + 6448030240, + 6448172192, + 6448029504, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448020304, + 6448039040, + 6448148608, + 6448029312, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448034816, + 6448029424, + 6448029456, + 6448028608, + 6447994016, + 6448035200, + 6448060880, + 6448244848, + 6448248576 ], "bases": [ { @@ -354305,7 +354311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473368, + "complete_object_locator": 6468477464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -354314,14 +354320,14 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 6465610312, + "vtable_address": 6465614488, "methods": [ - 6448237860, - 6448995376, - 6448972352, - 6448972096, + 6448239428, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -354551,7 +354557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473624, + "complete_object_locator": 6468477720, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -354560,9 +354566,9 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 6465610368, + "vtable_address": 6465614544, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -354792,7 +354798,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473664, + "complete_object_locator": 6468477760, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -354801,12 +354807,12 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 6465610384, + "vtable_address": 6465614560, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -355036,7 +355042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473704, + "complete_object_locator": 6468477800, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -355045,14 +355051,14 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 6465610424, + "vtable_address": 6465614600, "methods": [ - 6448257860, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259428, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -355282,7 +355288,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473744, + "complete_object_locator": 6468477840, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -355291,10 +355297,10 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 6465610480, + "vtable_address": 6465614656, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -355524,7 +355530,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473784, + "complete_object_locator": 6468477880, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -355533,10 +355539,10 @@ }, { "type_name": "C_HEGrenade", - "vtable_address": 6465610504, + "vtable_address": 6465614680, "methods": [ - 6448237848, - 6448154928 + 6448239416, + 6448156496 ], "bases": [ { @@ -355766,7 +355772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473824, + "complete_object_locator": 6468477920, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -355775,32 +355781,32 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 6466731024, + "vtable_address": 6466735120, "methods": [ 6445466912, - 6455702432, - 6450431440, - 6448866800, + 6455704192, + 6450433008, + 6448868368, 6447783584, - 6448816736, - 6448054576, - 6450413456, - 6455738560, - 6450586832, - 6450396992, - 6448065280, - 6448980064, + 6448818304, + 6448056144, + 6450415024, + 6455740352, + 6450588400, + 6450398560, + 6448066848, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -355809,25 +355815,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723696, - 6455739232, - 6455741680, + 6460060080, + 6455725488, + 6455741024, + 6455743472, 6443799760, - 6455724128, + 6455725920, 6447763584, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -355844,93 +355850,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447995376, - 6451215568, + 6447996944, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -355955,37 +355961,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -355995,65 +356001,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, 6447771840, 6447756624, @@ -356063,10 +356069,10 @@ 6447750752, 6447764304, 6447764320, - 6455724192, + 6455725984, 6447758496, 6447786240, - 6455724064 + 6455725856 ], "bases": [ { @@ -356212,7 +356218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775560, + "complete_object_locator": 6468779656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -356221,14 +356227,14 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 6466733352, + "vtable_address": 6466737448, "methods": [ - 6455701684, - 6448995376, - 6448972352, - 6448972096, + 6455703444, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -356374,7 +356380,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775768, + "complete_object_locator": 6468779864, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -356383,9 +356389,9 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 6466733408, + "vtable_address": 6466737504, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -356531,7 +356537,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775808, + "complete_object_locator": 6468779904, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -356540,9 +356546,9 @@ }, { "type_name": "C_HEGrenadeProjectile", - "vtable_address": 6466733424, + "vtable_address": 6466737520, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -356691,7 +356697,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468775848, + "complete_object_locator": 6468779944, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -356700,18 +356706,18 @@ }, { "type_name": "C_HLTVCamera", - "vtable_address": 6466064592, + "vtable_address": 6466068800, "methods": [ - 6451174128, - 6451193760, - 6451204656, - 6451228272, - 6451218992, - 6451181168, - 6451227024, - 6451199920, - 6451202880, - 6451197216 + 6451175696, + 6451195328, + 6451206224, + 6451229840, + 6451220560, + 6451182736, + 6451228592, + 6451201488, + 6451204448, + 6451198784 ], "bases": [ { @@ -356759,7 +356765,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468595168, + "complete_object_locator": 6468599264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -356768,32 +356774,32 @@ }, { "type_name": "C_HandleTest", - "vtable_address": 6466122744, + "vtable_address": 6466126952, "methods": [ 6445466896, - 6451449152, + 6451450736, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -356802,25 +356808,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476672, - 6451503200, - 6451520288, + 6460060080, + 6451478256, + 6451504784, + 6451521872, 6443799760, - 6451478720, - 6450497856, + 6451480304, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -356837,13 +356843,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -356851,39 +356857,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6451498352, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6451499936, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -356897,33 +356903,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -356951,34 +356957,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -357021,7 +357027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609752, + "complete_object_locator": 6468613848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -357030,32 +357036,32 @@ }, { "type_name": "C_Hostage", - "vtable_address": 6466182480, + "vtable_address": 6466186640, "methods": [ 6445466720, - 6451775488, - 6450431440, - 6448866800, - 6450597968, - 6451778480, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6451776512, - 6450715344, - 6448980064, + 6451777072, + 6450433008, + 6448868368, + 6450599536, + 6451780064, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6451778096, + 6450716912, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6451914768, + 6448981552, + 6450575264, + 6451916352, 6443858256, 6443844048, 6443844080, @@ -357064,25 +357070,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872544, - 6451927632, - 6451942416, + 6460060080, + 6451874128, + 6451929216, + 6451944000, 6443799760, - 6451874384, - 6451878576, + 6451875968, + 6451880160, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -357099,93 +357105,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6451987712, + 6450556976, + 6451989296, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6451945152, - 6450684016, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6451946736, + 6450685584, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6451878672, - 6448992672, - 6450537248, - 6449036960, + 6451880256, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6451945568, - 6451889232, + 6450600912, + 6450581824, + 6451947152, + 6451890816, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6451849024, + 6451850608, 6444238208, - 6451953360, + 6451954944, 6444142576, 6443875152, - 6451808000, - 6451215568, + 6451809584, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -357193,9 +357199,9 @@ 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, @@ -357208,39 +357214,39 @@ 6443815024, 6443841936, 6443813504, - 6450412128, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -357250,78 +357256,78 @@ 6444207072, 6444190512, 6443887696, - 6450577488, + 6450579056, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6451960192, - 6448844240, + 6451961776, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6450487920, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872, + 6450509056, + 6450489488, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440, 6447830528 ], "bases": [ @@ -357454,7 +357460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634168, + "complete_object_locator": 6468638264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -357463,14 +357469,14 @@ }, { "type_name": "C_Hostage", - "vtable_address": 6466184816, + "vtable_address": 6466188976, "methods": [ - 6451773184, - 6448995376, - 6448972352, - 6448972096, + 6451774768, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -357602,7 +357608,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634368, + "complete_object_locator": 6468638464, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -357611,9 +357617,9 @@ }, { "type_name": "C_Hostage", - "vtable_address": 6466184872, + "vtable_address": 6466189032, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -357745,7 +357751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634408, + "complete_object_locator": 6468638504, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -357754,9 +357760,9 @@ }, { "type_name": "C_Hostage", - "vtable_address": 6466184888, + "vtable_address": 6466189048, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -357891,7 +357897,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634448, + "complete_object_locator": 6468638544, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -357900,12 +357906,12 @@ }, { "type_name": "C_Hostage::NetworkVar_m_entitySpottedState", - "vtable_address": 6466182392, + "vtable_address": 6466186552, "methods": [ - 6448210320, - 6451913328, - 6448190608, - 6451913504 + 6448211888, + 6451914912, + 6448192176, + 6451915088 ], "bases": [ { @@ -357925,7 +357931,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634488, + "complete_object_locator": 6468638584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -357934,13 +357940,13 @@ }, { "type_name": "C_Hostage::NetworkVar_m_reuseTimer", - "vtable_address": 6466182432, + "vtable_address": 6466186592, "methods": [ 6444424832, - 6450189680, - 6451913376, + 6450191248, + 6451914960, 6444409584, - 6451913536 + 6451915120 ], "bases": [ { @@ -357960,7 +357966,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634616, + "complete_object_locator": 6468638712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -357969,32 +357975,32 @@ }, { "type_name": "C_HostageCarriableProp", - "vtable_address": 6466180128, + "vtable_address": 6466184288, "methods": [ 6445466544, - 6451775728, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6449061952, - 6448980064, + 6451777312, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -358003,25 +358009,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872560, - 6451927712, - 6451942464, + 6460060080, + 6451874144, + 6451929296, + 6451944048, 6443799760, - 6451874432, - 6448916960, + 6451876016, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -358038,13 +358044,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -358052,79 +358058,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6451945232, - 6449042320, - 6450473488, - 6451915760, - 6450579744, + 6450735600, + 6451946816, + 6449043872, + 6450475056, + 6451917344, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451808352, - 6451215568, + 6451809936, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6451921648, - 6448995312, - 6448950416, + 6450667344, + 6451923232, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -358149,37 +358155,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -358189,61 +358195,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -358333,7 +358339,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468633920, + "complete_object_locator": 6468638016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -358342,14 +358348,14 @@ }, { "type_name": "C_HostageCarriableProp", - "vtable_address": 6466182320, + "vtable_address": 6466186480, "methods": [ - 6451773196, - 6448995376, - 6448972352, - 6448972096, + 6451774780, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -358439,7 +358445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634088, + "complete_object_locator": 6468638184, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -358448,9 +358454,9 @@ }, { "type_name": "C_HostageCarriableProp", - "vtable_address": 6466182376, + "vtable_address": 6466186536, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -358540,7 +358546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468634128, + "complete_object_locator": 6468638224, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -358549,32 +358555,32 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 6465618400, + "vtable_address": 6465622576, "methods": [ 6445466912, - 6448238320, - 6450431440, - 6448866800, - 6448035744, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448239888, + 6450433008, + 6448868368, + 6448037312, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -358583,26 +358589,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246176, - 6448249248, - 6448257872, + 6460060080, + 6448247744, + 6448250816, + 6448259440, 6443799760, - 6448246704, - 6448247424, + 6448248272, + 6448248992, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -358613,98 +358619,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448048912, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448050480, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -358715,51 +358721,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -358769,211 +358775,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448003664, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448002208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069568, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448018592, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448005232, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448003776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071136, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448020160, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050544, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448260384, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448048976, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448258816, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448034464, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035488, - 6447994912, - 6448035984, - 6448046464, - 6448028672, - 6448170624, - 6448027936, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448018736, - 6448037472, - 6448147040, - 6448027744, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448033248, - 6448027856, - 6448027888, - 6448027040, - 6447992448, - 6448248288, - 6448059312, - 6448003728, - 6448247024 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448036032, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037056, + 6447996480, + 6448037552, + 6448048032, + 6448030240, + 6448172192, + 6448029504, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448020304, + 6448039040, + 6448148608, + 6448029312, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448034816, + 6448029424, + 6448029456, + 6448028608, + 6447994016, + 6448249856, + 6448060880, + 6448005296, + 6448248592 ], "bases": [ { @@ -359217,7 +359223,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475000, + "complete_object_locator": 6468479096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -359226,14 +359232,14 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 6465621792, + "vtable_address": 6465625968, "methods": [ - 6448237884, - 6448995376, - 6448972352, - 6448972096, + 6448239452, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -359477,7 +359483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475264, + "complete_object_locator": 6468479360, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -359486,9 +359492,9 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 6465621848, + "vtable_address": 6465626024, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -359732,7 +359738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475304, + "complete_object_locator": 6468479400, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -359741,12 +359747,12 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 6465621864, + "vtable_address": 6465626040, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -359990,7 +359996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475344, + "complete_object_locator": 6468479440, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -359999,14 +360005,14 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 6465621904, + "vtable_address": 6465626080, "methods": [ - 6448257908, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259476, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -360250,7 +360256,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475384, + "complete_object_locator": 6468479480, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -360259,10 +360265,10 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 6465621960, + "vtable_address": 6465626136, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -360506,7 +360512,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475424, + "complete_object_locator": 6468479520, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -360515,10 +360521,10 @@ }, { "type_name": "C_IncendiaryGrenade", - "vtable_address": 6465621984, + "vtable_address": 6465626160, "methods": [ - 6448237872, - 6448154928 + 6448239440, + 6448156496 ], "bases": [ { @@ -360762,7 +360768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475464, + "complete_object_locator": 6468479560, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -360771,32 +360777,32 @@ }, { "type_name": "C_Inferno", - "vtable_address": 6466337240, + "vtable_address": 6466341400, "methods": [ 6445466928, - 6452439360, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6452439552, - 6449062640, - 6448980192, + 6452440976, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6452441168, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -360805,25 +360811,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452445856, - 6452463680, - 6452466720, + 6460060080, + 6452447472, + 6452465296, + 6452468336, 6443799760, - 6452451360, - 6448917040, + 6452452976, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -360840,13 +360846,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -360854,41 +360860,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6452462784, - 6452463008, - 6450496704, + 6452464400, + 6452464624, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6452468080, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6452469696, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -360900,33 +360906,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6452440320, - 6451215568, + 6452441936, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -360954,34 +360960,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6452452048, + 6450653808, + 6450501568, + 6452453664, 6444219248, 6444185328, 6444185280, @@ -360991,28 +360997,28 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6452472480 + 6452474096 ], "bases": [ { @@ -361088,7 +361094,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677776, + "complete_object_locator": 6468681872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -361097,14 +361103,14 @@ }, { "type_name": "C_Inferno", - "vtable_address": 6466339168, + "vtable_address": 6466343328, "methods": [ - 6452438752, - 6448995376, - 6448972352, - 6448972096, + 6452440368, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -361180,7 +361186,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677936, + "complete_object_locator": 6468682032, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -361189,9 +361195,9 @@ }, { "type_name": "C_Inferno", - "vtable_address": 6466339224, + "vtable_address": 6466343384, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -361267,7 +361273,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468677976, + "complete_object_locator": 6468682072, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -361276,31 +361282,31 @@ }, { "type_name": "C_InfoInstructorHintHostageRescueZone", - "vtable_address": 6465388600, + "vtable_address": 6465392760, "methods": [ 6444163808, - 6447935552, + 6447937120, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -361310,25 +361316,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946672, - 6447952080, - 6447953376, + 6460060080, + 6447948240, + 6447953648, + 6447954944, 6443799760, - 6447947744, - 6450497856, + 6447949312, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -361345,13 +361351,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -361359,39 +361365,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -361405,33 +361411,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -361459,34 +361465,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -361543,7 +361549,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468440552, + "complete_object_locator": 6468444648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -361552,32 +361558,32 @@ }, { "type_name": "C_InfoLadderDismount", - "vtable_address": 6464628912, + "vtable_address": 6464632992, "methods": [ 6445466896, 6444436832, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, - 6451106272, + 6450588576, + 6451107840, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -361586,25 +361592,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444438336, 6444443856, 6444443936, 6443799760, 6444439440, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -361621,13 +361627,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -361635,39 +361641,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -361681,33 +361687,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -361735,34 +361741,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -361805,7 +361811,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468250472, + "complete_object_locator": 6468254568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -361814,32 +361820,32 @@ }, { "type_name": "C_InfoVisibilityBox", - "vtable_address": 6464553992, + "vtable_address": 6464558088, "methods": [ 6445466896, 6444334528, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444373824, - 6450413456, + 6450415024, 6444363440, - 6450586832, - 6450396576, + 6450588400, + 6450398144, 6444376752, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444342032, 6444341936, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -361848,25 +361854,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348016, 6444365904, 6444370448, 6443799760, 6444351648, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -361883,13 +361889,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -361897,39 +361903,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -361943,33 +361949,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -361997,34 +362003,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -362067,7 +362073,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243696, + "complete_object_locator": 6468247792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -362076,15 +362082,15 @@ }, { "type_name": "C_IronSightController", - "vtable_address": 6465599528, + "vtable_address": 6465603704, "methods": [ - 6448257920, - 6448247392 + 6448259488, + 6448248960 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468472264, + "complete_object_locator": 6468476360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -362093,32 +362099,32 @@ }, { "type_name": "C_Item", - "vtable_address": 6466254160, + "vtable_address": 6466258272, "methods": [ 6445466912, - 6452007856, - 6450431440, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6456309296, - 6450586832, - 6452008512, - 6456418624, - 6456295120, + 6452009440, + 6450433008, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6456311072, + 6450588400, + 6452010096, + 6456420400, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -362127,25 +362133,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452024544, - 6452036208, - 6452039008, + 6460060080, + 6452026128, + 6452037792, + 6452040592, 6443799760, - 6452027968, - 6450497872, + 6452029552, + 6450499440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -362162,93 +362168,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6456290336, - 6456294720, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6456292112, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -362273,37 +362279,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -362313,89 +362319,89 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448014448 + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448016016 ], "bases": [ { @@ -362555,7 +362561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646016, + "complete_object_locator": 6468650112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -362564,14 +362570,14 @@ }, { "type_name": "C_Item", - "vtable_address": 6466256576, + "vtable_address": 6466260688, "methods": [ - 6452006468, - 6448995376, - 6448972352, - 6448972096, + 6452008052, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -362731,7 +362737,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646056, + "complete_object_locator": 6468650152, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -362740,9 +362746,9 @@ }, { "type_name": "C_Item", - "vtable_address": 6466256632, + "vtable_address": 6466260744, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -362902,7 +362908,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646096, + "complete_object_locator": 6468650192, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -362911,9 +362917,9 @@ }, { "type_name": "C_Item", - "vtable_address": 6466256648, + "vtable_address": 6466260760, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -363076,7 +363082,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646136, + "complete_object_locator": 6468650232, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -363085,14 +363091,14 @@ }, { "type_name": "C_Item", - "vtable_address": 6466256688, + "vtable_address": 6466260800, "methods": [ - 6452039044, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6452040628, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -363252,7 +363258,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646176, + "complete_object_locator": 6468650272, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -363261,10 +363267,10 @@ }, { "type_name": "C_Item", - "vtable_address": 6466256744, + "vtable_address": 6466260856, "methods": [ - 6456278672, - 6456151520 + 6456280448, + 6456153296 ], "bases": [ { @@ -363424,7 +363430,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646216, + "complete_object_locator": 6468650312, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -363433,32 +363439,32 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 6465409448, + "vtable_address": 6465413608, "methods": [ 6445466912, - 6447989904, - 6450431440, - 6448866800, - 6448035760, - 6448816736, - 6448054656, - 6450413456, - 6456309296, - 6450586832, - 6452008512, - 6456418624, - 6456295120, + 6447991472, + 6450433008, + 6448868368, + 6448037328, + 6448818304, + 6448056224, + 6450415024, + 6456311072, + 6450588400, + 6452010096, + 6456420400, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448033216, + 6448981552, + 6450575264, + 6448034784, 6443858256, 6443844048, 6443844080, @@ -363467,25 +363473,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448009904, - 6448037408, - 6448046272, + 6460060080, + 6448011472, + 6448038976, + 6448047840, 6443799760, - 6448011200, - 6450497872, + 6448012768, + 6450499440, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -363502,93 +363508,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448033360, - 6456294720, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448034928, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -363613,37 +363619,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -363653,89 +363659,89 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448014448 + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448016016 ], "bases": [ { @@ -363909,7 +363915,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468445952, + "complete_object_locator": 6468450048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -363918,14 +363924,14 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 6465411864, + "vtable_address": 6465416024, "methods": [ - 6447988788, - 6448995376, - 6448972352, - 6448972096, + 6447990356, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -364099,7 +364105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468446344, + "complete_object_locator": 6468450440, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -364108,9 +364114,9 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 6465411920, + "vtable_address": 6465416080, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -364284,7 +364290,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468446384, + "complete_object_locator": 6468450480, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -364293,9 +364299,9 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 6465411936, + "vtable_address": 6465416096, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -364472,7 +364478,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468446424, + "complete_object_locator": 6468450520, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -364481,14 +364487,14 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 6465411976, + "vtable_address": 6465416136, "methods": [ - 6448046308, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448047876, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -364662,7 +364668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468446464, + "complete_object_locator": 6468450560, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -364671,10 +364677,10 @@ }, { "type_name": "C_ItemDogtags", - "vtable_address": 6465412032, + "vtable_address": 6465416192, "methods": [ - 6456278672, - 6456151520 + 6456280448, + 6456153296 ], "bases": [ { @@ -364848,7 +364854,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468446504, + "complete_object_locator": 6468450600, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -364857,32 +364863,32 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 6465412272, + "vtable_address": 6465416432, "methods": [ 6445466912, - 6447989968, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115680, - 6448219872, - 6456295120, + 6447991536, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448117248, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -364891,26 +364897,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448009920, - 6448037424, - 6448046320, + 6460060080, + 6448011488, + 6448038992, + 6448047888, 6443799760, - 6448011248, - 6448161488, + 6448012816, + 6448163056, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -364921,98 +364927,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -365023,51 +365029,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -365077,211 +365083,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6447994880, - 6447994896, - 6448136000, - 6448148208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6447996448, + 6447996464, + 6448137568, + 6448149776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050592, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448049024, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448203248, - 6448211168, - 6448173344, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168512, - 6448204976, - 6448147040, - 6448027792, - 6448159696, - 6448218688, - 6448198752, - 6448193408, - 6448190832, - 6448027856, - 6448027904, - 6448027040, - 6448018544, - 6448136032, - 6447995104, - 6448034544, - 6447996560 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448204816, + 6448212736, + 6448174912, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448170080, + 6448206544, + 6448148608, + 6448029360, + 6448161264, + 6448220256, + 6448200320, + 6448194976, + 6448192400, + 6448029424, + 6448029472, + 6448028608, + 6448020112, + 6448137600, + 6447996672, + 6448036112, + 6447998128 ], "bases": [ { @@ -365511,7 +365517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468446544, + "complete_object_locator": 6468450640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -365520,14 +365526,14 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 6465415664, + "vtable_address": 6465419824, "methods": [ - 6447988812, - 6448995376, - 6448972352, - 6448972096, + 6447990380, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -365757,7 +365763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447000, + "complete_object_locator": 6468451096, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -365766,9 +365772,9 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 6465415720, + "vtable_address": 6465419880, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -365998,7 +366004,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447040, + "complete_object_locator": 6468451136, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -366007,12 +366013,12 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 6465415736, + "vtable_address": 6465419896, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -366242,7 +366248,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447080, + "complete_object_locator": 6468451176, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -366251,14 +366257,14 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 6465415776, + "vtable_address": 6465419936, "methods": [ - 6448046356, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448047924, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -366488,7 +366494,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447120, + "complete_object_locator": 6468451216, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -366497,10 +366503,10 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 6465415832, + "vtable_address": 6465419992, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -366730,7 +366736,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447160, + "complete_object_locator": 6468451256, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -366739,10 +366745,10 @@ }, { "type_name": "C_Item_Healthshot", - "vtable_address": 6465415856, + "vtable_address": 6465420016, "methods": [ - 6447988800, - 6448154928 + 6447990368, + 6448156496 ], "bases": [ { @@ -366972,7 +366978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447200, + "complete_object_locator": 6468451296, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -366981,32 +366987,32 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 6465446632, + "vtable_address": 6465450800, "methods": [ 6445466544, - 6448112272, - 6448846688, - 6448866800, - 6448199216, - 6448816736, - 6448215152, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6448219808, - 6448980064, + 6448113840, + 6448848256, + 6448868368, + 6448200784, + 6448818304, + 6448216720, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6448221376, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -367015,25 +367021,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156640, - 6448204016, - 6448208640, + 6460060080, + 6448158208, + 6448205584, + 6448210208, 6443799760, 6445465808, - 6448161408, + 6448162976, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -367050,13 +367056,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -367064,79 +367070,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6448212000, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6448213568, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448161520, - 6448992672, - 6450537248, - 6449036960, + 6448163088, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6448212384, + 6450600912, + 6450581824, + 6448213952, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -367161,37 +367167,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448212320, + 6448213888, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -367201,61 +367207,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -367373,7 +367379,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451536, + "complete_object_locator": 6468455632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -367382,14 +367388,14 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 6465448824, + "vtable_address": 6465452992, "methods": [ - 6448110548, - 6448995376, - 6448972352, - 6448972096, + 6448112116, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -367507,7 +367513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451720, + "complete_object_locator": 6468455816, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -367516,9 +367522,9 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 6465448880, + "vtable_address": 6465453048, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -367636,7 +367642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451760, + "complete_object_locator": 6468455856, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -367645,11 +367651,11 @@ }, { "type_name": "C_KeychainModule", - "vtable_address": 6465448896, + "vtable_address": 6465453064, "methods": [ 6444481056, 6444481072, - 6448192960, + 6448194528, 6444481104 ], "bases": [ @@ -367768,7 +367774,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451800, + "complete_object_locator": 6468455896, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -367777,32 +367783,32 @@ }, { "type_name": "C_Knife", - "vtable_address": 6465610936, + "vtable_address": 6465615112, "methods": [ 6445466912, - 6448238384, - 6450431440, - 6448866800, - 6448248448, - 6448816736, - 6448258720, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448239952, + 6450433008, + 6448868368, + 6448250016, + 6448818304, + 6448260288, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -367811,26 +367817,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246192, - 6448249264, - 6448257968, + 6460060080, + 6448247760, + 6448250832, + 6448259536, 6443799760, - 6448246752, - 6448247408, + 6448248320, + 6448248976, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -367841,98 +367847,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -367943,51 +367949,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -367997,207 +368003,207 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6448242464, - 6447994896, - 6448136000, - 6448242768, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448247520, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6448244032, + 6447996464, + 6448137568, + 6448244336, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448249088, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448248864, - 6448258208, - 6448171488, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168144, - 6448204592, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448247504 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448250432, + 6448259776, + 6448173056, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448169712, + 6448206160, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448249072 ], "bases": [ { @@ -368413,7 +368419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468473864, + "complete_object_locator": 6468477960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -368422,14 +368428,14 @@ }, { "type_name": "C_Knife", - "vtable_address": 6465614296, + "vtable_address": 6465618472, "methods": [ - 6448237908, - 6448995376, - 6448972352, - 6448972096, + 6448239476, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -368645,7 +368651,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474112, + "complete_object_locator": 6468478208, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -368654,9 +368660,9 @@ }, { "type_name": "C_Knife", - "vtable_address": 6465614352, + "vtable_address": 6465618528, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -368872,7 +368878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474152, + "complete_object_locator": 6468478248, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -368881,12 +368887,12 @@ }, { "type_name": "C_Knife", - "vtable_address": 6465614368, + "vtable_address": 6465618544, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -369102,7 +369108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474192, + "complete_object_locator": 6468478288, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -369111,14 +369117,14 @@ }, { "type_name": "C_Knife", - "vtable_address": 6465614408, + "vtable_address": 6465618584, "methods": [ - 6448258004, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259572, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -369334,7 +369340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474232, + "complete_object_locator": 6468478328, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -369343,10 +369349,10 @@ }, { "type_name": "C_Knife", - "vtable_address": 6465614464, + "vtable_address": 6465618640, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -369562,7 +369568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474272, + "complete_object_locator": 6468478368, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -369571,10 +369577,10 @@ }, { "type_name": "C_Knife", - "vtable_address": 6465614488, + "vtable_address": 6465618664, "methods": [ - 6448237896, - 6448154928 + 6448239464, + 6448156496 ], "bases": [ { @@ -369790,7 +369796,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474312, + "complete_object_locator": 6468478408, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -369799,32 +369805,32 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 6466714560, + "vtable_address": 6466718656, "methods": [ 6445466544, - 6463705588, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6455705360, - 6455762432, - 6448980064, + 6463707780, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6455707120, + 6455764192, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -369833,25 +369839,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6455723712, - 6455739248, - 6455741728, + 6460060080, + 6455725504, + 6455741040, + 6455743520, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -369868,13 +369874,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -369882,79 +369888,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -369979,37 +369985,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -370019,61 +370025,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, - 6455728144, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448917296, + 6449036480, + 6448906096, + 6455729936, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -370163,7 +370169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773824, + "complete_object_locator": 6468777920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -370172,14 +370178,14 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 6466716752, + "vtable_address": 6466720848, "methods": [ - 6463705588, - 6448995376, - 6448972352, - 6448972096, + 6463707780, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -370269,7 +370275,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773864, + "complete_object_locator": 6468777960, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -370278,9 +370284,9 @@ }, { "type_name": "C_LateUpdatedAnimating", - "vtable_address": 6466716808, + "vtable_address": 6466720904, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -370370,7 +370376,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468773904, + "complete_object_locator": 6468778000, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -370379,31 +370385,31 @@ }, { "type_name": "C_LightDirectionalEntity", - "vtable_address": 6464563936, + "vtable_address": 6464568032, "methods": [ 6445466928, 6444334592, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444373952, - 6450413456, + 6450415024, 6444363472, - 6450586832, + 6450588400, 6444335408, 6444377072, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444362640, 6443858256, 6443844048, @@ -370413,25 +370419,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348032, 6444365920, 6444370496, 6443799760, 6444351696, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -370448,13 +370454,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -370467,36 +370473,36 @@ 6443866784, 6444163696, 6444377648, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6444362544, 6444362688, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6444372864, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -370508,33 +370514,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -370562,34 +370568,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -370599,24 +370605,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -370709,7 +370715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244704, + "complete_object_locator": 6468248800, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -370718,14 +370724,14 @@ }, { "type_name": "C_LightDirectionalEntity", - "vtable_address": 6464565856, + "vtable_address": 6464569952, "methods": [ 6444333548, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -370815,7 +370821,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244872, + "complete_object_locator": 6468248968, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -370824,9 +370830,9 @@ }, { "type_name": "C_LightDirectionalEntity", - "vtable_address": 6464565912, + "vtable_address": 6464570008, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -370916,7 +370922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244912, + "complete_object_locator": 6468249008, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -370925,31 +370931,31 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 6464557960, + "vtable_address": 6464562056, "methods": [ 6445466928, 6444334656, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444373952, - 6450413456, + 6450415024, 6444363472, - 6450586832, + 6450588400, 6444335408, 6444377072, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444362640, 6443858256, 6443844048, @@ -370959,25 +370965,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348048, 6444365936, 6444370544, 6443799760, 6444351744, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -370994,13 +371000,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -371013,36 +371019,36 @@ 6443866784, 6444163696, 6444377648, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6444362544, 6444362688, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6444372864, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -371054,33 +371060,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -371108,34 +371114,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -371145,24 +371151,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -371241,7 +371247,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468243968, + "complete_object_locator": 6468248064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -371250,14 +371256,14 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 6464559880, + "vtable_address": 6464563976, "methods": [ 6444333560, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -371333,7 +371339,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244128, + "complete_object_locator": 6468248224, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -371342,9 +371348,9 @@ }, { "type_name": "C_LightEntity", - "vtable_address": 6464559936, + "vtable_address": 6464564032, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -371420,7 +371426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244168, + "complete_object_locator": 6468248264, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -371429,31 +371435,31 @@ }, { "type_name": "C_LightEnvironmentEntity", - "vtable_address": 6464565928, + "vtable_address": 6464570024, "methods": [ 6445466928, 6444334720, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444373952, - 6450413456, + 6450415024, 6444363472, - 6450586832, + 6450588400, 6444335408, 6444377072, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444362640, 6443858256, 6443844048, @@ -371463,25 +371469,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348064, 6444365952, 6444370592, 6443799760, 6444351792, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -371498,13 +371504,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -371517,36 +371523,36 @@ 6443866784, 6444163696, 6444377664, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6444362544, 6444362688, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6444372864, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -371558,33 +371564,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -371612,34 +371618,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -371649,24 +371655,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -371773,7 +371779,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244952, + "complete_object_locator": 6468249048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -371782,14 +371788,14 @@ }, { "type_name": "C_LightEnvironmentEntity", - "vtable_address": 6464567848, + "vtable_address": 6464571944, "methods": [ 6444333572, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -371893,7 +371899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245136, + "complete_object_locator": 6468249232, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -371902,9 +371908,9 @@ }, { "type_name": "C_LightEnvironmentEntity", - "vtable_address": 6464567904, + "vtable_address": 6464572000, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -372008,7 +372014,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245176, + "complete_object_locator": 6468249272, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -372017,31 +372023,31 @@ }, { "type_name": "C_LightOrthoEntity", - "vtable_address": 6464561944, + "vtable_address": 6464566040, "methods": [ 6445466928, 6444334784, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444373952, - 6450413456, + 6450415024, 6444363472, - 6450586832, + 6450588400, 6444335408, 6444377072, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444362640, 6443858256, 6443844048, @@ -372051,25 +372057,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348080, 6444365968, 6444370640, 6443799760, 6444351840, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -372086,13 +372092,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -372105,36 +372111,36 @@ 6443866784, 6444163696, 6444377648, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6444362544, 6444362688, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6444372864, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -372146,33 +372152,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -372200,34 +372206,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -372237,24 +372243,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -372347,7 +372353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244456, + "complete_object_locator": 6468248552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -372356,14 +372362,14 @@ }, { "type_name": "C_LightOrthoEntity", - "vtable_address": 6464563864, + "vtable_address": 6464567960, "methods": [ 6444333584, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -372453,7 +372459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244624, + "complete_object_locator": 6468248720, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -372462,9 +372468,9 @@ }, { "type_name": "C_LightOrthoEntity", - "vtable_address": 6464563920, + "vtable_address": 6464568016, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -372554,7 +372560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244664, + "complete_object_locator": 6468248760, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -372563,31 +372569,31 @@ }, { "type_name": "C_LightSpotEntity", - "vtable_address": 6464559952, + "vtable_address": 6464564048, "methods": [ 6445466928, 6444334848, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444373952, - 6450413456, + 6450415024, 6444363472, - 6450586832, + 6450588400, 6444335408, 6444377072, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444362640, 6443858256, 6443844048, @@ -372597,25 +372603,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348096, 6444365984, 6444370688, 6443799760, 6444351888, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -372632,13 +372638,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -372651,36 +372657,36 @@ 6443866784, 6444163696, 6444377648, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6444362544, 6444362688, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6444372864, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -372692,33 +372698,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -372746,34 +372752,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -372783,24 +372789,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -372893,7 +372899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244208, + "complete_object_locator": 6468248304, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -372902,14 +372908,14 @@ }, { "type_name": "C_LightSpotEntity", - "vtable_address": 6464561872, + "vtable_address": 6464565968, "methods": [ 6444333596, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -372999,7 +373005,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244376, + "complete_object_locator": 6468248472, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -373008,9 +373014,9 @@ }, { "type_name": "C_LightSpotEntity", - "vtable_address": 6464561928, + "vtable_address": 6464566024, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -373100,7 +373106,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468244416, + "complete_object_locator": 6468248512, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -373109,32 +373115,32 @@ }, { "type_name": "C_LocalTempEntity", - "vtable_address": 6466148424, + "vtable_address": 6466152632, "methods": [ 6445466544, - 6451615472, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6451647280, - 6448980064, + 6451617056, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6451648864, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -373143,25 +373149,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445558496, 6445562736, - 6451641072, + 6451642656, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -373178,13 +373184,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -373192,79 +373198,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -373289,37 +373295,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -373329,64 +373335,64 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6451639072, - 6451635056, - 6451626048 + 6448811984, + 6451640656, + 6451636640, + 6451627632 ], "bases": [ { @@ -373476,7 +373482,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620632, + "complete_object_locator": 6468624728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -373485,14 +373491,14 @@ }, { "type_name": "C_LocalTempEntity", - "vtable_address": 6466150640, + "vtable_address": 6466154848, "methods": [ - 6451615064, - 6448995376, - 6448972352, - 6448972096, + 6451616648, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -373582,7 +373588,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620800, + "complete_object_locator": 6468624896, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -373591,9 +373597,9 @@ }, { "type_name": "C_LocalTempEntity", - "vtable_address": 6466150696, + "vtable_address": 6466154904, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -373683,7 +373689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620840, + "complete_object_locator": 6468624936, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -373692,32 +373698,32 @@ }, { "type_name": "C_MapPreviewParticleSystem", - "vtable_address": 6466460640, + "vtable_address": 6466464768, "methods": [ 6445466928, - 6453197344, - 6448846864, - 6460051264, - 6449915392, - 6448816832, - 6449937648, - 6450413456, - 6449913680, - 6450586832, - 6449821312, - 6449952016, - 6448980192, + 6453198960, + 6448848432, + 6460053456, + 6449916960, + 6448818400, + 6449939216, + 6450415024, + 6449915248, + 6450588400, + 6449822880, + 6449953584, + 6448981760, 6443817760, 6443797616, - 6449914336, - 6448882720, + 6449915904, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6449908224, + 6448981552, + 6450575264, + 6449909792, 6443858256, 6443844048, 6443844080, @@ -373726,25 +373732,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6453251328, - 6453330320, - 6453360992, + 6460060080, + 6453252928, + 6453332080, + 6453362752, 6443799760, - 6449884240, - 6448917040, + 6449885808, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -373761,13 +373767,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -373775,41 +373781,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -373821,33 +373827,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6449831616, - 6451215568, + 6449833184, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -373875,34 +373881,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -373912,28 +373918,28 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6449878176 + 6449879744 ], "bases": [ { @@ -374023,7 +374029,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701768, + "complete_object_locator": 6468705864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -374032,14 +374038,14 @@ }, { "type_name": "C_MapPreviewParticleSystem", - "vtable_address": 6466462568, + "vtable_address": 6466466696, "methods": [ - 6453194784, - 6448995376, - 6448972352, - 6448972096, + 6453196400, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -374129,7 +374135,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701936, + "complete_object_locator": 6468706032, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -374138,9 +374144,9 @@ }, { "type_name": "C_MapPreviewParticleSystem", - "vtable_address": 6466462624, + "vtable_address": 6466466752, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -374230,7 +374236,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468701976, + "complete_object_locator": 6468706072, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -374239,32 +374245,32 @@ }, { "type_name": "C_MapVetoPickController", - "vtable_address": 6466283872, + "vtable_address": 6466287984, "methods": [ 6445466896, - 6452111392, + 6452112976, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6452252272, - 6450586832, - 6452112832, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6452253856, + 6450588400, + 6452114416, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -374273,25 +374279,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452185440, - 6452261120, - 6452270144, + 6460060080, + 6452187024, + 6452262704, + 6452271728, 6443799760, - 6452186064, - 6450497856, + 6452187648, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -374308,13 +374314,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -374322,39 +374328,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -374368,33 +374374,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6452133024, - 6451215568, + 6452134608, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -374422,34 +374428,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -374520,7 +374526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656272, + "complete_object_locator": 6468660368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -374529,10 +374535,10 @@ }, { "type_name": "C_MapVetoPickController", - "vtable_address": 6466285624, + "vtable_address": 6466289736, "methods": [ - 6452103640, - 6452166480 + 6452105224, + 6452168064 ], "bases": [ { @@ -374594,7 +374600,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656424, + "complete_object_locator": 6468660520, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -374603,31 +374609,31 @@ }, { "type_name": "C_ModelPointEntity", - "vtable_address": 6464779264, + "vtable_address": 6464783344, "methods": [ 6445466928, 6445450304, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6445478832, 6443858256, 6443844048, @@ -374637,25 +374643,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448905536, + 6460060080, + 6448907104, 6445480096, 6445484000, 6443799760, 6445466384, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -374672,13 +374678,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -374686,41 +374692,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, - 6449041632, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, + 6449043184, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -374732,33 +374738,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -374786,34 +374792,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -374823,24 +374829,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, - 6448935984, - 6448989984, - 6448861456, + 6448860704, + 6448937552, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -374919,7 +374925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284088, + "complete_object_locator": 6468288184, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -374928,14 +374934,14 @@ }, { "type_name": "C_ModelPointEntity", - "vtable_address": 6464781184, + "vtable_address": 6464785264, "methods": [ 6445449672, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -375011,7 +375017,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284248, + "complete_object_locator": 6468288344, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -375020,9 +375026,9 @@ }, { "type_name": "C_ModelPointEntity", - "vtable_address": 6464781240, + "vtable_address": 6464785320, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -375098,7 +375104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468284288, + "complete_object_locator": 6468288384, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -375107,32 +375113,32 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 6465614792, + "vtable_address": 6465618968, "methods": [ 6445466912, - 6448238448, - 6450431440, - 6448866800, - 6448035744, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448240016, + 6450433008, + 6448868368, + 6448037312, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -375141,26 +375147,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246208, - 6448249280, - 6448258016, + 6460060080, + 6448247776, + 6448250848, + 6448259584, 6443799760, - 6448246800, - 6448247424, + 6448248368, + 6448248992, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -375171,98 +375177,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448048912, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448050480, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -375273,51 +375279,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -375327,211 +375333,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448003664, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448002208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069568, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448018592, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448005232, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448003776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071136, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448020160, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050544, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448260400, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448048976, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448258832, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448034464, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035488, - 6447994912, - 6448035984, - 6448046464, - 6448028672, - 6448170624, - 6448027936, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448018736, - 6448037472, - 6448147040, - 6448027744, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448033248, - 6448027856, - 6448027888, - 6448027040, - 6447992448, - 6448248288, - 6448059312, - 6448003728, - 6448247024 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448036032, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037056, + 6447996480, + 6448037552, + 6448048032, + 6448030240, + 6448172192, + 6448029504, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448020304, + 6448039040, + 6448148608, + 6448029312, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448034816, + 6448029424, + 6448029456, + 6448028608, + 6447994016, + 6448249856, + 6448060880, + 6448005296, + 6448248592 ], "bases": [ { @@ -375761,7 +375767,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474504, + "complete_object_locator": 6468478600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -375770,14 +375776,14 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 6465618184, + "vtable_address": 6465622360, "methods": [ - 6448237932, - 6448995376, - 6448972352, - 6448972096, + 6448239500, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -376007,7 +376013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474760, + "complete_object_locator": 6468478856, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -376016,9 +376022,9 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 6465618240, + "vtable_address": 6465622416, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -376248,7 +376254,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474800, + "complete_object_locator": 6468478896, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -376257,12 +376263,12 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 6465618256, + "vtable_address": 6465622432, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -376492,7 +376498,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474840, + "complete_object_locator": 6468478936, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -376501,14 +376507,14 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 6465618296, + "vtable_address": 6465622472, "methods": [ - 6448258052, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259620, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -376738,7 +376744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474880, + "complete_object_locator": 6468478976, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -376747,10 +376753,10 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 6465618352, + "vtable_address": 6465622528, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -376980,7 +376986,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474920, + "complete_object_locator": 6468479016, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -376989,10 +376995,10 @@ }, { "type_name": "C_MolotovGrenade", - "vtable_address": 6465618376, + "vtable_address": 6465622552, "methods": [ - 6448237920, - 6448154928 + 6448239488, + 6448156496 ], "bases": [ { @@ -377222,7 +377228,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468474960, + "complete_object_locator": 6468479056, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -377231,32 +377237,32 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 6465416048, + "vtable_address": 6465420208, "methods": [ 6445466912, - 6447990032, - 6450431440, - 6448866800, + 6447991600, + 6450433008, + 6448868368, 6447783584, - 6448816736, - 6448054576, - 6450413456, - 6448034688, - 6450586832, - 6450396992, - 6448065280, - 6448980064, + 6448818304, + 6448056144, + 6450415024, + 6448036256, + 6450588400, + 6450398560, + 6448066848, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -377265,25 +377271,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448009936, - 6448037440, - 6448046368, + 6460060080, + 6448011504, + 6448039008, + 6448047936, 6443799760, - 6448011296, + 6448012864, 6447763584, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -377300,93 +377306,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6448034016, - 6448034352, - 6448911696, + 6448035584, + 6448035920, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6448049616, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6448051184, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447995376, - 6451215568, + 6447996944, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -377411,37 +377417,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -377451,65 +377457,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, 6447771840, 6447756624, @@ -377519,7 +377525,7 @@ 6447750752, 6447764304, 6447764320, - 6448011504, + 6448013072, 6447758496, 6447786240 ], @@ -377667,7 +377673,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447240, + "complete_object_locator": 6468451336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -377676,14 +377682,14 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 6465418368, + "vtable_address": 6465422528, "methods": [ - 6447988824, - 6448995376, - 6448972352, - 6448972096, + 6447990392, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -377829,7 +377835,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447448, + "complete_object_locator": 6468451544, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -377838,9 +377844,9 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 6465418424, + "vtable_address": 6465422584, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -377986,7 +377992,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447488, + "complete_object_locator": 6468451584, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -377995,9 +378001,9 @@ }, { "type_name": "C_MolotovProjectile", - "vtable_address": 6465418440, + "vtable_address": 6465422600, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -378146,7 +378152,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447528, + "complete_object_locator": 6468451624, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -378155,32 +378161,32 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 6466277120, + "vtable_address": 6466281232, "methods": [ 6445466544, - 6452111568, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6452049360, - 6450413456, - 6448987824, - 6450586832, - 6452008528, - 6449061952, - 6448980064, + 6452113152, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6452050944, + 6450415024, + 6448989392, + 6450588400, + 6452010112, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -378189,25 +378195,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452185456, - 6452261136, - 6452270192, + 6460060080, + 6452187040, + 6452262720, + 6452271776, 6443799760, - 6452186112, - 6448916960, + 6452187696, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -378224,13 +378230,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -378238,79 +378244,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -378335,37 +378341,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -378375,61 +378381,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -378533,7 +378539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468654896, + "complete_object_locator": 6468658992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -378542,14 +378548,14 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 6466279312, + "vtable_address": 6466283424, "methods": [ - 6452103652, - 6448995376, - 6448972352, - 6448972096, + 6452105236, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -378653,7 +378659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655072, + "complete_object_locator": 6468659168, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -378662,9 +378668,9 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 6466279368, + "vtable_address": 6466283480, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -378768,7 +378774,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655112, + "complete_object_locator": 6468659208, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -378777,11 +378783,11 @@ }, { "type_name": "C_Multimeter", - "vtable_address": 6466279384, + "vtable_address": 6466283496, "methods": [ - 6452023312, + 6452024896, 6447786432, - 6452276336, + 6452277920, 6447764288 ], "bases": [ @@ -378886,7 +378892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655152, + "complete_object_locator": 6468659248, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -378895,7 +378901,7 @@ }, { "type_name": "C_MultiplayRules", - "vtable_address": 6465290296, + "vtable_address": 6465294368, "methods": [ 6447786080, 6447783296, @@ -378912,29 +378918,29 @@ 6447757376, 6447785728, 6447784528, - 6451176912, + 6451178480, 6447786656, 6447783264, 6447783536, 6447754640, 6447788096, - 6451217472, + 6451219040, 6447747616, - 6451205136, + 6451206704, 6447786640, - 6451205152, + 6451206720, 6447783520, 6447783280, - 6451193488, - 6451189824, - 6451189808, - 6451189840, - 6451205296, - 6451205312, + 6451195056, + 6451191392, + 6451191376, + 6451191408, + 6451206864, + 6451206880, 6447755440, - 6451203456, + 6451205024, 6447758480, - 6451205808, + 6451207376, 6447767488, 6447783920, 6447757552, @@ -378944,28 +378950,28 @@ 6447773680, 6447749648, 6447760000, - 6451208496, + 6451210064, 6447757056, 6447760240, - 6451185072, + 6451186640, 6447786448, - 6451202464, + 6451204032, 6447756640, 6447756672, 6447756656, - 6451202592, + 6451204160, 6447765616, - 6451225776, - 6451198368, - 6451205440, - 6451198160, - 6451198288, - 6451198208, - 6451196544, - 6451190928, - 6451196560, - 6451191104, - 6451228544, + 6451227344, + 6451199936, + 6451207008, + 6451199728, + 6451199856, + 6451199776, + 6451198112, + 6451192496, + 6451198128, + 6451192672, + 6451230112, 6447784256 ], "bases": [ @@ -379000,7 +379006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468426856, + "complete_object_locator": 6468430952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -379009,32 +379015,32 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 6465444328, + "vtable_address": 6465448496, "methods": [ 6445466544, - 6448112336, - 6448846688, - 6448866800, - 6448199216, - 6448816736, - 6448215152, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6448219808, - 6448980064, + 6448113904, + 6448848256, + 6448868368, + 6448200784, + 6448818304, + 6448216720, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6448221376, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -379043,25 +379049,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156656, - 6448204032, - 6448208688, + 6460060080, + 6448158224, + 6448205600, + 6448210256, 6443799760, 6445465808, - 6448161408, + 6448162976, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -379078,13 +379084,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -379092,79 +379098,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6448212000, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6448213568, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448161520, - 6448992672, - 6450537248, - 6449036960, + 6448163088, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6448212384, + 6450600912, + 6450581824, + 6448213952, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -379189,37 +379195,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448212320, + 6448213888, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -379229,61 +379235,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -379401,7 +379407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451232, + "complete_object_locator": 6468455328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -379410,14 +379416,14 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 6465446520, + "vtable_address": 6465450688, "methods": [ - 6448110560, - 6448995376, - 6448972352, - 6448972096, + 6448112128, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -379535,7 +379541,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451416, + "complete_object_locator": 6468455512, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -379544,9 +379550,9 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 6465446576, + "vtable_address": 6465450744, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -379664,7 +379670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451456, + "complete_object_locator": 6468455552, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -379673,11 +379679,11 @@ }, { "type_name": "C_NametagModule", - "vtable_address": 6465446592, + "vtable_address": 6465450760, "methods": [ 6444481056, 6444481072, - 6448192960, + 6448194528, 6444481104 ], "bases": [ @@ -379796,7 +379802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451496, + "complete_object_locator": 6468455592, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -379805,32 +379811,32 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 6465921560, + "vtable_address": 6465925752, "methods": [ 6445466720, - 6450395744, - 6450431440, - 6448866800, - 6450597968, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6450396432, - 6450715344, - 6448980064, + 6450397312, + 6450433008, + 6448868368, + 6450599536, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6450398000, + 6450716912, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -379839,25 +379845,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450485440, - 6450647376, - 6450667360, + 6460060080, + 6450487008, + 6450648944, + 6450668928, 6443799760, 6445465904, - 6450497840, + 6450499408, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -379874,93 +379880,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578576, - 6450579488, - 6448911696, + 6450580144, + 6450581056, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6450684016, - 6450473504, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6450685584, + 6450475072, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -379968,9 +379974,9 @@ 6443837792, 6443838624, 6443869120, - 6450552912, - 6450569216, - 6450569200, + 6450554480, + 6450570784, + 6450570768, 6443837328, 6443844016, 6443844000, @@ -379983,39 +379989,39 @@ 6443815024, 6443841936, 6443813504, - 6450412128, + 6450413696, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -380025,78 +380031,78 @@ 6444207072, 6444190512, 6443887696, - 6450577488, + 6450579056, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6450507488, - 6450487920, - 6450718384, - 6450470016, - 6450470352, - 6450508176, - 6450508320, - 6450469952, - 6450469984, - 6450581888, - 6450581856, - 6450581872 + 6450509056, + 6450489488, + 6450719952, + 6450471584, + 6450471920, + 6450509744, + 6450509888, + 6450471520, + 6450471552, + 6450583456, + 6450583424, + 6450583440 ], "bases": [ { @@ -380228,7 +380234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561280, + "complete_object_locator": 6468565376, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -380237,14 +380243,14 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 6465923888, + "vtable_address": 6465928080, "methods": [ - 6450392396, - 6448995376, - 6448972352, - 6448972096, + 6450393964, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -380376,7 +380382,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561472, + "complete_object_locator": 6468565568, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -380385,9 +380391,9 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 6465923944, + "vtable_address": 6465928136, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -380519,7 +380525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561512, + "complete_object_locator": 6468565608, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -380528,9 +380534,9 @@ }, { "type_name": "C_NetTestBaseCombatCharacter", - "vtable_address": 6465923960, + "vtable_address": 6465928152, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -380665,7 +380671,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468561552, + "complete_object_locator": 6468565648, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -380674,32 +380680,32 @@ }, { "type_name": "C_OmniLight", - "vtable_address": 6466361248, + "vtable_address": 6466365408, "methods": [ 6445466928, - 6452535712, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6452561280, - 6450413456, - 6450585280, - 6450586832, - 6452535840, - 6452567072, - 6448980192, + 6452537328, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6452562896, + 6450415024, + 6450586848, + 6450588400, + 6452537456, + 6452568688, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6452550016, - 6450573696, - 6450573648, + 6452551632, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -380708,25 +380714,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452542320, - 6452550832, - 6452556512, + 6460060080, + 6452543936, + 6452552448, + 6452558128, 6443799760, - 6452542880, - 6448917040, + 6452544496, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -380743,13 +380749,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -380757,41 +380763,41 @@ 6443887776, 6443887712, 6443887840, - 6452537264, + 6452538880, 6443845040, 6443866784, 6444163696, - 6452570368, - 6450578848, + 6452571984, + 6450580416, 6443848048, - 6450496704, - 6452549216, - 6452549680, + 6450498272, + 6452550832, + 6452551296, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6452561264, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6452562880, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -380803,33 +380809,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -380857,34 +380863,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -380894,30 +380900,30 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6452547744, - 6452539728, - 6452564480 + 6452549360, + 6452541344, + 6452566096 ], "bases": [ { @@ -381007,7 +381013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681648, + "complete_object_locator": 6468685744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -381016,14 +381022,14 @@ }, { "type_name": "C_OmniLight", - "vtable_address": 6466363192, + "vtable_address": 6466367352, "methods": [ - 6452535616, - 6448995376, - 6448972352, - 6448972096, + 6452537232, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -381113,7 +381119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681816, + "complete_object_locator": 6468685912, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -381122,9 +381128,9 @@ }, { "type_name": "C_OmniLight", - "vtable_address": 6466363248, + "vtable_address": 6466367408, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -381214,7 +381220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681856, + "complete_object_locator": 6468685952, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -381223,32 +381229,32 @@ }, { "type_name": "C_ParticleSystem", - "vtable_address": 6465838592, + "vtable_address": 6465842784, "methods": [ 6445466928, - 6449820608, - 6448846864, - 6460051264, - 6449915392, - 6448816832, - 6449937648, - 6450413456, - 6449913680, - 6450586832, - 6449821312, - 6449952016, - 6448980192, + 6449822176, + 6448848432, + 6460053456, + 6449916960, + 6448818400, + 6449939216, + 6450415024, + 6449915248, + 6450588400, + 6449822880, + 6449953584, + 6448981760, 6443817760, 6443797616, - 6449914336, - 6448882720, + 6449915904, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6449908224, + 6448981552, + 6450575264, + 6449909792, 6443858256, 6443844048, 6443844080, @@ -381257,25 +381263,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449877168, - 6449918112, - 6449926096, + 6460060080, + 6449878736, + 6449919680, + 6449927664, 6443799760, - 6449884240, - 6448917040, + 6449885808, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -381292,13 +381298,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -381306,41 +381312,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -381352,33 +381358,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6449831616, - 6451215568, + 6449833184, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -381406,34 +381412,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -381443,28 +381449,28 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6449878176 + 6449879744 ], "bases": [ { @@ -381540,7 +381546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528032, + "complete_object_locator": 6468532128, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -381549,14 +381555,14 @@ }, { "type_name": "C_ParticleSystem", - "vtable_address": 6465840520, + "vtable_address": 6465844712, "methods": [ - 6449818916, - 6448995376, - 6448972352, - 6448972096, + 6449820484, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -381632,7 +381638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528192, + "complete_object_locator": 6468532288, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -381641,9 +381647,9 @@ }, { "type_name": "C_ParticleSystem", - "vtable_address": 6465840576, + "vtable_address": 6465844768, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -381719,7 +381725,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528232, + "complete_object_locator": 6468532328, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -381728,32 +381734,32 @@ }, { "type_name": "C_PathParticleRope", - "vtable_address": 6465844616, + "vtable_address": 6465848808, "methods": [ 6445466896, - 6449820672, + 6449822240, 6444122752, - 6460051264, - 6449915744, - 6450410112, - 6449938272, - 6450413456, - 6449914144, - 6450586832, - 6449821856, - 6450715424, - 6450580640, + 6460053456, + 6449917312, + 6450411680, + 6449939840, + 6450415024, + 6449915712, + 6450588400, + 6449823424, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -381762,25 +381768,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449877184, + 6460060080, + 6449878752, 6445538384, - 6449926144, + 6449927712, 6443799760, 6445536416, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -381797,13 +381803,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -381811,39 +381817,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -381857,33 +381863,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, - 6449946688, - 6449832896, - 6451215568, + 6449948256, + 6449834464, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -381911,34 +381917,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -381996,7 +382002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528656, + "complete_object_locator": 6468532752, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -382005,13 +382011,13 @@ }, { "type_name": "C_PathParticleRope", - "vtable_address": 6465846376, + "vtable_address": 6465850568, "methods": [ - 6449818928, - 6449849664, - 6449886560, - 6449887088, - 6449887616, + 6449820496, + 6449851232, + 6449888128, + 6449888656, + 6449889184, 6445532512 ], "bases": [ @@ -382060,7 +382066,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468528696, + "complete_object_locator": 6468532792, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -382069,32 +382075,32 @@ }, { "type_name": "C_PathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 6464840800, + "vtable_address": 6464844880, "methods": [ 6445466896, 6445528640, 6444122752, - 6460051264, - 6449915744, - 6450410112, - 6449938272, - 6450413456, - 6449914144, - 6450586832, - 6449821856, - 6450715424, - 6450580640, + 6460053456, + 6449917312, + 6450411680, + 6449939840, + 6450415024, + 6449915712, + 6450588400, + 6449823424, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -382103,25 +382109,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445533488, 6445538400, 6445538608, 6443799760, 6445536416, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -382138,13 +382144,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -382152,39 +382158,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -382198,33 +382204,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, - 6449946688, - 6449832896, - 6451215568, + 6449948256, + 6449834464, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -382252,34 +382258,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -382351,7 +382357,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468289232, + "complete_object_locator": 6468293328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -382360,13 +382366,13 @@ }, { "type_name": "C_PathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 6464842560, + "vtable_address": 6464846640, "methods": [ 6445528436, - 6449849664, - 6449886560, - 6449887088, - 6449887616, + 6449851232, + 6449888128, + 6449888656, + 6449889184, 6445532512 ], "bases": [ @@ -382429,7 +382435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468289608, + "complete_object_locator": 6468293704, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -382438,11 +382444,11 @@ }, { "type_name": "C_Peer2PeerInit", - "vtable_address": 6465960832, + "vtable_address": 6465965024, "methods": [ - 6450745120, + 6450746688, 6443748592, - 6450745424, + 6450746992, 6443748624, 6443748640, 6443748656, @@ -382485,8 +382491,8 @@ 6443749248, 6443749264, 6443749280, - 6450745744, - 6450745760, + 6450747312, + 6450747328, 6443749328, 6443749344, 6443749360, @@ -382496,11 +382502,11 @@ 6443749424, 6443749440, 6443749456, - 6450745088, + 6450746656, 6443749488, - 6450745072, - 6450745776, - 6450745056 + 6450746640, + 6450747344, + 6450746624 ], "bases": [ { @@ -382534,7 +382540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567120, + "complete_object_locator": 6468571216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -382543,32 +382549,32 @@ }, { "type_name": "C_PhysBox", - "vtable_address": 6465982816, + "vtable_address": 6465987008, "methods": [ 6445466928, - 6450766480, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6450768048, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -382577,25 +382583,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504288, 6445514496, - 6450857376, + 6450858944, 6443799760, 6445505504, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -382612,13 +382618,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -382626,41 +382632,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -382672,33 +382678,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -382726,34 +382732,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -382763,24 +382769,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -382873,7 +382879,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572888, + "complete_object_locator": 6468576984, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -382882,14 +382888,14 @@ }, { "type_name": "C_PhysBox", - "vtable_address": 6465984736, + "vtable_address": 6465988928, "methods": [ - 6450764720, - 6448995376, - 6448972352, - 6448972096, + 6450766288, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -382979,7 +382985,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573056, + "complete_object_locator": 6468577152, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -382988,9 +382994,9 @@ }, { "type_name": "C_PhysBox", - "vtable_address": 6465984792, + "vtable_address": 6465988984, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -383080,7 +383086,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573096, + "complete_object_locator": 6468577192, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -383089,32 +383095,32 @@ }, { "type_name": "C_PhysMagnet", - "vtable_address": 6465987128, + "vtable_address": 6465991320, "methods": [ 6445466544, - 6450766576, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6450835088, - 6450586832, - 6448814320, - 6449061952, - 6448980064, + 6450768144, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6450836656, + 6450588400, + 6448815888, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -383123,25 +383129,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798464, - 6450850080, - 6450857424, + 6460060080, + 6450800032, + 6450851648, + 6450858992, 6443799760, - 6450799488, - 6448916960, + 6450801056, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -383158,13 +383164,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -383172,79 +383178,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -383269,37 +383275,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -383309,61 +383315,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -383453,7 +383459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573136, + "complete_object_locator": 6468577232, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -383462,14 +383468,14 @@ }, { "type_name": "C_PhysMagnet", - "vtable_address": 6465989320, + "vtable_address": 6465993512, "methods": [ - 6450764732, - 6448995376, - 6448972352, - 6448972096, + 6450766300, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -383559,7 +383565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573304, + "complete_object_locator": 6468577400, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -383568,9 +383574,9 @@ }, { "type_name": "C_PhysMagnet", - "vtable_address": 6465989376, + "vtable_address": 6465993568, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -383660,7 +383666,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573344, + "complete_object_locator": 6468577440, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -383669,32 +383675,32 @@ }, { "type_name": "C_PhysPropClientside", - "vtable_address": 6466078832, + "vtable_address": 6466083040, "methods": [ 6445466544, - 6451281232, - 6448846688, - 6448866800, - 6451361104, - 6448816736, - 6451389552, - 6450413456, - 6448987824, - 6450586832, - 6451282032, - 6451404720, - 6448980064, + 6451282800, + 6448848256, + 6448868368, + 6451362672, + 6448818304, + 6451391120, + 6450415024, + 6448989392, + 6450588400, + 6451283600, + 6451406288, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -383703,25 +383709,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451320384, + 6460060080, + 6451321952, 6445562752, - 6451384048, + 6451385616, 6443799760, 6445466240, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -383738,13 +383744,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -383752,79 +383758,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, - 6451330288, + 6450600912, + 6450581824, + 6450685040, + 6451331856, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6451395168, + 6450471280, + 6451396736, 6444243600, 6444142576, 6443875152, - 6451292832, - 6451215568, + 6451294400, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -383849,37 +383855,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -383889,73 +383895,73 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6447950480, + 6448811984, + 6447952048, 6445485120, - 6448920880, - 6451322416, + 6448922448, + 6451323984, 6445514080, 6445513984, - 6448935248, - 6451340800, - 6451329760, - 6451285680, - 6451293328, - 6451394240 + 6448936816, + 6451342368, + 6451331328, + 6451287248, + 6451294896, + 6451395808 ], "bases": [ { @@ -384073,7 +384079,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468600528, + "complete_object_locator": 6468604624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -384082,14 +384088,14 @@ }, { "type_name": "C_PhysPropClientside", - "vtable_address": 6466081120, + "vtable_address": 6466085328, "methods": [ - 6451280384, - 6448995376, - 6448972352, - 6448972096, + 6451281952, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -384207,7 +384213,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468600712, + "complete_object_locator": 6468604808, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -384216,9 +384222,9 @@ }, { "type_name": "C_PhysPropClientside", - "vtable_address": 6466081176, + "vtable_address": 6466085384, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -384336,7 +384342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468600752, + "complete_object_locator": 6468604848, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -384345,32 +384351,32 @@ }, { "type_name": "C_PhysicsProp", - "vtable_address": 6465984808, + "vtable_address": 6465989000, "methods": [ 6445466544, - 6450766912, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449044240, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6449062816, - 6448980064, + 6450768480, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449045792, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6449064368, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450822176, + 6448981552, + 6450575264, + 6450823744, 6443858256, 6443844048, 6443844080, @@ -384379,25 +384385,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798480, + 6460060080, + 6450800048, 6445514512, - 6450857472, + 6450859040, 6443799760, 6445505552, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -384414,13 +384420,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -384428,79 +384434,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450824096, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825664, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -384525,37 +384531,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -384565,68 +384571,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6447950480, + 6448811984, + 6447952048, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -384744,7 +384750,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568648, + "complete_object_locator": 6468572744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -384753,14 +384759,14 @@ }, { "type_name": "C_PhysicsProp", - "vtable_address": 6465987056, + "vtable_address": 6465991248, "methods": [ - 6450764744, - 6448995376, - 6448972352, - 6448972096, + 6450766312, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -384878,7 +384884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568688, + "complete_object_locator": 6468572784, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -384887,9 +384893,9 @@ }, { "type_name": "C_PhysicsProp", - "vtable_address": 6465987112, + "vtable_address": 6465991304, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -385007,7 +385013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568728, + "complete_object_locator": 6468572824, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -385016,32 +385022,32 @@ }, { "type_name": "C_PhysicsPropMultiplayer", - "vtable_address": 6465390352, + "vtable_address": 6465394512, "methods": [ 6445466544, - 6447935616, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449044240, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6449062816, - 6448980064, + 6447937184, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449045792, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6449064368, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450822176, + 6448981552, + 6450575264, + 6450823744, 6443858256, 6443844048, 6443844080, @@ -385050,25 +385056,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946688, - 6447952096, - 6447953424, + 6460060080, + 6447948256, + 6447953664, + 6447954992, 6443799760, - 6447947792, - 6448916960, + 6447949360, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -385085,13 +385091,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -385099,79 +385105,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450824096, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825664, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -385196,37 +385202,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -385236,68 +385242,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6447950480, + 6448811984, + 6447952048, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -385429,7 +385435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468440696, + "complete_object_locator": 6468444792, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -385438,14 +385444,14 @@ }, { "type_name": "C_PhysicsPropMultiplayer", - "vtable_address": 6465392600, + "vtable_address": 6465396760, "methods": [ - 6447934692, - 6448995376, - 6448972352, - 6448972096, + 6447936260, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -385577,7 +385583,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441040, + "complete_object_locator": 6468445136, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -385586,9 +385592,9 @@ }, { "type_name": "C_PhysicsPropMultiplayer", - "vtable_address": 6465392656, + "vtable_address": 6465396816, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -385720,7 +385726,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468441080, + "complete_object_locator": 6468445176, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -385729,32 +385735,32 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 6466256912, + "vtable_address": 6466261024, "methods": [ 6445466544, - 6452008000, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6452008592, - 6452052736, - 6452031456, + 6452009584, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6452010176, + 6452054320, + 6452033040, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6452030080, + 6448981552, + 6450575264, + 6452031664, 6443858256, 6443844048, 6443844080, @@ -385763,25 +385769,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452185472, - 6452261152, - 6452039056, + 6460060080, + 6452187056, + 6452262736, + 6452040640, 6443799760, - 6452186160, - 6452028528, + 6452187744, + 6452030112, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -385798,13 +385804,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -385812,79 +385818,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6448227072, + 6450556976, + 6448228640, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6452028544, - 6448992672, - 6450537248, - 6449036960, + 6452030128, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6452044464, + 6450600912, + 6450581824, + 6452046048, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6452013216, - 6451215568, + 6452014800, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -385909,37 +385915,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -385949,61 +385955,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -386107,7 +386113,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646256, + "complete_object_locator": 6468650352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -386116,14 +386122,14 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 6466259104, + "vtable_address": 6466263216, "methods": [ - 6452006480, - 6448995376, - 6448972352, - 6448972096, + 6452008064, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -386227,7 +386233,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646472, + "complete_object_locator": 6468650568, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -386236,9 +386242,9 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 6466259160, + "vtable_address": 6466263272, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -386342,7 +386348,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646512, + "complete_object_locator": 6468650608, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -386351,14 +386357,14 @@ }, { "type_name": "C_PlantedC4", - "vtable_address": 6466259176, + "vtable_address": 6466263288, "methods": [ - 6452039096, - 6452023280, - 6452023248, - 6452023296, - 6452023264, - 6452035904 + 6452040680, + 6452024864, + 6452024832, + 6452024880, + 6452024848, + 6452037488 ], "bases": [ { @@ -386462,7 +386468,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646552, + "complete_object_locator": 6468650648, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -386471,19 +386477,19 @@ }, { "type_name": "C_PlantedC4::NetworkVar_m_AttributeManager", - "vtable_address": 6466256816, + "vtable_address": 6466260928, "methods": [ - 6452038096, - 6456134176, - 6452029904, - 6452030064, - 6452030000, - 6452008272, - 6456189360, - 6455891920, - 6456294704, - 6456290160, - 6455892304 + 6452039680, + 6456135952, + 6452031488, + 6452031648, + 6452031584, + 6452009856, + 6456191136, + 6455893680, + 6456296480, + 6456291936, + 6455894064 ], "bases": [ { @@ -386517,7 +386523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646720, + "complete_object_locator": 6468650816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -386526,12 +386532,12 @@ }, { "type_name": "C_PlantedC4::NetworkVar_m_entitySpottedState", - "vtable_address": 6466256776, + "vtable_address": 6466260888, "methods": [ - 6448210320, - 6452029952, - 6448190608, - 6452030032 + 6448211888, + 6452031536, + 6448192176, + 6452031616 ], "bases": [ { @@ -386551,7 +386557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468646592, + "complete_object_locator": 6468650688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -386560,32 +386566,32 @@ }, { "type_name": "C_PlayerPing", - "vtable_address": 6465678928, + "vtable_address": 6465683104, "methods": [ 6445466896, - 6448521024, + 6448522592, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -386594,25 +386600,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448570640, - 6448622448, - 6448625664, + 6460060080, + 6448572208, + 6448624016, + 6448627232, 6443799760, - 6448574352, - 6450497856, + 6448575920, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -386629,13 +386635,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -386643,39 +386649,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6448595792, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6448597360, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -386689,33 +386695,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -386743,34 +386749,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -386813,7 +386819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486616, + "complete_object_locator": 6468490712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -386822,31 +386828,31 @@ }, { "type_name": "C_PlayerSprayDecal", - "vtable_address": 6466280032, + "vtable_address": 6466284144, "methods": [ 6445466928, - 6452111632, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6452252336, - 6450586832, - 6452112896, - 6452290784, - 6448980192, + 6452113216, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6452253920, + 6450588400, + 6452114480, + 6452292368, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6445478832, 6443858256, 6443844048, @@ -386856,25 +386862,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452185488, - 6452261168, - 6452270240, + 6460060080, + 6452187072, + 6452262752, + 6452271824, 6443799760, - 6452186208, - 6448917040, + 6452187792, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -386891,13 +386897,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -386905,41 +386911,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6452230960, - 6450579744, - 6449041632, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6452232544, + 6450581312, + 6449043184, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -386951,33 +386957,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -387005,34 +387011,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -387042,24 +387048,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, - 6448935984, - 6448989984, - 6448861456, + 6448860704, + 6448937552, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -387152,7 +387158,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655752, + "complete_object_locator": 6468659848, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -387161,14 +387167,14 @@ }, { "type_name": "C_PlayerSprayDecal", - "vtable_address": 6466281952, + "vtable_address": 6466286064, "methods": [ - 6452103664, - 6448995376, - 6448972352, - 6448972096, + 6452105248, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -387258,7 +387264,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655920, + "complete_object_locator": 6468660016, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -387267,9 +387273,9 @@ }, { "type_name": "C_PlayerSprayDecal", - "vtable_address": 6466282008, + "vtable_address": 6466286120, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -387359,7 +387365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655960, + "complete_object_locator": 6468660056, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -387368,10 +387374,10 @@ }, { "type_name": "C_PlayerSprayDecalManifestCompletionCallback", - "vtable_address": 6466279904, + "vtable_address": 6466284016, "methods": [ - 6452136704, - 6452235648 + 6452138288, + 6452237232 ], "bases": [ { @@ -387391,7 +387397,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655624, + "complete_object_locator": 6468659720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -387400,32 +387406,32 @@ }, { "type_name": "C_PlayerVisibility", - "vtable_address": 6464522624, + "vtable_address": 6464526720, "methods": [ 6445466896, 6444275920, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444298880, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444278176, - 6450715424, - 6450580640, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -387434,25 +387440,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284800, 6444293920, 6444297568, 6443799760, 6444285872, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -387469,13 +387475,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -387483,39 +387489,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444297872, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -387529,33 +387535,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6444280192, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -387583,34 +387589,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -387653,7 +387659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241128, + "complete_object_locator": 6468245224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -387662,32 +387668,32 @@ }, { "type_name": "C_PointCamera", - "vtable_address": 6464568128, + "vtable_address": 6464572224, "methods": [ 6445466896, 6444334912, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444374064, - 6450413456, - 6450585280, - 6450586832, - 6450396576, + 6450415024, + 6450586848, + 6450588400, + 6450398144, 6444377136, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -387696,25 +387702,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348112, 6444366000, 6444370736, 6443799760, 6444351936, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -387731,13 +387737,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -387745,39 +387751,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377680, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444372880, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -387791,33 +387797,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -387845,34 +387851,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -387915,7 +387921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468242392, + "complete_object_locator": 6468246488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -387924,32 +387930,32 @@ }, { "type_name": "C_PointCameraVFOV", - "vtable_address": 6464569896, + "vtable_address": 6464573992, "methods": [ 6445466896, 6444334976, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444374176, - 6450413456, - 6450585280, - 6450586832, - 6450396576, + 6450415024, + 6450586848, + 6450588400, + 6450398144, 6444377136, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -387958,25 +387964,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444348128, 6444366016, 6444370784, 6443799760, 6444351936, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -387993,13 +387999,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -388007,39 +388013,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444377680, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, + 6450735600, 6444372896, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -388053,33 +388059,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -388107,34 +388113,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -388191,7 +388197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468245216, + "complete_object_locator": 6468249312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -388200,31 +388206,31 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 6464427512, + "vtable_address": 6464431608, "methods": [ 6445466928, 6443796496, - 6448846864, - 6460051264, + 6448848432, + 6460053456, 6443853040, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6443844608, 6443858256, 6443844048, @@ -388234,25 +388240,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817600, 6443854784, 6443865168, 6443799760, 6443818688, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -388269,13 +388275,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -388283,41 +388289,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -388329,33 +388335,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -388383,34 +388389,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -388420,24 +388426,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -388552,7 +388558,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222512, + "complete_object_locator": 6468226608, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -388561,14 +388567,14 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 6464429496, + "vtable_address": 6464433592, "methods": [ 6443794896, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -388672,7 +388678,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222688, + "complete_object_locator": 6468226784, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -388681,9 +388687,9 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 6464429552, + "vtable_address": 6464433648, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -388787,7 +388793,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222728, + "complete_object_locator": 6468226824, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -388796,7 +388802,7 @@ }, { "type_name": "C_PointClientUIDialog", - "vtable_address": 6464429568, + "vtable_address": 6464433664, "methods": [ 6443846736, 6443846160 @@ -388903,7 +388909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222768, + "complete_object_locator": 6468226864, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -388912,32 +388918,32 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 6464429680, + "vtable_address": 6464433776, "methods": [ 6445466928, 6443796672, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6443870784, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6443797840, 6443880144, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -388946,25 +388952,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817616, 6443854800, 6443865216, 6443799760, 6443818736, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -388981,13 +388987,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -388995,41 +389001,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6443883536, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6443869136, - 6449042320, - 6450473488, + 6449043872, + 6450475056, 6443845296, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -389041,33 +389047,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6443804976, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, + 6450667344, 6443848624, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -389095,34 +389101,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -389132,24 +389138,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -389264,7 +389270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222808, + "complete_object_locator": 6468226904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -389273,14 +389279,14 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 6464431664, + "vtable_address": 6464435760, "methods": [ 6443794908, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -389384,7 +389390,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468222992, + "complete_object_locator": 6468227088, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -389393,9 +389399,9 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 6464431720, + "vtable_address": 6464435816, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -389499,7 +389505,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223032, + "complete_object_locator": 6468227128, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -389508,7 +389514,7 @@ }, { "type_name": "C_PointClientUIHUD", - "vtable_address": 6464431736, + "vtable_address": 6464435832, "methods": [ 6443846736, 6443846160 @@ -389615,7 +389621,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223072, + "complete_object_locator": 6468227168, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -389624,31 +389630,31 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 6464432016, + "vtable_address": 6464436112, "methods": [ 6445466928, 6443796992, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6443870800, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6443797904, 6443880272, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6443844656, 6443858256, 6443844048, @@ -389658,25 +389664,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817632, 6443854816, 6443865264, 6443799760, 6443818784, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -389693,13 +389699,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -389707,41 +389713,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6443883552, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6443869152, - 6449042320, - 6450473488, + 6449043872, + 6450475056, 6443845376, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -389753,33 +389759,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6443804992, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -389807,34 +389813,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -389844,24 +389850,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -389989,7 +389995,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223568, + "complete_object_locator": 6468227664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -389998,14 +390004,14 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 6464434104, + "vtable_address": 6464438200, "methods": [ 6443794920, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -390109,7 +390115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223608, + "complete_object_locator": 6468227704, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -390118,9 +390124,9 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 6464434160, + "vtable_address": 6464438256, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -390224,7 +390230,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223648, + "complete_object_locator": 6468227744, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -390233,7 +390239,7 @@ }, { "type_name": "C_PointClientUIWorldPanel", - "vtable_address": 6464434176, + "vtable_address": 6464438272, "methods": [ 6443846736, 6443846160 @@ -390340,7 +390346,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468223688, + "complete_object_locator": 6468227784, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -390349,31 +390355,31 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 6464436880, + "vtable_address": 6464440976, "methods": [ 6445466928, 6443797056, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6443870800, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6443798400, 6443880272, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6443844656, 6443858256, 6443844048, @@ -390383,25 +390389,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817648, 6443854832, 6443865312, 6443799760, 6443818832, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -390418,13 +390424,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -390432,41 +390438,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6443883552, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, + 6450735600, 6443869152, - 6449042320, - 6450473488, + 6449043872, + 6450475056, 6443845808, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -390478,33 +390484,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, 6443805504, - 6451215568, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -390532,34 +390538,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -390569,24 +390575,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -390728,7 +390734,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468224232, + "complete_object_locator": 6468228328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -390737,14 +390743,14 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 6464438968, + "vtable_address": 6464443064, "methods": [ 6443794932, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -390862,7 +390868,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468224424, + "complete_object_locator": 6468228520, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -390871,9 +390877,9 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 6464439024, + "vtable_address": 6464443120, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -390991,7 +390997,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468224464, + "complete_object_locator": 6468228560, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -391000,7 +391006,7 @@ }, { "type_name": "C_PointClientUIWorldTextPanel", - "vtable_address": 6464439040, + "vtable_address": 6464443136, "methods": [ 6443846736, 6443846160 @@ -391121,7 +391127,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468224504, + "complete_object_locator": 6468228600, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -391130,32 +391136,32 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 6465989424, + "vtable_address": 6465993616, "methods": [ 6445466544, - 6450767008, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6450880352, - 6448980064, + 6450768576, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6450881920, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6450830144, - 6450573696, - 6450573648, + 6450831712, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -391164,25 +391170,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798496, - 6450850096, - 6450857520, + 6460060080, + 6450800064, + 6450851664, + 6450859088, 6443799760, - 6450799536, - 6448916960, + 6450801104, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -391199,13 +391205,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -391213,79 +391219,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450824144, - 6450829056, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825712, + 6450830624, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450778336, - 6451215568, + 6450779904, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450832896, - 6448995312, - 6448950416, + 6450667344, + 6450834464, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -391310,37 +391316,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -391350,61 +391356,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -391508,7 +391514,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573384, + "complete_object_locator": 6468577480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -391517,14 +391523,14 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 6465991616, + "vtable_address": 6465995808, "methods": [ - 6450764768, - 6448995376, - 6448972352, - 6448972096, + 6450766336, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -391628,7 +391634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573688, + "complete_object_locator": 6468577784, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -391637,9 +391643,9 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 6465991672, + "vtable_address": 6465995864, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -391743,7 +391749,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573728, + "complete_object_locator": 6468577824, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -391752,9 +391758,9 @@ }, { "type_name": "C_PointCommentaryNode", - "vtable_address": 6465991688, + "vtable_address": 6465995880, "methods": [ - 6450764756 + 6450766324 ], "bases": [ { @@ -391858,7 +391864,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573768, + "complete_object_locator": 6468577864, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -391867,31 +391873,31 @@ }, { "type_name": "C_PointEntity", - "vtable_address": 6464414744, + "vtable_address": 6464418840, "methods": [ 6444163808, 6443797120, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -391901,25 +391907,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444156496, 6444207056, 6443865360, 6443799760, 6444159920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -391936,13 +391942,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -391950,39 +391956,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -391996,33 +392002,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -392050,34 +392056,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -392120,7 +392126,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468219040, + "complete_object_locator": 6468223136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -392129,32 +392135,32 @@ }, { "type_name": "C_PointValueRemapper", - "vtable_address": 6466081312, + "vtable_address": 6466085520, "methods": [ 6445466896, - 6451281296, + 6451282864, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -392163,25 +392169,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451320400, - 6451371264, - 6451384096, + 6460060080, + 6451321968, + 6451372832, + 6451385664, 6443799760, - 6451320640, - 6450497856, + 6451322208, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -392198,13 +392204,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -392212,39 +392218,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6451350720, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6451352288, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -392258,33 +392264,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451293104, - 6451215568, + 6451294672, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -392312,34 +392318,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -392382,7 +392388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468600920, + "complete_object_locator": 6468605016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -392391,31 +392397,31 @@ }, { "type_name": "C_PointWorldText", - "vtable_address": 6466083320, - "methods": [ - 6451326240, - 6451281488, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6451390800, - 6450413456, - 6450585280, - 6450586832, - 6451282064, - 6451404768, - 6448980192, + "vtable_address": 6466087528, + "methods": [ + 6451327808, + 6451283056, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6451392368, + 6450415024, + 6450586848, + 6450588400, + 6451283632, + 6451406336, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6445478832, 6443858256, 6443844048, @@ -392425,25 +392431,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451320416, - 6451371280, - 6451384144, + 6460060080, + 6451321984, + 6451372848, + 6451385712, 6443799760, - 6451320688, - 6448917040, + 6451322256, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -392460,13 +392466,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -392474,41 +392480,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, - 6451411552, - 6450578848, + 6451413136, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6451387200, - 6449042320, - 6450473488, - 6451350880, - 6450579744, - 6449041632, + 6450735600, + 6451388768, + 6449043872, + 6450475056, + 6451352448, + 6450581312, + 6449043184, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -392520,33 +392526,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -392574,34 +392580,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -392611,24 +392617,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, - 6448935984, - 6448989984, - 6448861456, + 6448860704, + 6448937552, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -392721,7 +392727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468601056, + "complete_object_locator": 6468605152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -392730,14 +392736,14 @@ }, { "type_name": "C_PointWorldText", - "vtable_address": 6466085240, + "vtable_address": 6466089448, "methods": [ - 6451280396, - 6448995376, - 6448972352, - 6448972096, + 6451281964, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -392827,7 +392833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468601224, + "complete_object_locator": 6468605320, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -392836,9 +392842,9 @@ }, { "type_name": "C_PointWorldText", - "vtable_address": 6466085296, + "vtable_address": 6466089504, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -392928,7 +392934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468601264, + "complete_object_locator": 6468605360, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -392937,32 +392943,32 @@ }, { "type_name": "C_PortraitWorldCallbackHandler", - "vtable_address": 6464422064, + "vtable_address": 6464426160, "methods": [ 6445466896, 6443797184, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, 6443798624, - 6450715424, - 6450580640, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -392971,25 +392977,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6443817664, 6443854848, 6443865408, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -393006,13 +393012,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -393020,39 +393026,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -393066,33 +393072,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -393120,10 +393126,10 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, @@ -393132,22 +393138,22 @@ 6444252352, 6443869184, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -393190,7 +393196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468221200, + "complete_object_locator": 6468225296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -393199,31 +393205,31 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 6464586648, + "vtable_address": 6464590744, "methods": [ 6445466928, 6444389504, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444425632, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392368, 6444428800, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -393233,25 +393239,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399696, 6444418720, 6444424352, 6443799760, 6444402384, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -393268,13 +393274,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -393282,41 +393288,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444429328, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -393328,33 +393334,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -393382,34 +393388,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -393419,24 +393425,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -393579,7 +393585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468246896, + "complete_object_locator": 6468250992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -393588,14 +393594,14 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 6464588632, + "vtable_address": 6464592728, "methods": [ 6444388976, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -393727,7 +393733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247168, + "complete_object_locator": 6468251264, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -393736,9 +393742,9 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 6464588688, + "vtable_address": 6464592784, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -393870,7 +393876,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247208, + "complete_object_locator": 6468251304, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -393879,7 +393885,7 @@ }, { "type_name": "C_PostProcessingVolume", - "vtable_address": 6464588704, + "vtable_address": 6464592800, "methods": [ 6444388988, 6444398064 @@ -394014,7 +394020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247248, + "complete_object_locator": 6468251344, "offset": 4080, "constructor_displacement": 0, "class_attributes": 1 @@ -394023,31 +394029,31 @@ }, { "type_name": "C_Precipitation", - "vtable_address": 6466144096, + "vtable_address": 6466148304, "methods": [ 6445466928, - 6451615536, - 6448846864, - 6460051264, - 6451639024, - 6448816832, + 6451617120, + 6448848432, + 6460053456, + 6451640608, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, - 6451616192, - 6451647296, - 6448980192, + 6450415024, + 6450586848, + 6450588400, + 6451617776, + 6451648880, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -394057,25 +394063,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451629968, + 6460060080, + 6451631552, 6445480112, - 6451641120, + 6451642704, 6443799760, 6445466432, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -394092,13 +394098,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -394106,41 +394112,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6451636512, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6451638096, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -394152,33 +394158,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6451617344, - 6451215568, + 6451618928, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -394206,34 +394212,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6451632160, - 6451632144, + 6451633744, + 6451633728, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -394243,24 +394249,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -394375,7 +394381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619872, + "complete_object_locator": 6468623968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -394384,14 +394390,14 @@ }, { "type_name": "C_Precipitation", - "vtable_address": 6466146080, + "vtable_address": 6466150288, "methods": [ - 6451615076, - 6448995376, - 6448972352, - 6448972096, + 6451616660, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -394495,7 +394501,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620048, + "complete_object_locator": 6468624144, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -394504,9 +394510,9 @@ }, { "type_name": "C_Precipitation", - "vtable_address": 6466146136, + "vtable_address": 6466150344, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -394610,7 +394616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620088, + "complete_object_locator": 6468624184, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -394619,32 +394625,32 @@ }, { "type_name": "C_PrecipitationBlocker", - "vtable_address": 6466142104, + "vtable_address": 6466146312, "methods": [ 6445466928, - 6451615840, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6451617424, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -394653,25 +394659,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445463824, 6445480128, - 6451641168, + 6451642752, 6443799760, 6445466480, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -394688,13 +394694,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -394702,41 +394708,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -394748,33 +394754,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -394802,34 +394808,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -394839,24 +394845,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -394935,7 +394941,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620128, + "complete_object_locator": 6468624224, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -394944,14 +394950,14 @@ }, { "type_name": "C_PrecipitationBlocker", - "vtable_address": 6466144024, + "vtable_address": 6466148232, "methods": [ - 6451615088, - 6448995376, - 6448972352, - 6448972096, + 6451616672, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -395027,7 +395033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620288, + "complete_object_locator": 6468624384, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -395036,9 +395042,9 @@ }, { "type_name": "C_PrecipitationBlocker", - "vtable_address": 6466144080, + "vtable_address": 6466148288, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -395114,7 +395120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468620328, + "complete_object_locator": 6468624424, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -395123,10 +395129,10 @@ }, { "type_name": "C_PreviewModelLoadCallback", - "vtable_address": 6466223056, + "vtable_address": 6466227168, "methods": [ - 6452021488, - 6452031088 + 6452023072, + 6452032672 ], "bases": [ { @@ -395146,7 +395152,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468641864, + "complete_object_locator": 6468645960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -395155,32 +395161,32 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 6464811640, + "vtable_address": 6464815720, "methods": [ 6445466544, 6445502080, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449381552, - 6450413456, - 6450834976, - 6450586832, - 6450768288, - 6450880112, - 6450831168, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449383104, + 6450415024, + 6450836544, + 6450588400, + 6450769856, + 6450881680, + 6450832736, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6449215600, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6449217152, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450822128, + 6448981552, + 6450575264, + 6450823696, 6443858256, 6443844048, 6443844080, @@ -395189,25 +395195,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798512, + 6460060080, + 6450800080, 6445514528, 6445514800, 6443799760, 6445505600, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -395223,14 +395229,14 @@ 6443848592, 6443843664, 6444234768, - 6449201712, - 6448882736, + 6449203264, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -395238,86 +395244,86 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, - 6449316048, - 6449317680, + 6448913264, + 6449317600, + 6449319232, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450796816, - 6449317904, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450798384, + 6449319456, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6449393088, + 6449394640, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, 6443838624, - 6449380704, + 6449382256, 6443837312, 6443843984, 6443843968, @@ -395335,37 +395341,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6449277712, - 6450500240, + 6450653808, + 6449279264, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -395375,68 +395381,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6449198416, - 6449318064, + 6449062560, + 6449199968, + 6449319616, 6445478896, - 6449281200, + 6449282752, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6449320400, + 6448811984, + 6449321952, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -395610,7 +395616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468286400, + "complete_object_locator": 6468290496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -395619,14 +395625,14 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 6464813888, + "vtable_address": 6464817968, "methods": [ 6445501684, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -395800,7 +395806,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287160, + "complete_object_locator": 6468291256, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -395809,9 +395815,9 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 6464813944, + "vtable_address": 6464818024, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -395985,7 +395991,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287200, + "complete_object_locator": 6468291296, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -395994,10 +396000,10 @@ }, { "type_name": "C_PropDoorRotating", - "vtable_address": 6464813960, + "vtable_address": 6464818040, "methods": [ 6445501672, - 6450796384 + 6450797952 ], "bases": [ { @@ -396171,7 +396177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287240, + "complete_object_locator": 6468291336, "offset": 5152, "constructor_displacement": 0, "class_attributes": 1 @@ -396180,32 +396186,32 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 6466092184, + "vtable_address": 6466096392, "methods": [ 6445466544, - 6451281664, - 6451298288, - 6448866800, - 6448990768, - 6448816736, - 6451390816, - 6450413456, - 6451356480, - 6450586832, - 6451282336, - 6449061952, - 6448980064, + 6451283232, + 6451299856, + 6448868368, + 6448992336, + 6448818304, + 6451392384, + 6450415024, + 6451358048, + 6450588400, + 6451283904, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -396214,25 +396220,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445558512, 6445562768, - 6451384192, + 6451385760, 6443799760, 6445559488, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -396249,13 +396255,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -396263,79 +396269,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6451388848, - 6450473488, - 6451351104, - 6450579744, + 6450735600, + 6449042848, + 6451390416, + 6450475056, + 6451352672, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6451412112, + 6451413696, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6451353072, - 6448995312, - 6448950416, + 6450667344, + 6451354640, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -396360,37 +396366,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6451326016, - 6450500240, + 6450653808, + 6451327584, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -396400,61 +396406,61 @@ 6444207072, 6444190512, 6443887696, - 6451351808, + 6451353376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -396558,7 +396564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602480, + "complete_object_locator": 6468606576, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -396567,14 +396573,14 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 6466094376, + "vtable_address": 6466098584, "methods": [ - 6451280408, - 6448995376, - 6448972352, - 6448972096, + 6451281976, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -396678,7 +396684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602656, + "complete_object_locator": 6468606752, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -396687,9 +396693,9 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 6466094432, + "vtable_address": 6466098640, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -396793,7 +396799,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602696, + "complete_object_locator": 6468606792, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -396802,12 +396808,12 @@ }, { "type_name": "C_RagdollProp", - "vtable_address": 6466094448, + "vtable_address": 6466098656, "methods": [ - 6451318320, + 6451319888, 6447786432, 6447786416, - 6451326224 + 6451327792 ], "bases": [ { @@ -396911,7 +396917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602736, + "complete_object_locator": 6468606832, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -396920,32 +396926,32 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 6466094520, + "vtable_address": 6466098728, "methods": [ 6445466544, - 6451281728, - 6451298288, - 6448866800, - 6448990768, - 6448816736, - 6451390816, - 6450413456, - 6451356480, - 6450586832, - 6451282336, - 6449061952, - 6448980064, + 6451283296, + 6451299856, + 6448868368, + 6448992336, + 6448818304, + 6451392384, + 6450415024, + 6451358048, + 6450588400, + 6451283904, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -396954,25 +396960,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451320432, - 6451371296, - 6451384240, + 6460060080, + 6451322000, + 6451372864, + 6451385808, 6443799760, - 6451320736, - 6448916960, + 6451322304, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -396989,13 +396995,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -397003,79 +397009,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6451388848, - 6450473488, - 6451351120, - 6450579744, + 6450735600, + 6449042848, + 6451390416, + 6450475056, + 6451352688, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6451412112, + 6451413696, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6451353072, - 6448995312, - 6448950416, + 6450667344, + 6451354640, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -397100,37 +397106,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6451326016, - 6450500240, + 6450653808, + 6451327584, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -397140,61 +397146,61 @@ 6444207072, 6444190512, 6443887696, - 6451351808, + 6451353376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -397312,7 +397318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602776, + "complete_object_locator": 6468606872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -397321,14 +397327,14 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 6466096712, + "vtable_address": 6466100920, "methods": [ - 6451280420, - 6448995376, - 6448972352, - 6448972096, + 6451281988, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -397446,7 +397452,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468602968, + "complete_object_locator": 6468607064, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -397455,9 +397461,9 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 6466096768, + "vtable_address": 6466100976, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -397575,7 +397581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603008, + "complete_object_locator": 6468607104, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -397584,12 +397590,12 @@ }, { "type_name": "C_RagdollPropAttached", - "vtable_address": 6466096784, + "vtable_address": 6466100992, "methods": [ - 6451319184, + 6451320752, 6447786432, 6447786416, - 6451326224 + 6451327792 ], "bases": [ { @@ -397707,7 +397713,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603048, + "complete_object_locator": 6468607144, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -397716,32 +397722,32 @@ }, { "type_name": "C_RectLight", - "vtable_address": 6466359232, + "vtable_address": 6466363392, "methods": [ 6445466928, - 6452535776, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6452561280, - 6450413456, - 6450585280, - 6450586832, - 6452535840, - 6452567072, - 6448980192, + 6452537392, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6452562896, + 6450415024, + 6450586848, + 6450588400, + 6452537456, + 6452568688, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6452550016, - 6450573696, - 6450573648, + 6452551632, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -397750,25 +397756,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452542336, - 6452550848, - 6452556560, + 6460060080, + 6452543952, + 6452552464, + 6452558176, 6443799760, - 6452542928, - 6448917040, + 6452544544, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -397785,13 +397791,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -397799,41 +397805,41 @@ 6443887776, 6443887712, 6443887840, - 6452537264, + 6452538880, 6443845040, 6443866784, 6444163696, - 6452570368, - 6450578848, + 6452571984, + 6450580416, 6443848048, - 6450496704, - 6452549216, - 6452549680, + 6450498272, + 6452550832, + 6452551296, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6452561264, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6452562880, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -397845,33 +397851,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -397899,34 +397905,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -397936,30 +397942,30 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6452547872, - 6452541104, - 6452565792 + 6452549488, + 6452542720, + 6452567408 ], "bases": [ { @@ -398049,7 +398055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681400, + "complete_object_locator": 6468685496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -398058,14 +398064,14 @@ }, { "type_name": "C_RectLight", - "vtable_address": 6466361176, + "vtable_address": 6466365336, "methods": [ - 6452535628, - 6448995376, - 6448972352, - 6448972096, + 6452537244, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -398155,7 +398161,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681568, + "complete_object_locator": 6468685664, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -398164,9 +398170,9 @@ }, { "type_name": "C_RectLight", - "vtable_address": 6466361232, + "vtable_address": 6466365392, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -398256,7 +398262,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468681608, + "complete_object_locator": 6468685704, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -398265,7 +398271,7 @@ }, { "type_name": "C_RetakeGameRules", - "vtable_address": 6465326928, + "vtable_address": 6465330992, "methods": [ 6447808672, 6447816144, @@ -398306,7 +398312,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468430880, + "complete_object_locator": 6468434976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -398315,32 +398321,32 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 6465992024, + "vtable_address": 6465996216, "methods": [ 6445466928, - 6450767216, - 6450781616, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450769536, - 6450880432, - 6448980192, + 6450768784, + 6450783184, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450771104, + 6450882000, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -398349,25 +398355,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504304, 6445514544, - 6450857568, + 6450859136, 6443799760, 6445505648, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -398384,55 +398390,55 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, 6443837904, 6443887776, 6443887712, - 6450883040, - 6450431424, + 6450884608, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6450860400, - 6449042320, - 6450473488, - 6450826864, - 6450579744, + 6450735600, + 6450861968, + 6449043872, + 6450475056, + 6450828432, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -398444,33 +398450,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450778528, - 6451215568, + 6450780096, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -398498,34 +398504,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -398535,24 +398541,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -398645,7 +398651,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468568968, + "complete_object_locator": 6468573064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -398654,14 +398660,14 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 6465993944, + "vtable_address": 6465998136, "methods": [ - 6450764780, - 6448995376, - 6448972352, - 6448972096, + 6450766348, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -398751,7 +398757,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569176, + "complete_object_locator": 6468573272, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -398760,9 +398766,9 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 6465994000, + "vtable_address": 6465998192, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -398852,7 +398858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569216, + "complete_object_locator": 6468573312, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -398861,10 +398867,10 @@ }, { "type_name": "C_RopeKeyframe", - "vtable_address": 6465994016, + "vtable_address": 6465998208, "methods": [ - 6450821312, - 6450807856 + 6450822880, + 6450809424 ], "bases": [ { @@ -398954,7 +398960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569256, + "complete_object_locator": 6468573352, "offset": 3760, "constructor_displacement": 0, "class_attributes": 1 @@ -398963,11 +398969,11 @@ }, { "type_name": "C_RopeKeyframe::CPhysicsDelegate", - "vtable_address": 6465991992, + "vtable_address": 6465996184, "methods": [ - 6450807072, - 6450775472, - 6450857040 + 6450808640, + 6450777040, + 6450858608 ], "bases": [ { @@ -398987,7 +398993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468573848, + "complete_object_locator": 6468577944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -398996,31 +399002,31 @@ }, { "type_name": "C_SceneEntity", - "vtable_address": 6465994392, + "vtable_address": 6465998584, "methods": [ 6444163808, - 6450767440, + 6450769008, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450835104, - 6450586832, - 6450396576, - 6450880848, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450836672, + 6450588400, + 6450398144, + 6450882416, + 6450582208, 6443817760, 6443797616, - 6450835744, + 6450837312, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, + 6450581840, + 6450575264, 6443844704, 6443858256, 6443844048, @@ -399030,25 +399036,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504320, 6445514560, - 6450857616, + 6450859184, 6443799760, 6445505696, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -399065,13 +399071,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -399079,39 +399085,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450796832, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450798400, + 6450576224, + 6450581312, 6444234800, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -399125,33 +399131,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450779040, - 6451215568, + 6450780608, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -399179,34 +399185,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -399216,18 +399222,18 @@ 6444207072, 6444190512, 6443887696, - 6450869680, - 6450857904, - 6450788432, - 6450788096, - 6450788240, - 6450788000, - 6450788176, - 6450787968, - 6450788304, - 6450788032, - 6450788368, - 6450788064 + 6450871248, + 6450859472, + 6450790000, + 6450789664, + 6450789808, + 6450789568, + 6450789744, + 6450789536, + 6450789872, + 6450789600, + 6450789936, + 6450789632 ], "bases": [ { @@ -399289,7 +399295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569296, + "complete_object_locator": 6468573392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -399298,11 +399304,11 @@ }, { "type_name": "C_SceneEntity", - "vtable_address": 6465996240, + "vtable_address": 6466000432, "methods": [ - 6450863328, - 6450790992, - 6450835856 + 6450864896, + 6450792560, + 6450837424 ], "bases": [ { @@ -399364,7 +399370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468569568, + "complete_object_locator": 6468573664, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -399373,12 +399379,12 @@ }, { "type_name": "C_ServerPeerGroup", - "vtable_address": 6465982456, + "vtable_address": 6465986648, "methods": [ - 6450767744, - 6450808112, - 6450818256, - 6450800496 + 6450769312, + 6450809680, + 6450819824, + 6450802064 ], "bases": [ { @@ -399412,7 +399418,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572672, + "complete_object_locator": 6468576768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -399421,10 +399427,10 @@ }, { "type_name": "C_ServerPeerGroup", - "vtable_address": 6465982496, + "vtable_address": 6465986688, "methods": [ - 6450770256, - 6450809120 + 6450771824, + 6450810688 ], "bases": [ { @@ -399458,7 +399464,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468572848, + "complete_object_locator": 6468576944, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -399467,10 +399473,10 @@ }, { "type_name": "C_ServerVoiceHandler", - "vtable_address": 6465996984, + "vtable_address": 6466001176, "methods": [ - 6450770320, - 6450809776 + 6450771888, + 6450811344 ], "bases": [ { @@ -399490,7 +399496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468574224, + "complete_object_locator": 6468578320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -399499,13 +399505,13 @@ }, { "type_name": "C_ServerVoiceHandlerInit", - "vtable_address": 6465964760, + "vtable_address": 6465968952, "methods": [ - 6450748240, + 6450749808, 6443748592, - 6450748800, + 6450750368, 6443748624, - 6450748656, + 6450750224, 6443748656, 6443748672, 6443748688, @@ -399557,11 +399563,11 @@ 6443749424, 6443749440, 6443749456, - 6450748208, + 6450749776, 6443749488, - 6450748192, - 6450748816, - 6450748176 + 6450749760, + 6450750384, + 6450749744 ], "bases": [ { @@ -399595,7 +399601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567392, + "complete_object_locator": 6468571488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -399604,32 +399610,32 @@ }, { "type_name": "C_ShatterGlassShardPhysics", - "vtable_address": 6466051456, + "vtable_address": 6466055664, "methods": [ 6445466544, - 6451088672, - 6448846688, - 6448866800, - 6448990896, - 6448816736, - 6449044240, - 6450413456, - 6448987824, - 6450586832, - 6451089472, - 6451156608, - 6448980064, + 6451090240, + 6448848256, + 6448868368, + 6448992464, + 6448818304, + 6449045792, + 6450415024, + 6448989392, + 6450588400, + 6451091040, + 6451158176, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882464, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884032, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450822176, + 6448981552, + 6450575264, + 6450823744, 6443858256, 6443844048, 6443844080, @@ -399638,25 +399644,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451117008, + 6460060080, + 6451118576, 6444443872, - 6451142624, + 6451144192, 6443799760, 6444439488, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -399673,13 +399679,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -399687,79 +399693,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6450824096, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6450825664, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, - 6449056096, + 6450471280, + 6449057648, 6444243600, 6444142576, 6443875152, - 6451096192, - 6451215568, + 6451097760, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -399784,37 +399790,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -399824,68 +399830,68 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980704, - 6448981760, - 6448981600, + 6448983152, + 6448983984, + 6448982272, + 6448983328, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6447950480, + 6448811984, + 6447952048, 6445485120, - 6448920880, + 6448922448, 6445505936, 6445514080, 6445513984, - 6448935248 + 6448936816 ], "bases": [ { @@ -400017,7 +400023,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590272, + "complete_object_locator": 6468594368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -400026,14 +400032,14 @@ }, { "type_name": "C_ShatterGlassShardPhysics", - "vtable_address": 6466053704, + "vtable_address": 6466057912, "methods": [ - 6451086516, - 6448995376, - 6448972352, - 6448972096, + 6451088084, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -400165,7 +400171,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590464, + "complete_object_locator": 6468594560, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -400174,9 +400180,9 @@ }, { "type_name": "C_ShatterGlassShardPhysics", - "vtable_address": 6466053760, + "vtable_address": 6466057968, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -400308,7 +400314,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590504, + "complete_object_locator": 6468594600, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -400317,13 +400323,13 @@ }, { "type_name": "C_ShatterGlassShardPhysics::NetworkVar_m_ShardDesc", - "vtable_address": 6466051408, + "vtable_address": 6466055616, "methods": [ - 6451142720, - 6451131760, - 6451131952, - 6451131888, - 6451117024 + 6451144288, + 6451133328, + 6451133520, + 6451133456, + 6451118592 ], "bases": [ { @@ -400343,7 +400349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590544, + "complete_object_locator": 6468594640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -400352,32 +400358,32 @@ }, { "type_name": "C_SkyCamera", - "vtable_address": 6466096888, + "vtable_address": 6466101096, "methods": [ 6445466896, - 6451281792, + 6451283360, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -400386,25 +400392,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451320448, + 6460060080, + 6451322016, 6445562784, - 6451384288, + 6451385856, 6443799760, 6445559536, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -400421,13 +400427,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -400435,39 +400441,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -400481,33 +400487,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -400535,34 +400541,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -400605,7 +400611,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603088, + "complete_object_locator": 6468607184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -400614,12 +400620,12 @@ }, { "type_name": "C_SkyCamera::NetworkVar_m_skyboxData", - "vtable_address": 6466096848, + "vtable_address": 6466101056, "methods": [ - 6449720848, - 6451349792, - 6449641552, - 6451349840 + 6449722416, + 6451351360, + 6449643120, + 6451351408 ], "bases": [ { @@ -400639,7 +400645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468603224, + "complete_object_locator": 6468607320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -400648,32 +400654,32 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 6465622272, + "vtable_address": 6465626448, "methods": [ 6445466912, - 6448238512, - 6450431440, - 6448866800, - 6448035744, - 6448816736, - 6448258768, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448240080, + 6450433008, + 6448868368, + 6448037312, + 6448818304, + 6448260336, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -400682,26 +400688,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246224, - 6448249296, - 6448258064, + 6460060080, + 6448247792, + 6448250864, + 6448259632, 6443799760, - 6448246848, - 6448247440, + 6448248416, + 6448249008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -400712,98 +400718,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448048912, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448050480, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -400814,51 +400820,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -400868,211 +400874,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448003664, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448002208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069568, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448018592, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448005232, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448003776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071136, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448020160, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6448050544, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6448048976, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448034464, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035488, - 6447994912, - 6448035984, - 6448046464, - 6448028672, - 6448170624, - 6448027936, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448018736, - 6448037472, - 6448147040, - 6448027744, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448033248, - 6448027856, - 6448027888, - 6448027040, - 6447992448, - 6448033632, - 6448059312, - 6448243296, - 6448247040 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448036032, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037056, + 6447996480, + 6448037552, + 6448048032, + 6448030240, + 6448172192, + 6448029504, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448020304, + 6448039040, + 6448148608, + 6448029312, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448034816, + 6448029424, + 6448029456, + 6448028608, + 6447994016, + 6448035200, + 6448060880, + 6448244864, + 6448248608 ], "bases": [ { @@ -401302,7 +401308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475504, + "complete_object_locator": 6468479600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -401311,14 +401317,14 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 6465625664, + "vtable_address": 6465629840, "methods": [ - 6448237956, - 6448995376, - 6448972352, - 6448972096, + 6448239524, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -401548,7 +401554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475752, + "complete_object_locator": 6468479848, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -401557,9 +401563,9 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 6465625720, + "vtable_address": 6465629896, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -401789,7 +401795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475792, + "complete_object_locator": 6468479888, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -401798,12 +401804,12 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 6465625736, + "vtable_address": 6465629912, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -402033,7 +402039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475832, + "complete_object_locator": 6468479928, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -402042,14 +402048,14 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 6465625776, + "vtable_address": 6465629952, "methods": [ - 6448258100, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259668, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -402279,7 +402285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475872, + "complete_object_locator": 6468479968, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -402288,10 +402294,10 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 6465625832, + "vtable_address": 6465630008, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -402521,7 +402527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475912, + "complete_object_locator": 6468480008, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -402530,10 +402536,10 @@ }, { "type_name": "C_SmokeGrenade", - "vtable_address": 6465625856, + "vtable_address": 6465630032, "methods": [ - 6448237944, - 6448154928 + 6448239512, + 6448156496 ], "bases": [ { @@ -402763,7 +402769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475952, + "complete_object_locator": 6468480048, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -402772,32 +402778,32 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 6465418568, + "vtable_address": 6465422728, "methods": [ 6445466912, - 6447990176, - 6450431440, - 6448866800, + 6447991744, + 6450433008, + 6448868368, 6447783584, - 6448816736, - 6448054576, - 6450413456, - 6448035472, - 6450586832, - 6450396992, - 6448065280, - 6448980064, + 6448818304, + 6448056144, + 6450415024, + 6448037040, + 6450588400, + 6450398560, + 6448066848, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -402806,25 +402812,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448009952, - 6448037456, - 6448046416, + 6460060080, + 6448011520, + 6448039024, + 6448047984, 6443799760, - 6448011344, + 6448012912, 6447763584, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -402841,93 +402847,93 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473504, - 6448033488, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475072, + 6448035056, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6447995376, - 6451215568, + 6447996944, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -402952,37 +402958,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -402992,65 +402998,65 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, 6447771840, 6447756624, @@ -403060,10 +403066,10 @@ 6447750752, 6447764304, 6447764320, - 6448011520, + 6448013088, 6447758496, 6447786240, - 6448034496 + 6448036064 ], "bases": [ { @@ -403223,7 +403229,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447568, + "complete_object_locator": 6468451664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -403232,14 +403238,14 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 6465420896, + "vtable_address": 6465425056, "methods": [ - 6447988848, - 6448995376, - 6448972352, - 6448972096, + 6447990416, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -403399,7 +403405,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447896, + "complete_object_locator": 6468451992, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -403408,9 +403414,9 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 6465420952, + "vtable_address": 6465425112, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -403570,7 +403576,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447936, + "complete_object_locator": 6468452032, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -403579,9 +403585,9 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 6465420968, + "vtable_address": 6465425128, "methods": [ - 6450481520, + 6450483088, 6447786432, 6447786416, 6447764288 @@ -403744,7 +403750,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468447976, + "complete_object_locator": 6468452072, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -403753,9 +403759,9 @@ }, { "type_name": "C_SmokeGrenadeProjectile", - "vtable_address": 6465421008, + "vtable_address": 6465425168, "methods": [ - 6447988836 + 6447990404 ], "bases": [ { @@ -403915,7 +403921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448016, + "complete_object_locator": 6468452112, "offset": 5200, "constructor_displacement": 0, "class_attributes": 1 @@ -403924,32 +403930,32 @@ }, { "type_name": "C_SoundAreaEntityOrientedBox", - "vtable_address": 6464593200, + "vtable_address": 6464597296, "methods": [ 6445466896, 6444389760, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -403958,25 +403964,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399712, 6444418736, 6444424400, 6443799760, 6444402432, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -403993,13 +403999,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -404007,39 +404013,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, + 6450735600, + 6450684352, + 6450685600, + 6450475056, 6444410032, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -404053,33 +404059,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -404107,34 +404113,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -404193,7 +404199,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468248456, + "complete_object_locator": 6468252552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -404202,32 +404208,32 @@ }, { "type_name": "C_SoundAreaEntitySphere", - "vtable_address": 6464591432, + "vtable_address": 6464595528, "methods": [ 6445466896, 6444389824, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -404236,25 +404242,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399728, 6444418752, 6444424448, 6443799760, 6444402480, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -404271,13 +404277,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -404285,39 +404291,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, + 6450735600, + 6450684352, + 6450685600, + 6450475056, 6444410032, - 6450579744, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -404331,33 +404337,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -404385,34 +404391,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -404471,7 +404477,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468248312, + "complete_object_locator": 6468252408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -404480,32 +404486,32 @@ }, { "type_name": "C_SoundEventAABBEntity", - "vtable_address": 6464598664, + "vtable_address": 6464602760, "methods": [ 6445466896, 6444389888, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444425648, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392896, 6444428864, 6444410320, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -404514,25 +404520,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399744, 6444418768, 6444424496, 6443799760, 6444402528, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -404549,13 +404555,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -404563,39 +404569,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -404609,33 +404615,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -404663,34 +404669,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -404749,7 +404755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468248880, + "complete_object_locator": 6468252976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -404758,32 +404764,32 @@ }, { "type_name": "C_SoundEventEntity", - "vtable_address": 6464595128, + "vtable_address": 6464599224, "methods": [ 6445466896, 6444390128, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444425648, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392896, 6444428864, 6444410320, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -404792,25 +404798,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399760, 6444418784, 6444424544, 6443799760, 6444402576, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -404827,13 +404833,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -404841,39 +404847,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -404887,33 +404893,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -404941,34 +404947,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -405013,7 +405019,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468248600, + "complete_object_locator": 6468252696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -405022,32 +405028,32 @@ }, { "type_name": "C_SoundEventEntityAlias_snd_event_point", - "vtable_address": 6464596896, + "vtable_address": 6464600992, "methods": [ 6445466896, 6444390368, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444425648, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392896, 6444428864, 6444410320, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -405056,25 +405062,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399776, 6444418800, 6444424592, 6443799760, 6444402576, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -405091,13 +405097,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -405105,39 +405111,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -405151,33 +405157,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -405205,34 +405211,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -405291,7 +405297,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468248736, + "complete_object_locator": 6468252832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -405300,32 +405306,32 @@ }, { "type_name": "C_SoundEventOBBEntity", - "vtable_address": 6464600432, + "vtable_address": 6464604528, "methods": [ 6445466896, 6444390608, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444425648, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392896, 6444428864, 6444410320, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -405334,25 +405340,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399792, 6444418816, 6444424640, 6443799760, 6444402624, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -405369,13 +405375,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -405383,39 +405389,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -405429,33 +405435,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -405483,34 +405489,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -405569,7 +405575,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249024, + "complete_object_locator": 6468253120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -405578,32 +405584,32 @@ }, { "type_name": "C_SoundEventPathCornerEntity", - "vtable_address": 6464603968, + "vtable_address": 6464608064, "methods": [ 6445466896, 6444390848, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444425648, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392896, 6444428864, 6444410320, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -405612,25 +405618,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399808, 6444418832, 6444424688, 6443799760, 6444402672, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -405647,13 +405653,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -405661,39 +405667,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -405707,33 +405713,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -405761,34 +405767,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -405847,7 +405853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249312, + "complete_object_locator": 6468253408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -405856,32 +405862,32 @@ }, { "type_name": "C_SoundEventSphereEntity", - "vtable_address": 6464602200, + "vtable_address": 6464606296, "methods": [ 6445466896, 6444391200, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, + 6450411680, 6444425648, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444392896, 6444428864, 6444410320, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -405890,25 +405896,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399824, 6444418848, 6444424736, 6443799760, 6444402720, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -405925,13 +405931,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -405939,39 +405945,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -405985,33 +405991,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -406039,34 +406045,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -406125,7 +406131,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468249168, + "complete_object_locator": 6468253264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -406134,32 +406140,32 @@ }, { "type_name": "C_SoundOpvarSetAABBEntity", - "vtable_address": 6464645800, + "vtable_address": 6464649880, "methods": [ 6445466896, 6444463696, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -406168,25 +406174,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476688, + 6460060080, + 6451478272, 6444476848, 6444477136, 6443799760, 6444468912, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -406203,13 +406209,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -406217,39 +406223,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -406263,33 +406269,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -406317,34 +406323,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -406415,7 +406421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468251112, + "complete_object_locator": 6468255208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -406424,32 +406430,32 @@ }, { "type_name": "C_SoundOpvarSetAutoRoomEntity", - "vtable_address": 6464651056, + "vtable_address": 6464655136, "methods": [ 6445466896, 6444463760, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -406458,25 +406464,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476704, + 6460060080, + 6451478288, 6444476864, 6444477184, 6443799760, 6444468960, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -406493,13 +406499,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -406507,39 +406513,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -406553,33 +406559,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -406607,34 +406613,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -406705,7 +406711,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468251776, + "complete_object_locator": 6468255872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -406714,32 +406720,32 @@ }, { "type_name": "C_SoundOpvarSetOBBEntity", - "vtable_address": 6464647552, + "vtable_address": 6464651632, "methods": [ 6445466896, 6444463824, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -406748,25 +406754,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476720, + 6460060080, + 6451478304, 6444476880, 6444477232, 6443799760, 6444469008, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -406783,13 +406789,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -406797,39 +406803,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -406843,33 +406849,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -406897,34 +406903,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -407009,7 +407015,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468251464, + "complete_object_locator": 6468255560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -407018,32 +407024,32 @@ }, { "type_name": "C_SoundOpvarSetOBBWindEntity", - "vtable_address": 6464652808, + "vtable_address": 6464656888, "methods": [ 6445466896, 6444463888, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -407052,25 +407058,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476736, + 6460060080, + 6451478320, 6444476896, 6444477280, 6443799760, 6444469056, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -407087,13 +407093,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -407101,39 +407107,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -407147,33 +407153,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -407201,34 +407207,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -407285,7 +407291,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468251928, + "complete_object_locator": 6468256024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -407294,32 +407300,32 @@ }, { "type_name": "C_SoundOpvarSetPathCornerEntity", - "vtable_address": 6464649304, + "vtable_address": 6464653384, "methods": [ 6445466896, 6444463952, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -407328,25 +407334,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476752, + 6460060080, + 6451478336, 6444476912, 6444477328, 6443799760, 6444469104, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -407363,13 +407369,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -407377,39 +407383,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -407423,33 +407429,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -407477,34 +407483,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -407575,7 +407581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468251624, + "complete_object_locator": 6468255720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -407584,32 +407590,32 @@ }, { "type_name": "C_SoundOpvarSetPointBase", - "vtable_address": 6466112920, + "vtable_address": 6466117128, "methods": [ 6445466896, - 6451449216, + 6451450800, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -407618,25 +407624,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476768, + 6460060080, + 6451478352, 6444476928, - 6451520336, + 6451521920, 6443799760, 6444469152, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -407653,13 +407659,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -407667,39 +407673,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -407713,33 +407719,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -407767,34 +407773,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -407837,7 +407843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608648, + "complete_object_locator": 6468612744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -407846,32 +407852,32 @@ }, { "type_name": "C_SoundOpvarSetPointEntity", - "vtable_address": 6466114672, + "vtable_address": 6466118880, "methods": [ 6445466896, - 6451449280, + 6451450864, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -407880,25 +407886,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476784, + 6460060080, + 6451478368, 6444476944, - 6451520384, + 6451521968, 6443799760, 6444469200, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -407915,13 +407921,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -407929,39 +407935,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -407975,33 +407981,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -408029,34 +408035,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -408113,7 +408119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468608688, + "complete_object_locator": 6468612784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -408122,13 +408128,13 @@ }, { "type_name": "C_SoundscapeSystem", - "vtable_address": 6465959232, + "vtable_address": 6465963424, "methods": [ 6443748576, 6443748592, 6443748608, - 6450751104, - 6450751120, + 6450752672, + 6450752688, 6443748656, 6443748672, 6443748688, @@ -408139,11 +408145,11 @@ 6443748768, 6443748784, 6443748800, - 6450751136, + 6450752704, 6443748832, 6443748848, - 6450751152, - 6450751552, + 6450752720, + 6450753120, 6443748896, 6443748912, 6443748928, @@ -408151,7 +408157,7 @@ 6443748960, 6443748976, 6443748992, - 6450751696, + 6450753264, 6443749024, 6443749040, 6443749056, @@ -408172,7 +408178,7 @@ 6443749296, 6443749312, 6443749328, - 6450751680, + 6450753248, 6443749360, 6443749376, 6443749392, @@ -408180,11 +408186,11 @@ 6443749424, 6443749440, 6443749456, - 6450751072, + 6450752640, 6443749488, - 6450751056, - 6450744432, - 6450751040 + 6450752624, + 6450746000, + 6450752608 ], "bases": [ { @@ -408204,7 +408210,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468567664, + "complete_object_locator": 6468571760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -408213,32 +408219,32 @@ }, { "type_name": "C_SpotlightEnd", - "vtable_address": 6465998064, + "vtable_address": 6466002256, "methods": [ 6445466928, - 6450767808, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6450769376, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -408247,25 +408253,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450798528, - 6450850112, - 6450857664, + 6460060080, + 6450800096, + 6450851680, + 6450859232, 6443799760, - 6450799584, - 6448917040, + 6450801152, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -408282,13 +408288,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -408296,41 +408302,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6450860480, - 6449042320, - 6450473488, - 6450826960, - 6450579744, + 6450735600, + 6450862048, + 6449043872, + 6450475056, + 6450828528, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -408342,33 +408348,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450779072, - 6451215568, + 6450780640, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -408396,34 +408402,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450860496, + 6450862064, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -408433,24 +408439,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -408529,7 +408535,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468574352, + "complete_object_locator": 6468578448, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -408538,14 +408544,14 @@ }, { "type_name": "C_SpotlightEnd", - "vtable_address": 6465999984, + "vtable_address": 6466004176, "methods": [ - 6450764792, - 6448995376, - 6448972352, - 6448972096, + 6450766360, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -408621,7 +408627,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468574512, + "complete_object_locator": 6468578608, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -408630,9 +408636,9 @@ }, { "type_name": "C_SpotlightEnd", - "vtable_address": 6466000040, + "vtable_address": 6466004232, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -408708,7 +408714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468574552, + "complete_object_locator": 6468578648, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -408717,32 +408723,32 @@ }, { "type_name": "C_Sprite", - "vtable_address": 6466119928, + "vtable_address": 6466124136, "methods": [ 6445466928, - 6451449344, - 6448846864, - 6460051264, - 6451501408, - 6448816832, - 6451527792, - 6450413456, - 6450585280, - 6450586832, - 6451449696, - 6451536432, - 6448980192, + 6451450928, + 6448848432, + 6460053456, + 6451502992, + 6448818400, + 6451529376, + 6450415024, + 6450586848, + 6450588400, + 6451451280, + 6451538016, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -408751,26 +408757,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451476800, + 6460060080, + 6451478384, 6444476960, - 6451520432, + 6451522016, 6443799760, 6444469248, - 6451480224, + 6451481808, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, - 6451501008, + 6450678224, + 6451502592, 6443817344, 6443817328, 6443817248, @@ -408786,13 +408792,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -408800,41 +408806,41 @@ 6443887776, 6443887712, 6443887840, - 6451461472, + 6451463056, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6451527680, - 6449042320, - 6450473488, - 6451498480, - 6451498688, + 6450735600, + 6451529264, + 6449043872, + 6450475056, + 6451500064, + 6451500272, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -408846,33 +408852,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6451460736, - 6451215568, + 6451462320, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -408900,34 +408906,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6451480320, - 6450500240, + 6450653808, + 6451481904, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -408937,29 +408943,29 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, - 6451480688, - 6451480480 + 6451482272, + 6451482064 ], "bases": [ { @@ -409035,7 +409041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609504, + "complete_object_locator": 6468613600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -409044,14 +409050,14 @@ }, { "type_name": "C_Sprite", - "vtable_address": 6466121864, + "vtable_address": 6466126072, "methods": [ - 6451446680, - 6448995376, - 6448972352, - 6448972096, + 6451448264, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -409127,7 +409133,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609544, + "complete_object_locator": 6468613640, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -409136,9 +409142,9 @@ }, { "type_name": "C_Sprite", - "vtable_address": 6466121920, + "vtable_address": 6466126128, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -409214,7 +409220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468609584, + "complete_object_locator": 6468613680, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -409223,32 +409229,32 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 6465442024, + "vtable_address": 6465446192, "methods": [ 6445466544, - 6448112416, - 6448846688, - 6448866800, - 6448199216, - 6448816736, - 6448215152, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6448219808, - 6448980064, + 6448113984, + 6448848256, + 6448868368, + 6448200784, + 6448818304, + 6448216720, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6448221376, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -409257,25 +409263,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156672, - 6448204048, - 6448208736, + 6460060080, + 6448158240, + 6448205616, + 6448210304, 6443799760, 6445465808, - 6448161408, + 6448162976, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -409292,13 +409298,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -409306,79 +409312,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6448212000, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6448213568, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448161520, - 6448992672, - 6450537248, - 6449036960, + 6448163088, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6448212384, + 6450600912, + 6450581824, + 6448213952, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -409403,37 +409409,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448212320, + 6448213888, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -409443,61 +409449,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -409615,7 +409621,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468450928, + "complete_object_locator": 6468455024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -409624,14 +409630,14 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 6465444216, + "vtable_address": 6465448384, "methods": [ - 6448110572, - 6448995376, - 6448972352, - 6448972096, + 6448112140, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -409749,7 +409755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451112, + "complete_object_locator": 6468455208, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -409758,9 +409764,9 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 6465444272, + "vtable_address": 6465448440, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -409878,7 +409884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451152, + "complete_object_locator": 6468455248, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -409887,11 +409893,11 @@ }, { "type_name": "C_StattrakModule", - "vtable_address": 6465444288, + "vtable_address": 6465448456, "methods": [ 6444481056, 6444481072, - 6448192960, + 6448194528, 6444481104 ], "bases": [ @@ -410010,7 +410016,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451192, + "complete_object_locator": 6468455288, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -410019,32 +410025,32 @@ }, { "type_name": "C_Team", - "vtable_address": 6464606536, + "vtable_address": 6464610632, "methods": [ 6445466896, 6444391440, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, 6444393248, 6444429008, - 6450580640, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -410053,14 +410059,14 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444399840, 6444418864, 6444424784, @@ -410071,7 +410077,7 @@ 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -410088,13 +410094,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -410102,39 +410108,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -410148,33 +410154,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -410202,34 +410208,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -410272,7 +410278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468247416, + "complete_object_locator": 6468251512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -410281,11 +410287,11 @@ }, { "type_name": "C_TempEntsSystem", - "vtable_address": 6466141592, + "vtable_address": 6466145800, "methods": [ - 6451605232, - 6451605296, - 6451605312 + 6451606816, + 6451606880, + 6451606896 ], "bases": [ { @@ -410305,7 +410311,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468615872, + "complete_object_locator": 6468619968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -410314,32 +410320,32 @@ }, { "type_name": "C_TextureBasedAnimatable", - "vtable_address": 6465886216, + "vtable_address": 6465890408, "methods": [ 6445466928, - 6450114432, - 6448846864, - 6460051264, - 6450244624, - 6448816832, - 6450274000, - 6450413456, - 6450241280, - 6450586832, - 6450115792, - 6449062640, - 6448980192, + 6450116000, + 6448848432, + 6460053456, + 6450246192, + 6448818400, + 6450275568, + 6450415024, + 6450242848, + 6450588400, + 6450117360, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6450243696, - 6448882720, + 6450245264, + 6448884288, 6444133632, - 6449026832, - 6450654976, - 6450235648, - 6448979984, - 6450573696, - 6450573648, + 6449028384, + 6450656544, + 6450237216, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -410348,25 +410354,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450177296, - 6450250544, - 6450256704, + 6460060080, + 6450178864, + 6450252112, + 6450258272, 6443799760, - 6450181264, - 6448917040, + 6450182832, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -410383,13 +410389,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -410397,41 +410403,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -410443,33 +410449,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450236000, + 6450667344, + 6450237568, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -410497,34 +410503,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -410534,24 +410540,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -410630,7 +410636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552320, + "complete_object_locator": 6468556416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -410639,14 +410645,14 @@ }, { "type_name": "C_TextureBasedAnimatable", - "vtable_address": 6465888136, + "vtable_address": 6465892328, "methods": [ - 6450112960, - 6448995376, - 6448972352, - 6448972096, + 6450114528, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -410722,7 +410728,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552480, + "complete_object_locator": 6468556576, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -410731,9 +410737,9 @@ }, { "type_name": "C_TextureBasedAnimatable", - "vtable_address": 6465888192, + "vtable_address": 6465892384, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -410809,7 +410815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552520, + "complete_object_locator": 6468556616, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -410818,32 +410824,32 @@ }, { "type_name": "C_TintController", - "vtable_address": 6466013800, + "vtable_address": 6466018008, "methods": [ 6445466896, - 6450922496, + 6450924064, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6451047968, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6451049536, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -410852,25 +410858,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504336, 6445514576, - 6451041536, + 6451043104, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -410887,13 +410893,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -410901,39 +410907,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -410947,33 +410953,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450942912, - 6451215568, + 6450944480, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -411001,34 +411007,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -411038,7 +411044,7 @@ 6444207072, 6444190512, 6443887696, - 6450988000 + 6450989568 ], "bases": [ { @@ -411072,7 +411078,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468580416, + "complete_object_locator": 6468584512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -411081,32 +411087,32 @@ }, { "type_name": "C_TonemapController2", - "vtable_address": 6464526912, + "vtable_address": 6464531008, "methods": [ 6445466896, 6444275984, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, + 6450411680, + 6450688880, + 6450415024, 6444293120, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -411115,25 +411121,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284816, 6444293936, 6444297616, 6443799760, 6444285920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -411150,13 +411156,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -411164,39 +411170,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -411210,33 +411216,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -411264,34 +411270,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -411334,7 +411340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468240584, + "complete_object_locator": 6468244680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -411343,32 +411349,32 @@ }, { "type_name": "C_TonemapController2Alias_env_tonemap_controller2", - "vtable_address": 6464528664, + "vtable_address": 6464532760, "methods": [ 6445466896, 6444276048, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, + 6450411680, + 6450688880, + 6450415024, 6444293120, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -411377,25 +411383,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6444284832, 6444293952, 6444297664, 6443799760, 6444285920, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -411412,13 +411418,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -411426,39 +411432,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444308368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -411472,33 +411478,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -411526,34 +411532,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -411610,7 +411616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468241504, + "complete_object_locator": 6468245600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -411619,31 +411625,31 @@ }, { "type_name": "C_TriggerBuoyancy", - "vtable_address": 6465382320, + "vtable_address": 6465386480, "methods": [ 6445466928, - 6447935680, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6447954096, - 6450413456, - 6450585280, - 6450586832, - 6447935824, - 6447957440, - 6448980192, + 6447937248, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6447955664, + 6450415024, + 6450586848, + 6450588400, + 6447937392, + 6447959008, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -411653,25 +411659,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6447946704, - 6447952112, - 6447953472, + 6460060080, + 6447948272, + 6447953680, + 6447955040, 6443799760, - 6447947840, - 6448917040, + 6447949408, + 6448918608, 6444235952, - 6447954112, + 6447955680, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -411688,13 +411694,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -411702,41 +411708,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -411748,33 +411754,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -411802,34 +411808,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -411839,31 +411845,31 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, 6444194160, 6444191248, - 6447950432, - 6447950352, + 6447952000, + 6447951920, 6444190720, 6444190624, 6444191200, @@ -411971,7 +411977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439560, + "complete_object_locator": 6468443656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -411980,14 +411986,14 @@ }, { "type_name": "C_TriggerBuoyancy", - "vtable_address": 6465384304, + "vtable_address": 6465388464, "methods": [ - 6447934704, - 6448995376, - 6448972352, - 6448972096, + 6447936272, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -412091,7 +412097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439744, + "complete_object_locator": 6468443840, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -412100,9 +412106,9 @@ }, { "type_name": "C_TriggerBuoyancy", - "vtable_address": 6465384360, + "vtable_address": 6465388520, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -412206,7 +412212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468439784, + "complete_object_locator": 6468443880, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -412215,31 +412221,31 @@ }, { "type_name": "C_TriggerLerpObject", - "vtable_address": 6464818104, + "vtable_address": 6464822184, "methods": [ 6445466928, 6445502144, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -412249,25 +412255,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450980128, + 6460060080, + 6450981696, 6445514592, 6445514848, 6443799760, 6445505744, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -412284,13 +412290,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -412298,41 +412304,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -412344,33 +412350,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -412398,34 +412404,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -412435,24 +412441,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -412567,7 +412573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287776, + "complete_object_locator": 6468291872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -412576,14 +412582,14 @@ }, { "type_name": "C_TriggerLerpObject", - "vtable_address": 6464820088, + "vtable_address": 6464824168, "methods": [ 6445501696, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -412687,7 +412693,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287952, + "complete_object_locator": 6468292048, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -412696,9 +412702,9 @@ }, { "type_name": "C_TriggerLerpObject", - "vtable_address": 6464820144, + "vtable_address": 6464824224, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -412802,7 +412808,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287992, + "complete_object_locator": 6468292088, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -412811,31 +412817,31 @@ }, { "type_name": "C_TriggerMultiple", - "vtable_address": 6464816048, + "vtable_address": 6464820128, "methods": [ 6445466928, 6445502208, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -412845,25 +412851,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450980144, + 6460060080, + 6450981712, 6445514608, 6445514896, 6443799760, 6445505792, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -412880,13 +412886,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -412894,41 +412900,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -412940,33 +412946,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -412994,34 +413000,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -413031,24 +413037,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -413163,7 +413169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287520, + "complete_object_locator": 6468291616, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -413172,14 +413178,14 @@ }, { "type_name": "C_TriggerMultiple", - "vtable_address": 6464818032, + "vtable_address": 6464822112, "methods": [ 6445501708, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -413283,7 +413289,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287696, + "complete_object_locator": 6468291792, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -413292,9 +413298,9 @@ }, { "type_name": "C_TriggerMultiple", - "vtable_address": 6464818088, + "vtable_address": 6464822168, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -413398,7 +413404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287736, + "complete_object_locator": 6468291832, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -413407,31 +413413,31 @@ }, { "type_name": "C_TriggerPhysics", - "vtable_address": 6464820160, + "vtable_address": 6464824240, "methods": [ 6445466928, 6445502272, - 6448846864, - 6460051264, - 6448990880, - 6448816832, + 6448848432, + 6460053456, + 6448992448, + 6448818400, 6444235968, - 6450413456, - 6450585280, - 6450586832, + 6450415024, + 6450586848, + 6450588400, 6444066608, 6444244784, - 6448980192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444139616, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, + 6448981552, + 6450575264, 6444190528, 6443858256, 6443844048, @@ -413441,25 +413447,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450980160, + 6460060080, + 6450981728, 6445514624, 6445514944, 6443799760, 6445505840, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -413476,13 +413482,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -413490,41 +413496,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250368, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -413536,33 +413542,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238224, 6444243600, 6444142592, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -413590,34 +413596,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -413627,24 +413633,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184, @@ -413759,7 +413765,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288032, + "complete_object_locator": 6468292128, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -413768,14 +413774,14 @@ }, { "type_name": "C_TriggerPhysics", - "vtable_address": 6464822144, + "vtable_address": 6464826224, "methods": [ 6445501720, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -413879,7 +413885,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288208, + "complete_object_locator": 6468292304, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -413888,9 +413894,9 @@ }, { "type_name": "C_TriggerPhysics", - "vtable_address": 6464822200, + "vtable_address": 6464826280, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -413994,7 +414000,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468288248, + "complete_object_locator": 6468292344, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -414003,32 +414009,32 @@ }, { "type_name": "C_TriggerVolume", - "vtable_address": 6464814056, + "vtable_address": 6464818136, "methods": [ 6445466928, 6445502336, - 6448846864, - 6460051264, - 6448990880, - 6448816832, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6449062640, - 6448980192, + 6448848432, + 6460053456, + 6448992448, + 6448818400, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6449064192, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -414037,25 +414043,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, + 6460060080, 6445504352, 6445514640, 6445514992, 6443799760, 6445505888, - 6448917040, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -414072,13 +414078,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -414086,41 +414092,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -414132,33 +414138,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -414186,34 +414192,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -414223,24 +414229,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -414319,7 +414325,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287280, + "complete_object_locator": 6468291376, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -414328,14 +414334,14 @@ }, { "type_name": "C_TriggerVolume", - "vtable_address": 6464815976, + "vtable_address": 6464820056, "methods": [ 6445501732, - 6448995376, - 6448972352, - 6448972096, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -414411,7 +414417,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287440, + "complete_object_locator": 6468291536, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -414420,9 +414426,9 @@ }, { "type_name": "C_TriggerVolume", - "vtable_address": 6464816032, + "vtable_address": 6464820112, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -414498,7 +414504,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468287480, + "complete_object_locator": 6468291576, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -414507,32 +414513,32 @@ }, { "type_name": "C_VoteController", - "vtable_address": 6466282096, + "vtable_address": 6466286208, "methods": [ 6445466896, - 6452111904, + 6452113488, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6452113088, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6452114672, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -414541,25 +414547,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6452185504, - 6452261184, - 6452270288, + 6460060080, + 6452187088, + 6452262768, + 6452271872, 6443799760, - 6452186256, - 6450497856, + 6452187840, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -414576,13 +414582,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -414590,39 +414596,39 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, 6443852480, @@ -414636,33 +414642,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6452133296, - 6451215568, + 6452134880, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -414690,34 +414696,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -414788,7 +414794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656000, + "complete_object_locator": 6468660096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -414797,10 +414803,10 @@ }, { "type_name": "C_VoteController", - "vtable_address": 6466283848, + "vtable_address": 6466287960, "methods": [ - 6452103676, - 6452166496 + 6452105260, + 6452168080 ], "bases": [ { @@ -414862,7 +414868,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656232, + "complete_object_locator": 6468660328, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -414871,32 +414877,32 @@ }, { "type_name": "C_WaterBullet", - "vtable_address": 6466015824, + "vtable_address": 6466020032, "methods": [ 6445466544, - 6450922688, - 6448846688, - 6448866800, - 6448990768, - 6448816736, - 6449042448, - 6450413456, - 6448987824, - 6450586832, - 6450923344, - 6449061952, - 6448980064, + 6450924256, + 6448848256, + 6448868368, + 6448992336, + 6448818304, + 6449044000, + 6450415024, + 6448989392, + 6450588400, + 6450924912, + 6449063504, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -414905,25 +414911,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450980176, - 6451034176, - 6451041584, + 6460060080, + 6450981744, + 6451035744, + 6451043152, 6443799760, - 6450983824, - 6448916960, + 6450985392, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -414940,13 +414946,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -414954,79 +414960,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6451046272, - 6449042320, - 6450473488, - 6451015568, - 6450579744, + 6450735600, + 6451047840, + 6449043872, + 6450475056, + 6451017136, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -415051,37 +415057,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -415091,61 +415097,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, - 6448951216, + 6448991552, + 6448863024, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -415235,7 +415241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468580552, + "complete_object_locator": 6468584648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -415244,14 +415250,14 @@ }, { "type_name": "C_WaterBullet", - "vtable_address": 6466018016, + "vtable_address": 6466022224, "methods": [ - 6450920980, - 6448995376, - 6448972352, - 6448972096, + 6450922548, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -415341,7 +415347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468580720, + "complete_object_locator": 6468584816, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -415350,9 +415356,9 @@ }, { "type_name": "C_WaterBullet", - "vtable_address": 6466018072, + "vtable_address": 6466022280, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -415442,7 +415448,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468580760, + "complete_object_locator": 6468584856, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -415451,32 +415457,32 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 6465474664, + "vtable_address": 6465478840, "methods": [ 6445466912, - 6448112480, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114048, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -415485,26 +415491,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156688, - 6448204064, - 6448208784, + 6460060080, + 6448158256, + 6448205632, + 6448210352, 6443799760, - 6448158112, - 6448161440, + 6448159680, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -415515,98 +415521,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -415617,51 +415623,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -415671,208 +415677,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -416102,7 +416108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455432, + "complete_object_locator": 6468459528, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -416111,14 +416117,14 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 6465478032, + "vtable_address": 6465482208, "methods": [ - 6448110596, - 6448995376, - 6448972352, - 6448972096, + 6448112164, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -416348,7 +416354,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455688, + "complete_object_locator": 6468459784, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -416357,9 +416363,9 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 6465478088, + "vtable_address": 6465482264, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -416589,7 +416595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455728, + "complete_object_locator": 6468459824, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -416598,12 +416604,12 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 6465478104, + "vtable_address": 6465482280, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -416833,7 +416839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455768, + "complete_object_locator": 6468459864, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -416842,14 +416848,14 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 6465478144, + "vtable_address": 6465482320, "methods": [ - 6448208820, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210388, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -417079,7 +417085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455808, + "complete_object_locator": 6468459904, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -417088,10 +417094,10 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 6465478200, + "vtable_address": 6465482376, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -417321,7 +417327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455848, + "complete_object_locator": 6468459944, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -417330,10 +417336,10 @@ }, { "type_name": "C_WeaponAWP", - "vtable_address": 6465478224, + "vtable_address": 6465482400, "methods": [ - 6448110584, - 6448154928 + 6448112152, + 6448156496 ], "bases": [ { @@ -417563,7 +417569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455888, + "complete_object_locator": 6468459984, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -417572,32 +417578,32 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 6465471032, + "vtable_address": 6465475208, "methods": [ 6445466912, - 6448112544, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114112, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -417606,26 +417612,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156704, - 6448204080, - 6448208832, + 6460060080, + 6448158272, + 6448205648, + 6448210400, 6443799760, - 6448158160, - 6448161440, + 6448159728, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -417636,98 +417642,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -417738,51 +417744,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -417792,208 +417798,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -418223,7 +418229,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468454936, + "complete_object_locator": 6468459032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -418232,14 +418238,14 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 6465474400, + "vtable_address": 6465478576, "methods": [ - 6448110620, - 6448995376, - 6448972352, - 6448972096, + 6448112188, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -418469,7 +418475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455192, + "complete_object_locator": 6468459288, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -418478,9 +418484,9 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 6465474456, + "vtable_address": 6465478632, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -418710,7 +418716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455232, + "complete_object_locator": 6468459328, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -418719,12 +418725,12 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 6465474472, + "vtable_address": 6465478648, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -418954,7 +418960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455272, + "complete_object_locator": 6468459368, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -418963,14 +418969,14 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 6465474512, + "vtable_address": 6465478688, "methods": [ - 6448208868, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210436, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -419200,7 +419206,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455312, + "complete_object_locator": 6468459408, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -419209,10 +419215,10 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 6465474568, + "vtable_address": 6465478744, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -419442,7 +419448,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455352, + "complete_object_locator": 6468459448, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -419451,10 +419457,10 @@ }, { "type_name": "C_WeaponAug", - "vtable_address": 6465474592, + "vtable_address": 6465478768, "methods": [ - 6448110608, - 6448154928 + 6448112176, + 6448156496 ], "bases": [ { @@ -419684,7 +419690,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455392, + "complete_object_locator": 6468459488, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -419693,32 +419699,32 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 6465452648, + "vtable_address": 6465456816, "methods": [ 6445466912, - 6448112608, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115680, - 6448219872, - 6456295120, + 6448114176, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448117248, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -419727,26 +419733,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156720, - 6448204096, - 6448208880, + 6460060080, + 6448158288, + 6448205664, + 6448210448, 6443799760, - 6448158208, - 6448161488, + 6448159776, + 6448163056, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -419757,98 +419763,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -419859,51 +419865,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -419913,211 +419919,211 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6447994880, - 6447994896, - 6448136000, - 6448148208, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6447996448, + 6447996464, + 6448137568, + 6448149776, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448203248, - 6448211168, - 6448173344, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168512, - 6448204976, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198752, - 6448193408, - 6448190832, - 6448027856, - 6448170576, - 6448027040, - 6448018544, - 6448136032, - 6448136112, - 6448034592, - 6447996560 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448204816, + 6448212736, + 6448174912, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448170080, + 6448206544, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448200320, + 6448194976, + 6448192400, + 6448029424, + 6448172144, + 6448028608, + 6448020112, + 6448137600, + 6448137680, + 6448036160, + 6447998128 ], "bases": [ { @@ -420333,7 +420339,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468451960, + "complete_object_locator": 6468456056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -420342,14 +420348,14 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 6465456040, + "vtable_address": 6465460208, "methods": [ - 6448110644, - 6448995376, - 6448972352, - 6448972096, + 6448112212, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -420565,7 +420571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452000, + "complete_object_locator": 6468456096, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -420574,9 +420580,9 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 6465456096, + "vtable_address": 6465460264, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -420792,7 +420798,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452040, + "complete_object_locator": 6468456136, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -420801,12 +420807,12 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 6465456112, + "vtable_address": 6465460280, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -421022,7 +421028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452080, + "complete_object_locator": 6468456176, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -421031,14 +421037,14 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 6465456152, + "vtable_address": 6465460320, "methods": [ - 6448208916, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210484, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -421254,7 +421260,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452120, + "complete_object_locator": 6468456216, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -421263,10 +421269,10 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 6465456208, + "vtable_address": 6465460376, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -421482,7 +421488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452160, + "complete_object_locator": 6468456256, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -421491,10 +421497,10 @@ }, { "type_name": "C_WeaponBaseItem", - "vtable_address": 6465456232, + "vtable_address": 6465460400, "methods": [ - 6448110632, - 6448154928 + 6448112200, + 6448156496 ], "bases": [ { @@ -421710,7 +421716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468452200, + "complete_object_locator": 6468456296, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -421719,32 +421725,32 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 6465478296, + "vtable_address": 6465482472, "methods": [ 6445466912, - 6448112672, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114240, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -421753,26 +421759,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156736, - 6448204112, - 6448208928, + 6460060080, + 6448158304, + 6448205680, + 6448210496, 6443799760, - 6448158256, - 6448161440, + 6448159824, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -421783,98 +421789,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -421885,51 +421891,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -421939,208 +421945,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -422370,7 +422376,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468455928, + "complete_object_locator": 6468460024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -422379,14 +422385,14 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 6465481664, + "vtable_address": 6465485840, "methods": [ - 6448110668, - 6448995376, - 6448972352, - 6448972096, + 6448112236, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -422616,7 +422622,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456184, + "complete_object_locator": 6468460280, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -422625,9 +422631,9 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 6465481720, + "vtable_address": 6465485896, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -422857,7 +422863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456224, + "complete_object_locator": 6468460320, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -422866,12 +422872,12 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 6465481736, + "vtable_address": 6465485912, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -423101,7 +423107,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456264, + "complete_object_locator": 6468460360, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -423110,14 +423116,14 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 6465481776, + "vtable_address": 6465485952, "methods": [ - 6448208964, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210532, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -423347,7 +423353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456304, + "complete_object_locator": 6468460400, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -423356,10 +423362,10 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 6465481832, + "vtable_address": 6465486008, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -423589,7 +423595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456344, + "complete_object_locator": 6468460440, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -423598,10 +423604,10 @@ }, { "type_name": "C_WeaponBizon", - "vtable_address": 6465481856, + "vtable_address": 6465486032, "methods": [ - 6448110656, - 6448154928 + 6448112224, + 6448156496 ], "bases": [ { @@ -423831,7 +423837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456384, + "complete_object_locator": 6468460480, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -423840,32 +423846,32 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 6465584512, + "vtable_address": 6465588688, "methods": [ 6445466912, - 6448112736, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114304, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -423874,26 +423880,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156752, - 6448204128, - 6448208976, + 6460060080, + 6448158320, + 6448205696, + 6448210544, 6443799760, - 6448158304, - 6448161504, + 6448159872, + 6448163072, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -423904,98 +423910,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -424006,51 +424012,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -424060,208 +424066,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448170016, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193712, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448171584, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448195280, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -424491,7 +424497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470296, + "complete_object_locator": 6468474392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -424500,14 +424506,14 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 6465587880, + "vtable_address": 6465592056, "methods": [ - 6448110692, - 6448995376, - 6448972352, - 6448972096, + 6448112260, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -424737,7 +424743,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470552, + "complete_object_locator": 6468474648, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -424746,9 +424752,9 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 6465587936, + "vtable_address": 6465592112, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -424978,7 +424984,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470592, + "complete_object_locator": 6468474688, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -424987,12 +424993,12 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 6465587952, + "vtable_address": 6465592128, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -425222,7 +425228,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470632, + "complete_object_locator": 6468474728, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -425231,14 +425237,14 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 6465587992, + "vtable_address": 6465592168, "methods": [ - 6448209012, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210580, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -425468,7 +425474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470672, + "complete_object_locator": 6468474768, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -425477,10 +425483,10 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 6465588048, + "vtable_address": 6465592224, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -425710,7 +425716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470712, + "complete_object_locator": 6468474808, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -425719,10 +425725,10 @@ }, { "type_name": "C_WeaponCZ75a", - "vtable_address": 6465588072, + "vtable_address": 6465592248, "methods": [ - 6448110680, - 6448154928 + 6448112248, + 6448156496 ], "bases": [ { @@ -425952,7 +425958,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470752, + "complete_object_locator": 6468474848, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -425961,32 +425967,32 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 6465599552, + "vtable_address": 6465603728, "methods": [ 6445466912, - 6448238576, - 6450431440, - 6448866800, - 6448248480, - 6448816736, - 6448258784, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448240144, + 6450433008, + 6448868368, + 6448250048, + 6448818304, + 6448260352, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -425995,26 +426001,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246240, - 6448249312, - 6448258112, + 6460060080, + 6448247808, + 6448250880, + 6448259680, 6443799760, - 6448246896, - 6448247456, + 6448248464, + 6448249024, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -426025,98 +426031,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -426127,51 +426133,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -426181,208 +426187,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6448260208, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6448258640, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448248896, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448250464, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -426612,7 +426618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472384, + "complete_object_locator": 6468476480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -426621,14 +426627,14 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 6465602920, + "vtable_address": 6465607096, "methods": [ - 6448237980, - 6448995376, - 6448972352, - 6448972096, + 6448239548, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -426858,7 +426864,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472632, + "complete_object_locator": 6468476728, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -426867,9 +426873,9 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 6465602976, + "vtable_address": 6465607152, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -427099,7 +427105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472672, + "complete_object_locator": 6468476768, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -427108,12 +427114,12 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 6465602992, + "vtable_address": 6465607168, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -427343,7 +427349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472712, + "complete_object_locator": 6468476808, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -427352,14 +427358,14 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 6465603032, + "vtable_address": 6465607208, "methods": [ - 6448258148, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259716, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -427589,7 +427595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472752, + "complete_object_locator": 6468476848, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -427598,10 +427604,10 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 6465603088, + "vtable_address": 6465607264, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -427831,7 +427837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472792, + "complete_object_locator": 6468476888, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -427840,10 +427846,10 @@ }, { "type_name": "C_WeaponElite", - "vtable_address": 6465603112, + "vtable_address": 6465607288, "methods": [ - 6448237968, - 6448154928 + 6448239536, + 6448156496 ], "bases": [ { @@ -428073,7 +428079,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468472832, + "complete_object_locator": 6468476928, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -428082,32 +428088,32 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 6465481928, + "vtable_address": 6465486104, "methods": [ 6445466912, - 6448112800, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114368, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -428116,26 +428122,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156768, - 6448204144, - 6448209024, + 6460060080, + 6448158336, + 6448205712, + 6448210592, 6443799760, - 6448158352, - 6448161440, + 6448159920, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -428146,98 +428152,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -428248,51 +428254,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -428302,208 +428308,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -428733,7 +428739,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456424, + "complete_object_locator": 6468460520, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -428742,14 +428748,14 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 6465485296, + "vtable_address": 6465489472, "methods": [ - 6448110716, - 6448995376, - 6448972352, - 6448972096, + 6448112284, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -428979,7 +428985,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456680, + "complete_object_locator": 6468460776, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -428988,9 +428994,9 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 6465485352, + "vtable_address": 6465489528, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -429220,7 +429226,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456720, + "complete_object_locator": 6468460816, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -429229,12 +429235,12 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 6465485368, + "vtable_address": 6465489544, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -429464,7 +429470,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456760, + "complete_object_locator": 6468460856, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -429473,14 +429479,14 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 6465485408, + "vtable_address": 6465489584, "methods": [ - 6448209060, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210628, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -429710,7 +429716,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456800, + "complete_object_locator": 6468460896, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -429719,10 +429725,10 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 6465485464, + "vtable_address": 6465489640, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -429952,7 +429958,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456840, + "complete_object_locator": 6468460936, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -429961,10 +429967,10 @@ }, { "type_name": "C_WeaponFamas", - "vtable_address": 6465485488, + "vtable_address": 6465489664, "methods": [ - 6448110704, - 6448154928 + 6448112272, + 6448156496 ], "bases": [ { @@ -430194,7 +430200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456880, + "complete_object_locator": 6468460976, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -430203,32 +430209,32 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 6465485560, + "vtable_address": 6465489736, "methods": [ 6445466912, - 6448112864, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114432, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -430237,26 +430243,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156784, - 6448204160, - 6448209072, + 6460060080, + 6448158352, + 6448205728, + 6448210640, 6443799760, - 6448158400, - 6448161440, + 6448159968, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -430267,98 +430273,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -430369,51 +430375,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -430423,208 +430429,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -430854,7 +430860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468456920, + "complete_object_locator": 6468461016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -430863,14 +430869,14 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 6465488928, + "vtable_address": 6465493104, "methods": [ - 6448110740, - 6448995376, - 6448972352, - 6448972096, + 6448112308, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -431100,7 +431106,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457176, + "complete_object_locator": 6468461272, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -431109,9 +431115,9 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 6465488984, + "vtable_address": 6465493160, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -431341,7 +431347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457216, + "complete_object_locator": 6468461312, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -431350,12 +431356,12 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 6465489000, + "vtable_address": 6465493176, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -431585,7 +431591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457256, + "complete_object_locator": 6468461352, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -431594,14 +431600,14 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 6465489040, + "vtable_address": 6465493216, "methods": [ - 6448209108, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210676, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -431831,7 +431837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457296, + "complete_object_locator": 6468461392, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -431840,10 +431846,10 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 6465489096, + "vtable_address": 6465493272, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -432073,7 +432079,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457336, + "complete_object_locator": 6468461432, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -432082,10 +432088,10 @@ }, { "type_name": "C_WeaponFiveSeven", - "vtable_address": 6465489120, + "vtable_address": 6465493296, "methods": [ - 6448110728, - 6448154928 + 6448112296, + 6448156496 ], "bases": [ { @@ -432315,7 +432321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457376, + "complete_object_locator": 6468461472, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -432324,32 +432330,32 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 6465489192, + "vtable_address": 6465493368, "methods": [ 6445466912, - 6448112928, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114496, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -432358,26 +432364,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156800, - 6448204176, - 6448209120, + 6460060080, + 6448158368, + 6448205744, + 6448210688, 6443799760, - 6448158448, - 6448161440, + 6448160016, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -432388,98 +432394,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -432490,51 +432496,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -432544,208 +432550,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -432975,7 +432981,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457416, + "complete_object_locator": 6468461512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -432984,14 +432990,14 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 6465492560, + "vtable_address": 6465496736, "methods": [ - 6448110764, - 6448995376, - 6448972352, - 6448972096, + 6448112332, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -433221,7 +433227,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457672, + "complete_object_locator": 6468461768, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -433230,9 +433236,9 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 6465492616, + "vtable_address": 6465496792, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -433462,7 +433468,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457712, + "complete_object_locator": 6468461808, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -433471,12 +433477,12 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 6465492632, + "vtable_address": 6465496808, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -433706,7 +433712,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457752, + "complete_object_locator": 6468461848, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -433715,14 +433721,14 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 6465492672, + "vtable_address": 6465496848, "methods": [ - 6448209156, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210724, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -433952,7 +433958,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457792, + "complete_object_locator": 6468461888, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -433961,10 +433967,10 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 6465492728, + "vtable_address": 6465496904, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -434194,7 +434200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457832, + "complete_object_locator": 6468461928, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -434203,10 +434209,10 @@ }, { "type_name": "C_WeaponG3SG1", - "vtable_address": 6465492752, + "vtable_address": 6465496928, "methods": [ - 6448110752, - 6448154928 + 6448112320, + 6448156496 ], "bases": [ { @@ -434436,7 +434442,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457872, + "complete_object_locator": 6468461968, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -434445,32 +434451,32 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 6465492824, + "vtable_address": 6465497000, "methods": [ 6445466912, - 6448112992, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114560, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -434479,26 +434485,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156816, - 6448204192, - 6448209168, + 6460060080, + 6448158384, + 6448205760, + 6448210736, 6443799760, - 6448158496, - 6448161440, + 6448160064, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -434509,98 +434515,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -434611,51 +434617,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -434665,208 +434671,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -435096,7 +435102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468457912, + "complete_object_locator": 6468462008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -435105,14 +435111,14 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 6465496192, + "vtable_address": 6465500368, "methods": [ - 6448110788, - 6448995376, - 6448972352, - 6448972096, + 6448112356, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -435342,7 +435348,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458168, + "complete_object_locator": 6468462264, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -435351,9 +435357,9 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 6465496248, + "vtable_address": 6465500424, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -435583,7 +435589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458208, + "complete_object_locator": 6468462304, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -435592,12 +435598,12 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 6465496264, + "vtable_address": 6465500440, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -435827,7 +435833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458248, + "complete_object_locator": 6468462344, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -435836,14 +435842,14 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 6465496304, + "vtable_address": 6465500480, "methods": [ - 6448209204, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210772, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -436073,7 +436079,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458288, + "complete_object_locator": 6468462384, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -436082,10 +436088,10 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 6465496360, + "vtable_address": 6465500536, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -436315,7 +436321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458328, + "complete_object_locator": 6468462424, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -436324,10 +436330,10 @@ }, { "type_name": "C_WeaponGalilAR", - "vtable_address": 6465496384, + "vtable_address": 6465500560, "methods": [ - 6448110776, - 6448154928 + 6448112344, + 6448156496 ], "bases": [ { @@ -436557,7 +436563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458368, + "complete_object_locator": 6468462464, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -436566,32 +436572,32 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 6465496456, + "vtable_address": 6465500632, "methods": [ 6445466912, - 6448113056, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114624, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -436600,26 +436606,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156832, - 6448204208, - 6448209216, + 6460060080, + 6448158400, + 6448205776, + 6448210784, 6443799760, - 6448158544, - 6448161440, + 6448160112, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -436630,98 +436636,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -436732,51 +436738,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -436786,208 +436792,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -437217,7 +437223,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458408, + "complete_object_locator": 6468462504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -437226,14 +437232,14 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 6465499824, + "vtable_address": 6465504000, "methods": [ - 6448110812, - 6448995376, - 6448972352, - 6448972096, + 6448112380, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -437463,7 +437469,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458664, + "complete_object_locator": 6468462760, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -437472,9 +437478,9 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 6465499880, + "vtable_address": 6465504056, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -437704,7 +437710,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458704, + "complete_object_locator": 6468462800, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -437713,12 +437719,12 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 6465499896, + "vtable_address": 6465504072, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -437948,7 +437954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458744, + "complete_object_locator": 6468462840, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -437957,14 +437963,14 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 6465499936, + "vtable_address": 6465504112, "methods": [ - 6448209252, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210820, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -438194,7 +438200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458784, + "complete_object_locator": 6468462880, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -438203,10 +438209,10 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 6465499992, + "vtable_address": 6465504168, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -438436,7 +438442,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458824, + "complete_object_locator": 6468462920, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -438445,10 +438451,10 @@ }, { "type_name": "C_WeaponGlock", - "vtable_address": 6465500016, + "vtable_address": 6465504192, "methods": [ - 6448110800, - 6448154928 + 6448112368, + 6448156496 ], "bases": [ { @@ -438678,7 +438684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458864, + "complete_object_locator": 6468462960, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -438687,32 +438693,32 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 6465500088, + "vtable_address": 6465504264, "methods": [ 6445466912, - 6448113120, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114688, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -438721,26 +438727,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156848, - 6448204224, - 6448209264, + 6460060080, + 6448158416, + 6448205792, + 6448210832, 6443799760, - 6448158592, - 6448161440, + 6448160160, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -438751,98 +438757,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -438853,51 +438859,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -438907,208 +438913,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -439338,7 +439344,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468458904, + "complete_object_locator": 6468463000, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -439347,14 +439353,14 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 6465503456, + "vtable_address": 6465507632, "methods": [ - 6448110836, - 6448995376, - 6448972352, - 6448972096, + 6448112404, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -439584,7 +439590,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459160, + "complete_object_locator": 6468463256, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -439593,9 +439599,9 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 6465503512, + "vtable_address": 6465507688, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -439825,7 +439831,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459200, + "complete_object_locator": 6468463296, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -439834,12 +439840,12 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 6465503528, + "vtable_address": 6465507704, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -440069,7 +440075,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459240, + "complete_object_locator": 6468463336, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -440078,14 +440084,14 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 6465503568, + "vtable_address": 6465507744, "methods": [ - 6448209300, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210868, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -440315,7 +440321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459280, + "complete_object_locator": 6468463376, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -440324,10 +440330,10 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 6465503624, + "vtable_address": 6465507800, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -440557,7 +440563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459320, + "complete_object_locator": 6468463416, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -440566,10 +440572,10 @@ }, { "type_name": "C_WeaponHKP2000", - "vtable_address": 6465503648, + "vtable_address": 6465507824, "methods": [ - 6448110824, - 6448154928 + 6448112392, + 6448156496 ], "bases": [ { @@ -440799,7 +440805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459360, + "complete_object_locator": 6468463456, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -440808,32 +440814,32 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 6465561864, + "vtable_address": 6465566040, "methods": [ 6445466912, - 6448113184, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114752, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -440842,26 +440848,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156864, - 6448204240, - 6448209312, + 6460060080, + 6448158432, + 6448205808, + 6448210880, 6443799760, - 6448158640, - 6448161440, + 6448160208, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -440872,98 +440878,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -440974,51 +440980,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -441028,208 +441034,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -441459,7 +441465,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467336, + "complete_object_locator": 6468471432, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -441468,14 +441474,14 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 6465565232, + "vtable_address": 6465569408, "methods": [ - 6448110860, - 6448995376, - 6448972352, - 6448972096, + 6448112428, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -441705,7 +441711,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467592, + "complete_object_locator": 6468471688, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -441714,9 +441720,9 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 6465565288, + "vtable_address": 6465569464, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -441946,7 +441952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467632, + "complete_object_locator": 6468471728, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -441955,12 +441961,12 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 6465565304, + "vtable_address": 6465569480, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -442190,7 +442196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467672, + "complete_object_locator": 6468471768, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -442199,14 +442205,14 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 6465565344, + "vtable_address": 6465569520, "methods": [ - 6448209348, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210916, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -442436,7 +442442,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467712, + "complete_object_locator": 6468471808, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -442445,10 +442451,10 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 6465565400, + "vtable_address": 6465569576, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -442678,7 +442684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467752, + "complete_object_locator": 6468471848, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -442687,10 +442693,10 @@ }, { "type_name": "C_WeaponM249", - "vtable_address": 6465565424, + "vtable_address": 6465569600, "methods": [ - 6448110848, - 6448154928 + 6448112416, + 6448156496 ], "bases": [ { @@ -442920,7 +442926,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467792, + "complete_object_locator": 6468471888, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -442929,32 +442935,32 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 6465507368, + "vtable_address": 6465511544, "methods": [ 6445466912, - 6448113248, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114816, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -442963,26 +442969,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156880, - 6448204256, - 6448209360, + 6460060080, + 6448158448, + 6448205824, + 6448210928, 6443799760, - 6448158688, - 6448161440, + 6448160256, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -442993,98 +442999,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -443095,51 +443101,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -443149,208 +443155,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -443580,7 +443586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459896, + "complete_object_locator": 6468463992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -443589,14 +443595,14 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 6465510736, + "vtable_address": 6465514912, "methods": [ - 6448110884, - 6448995376, - 6448972352, - 6448972096, + 6448112452, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -443826,7 +443832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460152, + "complete_object_locator": 6468464248, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -443835,9 +443841,9 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 6465510792, + "vtable_address": 6465514968, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -444067,7 +444073,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460192, + "complete_object_locator": 6468464288, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -444076,12 +444082,12 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 6465510808, + "vtable_address": 6465514984, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -444311,7 +444317,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460232, + "complete_object_locator": 6468464328, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -444320,14 +444326,14 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 6465510848, + "vtable_address": 6465515024, "methods": [ - 6448209396, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448210964, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -444557,7 +444563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460272, + "complete_object_locator": 6468464368, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -444566,10 +444572,10 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 6465510904, + "vtable_address": 6465515080, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -444799,7 +444805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460312, + "complete_object_locator": 6468464408, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -444808,10 +444814,10 @@ }, { "type_name": "C_WeaponM4A1", - "vtable_address": 6465510928, + "vtable_address": 6465515104, "methods": [ - 6448110872, - 6448154928 + 6448112440, + 6448156496 ], "bases": [ { @@ -445041,7 +445047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460352, + "complete_object_locator": 6468464448, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -445050,32 +445056,32 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 6465511000, + "vtable_address": 6465515176, "methods": [ 6445466912, - 6448113312, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114880, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -445084,26 +445090,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156896, - 6448204272, - 6448209408, + 6460060080, + 6448158464, + 6448205840, + 6448210976, 6443799760, - 6448158736, - 6448161440, + 6448160304, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -445114,98 +445120,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -445216,51 +445222,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -445270,208 +445276,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -445701,7 +445707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460392, + "complete_object_locator": 6468464488, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -445710,14 +445716,14 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 6465514368, + "vtable_address": 6465518544, "methods": [ - 6448110908, - 6448995376, - 6448972352, - 6448972096, + 6448112476, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -445947,7 +445953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460648, + "complete_object_locator": 6468464744, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -445956,9 +445962,9 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 6465514424, + "vtable_address": 6465518600, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -446188,7 +446194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460688, + "complete_object_locator": 6468464784, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -446197,12 +446203,12 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 6465514440, + "vtable_address": 6465518616, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -446432,7 +446438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460728, + "complete_object_locator": 6468464824, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -446441,14 +446447,14 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 6465514480, + "vtable_address": 6465518656, "methods": [ - 6448209444, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211012, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -446678,7 +446684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460768, + "complete_object_locator": 6468464864, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -446687,10 +446693,10 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 6465514536, + "vtable_address": 6465518712, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -446920,7 +446926,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460808, + "complete_object_locator": 6468464904, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -446929,10 +446935,10 @@ }, { "type_name": "C_WeaponM4A1Silencer", - "vtable_address": 6465514560, + "vtable_address": 6465518736, "methods": [ - 6448110896, - 6448154928 + 6448112464, + 6448156496 ], "bases": [ { @@ -447162,7 +447168,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460848, + "complete_object_locator": 6468464944, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -447171,32 +447177,32 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 6465514648, + "vtable_address": 6465518824, "methods": [ 6445466912, - 6448113376, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448114944, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -447205,26 +447211,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156912, - 6448204288, - 6448209456, + 6460060080, + 6448158480, + 6448205856, + 6448211024, 6443799760, - 6448158784, - 6448161440, + 6448160352, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -447235,98 +447241,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -447337,51 +447343,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -447391,208 +447397,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -447822,7 +447828,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468460888, + "complete_object_locator": 6468464984, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -447831,14 +447837,14 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 6465518016, + "vtable_address": 6465522192, "methods": [ - 6448110932, - 6448995376, - 6448972352, - 6448972096, + 6448112500, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -448068,7 +448074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461144, + "complete_object_locator": 6468465240, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -448077,9 +448083,9 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 6465518072, + "vtable_address": 6465522248, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -448309,7 +448315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461184, + "complete_object_locator": 6468465280, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -448318,12 +448324,12 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 6465518088, + "vtable_address": 6465522264, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -448553,7 +448559,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461224, + "complete_object_locator": 6468465320, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -448562,14 +448568,14 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 6465518128, + "vtable_address": 6465522304, "methods": [ - 6448209492, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211060, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -448799,7 +448805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461264, + "complete_object_locator": 6468465360, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -448808,10 +448814,10 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 6465518184, + "vtable_address": 6465522360, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -449041,7 +449047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461304, + "complete_object_locator": 6468465400, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -449050,10 +449056,10 @@ }, { "type_name": "C_WeaponMAC10", - "vtable_address": 6465518208, + "vtable_address": 6465522384, "methods": [ - 6448110920, - 6448154928 + 6448112488, + 6448156496 ], "bases": [ { @@ -449283,7 +449289,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461344, + "complete_object_locator": 6468465440, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -449292,32 +449298,32 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 6465521912, + "vtable_address": 6465526088, "methods": [ 6445466912, - 6448113440, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115008, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -449326,26 +449332,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156928, - 6448204304, - 6448209504, + 6460060080, + 6448158496, + 6448205872, + 6448211072, 6443799760, - 6448158832, - 6448161440, + 6448160400, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -449356,98 +449362,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -449458,51 +449464,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -449512,208 +449518,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -449943,7 +449949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461880, + "complete_object_locator": 6468465976, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -449952,14 +449958,14 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 6465525280, + "vtable_address": 6465529456, "methods": [ - 6448110956, - 6448995376, - 6448972352, - 6448972096, + 6448112524, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -450189,7 +450195,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462136, + "complete_object_locator": 6468466232, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -450198,9 +450204,9 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 6465525336, + "vtable_address": 6465529512, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -450430,7 +450436,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462176, + "complete_object_locator": 6468466272, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -450439,12 +450445,12 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 6465525352, + "vtable_address": 6465529528, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -450674,7 +450680,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462216, + "complete_object_locator": 6468466312, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -450683,14 +450689,14 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 6465525392, + "vtable_address": 6465529568, "methods": [ - 6448209540, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211108, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -450920,7 +450926,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462256, + "complete_object_locator": 6468466352, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -450929,10 +450935,10 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 6465525448, + "vtable_address": 6465529624, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -451162,7 +451168,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462296, + "complete_object_locator": 6468466392, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -451171,10 +451177,10 @@ }, { "type_name": "C_WeaponMP5SD", - "vtable_address": 6465525472, + "vtable_address": 6465529648, "methods": [ - 6448110944, - 6448154928 + 6448112512, + 6448156496 ], "bases": [ { @@ -451404,7 +451410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462336, + "complete_object_locator": 6468466432, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -451413,32 +451419,32 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 6465525544, + "vtable_address": 6465529720, "methods": [ 6445466912, - 6448113504, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115072, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -451447,26 +451453,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156944, - 6448204320, - 6448209552, + 6460060080, + 6448158512, + 6448205888, + 6448211120, 6443799760, - 6448158880, - 6448161440, + 6448160448, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -451477,98 +451483,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -451579,51 +451585,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -451633,208 +451639,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -452064,7 +452070,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462376, + "complete_object_locator": 6468466472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -452073,14 +452079,14 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 6465528912, + "vtable_address": 6465533088, "methods": [ - 6448110980, - 6448995376, - 6448972352, - 6448972096, + 6448112548, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -452310,7 +452316,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462632, + "complete_object_locator": 6468466728, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -452319,9 +452325,9 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 6465528968, + "vtable_address": 6465533144, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -452551,7 +452557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462672, + "complete_object_locator": 6468466768, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -452560,12 +452566,12 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 6465528984, + "vtable_address": 6465533160, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -452795,7 +452801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462712, + "complete_object_locator": 6468466808, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -452804,14 +452810,14 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 6465529024, + "vtable_address": 6465533200, "methods": [ - 6448209588, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211156, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -453041,7 +453047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462752, + "complete_object_locator": 6468466848, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -453050,10 +453056,10 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 6465529080, + "vtable_address": 6465533256, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -453283,7 +453289,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462792, + "complete_object_locator": 6468466888, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -453292,10 +453298,10 @@ }, { "type_name": "C_WeaponMP7", - "vtable_address": 6465529104, + "vtable_address": 6465533280, "methods": [ - 6448110968, - 6448154928 + 6448112536, + 6448156496 ], "bases": [ { @@ -453525,7 +453531,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462832, + "complete_object_locator": 6468466928, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -453534,32 +453540,32 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 6465529176, + "vtable_address": 6465533352, "methods": [ 6445466912, - 6448113568, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115136, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -453568,26 +453574,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156960, - 6448204336, - 6448209600, + 6460060080, + 6448158528, + 6448205904, + 6448211168, 6443799760, - 6448158928, - 6448161440, + 6448160496, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -453598,98 +453604,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -453700,51 +453706,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -453754,208 +453760,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -454185,7 +454191,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468462872, + "complete_object_locator": 6468466968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -454194,14 +454200,14 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 6465532544, + "vtable_address": 6465536720, "methods": [ - 6448111004, - 6448995376, - 6448972352, - 6448972096, + 6448112572, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -454431,7 +454437,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463128, + "complete_object_locator": 6468467224, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -454440,9 +454446,9 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 6465532600, + "vtable_address": 6465536776, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -454672,7 +454678,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463168, + "complete_object_locator": 6468467264, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -454681,12 +454687,12 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 6465532616, + "vtable_address": 6465536792, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -454916,7 +454922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463208, + "complete_object_locator": 6468467304, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -454925,14 +454931,14 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 6465532656, + "vtable_address": 6465536832, "methods": [ - 6448209636, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211204, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -455162,7 +455168,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463248, + "complete_object_locator": 6468467344, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -455171,10 +455177,10 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 6465532712, + "vtable_address": 6465536888, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -455404,7 +455410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463288, + "complete_object_locator": 6468467384, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -455413,10 +455419,10 @@ }, { "type_name": "C_WeaponMP9", - "vtable_address": 6465532736, + "vtable_address": 6465536912, "methods": [ - 6448110992, - 6448154928 + 6448112560, + 6448156496 ], "bases": [ { @@ -455646,7 +455652,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463328, + "complete_object_locator": 6468467424, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -455655,32 +455661,32 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 6465518280, + "vtable_address": 6465522456, "methods": [ 6445466912, - 6448113632, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115200, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -455689,26 +455695,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156976, - 6448204352, - 6448209648, + 6460060080, + 6448158544, + 6448205920, + 6448211216, 6443799760, - 6448158976, - 6448161440, + 6448160544, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -455719,98 +455725,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -455821,51 +455827,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -455875,208 +455881,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -456306,7 +456312,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461384, + "complete_object_locator": 6468465480, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -456315,14 +456321,14 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 6465521648, + "vtable_address": 6465525824, "methods": [ - 6448111028, - 6448995376, - 6448972352, - 6448972096, + 6448112596, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -456552,7 +456558,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461640, + "complete_object_locator": 6468465736, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -456561,9 +456567,9 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 6465521704, + "vtable_address": 6465525880, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -456793,7 +456799,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461680, + "complete_object_locator": 6468465776, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -456802,12 +456808,12 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 6465521720, + "vtable_address": 6465525896, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -457037,7 +457043,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461720, + "complete_object_locator": 6468465816, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -457046,14 +457052,14 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 6465521760, + "vtable_address": 6465525936, "methods": [ - 6448209684, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211252, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -457283,7 +457289,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461760, + "complete_object_locator": 6468465856, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -457292,10 +457298,10 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 6465521816, + "vtable_address": 6465525992, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -457525,7 +457531,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461800, + "complete_object_locator": 6468465896, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -457534,10 +457540,10 @@ }, { "type_name": "C_WeaponMag7", - "vtable_address": 6465521840, + "vtable_address": 6465526016, "methods": [ - 6448111016, - 6448154928 + 6448112584, + 6448156496 ], "bases": [ { @@ -457767,7 +457773,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468461840, + "complete_object_locator": 6468465936, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -457776,32 +457782,32 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 6465573496, + "vtable_address": 6465577672, "methods": [ 6445466912, - 6448113696, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115264, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -457810,26 +457816,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448156992, - 6448204368, - 6448209696, + 6460060080, + 6448158560, + 6448205936, + 6448211264, 6443799760, - 6448159024, - 6448161424, + 6448160592, + 6448162992, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -457840,98 +457846,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -457942,51 +457948,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -457996,206 +458002,206 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448147344, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448148912, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448203392, - 6448210368, - 6448171488, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168144, - 6448204912, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448204960, + 6448211936, + 6448173056, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448169712, + 6448206480, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608 ], "bases": [ { @@ -458425,7 +458431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468816, + "complete_object_locator": 6468472912, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -458434,14 +458440,14 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 6465576848, + "vtable_address": 6465581024, "methods": [ - 6448111052, - 6448995376, - 6448972352, - 6448972096, + 6448112620, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -458671,7 +458677,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469064, + "complete_object_locator": 6468473160, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -458680,9 +458686,9 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 6465576904, + "vtable_address": 6465581080, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -458912,7 +458918,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469104, + "complete_object_locator": 6468473200, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -458921,12 +458927,12 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 6465576920, + "vtable_address": 6465581096, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -459156,7 +459162,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469144, + "complete_object_locator": 6468473240, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -459165,14 +459171,14 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 6465576960, + "vtable_address": 6465581136, "methods": [ - 6448209732, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211300, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -459402,7 +459408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469184, + "complete_object_locator": 6468473280, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -459411,10 +459417,10 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 6465577016, + "vtable_address": 6465581192, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -459644,7 +459650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469224, + "complete_object_locator": 6468473320, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -459653,10 +459659,10 @@ }, { "type_name": "C_WeaponNOVA", - "vtable_address": 6465577040, + "vtable_address": 6465581216, "methods": [ - 6448111040, - 6448154928 + 6448112608, + 6448156496 ], "bases": [ { @@ -459886,7 +459892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469264, + "complete_object_locator": 6468473360, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -459895,32 +459901,32 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 6465532808, + "vtable_address": 6465536984, "methods": [ 6445466912, - 6448113760, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115328, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -459929,26 +459935,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157008, - 6448204384, - 6448209744, + 6460060080, + 6448158576, + 6448205952, + 6448211312, 6443799760, - 6448159072, - 6448161440, + 6448160640, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -459959,98 +459965,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -460061,51 +460067,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -460115,208 +460121,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -460546,7 +460552,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463368, + "complete_object_locator": 6468467464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -460555,14 +460561,14 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 6465536176, + "vtable_address": 6465540352, "methods": [ - 6448111076, - 6448995376, - 6448972352, - 6448972096, + 6448112644, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -460792,7 +460798,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463624, + "complete_object_locator": 6468467720, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -460801,9 +460807,9 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 6465536232, + "vtable_address": 6465540408, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -461033,7 +461039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463664, + "complete_object_locator": 6468467760, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -461042,12 +461048,12 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 6465536248, + "vtable_address": 6465540424, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -461277,7 +461283,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463704, + "complete_object_locator": 6468467800, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -461286,14 +461292,14 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 6465536288, + "vtable_address": 6465540464, "methods": [ - 6448209780, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211348, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -461523,7 +461529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463744, + "complete_object_locator": 6468467840, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -461532,10 +461538,10 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 6465536344, + "vtable_address": 6465540520, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -461765,7 +461771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463784, + "complete_object_locator": 6468467880, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -461774,10 +461780,10 @@ }, { "type_name": "C_WeaponNegev", - "vtable_address": 6465536368, + "vtable_address": 6465540544, "methods": [ - 6448111064, - 6448154928 + 6448112632, + 6448156496 ], "bases": [ { @@ -462007,7 +462013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463824, + "complete_object_locator": 6468467920, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -462016,32 +462022,32 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 6465536440, + "vtable_address": 6465540616, "methods": [ 6445466912, - 6448113824, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115392, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -462050,26 +462056,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157024, - 6448204400, - 6448209792, + 6460060080, + 6448158592, + 6448205968, + 6448211360, 6443799760, - 6448159120, - 6448161440, + 6448160688, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -462080,98 +462086,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -462182,51 +462188,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -462236,208 +462242,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -462667,7 +462673,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468463864, + "complete_object_locator": 6468467960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -462676,14 +462682,14 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 6465539808, + "vtable_address": 6465543984, "methods": [ - 6448111100, - 6448995376, - 6448972352, - 6448972096, + 6448112668, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -462913,7 +462919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464120, + "complete_object_locator": 6468468216, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -462922,9 +462928,9 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 6465539864, + "vtable_address": 6465544040, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -463154,7 +463160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464160, + "complete_object_locator": 6468468256, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -463163,12 +463169,12 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 6465539880, + "vtable_address": 6465544056, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -463398,7 +463404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464200, + "complete_object_locator": 6468468296, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -463407,14 +463413,14 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 6465539920, + "vtable_address": 6465544096, "methods": [ - 6448209828, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211396, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -463644,7 +463650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464240, + "complete_object_locator": 6468468336, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -463653,10 +463659,10 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 6465539976, + "vtable_address": 6465544152, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -463886,7 +463892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464280, + "complete_object_locator": 6468468376, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -463895,10 +463901,10 @@ }, { "type_name": "C_WeaponP250", - "vtable_address": 6465540000, + "vtable_address": 6465544176, "methods": [ - 6448111088, - 6448154928 + 6448112656, + 6448156496 ], "bases": [ { @@ -464128,7 +464134,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464320, + "complete_object_locator": 6468468416, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -464137,32 +464143,32 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 6465540072, + "vtable_address": 6465544248, "methods": [ 6445466912, - 6448113888, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115456, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -464171,26 +464177,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157040, - 6448204416, - 6448209840, + 6460060080, + 6448158608, + 6448205984, + 6448211408, 6443799760, - 6448159168, - 6448161440, + 6448160736, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -464201,98 +464207,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -464303,51 +464309,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -464357,208 +464363,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -464788,7 +464794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464360, + "complete_object_locator": 6468468456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -464797,14 +464803,14 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 6465543440, + "vtable_address": 6465547616, "methods": [ - 6448111124, - 6448995376, - 6448972352, - 6448972096, + 6448112692, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -465034,7 +465040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464616, + "complete_object_locator": 6468468712, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -465043,9 +465049,9 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 6465543496, + "vtable_address": 6465547672, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -465275,7 +465281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464656, + "complete_object_locator": 6468468752, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -465284,12 +465290,12 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 6465543512, + "vtable_address": 6465547688, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -465519,7 +465525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464696, + "complete_object_locator": 6468468792, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -465528,14 +465534,14 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 6465543552, + "vtable_address": 6465547728, "methods": [ - 6448209876, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211444, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -465765,7 +465771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464736, + "complete_object_locator": 6468468832, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -465774,10 +465780,10 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 6465543608, + "vtable_address": 6465547784, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -466007,7 +466013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464776, + "complete_object_locator": 6468468872, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -466016,10 +466022,10 @@ }, { "type_name": "C_WeaponP90", - "vtable_address": 6465543632, + "vtable_address": 6465547808, "methods": [ - 6448111112, - 6448154928 + 6448112680, + 6448156496 ], "bases": [ { @@ -466249,7 +466255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464816, + "complete_object_locator": 6468468912, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -466258,32 +466264,32 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 6465565496, + "vtable_address": 6465569672, "methods": [ 6445466912, - 6448113952, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115520, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -466292,26 +466298,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157056, - 6448204432, - 6448209888, + 6460060080, + 6448158624, + 6448206000, + 6448211456, 6443799760, - 6448159216, - 6448161440, + 6448160784, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -466322,98 +466328,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -466424,51 +466430,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -466478,208 +466484,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -466909,7 +466915,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467832, + "complete_object_locator": 6468471928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -466918,14 +466924,14 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 6465568864, + "vtable_address": 6465573040, "methods": [ - 6448111148, - 6448995376, - 6448972352, - 6448972096, + 6448112716, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -467155,7 +467161,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468088, + "complete_object_locator": 6468472184, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -467164,9 +467170,9 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 6465568920, + "vtable_address": 6465573096, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -467396,7 +467402,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468128, + "complete_object_locator": 6468472224, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -467405,12 +467411,12 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 6465568936, + "vtable_address": 6465573112, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -467640,7 +467646,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468168, + "complete_object_locator": 6468472264, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -467649,14 +467655,14 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 6465568976, + "vtable_address": 6465573152, "methods": [ - 6448209924, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211492, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -467886,7 +467892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468208, + "complete_object_locator": 6468472304, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -467895,10 +467901,10 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 6465569032, + "vtable_address": 6465573208, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -468128,7 +468134,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468248, + "complete_object_locator": 6468472344, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -468137,10 +468143,10 @@ }, { "type_name": "C_WeaponRevolver", - "vtable_address": 6465569056, + "vtable_address": 6465573232, "methods": [ - 6448111136, - 6448154928 + 6448112704, + 6448156496 ], "bases": [ { @@ -468370,7 +468376,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468468288, + "complete_object_locator": 6468472384, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -468379,32 +468385,32 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 6465543704, + "vtable_address": 6465547880, "methods": [ 6445466912, - 6448114016, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115584, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -468413,26 +468419,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157072, - 6448204448, - 6448209936, + 6460060080, + 6448158640, + 6448206016, + 6448211504, 6443799760, - 6448159264, - 6448161440, + 6448160832, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -468443,98 +468449,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -468545,51 +468551,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -468599,208 +468605,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -469030,7 +469036,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468464856, + "complete_object_locator": 6468468952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -469039,14 +469045,14 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 6465547072, + "vtable_address": 6465551248, "methods": [ - 6448111172, - 6448995376, - 6448972352, - 6448972096, + 6448112740, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -469276,7 +469282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465112, + "complete_object_locator": 6468469208, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -469285,9 +469291,9 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 6465547128, + "vtable_address": 6465551304, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -469517,7 +469523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465152, + "complete_object_locator": 6468469248, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -469526,12 +469532,12 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 6465547144, + "vtable_address": 6465551320, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -469761,7 +469767,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465192, + "complete_object_locator": 6468469288, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -469770,14 +469776,14 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 6465547184, + "vtable_address": 6465551360, "methods": [ - 6448209972, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211540, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -470007,7 +470013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465232, + "complete_object_locator": 6468469328, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -470016,10 +470022,10 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 6465547240, + "vtable_address": 6465551416, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -470249,7 +470255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465272, + "complete_object_locator": 6468469368, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -470258,10 +470264,10 @@ }, { "type_name": "C_WeaponSCAR20", - "vtable_address": 6465547264, + "vtable_address": 6465551440, "methods": [ - 6448111160, - 6448154928 + 6448112728, + 6448156496 ], "bases": [ { @@ -470491,7 +470497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465312, + "complete_object_locator": 6468469408, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -470500,32 +470506,32 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 6465547336, + "vtable_address": 6465551512, "methods": [ 6445466912, - 6448114080, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115648, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -470534,26 +470540,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157088, - 6448204464, - 6448209984, + 6460060080, + 6448158656, + 6448206032, + 6448211552, 6443799760, - 6448159312, - 6448161440, + 6448160880, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -470564,98 +470570,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -470666,51 +470672,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -470720,208 +470726,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -471151,7 +471157,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465352, + "complete_object_locator": 6468469448, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -471160,14 +471166,14 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 6465550704, + "vtable_address": 6465554880, "methods": [ - 6448111196, - 6448995376, - 6448972352, - 6448972096, + 6448112764, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -471397,7 +471403,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465608, + "complete_object_locator": 6468469704, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -471406,9 +471412,9 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 6465550760, + "vtable_address": 6465554936, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -471638,7 +471644,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465648, + "complete_object_locator": 6468469744, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -471647,12 +471653,12 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 6465550776, + "vtable_address": 6465554952, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -471882,7 +471888,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465688, + "complete_object_locator": 6468469784, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -471891,14 +471897,14 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 6465550816, + "vtable_address": 6465554992, "methods": [ - 6448210020, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211588, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -472128,7 +472134,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465728, + "complete_object_locator": 6468469824, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -472137,10 +472143,10 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 6465550872, + "vtable_address": 6465555048, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -472370,7 +472376,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465768, + "complete_object_locator": 6468469864, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -472379,10 +472385,10 @@ }, { "type_name": "C_WeaponSG556", - "vtable_address": 6465550896, + "vtable_address": 6465555072, "methods": [ - 6448111184, - 6448154928 + 6448112752, + 6448156496 ], "bases": [ { @@ -472612,7 +472618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465808, + "complete_object_locator": 6468469904, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -472621,32 +472627,32 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 6465550968, + "vtable_address": 6465555144, "methods": [ 6445466912, - 6448114144, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115712, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -472655,26 +472661,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157104, - 6448204480, - 6448210032, + 6460060080, + 6448158672, + 6448206048, + 6448211600, 6443799760, - 6448159360, - 6448161440, + 6448160928, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -472685,98 +472691,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -472787,51 +472793,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -472841,208 +472847,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -473272,7 +473278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468465848, + "complete_object_locator": 6468469944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -473281,14 +473287,14 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 6465554336, + "vtable_address": 6465558512, "methods": [ - 6448111220, - 6448995376, - 6448972352, - 6448972096, + 6448112788, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -473518,7 +473524,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466104, + "complete_object_locator": 6468470200, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -473527,9 +473533,9 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 6465554392, + "vtable_address": 6465558568, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -473759,7 +473765,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466144, + "complete_object_locator": 6468470240, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -473768,12 +473774,12 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 6465554408, + "vtable_address": 6465558584, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -474003,7 +474009,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466184, + "complete_object_locator": 6468470280, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -474012,14 +474018,14 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 6465554448, + "vtable_address": 6465558624, "methods": [ - 6448210068, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211636, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -474249,7 +474255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466224, + "complete_object_locator": 6468470320, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -474258,10 +474264,10 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 6465554504, + "vtable_address": 6465558680, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -474491,7 +474497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466264, + "complete_object_locator": 6468470360, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -474500,10 +474506,10 @@ }, { "type_name": "C_WeaponSSG08", - "vtable_address": 6465554528, + "vtable_address": 6465558704, "methods": [ - 6448111208, - 6448154928 + 6448112776, + 6448156496 ], "bases": [ { @@ -474733,7 +474739,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466304, + "complete_object_locator": 6468470400, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -474742,32 +474748,32 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 6465577208, + "vtable_address": 6465581384, "methods": [ 6445466912, - 6448114208, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115776, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -474776,26 +474782,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157120, - 6448204496, - 6448210080, + 6460060080, + 6448158688, + 6448206064, + 6448211648, 6443799760, - 6448159408, - 6448161424, + 6448160976, + 6448162992, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -474806,98 +474812,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -474908,51 +474914,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -474962,206 +474968,206 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448147344, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448148912, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448203408, - 6448210368, - 6448171488, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168144, - 6448204912, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448204976, + 6448211936, + 6448173056, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448169712, + 6448206480, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608 ], "bases": [ { @@ -475391,7 +475397,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469304, + "complete_object_locator": 6468473400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -475400,14 +475406,14 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 6465580560, + "vtable_address": 6465584736, "methods": [ - 6448111244, - 6448995376, - 6448972352, - 6448972096, + 6448112812, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -475637,7 +475643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469560, + "complete_object_locator": 6468473656, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -475646,9 +475652,9 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 6465580616, + "vtable_address": 6465584792, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -475878,7 +475884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469600, + "complete_object_locator": 6468473696, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -475887,12 +475893,12 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 6465580632, + "vtable_address": 6465584808, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -476122,7 +476128,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469640, + "complete_object_locator": 6468473736, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -476131,14 +476137,14 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 6465580672, + "vtable_address": 6465584848, "methods": [ - 6448210116, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211684, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -476368,7 +476374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469680, + "complete_object_locator": 6468473776, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -476377,10 +476383,10 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 6465580728, + "vtable_address": 6465584904, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -476610,7 +476616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469720, + "complete_object_locator": 6468473816, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -476619,10 +476625,10 @@ }, { "type_name": "C_WeaponSawedoff", - "vtable_address": 6465580752, + "vtable_address": 6465584928, "methods": [ - 6448111232, - 6448154928 + 6448112800, + 6448156496 ], "bases": [ { @@ -476852,7 +476858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469760, + "complete_object_locator": 6468473856, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -476861,32 +476867,32 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 6465625880, + "vtable_address": 6465630056, "methods": [ 6445466912, - 6448238640, - 6450431440, - 6448866800, - 6448248544, - 6448816736, - 6448258800, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448240208, + 6450433008, + 6448868368, + 6448250112, + 6448818304, + 6448260368, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -476895,26 +476901,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448246256, - 6448249328, - 6448258160, + 6460060080, + 6448247824, + 6448250896, + 6448259728, 6443799760, - 6448246944, - 6448247472, + 6448248512, + 6448249040, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -476925,98 +476931,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -477027,51 +477033,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -477081,208 +477087,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448247536, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448245968, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448247488, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448248960, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448243808, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448249056, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448250528, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448245376, + 6448151088 ], "bases": [ { @@ -477512,7 +477518,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468475992, + "complete_object_locator": 6468480088, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -477521,14 +477527,14 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 6465629248, + "vtable_address": 6465633424, "methods": [ - 6448238004, - 6448995376, - 6448972352, - 6448972096, + 6448239572, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -477758,7 +477764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476248, + "complete_object_locator": 6468480344, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -477767,9 +477773,9 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 6465629304, + "vtable_address": 6465633480, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -477999,7 +478005,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476288, + "complete_object_locator": 6468480384, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -478008,12 +478014,12 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 6465629320, + "vtable_address": 6465633496, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -478243,7 +478249,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476328, + "complete_object_locator": 6468480424, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -478252,14 +478258,14 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 6465629360, + "vtable_address": 6465633536, "methods": [ - 6448258196, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448259764, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -478489,7 +478495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476368, + "complete_object_locator": 6468480464, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -478498,10 +478504,10 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 6465629416, + "vtable_address": 6465633592, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -478731,7 +478737,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476408, + "complete_object_locator": 6468480504, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -478740,10 +478746,10 @@ }, { "type_name": "C_WeaponTaser", - "vtable_address": 6465629440, + "vtable_address": 6465633616, "methods": [ - 6448237992, - 6448154928 + 6448239560, + 6448156496 ], "bases": [ { @@ -478973,7 +478979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468476448, + "complete_object_locator": 6468480544, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -478982,32 +478988,32 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 6465554600, + "vtable_address": 6465558776, "methods": [ 6445466912, - 6448114272, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115840, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -479016,26 +479022,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157136, - 6448204512, - 6448210128, + 6460060080, + 6448158704, + 6448206080, + 6448211696, 6443799760, - 6448159456, - 6448161440, + 6448161024, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -479046,98 +479052,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -479148,51 +479154,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -479202,208 +479208,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -479633,7 +479639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466344, + "complete_object_locator": 6468470440, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -479642,14 +479648,14 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 6465557968, + "vtable_address": 6465562144, "methods": [ - 6448111268, - 6448995376, - 6448972352, - 6448972096, + 6448112836, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -479879,7 +479885,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466600, + "complete_object_locator": 6468470696, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -479888,9 +479894,9 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 6465558024, + "vtable_address": 6465562200, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -480120,7 +480126,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466640, + "complete_object_locator": 6468470736, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -480129,12 +480135,12 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 6465558040, + "vtable_address": 6465562216, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -480364,7 +480370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466680, + "complete_object_locator": 6468470776, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -480373,14 +480379,14 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 6465558080, + "vtable_address": 6465562256, "methods": [ - 6448210164, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211732, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -480610,7 +480616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466720, + "complete_object_locator": 6468470816, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -480619,10 +480625,10 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 6465558136, + "vtable_address": 6465562312, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -480852,7 +480858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466760, + "complete_object_locator": 6468470856, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -480861,10 +480867,10 @@ }, { "type_name": "C_WeaponTec9", - "vtable_address": 6465558160, + "vtable_address": 6465562336, "methods": [ - 6448111256, - 6448154928 + 6448112824, + 6448156496 ], "bases": [ { @@ -481094,7 +481100,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466800, + "complete_object_locator": 6468470896, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -481103,32 +481109,32 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 6465558232, + "vtable_address": 6465562408, "methods": [ 6445466912, - 6448114336, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115904, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -481137,26 +481143,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157152, - 6448204528, - 6448210176, + 6460060080, + 6448158720, + 6448206096, + 6448211744, 6443799760, - 6448159504, - 6448161440, + 6448161072, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -481167,98 +481173,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -481269,51 +481275,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -481323,208 +481329,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -481754,7 +481760,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468466840, + "complete_object_locator": 6468470936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -481763,14 +481769,14 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 6465561600, + "vtable_address": 6465565776, "methods": [ - 6448111292, - 6448995376, - 6448972352, - 6448972096, + 6448112860, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -482000,7 +482006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467096, + "complete_object_locator": 6468471192, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -482009,9 +482015,9 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 6465561656, + "vtable_address": 6465565832, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -482241,7 +482247,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467136, + "complete_object_locator": 6468471232, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -482250,12 +482256,12 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 6465561672, + "vtable_address": 6465565848, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -482485,7 +482491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467176, + "complete_object_locator": 6468471272, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -482494,14 +482500,14 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 6465561712, + "vtable_address": 6465565888, "methods": [ - 6448210212, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211780, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -482731,7 +482737,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467216, + "complete_object_locator": 6468471312, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -482740,10 +482746,10 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 6465561768, + "vtable_address": 6465565944, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -482973,7 +482979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467256, + "complete_object_locator": 6468471352, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -482982,10 +482988,10 @@ }, { "type_name": "C_WeaponUMP45", - "vtable_address": 6465561792, + "vtable_address": 6465565968, "methods": [ - 6448111280, - 6448154928 + 6448112848, + 6448156496 ], "bases": [ { @@ -483215,7 +483221,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468467296, + "complete_object_locator": 6468471392, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -483224,32 +483230,32 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 6465503720, + "vtable_address": 6465507896, "methods": [ 6445466912, - 6448114400, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215632, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448115968, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448217200, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -483258,26 +483264,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157168, - 6448204544, - 6448210224, + 6460060080, + 6448158736, + 6448206112, + 6448211792, 6443799760, - 6448159552, - 6448161440, + 6448161120, + 6448163008, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -483288,98 +483294,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -483390,51 +483396,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -483444,208 +483450,208 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448150848, - 6448034656, - 6448002560, - 6448135952, - 6448136048, - 6448136000, - 6448148000, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448167552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448152416, + 6448036224, + 6448004128, + 6448137520, + 6448137616, + 6448137568, + 6448149568, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448169120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448227728, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448226160, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448170592, - 6448167520, - 6448027808, - 6448157312, - 6448156496, - 6448193392, - 6448193088, - 6448167648, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448202192, - 6448210384, - 6448172976, - 6448170704, - 6448028656, - 6448230416, - 6448027664, - 6448170272, - 6448162512, - 6448220112, - 6448168240, - 6448204656, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040, - 6448154912, - 6448149520 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448172160, + 6448169088, + 6448029376, + 6448158880, + 6448158064, + 6448194960, + 6448194656, + 6448169216, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448203760, + 6448211952, + 6448174544, + 6448172272, + 6448030224, + 6448231984, + 6448029232, + 6448171840, + 6448164080, + 6448221680, + 6448169808, + 6448206224, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608, + 6448156480, + 6448151088 ], "bases": [ { @@ -483875,7 +483881,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459400, + "complete_object_locator": 6468463496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -483884,14 +483890,14 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 6465507088, + "vtable_address": 6465511264, "methods": [ - 6448111316, - 6448995376, - 6448972352, - 6448972096, + 6448112884, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -484121,7 +484127,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459656, + "complete_object_locator": 6468463752, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -484130,9 +484136,9 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 6465507144, + "vtable_address": 6465511320, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -484362,7 +484368,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459696, + "complete_object_locator": 6468463792, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -484371,12 +484377,12 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 6465507160, + "vtable_address": 6465511336, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -484606,7 +484612,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459736, + "complete_object_locator": 6468463832, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -484615,14 +484621,14 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 6465507200, + "vtable_address": 6465511376, "methods": [ - 6448210260, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211828, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -484852,7 +484858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459776, + "complete_object_locator": 6468463872, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -484861,10 +484867,10 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 6465507256, + "vtable_address": 6465511432, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -485094,7 +485100,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459816, + "complete_object_locator": 6468463912, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -485103,10 +485109,10 @@ }, { "type_name": "C_WeaponUSPSilencer", - "vtable_address": 6465507280, + "vtable_address": 6465511456, "methods": [ - 6448111304, - 6448154928 + 6448112872, + 6448156496 ], "bases": [ { @@ -485336,7 +485342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468459856, + "complete_object_locator": 6468463952, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -485345,32 +485351,32 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 6465580824, + "vtable_address": 6465585000, "methods": [ 6445466912, - 6448114464, - 6450431440, - 6448866800, - 6448199264, - 6448816736, - 6448215264, - 6450413456, - 6448197904, - 6450586832, - 6448115232, - 6448219872, - 6456295120, + 6448116032, + 6450433008, + 6448868368, + 6448200832, + 6448818304, + 6448216832, + 6450415024, + 6448199472, + 6450588400, + 6448116800, + 6448221440, + 6456296896, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6448190624, + 6448981552, + 6450575264, + 6448192192, 6443858256, 6443844048, 6443844080, @@ -485379,26 +485385,26 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6448157184, - 6448204560, - 6448210272, + 6460060080, + 6448158752, + 6448206128, + 6448211840, 6443799760, - 6448159600, - 6448161424, + 6448161168, + 6448162992, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6449035824, - 6448198896, + 6449037376, + 6448200464, 6443817344, 6443817328, 6445463744, @@ -485409,98 +485415,98 @@ 6445463696, 6443817712, 6443817696, - 6447995360, + 6447996928, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, - 6450708000, - 6450488064, + 6450554384, + 6450499104, + 6450709568, + 6450489632, 6444240464, 6443837904, 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6448225280, - 6448212160, - 6448212960, - 6448155936, - 6448192848, - 6456294720, + 6448226848, + 6448213728, + 6448214528, + 6448157504, + 6448194416, + 6456296496, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, - 6448228656, + 6448230224, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6448917088, - 6448992672, - 6450537248, - 6449036960, + 6448918656, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6448978816, - 6448212448, + 6450600912, + 6448980384, + 6448214016, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -485511,51 +485517,51 @@ 6443837312, 6443843984, 6443843968, - 6448027024, + 6448028592, 6443844016, - 6448032416, + 6448033984, 6443837344, 6443837776, 6443821104, 6444188416, 6444189392, - 6448006624, - 6448006576, - 6448032368, - 6448003744, + 6448008192, + 6448008144, + 6448033936, + 6448005312, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6448049072, + 6448050640, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, - 6448016976, - 6448016960, - 6448194032, + 6448018544, + 6448018528, + 6448195600, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -485565,206 +485571,206 @@ 6444207072, 6444190512, 6443887696, - 6450577808, + 6450579376, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448198080, - 6448147232, - 6448951216, + 6448199648, + 6448148800, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6448219456, - 6448844240, + 6448221024, + 6448845808, 6445478864, 6445478896, - 6448167328, + 6448168896, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416, - 6450537024, - 6450698592, + 6448811984, + 6450538592, + 6450700160, 6444142416, - 6450640080, + 6450641648, 6447786464, - 6448049088, - 6456189248, - 6456290560, - 6456087424, - 6456290544, - 6456419216, - 6456398688, - 6456415536, - 6447992432, - 6456419264, - 6456419280, - 6456253264, - 6456057904, - 6456419232, - 6456398112, - 6448048576, - 6456151456, - 6448010992, - 6448011008, - 6448011040, - 6448011024, - 6456416000, - 6448170032, - 6448151440, - 6448149648, - 6448034656, - 6448002560, - 6448135952, - 6447994896, - 6448136000, - 6448147344, - 6448168128, - 6448048880, - 6448027872, - 6448818272, - 6448818128, - 6448069632, - 6449012352, - 6448013696, - 6448167136, - 6448926928, - 6448014512, - 6448013856, - 6448034672, - 6448935552, - 6448008832, - 6449066512, - 6448934912, - 6449066608, - 6448911056, - 6448906000, + 6448050656, + 6456191024, + 6456292336, + 6456089200, + 6456292320, + 6456420992, + 6456400464, + 6456417312, + 6447994000, + 6456421040, + 6456421056, + 6456255040, + 6456059680, + 6456421008, + 6456399888, + 6448050144, + 6456153232, + 6448012560, + 6448012576, + 6448012608, + 6448012592, + 6456417776, + 6448171600, + 6448153008, + 6448151216, + 6448036224, + 6448004128, + 6448137520, + 6447996464, + 6448137568, + 6448148912, + 6448169696, + 6448050448, + 6448029440, + 6448819840, + 6448819696, + 6448071200, + 6449013904, + 6448015264, + 6448168704, + 6448928496, + 6448016080, + 6448015424, + 6448036240, + 6448937120, + 6448010400, + 6449068064, + 6448936480, + 6449068160, + 6448912624, + 6448907568, + 6448020496, + 6448003712, + 6448034912, + 6448874112, + 6448922096, + 6448965680, + 6449043008, + 6449043024, + 6448036048, + 6448162192, + 6449039344, + 6448031536, + 6448902320, + 6448011328, + 6448060864, + 6447996608, + 6448071024, 6448018928, - 6448002144, - 6448033344, - 6448872544, - 6448920528, - 6448964112, - 6449041456, - 6449041472, - 6448034480, - 6448160624, - 6449037792, - 6448029968, - 6448900752, - 6448009760, - 6448059296, - 6447995040, - 6448069456, - 6448017360, - 6448017376, - 6448017792, - 6448070144, - 6448027680, - 6448009840, - 6448013584, - 6448009792, - 6448009136, - 6448011536, - 6448011824, - 6448011632, - 6448011728, - 6448011680, - 6448011584, - 6448011776, - 6447995200, - 6448014112, - 6448014160, - 6448014016, - 6448014064, - 6448013648, - 6448018112, - 6448003648, - 6448017952, - 6448018128, - 6448016992, - 6448163216, - 6448009264, - 6448017808, - 6448014480, - 6448167200, - 6448167248, - 6448010096, - 6448070560, - 6448018608, - 6448014432, - 6448027920, - 6448167520, - 6448027808, - 6448157200, - 6448009744, - 6448193392, - 6448193088, - 6448018624, - 6448002576, - 6448007040, - 6448003632, - 6448035728, - 6447995024, - 6448203424, - 6448210368, - 6448171488, - 6448170624, - 6448028656, - 6448070128, - 6448027664, - 6448027840, - 6448014464, - 6448065728, - 6448168144, - 6448204912, - 6448147040, - 6448169904, - 6448159696, - 6448218688, - 6448198288, - 6448193408, - 6448190656, - 6448027856, - 6448170576, - 6448027040 + 6448018944, + 6448019360, + 6448071712, + 6448029248, + 6448011408, + 6448015152, + 6448011360, + 6448010704, + 6448013104, + 6448013392, + 6448013200, + 6448013296, + 6448013248, + 6448013152, + 6448013344, + 6447996768, + 6448015680, + 6448015728, + 6448015584, + 6448015632, + 6448015216, + 6448019680, + 6448005216, + 6448019520, + 6448019696, + 6448018560, + 6448164784, + 6448010832, + 6448019376, + 6448016048, + 6448168768, + 6448168816, + 6448011664, + 6448072128, + 6448020176, + 6448016000, + 6448029488, + 6448169088, + 6448029376, + 6448158768, + 6448011312, + 6448194960, + 6448194656, + 6448020192, + 6448004144, + 6448008608, + 6448005200, + 6448037296, + 6447996592, + 6448204992, + 6448211936, + 6448173056, + 6448172192, + 6448030224, + 6448071696, + 6448029232, + 6448029408, + 6448016032, + 6448067296, + 6448169712, + 6448206480, + 6448148608, + 6448171472, + 6448161264, + 6448220256, + 6448199856, + 6448194976, + 6448192224, + 6448029424, + 6448172144, + 6448028608 ], "bases": [ { @@ -485994,7 +486000,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468469800, + "complete_object_locator": 6468473896, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -486003,14 +486009,14 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 6465584176, + "vtable_address": 6465588352, "methods": [ - 6448111340, - 6448995376, - 6448972352, - 6448972096, + 6448112908, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -486240,7 +486246,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470056, + "complete_object_locator": 6468474152, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -486249,9 +486255,9 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 6465584232, + "vtable_address": 6465588408, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -486481,7 +486487,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470096, + "complete_object_locator": 6468474192, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -486490,12 +486496,12 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 6465584248, + "vtable_address": 6465588424, "methods": [ - 6448156000, + 6448157568, 6447786432, - 6448048960, - 6448162528 + 6448050528, + 6448164096 ], "bases": [ { @@ -486725,7 +486731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470136, + "complete_object_locator": 6468474232, "offset": 4440, "constructor_displacement": 0, "class_attributes": 1 @@ -486734,14 +486740,14 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 6465584288, + "vtable_address": 6465588464, "methods": [ - 6448210308, - 6448009312, - 6448009280, - 6448009328, - 6448009296, - 6456319488 + 6448211876, + 6448010880, + 6448010848, + 6448010896, + 6448010864, + 6456321264 ], "bases": [ { @@ -486971,7 +486977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470176, + "complete_object_locator": 6468474272, "offset": 4968, "constructor_displacement": 0, "class_attributes": 1 @@ -486980,10 +486986,10 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 6465584344, + "vtable_address": 6465588520, "methods": [ - 6448190208, - 6448161232 + 6448191776, + 6448162800 ], "bases": [ { @@ -487213,7 +487219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470216, + "complete_object_locator": 6468474312, "offset": 4976, "constructor_displacement": 0, "class_attributes": 1 @@ -487222,10 +487228,10 @@ }, { "type_name": "C_WeaponXM1014", - "vtable_address": 6465584368, + "vtable_address": 6465588544, "methods": [ - 6448111328, - 6448154928 + 6448112896, + 6448156496 ], "bases": [ { @@ -487455,7 +487461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468470256, + "complete_object_locator": 6468474352, "offset": 6424, "constructor_displacement": 0, "class_attributes": 1 @@ -487464,33 +487470,33 @@ }, { "type_name": "C_World", - "vtable_address": 6465889144, + "vtable_address": 6465893336, "methods": [ 6445466928, - 6450114656, - 6448846864, - 6460051264, - 6448990880, - 6450119728, - 6450274048, - 6450413456, - 6450585280, - 6450586832, - 6448814480, - 6450297392, - 6448980192, + 6450116224, + 6448848432, + 6460053456, + 6448992448, + 6450121296, + 6450275616, + 6450415024, + 6450586848, + 6450588400, + 6448816048, + 6450298960, + 6448981760, 6443817760, 6443797616, - 6448990224, - 6448882720, + 6448991792, + 6448884288, 6444133632, - 6449026832, - 6450654976, + 6449028384, + 6450656544, 6444191216, - 6448979984, - 6450573696, - 6450573648, - 6450252144, + 6448981552, + 6450575264, + 6450575216, + 6450253712, 6443844048, 6443844080, 6443844112, @@ -487498,25 +487504,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6450177312, - 6450250560, - 6450256752, + 6460060080, + 6450178880, + 6450252128, + 6450258320, 6443799760, - 6450181312, - 6448917040, + 6450182880, + 6448918608, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -487533,13 +487539,13 @@ 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -487547,41 +487553,41 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6449041296, - 6449042320, - 6450473488, - 6448973056, - 6450579744, + 6450735600, + 6449042848, + 6449043872, + 6450475056, + 6448974624, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6443883904, 6443869200, @@ -487593,39 +487599,39 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, + 6450667344, + 6448984096, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, 6443837808, 6443837792, - 6450208208, + 6450209776, 6443869120, 6443837312, 6443843984, @@ -487647,34 +487653,34 @@ 6444231856, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450272480, + 6450274048, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -487684,24 +487690,24 @@ 6444207072, 6444190512, 6443887696, - 6448974176, + 6448975744, 6443848144, - 6448916048, - 6449034928, - 6448904528, + 6448917616, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6448861456, + 6448991552, + 6448863024, 6443837872, 6443869088, 6443817184 @@ -487780,7 +487786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552560, + "complete_object_locator": 6468556656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -487789,14 +487795,14 @@ }, { "type_name": "C_World", - "vtable_address": 6465891064, + "vtable_address": 6465895256, "methods": [ - 6450112972, - 6448995376, - 6448972352, - 6448972096, + 6450114540, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -487872,7 +487878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552720, + "complete_object_locator": 6468556816, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -487881,9 +487887,9 @@ }, { "type_name": "C_World", - "vtable_address": 6465891120, + "vtable_address": 6465895312, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -487959,7 +487965,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552760, + "complete_object_locator": 6468556856, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -487968,32 +487974,32 @@ }, { "type_name": "C_WorldModelGloves", - "vtable_address": 6466192608, + "vtable_address": 6466196768, "methods": [ 6445466544, - 6451775792, - 6448846688, - 6448866800, - 6451924800, - 6448816736, - 6451946720, - 6450413456, - 6448987824, - 6450586832, - 6448814320, - 6451972560, - 6448980064, + 6451777376, + 6448848256, + 6448868368, + 6451926384, + 6448818304, + 6451948304, + 6450415024, + 6448989392, + 6450588400, + 6448815888, + 6451974144, + 6448981632, 6443817760, 6443797616, - 6448990128, - 6448882720, - 6448872800, - 6449026832, - 6449015760, + 6448991696, + 6448884288, + 6448874368, + 6449028384, + 6449017312, 6444191216, - 6448979984, - 6450573696, - 6450573648, + 6448981552, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -488002,25 +488008,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6451872576, - 6451927728, - 6451942512, + 6460060080, + 6451874160, + 6451929312, + 6451944096, 6443799760, 6445465808, - 6448916960, + 6448918528, 6444235952, - 6449046384, + 6449047936, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817344, 6443817328, @@ -488032,18 +488038,18 @@ 6445463696, 6443817712, 6443817696, - 6451802368, + 6451803952, 6443848592, 6443843664, 6444234768, 6444127120, - 6448882736, + 6448884304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -488051,79 +488057,79 @@ 6443887776, 6443887712, 6443887840, - 6450431424, - 6448972016, - 6449035856, + 6450432992, + 6448973584, + 6449037408, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6448911696, + 6448913264, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818912, 6443837888, - 6450734032, - 6451945296, - 6449042320, - 6450473488, - 6448972672, - 6450579744, + 6450735600, + 6451946880, + 6449043872, + 6450475056, + 6448974240, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, - 6448980544, - 6448981616, + 6450484992, + 6450549168, + 6448982112, + 6448983184, 6443852480, 6445485152, 6443869200, - 6448935120, - 6448901216, - 6448901152, - 6448819072, - 6448819648, - 6448820960, - 6448821632, + 6448936688, + 6448902784, + 6448902720, + 6448820640, + 6448821216, + 6448822528, + 6448823200, 6445471584, - 6450498848, - 6448992672, - 6450537248, - 6449036960, + 6450500416, + 6448994240, + 6450538816, + 6449038512, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, - 6448975008, + 6450598880, + 6448976576, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6448982528, - 6448995312, - 6448950416, + 6450667344, + 6448984096, + 6448996864, + 6448951984, 6444156064, 6444218976, 6443837296, @@ -488148,37 +488154,37 @@ 6443813504, 6443802416, 6443847536, - 6449039760, + 6449041312, 6443817008, 6443821040, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6449041488, + 6449043040, 6443824256, - 6448973664, - 6450677280, + 6448975232, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6448919600, - 6450500240, + 6450653808, + 6448921168, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -488188,61 +488194,61 @@ 6444207072, 6444190512, 6443887696, - 6448973840, + 6448975408, 6443848144, - 6448915728, - 6449034928, - 6448904528, + 6448917296, + 6449036480, + 6448906096, 6443837232, - 6448981584, - 6448982416, - 6448980688, - 6448981744, - 6448981600, + 6448983152, + 6448983984, + 6448982256, + 6448983312, + 6448983168, 6443848320, 6443848288, 6443848304, - 6448859136, + 6448860704, 6443827408, - 6448989984, - 6451834224, - 6448951216, + 6448991552, + 6451835808, + 6448952784, 6443869088, 6443817184, - 6448968256, + 6448969824, 6445458352, - 6448851840, + 6448853408, 6445450432, 6445452848, - 6449061008, - 6448844240, + 6449062560, + 6448845808, 6445478864, 6445478896, - 6448928112, + 6448929680, 6445484480, - 6448817776, - 6448819296, + 6448819344, + 6448820864, 6445450448, 6445450464, - 6448821392, - 6448821472, - 6449041728, - 6448947760, + 6448822960, + 6448823040, + 6449043280, + 6448949328, 6445485136, - 6448907168, - 6448907344, + 6448908736, + 6448908912, 6445471568, - 6448831984, - 6448918000, + 6448833552, + 6448919568, 6445479792, 6445479808, - 6448917872, - 6448971584, - 6448973712, + 6448919440, + 6448973152, + 6448975280, 6445450400, 6445450368, 6445450384, - 6448810416 + 6448811984 ], "bases": [ { @@ -488332,7 +488338,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636056, + "complete_object_locator": 6468640152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -488341,14 +488347,14 @@ }, { "type_name": "C_WorldModelGloves", - "vtable_address": 6466194800, + "vtable_address": 6466198960, "methods": [ - 6451773208, - 6448995376, - 6448972352, - 6448972096, + 6451774792, + 6448996928, + 6448973920, + 6448973664, 6443817504, - 6448830720 + 6448832288 ], "bases": [ { @@ -488438,7 +488444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636224, + "complete_object_locator": 6468640320, "offset": 1528, "constructor_displacement": 0, "class_attributes": 1 @@ -488447,9 +488453,9 @@ }, { "type_name": "C_WorldModelGloves", - "vtable_address": 6466194856, + "vtable_address": 6466199016, "methods": [ - 6449027056 + 6449028608 ], "bases": [ { @@ -488539,7 +488545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468636264, + "complete_object_locator": 6468640360, "offset": 2776, "constructor_displacement": 0, "class_attributes": 1 @@ -488548,11 +488554,11 @@ }, { "type_name": "ClientJob_EGCMsgAccountPhoneNumberChange", - "vtable_address": 6466673536, + "vtable_address": 6466677632, "methods": [ - 6455311616, + 6455313376, 6443903536, - 6455328304, + 6455330064, 6443903632, 6443903520, 6443903504 @@ -488589,7 +488595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468759648, + "complete_object_locator": 6468763744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488598,11 +488604,11 @@ }, { "type_name": "ClientJob_EGCMsgRecurringSubscriptionStatusChange", - "vtable_address": 6466674688, + "vtable_address": 6466678784, "methods": [ - 6455311680, + 6455313440, 6443903536, - 6455328912, + 6455330672, 6443903632, 6443903520, 6443903504 @@ -488639,7 +488645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468761728, + "complete_object_locator": 6468765824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488648,11 +488654,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_GotvSyncPacket", - "vtable_address": 6466027248, + "vtable_address": 6466031456, "methods": [ - 6450922784, + 6450924352, 6443903536, - 6450933936, + 6450935504, 6443903632, 6443903520, 6443903504 @@ -488689,7 +488695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468582920, + "complete_object_locator": 6468587016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488698,11 +488704,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_StartAgreementSessionInGame", - "vtable_address": 6466672488, + "vtable_address": 6466676584, "methods": [ - 6455311744, + 6455313504, 6443903536, - 6455329248, + 6455331008, 6443903632, 6443903520, 6443903504 @@ -488739,7 +488745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758728, + "complete_object_locator": 6468762824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488748,11 +488754,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_AccountPrivacySettings", - "vtable_address": 6466674352, + "vtable_address": 6466678448, "methods": [ - 6455311808, + 6455313568, 6443903536, - 6455329840, + 6455331600, 6443903632, 6443903520, 6443903504 @@ -488789,7 +488795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468761080, + "complete_object_locator": 6468765176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488798,11 +488804,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Account_RequestCoPlays", - "vtable_address": 6466689592, + "vtable_address": 6466693688, "methods": [ - 6455311872, + 6455313632, 6443903536, - 6455331824, + 6455333584, 6443903632, 6443903520, 6443903504 @@ -488839,7 +488845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768976, + "complete_object_locator": 6468773072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488848,11 +488854,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse", - "vtable_address": 6466633632, + "vtable_address": 6466637728, "methods": [ - 6454478880, + 6454480640, 6443903536, - 6454496080, + 6454497840, 6443903632, 6443903520, 6443903504 @@ -488889,7 +488895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468743624, + "complete_object_locator": 6468747720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488898,11 +488904,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin", - "vtable_address": 6466633248, + "vtable_address": 6466637344, "methods": [ - 6454478944, + 6454480704, 6443903536, - 6454496560, + 6454498320, 6443903632, 6443903520, 6443903504 @@ -488939,7 +488945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742976, + "complete_object_locator": 6468747072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488948,11 +488954,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientAccountBalance", - "vtable_address": 6466687520, + "vtable_address": 6466691616, "methods": [ - 6455311936, + 6455313696, 6443903536, - 6455332208, + 6455333968, 6443903632, 6443903520, 6443903504 @@ -488989,7 +488995,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468766976, + "complete_object_locator": 6468771072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -488998,11 +489004,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientAuthKeyCode", - "vtable_address": 6466673640, + "vtable_address": 6466677736, "methods": [ - 6455312000, + 6455313760, 6443903536, - 6455332496, + 6455334256, 6443903632, 6443903520, 6443903504 @@ -489039,7 +489045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760296, + "complete_object_locator": 6468764392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489048,11 +489054,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse", - "vtable_address": 6466622000, + "vtable_address": 6466626096, "methods": [ - 6454479008, + 6454480768, 6443903536, - 6454496928, + 6454498688, 6443903632, 6443903520, 6443903504 @@ -489089,7 +489095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468739192, + "complete_object_locator": 6468743288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489098,11 +489104,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientDeepStats_Response", - "vtable_address": 6466608648, + "vtable_address": 6466612744, "methods": [ - 6454479072, + 6454480832, 6443903536, - 6454497664, + 6454499424, 6443903632, 6443903520, 6443903504 @@ -489139,7 +489145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468734456, + "complete_object_locator": 6468738552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489148,11 +489154,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientLogonFatalError", - "vtable_address": 6466671904, + "vtable_address": 6466676000, "methods": [ - 6455312064, + 6455313824, 6443903536, - 6455332960, + 6455334720, 6443903632, 6443903520, 6443903504 @@ -489189,7 +489195,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758080, + "complete_object_locator": 6468762176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489198,11 +489204,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientNetworkConfig", - "vtable_address": 6466640200, + "vtable_address": 6466644296, "methods": [ - 6454479136, + 6454480896, 6443903536, - 6454498048, + 6454499808, 6443903632, 6443903520, 6443903504 @@ -489239,7 +489245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468745256, + "complete_object_locator": 6468749352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489248,11 +489254,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPartyJoinRelay", - "vtable_address": 6466640384, + "vtable_address": 6466644480, "methods": [ - 6454479200, + 6454480960, 6443903536, - 6454498448, + 6454500208, 6443903632, 6443903520, 6443903504 @@ -489289,7 +489295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468745392, + "complete_object_locator": 6468749488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489298,11 +489304,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPartyWarning", - "vtable_address": 6466306800, + "vtable_address": 6466310960, "methods": [ - 6452112064, + 6452113648, 6443903536, - 6452118464, + 6452120048, 6443903632, 6443903520, 6443903504 @@ -489339,7 +489345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664936, + "complete_object_locator": 6468669032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489348,11 +489354,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPlayerDecalSign", - "vtable_address": 6466293216, + "vtable_address": 6466297368, "methods": [ - 6452112128, + 6452113712, 6443903536, - 6452119936, + 6452121520, 6443903632, 6443903520, 6443903504 @@ -489389,7 +489395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468661192, + "complete_object_locator": 6468665288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489398,11 +489404,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientPollState", - "vtable_address": 6466673736, + "vtable_address": 6466677832, "methods": [ - 6455312128, + 6455313888, 6443903536, - 6455334032, + 6455335792, 6443903632, 6443903520, 6443903504 @@ -489439,7 +489445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760432, + "complete_object_locator": 6468764528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489448,11 +489454,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientReportResponse", - "vtable_address": 6466622136, + "vtable_address": 6466626232, "methods": [ - 6454479264, + 6454481024, 6443903536, - 6454498928, + 6454500688, 6443903632, 6443903520, 6443903504 @@ -489489,7 +489495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468739584, + "complete_object_locator": 6468743680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489498,11 +489504,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientRequestJoinFriendData", - "vtable_address": 6466345496, + "vtable_address": 6466349656, "methods": [ - 6452476672, + 6452478288, 6443903536, - 6452477568, + 6452479184, 6443903632, 6443903520, 6443903504 @@ -489539,7 +489545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468679624, + "complete_object_locator": 6468683720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489548,11 +489554,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ClientRequestJoinServerData", - "vtable_address": 6466345976, + "vtable_address": 6466350136, "methods": [ - 6452476736, + 6452478352, 6443903536, - 6452478784, + 6452480400, 6443903632, 6443903520, 6443903504 @@ -489589,7 +489595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468680016, + "complete_object_locator": 6468684112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489598,11 +489604,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_DraftSummary", - "vtable_address": 6466642152, + "vtable_address": 6466646248, "methods": [ - 6454479328, + 6454481088, 6443903536, - 6454500224, + 6454501984, 6443903632, 6443903520, 6443903504 @@ -489639,7 +489645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747000, + "complete_object_locator": 6468751096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489648,11 +489654,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_FantasyRequestClientData", - "vtable_address": 6466645456, + "vtable_address": 6466649552, "methods": [ - 6454479392, + 6454481152, 6443903536, - 6454500864, + 6454502624, 6443903632, 6443903520, 6443903504 @@ -489689,7 +489695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468749728, + "complete_object_locator": 6468753824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489698,11 +489704,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_FantasyUpdateClientData", - "vtable_address": 6466645560, + "vtable_address": 6466649656, "methods": [ - 6454479456, + 6454481216, 6443903536, - 6454501328, + 6454503088, 6443903632, 6443903520, 6443903504 @@ -489739,7 +489745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468749864, + "complete_object_locator": 6468753960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489748,11 +489754,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientGlobalStats", - "vtable_address": 6466307136, + "vtable_address": 6466311296, "methods": [ - 6452112192, + 6452113776, 6443903536, - 6452120480, + 6452122064, 6443903632, 6443903520, 6443903504 @@ -489789,7 +489795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665328, + "complete_object_locator": 6468669424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489798,11 +489804,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientNotifyXPShop", - "vtable_address": 6466293112, + "vtable_address": 6466297264, "methods": [ - 6452112256, + 6452113840, 6443903536, - 6452121104, + 6452122688, 6443903632, 6443903520, 6443903504 @@ -489839,7 +489845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660544, + "complete_object_locator": 6468664640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489848,11 +489854,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientTextMsg", - "vtable_address": 6466675784, + "vtable_address": 6466679880, "methods": [ - 6455312192, + 6455313952, 6443903536, - 6455336608, + 6455338368, 6443903632, 6443903520, 6443903504 @@ -489889,7 +489895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468762088, + "complete_object_locator": 6468766184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489898,11 +489904,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GC2ClientTournamentInfo", - "vtable_address": 6466307840, + "vtable_address": 6466312000, "methods": [ - 6452112320, + 6452113904, 6443903536, - 6452121568, + 6452123152, 6443903632, 6443903520, 6443903504 @@ -489939,7 +489945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468666896, + "complete_object_locator": 6468670992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489948,11 +489954,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_GetEventFavorites_Response", - "vtable_address": 6466691248, + "vtable_address": 6466695344, "methods": [ - 6455312256, + 6455314016, 6443903536, - 6455338224, + 6455339984, 6443903632, 6443903520, 6443903504 @@ -489989,7 +489995,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468769368, + "complete_object_locator": 6468773464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -489998,11 +490004,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchList", - "vtable_address": 6466645008, + "vtable_address": 6466649104, "methods": [ - 6454479520, + 6454481280, 6443903536, - 6454501600, + 6454503360, 6443903632, 6443903520, 6443903504 @@ -490039,7 +490045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468749320, + "complete_object_locator": 6468753416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490048,11 +490054,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchListRequestTournamentPredictions", - "vtable_address": 6466645232, + "vtable_address": 6466649328, "methods": [ - 6454479584, + 6454481344, 6443903536, - 6454503056, + 6454504816, 6443903632, 6443903520, 6443903504 @@ -490089,7 +490095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468749456, + "complete_object_locator": 6468753552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490098,11 +490104,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt", - "vtable_address": 6466645664, + "vtable_address": 6466649760, "methods": [ - 6454479648, + 6454481408, 6443903536, - 6454503520, + 6454505280, 6443903632, 6443903520, 6443903504 @@ -490139,7 +490145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750000, + "complete_object_locator": 6468754096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490148,11 +490154,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchListUploadTournamentPredictions", - "vtable_address": 6466645344, + "vtable_address": 6466649440, "methods": [ - 6454479712, + 6454481472, 6443903536, - 6454504288, + 6454506048, 6443903632, 6443903520, 6443903504 @@ -490189,7 +490195,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468749592, + "complete_object_locator": 6468753688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490198,11 +490204,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingClient2ServerPing", - "vtable_address": 6466306384, + "vtable_address": 6466310544, "methods": [ - 6452112384, + 6452113968, 6443903536, - 6452123104, + 6452124688, 6443903632, 6443903520, 6443903504 @@ -490239,7 +490245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664800, + "complete_object_locator": 6468668896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490248,11 +490254,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon", - "vtable_address": 6466307504, + "vtable_address": 6466311664, "methods": [ - 6452112448, + 6452114032, 6443903536, - 6452123904, + 6452125488, 6443903632, 6443903520, 6443903504 @@ -490289,7 +490295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468666504, + "complete_object_locator": 6468670600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490298,11 +490304,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello", - "vtable_address": 6466301352, + "vtable_address": 6466305512, "methods": [ - 6452112512, + 6452114096, 6443903536, - 6452125088, + 6452126672, 6443903632, 6443903520, 6443903504 @@ -490339,7 +490345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664016, + "complete_object_locator": 6468668112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490348,11 +490354,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientReserve", - "vtable_address": 6466307296, + "vtable_address": 6466311456, "methods": [ - 6452112576, + 6452114160, 6443903536, - 6452125536, + 6452127120, 6443903632, 6443903520, 6443903504 @@ -490389,7 +490395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468666112, + "complete_object_locator": 6468670208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490398,11 +490404,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats", - "vtable_address": 6466307216, + "vtable_address": 6466311376, "methods": [ - 6452112640, + 6452114224, 6443903536, - 6452126720, + 6452128304, 6443903632, 6443903520, 6443903504 @@ -490439,7 +490445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665720, + "complete_object_locator": 6468669816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490448,11 +490454,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate", - "vtable_address": 6466301432, + "vtable_address": 6466305592, "methods": [ - 6452112704, + 6452114288, 6443903536, - 6452127280, + 6452128864, 6443903632, 6443903520, 6443903504 @@ -490489,7 +490495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664408, + "complete_object_locator": 6468668504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490498,11 +490504,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_Party_Search", - "vtable_address": 6466679264, + "vtable_address": 6466683360, "methods": [ - 6455312320, + 6455314080, 6443903536, - 6455338720, + 6455340480, 6443903632, 6443903520, 6443903504 @@ -490539,7 +490545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468765016, + "complete_object_locator": 6468769112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490548,11 +490554,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment", - "vtable_address": 6466678136, + "vtable_address": 6466682232, "methods": [ - 6455312384, + 6455314144, 6443903536, - 6455338880, + 6455340640, 6443903632, 6443903520, 6443903504 @@ -490589,7 +490595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468763824, + "complete_object_locator": 6468767920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490598,11 +490604,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PlayersProfile", - "vtable_address": 6466614936, + "vtable_address": 6466619032, "methods": [ - 6454479776, + 6454481536, 6443903536, - 6454504560, + 6454506320, 6443903632, 6443903520, 6443903504 @@ -490639,7 +490645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736288, + "complete_object_locator": 6468740384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490648,11 +490654,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PremierSeasonSummary", - "vtable_address": 6466691440, + "vtable_address": 6466695536, "methods": [ - 6455312448, + 6455314208, 6443903536, - 6455341456, + 6455343216, 6443903632, 6443903520, 6443903504 @@ -490689,7 +490695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468770144, + "complete_object_locator": 6468774240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490698,11 +490704,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_PrivateQueues", - "vtable_address": 6466679904, + "vtable_address": 6466684000, "methods": [ - 6455312512, + 6455314272, 6443903536, - 6455341616, + 6455343376, 6443903632, 6443903520, 6443903504 @@ -490739,7 +490745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468765800, + "complete_object_locator": 6468769896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490748,11 +490754,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName", - "vtable_address": 6466672872, + "vtable_address": 6466676968, "methods": [ - 6455312576, + 6455314336, 6443903536, - 6455341776, + 6455343536, 6443903632, 6443903520, 6443903504 @@ -490789,7 +490795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468759512, + "complete_object_locator": 6468763608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490798,11 +490804,11 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_WatchInfoUsers", - "vtable_address": 6466612384, + "vtable_address": 6466616480, "methods": [ - 6454479840, + 6454481600, 6443903536, - 6454506512, + 6454508272, 6443903632, 6443903520, 6443903504 @@ -490839,7 +490845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468735640, + "complete_object_locator": 6468739736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490848,11 +490854,11 @@ }, { "type_name": "ClientJob_EMsgGCDev_RequestSchemaReservation", - "vtable_address": 6466703752, + "vtable_address": 6466707848, "methods": [ - 6455312640, + 6455314400, 6443903536, - 6455342352, + 6455344112, 6443903632, 6443903520, 6443903504 @@ -490889,7 +490895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468770880, + "complete_object_locator": 6468774976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490898,11 +490904,11 @@ }, { "type_name": "ClientJob_EMsgGCItemCustomizationNotification", - "vtable_address": 6466631816, + "vtable_address": 6466635912, "methods": [ - 6454479904, + 6454481664, 6443903536, - 6454507008, + 6454508768, 6443903632, 6443903520, 6443903504 @@ -490939,7 +490945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742192, + "complete_object_locator": 6468746288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490948,11 +490954,11 @@ }, { "type_name": "ClientJob_EMsgGCRecurringMissionResponse", - "vtable_address": 6466836616, + "vtable_address": 6466840728, "methods": [ - 6456442272, + 6456444048, 6443903536, - 6456455472, + 6456457248, 6443903632, 6443903520, 6443903504 @@ -490989,7 +490995,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468799880, + "complete_object_locator": 6468803976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -490998,11 +491004,11 @@ }, { "type_name": "ClientJob_EMsgGCStoreGetUserDataResponse", - "vtable_address": 6466761056, + "vtable_address": 6466765152, "methods": [ - 6455881952, + 6455883712, 6443903536, - 6456036432, + 6456038208, 6443903632, 6443903520, 6443903504 @@ -491039,7 +491045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468782624, + "complete_object_locator": 6468786720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491048,11 +491054,11 @@ }, { "type_name": "ClientJob_EMsgGCUseItemResponse", - "vtable_address": 6466632480, + "vtable_address": 6466636576, "methods": [ - 6454479968, + 6454481728, 6443903536, - 6454509664, + 6454511424, 6443903632, 6443903520, 6443903504 @@ -491089,7 +491095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742584, + "complete_object_locator": 6468746680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491098,11 +491104,11 @@ }, { "type_name": "ClientJob_EMsgGCUserTrackTimePlayedConsecutively", - "vtable_address": 6466671744, + "vtable_address": 6466675840, "methods": [ - 6455312704, + 6455314464, 6443903536, - 6455342992, + 6455344752, 6443903632, 6443903520, 6443903504 @@ -491139,7 +491145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757688, + "complete_object_locator": 6468761784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491148,11 +491154,11 @@ }, { "type_name": "ClientJob_MsgGCCStrike15_v2_ClientGCRankUpdate", - "vtable_address": 6466672816, + "vtable_address": 6466676912, "methods": [ - 6455312768, + 6455314528, 6443903536, - 6455343632, + 6455345392, 6443903632, 6443903520, 6443903504 @@ -491189,7 +491195,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468759376, + "complete_object_locator": 6468763472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491198,11 +491204,11 @@ }, { "type_name": "ClientJob_MsgGCCStrike15_v2_Party_Invite", - "vtable_address": 6466679368, + "vtable_address": 6466683464, "methods": [ - 6455312832, + 6455314592, 6443903536, - 6455344544, + 6455346304, 6443903632, 6443903520, 6443903504 @@ -491239,7 +491245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468765408, + "complete_object_locator": 6468769504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491248,49 +491254,49 @@ }, { "type_name": "ClientModeCSNormal", - "vtable_address": 6466285928, - "methods": [ - 6452112768, - 6451127696, - 6452203520, - 6451158544, - 6452277200, - 6451110944, - 6451110608, - 6451110624, - 6451106544, - 6451102464, - 6451129856, - 6451150528, - 6451150544, - 6451150560, - 6451150624, - 6452247472, - 6451133056, - 6451132944, - 6452218208, - 6451121136, - 6452279216, - 6451151488, - 6451118752, - 6452219136, - 6452219232, - 6452276160, - 6452253904, - 6452193952, - 6452131232, - 6451122272, - 6451120160, - 6451121248, - 6451118672, - 6451095472, - 6451118704, - 6451128912, - 6451102528, - 6452286304, - 6451132384, - 6451140208, - 6452289360 + "vtable_address": 6466290040, + "methods": [ + 6452114352, + 6451129264, + 6452205104, + 6451160112, + 6452278784, + 6451112512, + 6451112176, + 6451112192, + 6451108112, + 6451104032, + 6451131424, + 6451152096, + 6451152112, + 6451152128, + 6451152192, + 6452249056, + 6451134624, + 6451134512, + 6452219792, + 6451122704, + 6452280800, + 6451153056, + 6451120320, + 6452220720, + 6452220816, + 6452277744, + 6452255488, + 6452195536, + 6452132816, + 6451123840, + 6451121728, + 6451122816, + 6451120240, + 6451097040, + 6451120272, + 6451130480, + 6451104096, + 6452287888, + 6451133952, + 6451141776, + 6452290944 ], "bases": [ { @@ -491366,7 +491372,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656664, + "complete_object_locator": 6468660760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -491375,10 +491381,10 @@ }, { "type_name": "ClientModeCSNormal", - "vtable_address": 6466286264, + "vtable_address": 6466290376, "methods": [ - 6452103688, - 6452167232 + 6452105272, + 6452168816 ], "bases": [ { @@ -491454,7 +491460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656864, + "complete_object_locator": 6468660960, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -491463,9 +491469,9 @@ }, { "type_name": "ClientModeCSNormal", - "vtable_address": 6466286288, + "vtable_address": 6466290400, "methods": [ - 6452233328 + 6452234912 ], "bases": [ { @@ -491541,7 +491547,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468656904, + "complete_object_locator": 6468661000, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -491550,48 +491556,48 @@ }, { "type_name": "ClientModeShared", - "vtable_address": 6466041664, - "methods": [ - 6451088752, - 6451127696, - 6451125648, - 6451158544, - 6451150880, - 6451110944, - 6451110608, - 6451110624, - 6451106544, - 6451102464, - 6451129856, - 6451150528, - 6451150544, - 6451150560, - 6451150624, - 6451133072, - 6451133056, - 6451132944, - 6451129056, - 6451121136, - 6451151472, - 6451151488, - 6451118752, - 6451129952, - 6451130592, - 6451150640, - 6451138272, - 6451121632, - 6451095456, - 6451122272, - 6451120160, - 6451121248, - 6451118672, - 6451095472, - 6451118704, - 6451128912, - 6451102528, - 6451154384, - 6451132384, - 6451140208 + "vtable_address": 6466045872, + "methods": [ + 6451090320, + 6451129264, + 6451127216, + 6451160112, + 6451152448, + 6451112512, + 6451112176, + 6451112192, + 6451108112, + 6451104032, + 6451131424, + 6451152096, + 6451152112, + 6451152128, + 6451152192, + 6451134640, + 6451134624, + 6451134512, + 6451130624, + 6451122704, + 6451153040, + 6451153056, + 6451120320, + 6451131520, + 6451132160, + 6451152208, + 6451139840, + 6451123200, + 6451097024, + 6451123840, + 6451121728, + 6451122816, + 6451120240, + 6451097040, + 6451120272, + 6451130480, + 6451104096, + 6451155952, + 6451133952, + 6451141776 ], "bases": [ { @@ -491639,7 +491645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468588232, + "complete_object_locator": 6468592328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -491648,10 +491654,10 @@ }, { "type_name": "ClientModeShared", - "vtable_address": 6466041992, + "vtable_address": 6466046200, "methods": [ - 6451086528, - 6451110592 + 6451088096, + 6451112160 ], "bases": [ { @@ -491699,7 +491705,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468588376, + "complete_object_locator": 6468592472, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -491708,11 +491714,11 @@ }, { "type_name": "Concurrency::details::_CancellationTokenCallback >", - "vtable_address": 6467202688, + "vtable_address": 6467206752, "methods": [ - 6460136768, - 6460146768, - 6460147248 + 6460138960, + 6460148960, + 6460149440 ], "bases": [ { @@ -491746,7 +491752,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468941896, + "complete_object_locator": 6468945992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491755,11 +491761,11 @@ }, { "type_name": "Concurrency::details::_CancellationTokenRegistration", - "vtable_address": 6467202488, + "vtable_address": 6467206552, "methods": [ - 6460138080, - 6460146768, - 6463705588 + 6460140272, + 6460148960, + 6463707780 ], "bases": [ { @@ -491779,7 +491785,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468941488, + "complete_object_locator": 6468945584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491788,9 +491794,9 @@ }, { "type_name": "Concurrency::details::_DefaultPPLTaskScheduler", - "vtable_address": 6467202416, + "vtable_address": 6467206480, "methods": [ - 6460156656 + 6460158848 ], "bases": [ { @@ -491810,7 +491816,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468941240, + "complete_object_locator": 6468945336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491819,10 +491825,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6467204528, + "vtable_address": 6467208592, "methods": [ - 6460137280, - 6460155680 + 6460139472, + 6460157872 ], "bases": [ { @@ -491842,7 +491848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945152, + "complete_object_locator": 6468949248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491851,10 +491857,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6467204680, + "vtable_address": 6467208744, "methods": [ - 6460137344, - 6460155792 + 6460139536, + 6460157984 ], "bases": [ { @@ -491874,7 +491880,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945808, + "complete_object_locator": 6468949904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491883,10 +491889,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6467204632, + "vtable_address": 6467208696, "methods": [ - 6460137408, - 6460155904 + 6460139600, + 6460158096 ], "bases": [ { @@ -491906,7 +491912,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945544, + "complete_object_locator": 6468949640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491915,10 +491921,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6467204480, + "vtable_address": 6467208544, "methods": [ - 6460137472, - 6460156016 + 6460139664, + 6460158208 ], "bases": [ { @@ -491938,7 +491944,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944888, + "complete_object_locator": 6468948984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491947,15 +491953,15 @@ }, { "type_name": "Concurrency::details::_RefCounter", - "vtable_address": 6467202464, + "vtable_address": 6467206528, "methods": [ - 6460138272, - 6460146768 + 6460140464, + 6460148960 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468941368, + "complete_object_locator": 6468945464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491964,15 +491970,15 @@ }, { "type_name": "Concurrency::details::_TaskProcHandle", - "vtable_address": 6467202520, + "vtable_address": 6467206584, "methods": [ - 6460138320, - 6463705588 + 6460140512, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468941616, + "complete_object_locator": 6468945712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -491981,10 +491987,10 @@ }, { "type_name": "Concurrency::details::_Task_impl", - "vtable_address": 6467202720, + "vtable_address": 6467206784, "methods": [ - 6460138016, - 6460143536 + 6460140208, + 6460145728 ], "bases": [ { @@ -492004,7 +492010,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468942152, + "complete_object_locator": 6468946248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492013,15 +492019,15 @@ }, { "type_name": "Concurrency::details::_Task_impl_base", - "vtable_address": 6467202608, + "vtable_address": 6467206672, "methods": [ - 6460138368, - 6463705588 + 6460140560, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468941776, + "complete_object_locator": 6468945872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492030,9 +492036,9 @@ }, { "type_name": "Concurrency::invalid_operation", - "vtable_address": 6467202392, + "vtable_address": 6467206456, "methods": [ - 6460138480, + 6460140672, 6443748544 ], "bases": [ @@ -492053,7 +492059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468941112, + "complete_object_locator": 6468945208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492062,10 +492068,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6467204552, + "vtable_address": 6467208616, "methods": [ - 6460137024, - 6460155680 + 6460139216, + 6460157872 ], "bases": [ { @@ -492099,7 +492105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944928, + "complete_object_locator": 6468949024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492108,10 +492114,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6467204704, + "vtable_address": 6467208768, "methods": [ - 6460137088, - 6460155792 + 6460139280, + 6460157984 ], "bases": [ { @@ -492145,7 +492151,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945584, + "complete_object_locator": 6468949680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492154,10 +492160,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6467204656, + "vtable_address": 6467208720, "methods": [ - 6460137152, - 6460155904 + 6460139344, + 6460158096 ], "bases": [ { @@ -492191,7 +492197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945320, + "complete_object_locator": 6468949416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492200,10 +492206,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6467204504, + "vtable_address": 6467208568, "methods": [ - 6460137216, - 6460156016 + 6460139408, + 6460158208 ], "bases": [ { @@ -492237,7 +492243,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944664, + "complete_object_locator": 6468948760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492246,18 +492252,18 @@ }, { "type_name": "CountdownTimer", - "vtable_address": 6465879400, + "vtable_address": 6465883592, "methods": [ 6444424832, - 6450189680, - 6450231712, + 6450191248, + 6450233280, 6444409584, - 6450231808 + 6450233376 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468551768, + "complete_object_locator": 6468555864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492266,12 +492272,12 @@ }, { "type_name": "DNameStatusNode", - "vtable_address": 6467894440, + "vtable_address": 6467898536, "methods": [ - 6463759988, - 6463760396, - 6463745496, - 6463752764 + 6463762180, + 6463762588, + 6463747688, + 6463754956 ], "bases": [ { @@ -492291,7 +492297,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468997688, + "complete_object_locator": 6469001784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492300,25 +492306,25 @@ }, { "type_name": "DataCenterPing", - "vtable_address": 6464930856, - "methods": [ - 6446082144, - 6457189536, - 6446070688, - 6446072272, - 6446072544, - 6457189584, - 6457186560, + "vtable_address": 6464934952, + "methods": [ + 6446082528, + 6457191728, + 6446071056, 6446072640, - 6446075072, - 6446073392, + 6446072848, + 6457191776, + 6457188752, + 6446072944, + 6446075392, + 6446073712, 6443742160, - 6446074848, - 6457190896, - 6457192720, - 6446075776, - 6446079552, - 6446079536 + 6446075168, + 6457193088, + 6457194912, + 6446076160, + 6446079936, + 6446079920 ], "bases": [ { @@ -492352,7 +492358,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347024, + "complete_object_locator": 6468351256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492361,25 +492367,25 @@ }, { "type_name": "DeepPlayerMatchEvent", - "vtable_address": 6464926664, + "vtable_address": 6464930760, "methods": [ - 6446041264, - 6457189536, + 6446041648, + 6457191728, 6446012368, - 6446015584, - 6446015680, - 6457189584, - 6457186560, - 6446015760, - 6446020080, - 6446016992, + 6446015968, + 6446016048, + 6457191776, + 6457188752, + 6446016064, + 6446020464, + 6446017296, 6443742160, - 6446018688, - 6457190896, - 6457192720, - 6446020192, - 6446020544, - 6446020528 + 6446019072, + 6457193088, + 6457194912, + 6446020576, + 6446020928, + 6446020912 ], "bases": [ { @@ -492413,7 +492419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347160, + "complete_object_locator": 6468351392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492422,31 +492428,31 @@ }, { "type_name": "DeepPlayerStatsEntry", - "vtable_address": 6464923288, + "vtable_address": 6464927384, "methods": [ - 6446006064, - 6457189536, - 6445956128, - 6445957488, - 6445957632, - 6457189584, - 6457186560, - 6445957648, - 6445964880, - 6445958832, + 6446006432, + 6457191728, + 6445956512, + 6445957872, + 6445958016, + 6457191776, + 6457188752, + 6445958032, + 6445965248, + 6445959216, 6443742160, - 6445962064, - 6457190896, - 6457192720, - 6445964976, - 6445966272, - 6445965936, - 6457187520, - 6446003136, - 6457187520, - 6446003376, - 6457187520, - 6446006224 + 6445962432, + 6457193088, + 6457194912, + 6445965360, + 6445965840, + 6445965824, + 6457189712, + 6446003312, + 6457189712, + 6446004576, + 6457189712, + 6446006688 ], "bases": [ { @@ -492480,7 +492486,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347296, + "complete_object_locator": 6468351528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492489,27 +492495,27 @@ }, { "type_name": "DetailedSearchStatistic", - "vtable_address": 6464933176, - "methods": [ - 6446099520, - 6457189536, - 6446087136, - 6446088208, - 6446088256, - 6457189584, - 6457186560, - 6446088288, - 6446089792, - 6446088720, + "vtable_address": 6464937272, + "methods": [ + 6446099872, + 6457191728, + 6446087520, + 6446088592, + 6446088640, + 6457191776, + 6457188752, + 6446088672, + 6446090176, + 6446088944, 6443742160, - 6446089424, - 6457190896, - 6457192720, - 6446090944, - 6446092560, - 6446092528, - 6457187520, - 6446096976 + 6446089808, + 6457193088, + 6457194912, + 6446091328, + 6446092784, + 6446092752, + 6457189712, + 6446097360 ], "bases": [ { @@ -492543,7 +492549,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347432, + "complete_object_locator": 6468351664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492552,7 +492558,7 @@ }, { "type_name": "EntityRenderAttribute_t", - "vtable_address": 6464777224, + "vtable_address": 6464781304, "methods": [ 6445484048, 6445478336, @@ -492563,7 +492569,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468284824, + "complete_object_locator": 6468288920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492572,17 +492578,17 @@ }, { "type_name": "EntitySpottedState_t", - "vtable_address": 6465452608, + "vtable_address": 6465456776, "methods": [ - 6448210320, - 6448190496, - 6448190608, - 6448190560 + 6448211888, + 6448192064, + 6448192176, + 6448192128 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468450048, + "complete_object_locator": 6468454144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492591,21 +492597,21 @@ }, { "type_name": "Etc::Block4x4Encoding", - "vtable_address": 6467206376, + "vtable_address": 6467210440, "methods": [ - 6460160912, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6460163104, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468947440, + "complete_object_locator": 6468951536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492614,16 +492620,16 @@ }, { "type_name": "Etc::Block4x4Encoding_ETC1", - "vtable_address": 6467206448, + "vtable_address": 6467210512, "methods": [ - 6460160960, - 6460166096, - 6460165216, - 6460166528, - 6460167104, - 6460157312, - 6460158304, - 6460157328 + 6460163152, + 6460168288, + 6460167408, + 6460168720, + 6460169296, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -492643,7 +492649,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947480, + "complete_object_locator": 6468951576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492652,16 +492658,16 @@ }, { "type_name": "Etc::Block4x4Encoding_R11", - "vtable_address": 6467210272, + "vtable_address": 6467214336, "methods": [ - 6460217888, - 6460220176, - 6460219472, - 6460220224, - 6460220768, - 6460157312, - 6460158304, - 6460157328 + 6460220080, + 6460222368, + 6460221664, + 6460222416, + 6460222960, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -492709,7 +492715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947640, + "complete_object_locator": 6468951736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492718,16 +492724,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RG11", - "vtable_address": 6467210600, + "vtable_address": 6467214664, "methods": [ - 6460221200, - 6460223808, - 6460222736, - 6460223856, - 6460224592, - 6460157312, - 6460158304, - 6460157328 + 6460223392, + 6460226000, + 6460224928, + 6460226048, + 6460226784, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -492789,7 +492795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947784, + "complete_object_locator": 6468951880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492798,16 +492804,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8", - "vtable_address": 6467208536, + "vtable_address": 6467212600, "methods": [ - 6460175680, - 6460166096, - 6460180400, - 6460182048, - 6460183488, - 6460157312, - 6460158304, - 6460157328 + 6460177872, + 6460168288, + 6460182592, + 6460184240, + 6460185680, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -492841,7 +492847,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947520, + "complete_object_locator": 6468951616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492850,16 +492856,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1", - "vtable_address": 6467209824, + "vtable_address": 6467213888, "methods": [ - 6460199040, - 6460202416, - 6460200848, - 6460203328, - 6460204688, - 6460157312, - 6460158304, - 6460157328 + 6460201232, + 6460204608, + 6460203040, + 6460205520, + 6460206880, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -492907,7 +492913,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947600, + "complete_object_locator": 6468951696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492916,16 +492922,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Opaque", - "vtable_address": 6467205216, + "vtable_address": 6467209280, "methods": [ - 6460157056, - 6460202416, - 6460200848, - 6460203856, - 6460204688, - 6460157312, - 6460158304, - 6460157328 + 6460159248, + 6460204608, + 6460203040, + 6460206048, + 6460206880, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -492987,7 +492993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947032, + "complete_object_locator": 6468951128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -492996,16 +493002,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Transparent", - "vtable_address": 6467205288, + "vtable_address": 6467209352, "methods": [ - 6460157120, - 6460202416, - 6460200848, - 6460204368, - 6460204688, - 6460157312, - 6460158304, - 6460157328 + 6460159312, + 6460204608, + 6460203040, + 6460206560, + 6460206880, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -493067,7 +493073,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947288, + "complete_object_locator": 6468951384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493076,16 +493082,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8", - "vtable_address": 6467209328, + "vtable_address": 6467213392, "methods": [ - 6460195584, - 6460197792, - 6460197120, - 6460197856, - 6460198352, - 6460157312, - 6460158304, - 6460157328 + 6460197776, + 6460199984, + 6460199312, + 6460200048, + 6460200544, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -493133,7 +493139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468947560, + "complete_object_locator": 6468951656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493142,16 +493148,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Opaque", - "vtable_address": 6467205072, + "vtable_address": 6467209136, "methods": [ - 6460157184, - 6460197792, - 6460197120, - 6460198000, - 6460198672, - 6460157312, - 6460158304, - 6460157328 + 6460159376, + 6460199984, + 6460199312, + 6460200192, + 6460200864, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -493213,7 +493219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468946440, + "complete_object_locator": 6468950536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493222,16 +493228,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Transparent", - "vtable_address": 6467205144, + "vtable_address": 6467209208, "methods": [ - 6460157248, - 6460197792, - 6460197120, - 6460198160, - 6460198816, - 6460157312, - 6460158304, - 6460157328 + 6460159440, + 6460199984, + 6460199312, + 6460200352, + 6460201008, + 6460159504, + 6460160496, + 6460159520 ], "bases": [ { @@ -493293,7 +493299,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468946880, + "complete_object_locator": 6468950976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493302,32 +493308,32 @@ }, { "type_name": "FilterDamageType", - "vtable_address": 6465783328, + "vtable_address": 6465787520, "methods": [ 6445466896, - 6449167184, + 6449168736, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -493336,25 +493342,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265520, - 6449331744, - 6449370880, + 6460060080, + 6449267072, + 6449333296, + 6449372432, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -493371,13 +493377,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -493385,42 +493391,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -493431,33 +493437,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -493485,34 +493491,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -493522,8 +493528,8 @@ 6444207072, 6444190512, 6443887696, - 6449323520, - 6449321712 + 6449325072, + 6449323264 ], "bases": [ { @@ -493585,7 +493591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468510816, + "complete_object_locator": 6468514912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493594,32 +493600,32 @@ }, { "type_name": "FilterHealth", - "vtable_address": 6465785112, + "vtable_address": 6465789304, "methods": [ 6445466896, - 6449167408, + 6449168960, 6444122752, - 6460051264, + 6460053456, 6444197472, - 6450410112, - 6450687312, - 6450413456, - 6450585280, - 6450586832, - 6450396576, - 6450715424, - 6450580640, + 6450411680, + 6450688880, + 6450415024, + 6450586848, + 6450588400, + 6450398144, + 6450716992, + 6450582208, 6443817760, 6443797616, - 6450587008, + 6450588576, 6444140000, 6444133632, - 6450666432, - 6450654976, + 6450668000, + 6450656544, 6444191216, - 6450580272, - 6450573696, - 6450573648, + 6450581840, + 6450575264, + 6450575216, 6443858256, 6443844048, 6443844080, @@ -493628,25 +493634,25 @@ 6444190256, 6443837488, 6443843648, - 6450577472, + 6450579040, 6443798816, 6443800384, 6443817440, 6443817424, 6443816448, 6443817136, - 6460057888, - 6449265536, - 6449331760, - 6449370928, + 6460060080, + 6449267088, + 6449333312, + 6449372480, 6443799760, 6445466000, - 6450497856, + 6450499424, 6444235952, 6444236640, 6444197456, 6443852784, - 6450676656, + 6450678224, 6443852800, 6443817312, 6443817296, @@ -493663,13 +493669,13 @@ 6443843664, 6444234768, 6444127120, - 6450458736, + 6450460304, 6444250608, 6444251024, 6444250768, 6443817536, - 6450552816, - 6450497536, + 6450554384, + 6450499104, 6443879600, 6443818880, 6444240464, @@ -493677,42 +493683,42 @@ 6443887776, 6443887712, 6443887840, - 6450431424, + 6450432992, 6443845040, 6443866784, 6444163696, 6444250352, - 6450578848, + 6450580416, 6443848048, - 6450496704, + 6450498272, 6443844032, 6443845008, 6444119600, - 6450508832, - 6450508752, + 6450510400, + 6450510320, 6443848336, - 6450555408, - 6450735056, + 6450556976, + 6450736624, 6443838560, 6443824992, 6443818896, 6443837888, - 6450734032, - 6450682784, - 6450684032, - 6450473488, - 6450574656, - 6450579744, + 6450735600, + 6450684352, + 6450685600, + 6450475056, + 6450576224, + 6450581312, 6443869232, 6443838592, 6443838608, 6443848608, 6443806880, - 6450483424, - 6450547600, + 6450484992, + 6450549168, 6443848272, 6444191360, - 6449321024, + 6449322576, 6443883904, 6443869200, 6443826448, @@ -493723,33 +493729,33 @@ 6444072288, 6443799728, 6443838576, - 6450498848, - 6450599136, - 6450537248, - 6450676960, + 6450500416, + 6450600704, + 6450538816, + 6450678528, 6443869216, - 6450599344, - 6450580256, - 6450683472, + 6450600912, + 6450581824, + 6450685040, 6444168384, 6444234384, - 6450597312, + 6450598880, 6443848016, 6443824496, - 6450469712, + 6450471280, 6444238208, 6444243600, 6444142576, 6443875152, - 6450415952, - 6451215568, + 6450417520, + 6451217136, 6443883952, - 6451220144, + 6451221712, 6443844512, - 6450665776, - 6450583136, + 6450667344, + 6450584704, 6443853808, - 6450555312, + 6450556880, 6444156064, 6444218976, 6443837296, @@ -493777,34 +493783,34 @@ 6444231856, 6443816976, 6443821024, - 6450412176, + 6450413744, 6444164096, 6443818928, - 6451198880, + 6451200448, 6443847552, 6443818944, 6443869104, 6443848576, 6443836208, 6444252352, - 6450683216, + 6450684784, 6443824256, - 6450576576, - 6450677280, + 6450578144, + 6450678848, 6443848368, 6443848352, 6443824480, 6443824464, 6443848256, 6443798848, - 6451209568, - 6450577264, + 6451211136, + 6450578832, 6443824224, 6443824208, 6443823632, - 6450652240, - 6450500000, - 6450500240, + 6450653808, + 6450501568, + 6450501808, 6444219248, 6444185328, 6444185280, @@ -493814,8 +493820,8 @@ 6444207072, 6444190512, 6443887696, - 6449323536, - 6449321728 + 6449325088, + 6449323280 ], "bases": [ { @@ -493877,7 +493883,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468510968, + "complete_object_locator": 6468515064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493886,16 +493892,16 @@ }, { "type_name": "GCSDK::CGCClient", - "vtable_address": 6467218648, + "vtable_address": 6467222712, "methods": [ - 6460301216, - 6460329472, - 6460329488 + 6460303408, + 6460331664, + 6460331680 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468948056, + "complete_object_locator": 6468952152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493904,17 +493910,17 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectCache", - "vtable_address": 6467229264, + "vtable_address": 6467233328, "methods": [ - 6460424064, - 6460429120, - 6460340528, - 6460340928, - 6460342912, - 6460342768, - 6460342752, - 6460341680, - 6460424192 + 6460426256, + 6460431312, + 6460342720, + 6460343120, + 6460345104, + 6460344960, + 6460344944, + 6460343872, + 6460426384 ], "bases": [ { @@ -493934,7 +493940,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468952640, + "complete_object_locator": 6468956736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493943,15 +493949,15 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectTypeCache", - "vtable_address": 6467229200, + "vtable_address": 6467233264, "methods": [ - 6460424128, - 6460340624, - 6460340992, - 6460343104, - 6460342896, - 6460341984, - 6460341856 + 6460426320, + 6460342816, + 6460343184, + 6460345296, + 6460345088, + 6460344176, + 6460344048 ], "bases": [ { @@ -493971,7 +493977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468952768, + "complete_object_locator": 6468956864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -493980,9 +493986,9 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 6466775968, + "vtable_address": 6466780064, "methods": [ - 6455868384 + 6455870144 ], "bases": [ { @@ -494002,7 +494008,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468793600, + "complete_object_locator": 6468797696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494011,9 +494017,9 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 6466775528, + "vtable_address": 6466779624, "methods": [ - 6455868480 + 6455870240 ], "bases": [ { @@ -494033,7 +494039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792440, + "complete_object_locator": 6468796536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494042,9 +494048,9 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 6466843976, + "vtable_address": 6466848088, "methods": [ - 6456541648 + 6456543424 ], "bases": [ { @@ -494064,7 +494070,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468801200, + "complete_object_locator": 6468805296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494073,9 +494079,9 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 6466843960, + "vtable_address": 6466848072, "methods": [ - 6456541744 + 6456543520 ], "bases": [ { @@ -494095,7 +494101,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468801072, + "complete_object_locator": 6468805168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494104,9 +494110,9 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 6466775984, + "vtable_address": 6466780080, "methods": [ - 6455868576 + 6455870336 ], "bases": [ { @@ -494126,7 +494132,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468793728, + "complete_object_locator": 6468797824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494135,9 +494141,9 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 6466775648, + "vtable_address": 6466779744, "methods": [ - 6455868672 + 6455870432 ], "bases": [ { @@ -494157,7 +494163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468793216, + "complete_object_locator": 6468797312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494166,9 +494172,9 @@ }, { "type_name": "GCSDK::CGCMsg", - "vtable_address": 6466775416, + "vtable_address": 6466779512, "methods": [ - 6455868768 + 6455870528 ], "bases": [ { @@ -494188,7 +494194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792312, + "complete_object_locator": 6468796408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494197,14 +494203,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscribedJob", - "vtable_address": 6467220216, + "vtable_address": 6467224280, "methods": [ - 6460301280, + 6460303472, 6443903536, 6443903584, 6443903632, 6443903520, - 6460303456 + 6460305648 ], "bases": [ { @@ -494238,7 +494244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950672, + "complete_object_locator": 6468954768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494247,14 +494253,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscriptionCheck", - "vtable_address": 6467220376, + "vtable_address": 6467224440, "methods": [ - 6460301344, + 6460303536, 6443903536, 6443903584, 6443903632, 6443903520, - 6460303936 + 6460306128 ], "bases": [ { @@ -494288,7 +494294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468951456, + "complete_object_locator": 6468955552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494297,14 +494303,14 @@ }, { "type_name": "GCSDK::CGCSOCacheUnsubscribedJob", - "vtable_address": 6467220296, + "vtable_address": 6467224360, "methods": [ - 6460301408, + 6460303600, 6443903536, 6443903584, 6443903632, 6443903520, - 6460304416 + 6460306608 ], "bases": [ { @@ -494338,7 +494344,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468951064, + "complete_object_locator": 6468955160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494347,14 +494353,14 @@ }, { "type_name": "GCSDK::CGCSOCreateJob", - "vtable_address": 6467219944, + "vtable_address": 6467224008, "methods": [ - 6460301472, + 6460303664, 6443903536, 6443903584, 6443903632, 6443903520, - 6460304944 + 6460307136 ], "bases": [ { @@ -494388,7 +494394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468949616, + "complete_object_locator": 6468953712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494397,14 +494403,14 @@ }, { "type_name": "GCSDK::CGCSODestroyJob", - "vtable_address": 6467220024, + "vtable_address": 6467224088, "methods": [ - 6460301536, + 6460303728, 6443903536, 6443903584, 6443903632, 6443903520, - 6460305440 + 6460307632 ], "bases": [ { @@ -494438,7 +494444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950008, + "complete_object_locator": 6468954104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494447,14 +494453,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateJob", - "vtable_address": 6467220080, + "vtable_address": 6467224144, "methods": [ - 6460301600, + 6460303792, 6443903536, 6443903584, 6443903632, 6443903520, - 6460305840 + 6460308032 ], "bases": [ { @@ -494488,7 +494494,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950144, + "complete_object_locator": 6468954240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494497,14 +494503,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateMultipleJob", - "vtable_address": 6467220136, + "vtable_address": 6467224200, "methods": [ - 6460301664, + 6460303856, 6443903536, 6443903584, 6443903632, 6443903520, - 6460306336 + 6460308528 ], "bases": [ { @@ -494538,7 +494544,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950280, + "complete_object_locator": 6468954376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494547,17 +494553,17 @@ }, { "type_name": "GCSDK::CJob", - "vtable_address": 6467217344, + "vtable_address": 6467221408, "methods": [ - 6460289648, - 6460290224, - 6460290240, - 6460290416 + 6460291840, + 6460292416, + 6460292432, + 6460292608 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468947936, + "complete_object_locator": 6468952032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494566,14 +494572,14 @@ }, { "type_name": "GCSDK::CMsgBase_t", - "vtable_address": 6466603320, + "vtable_address": 6466607416, "methods": [ - 6454469040 + 6454470800 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468732688, + "complete_object_locator": 6468736784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494582,9 +494588,9 @@ }, { "type_name": "GCSDK::CProtoBufGCClientSendHandler", - "vtable_address": 6467218808, + "vtable_address": 6467222872, "methods": [ - 6460302256 + 6460304448 ], "bases": [ { @@ -494604,7 +494610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468948720, + "complete_object_locator": 6468952816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494613,10 +494619,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466674208, + "vtable_address": 6466678304, "methods": [ - 6455302480, - 6455388608 + 6455304240, + 6455390368 ], "bases": [ { @@ -494636,7 +494642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760824, + "complete_object_locator": 6468764920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494645,10 +494651,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466672464, + "vtable_address": 6466676560, "methods": [ - 6455302576, - 6455388624 + 6455304336, + 6455390384 ], "bases": [ { @@ -494668,7 +494674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758472, + "complete_object_locator": 6468762568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494677,10 +494683,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466672544, + "vtable_address": 6466676640, "methods": [ - 6455302672, - 6455388640 + 6455304432, + 6455390400 ], "bases": [ { @@ -494700,7 +494706,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758864, + "complete_object_locator": 6468762960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494709,10 +494715,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466642208, + "vtable_address": 6466646304, "methods": [ - 6454469136, - 6454595856 + 6454470896, + 6454597616 ], "bases": [ { @@ -494732,7 +494738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747136, + "complete_object_locator": 6468751232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494741,10 +494747,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466633520, + "vtable_address": 6466637616, "methods": [ - 6454469232, - 6454595872 + 6454470992, + 6454597632 ], "bases": [ { @@ -494764,7 +494770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468743112, + "complete_object_locator": 6468747208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494773,10 +494779,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466775848, + "vtable_address": 6466779944, "methods": [ - 6455868864, - 6456139552 + 6455870624, + 6456141328 ], "bases": [ { @@ -494796,7 +494802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468793344, + "complete_object_locator": 6468797440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494805,10 +494811,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466834480, + "vtable_address": 6466838592, "methods": [ - 6456440256, - 6456468144 + 6456442032, + 6456469920 ], "bases": [ { @@ -494828,7 +494834,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468799376, + "complete_object_locator": 6468803472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494837,10 +494843,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466630872, + "vtable_address": 6466634968, "methods": [ - 6454469328, - 6454595888 + 6454471088, + 6454597648 ], "bases": [ { @@ -494860,7 +494866,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468740912, + "complete_object_locator": 6468745008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494869,10 +494875,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466631048, + "vtable_address": 6466635144, "methods": [ - 6454469424, - 6454595904 + 6454471184, + 6454597664 ], "bases": [ { @@ -494892,7 +494898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741168, + "complete_object_locator": 6468745264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494901,10 +494907,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466830224, + "vtable_address": 6466834336, "methods": [ - 6456422032, - 6456422016 + 6456423808, + 6456423792 ], "bases": [ { @@ -494924,7 +494930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468796224, + "complete_object_locator": 6468800320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494933,10 +494939,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466760808, + "vtable_address": 6466764904, "methods": [ - 6455868960, - 6456139568 + 6455870720, + 6456141344 ], "bases": [ { @@ -494956,7 +494962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781976, + "complete_object_locator": 6468786072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494965,10 +494971,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467219080, + "vtable_address": 6467223144, "methods": [ - 6460299168, - 6460309840 + 6460301360, + 6460312032 ], "bases": [ { @@ -494988,7 +494994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468948848, + "complete_object_locator": 6468952944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -494997,10 +495003,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466202864, + "vtable_address": 6466207024, "methods": [ - 6451773424, - 6451874480 + 6451775008, + 6451876064 ], "bases": [ { @@ -495020,7 +495026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468637824, + "complete_object_locator": 6468641920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495029,10 +495035,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466027304, + "vtable_address": 6466031512, "methods": [ - 6450921104, - 6450983952 + 6450922672, + 6450985520 ], "bases": [ { @@ -495052,7 +495058,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583056, + "complete_object_locator": 6468587152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495061,10 +495067,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466674408, + "vtable_address": 6466678504, "methods": [ - 6455302768, - 6455388656 + 6455304528, + 6455390416 ], "bases": [ { @@ -495084,7 +495090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468761216, + "complete_object_locator": 6468765312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495093,10 +495099,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466689568, + "vtable_address": 6466693664, "methods": [ - 6455302864, - 6455388672 + 6455304624, + 6455390432 ], "bases": [ { @@ -495116,7 +495122,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768720, + "complete_object_locator": 6468772816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495125,10 +495131,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466299496, + "vtable_address": 6466303656, "methods": [ - 6452105424, - 6452186320 + 6452107008, + 6452187904 ], "bases": [ { @@ -495148,7 +495154,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468663248, + "complete_object_locator": 6468667344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495157,10 +495163,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466633608, + "vtable_address": 6466637704, "methods": [ - 6454469520, - 6454595920 + 6454471280, + 6454597680 ], "bases": [ { @@ -495180,7 +495186,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468743368, + "complete_object_locator": 6468747464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495189,10 +495195,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466633688, + "vtable_address": 6466637784, "methods": [ - 6454469616, - 6454595936 + 6454471376, + 6454597696 ], "bases": [ { @@ -495212,7 +495218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468743760, + "complete_object_locator": 6468747856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495221,10 +495227,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466633152, + "vtable_address": 6466637248, "methods": [ - 6454469712, - 6454595952 + 6454471472, + 6454597712 ], "bases": [ { @@ -495244,7 +495250,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742720, + "complete_object_locator": 6468746816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495253,10 +495259,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466657176, + "vtable_address": 6466661168, "methods": [ - 6454958880, - 6454958864 + 6454960640, + 6454960624 ], "bases": [ { @@ -495276,7 +495282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752824, + "complete_object_locator": 6468756920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495285,10 +495291,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466687656, + "vtable_address": 6466691752, "methods": [ - 6455302960, - 6455388688 + 6455304720, + 6455390448 ], "bases": [ { @@ -495308,7 +495314,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468767368, + "complete_object_locator": 6468771464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495317,10 +495323,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466687576, + "vtable_address": 6466691672, "methods": [ - 6455303056, - 6455388704 + 6455304816, + 6455390464 ], "bases": [ { @@ -495340,7 +495346,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468767112, + "complete_object_locator": 6468771208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495349,10 +495355,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466673616, + "vtable_address": 6466677712, "methods": [ - 6455303152, - 6455388720 + 6455304912, + 6455390480 ], "bases": [ { @@ -495372,7 +495378,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760040, + "complete_object_locator": 6468764136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495381,10 +495387,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466622056, + "vtable_address": 6466626152, "methods": [ - 6454469808, - 6454595968 + 6454471568, + 6454597728 ], "bases": [ { @@ -495404,7 +495410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468739328, + "complete_object_locator": 6468743424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495413,10 +495419,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466672792, + "vtable_address": 6466676888, "methods": [ - 6455303248, - 6455388736 + 6455305008, + 6455390496 ], "bases": [ { @@ -495436,7 +495442,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468759120, + "complete_object_locator": 6468763216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495445,10 +495451,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466671960, + "vtable_address": 6466676056, "methods": [ - 6455303344, - 6455388752 + 6455305104, + 6455390512 ], "bases": [ { @@ -495468,7 +495474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758216, + "complete_object_locator": 6468762312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495477,10 +495483,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466640128, + "vtable_address": 6466644224, "methods": [ - 6454469904, - 6454595984 + 6454471664, + 6454597744 ], "bases": [ { @@ -495500,7 +495506,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468745000, + "complete_object_locator": 6468749096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495509,10 +495515,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466615072, + "vtable_address": 6466619168, "methods": [ - 6454470000, - 6454596000 + 6454471760, + 6454597760 ], "bases": [ { @@ -495532,7 +495538,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736680, + "complete_object_locator": 6468740776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495541,10 +495547,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466306856, + "vtable_address": 6466311016, "methods": [ - 6452105520, - 6452186336 + 6452107104, + 6452187920 ], "bases": [ { @@ -495564,7 +495570,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665072, + "complete_object_locator": 6468669168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495573,10 +495579,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466293192, + "vtable_address": 6466297344, "methods": [ - 6452105616, - 6452186352 + 6452107200, + 6452187936 ], "bases": [ { @@ -495596,7 +495602,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660936, + "complete_object_locator": 6468665032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495605,10 +495611,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466673792, + "vtable_address": 6466677888, "methods": [ - 6455303440, - 6455388768 + 6455305200, + 6455390528 ], "bases": [ { @@ -495628,7 +495634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760568, + "complete_object_locator": 6468764664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495637,10 +495643,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466621880, + "vtable_address": 6466625976, "methods": [ - 6454470096, - 6454596016 + 6454471856, + 6454597776 ], "bases": [ { @@ -495660,7 +495666,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468738680, + "complete_object_locator": 6468742776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495669,10 +495675,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466622192, + "vtable_address": 6466626288, "methods": [ - 6454470192, - 6454596032 + 6454471952, + 6454597792 ], "bases": [ { @@ -495692,7 +495698,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468739720, + "complete_object_locator": 6468743816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495701,10 +495707,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466621936, + "vtable_address": 6466626032, "methods": [ - 6454470288, - 6454596048 + 6454472048, + 6454597808 ], "bases": [ { @@ -495724,7 +495730,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468738936, + "complete_object_locator": 6468743032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495733,10 +495739,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466345552, + "vtable_address": 6466349712, "methods": [ - 6452476160, - 6452485440 + 6452477776, + 6452487056 ], "bases": [ { @@ -495756,7 +495762,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468679760, + "complete_object_locator": 6468683856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495765,10 +495771,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466346032, + "vtable_address": 6466350192, "methods": [ - 6452476256, - 6452485456 + 6452477872, + 6452487072 ], "bases": [ { @@ -495788,7 +495794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468680152, + "complete_object_locator": 6468684248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495797,10 +495803,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466614848, + "vtable_address": 6466618944, "methods": [ - 6454470384, - 6454596064 + 6454472144, + 6454597824 ], "bases": [ { @@ -495820,7 +495826,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736032, + "complete_object_locator": 6468740128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495829,10 +495835,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466643936, + "vtable_address": 6466648032, "methods": [ - 6454470480, - 6454596080 + 6454472240, + 6454597840 ], "bases": [ { @@ -495852,7 +495858,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747648, + "complete_object_locator": 6468751744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495861,10 +495867,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466591504, + "vtable_address": 6466595632, "methods": [ - 6454070384, - 6454070368 + 6454072144, + 6454072128 ], "bases": [ { @@ -495884,7 +495890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468731664, + "complete_object_locator": 6468735760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495893,10 +495899,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466676336, + "vtable_address": 6466680432, "methods": [ - 6455303536, - 6455388784 + 6455305296, + 6455390544 ], "bases": [ { @@ -495916,7 +495922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468762480, + "complete_object_locator": 6468766576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495925,10 +495931,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466640712, + "vtable_address": 6466644808, "methods": [ - 6454470576, - 6454596096 + 6454472336, + 6454597856 ], "bases": [ { @@ -495948,7 +495954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468746136, + "complete_object_locator": 6468750232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495957,10 +495963,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466293168, + "vtable_address": 6466297320, "methods": [ - 6452105712, - 6452186368 + 6452107296, + 6452187952 ], "bases": [ { @@ -495980,7 +495986,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660680, + "complete_object_locator": 6468664776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -495989,10 +495995,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466675840, + "vtable_address": 6466679936, "methods": [ - 6455303632, - 6455388800 + 6455305392, + 6455390560 ], "bases": [ { @@ -496012,7 +496018,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468762224, + "complete_object_locator": 6468766320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496021,10 +496027,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466299632, + "vtable_address": 6466303792, "methods": [ - 6452105808, - 6452186384 + 6452107392, + 6452187968 ], "bases": [ { @@ -496044,7 +496050,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468663760, + "complete_object_locator": 6468667856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496053,10 +496059,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466691056, + "vtable_address": 6466695152, "methods": [ - 6455303728, - 6455388816 + 6455305488, + 6455390576 ], "bases": [ { @@ -496076,7 +496082,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468769112, + "complete_object_locator": 6468773208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496085,10 +496091,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466691304, + "vtable_address": 6466695400, "methods": [ - 6455303824, - 6455388832 + 6455305584, + 6455390592 ], "bases": [ { @@ -496108,7 +496114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468769504, + "complete_object_locator": 6468773600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496117,10 +496123,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466640640, + "vtable_address": 6466644736, "methods": [ - 6454470672, - 6454596112 + 6454472432, + 6454597872 ], "bases": [ { @@ -496140,7 +496146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468745752, + "complete_object_locator": 6468749848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496149,10 +496155,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466644560, + "vtable_address": 6466648656, "methods": [ - 6454470768, - 6454596128 + 6454472528, + 6454597888 ], "bases": [ { @@ -496172,7 +496178,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748552, + "complete_object_locator": 6468752648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496181,10 +496187,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466643832, + "vtable_address": 6466647928, "methods": [ - 6454470864, - 6454596144 + 6454472624, + 6454597904 ], "bases": [ { @@ -496204,7 +496210,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747392, + "complete_object_locator": 6468751488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496213,10 +496219,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466644584, + "vtable_address": 6466648680, "methods": [ - 6454470960, - 6454596160 + 6454472720, + 6454597920 ], "bases": [ { @@ -496236,7 +496242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748808, + "complete_object_locator": 6468752904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496245,10 +496251,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466644608, + "vtable_address": 6466648704, "methods": [ - 6454471056, - 6454596176 + 6454472816, + 6454597936 ], "bases": [ { @@ -496268,7 +496274,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468749064, + "complete_object_locator": 6468753160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496277,10 +496283,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466640664, + "vtable_address": 6466644760, "methods": [ - 6454471152, - 6454596192 + 6454472912, + 6454597952 ], "bases": [ { @@ -496300,7 +496306,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468745880, + "complete_object_locator": 6468749976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496309,10 +496315,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466287392, + "vtable_address": 6466291504, "methods": [ - 6452105904, - 6452186400 + 6452107488, + 6452187984 ], "bases": [ { @@ -496332,7 +496338,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468658112, + "complete_object_locator": 6468662208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496341,10 +496347,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466307560, + "vtable_address": 6466311720, "methods": [ - 6452106000, - 6452186416 + 6452107584, + 6452188000 ], "bases": [ { @@ -496364,7 +496370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468666640, + "complete_object_locator": 6468670736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496373,10 +496379,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466301408, + "vtable_address": 6466305568, "methods": [ - 6452106096, - 6452186432 + 6452107680, + 6452188016 ], "bases": [ { @@ -496396,7 +496402,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664152, + "complete_object_locator": 6468668248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496405,10 +496411,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466307352, + "vtable_address": 6466311512, "methods": [ - 6452106192, - 6452186448 + 6452107776, + 6452188032 ], "bases": [ { @@ -496428,7 +496434,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468666248, + "complete_object_locator": 6468670344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496437,10 +496443,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466307272, + "vtable_address": 6466311432, "methods": [ - 6452106288, - 6452186464 + 6452107872, + 6452188048 ], "bases": [ { @@ -496460,7 +496466,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665856, + "complete_object_locator": 6468669952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496469,10 +496475,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466301488, + "vtable_address": 6466305648, "methods": [ - 6452106384, - 6452186480 + 6452107968, + 6452188064 ], "bases": [ { @@ -496492,7 +496498,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664544, + "complete_object_locator": 6468668640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496501,10 +496507,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466308936, + "vtable_address": 6466313096, "methods": [ - 6452106480, - 6452186496 + 6452108064, + 6452188080 ], "bases": [ { @@ -496524,7 +496530,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667032, + "complete_object_locator": 6468671128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496533,10 +496539,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466299520, + "vtable_address": 6466303680, "methods": [ - 6452106576, - 6452186512 + 6452108160, + 6452188096 ], "bases": [ { @@ -496556,7 +496562,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468663504, + "complete_object_locator": 6468667600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496565,10 +496571,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466679424, + "vtable_address": 6466683520, "methods": [ - 6455303920, - 6455388848 + 6455305680, + 6455390608 ], "bases": [ { @@ -496588,7 +496594,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468765544, + "complete_object_locator": 6468769640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496597,10 +496603,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466668832, + "vtable_address": 6466672928, "methods": [ - 6455304016, - 6455388864 + 6455305776, + 6455390624 ], "bases": [ { @@ -496620,7 +496626,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757432, + "complete_object_locator": 6468761528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496629,10 +496635,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466679136, + "vtable_address": 6466683232, "methods": [ - 6455304112, - 6455388880 + 6455305872, + 6455390640 ], "bases": [ { @@ -496652,7 +496658,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468764760, + "complete_object_locator": 6468768856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496661,10 +496667,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466679320, + "vtable_address": 6466683416, "methods": [ - 6455304208, - 6455388896 + 6455305968, + 6455390656 ], "bases": [ { @@ -496684,7 +496690,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468765152, + "complete_object_locator": 6468769248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496693,10 +496699,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466678192, + "vtable_address": 6466682288, "methods": [ - 6455304304, - 6455388912 + 6455306064, + 6455390672 ], "bases": [ { @@ -496716,7 +496722,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468763960, + "complete_object_locator": 6468768056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496725,10 +496731,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466678072, + "vtable_address": 6466682168, "methods": [ - 6455304400, - 6455388928 + 6455306160, + 6455390688 ], "bases": [ { @@ -496748,7 +496754,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468763568, + "complete_object_locator": 6468767664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496757,10 +496763,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466677408, + "vtable_address": 6466681504, "methods": [ - 6455304496, - 6455388944 + 6455306256, + 6455390704 ], "bases": [ { @@ -496780,7 +496786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468763312, + "complete_object_locator": 6468767408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496789,10 +496795,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466614992, + "vtable_address": 6466619088, "methods": [ - 6454471248, - 6454596208 + 6454473008, + 6454597968 ], "bases": [ { @@ -496812,7 +496818,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736424, + "complete_object_locator": 6468740520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496821,10 +496827,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466640688, + "vtable_address": 6466644784, "methods": [ - 6454471344, - 6454596224 + 6454473104, + 6454597984 ], "bases": [ { @@ -496844,7 +496850,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468746008, + "complete_object_locator": 6468750104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496853,10 +496859,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466691352, + "vtable_address": 6466695448, "methods": [ - 6455304592, - 6455388960 + 6455306352, + 6455390720 ], "bases": [ { @@ -496876,7 +496882,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468766464, + "complete_object_locator": 6468770560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496885,10 +496891,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466691328, + "vtable_address": 6466695424, "methods": [ - 6455304688, - 6455388976 + 6455306448, + 6455390736 ], "bases": [ { @@ -496908,7 +496914,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468769760, + "complete_object_locator": 6468773856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496917,10 +496923,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466635600, + "vtable_address": 6466639696, "methods": [ - 6454471440, - 6454596240 + 6454473200, + 6454598000 ], "bases": [ { @@ -496940,7 +496946,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468744744, + "complete_object_locator": 6468748840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496949,10 +496955,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466612440, + "vtable_address": 6466616536, "methods": [ - 6454471536, - 6454596256 + 6454473296, + 6454598016 ], "bases": [ { @@ -496972,7 +496978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468735776, + "complete_object_locator": 6468739872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -496981,10 +496987,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466687488, + "vtable_address": 6466691584, "methods": [ - 6455304784, - 6455388992 + 6455306544, + 6455390752 ], "bases": [ { @@ -497004,7 +497010,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468766720, + "complete_object_locator": 6468770816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497013,10 +497019,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466667912, + "vtable_address": 6466672008, "methods": [ - 6455304880, - 6455389008 + 6455306640, + 6455390768 ], "bases": [ { @@ -497036,7 +497042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468755640, + "complete_object_locator": 6468759736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497045,10 +497051,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466703728, + "vtable_address": 6466707824, "methods": [ - 6455304976, - 6455389024 + 6455306736, + 6455390784 ], "bases": [ { @@ -497068,7 +497074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468771416, + "complete_object_locator": 6468775512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497077,10 +497083,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466673592, + "vtable_address": 6466677688, "methods": [ - 6455305072, - 6455389040 + 6455306832, + 6455390800 ], "bases": [ { @@ -497100,7 +497106,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468759784, + "complete_object_locator": 6468763880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497109,10 +497115,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466674608, + "vtable_address": 6466678704, "methods": [ - 6455305168, - 6455389056 + 6455306928, + 6455390816 ], "bases": [ { @@ -497132,7 +497138,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468761472, + "complete_object_locator": 6468765568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497141,10 +497147,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466631872, + "vtable_address": 6466635968, "methods": [ - 6454471632, - 6454596272 + 6454473392, + 6454598032 ], "bases": [ { @@ -497164,7 +497170,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742328, + "complete_object_locator": 6468746424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497173,10 +497179,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466761896, + "vtable_address": 6466765992, "methods": [ - 6455869056, - 6456139584 + 6455870816, + 6456141360 ], "bases": [ { @@ -497196,7 +497202,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783272, + "complete_object_locator": 6468787368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497205,10 +497211,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466761920, + "vtable_address": 6466766016, "methods": [ - 6455869152, - 6456139600 + 6455870912, + 6456141376 ], "bases": [ { @@ -497228,7 +497234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783528, + "complete_object_locator": 6468787624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497237,10 +497243,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466761792, + "vtable_address": 6466765888, "methods": [ - 6455869248, - 6456139616 + 6455871008, + 6456141392 ], "bases": [ { @@ -497260,7 +497266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468782760, + "complete_object_locator": 6468786856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497269,10 +497275,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466761816, + "vtable_address": 6466765912, "methods": [ - 6455869344, - 6456139632 + 6455871104, + 6456141408 ], "bases": [ { @@ -497292,7 +497298,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783016, + "complete_object_locator": 6468787112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497301,10 +497307,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466761000, + "vtable_address": 6466765096, "methods": [ - 6455869440, - 6456139648 + 6455871200, + 6456141424 ], "bases": [ { @@ -497324,7 +497330,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468782368, + "complete_object_locator": 6468786464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497333,10 +497339,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466671800, + "vtable_address": 6466675896, "methods": [ - 6455305264, - 6455389072 + 6455307024, + 6455390832 ], "bases": [ { @@ -497356,7 +497362,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757824, + "complete_object_locator": 6468761920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497365,10 +497371,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466760784, + "vtable_address": 6466764880, "methods": [ - 6455869536, - 6456139664 + 6455871296, + 6456141440 ], "bases": [ { @@ -497388,7 +497394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781720, + "complete_object_locator": 6468785816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497397,10 +497403,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466631136, + "vtable_address": 6466635232, "methods": [ - 6454471728, - 6454596288 + 6454473488, + 6454598048 ], "bases": [ { @@ -497420,7 +497426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741680, + "complete_object_locator": 6468745776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497429,10 +497435,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466631072, + "vtable_address": 6466635168, "methods": [ - 6454471824, - 6454596304 + 6454473584, + 6454598064 ], "bases": [ { @@ -497452,7 +497458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741424, + "complete_object_locator": 6468745520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497461,10 +497467,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466836672, + "vtable_address": 6466840784, "methods": [ - 6456440352, - 6456468160 + 6456442128, + 6456469936 ], "bases": [ { @@ -497484,7 +497490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800016, + "complete_object_locator": 6468804112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497493,10 +497499,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466667840, + "vtable_address": 6466671936, "methods": [ - 6455305360, - 6455389088 + 6455307120, + 6455390848 ], "bases": [ { @@ -497516,7 +497522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468755384, + "complete_object_locator": 6468759480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497525,10 +497531,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467220272, + "vtable_address": 6467224336, "methods": [ - 6460299264, - 6460309856 + 6460301456, + 6460312048 ], "bases": [ { @@ -497548,7 +497554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950808, + "complete_object_locator": 6468954904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497557,10 +497563,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467220432, + "vtable_address": 6467224496, "methods": [ - 6460299360, - 6460309872 + 6460301552, + 6460312064 ], "bases": [ { @@ -497580,7 +497586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468951592, + "complete_object_locator": 6468955688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497589,10 +497595,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467219896, + "vtable_address": 6467223960, "methods": [ - 6460299456, - 6460309888 + 6460301648, + 6460312080 ], "bases": [ { @@ -497612,7 +497618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468949360, + "complete_object_locator": 6468953456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497621,10 +497627,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467220352, + "vtable_address": 6467224416, "methods": [ - 6460299552, - 6460309904 + 6460301744, + 6460312096 ], "bases": [ { @@ -497644,7 +497650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468951200, + "complete_object_locator": 6468955296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497653,10 +497659,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467220192, + "vtable_address": 6467224256, "methods": [ - 6460299648, - 6460309920 + 6460301840, + 6460312112 ], "bases": [ { @@ -497676,7 +497682,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950416, + "complete_object_locator": 6468954512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497685,10 +497691,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467220000, + "vtable_address": 6467224064, "methods": [ - 6460299744, - 6460309936 + 6460301936, + 6460312128 ], "bases": [ { @@ -497708,7 +497714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468949752, + "complete_object_locator": 6468953848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497717,10 +497723,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6467219552, + "vtable_address": 6467223616, "methods": [ - 6460299840, - 6460309952 + 6460302032, + 6460312144 ], "bases": [ { @@ -497740,7 +497746,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468949104, + "complete_object_locator": 6468953200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497749,10 +497755,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466775624, + "vtable_address": 6466779720, "methods": [ - 6455869632, - 6456139680 + 6455871392, + 6456141456 ], "bases": [ { @@ -497772,7 +497778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792960, + "complete_object_locator": 6468797056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497781,10 +497787,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466775544, + "vtable_address": 6466779640, "methods": [ - 6455869728, - 6456139696 + 6455871488, + 6456141472 ], "bases": [ { @@ -497804,7 +497810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792568, + "complete_object_locator": 6468796664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497813,10 +497819,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466687720, + "vtable_address": 6466691816, "methods": [ - 6455305456, - 6455389104 + 6455307216, + 6455390864 ], "bases": [ { @@ -497836,7 +497842,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468767624, + "complete_object_locator": 6468771720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497845,10 +497851,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466762072, + "vtable_address": 6466766168, "methods": [ - 6455869824, - 6456139712 + 6455871584, + 6456141488 ], "bases": [ { @@ -497868,7 +497874,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783784, + "complete_object_locator": 6468787880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497877,10 +497883,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466765048, + "vtable_address": 6466769144, "methods": [ - 6455869920, - 6456139728 + 6455871680, + 6456141504 ], "bases": [ { @@ -497900,7 +497906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468787504, + "complete_object_locator": 6468791600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497909,10 +497915,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466631792, + "vtable_address": 6466635888, "methods": [ - 6454471920, - 6454596320 + 6454473680, + 6454598080 ], "bases": [ { @@ -497932,7 +497938,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741936, + "complete_object_locator": 6468746032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497941,10 +497947,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6466307192, + "vtable_address": 6466311352, "methods": [ - 6452106672, - 6452186528 + 6452108256, + 6452188112 ], "bases": [ { @@ -497964,7 +497970,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665464, + "complete_object_locator": 6468669560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497973,15 +497979,15 @@ }, { "type_name": "GCSDK::CProtoBufMsgBase", - "vtable_address": 6467223856, + "vtable_address": 6467227920, "methods": [ - 6460345248, - 6463705588 + 6460347440, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468952560, + "complete_object_locator": 6468956656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -497990,12 +497996,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705168, + "vtable_address": 6466709264, "methods": [ - 6455305552, - 6455410704, - 6455487696, - 6455489744 + 6455307312, + 6455412464, + 6455489456, + 6455491504 ], "bases": [ { @@ -498015,7 +498021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760952, + "complete_object_locator": 6468765048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498024,12 +498030,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705408, + "vtable_address": 6466709504, "methods": [ - 6455305712, - 6455410848, - 6455487760, - 6455489792 + 6455307472, + 6455412608, + 6455489520, + 6455491552 ], "bases": [ { @@ -498049,7 +498055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758600, + "complete_object_locator": 6468762696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498058,12 +498064,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705368, + "vtable_address": 6466709464, "methods": [ - 6455305872, - 6455410992, - 6455487824, - 6455489840 + 6455307632, + 6455412752, + 6455489584, + 6455491600 ], "bases": [ { @@ -498083,7 +498089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758992, + "complete_object_locator": 6468763088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498092,12 +498098,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646856, + "vtable_address": 6466650952, "methods": [ - 6454472016, - 6454651088, - 6454764944, - 6454766864 + 6454473776, + 6454652848, + 6454766704, + 6454768624 ], "bases": [ { @@ -498117,7 +498123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747264, + "complete_object_locator": 6468751360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498126,12 +498132,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647216, + "vtable_address": 6466651312, "methods": [ - 6454472176, - 6454651232, - 6454765008, - 6454766912 + 6454473936, + 6454652992, + 6454766768, + 6454768672 ], "bases": [ { @@ -498151,7 +498157,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468743240, + "complete_object_locator": 6468747336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498160,12 +498166,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466808800, + "vtable_address": 6466812912, "methods": [ - 6455870016, - 6456148544, - 6456245568, - 6456248880 + 6455871776, + 6456150320, + 6456247344, + 6456250656 ], "bases": [ { @@ -498185,7 +498191,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468793472, + "complete_object_locator": 6468797568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498194,12 +498200,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466840544, + "vtable_address": 6466844656, "methods": [ - 6456440448, - 6456473984, - 6456508384, - 6456508512 + 6456442224, + 6456475760, + 6456510160, + 6456510288 ], "bases": [ { @@ -498219,7 +498225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468799504, + "complete_object_locator": 6468803600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498228,12 +498234,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647496, + "vtable_address": 6466651592, "methods": [ - 6454472336, - 6454651376, - 6454765072, - 6454766960 + 6454474096, + 6454653136, + 6454766832, + 6454768720 ], "bases": [ { @@ -498253,7 +498259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741040, + "complete_object_locator": 6468745136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498262,12 +498268,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647456, + "vtable_address": 6466651552, "methods": [ - 6454472496, - 6454651520, - 6454765136, - 6454767008 + 6454474256, + 6454653280, + 6454766896, + 6454768768 ], "bases": [ { @@ -498287,7 +498293,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741296, + "complete_object_locator": 6468745392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498296,12 +498302,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466830376, + "vtable_address": 6466834488, "methods": [ - 6456422384, - 6456422128, - 6456422272, - 6456422336 + 6456424160, + 6456423904, + 6456424048, + 6456424112 ], "bases": [ { @@ -498321,7 +498327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468796352, + "complete_object_locator": 6468800448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498330,12 +498336,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466809200, + "vtable_address": 6466813312, "methods": [ - 6455870176, - 6456148688, - 6456245632, - 6456248928 + 6455871936, + 6456150464, + 6456247408, + 6456250704 ], "bases": [ { @@ -498355,7 +498361,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468782104, + "complete_object_locator": 6468786200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498364,12 +498370,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220736, + "vtable_address": 6467224800, "methods": [ - 6460299936, - 6460309984, - 6460313472, - 6460313984 + 6460302128, + 6460312176, + 6460315664, + 6460316176 ], "bases": [ { @@ -498389,7 +498395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468948976, + "complete_object_locator": 6468953072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498398,12 +498404,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466211344, + "vtable_address": 6466215456, "methods": [ - 6451773520, - 6451877040, - 6451896800, - 6451896864 + 6451775104, + 6451878624, + 6451898384, + 6451898448 ], "bases": [ { @@ -498423,7 +498429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468637952, + "complete_object_locator": 6468642048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498432,12 +498438,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466031840, + "vtable_address": 6466036048, "methods": [ - 6450921200, - 6450985424, - 6451003536, - 6451003600 + 6450922768, + 6450986992, + 6451005104, + 6451005168 ], "bases": [ { @@ -498457,7 +498463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583184, + "complete_object_locator": 6468587280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498466,12 +498472,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705128, + "vtable_address": 6466709224, "methods": [ - 6455306032, - 6455411136, - 6455487888, - 6455489888 + 6455307792, + 6455412896, + 6455489648, + 6455491648 ], "bases": [ { @@ -498491,7 +498497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468761344, + "complete_object_locator": 6468765440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498500,12 +498506,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704568, + "vtable_address": 6466708664, "methods": [ - 6455306192, - 6455411280, - 6455487952, - 6455489936 + 6455307952, + 6455413040, + 6455489712, + 6455491696 ], "bases": [ { @@ -498525,7 +498531,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468768848, + "complete_object_locator": 6468772944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498534,12 +498540,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466311104, + "vtable_address": 6466315264, "methods": [ - 6452106768, - 6452190832, - 6452215824, - 6452216720 + 6452108352, + 6452192416, + 6452217408, + 6452218304 ], "bases": [ { @@ -498559,7 +498565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468663376, + "complete_object_locator": 6468667472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498568,12 +498574,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647176, + "vtable_address": 6466651272, "methods": [ - 6454472656, - 6454651664, - 6454765200, - 6454767056 + 6454474416, + 6454653424, + 6454766960, + 6454768816 ], "bases": [ { @@ -498593,7 +498599,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468743496, + "complete_object_locator": 6468747592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498602,12 +498608,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647136, + "vtable_address": 6466651232, "methods": [ - 6454472816, - 6454651808, - 6454765264, - 6454767104 + 6454474576, + 6454653568, + 6454767024, + 6454768864 ], "bases": [ { @@ -498627,7 +498633,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468743888, + "complete_object_locator": 6468747984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498636,12 +498642,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647256, + "vtable_address": 6466651352, "methods": [ - 6454472976, - 6454651952, - 6454765328, - 6454767152 + 6454474736, + 6454653712, + 6454767088, + 6454768912 ], "bases": [ { @@ -498661,7 +498667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742848, + "complete_object_locator": 6468746944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498670,12 +498676,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466658440, + "vtable_address": 6466662544, "methods": [ - 6454960432, - 6454960176, - 6454960320, - 6454960384 + 6454962192, + 6454961936, + 6454962080, + 6454962144 ], "bases": [ { @@ -498695,7 +498701,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752952, + "complete_object_locator": 6468757048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498704,12 +498710,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704648, + "vtable_address": 6466708744, "methods": [ - 6455306352, - 6455411424, - 6455488016, - 6455489984 + 6455308112, + 6455413184, + 6455489776, + 6455491744 ], "bases": [ { @@ -498729,7 +498735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468767496, + "complete_object_locator": 6468771592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498738,12 +498744,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704688, + "vtable_address": 6466708784, "methods": [ - 6455306512, - 6455411568, - 6455488080, - 6455490032 + 6455308272, + 6455413328, + 6455489840, + 6455491792 ], "bases": [ { @@ -498763,7 +498769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468767240, + "complete_object_locator": 6468771336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498772,12 +498778,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705248, + "vtable_address": 6466709344, "methods": [ - 6455306672, - 6455411712, - 6455488144, - 6455490080 + 6455308432, + 6455413472, + 6455489904, + 6455491840 ], "bases": [ { @@ -498797,7 +498803,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760168, + "complete_object_locator": 6468764264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498806,12 +498812,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647576, + "vtable_address": 6466651672, "methods": [ - 6454473136, - 6454652096, - 6454765392, - 6454767200 + 6454474896, + 6454653856, + 6454767152, + 6454768960 ], "bases": [ { @@ -498831,7 +498837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468739456, + "complete_object_locator": 6468743552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498840,12 +498846,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705328, + "vtable_address": 6466709424, "methods": [ - 6455306832, - 6455411856, - 6455488208, - 6455490128 + 6455308592, + 6455413616, + 6455489968, + 6455491888 ], "bases": [ { @@ -498865,7 +498871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468759248, + "complete_object_locator": 6468763344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498874,12 +498880,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705448, + "vtable_address": 6466709544, "methods": [ - 6455306992, - 6455412000, - 6455488272, - 6455490176 + 6455308752, + 6455413760, + 6455490032, + 6455491936 ], "bases": [ { @@ -498899,7 +498905,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468758344, + "complete_object_locator": 6468762440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498908,12 +498914,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647056, + "vtable_address": 6466651152, "methods": [ - 6454473296, - 6454652240, - 6454765456, - 6454767248 + 6454475056, + 6454654000, + 6454767216, + 6454769008 ], "bases": [ { @@ -498933,7 +498939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468745128, + "complete_object_locator": 6468749224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498942,12 +498948,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647696, + "vtable_address": 6466651792, "methods": [ - 6454473456, - 6454652384, - 6454765520, - 6454767296 + 6454475216, + 6454654144, + 6454767280, + 6454769056 ], "bases": [ { @@ -498967,7 +498973,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736808, + "complete_object_locator": 6468740904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -498976,12 +498982,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310904, + "vtable_address": 6466315064, "methods": [ - 6452106928, - 6452190976, - 6452215888, - 6452216768 + 6452108512, + 6452192560, + 6452217472, + 6452218352 ], "bases": [ { @@ -499001,7 +499007,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665200, + "complete_object_locator": 6468669296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499010,12 +499016,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466311296, + "vtable_address": 6466315456, "methods": [ - 6452107088, - 6452191120, - 6452215952, - 6452216816 + 6452108672, + 6452192704, + 6452217536, + 6452218400 ], "bases": [ { @@ -499035,7 +499041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468661064, + "complete_object_locator": 6468665160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499044,12 +499050,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705208, + "vtable_address": 6466709304, "methods": [ - 6455307152, - 6455412144, - 6455488336, - 6455490224 + 6455308912, + 6455413904, + 6455490096, + 6455491984 ], "bases": [ { @@ -499069,7 +499075,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468760696, + "complete_object_locator": 6468764792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499078,12 +499084,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647656, + "vtable_address": 6466651752, "methods": [ - 6454473616, - 6454652528, - 6454765584, - 6454767344 + 6454475376, + 6454654288, + 6454767344, + 6454769104 ], "bases": [ { @@ -499103,7 +499109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468738808, + "complete_object_locator": 6468742904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499112,12 +499118,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647536, + "vtable_address": 6466651632, "methods": [ - 6454473776, - 6454652672, - 6454765648, - 6454767392 + 6454475536, + 6454654432, + 6454767408, + 6454769152 ], "bases": [ { @@ -499137,7 +499143,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468739848, + "complete_object_locator": 6468743944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499146,12 +499152,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647616, + "vtable_address": 6466651712, "methods": [ - 6454473936, - 6454652816, - 6454765712, - 6454767440 + 6454475696, + 6454654576, + 6454767472, + 6454769200 ], "bases": [ { @@ -499171,7 +499177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468739064, + "complete_object_locator": 6468743160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499180,12 +499186,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466346096, + "vtable_address": 6466350256, "methods": [ - 6452476352, - 6452485472, - 6452489840, - 6452489968 + 6452477968, + 6452487088, + 6452491456, + 6452491584 ], "bases": [ { @@ -499205,7 +499211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468679888, + "complete_object_locator": 6468683984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499214,12 +499220,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466346056, + "vtable_address": 6466350216, "methods": [ - 6452476512, - 6452485616, - 6452489904, - 6452490016 + 6452478128, + 6452487232, + 6452491520, + 6452491632 ], "bases": [ { @@ -499239,7 +499245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468680280, + "complete_object_locator": 6468684376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499248,12 +499254,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647776, + "vtable_address": 6466651872, "methods": [ - 6454474096, - 6454652960, - 6454765776, - 6454767488 + 6454475856, + 6454654720, + 6454767536, + 6454769248 ], "bases": [ { @@ -499273,7 +499279,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736160, + "complete_object_locator": 6468740256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499282,12 +499288,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646776, + "vtable_address": 6466650872, "methods": [ - 6454474256, - 6454653104, - 6454765840, - 6454767536 + 6454476016, + 6454654864, + 6454767600, + 6454769296 ], "bases": [ { @@ -499307,7 +499313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747776, + "complete_object_locator": 6468751872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499316,12 +499322,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466589648, + "vtable_address": 6466593776, "methods": [ - 6454066848, - 6454066592, - 6454066736, - 6454066800 + 6454068608, + 6454068352, + 6454068496, + 6454068560 ], "bases": [ { @@ -499341,7 +499347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468731792, + "complete_object_locator": 6468735888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499350,12 +499356,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705008, + "vtable_address": 6466709104, "methods": [ - 6455307312, - 6455412288, - 6455488400, - 6455490272 + 6455309072, + 6455414048, + 6455490160, + 6455492032 ], "bases": [ { @@ -499375,7 +499381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468762608, + "complete_object_locator": 6468766704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499384,12 +499390,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646896, + "vtable_address": 6466650992, "methods": [ - 6454474416, - 6454653248, - 6454765904, - 6454767584 + 6454476176, + 6454655008, + 6454767664, + 6454769344 ], "bases": [ { @@ -499409,7 +499415,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468746648, + "complete_object_locator": 6468750744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499418,12 +499424,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466311336, + "vtable_address": 6466315496, "methods": [ - 6452107248, - 6452191264, - 6452216016, - 6452216864 + 6452108832, + 6452192848, + 6452217600, + 6452218448 ], "bases": [ { @@ -499443,7 +499449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468660808, + "complete_object_locator": 6468664904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499452,12 +499458,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705048, + "vtable_address": 6466709144, "methods": [ - 6455307472, - 6455412432, - 6455488464, - 6455490320 + 6455309232, + 6455414192, + 6455490224, + 6455492080 ], "bases": [ { @@ -499477,7 +499483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468762352, + "complete_object_locator": 6468766448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499486,12 +499492,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466311024, + "vtable_address": 6466315184, "methods": [ - 6452107408, - 6452191408, - 6452216080, - 6452216912 + 6452108992, + 6452192992, + 6452217664, + 6452218496 ], "bases": [ { @@ -499511,7 +499517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468663888, + "complete_object_locator": 6468667984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499520,12 +499526,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704528, + "vtable_address": 6466708624, "methods": [ - 6455307632, - 6455412576, - 6455488528, - 6455490368 + 6455309392, + 6455414336, + 6455490288, + 6455492128 ], "bases": [ { @@ -499545,7 +499551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468769240, + "complete_object_locator": 6468773336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499554,12 +499560,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704488, + "vtable_address": 6466708584, "methods": [ - 6455307792, - 6455412720, - 6455488592, - 6455490416 + 6455309552, + 6455414480, + 6455490352, + 6455492176 ], "bases": [ { @@ -499579,7 +499585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468769632, + "complete_object_locator": 6468773728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499588,12 +499594,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647016, + "vtable_address": 6466651112, "methods": [ - 6454474576, - 6454653392, - 6454765968, - 6454767632 + 6454476336, + 6454655152, + 6454767728, + 6454769392 ], "bases": [ { @@ -499613,7 +499619,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468746264, + "complete_object_locator": 6468750360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499622,12 +499628,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646736, + "vtable_address": 6466650832, "methods": [ - 6454474736, - 6454653536, - 6454766032, - 6454767680 + 6454476496, + 6454655296, + 6454767792, + 6454769440 ], "bases": [ { @@ -499647,7 +499653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748680, + "complete_object_locator": 6468752776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499656,12 +499662,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646816, + "vtable_address": 6466650912, "methods": [ - 6454474896, - 6454653680, - 6454766096, - 6454767728 + 6454476656, + 6454655440, + 6454767856, + 6454769488 ], "bases": [ { @@ -499681,7 +499687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468747520, + "complete_object_locator": 6468751616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499690,12 +499696,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646696, + "vtable_address": 6466650792, "methods": [ - 6454475056, - 6454653824, - 6454766160, - 6454767776 + 6454476816, + 6454655584, + 6454767920, + 6454769536 ], "bases": [ { @@ -499715,7 +499721,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468748936, + "complete_object_locator": 6468753032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499724,12 +499730,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646656, + "vtable_address": 6466650752, "methods": [ - 6454475216, - 6454653968, - 6454766224, - 6454767824 + 6454476976, + 6454655728, + 6454767984, + 6454769584 ], "bases": [ { @@ -499749,7 +499755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468749192, + "complete_object_locator": 6468753288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499758,12 +499764,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646976, + "vtable_address": 6466651072, "methods": [ - 6454475376, - 6454654112, - 6454766288, - 6454767872 + 6454477136, + 6454655872, + 6454768048, + 6454769632 ], "bases": [ { @@ -499783,7 +499789,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468746392, + "complete_object_locator": 6468750488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499792,12 +499798,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466311376, + "vtable_address": 6466315536, "methods": [ - 6452107568, - 6452191552, - 6452216144, - 6452216960 + 6452109152, + 6452193136, + 6452217728, + 6452218544 ], "bases": [ { @@ -499817,7 +499823,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468658240, + "complete_object_locator": 6468662336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499826,12 +499832,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310744, + "vtable_address": 6466314904, "methods": [ - 6452107728, - 6452191696, - 6452216208, - 6452217008 + 6452109312, + 6452193280, + 6452217792, + 6452218592 ], "bases": [ { @@ -499851,7 +499857,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468666768, + "complete_object_locator": 6468670864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499860,12 +499866,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310984, + "vtable_address": 6466315144, "methods": [ - 6452107888, - 6452191840, - 6452216272, - 6452217056 + 6452109472, + 6452193424, + 6452217856, + 6452218640 ], "bases": [ { @@ -499885,7 +499891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664280, + "complete_object_locator": 6468668376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499894,12 +499900,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310784, + "vtable_address": 6466314944, "methods": [ - 6452108048, - 6452191984, - 6452216336, - 6452217104 + 6452109632, + 6452193568, + 6452217920, + 6452218688 ], "bases": [ { @@ -499919,7 +499925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468666376, + "complete_object_locator": 6468670472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499928,12 +499934,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310824, + "vtable_address": 6466314984, "methods": [ - 6452108208, - 6452192128, - 6452216400, - 6452217152 + 6452109792, + 6452193712, + 6452217984, + 6452218736 ], "bases": [ { @@ -499953,7 +499959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665984, + "complete_object_locator": 6468670080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499962,12 +499968,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310944, + "vtable_address": 6466315104, "methods": [ - 6452108368, - 6452192272, - 6452216464, - 6452217200 + 6452109952, + 6452193856, + 6452218048, + 6452218784 ], "bases": [ { @@ -499987,7 +499993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468664672, + "complete_object_locator": 6468668768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -499996,12 +500002,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310704, + "vtable_address": 6466314864, "methods": [ - 6452108528, - 6452192416, - 6452216528, - 6452217248 + 6452110112, + 6452194000, + 6452218112, + 6452218832 ], "bases": [ { @@ -500021,7 +500027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667160, + "complete_object_locator": 6468671256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500030,12 +500036,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466311064, + "vtable_address": 6466315224, "methods": [ - 6452108688, - 6452192560, - 6452216592, - 6452217296 + 6452110272, + 6452194144, + 6452218176, + 6452218880 ], "bases": [ { @@ -500055,7 +500061,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468663632, + "complete_object_locator": 6468667728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500064,12 +500070,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704768, + "vtable_address": 6466708864, "methods": [ - 6455307952, - 6455412864, - 6455488656, - 6455490464 + 6455309712, + 6455414624, + 6455490416, + 6455492224 ], "bases": [ { @@ -500089,7 +500095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468765672, + "complete_object_locator": 6468769768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500098,12 +500104,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705528, + "vtable_address": 6466709624, "methods": [ - 6455308112, - 6455413008, - 6455488720, - 6455490512 + 6455309872, + 6455414768, + 6455490480, + 6455492272 ], "bases": [ { @@ -500123,7 +500129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757560, + "complete_object_locator": 6468761656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500132,12 +500138,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704848, + "vtable_address": 6466708944, "methods": [ - 6455308272, - 6455413152, - 6455488784, - 6455490560 + 6455310032, + 6455414912, + 6455490544, + 6455492320 ], "bases": [ { @@ -500157,7 +500163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468764888, + "complete_object_locator": 6468768984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500166,12 +500172,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704808, + "vtable_address": 6466708904, "methods": [ - 6455308432, - 6455413296, - 6455488848, - 6455490608 + 6455310192, + 6455415056, + 6455490608, + 6455492368 ], "bases": [ { @@ -500191,7 +500197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468765280, + "complete_object_locator": 6468769376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500200,12 +500206,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704888, + "vtable_address": 6466708984, "methods": [ - 6455308592, - 6455413440, - 6455488912, - 6455490656 + 6455310352, + 6455415200, + 6455490672, + 6455492416 ], "bases": [ { @@ -500225,7 +500231,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468764088, + "complete_object_locator": 6468768184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500234,12 +500240,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704928, + "vtable_address": 6466709024, "methods": [ - 6455308752, - 6455413584, - 6455488976, - 6455490704 + 6455310512, + 6455415344, + 6455490736, + 6455492464 ], "bases": [ { @@ -500259,7 +500265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468763696, + "complete_object_locator": 6468767792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500268,12 +500274,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704968, + "vtable_address": 6466709064, "methods": [ - 6455308912, - 6455413728, - 6455489040, - 6455490752 + 6455310672, + 6455415488, + 6455490800, + 6455492512 ], "bases": [ { @@ -500293,7 +500299,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468763440, + "complete_object_locator": 6468767536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500302,12 +500308,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647736, + "vtable_address": 6466651832, "methods": [ - 6454475536, - 6454654256, - 6454766352, - 6454767920 + 6454477296, + 6454656016, + 6454768112, + 6454769680 ], "bases": [ { @@ -500327,7 +500333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468736552, + "complete_object_locator": 6468740648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500336,12 +500342,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466646936, + "vtable_address": 6466651032, "methods": [ - 6454475696, - 6454654400, - 6454766416, - 6454767968 + 6454477456, + 6454656160, + 6454768176, + 6454769728 ], "bases": [ { @@ -500361,7 +500367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468746520, + "complete_object_locator": 6468750616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500370,12 +500376,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704408, + "vtable_address": 6466708504, "methods": [ - 6455309072, - 6455413872, - 6455489104, - 6455490800 + 6455310832, + 6455415632, + 6455490864, + 6455492560 ], "bases": [ { @@ -500395,7 +500401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468770016, + "complete_object_locator": 6468774112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500404,12 +500410,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704448, + "vtable_address": 6466708544, "methods": [ - 6455309232, - 6455414016, - 6455489168, - 6455490848 + 6455310992, + 6455415776, + 6455490928, + 6455492608 ], "bases": [ { @@ -500429,7 +500435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468769888, + "complete_object_locator": 6468773984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500438,12 +500444,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647096, + "vtable_address": 6466651192, "methods": [ - 6454475856, - 6454654544, - 6454766480, - 6454768016 + 6454477616, + 6454656304, + 6454768240, + 6454769776 ], "bases": [ { @@ -500463,7 +500469,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468744872, + "complete_object_locator": 6468748968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500472,12 +500478,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647816, + "vtable_address": 6466651912, "methods": [ - 6454476016, - 6454654688, - 6454766544, - 6454768064 + 6454477776, + 6454656448, + 6454768304, + 6454769824 ], "bases": [ { @@ -500497,7 +500503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468735904, + "complete_object_locator": 6468740000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500506,12 +500512,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704728, + "vtable_address": 6466708824, "methods": [ - 6455309392, - 6455414160, - 6455489232, - 6455490896 + 6455311152, + 6455415920, + 6455490992, + 6455492656 ], "bases": [ { @@ -500531,7 +500537,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468766848, + "complete_object_locator": 6468770944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500540,12 +500546,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705568, + "vtable_address": 6466709664, "methods": [ - 6455309552, - 6455414304, - 6455489296, - 6455490944 + 6455311312, + 6455416064, + 6455491056, + 6455492704 ], "bases": [ { @@ -500565,7 +500571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468755768, + "complete_object_locator": 6468759864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500574,12 +500580,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704368, + "vtable_address": 6466708464, "methods": [ - 6455309712, - 6455414448, - 6455489360, - 6455490992 + 6455311472, + 6455416208, + 6455491120, + 6455492752 ], "bases": [ { @@ -500599,7 +500605,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468771544, + "complete_object_locator": 6468775640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500608,12 +500614,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705288, + "vtable_address": 6466709384, "methods": [ - 6455309872, - 6455414592, - 6455489424, - 6455491040 + 6455311632, + 6455416352, + 6455491184, + 6455492800 ], "bases": [ { @@ -500633,7 +500639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468759912, + "complete_object_locator": 6468764008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500642,12 +500648,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705088, + "vtable_address": 6466709184, "methods": [ - 6455310032, - 6455414736, - 6455489488, - 6455491088 + 6455311792, + 6455416496, + 6455491248, + 6455492848 ], "bases": [ { @@ -500667,7 +500673,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468761600, + "complete_object_locator": 6468765696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500676,12 +500682,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647296, + "vtable_address": 6466651392, "methods": [ - 6454476176, - 6454654832, - 6454766608, - 6454768112 + 6454477936, + 6454656592, + 6454768368, + 6454769872 ], "bases": [ { @@ -500701,7 +500707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742456, + "complete_object_locator": 6468746552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500710,12 +500716,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466809040, + "vtable_address": 6466813152, "methods": [ - 6455870336, - 6456148832, - 6456245696, - 6456248976 + 6455872096, + 6456150608, + 6456247472, + 6456250752 ], "bases": [ { @@ -500735,7 +500741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783400, + "complete_object_locator": 6468787496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500744,12 +500750,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466809000, + "vtable_address": 6466813112, "methods": [ - 6455870496, - 6456148976, - 6456245760, - 6456249024 + 6455872256, + 6456150752, + 6456247536, + 6456250800 ], "bases": [ { @@ -500769,7 +500775,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783656, + "complete_object_locator": 6468787752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500778,12 +500784,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466809120, + "vtable_address": 6466813232, "methods": [ - 6455870656, - 6456149120, - 6456245824, - 6456249072 + 6455872416, + 6456150896, + 6456247600, + 6456250848 ], "bases": [ { @@ -500803,7 +500809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468782888, + "complete_object_locator": 6468786984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500812,12 +500818,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466809080, + "vtable_address": 6466813192, "methods": [ - 6455870816, - 6456149264, - 6456245888, - 6456249120 + 6455872576, + 6456151040, + 6456247664, + 6456250896 ], "bases": [ { @@ -500837,7 +500843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783144, + "complete_object_locator": 6468787240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500846,12 +500852,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466809160, + "vtable_address": 6466813272, "methods": [ - 6455870976, - 6456149408, - 6456245952, - 6456249168 + 6455872736, + 6456151184, + 6456247728, + 6456250944 ], "bases": [ { @@ -500871,7 +500877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468782496, + "complete_object_locator": 6468786592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500880,12 +500886,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705488, + "vtable_address": 6466709584, "methods": [ - 6455310192, - 6455414880, - 6455489552, - 6455491136 + 6455311952, + 6455416640, + 6455491312, + 6455492896 ], "bases": [ { @@ -500905,7 +500911,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468757952, + "complete_object_locator": 6468762048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500914,12 +500920,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466809240, + "vtable_address": 6466813352, "methods": [ - 6455871136, - 6456149552, - 6456246016, - 6456249216 + 6455872896, + 6456151328, + 6456247792, + 6456250992 ], "bases": [ { @@ -500939,7 +500945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468781848, + "complete_object_locator": 6468785944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500948,12 +500954,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647376, + "vtable_address": 6466651472, "methods": [ - 6454476336, - 6454654976, - 6454766672, - 6454768160 + 6454478096, + 6454656736, + 6454768432, + 6454769920 ], "bases": [ { @@ -500973,7 +500979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741808, + "complete_object_locator": 6468745904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -500982,12 +500988,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647416, + "vtable_address": 6466651512, "methods": [ - 6454476496, - 6454655120, - 6454766736, - 6454768208 + 6454478256, + 6454656880, + 6454768496, + 6454769968 ], "bases": [ { @@ -501007,7 +501013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468741552, + "complete_object_locator": 6468745648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501016,12 +501022,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467223920, + "vtable_address": 6467227984, "methods": [ - 6460345184, - 6460347120, - 6460347648, - 6460347712 + 6460347376, + 6460349312, + 6460349840, + 6460349904 ], "bases": [ { @@ -501041,7 +501047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468952296, + "complete_object_locator": 6468956392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501050,12 +501056,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466840504, + "vtable_address": 6466844616, "methods": [ - 6456440608, - 6456474128, - 6456508448, - 6456508560 + 6456442384, + 6456475904, + 6456510224, + 6456510336 ], "bases": [ { @@ -501075,7 +501081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800144, + "complete_object_locator": 6468804240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501084,12 +501090,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466705608, + "vtable_address": 6466709704, "methods": [ - 6455310352, - 6455415024, - 6455489616, - 6455491184 + 6455312112, + 6455416784, + 6455491376, + 6455492944 ], "bases": [ { @@ -501109,7 +501115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468755512, + "complete_object_locator": 6468759608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501118,12 +501124,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220536, + "vtable_address": 6467224600, "methods": [ - 6460300096, - 6460310128, - 6460313536, - 6460314032 + 6460302288, + 6460312320, + 6460315728, + 6460316224 ], "bases": [ { @@ -501143,7 +501149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950936, + "complete_object_locator": 6468955032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501152,12 +501158,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220456, + "vtable_address": 6467224520, "methods": [ - 6460300256, - 6460310272, - 6460313600, - 6460314080 + 6460302448, + 6460312464, + 6460315792, + 6460316272 ], "bases": [ { @@ -501177,7 +501183,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468951720, + "complete_object_locator": 6468955816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501186,12 +501192,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220656, + "vtable_address": 6467224720, "methods": [ - 6460300416, - 6460310416, - 6460313664, - 6460314128 + 6460302608, + 6460312608, + 6460315856, + 6460316320 ], "bases": [ { @@ -501211,7 +501217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468949488, + "complete_object_locator": 6468953584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501220,12 +501226,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220496, + "vtable_address": 6467224560, "methods": [ - 6460300576, - 6460310560, - 6460313728, - 6460314176 + 6460302768, + 6460312752, + 6460315920, + 6460316368 ], "bases": [ { @@ -501245,7 +501251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468951328, + "complete_object_locator": 6468955424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501254,12 +501260,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220576, + "vtable_address": 6467224640, "methods": [ - 6460300736, - 6460310704, - 6460313792, - 6460314224 + 6460302928, + 6460312896, + 6460315984, + 6460316416 ], "bases": [ { @@ -501279,7 +501285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468950544, + "complete_object_locator": 6468954640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501288,12 +501294,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220616, + "vtable_address": 6467224680, "methods": [ - 6460300896, - 6460310848, - 6460313856, - 6460314272 + 6460303088, + 6460313040, + 6460316048, + 6460316464 ], "bases": [ { @@ -501313,7 +501319,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468949880, + "complete_object_locator": 6468953976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501322,12 +501328,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6467220696, + "vtable_address": 6467224760, "methods": [ - 6460301056, - 6460310992, - 6460313920, - 6460314320 + 6460303248, + 6460313184, + 6460316112, + 6460316512 ], "bases": [ { @@ -501347,7 +501353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468949232, + "complete_object_locator": 6468953328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501356,12 +501362,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466808840, + "vtable_address": 6466812952, "methods": [ - 6455871296, - 6456149696, - 6456246080, - 6456249264 + 6455873056, + 6456151472, + 6456247856, + 6456251040 ], "bases": [ { @@ -501381,7 +501387,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468793088, + "complete_object_locator": 6468797184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501390,12 +501396,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466808880, + "vtable_address": 6466812992, "methods": [ - 6455871456, - 6456149840, - 6456246144, - 6456249312 + 6455873216, + 6456151616, + 6456247920, + 6456251088 ], "bases": [ { @@ -501415,7 +501421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792696, + "complete_object_locator": 6468796792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501424,12 +501430,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466704608, + "vtable_address": 6466708704, "methods": [ - 6455310512, - 6455415168, - 6455489680, - 6455491232 + 6455312272, + 6455416928, + 6455491440, + 6455492992 ], "bases": [ { @@ -501449,7 +501455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468767752, + "complete_object_locator": 6468771848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501458,12 +501464,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466808960, + "vtable_address": 6466813072, "methods": [ - 6455871616, - 6456149984, - 6456246208, - 6456249360 + 6455873376, + 6456151760, + 6456247984, + 6456251136 ], "bases": [ { @@ -501483,7 +501489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468783912, + "complete_object_locator": 6468788008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501492,12 +501498,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466808920, + "vtable_address": 6466813032, "methods": [ - 6455871776, - 6456150128, - 6456246272, - 6456249408 + 6455873536, + 6456151904, + 6456248048, + 6456251184 ], "bases": [ { @@ -501517,7 +501523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468787632, + "complete_object_locator": 6468791728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501526,12 +501532,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466647336, + "vtable_address": 6466651432, "methods": [ - 6454476656, - 6454655264, - 6454766800, - 6454768256 + 6454478416, + 6454657024, + 6454768560, + 6454770016 ], "bases": [ { @@ -501551,7 +501557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468742064, + "complete_object_locator": 6468746160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501560,12 +501566,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6466310864, + "vtable_address": 6466315024, "methods": [ - 6452108848, - 6452192704, - 6452216656, - 6452217344 + 6452110432, + 6452194288, + 6452218240, + 6452218928 ], "bases": [ { @@ -501585,7 +501591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468665592, + "complete_object_locator": 6468669688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501594,17 +501600,17 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 6467223880, + "vtable_address": 6467227944, "methods": [ - 6460345584, - 6463705588, - 6463705588, - 6463705588 + 6460347776, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468952600, + "complete_object_locator": 6468956696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501613,24 +501619,24 @@ }, { "type_name": "GCSDK::CProtoBufNetPacket", - "vtable_address": 6467223720, - "methods": [ - 6460345728, - 6460346816, - 6460347104, - 6460347072, - 6460348128, - 6460346800, - 6460347088, - 6460347280, - 6460347312, - 6460349072, - 6460347296, - 6460349056, - 6460347264, - 6460349040, - 6460346784, - 6460347328 + "vtable_address": 6467227784, + "methods": [ + 6460347920, + 6460349008, + 6460349296, + 6460349264, + 6460350320, + 6460348992, + 6460349280, + 6460349472, + 6460349504, + 6460351264, + 6460349488, + 6460351248, + 6460349456, + 6460351232, + 6460348976, + 6460349520 ], "bases": [ { @@ -501664,7 +501670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468952424, + "complete_object_locator": 6468956520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501673,18 +501679,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466770824, + "vtable_address": 6466774920, "methods": [ - 6455871936, - 6456165760, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151680 + 6455873696, + 6456167536, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153456 ], "bases": [ { @@ -501718,7 +501724,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789616, + "complete_object_locator": 6468793712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501727,18 +501733,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466771704, + "vtable_address": 6466775800, "methods": [ - 6455872016, - 6456165776, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151696 + 6455873776, + 6456167552, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153472 ], "bases": [ { @@ -501772,7 +501778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791016, + "complete_object_locator": 6468795112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501781,18 +501787,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466770648, + "vtable_address": 6466774744, "methods": [ - 6455872096, - 6456165792, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151712 + 6455873856, + 6456167568, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153488 ], "bases": [ { @@ -501826,7 +501832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789336, + "complete_object_locator": 6468793432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501835,18 +501841,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466772408, + "vtable_address": 6466776504, "methods": [ - 6455872176, - 6456165808, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151728 + 6455873936, + 6456167584, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153504 ], "bases": [ { @@ -501880,7 +501886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468792136, + "complete_object_locator": 6468796232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501889,18 +501895,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466772056, + "vtable_address": 6466776152, "methods": [ - 6455872256, - 6456165824, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151744 + 6455874016, + 6456167600, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153520 ], "bases": [ { @@ -501934,7 +501940,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791576, + "complete_object_locator": 6468795672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501943,18 +501949,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466772232, + "vtable_address": 6466776328, "methods": [ - 6455872336, - 6456165840, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151760 + 6455874096, + 6456167616, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153536 ], "bases": [ { @@ -501988,7 +501994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791856, + "complete_object_locator": 6468795952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -501997,18 +502003,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466771000, + "vtable_address": 6466775096, "methods": [ - 6455872416, - 6456165856, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151776 + 6455874176, + 6456167632, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153552 ], "bases": [ { @@ -502042,7 +502048,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789896, + "complete_object_locator": 6468793992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502051,18 +502057,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466771176, + "vtable_address": 6466775272, "methods": [ - 6455872496, - 6456165872, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151792 + 6455874256, + 6456167648, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153568 ], "bases": [ { @@ -502096,7 +502102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468790176, + "complete_object_locator": 6468794272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502105,18 +502111,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466770296, + "vtable_address": 6466774392, "methods": [ - 6455872576, - 6456165888, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151808 + 6455874336, + 6456167664, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153584 ], "bases": [ { @@ -502150,7 +502156,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468788776, + "complete_object_locator": 6468792872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502159,18 +502165,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466754768, + "vtable_address": 6466758864, "methods": [ - 6455872656, - 6456165904, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151824 + 6455874416, + 6456167680, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153600 ], "bases": [ { @@ -502204,7 +502210,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468777904, + "complete_object_locator": 6468782000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502213,18 +502219,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466759584, + "vtable_address": 6466763680, "methods": [ - 6455872736, - 6456165920, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151840 + 6455874496, + 6456167696, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153616 ], "bases": [ { @@ -502258,7 +502264,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780576, + "complete_object_locator": 6468784672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502267,18 +502273,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466754944, + "vtable_address": 6466759040, "methods": [ - 6455872816, - 6456165936, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151856 + 6455874576, + 6456167712, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153632 ], "bases": [ { @@ -502312,7 +502318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468778128, + "complete_object_locator": 6468782224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502321,18 +502327,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466771880, + "vtable_address": 6466775976, "methods": [ - 6455872896, - 6456165952, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151872 + 6455874656, + 6456167728, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153648 ], "bases": [ { @@ -502366,7 +502372,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468791296, + "complete_object_locator": 6468795392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502375,18 +502381,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466759760, + "vtable_address": 6466763856, "methods": [ - 6455872976, - 6456165968, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151888 + 6455874736, + 6456167744, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153664 ], "bases": [ { @@ -502420,7 +502426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468780856, + "complete_object_locator": 6468784952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502429,18 +502435,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466770472, + "vtable_address": 6466774568, "methods": [ - 6455873056, - 6456165984, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151904 + 6455874816, + 6456167760, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153680 ], "bases": [ { @@ -502474,7 +502480,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468789056, + "complete_object_locator": 6468793152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502483,18 +502489,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466771528, + "vtable_address": 6466775624, "methods": [ - 6455873136, - 6456166000, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151920 + 6455874896, + 6456167776, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153696 ], "bases": [ { @@ -502528,7 +502534,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468790736, + "complete_object_locator": 6468794832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502537,18 +502543,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6466771352, + "vtable_address": 6466775448, "methods": [ - 6455873216, - 6456166016, - 6460417264, - 6460417328, - 6460417056, - 6460417392, - 6460421248, - 6460417024, - 6460416784, - 6456151936 + 6455874976, + 6456167792, + 6460419456, + 6460419520, + 6460419248, + 6460419584, + 6460423440, + 6460419216, + 6460418976, + 6456153712 ], "bases": [ { @@ -502582,7 +502588,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468790456, + "complete_object_locator": 6468794552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502591,15 +502597,15 @@ }, { "type_name": "GCSDK::CRefCount", - "vtable_address": 6467223696, + "vtable_address": 6467227760, "methods": [ - 6460346000, - 6460346816 + 6460348192, + 6460349008 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468952088, + "complete_object_locator": 6468956184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502608,22 +502614,22 @@ }, { "type_name": "GCSDK::CSharedObject", - "vtable_address": 6466754128, - "methods": [ - 6455881296, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6466758224, + "methods": [ + 6455883056, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468777784, + "complete_object_locator": 6468781880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502632,22 +502638,22 @@ }, { "type_name": "GCSDK::CSharedObjectCache", - "vtable_address": 6467223536, - "methods": [ - 6460339872, - 6463705588, - 6460340528, - 6460340928, - 6460342912, - 6460342768, - 6460342752, - 6460341680, - 6463705588 + "vtable_address": 6467227600, + "methods": [ + 6460342064, + 6463707780, + 6460342720, + 6460343120, + 6460345104, + 6460344960, + 6460344944, + 6460343872, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468951848, + "complete_object_locator": 6468955944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502656,20 +502662,20 @@ }, { "type_name": "GCSDK::CSharedObjectTypeCache", - "vtable_address": 6467223472, + "vtable_address": 6467227536, "methods": [ - 6460340176, - 6460340624, - 6460340992, - 6460343104, - 6460342896, - 6460341984, - 6460341856 + 6460342368, + 6460342816, + 6460343184, + 6460345296, + 6460345088, + 6460344176, + 6460344048 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468951968, + "complete_object_locator": 6468956064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502678,24 +502684,24 @@ }, { "type_name": "GCSDK::CStructNetPacket", - "vtable_address": 6467229344, - "methods": [ - 6460429408, - 6460346816, - 6460429552, - 6460429520, - 6460430288, - 6460429504, - 6460429536, - 6460429728, - 6460429760, - 6460430336, - 6460429744, - 6460430320, - 6460429712, - 6460430304, - 6460429488, - 6460429776 + "vtable_address": 6467233408, + "methods": [ + 6460431600, + 6460349008, + 6460431744, + 6460431712, + 6460432480, + 6460431696, + 6460431728, + 6460431920, + 6460431952, + 6460432528, + 6460431936, + 6460432512, + 6460431904, + 6460432496, + 6460431680, + 6460431968 ], "bases": [ { @@ -502729,7 +502735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468952896, + "complete_object_locator": 6468956992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502738,16 +502744,16 @@ }, { "type_name": "GCSDK::CWorkThread", - "vtable_address": 6467230256, + "vtable_address": 6467234320, "methods": [ - 6460438576, - 6463407751, - 6460441136, - 6460439872, - 6463407739, - 6463407733, - 6460439856, - 6460439888 + 6460440768, + 6463409943, + 6460443328, + 6460442064, + 6463409931, + 6463409925, + 6460442048, + 6460442080 ], "bases": [ { @@ -502767,7 +502773,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468953032, + "complete_object_locator": 6468957128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502776,15 +502782,15 @@ }, { "type_name": "GCSDK::CWorkThreadPool", - "vtable_address": 6467230328, + "vtable_address": 6467234392, "methods": [ - 6460438640, - 6460439904 + 6460440832, + 6460442096 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468953160, + "complete_object_locator": 6468957256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502793,7 +502799,7 @@ }, { "type_name": "GCSDK::GCClientJobLambda::ScheduleBatchRequest(float)'::`2':: >", - "vtable_address": 6464865328, + "vtable_address": 6464869408, "methods": [ 6445625600, 6445625568, @@ -502834,7 +502840,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468293264, + "complete_object_locator": 6468297360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502843,10 +502849,10 @@ }, { "type_name": "GCSDK::GCClientJobLambda >", - "vtable_address": 6466572376, + "vtable_address": 6466576504, "methods": [ - 6453884832, - 6453889808, + 6453886592, + 6453891568, 6443903584, 6443903632, 6443903520, @@ -502884,7 +502890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727472, + "complete_object_locator": 6468731568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502893,10 +502899,10 @@ }, { "type_name": "GCSDK::GCClientJobLambda >", - "vtable_address": 6466572528, + "vtable_address": 6466576656, "methods": [ - 6453884896, - 6453889920, + 6453886656, + 6453891680, 6443903584, 6443903632, 6443903520, @@ -502934,7 +502940,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727736, + "complete_object_locator": 6468731832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502943,7 +502949,7 @@ }, { "type_name": "GCSDK::GCClientJobLambda::RequestCurrentData(class CBufferString const &)'::`2':: >", - "vtable_address": 6464865104, + "vtable_address": 6464869184, "methods": [ 6445624160, 6445624128, @@ -502984,7 +502990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468293128, + "complete_object_locator": 6468297224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -502993,7 +502999,7 @@ }, { "type_name": "GCSDK::GCClientJobLambda::BatchRequestData(class CBufferString const *,int)'::`2':: >", - "vtable_address": 6464862976, + "vtable_address": 6464867056, "methods": [ 6445617184, 6445617152, @@ -503034,7 +503040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468293400, + "complete_object_locator": 6468297496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503043,7 +503049,7 @@ }, { "type_name": "GameAmmoTypeInfo_t", - "vtable_address": 6465297328, + "vtable_address": 6465301400, "methods": [ 6447786176, 6447776592, @@ -503068,7 +503074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468428824, + "complete_object_locator": 6468432920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503077,7 +503083,7 @@ }, { "type_name": "GameEvent_RegisterHookupGameSystem", - "vtable_address": 6465798872, + "vtable_address": 6465803064, "methods": [ 6443748576, 6443748592, @@ -503135,11 +503141,11 @@ 6443749424, 6443749440, 6443749456, - 6449397152, + 6449398704, 6443749488, - 6449397136, - 6449397184, - 6449397120 + 6449398688, + 6449398736, + 6449398672 ], "bases": [ { @@ -503173,7 +503179,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468516904, + "complete_object_locator": 6468521000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503182,25 +503188,25 @@ }, { "type_name": "GameServerPing", - "vtable_address": 6464929368, - "methods": [ - 6446065936, - 6457189536, - 6446052192, - 6446053280, - 6446053472, - 6457189584, - 6457186560, - 6446053632, - 6446057136, - 6446055024, + "vtable_address": 6464933464, + "methods": [ + 6446066320, + 6457191728, + 6446052560, + 6446053056, + 6446053248, + 6457191776, + 6457188752, + 6446053440, + 6446057520, + 6446055008, 6443742160, - 6446056768, - 6457190896, - 6457192720, - 6446058736, - 6446059312, - 6446058960 + 6446057152, + 6457193088, + 6457194912, + 6446059120, + 6446059696, + 6446059280 ], "bases": [ { @@ -503234,7 +503240,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347568, + "complete_object_locator": 6468351800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503243,25 +503249,25 @@ }, { "type_name": "GameSessionConfiguration_t", - "vtable_address": 6465813464, + "vtable_address": 6465817656, "methods": [ - 6449499136, - 6457189536, - 6446888080, - 6446889680, - 6446890864, - 6457189584, - 6457186560, - 6446890880, - 6446894528, - 6446891904, + 6449500704, + 6457191728, + 6446888304, + 6446889904, + 6446891088, + 6457191776, + 6457188752, + 6446891104, + 6446894752, + 6446892128, 6443742160, - 6446893568, - 6457190896, - 6457192720, - 6446894704, - 6446894816, - 6446894800 + 6446893792, + 6457193088, + 6457194912, + 6446894928, + 6446895040, + 6446895024 ], "bases": [ { @@ -503323,7 +503329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468520368, + "complete_object_locator": 6468524464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503332,25 +503338,25 @@ }, { "type_name": "GlobalStatistics", - "vtable_address": 6464973488, - "methods": [ - 6446243680, - 6457189536, - 6446202592, - 6446204096, - 6446204496, - 6457189584, - 6457186560, - 6446206688, - 6446212544, - 6446208928, - 6443742160, - 6446211104, - 6457190896, - 6457192720, - 6446212592, - 6446213040, - 6446213024 + "vtable_address": 6464977568, + "methods": [ + 6446243984, + 6457191728, + 6446202960, + 6446203664, + 6446204432, + 6457191776, + 6457188752, + 6446204560, + 6446212032, + 6446206256, + 6443742160, + 6446210592, + 6457193088, + 6457194912, + 6446212960, + 6446213344, + 6446213328 ], "bases": [ { @@ -503384,7 +503390,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347704, + "complete_object_locator": 6468351936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503393,15 +503399,15 @@ }, { "type_name": "IAnimTagListener", - "vtable_address": 6465691448, + "vtable_address": 6465695624, "methods": [ - 6448666768, - 6463705588 + 6448668336, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468487016, + "complete_object_locator": 6468491112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503410,21 +503416,21 @@ }, { "type_name": "IAnimationDebugRenderer", - "vtable_address": 6467023528, + "vtable_address": 6467027592, "methods": [ - 6458815920, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6458818112, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468863936, + "complete_object_locator": 6468868032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503433,14 +503439,14 @@ }, { "type_name": "IAsyncProcessedDataResult", - "vtable_address": 6467043648, + "vtable_address": 6467047712, "methods": [ - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468871048, + "complete_object_locator": 6468875144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503449,14 +503455,14 @@ }, { "type_name": "IBaseInterface", - "vtable_address": 6465808896, + "vtable_address": 6465813088, "methods": [ - 6449499248 + 6449500816 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468518416, + "complete_object_locator": 6468522512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503465,65 +503471,65 @@ }, { "type_name": "IBaseToolAttr", - "vtable_address": 6467064448, - "methods": [ - 6459245776, - 6463705588, - 6459651152, - 6459632288, - 6459632336, - 6463705588, - 6459666240, - 6459667504, - 6459651072, - 6459419328, - 6459415328, - 6459418208, - 6459415360, - 6459416272, - 6459415376, - 6459415344, - 6459765824, - 6459680752, - 6459746448, - 6459445008, - 6459613472, - 6459632240, - 6459643104, - 6459651040, - 6459429968, - 6459564144, - 6459564112, - 6459718256, - 6459813840, - 6459765840, - 6459835808, - 6459657328, - 6459888432, - 6459714288, - 6459872448, - 6459833360, - 6459495696, - 6459319888, - 6459541184, - 6459564080, - 6459630064, - 6459631920, - 6459718240, - 6459680768, - 6459669168, - 6459657344, - 6459813808, - 6459806752, - 6459496256, - 6459496288, - 6459799696, - 6459472336 + "vtable_address": 6467068512, + "methods": [ + 6459247968, + 6463707780, + 6459653344, + 6459634480, + 6459634528, + 6463707780, + 6459668432, + 6459669696, + 6459653264, + 6459421520, + 6459417520, + 6459420400, + 6459417552, + 6459418464, + 6459417568, + 6459417536, + 6459768016, + 6459682944, + 6459748640, + 6459447200, + 6459615664, + 6459634432, + 6459645296, + 6459653232, + 6459432160, + 6459566336, + 6459566304, + 6459720448, + 6459816032, + 6459768032, + 6459838000, + 6459659520, + 6459890624, + 6459716480, + 6459874640, + 6459835552, + 6459497888, + 6459322080, + 6459543376, + 6459566272, + 6459632256, + 6459634112, + 6459720432, + 6459682960, + 6459671360, + 6459659536, + 6459816000, + 6459808944, + 6459498448, + 6459498480, + 6459801888, + 6459474528 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468871976, + "complete_object_locator": 6468876072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503532,15 +503538,15 @@ }, { "type_name": "IBreakableSystem", - "vtable_address": 6464483520, + "vtable_address": 6464487616, "methods": [ 6444065888, - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468235992, + "complete_object_locator": 6468240088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503549,45 +503555,45 @@ }, { "type_name": "ICamera", - "vtable_address": 6466018120, - "methods": [ - 6450922848, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6451046400, - 6463705588, - 6463705588, - 6450980704, - 6450980832, - 6450980768, - 6463705588, - 6451046256 + "vtable_address": 6466022328, + "methods": [ + 6450924416, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6451047968, + 6463707780, + 6463707780, + 6450982272, + 6450982400, + 6450982336, + 6463707780, + 6451047824 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468580800, + "complete_object_locator": 6468584896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503596,55 +503602,55 @@ }, { "type_name": "ICameraManager", - "vtable_address": 6466018384, - "methods": [ - 6450922896, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6466022592, + "methods": [ + 6450924464, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468580920, + "complete_object_locator": 6468585016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503653,52 +503659,52 @@ }, { "type_name": "IClientMode", - "vtable_address": 6466041344, - "methods": [ - 6451088944, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6451128912, - 6451102528, - 6463705588, - 6463705588 + "vtable_address": 6466045552, + "methods": [ + 6451090512, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6451130480, + 6451104096, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468588112, + "complete_object_locator": 6468592208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503707,22 +503713,22 @@ }, { "type_name": "ICompressorService", - "vtable_address": 6467025264, - "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6458877456 + "vtable_address": 6467029328, + "methods": [ + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6458879648 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468864408, + "complete_object_locator": 6468868504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503731,19 +503737,19 @@ }, { "type_name": "IDebugVisualizer", - "vtable_address": 6464672744, + "vtable_address": 6464676824, "methods": [ 6444572384, - 6463705588, - 6463705588, - 6463705588, + 6463707780, + 6463707780, + 6463707780, 6444873712, 6444697680 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468257176, + "complete_object_locator": 6468261272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503752,19 +503758,19 @@ }, { "type_name": "IDemoMessage", - "vtable_address": 6464674728, + "vtable_address": 6464678808, "methods": [ 6444572432, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468259848, + "complete_object_locator": 6468263944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503773,18 +503779,18 @@ }, { "type_name": "IEconItemAttributeIterator", - "vtable_address": 6465290248, + "vtable_address": 6465294320, "methods": [ 6447747712, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468426608, + "complete_object_locator": 6468430704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503793,16 +503799,16 @@ }, { "type_name": "IEconItemDescription", - "vtable_address": 6466834504, + "vtable_address": 6466838616, "methods": [ - 6456442336, - 6456536976, - 6463705588 + 6456444112, + 6456538752, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468799632, + "complete_object_locator": 6468803728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503811,40 +503817,40 @@ }, { "type_name": "IEconItemInterface", - "vtable_address": 6466754208, + "vtable_address": 6466758304, "methods": [ - 6456395312, - 6455882016, - 6456132768, - 6456133056, - 6456133360, - 6456161808, - 6456162128, - 6456255120, - 6456252640, - 6456249456, - 6456255664, - 6456251552, - 6456139008, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6456397088, + 6455883776, + 6456134544, + 6456134832, + 6456135136, + 6456163584, + 6456163904, + 6456256896, + 6456254416, + 6456251232, + 6456257440, + 6456253328, + 6456140784, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468779168, + "complete_object_locator": 6468783264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503853,24 +503859,24 @@ }, { "type_name": "IEconTool", - "vtable_address": 6466753024, - "methods": [ - 6455882064, - 6456043616, - 6456533328, - 6456336896, - 6456256192, - 6456050336, - 6456398800, - 6456167632, - 6456290144, - 6456288848, - 6456288864 + "vtable_address": 6466757120, + "methods": [ + 6455883824, + 6456045392, + 6456535104, + 6456338672, + 6456257968, + 6456052112, + 6456400576, + 6456169408, + 6456291920, + 6456290624, + 6456290640 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468777664, + "complete_object_locator": 6468781760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503879,30 +503885,30 @@ }, { "type_name": "IEngineService", - "vtable_address": 6465352936, - "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, + "vtable_address": 6465357000, + "methods": [ + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, 6447876272 ], "bases": [ @@ -503923,7 +503929,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468432416, + "complete_object_locator": 6468436512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503932,19 +503938,19 @@ }, { "type_name": "IEntity2Networkables", - "vtable_address": 6465810744, + "vtable_address": 6465814936, "methods": [ - 6449499296, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6449500864, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468519528, + "complete_object_locator": 6468523624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503953,17 +503959,17 @@ }, { "type_name": "IEntityDataInstantiator", - "vtable_address": 6465814072, + "vtable_address": 6465818264, "methods": [ - 6449499344, - 6463705588, - 6463705588, - 6463705588 + 6449500912, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468520000, + "complete_object_locator": 6468524096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -503972,47 +503978,47 @@ }, { "type_name": "IGameEvent", - "vtable_address": 6465811128, - "methods": [ - 6449499392, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6465815320, + "methods": [ + 6449500960, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468519048, + "complete_object_locator": 6468523144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504021,15 +504027,15 @@ }, { "type_name": "IGameEventListener2", - "vtable_address": 6464444536, + "vtable_address": 6464448632, "methods": [ 6443902864, - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468226904, + "complete_object_locator": 6468231000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504038,7 +504044,7 @@ }, { "type_name": "IGameSystem", - "vtable_address": 6464400424, + "vtable_address": 6464404520, "methods": [ 6443748576, 6443748592, @@ -504100,12 +504106,12 @@ 6443749488, 6443749504, 6443749520, - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468213640, + "complete_object_locator": 6468217736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504114,44 +504120,44 @@ }, { "type_name": "IInterpolatedVar", - "vtable_address": 6464455560, + "vtable_address": 6464459656, "methods": [ 6443944144, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468228448, + "complete_object_locator": 6468232544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504160,14 +504166,14 @@ }, { "type_name": "IMatchEventsSink", - "vtable_address": 6466285648, + "vtable_address": 6466289760, "methods": [ - 6452235040 + 6452236624 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468656464, + "complete_object_locator": 6468660560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504176,11 +504182,11 @@ }, { "type_name": "IMatchmakingStatus", - "vtable_address": 6466350528, + "vtable_address": 6466354688, "methods": [ - 6452508304, - 6463705588, - 6463705588 + 6452509920, + 6463707780, + 6463707780 ], "bases": [ { @@ -504200,7 +504206,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468680536, + "complete_object_locator": 6468684632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504209,17 +504215,17 @@ }, { "type_name": "IMobileEventListener", - "vtable_address": 6466833088, + "vtable_address": 6466837200, "methods": [ - 6456442416, - 6456520096, - 6456520128, - 6456521440 + 6456444192, + 6456521872, + 6456521904, + 6456523216 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468799120, + "complete_object_locator": 6468803216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504228,15 +504234,15 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 6464671328, + "vtable_address": 6464675408, "methods": [ 6444572480, - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468256312, + "complete_object_locator": 6468260408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504245,18 +504251,18 @@ }, { "type_name": "INetworkFieldScratchData", - "vtable_address": 6467179456, + "vtable_address": 6467183520, "methods": [ - 6459913056, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6459915248, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468938128, + "complete_object_locator": 6468942224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504265,18 +504271,18 @@ }, { "type_name": "INetworkSerializerBindingBuildFilter", - "vtable_address": 6467192528, + "vtable_address": 6467196592, "methods": [ - 6460066960, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6460069152, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468938808, + "complete_object_locator": 6468942904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504285,14 +504291,14 @@ }, { "type_name": "INewParticleEffectUserData", - "vtable_address": 6465754840, + "vtable_address": 6465759032, "methods": [ - 6449167632 + 6449169184 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468506368, + "complete_object_locator": 6468510464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504301,21 +504307,21 @@ }, { "type_name": "IParticleEffect", - "vtable_address": 6467720648, + "vtable_address": 6467724744, "methods": [ - 6462478656, - 6462470976, - 6462480416, - 6462479792, - 6463705588, - 6463705588, - 6462476912, - 6463705588 + 6462480848, + 6462473168, + 6462482608, + 6462481984, + 6463707780, + 6463707780, + 6462479104, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468986800, + "complete_object_locator": 6468990896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504324,17 +504330,17 @@ }, { "type_name": "IPeerGroupHandler", - "vtable_address": 6465981456, + "vtable_address": 6465985648, "methods": [ - 6450767872, - 6463705588, - 6463705588, - 6450800944 + 6450769440, + 6463707780, + 6463707780, + 6450802512 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468570992, + "complete_object_locator": 6468575088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504343,22 +504349,22 @@ }, { "type_name": "IPoseAccessor", - "vtable_address": 6465879720, - "methods": [ - 6450114720, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6465883912, + "methods": [ + 6450116288, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468548600, + "complete_object_locator": 6468552696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504367,25 +504373,25 @@ }, { "type_name": "IPredictionCopyable", - "vtable_address": 6464866968, + "vtable_address": 6464871048, "methods": [ 6445707712, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468294400, + "complete_object_locator": 6468298496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504394,19 +504400,19 @@ }, { "type_name": "IPrerequisite", - "vtable_address": 6464671352, + "vtable_address": 6464675432, "methods": [ 6444572528, 6444580288, 6444911728, - 6463705588, - 6463705588, + 6463707780, + 6463707780, 6444701216 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468256064, + "complete_object_locator": 6468260160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504415,16 +504421,16 @@ }, { "type_name": "IProceduralLayerRenderer", - "vtable_address": 6464423840, + "vtable_address": 6464427936, "methods": [ - 6463705588, + 6463707780, 6443797248, 6443773360 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468218920, + "complete_object_locator": 6468223016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504433,21 +504439,21 @@ }, { "type_name": "IPulseBlackboardView", - "vtable_address": 6465254600, + "vtable_address": 6465258680, "methods": [ 6447677824, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468421072, + "complete_object_locator": 6468425168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504456,18 +504462,18 @@ }, { "type_name": "IRecipientFilter", - "vtable_address": 6464414592, + "vtable_address": 6464418688, "methods": [ 6443797296, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468217608, + "complete_object_locator": 6468221704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504476,18 +504482,18 @@ }, { "type_name": "IRecordingList", - "vtable_address": 6465895456, + "vtable_address": 6465899648, "methods": [ - 6450322448, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6450324016, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468553656, + "complete_object_locator": 6468557752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504496,15 +504502,15 @@ }, { "type_name": "IRenderReadCallback", - "vtable_address": 6466458768, + "vtable_address": 6466462896, "methods": [ - 6453197408, - 6453280608 + 6453199024, + 6453282368 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468700296, + "complete_object_locator": 6468704392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504513,21 +504519,21 @@ }, { "type_name": "IResponseSystem", - "vtable_address": 6465729064, + "vtable_address": 6465733256, "methods": [ - 6448810368, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6448811936, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468498432, + "complete_object_locator": 6468502528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504536,86 +504542,86 @@ }, { "type_name": "IRestore", - "vtable_address": 6465808928, - "methods": [ - 6449499440, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6465813120, + "methods": [ + 6449501008, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -504649,7 +504655,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468518744, + "complete_object_locator": 6468522840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504658,88 +504664,88 @@ }, { "type_name": "ISave", - "vtable_address": 6465753144, - "methods": [ - 6449167680, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6465757336, + "methods": [ + 6449169232, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -504773,7 +504779,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468505096, + "complete_object_locator": 6468509192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504782,24 +504788,24 @@ }, { "type_name": "ISchemaAttributeType", - "vtable_address": 6466753528, - "methods": [ - 6455882224, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6456029488 + "vtable_address": 6466757624, + "methods": [ + 6455883984, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6456031264 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468777544, + "complete_object_locator": 6468781640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504808,21 +504814,21 @@ }, { "type_name": "ISchemaAttributeTypeBase", - "vtable_address": 6466793360, - "methods": [ - 6455873440, - 6456166384, - 6456277360, - 6456047760, - 6463705588, - 6463705588, - 6456277136, - 6456189568, - 6456415328, - 6456290864, - 6456029488, - 6463705588, - 6463705588 + "vtable_address": 6466797456, + "methods": [ + 6455875200, + 6456168160, + 6456279136, + 6456049536, + 6463707780, + 6463707780, + 6456278912, + 6456191344, + 6456417104, + 6456292640, + 6456031264, + 6463707780, + 6463707780 ], "bases": [ { @@ -504842,7 +504848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468794680, + "complete_object_locator": 6468798776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504851,21 +504857,21 @@ }, { "type_name": "ISchemaAttributeTypeBase >", - "vtable_address": 6466793584, - "methods": [ - 6455873392, - 6456166272, - 6456277328, - 6456047744, - 6463705588, - 6463705588, - 6456277072, - 6456189520, - 6456415280, - 6456290832, - 6456029488, - 6463705588, - 6463705588 + "vtable_address": 6466797680, + "methods": [ + 6455875152, + 6456168048, + 6456279104, + 6456049520, + 6463707780, + 6463707780, + 6456278848, + 6456191296, + 6456417056, + 6456292608, + 6456031264, + 6463707780, + 6463707780 ], "bases": [ { @@ -504885,7 +504891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468795048, + "complete_object_locator": 6468799144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504894,21 +504900,21 @@ }, { "type_name": "ISchemaAttributeTypeBase", - "vtable_address": 6466794032, + "vtable_address": 6466798128, "methods": [ - 6455873344, - 6456166160, - 6456277296, - 6456047728, - 6463705588, - 6463705588, - 6456277008, - 6456189504, - 6456415264, - 6456290800, - 6456029488, - 6463705588, - 6463705588 + 6455875104, + 6456167936, + 6456279072, + 6456049504, + 6463707780, + 6463707780, + 6456278784, + 6456191280, + 6456417040, + 6456292576, + 6456031264, + 6463707780, + 6463707780 ], "bases": [ { @@ -504928,7 +504934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468795784, + "complete_object_locator": 6468799880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504937,21 +504943,21 @@ }, { "type_name": "ISchemaAttributeTypeBase", - "vtable_address": 6466793808, - "methods": [ - 6455873296, - 6456166048, - 6456277264, - 6456047712, - 6463705588, - 6463705588, - 6456276944, - 6456189488, - 6456415248, - 6456290768, - 6456029488, - 6463705588, - 6463705588 + "vtable_address": 6466797904, + "methods": [ + 6455875056, + 6456167824, + 6456279040, + 6456049488, + 6463707780, + 6463707780, + 6456278720, + 6456191264, + 6456417024, + 6456292544, + 6456031264, + 6463707780, + 6463707780 ], "bases": [ { @@ -504971,7 +504977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468795416, + "complete_object_locator": 6468799512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504980,15 +504986,15 @@ }, { "type_name": "ISpawnGroupEntityFilter", - "vtable_address": 6464708328, + "vtable_address": 6464712408, "methods": [ 6445078896, - 6463705588 + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468274784, + "complete_object_locator": 6468278880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -504997,23 +505003,23 @@ }, { "type_name": "ITempEnts", - "vtable_address": 6466150712, - "methods": [ - 6451616048, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6466154920, + "methods": [ + 6451617632, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468620880, + "complete_object_locator": 6468624976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505022,7 +505028,7 @@ }, { "type_name": "IToolObject", - "vtable_address": 6464416968, + "vtable_address": 6464421064, "methods": [ 6443797344, 6443883520, @@ -505036,7 +505042,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468217488, + "complete_object_locator": 6468221584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505045,7 +505051,7 @@ }, { "type_name": "IVTableIndexCalculator", - "vtable_address": 6464671624, + "vtable_address": 6464675704, "methods": [ 6444797856, 6444798032, @@ -505116,7 +505122,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468256552, + "complete_object_locator": 6468260648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505125,38 +505131,38 @@ }, { "type_name": "IVideoPlayer", - "vtable_address": 6467603664, - "methods": [ - 6461875184, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6467607760, + "methods": [ + 6461877376, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468961640, + "complete_object_locator": 6468965736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505165,18 +505171,18 @@ }, { "type_name": "IVoiceStatusHelper", - "vtable_address": 6466316896, + "vtable_address": 6466321056, "methods": [ - 6452318720, - 6463705588, - 6463705588, - 6463705588, - 6452318704 + 6452320336, + 6463707780, + 6463707780, + 6463707780, + 6452320320 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468671208, + "complete_object_locator": 6468675304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505185,33 +505191,33 @@ }, { "type_name": "IWrappedInterpolatedVarAdapter", - "vtable_address": 6465401792, - "methods": [ - 6447990240, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6465405952, + "methods": [ + 6447991808, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468442696, + "complete_object_locator": 6468446792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505220,27 +505226,27 @@ }, { "type_name": "IpAddressMask", - "vtable_address": 6465028496, + "vtable_address": 6465032592, "methods": [ - 6446586528, - 6457189536, - 6446572624, + 6446586912, + 6457191728, 6446573008, - 6446573216, - 6457189584, - 6457186560, - 6446573296, - 6446575088, - 6446573520, - 6443742160, - 6446574432, - 6457190896, - 6457192720, - 6446575392, - 6446577632, - 6446577088, - 6457187520, - 6446585056 + 6446573248, + 6446573456, + 6457191776, + 6457188752, + 6446573536, + 6446575472, + 6446573904, + 6443742160, + 6446574816, + 6457193088, + 6457194912, + 6446575776, + 6446578016, + 6446577472, + 6457189712, + 6446585616 ], "bases": [ { @@ -505274,7 +505280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347840, + "complete_object_locator": 6468352072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505283,29 +505289,31 @@ }, { "type_name": "MLDemoHeader", - "vtable_address": 6465075496, - "methods": [ - 6446654832, - 6457189536, - 6446642256, - 6446644336, - 6446644560, - 6457189584, - 6457186560, - 6446644576, - 6446646128, - 6446644784, - 6443742160, - 6446645696, - 6457190896, - 6457192720, - 6446646896, - 6446647776, - 6446647760, - 6457187520, - 6446653056, - 6457187520, - 6446653776 + "vtable_address": 6465079592, + "methods": [ + 6446655216, + 6457191728, + 6446642640, + 6446644720, + 6446644944, + 6457191776, + 6457188752, + 6446644960, + 6446646512, + 6446645168, + 6443742160, + 6446646080, + 6457193088, + 6457194912, + 6446647280, + 6446648160, + 6446648144, + 6457189712, + 6446653440, + 6457189712, + 6446654160, + 6457189712, + 6446655376 ], "bases": [ { @@ -505339,7 +505347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468299104, + "complete_object_locator": 6468303336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505348,29 +505356,25 @@ }, { "type_name": "MLDict", - "vtable_address": 6465003544, - "methods": [ - 6446424704, - 6457189536, - 6446412144, - 6446412992, - 6446413872, - 6457189584, - 6457186560, - 6446414256, - 6446416576, - 6446415120, - 6443742160, - 6446416272, - 6457190896, - 6457192720, + "vtable_address": 6465007496, + "methods": [ + 6446425088, + 6457191728, + 6446411664, + 6446413136, + 6446413312, + 6457191776, + 6457188752, + 6446413712, 6446416784, - 6446416912, - 6446416896, - 6457187520, - 6446421456, - 6457187520, - 6446422144 + 6446414288, + 6443742160, + 6446416064, + 6457193088, + 6457194912, + 6446417152, + 6446417232, + 6446417200 ], "bases": [ { @@ -505404,7 +505408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468299240, + "complete_object_locator": 6468303472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505413,25 +505417,25 @@ }, { "type_name": "MLEvent", - "vtable_address": 6465006600, + "vtable_address": 6465010696, "methods": [ - 6446458128, - 6457189536, - 6446433536, - 6446434688, - 6446434960, - 6457189584, - 6457186560, - 6446435280, - 6446436592, - 6446435760, + 6446458512, + 6457191728, + 6446433920, + 6446434480, + 6446434848, + 6457191776, + 6457188752, + 6446434864, + 6446436816, + 6446435824, 6443742160, - 6446436400, - 6457190896, - 6457192720, - 6446436784, - 6446437504, - 6446437488 + 6446436640, + 6457193088, + 6457194912, + 6446437168, + 6446437456, + 6446437424 ], "bases": [ { @@ -505465,7 +505469,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468299376, + "complete_object_locator": 6468303608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505474,88 +505478,25 @@ }, { "type_name": "MLGameState", - "vtable_address": 6465073576, + "vtable_address": 6465077688, "methods": [ - 6446635104, - 6457189536, - 6446612768, - 6446613184, - 6446613552, - 6457189584, - 6457186560, - 6446613568, - 6446614832, - 6446613968, + 6446635488, + 6457191728, + 6446612800, + 6446613488, + 6446613936, + 6457191776, + 6457188752, + 6446613952, + 6446615136, + 6446614336, 6443742160, - 6446614624, - 6457190896, - 6457192720, - 6446614848, - 6446614896, - 6446614880, - 6457187520, - 6446631008 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468299512, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "MLMatchState", - "vtable_address": 6465008824, - "methods": [ - 6446482080, - 6457189536, - 6446468528, - 6446469760, - 6446469888, - 6457189584, - 6457186560, - 6446470720, - 6446474128, - 6446472288, - 6443742160, - 6446473664, - 6457190896, - 6457192720, - 6446474832, - 6446475040, - 6446474960 + 6446614928, + 6457193088, + 6457194912, + 6446615232, + 6446615280, + 6446615264 ], "bases": [ { @@ -505589,7 +505530,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468299648, + "complete_object_locator": 6468303744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505597,32 +505538,93 @@ } }, { - "type_name": "MLPlayerState", - "vtable_address": 6465032440, + "type_name": "MLMatchState", + "vtable_address": 6465012776, "methods": [ - 6446596832, - 6457189536, - 6446548832, - 6446549600, - 6446550016, - 6457189584, - 6457186560, - 6446550032, - 6446554496, - 6446550800, + 6446482320, + 6457191728, + 6446468912, + 6446470144, + 6446470272, + 6457191776, + 6457188752, + 6446471104, + 6446474512, + 6446472672, + 6443742160, + 6446474048, + 6457193088, + 6457194912, + 6446475216, + 6446475424, + 6446475344 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468303880, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "MLPlayerState", + "vtable_address": 6465036536, + "methods": [ + 6446597216, + 6457191728, + 6446549216, + 6446549984, + 6446550400, + 6457191776, + 6457188752, + 6446550416, + 6446554880, + 6446551184, 6443742160, - 6446552944, - 6457190896, - 6457192720, - 6446554512, - 6446555376, - 6446555360, - 6457187520, - 6446594416, - 6457187520, - 6446595120, - 6457187520, - 6446595744 + 6446553328, + 6457193088, + 6457194912, + 6446554896, + 6446555760, + 6446555744, + 6457189712, + 6446594176, + 6457189712, + 6446595504, + 6457189712, + 6446596128 ], "bases": [ { @@ -505656,7 +505658,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468299784, + "complete_object_locator": 6468304016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505665,25 +505667,25 @@ }, { "type_name": "MLRoundState", - "vtable_address": 6465013552, + "vtable_address": 6465017648, "methods": [ - 6446505920, - 6457189536, - 6446498240, - 6446498848, - 6446498944, - 6457189584, - 6457186560, - 6446499712, - 6446501856, - 6446500528, + 6446506160, + 6457191728, + 6446498608, + 6446498928, + 6446499120, + 6457191776, + 6457188752, + 6446499200, + 6446501488, + 6446499728, 6443742160, - 6446501120, - 6457190896, - 6457192720, - 6446503744, - 6446504496, - 6446504464 + 6446501056, + 6457193088, + 6457194912, + 6446502656, + 6446504784, + 6446504768 ], "bases": [ { @@ -505717,7 +505719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468299920, + "complete_object_locator": 6468304152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505726,25 +505728,25 @@ }, { "type_name": "MLTick", - "vtable_address": 6464876864, + "vtable_address": 6464880960, "methods": [ - 6445802864, - 6457189536, - 6446662128, - 6446662480, - 6446662624, - 6457189584, - 6457186560, - 6446662640, - 6446663872, - 6446662960, + 6445803248, + 6457191728, + 6446662512, + 6446662864, + 6446663008, + 6457191776, + 6457188752, + 6446663024, + 6446664256, + 6446663344, 6443742160, - 6446663568, - 6457190896, - 6457192720, - 6446663904, - 6446664032, - 6446664000 + 6446663952, + 6457193088, + 6457194912, + 6446664272, + 6446664320, + 6446664304 ], "bases": [ { @@ -505778,7 +505780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468300056, + "complete_object_locator": 6468304288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505787,29 +505789,29 @@ }, { "type_name": "MLWeaponState", - "vtable_address": 6465024144, - "methods": [ - 6446538032, - 6457189536, - 6446516352, - 6446517792, - 6446518336, - 6457189584, - 6457186560, - 6446518416, - 6446521760, - 6446519200, - 6443742160, - 6446521072, - 6457190896, - 6457192720, - 6446522416, - 6446522912, - 6446522832, - 6457388960, - 6457389040, - 6457187520, - 6446536304 + "vtable_address": 6465028240, + "methods": [ + 6446538400, + 6457191728, + 6446516736, + 6446518096, + 6446518352, + 6457191776, + 6457188752, + 6446518448, + 6446522144, + 6446519136, + 6443742160, + 6446521328, + 6457193088, + 6457194912, + 6446522784, + 6446523248, + 6446523136, + 6457391152, + 6457391232, + 6457189712, + 6446536688 ], "bases": [ { @@ -505843,7 +505845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468300192, + "complete_object_locator": 6468304424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505852,27 +505854,27 @@ }, { "type_name": "MatchEndItemUpdates", - "vtable_address": 6465074664, - "methods": [ - 6446645520, - 6457189536, - 6446635760, - 6446636064, - 6446636112, - 6457189584, - 6457186560, - 6446636128, - 6446637552, - 6446636416, + "vtable_address": 6465078760, + "methods": [ + 6446645904, + 6457191728, + 6446636144, + 6446636448, + 6446636496, + 6457191776, + 6457188752, + 6446636512, + 6446637936, + 6446636800, 6443742160, - 6446637168, - 6457190896, - 6457192720, - 6446638368, - 6446639360, - 6446639344, - 6457187520, - 6446641040 + 6446637552, + 6457193088, + 6457194912, + 6446638736, + 6446639216, + 6446639200, + 6457189712, + 6446641424 ], "bases": [ { @@ -505906,7 +505908,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468347976, + "complete_object_locator": 6468352208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505915,25 +505917,25 @@ }, { "type_name": "OperationalStatisticDescription", - "vtable_address": 6464975536, + "vtable_address": 6464979632, "methods": [ - 6446263568, - 6457189536, - 6446253968, - 6446255264, - 6446255360, - 6457189584, - 6457186560, - 6446255536, - 6446257584, - 6446256304, + 6446263344, + 6457191728, + 6446254192, + 6446255648, + 6446255744, + 6457191776, + 6457188752, + 6446255920, + 6446257968, + 6446256528, 6443742160, - 6446257344, - 6457190896, - 6457192720, - 6446259088, - 6446259744, - 6446259664 + 6446257728, + 6457193088, + 6457194912, + 6446259472, + 6446260128, + 6446260048 ], "bases": [ { @@ -505967,7 +505969,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468348112, + "complete_object_locator": 6468352344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -505976,29 +505978,29 @@ }, { "type_name": "OperationalStatisticElement", - "vtable_address": 6464977360, + "vtable_address": 6464981456, "methods": [ - 6446299024, - 6457189536, - 6446278272, - 6446285856, - 6446286032, - 6457189584, - 6457186560, - 6446286096, - 6446288592, - 6446286704, + 6446299392, + 6457191728, + 6446278576, + 6446286240, + 6446286416, + 6457191776, + 6457188752, + 6446286480, + 6446288976, + 6446287088, 6443742160, - 6446288256, - 6457190896, - 6457192720, - 6446290640, - 6446292000, - 6446291840, - 6457187520, - 6446295136, - 6457187520, - 6446296720 + 6446288640, + 6457193088, + 6457194912, + 6446291024, + 6446292384, + 6446292224, + 6457189712, + 6446295520, + 6457189712, + 6446297104 ], "bases": [ { @@ -506032,7 +506034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468348248, + "complete_object_locator": 6468352480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506041,27 +506043,29 @@ }, { "type_name": "OperationalStatisticsPacket", - "vtable_address": 6464980560, - "methods": [ - 6446339520, - 6457189536, - 6446307296, - 6446307696, - 6446307888, - 6457189584, - 6457186560, - 6446308096, - 6446309488, - 6446308432, - 6443742160, - 6446309072, - 6457190896, - 6457192720, - 6446310064, - 6446316624, - 6446316592, - 6457187520, - 6446335664 + "vtable_address": 6464984656, + "methods": [ + 6446339904, + 6457191728, + 6446306272, + 6446308064, + 6446308256, + 6457191776, + 6457188752, + 6446308464, + 6446309792, + 6446308816, + 6443742160, + 6446309440, + 6457193088, + 6457194912, + 6446310448, + 6446317008, + 6446316976, + 6457189712, + 6446335792, + 6457391152, + 6457391232 ], "bases": [ { @@ -506095,7 +506099,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468348384, + "complete_object_locator": 6468352616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506104,25 +506108,25 @@ }, { "type_name": "OperationalVarValue", - "vtable_address": 6464983976, + "vtable_address": 6464987928, "methods": [ - 6446365760, - 6457189536, - 6446345024, - 6446346400, - 6446346528, - 6457189584, - 6457186560, - 6446346544, - 6446347776, - 6446346720, + 6446366144, + 6457191728, + 6446345392, + 6446346704, + 6446346816, + 6457191776, + 6457188752, + 6446346832, + 6446347984, + 6446347088, 6443742160, - 6446347472, - 6457190896, - 6457192720, - 6446348944, - 6446349376, - 6446349360 + 6446347680, + 6457193088, + 6457194912, + 6446348560, + 6446349744, + 6446349728 ], "bases": [ { @@ -506156,7 +506160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468348520, + "complete_object_locator": 6468352752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506165,27 +506169,27 @@ }, { "type_name": "PerFriendPreferences", - "vtable_address": 6465214392, - "methods": [ - 6447387872, - 6457189536, - 6447377072, - 6447377600, - 6447377680, - 6457189584, - 6457186560, - 6447377712, - 6447380592, - 6447378112, - 6443742160, - 6447379728, - 6457190896, - 6457192720, - 6447380768, - 6447380928, - 6447380912, - 6457187520, - 6447386752 + "vtable_address": 6465218472, + "methods": [ + 6447388112, + 6457191728, + 6447377312, + 6447377824, + 6447377920, + 6457191776, + 6457188752, + 6447378000, + 6447380816, + 6447378336, + 6443742160, + 6447379952, + 6457193088, + 6457194912, + 6447380992, + 6447381152, + 6447381136, + 6457189712, + 6447386976 ], "bases": [ { @@ -506219,7 +506223,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468397592, + "complete_object_locator": 6468401688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506228,7 +506232,7 @@ }, { "type_name": "PhysicsRagdollPose_t", - "vtable_address": 6464645704, + "vtable_address": 6464649784, "methods": [ 6444477376, 6444476720, @@ -506238,7 +506242,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468250856, + "complete_object_locator": 6468254952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506247,24 +506251,24 @@ }, { "type_name": "PlayerCommendationInfo", - "vtable_address": 6465005688, - "methods": [ - 6446453328, - 6457189536, - 6446441312, - 6446441568, - 6446441616, - 6457189584, - 6457186560, - 6446441632, - 6446442720, - 6446441760, - 6443742160, - 6446442352, - 6457190896, - 6457192720, - 6446442752, - 6446445040, + "vtable_address": 6465009784, + "methods": [ + 6446453712, + 6457191728, + 6446441696, + 6446441952, + 6446442000, + 6457191776, + 6457188752, + 6446442016, + 6446443104, + 6446442144, + 6443742160, + 6446442736, + 6457193088, + 6457194912, + 6446443136, + 6446445088, 6446444512 ], "bases": [ @@ -506299,7 +506303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468348656, + "complete_object_locator": 6468352888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506308,27 +506312,27 @@ }, { "type_name": "PlayerDecalDigitalSignature", - "vtable_address": 6465069176, + "vtable_address": 6465073272, "methods": [ - 6446618912, - 6457189536, - 6446586688, - 6446587072, - 6446587232, - 6457189584, - 6457186560, - 6446587248, - 6446590624, - 6446587808, + 6446619296, + 6457191728, + 6446587056, + 6446587456, + 6446587616, + 6457191776, + 6457188752, + 6446587632, + 6446591008, + 6446588192, 6443742160, - 6446589376, - 6457190896, - 6457192720, - 6446590640, - 6446590880, - 6446590864, - 6457187520, - 6446617232 + 6446589760, + 6457193088, + 6457194912, + 6446591024, + 6446591264, + 6446591248, + 6457189712, + 6446617616 ], "bases": [ { @@ -506362,7 +506366,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468348792, + "complete_object_locator": 6468353024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506371,27 +506375,27 @@ }, { "type_name": "PlayerMedalsInfo", - "vtable_address": 6465007592, - "methods": [ - 6446475104, - 6457189536, - 6446460352, - 6446460544, - 6446460608, - 6457189584, - 6457186560, - 6446460640, - 6446461648, - 6446460752, + "vtable_address": 6465011688, + "methods": [ + 6446475488, + 6457191728, + 6446460736, + 6446460928, + 6446460992, + 6457191776, + 6457188752, + 6446461008, + 6446462032, + 6446461120, 6443742160, - 6446461328, - 6457190896, - 6457192720, - 6446462224, - 6446466208, - 6446466192, - 6457187520, - 6446470960 + 6446461712, + 6457193088, + 6457194912, + 6446462272, + 6446465392, + 6446464768, + 6457189712, + 6446471344 ], "bases": [ { @@ -506425,7 +506429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468348928, + "complete_object_locator": 6468353160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506434,27 +506438,29 @@ }, { "type_name": "PlayerQuestData", - "vtable_address": 6464906256, - "methods": [ - 6445951440, - 6457189536, - 6445876592, - 6445881008, - 6445881456, - 6457189584, - 6457186560, - 6445881488, - 6445884432, - 6445882528, - 6443742160, - 6445883744, - 6457190896, - 6457192720, - 6445885104, - 6445886688, + "vtable_address": 6464910352, + "methods": [ + 6445951824, + 6457191728, + 6445876976, + 6445881392, + 6445881840, + 6457191776, + 6457188752, + 6445881872, + 6445884816, + 6445882912, + 6443742160, + 6445884128, + 6457193088, + 6457194912, + 6445885472, + 6445886432, 6445886416, - 6457187520, - 6445948704 + 6457189712, + 6445949088, + 6457189712, + 6445950768 ], "bases": [ { @@ -506488,7 +506494,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468349064, + "complete_object_locator": 6468353296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506497,25 +506503,25 @@ }, { "type_name": "PlayerQuestData_QuestItemData", - "vtable_address": 6464883168, - "methods": [ - 6445865408, - 6457189536, - 6445847184, - 6445847504, - 6445847616, - 6457189584, - 6457186560, - 6445847712, - 6445850288, - 6445848032, - 6443742160, - 6445849376, - 6457190896, - 6457192720, - 6445851136, - 6445851648, - 6445851616 + "vtable_address": 6464887264, + "methods": [ + 6445865792, + 6457191728, + 6445847568, + 6445847888, + 6445848000, + 6457191776, + 6457188752, + 6445848096, + 6445850512, + 6445848416, + 6443742160, + 6445849600, + 6457193088, + 6457194912, + 6445851520, + 6445851888, + 6445851856 ], "bases": [ { @@ -506549,7 +506555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468349200, + "complete_object_locator": 6468353432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506558,27 +506564,29 @@ }, { "type_name": "PlayerRankingInfo", - "vtable_address": 6465004200, - "methods": [ - 6446432192, - 6457189536, - 6446391808, - 6446392752, - 6446393072, - 6457189584, - 6457186560, - 6446393104, - 6446399168, - 6446394816, + "vtable_address": 6465008280, + "methods": [ + 6446432496, + 6457191728, + 6446392160, + 6446392784, + 6446393008, + 6457191776, + 6457188752, + 6446393120, + 6446398544, + 6446394208, 6443742160, - 6446397728, - 6457190896, - 6457192720, - 6446400992, - 6446401568, - 6446401408, - 6457187520, - 6446427472 + 6446397104, + 6457193088, + 6457194912, + 6446401344, + 6446401792, + 6446401632, + 6457189712, + 6446427536, + 6457189712, + 6446428640 ], "bases": [ { @@ -506612,7 +506620,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468349336, + "complete_object_locator": 6468353568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506621,25 +506629,25 @@ }, { "type_name": "PlayerRankingInfo_PerMapRank", - "vtable_address": 6464985752, - "methods": [ - 6446385456, - 6457189536, - 6446374720, - 6446375136, - 6446375312, - 6457189584, - 6457186560, - 6446375552, - 6446378864, - 6446376096, + "vtable_address": 6464989704, + "methods": [ + 6446385680, + 6457191728, + 6446375024, + 6446375344, + 6446375408, + 6457191776, + 6457188752, + 6446375488, + 6446377392, + 6446375808, 6443742160, - 6446378032, - 6457190896, - 6457192720, - 6446379776, - 6446381696, - 6446381504 + 6446377024, + 6457193088, + 6457194912, + 6446379920, + 6446382064, + 6446381888 ], "bases": [ { @@ -506673,7 +506681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468349472, + "complete_object_locator": 6468353704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506682,18 +506690,18 @@ }, { "type_name": "PredictedDamageTag_t", - "vtable_address": 6466192560, + "vtable_address": 6466196720, "methods": [ - 6451942560, - 6451913424, - 6451913584, - 6451913568, - 6451913200 + 6451944144, + 6451915008, + 6451915168, + 6451915152, + 6451914784 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468635936, + "complete_object_locator": 6468640032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506702,7 +506710,7 @@ }, { "type_name": "PredictionRecord", - "vtable_address": 6464672832, + "vtable_address": 6464676912, "methods": [ 6444572576 ], @@ -506738,7 +506746,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468258448, + "complete_object_locator": 6468262544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506747,27 +506755,27 @@ }, { "type_name": "ProtoFlattenedSerializerField_t", - "vtable_address": 6465192288, - "methods": [ - 6447275952, - 6457189536, - 6447247840, - 6447248192, - 6447248384, - 6457189584, - 6457186560, - 6447248400, - 6447251728, - 6447248992, - 6443742160, - 6447250512, - 6457190896, - 6457192720, - 6447251744, + "vtable_address": 6465196368, + "methods": [ + 6447276176, + 6457191728, + 6447248064, + 6447248416, + 6447248608, + 6457191776, + 6457188752, + 6447248624, 6447251952, - 6447251936, - 6457187520, - 6447274128 + 6447249216, + 6443742160, + 6447250736, + 6457193088, + 6457194912, + 6447251968, + 6447252176, + 6447252000, + 6457189712, + 6447274416 ], "bases": [ { @@ -506801,7 +506809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389488, + "complete_object_locator": 6468393584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506810,27 +506818,27 @@ }, { "type_name": "ProtoFlattenedSerializerField_t_polymorphic_field_t", - "vtable_address": 6465178360, + "vtable_address": 6465182440, "methods": [ - 6447243152, - 6457189536, - 6447238528, - 6447238816, - 6447238848, - 6457189584, - 6457186560, - 6447238864, - 6447239856, - 6447239056, + 6447243072, + 6457191728, + 6447238688, + 6447239040, + 6447239072, + 6457191776, + 6457188752, + 6447239088, + 6447240080, + 6447239280, 6443742160, - 6447239552, - 6457190896, - 6457192720, - 6447240560, - 6447241360, - 6447241344, - 6457388960, - 6457389040 + 6447239776, + 6457193088, + 6457194912, + 6447240784, + 6447241584, + 6447241568, + 6457391152, + 6457391232 ], "bases": [ { @@ -506864,7 +506872,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389624, + "complete_object_locator": 6468393720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506873,25 +506881,25 @@ }, { "type_name": "ProtoFlattenedSerializer_t", - "vtable_address": 6465193392, + "vtable_address": 6465197472, "methods": [ - 6447303552, - 6457189536, - 6447296448, - 6447296576, - 6447296640, - 6457189584, - 6457186560, - 6447296656, - 6447298240, - 6447297120, + 6447303760, + 6457191728, + 6447296672, + 6447296800, + 6447296864, + 6457191776, + 6457188752, + 6447296880, + 6447298464, + 6447297200, 6443742160, - 6447297792, - 6457190896, - 6457192720, - 6447298256, - 6447298304, - 6447298288 + 6447298016, + 6457193088, + 6457194912, + 6447298480, + 6447298528, + 6447298512 ], "bases": [ { @@ -506925,7 +506933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468389760, + "complete_object_locator": 6468393856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506934,27 +506942,27 @@ }, { "type_name": "PublishedFileDetails", - "vtable_address": 6465095712, + "vtable_address": 6465099792, "methods": [ - 6447020320, - 6457189536, - 6446897568, - 6446899616, - 6446900832, - 6457189584, - 6457186560, - 6446900848, - 6446913152, - 6446903520, + 6447020544, + 6457191728, + 6446897792, + 6446899840, + 6446901056, + 6457191776, + 6457188752, + 6446901088, + 6446913376, + 6446903744, 6443742160, - 6446909072, - 6457190896, - 6457192720, - 6446913424, - 6446914288, - 6446914272, - 6457187520, - 6447020080 + 6446909296, + 6457193088, + 6457194912, + 6446913648, + 6446914528, + 6446914496, + 6457189712, + 6447020304 ], "bases": [ { @@ -506988,7 +506996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468399800, + "complete_object_locator": 6468403896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -506997,27 +507005,27 @@ }, { "type_name": "PublishedFileDetails_Child", - "vtable_address": 6465080440, + "vtable_address": 6465084520, "methods": [ - 6446858352, - 6457189536, - 6446852656, - 6446852752, - 6446852784, - 6457189584, - 6457186560, - 6446852800, - 6446853904, - 6446852928, - 6443742160, - 6446853520, - 6457190896, - 6457192720, - 6446853920, - 6446853952, - 6446853936, - 6457187520, - 6446856592 + 6446858592, + 6457191728, + 6446852880, + 6446852976, + 6446853008, + 6457191776, + 6457188752, + 6446853024, + 6446854128, + 6446853152, + 6443742160, + 6446853744, + 6457193088, + 6457194912, + 6446854144, + 6446854176, + 6446854160, + 6457189712, + 6446856816 ], "bases": [ { @@ -507051,7 +507059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468399936, + "complete_object_locator": 6468404032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507060,25 +507068,25 @@ }, { "type_name": "PublishedFileDetails_KVTag", - "vtable_address": 6465083400, + "vtable_address": 6465087480, "methods": [ - 6446870192, - 6457189536, - 6446865184, + 6446870416, + 6457191728, 6446865408, - 6446865504, - 6457189584, - 6457186560, - 6446865520, - 6446866608, - 6446865792, - 6443742160, - 6446866272, - 6457190896, - 6457192720, - 6446866624, - 6446867712, - 6446867456 + 6446865632, + 6446865728, + 6457191776, + 6457188752, + 6446865744, + 6446866832, + 6446866032, + 6443742160, + 6446866672, + 6457193088, + 6457194912, + 6446866992, + 6446867936, + 6446867920 ], "bases": [ { @@ -507112,7 +507120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468400072, + "complete_object_locator": 6468404168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507121,29 +507129,29 @@ }, { "type_name": "PublishedFileDetails_Preview", - "vtable_address": 6465079160, - "methods": [ - 6446847616, - 6457189536, - 6447437440, - 6447438704, - 6447438848, - 6457189584, - 6457186560, - 6447438864, - 6447440688, - 6447439408, - 6443742160, - 6447440192, - 6457190896, - 6457192720, - 6447441040, - 6447442608, - 6447442576, - 6457187520, - 6446845616, - 6457187520, - 6446846816 + "vtable_address": 6465083240, + "methods": [ + 6446847840, + 6457191728, + 6447437664, + 6447438928, + 6447439072, + 6457191776, + 6457188752, + 6447439360, + 6447440928, + 6447439632, + 6443742160, + 6447440416, + 6457193088, + 6457194912, + 6447441328, + 6447442832, + 6447442816, + 6457189712, + 6446845840, + 6457189712, + 6446847040 ], "bases": [ { @@ -507177,7 +507185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468400208, + "complete_object_locator": 6468404304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507186,25 +507194,25 @@ }, { "type_name": "PublishedFileDetails_Tag", - "vtable_address": 6465218104, - "methods": [ - 6447433008, - 6457189536, - 6447427712, - 6447428208, - 6447428384, - 6457189584, - 6457186560, - 6447428416, - 6447431456, - 6447428832, - 6443742160, - 6447430544, - 6457190896, - 6457192720, - 6447431472, - 6447431696, - 6447431648 + "vtable_address": 6465222184, + "methods": [ + 6447433232, + 6457191728, + 6447427936, + 6447428544, + 6447428624, + 6457191776, + 6457188752, + 6447428960, + 6447431680, + 6447430144, + 6443742160, + 6447431520, + 6457193088, + 6457194912, + 6447431712, + 6447431984, + 6447431904 ], "bases": [ { @@ -507238,7 +507246,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468400344, + "complete_object_locator": 6468404440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507247,27 +507255,25 @@ }, { "type_name": "PublishedFileDetails_VoteData", - "vtable_address": 6465084856, - "methods": [ - 6446887680, - 6457189536, - 6446875680, - 6446877104, - 6446877152, - 6457189584, - 6457186560, - 6446877184, - 6446880880, - 6446878768, - 6443742160, - 6446880560, - 6457190896, - 6457192720, - 6446882208, - 6446884400, - 6446884384, - 6457187520, - 6446886848 + "vtable_address": 6465088936, + "methods": [ + 6446887904, + 6457191728, + 6446875904, + 6446877328, + 6446877392, + 6457191776, + 6457188752, + 6446878880, + 6446881328, + 6446880240, + 6443742160, + 6446880784, + 6457193088, + 6457194912, + 6446883024, + 6446884784, + 6446884608 ], "bases": [ { @@ -507301,7 +507307,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468400480, + "complete_object_locator": 6468404576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507310,9 +507316,9 @@ }, { "type_name": "RotationTrack_t", - "vtable_address": 6464674680, + "vtable_address": 6464678760, "methods": [ - 6457087472 + 6457089664 ], "bases": [ { @@ -507332,7 +507338,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468259224, + "complete_object_locator": 6468263320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507341,9 +507347,9 @@ }, { "type_name": "ScaleTrack_t", - "vtable_address": 6464674712, + "vtable_address": 6464678792, "methods": [ - 6457087872 + 6457090064 ], "bases": [ { @@ -507363,7 +507369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468259640, + "complete_object_locator": 6468263736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507372,25 +507378,25 @@ }, { "type_name": "ScoreLeaderboardData", - "vtable_address": 6464880752, + "vtable_address": 6464884848, "methods": [ - 6445836368, - 6457189536, - 6445811440, - 6445813568, - 6445813968, - 6457189584, - 6457186560, - 6445814000, - 6445817040, - 6445815696, + 6445836752, + 6457191728, + 6445811056, + 6445813936, + 6445814336, + 6457191776, + 6457188752, + 6445814368, + 6445817344, + 6445816080, 6443742160, - 6445816592, - 6457190896, - 6457192720, - 6445819280, - 6445822224, - 6445821616 + 6445816896, + 6457193088, + 6457194912, + 6445819664, + 6445822464, + 6445822016 ], "bases": [ { @@ -507424,7 +507430,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468349608, + "complete_object_locator": 6468353840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507433,25 +507439,25 @@ }, { "type_name": "ScoreLeaderboardData_AccountEntries", - "vtable_address": 6464877600, + "vtable_address": 6464881696, "methods": [ - 6445804592, - 6457189536, - 6446666880, - 6446668960, - 6446669136, - 6457189584, - 6457186560, - 6446669664, - 6446673456, - 6446671728, + 6445804976, + 6457191728, + 6446667264, + 6446669328, + 6446669504, + 6457191776, + 6457188752, + 6446669968, + 6446672304, + 6446670624, 6443742160, - 6446673216, - 6457190896, - 6457192720, - 6446676560, - 6446677008, - 6446676992 + 6446671216, + 6457193088, + 6457194912, + 6446675696, + 6446677248, + 6446677216 ], "bases": [ { @@ -507485,7 +507491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468349744, + "complete_object_locator": 6468353976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507494,25 +507500,25 @@ }, { "type_name": "ScoreLeaderboardData_Entry", - "vtable_address": 6465076280, - "methods": [ - 6446661024, - 6457189536, - 6446653040, - 6446653856, - 6446653904, - 6457189584, - 6457186560, - 6446654224, - 6446655584, - 6446654336, - 6443742160, - 6446655312, - 6457190896, - 6457192720, - 6446656640, - 6446656960, - 6446656944 + "vtable_address": 6465080376, + "methods": [ + 6446661408, + 6457191728, + 6446653424, + 6446654240, + 6446654288, + 6457191776, + 6457188752, + 6446654608, + 6446655968, + 6446654720, + 6443742160, + 6446655696, + 6457193088, + 6457194912, + 6446657024, + 6446657344, + 6446657328 ], "bases": [ { @@ -507546,7 +507552,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468349880, + "complete_object_locator": 6468354112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507555,18 +507561,18 @@ }, { "type_name": "SellbackPurchaseEntry_t", - "vtable_address": 6465658096, + "vtable_address": 6465662272, "methods": [ - 6448497360, - 6448478368, - 6448478432, - 6448478400, - 6448478320 + 6448498928, + 6448479936, + 6448480000, + 6448479968, + 6448479888 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468483720, + "complete_object_locator": 6468487816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507575,18 +507581,18 @@ }, { "type_name": "ServerAuthoritativeWeaponSlot_t", - "vtable_address": 6465693280, + "vtable_address": 6465697456, "methods": [ - 6448712080, - 6448700064, - 6448700112, - 6448700096, - 6448699984 + 6448713648, + 6448701632, + 6448701680, + 6448701664, + 6448701552 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468488416, + "complete_object_locator": 6468492512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507595,25 +507601,25 @@ }, { "type_name": "ServerHltvInfo", - "vtable_address": 6465026240, - "methods": [ - 6446561472, - 6457189536, - 6446527776, - 6446529104, - 6446529264, - 6457189584, - 6457186560, - 6446529296, - 6446534384, - 6446530112, + "vtable_address": 6465030336, + "methods": [ + 6446561248, + 6457191728, + 6446528160, + 6446529488, + 6446529648, + 6457191776, + 6457188752, + 6446529680, + 6446534576, + 6446530496, 6443742160, - 6446532496, - 6457190896, - 6457192720, - 6446534784, - 6446536112, - 6446535856 + 6446532688, + 6457193088, + 6457194912, + 6446534976, + 6446536496, + 6446536240 ], "bases": [ { @@ -507647,7 +507653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350016, + "complete_object_locator": 6468354248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -507656,13 +507662,13 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 6466023152, + "vtable_address": 6466027360, "methods": [ - 6450922944, - 6449420016, - 6449420000, - 6449420032, - 6449420112 + 6450924512, + 6449421584, + 6449421568, + 6449421600, + 6449421680 ], "bases": [ { @@ -507738,7 +507744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468582336, + "complete_object_locator": 6468586432, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -507747,25 +507753,25 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 6466023200, + "vtable_address": 6466027408, "methods": [ - 6450920992, - 6457189536, - 6445788016, - 6445788576, - 6445788720, - 6457189584, - 6457186560, - 6445788736, - 6445789536, - 6445788896, + 6450922560, + 6457191728, + 6445787152, + 6445788944, + 6445789072, + 6457191776, + 6457188752, + 6445789088, + 6445789840, + 6445789264, 6443742160, - 6445789392, - 6457190896, - 6457192720, - 6445789648, - 6445792784, - 6445792768 + 6445789696, + 6457193088, + 6457194912, + 6445789952, + 6445793168, + 6445793152 ], "bases": [ { @@ -507841,7 +507847,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468582496, + "complete_object_locator": 6468586592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -507850,13 +507856,13 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 6465808648, + "vtable_address": 6465812840, "methods": [ - 6449420736, - 6449420384, - 6449420368, - 6449420400, - 6449420480 + 6449422304, + 6449421952, + 6449421936, + 6449421968, + 6449422048 ], "bases": [ { @@ -507932,7 +507938,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468514288, + "complete_object_locator": 6468518384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -507941,25 +507947,25 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 6465808696, - "methods": [ - 6449406292, - 6457189536, - 6445865808, - 6445867008, - 6445867584, - 6457189584, - 6457186560, - 6445867600, - 6445869440, - 6445867936, - 6443742160, - 6445868880, - 6457190896, - 6457192720, - 6445870928, - 6445872160, - 6445872144 + "vtable_address": 6465812888, + "methods": [ + 6449407844, + 6457191728, + 6445866112, + 6445867088, + 6445867504, + 6457191776, + 6457188752, + 6445867840, + 6445869744, + 6445868320, + 6443742160, + 6445869120, + 6457193088, + 6457194912, + 6445871008, + 6445872544, + 6445872512 ], "bases": [ { @@ -508035,7 +508041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468514600, + "complete_object_locator": 6468518696, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -508044,13 +508050,13 @@ }, { "type_name": "Source1LegacyListenEvents_t", - "vtable_address": 6465817848, + "vtable_address": 6465822040, "methods": [ - 6449499488, - 6449515744, - 6449515728, - 6449595184, - 6449525664 + 6449501056, + 6449517312, + 6449517296, + 6449596752, + 6449527232 ], "bases": [ { @@ -508126,7 +508132,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468524184, + "complete_object_locator": 6468528280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -508135,25 +508141,25 @@ }, { "type_name": "Source1LegacyListenEvents_t", - "vtable_address": 6465817896, - "methods": [ - 6449496148, - 6457189536, - 6445826128, - 6445826464, - 6445826672, - 6457189584, - 6457186560, - 6445827072, - 6445828256, - 6445827376, + "vtable_address": 6465822088, + "methods": [ + 6449497716, + 6457191728, + 6445826496, + 6445826704, + 6445826768, + 6457191776, + 6457188752, + 6445826976, + 6445828448, + 6445827184, 6443742160, - 6445827936, - 6457190896, - 6457192720, - 6445828288, - 6445828544, - 6445828528 + 6445828128, + 6457193088, + 6457194912, + 6445828656, + 6445828848, + 6445828832 ], "bases": [ { @@ -508229,7 +508235,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468524496, + "complete_object_locator": 6468528592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -508238,13 +508244,13 @@ }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 6466139928, + "vtable_address": 6466144136, "methods": [ - 6451602848, - 6451602496, - 6451602480, - 6451602512, - 6451602592 + 6451604432, + 6451604080, + 6451604064, + 6451604096, + 6451604176 ], "bases": [ { @@ -508320,7 +508326,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616272, + "complete_object_locator": 6468620368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -508329,25 +508335,25 @@ }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 6466139976, - "methods": [ - 6451601588, - 6457189536, - 6446873856, - 6446874288, - 6446874432, - 6457189584, - 6457186560, - 6446874464, - 6446875488, - 6446874832, - 6443742160, - 6446875312, - 6457190896, - 6457192720, - 6446875648, + "vtable_address": 6466144184, + "methods": [ + 6451603172, + 6457191728, + 6446874096, + 6446874512, + 6446874672, + 6457191776, + 6457188752, + 6446874752, 6446875712, - 6446875696 + 6446875056, + 6443742160, + 6446875536, + 6457193088, + 6457194912, + 6446875872, + 6446876256, + 6446875920 ], "bases": [ { @@ -508423,7 +508429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468616584, + "complete_object_locator": 6468620680, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -508432,13 +508438,13 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 6466152720, + "vtable_address": 6466156928, "methods": [ - 6451616096, - 6451617056, - 6451617040, - 6451632176, - 6451617376 + 6451617680, + 6451618640, + 6451618624, + 6451633760, + 6451618960 ], "bases": [ { @@ -508514,7 +508520,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621504, + "complete_object_locator": 6468625600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -508523,25 +508529,25 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 6466152768, + "vtable_address": 6466156976, "methods": [ - 6451615100, - 6457189536, - 6446931472, - 6446932224, + 6451616684, + 6457191728, + 6446931696, 6446932448, - 6457189584, - 6457186560, - 6446932464, - 6446934640, - 6446933248, + 6446932672, + 6457191776, + 6457188752, + 6446932688, + 6446934864, + 6446933488, 6443742160, - 6446934240, - 6457190896, - 6457192720, - 6446934944, - 6446936512, - 6446936336 + 6446934464, + 6457193088, + 6457194912, + 6446935344, + 6446936736, + 6446936720 ], "bases": [ { @@ -508617,7 +508623,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468621816, + "complete_object_locator": 6468625912, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -508626,13 +508632,13 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 6466140440, + "vtable_address": 6466144648, "methods": [ - 6451603536, - 6451603184, - 6451603168, - 6451603200, - 6451603280 + 6451605120, + 6451604768, + 6451604752, + 6451604784, + 6451604864 ], "bases": [ { @@ -508708,7 +508714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468617064, + "complete_object_locator": 6468621160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -508717,25 +508723,25 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 6466140488, - "methods": [ - 6451601612, - 6457189536, - 6446947344, - 6446948720, - 6446948848, - 6457189584, - 6457186560, - 6446949552, - 6446951088, - 6446950160, - 6443742160, - 6446950768, - 6457190896, - 6457192720, - 6446951424, - 6446952512, - 6446952496 + "vtable_address": 6466144696, + "methods": [ + 6451603196, + 6457191728, + 6446947568, + 6446948944, + 6446949760, + 6457191776, + 6457188752, + 6446949776, + 6446951312, + 6446950400, + 6443742160, + 6446950992, + 6457193088, + 6457194912, + 6446951648, + 6446952736, + 6446952720 ], "bases": [ { @@ -508811,7 +508817,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468617376, + "complete_object_locator": 6468621472, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -508820,13 +508826,13 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 6466140888, + "vtable_address": 6466145096, "methods": [ - 6451604224, - 6451603872, - 6451603856, - 6451603888, - 6451603968 + 6451605808, + 6451605456, + 6451605440, + 6451605472, + 6451605552 ], "bases": [ { @@ -508902,7 +508908,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468617768, + "complete_object_locator": 6468621864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -508911,25 +508917,25 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 6466140936, + "vtable_address": 6466145144, "methods": [ - 6451601636, - 6457189536, - 6446964880, - 6446965744, - 6446965952, - 6457189584, - 6457186560, - 6446965984, - 6446968288, - 6446966816, + 6451603220, + 6457191728, + 6446965104, + 6446965968, + 6446966192, + 6457191776, + 6457188752, + 6446966688, + 6446968912, + 6446967344, 6443742160, - 6446967696, - 6457190896, - 6457192720, - 6446970656, - 6446971488, - 6446971456 + 6446968304, + 6457193088, + 6457194912, + 6446970880, + 6446971712, + 6446971696 ], "bases": [ { @@ -509005,7 +509011,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618080, + "complete_object_locator": 6468622176, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -509014,13 +509020,13 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 6466141360, + "vtable_address": 6466145568, "methods": [ - 6451604912, - 6451604560, - 6451604544, - 6451604576, - 6451604656 + 6451606496, + 6451606144, + 6451606128, + 6451606160, + 6451606240 ], "bases": [ { @@ -509096,7 +509102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618472, + "complete_object_locator": 6468622568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -509105,25 +509111,25 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 6466141408, - "methods": [ - 6451601660, - 6457189536, - 6446978160, - 6446979184, - 6446979312, - 6457189584, - 6457186560, - 6446979744, - 6446981904, - 6446980080, - 6443742160, - 6446981360, - 6457190896, - 6457192720, - 6446982864, - 6446983072, - 6446983056 + "vtable_address": 6466145616, + "methods": [ + 6451603244, + 6457191728, + 6446978384, + 6446979408, + 6446979952, + 6457191776, + 6457188752, + 6446979968, + 6446982128, + 6446980608, + 6443742160, + 6446981808, + 6457193088, + 6457194912, + 6446983088, + 6446983296, + 6446983280 ], "bases": [ { @@ -509199,7 +509205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468618784, + "complete_object_locator": 6468622880, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -509208,13 +509214,13 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 6466141840, + "vtable_address": 6466146048, "methods": [ - 6451605696, - 6451605344, - 6451605328, - 6451605360, - 6451605440 + 6451607280, + 6451606928, + 6451606912, + 6451606944, + 6451607024 ], "bases": [ { @@ -509290,7 +509296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619176, + "complete_object_locator": 6468623272, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -509299,25 +509305,25 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 6466141888, + "vtable_address": 6466146096, "methods": [ - 6451601684, - 6457189536, - 6447159888, - 6447160352, - 6447160512, - 6457189584, - 6457186560, - 6447160528, - 6447161872, - 6447160864, + 6451603268, + 6457191728, + 6447160112, + 6447160576, + 6447160736, + 6457191776, + 6457188752, + 6447160752, + 6447162096, + 6447161104, 6443742160, - 6447161568, - 6457190896, - 6457192720, - 6447161904, - 6447162704, - 6447162320 + 6447161792, + 6457193088, + 6457194912, + 6447162128, + 6447162928, + 6447162544 ], "bases": [ { @@ -509393,7 +509399,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468619488, + "complete_object_locator": 6468623584, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -509402,13 +509408,13 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 6466154824, + "vtable_address": 6466159032, "methods": [ - 6451652640, - 6451652016, - 6451652000, - 6451652032, - 6451652112 + 6451654320, + 6451653696, + 6451653680, + 6451653712, + 6451653792 ], "bases": [ { @@ -509484,7 +509490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468622648, + "complete_object_locator": 6468626744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -509493,25 +509499,25 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 6466154872, + "vtable_address": 6466159080, "methods": [ - 6451656844, - 6457189536, - 6447017344, - 6447017808, - 6447017968, - 6457189584, - 6457186560, - 6447017984, - 6447019360, - 6447018336, + 6451658524, + 6457191728, + 6447017568, + 6447018032, + 6447018192, + 6457191776, + 6457188752, + 6447018208, + 6447019584, + 6447018560, 6443742160, - 6447019008, - 6457190896, - 6457192720, - 6447019376, - 6447019568, - 6447019552 + 6447019232, + 6457193088, + 6457194912, + 6447019600, + 6447019792, + 6447019776 ], "bases": [ { @@ -509587,7 +509593,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468622960, + "complete_object_locator": 6468627056, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -509596,13 +509602,13 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 6466160072, + "vtable_address": 6466164280, "methods": [ - 6451664192, - 6451663840, - 6451663824, - 6451663856, - 6451663936 + 6451665872, + 6451665520, + 6451665504, + 6451665536, + 6451665616 ], "bases": [ { @@ -509678,7 +509684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468622080, + "complete_object_locator": 6468626176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -509687,25 +509693,25 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 6466160120, + "vtable_address": 6466164328, "methods": [ - 6451656820, - 6457189536, - 6446993696, - 6446994272, - 6446994432, - 6457189584, - 6457186560, - 6446994448, - 6446995920, - 6446994816, + 6451658500, + 6457191728, + 6446993936, + 6446994496, + 6446994656, + 6457191776, + 6457188752, + 6446994672, + 6446996144, + 6446995040, 6443742160, - 6446995504, - 6457190896, - 6457192720, - 6446996064, - 6446996768, - 6446996752 + 6446995792, + 6457193088, + 6457194912, + 6446996288, + 6446996992, + 6446996976 ], "bases": [ { @@ -509781,7 +509787,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468622392, + "complete_object_locator": 6468626488, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -509790,13 +509796,13 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 6466155352, + "vtable_address": 6466159560, "methods": [ - 6451654784, - 6451654432, - 6451654416, - 6451654448, - 6451654528 + 6451656464, + 6451656112, + 6451656096, + 6451656128, + 6451656208 ], "bases": [ { @@ -509872,7 +509878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625048, + "complete_object_locator": 6468629144, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -509881,25 +509887,25 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 6466155400, - "methods": [ - 6451656940, - 6457189536, - 6447200144, - 6447200656, - 6447200848, - 6457189584, - 6457186560, - 6447200880, - 6447202720, - 6447201280, + "vtable_address": 6466159608, + "methods": [ + 6451658620, + 6457191728, + 6447200368, + 6447200912, + 6447201088, + 6457191776, + 6457188752, + 6447201152, + 6447202944, + 6447201952, 6443742160, - 6447202288, - 6457190896, - 6457192720, - 6447203504, - 6447205680, - 6447205648 + 6447202704, + 6457193088, + 6457194912, + 6447203744, + 6447205968, + 6447205888 ], "bases": [ { @@ -509975,7 +509981,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625360, + "complete_object_locator": 6468629456, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -509984,13 +509990,13 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 6466159096, + "vtable_address": 6466163304, "methods": [ - 6451662848, - 6451662496, - 6451662480, - 6451662512, - 6451662592 + 6451664528, + 6451664176, + 6451664160, + 6451664192, + 6451664272 ], "bases": [ { @@ -510066,7 +510072,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623216, + "complete_object_locator": 6468627312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -510075,25 +510081,25 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 6466159144, - "methods": [ - 6451656868, - 6457189536, - 6447062816, - 6447064432, - 6447064640, - 6457189584, - 6457186560, - 6447064656, - 6447066176, - 6447065312, + "vtable_address": 6466163352, + "methods": [ + 6451658548, + 6457191728, + 6447063040, + 6447064800, + 6447064864, + 6457191776, + 6457188752, + 6447064880, + 6447066400, + 6447065536, 6443742160, - 6447066064, - 6457190896, - 6457192720, - 6447066224, - 6447066416, - 6447066384 + 6447066288, + 6457193088, + 6457194912, + 6447066448, + 6447066640, + 6447066624 ], "bases": [ { @@ -510169,7 +510175,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623528, + "complete_object_locator": 6468627624, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -510178,13 +510184,13 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 6466159616, + "vtable_address": 6466163824, "methods": [ - 6451663520, - 6451663168, - 6451663152, - 6451663184, - 6451663264 + 6451665200, + 6451664848, + 6451664832, + 6451664864, + 6451664944 ], "bases": [ { @@ -510260,7 +510266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468623912, + "complete_object_locator": 6468628008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -510269,25 +510275,25 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 6466159664, - "methods": [ - 6451656892, - 6457189536, - 6447074544, - 6447074976, - 6447075120, - 6457189584, - 6457186560, - 6447075136, - 6447076400, - 6447075440, + "vtable_address": 6466163872, + "methods": [ + 6451658572, + 6457191728, + 6447074768, + 6447075200, + 6447075344, + 6457191776, + 6457188752, + 6447075360, + 6447076624, + 6447075664, 6443742160, - 6447076032, - 6457190896, - 6457192720, - 6447076432, - 6447077456, - 6447076912 + 6447076416, + 6457193088, + 6457194912, + 6447076656, + 6447077680, + 6447077376 ], "bases": [ { @@ -510363,7 +510369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624224, + "complete_object_locator": 6468628320, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -510372,13 +510378,13 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 6466054456, + "vtable_address": 6466058664, "methods": [ - 6451088992, - 6451093440, - 6451093424, - 6451121552, - 6451096352 + 6451090560, + 6451095008, + 6451094992, + 6451123120, + 6451097920 ], "bases": [ { @@ -510454,7 +510460,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590672, + "complete_object_locator": 6468594768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -510463,25 +510469,25 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 6466054504, + "vtable_address": 6466058712, "methods": [ - 6451086540, - 6457189536, - 6447171008, - 6447172352, - 6447172608, - 6457189584, - 6457186560, - 6447172624, - 6447175328, - 6447173232, + 6451088108, + 6457191728, + 6447171232, + 6447172576, + 6447172832, + 6457191776, + 6457188752, + 6447172848, + 6447175552, + 6447173456, 6443742160, - 6447174560, - 6457190896, - 6457192720, - 6447175408, - 6447175440, - 6447175424 + 6447174784, + 6457193088, + 6457194912, + 6447175632, + 6447175664, + 6447175648 ], "bases": [ { @@ -510557,7 +510563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468590984, + "complete_object_locator": 6468595080, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -510566,9 +510572,9 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 6465373800, + "vtable_address": 6465377960, "methods": [ - 6447929200, + 6447930768, 6447750640, 6447750624, 6447766432, @@ -510648,7 +510654,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468437472, + "complete_object_locator": 6468441568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -510657,25 +510663,25 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 6465373848, - "methods": [ - 6447930356, - 6457189536, - 6446268720, - 6446270640, - 6446270912, - 6457189584, - 6457186560, - 6446271088, - 6446275024, - 6446271824, + "vtable_address": 6465378008, + "methods": [ + 6447931924, + 6457191728, + 6446269104, + 6446270320, + 6446270880, + 6457191776, + 6457188752, + 6446270896, + 6446275392, + 6446271904, 6443742160, - 6446273696, - 6457190896, - 6457192720, - 6446275216, - 6446282912, - 6446281584 + 6446274080, + 6457193088, + 6457194912, + 6446275456, + 6446283296, + 6446281968 ], "bases": [ { @@ -510751,7 +510757,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468437632, + "complete_object_locator": 6468441728, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -510760,13 +510766,13 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 6466160520, + "vtable_address": 6466164728, "methods": [ - 6451664864, - 6451664512, - 6451664496, - 6451664528, - 6451664608 + 6451666544, + 6451666192, + 6451666176, + 6451666208, + 6451666288 ], "bases": [ { @@ -510842,7 +510848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624480, + "complete_object_locator": 6468628576, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -510851,25 +510857,25 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 6466160568, + "vtable_address": 6466164776, "methods": [ - 6451656916, - 6457189536, - 6447087696, - 6447087792, - 6447087840, - 6457189584, - 6457186560, - 6447087856, - 6447088960, - 6447087984, + 6451658596, + 6457191728, + 6447087920, + 6447088016, + 6447088064, + 6457191776, + 6457188752, + 6447088080, + 6447089184, + 6447088208, 6443742160, - 6447088576, - 6457190896, - 6457192720, - 6447088976, - 6447090224, - 6447090064 + 6447088800, + 6457193088, + 6457194912, + 6447089376, + 6447090448, + 6447090432 ], "bases": [ { @@ -510945,7 +510951,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468624792, + "complete_object_locator": 6468628888, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -510954,13 +510960,13 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 6466155912, + "vtable_address": 6466160120, "methods": [ - 6451657504, - 6451657152, - 6451657136, - 6451657168, - 6451657248 + 6451659184, + 6451658832, + 6451658816, + 6451658848, + 6451658928 ], "bases": [ { @@ -511036,7 +511042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625616, + "complete_object_locator": 6468629712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -511045,25 +511051,25 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 6466155960, - "methods": [ - 6451656964, - 6457189536, - 6447120608, - 6447121568, - 6447121856, - 6457189584, - 6457186560, - 6447121904, - 6447124000, - 6447122480, + "vtable_address": 6466160168, + "methods": [ + 6451658644, + 6457191728, + 6447120832, + 6447121792, + 6447122096, + 6457191776, + 6457188752, + 6447122128, + 6447124224, + 6447122720, 6443742160, - 6447123552, - 6457190896, - 6457192720, - 6447124128, - 6447124272, - 6447124240 + 6447123776, + 6457193088, + 6457194912, + 6447124352, + 6447124496, + 6447124464 ], "bases": [ { @@ -511139,7 +511145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468625928, + "complete_object_locator": 6468630024, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -511148,13 +511154,13 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 6466156368, + "vtable_address": 6466160576, "methods": [ - 6451658320, - 6451657968, - 6451657952, - 6451657984, - 6451658064 + 6451660000, + 6451659648, + 6451659632, + 6451659664, + 6451659744 ], "bases": [ { @@ -511230,7 +511236,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626184, + "complete_object_locator": 6468630280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -511239,25 +511245,25 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 6466156416, + "vtable_address": 6466160624, "methods": [ - 6451656988, - 6457189536, - 6447132272, - 6447133280, - 6447133440, - 6457189584, - 6457186560, - 6447133456, - 6447134944, - 6447133792, + 6451658668, + 6457191728, + 6447132496, + 6447133520, + 6447133664, + 6457191776, + 6457188752, + 6447133680, + 6447135184, + 6447134016, 6443742160, - 6447134608, - 6457190896, - 6457192720, - 6447136336, - 6447137216, - 6447137200 + 6447134912, + 6457193088, + 6457194912, + 6447136560, + 6447137440, + 6447137424 ], "bases": [ { @@ -511333,7 +511339,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626496, + "complete_object_locator": 6468630592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -511342,13 +511348,13 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 6466156832, + "vtable_address": 6466161040, "methods": [ - 6451659024, - 6451658672, - 6451658656, - 6451658688, - 6451658768 + 6451660704, + 6451660352, + 6451660336, + 6451660368, + 6451660448 ], "bases": [ { @@ -511424,7 +511430,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468626880, + "complete_object_locator": 6468630976, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -511433,25 +511439,25 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 6466156880, - "methods": [ - 6451657012, - 6457189536, - 6447215152, - 6447215440, - 6447215536, - 6457189584, - 6457186560, - 6447215552, - 6447216704, - 6447215744, + "vtable_address": 6466161088, + "methods": [ + 6451658692, + 6457191728, + 6447215376, + 6447215664, + 6447215760, + 6457191776, + 6457188752, + 6447215776, + 6447217216, + 6447215968, 6443742160, - 6447216464, - 6457190896, - 6457192720, - 6447217520, - 6447217856, - 6447217840 + 6447216704, + 6457193088, + 6457194912, + 6447218016, + 6447218080, + 6447218064 ], "bases": [ { @@ -511527,7 +511533,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627192, + "complete_object_locator": 6468631288, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -511536,13 +511542,13 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 6466157288, + "vtable_address": 6466161496, "methods": [ - 6451659840, - 6451659488, - 6451659472, - 6451659504, - 6451659584 + 6451661520, + 6451661168, + 6451661152, + 6451661184, + 6451661264 ], "bases": [ { @@ -511618,7 +511624,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627448, + "complete_object_locator": 6468631544, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -511627,25 +511633,25 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 6466157336, - "methods": [ - 6451657036, - 6457189536, - 6447142272, - 6447142704, - 6447142864, - 6457189584, - 6457186560, - 6447142880, - 6447144144, - 6447143216, - 6443742160, - 6447143840, - 6457190896, - 6457192720, - 6447144352, - 6447144400, - 6447144368 + "vtable_address": 6466161544, + "methods": [ + 6451658716, + 6457191728, + 6447142496, + 6447142928, + 6447143088, + 6457191776, + 6457188752, + 6447143104, + 6447144368, + 6447143440, + 6443742160, + 6447144064, + 6457193088, + 6457194912, + 6447144576, + 6447144624, + 6447144592 ], "bases": [ { @@ -511721,7 +511727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468627760, + "complete_object_locator": 6468631856, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -511730,13 +511736,13 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 6466157744, + "vtable_address": 6466161952, "methods": [ - 6451660688, - 6451660336, - 6451660320, - 6451660352, - 6451660432 + 6451662368, + 6451662016, + 6451662000, + 6451662032, + 6451662112 ], "bases": [ { @@ -511812,7 +511818,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468628016, + "complete_object_locator": 6468632112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -511821,25 +511827,25 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 6466157792, - "methods": [ - 6451657060, - 6457189536, - 6447241840, - 6447242848, - 6447243296, - 6457189584, - 6457186560, - 6447243312, - 6447246304, - 6447244112, - 6443742160, - 6447245456, - 6457190896, - 6457192720, - 6447246576, - 6447246608, - 6447246592 + "vtable_address": 6466162000, + "methods": [ + 6451658740, + 6457191728, + 6447242064, + 6447243216, + 6447243520, + 6457191776, + 6457188752, + 6447243536, + 6447246592, + 6447244336, + 6443742160, + 6447245696, + 6457193088, + 6457194912, + 6447246800, + 6447246832, + 6447246816 ], "bases": [ { @@ -511915,7 +511921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468628328, + "complete_object_locator": 6468632424, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -511924,13 +511930,13 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 6466158200, + "vtable_address": 6466162408, "methods": [ - 6451661376, - 6451661024, - 6451661008, - 6451661040, - 6451661120 + 6451663056, + 6451662704, + 6451662688, + 6451662720, + 6451662800 ], "bases": [ { @@ -512006,7 +512012,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468628712, + "complete_object_locator": 6468632808, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -512015,25 +512021,25 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 6466158248, + "vtable_address": 6466162456, "methods": [ - 6451657084, - 6457189536, - 6447265088, - 6447265360, - 6447265456, - 6457189584, - 6457186560, - 6447265472, - 6447266224, - 6447265632, + 6451658764, + 6457191728, + 6447265312, + 6447265584, + 6447265680, + 6457191776, + 6457188752, + 6447265696, + 6447266448, + 6447265856, 6443742160, - 6447266048, - 6457190896, - 6457192720, - 6447266384, - 6447266416, - 6447266400 + 6447266272, + 6457193088, + 6457194912, + 6447266608, + 6447266640, + 6447266624 ], "bases": [ { @@ -512109,7 +512115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629024, + "complete_object_locator": 6468633120, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -512118,13 +512124,13 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 6466158648, + "vtable_address": 6466162856, "methods": [ - 6451662048, - 6451661696, - 6451661680, - 6451661712, - 6451661792 + 6451663728, + 6451663376, + 6451663360, + 6451663392, + 6451663472 ], "bases": [ { @@ -512200,7 +512206,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629280, + "complete_object_locator": 6468633376, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -512209,25 +512215,25 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 6466158696, + "vtable_address": 6466162904, "methods": [ - 6451657108, - 6457189536, - 6447224960, - 6447225760, - 6447225920, - 6457189584, - 6457186560, - 6447225936, - 6447227616, - 6447226288, + 6451658788, + 6457191728, + 6447225248, + 6447225984, + 6447226144, + 6457191776, + 6457188752, + 6447226160, + 6447227840, + 6447226512, 6443742160, - 6447226976, - 6457190896, - 6457192720, - 6447227648, - 6447228432, - 6447228416 + 6447227472, + 6457193088, + 6457194912, + 6447227872, + 6447229184, + 6447228640 ], "bases": [ { @@ -512303,7 +512309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468629592, + "complete_object_locator": 6468633688, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -512312,25 +512318,25 @@ }, { "type_name": "TournamentEvent", - "vtable_address": 6464964032, + "vtable_address": 6464967968, "methods": [ - 6446192240, - 6457189536, - 6446171312, - 6446172576, - 6446173984, - 6457189584, - 6457186560, - 6446174064, - 6446177440, - 6446175248, + 6446192400, + 6457191728, + 6446171696, + 6446172624, + 6446173504, + 6457191776, + 6457188752, + 6446173600, + 6446177488, + 6446174576, 6443742160, - 6446176688, - 6457190896, - 6457192720, - 6446177648, - 6446179056, - 6446179040 + 6446176336, + 6457193088, + 6457194912, + 6446178016, + 6446179376, + 6446179344 ], "bases": [ { @@ -512364,7 +512370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350152, + "complete_object_locator": 6468354384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512373,27 +512379,27 @@ }, { "type_name": "TournamentMatchSetup", - "vtable_address": 6465020976, + "vtable_address": 6465025072, "methods": [ - 6446518928, - 6457189536, - 6446505264, - 6446505552, - 6446505728, - 6457189584, - 6457186560, - 6446505744, - 6446507776, - 6446506080, + 6446518992, + 6457191728, + 6446505648, + 6446505936, + 6446505968, + 6457191776, + 6457188752, + 6446505984, + 6446508160, + 6446506320, 6443742160, - 6446507280, - 6457190896, - 6457192720, - 6446508624, - 6446508704, - 6446508672, - 6457187520, - 6446515552 + 6446507664, + 6457193088, + 6457194912, + 6446509008, + 6446509072, + 6446509056, + 6457189712, + 6446515936 ], "bases": [ { @@ -512427,7 +512433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350288, + "complete_object_locator": 6468354520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512436,27 +512442,27 @@ }, { "type_name": "TournamentPlayer", - "vtable_address": 6464943360, - "methods": [ - 6446125424, - 6457189536, - 6446108560, - 6446110112, - 6446110592, - 6457189584, - 6457186560, - 6446110624, - 6446112208, - 6446110976, - 6443742160, - 6446111776, - 6457190896, - 6457192720, - 6446112416, - 6446112640, - 6446112560, - 6457187520, - 6446122176 + "vtable_address": 6464947456, + "methods": [ + 6446125664, + 6457191728, + 6446108944, + 6446110256, + 6446110736, + 6457191776, + 6457188752, + 6446111008, + 6446112592, + 6446111360, + 6443742160, + 6446112160, + 6457193088, + 6457194912, + 6446112800, + 6446113024, + 6446112944, + 6457189712, + 6446122544 ], "bases": [ { @@ -512490,7 +512496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350424, + "complete_object_locator": 6468354656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512499,25 +512505,25 @@ }, { "type_name": "TournamentTeam", - "vtable_address": 6464949600, + "vtable_address": 6464953696, "methods": [ - 6446162512, - 6457189536, - 6446137104, - 6446138176, - 6446139152, - 6457189584, - 6457186560, - 6446139168, - 6446142464, - 6446140960, - 6443742160, - 6446142112, - 6457190896, - 6457192720, - 6446143248, - 6446143456, - 6446143440 + 6446162752, + 6457191728, + 6446137280, + 6446138272, + 6446138656, + 6457191776, + 6457188752, + 6446138704, + 6446142336, + 6446139872, + 6443742160, + 6446141552, + 6457193088, + 6457194912, + 6446143440, + 6446143776, + 6446143728 ], "bases": [ { @@ -512551,7 +512557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350560, + "complete_object_locator": 6468354792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512560,9 +512566,9 @@ }, { "type_name": "TranslationTrack_t", - "vtable_address": 6464674696, + "vtable_address": 6464678776, "methods": [ - 6457088096 + 6457090288 ], "bases": [ { @@ -512582,7 +512588,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468259432, + "complete_object_locator": 6468263528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512591,14 +512597,14 @@ }, { "type_name": "VDataInitInfo_t", - "vtable_address": 6465752544, + "vtable_address": 6465756736, "methods": [ - 6463215936, - 6449081536, - 6449081888, - 6449081904, - 6449081920, - 6449081936 + 6463218128, + 6449083088, + 6449083440, + 6449083456, + 6449083472, + 6449083488 ], "bases": [ { @@ -512618,7 +512624,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468502832, + "complete_object_locator": 6468506928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512627,27 +512633,27 @@ }, { "type_name": "VacNetShot", - "vtable_address": 6464879056, - "methods": [ - 6445825936, - 6457189536, - 6445805056, - 6445805232, - 6445805328, - 6457189584, - 6457186560, - 6445805344, - 6445807200, + "vtable_address": 6464883152, + "methods": [ + 6445826320, + 6457191728, + 6445805440, 6445805616, - 6443742160, - 6445806512, - 6457190896, - 6457192720, - 6445807712, - 6445808912, - 6445808880, - 6457187520, - 6445823552 + 6445805696, + 6457191776, + 6457188752, + 6445805712, + 6445807536, + 6445805984, + 6443742160, + 6445806896, + 6457193088, + 6457194912, + 6445807648, + 6445808896, + 6445808832, + 6457189712, + 6445823936 ], "bases": [ { @@ -512681,7 +512687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468300328, + "complete_object_locator": 6468304560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512690,7 +512696,7 @@ }, { "type_name": "ViewAngleServerChange_t", - "vtable_address": 6464781392, + "vtable_address": 6464785472, "methods": [ 6445484096, 6445478352, @@ -512701,7 +512707,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468285184, + "complete_object_locator": 6468289280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512710,25 +512716,25 @@ }, { "type_name": "WatchableMatchInfo", - "vtable_address": 6464966304, + "vtable_address": 6464970400, "methods": [ - 6446216704, - 6457189536, - 6446183296, - 6446184032, - 6446184416, - 6457189584, - 6457186560, - 6446184464, - 6446188896, + 6446217088, + 6457191728, + 6446183680, + 6446184208, + 6446184448, + 6457191776, + 6457188752, + 6446184480, + 6446188656, 6446185280, 6443742160, - 6446187728, - 6457190896, - 6457192720, - 6446189424, - 6446191712, - 6446190912 + 6446187488, + 6457193088, + 6457194912, + 6446189808, + 6446192080, + 6446191296 ], "bases": [ { @@ -512762,7 +512768,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350696, + "complete_object_locator": 6468354928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512771,18 +512777,18 @@ }, { "type_name": "WeaponPurchaseCount_t", - "vtable_address": 6465643352, + "vtable_address": 6465647528, "methods": [ - 6448386192, - 6448371232, - 6448371328, - 6448371296, - 6448371104 + 6448387760, + 6448372800, + 6448372896, + 6448372864, + 6448372672 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468480312, + "complete_object_locator": 6468484408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512791,17 +512797,17 @@ }, { "type_name": "WeaponPurchaseTracker_t", - "vtable_address": 6465643400, + "vtable_address": 6465647576, "methods": [ - 6448386240, - 6448371248, - 6448371344, - 6448371312 + 6448387808, + 6448372816, + 6448372912, + 6448372880 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468480432, + "complete_object_locator": 6468484528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512810,25 +512816,25 @@ }, { "type_name": "XpProgressData", - "vtable_address": 6465072920, + "vtable_address": 6465077016, "methods": [ - 6446621120, - 6457189536, - 6446618896, - 6446619264, - 6446619296, - 6457189584, - 6457186560, - 6446619312, - 6446620256, - 6446619408, + 6446621504, + 6457191728, + 6446619280, + 6446619648, + 6446619680, + 6457191776, + 6457188752, + 6446619696, + 6446620576, + 6446619792, 6443742160, - 6446619968, - 6457190896, - 6457192720, - 6446620416, - 6446620608, - 6446620592 + 6446620288, + 6457193088, + 6457194912, + 6446620800, + 6446620832, + 6446620816 ], "bases": [ { @@ -512862,7 +512868,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468350832, + "complete_object_locator": 6468355064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512871,11 +512877,11 @@ }, { "type_name": "`anonymous namespace'::_ExceptionPtr_normal", - "vtable_address": 6467888512, + "vtable_address": 6467892608, "methods": [ - 6463697060, - 6463697036, - 6463695912, + 6463699252, + 6463699228, + 6463698104, 6445625072 ], "bases": [ @@ -512896,7 +512902,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468996320, + "complete_object_locator": 6469000416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512905,11 +512911,11 @@ }, { "type_name": "`anonymous namespace'::_ExceptionPtr_static", - "vtable_address": 6467888552, + "vtable_address": 6467892648, "methods": [ - 6463697052, - 6463697028, - 6463695620, + 6463699244, + 6463699220, + 6463697812, 6445625072 ], "bases": [ @@ -512930,7 +512936,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468996448, + "complete_object_locator": 6469000544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512939,11 +512945,11 @@ }, { "type_name": "`anonymous namespace'::_ExceptionPtr_static", - "vtable_address": 6467888592, + "vtable_address": 6467892688, "methods": [ - 6463697056, - 6463697032, - 6463695704, + 6463699248, + 6463699224, + 6463697896, 6445625072 ], "bases": [ @@ -512964,7 +512970,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468996576, + "complete_object_locator": 6469000672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -512973,14 +512979,14 @@ }, { "type_name": "`private: virtual void __cdecl CEconItemDescription::Generate_ScorecardDesc_BravoPhoenix(class CLocalizationProvider *,class IEconItemInterface const *)'::`2'::CScorecardAttributeDisplayer", - "vtable_address": 6466769624, + "vtable_address": 6466773720, "methods": [ - 6455881200, - 6456291664, - 6456291680, - 6456292112, - 6456291696, - 6456295472 + 6455882960, + 6456293440, + 6456293456, + 6456293888, + 6456293472, + 6456297248 ], "bases": [ { @@ -513000,7 +513006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468788152, + "complete_object_locator": 6468792248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -513009,14 +513015,14 @@ }, { "type_name": "`private: virtual void __cdecl CEconItemDescription::Generate_ScorecardDesc_PostPhoenix(class CLocalizationProvider *,class IEconItemInterface const *)'::`2'::CScorecardAttributeDisplayer", - "vtable_address": 6466769712, + "vtable_address": 6466773808, "methods": [ - 6455881248, - 6456292528, - 6456292544, - 6456292976, - 6456292560, - 6456297152 + 6455883008, + 6456294304, + 6456294320, + 6456294752, + 6456294336, + 6456298928 ], "bases": [ { @@ -513036,7 +513042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468788280, + "complete_object_locator": 6468792376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -513045,13 +513051,13 @@ }, { "type_name": "`private: virtual void __cdecl CEconItemDescription::YieldingCacheDescriptionData(class CLocalizationProvider *,class IEconItemInterface const *)'::`2'::CSteamAccountIDAttributeCollector", - "vtable_address": 6466766576, + "vtable_address": 6466770672, "methods": [ - 6455881344, - 6456293392, - 6456293408, - 6456293472, - 6456293424 + 6455883104, + 6456295168, + 6456295184, + 6456295248, + 6456295200 ], "bases": [ { @@ -513071,7 +513077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468788024, + "complete_object_locator": 6468792120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -513080,61 +513086,61 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bPassWhenTrue", - "vtable_address": 6467104272, - "methods": [ - 6459240000, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667040, - 6459666224, - 6459667472, - 6459651056, - 6459419136, - 6459415328, - 6459418208, - 6459415360, - 6459416176, - 6459415376, - 6459415344, - 6459763712, - 6459679968, - 6459743360, - 6459443312, - 6459613456, - 6459632208, - 6459641760, - 6459650176, - 6459428752, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656656, - 6459886800, - 6459711024, - 6459868704, - 6459831344, - 6459493584, - 6459315088, - 6459536288, - 6459561584, - 6459626032, - 6459631840, - 6459717856, - 6459680768, - 6459669072, - 6459657344, - 6459813040, - 6459805984, - 6459496240, - 6459496272, - 6459799024, - 6459469360, - 6459888928 + "vtable_address": 6467108336, + "methods": [ + 6459242192, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669232, + 6459668416, + 6459669664, + 6459653248, + 6459421328, + 6459417520, + 6459420400, + 6459417552, + 6459418368, + 6459417568, + 6459417536, + 6459765904, + 6459682160, + 6459745552, + 6459445504, + 6459615648, + 6459634400, + 6459643952, + 6459652368, + 6459430944, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658848, + 6459888992, + 6459713216, + 6459870896, + 6459833536, + 6459495776, + 6459317280, + 6459538480, + 6459563776, + 6459628224, + 6459634032, + 6459720048, + 6459682960, + 6459671264, + 6459659536, + 6459815232, + 6459808176, + 6459498432, + 6459498464, + 6459801216, + 6459471552, + 6459891120 ], "bases": [ { @@ -513252,7 +513258,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468897392, + "complete_object_locator": 6468901488, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -513261,16 +513267,16 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bPassWhenTrue", - "vtable_address": 6467104704, + "vtable_address": 6467108768, "methods": [ - 6459414832, - 6459396592, - 6459399376, - 6459412080, - 6459411536, - 6459393152, - 6459378528, - 6459384400 + 6459417024, + 6459398784, + 6459401568, + 6459414272, + 6459413728, + 6459395344, + 6459380720, + 6459386592 ], "bases": [ { @@ -513388,7 +513394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468897576, + "complete_object_locator": 6468901672, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -513397,61 +513403,61 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nMutatorCondition", - "vtable_address": 6467100288, + "vtable_address": 6467104352, "methods": [ - 6459241408, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666928, - 6459666224, - 6459667472, - 6459651056, - 6459418912, - 6459415328, - 6459418208, - 6459415360, - 6459416064, - 6459415376, - 6459415344, - 6459761248, - 6459679072, - 6459739776, - 6459441408, - 6459613456, - 6459632208, - 6459640416, - 6459649168, - 6459427408, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655872, - 6459884896, - 6459707328, - 6459864336, - 6459828992, - 6459491120, - 6459309488, - 6459530576, - 6459558672, - 6459624688, - 6459631840, - 6459717408, - 6459680768, - 6459668960, - 6459657344, - 6459812144, - 6459805088, - 6459496240, - 6459496272, - 6459798240, - 6459465888, - 6459888928 + 6459243600, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669120, + 6459668416, + 6459669664, + 6459653248, + 6459421104, + 6459417520, + 6459420400, + 6459417552, + 6459418256, + 6459417568, + 6459417536, + 6459763440, + 6459681264, + 6459741968, + 6459443600, + 6459615648, + 6459634400, + 6459642608, + 6459651360, + 6459429600, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658064, + 6459887088, + 6459709520, + 6459866528, + 6459831184, + 6459493312, + 6459311680, + 6459532768, + 6459560864, + 6459626880, + 6459634032, + 6459719600, + 6459682960, + 6459671152, + 6459659536, + 6459814336, + 6459807280, + 6459498432, + 6459498464, + 6459800432, + 6459468080, + 6459891120 ], "bases": [ { @@ -513569,7 +513575,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468894944, + "complete_object_locator": 6468899040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -513578,16 +513584,16 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nMutatorCondition", - "vtable_address": 6467100720, + "vtable_address": 6467104784, "methods": [ - 6459413824, - 6459396032, - 6459398704, - 6459411968, - 6459411424, - 6459391360, - 6459378080, - 6459383952 + 6459416016, + 6459398224, + 6459400896, + 6459414160, + 6459413616, + 6459393552, + 6459380272, + 6459386144 ], "bases": [ { @@ -513705,7 +513711,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468895128, + "complete_object_locator": 6468899224, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -513714,61 +513720,61 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMutatorConditionContainerName", - "vtable_address": 6467101776, + "vtable_address": 6467105840, "methods": [ - 6459243776, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666768, - 6459666224, - 6459667472, - 6459651056, - 6459418592, - 6459415328, - 6459418208, - 6459415360, - 6459415904, - 6459415376, - 6459415344, - 6459757728, - 6459677792, - 6459734656, - 6459438688, - 6459613456, - 6459632208, - 6459638496, - 6459647728, - 6459425488, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654752, - 6459882176, - 6459700992, - 6459858000, - 6459825472, - 6459487600, - 6459301488, - 6459522416, - 6459554512, - 6459622768, - 6459631840, - 6459716352, - 6459680768, - 6459668800, - 6459657344, - 6459810864, - 6459803808, - 6459496240, - 6459496272, - 6459797120, - 6459460928, - 6459888928 + 6459245968, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668960, + 6459668416, + 6459669664, + 6459653248, + 6459420784, + 6459417520, + 6459420400, + 6459417552, + 6459418096, + 6459417568, + 6459417536, + 6459759920, + 6459679984, + 6459736848, + 6459440880, + 6459615648, + 6459634400, + 6459640688, + 6459649920, + 6459427680, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656944, + 6459884368, + 6459703184, + 6459860192, + 6459827664, + 6459489792, + 6459303680, + 6459524608, + 6459556704, + 6459624960, + 6459634032, + 6459718544, + 6459682960, + 6459670992, + 6459659536, + 6459813056, + 6459806000, + 6459498432, + 6459498464, + 6459799312, + 6459463120, + 6459891120 ], "bases": [ { @@ -513886,7 +513892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468895984, + "complete_object_locator": 6468900080, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -513895,16 +513901,16 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMutatorConditionContainerName", - "vtable_address": 6467102208, + "vtable_address": 6467106272, "methods": [ - 6459413312, - 6459395616, - 6459397744, - 6459411808, - 6459411264, - 6459388704, - 6459377280, - 6459381552 + 6459415504, + 6459397808, + 6459399936, + 6459414000, + 6459413456, + 6459390896, + 6459379472, + 6459383744 ], "bases": [ { @@ -514022,7 +514028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896168, + "complete_object_locator": 6468900264, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -514031,61 +514037,61 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMutatorConditionContainerVarName", - "vtable_address": 6467102280, + "vtable_address": 6467106344, "methods": [ - 6459243840, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666768, - 6459666224, - 6459667472, - 6459651056, - 6459418592, - 6459415328, - 6459418208, - 6459415360, - 6459415904, - 6459415376, - 6459415344, - 6459757728, - 6459677792, - 6459734656, - 6459438688, - 6459613456, - 6459632208, - 6459638496, - 6459647728, - 6459425488, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654752, - 6459882176, - 6459700992, - 6459858000, - 6459825472, - 6459487600, - 6459301488, - 6459522416, - 6459554512, - 6459622768, - 6459631840, - 6459716352, - 6459680768, - 6459668800, - 6459657344, - 6459810864, - 6459803808, - 6459496240, - 6459496272, - 6459797120, - 6459460928, - 6459888928 + 6459246032, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668960, + 6459668416, + 6459669664, + 6459653248, + 6459420784, + 6459417520, + 6459420400, + 6459417552, + 6459418096, + 6459417568, + 6459417536, + 6459759920, + 6459679984, + 6459736848, + 6459440880, + 6459615648, + 6459634400, + 6459640688, + 6459649920, + 6459427680, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656944, + 6459884368, + 6459703184, + 6459860192, + 6459827664, + 6459489792, + 6459303680, + 6459524608, + 6459556704, + 6459624960, + 6459634032, + 6459718544, + 6459682960, + 6459670992, + 6459659536, + 6459813056, + 6459806000, + 6459498432, + 6459498464, + 6459799312, + 6459463120, + 6459891120 ], "bases": [ { @@ -514203,7 +514209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896376, + "complete_object_locator": 6468900472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -514212,16 +514218,16 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMutatorConditionContainerVarName", - "vtable_address": 6467102712, + "vtable_address": 6467106776, "methods": [ - 6459413312, - 6459395616, - 6459397744, - 6459411808, - 6459411264, - 6459388704, - 6459377280, - 6459381552 + 6459415504, + 6459397808, + 6459399936, + 6459414000, + 6459413456, + 6459390896, + 6459379472, + 6459383744 ], "bases": [ { @@ -514339,7 +514345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896568, + "complete_object_locator": 6468900664, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -514348,61 +514354,61 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMutatorConditionContainerVarValue", - "vtable_address": 6467102784, + "vtable_address": 6467106848, "methods": [ - 6459243904, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666768, - 6459666224, - 6459667472, - 6459651056, - 6459418592, - 6459415328, - 6459418208, - 6459415360, - 6459415904, - 6459415376, - 6459415344, - 6459757728, - 6459677792, - 6459734656, - 6459438688, - 6459613456, - 6459632208, - 6459638496, - 6459647728, - 6459425488, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654752, - 6459882176, - 6459700992, - 6459858000, - 6459825472, - 6459487600, - 6459301488, - 6459522416, - 6459554512, - 6459622768, - 6459631840, - 6459716352, - 6459680768, - 6459668800, - 6459657344, - 6459810864, - 6459803808, - 6459496240, - 6459496272, - 6459797120, - 6459460928, - 6459888928 + 6459246096, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668960, + 6459668416, + 6459669664, + 6459653248, + 6459420784, + 6459417520, + 6459420400, + 6459417552, + 6459418096, + 6459417568, + 6459417536, + 6459759920, + 6459679984, + 6459736848, + 6459440880, + 6459615648, + 6459634400, + 6459640688, + 6459649920, + 6459427680, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656944, + 6459884368, + 6459703184, + 6459860192, + 6459827664, + 6459489792, + 6459303680, + 6459524608, + 6459556704, + 6459624960, + 6459634032, + 6459718544, + 6459682960, + 6459670992, + 6459659536, + 6459813056, + 6459806000, + 6459498432, + 6459498464, + 6459799312, + 6459463120, + 6459891120 ], "bases": [ { @@ -514520,7 +514526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896608, + "complete_object_locator": 6468900704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -514529,16 +514535,16 @@ }, { "type_name": "`public: static void __cdecl CompMatMutatorCondition_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMutatorConditionContainerVarValue", - "vtable_address": 6467103216, + "vtable_address": 6467107280, "methods": [ - 6459413312, - 6459395616, - 6459397744, - 6459411808, - 6459411264, - 6459388704, - 6459377280, - 6459381552 + 6459415504, + 6459397808, + 6459399936, + 6459414000, + 6459413456, + 6459390896, + 6459379472, + 6459383744 ], "bases": [ { @@ -514656,7 +514662,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468896792, + "complete_object_locator": 6468900888, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -514665,61 +514671,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bCaptureInRenderDoc", - "vtable_address": 6467121008, - "methods": [ - 6459239424, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667056, - 6459666224, - 6459667472, - 6459651056, - 6459419168, - 6459415328, - 6459418208, - 6459415360, - 6459416192, - 6459415376, - 6459415344, - 6459764064, - 6459680096, - 6459743872, - 6459443584, - 6459613456, - 6459632208, - 6459641952, - 6459650320, - 6459428944, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656768, - 6459887072, - 6459711568, - 6459869328, - 6459831680, - 6459493936, - 6459315888, - 6459537104, - 6459562000, - 6459626224, - 6459631840, - 6459717920, - 6459680768, - 6459669088, - 6459657344, - 6459813168, - 6459806112, - 6459496240, - 6459496272, - 6459799136, - 6459469856, - 6459888928 + "vtable_address": 6467125072, + "methods": [ + 6459241616, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669248, + 6459668416, + 6459669664, + 6459653248, + 6459421360, + 6459417520, + 6459420400, + 6459417552, + 6459418384, + 6459417568, + 6459417536, + 6459766256, + 6459682288, + 6459746064, + 6459445776, + 6459615648, + 6459634400, + 6459644144, + 6459652512, + 6459431136, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658960, + 6459889264, + 6459713760, + 6459871520, + 6459833872, + 6459496128, + 6459318080, + 6459539296, + 6459564192, + 6459628416, + 6459634032, + 6459720112, + 6459682960, + 6459671280, + 6459659536, + 6459815360, + 6459808304, + 6459498432, + 6459498464, + 6459801328, + 6459472048, + 6459891120 ], "bases": [ { @@ -514837,7 +514843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906912, + "complete_object_locator": 6468911008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -514846,16 +514852,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bCaptureInRenderDoc", - "vtable_address": 6467121440, + "vtable_address": 6467125504, "methods": [ - 6459414832, - 6459396592, - 6459399472, - 6459412096, - 6459411552, - 6459393408, - 6459378592, - 6459384640 + 6459417024, + 6459398784, + 6459401664, + 6459414288, + 6459413744, + 6459395600, + 6459380784, + 6459386832 ], "bases": [ { @@ -514973,7 +514979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468907096, + "complete_object_locator": 6468911192, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -514982,61 +514988,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnabled", - "vtable_address": 6467105896, - "methods": [ - 6459239552, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667056, - 6459666224, - 6459667472, - 6459651056, - 6459419168, - 6459415328, - 6459418208, - 6459415360, - 6459416192, - 6459415376, - 6459415344, - 6459764064, - 6459680096, - 6459743872, - 6459443584, - 6459613456, - 6459632208, - 6459641952, - 6459650320, - 6459428944, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656768, - 6459887072, - 6459711568, - 6459869328, - 6459831680, - 6459493936, - 6459315888, - 6459537104, - 6459562000, - 6459626224, - 6459631840, - 6459717920, - 6459680768, - 6459669088, - 6459657344, - 6459813168, - 6459806112, - 6459496240, - 6459496272, - 6459799136, - 6459469856, - 6459888928 + "vtable_address": 6467109960, + "methods": [ + 6459241744, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669248, + 6459668416, + 6459669664, + 6459653248, + 6459421360, + 6459417520, + 6459420400, + 6459417552, + 6459418384, + 6459417568, + 6459417536, + 6459766256, + 6459682288, + 6459746064, + 6459445776, + 6459615648, + 6459634400, + 6459644144, + 6459652512, + 6459431136, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658960, + 6459889264, + 6459713760, + 6459871520, + 6459833872, + 6459496128, + 6459318080, + 6459539296, + 6459564192, + 6459628416, + 6459634032, + 6459720112, + 6459682960, + 6459671280, + 6459659536, + 6459815360, + 6459808304, + 6459498432, + 6459498464, + 6459801328, + 6459472048, + 6459891120 ], "bases": [ { @@ -515154,7 +515160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468898480, + "complete_object_locator": 6468902576, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -515163,16 +515169,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnabled", - "vtable_address": 6467106328, + "vtable_address": 6467110392, "methods": [ - 6459414832, - 6459396592, - 6459399472, - 6459412096, - 6459411552, - 6459393408, - 6459378592, - 6459384640 + 6459417024, + 6459398784, + 6459401664, + 6459414288, + 6459413744, + 6459395600, + 6459380784, + 6459386832 ], "bases": [ { @@ -515290,7 +515296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468898664, + "complete_object_locator": 6468902760, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -515299,61 +515305,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bIsScratchTarget", - "vtable_address": 6467119496, - "methods": [ - 6459239936, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667056, - 6459666224, - 6459667472, - 6459651056, - 6459419168, - 6459415328, - 6459418208, - 6459415360, - 6459416192, - 6459415376, - 6459415344, - 6459764064, - 6459680096, - 6459743872, - 6459443584, - 6459613456, - 6459632208, - 6459641952, - 6459650320, - 6459428944, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656768, - 6459887072, - 6459711568, - 6459869328, - 6459831680, - 6459493936, - 6459315888, - 6459537104, - 6459562000, - 6459626224, - 6459631840, - 6459717920, - 6459680768, - 6459669088, - 6459657344, - 6459813168, - 6459806112, - 6459496240, - 6459496272, - 6459799136, - 6459469856, - 6459888928 + "vtable_address": 6467123560, + "methods": [ + 6459242128, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669248, + 6459668416, + 6459669664, + 6459653248, + 6459421360, + 6459417520, + 6459420400, + 6459417552, + 6459418384, + 6459417568, + 6459417536, + 6459766256, + 6459682288, + 6459746064, + 6459445776, + 6459615648, + 6459634400, + 6459644144, + 6459652512, + 6459431136, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658960, + 6459889264, + 6459713760, + 6459871520, + 6459833872, + 6459496128, + 6459318080, + 6459539296, + 6459564192, + 6459628416, + 6459634032, + 6459720112, + 6459682960, + 6459671280, + 6459659536, + 6459815360, + 6459808304, + 6459498432, + 6459498464, + 6459801328, + 6459472048, + 6459891120 ], "bases": [ { @@ -515471,7 +515477,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906232, + "complete_object_locator": 6468910328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -515480,16 +515486,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bIsScratchTarget", - "vtable_address": 6467119928, + "vtable_address": 6467123992, "methods": [ - 6459414832, - 6459396592, - 6459399472, - 6459412096, - 6459411552, - 6459393408, - 6459378592, - 6459384640 + 6459417024, + 6459398784, + 6459401664, + 6459414288, + 6459413744, + 6459395600, + 6459380784, + 6459386832 ], "bases": [ { @@ -515607,7 +515613,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906424, + "complete_object_locator": 6468910520, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -515616,61 +515622,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bSplatDebugInfo", - "vtable_address": 6467120504, - "methods": [ - 6459240128, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667056, - 6459666224, - 6459667472, - 6459651056, - 6459419168, - 6459415328, - 6459418208, - 6459415360, - 6459416192, - 6459415376, - 6459415344, - 6459764064, - 6459680096, - 6459743872, - 6459443584, - 6459613456, - 6459632208, - 6459641952, - 6459650320, - 6459428944, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656768, - 6459887072, - 6459711568, - 6459869328, - 6459831680, - 6459493936, - 6459315888, - 6459537104, - 6459562000, - 6459626224, - 6459631840, - 6459717920, - 6459680768, - 6459669088, - 6459657344, - 6459813168, - 6459806112, - 6459496240, - 6459496272, - 6459799136, - 6459469856, - 6459888928 + "vtable_address": 6467124568, + "methods": [ + 6459242320, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669248, + 6459668416, + 6459669664, + 6459653248, + 6459421360, + 6459417520, + 6459420400, + 6459417552, + 6459418384, + 6459417568, + 6459417536, + 6459766256, + 6459682288, + 6459746064, + 6459445776, + 6459615648, + 6459634400, + 6459644144, + 6459652512, + 6459431136, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658960, + 6459889264, + 6459713760, + 6459871520, + 6459833872, + 6459496128, + 6459318080, + 6459539296, + 6459564192, + 6459628416, + 6459634032, + 6459720112, + 6459682960, + 6459671280, + 6459659536, + 6459815360, + 6459808304, + 6459498432, + 6459498464, + 6459801328, + 6459472048, + 6459891120 ], "bases": [ { @@ -515788,7 +515794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906688, + "complete_object_locator": 6468910784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -515797,16 +515803,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bSplatDebugInfo", - "vtable_address": 6467120936, + "vtable_address": 6467125000, "methods": [ - 6459414832, - 6459396592, - 6459399472, - 6459412096, - 6459411552, - 6459393408, - 6459378592, - 6459384640 + 6459417024, + 6459398784, + 6459401664, + 6459414288, + 6459413744, + 6459395600, + 6459380784, + 6459386832 ], "bases": [ { @@ -515924,7 +515930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906872, + "complete_object_locator": 6468910968, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -515933,61 +515939,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_colDrawText_Color", - "vtable_address": 6467127584, + "vtable_address": 6467131648, "methods": [ - 6459240320, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666864, - 6459666224, - 6459667472, - 6459651056, - 6459418784, - 6459415328, - 6459418208, - 6459415360, - 6459416000, - 6459415376, - 6459415344, - 6459759840, - 6459678560, - 6459737728, - 6459440320, - 6459613456, - 6459632208, - 6459639648, - 6459648592, - 6459426640, - 6459564128, - 6459564096, - 6459718256, + 6459242512, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669056, + 6459668416, + 6459669664, + 6459653248, + 6459420976, + 6459417520, + 6459420400, + 6459417552, + 6459418192, + 6459417568, + 6459417536, + 6459762032, + 6459680752, + 6459739920, + 6459442512, + 6459615648, + 6459634400, + 6459641840, + 6459650784, + 6459428832, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657616, + 6459886000, + 6459707216, + 6459864032, + 6459829776, + 6459491904, + 6459308480, + 6459529504, + 6459559200, + 6459626112, + 6459634032, + 6459719312, + 6459682960, + 6459671088, + 6459659536, 6459813824, - 6459765840, - 6459835808, - 6459655424, - 6459883808, - 6459705024, - 6459861840, - 6459827584, - 6459489712, - 6459306288, - 6459527312, - 6459557008, - 6459623920, - 6459631840, - 6459717120, - 6459680768, - 6459668896, - 6459657344, - 6459811632, - 6459804576, - 6459496240, - 6459496272, - 6459797792, - 6459463904, - 6459888928 + 6459806768, + 6459498432, + 6459498464, + 6459799984, + 6459466096, + 6459891120 ], "bases": [ { @@ -516105,7 +516111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911184, + "complete_object_locator": 6468915280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -516114,16 +516120,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_colDrawText_Color", - "vtable_address": 6467128016, + "vtable_address": 6467132080, "methods": [ - 6459413488, - 6459395760, - 6459398320, - 6459411904, - 6459411360, - 6459390336, - 6459377760, - 6459382992 + 6459415680, + 6459397952, + 6459400512, + 6459414096, + 6459413552, + 6459392528, + 6459379952, + 6459385184 ], "bases": [ { @@ -516241,7 +516247,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911368, + "complete_object_locator": 6468915464, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -516250,61 +516256,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nMutatorCommandType", - "vtable_address": 6467107384, + "vtable_address": 6467111448, "methods": [ - 6459241344, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666944, - 6459666224, - 6459667472, - 6459651056, - 6459418944, - 6459415328, - 6459418208, - 6459415360, - 6459416080, - 6459415376, - 6459415344, - 6459761600, - 6459679200, - 6459740288, - 6459441680, - 6459613456, - 6459632208, - 6459640608, - 6459649312, - 6459427600, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655984, - 6459885168, - 6459707856, - 6459864960, - 6459829328, - 6459491472, - 6459310288, - 6459531392, - 6459559088, - 6459624880, - 6459631840, - 6459717472, - 6459680768, - 6459668976, - 6459657344, - 6459812272, - 6459805216, - 6459496240, - 6459496272, - 6459798352, - 6459466384, - 6459888928 + 6459243536, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669136, + 6459668416, + 6459669664, + 6459653248, + 6459421136, + 6459417520, + 6459420400, + 6459417552, + 6459418272, + 6459417568, + 6459417536, + 6459763792, + 6459681392, + 6459742480, + 6459443872, + 6459615648, + 6459634400, + 6459642800, + 6459651504, + 6459429792, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658176, + 6459887360, + 6459710048, + 6459867152, + 6459831520, + 6459493664, + 6459312480, + 6459533584, + 6459561280, + 6459627072, + 6459634032, + 6459719664, + 6459682960, + 6459671168, + 6459659536, + 6459814464, + 6459807408, + 6459498432, + 6459498464, + 6459800544, + 6459468576, + 6459891120 ], "bases": [ { @@ -516422,7 +516428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468899568, + "complete_object_locator": 6468903664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -516431,16 +516437,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nMutatorCommandType", - "vtable_address": 6467107816, + "vtable_address": 6467111880, "methods": [ - 6459413968, - 6459396112, - 6459398800, - 6459411984, - 6459411440, - 6459391616, - 6459378144, - 6459384016 + 6459416160, + 6459398304, + 6459400992, + 6459414176, + 6459413632, + 6459393808, + 6459380336, + 6459386208 ], "bases": [ { @@ -516558,7 +516564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468899752, + "complete_object_locator": 6468903848, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -516567,61 +516573,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nResolution", - "vtable_address": 6467118992, - "methods": [ - 6459241536, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666256, - 6459666224, - 6459667472, - 6459651056, - 6459418240, - 6459415328, - 6459418208, - 6459415360, - 6459415392, - 6459415376, - 6459415344, - 6459746464, - 6459673696, - 6459718272, - 6459429984, - 6459613456, - 6459632208, - 6459632352, - 6459643120, - 6459419344, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651168, - 6459873472, - 6459680784, - 6459837680, - 6459813856, - 6459476016, - 6459275888, - 6459496304, - 6459541200, - 6459616624, - 6459631840, - 6459714304, - 6459680768, - 6459667520, - 6459657344, - 6459806768, - 6459799712, - 6459496240, - 6459496272, - 6459793536, - 6459445056, - 6459888928 + "vtable_address": 6467123056, + "methods": [ + 6459243728, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668448, + 6459668416, + 6459669664, + 6459653248, + 6459420432, + 6459417520, + 6459420400, + 6459417552, + 6459417584, + 6459417568, + 6459417536, + 6459748656, + 6459675888, + 6459720464, + 6459432176, + 6459615648, + 6459634400, + 6459634544, + 6459645312, + 6459421536, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653360, + 6459875664, + 6459682976, + 6459839872, + 6459816048, + 6459478208, + 6459278080, + 6459498496, + 6459543392, + 6459618816, + 6459634032, + 6459716496, + 6459682960, + 6459669712, + 6459659536, + 6459808960, + 6459801904, + 6459498432, + 6459498464, + 6459795728, + 6459447248, + 6459891120 ], "bases": [ { @@ -516739,7 +516745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468905840, + "complete_object_locator": 6468909936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -516748,16 +516754,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nResolution", - "vtable_address": 6467119424, + "vtable_address": 6467123488, "methods": [ - 6459412176, - 6459394688, - 6459396688, - 6459411632, - 6459411088, - 6459385840, - 6459376480, - 6459378912 + 6459414368, + 6459396880, + 6459398880, + 6459413824, + 6459413280, + 6459388032, + 6459378672, + 6459381104 ], "bases": [ { @@ -516875,7 +516881,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906024, + "complete_object_locator": 6468910120, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -516884,61 +516890,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nSetValue_Value", - "vtable_address": 6467116472, - "methods": [ - 6459241664, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667216, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415328, - 6459417248, - 6459415360, - 6459415552, - 6459415376, - 6459415344, - 6459749984, - 6459674976, - 6459723392, - 6459432704, - 6459613296, - 6459632208, - 6459634272, - 6459644560, - 6459421264, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652288, - 6459876192, - 6459686544, - 6459843920, - 6459817296, - 6459479536, - 6459283888, - 6459504464, - 6459545360, - 6459628624, - 6459630960, - 6459714944, - 6459680768, - 6459667680, - 6459657344, - 6459808048, - 6459800992, - 6459496240, - 6459496272, - 6459794656, - 6459450016, - 6459888928 + "vtable_address": 6467120536, + "methods": [ + 6459243856, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669408, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417520, + 6459419440, + 6459417552, + 6459417744, + 6459417568, + 6459417536, + 6459752176, + 6459677168, + 6459725584, + 6459434896, + 6459615488, + 6459634400, + 6459636464, + 6459646752, + 6459423456, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459654480, + 6459878384, + 6459688736, + 6459846112, + 6459819488, + 6459481728, + 6459286080, + 6459506656, + 6459547552, + 6459630816, + 6459633152, + 6459717136, + 6459682960, + 6459669872, + 6459659536, + 6459810240, + 6459803184, + 6459498432, + 6459498464, + 6459796848, + 6459452208, + 6459891120 ], "bases": [ { @@ -517028,7 +517034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468904368, + "complete_object_locator": 6468908464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -517037,19 +517043,19 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nSetValue_Value", - "vtable_address": 6467116904, - "methods": [ - 6459360272, - 6459366304, - 6459369360, - 6459362656, - 6459365568, - 6459375424, - 6459376032, - 6459375088, - 6459359040, - 6463581392, - 6459372912 + "vtable_address": 6467120968, + "methods": [ + 6459362464, + 6459368496, + 6459371552, + 6459364848, + 6459367760, + 6459377616, + 6459378224, + 6459377280, + 6459361232, + 6463583584, + 6459375104 ], "bases": [ { @@ -517139,7 +517145,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468904536, + "complete_object_locator": 6468908632, "offset": 1176, "constructor_displacement": 0, "class_attributes": 1 @@ -517148,61 +517154,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCompressionFormat", - "vtable_address": 6467120000, + "vtable_address": 6467124064, "methods": [ - 6459242432, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459244624, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -517320,7 +517326,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906464, + "complete_object_locator": 6468910560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -517329,16 +517335,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCompressionFormat", - "vtable_address": 6467120432, + "vtable_address": 6467124496, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -517456,7 +517462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468906648, + "complete_object_locator": 6468910744, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -517465,61 +517471,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyKeysWithSuffix_FindSuffix", - "vtable_address": 6467114456, + "vtable_address": 6467118520, "methods": [ - 6459242496, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459244688, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -517637,7 +517643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903472, + "complete_object_locator": 6468907568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -517646,16 +517652,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyKeysWithSuffix_FindSuffix", - "vtable_address": 6467114888, + "vtable_address": 6467118952, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -517773,7 +517779,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903656, + "complete_object_locator": 6468907752, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -517782,61 +517788,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyKeysWithSuffix_InputContainerSrc", - "vtable_address": 6467113952, + "vtable_address": 6467118016, "methods": [ - 6459242560, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459244752, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -517954,7 +517960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903248, + "complete_object_locator": 6468907344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -517963,16 +517969,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyKeysWithSuffix_InputContainerSrc", - "vtable_address": 6467114384, + "vtable_address": 6467118448, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -518090,7 +518096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903432, + "complete_object_locator": 6468907528, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -518099,61 +518105,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyKeysWithSuffix_ReplaceSuffix", - "vtable_address": 6467114960, + "vtable_address": 6467119024, "methods": [ - 6459242624, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459244816, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -518271,7 +518277,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903696, + "complete_object_locator": 6468907792, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -518280,16 +518286,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyKeysWithSuffix_ReplaceSuffix", - "vtable_address": 6467115392, + "vtable_address": 6467119456, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -518407,7 +518413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903880, + "complete_object_locator": 6468907976, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -518416,61 +518422,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyMatchingKeys_InputContainerSrc", - "vtable_address": 6467113448, + "vtable_address": 6467117512, "methods": [ - 6459242688, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459244880, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -518588,7 +518594,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903016, + "complete_object_locator": 6468907112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -518597,16 +518603,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyMatchingKeys_InputContainerSrc", - "vtable_address": 6467113880, + "vtable_address": 6467117944, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -518724,7 +518730,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468903208, + "complete_object_locator": 6468907304, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -518733,61 +518739,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyProperty_InputContainerProperty", - "vtable_address": 6467110384, + "vtable_address": 6467114448, "methods": [ - 6459242752, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459244944, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -518905,7 +518911,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901312, + "complete_object_locator": 6468905408, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -518914,16 +518920,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyProperty_InputContainerProperty", - "vtable_address": 6467110816, + "vtable_address": 6467114880, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -519041,7 +519047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901496, + "complete_object_locator": 6468905592, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -519050,61 +519056,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyProperty_InputContainerSrc", - "vtable_address": 6467109880, + "vtable_address": 6467113944, "methods": [ - 6459242816, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245008, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -519222,7 +519228,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901080, + "complete_object_locator": 6468905176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -519231,16 +519237,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyProperty_InputContainerSrc", - "vtable_address": 6467110312, + "vtable_address": 6467114376, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -519358,7 +519364,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901272, + "complete_object_locator": 6468905368, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -519367,61 +519373,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyProperty_TargetProperty", - "vtable_address": 6467110888, + "vtable_address": 6467114952, "methods": [ - 6459242880, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245072, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -519539,7 +519545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901536, + "complete_object_locator": 6468905632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -519548,16 +519554,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strCopyProperty_TargetProperty", - "vtable_address": 6467111320, + "vtable_address": 6467115384, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -519675,7 +519681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901720, + "complete_object_locator": 6468905816, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -519684,61 +519690,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strDrawText_Font", - "vtable_address": 6467128088, + "vtable_address": 6467132152, "methods": [ - 6459242944, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245136, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -519856,7 +519862,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911576, + "complete_object_locator": 6468915672, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -519865,16 +519871,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strDrawText_Font", - "vtable_address": 6467128520, + "vtable_address": 6467132584, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -519992,7 +519998,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468911768, + "complete_object_locator": 6468915864, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -520001,61 +520007,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strDrawText_InputContainerProperty", - "vtable_address": 6467124608, + "vtable_address": 6467128672, "methods": [ - 6459243008, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245200, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -520173,7 +520179,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468909232, + "complete_object_locator": 6468913328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -520182,16 +520188,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strDrawText_InputContainerProperty", - "vtable_address": 6467125040, + "vtable_address": 6467129104, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -520309,7 +520315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468909416, + "complete_object_locator": 6468913512, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -520318,61 +520324,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strDrawText_InputContainerSrc", - "vtable_address": 6467124104, + "vtable_address": 6467128168, "methods": [ - 6459243072, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245264, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -520490,7 +520496,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468909008, + "complete_object_locator": 6468913104, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -520499,16 +520505,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strDrawText_InputContainerSrc", - "vtable_address": 6467124536, + "vtable_address": 6467128600, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -520626,7 +520632,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468909192, + "complete_object_locator": 6468913288, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -520635,61 +520641,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strGenerateTexture_InitialContainer", - "vtable_address": 6467117504, + "vtable_address": 6467121568, "methods": [ - 6459243456, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245648, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -520807,7 +520813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468905056, + "complete_object_locator": 6468909152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -520816,16 +520822,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strGenerateTexture_InitialContainer", - "vtable_address": 6467117936, + "vtable_address": 6467122000, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -520943,7 +520949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468905240, + "complete_object_locator": 6468909336, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -520952,61 +520958,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strGenerateTexture_TargetParam", - "vtable_address": 6467117000, + "vtable_address": 6467121064, "methods": [ - 6459243520, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245712, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -521124,7 +521130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468904824, + "complete_object_locator": 6468908920, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -521133,16 +521139,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strGenerateTexture_TargetParam", - "vtable_address": 6467117432, + "vtable_address": 6467121496, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -521260,7 +521266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468905016, + "complete_object_locator": 6468909112, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -521269,61 +521275,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strInitWith_Container", - "vtable_address": 6467109376, + "vtable_address": 6467113440, "methods": [ - 6459243584, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459245776, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -521441,7 +521447,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900608, + "complete_object_locator": 6468904704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -521450,16 +521456,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strInitWith_Container", - "vtable_address": 6467109808, + "vtable_address": 6467113872, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -521577,7 +521583,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468900792, + "complete_object_locator": 6468904888, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -521586,61 +521592,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strPopInputQueue_Container", - "vtable_address": 6467123600, + "vtable_address": 6467127664, "methods": [ - 6459244096, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459246288, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -521758,7 +521764,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908784, + "complete_object_locator": 6468912880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -521767,16 +521773,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strPopInputQueue_Container", - "vtable_address": 6467124032, + "vtable_address": 6467128096, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -521894,7 +521900,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908968, + "complete_object_locator": 6468913064, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -521903,61 +521909,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strRandomRollInputVars_SeedInputVar", - "vtable_address": 6467111392, + "vtable_address": 6467115456, "methods": [ - 6459244160, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666784, - 6459666224, - 6459667472, - 6459651056, - 6459418624, - 6459415328, - 6459418208, - 6459415360, - 6459415920, - 6459415376, - 6459415344, - 6459758080, - 6459677920, - 6459735168, - 6459438960, - 6459613456, - 6459632208, - 6459638688, - 6459647872, - 6459425680, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654864, - 6459882448, - 6459701664, - 6459858640, - 6459825824, - 6459487952, - 6459302288, - 6459523232, - 6459554928, - 6459622960, - 6459631840, - 6459716480, - 6459680768, - 6459668816, - 6459657344, - 6459810992, - 6459803936, - 6459496240, - 6459496272, - 6459797232, - 6459461424, - 6459888928 + 6459246352, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668976, + 6459668416, + 6459669664, + 6459653248, + 6459420816, + 6459417520, + 6459420400, + 6459417552, + 6459418112, + 6459417568, + 6459417536, + 6459760272, + 6459680112, + 6459737360, + 6459441152, + 6459615648, + 6459634400, + 6459640880, + 6459650064, + 6459427872, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657056, + 6459884640, + 6459703856, + 6459860832, + 6459828016, + 6459490144, + 6459304480, + 6459525424, + 6459557120, + 6459625152, + 6459634032, + 6459718672, + 6459682960, + 6459671008, + 6459659536, + 6459813184, + 6459806128, + 6459498432, + 6459498464, + 6459799424, + 6459463616, + 6459891120 ], "bases": [ { @@ -522075,7 +522081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901760, + "complete_object_locator": 6468905856, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -522084,16 +522090,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strRandomRollInputVars_SeedInputVar", - "vtable_address": 6467111824, + "vtable_address": 6467115888, "methods": [ - 6459413312, - 6459395616, - 6459397840, - 6459411824, - 6459411280, - 6459388976, - 6459377360, - 6459381792 + 6459415504, + 6459397808, + 6459400032, + 6459414016, + 6459413472, + 6459391168, + 6459379552, + 6459383984 ], "bases": [ { @@ -522211,7 +522217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468901944, + "complete_object_locator": 6468906040, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -522220,61 +522226,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecConditionalMutators", - "vtable_address": 6467123064, + "vtable_address": 6467127128, "methods": [ - 6459244864, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667312, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415008, - 6459418208, - 6459415360, - 6459415728, - 6459415376, - 6459415344, - 6459753856, - 6459676384, - 6459729024, - 6459435696, - 6459613456, - 6459632208, - 6459636384, - 6459646144, - 6459423376, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653520, - 6459879184, - 6459694144, - 6459850896, - 6459821312, - 6459483520, - 6459292688, - 6459513440, - 6459549936, - 6459620656, - 6459631840, - 6459715648, - 6459680768, - 6459668624, - 6459657344, - 6459809456, - 6459802400, - 6459496240, - 6459496272, - 6459795888, - 6459455472, - 6459888928 + 6459247056, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669504, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417200, + 6459420400, + 6459417552, + 6459417920, + 6459417568, + 6459417536, + 6459756048, + 6459678576, + 6459731216, + 6459437888, + 6459615648, + 6459634400, + 6459638576, + 6459648336, + 6459425568, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655712, + 6459881376, + 6459696336, + 6459853088, + 6459823504, + 6459485712, + 6459294880, + 6459515632, + 6459552128, + 6459622848, + 6459634032, + 6459717840, + 6459682960, + 6459670816, + 6459659536, + 6459811648, + 6459804592, + 6459498432, + 6459498464, + 6459798080, + 6459457664, + 6459891120 ], "bases": [ { @@ -522364,7 +522370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908576, + "complete_object_locator": 6468912672, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -522373,20 +522379,20 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecConditionalMutators", - "vtable_address": 6467123496, + "vtable_address": 6467127560, "methods": [ - 6459320528, - 6459321424, - 6459334832, - 6459351120, - 6459355104, - 6459324640, - 6459350688, - 6459331504, - 6459331328, - 6459331840, - 6459341392, - 6459333648 + 6459322720, + 6459323616, + 6459337024, + 6459353312, + 6459357296, + 6459326832, + 6459352880, + 6459333696, + 6459333520, + 6459334032, + 6459343584, + 6459335840 ], "bases": [ { @@ -522476,7 +522482,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468908744, + "complete_object_locator": 6468912840, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -522485,61 +522491,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecConditions", - "vtable_address": 6467129608, + "vtable_address": 6467133672, "methods": [ - 6459244928, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667296, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459414976, - 6459418208, - 6459415360, - 6459415712, - 6459415376, - 6459415344, - 6459753504, - 6459676256, - 6459728512, - 6459435424, - 6459613456, - 6459632208, - 6459636192, - 6459646000, - 6459423184, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653408, - 6459878912, - 6459693168, - 6459850272, - 6459820960, - 6459483168, - 6459291888, - 6459512624, - 6459549520, - 6459620464, - 6459631840, - 6459715584, - 6459680768, - 6459668608, - 6459657344, - 6459809328, - 6459802272, - 6459496240, - 6459496272, - 6459795776, - 6459454976, - 6459888928 + 6459247120, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669488, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417168, + 6459420400, + 6459417552, + 6459417904, + 6459417568, + 6459417536, + 6459755696, + 6459678448, + 6459730704, + 6459437616, + 6459615648, + 6459634400, + 6459638384, + 6459648192, + 6459425376, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655600, + 6459881104, + 6459695360, + 6459852464, + 6459823152, + 6459485360, + 6459294080, + 6459514816, + 6459551712, + 6459622656, + 6459634032, + 6459717776, + 6459682960, + 6459670800, + 6459659536, + 6459811520, + 6459804464, + 6459498432, + 6459498464, + 6459797968, + 6459457168, + 6459891120 ], "bases": [ { @@ -522629,7 +522635,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912216, + "complete_object_locator": 6468916312, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -522638,20 +522644,20 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecConditions", - "vtable_address": 6467130040, + "vtable_address": 6467134104, "methods": [ - 6459320464, - 6459321168, - 6459334128, - 6459350848, - 6459354816, - 6459323984, - 6459350672, - 6459331488, - 6459331312, - 6459331664, - 6459340432, - 6459333600 + 6459322656, + 6459323360, + 6459336320, + 6459353040, + 6459357008, + 6459326176, + 6459352864, + 6459333680, + 6459333504, + 6459333856, + 6459342624, + 6459335792 ], "bases": [ { @@ -522741,7 +522747,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468912384, + "complete_object_locator": 6468916480, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -522750,61 +522756,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecDrawText_Position", - "vtable_address": 6467126096, + "vtable_address": 6467130160, "methods": [ - 6459244992, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666752, - 6459666224, - 6459667472, - 6459651056, - 6459418560, - 6459415328, - 6459418208, - 6459415360, - 6459415888, - 6459415376, - 6459415344, - 6459757376, - 6459677664, - 6459734144, - 6459438416, - 6459613456, - 6459632208, - 6459638304, - 6459647584, - 6459425296, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654640, - 6459881904, - 6459700400, - 6459857360, - 6459825120, - 6459487232, - 6459300688, - 6459521600, - 6459554096, - 6459622576, - 6459631840, - 6459716288, - 6459680768, - 6459668784, - 6459657344, - 6459810736, - 6459803680, - 6459496240, - 6459496272, - 6459797008, - 6459460432, - 6459888928 + 6459247184, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668944, + 6459668416, + 6459669664, + 6459653248, + 6459420752, + 6459417520, + 6459420400, + 6459417552, + 6459418080, + 6459417568, + 6459417536, + 6459759568, + 6459679856, + 6459736336, + 6459440608, + 6459615648, + 6459634400, + 6459640496, + 6459649776, + 6459427488, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656832, + 6459884096, + 6459702592, + 6459859552, + 6459827312, + 6459489424, + 6459302880, + 6459523792, + 6459556288, + 6459624768, + 6459634032, + 6459718480, + 6459682960, + 6459670976, + 6459659536, + 6459812928, + 6459805872, + 6459498432, + 6459498464, + 6459799200, + 6459462624, + 6459891120 ], "bases": [ { @@ -522922,7 +522928,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468910144, + "complete_object_locator": 6468914240, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -522931,16 +522937,16 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecDrawText_Position", - "vtable_address": 6467126528, + "vtable_address": 6467130592, "methods": [ - 6459413168, - 6459395504, - 6459397648, - 6459411792, - 6459411248, - 6459388432, - 6459377200, - 6459381312 + 6459415360, + 6459397696, + 6459399840, + 6459413984, + 6459413440, + 6459390624, + 6459379392, + 6459383504 ], "bases": [ { @@ -523058,7 +523064,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468910328, + "complete_object_locator": 6468914424, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -523067,61 +523073,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecRandomRollInputVars_InputVarsToRoll", - "vtable_address": 6467112912, + "vtable_address": 6467116976, "methods": [ - 6459245312, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667456, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415296, - 6459418208, - 6459415360, - 6459415872, - 6459415376, - 6459415344, - 6459757024, - 6459677536, - 6459733632, - 6459438144, - 6459613456, - 6459632208, - 6459638112, - 6459647440, - 6459425104, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654528, - 6459881632, - 6459699808, - 6459856736, - 6459824768, - 6459486880, - 6459299888, - 6459520784, - 6459553680, - 6459622384, - 6459631840, - 6459716224, - 6459680768, - 6459668768, - 6459657344, - 6459810608, - 6459803552, - 6459496240, - 6459496272, - 6459796896, - 6459459936, - 6459888928 + 6459247504, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669648, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417488, + 6459420400, + 6459417552, + 6459418064, + 6459417568, + 6459417536, + 6459759216, + 6459679728, + 6459735824, + 6459440336, + 6459615648, + 6459634400, + 6459640304, + 6459649632, + 6459427296, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656720, + 6459883824, + 6459702000, + 6459858928, + 6459826960, + 6459489072, + 6459302080, + 6459522976, + 6459555872, + 6459624576, + 6459634032, + 6459718416, + 6459682960, + 6459670960, + 6459659536, + 6459812800, + 6459805744, + 6459498432, + 6459498464, + 6459799088, + 6459462128, + 6459891120 ], "bases": [ { @@ -523211,7 +523217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468902432, + "complete_object_locator": 6468906528, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -523220,20 +523226,20 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecRandomRollInputVars_InputVarsToRoll", - "vtable_address": 6467113344, + "vtable_address": 6467117408, "methods": [ - 6459321104, - 6459323728, - 6459339872, - 6459354464, - 6459358032, - 6459330608, - 6459350832, - 6459331648, - 6459331472, - 6459333424, - 6459350000, - 6459334080 + 6459323296, + 6459325920, + 6459342064, + 6459356656, + 6459360224, + 6459332800, + 6459353024, + 6459333840, + 6459333664, + 6459335616, + 6459352192, + 6459336272 ], "bases": [ { @@ -523323,7 +523329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468902600, + "complete_object_locator": 6468906696, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -523332,61 +523338,61 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecTexGenInstructions", - "vtable_address": 6467122528, + "vtable_address": 6467126592, "methods": [ - 6459245376, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667312, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415008, - 6459418208, - 6459415360, - 6459415728, - 6459415376, - 6459415344, - 6459753856, - 6459676384, - 6459729024, - 6459435696, - 6459613456, - 6459632208, - 6459636384, - 6459646144, - 6459423376, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653520, - 6459879184, - 6459694144, - 6459850896, - 6459821312, - 6459483520, - 6459292688, - 6459513440, - 6459549936, - 6459620656, - 6459631840, - 6459715648, - 6459680768, - 6459668624, - 6459657344, - 6459809456, - 6459802400, - 6459496240, - 6459496272, - 6459795888, - 6459455472, - 6459888928 + 6459247568, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669504, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417200, + 6459420400, + 6459417552, + 6459417920, + 6459417568, + 6459417536, + 6459756048, + 6459678576, + 6459731216, + 6459437888, + 6459615648, + 6459634400, + 6459638576, + 6459648336, + 6459425568, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655712, + 6459881376, + 6459696336, + 6459853088, + 6459823504, + 6459485712, + 6459294880, + 6459515632, + 6459552128, + 6459622848, + 6459634032, + 6459717840, + 6459682960, + 6459670816, + 6459659536, + 6459811648, + 6459804592, + 6459498432, + 6459498464, + 6459798080, + 6459457664, + 6459891120 ], "bases": [ { @@ -523476,7 +523482,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468907544, + "complete_object_locator": 6468911640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -523485,20 +523491,20 @@ }, { "type_name": "`public: static void __cdecl CompMatPropertyMutator_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecTexGenInstructions", - "vtable_address": 6467122960, + "vtable_address": 6467127024, "methods": [ - 6459320528, - 6459321424, - 6459334832, - 6459351120, - 6459355104, - 6459324640, - 6459350688, - 6459331504, - 6459331328, - 6459331840, - 6459341392, - 6459333648 + 6459322720, + 6459323616, + 6459337024, + 6459353312, + 6459357296, + 6459326832, + 6459352880, + 6459333696, + 6459333520, + 6459334032, + 6459343584, + 6459335840 ], "bases": [ { @@ -523588,7 +523594,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468907712, + "complete_object_locator": 6468911808, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -523597,61 +523603,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompMatIncludes", - "vtable_address": 6467140456, + "vtable_address": 6467144520, "methods": [ - 6459244608, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667440, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415264, - 6459418208, - 6459415360, - 6459415856, - 6459415376, - 6459415344, - 6459756672, - 6459677408, - 6459733120, - 6459437872, - 6459613456, - 6459632208, - 6459637920, - 6459647296, - 6459424912, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654416, - 6459881360, - 6459699216, - 6459856112, - 6459824416, - 6459486528, - 6459299088, - 6459519968, - 6459553264, - 6459622192, - 6459631840, - 6459716160, - 6459680768, - 6459668752, - 6459657344, - 6459810480, - 6459803424, - 6459496240, - 6459496272, - 6459796784, - 6459459440, - 6459888928 + 6459246800, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669632, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417456, + 6459420400, + 6459417552, + 6459418048, + 6459417568, + 6459417536, + 6459758864, + 6459679600, + 6459735312, + 6459440064, + 6459615648, + 6459634400, + 6459640112, + 6459649488, + 6459427104, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656608, + 6459883552, + 6459701408, + 6459858304, + 6459826608, + 6459488720, + 6459301280, + 6459522160, + 6459555456, + 6459624384, + 6459634032, + 6459718352, + 6459682960, + 6459670944, + 6459659536, + 6459812672, + 6459805616, + 6459498432, + 6459498464, + 6459798976, + 6459461632, + 6459891120 ], "bases": [ { @@ -523741,7 +523747,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468919960, + "complete_object_locator": 6468924056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -523750,20 +523756,20 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompMatIncludes", - "vtable_address": 6467140888, + "vtable_address": 6467144952, "methods": [ - 6459321040, - 6459323472, - 6459339328, - 6459354080, - 6459357664, - 6459329888, - 6459350816, - 6459331632, - 6459331456, - 6459333248, - 6459349344, - 6459334032 + 6459323232, + 6459325664, + 6459341520, + 6459356272, + 6459359856, + 6459332080, + 6459353008, + 6459333824, + 6459333648, + 6459335440, + 6459351536, + 6459336224 ], "bases": [ { @@ -523853,7 +523859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468920128, + "complete_object_locator": 6468924224, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -523862,61 +523868,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeInputContainers", - "vtable_address": 6467143560, + "vtable_address": 6467147624, "methods": [ - 6459244672, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667360, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415104, - 6459418208, - 6459415360, - 6459415776, - 6459415376, - 6459415344, - 6459754912, - 6459676768, - 6459730560, - 6459436512, - 6459613456, - 6459632208, - 6459636960, - 6459646576, - 6459423952, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653856, - 6459880000, - 6459695920, - 6459852768, - 6459822368, - 6459484576, - 6459295088, - 6459515888, - 6459551184, - 6459621232, - 6459631840, - 6459715840, - 6459680768, - 6459668672, - 6459657344, - 6459809840, - 6459802784, - 6459496240, - 6459496272, - 6459796224, - 6459456960, - 6459888928 + 6459246864, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669552, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417296, + 6459420400, + 6459417552, + 6459417968, + 6459417568, + 6459417536, + 6459757104, + 6459678960, + 6459732752, + 6459438704, + 6459615648, + 6459634400, + 6459639152, + 6459648768, + 6459426144, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656048, + 6459882192, + 6459698112, + 6459854960, + 6459824560, + 6459486768, + 6459297280, + 6459518080, + 6459553376, + 6459623424, + 6459634032, + 6459718032, + 6459682960, + 6459670864, + 6459659536, + 6459812032, + 6459804976, + 6459498432, + 6459498464, + 6459798416, + 6459459152, + 6459891120 ], "bases": [ { @@ -524006,7 +524012,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923064, + "complete_object_locator": 6468927160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -524015,20 +524021,20 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeInputContainers", - "vtable_address": 6467143992, + "vtable_address": 6467148056, "methods": [ - 6459320720, - 6459322192, - 6459336576, - 6459352272, - 6459356096, - 6459326608, - 6459350736, - 6459331552, - 6459331376, - 6459332368, - 6459343504, - 6459333792 + 6459322912, + 6459324384, + 6459338768, + 6459354464, + 6459358288, + 6459328800, + 6459352928, + 6459333744, + 6459333568, + 6459334560, + 6459345696, + 6459335984 ], "bases": [ { @@ -524118,7 +524124,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468923232, + "complete_object_locator": 6468927328, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -524127,173 +524133,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecMatchFilters", - "vtable_address": 6467142008, + "vtable_address": 6467146072, "methods": [ - 6459245184, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667392, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415168, - 6459418208, - 6459415360, - 6459415808, - 6459415376, - 6459415344, - 6459755616, - 6459677024, - 6459731584, - 6459437056, - 6459613456, - 6459632208, - 6459637344, - 6459646864, - 6459424336, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654080, - 6459880544, - 6459697104, - 6459854240, - 6459823360, - 6459485472, - 6459296688, - 6459517520, - 6459552016, - 6459621616, - 6459631840, - 6459715968, - 6459680768, - 6459668704, - 6459657344, - 6459810096, - 6459803040, - 6459496240, - 6459496272, - 6459796448, - 6459457952, - 6459888928 - ], - "bases": [ - { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 5 - } - } - }, - { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 4 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 2 - } - } - }, - { - "type_name": "CBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - }, - { - "type_name": "IToolAttr_Array", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 552, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468921624, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 1 - } - } - }, - { - "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecMatchFilters", - "vtable_address": 6467142440, - "methods": [ - 6459320848, - 6459322704, - 6459337632, - 6459353040, - 6459356736, - 6459327920, - 6459350768, - 6459331584, - 6459331408, - 6459332720, - 6459346768, - 6459333888 + 6459247376, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669584, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417360, + 6459420400, + 6459417552, + 6459418000, + 6459417568, + 6459417536, + 6459757808, + 6459679216, + 6459733776, + 6459439248, + 6459615648, + 6459634400, + 6459639536, + 6459649056, + 6459426528, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656272, + 6459882736, + 6459699296, + 6459856432, + 6459825552, + 6459487664, + 6459298880, + 6459519712, + 6459554208, + 6459623808, + 6459634032, + 6459718160, + 6459682960, + 6459670896, + 6459659536, + 6459812288, + 6459805232, + 6459498432, + 6459498464, + 6459798640, + 6459460144, + 6459891120 ], "bases": [ { @@ -524383,160 +524277,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468921792, - "offset": 552, - "constructor_displacement": 0, - "class_attributes": 1 - } - } - }, - { - "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecPropertyMutators", - "vtable_address": 6467145112, - "methods": [ - 6459245248, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667328, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415040, - 6459418208, - 6459415360, - 6459415744, - 6459415376, - 6459415344, - 6459754208, - 6459676512, - 6459729536, - 6459435968, - 6459613456, - 6459632208, - 6459636576, - 6459646288, - 6459423568, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653632, - 6459879456, - 6459694736, - 6459851520, - 6459821664, - 6459483872, - 6459293488, - 6459514256, - 6459550352, - 6459620848, - 6459631840, - 6459715712, - 6459680768, - 6459668640, - 6459657344, - 6459809584, - 6459802528, - 6459496240, - 6459496272, - 6459796000, - 6459455968, - 6459888928 - ], - "bases": [ - { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 5 - } - } - }, - { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 4 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 2 - } - } - }, - { - "type_name": "CBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IBaseToolAttr", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - }, - { - "type_name": "IToolAttr_Array", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 552, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468924504, + "complete_object_locator": 6468925720, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -524544,25 +524285,25 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecPropertyMutators", - "vtable_address": 6467145544, + "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecMatchFilters", + "vtable_address": 6467146504, "methods": [ - 6459320592, - 6459321680, - 6459335360, - 6459351504, - 6459355456, - 6459325296, - 6459350704, - 6459331520, - 6459331344, - 6459332016, - 6459342032, - 6459333696 + 6459323040, + 6459324896, + 6459339824, + 6459355232, + 6459358928, + 6459330112, + 6459352960, + 6459333776, + 6459333600, + 6459334912, + 6459348960, + 6459336080 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", "details": { "Msvc": { "attributes": 64, @@ -524576,7 +524317,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", "details": { "Msvc": { "attributes": 64, @@ -524590,7 +524331,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", "details": { "Msvc": { "attributes": 64, @@ -524648,7 +524389,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468924672, + "complete_object_locator": 6468925888, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -524656,66 +524397,66 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_ChildModelName", - "vtable_address": 6467159088, + "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecPropertyMutators", + "vtable_address": 6467149176, "methods": [ - 6459239040, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666512, - 6459666224, - 6459667472, - 6459651056, - 6459418432, - 6459415328, - 6459418208, - 6459415360, - 6459415648, - 6459415376, - 6459415344, - 6459752096, - 6459675744, - 6459726464, - 6459434336, - 6459613456, - 6459632208, - 6459635424, - 6459645424, - 6459422416, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652960, - 6459877824, - 6459690352, - 6459847776, - 6459819552, - 6459481760, - 6459288688, - 6459509360, - 6459547856, - 6459619696, - 6459631840, - 6459715328, - 6459680768, - 6459668032, - 6459657344, - 6459808816, - 6459801760, - 6459496240, - 6459496272, - 6459795328, - 6459452992, - 6459888928 + 6459247440, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669520, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417232, + 6459420400, + 6459417552, + 6459417936, + 6459417568, + 6459417536, + 6459756400, + 6459678704, + 6459731728, + 6459438160, + 6459615648, + 6459634400, + 6459638768, + 6459648480, + 6459425760, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655824, + 6459881648, + 6459696928, + 6459853712, + 6459823856, + 6459486064, + 6459295680, + 6459516448, + 6459552544, + 6459623040, + 6459634032, + 6459717904, + 6459682960, + 6459670832, + 6459659536, + 6459811776, + 6459804720, + 6459498432, + 6459498464, + 6459798192, + 6459458160, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", "details": { "Msvc": { "attributes": 64, @@ -524724,12 +524465,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 7 + "num_contained_bases": 5 } } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", "details": { "Msvc": { "attributes": 64, @@ -524738,12 +524479,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 6 + "num_contained_bases": 4 } } }, { - "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", "details": { "Msvc": { "attributes": 64, @@ -524752,12 +524493,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 5 + "num_contained_bases": 2 } } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseToolAttr", "details": { "Msvc": { "attributes": 64, @@ -524766,12 +524507,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 2 + "num_contained_bases": 1 } } }, { - "type_name": "CBaseToolAttr", + "type_name": "IBaseToolAttr", "details": { "Msvc": { "attributes": 64, @@ -524780,31 +524521,101 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 1 + "num_contained_bases": 0 } } }, { - "type_name": "IBaseToolAttr", + "type_name": "IToolAttr_Array", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 0, + "mdisp": 552, "pdisp": -1, "vdisp": 0 }, "num_contained_bases": 0 } } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468928600, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 1 + } + } + }, + { + "type_name": "`public: static void __cdecl CompositeMaterialAssemblyProcedure_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecPropertyMutators", + "vtable_address": 6467149608, + "methods": [ + 6459322784, + 6459323872, + 6459337552, + 6459353696, + 6459357648, + 6459327488, + 6459352896, + 6459333712, + 6459333536, + 6459334208, + 6459344224, + 6459335888 + ], + "bases": [ + { + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialAssemblyProcedure_t>", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 5 + } + } }, { - "type_name": "IToolAttr_TypedValue > >", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t,void>", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 4 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialAssemblyProcedure_t>", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 2 + } + } + }, + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, "pdisp": -1, "vdisp": 0 }, @@ -524813,12 +524624,26 @@ } }, { - "type_name": "IToolAttr_Value", + "type_name": "IBaseToolAttr", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "IToolAttr_Array", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 552, "pdisp": -1, "vdisp": 0 }, @@ -524829,8 +524654,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468934792, - "offset": 0, + "complete_object_locator": 6468928768, + "offset": 552, "constructor_displacement": 0, "class_attributes": 1 } @@ -524838,16 +524663,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_ChildModelName", - "vtable_address": 6467159520, + "vtable_address": 6467163152, "methods": [ - 6459412640, - 6459395024, - 6459397264, - 6459411728, - 6459411184, - 6459387408, - 6459376880, - 6459380352 + 6459241232, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668704, + 6459668416, + 6459669664, + 6459653248, + 6459420624, + 6459417520, + 6459420400, + 6459417552, + 6459417840, + 6459417568, + 6459417536, + 6459754288, + 6459677936, + 6459728656, + 6459436528, + 6459615648, + 6459634400, + 6459637616, + 6459647616, + 6459424608, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655152, + 6459880016, + 6459692544, + 6459849968, + 6459821744, + 6459483952, + 6459290880, + 6459511552, + 6459550048, + 6459621888, + 6459634032, + 6459717520, + 6459682960, + 6459670224, + 6459659536, + 6459811008, + 6459803952, + 6459498432, + 6459498464, + 6459797520, + 6459455184, + 6459891120 ], "bases": [ { @@ -524965,74 +524835,29 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468934984, - "offset": 752, + "complete_object_locator": 6468938888, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_KVModelStateChoices", - "vtable_address": 6467157096, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_ChildModelName", + "vtable_address": 6467163584, "methods": [ - 6459239168, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666896, - 6459666224, - 6459667472, - 6459651056, - 6459418848, - 6459415328, - 6459418208, - 6459415360, - 6459416032, - 6459415376, - 6459415344, - 6459760544, - 6459678816, - 6459738752, - 6459440864, - 6459613456, - 6459632208, - 6459640032, - 6459648880, - 6459427024, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655648, - 6459884352, - 6459706080, - 6459863088, - 6459828288, - 6459490416, - 6459307888, - 6459528944, - 6459557840, - 6459624304, - 6459631840, - 6459717248, - 6459680768, - 6459668928, - 6459657344, - 6459811888, - 6459804832, - 6459496240, - 6459496272, - 6459798016, - 6459464896, - 6459888928 + 6459414832, + 6459397216, + 6459399456, + 6459413920, + 6459413376, + 6459389600, + 6459379072, + 6459382544 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -525046,7 +524871,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", "details": { "Msvc": { "attributes": 64, @@ -525060,7 +524885,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -525074,7 +524899,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -525116,12 +524941,12 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue > >", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 544, + "mdisp": 752, "pdisp": -1, "vdisp": 0 }, @@ -525135,7 +524960,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 544, + "mdisp": 752, "pdisp": -1, "vdisp": 0 }, @@ -525146,8 +524971,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468933440, - "offset": 0, + "complete_object_locator": 6468939080, + "offset": 752, "constructor_displacement": 0, "class_attributes": 1 } @@ -525155,16 +524980,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_KVModelStateChoices", - "vtable_address": 6467157528, + "vtable_address": 6467161160, "methods": [ - 6459413632, - 6459395888, - 6459398512, - 6459411936, - 6459411392, - 6459390848, - 6459377920, - 6459383472 + 6459241360, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669088, + 6459668416, + 6459669664, + 6459653248, + 6459421040, + 6459417520, + 6459420400, + 6459417552, + 6459418224, + 6459417568, + 6459417536, + 6459762736, + 6459681008, + 6459740944, + 6459443056, + 6459615648, + 6459634400, + 6459642224, + 6459651072, + 6459429216, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657840, + 6459886544, + 6459708272, + 6459865280, + 6459830480, + 6459492608, + 6459310080, + 6459531136, + 6459560032, + 6459626496, + 6459634032, + 6459719440, + 6459682960, + 6459671120, + 6459659536, + 6459814080, + 6459807024, + 6459498432, + 6459498464, + 6459800208, + 6459467088, + 6459891120 ], "bases": [ { @@ -525282,74 +525152,29 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468933624, - "offset": 544, + "complete_object_locator": 6468937536, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_ModelName", - "vtable_address": 6467152632, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_KVModelStateChoices", + "vtable_address": 6467161592, "methods": [ - 6459239232, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666512, - 6459666224, - 6459667472, - 6459651056, - 6459418432, - 6459415328, - 6459418208, - 6459415360, - 6459415648, - 6459415376, - 6459415344, - 6459752096, - 6459675744, - 6459726464, - 6459434336, - 6459613456, - 6459632208, - 6459635424, - 6459645424, - 6459422416, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459652960, - 6459877824, - 6459690352, - 6459847776, - 6459819552, - 6459481760, - 6459288688, - 6459509360, - 6459547856, - 6459619696, - 6459631840, - 6459715328, - 6459680768, - 6459668032, - 6459657344, - 6459808816, - 6459801760, - 6459496240, - 6459496272, - 6459795328, - 6459452992, - 6459888928 + 6459415824, + 6459398080, + 6459400704, + 6459414128, + 6459413584, + 6459393040, + 6459380112, + 6459385664 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -525363,7 +525188,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -525377,7 +525202,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -525391,7 +525216,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -525433,12 +525258,12 @@ } }, { - "type_name": "IToolAttr_TypedValue > >", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 544, "pdisp": -1, "vdisp": 0 }, @@ -525452,7 +525277,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 544, "pdisp": -1, "vdisp": 0 }, @@ -525463,8 +525288,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468930480, - "offset": 0, + "complete_object_locator": 6468937720, + "offset": 544, "constructor_displacement": 0, "class_attributes": 1 } @@ -525472,16 +525297,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_ModelName", - "vtable_address": 6467153064, + "vtable_address": 6467156696, "methods": [ - 6459412640, - 6459395024, - 6459397264, - 6459411728, - 6459411184, - 6459387408, - 6459376880, - 6459380352 + 6459241424, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668704, + 6459668416, + 6459669664, + 6459653248, + 6459420624, + 6459417520, + 6459420400, + 6459417552, + 6459417840, + 6459417568, + 6459417536, + 6459754288, + 6459677936, + 6459728656, + 6459436528, + 6459615648, + 6459634400, + 6459637616, + 6459647616, + 6459424608, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655152, + 6459880016, + 6459692544, + 6459849968, + 6459821744, + 6459483952, + 6459290880, + 6459511552, + 6459550048, + 6459621888, + 6459634032, + 6459717520, + 6459682960, + 6459670224, + 6459659536, + 6459811008, + 6459803952, + 6459498432, + 6459498464, + 6459797520, + 6459455184, + 6459891120 ], "bases": [ { @@ -525599,74 +525469,29 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468930664, - "offset": 752, + "complete_object_locator": 6468934576, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnableChildModel", - "vtable_address": 6467158584, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_ModelName", + "vtable_address": 6467157128, "methods": [ - 6459239488, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667072, - 6459666224, - 6459667472, - 6459651056, - 6459419200, - 6459415328, - 6459418208, - 6459415360, - 6459416208, - 6459415376, - 6459415344, - 6459764416, - 6459680224, - 6459744384, - 6459443856, - 6459613456, - 6459632208, - 6459642144, - 6459650464, - 6459429136, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656880, - 6459887344, - 6459712112, - 6459869952, - 6459832016, - 6459494288, - 6459316688, - 6459537920, - 6459562416, - 6459626416, - 6459631840, - 6459717984, - 6459680768, - 6459669104, - 6459657344, - 6459813296, - 6459806240, - 6459496240, - 6459496272, - 6459799248, - 6459470352, - 6459888928 + 6459414832, + 6459397216, + 6459399456, + 6459413920, + 6459413376, + 6459389600, + 6459379072, + 6459382544 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -525680,7 +525505,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", "details": { "Msvc": { "attributes": 64, @@ -525694,7 +525519,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -525708,7 +525533,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -525750,12 +525575,12 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue > >", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 752, "pdisp": -1, "vdisp": 0 }, @@ -525769,7 +525594,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 752, "pdisp": -1, "vdisp": 0 }, @@ -525780,8 +525605,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468934400, - "offset": 0, + "complete_object_locator": 6468934760, + "offset": 752, "constructor_displacement": 0, "class_attributes": 1 } @@ -525789,16 +525614,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnableChildModel", - "vtable_address": 6467159016, - "methods": [ - 6459414832, - 6459396592, - 6459399568, - 6459412112, - 6459411568, - 6459393664, - 6459378656, - 6459384880 + "vtable_address": 6467162648, + "methods": [ + 6459241680, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669264, + 6459668416, + 6459669664, + 6459653248, + 6459421392, + 6459417520, + 6459420400, + 6459417552, + 6459418400, + 6459417568, + 6459417536, + 6459766608, + 6459682416, + 6459746576, + 6459446048, + 6459615648, + 6459634400, + 6459644336, + 6459652656, + 6459431328, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659072, + 6459889536, + 6459714304, + 6459872144, + 6459834208, + 6459496480, + 6459318880, + 6459540112, + 6459564608, + 6459628608, + 6459634032, + 6459720176, + 6459682960, + 6459671296, + 6459659536, + 6459815488, + 6459808432, + 6459498432, + 6459498464, + 6459801440, + 6459472544, + 6459891120 ], "bases": [ { @@ -525916,74 +525786,29 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468934584, - "offset": 528, + "complete_object_locator": 6468938496, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flCycle", - "vtable_address": 6467155608, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnableChildModel", + "vtable_address": 6467163080, "methods": [ - 6459240384, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666304, - 6459666224, - 6459667472, - 6459651056, - 6459418336, - 6459415328, - 6459418208, - 6459415360, - 6459415440, - 6459415376, - 6459415344, - 6459747520, - 6459674080, - 6459719808, - 6459430800, - 6459613456, - 6459632208, - 6459632928, - 6459643552, - 6459419920, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651504, - 6459874288, - 6459682368, - 6459839552, - 6459814864, - 6459477072, - 6459278288, - 6459498752, - 6459542448, - 6459617200, - 6459631840, - 6459714496, - 6459680768, - 6459667568, - 6459657344, - 6459807152, - 6459800096, - 6459496240, - 6459496272, - 6459793872, - 6459446544, - 6459888928 + 6459417024, + 6459398784, + 6459401760, + 6459414304, + 6459413760, + 6459395856, + 6459380848, + 6459387072 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -525997,7 +525822,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526011,7 +525836,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -526025,7 +525850,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526067,7 +525892,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -526097,8 +525922,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468932480, - "offset": 0, + "complete_object_locator": 6468938680, + "offset": 528, "constructor_displacement": 0, "class_attributes": 1 } @@ -526106,16 +525931,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flCycle", - "vtable_address": 6467156040, - "methods": [ - 6459412320, - 6459394768, - 6459396976, - 6459411680, - 6459411136, - 6459386608, - 6459376672, - 6459379632 + "vtable_address": 6467159672, + "methods": [ + 6459242576, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668496, + 6459668416, + 6459669664, + 6459653248, + 6459420528, + 6459417520, + 6459420400, + 6459417552, + 6459417632, + 6459417568, + 6459417536, + 6459749712, + 6459676272, + 6459722000, + 6459432992, + 6459615648, + 6459634400, + 6459635120, + 6459645744, + 6459422112, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653696, + 6459876480, + 6459684560, + 6459841744, + 6459817056, + 6459479264, + 6459280480, + 6459500944, + 6459544640, + 6459619392, + 6459634032, + 6459716688, + 6459682960, + 6459669760, + 6459659536, + 6459809344, + 6459802288, + 6459498432, + 6459498464, + 6459796064, + 6459448736, + 6459891120 ], "bases": [ { @@ -526233,74 +526103,29 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468932664, - "offset": 528, + "complete_object_locator": 6468936576, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nSequenceIndex", - "vtable_address": 6467154120, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flCycle", + "vtable_address": 6467160104, "methods": [ - 6459241600, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666272, - 6459666224, - 6459667472, - 6459651056, - 6459418272, - 6459415328, - 6459418208, - 6459415360, - 6459415408, - 6459415376, - 6459415344, - 6459746816, - 6459673824, - 6459718784, - 6459430256, - 6459613456, - 6459632208, - 6459632544, - 6459643264, - 6459419536, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651280, - 6459873744, - 6459681312, - 6459838304, - 6459814192, - 6459476368, - 6459276688, - 6459497120, - 6459541616, - 6459616816, - 6459631840, - 6459714368, - 6459680768, - 6459667536, - 6459657344, - 6459806896, - 6459799840, - 6459496240, - 6459496272, - 6459793648, - 6459445552, - 6459888928 + 6459414512, + 6459396960, + 6459399168, + 6459413872, + 6459413328, + 6459388800, + 6459378864, + 6459381824 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -526314,7 +526139,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526328,7 +526153,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -526342,7 +526167,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526384,7 +526209,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -526414,8 +526239,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468931520, - "offset": 0, + "complete_object_locator": 6468936760, + "offset": 528, "constructor_displacement": 0, "class_attributes": 1 } @@ -526423,16 +526248,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nSequenceIndex", - "vtable_address": 6467154552, - "methods": [ - 6459412176, - 6459394688, - 6459396784, - 6459411648, - 6459411104, - 6459386096, - 6459376544, - 6459379152 + "vtable_address": 6467158184, + "methods": [ + 6459243792, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668464, + 6459668416, + 6459669664, + 6459653248, + 6459420464, + 6459417520, + 6459420400, + 6459417552, + 6459417600, + 6459417568, + 6459417536, + 6459749008, + 6459676016, + 6459720976, + 6459432448, + 6459615648, + 6459634400, + 6459634736, + 6459645456, + 6459421728, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653472, + 6459875936, + 6459683504, + 6459840496, + 6459816384, + 6459478560, + 6459278880, + 6459499312, + 6459543808, + 6459619008, + 6459634032, + 6459716560, + 6459682960, + 6459669728, + 6459659536, + 6459809088, + 6459802032, + 6459498432, + 6459498464, + 6459795840, + 6459447744, + 6459891120 ], "bases": [ { @@ -526550,116 +526420,29 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468931704, - "offset": 528, + "complete_object_locator": 6468935616, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterialAssemblyProcedures", - "vtable_address": 6467160608, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nSequenceIndex", + "vtable_address": 6467158616, "methods": [ - 6459244736, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667344, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415072, - 6459418208, - 6459415360, - 6459415760, - 6459415376, - 6459415344, - 6459754560, - 6459676640, - 6459730048, - 6459436240, - 6459613456, - 6459632208, - 6459636768, - 6459646432, - 6459423760, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653744, - 6459879728, - 6459695328, - 6459852144, - 6459822016, - 6459484224, - 6459294288, - 6459515072, - 6459550768, - 6459621040, - 6459631840, - 6459715776, - 6459680768, - 6459668656, - 6459657344, - 6459809712, - 6459802656, - 6459496240, - 6459496272, - 6459796112, - 6459456464, - 6459888928 + 6459414368, + 6459396880, + 6459398976, + 6459413840, + 6459413296, + 6459388288, + 6459378736, + 6459381344 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 5 - } - } - }, - { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 4 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 2 - } - } - }, - { - "type_name": "CBaseToolAttr", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -526668,12 +526451,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 1 + "num_contained_bases": 7 } } }, { - "type_name": "IBaseToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526682,54 +526465,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 0 + "num_contained_bases": 6 } } }, { - "type_name": "IToolAttr_Array", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 552, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468935432, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 1 - } - } - }, - { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterialAssemblyProcedures", - "vtable_address": 6467161040, - "methods": [ - 6459320656, - 6459321936, - 6459335888, - 6459351888, - 6459355808, - 6459325952, - 6459350720, - 6459331536, - 6459331360, - 6459332192, - 6459342672, - 6459333744 - ], - "bases": [ - { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -526743,7 +526484,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526752,12 +526493,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 4 + "num_contained_bases": 2 } } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526766,12 +526507,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 2 + "num_contained_bases": 1 } } }, { - "type_name": "CBaseToolAttr", + "type_name": "IBaseToolAttr", "details": { "Msvc": { "attributes": 64, @@ -526780,31 +526521,31 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 1 + "num_contained_bases": 0 } } }, { - "type_name": "IBaseToolAttr", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 0, + "mdisp": 528, "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 0 + "num_contained_bases": 1 } } }, { - "type_name": "IToolAttr_Array", + "type_name": "IToolAttr_Value", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 552, + "mdisp": 528, "pdisp": -1, "vdisp": 0 }, @@ -526815,74 +526556,74 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468935600, - "offset": 552, + "complete_object_locator": 6468935800, + "offset": 528, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterials", - "vtable_address": 6467162160, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterialAssemblyProcedures", + "vtable_address": 6467164672, "methods": [ - 6459244800, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667408, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415200, - 6459418208, - 6459415360, - 6459415824, - 6459415376, - 6459415344, - 6459755968, - 6459677152, - 6459732096, - 6459437328, - 6459613456, - 6459632208, - 6459637536, - 6459647008, - 6459424528, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654192, - 6459880816, - 6459698032, - 6459854864, - 6459823712, - 6459485824, - 6459297488, - 6459518336, - 6459552432, - 6459621808, - 6459631840, - 6459716032, - 6459680768, - 6459668720, - 6459657344, - 6459810224, - 6459803168, - 6459496240, - 6459496272, - 6459796560, - 6459458448, - 6459888928 + 6459246928, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669536, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417264, + 6459420400, + 6459417552, + 6459417952, + 6459417568, + 6459417536, + 6459756752, + 6459678832, + 6459732240, + 6459438432, + 6459615648, + 6459634400, + 6459638960, + 6459648624, + 6459425952, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655936, + 6459881920, + 6459697520, + 6459854336, + 6459824208, + 6459486416, + 6459296480, + 6459517264, + 6459552960, + 6459623232, + 6459634032, + 6459717968, + 6459682960, + 6459670848, + 6459659536, + 6459811904, + 6459804848, + 6459498432, + 6459498464, + 6459798304, + 6459458656, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -526896,7 +526637,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", "details": { "Msvc": { "attributes": 64, @@ -526910,7 +526651,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -526968,7 +526709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468936832, + "complete_object_locator": 6468939528, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -526976,25 +526717,25 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterials", - "vtable_address": 6467162592, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterialAssemblyProcedures", + "vtable_address": 6467165104, "methods": [ - 6459320912, - 6459322960, - 6459338272, - 6459353312, - 6459357024, - 6459328576, - 6459350784, - 6459331600, - 6459331424, - 6459332896, - 6459347632, - 6459333936 + 6459322848, + 6459324128, + 6459338080, + 6459354080, + 6459358000, + 6459328144, + 6459352912, + 6459333728, + 6459333552, + 6459334384, + 6459344864, + 6459335936 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -527008,7 +526749,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", "details": { "Msvc": { "attributes": 64, @@ -527022,7 +526763,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -527080,7 +526821,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468937000, + "complete_object_locator": 6468939696, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -527088,80 +526829,66 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnabled", - "vtable_address": 6467131264, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterials", + "vtable_address": 6467166224, "methods": [ - 6459239616, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667088, - 6459666224, - 6459667472, - 6459651056, - 6459419232, - 6459415328, - 6459418208, - 6459415360, - 6459416224, - 6459415376, - 6459415344, - 6459764768, - 6459680352, - 6459744896, - 6459444128, - 6459613456, - 6459632208, - 6459642336, - 6459650608, - 6459429328, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656992, - 6459887616, - 6459712656, - 6459870576, - 6459832352, - 6459494640, - 6459317488, - 6459538736, - 6459562832, - 6459626608, - 6459631840, - 6459718048, - 6459680768, - 6459669120, - 6459657344, - 6459813424, - 6459806368, - 6459496240, - 6459496272, - 6459799360, - 6459470848, - 6459888928 + 6459246992, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669600, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417392, + 6459420400, + 6459417552, + 6459418016, + 6459417568, + 6459417536, + 6459758160, + 6459679344, + 6459734288, + 6459439520, + 6459615648, + 6459634400, + 6459639728, + 6459649200, + 6459426720, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656384, + 6459883008, + 6459700224, + 6459857056, + 6459825904, + 6459488016, + 6459299680, + 6459520528, + 6459554624, + 6459624000, + 6459634032, + 6459718224, + 6459682960, + 6459670912, + 6459659536, + 6459812416, + 6459805360, + 6459498432, + 6459498464, + 6459798752, + 6459460640, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 7 - } - } - }, - { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -527170,12 +526897,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 6 + "num_contained_bases": 5 } } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", "details": { "Msvc": { "attributes": 64, @@ -527184,12 +526911,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 5 + "num_contained_bases": 4 } } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -527231,26 +526958,12 @@ } }, { - "type_name": "IToolAttr_TypedValue", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 528, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IToolAttr_Value", + "type_name": "IToolAttr_Array", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 552, "pdisp": -1, "vdisp": 0 }, @@ -527261,7 +526974,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468913936, + "complete_object_locator": 6468940928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -527269,35 +526982,25 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnabled", - "vtable_address": 6467131696, + "type_name": "`public: static void __cdecl CompositeMaterialEditorPoint_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecCompositeMaterials", + "vtable_address": 6467166656, "methods": [ - 6459414832, - 6459396592, - 6459399664, - 6459412128, - 6459411584, - 6459393920, - 6459378720, - 6459385120 + 6459323104, + 6459325152, + 6459340464, + 6459355504, + 6459359216, + 6459330768, + 6459352976, + 6459333792, + 6459333616, + 6459335088, + 6459349824, + 6459336128 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 7 - } - } - }, - { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -527306,12 +527009,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 6 + "num_contained_bases": 5 } } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialEditorPoint_t,void>", "details": { "Msvc": { "attributes": 64, @@ -527320,12 +527023,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 5 + "num_contained_bases": 4 } } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialEditorPoint_t>", "details": { "Msvc": { "attributes": 64, @@ -527367,26 +527070,12 @@ } }, { - "type_name": "IToolAttr_TypedValue", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 528, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "IToolAttr_Value", + "type_name": "IToolAttr_Array", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 552, "pdisp": -1, "vdisp": 0 }, @@ -527397,70 +527086,70 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468914120, - "offset": 528, + "complete_object_locator": 6468941096, + "offset": 552, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", - "vtable_address": 6467138792, - "methods": [ - 6459239680, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667088, - 6459666224, - 6459667472, - 6459651056, - 6459419232, - 6459415328, - 6459418208, - 6459415360, - 6459416224, - 6459415376, - 6459415344, - 6459764768, - 6459680352, - 6459744896, - 6459444128, - 6459613456, - 6459632208, - 6459642336, - 6459650608, - 6459429328, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656992, - 6459887616, - 6459712656, - 6459870576, - 6459832352, - 6459494640, - 6459317488, - 6459538736, - 6459562832, - 6459626608, - 6459631840, - 6459718048, - 6459680768, - 6459669120, - 6459657344, - 6459813424, - 6459806368, - 6459496240, - 6459496272, - 6459799360, - 6459470848, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnabled", + "vtable_address": 6467135328, + "methods": [ + 6459241808, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669280, + 6459668416, + 6459669664, + 6459653248, + 6459421424, + 6459417520, + 6459420400, + 6459417552, + 6459418416, + 6459417568, + 6459417536, + 6459766960, + 6459682544, + 6459747088, + 6459446320, + 6459615648, + 6459634400, + 6459644528, + 6459652800, + 6459431520, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659184, + 6459889808, + 6459714848, + 6459872768, + 6459834544, + 6459496832, + 6459319680, + 6459540928, + 6459565024, + 6459628800, + 6459634032, + 6459720240, + 6459682960, + 6459671312, + 6459659536, + 6459815616, + 6459808560, + 6459498432, + 6459498464, + 6459801552, + 6459473040, + 6459891120 ], "bases": [ { @@ -527578,7 +527267,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468919200, + "complete_object_locator": 6468918032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -527586,17 +527275,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", - "vtable_address": 6467139224, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bEnabled", + "vtable_address": 6467135760, "methods": [ - 6459414832, - 6459396592, - 6459399664, - 6459412128, - 6459411584, - 6459393920, - 6459378720, - 6459385120 + 6459417024, + 6459398784, + 6459401856, + 6459414320, + 6459413776, + 6459396112, + 6459380912, + 6459387312 ], "bases": [ { @@ -527714,7 +527403,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468919384, + "complete_object_locator": 6468918216, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -527722,66 +527411,66 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nCompositeMaterialInputContainerSourceType", - "vtable_address": 6467132752, - "methods": [ - 6459241216, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666960, - 6459666224, - 6459667472, - 6459651056, - 6459418976, - 6459415328, - 6459418208, - 6459415360, - 6459416096, - 6459415376, - 6459415344, - 6459761952, - 6459679328, - 6459740800, - 6459441952, - 6459613456, - 6459632208, - 6459640800, - 6459649456, - 6459427792, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656096, - 6459885440, - 6459708384, - 6459865584, - 6459829664, - 6459491824, - 6459311088, - 6459532208, - 6459559504, - 6459625072, - 6459631840, - 6459717536, - 6459680768, - 6459668992, - 6459657344, - 6459812400, - 6459805344, - 6459496240, - 6459496272, - 6459798464, - 6459466880, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", + "vtable_address": 6467142856, + "methods": [ + 6459241872, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669280, + 6459668416, + 6459669664, + 6459653248, + 6459421424, + 6459417520, + 6459420400, + 6459417552, + 6459418416, + 6459417568, + 6459417536, + 6459766960, + 6459682544, + 6459747088, + 6459446320, + 6459615648, + 6459634400, + 6459644528, + 6459652800, + 6459431520, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659184, + 6459889808, + 6459714848, + 6459872768, + 6459834544, + 6459496832, + 6459319680, + 6459540928, + 6459565024, + 6459628800, + 6459634032, + 6459720240, + 6459682960, + 6459671312, + 6459659536, + 6459815616, + 6459808560, + 6459498432, + 6459498464, + 6459801552, + 6459473040, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -527795,7 +527484,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -527809,7 +527498,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -527823,7 +527512,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -527865,7 +527554,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -527895,7 +527584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468915024, + "complete_object_locator": 6468923296, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -527903,21 +527592,21 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nCompositeMaterialInputContainerSourceType", - "vtable_address": 6467133184, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", + "vtable_address": 6467143288, "methods": [ - 6459414112, - 6459396192, - 6459398896, - 6459412000, - 6459411456, - 6459391872, - 6459378208, - 6459384080 + 6459417024, + 6459398784, + 6459401856, + 6459414320, + 6459413776, + 6459396112, + 6459380912, + 6459387312 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -527931,7 +527620,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -527945,7 +527634,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -527959,7 +527648,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -528001,7 +527690,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -528031,7 +527720,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468915208, + "complete_object_locator": 6468923480, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -528039,66 +527728,66 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAlias", - "vtable_address": 6467136232, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nCompositeMaterialInputContainerSourceType", + "vtable_address": 6467136816, "methods": [ - 6459242176, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666800, - 6459666224, - 6459667472, - 6459651056, - 6459418656, - 6459415328, - 6459418208, - 6459415360, - 6459415936, - 6459415376, - 6459415344, - 6459758432, - 6459678048, - 6459735680, - 6459439232, - 6459613456, - 6459632208, - 6459638880, - 6459648016, - 6459425872, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654976, - 6459882720, - 6459702336, - 6459859280, - 6459826176, - 6459488304, - 6459303088, - 6459524048, - 6459555344, - 6459623152, - 6459631840, - 6459716608, - 6459680768, - 6459668832, - 6459657344, - 6459811120, - 6459804064, - 6459496240, - 6459496272, - 6459797344, - 6459461920, - 6459888928 + 6459243408, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669152, + 6459668416, + 6459669664, + 6459653248, + 6459421168, + 6459417520, + 6459420400, + 6459417552, + 6459418288, + 6459417568, + 6459417536, + 6459764144, + 6459681520, + 6459742992, + 6459444144, + 6459615648, + 6459634400, + 6459642992, + 6459651648, + 6459429984, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658288, + 6459887632, + 6459710576, + 6459867776, + 6459831856, + 6459494016, + 6459313280, + 6459534400, + 6459561696, + 6459627264, + 6459634032, + 6459719728, + 6459682960, + 6459671184, + 6459659536, + 6459814592, + 6459807536, + 6459498432, + 6459498464, + 6459800656, + 6459469072, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -528112,7 +527801,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -528126,7 +527815,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -528140,7 +527829,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -528182,12 +527871,12 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 536, + "mdisp": 528, "pdisp": -1, "vdisp": 0 }, @@ -528201,7 +527890,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 536, + "mdisp": 528, "pdisp": -1, "vdisp": 0 }, @@ -528212,7 +527901,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468917416, + "complete_object_locator": 6468919120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -528220,21 +527909,21 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAlias", - "vtable_address": 6467136664, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nCompositeMaterialInputContainerSourceType", + "vtable_address": 6467137248, "methods": [ - 6459413312, - 6459395616, - 6459397936, - 6459411840, - 6459411296, - 6459389248, - 6459377440, - 6459382032 + 6459416304, + 6459398384, + 6459401088, + 6459414192, + 6459413648, + 6459394064, + 6459380400, + 6459386272 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -528248,7 +527937,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -528262,7 +527951,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -528276,7 +527965,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -528318,12 +528007,12 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 536, + "mdisp": 528, "pdisp": -1, "vdisp": 0 }, @@ -528337,7 +528026,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 536, + "mdisp": 528, "pdisp": -1, "vdisp": 0 }, @@ -528348,70 +528037,70 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468917608, - "offset": 536, + "complete_object_locator": 6468919304, + "offset": 528, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrName", - "vtable_address": 6467135728, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAlias", + "vtable_address": 6467140296, "methods": [ - 6459242240, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666800, - 6459666224, - 6459667472, - 6459651056, - 6459418656, - 6459415328, - 6459418208, - 6459415360, - 6459415936, - 6459415376, - 6459415344, - 6459758432, - 6459678048, - 6459735680, - 6459439232, - 6459613456, - 6459632208, - 6459638880, - 6459648016, - 6459425872, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654976, - 6459882720, - 6459702336, - 6459859280, - 6459826176, - 6459488304, - 6459303088, - 6459524048, - 6459555344, - 6459623152, - 6459631840, - 6459716608, - 6459680768, - 6459668832, - 6459657344, - 6459811120, - 6459804064, - 6459496240, - 6459496272, - 6459797344, - 6459461920, - 6459888928 + 6459244368, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668992, + 6459668416, + 6459669664, + 6459653248, + 6459420848, + 6459417520, + 6459420400, + 6459417552, + 6459418128, + 6459417568, + 6459417536, + 6459760624, + 6459680240, + 6459737872, + 6459441424, + 6459615648, + 6459634400, + 6459641072, + 6459650208, + 6459428064, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657168, + 6459884912, + 6459704528, + 6459861472, + 6459828368, + 6459490496, + 6459305280, + 6459526240, + 6459557536, + 6459625344, + 6459634032, + 6459718800, + 6459682960, + 6459671024, + 6459659536, + 6459813312, + 6459806256, + 6459498432, + 6459498464, + 6459799536, + 6459464112, + 6459891120 ], "bases": [ { @@ -528529,7 +528218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468917024, + "complete_object_locator": 6468921512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -528537,17 +528226,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrName", - "vtable_address": 6467136160, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAlias", + "vtable_address": 6467140728, "methods": [ - 6459413312, - 6459395616, - 6459397936, - 6459411840, - 6459411296, - 6459389248, - 6459377440, - 6459382032 + 6459415504, + 6459397808, + 6459400128, + 6459414032, + 6459413488, + 6459391440, + 6459379632, + 6459384224 ], "bases": [ { @@ -528665,7 +528354,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468917208, + "complete_object_locator": 6468921704, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -528673,62 +528362,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrNameForVar", - "vtable_address": 6467138288, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrName", + "vtable_address": 6467139792, "methods": [ - 6459242304, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666800, - 6459666224, - 6459667472, - 6459651056, - 6459418656, - 6459415328, - 6459418208, - 6459415360, - 6459415936, - 6459415376, - 6459415344, - 6459758432, - 6459678048, - 6459735680, - 6459439232, - 6459613456, - 6459632208, - 6459638880, - 6459648016, - 6459425872, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654976, - 6459882720, - 6459702336, - 6459859280, - 6459826176, - 6459488304, - 6459303088, - 6459524048, - 6459555344, - 6459623152, - 6459631840, - 6459716608, - 6459680768, - 6459668832, - 6459657344, - 6459811120, - 6459804064, - 6459496240, - 6459496272, - 6459797344, - 6459461920, - 6459888928 + 6459244432, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668992, + 6459668416, + 6459669664, + 6459653248, + 6459420848, + 6459417520, + 6459420400, + 6459417552, + 6459418128, + 6459417568, + 6459417536, + 6459760624, + 6459680240, + 6459737872, + 6459441424, + 6459615648, + 6459634400, + 6459641072, + 6459650208, + 6459428064, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657168, + 6459884912, + 6459704528, + 6459861472, + 6459828368, + 6459490496, + 6459305280, + 6459526240, + 6459557536, + 6459625344, + 6459634032, + 6459718800, + 6459682960, + 6459671024, + 6459659536, + 6459813312, + 6459806256, + 6459498432, + 6459498464, + 6459799536, + 6459464112, + 6459891120 ], "bases": [ { @@ -528846,7 +528535,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918968, + "complete_object_locator": 6468921120, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -528854,17 +528543,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrNameForVar", - "vtable_address": 6467138720, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrName", + "vtable_address": 6467140224, "methods": [ - 6459413312, - 6459395616, - 6459397936, - 6459411840, - 6459411296, - 6459389248, - 6459377440, - 6459382032 + 6459415504, + 6459397808, + 6459400128, + 6459414032, + 6459413488, + 6459391440, + 6459379632, + 6459384224 ], "bases": [ { @@ -528982,7 +528671,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468919160, + "complete_object_locator": 6468921304, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -528990,66 +528679,66 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strSpecificContainerMaterial", - "vtable_address": 6467134240, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrNameForVar", + "vtable_address": 6467142352, "methods": [ - 6459244288, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666544, - 6459666224, - 6459667472, - 6459651056, - 6459418496, - 6459415328, - 6459418208, - 6459415360, - 6459415680, - 6459415376, - 6459415344, - 6459752800, - 6459676000, - 6459727488, - 6459434880, - 6459613456, - 6459632208, - 6459635808, - 6459645712, - 6459422800, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653184, - 6459878368, - 6459691760, - 6459849024, - 6459820256, - 6459482464, - 6459290288, - 6459510992, - 6459548688, - 6459620080, - 6459631840, - 6459715456, - 6459680768, - 6459668576, - 6459657344, - 6459809072, - 6459802016, - 6459496240, - 6459496272, - 6459795552, - 6459453984, - 6459888928 + 6459244496, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668992, + 6459668416, + 6459669664, + 6459653248, + 6459420848, + 6459417520, + 6459420400, + 6459417552, + 6459418128, + 6459417568, + 6459417536, + 6459760624, + 6459680240, + 6459737872, + 6459441424, + 6459615648, + 6459634400, + 6459641072, + 6459650208, + 6459428064, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657168, + 6459884912, + 6459704528, + 6459861472, + 6459828368, + 6459490496, + 6459305280, + 6459526240, + 6459557536, + 6459625344, + 6459634032, + 6459718800, + 6459682960, + 6459671024, + 6459659536, + 6459813312, + 6459806256, + 6459498432, + 6459498464, + 6459799536, + 6459464112, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -529063,7 +528752,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -529077,7 +528766,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialInputContainer_t>", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -529091,7 +528780,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -529133,12 +528822,12 @@ } }, { - "type_name": "IToolAttr_TypedValue > >", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 536, "pdisp": -1, "vdisp": 0 }, @@ -529152,7 +528841,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 536, "pdisp": -1, "vdisp": 0 }, @@ -529163,7 +528852,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468916064, + "complete_object_locator": 6468923064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -529171,21 +528860,21 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strSpecificContainerMaterial", - "vtable_address": 6467134672, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strAttrNameForVar", + "vtable_address": 6467142784, "methods": [ - 6459412992, - 6459395344, - 6459397456, - 6459411760, - 6459411216, - 6459387920, - 6459377040, - 6459380832 + 6459415504, + 6459397808, + 6459400128, + 6459414032, + 6459413488, + 6459391440, + 6459379632, + 6459384224 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -529199,7 +528888,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -529213,7 +528902,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialInputContainer_t>", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -529227,7 +528916,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -529269,12 +528958,12 @@ } }, { - "type_name": "IToolAttr_TypedValue > >", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 536, "pdisp": -1, "vdisp": 0 }, @@ -529288,7 +528977,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 752, + "mdisp": 536, "pdisp": -1, "vdisp": 0 }, @@ -529299,116 +528988,74 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468916248, - "offset": 752, + "complete_object_locator": 6468923256, + "offset": 536, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecLooseVariables", - "vtable_address": 6467137752, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strSpecificContainerMaterial", + "vtable_address": 6467138304, "methods": [ - 6459245120, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667376, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415136, - 6459418208, - 6459415360, - 6459415792, - 6459415376, - 6459415344, - 6459755264, - 6459676896, - 6459731072, - 6459436784, - 6459613456, - 6459632208, - 6459637152, - 6459646720, - 6459424144, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653968, - 6459880272, - 6459696512, - 6459853504, - 6459822864, - 6459485024, - 6459295888, - 6459516704, - 6459551600, - 6459621424, - 6459631840, - 6459715904, - 6459680768, - 6459668688, - 6459657344, - 6459809968, - 6459802912, - 6459496240, - 6459496272, - 6459796336, - 6459457456, - 6459888928 + 6459246480, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668736, + 6459668416, + 6459669664, + 6459653248, + 6459420688, + 6459417520, + 6459420400, + 6459417552, + 6459417872, + 6459417568, + 6459417536, + 6459754992, + 6459678192, + 6459729680, + 6459437072, + 6459615648, + 6459634400, + 6459638000, + 6459647904, + 6459424992, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655376, + 6459880560, + 6459693952, + 6459851216, + 6459822448, + 6459484656, + 6459292480, + 6459513184, + 6459550880, + 6459622272, + 6459634032, + 6459717648, + 6459682960, + 6459670768, + 6459659536, + 6459811264, + 6459804208, + 6459498432, + 6459498464, + 6459797744, + 6459456176, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 5 - } - } - }, - { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 4 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 2 - } - } - }, - { - "type_name": "CBaseToolAttr", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529417,12 +529064,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 1 + "num_contained_bases": 7 } } }, { - "type_name": "IBaseToolAttr", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", "details": { "Msvc": { "attributes": 64, @@ -529431,54 +529078,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 0 + "num_contained_bases": 6 } } }, { - "type_name": "IToolAttr_Array", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 552, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6468918056, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 1 - } - } - }, - { - "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecLooseVariables", - "vtable_address": 6467138184, - "methods": [ - 6459320784, - 6459322448, - 6459337104, - 6459352656, - 6459356448, - 6459327264, - 6459350752, - 6459331568, - 6459331392, - 6459332544, - 6459344224, - 6459333840 - ], - "bases": [ - { - "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", + "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529492,21 +529097,7 @@ } }, { - "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 4 - } - } - }, - { - "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529548,12 +529139,26 @@ } }, { - "type_name": "IToolAttr_Array", + "type_name": "IToolAttr_TypedValue > >", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 552, + "mdisp": 752, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IToolAttr_Value", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 752, "pdisp": -1, "vdisp": 0 }, @@ -529564,74 +529169,29 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468918224, - "offset": 552, + "complete_object_locator": 6468920160, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", - "vtable_address": 6467073072, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strSpecificContainerMaterial", + "vtable_address": 6467138736, "methods": [ - 6459239744, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667104, - 6459666224, - 6459667472, - 6459651056, - 6459419264, - 6459415328, - 6459418208, - 6459415360, - 6459416240, - 6459415376, - 6459415344, - 6459765120, - 6459680480, - 6459745408, - 6459444400, - 6459613456, - 6459632208, - 6459642528, - 6459650752, - 6459429520, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657104, - 6459887888, - 6459713200, - 6459871200, - 6459832688, - 6459494992, - 6459318288, - 6459539552, - 6459563248, - 6459626800, - 6459631840, - 6459718112, - 6459680768, - 6459669136, - 6459657344, - 6459813552, - 6459806496, - 6459496240, - 6459496272, - 6459799472, - 6459471344, - 6459888928 + 6459415184, + 6459397536, + 6459399648, + 6459413952, + 6459413408, + 6459390112, + 6459379232, + 6459383024 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529645,7 +529205,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", "details": { "Msvc": { "attributes": 64, @@ -529659,7 +529219,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529673,7 +529233,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529715,12 +529275,12 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue > >", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 752, "pdisp": -1, "vdisp": 0 }, @@ -529734,7 +529294,7 @@ "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 752, "pdisp": -1, "vdisp": 0 }, @@ -529745,29 +529305,74 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878288, - "offset": 0, + "complete_object_locator": 6468920344, + "offset": 752, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", - "vtable_address": 6467073504, + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecLooseVariables", + "vtable_address": 6467141816, "methods": [ - 6459414832, - 6459396592, - 6459399760, - 6459412144, - 6459411600, - 6459394176, - 6459378784, - 6459385360 + 6459247312, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669568, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417328, + 6459420400, + 6459417552, + 6459417984, + 6459417568, + 6459417536, + 6459757456, + 6459679088, + 6459733264, + 6459438976, + 6459615648, + 6459634400, + 6459639344, + 6459648912, + 6459426336, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656160, + 6459882464, + 6459698704, + 6459855696, + 6459825056, + 6459487216, + 6459298080, + 6459518896, + 6459553792, + 6459623616, + 6459634032, + 6459718096, + 6459682960, + 6459670880, + 6459659536, + 6459812160, + 6459805104, + 6459498432, + 6459498464, + 6459798528, + 6459459648, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529776,12 +529381,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 7 + "num_contained_bases": 5 } } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", "details": { "Msvc": { "attributes": 64, @@ -529790,12 +529395,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 6 + "num_contained_bases": 4 } } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", "details": { "Msvc": { "attributes": 64, @@ -529804,12 +529409,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 5 + "num_contained_bases": 2 } } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseToolAttr", "details": { "Msvc": { "attributes": 64, @@ -529818,12 +529423,12 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 2 + "num_contained_bases": 1 } } }, { - "type_name": "CBaseToolAttr", + "type_name": "IBaseToolAttr", "details": { "Msvc": { "attributes": 64, @@ -529832,31 +529437,101 @@ "pdisp": -1, "vdisp": 0 }, - "num_contained_bases": 1 + "num_contained_bases": 0 } } }, { - "type_name": "IBaseToolAttr", + "type_name": "IToolAttr_Array", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 0, + "mdisp": 552, "pdisp": -1, "vdisp": 0 }, "num_contained_bases": 0 } } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468922152, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 1 + } + } + }, + { + "type_name": "`public: static void __cdecl CompositeMaterialInputContainer_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecLooseVariables", + "vtable_address": 6467142248, + "methods": [ + 6459322976, + 6459324640, + 6459339296, + 6459354848, + 6459358640, + 6459329456, + 6459352944, + 6459333760, + 6459333584, + 6459334736, + 6459346416, + 6459336032 + ], + "bases": [ + { + "type_name": "CConcreteToolAttrDirectMember >,struct CompositeMaterialInputContainer_t>", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 5 + } + } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "CConcreteToolAttr >,struct CompositeMaterialInputContainer_t,void>", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 4 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr >,struct CompositeMaterialInputContainer_t>", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 2 + } + } + }, + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, "pdisp": -1, "vdisp": 0 }, @@ -529865,12 +529540,26 @@ } }, { - "type_name": "IToolAttr_Value", + "type_name": "IBaseToolAttr", "details": { "Msvc": { "attributes": 64, "displacement": { - "mdisp": 528, + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "IToolAttr_Array", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 552, "pdisp": -1, "vdisp": 0 }, @@ -529881,70 +529570,70 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878472, - "offset": 528, + "complete_object_locator": 6468922320, + "offset": 552, "constructor_displacement": 0, "class_attributes": 1 } } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposedVariableIsFixedRange", - "vtable_address": 6467074584, - "methods": [ - 6459239808, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667104, - 6459666224, - 6459667472, - 6459651056, - 6459419264, - 6459415328, - 6459418208, - 6459415360, - 6459416240, - 6459415376, - 6459415344, - 6459765120, - 6459680480, - 6459745408, - 6459444400, - 6459613456, - 6459632208, - 6459642528, - 6459650752, - 6459429520, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657104, - 6459887888, - 6459713200, - 6459871200, - 6459832688, - 6459494992, - 6459318288, - 6459539552, - 6459563248, - 6459626800, - 6459631840, - 6459718112, - 6459680768, - 6459669136, - 6459657344, - 6459813552, - 6459806496, - 6459496240, - 6459496272, - 6459799472, - 6459471344, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", + "vtable_address": 6467077136, + "methods": [ + 6459241936, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669296, + 6459668416, + 6459669664, + 6459653248, + 6459421456, + 6459417520, + 6459420400, + 6459417552, + 6459418432, + 6459417568, + 6459417536, + 6459767312, + 6459682672, + 6459747600, + 6459446592, + 6459615648, + 6459634400, + 6459644720, + 6459652944, + 6459431712, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659296, + 6459890080, + 6459715392, + 6459873392, + 6459834880, + 6459497184, + 6459320480, + 6459541744, + 6459565440, + 6459628992, + 6459634032, + 6459720304, + 6459682960, + 6459671328, + 6459659536, + 6459815744, + 6459808688, + 6459498432, + 6459498464, + 6459801664, + 6459473536, + 6459891120 ], "bases": [ { @@ -530062,7 +529751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879136, + "complete_object_locator": 6468882384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -530070,17 +529759,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposedVariableIsFixedRange", - "vtable_address": 6467075016, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposeExternally", + "vtable_address": 6467077568, "methods": [ - 6459414832, - 6459396592, - 6459399760, - 6459412144, - 6459411600, - 6459394176, - 6459378784, - 6459385360 + 6459417024, + 6459398784, + 6459401952, + 6459414336, + 6459413792, + 6459396368, + 6459380976, + 6459387552 ], "bases": [ { @@ -530198,7 +529887,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879320, + "complete_object_locator": 6468882568, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -530206,62 +529895,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bHasFloatBounds", - "vtable_address": 6467081592, - "methods": [ - 6459239872, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667104, - 6459666224, - 6459667472, - 6459651056, - 6459419264, - 6459415328, - 6459418208, - 6459415360, - 6459416240, - 6459415376, - 6459415344, - 6459765120, - 6459680480, - 6459745408, - 6459444400, - 6459613456, - 6459632208, - 6459642528, - 6459650752, - 6459429520, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657104, - 6459887888, - 6459713200, - 6459871200, - 6459832688, - 6459494992, - 6459318288, - 6459539552, - 6459563248, - 6459626800, - 6459631840, - 6459718112, - 6459680768, - 6459669136, - 6459657344, - 6459813552, - 6459806496, - 6459496240, - 6459496272, - 6459799472, - 6459471344, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposedVariableIsFixedRange", + "vtable_address": 6467078648, + "methods": [ + 6459242000, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669296, + 6459668416, + 6459669664, + 6459653248, + 6459421456, + 6459417520, + 6459420400, + 6459417552, + 6459418432, + 6459417568, + 6459417536, + 6459767312, + 6459682672, + 6459747600, + 6459446592, + 6459615648, + 6459634400, + 6459644720, + 6459652944, + 6459431712, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659296, + 6459890080, + 6459715392, + 6459873392, + 6459834880, + 6459497184, + 6459320480, + 6459541744, + 6459565440, + 6459628992, + 6459634032, + 6459720304, + 6459682960, + 6459671328, + 6459659536, + 6459815744, + 6459808688, + 6459498432, + 6459498464, + 6459801664, + 6459473536, + 6459891120 ], "bases": [ { @@ -530379,7 +530068,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468883264, + "complete_object_locator": 6468883232, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -530387,17 +530076,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bHasFloatBounds", - "vtable_address": 6467082024, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bExposedVariableIsFixedRange", + "vtable_address": 6467079080, "methods": [ - 6459414832, - 6459396592, - 6459399760, - 6459412144, - 6459411600, - 6459394176, - 6459378784, - 6459385360 + 6459417024, + 6459398784, + 6459401952, + 6459414336, + 6459413792, + 6459396368, + 6459380976, + 6459387552 ], "bases": [ { @@ -530515,7 +530204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468883448, + "complete_object_locator": 6468883416, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -530523,62 +530212,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bValueBoolean", - "vtable_address": 6467078088, - "methods": [ - 6459240192, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667104, - 6459666224, - 6459667472, - 6459651056, - 6459419264, - 6459415328, - 6459418208, - 6459415360, - 6459416240, - 6459415376, - 6459415344, - 6459765120, - 6459680480, - 6459745408, - 6459444400, - 6459613456, - 6459632208, - 6459642528, - 6459650752, - 6459429520, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657104, - 6459887888, - 6459713200, - 6459871200, - 6459832688, - 6459494992, - 6459318288, - 6459539552, - 6459563248, - 6459626800, - 6459631840, - 6459718112, - 6459680768, - 6459669136, - 6459657344, - 6459813552, - 6459806496, - 6459496240, - 6459496272, - 6459799472, - 6459471344, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bHasFloatBounds", + "vtable_address": 6467085656, + "methods": [ + 6459242064, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669296, + 6459668416, + 6459669664, + 6459653248, + 6459421456, + 6459417520, + 6459420400, + 6459417552, + 6459418432, + 6459417568, + 6459417536, + 6459767312, + 6459682672, + 6459747600, + 6459446592, + 6459615648, + 6459634400, + 6459644720, + 6459652944, + 6459431712, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659296, + 6459890080, + 6459715392, + 6459873392, + 6459834880, + 6459497184, + 6459320480, + 6459541744, + 6459565440, + 6459628992, + 6459634032, + 6459720304, + 6459682960, + 6459671328, + 6459659536, + 6459815744, + 6459808688, + 6459498432, + 6459498464, + 6459801664, + 6459473536, + 6459891120 ], "bases": [ { @@ -530696,7 +530385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468881192, + "complete_object_locator": 6468887360, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -530704,17 +530393,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bValueBoolean", - "vtable_address": 6467078520, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bHasFloatBounds", + "vtable_address": 6467086088, "methods": [ - 6459414832, - 6459396592, - 6459399760, - 6459412144, - 6459411600, - 6459394176, - 6459378784, - 6459385360 + 6459417024, + 6459398784, + 6459401952, + 6459414336, + 6459413792, + 6459396368, + 6459380976, + 6459387552 ], "bases": [ { @@ -530832,7 +530521,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468881384, + "complete_object_locator": 6468887544, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -530840,66 +530529,66 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_cValueColor4", - "vtable_address": 6467090112, - "methods": [ - 6459240256, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666880, - 6459666224, - 6459667472, - 6459651056, - 6459418816, - 6459415328, - 6459418208, - 6459415360, - 6459416016, - 6459415376, - 6459415344, - 6459760192, - 6459678688, - 6459738240, - 6459440592, - 6459613456, - 6459632208, - 6459639840, - 6459648736, - 6459426832, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655536, - 6459884080, - 6459705552, - 6459862464, - 6459827936, - 6459490064, - 6459307088, - 6459528128, - 6459557424, - 6459624112, - 6459631840, - 6459717184, - 6459680768, - 6459668912, - 6459657344, - 6459811760, - 6459804704, - 6459496240, - 6459496272, - 6459797904, - 6459464400, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bValueBoolean", + "vtable_address": 6467082152, + "methods": [ + 6459242384, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669296, + 6459668416, + 6459669664, + 6459653248, + 6459421456, + 6459417520, + 6459420400, + 6459417552, + 6459418432, + 6459417568, + 6459417536, + 6459767312, + 6459682672, + 6459747600, + 6459446592, + 6459615648, + 6459634400, + 6459644720, + 6459652944, + 6459431712, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659296, + 6459890080, + 6459715392, + 6459873392, + 6459834880, + 6459497184, + 6459320480, + 6459541744, + 6459565440, + 6459628992, + 6459634032, + 6459720304, + 6459682960, + 6459671328, + 6459659536, + 6459815744, + 6459808688, + 6459498432, + 6459498464, + 6459801664, + 6459473536, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -530913,7 +530602,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -530927,7 +530616,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -530941,7 +530630,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -530983,7 +530672,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -531013,7 +530702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468887808, + "complete_object_locator": 6468885288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -531021,21 +530710,21 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_cValueColor4", - "vtable_address": 6467090544, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bValueBoolean", + "vtable_address": 6467082584, "methods": [ - 6459413488, - 6459395760, - 6459398416, - 6459411920, - 6459411376, - 6459390592, - 6459377840, - 6459383232 + 6459417024, + 6459398784, + 6459401952, + 6459414336, + 6459413792, + 6459396368, + 6459380976, + 6459387552 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -531049,7 +530738,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -531063,7 +530752,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -531077,7 +530766,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -531119,7 +530808,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -531149,7 +530838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468887992, + "complete_object_locator": 6468885480, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -531157,66 +530846,66 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW", - "vtable_address": 6467087616, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_cValueColor4", + "vtable_address": 6467094176, "methods": [ - 6459240448, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, + 6459242448, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669072, + 6459668416, + 6459669664, + 6459653248, + 6459421008, + 6459417520, + 6459420400, + 6459417552, 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + 6459417568, + 6459417536, + 6459762384, + 6459680880, + 6459740432, + 6459442784, + 6459615648, + 6459634400, + 6459642032, + 6459650928, + 6459429024, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657728, + 6459886272, + 6459707744, + 6459864656, + 6459830128, + 6459492256, + 6459309280, + 6459530320, + 6459559616, + 6459626304, + 6459634032, + 6459719376, + 6459682960, + 6459671104, + 6459659536, + 6459813952, + 6459806896, + 6459498432, + 6459498464, + 6459800096, + 6459466592, + 6459891120 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -531230,7 +530919,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -531244,7 +530933,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -531258,7 +530947,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -531300,7 +530989,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -531330,7 +531019,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886448, + "complete_object_locator": 6468891904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -531338,21 +531027,21 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW", - "vtable_address": 6467088048, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_cValueColor4", + "vtable_address": 6467094608, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459415680, + 6459397952, + 6459400608, + 6459414112, + 6459413568, + 6459392784, + 6459380032, + 6459385424 ], "bases": [ { - "type_name": "CConcreteToolAttrDirectMember", + "type_name": "CConcreteToolAttrDirectMember", "details": { "Msvc": { "attributes": 64, @@ -531366,7 +531055,7 @@ } }, { - "type_name": "CConcreteToolAttr", + "type_name": "CConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -531380,7 +531069,7 @@ } }, { - "type_name": "CBaseConcreteToolAttrValue", + "type_name": "CBaseConcreteToolAttrValue", "details": { "Msvc": { "attributes": 64, @@ -531394,7 +531083,7 @@ } }, { - "type_name": "CBaseConcreteToolAttr", + "type_name": "CBaseConcreteToolAttr", "details": { "Msvc": { "attributes": 64, @@ -531436,7 +531125,7 @@ } }, { - "type_name": "IToolAttr_TypedValue", + "type_name": "IToolAttr_TypedValue", "details": { "Msvc": { "attributes": 64, @@ -531466,7 +531155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886632, + "complete_object_locator": 6468892088, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -531474,62 +531163,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Max", - "vtable_address": 6467088624, - "methods": [ - 6459240512, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW", + "vtable_address": 6467091680, + "methods": [ + 6459242640, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -531647,7 +531336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886896, + "complete_object_locator": 6468890544, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -531655,17 +531344,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Max", - "vtable_address": 6467089056, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW", + "vtable_address": 6467092112, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -531783,7 +531472,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468887080, + "complete_object_locator": 6468890728, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -531791,62 +531480,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Min", - "vtable_address": 6467088120, - "methods": [ - 6459240576, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Max", + "vtable_address": 6467092688, + "methods": [ + 6459242704, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -531964,7 +531653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886672, + "complete_object_locator": 6468890992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -531972,17 +531661,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Min", - "vtable_address": 6467088552, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Max", + "vtable_address": 6467093120, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -532100,7 +531789,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886856, + "complete_object_locator": 6468891176, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -532108,62 +531797,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX", - "vtable_address": 6467083080, - "methods": [ - 6459240640, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Min", + "vtable_address": 6467092184, + "methods": [ + 6459242768, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -532281,7 +531970,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884176, + "complete_object_locator": 6468890768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -532289,17 +531978,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX", - "vtable_address": 6467083512, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatW_Min", + "vtable_address": 6467092616, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -532417,7 +532106,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884360, + "complete_object_locator": 6468890952, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -532425,62 +532114,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Max", - "vtable_address": 6467084088, - "methods": [ - 6459240704, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX", + "vtable_address": 6467087144, + "methods": [ + 6459242832, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -532598,7 +532287,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884880, + "complete_object_locator": 6468888272, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -532606,17 +532295,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Max", - "vtable_address": 6467084520, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX", + "vtable_address": 6467087576, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -532734,7 +532423,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885064, + "complete_object_locator": 6468888456, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -532742,62 +532431,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Min", - "vtable_address": 6467083584, - "methods": [ - 6459240768, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Max", + "vtable_address": 6467088152, + "methods": [ + 6459242896, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -532915,7 +532604,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884648, + "complete_object_locator": 6468888976, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -532923,17 +532612,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Min", - "vtable_address": 6467084016, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Max", + "vtable_address": 6467088584, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -533051,7 +532740,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468884840, + "complete_object_locator": 6468889160, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -533059,62 +532748,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY", - "vtable_address": 6467084592, - "methods": [ - 6459240832, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Min", + "vtable_address": 6467087648, + "methods": [ + 6459242960, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -533232,7 +532921,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885104, + "complete_object_locator": 6468888744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -533240,17 +532929,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY", - "vtable_address": 6467085024, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatX_Min", + "vtable_address": 6467088080, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -533368,7 +533057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885288, + "complete_object_locator": 6468888936, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -533376,62 +533065,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Max", - "vtable_address": 6467085600, - "methods": [ - 6459240896, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY", + "vtable_address": 6467088656, + "methods": [ + 6459243024, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -533549,7 +533238,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885552, + "complete_object_locator": 6468889200, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -533557,17 +533246,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Max", - "vtable_address": 6467086032, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY", + "vtable_address": 6467089088, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -533685,7 +533374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885736, + "complete_object_locator": 6468889384, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -533693,62 +533382,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Min", - "vtable_address": 6467085096, - "methods": [ - 6459240960, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Max", + "vtable_address": 6467089664, + "methods": [ + 6459243088, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -533866,7 +533555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885328, + "complete_object_locator": 6468889648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -533874,17 +533563,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Min", - "vtable_address": 6467085528, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Max", + "vtable_address": 6467090096, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -534002,7 +533691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885512, + "complete_object_locator": 6468889832, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -534010,62 +533699,62 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ", - "vtable_address": 6467086104, - "methods": [ - 6459241024, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Min", + "vtable_address": 6467089160, + "methods": [ + 6459243152, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -534183,7 +533872,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885776, + "complete_object_locator": 6468889424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -534191,17 +533880,17 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ", - "vtable_address": 6467086536, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatY_Min", + "vtable_address": 6467089592, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -534319,7 +534008,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468885960, + "complete_object_locator": 6468889608, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -534327,62 +534016,198 @@ } }, { - "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ_Max", - "vtable_address": 6467087112, + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ", + "vtable_address": 6467090168, + "methods": [ + 6459243216, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 + ], + "bases": [ + { + "type_name": "CConcreteToolAttrDirectMember", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 7 + } + } + }, + { + "type_name": "CConcreteToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 6 + } + } + }, + { + "type_name": "CBaseConcreteToolAttrValue", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 5 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 2 + } + } + }, + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "IToolAttr_TypedValue", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 528, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IToolAttr_Value", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 528, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468889872, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 1 + } + } + }, + { + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ", + "vtable_address": 6467090600, "methods": [ - 6459241088, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -534500,7 +534325,188 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886224, + "complete_object_locator": 6468890056, + "offset": 528, + "constructor_displacement": 0, + "class_attributes": 1 + } + } + }, + { + "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ_Max", + "vtable_address": 6467091176, + "methods": [ + 6459243280, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 + ], + "bases": [ + { + "type_name": "CConcreteToolAttrDirectMember", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 7 + } + } + }, + { + "type_name": "CConcreteToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 6 + } + } + }, + { + "type_name": "CBaseConcreteToolAttrValue", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 5 + } + } + }, + { + "type_name": "CBaseConcreteToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 2 + } + } + }, + { + "type_name": "CBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IBaseToolAttr", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "IToolAttr_TypedValue", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 528, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "IToolAttr_Value", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 528, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6468890320, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -534509,16 +534515,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ_Max", - "vtable_address": 6467087544, + "vtable_address": 6467091608, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -534636,7 +534642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886408, + "complete_object_locator": 6468890504, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -534645,61 +534651,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ_Min", - "vtable_address": 6467086608, - "methods": [ - 6459241152, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666320, - 6459666224, - 6459667472, - 6459651056, - 6459418368, - 6459415328, - 6459418208, - 6459415360, - 6459415456, - 6459415376, - 6459415344, - 6459747872, - 6459674208, - 6459720320, - 6459431072, - 6459613456, - 6459632208, - 6459633120, - 6459643696, - 6459420112, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651616, - 6459874560, - 6459682944, - 6459840176, - 6459815200, - 6459477424, - 6459279088, - 6459499568, - 6459542864, - 6459617392, - 6459631840, - 6459714560, - 6459680768, - 6459667584, - 6459657344, - 6459807280, - 6459800224, - 6459496240, - 6459496272, - 6459793984, - 6459447040, - 6459888928 + "vtable_address": 6467090672, + "methods": [ + 6459243344, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668512, + 6459668416, + 6459669664, + 6459653248, + 6459420560, + 6459417520, + 6459420400, + 6459417552, + 6459417648, + 6459417568, + 6459417536, + 6459750064, + 6459676400, + 6459722512, + 6459433264, + 6459615648, + 6459634400, + 6459635312, + 6459645888, + 6459422304, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653808, + 6459876752, + 6459685136, + 6459842368, + 6459817392, + 6459479616, + 6459281280, + 6459501760, + 6459545056, + 6459619584, + 6459634032, + 6459716752, + 6459682960, + 6459669776, + 6459659536, + 6459809472, + 6459802416, + 6459498432, + 6459498464, + 6459796176, + 6459449232, + 6459891120 ], "bases": [ { @@ -534817,7 +534823,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886000, + "complete_object_locator": 6468890096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -534826,16 +534832,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_flValueFloatZ_Min", - "vtable_address": 6467087040, + "vtable_address": 6467091104, "methods": [ - 6459412320, - 6459394768, - 6459397072, - 6459411696, - 6459411152, - 6459386880, - 6459376736, - 6459379872 + 6459414512, + 6459396960, + 6459399264, + 6459413888, + 6459413344, + 6459389072, + 6459378928, + 6459382064 ], "bases": [ { @@ -534953,7 +534959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468886184, + "complete_object_locator": 6468890280, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -534962,61 +534968,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nPanoramaRenderRes", - "vtable_address": 6467098584, - "methods": [ - 6459241472, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666288, - 6459666224, - 6459667472, - 6459651056, - 6459418304, - 6459415328, - 6459418208, - 6459415360, - 6459415424, - 6459415376, - 6459415344, - 6459747168, - 6459673952, - 6459719296, - 6459430528, - 6459613456, - 6459632208, - 6459632736, - 6459643408, - 6459419728, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651392, - 6459874016, - 6459681840, - 6459838928, - 6459814528, - 6459476720, - 6459277488, - 6459497936, - 6459542032, - 6459617008, - 6459631840, - 6459714432, - 6459680768, - 6459667552, - 6459657344, - 6459807024, - 6459799968, - 6459496240, - 6459496272, - 6459793760, - 6459446048, - 6459888928 + "vtable_address": 6467102648, + "methods": [ + 6459243664, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668480, + 6459668416, + 6459669664, + 6459653248, + 6459420496, + 6459417520, + 6459420400, + 6459417552, + 6459417616, + 6459417568, + 6459417536, + 6459749360, + 6459676144, + 6459721488, + 6459432720, + 6459615648, + 6459634400, + 6459634928, + 6459645600, + 6459421920, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653584, + 6459876208, + 6459684032, + 6459841120, + 6459816720, + 6459478912, + 6459279680, + 6459500128, + 6459544224, + 6459619200, + 6459634032, + 6459716624, + 6459682960, + 6459669744, + 6459659536, + 6459809216, + 6459802160, + 6459498432, + 6459498464, + 6459795952, + 6459448240, + 6459891120 ], "bases": [ { @@ -535134,7 +535140,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893904, + "complete_object_locator": 6468898000, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -535143,16 +535149,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nPanoramaRenderRes", - "vtable_address": 6467099016, + "vtable_address": 6467103080, "methods": [ - 6459412176, - 6459394688, + 6459414368, 6459396880, - 6459411664, - 6459411120, - 6459386352, - 6459376608, - 6459379392 + 6459399072, + 6459413856, + 6459413312, + 6459388544, + 6459378800, + 6459381584 ], "bases": [ { @@ -535270,7 +535276,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468894088, + "complete_object_locator": 6468898184, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -535279,61 +535285,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nTextureType", - "vtable_address": 6467097072, - "methods": [ - 6459241728, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666992, - 6459666224, - 6459667472, - 6459651056, - 6459419040, - 6459415328, - 6459418208, - 6459415360, - 6459416128, - 6459415376, - 6459415344, - 6459762656, - 6459679584, - 6459741824, - 6459442496, - 6459613456, - 6459632208, - 6459641184, - 6459649744, - 6459428176, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656320, - 6459885984, - 6459709440, - 6459866832, - 6459830336, - 6459492528, - 6459312688, - 6459533840, - 6459560336, - 6459625456, - 6459631840, - 6459717664, - 6459680768, - 6459669024, - 6459657344, - 6459812656, - 6459805600, - 6459496240, - 6459496272, - 6459798688, - 6459467872, - 6459888928 + "vtable_address": 6467101136, + "methods": [ + 6459243920, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669184, + 6459668416, + 6459669664, + 6459653248, + 6459421232, + 6459417520, + 6459420400, + 6459417552, + 6459418320, + 6459417568, + 6459417536, + 6459764848, + 6459681776, + 6459744016, + 6459444688, + 6459615648, + 6459634400, + 6459643376, + 6459651936, + 6459430368, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658512, + 6459888176, + 6459711632, + 6459869024, + 6459832528, + 6459494720, + 6459314880, + 6459536032, + 6459562528, + 6459627648, + 6459634032, + 6459719856, + 6459682960, + 6459671216, + 6459659536, + 6459814848, + 6459807792, + 6459498432, + 6459498464, + 6459800880, + 6459470064, + 6459891120 ], "bases": [ { @@ -535451,7 +535457,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468892976, + "complete_object_locator": 6468897072, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -535460,16 +535466,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nTextureType", - "vtable_address": 6467097504, + "vtable_address": 6467101568, "methods": [ - 6459414400, - 6459396352, - 6459399088, - 6459412032, - 6459411488, - 6459392384, - 6459378336, - 6459384208 + 6459416592, + 6459398544, + 6459401280, + 6459414224, + 6459413680, + 6459394576, + 6459380528, + 6459386400 ], "bases": [ { @@ -535587,7 +535593,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893160, + "complete_object_locator": 6468897256, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -535596,61 +535602,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntW", - "vtable_address": 6467081088, - "methods": [ - 6459241792, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666288, - 6459666224, - 6459667472, - 6459651056, - 6459418304, - 6459415328, - 6459418208, - 6459415360, - 6459415424, - 6459415376, - 6459415344, - 6459747168, - 6459673952, - 6459719296, - 6459430528, - 6459613456, - 6459632208, - 6459632736, - 6459643408, - 6459419728, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651392, - 6459874016, - 6459681840, - 6459838928, - 6459814528, - 6459476720, - 6459277488, - 6459497936, - 6459542032, - 6459617008, - 6459631840, - 6459714432, - 6459680768, - 6459667552, - 6459657344, - 6459807024, - 6459799968, - 6459496240, - 6459496272, - 6459793760, - 6459446048, - 6459888928 + "vtable_address": 6467085152, + "methods": [ + 6459243984, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668480, + 6459668416, + 6459669664, + 6459653248, + 6459420496, + 6459417520, + 6459420400, + 6459417552, + 6459417616, + 6459417568, + 6459417536, + 6459749360, + 6459676144, + 6459721488, + 6459432720, + 6459615648, + 6459634400, + 6459634928, + 6459645600, + 6459421920, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653584, + 6459876208, + 6459684032, + 6459841120, + 6459816720, + 6459478912, + 6459279680, + 6459500128, + 6459544224, + 6459619200, + 6459634032, + 6459716624, + 6459682960, + 6459669744, + 6459659536, + 6459809216, + 6459802160, + 6459498432, + 6459498464, + 6459795952, + 6459448240, + 6459891120 ], "bases": [ { @@ -535768,7 +535774,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468883040, + "complete_object_locator": 6468887136, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -535777,16 +535783,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntW", - "vtable_address": 6467081520, + "vtable_address": 6467085584, "methods": [ - 6459412176, - 6459394688, + 6459414368, 6459396880, - 6459411664, - 6459411120, - 6459386352, - 6459376608, - 6459379392 + 6459399072, + 6459413856, + 6459413312, + 6459388544, + 6459378800, + 6459381584 ], "bases": [ { @@ -535904,7 +535910,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468883224, + "complete_object_locator": 6468887320, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -535913,61 +535919,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntX", - "vtable_address": 6467079576, - "methods": [ - 6459241856, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666288, - 6459666224, - 6459667472, - 6459651056, - 6459418304, - 6459415328, - 6459418208, - 6459415360, - 6459415424, - 6459415376, - 6459415344, - 6459747168, - 6459673952, - 6459719296, - 6459430528, - 6459613456, - 6459632208, - 6459632736, - 6459643408, - 6459419728, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651392, - 6459874016, - 6459681840, - 6459838928, - 6459814528, - 6459476720, - 6459277488, - 6459497936, - 6459542032, - 6459617008, - 6459631840, - 6459714432, - 6459680768, - 6459667552, - 6459657344, - 6459807024, - 6459799968, - 6459496240, - 6459496272, - 6459793760, - 6459446048, - 6459888928 + "vtable_address": 6467083640, + "methods": [ + 6459244048, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668480, + 6459668416, + 6459669664, + 6459653248, + 6459420496, + 6459417520, + 6459420400, + 6459417552, + 6459417616, + 6459417568, + 6459417536, + 6459749360, + 6459676144, + 6459721488, + 6459432720, + 6459615648, + 6459634400, + 6459634928, + 6459645600, + 6459421920, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653584, + 6459876208, + 6459684032, + 6459841120, + 6459816720, + 6459478912, + 6459279680, + 6459500128, + 6459544224, + 6459619200, + 6459634032, + 6459716624, + 6459682960, + 6459669744, + 6459659536, + 6459809216, + 6459802160, + 6459498432, + 6459498464, + 6459795952, + 6459448240, + 6459891120 ], "bases": [ { @@ -536085,7 +536091,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882112, + "complete_object_locator": 6468886208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -536094,16 +536100,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntX", - "vtable_address": 6467080008, + "vtable_address": 6467084072, "methods": [ - 6459412176, - 6459394688, + 6459414368, 6459396880, - 6459411664, - 6459411120, - 6459386352, - 6459376608, - 6459379392 + 6459399072, + 6459413856, + 6459413312, + 6459388544, + 6459378800, + 6459381584 ], "bases": [ { @@ -536221,7 +536227,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882296, + "complete_object_locator": 6468886392, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -536230,61 +536236,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntY", - "vtable_address": 6467080080, - "methods": [ - 6459241920, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666288, - 6459666224, - 6459667472, - 6459651056, - 6459418304, - 6459415328, - 6459418208, - 6459415360, - 6459415424, - 6459415376, - 6459415344, - 6459747168, - 6459673952, - 6459719296, - 6459430528, - 6459613456, - 6459632208, - 6459632736, - 6459643408, - 6459419728, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651392, - 6459874016, - 6459681840, - 6459838928, - 6459814528, - 6459476720, - 6459277488, - 6459497936, - 6459542032, - 6459617008, - 6459631840, - 6459714432, - 6459680768, - 6459667552, - 6459657344, - 6459807024, - 6459799968, - 6459496240, - 6459496272, - 6459793760, - 6459446048, - 6459888928 + "vtable_address": 6467084144, + "methods": [ + 6459244112, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668480, + 6459668416, + 6459669664, + 6459653248, + 6459420496, + 6459417520, + 6459420400, + 6459417552, + 6459417616, + 6459417568, + 6459417536, + 6459749360, + 6459676144, + 6459721488, + 6459432720, + 6459615648, + 6459634400, + 6459634928, + 6459645600, + 6459421920, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653584, + 6459876208, + 6459684032, + 6459841120, + 6459816720, + 6459478912, + 6459279680, + 6459500128, + 6459544224, + 6459619200, + 6459634032, + 6459716624, + 6459682960, + 6459669744, + 6459659536, + 6459809216, + 6459802160, + 6459498432, + 6459498464, + 6459795952, + 6459448240, + 6459891120 ], "bases": [ { @@ -536402,7 +536408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882584, + "complete_object_locator": 6468886680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -536411,16 +536417,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntY", - "vtable_address": 6467080512, + "vtable_address": 6467084576, "methods": [ - 6459412176, - 6459394688, + 6459414368, 6459396880, - 6459411664, - 6459411120, - 6459386352, - 6459376608, - 6459379392 + 6459399072, + 6459413856, + 6459413312, + 6459388544, + 6459378800, + 6459381584 ], "bases": [ { @@ -536538,7 +536544,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882776, + "complete_object_locator": 6468886872, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -536547,61 +536553,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntZ", - "vtable_address": 6467080584, - "methods": [ - 6459241984, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666288, - 6459666224, - 6459667472, - 6459651056, - 6459418304, - 6459415328, - 6459418208, - 6459415360, - 6459415424, - 6459415376, - 6459415344, - 6459747168, - 6459673952, - 6459719296, - 6459430528, - 6459613456, - 6459632208, - 6459632736, - 6459643408, - 6459419728, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459651392, - 6459874016, - 6459681840, - 6459838928, - 6459814528, - 6459476720, - 6459277488, - 6459497936, - 6459542032, - 6459617008, - 6459631840, - 6459714432, - 6459680768, - 6459667552, - 6459657344, - 6459807024, - 6459799968, - 6459496240, - 6459496272, - 6459793760, - 6459446048, - 6459888928 + "vtable_address": 6467084648, + "methods": [ + 6459244176, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668480, + 6459668416, + 6459669664, + 6459653248, + 6459420496, + 6459417520, + 6459420400, + 6459417552, + 6459417616, + 6459417568, + 6459417536, + 6459749360, + 6459676144, + 6459721488, + 6459432720, + 6459615648, + 6459634400, + 6459634928, + 6459645600, + 6459421920, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459653584, + 6459876208, + 6459684032, + 6459841120, + 6459816720, + 6459478912, + 6459279680, + 6459500128, + 6459544224, + 6459619200, + 6459634032, + 6459716624, + 6459682960, + 6459669744, + 6459659536, + 6459809216, + 6459802160, + 6459498432, + 6459498464, + 6459795952, + 6459448240, + 6459891120 ], "bases": [ { @@ -536719,7 +536725,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468882816, + "complete_object_locator": 6468886912, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -536728,16 +536734,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueIntZ", - "vtable_address": 6467081016, + "vtable_address": 6467085080, "methods": [ - 6459412176, - 6459394688, + 6459414368, 6459396880, - 6459411664, - 6459411120, - 6459386352, - 6459376608, - 6459379392 + 6459399072, + 6459413856, + 6459413312, + 6459388544, + 6459378800, + 6459381584 ], "bases": [ { @@ -536855,7 +536861,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468883000, + "complete_object_locator": 6468887096, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -536864,61 +536870,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueSystemVar", - "vtable_address": 6467091600, - "methods": [ - 6459242048, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667024, - 6459666224, - 6459667472, - 6459651056, - 6459419104, - 6459415328, - 6459418208, - 6459415360, - 6459416160, - 6459415376, - 6459415344, - 6459763360, - 6459679840, - 6459742848, - 6459443040, - 6459613456, - 6459632208, - 6459641568, - 6459650032, - 6459428560, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656544, - 6459886528, - 6459710496, - 6459868080, - 6459831008, - 6459493232, - 6459314288, - 6459535472, - 6459561168, - 6459625840, - 6459631840, - 6459717792, - 6459680768, - 6459669056, - 6459657344, - 6459812912, - 6459805856, - 6459496240, - 6459496272, - 6459798912, - 6459468864, - 6459888928 + "vtable_address": 6467095664, + "methods": [ + 6459244240, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669216, + 6459668416, + 6459669664, + 6459653248, + 6459421296, + 6459417520, + 6459420400, + 6459417552, + 6459418352, + 6459417568, + 6459417536, + 6459765552, + 6459682032, + 6459745040, + 6459445232, + 6459615648, + 6459634400, + 6459643760, + 6459652224, + 6459430752, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658736, + 6459888720, + 6459712688, + 6459870272, + 6459833200, + 6459495424, + 6459316480, + 6459537664, + 6459563360, + 6459628032, + 6459634032, + 6459719984, + 6459682960, + 6459671248, + 6459659536, + 6459815104, + 6459808048, + 6459498432, + 6459498464, + 6459801104, + 6459471056, + 6459891120 ], "bases": [ { @@ -537036,7 +537042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468888976, + "complete_object_locator": 6468893072, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -537045,16 +537051,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nValueSystemVar", - "vtable_address": 6467092032, + "vtable_address": 6467096096, "methods": [ - 6459414688, - 6459396512, - 6459399280, - 6459412064, - 6459411520, - 6459392896, - 6459378464, - 6459384336 + 6459416880, + 6459398704, + 6459401472, + 6459414256, + 6459413712, + 6459395088, + 6459380656, + 6459386528 ], "bases": [ { @@ -537172,7 +537178,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468889160, + "complete_object_locator": 6468893256, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -537181,61 +537187,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nVariableType", - "vtable_address": 6467077584, + "vtable_address": 6467081648, "methods": [ - 6459242112, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666976, - 6459666224, - 6459667472, - 6459651056, - 6459419008, - 6459415328, - 6459418208, - 6459415360, - 6459416112, - 6459415376, - 6459415344, - 6459762304, - 6459679456, - 6459741312, - 6459442224, - 6459613456, - 6459632208, - 6459640992, - 6459649600, - 6459427984, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656208, - 6459885712, - 6459708912, - 6459866208, - 6459830000, - 6459492176, - 6459311888, - 6459533024, - 6459559920, - 6459625264, - 6459631840, - 6459717600, - 6459680768, - 6459669008, - 6459657344, - 6459812528, - 6459805472, - 6459496240, - 6459496272, - 6459798576, - 6459467376, - 6459888928 + 6459244304, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669168, + 6459668416, + 6459669664, + 6459653248, + 6459421200, + 6459417520, + 6459420400, + 6459417552, + 6459418304, + 6459417568, + 6459417536, + 6459764496, + 6459681648, + 6459743504, + 6459444416, + 6459615648, + 6459634400, + 6459643184, + 6459651792, + 6459430176, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658400, + 6459887904, + 6459711104, + 6459868400, + 6459832192, + 6459494368, + 6459314080, + 6459535216, + 6459562112, + 6459627456, + 6459634032, + 6459719792, + 6459682960, + 6459671200, + 6459659536, + 6459814720, + 6459807664, + 6459498432, + 6459498464, + 6459800768, + 6459469568, + 6459891120 ], "bases": [ { @@ -537353,7 +537359,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468880720, + "complete_object_locator": 6468884816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -537362,16 +537368,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nVariableType", - "vtable_address": 6467078016, + "vtable_address": 6467082080, "methods": [ - 6459414256, - 6459396272, - 6459398992, - 6459412016, - 6459411472, - 6459392128, - 6459378272, - 6459384144 + 6459416448, + 6459398464, + 6459401184, + 6459414208, + 6459413664, + 6459394320, + 6459380464, + 6459386336 ], "bases": [ { @@ -537489,7 +537495,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468880904, + "complete_object_locator": 6468885000, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -537498,61 +537504,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedFriendlyGroupName", - "vtable_address": 6467074080, + "vtable_address": 6467078144, "methods": [ - 6459243136, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459245328, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -537670,7 +537676,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878912, + "complete_object_locator": 6468883008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -537679,16 +537685,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedFriendlyGroupName", - "vtable_address": 6467074512, + "vtable_address": 6467078576, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -537806,7 +537812,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879096, + "complete_object_locator": 6468883192, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -537815,61 +537821,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedFriendlyName", - "vtable_address": 6467073576, + "vtable_address": 6467077640, "methods": [ - 6459243200, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459245392, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -537987,7 +537993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878680, + "complete_object_locator": 6468882776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -537996,16 +538002,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedFriendlyName", - "vtable_address": 6467074008, + "vtable_address": 6467078072, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -538123,7 +538129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468878872, + "complete_object_locator": 6468882968, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -538132,61 +538138,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedHiddenWhenTrue", - "vtable_address": 6467075592, + "vtable_address": 6467079656, "methods": [ - 6459243264, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459245456, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -538304,7 +538310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879584, + "complete_object_locator": 6468883680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -538313,16 +538319,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedHiddenWhenTrue", - "vtable_address": 6467076024, + "vtable_address": 6467080088, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -538440,7 +538446,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879768, + "complete_object_locator": 6468883864, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -538449,61 +538455,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedValueList", - "vtable_address": 6467076096, + "vtable_address": 6467080160, "methods": [ - 6459243328, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459245520, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -538621,7 +538627,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879808, + "complete_object_locator": 6468883904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -538630,16 +538636,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedValueList", - "vtable_address": 6467076528, + "vtable_address": 6467080592, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -538757,7 +538763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879992, + "complete_object_locator": 6468884088, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -538766,61 +538772,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedVisibleWhenTrue", - "vtable_address": 6467075088, + "vtable_address": 6467079152, "methods": [ - 6459243392, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459245584, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -538938,7 +538944,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879360, + "complete_object_locator": 6468883456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -538947,16 +538953,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strExposedVisibleWhenTrue", - "vtable_address": 6467075520, + "vtable_address": 6467079584, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -539074,7 +539080,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468879544, + "complete_object_locator": 6468883640, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -539083,61 +539089,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strName", - "vtable_address": 6467071584, + "vtable_address": 6467075648, "methods": [ - 6459243968, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459246160, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -539255,7 +539261,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468877328, + "complete_object_locator": 6468881424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -539264,16 +539270,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strName", - "vtable_address": 6467072016, + "vtable_address": 6467076080, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -539391,7 +539397,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468877512, + "complete_object_locator": 6468881608, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -539400,61 +539406,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strPanoramaPanelPath", - "vtable_address": 6467098080, + "vtable_address": 6467102144, "methods": [ - 6459244032, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459246224, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -539572,7 +539578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893680, + "complete_object_locator": 6468897776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -539581,16 +539587,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strPanoramaPanelPath", - "vtable_address": 6467098512, + "vtable_address": 6467102576, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -539708,7 +539714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893864, + "complete_object_locator": 6468897960, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -539717,61 +539723,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strResourceMaterial", - "vtable_address": 6467093088, + "vtable_address": 6467097152, "methods": [ - 6459244224, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666560, - 6459666224, - 6459667472, - 6459651056, - 6459418528, - 6459415328, - 6459418208, - 6459415360, - 6459415696, - 6459415376, - 6459415344, - 6459753152, - 6459676128, - 6459728000, - 6459435152, - 6459613456, - 6459632208, - 6459636000, - 6459645856, - 6459422992, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653296, - 6459878640, - 6459692464, - 6459849648, - 6459820608, - 6459482816, - 6459291088, - 6459511808, - 6459549104, - 6459620272, - 6459631840, - 6459715520, - 6459680768, - 6459668592, - 6459657344, - 6459809200, - 6459802144, - 6459496240, - 6459496272, - 6459795664, - 6459454480, - 6459888928 + 6459246416, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668752, + 6459668416, + 6459669664, + 6459653248, + 6459420720, + 6459417520, + 6459420400, + 6459417552, + 6459417888, + 6459417568, + 6459417536, + 6459755344, + 6459678320, + 6459730192, + 6459437344, + 6459615648, + 6459634400, + 6459638192, + 6459648048, + 6459425184, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655488, + 6459880832, + 6459694656, + 6459851840, + 6459822800, + 6459485008, + 6459293280, + 6459514000, + 6459551296, + 6459622464, + 6459634032, + 6459717712, + 6459682960, + 6459670784, + 6459659536, + 6459811392, + 6459804336, + 6459498432, + 6459498464, + 6459797856, + 6459456672, + 6459891120 ], "bases": [ { @@ -539889,7 +539895,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890184, + "complete_object_locator": 6468894280, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -539898,16 +539904,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strResourceMaterial", - "vtable_address": 6467093520, + "vtable_address": 6467097584, "methods": [ - 6459412992, - 6459395344, - 6459397552, - 6459411776, - 6459411232, - 6459388176, - 6459377120, - 6459381072 + 6459415184, + 6459397536, + 6459399744, + 6459413968, + 6459413424, + 6459390368, + 6459379312, + 6459383264 ], "bases": [ { @@ -540025,7 +540031,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890376, + "complete_object_locator": 6468894472, "offset": 752, "constructor_displacement": 0, "class_attributes": 1 @@ -540034,61 +540040,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strString", - "vtable_address": 6467097576, + "vtable_address": 6467101640, "methods": [ - 6459244352, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459246544, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -540206,7 +540212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893448, + "complete_object_locator": 6468897544, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -540215,16 +540221,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strString", - "vtable_address": 6467098008, + "vtable_address": 6467102072, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -540342,7 +540348,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468893640, + "complete_object_locator": 6468897736, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -540351,61 +540357,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strTextureCompilationVtexTemplate", - "vtable_address": 6467095584, + "vtable_address": 6467099648, "methods": [ - 6459244416, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459246608, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -540523,7 +540529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468892056, + "complete_object_locator": 6468896152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -540532,16 +540538,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strTextureCompilationVtexTemplate", - "vtable_address": 6467096016, + "vtable_address": 6467100080, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -540659,7 +540665,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468892248, + "complete_object_locator": 6468896344, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -540668,61 +540674,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strTextureContentAssetPath", - "vtable_address": 6467093592, + "vtable_address": 6467097656, "methods": [ - 6459244480, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666816, - 6459666224, - 6459667472, - 6459651056, - 6459418688, - 6459415328, - 6459418208, - 6459415360, - 6459415952, - 6459415376, - 6459415344, - 6459758784, - 6459678176, - 6459736192, - 6459439504, - 6459613456, - 6459632208, - 6459639072, - 6459648160, - 6459426064, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655088, - 6459882992, - 6459703008, - 6459859920, - 6459826528, - 6459488656, - 6459303888, - 6459524864, - 6459555760, - 6459623344, - 6459631840, - 6459716736, - 6459680768, - 6459668848, - 6459657344, - 6459811248, - 6459804192, - 6459496240, - 6459496272, - 6459797456, - 6459462416, - 6459888928 + 6459246672, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669008, + 6459668416, + 6459669664, + 6459653248, + 6459420880, + 6459417520, + 6459420400, + 6459417552, + 6459418144, + 6459417568, + 6459417536, + 6459760976, + 6459680368, + 6459738384, + 6459441696, + 6459615648, + 6459634400, + 6459641264, + 6459650352, + 6459428256, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657280, + 6459885184, + 6459705200, + 6459862112, + 6459828720, + 6459490848, + 6459306080, + 6459527056, + 6459557952, + 6459625536, + 6459634032, + 6459718928, + 6459682960, + 6459671040, + 6459659536, + 6459813440, + 6459806384, + 6459498432, + 6459498464, + 6459799648, + 6459464608, + 6459891120 ], "bases": [ { @@ -540840,7 +540846,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890664, + "complete_object_locator": 6468894760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -540849,16 +540855,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strTextureContentAssetPath", - "vtable_address": 6467094024, + "vtable_address": 6467098088, "methods": [ - 6459413312, - 6459395616, - 6459398032, - 6459411856, - 6459411312, - 6459389520, - 6459377520, - 6459382272 + 6459415504, + 6459397808, + 6459400224, + 6459414048, + 6459413504, + 6459391712, + 6459379712, + 6459384464 ], "bases": [ { @@ -540976,7 +540982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468890856, + "complete_object_locator": 6468894952, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -540985,61 +540991,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strTextureRuntimeResourcePath", - "vtable_address": 6467095080, + "vtable_address": 6467099144, "methods": [ - 6459244544, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666528, - 6459666224, - 6459667472, - 6459651056, - 6459418464, - 6459415328, - 6459418208, - 6459415360, - 6459415664, - 6459415376, - 6459415344, - 6459752448, - 6459675872, - 6459726976, - 6459434608, - 6459613456, - 6459632208, - 6459635616, - 6459645568, - 6459422608, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459653072, - 6459878096, - 6459691056, - 6459848400, - 6459819904, - 6459482112, - 6459289488, - 6459510176, - 6459548272, - 6459619888, - 6459631840, - 6459715392, - 6459680768, - 6459668304, - 6459657344, - 6459808944, - 6459801888, - 6459496240, - 6459496272, - 6459795440, - 6459453488, - 6459888928 + 6459246736, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459668720, + 6459668416, + 6459669664, + 6459653248, + 6459420656, + 6459417520, + 6459420400, + 6459417552, + 6459417856, + 6459417568, + 6459417536, + 6459754640, + 6459678064, + 6459729168, + 6459436800, + 6459615648, + 6459634400, + 6459637808, + 6459647760, + 6459424800, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459655264, + 6459880288, + 6459693248, + 6459850592, + 6459822096, + 6459484304, + 6459291680, + 6459512368, + 6459550464, + 6459622080, + 6459634032, + 6459717584, + 6459682960, + 6459670496, + 6459659536, + 6459811136, + 6459804080, + 6459498432, + 6459498464, + 6459797632, + 6459455680, + 6459891120 ], "bases": [ { @@ -541157,7 +541163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468891584, + "complete_object_locator": 6468895680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -541166,16 +541172,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialInputLooseVariable_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strTextureRuntimeResourcePath", - "vtable_address": 6467095512, + "vtable_address": 6467099576, "methods": [ - 6459412816, - 6459395184, - 6459397360, - 6459411744, - 6459411200, - 6459387664, - 6459376960, - 6459380592 + 6459415008, + 6459397376, + 6459399552, + 6459413936, + 6459413392, + 6459389856, + 6459379152, + 6459382784 ], "bases": [ { @@ -541293,7 +541299,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468891768, + "complete_object_locator": 6468895864, "offset": 752, "constructor_displacement": 0, "class_attributes": 1 @@ -541302,61 +541308,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bPassWhenTrue", - "vtable_address": 6467069944, + "vtable_address": 6467074008, "methods": [ - 6459240064, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667120, - 6459666224, - 6459667472, - 6459651056, - 6459419296, - 6459415328, - 6459418208, - 6459415360, - 6459416256, - 6459415376, - 6459415344, - 6459765472, - 6459680608, - 6459745920, - 6459444672, - 6459613456, - 6459632208, - 6459642720, - 6459650896, - 6459429712, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459657216, - 6459888160, - 6459713744, - 6459871824, - 6459833024, - 6459495344, - 6459319088, - 6459540368, - 6459563664, - 6459626992, - 6459631840, - 6459718176, - 6459680768, - 6459669152, - 6459657344, - 6459813680, - 6459806624, - 6459496240, - 6459496272, - 6459799584, - 6459471840, - 6459888928 + 6459242256, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669312, + 6459668416, + 6459669664, + 6459653248, + 6459421488, + 6459417520, + 6459420400, + 6459417552, + 6459418448, + 6459417568, + 6459417536, + 6459767664, + 6459682800, + 6459748112, + 6459446864, + 6459615648, + 6459634400, + 6459644912, + 6459653088, + 6459431904, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459659408, + 6459890352, + 6459715936, + 6459874016, + 6459835216, + 6459497536, + 6459321280, + 6459542560, + 6459565856, + 6459629184, + 6459634032, + 6459720368, + 6459682960, + 6459671344, + 6459659536, + 6459815872, + 6459808816, + 6459498432, + 6459498464, + 6459801776, + 6459474032, + 6459891120 ], "bases": [ { @@ -541474,7 +541480,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468876160, + "complete_object_locator": 6468880256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -541483,16 +541489,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_bPassWhenTrue", - "vtable_address": 6467070376, + "vtable_address": 6467074440, "methods": [ - 6459414832, - 6459396592, - 6459399856, - 6459412160, - 6459411616, - 6459394432, - 6459378848, - 6459385600 + 6459417024, + 6459398784, + 6459402048, + 6459414352, + 6459413808, + 6459396624, + 6459381040, + 6459387792 ], "bases": [ { @@ -541610,7 +541616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468876344, + "complete_object_locator": 6468880440, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -541619,61 +541625,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nCompositeMaterialMatchFilterType", - "vtable_address": 6467066464, - "methods": [ - 6459241280, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667008, - 6459666224, - 6459667472, - 6459651056, - 6459419072, - 6459415328, - 6459418208, - 6459415360, - 6459416144, - 6459415376, - 6459415344, - 6459763008, - 6459679712, - 6459742336, - 6459442768, - 6459613456, - 6459632208, - 6459641376, - 6459649888, - 6459428368, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459656432, - 6459886256, - 6459709968, - 6459867456, - 6459830672, - 6459492880, - 6459313488, - 6459534656, - 6459560752, - 6459625648, - 6459631840, - 6459717728, - 6459680768, - 6459669040, - 6459657344, - 6459812784, - 6459805728, - 6459496240, - 6459496272, - 6459798800, - 6459468368, - 6459888928 + "vtable_address": 6467070528, + "methods": [ + 6459243472, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669200, + 6459668416, + 6459669664, + 6459653248, + 6459421264, + 6459417520, + 6459420400, + 6459417552, + 6459418336, + 6459417568, + 6459417536, + 6459765200, + 6459681904, + 6459744528, + 6459444960, + 6459615648, + 6459634400, + 6459643568, + 6459652080, + 6459430560, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459658624, + 6459888448, + 6459712160, + 6459869648, + 6459832864, + 6459495072, + 6459315680, + 6459536848, + 6459562944, + 6459627840, + 6459634032, + 6459719920, + 6459682960, + 6459671232, + 6459659536, + 6459814976, + 6459807920, + 6459498432, + 6459498464, + 6459800992, + 6459470560, + 6459891120 ], "bases": [ { @@ -541791,7 +541797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468873544, + "complete_object_locator": 6468877640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -541800,16 +541806,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_nCompositeMaterialMatchFilterType", - "vtable_address": 6467066896, + "vtable_address": 6467070960, "methods": [ - 6459414544, - 6459396432, - 6459399184, - 6459412048, - 6459411504, - 6459392640, - 6459378400, - 6459384272 + 6459416736, + 6459398624, + 6459401376, + 6459414240, + 6459413696, + 6459394832, + 6459380592, + 6459386464 ], "bases": [ { @@ -541927,7 +541933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468873736, + "complete_object_locator": 6468877832, "offset": 528, "constructor_displacement": 0, "class_attributes": 1 @@ -541936,61 +541942,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMatchFilter", - "vtable_address": 6467067952, + "vtable_address": 6467072016, "methods": [ - 6459243648, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666832, - 6459666224, - 6459667472, - 6459651056, - 6459418720, - 6459415328, - 6459418208, - 6459415360, - 6459415968, - 6459415376, - 6459415344, - 6459759136, - 6459678304, - 6459736704, - 6459439776, - 6459613456, - 6459632208, - 6459639264, - 6459648304, - 6459426256, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655200, - 6459883264, - 6459703680, - 6459860560, - 6459826880, - 6459489008, - 6459304688, - 6459525680, - 6459556176, - 6459623536, - 6459631840, - 6459716864, - 6459680768, - 6459668864, - 6459657344, - 6459811376, - 6459804320, - 6459496240, - 6459496272, - 6459797568, - 6459462912, - 6459888928 + 6459245840, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669024, + 6459668416, + 6459669664, + 6459653248, + 6459420912, + 6459417520, + 6459420400, + 6459417552, + 6459418160, + 6459417568, + 6459417536, + 6459761328, + 6459680496, + 6459738896, + 6459441968, + 6459615648, + 6459634400, + 6459641456, + 6459650496, + 6459428448, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657392, + 6459885456, + 6459705872, + 6459862752, + 6459829072, + 6459491200, + 6459306880, + 6459527872, + 6459558368, + 6459625728, + 6459634032, + 6459719056, + 6459682960, + 6459671056, + 6459659536, + 6459813568, + 6459806512, + 6459498432, + 6459498464, + 6459799760, + 6459465104, + 6459891120 ], "bases": [ { @@ -542108,7 +542114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468874760, + "complete_object_locator": 6468878856, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -542117,16 +542123,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMatchFilter", - "vtable_address": 6467068384, + "vtable_address": 6467072448, "methods": [ - 6459413312, - 6459395616, - 6459398128, - 6459411872, - 6459411328, - 6459389792, - 6459377600, - 6459382512 + 6459415504, + 6459397808, + 6459400320, + 6459414064, + 6459413520, + 6459391984, + 6459379792, + 6459384704 ], "bases": [ { @@ -542244,7 +542250,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468874952, + "complete_object_locator": 6468879048, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -542253,61 +542259,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMatchValue", - "vtable_address": 6467068456, + "vtable_address": 6467072520, "methods": [ - 6459243712, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666832, - 6459666224, - 6459667472, - 6459651056, - 6459418720, - 6459415328, - 6459418208, - 6459415360, - 6459415968, - 6459415376, - 6459415344, - 6459759136, - 6459678304, - 6459736704, - 6459439776, - 6459613456, - 6459632208, - 6459639264, - 6459648304, - 6459426256, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655200, - 6459883264, - 6459703680, - 6459860560, - 6459826880, - 6459489008, - 6459304688, - 6459525680, - 6459556176, - 6459623536, - 6459631840, - 6459716864, - 6459680768, - 6459668864, - 6459657344, - 6459811376, - 6459804320, - 6459496240, - 6459496272, - 6459797568, - 6459462912, - 6459888928 + 6459245904, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669024, + 6459668416, + 6459669664, + 6459653248, + 6459420912, + 6459417520, + 6459420400, + 6459417552, + 6459418160, + 6459417568, + 6459417536, + 6459761328, + 6459680496, + 6459738896, + 6459441968, + 6459615648, + 6459634400, + 6459641456, + 6459650496, + 6459428448, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657392, + 6459885456, + 6459705872, + 6459862752, + 6459829072, + 6459491200, + 6459306880, + 6459527872, + 6459558368, + 6459625728, + 6459634032, + 6459719056, + 6459682960, + 6459671056, + 6459659536, + 6459813568, + 6459806512, + 6459498432, + 6459498464, + 6459799760, + 6459465104, + 6459891120 ], "bases": [ { @@ -542425,7 +542431,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468875240, + "complete_object_locator": 6468879336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -542434,16 +542440,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterialMatchFilter_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strMatchValue", - "vtable_address": 6467068888, + "vtable_address": 6467072952, "methods": [ - 6459413312, - 6459395616, - 6459398128, - 6459411872, - 6459411328, - 6459389792, - 6459377600, - 6459382512 + 6459415504, + 6459397808, + 6459400320, + 6459414064, + 6459413520, + 6459391984, + 6459379792, + 6459384704 ], "bases": [ { @@ -542561,7 +542567,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468875432, + "complete_object_locator": 6468879528, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -542570,61 +542576,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_FinalKVs", - "vtable_address": 6467149408, + "vtable_address": 6467153472, "methods": [ - 6459239104, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666912, - 6459666224, - 6459667472, - 6459651056, - 6459418880, - 6459415328, - 6459418208, - 6459415360, - 6459416048, - 6459415376, - 6459415344, - 6459760896, - 6459678944, - 6459739264, - 6459441136, - 6459613456, - 6459632208, - 6459640224, - 6459649024, - 6459427216, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655760, - 6459884624, - 6459706704, - 6459863712, - 6459828640, - 6459490768, - 6459308688, - 6459529760, - 6459558256, - 6459624496, - 6459631840, - 6459717328, - 6459680768, - 6459668944, - 6459657344, - 6459812016, - 6459804960, - 6459496240, - 6459496272, - 6459798128, - 6459465392, - 6459888928 + 6459241296, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669104, + 6459668416, + 6459669664, + 6459653248, + 6459421072, + 6459417520, + 6459420400, + 6459417552, + 6459418240, + 6459417568, + 6459417536, + 6459763088, + 6459681136, + 6459741456, + 6459443328, + 6459615648, + 6459634400, + 6459642416, + 6459651216, + 6459429408, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657952, + 6459886816, + 6459708896, + 6459865904, + 6459830832, + 6459492960, + 6459310880, + 6459531952, + 6459560448, + 6459626688, + 6459634032, + 6459719520, + 6459682960, + 6459671136, + 6459659536, + 6459814208, + 6459807152, + 6459498432, + 6459498464, + 6459800320, + 6459467584, + 6459891120 ], "bases": [ { @@ -542742,7 +542748,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928000, + "complete_object_locator": 6468932096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -542751,16 +542757,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_FinalKVs", - "vtable_address": 6467149840, + "vtable_address": 6467153904, "methods": [ - 6459413632, - 6459395888, - 6459398608, - 6459411952, - 6459411408, - 6459391104, - 6459378000, - 6459383712 + 6459415824, + 6459398080, + 6459400800, + 6459414144, + 6459413600, + 6459393296, + 6459380192, + 6459385904 ], "bases": [ { @@ -542878,7 +542884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928184, + "complete_object_locator": 6468932280, "offset": 544, "constructor_displacement": 0, "class_attributes": 1 @@ -542887,61 +542893,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_PreGenerationKVs", - "vtable_address": 6467148904, + "vtable_address": 6467152968, "methods": [ - 6459239296, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666912, - 6459666224, - 6459667472, - 6459651056, - 6459418880, - 6459415328, - 6459418208, - 6459415360, - 6459416048, - 6459415376, - 6459415344, - 6459760896, - 6459678944, - 6459739264, - 6459441136, - 6459613456, - 6459632208, - 6459640224, - 6459649024, - 6459427216, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655760, - 6459884624, - 6459706704, - 6459863712, - 6459828640, - 6459490768, - 6459308688, - 6459529760, - 6459558256, - 6459624496, - 6459631840, - 6459717328, - 6459680768, - 6459668944, - 6459657344, - 6459812016, - 6459804960, - 6459496240, - 6459496272, - 6459798128, - 6459465392, - 6459888928 + 6459241488, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669104, + 6459668416, + 6459669664, + 6459653248, + 6459421072, + 6459417520, + 6459420400, + 6459417552, + 6459418240, + 6459417568, + 6459417536, + 6459763088, + 6459681136, + 6459741456, + 6459443328, + 6459615648, + 6459634400, + 6459642416, + 6459651216, + 6459429408, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657952, + 6459886816, + 6459708896, + 6459865904, + 6459830832, + 6459492960, + 6459310880, + 6459531952, + 6459560448, + 6459626688, + 6459634032, + 6459719520, + 6459682960, + 6459671136, + 6459659536, + 6459814208, + 6459807152, + 6459498432, + 6459498464, + 6459800320, + 6459467584, + 6459891120 ], "bases": [ { @@ -543059,7 +543065,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468927768, + "complete_object_locator": 6468931864, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -543068,16 +543074,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_PreGenerationKVs", - "vtable_address": 6467149336, + "vtable_address": 6467153400, "methods": [ - 6459413632, - 6459395888, - 6459398608, - 6459411952, - 6459411408, - 6459391104, - 6459378000, - 6459383712 + 6459415824, + 6459398080, + 6459400800, + 6459414144, + 6459413600, + 6459393296, + 6459380192, + 6459385904 ], "bases": [ { @@ -543195,7 +543201,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468927960, + "complete_object_locator": 6468932056, "offset": 544, "constructor_displacement": 0, "class_attributes": 1 @@ -543204,61 +543210,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_TargetKVs", - "vtable_address": 6467148400, + "vtable_address": 6467152464, "methods": [ - 6459239360, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666912, - 6459666224, - 6459667472, - 6459651056, - 6459418880, - 6459415328, - 6459418208, - 6459415360, - 6459416048, - 6459415376, - 6459415344, - 6459760896, - 6459678944, - 6459739264, - 6459441136, - 6459613456, - 6459632208, - 6459640224, - 6459649024, - 6459427216, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655760, - 6459884624, - 6459706704, - 6459863712, - 6459828640, - 6459490768, - 6459308688, - 6459529760, - 6459558256, - 6459624496, - 6459631840, - 6459717328, - 6459680768, - 6459668944, - 6459657344, - 6459812016, - 6459804960, - 6459496240, - 6459496272, - 6459798128, - 6459465392, - 6459888928 + 6459241552, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669104, + 6459668416, + 6459669664, + 6459653248, + 6459421072, + 6459417520, + 6459420400, + 6459417552, + 6459418240, + 6459417568, + 6459417536, + 6459763088, + 6459681136, + 6459741456, + 6459443328, + 6459615648, + 6459634400, + 6459642416, + 6459651216, + 6459429408, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657952, + 6459886816, + 6459708896, + 6459865904, + 6459830832, + 6459492960, + 6459310880, + 6459531952, + 6459560448, + 6459626688, + 6459634032, + 6459719520, + 6459682960, + 6459671136, + 6459659536, + 6459814208, + 6459807152, + 6459498432, + 6459498464, + 6459800320, + 6459467584, + 6459891120 ], "bases": [ { @@ -543376,7 +543382,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468927288, + "complete_object_locator": 6468931384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -543385,16 +543391,16 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_TargetKVs", - "vtable_address": 6467148832, + "vtable_address": 6467152896, "methods": [ - 6459413632, - 6459395888, - 6459398608, - 6459411952, - 6459411408, - 6459391104, - 6459378000, - 6459383712 + 6459415824, + 6459398080, + 6459400800, + 6459414144, + 6459413600, + 6459393296, + 6459380192, + 6459385904 ], "bases": [ { @@ -543512,7 +543518,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468927480, + "complete_object_locator": 6468931576, "offset": 544, "constructor_displacement": 0, "class_attributes": 1 @@ -543521,61 +543527,61 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecGeneratedTextures", - "vtable_address": 6467150928, + "vtable_address": 6467154992, "methods": [ - 6459245056, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459667424, - 6459666224, - 6459667472, - 6459651056, - 6459419328, - 6459415232, - 6459418208, - 6459415360, - 6459415840, - 6459415376, - 6459415344, - 6459756320, - 6459677280, - 6459732608, - 6459437600, - 6459613456, - 6459632208, - 6459637728, - 6459647152, - 6459424720, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459654304, - 6459881088, - 6459698624, - 6459855488, - 6459824064, - 6459486176, - 6459298288, - 6459519152, - 6459552848, - 6459622000, - 6459631840, - 6459716096, - 6459680768, - 6459668736, - 6459657344, - 6459810352, - 6459803296, - 6459496240, - 6459496272, - 6459796672, - 6459458944, - 6459888928 + 6459247248, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669616, + 6459668416, + 6459669664, + 6459653248, + 6459421520, + 6459417424, + 6459420400, + 6459417552, + 6459418032, + 6459417568, + 6459417536, + 6459758512, + 6459679472, + 6459734800, + 6459439792, + 6459615648, + 6459634400, + 6459639920, + 6459649344, + 6459426912, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459656496, + 6459883280, + 6459700816, + 6459857680, + 6459826256, + 6459488368, + 6459300480, + 6459521344, + 6459555040, + 6459624192, + 6459634032, + 6459718288, + 6459682960, + 6459670928, + 6459659536, + 6459812544, + 6459805488, + 6459498432, + 6459498464, + 6459798864, + 6459461136, + 6459891120 ], "bases": [ { @@ -543665,7 +543671,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928632, + "complete_object_locator": 6468932728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -543674,20 +543680,20 @@ }, { "type_name": "`public: static void __cdecl CompositeMaterial_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_vecGeneratedTextures", - "vtable_address": 6467151360, + "vtable_address": 6467155424, "methods": [ - 6459320976, - 6459323216, - 6459338800, - 6459353696, - 6459357376, - 6459329232, - 6459350800, - 6459331616, - 6459331440, - 6459333072, - 6459348368, - 6459333984 + 6459323168, + 6459325408, + 6459340992, + 6459355888, + 6459359568, + 6459331424, + 6459352992, + 6459333808, + 6459333632, + 6459335264, + 6459350560, + 6459336176 ], "bases": [ { @@ -543777,7 +543783,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468928800, + "complete_object_locator": 6468932896, "offset": 552, "constructor_displacement": 0, "class_attributes": 1 @@ -543786,61 +543792,61 @@ }, { "type_name": "`public: static void __cdecl GeneratedTextureHandle_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strBitmapName", - "vtable_address": 6467146776, + "vtable_address": 6467150840, "methods": [ - 6459242368, - 6459651088, - 6459651120, - 6459632256, - 6459632304, - 6459666848, - 6459666224, - 6459667472, - 6459651056, - 6459418752, - 6459415328, - 6459418208, - 6459415360, - 6459415984, - 6459415376, - 6459415344, - 6459759488, - 6459678432, - 6459737216, - 6459440048, - 6459613456, - 6459632208, - 6459639456, - 6459648448, - 6459426448, - 6459564128, - 6459564096, - 6459718256, - 6459813824, - 6459765840, - 6459835808, - 6459655312, - 6459883536, - 6459704352, - 6459861200, - 6459827232, - 6459489360, - 6459305488, - 6459526496, - 6459556592, - 6459623728, - 6459631840, - 6459716992, - 6459680768, - 6459668880, - 6459657344, - 6459811504, - 6459804448, - 6459496240, - 6459496272, - 6459797680, - 6459463408, - 6459888928 + 6459244560, + 6459653280, + 6459653312, + 6459634448, + 6459634496, + 6459669040, + 6459668416, + 6459669664, + 6459653248, + 6459420944, + 6459417520, + 6459420400, + 6459417552, + 6459418176, + 6459417568, + 6459417536, + 6459761680, + 6459680624, + 6459739408, + 6459442240, + 6459615648, + 6459634400, + 6459641648, + 6459650640, + 6459428640, + 6459566320, + 6459566288, + 6459720448, + 6459816016, + 6459768032, + 6459838000, + 6459657504, + 6459885728, + 6459706544, + 6459863392, + 6459829424, + 6459491552, + 6459307680, + 6459528688, + 6459558784, + 6459625920, + 6459634032, + 6459719184, + 6459682960, + 6459671072, + 6459659536, + 6459813696, + 6459806640, + 6459498432, + 6459498464, + 6459799872, + 6459465600, + 6459891120 ], "bases": [ { @@ -543958,7 +543964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468926032, + "complete_object_locator": 6468930128, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -543967,16 +543973,16 @@ }, { "type_name": "`public: static void __cdecl GeneratedTextureHandle_t::GetAttributeTable_Impl(class CUtlVector > *)'::`2'::CAttr_m_strBitmapName", - "vtable_address": 6467147208, + "vtable_address": 6467151272, "methods": [ - 6459413312, - 6459395616, - 6459398224, - 6459411888, - 6459411344, - 6459390064, - 6459377680, - 6459382752 + 6459415504, + 6459397808, + 6459400416, + 6459414080, + 6459413536, + 6459392256, + 6459379872, + 6459384944 ], "bases": [ { @@ -544094,7 +544100,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468926216, + "complete_object_locator": 6468930312, "offset": 536, "constructor_displacement": 0, "class_attributes": 1 @@ -544103,13 +544109,13 @@ }, { "type_name": "`public: virtual void __cdecl C_EconItemView::IterateAttributes(class IEconItemAttributeIterator *) const'::`2'::CEconItemAttributeIterator_EconItemViewWrapper", - "vtable_address": 6466834768, + "vtable_address": 6466838880, "methods": [ - 6456440944, - 6456520960, - 6456521072, - 6456521296, - 6456521184 + 6456442720, + 6456522736, + 6456522848, + 6456523072, + 6456522960 ], "bases": [ { @@ -544129,7 +544135,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468799752, + "complete_object_locator": 6468803848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544138,17 +544144,17 @@ }, { "type_name": "audioparams_t", - "vtable_address": 6465848936, + "vtable_address": 6465853128, "methods": [ - 6449926240, - 6449907728, - 6449907808, - 6449907776 + 6449927808, + 6449909296, + 6449909376, + 6449909344 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468529600, + "complete_object_locator": 6468533696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544157,12 +544163,12 @@ }, { "type_name": "charNode", - "vtable_address": 6467894320, + "vtable_address": 6467898416, "methods": [ - 6463759992, - 6463760400, - 6463745508, - 6463752836 + 6463762184, + 6463762592, + 6463747700, + 6463755028 ], "bases": [ { @@ -544182,7 +544188,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468997304, + "complete_object_locator": 6469001400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544191,7 +544197,7 @@ }, { "type_name": "fogparams_t", - "vtable_address": 6464417040, + "vtable_address": 6464421136, "methods": [ 6443865456, 6443844064, @@ -544201,7 +544207,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468218184, + "complete_object_locator": 6468222280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544210,13 +544216,13 @@ }, { "type_name": "google::protobuf::DescriptorBuilder::OptionInterpreter::AggregateOptionFinder", - "vtable_address": 6466953680, + "vtable_address": 6466957744, "methods": [ - 6457543984, - 6457640912, - 6457238800, - 6457638320, - 6457238816 + 6457546176, + 6457643104, + 6457240992, + 6457640512, + 6457241008 ], "bases": [ { @@ -544236,7 +544242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468827456, + "complete_object_locator": 6468831552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544245,19 +544251,19 @@ }, { "type_name": "google::protobuf::DescriptorDatabase", - "vtable_address": 6466964560, + "vtable_address": 6466968624, "methods": [ - 6457882400, - 6463705588, - 6463705588, - 6463705588, - 6457884576, - 6457884944 + 6457884592, + 6463707780, + 6463707780, + 6463707780, + 6457886768, + 6457887136 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468828864, + "complete_object_locator": 6468832960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544266,25 +544272,25 @@ }, { "type_name": "google::protobuf::DescriptorProto", - "vtable_address": 6466938608, + "vtable_address": 6466942672, "methods": [ - 6457411824, - 6457189536, - 6457437168, - 6457423488, - 6457431888, - 6457189584, - 6457186560, - 6457413680, - 6457429296, - 6457438272, + 6457414016, + 6457191728, + 6457439360, + 6457425680, + 6457434080, + 6457191776, + 6457188752, + 6457415872, + 6457431488, + 6457440464, 6443742160, - 6457460560, - 6457190896, - 6457192720, - 6457437600, - 6457430160, - 6457429728 + 6457462752, + 6457193088, + 6457194912, + 6457439792, + 6457432352, + 6457431920 ], "bases": [ { @@ -544318,7 +544324,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468820712, + "complete_object_locator": 6468824808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544327,25 +544333,25 @@ }, { "type_name": "google::protobuf::DescriptorProto_ExtensionRange", - "vtable_address": 6466938320, - "methods": [ - 6457411888, - 6457189536, - 6457437184, - 6457424128, - 6457432208, - 6457189584, - 6457186560, - 6457414864, - 6457429312, - 6457439712, + "vtable_address": 6466942384, + "methods": [ + 6457414080, + 6457191728, + 6457439376, + 6457426320, + 6457434400, + 6457191776, + 6457188752, + 6457417056, + 6457431504, + 6457441904, 6443742160, - 6457461328, - 6457190896, - 6457192720, - 6457437616, - 6457430224, - 6457429744 + 6457463520, + 6457193088, + 6457194912, + 6457439808, + 6457432416, + 6457431936 ], "bases": [ { @@ -544379,7 +544385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468820848, + "complete_object_locator": 6468824944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544388,25 +544394,25 @@ }, { "type_name": "google::protobuf::DescriptorProto_ReservedRange", - "vtable_address": 6466938464, - "methods": [ - 6457411952, - 6457189536, - 6457437200, - 6457424208, - 6457432272, - 6457189584, - 6457186560, - 6457415184, - 6457429328, - 6457440304, - 6443742160, - 6457461664, - 6457190896, - 6457192720, - 6457437632, - 6457430288, - 6457429760 + "vtable_address": 6466942528, + "methods": [ + 6457414144, + 6457191728, + 6457439392, + 6457426400, + 6457434464, + 6457191776, + 6457188752, + 6457417376, + 6457431520, + 6457442496, + 6443742160, + 6457463856, + 6457193088, + 6457194912, + 6457439824, + 6457432480, + 6457431952 ], "bases": [ { @@ -544440,7 +544446,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823432, + "complete_object_locator": 6468827528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544449,24 +544455,24 @@ }, { "type_name": "google::protobuf::DynamicMessage", - "vtable_address": 6466961112, - "methods": [ - 6457856096, - 6457189536, - 6457858800, - 6457186752, - 6457190784, - 6457189584, - 6457186560, - 6457186512, - 6457856384, - 6457197136, - 6443742160, - 6457197152, - 6457190896, - 6457192720, - 6457859040, - 6457856400, + "vtable_address": 6466965176, + "methods": [ + 6457858288, + 6457191728, + 6457860992, + 6457188944, + 6457192976, + 6457191776, + 6457188752, + 6457188704, + 6457858576, + 6457199328, + 6443742160, + 6457199344, + 6457193088, + 6457194912, + 6457861232, + 6457858592, 6445594896 ], "bases": [ @@ -544501,7 +544507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468828728, + "complete_object_locator": 6468832824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544510,10 +544516,10 @@ }, { "type_name": "google::protobuf::DynamicMessageFactory", - "vtable_address": 6466960992, + "vtable_address": 6466965056, "methods": [ - 6457856160, - 6457856432 + 6457858352, + 6457858624 ], "bases": [ { @@ -544533,7 +544539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468828600, + "complete_object_locator": 6468832696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544542,14 +544548,14 @@ }, { "type_name": "google::protobuf::EncodedDescriptorDatabase", - "vtable_address": 6466964616, + "vtable_address": 6466968680, "methods": [ - 6457882448, - 6457885712, - 6457886480, - 6457886128, - 6457884592, - 6457885680 + 6457884640, + 6457887904, + 6457888672, + 6457888320, + 6457886784, + 6457887872 ], "bases": [ { @@ -544569,7 +544575,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468828984, + "complete_object_locator": 6468833080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544578,25 +544584,25 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto", - "vtable_address": 6466939328, - "methods": [ - 6457412080, - 6457189536, - 6457437216, - 6457424240, - 6457432288, - 6457189584, - 6457186560, - 6457415280, - 6457429344, - 6457440800, - 6443742160, - 6457461968, - 6457190896, - 6457192720, - 6457437648, - 6457430352, - 6457429776 + "vtable_address": 6466943392, + "methods": [ + 6457414272, + 6457191728, + 6457439408, + 6457426432, + 6457434480, + 6457191776, + 6457188752, + 6457417472, + 6457431536, + 6457442992, + 6443742160, + 6457464160, + 6457193088, + 6457194912, + 6457439840, + 6457432544, + 6457431968 ], "bases": [ { @@ -544630,7 +544636,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468821256, + "complete_object_locator": 6468825352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544639,25 +544645,25 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto_EnumReservedRange", - "vtable_address": 6466939184, - "methods": [ - 6457412144, - 6457189536, - 6457437232, - 6457424592, - 6457432464, - 6457189584, - 6457186560, - 6457415968, - 6457429360, - 6457441584, - 6443742160, - 6457462384, - 6457190896, - 6457192720, - 6457437664, - 6457430416, - 6457429792 + "vtable_address": 6466943248, + "methods": [ + 6457414336, + 6457191728, + 6457439424, + 6457426784, + 6457434656, + 6457191776, + 6457188752, + 6457418160, + 6457431552, + 6457443776, + 6443742160, + 6457464576, + 6457193088, + 6457194912, + 6457439856, + 6457432608, + 6457431984 ], "bases": [ { @@ -544691,7 +544697,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823568, + "complete_object_locator": 6468827664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544700,25 +544706,25 @@ }, { "type_name": "google::protobuf::EnumOptions", - "vtable_address": 6466940480, - "methods": [ - 6457412272, - 6457189536, - 6457437248, - 6457424624, - 6457432480, - 6457189584, - 6457186560, - 6457416064, - 6457429376, - 6457442080, + "vtable_address": 6466944544, + "methods": [ + 6457414464, + 6457191728, + 6457439440, + 6457426816, + 6457434672, + 6457191776, + 6457188752, + 6457418256, + 6457431568, + 6457444272, 6443742160, - 6457462688, - 6457190896, - 6457192720, - 6457437680, - 6457430480, - 6457429808 + 6457464880, + 6457193088, + 6457194912, + 6457439872, + 6457432672, + 6457432000 ], "bases": [ { @@ -544752,7 +544758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468822344, + "complete_object_locator": 6468826440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544761,25 +544767,25 @@ }, { "type_name": "google::protobuf::EnumValueDescriptorProto", - "vtable_address": 6466939472, - "methods": [ - 6457412336, - 6457189536, - 6457437264, - 6457424768, - 6457432544, - 6457189584, - 6457186560, - 6457416256, - 6457429392, - 6457442800, - 6443742160, - 6457462976, - 6457190896, - 6457192720, - 6457437696, - 6457430544, - 6457429824 + "vtable_address": 6466943536, + "methods": [ + 6457414528, + 6457191728, + 6457439456, + 6457426960, + 6457434736, + 6457191776, + 6457188752, + 6457418448, + 6457431584, + 6457444992, + 6443742160, + 6457465168, + 6457193088, + 6457194912, + 6457439888, + 6457432736, + 6457432016 ], "bases": [ { @@ -544813,7 +544819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468821392, + "complete_object_locator": 6468825488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544822,25 +544828,25 @@ }, { "type_name": "google::protobuf::EnumValueOptions", - "vtable_address": 6466940624, - "methods": [ - 6457412400, - 6457189536, - 6457437280, - 6457424880, - 6457432608, - 6457189584, - 6457186560, - 6457416592, - 6457429408, - 6457443376, - 6443742160, - 6457463248, - 6457190896, - 6457192720, - 6457437712, - 6457430608, - 6457429840 + "vtable_address": 6466944688, + "methods": [ + 6457414592, + 6457191728, + 6457439472, + 6457427072, + 6457434800, + 6457191776, + 6457188752, + 6457418784, + 6457431600, + 6457445568, + 6443742160, + 6457465440, + 6457193088, + 6457194912, + 6457439904, + 6457432800, + 6457432032 ], "bases": [ { @@ -544874,7 +544880,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468822480, + "complete_object_locator": 6468826576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544883,25 +544889,25 @@ }, { "type_name": "google::protobuf::ExtensionRangeOptions", - "vtable_address": 6466938752, - "methods": [ - 6457412464, - 6457189536, - 6457437296, - 6457425024, - 6457432672, - 6457189584, - 6457186560, - 6457416768, - 6457429424, - 6457443968, - 6443742160, - 6457463488, - 6457190896, - 6457192720, - 6457437728, - 6457430672, - 6457429856 + "vtable_address": 6466942816, + "methods": [ + 6457414656, + 6457191728, + 6457439488, + 6457427216, + 6457434864, + 6457191776, + 6457188752, + 6457418960, + 6457431616, + 6457446160, + 6443742160, + 6457465680, + 6457193088, + 6457194912, + 6457439920, + 6457432864, + 6457432048 ], "bases": [ { @@ -544935,7 +544941,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468822616, + "complete_object_locator": 6468826712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544944,10 +544950,10 @@ }, { "type_name": "google::protobuf::FatalException", - "vtable_address": 6466942392, + "vtable_address": 6466946456, "methods": [ - 6457475264, - 6457478992 + 6457477456, + 6457481184 ], "bases": [ { @@ -544967,7 +544973,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468826768, + "complete_object_locator": 6468830864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -544976,25 +544982,25 @@ }, { "type_name": "google::protobuf::FieldDescriptorProto", - "vtable_address": 6466938896, - "methods": [ - 6457412528, - 6457189536, - 6457437312, - 6457425152, - 6457432736, - 6457189584, - 6457186560, - 6457416928, - 6457429440, - 6457444496, + "vtable_address": 6466942960, + "methods": [ + 6457414720, + 6457191728, + 6457439504, + 6457427344, + 6457434928, + 6457191776, + 6457188752, + 6457419120, + 6457431632, + 6457446688, 6443742160, - 6457463680, - 6457190896, - 6457192720, - 6457437744, - 6457430736, - 6457429872 + 6457465872, + 6457193088, + 6457194912, + 6457439936, + 6457432928, + 6457432064 ], "bases": [ { @@ -545028,7 +545034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468820984, + "complete_object_locator": 6468825080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545037,25 +545043,25 @@ }, { "type_name": "google::protobuf::FieldOptions", - "vtable_address": 6466940192, + "vtable_address": 6466944256, "methods": [ - 6457412592, - 6457189536, - 6457437328, - 6457425424, - 6457432800, - 6457189584, - 6457186560, - 6457417424, - 6457429456, - 6457445952, + 6457414784, + 6457191728, + 6457439520, + 6457427616, + 6457434992, + 6457191776, + 6457188752, + 6457419616, + 6457431648, + 6457448144, 6443742160, - 6457464416, - 6457190896, - 6457192720, - 6457437760, - 6457430800, - 6457429888 + 6457466608, + 6457193088, + 6457194912, + 6457439952, + 6457432992, + 6457432080 ], "bases": [ { @@ -545089,7 +545095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468822072, + "complete_object_locator": 6468826168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545098,25 +545104,25 @@ }, { "type_name": "google::protobuf::FileDescriptorProto", - "vtable_address": 6466938176, + "vtable_address": 6466942240, "methods": [ - 6457412656, - 6457189536, - 6457437344, - 6457425648, - 6457432864, - 6457189584, - 6457186560, - 6457417808, - 6457429472, - 6457447488, - 6443742160, - 6457465088, - 6457190896, - 6457192720, - 6457437776, - 6457430864, - 6457429904 + 6457414848, + 6457191728, + 6457439536, + 6457427840, + 6457435056, + 6457191776, + 6457188752, + 6457420000, + 6457431664, + 6457449680, + 6443742160, + 6457467280, + 6457193088, + 6457194912, + 6457439968, + 6457433056, + 6457432096 ], "bases": [ { @@ -545150,7 +545156,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468821800, + "complete_object_locator": 6468825896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545159,25 +545165,25 @@ }, { "type_name": "google::protobuf::FileDescriptorSet", - "vtable_address": 6466938032, + "vtable_address": 6466942096, "methods": [ - 6457412720, - 6457189536, - 6457437360, - 6457426112, - 6457433040, - 6457189584, - 6457186560, - 6457418752, - 6457429488, - 6457449088, + 6457414912, + 6457191728, + 6457439552, + 6457428304, + 6457435232, + 6457191776, + 6457188752, + 6457420944, + 6457431680, + 6457451280, 6443742160, - 6457466064, - 6457190896, - 6457192720, - 6457437792, - 6457430928, - 6457429920 + 6457468256, + 6457193088, + 6457194912, + 6457439984, + 6457433120, + 6457432112 ], "bases": [ { @@ -545211,7 +545217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823704, + "complete_object_locator": 6468827800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545220,25 +545226,25 @@ }, { "type_name": "google::protobuf::FileOptions", - "vtable_address": 6466939904, - "methods": [ - 6457412784, - 6457189536, - 6457437376, - 6457426240, - 6457433264, - 6457189584, - 6457186560, - 6457418896, - 6457429504, - 6457449520, + "vtable_address": 6466943968, + "methods": [ + 6457414976, + 6457191728, + 6457439568, + 6457428432, + 6457435456, + 6457191776, + 6457188752, + 6457421088, + 6457431696, + 6457451712, 6443742160, - 6457466208, - 6457190896, - 6457192720, - 6457437808, - 6457430992, - 6457429936 + 6457468400, + 6457193088, + 6457194912, + 6457440000, + 6457433184, + 6457432128 ], "bases": [ { @@ -545272,7 +545278,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823024, + "complete_object_locator": 6468827120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545281,25 +545287,25 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo", - "vtable_address": 6466941776, + "vtable_address": 6466945840, "methods": [ - 6457412848, - 6457189536, - 6457437392, - 6457426784, - 6457433328, - 6457189584, - 6457186560, - 6457419808, - 6457429520, - 6457452080, + 6457415040, + 6457191728, + 6457439584, + 6457428976, + 6457435520, + 6457191776, + 6457188752, + 6457422000, + 6457431712, + 6457454272, 6443742160, - 6457467440, - 6457190896, - 6457192720, - 6457437824, - 6457431056, - 6457429952 + 6457469632, + 6457193088, + 6457194912, + 6457440016, + 6457433248, + 6457432144 ], "bases": [ { @@ -545333,7 +545339,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823840, + "complete_object_locator": 6468827936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545342,25 +545348,25 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo_Annotation", - "vtable_address": 6466941632, + "vtable_address": 6466945696, "methods": [ - 6457412912, - 6457189536, - 6457437408, - 6457426992, - 6457433344, - 6457189584, - 6457186560, - 6457420192, - 6457429536, - 6457452512, + 6457415104, + 6457191728, + 6457439600, + 6457429184, + 6457435536, + 6457191776, + 6457188752, + 6457422384, + 6457431728, + 6457454704, 6443742160, - 6457467584, - 6457190896, - 6457192720, - 6457437840, - 6457431120, - 6457429968 + 6457469776, + 6457193088, + 6457194912, + 6457440032, + 6457433312, + 6457432160 ], "bases": [ { @@ -545394,7 +545400,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823976, + "complete_object_locator": 6468828072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545403,15 +545409,15 @@ }, { "type_name": "google::protobuf::MessageFactory", - "vtable_address": 6466918296, + "vtable_address": 6466922360, "methods": [ - 6457185696, - 6463705588 + 6457187888, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468816968, + "complete_object_locator": 6468821064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545420,25 +545426,25 @@ }, { "type_name": "google::protobuf::MessageOptions", - "vtable_address": 6466940048, + "vtable_address": 6466944112, "methods": [ - 6457412976, - 6457189536, - 6457437424, - 6457427088, - 6457433360, - 6457189584, - 6457186560, - 6457420416, - 6457429552, - 6457453264, + 6457415168, + 6457191728, + 6457439616, + 6457429280, + 6457435552, + 6457191776, + 6457188752, + 6457422608, + 6457431744, + 6457455456, 6443742160, - 6457468144, - 6457190896, - 6457192720, - 6457437856, - 6457431184, - 6457429984 + 6457470336, + 6457193088, + 6457194912, + 6457440048, + 6457433376, + 6457432176 ], "bases": [ { @@ -545472,7 +545478,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468821936, + "complete_object_locator": 6468826032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545481,25 +545487,25 @@ }, { "type_name": "google::protobuf::MethodDescriptorProto", - "vtable_address": 6466939760, + "vtable_address": 6466943824, "methods": [ - 6457413040, - 6457189536, - 6457437440, - 6457427232, - 6457433424, - 6457189584, - 6457186560, - 6457420624, - 6457429568, - 6457454224, + 6457415232, + 6457191728, + 6457439632, + 6457429424, + 6457435616, + 6457191776, + 6457188752, + 6457422816, + 6457431760, + 6457456416, 6443742160, - 6457468512, - 6457190896, - 6457192720, - 6457437872, - 6457431248, - 6457430000 + 6457470704, + 6457193088, + 6457194912, + 6457440064, + 6457433440, + 6457432192 ], "bases": [ { @@ -545533,7 +545539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468821664, + "complete_object_locator": 6468825760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545542,25 +545548,25 @@ }, { "type_name": "google::protobuf::MethodOptions", - "vtable_address": 6466940912, - "methods": [ - 6457413104, - 6457189536, - 6457437456, - 6457427392, - 6457433488, - 6457189584, - 6457186560, - 6457421088, + "vtable_address": 6466944976, + "methods": [ + 6457415296, + 6457191728, + 6457439648, 6457429584, - 6457455040, + 6457435680, + 6457191776, + 6457188752, + 6457423280, + 6457431776, + 6457457232, 6443742160, - 6457468816, - 6457190896, - 6457192720, - 6457437888, - 6457431312, - 6457430016 + 6457471008, + 6457193088, + 6457194912, + 6457440080, + 6457433504, + 6457432208 ], "bases": [ { @@ -545594,7 +545600,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468822888, + "complete_object_locator": 6468826984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545603,25 +545609,25 @@ }, { "type_name": "google::protobuf::OneofDescriptorProto", - "vtable_address": 6466939040, + "vtable_address": 6466943104, "methods": [ - 6457413168, - 6457189536, - 6457437472, - 6457427536, - 6457433552, - 6457189584, - 6457186560, - 6457421312, - 6457429600, - 6457455824, + 6457415360, + 6457191728, + 6457439664, + 6457429728, + 6457435744, + 6457191776, + 6457188752, + 6457423504, + 6457431792, + 6457458016, 6443742160, - 6457469152, - 6457190896, - 6457192720, - 6457437904, - 6457431376, - 6457430032 + 6457471344, + 6457193088, + 6457194912, + 6457440096, + 6457433568, + 6457432224 ], "bases": [ { @@ -545655,7 +545661,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468821120, + "complete_object_locator": 6468825216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545664,25 +545670,25 @@ }, { "type_name": "google::protobuf::OneofOptions", - "vtable_address": 6466940336, + "vtable_address": 6466944400, "methods": [ - 6457413232, - 6457189536, - 6457437488, - 6457427632, - 6457433616, - 6457189584, - 6457186560, - 6457421616, - 6457429616, - 6457456288, + 6457415424, + 6457191728, + 6457439680, + 6457429824, + 6457435808, + 6457191776, + 6457188752, + 6457423808, + 6457431808, + 6457458480, 6443742160, - 6457469312, - 6457190896, - 6457192720, - 6457437920, - 6457431440, - 6457430048 + 6457471504, + 6457193088, + 6457194912, + 6457440112, + 6457433632, + 6457432240 ], "bases": [ { @@ -545716,7 +545722,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468822208, + "complete_object_locator": 6468826304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545725,25 +545731,25 @@ }, { "type_name": "google::protobuf::ServiceDescriptorProto", - "vtable_address": 6466939616, - "methods": [ - 6457413296, - 6457189536, - 6457437504, - 6457427760, - 6457433680, - 6457189584, - 6457186560, - 6457421776, - 6457429632, - 6457456816, - 6443742160, - 6457469504, - 6457190896, - 6457192720, - 6457437936, - 6457431504, - 6457430064 + "vtable_address": 6466943680, + "methods": [ + 6457415488, + 6457191728, + 6457439696, + 6457429952, + 6457435872, + 6457191776, + 6457188752, + 6457423968, + 6457431824, + 6457459008, + 6443742160, + 6457471696, + 6457193088, + 6457194912, + 6457440128, + 6457433696, + 6457432256 ], "bases": [ { @@ -545777,7 +545783,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468821528, + "complete_object_locator": 6468825624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545786,25 +545792,25 @@ }, { "type_name": "google::protobuf::ServiceOptions", - "vtable_address": 6466940768, - "methods": [ - 6457413360, - 6457189536, - 6457437520, - 6457427952, - 6457433856, - 6457189584, - 6457186560, - 6457422160, - 6457429648, - 6457457392, - 6443742160, - 6457469712, - 6457190896, - 6457192720, - 6457437952, - 6457431568, - 6457430080 + "vtable_address": 6466944832, + "methods": [ + 6457415552, + 6457191728, + 6457439712, + 6457430144, + 6457436048, + 6457191776, + 6457188752, + 6457424352, + 6457431840, + 6457459584, + 6443742160, + 6457471904, + 6457193088, + 6457194912, + 6457440144, + 6457433760, + 6457432272 ], "bases": [ { @@ -545838,7 +545844,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468822752, + "complete_object_locator": 6468826848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545847,25 +545853,25 @@ }, { "type_name": "google::protobuf::SourceCodeInfo", - "vtable_address": 6466941488, - "methods": [ - 6457413424, - 6457189536, - 6457437536, - 6457428096, - 6457433920, - 6457189584, - 6457186560, - 6457422336, - 6457429664, - 6457457984, - 6443742160, - 6457469952, - 6457190896, - 6457192720, - 6457437968, - 6457431632, - 6457430096 + "vtable_address": 6466945552, + "methods": [ + 6457415616, + 6457191728, + 6457439728, + 6457430288, + 6457436112, + 6457191776, + 6457188752, + 6457424528, + 6457431856, + 6457460176, + 6443742160, + 6457472144, + 6457193088, + 6457194912, + 6457440160, + 6457433824, + 6457432288 ], "bases": [ { @@ -545899,7 +545905,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823296, + "complete_object_locator": 6468827392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545908,25 +545914,25 @@ }, { "type_name": "google::protobuf::SourceCodeInfo_Location", - "vtable_address": 6466941344, - "methods": [ - 6457413488, - 6457189536, - 6457437552, - 6457428224, - 6457433936, - 6457189584, - 6457186560, - 6457422480, - 6457429680, - 6457458416, - 6443742160, - 6457470096, - 6457190896, - 6457192720, - 6457437984, - 6457431696, - 6457430112 + "vtable_address": 6466945408, + "methods": [ + 6457415680, + 6457191728, + 6457439744, + 6457430416, + 6457436128, + 6457191776, + 6457188752, + 6457424672, + 6457431872, + 6457460608, + 6443742160, + 6457472288, + 6457193088, + 6457194912, + 6457440176, + 6457433888, + 6457432304 ], "bases": [ { @@ -545960,7 +545966,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468824112, + "complete_object_locator": 6468828208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545969,18 +545975,18 @@ }, { "type_name": "google::protobuf::TextFormat::BaseTextGenerator", - "vtable_address": 6466920936, + "vtable_address": 6466925000, "methods": [ - 6457213632, - 6457239232, - 6457240384, - 6457238832, - 6463705588 + 6457215824, + 6457241424, + 6457242576, + 6457241024, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468819920, + "complete_object_locator": 6468824016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -545989,29 +545995,29 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 6466920984, - "methods": [ - 6457213728, - 6457243728, - 6457248608, - 6457249744, - 6457248848, - 6457249984, - 6457248256, - 6457243792, - 6457249344, - 6457243776, - 6457244144, - 6457245392, - 6457245360, - 6457249296, - 6457249088, - 6457249104 + "vtable_address": 6466925048, + "methods": [ + 6457215920, + 6457245920, + 6457250800, + 6457251936, + 6457251040, + 6457252176, + 6457250448, + 6457245984, + 6457251536, + 6457245968, + 6457246336, + 6457247584, + 6457247552, + 6457251488, + 6457251280, + 6457251296 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468820040, + "complete_object_locator": 6468824136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546020,18 +546026,18 @@ }, { "type_name": "google::protobuf::TextFormat::Finder", - "vtable_address": 6466921120, + "vtable_address": 6466925184, "methods": [ - 6457213776, - 6457238752, - 6457238800, - 6457238720, - 6457238816 + 6457215968, + 6457240944, + 6457240992, + 6457240912, + 6457241008 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468820080, + "complete_object_locator": 6468824176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546040,11 +546046,11 @@ }, { "type_name": "google::protobuf::TextFormat::Parser::ParserImpl::ParserErrorCollector", - "vtable_address": 6466922144, + "vtable_address": 6466926208, "methods": [ - 6457213824, - 6457214080, - 6457214096 + 6457216016, + 6457216272, + 6457216288 ], "bases": [ { @@ -546064,7 +546070,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468820456, + "complete_object_locator": 6468824552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546073,24 +546079,24 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::DebugStringFieldValuePrinter", - "vtable_address": 6466923560, - "methods": [ - 6457213680, - 6457243728, - 6457248608, - 6457249744, - 6457248848, - 6457249984, - 6457248256, - 6457243792, - 6457249344, - 6457243776, - 6457244144, - 6457245392, - 6457245360, - 6457249152, - 6457249088, - 6457249104 + "vtable_address": 6466927624, + "methods": [ + 6457215872, + 6457245920, + 6457250800, + 6457251936, + 6457251040, + 6457252176, + 6457250448, + 6457245984, + 6457251536, + 6457245968, + 6457246336, + 6457247584, + 6457247552, + 6457251344, + 6457251280, + 6457251296 ], "bases": [ { @@ -546110,7 +546116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468820328, + "complete_object_locator": 6468824424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546119,13 +546125,13 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::TextGenerator", - "vtable_address": 6466923472, + "vtable_address": 6466927536, "methods": [ - 6457213888, - 6457239248, - 6457240400, - 6457238848, - 6457241920 + 6457216080, + 6457241440, + 6457242592, + 6457241040, + 6457244112 ], "bases": [ { @@ -546145,7 +546151,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468820200, + "complete_object_locator": 6468824296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546154,25 +546160,25 @@ }, { "type_name": "google::protobuf::UninterpretedOption", - "vtable_address": 6466941200, - "methods": [ - 6457413552, - 6457189536, - 6457437568, - 6457428368, + "vtable_address": 6466945264, + "methods": [ + 6457415744, + 6457191728, + 6457439760, + 6457430560, + 6457436144, + 6457191776, + 6457188752, + 6457425024, + 6457431888, + 6457461360, + 6443742160, + 6457472992, + 6457193088, + 6457194912, + 6457440192, 6457433952, - 6457189584, - 6457186560, - 6457422832, - 6457429696, - 6457459168, - 6443742160, - 6457470800, - 6457190896, - 6457192720, - 6457438000, - 6457431760, - 6457430128 + 6457432320 ], "bases": [ { @@ -546206,7 +546212,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468823160, + "complete_object_locator": 6468827256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546215,25 +546221,25 @@ }, { "type_name": "google::protobuf::UninterpretedOption_NamePart", - "vtable_address": 6466941056, + "vtable_address": 6466945120, "methods": [ - 6457413616, - 6457189536, - 6457437584, - 6457428672, + 6457415808, + 6457191728, + 6457439776, + 6457430864, + 6457436208, + 6457191776, + 6457188752, + 6457425536, + 6457431904, + 6457462256, + 6443742160, + 6457473488, + 6457193088, + 6457194912, + 6457440208, 6457434016, - 6457189584, - 6457186560, - 6457423344, - 6457429712, - 6457460064, - 6443742160, - 6457471296, - 6457190896, - 6457192720, - 6457438016, - 6457431824, - 6457430144 + 6457432336 ], "bases": [ { @@ -546267,7 +546273,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468824248, + "complete_object_locator": 6468828344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546276,13 +546282,13 @@ }, { "type_name": "google::protobuf::ZeroCopyCodedInputStream", - "vtable_address": 6466924192, + "vtable_address": 6466928256, "methods": [ - 6457263488, - 6457265392, - 6457264160, - 6457267456, - 6457264176 + 6457265680, + 6457267584, + 6457266352, + 6457269648, + 6457266368 ], "bases": [ { @@ -546302,7 +546308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468820584, + "complete_object_locator": 6468824680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546311,11 +546317,11 @@ }, { "type_name": "google::protobuf::`anonymous namespace'::AggregateErrorCollector", - "vtable_address": 6466953728, + "vtable_address": 6466957792, "methods": [ - 6457543920, - 6457544240, - 6457557680 + 6457546112, + 6457546432, + 6457559872 ], "bases": [ { @@ -546335,7 +546341,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468827728, + "complete_object_locator": 6468831824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546344,10 +546350,10 @@ }, { "type_name": "google::protobuf::`anonymous namespace'::GeneratedMessageFactory", - "vtable_address": 6466919176, + "vtable_address": 6466923240, "methods": [ - 6457185552, - 6457188560 + 6457187744, + 6457190752 ], "bases": [ { @@ -546367,7 +546373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468817872, + "complete_object_locator": 6468821968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546376,31 +546382,31 @@ }, { "type_name": "google::protobuf::internal::DynamicMapField", - "vtable_address": 6466959400, - "methods": [ - 6457830816, - 6457833296, - 6457834144, - 6457831664, - 6457831936, - 6457834240, - 6457834432, - 6457834496, - 6457839568, - 6457847168, - 6457850416, - 6457830384, - 6457839120, - 6457843808, - 6457840256, - 6457833104, - 6457831648, - 6457830880, - 6457833040, - 6457832912, - 6457838048, - 6457838864, - 6457829600 + "vtable_address": 6466963464, + "methods": [ + 6457833008, + 6457835488, + 6457836336, + 6457833856, + 6457834128, + 6457836432, + 6457836624, + 6457836688, + 6457841760, + 6457849360, + 6457852608, + 6457832576, + 6457841312, + 6457846000, + 6457842448, + 6457835296, + 6457833840, + 6457833072, + 6457835232, + 6457835104, + 6457840240, + 6457841056, + 6457831792 ], "bases": [ { @@ -546434,7 +546440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468828120, + "complete_object_locator": 6468832216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546443,20 +546449,20 @@ }, { "type_name": "google::protobuf::internal::ImplicitWeakMessage", - "vtable_address": 6466918184, + "vtable_address": 6466922248, "methods": [ - 6457168032, - 6457168592, - 6457168912, - 6457168416, - 6457168896, - 6457264992, - 6457168368, - 6457168352, - 6457168576, - 6457814240, + 6457170224, + 6457170784, + 6457171104, + 6457170608, + 6457171088, + 6457267184, + 6457170560, + 6457170544, + 6457170768, + 6457816432, 6443742160, - 6457169440 + 6457171632 ], "bases": [ { @@ -546476,7 +546482,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468816840, + "complete_object_locator": 6468820936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546485,28 +546491,28 @@ }, { "type_name": "google::protobuf::internal::MapFieldAccessor", - "vtable_address": 6466918320, - "methods": [ - 6457190752, - 6457192688, - 6457188480, - 6457186720, - 6457192480, - 6457186272, - 6457191296, - 6457195296, - 6457194128, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457185648, - 6457191024, - 6457186928, - 6457186768 + "vtable_address": 6466922384, + "methods": [ + 6457192944, + 6457194880, + 6457190672, + 6457188912, + 6457194672, + 6457188464, + 6457193488, + 6457197488, + 6457196320, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457187840, + 6457193216, + 6457189120, + 6457188960 ], "bases": [ { @@ -546540,7 +546546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468817168, + "complete_object_locator": 6468821264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546549,32 +546555,32 @@ }, { "type_name": "google::protobuf::internal::MapFieldBase", - "vtable_address": 6466959240, - "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6457839648, - 6457847184, - 6463705588, - 6463705588, - 6457839552, - 6457845504, - 6457843536, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6466963304, + "methods": [ + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6457841840, + 6457849376, + 6463707780, + 6463707780, + 6457841744, + 6457847696, + 6457845728, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468828000, + "complete_object_locator": 6468832096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546583,26 +546589,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6466920312, - "methods": [ + "vtable_address": 6466924376, + "methods": [ + 6457192896, + 6457194832, + 6457190464, + 6457188864, + 6457194480, + 6457188224, + 6457193424, + 6457197408, + 6457196016, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, 6457190704, - 6457192640, - 6457188272, - 6457186672, - 6457192288, - 6457186032, - 6457191232, - 6457195216, - 6457193824, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457187040, - 6457186880 + 6457189232, + 6457189072 ], "bases": [ { @@ -546650,7 +546656,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468819440, + "complete_object_locator": 6468823536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546659,26 +546665,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6466920160, - "methods": [ - 6457190656, - 6457192592, - 6457188032, - 6457186624, - 6457192096, - 6457185888, - 6457191184, - 6457195168, - 6457193296, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457186992, - 6457186832 + "vtable_address": 6466924224, + "methods": [ + 6457192848, + 6457194784, + 6457190224, + 6457188816, + 6457194288, + 6457188080, + 6457193376, + 6457197360, + 6457195488, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457189184, + 6457189024 ], "bases": [ { @@ -546726,7 +546732,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468819200, + "complete_object_locator": 6468823296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546735,26 +546741,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6466920008, - "methods": [ - 6457190640, - 6457192576, - 6457187952, - 6457186608, - 6457192032, - 6457185840, - 6457191168, - 6457195152, - 6457193120, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457186976, - 6457186816 + "vtable_address": 6466924072, + "methods": [ + 6457192832, + 6457194768, + 6457190144, + 6457188800, + 6457194224, + 6457188032, + 6457193360, + 6457197344, + 6457195312, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457189168, + 6457189008 ], "bases": [ { @@ -546802,7 +546808,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468818960, + "complete_object_locator": 6468823056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546811,26 +546817,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6466919704, - "methods": [ - 6457190672, - 6457192608, - 6457188112, - 6457186640, - 6457192160, - 6457185936, - 6457191200, - 6457195184, - 6457193472, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457187008, - 6457186848 + "vtable_address": 6466923768, + "methods": [ + 6457192864, + 6457194800, + 6457190304, + 6457188832, + 6457194352, + 6457188128, + 6457193392, + 6457197376, + 6457195664, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457189200, + 6457189040 ], "bases": [ { @@ -546878,7 +546884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468818480, + "complete_object_locator": 6468822576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546887,26 +546893,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6466919400, - "methods": [ - 6457190608, - 6457192544, - 6457187792, - 6457186576, - 6457191904, - 6457185744, - 6457191136, - 6457195120, - 6457192768, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457186944, - 6457186784 + "vtable_address": 6466923464, + "methods": [ + 6457192800, + 6457194736, + 6457189984, + 6457188768, + 6457194096, + 6457187936, + 6457193328, + 6457197312, + 6457194960, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457189136, + 6457188976 ], "bases": [ { @@ -546954,7 +546960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468818000, + "complete_object_locator": 6468822096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -546963,26 +546969,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6466919856, - "methods": [ - 6457190688, - 6457192624, - 6457188192, - 6457186656, - 6457192224, - 6457185984, - 6457191216, - 6457195200, - 6457193648, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457187024, - 6457186864 + "vtable_address": 6466923920, + "methods": [ + 6457192880, + 6457194816, + 6457190384, + 6457188848, + 6457194416, + 6457188176, + 6457193408, + 6457197392, + 6457195840, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457189216, + 6457189056 ], "bases": [ { @@ -547030,7 +547036,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468818720, + "complete_object_locator": 6468822816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547039,26 +547045,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6466919552, - "methods": [ - 6457190624, - 6457192560, - 6457187872, - 6457186592, - 6457191968, - 6457185792, - 6457191152, + "vtable_address": 6466923616, + "methods": [ + 6457192816, + 6457194752, + 6457190064, + 6457188784, + 6457194160, + 6457187984, + 6457193344, + 6457197328, 6457195136, - 6457192944, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457186960, - 6457186800 + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457189152, + 6457188992 ], "bases": [ { @@ -547106,7 +547112,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468818240, + "complete_object_locator": 6468822336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547115,27 +547121,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldMessageAccessor", - "vtable_address": 6466918784, - "methods": [ - 6457190736, - 6457192672, - 6457188432, - 6457186704, - 6457192432, - 6457186176, - 6457191264, - 6457195248, - 6457194320, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457191040, - 6457187056, - 6457186896 + "vtable_address": 6466922848, + "methods": [ + 6457192928, + 6457194864, + 6457190624, + 6457188896, + 6457194624, + 6457188368, + 6457193456, + 6457197440, + 6457196512, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457193232, + 6457189248, + 6457189088 ], "bases": [ { @@ -547183,7 +547189,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468817632, + "complete_object_locator": 6468821728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547192,27 +547198,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldStringAccessor", - "vtable_address": 6466918624, - "methods": [ - 6457190720, - 6457192656, - 6457188352, - 6457186688, - 6457192352, - 6457186080, - 6457191248, - 6457195232, - 6457194496, - 6457186496, - 6457187600, - 6457187504, - 6457186480, - 6457187632, - 6457187584, - 6457188512, - 6457191056, - 6457187072, - 6457186912 + "vtable_address": 6466922688, + "methods": [ + 6457192912, + 6457194848, + 6457190544, + 6457188880, + 6457194544, + 6457188272, + 6457193440, + 6457197424, + 6457196688, + 6457188688, + 6457189792, + 6457189696, + 6457188672, + 6457189824, + 6457189776, + 6457190704, + 6457193248, + 6457189264, + 6457189104 ], "bases": [ { @@ -547260,7 +547266,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468817392, + "complete_object_locator": 6468821488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547269,24 +547275,24 @@ }, { "type_name": "google::protobuf::internal::ZeroFieldsBase", - "vtable_address": 6465077880, + "vtable_address": 6465081960, "methods": [ 6446820704, - 6457189536, - 6463705588, - 6457388944, - 6446258048, - 6457189584, - 6457186560, - 6457388928, - 6446258240, - 6457389072, - 6443742160, - 6457389392, - 6457190896, - 6457192720, - 6446259968, - 6463705588, + 6457191728, + 6463707780, + 6457391136, + 6446258112, + 6457191776, + 6457188752, + 6457391120, + 6446258624, + 6457391264, + 6443742160, + 6457391584, + 6457193088, + 6457194912, + 6446260352, + 6463707780, 6445594896 ], "bases": [ @@ -547321,7 +547327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468361000, + "complete_object_locator": 6468365096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547330,13 +547336,13 @@ }, { "type_name": "google::protobuf::io::ArrayInputStream", - "vtable_address": 6466960376, + "vtable_address": 6466964440, "methods": [ - 6457851216, - 6457852320, - 6457851312, - 6457852656, - 6457852144 + 6457853408, + 6457854512, + 6457853504, + 6457854848, + 6457854336 ], "bases": [ { @@ -547356,7 +547362,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468828344, + "complete_object_locator": 6468832440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547365,16 +547371,16 @@ }, { "type_name": "google::protobuf::io::ErrorCollector", - "vtable_address": 6466909208, + "vtable_address": 6466913272, "methods": [ - 6457069232, - 6463705588, - 6457070128 + 6457071424, + 6463707780, + 6457072320 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468815624, + "complete_object_locator": 6468819720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547383,14 +547389,14 @@ }, { "type_name": "google::protobuf::io::StringOutputStream", - "vtable_address": 6466960424, + "vtable_address": 6466964488, "methods": [ - 6457851264, - 6457852400, - 6457851680, - 6457852160, - 6457851024, - 6457214112 + 6457853456, + 6457854592, + 6457853872, + 6457854352, + 6457853216, + 6457216304 ], "bases": [ { @@ -547410,7 +547416,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468828472, + "complete_object_locator": 6468832568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547419,18 +547425,18 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 6466920832, + "vtable_address": 6466924896, "methods": [ - 6457213984, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6457216176, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468819680, + "complete_object_locator": 6468823776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547439,19 +547445,19 @@ }, { "type_name": "google::protobuf::io::ZeroCopyOutputStream", - "vtable_address": 6466920880, + "vtable_address": 6466924944, "methods": [ - 6457214032, - 6463705588, - 6463705588, - 6463705588, - 6457851024, - 6457214112 + 6457216224, + 6463707780, + 6463707780, + 6463707780, + 6457853216, + 6457216304 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468819800, + "complete_object_locator": 6468823896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547460,12 +547466,12 @@ }, { "type_name": "pDNameNode", - "vtable_address": 6467894400, + "vtable_address": 6467898496, "methods": [ - 6463760000, - 6463760408, - 6463745512, - 6463752856 + 6463762192, + 6463762600, + 6463747704, + 6463755048 ], "bases": [ { @@ -547485,7 +547491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468997560, + "complete_object_locator": 6469001656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547494,12 +547500,12 @@ }, { "type_name": "pairNode", - "vtable_address": 6467894480, + "vtable_address": 6467898576, "methods": [ - 6463760040, - 6463760412, - 6463745556, - 6463752904 + 6463762232, + 6463762604, + 6463747748, + 6463755096 ], "bases": [ { @@ -547519,7 +547525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468997816, + "complete_object_locator": 6469001912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547528,35 +547534,35 @@ }, { "type_name": "panorama::CAnimatedImageStrip", - "vtable_address": 6467690568, + "vtable_address": 6467694664, "methods": [ 6443876544, - 6461535472, - 6462286800, - 6462286816, - 6462287056, - 6461546688, - 6461559344, - 6461772800, - 6461773984, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6462288992, + 6462289008, + 6462289248, + 6461548880, + 6461561536, + 6461774992, + 6461776176, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6462285040, - 6461768208, - 6462285200, + 6461537648, + 6461547232, + 6462287232, + 6461770400, + 6462287392, 6443844992, 6443848064, 6443844976, @@ -547565,16 +547571,16 @@ 6443845024, 6443848560, 6443848128, - 6461768192, + 6461770384, 6443913856, 6443821360, - 6461774848, - 6462287712, - 6461505456, - 6461505088, - 6461526000, + 6461777040, + 6462289904, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -547584,34 +547590,34 @@ 6443847696, 6443847680, 6443848160, - 6461774608, - 6461775008, + 6461776800, + 6461777200, 6443879584, 6443817680, 6443848032, - 6461546704, - 6462286784, - 6462284864, + 6461548896, + 6462288976, + 6462287056, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461771120, - 6452709488, - 6461770784, + 6461773312, + 6452711104, + 6461772976, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461772032, + 6461774224, 6443798832, 6443858048 ], @@ -547661,7 +547667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981848, + "complete_object_locator": 6468985944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547670,39 +547676,39 @@ }, { "type_name": "panorama::CAsyncDataPanel", - "vtable_address": 6467701304, + "vtable_address": 6467705400, "methods": [ 6443876544, - 6461535472, - 6462337648, - 6462337664, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462339840, + 6462339856, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462335936, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462338128, 6443844992, 6443848064, 6443844976, - 6462337696, + 6462339888, 6443848176, 6443845024, 6443848560, @@ -547711,12 +547717,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -547728,32 +547734,32 @@ 6443848160, 6443914752, 6443914800, - 6462337792, + 6462339984, 6443817680, 6443848032, - 6461546704, - 6462337632, - 6462335808, + 6461548896, + 6462339824, + 6462338000, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -547789,7 +547795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983800, + "complete_object_locator": 6468987896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -547798,40 +547804,40 @@ }, { "type_name": "panorama::CBaseScrollBar", - "vtable_address": 6467707072, + "vtable_address": 6467711168, "methods": [ 6443876544, - 6461535472, - 6462372320, - 6461526176, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462374512, + 6461528368, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461545472, + 6461547664, 6443845024, 6443848560, 6443848128, @@ -547839,12 +547845,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -547859,33 +547865,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462372288, - 6462370768, + 6461548896, + 6462374480, + 6462372960, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6463705588, - 6463705588 + 6463707780, + 6463707780 ], "bases": [ { @@ -547933,7 +547939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984792, + "complete_object_locator": 6468988888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -547942,31 +547948,31 @@ }, { "type_name": "panorama::CBaseScrollBar", - "vtable_address": 6467707768, - "methods": [ - 6461559408, - 6461504320, - 6461535344, - 6461554784, - 6461525744, - 6461525728, - 6461525712, - 6461554992, - 6461525776, - 6461554976, - 6461516064, - 6461525760, - 6463705588, - 6461503808, - 6461525952, - 6461525888, - 6461525840, - 6462374192, - 6462373808, - 6462373072, - 6461549712, - 6461551472, - 6461516800 + "vtable_address": 6467711864, + "methods": [ + 6461561600, + 6461506512, + 6461537536, + 6461556976, + 6461527936, + 6461527920, + 6461527904, + 6461557184, + 6461527968, + 6461557168, + 6461518256, + 6461527952, + 6463707780, + 6461506000, + 6461528144, + 6461528080, + 6461528032, + 6462376384, + 6462376000, + 6462375264, + 6461551904, + 6461553664, + 6461518992 ], "bases": [ { @@ -548014,7 +548020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984832, + "complete_object_locator": 6468988928, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -548023,35 +548029,35 @@ }, { "type_name": "panorama::CButton", - "vtable_address": 6467574528, + "vtable_address": 6467578624, "methods": [ 6443876544, - 6461535472, - 6461638672, - 6461641328, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461640864, + 6461643520, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -548064,12 +548070,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -548084,29 +548090,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461638592, - 6461632480, + 6461548896, + 6461640784, + 6461634672, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461641504, - 6461635952, + 6461517408, + 6461643696, + 6461638144, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461641488, + 6461643680, 6443798832, 6443858048 ], @@ -548142,7 +548148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468955760, + "complete_object_locator": 6468959856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -548151,53 +548157,53 @@ }, { "type_name": "panorama::CCarousel", - "vtable_address": 6467668832, + "vtable_address": 6467672928, "methods": [ 6443876544, - 6461535472, - 6462139136, - 6462139424, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462141328, + 6462141616, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462142720, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6462144336, - 6461537344, + 6462144912, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6462146528, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462128688, - 6462142464, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462130880, + 6462144656, 6443848064, - 6462142208, - 6462142496, - 6462147568, + 6462144400, + 6462144688, + 6462149760, 6443845024, 6443848560, - 6462147264, - 6462128560, - 6462142480, + 6462149456, + 6462130752, + 6462144672, 6443821360, - 6462147840, - 6462150336, - 6461505456, - 6461505088, - 6461526000, + 6462150032, + 6462152528, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -548212,29 +548218,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462138384, - 6462123600, + 6461548896, + 6462140576, + 6462125792, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6462145632, - 6462146288, + 6461549856, + 6461550032, + 6461545888, + 6461541488, 6462147824, - 6462147808, + 6462148480, + 6462150016, + 6462150000, 6443802176, 6443866800, - 6462133808, - 6461531136, - 6461504352, + 6462136000, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -548270,7 +548276,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978952, + "complete_object_locator": 6468983048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -548279,35 +548285,35 @@ }, { "type_name": "panorama::CCarouselNav", - "vtable_address": 6467669960, + "vtable_address": 6467674056, "methods": [ 6443876544, - 6461535472, - 6462154768, - 6462154784, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462156960, + 6462156976, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462152784, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462154976, 6443844992, 6443848064, 6443844976, @@ -548320,12 +548326,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -548340,29 +548346,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462154752, - 6462152464, + 6461548896, + 6462156944, + 6462154656, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -548398,7 +548404,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468979088, + "complete_object_locator": 6468983184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -548407,35 +548413,35 @@ }, { "type_name": "panorama::CCarouselNavButton", - "vtable_address": 6467670912, + "vtable_address": 6467675008, "methods": [ 6443876544, - 6461535472, - 6462160000, - 6462160016, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462162192, + 6462162208, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462158608, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462160800, 6443844992, 6443848064, 6443844976, @@ -548448,12 +548454,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -548468,29 +548474,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462159984, - 6462158352, + 6461548896, + 6462162176, + 6462160544, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461641504, - 6461635952, + 6461517408, + 6461643696, + 6461638144, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461641488, + 6461643680, 6443798832, 6443858048 ], @@ -548540,7 +548546,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468979224, + "complete_object_locator": 6468983320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -548549,35 +548555,35 @@ }, { "type_name": "panorama::CCircularProgressBar", - "vtable_address": 6467700280, + "vtable_address": 6467704376, "methods": [ 6443876544, - 6461535472, - 6462333856, - 6462334544, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462336048, + 6462336736, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462333264, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462335456, 6443844992, 6443848064, 6443844976, @@ -548590,12 +548596,12 @@ 6443913856, 6443821360, 6443848384, - 6462335616, - 6461505456, - 6461505088, - 6461526000, + 6462337808, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -548610,29 +548616,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462333840, - 6462333200, + 6461548896, + 6462336032, + 6462335392, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -548668,7 +548674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983664, + "complete_object_locator": 6468987760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -548677,35 +548683,35 @@ }, { "type_name": "panorama::CConsole", - "vtable_address": 6467702280, + "vtable_address": 6467706376, "methods": [ 6443876544, - 6461535472, - 6462341840, - 6462341856, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462344032, + 6462344048, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462342736, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462344928, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -548718,12 +548724,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -548735,32 +548741,32 @@ 6443848160, 6443914752, 6443914800, - 6462343744, + 6462345936, 6443817680, 6443848032, - 6461546704, - 6462341808, - 6462339504, + 6461548896, + 6462344000, + 6462341696, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -548796,7 +548802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983936, + "complete_object_locator": 6468988032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -548805,53 +548811,53 @@ }, { "type_name": "panorama::CConsoleInput", - "vtable_address": 6467703536, + "vtable_address": 6467707632, "methods": [ 6443876544, - 6461535472, - 6462350304, - 6462350336, - 6461742896, - 6461546688, - 6461559344, - 6461733936, - 6461738000, - 6462350784, - 6461737872, - 6462351440, - 6461536000, - 6461536016, - 6461535504, - 6461740464, - 6461741472, - 6461739712, - 6461741312, - 6461538896, - 6461741536, + 6461537664, + 6462352496, + 6462352528, + 6461745088, + 6461548880, + 6461561536, + 6461736128, + 6461740192, + 6462352976, + 6461740064, + 6462353632, + 6461538192, + 6461538208, + 6461537696, + 6461742656, + 6461743664, + 6461741904, + 6461743504, + 6461541088, + 6461743728, 6443802144, - 6461535456, - 6461545040, - 6461710816, - 6461503872, - 6461711024, + 6461537648, + 6461547232, + 6461713008, + 6461506064, + 6461713216, 6443844992, 6443848064, 6443844976, - 6461734560, - 6461742224, + 6461736752, + 6461744416, 6443845024, 6443848560, 6443848128, - 6461710992, + 6461713184, 6443913856, - 6461719392, + 6461721584, 6443848384, - 6461754144, - 6461505456, - 6461505088, - 6461526000, + 6461756336, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -548866,35 +548872,35 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462350256, - 6462347504, + 6461548896, + 6462352448, + 6462349696, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, - 6461711008, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, + 6461713200, 6443866800, - 6461719104, - 6461531136, - 6461504352, + 6461721296, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461750400, - 6461748432, - 6462352288, - 6462353280 + 6461752592, + 6461750624, + 6462354480, + 6462355472 ], "bases": [ { @@ -548984,7 +548990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984072, + "complete_object_locator": 6468988168, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -548993,22 +548999,22 @@ }, { "type_name": "panorama::CConsoleInput", - "vtable_address": 6467704248, - "methods": [ - 6462347472, - 6462351088, - 6461737880, - 6462351812, - 6461712176, - 6461719088, - 6461719072, - 6461746624, - 6461746240, - 6461730320, - 6461730336, - 6461718992, - 6461742656, - 6461749824 + "vtable_address": 6467708344, + "methods": [ + 6462349664, + 6462353280, + 6461740072, + 6462354004, + 6461714368, + 6461721280, + 6461721264, + 6461748816, + 6461748432, + 6461732512, + 6461732528, + 6461721184, + 6461744848, + 6461752016 ], "bases": [ { @@ -549098,7 +549104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984240, + "complete_object_locator": 6468988336, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -549107,37 +549113,37 @@ }, { "type_name": "panorama::CConsoleInput", - "vtable_address": 6467704368, - "methods": [ - 6461725072, - 6461729232, + "vtable_address": 6467708464, + "methods": [ + 6461727264, + 6461731424, + 6461727552, + 6461726784, + 6461725136, + 6461723424, + 6461724384, + 6461730112, + 6461729872, + 6461731152, + 6461726544, + 6461726304, + 6461727024, + 6461728320, + 6461731440, + 6461731696, + 6461727280, + 6461725696, + 6461727616, + 6461725952, + 6461729088, 6461725360, - 6461724592, - 6461722944, - 6461721232, - 6461722192, - 6461727920, - 6461727680, - 6461728960, - 6461724352, + 6461728048, 6461724112, - 6461724832, - 6461726128, - 6461729248, - 6461729504, - 6461725088, - 6461723504, - 6461725424, - 6461723760, - 6461726896, - 6461723168, - 6461725856, - 6461721920, - 6461729744, - 6461726672, - 6461727120, - 6461720432, - 6461727424 + 6461731936, + 6461728864, + 6461729312, + 6461722624, + 6461729616 ], "bases": [ { @@ -549227,7 +549233,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984280, + "complete_object_locator": 6468988376, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -549236,53 +549242,53 @@ }, { "type_name": "panorama::CConsoleText", - "vtable_address": 6467705808, + "vtable_address": 6467709904, "methods": [ 6443876544, - 6461535472, - 6462358112, - 6462358992, - 6461546672, - 6462361648, - 6461559344, - 6462359856, + 6461537664, + 6462360304, + 6462361184, + 6461548864, + 6462363840, + 6461561536, + 6462362048, 6443847712, - 6462359968, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462360128, - 6462360464, - 6461536080, - 6461536928, - 6461538896, - 6462361312, + 6462362160, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462362320, + 6462362656, + 6461538272, + 6461539120, + 6461541088, + 6462363504, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6462361440, + 6462363632, 6443845024, 6443848560, 6443848128, 6443802160, 6443913856, 6443821360, - 6462361520, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6462363712, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -549297,29 +549303,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462358096, - 6462354224, + 6461548896, + 6462360288, + 6462356416, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -549355,7 +549361,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984576, + "complete_object_locator": 6468988672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -549364,35 +549370,35 @@ }, { "type_name": "panorama::CContextMenu", - "vtable_address": 6467590256, + "vtable_address": 6467594352, "methods": [ 6443876544, - 6461535472, - 6461757520, - 6453013264, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461759712, + 6453014880, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461759392, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461761584, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461758336, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461760528, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -549405,12 +549411,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -549425,32 +549431,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461757488, - 6461755968, + 6461548896, + 6461759680, + 6461758160, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461757104 + 6461759296 ], "bases": [ { @@ -549484,7 +549490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959192, + "complete_object_locator": 6468963288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -549493,35 +549499,35 @@ }, { "type_name": "panorama::CCycleButton", - "vtable_address": 6467577280, + "vtable_address": 6467581376, "methods": [ 6443876544, - 6461535472, - 6461638688, - 6461641360, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461640880, + 6461643552, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461641552, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461643744, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461633408, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461635600, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -549534,12 +549540,12 @@ 6443913856, 6443821360, 6443848384, - 6461646368, - 6461505456, - 6461505088, - 6461526000, + 6461648560, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -549551,36 +549557,36 @@ 6443848160, 6443914752, 6443914800, - 6461646848, + 6461649040, 6443817680, 6443848032, - 6461546704, - 6461638608, - 6461632544, + 6461548896, + 6461640800, + 6461634736, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461641504, - 6461635952, + 6461517408, + 6461643696, + 6461638144, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461641488, + 6461643680, 6443798832, 6443858048, - 6461638128, - 6461642064 + 6461640320, + 6461644256 ], "bases": [ { @@ -549628,7 +549634,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956328, + "complete_object_locator": 6468960424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -549637,35 +549643,35 @@ }, { "type_name": "panorama::CDebugAutoComplete", - "vtable_address": 6467675304, + "vtable_address": 6467679400, "methods": [ 6443876544, - 6461535472, - 6462193552, - 6462193568, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462195744, + 6462195760, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462194048, - 6462193600, - 6462193952, - 6462193856, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462196240, + 6462195792, + 6462196144, + 6462196048, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -549678,12 +549684,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -549698,29 +549704,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462193536, - 6462193136, + 6461548896, + 6462195728, + 6462195328, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -549756,7 +549762,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468979768, + "complete_object_locator": 6468983864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -549765,35 +549771,35 @@ }, { "type_name": "panorama::CDebugIndividualStyle", - "vtable_address": 6467682408, + "vtable_address": 6467686504, "methods": [ 6443876544, - 6461535472, - 6462241040, - 6462242320, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462243232, + 6462244512, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -549806,12 +549812,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -549826,29 +549832,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462240944, - 6462219824, + 6461548896, + 6462243136, + 6462222016, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -549884,7 +549890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980448, + "complete_object_locator": 6468984544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -549893,35 +549899,35 @@ }, { "type_name": "panorama::CDebugInheritedStylesHeader", - "vtable_address": 6467683768, + "vtable_address": 6467687864, "methods": [ 6443876544, - 6461535472, - 6462241056, - 6462242352, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462243248, + 6462244544, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -549934,12 +549940,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -549954,29 +549960,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462240960, - 6462219888, + 6461548896, + 6462243152, + 6462222080, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550012,7 +550018,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981048, + "complete_object_locator": 6468985144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550021,35 +550027,35 @@ }, { "type_name": "panorama::CDebugLayout", - "vtable_address": 6467671792, + "vtable_address": 6467675888, "methods": [ 6443876544, - 6461535472, - 6462183680, - 6462184080, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462185872, + 6462186272, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462188688, - 6462187584, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462190880, + 6462189776, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550062,12 +550068,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550082,29 +550088,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462183664, - 6462163680, + 6461548896, + 6462185856, + 6462165872, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550140,7 +550146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468979368, + "complete_object_locator": 6468983464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550149,35 +550155,35 @@ }, { "type_name": "panorama::CDebugPanel", - "vtable_address": 6467676176, + "vtable_address": 6467680272, "methods": [ 6443876544, - 6461535472, - 6462211584, - 6462211648, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462213776, + 6462213840, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550190,12 +550196,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550210,29 +550216,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462211520, - 6462199600, + 6461548896, + 6462213712, + 6462201792, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550268,7 +550274,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468979904, + "complete_object_locator": 6468984000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550277,35 +550283,35 @@ }, { "type_name": "panorama::CDebugPanelAttributes", - "vtable_address": 6467678216, + "vtable_address": 6467682312, "methods": [ 6443876544, - 6461535472, - 6462211600, - 6462211680, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462213792, + 6462213872, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550318,12 +550324,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550338,29 +550344,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462211536, - 6462199664, + 6461548896, + 6462213728, + 6462201856, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550396,7 +550402,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980312, + "complete_object_locator": 6468984408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550405,35 +550411,35 @@ }, { "type_name": "panorama::CDebugPanelComputed", - "vtable_address": 6467676856, + "vtable_address": 6467680952, "methods": [ 6443876544, - 6461535472, - 6462211616, - 6462211712, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462213808, + 6462213904, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550446,12 +550452,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550466,29 +550472,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462211552, - 6462199840, + 6461548896, + 6462213744, + 6462202032, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550524,7 +550530,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980040, + "complete_object_locator": 6468984136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550533,35 +550539,35 @@ }, { "type_name": "panorama::CDebugPanelDialogVariables", - "vtable_address": 6467677536, + "vtable_address": 6467681632, "methods": [ 6443876544, - 6461535472, - 6462211632, - 6462211744, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462213824, + 6462213936, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550574,12 +550580,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550594,29 +550600,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462211568, - 6462199920, + 6461548896, + 6462213760, + 6462202112, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550652,7 +550658,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980176, + "complete_object_locator": 6468984272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550661,35 +550667,35 @@ }, { "type_name": "panorama::CDebugPanelParents", - "vtable_address": 6467674576, + "vtable_address": 6467678672, "methods": [ 6443876544, - 6461535472, - 6462192752, - 6462192768, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462194944, + 6462194960, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550702,12 +550708,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550722,29 +550728,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462192736, - 6462191248, + 6461548896, + 6462194928, + 6462193440, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550780,7 +550786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468979632, + "complete_object_locator": 6468983728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550789,35 +550795,35 @@ }, { "type_name": "panorama::CDebugPanelStyle", - "vtable_address": 6467680928, + "vtable_address": 6467685024, "methods": [ 6443876544, - 6461535472, - 6462241072, - 6462242384, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462243264, + 6462244576, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550830,12 +550836,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550850,29 +550856,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462240976, - 6462219952, + 6461548896, + 6462243168, + 6462222144, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -550908,7 +550914,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980912, + "complete_object_locator": 6468985008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -550917,35 +550923,35 @@ }, { "type_name": "panorama::CDebugStyleAnimation", - "vtable_address": 6467683088, + "vtable_address": 6467687184, "methods": [ 6443876544, - 6461535472, - 6462241088, - 6462242416, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462243280, + 6462244608, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -550958,12 +550964,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -550978,29 +550984,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462240992, - 6462220016, + 6461548896, + 6462243184, + 6462222208, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -551036,7 +551042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980584, + "complete_object_locator": 6468984680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -551045,35 +551051,35 @@ }, { "type_name": "panorama::CDebugStyleBlock", - "vtable_address": 6467681608, + "vtable_address": 6467685704, "methods": [ 6443876544, - 6461535472, - 6462241104, - 6462242448, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462243296, + 6462244640, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -551086,12 +551092,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -551106,29 +551112,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462241008, - 6462220096, + 6461548896, + 6462243200, + 6462222288, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -551192,7 +551198,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980720, + "complete_object_locator": 6468984816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -551201,22 +551207,22 @@ }, { "type_name": "panorama::CDebugStyleBlock", - "vtable_address": 6467682288, + "vtable_address": 6467686384, "methods": [ - 6462248944, - 6452727168, - 6452727152, - 6452727232, - 6452875520, - 6452727200, - 6452873728, - 6452727184, - 6452727216, - 6452727248, - 6452727264, - 6452727104, - 6452727120, - 6452727088 + 6462251136, + 6452728784, + 6452728768, + 6452728848, + 6452877136, + 6452728816, + 6452875344, + 6452728800, + 6452728832, + 6452728864, + 6452728880, + 6452728720, + 6452728736, + 6452728704 ], "bases": [ { @@ -551278,7 +551284,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468980872, + "complete_object_locator": 6468984968, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -551287,35 +551293,35 @@ }, { "type_name": "panorama::CDebugStyleSeparator", - "vtable_address": 6467684448, + "vtable_address": 6467688544, "methods": [ 6443876544, - 6461535472, - 6462241120, - 6462242480, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462243312, + 6462244672, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -551328,12 +551334,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -551348,29 +551354,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462241024, - 6462220368, + 6461548896, + 6462243216, + 6462222560, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -551406,7 +551412,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981184, + "complete_object_locator": 6468985280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -551415,35 +551421,35 @@ }, { "type_name": "panorama::CDelayLoadList", - "vtable_address": 6467600120, + "vtable_address": 6467604216, "methods": [ 6443876544, - 6461535472, - 6461839376, - 6452708224, - 6461546672, - 6461842400, - 6461845584, - 6461839872, - 6461841104, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6461841568, + 6452709840, + 6461548864, + 6461844592, + 6461847776, + 6461842064, + 6461843296, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461834944, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461837136, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -551456,12 +551462,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -551471,34 +551477,34 @@ 6443847696, 6443847680, 6443848160, - 6461842304, - 6461842320, + 6461844496, + 6461844512, 6443879584, 6443817680, 6443848032, - 6461546704, - 6461839360, - 6461834800, + 6461548896, + 6461841552, + 6461836992, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -551534,7 +551540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960536, + "complete_object_locator": 6468964632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -551543,35 +551549,35 @@ }, { "type_name": "panorama::CDelayLoadPanel", - "vtable_address": 6467600888, + "vtable_address": 6467604984, "methods": [ 6443876544, - 6461535472, - 6461847648, - 6452708256, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461849840, + 6452709872, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -551584,12 +551590,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -551604,29 +551610,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461847632, - 6461846688, + 6461548896, + 6461849824, + 6461848880, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -551662,7 +551668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960784, + "complete_object_locator": 6468964880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -551671,35 +551677,35 @@ }, { "type_name": "panorama::CDragPanel", - "vtable_address": 6467697760, + "vtable_address": 6467701856, "methods": [ 6443876544, - 6461535472, - 6462320128, - 6462320144, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462322320, + 6462322336, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462320176, - 6462320208, - 6461536080, - 6461536928, - 6461538896, - 6462320224, - 6462319936, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462322368, + 6462322400, + 6461538272, + 6461539120, + 6461541088, + 6462322416, + 6462322128, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -551712,12 +551718,12 @@ 6443913856, 6443821360, 6443848384, - 6462320816, - 6461505456, - 6461505088, - 6461526000, + 6462323008, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -551732,29 +551738,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462320112, - 6462319872, + 6461548896, + 6462322304, + 6462322064, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -551790,7 +551796,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983136, + "complete_object_locator": 6468987232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -551799,35 +551805,35 @@ }, { "type_name": "panorama::CDragZoom", - "vtable_address": 6467699504, + "vtable_address": 6467703600, "methods": [ 6443876544, - 6461535472, - 6462326608, - 6462326624, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462328800, + 6462328816, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462326656, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462326832, - 6462327040, - 6462326768, - 6461536928, - 6462327808, - 6462327408, - 6462323744, - 6461535456, - 6462328192, - 6461503728, - 6462323760, - 6461504016, + 6462328848, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462329024, + 6462329232, + 6462328960, + 6461539120, + 6462330000, + 6462329600, + 6462325936, + 6461537648, + 6462330384, + 6461505920, + 6462325952, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -551838,14 +551844,14 @@ 6443848128, 6443802160, 6443913856, - 6462326544, + 6462328736, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -551860,29 +551866,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462326592, - 6462323088, + 6461548896, + 6462328784, + 6462325280, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -551918,7 +551924,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983528, + "complete_object_locator": 6468987624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -551927,40 +551933,40 @@ }, { "type_name": "panorama::CDropDown", - "vtable_address": 6467602536, + "vtable_address": 6467606632, "methods": [ 6443876544, - 6461535472, - 6461865552, - 6453901344, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461867744, + 6453903104, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461867616, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461868080, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461869808, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461870272, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461867184, - 6461545040, - 6461862864, - 6461503872, - 6461862960, + 6461869376, + 6461547232, + 6461865056, + 6461506064, + 6461865152, 6443844992, 6443848064, 6443844976, - 6461867280, - 6461868832, + 6461869472, + 6461871024, 6443845024, 6443848560, 6443848128, @@ -551968,12 +551974,12 @@ 6443913856, 6443821360, 6443848384, - 6461870608, - 6461505456, - 6461505088, - 6461526000, + 6461872800, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -551987,33 +551993,33 @@ 6443914800, 6443879584, 6443817680, - 6461868208, - 6461546704, - 6461865520, - 6461862080, + 6461870400, + 6461548896, + 6461867712, + 6461864272, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461868384 + 6461870576 ], "bases": [ { @@ -552047,7 +552053,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468961080, + "complete_object_locator": 6468965176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -552056,35 +552062,35 @@ }, { "type_name": "panorama::CDropDownMenu", - "vtable_address": 6467601848, + "vtable_address": 6467605944, "methods": [ 6443876544, - 6461535472, - 6461865568, - 6461866512, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461867760, + 6461868704, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461867696, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461869888, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -552097,12 +552103,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -552117,32 +552123,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461865536, - 6461862240, + 6461548896, + 6461867728, + 6461864432, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461868512 + 6461870704 ], "bases": [ { @@ -552176,7 +552182,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468961120, + "complete_object_locator": 6468965216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -552185,40 +552191,40 @@ }, { "type_name": "panorama::CEdgeScrollBar", - "vtable_address": 6467692944, + "vtable_address": 6467697040, "methods": [ 6443876544, - 6461535472, - 6462301600, - 6462301632, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462303792, + 6462303824, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461545472, + 6461547664, 6443845024, 6443848560, 6443848128, @@ -552226,12 +552232,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -552246,33 +552252,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462301568, - 6462297664, + 6461548896, + 6462303760, + 6462299856, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462304048, - 6462304192 + 6462306240, + 6462306384 ], "bases": [ { @@ -552334,7 +552340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468982128, + "complete_object_locator": 6468986224, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -552343,31 +552349,31 @@ }, { "type_name": "panorama::CEdgeScrollBar", - "vtable_address": 6467693640, - "methods": [ - 6461559408, - 6461504320, - 6461535344, - 6461554784, - 6461525744, - 6461525728, - 6461525712, - 6461554992, - 6461525776, - 6462303696, - 6461516064, - 6461525760, - 6462301424, - 6461503808, - 6461525952, - 6461525888, - 6461525840, - 6462374192, - 6462373808, - 6462373072, - 6461549712, - 6461551472, - 6461516800 + "vtable_address": 6467697736, + "methods": [ + 6461561600, + 6461506512, + 6461537536, + 6461556976, + 6461527936, + 6461527920, + 6461527904, + 6461557184, + 6461527968, + 6462305888, + 6461518256, + 6461527952, + 6462303616, + 6461506000, + 6461528144, + 6461528080, + 6461528032, + 6462376384, + 6462376000, + 6462375264, + 6461551904, + 6461553664, + 6461518992 ], "bases": [ { @@ -552429,7 +552435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468982280, + "complete_object_locator": 6468986376, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -552438,35 +552444,35 @@ }, { "type_name": "panorama::CEdgeScroller", - "vtable_address": 6467692264, + "vtable_address": 6467696360, "methods": [ 6443876544, - 6461535472, - 6462301616, - 6462301664, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462303808, + 6462303856, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462298080, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462300272, 6443844992, 6443848064, 6443844976, @@ -552479,12 +552485,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6462298624, - 6462298432, - 6461526000, + 6461557888, + 6462300816, + 6462300624, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -552499,29 +552505,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462301584, - 6462298016, + 6461548896, + 6462303776, + 6462300208, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6462301152, - 6461531136, - 6461504352, + 6462303344, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -552557,7 +552563,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468982320, + "complete_object_locator": 6468986416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -552566,35 +552572,35 @@ }, { "type_name": "panorama::CFileOpenDialog", - "vtable_address": 6467658120, + "vtable_address": 6467662216, "methods": [ 6443876544, - 6461535472, - 6462039904, - 6462039936, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462042096, + 6462042128, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -552607,12 +552613,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -552627,29 +552633,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462039872, - 6462030752, + 6461548896, + 6462042064, + 6462032944, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -552685,7 +552691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468973256, + "complete_object_locator": 6468977352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -552694,35 +552700,35 @@ }, { "type_name": "panorama::CFileOpenDialogEntry", - "vtable_address": 6467658800, + "vtable_address": 6467662896, "methods": [ 6443876544, - 6461535472, - 6462039920, - 6462039968, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462042112, + 6462042160, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6462045968, - 6462045744, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6462048160, + 6462047936, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -552735,12 +552741,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -552755,29 +552761,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462039888, - 6462030816, + 6461548896, + 6462042080, + 6462033008, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461641504, - 6461635952, + 6461517408, + 6461643696, + 6461638144, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461641488, + 6461643680, 6443798832, 6443858048 ], @@ -552827,7 +552833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468973112, + "complete_object_locator": 6468977208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -552836,35 +552842,35 @@ }, { "type_name": "panorama::CFramePanel", - "vtable_address": 6466448112, + "vtable_address": 6466452272, "methods": [ 6443876544, - 6461535472, - 6453006592, - 6453013296, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6453008208, + 6453014912, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6452973104, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6452974720, 6443844992, 6443848064, 6443844976, @@ -552877,12 +552883,12 @@ 6443913856, 6443821360, 6443848384, - 6453062256, - 6461505456, - 6461505088, - 6461526000, + 6453063872, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -552897,29 +552903,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6453006288, - 6452957856, + 6461548896, + 6453007904, + 6452959472, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -552955,7 +552961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468699280, + "complete_object_locator": 6468703376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -552964,53 +552970,53 @@ }, { "type_name": "panorama::CHTML", - "vtable_address": 6467664000, + "vtable_address": 6467668096, "methods": [ 6443876544, - 6461535472, - 6462077264, - 6462077680, - 6462100944, - 6461546688, - 6461559344, - 6462080112, - 6462092816, - 6462090704, - 6462092592, - 6462092224, - 6462082048, - 6462083376, - 6462081264, - 6462095200, - 6462097088, - 6462095072, - 6461536928, - 6462098272, - 6462097520, + 6461537664, + 6462079456, + 6462079872, + 6462103136, + 6461548880, + 6461561536, + 6462082304, + 6462095008, + 6462092896, + 6462094784, + 6462094416, + 6462084240, + 6462085568, + 6462083456, + 6462097392, + 6462099280, + 6462097264, + 6461539120, + 6462100464, + 6462099712, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462073072, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462075264, 6443844992, 6443848064, 6443844976, 6443847568, - 6462100416, + 6462102608, 6443845024, 6443848560, 6443848128, - 6462073040, + 6462075232, 6443913856, 6443821360, 6443848384, - 6462108576, - 6461505456, - 6461505088, - 6461526000, + 6462110768, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -553025,47 +553031,47 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462077200, - 6462072688, + 6461548896, + 6462079392, + 6462074880, 6443817520, - 6462107200, - 6462107312, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, - 6462073056, + 6462109392, + 6462109504, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, + 6462075248, 6443866800, - 6462076528, - 6461531136, - 6461504352, + 6462078720, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462100624, - 6462081248, - 6462099872, - 6462108704, - 6462077328, - 6462098736, - 6462098752, - 6462108080, - 6462095056, - 6462098832, - 6462098816, - 6462080512, - 6462099072, - 6462100640, - 6462090192, - 6462098768 + 6462102816, + 6462083440, + 6462102064, + 6462110896, + 6462079520, + 6462100928, + 6462100944, + 6462110272, + 6462097248, + 6462101024, + 6462101008, + 6462082704, + 6462101264, + 6462102832, + 6462092384, + 6462100960 ], "bases": [ { @@ -553113,7 +553119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974680, + "complete_object_locator": 6468978776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -553122,22 +553128,22 @@ }, { "type_name": "panorama::CHTML", - "vtable_address": 6467664808, - "methods": [ - 6462070836, - 6462092200, - 6462092800, - 6462092568, - 6462073744, - 6462076512, - 6462076464, - 6462103712, - 6462103696, - 6462077840, - 6462077904, - 6462076400, - 6462100608, - 6462105296 + "vtable_address": 6467668904, + "methods": [ + 6462073028, + 6462094392, + 6462094992, + 6462094760, + 6462075936, + 6462078704, + 6462078656, + 6462105904, + 6462105888, + 6462080032, + 6462080096, + 6462078592, + 6462102800, + 6462107488 ], "bases": [ { @@ -553185,7 +553191,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974824, + "complete_object_locator": 6468978920, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -553194,40 +553200,40 @@ }, { "type_name": "panorama::CHTML::CHTMLHorizontalScrollBar", - "vtable_address": 6467662136, + "vtable_address": 6467666232, "methods": [ 6443876544, - 6461535472, - 6462077280, - 6462077712, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462079472, + 6462079904, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536336, - 6461537072, - 6461536080, - 6461536928, - 6461538896, - 6461538496, - 6461503744, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538528, + 6461539264, + 6461538272, + 6461539120, + 6461541088, + 6461540688, + 6461505936, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461545472, + 6461547664, 6443845024, 6443848560, 6443848128, @@ -553235,12 +553241,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -553255,36 +553261,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462077216, - 6462072752, + 6461548896, + 6462079408, + 6462074944, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462108720, - 6462109184, - 6462076368, - 6462076480, - 6462108448 + 6462110912, + 6462111376, + 6462078560, + 6462078672, + 6462110640 ], "bases": [ { @@ -553360,7 +553366,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975064, + "complete_object_locator": 6468979160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -553369,31 +553375,31 @@ }, { "type_name": "panorama::CHTML::CHTMLHorizontalScrollBar", - "vtable_address": 6467662856, - "methods": [ - 6461559408, - 6461504320, - 6461535344, - 6461554784, - 6461525744, - 6461525728, - 6461525712, - 6461554992, - 6461525776, - 6461554976, - 6461516064, - 6461525760, - 6462076992, - 6461503808, - 6461525952, - 6461525888, - 6461525840, - 6462374192, - 6462373808, - 6462373072, - 6461549712, - 6461551472, - 6461516800 + "vtable_address": 6467666952, + "methods": [ + 6461561600, + 6461506512, + 6461537536, + 6461556976, + 6461527936, + 6461527920, + 6461527904, + 6461557184, + 6461527968, + 6461557168, + 6461518256, + 6461527952, + 6462079184, + 6461506000, + 6461528144, + 6461528080, + 6461528032, + 6462376384, + 6462376000, + 6462375264, + 6461551904, + 6461553664, + 6461518992 ], "bases": [ { @@ -553469,7 +553475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975224, + "complete_object_locator": 6468979320, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -553478,40 +553484,40 @@ }, { "type_name": "panorama::CHTML::CHTMLVerticalScrollBar", - "vtable_address": 6467661224, + "vtable_address": 6467665320, "methods": [ 6443876544, - 6461535472, - 6462077312, - 6462077792, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462079504, + 6462079984, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536336, - 6461537072, - 6461536080, - 6461536928, - 6461538896, - 6461538496, - 6461503744, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538528, + 6461539264, + 6461538272, + 6461539120, + 6461541088, + 6461540688, + 6461505936, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461545472, + 6461547664, 6443845024, 6443848560, 6443848128, @@ -553519,12 +553525,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -553539,36 +553545,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462077248, - 6462072896, + 6461548896, + 6462079440, + 6462075088, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462108736, - 6462109520, - 6462076384, - 6462076496, - 6462108464 + 6462110928, + 6462111712, + 6462078576, + 6462078688, + 6462110656 ], "bases": [ { @@ -553644,7 +553650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974864, + "complete_object_locator": 6468978960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -553653,31 +553659,31 @@ }, { "type_name": "panorama::CHTML::CHTMLVerticalScrollBar", - "vtable_address": 6467661944, - "methods": [ - 6461559408, - 6461504320, - 6461535344, - 6461554784, - 6461525744, - 6461525728, - 6461525712, - 6461554992, - 6461525776, - 6461554976, - 6461516064, - 6461525760, - 6462077056, - 6461503808, - 6461525952, - 6461525888, - 6461525840, - 6462374192, - 6462373808, - 6462373072, - 6461549712, - 6461551472, - 6461516800 + "vtable_address": 6467666040, + "methods": [ + 6461561600, + 6461506512, + 6461537536, + 6461556976, + 6461527936, + 6461527920, + 6461527904, + 6461557184, + 6461527968, + 6461557168, + 6461518256, + 6461527952, + 6462079248, + 6461506000, + 6461528144, + 6461528080, + 6461528032, + 6462376384, + 6462376000, + 6462375264, + 6461551904, + 6461553664, + 6461518992 ], "bases": [ { @@ -553753,7 +553759,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468975024, + "complete_object_locator": 6468979120, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -553762,35 +553768,35 @@ }, { "type_name": "panorama::CHTMLSimpleNavigationWrapper", - "vtable_address": 6467664928, + "vtable_address": 6467669024, "methods": [ 6443876544, - 6461535472, - 6462077296, - 6462077760, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462079488, + 6462079952, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6462082128, - 6461536016, - 6462081504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6462098544, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6462084320, + 6461538208, + 6462083696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6462100736, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462073600, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462075792, 6443844992, 6443848064, 6443844976, @@ -553803,12 +553809,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -553823,29 +553829,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462077232, - 6462072832, + 6461548896, + 6462079424, + 6462075024, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -553881,7 +553887,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978504, + "complete_object_locator": 6468982600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -553890,40 +553896,40 @@ }, { "type_name": "panorama::CHorizontalScrollBar", - "vtable_address": 6467567816, + "vtable_address": 6467571912, "methods": [ 6443876544, - 6461535472, - 6461516880, - 6461526208, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461519072, + 6461528400, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536336, - 6461537072, - 6461536080, - 6461536928, - 6461538896, - 6461538496, - 6461503744, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538528, + 6461539264, + 6461538272, + 6461539120, + 6461541088, + 6461540688, + 6461505936, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461545472, + 6461547664, 6443845024, 6443848560, 6443848128, @@ -553931,12 +553937,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -553951,36 +553957,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461516816, - 6461503040, + 6461548896, + 6461519008, + 6461505232, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462374592, - 6462374784, - 6461514256, - 6461515008, - 6461549856 + 6462376784, + 6462376976, + 6461516448, + 6461517200, + 6461552048 ], "bases": [ { @@ -554056,7 +554062,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468955480, + "complete_object_locator": 6468959576, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -554065,31 +554071,31 @@ }, { "type_name": "panorama::CHorizontalScrollBar", - "vtable_address": 6467568536, - "methods": [ - 6461559408, - 6461504320, - 6461535344, - 6461554784, - 6461525744, - 6461525728, - 6461525712, - 6461554992, - 6461525776, - 6461554976, - 6461516064, - 6461525760, - 6461515360, - 6461503808, - 6461525952, - 6461525888, - 6461525840, - 6462374192, - 6462373808, - 6462373072, - 6461549712, - 6461551472, - 6461516800 + "vtable_address": 6467572632, + "methods": [ + 6461561600, + 6461506512, + 6461537536, + 6461556976, + 6461527936, + 6461527920, + 6461527904, + 6461557184, + 6461527968, + 6461557168, + 6461518256, + 6461527952, + 6461517552, + 6461506000, + 6461528144, + 6461528080, + 6461528032, + 6462376384, + 6462376000, + 6462375264, + 6461551904, + 6461553664, + 6461518992 ], "bases": [ { @@ -554165,7 +554171,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468955640, + "complete_object_locator": 6468959736, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -554174,35 +554180,35 @@ }, { "type_name": "panorama::CHorizontalSplitter", - "vtable_address": 6467712816, + "vtable_address": 6467716912, "methods": [ 6443876544, - 6461535472, - 6462399856, - 6462399888, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462402048, + 6462402080, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462401408, - 6462401440, - 6461536080, - 6461536928, - 6461538896, - 6462401472, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462403600, + 6462403632, + 6461538272, + 6461539120, + 6461541088, + 6462403664, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -554213,14 +554219,14 @@ 6443848128, 6443802160, 6443913856, - 6462399792, + 6462401984, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -554235,29 +554241,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462399824, - 6462398240, + 6461548896, + 6462402016, + 6462400432, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -554293,7 +554299,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985408, + "complete_object_locator": 6468989504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -554302,35 +554308,35 @@ }, { "type_name": "panorama::CImagePanel", - "vtable_address": 6467592192, + "vtable_address": 6467596288, "methods": [ 6443876544, - 6461535472, - 6461772016, - 6452708288, - 6461775152, - 6461546688, - 6461559344, - 6461772800, - 6461773984, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6461774208, + 6452709904, + 6461777344, + 6461548880, + 6461561536, + 6461774992, + 6461776176, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461768208, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461770400, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -554339,16 +554345,16 @@ 6443845024, 6443848560, 6443848128, - 6461768192, + 6461770384, 6443913856, 6443821360, - 6461774848, - 6461780432, - 6461505456, - 6461505088, - 6461526000, + 6461777040, + 6461782624, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -554358,34 +554364,34 @@ 6443847696, 6443847680, 6443848160, - 6461774608, - 6461775008, + 6461776800, + 6461777200, 6443879584, 6443817680, 6443848032, - 6461546704, - 6461772000, - 6461767536, + 6461548896, + 6461774192, + 6461769728, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461771120, - 6452709488, - 6461770784, + 6461773312, + 6452711104, + 6461772976, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461772032, + 6461774224, 6443798832, 6443858048 ], @@ -554421,7 +554427,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959376, + "complete_object_locator": 6468963472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -554430,35 +554436,35 @@ }, { "type_name": "panorama::CInputForwardingPanel", - "vtable_address": 6467695648, + "vtable_address": 6467699744, "methods": [ 6443876544, - 6461535472, - 6462312512, - 6462312528, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462314704, + 6462314720, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6462313104, - 6462313360, - 6462313232, - 6462312848, - 6462312976, - 6462312720, - 6462313616, - 6462313872, - 6462313488, - 6462313744, - 6462314144, - 6462314000, + 6462315296, + 6462315552, + 6462315424, + 6462315040, + 6462315168, + 6462314912, + 6462315808, + 6462316064, + 6462315680, + 6462315936, + 6462316336, + 6462316192, 6443802144, - 6462312560, - 6461545040, - 6461503728, - 6461503872, - 6462311968, + 6462314752, + 6461547232, + 6461505920, + 6461506064, + 6462314160, 6443844992, 6443848064, 6443844976, @@ -554471,12 +554477,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -554491,29 +554497,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462312496, - 6462311888, + 6461548896, + 6462314688, + 6462314080, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -554549,7 +554555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468982728, + "complete_object_locator": 6468986824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -554558,53 +554564,53 @@ }, { "type_name": "panorama::CLabel", - "vtable_address": 6467572960, + "vtable_address": 6467577056, "methods": [ 6443876544, - 6461535472, - 6461576080, - 6453731008, - 6461589456, - 6461546688, - 6461559344, - 6461581616, - 6461583056, - 6461582832, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461586176, - 6461586656, - 6461536080, - 6461536928, - 6461538896, - 6461588016, + 6461537664, + 6461578272, + 6453732768, + 6461591648, + 6461548880, + 6461561536, + 6461583808, + 6461585248, + 6461585024, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461588368, + 6461588848, + 6461538272, + 6461539120, + 6461541088, + 6461590208, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461570288, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461572480, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461588832, + 6461591024, 6443845024, 6443848560, 6443848128, - 6453668512, + 6453670272, 6443913856, 6443821360, - 6461589440, - 6461614768, - 6461505456, - 6461505088, - 6461526000, + 6461591632, + 6461616960, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -554619,36 +554625,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461576064, - 6461568832, - 6461574656, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461548896, + 6461578256, + 6461571024, + 6461576848, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461575456, - 6453738320, - 6461571264, + 6461577648, + 6453740080, + 6461573456, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461580032, + 6461582224, 6443798832, 6443858048, - 6461613424, - 6461570144, - 6453750880, - 6453668352, - 6453782496 + 6461615616, + 6461572336, + 6453752640, + 6453670112, + 6453784256 ], "bases": [ { @@ -554696,7 +554702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468955680, + "complete_object_locator": 6468959776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -554705,9 +554711,9 @@ }, { "type_name": "panorama::CLabel", - "vtable_address": 6467573680, + "vtable_address": 6467577776, "methods": [ - 6461571840 + 6461574032 ], "bases": [ { @@ -554755,7 +554761,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468955720, + "complete_object_locator": 6468959816, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -554764,53 +554770,53 @@ }, { "type_name": "panorama::CLegacyConsoleInput", - "vtable_address": 6467704608, + "vtable_address": 6467708704, "methods": [ 6443876544, - 6461535472, - 6462350320, - 6462350368, - 6461742896, - 6461546688, - 6461559344, - 6461733936, - 6461738000, - 6462351104, - 6461737872, - 6462351824, - 6461536000, - 6461536016, - 6461535504, - 6461740464, - 6461741472, - 6461739712, - 6461741312, - 6461538896, - 6461741536, + 6461537664, + 6462352512, + 6462352560, + 6461745088, + 6461548880, + 6461561536, + 6461736128, + 6461740192, + 6462353296, + 6461740064, + 6462354016, + 6461538192, + 6461538208, + 6461537696, + 6461742656, + 6461743664, + 6461741904, + 6461743504, + 6461541088, + 6461743728, 6443802144, - 6461535456, - 6461545040, - 6461710816, - 6461503872, - 6461711024, + 6461537648, + 6461547232, + 6461713008, + 6461506064, + 6461713216, 6443844992, 6443848064, 6443844976, - 6461734560, - 6461742224, + 6461736752, + 6461744416, 6443845024, 6443848560, 6443848128, - 6461710992, + 6461713184, 6443913856, - 6461719392, + 6461721584, 6443848384, - 6461754144, - 6461505456, - 6461505088, - 6461526000, + 6461756336, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -554825,35 +554831,35 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462350272, - 6462347568, + 6461548896, + 6462352464, + 6462349760, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, - 6461711008, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, + 6461713200, 6443866800, - 6461719104, - 6461531136, - 6461504352, + 6461721296, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461750400, - 6462352272, - 6462353072, - 6462353552 + 6461752592, + 6462354464, + 6462355264, + 6462355744 ], "bases": [ { @@ -554957,7 +554963,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984320, + "complete_object_locator": 6468988416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -554966,22 +554972,22 @@ }, { "type_name": "panorama::CLegacyConsoleInput", - "vtable_address": 6467705320, - "methods": [ - 6462347484, - 6462351416, - 6461737880, - 6462352020, - 6461712176, - 6461719088, - 6461719072, - 6461746624, - 6461746240, - 6461730320, - 6461730336, - 6461718992, - 6461742656, - 6461749824 + "vtable_address": 6467709416, + "methods": [ + 6462349676, + 6462353608, + 6461740072, + 6462354212, + 6461714368, + 6461721280, + 6461721264, + 6461748816, + 6461748432, + 6461732512, + 6461732528, + 6461721184, + 6461744848, + 6461752016 ], "bases": [ { @@ -555085,7 +555091,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984496, + "complete_object_locator": 6468988592, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -555094,37 +555100,37 @@ }, { "type_name": "panorama::CLegacyConsoleInput", - "vtable_address": 6467705440, - "methods": [ - 6461725072, - 6461729232, + "vtable_address": 6467709536, + "methods": [ + 6461727264, + 6461731424, + 6461727552, + 6461726784, + 6461725136, + 6461723424, + 6461724384, + 6461730112, + 6461729872, + 6461731152, + 6461726544, + 6461726304, + 6461727024, + 6461728320, + 6461731440, + 6461731696, + 6461727280, + 6461725696, + 6461727616, + 6461725952, + 6461729088, 6461725360, - 6461724592, - 6461722944, - 6461721232, - 6461722192, - 6461727920, - 6461727680, - 6461728960, - 6461724352, + 6461728048, 6461724112, - 6461724832, - 6461726128, - 6461729248, - 6461729504, - 6461725088, - 6461723504, - 6461725424, - 6461723760, - 6461726896, - 6461723168, - 6461725856, - 6461721920, - 6461729744, - 6461726672, - 6461727120, - 6461720432, - 6461727424 + 6461731936, + 6461728864, + 6461729312, + 6461722624, + 6461729616 ], "bases": [ { @@ -555228,7 +555234,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984536, + "complete_object_locator": 6468988632, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -555237,35 +555243,35 @@ }, { "type_name": "panorama::CMouseScrollRegion", - "vtable_address": 6467710944, + "vtable_address": 6467715040, "methods": [ 6443876544, - 6461535472, - 6462397664, - 6462397680, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462399856, + 6462399872, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462398016, - 6462398176, - 6462397936, - 6462398096, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462400208, + 6462400368, + 6462400128, + 6462400288, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -555278,12 +555284,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -555298,29 +555304,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462397648, - 6462396800, + 6461548896, + 6462399840, + 6462398992, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -555356,7 +555362,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985136, + "complete_object_locator": 6468989232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -555365,35 +555371,35 @@ }, { "type_name": "panorama::CMovieCaptions", - "vtable_address": 6467691320, + "vtable_address": 6467695416, "methods": [ 6443876544, - 6461535472, - 6462291136, - 6462291808, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462293328, + 6462294000, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462290160, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462292352, 6443844992, 6443848064, 6443844976, @@ -555406,12 +555412,12 @@ 6443913856, 6443821360, 6443848384, - 6462292480, - 6461505456, - 6461505088, - 6461526000, + 6462294672, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -555423,32 +555429,32 @@ 6443848160, 6443914752, 6443914800, - 6462292560, + 6462294752, 6443817680, 6443848032, - 6461546704, - 6462291120, - 6462289008, + 6461548896, + 6462293312, + 6462291200, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -555484,7 +555490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981992, + "complete_object_locator": 6468986088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -555493,35 +555499,35 @@ }, { "type_name": "panorama::CMovieControlPopupBase", - "vtable_address": 6467594504, + "vtable_address": 6467598600, "methods": [ 6443876544, - 6461535472, - 6456629776, + 6461537664, + 6456631552, 6443827424, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461818672, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461820864, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -555534,12 +555540,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -555554,29 +555560,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629280, - 6461797984, + 6461548896, + 6456631056, + 6461800176, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -555612,7 +555618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959544, + "complete_object_locator": 6468963640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -555621,35 +555627,35 @@ }, { "type_name": "panorama::CMovieDebug", - "vtable_address": 6467597224, + "vtable_address": 6467601320, "methods": [ 6443876544, - 6461535472, - 6461812192, - 6461812512, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461814384, + 6461814704, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -555662,12 +555668,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -555682,29 +555688,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461812112, - 6461798048, + 6461548896, + 6461814304, + 6461800240, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -555740,7 +555746,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960008, + "complete_object_locator": 6468964104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -555749,35 +555755,35 @@ }, { "type_name": "panorama::CMoviePanel", - "vtable_address": 6467596544, + "vtable_address": 6467600640, "methods": [ 6443876544, - 6461535472, - 6461812208, - 6453013360, - 6461820704, - 6461546688, - 6461559344, - 6461817344, - 6461819408, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461537664, + 6461814400, + 6453014976, + 6461822896, + 6461548880, + 6461561536, + 6461819536, + 6461821600, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461799360, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461801552, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -555790,12 +555796,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -555805,34 +555811,34 @@ 6443847696, 6443847680, 6443848160, - 6461820192, - 6461820464, + 6461822384, + 6461822656, 6443879584, 6443817680, 6443848032, - 6461546704, - 6461812128, - 6461798160, + 6461548896, + 6461814320, + 6461800352, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -555868,7 +555874,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959968, + "complete_object_locator": 6468964064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -555877,35 +555883,35 @@ }, { "type_name": "panorama::CMoviePlayer", - "vtable_address": 6467597904, + "vtable_address": 6467602000, "methods": [ 6443876544, - 6461535472, - 6461812224, - 6461812544, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461814416, + 6461814736, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461818496, - 6461817824, - 6461536016, - 6461535504, - 6461819488, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461820688, + 6461820016, + 6461538208, + 6461537696, + 6461821680, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461800896, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461803088, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -555918,12 +555924,12 @@ 6443913856, 6443821360, 6443848384, - 6461827728, - 6461505456, - 6461505088, - 6461526000, - 6461818112, - 6461521616, + 6461829920, + 6461507648, + 6461507280, + 6461528192, + 6461820304, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -555933,34 +555939,34 @@ 6443847696, 6443847680, 6443848160, - 6461820448, + 6461822640, 6443914800, 6443879584, 6443817680, 6443848032, - 6461546704, - 6461812144, - 6461798224, + 6461548896, + 6461814336, + 6461800416, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -555996,7 +556002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960144, + "complete_object_locator": 6468964240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -556005,35 +556011,35 @@ }, { "type_name": "panorama::CMovieVideoQualityPopup", - "vtable_address": 6467595864, + "vtable_address": 6467599960, "methods": [ 6443876544, - 6461535472, - 6461812240, - 6461812576, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461814432, + 6461814768, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461818672, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461820864, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -556046,12 +556052,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -556066,29 +556072,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461812160, - 6461798544, + 6461548896, + 6461814352, + 6461800736, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -556138,7 +556144,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959824, + "complete_object_locator": 6468963920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -556147,35 +556153,35 @@ }, { "type_name": "panorama::CNumberEntry", - "vtable_address": 6467694848, + "vtable_address": 6467698944, "methods": [ 6443876544, - 6461535472, - 6462308720, - 6462309408, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462310912, + 6462311600, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6462310064, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6462312256, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6462307360, - 6461503872, - 6462307520, + 6461537648, + 6461547232, + 6462309552, + 6461506064, + 6462309712, 6443844992, 6443848064, 6443844976, @@ -556188,12 +556194,12 @@ 6443913856, 6443821360, 6443848384, - 6462311296, - 6461505456, - 6461505088, - 6461526000, + 6462313488, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -556208,29 +556214,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462308704, - 6462307232, + 6461548896, + 6462310896, + 6462309424, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -556266,7 +556272,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468982592, + "complete_object_locator": 6468986688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -556275,35 +556281,35 @@ }, { "type_name": "panorama::CPanel2D", - "vtable_address": 6467566216, + "vtable_address": 6467570312, "methods": [ 6443876544, - 6461535472, - 6456629776, + 6461537664, + 6456631552, 6443827424, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -556316,12 +556322,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -556336,29 +556342,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629280, - 6461503120, + 6461548896, + 6456631056, + 6461505312, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -556380,7 +556386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954648, + "complete_object_locator": 6468958744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -556389,33 +556395,33 @@ }, { "type_name": "panorama::CPanoramaVideoPlayer", - "vtable_address": 6467604024, - "methods": [ - 6461874592, - 6461875760, - 6461875264, - 6461879152, - 6461879696, - 6461879104, - 6461879616, - 6461879600, - 6461879664, + "vtable_address": 6467608120, + "methods": [ + 6461876784, + 6461877952, + 6461877456, + 6461881344, + 6461881888, + 6461881296, + 6461881808, + 6461881792, + 6461881856, + 6461882288, + 6461880224, + 6461880656, + 6461880208, + 6461880064, + 6461880032, 6461880096, - 6461878032, - 6461878464, - 6461878016, - 6461877872, - 6461877840, - 6461877904, - 6461878176, - 6461878144, - 6461878160, - 6461875232, - 6461877280, - 6461877856, - 6461878192, - 6461875248, - 6461879680 + 6461880368, + 6461880336, + 6461880352, + 6461877424, + 6461879472, + 6461880048, + 6461880384, + 6461877440, + 6461881872 ], "bases": [ { @@ -556463,7 +556469,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468962000, + "complete_object_locator": 6468966096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -556472,35 +556478,35 @@ }, { "type_name": "panorama::CProgressBar", - "vtable_address": 6467578192, + "vtable_address": 6467582288, "methods": [ 6443876544, - 6461535472, - 6461650416, - 6461651776, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461652608, + 6461653968, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461651808, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461654000, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461649680, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461651872, 6443844992, 6443848064, 6443844976, @@ -556513,12 +556519,12 @@ 6443913856, 6443821360, 6443848384, - 6461653424, - 6461505456, - 6461505088, - 6461526000, + 6461655616, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -556530,32 +556536,32 @@ 6443848160, 6443914752, 6443914800, - 6461654608, + 6461656800, 6443817680, 6443848032, - 6461546704, - 6461650400, - 6461649504, + 6461548896, + 6461652592, + 6461651696, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -556591,7 +556597,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956472, + "complete_object_locator": 6468960568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -556600,35 +556606,35 @@ }, { "type_name": "panorama::CProgressBarWithMiddle", - "vtable_address": 6467688536, + "vtable_address": 6467692632, "methods": [ 6443876544, - 6461535472, - 6462260944, - 6462261632, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462263136, + 6462263824, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462261664, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462263856, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462260240, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462262432, 6443844992, 6443848064, 6443844976, @@ -556641,12 +556647,12 @@ 6443913856, 6443821360, 6443848384, - 6462262544, - 6461505456, - 6461505088, - 6461526000, + 6462264736, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -556661,29 +556667,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462260928, - 6462260176, + 6461548896, + 6462263120, + 6462262368, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -556719,7 +556725,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981448, + "complete_object_locator": 6468985544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -556728,35 +556734,35 @@ }, { "type_name": "panorama::CRadioButton", - "vtable_address": 6467576600, + "vtable_address": 6467580696, "methods": [ 6443876544, - 6461535472, - 6461638704, - 6461641392, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461640896, + 6461643584, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461634000, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461636192, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -556769,12 +556775,12 @@ 6443913856, 6443821360, 6443848384, - 6461646576, - 6461505456, - 6461505088, - 6461526000, + 6461648768, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -556789,29 +556795,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461638624, - 6461632720, + 6461548896, + 6461640816, + 6461634912, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, - 6461645632, - 6461515216, - 6461641504, - 6461635952, + 6461647824, + 6461517408, + 6461643696, + 6461638144, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461641488, + 6461643680, 6443798832, 6443858048 ], @@ -556861,7 +556867,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956184, + "complete_object_locator": 6468960280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -556870,35 +556876,35 @@ }, { "type_name": "panorama::CRangeSlider", - "vtable_address": 6467689384, + "vtable_address": 6467693480, "methods": [ 6443876544, - 6461535472, - 6462273616, - 6462274944, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462275808, + 6462277136, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462275600, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462276640, - 6462276864, - 6461536080, - 6461536928, - 6461538896, - 6462277168, + 6462277792, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462278832, + 6462279056, + 6461538272, + 6461539120, + 6461541088, + 6462279360, 6443802144, - 6461535456, - 6461545040, - 6462272256, - 6461503872, - 6462272416, + 6461537648, + 6461547232, + 6462274448, + 6461506064, + 6462274608, 6443844992, 6443848064, 6443844976, @@ -556911,12 +556917,12 @@ 6443913856, 6443821360, 6443848384, - 6462280304, - 6461505456, - 6461505088, - 6461526000, + 6462282496, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -556931,37 +556937,37 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462273600, - 6462272192, + 6461548896, + 6462275792, + 6462274384, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462279344, - 6462279840, - 6462274992, - 6462275312, - 6462277392, - 6462277360 + 6462281536, + 6462282032, + 6462277184, + 6462277504, + 6462279584, + 6462279552 ], "bases": [ { @@ -556995,7 +557001,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981712, + "complete_object_locator": 6468985808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557004,35 +557010,35 @@ }, { "type_name": "panorama::CRenderPanel", - "vtable_address": 6467558056, + "vtable_address": 6467562152, "methods": [ 6443876544, - 6461535472, - 6461352768, + 6461537664, + 6461354960, 6443827440, - 6461352784, - 6461546688, - 6461559344, + 6461354976, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -557045,12 +557051,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -557065,32 +557071,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461352752, - 6461352640, + 6461548896, + 6461354944, + 6461354832, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6452651168 + 6452652784 ], "bases": [ { @@ -557124,7 +557130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954480, + "complete_object_locator": 6468958576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557133,40 +557139,40 @@ }, { "type_name": "panorama::CScrollBar", - "vtable_address": 6467707960, + "vtable_address": 6467712056, "methods": [ 6443876544, - 6461535472, - 6462372336, - 6461526256, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462374528, + 6461528448, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536336, - 6461537072, - 6461536080, - 6461536928, - 6461538896, - 6461538496, - 6461503744, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538528, + 6461539264, + 6461538272, + 6461539120, + 6461541088, + 6461540688, + 6461505936, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461545472, + 6461547664, 6443845024, 6443848560, 6443848128, @@ -557174,12 +557180,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -557194,36 +557200,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462372304, - 6462370848, + 6461548896, + 6462374496, + 6462373040, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -557285,7 +557291,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984712, + "complete_object_locator": 6468988808, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -557294,31 +557300,31 @@ }, { "type_name": "panorama::CScrollBar", - "vtable_address": 6467708680, - "methods": [ - 6461559408, - 6461504320, - 6461535344, - 6461554784, - 6461525744, - 6461525728, - 6461525712, - 6461554992, - 6461525776, - 6461554976, - 6461516064, - 6461525760, - 6463705588, - 6461503808, - 6461525952, - 6461525888, - 6461525840, - 6462374192, - 6462373808, - 6462373072, - 6461549712, - 6461551472, - 6461516800 + "vtable_address": 6467712776, + "methods": [ + 6461561600, + 6461506512, + 6461537536, + 6461556976, + 6461527936, + 6461527920, + 6461527904, + 6461557184, + 6461527968, + 6461557168, + 6461518256, + 6461527952, + 6463707780, + 6461506000, + 6461528144, + 6461528080, + 6461528032, + 6462376384, + 6462376000, + 6462375264, + 6461551904, + 6461553664, + 6461518992 ], "bases": [ { @@ -557380,7 +557386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984752, + "complete_object_locator": 6468988848, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -557389,35 +557395,35 @@ }, { "type_name": "panorama::CSimpleContextMenu", - "vtable_address": 6467590944, + "vtable_address": 6467595040, "methods": [ 6443876544, - 6461535472, - 6461757536, - 6461757552, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461759728, + 6461759744, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461759392, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461761584, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461758336, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461760528, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -557430,12 +557436,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -557450,32 +557456,32 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461757504, - 6461756048, + 6461548896, + 6461759696, + 6461758240, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461757104 + 6461759296 ], "bases": [ { @@ -557523,7 +557529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959232, + "complete_object_locator": 6468963328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557532,35 +557538,35 @@ }, { "type_name": "panorama::CSlider", - "vtable_address": 6467656088, + "vtable_address": 6467660184, "methods": [ 6443876544, - 6461535472, - 6462020304, - 6462021664, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462022496, + 6462023856, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462022560, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462024128, - 6462024496, - 6461536080, - 6461536928, - 6461538896, - 6462024768, + 6462024752, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462026320, + 6462026688, + 6461538272, + 6461539120, + 6461541088, + 6462026960, 6443802144, - 6461535456, - 6461545040, - 6462017680, - 6461503872, - 6462017840, + 6461537648, + 6461547232, + 6462019872, + 6461506064, + 6462020032, 6443844992, 6443848064, 6443844976, @@ -557573,12 +557579,12 @@ 6443913856, 6443821360, 6443848384, - 6462027920, - 6461505456, - 6461505088, - 6461526000, + 6462030112, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -557593,37 +557599,37 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462020272, - 6462017408, + 6461548896, + 6462022464, + 6462019600, 6443817520, - 6461547664, - 6461547840, - 6462025488, - 6462025152, - 6462025264, - 6462025376, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6462027680, + 6462027344, + 6462027456, + 6462027568, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462027184, - 6462027872, - 6462021968, - 6462022288, - 6462025616, - 6462025600 + 6462029376, + 6462030064, + 6462024160, + 6462024480, + 6462027808, + 6462027792 ], "bases": [ { @@ -557657,7 +557663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972704, + "complete_object_locator": 6468976800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557666,35 +557672,35 @@ }, { "type_name": "panorama::CSlottedSlider", - "vtable_address": 6467656816, + "vtable_address": 6467660912, "methods": [ 6443876544, - 6461535472, - 6462020320, - 6462021696, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462022512, + 6462023888, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462023664, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462024128, - 6462024496, - 6461536080, - 6461536928, - 6461538896, - 6462024768, + 6462025856, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462026320, + 6462026688, + 6461538272, + 6461539120, + 6461541088, + 6462026960, 6443802144, - 6461535456, - 6461545040, - 6462017680, - 6461503872, - 6462018256, + 6461537648, + 6461547232, + 6462019872, + 6461506064, + 6462020448, 6443844992, 6443848064, 6443844976, @@ -557707,12 +557713,12 @@ 6443913856, 6443821360, 6443848384, - 6462027920, - 6461505456, - 6461505088, - 6461526000, + 6462030112, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -557727,37 +557733,37 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462020288, - 6462017472, + 6461548896, + 6462022480, + 6462019664, 6443817520, - 6461547664, - 6461547840, - 6462025488, - 6462025152, - 6462025264, - 6462025376, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6462027680, + 6462027344, + 6462027456, + 6462027568, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462027568, - 6462027872, - 6462021968, - 6462022288, - 6462025616, - 6462025600 + 6462029760, + 6462030064, + 6462024160, + 6462024480, + 6462027808, + 6462027792 ], "bases": [ { @@ -557805,7 +557811,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972840, + "complete_object_locator": 6468976936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557814,31 +557820,31 @@ }, { "type_name": "panorama::CStyleProperty", - "vtable_address": 6467604752, - "methods": [ - 6461880720, - 6463705588, - 6463705588, - 6463705588, - 6461880592, - 6461880608, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6463705588, - 6463705588, - 6461880704 + "vtable_address": 6467608848, + "methods": [ + 6461882912, + 6463707780, + 6463707780, + 6463707780, + 6461882784, + 6461882800, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6463707780, + 6463707780, + 6461882896 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468962624, + "complete_object_locator": 6468966720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557847,26 +557853,26 @@ }, { "type_name": "panorama::CStylePropertyAlign", - "vtable_address": 6467636072, - "methods": [ - 6461939408, - 6461938928, - 6461938976, - 6461938992, - 6461880592, - 6461880608, - 6461939008, - 6461939168, - 6461939248, - 6461939280, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461939312, - 6461939360, - 6461880704 + "vtable_address": 6467640168, + "methods": [ + 6461941600, + 6461941120, + 6461941168, + 6461941184, + 6461882784, + 6461882800, + 6461941200, + 6461941360, + 6461941440, + 6461941472, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461941504, + 6461941552, + 6461882896 ], "bases": [ { @@ -557886,7 +557892,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468970752, + "complete_object_locator": 6468974848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557895,26 +557901,26 @@ }, { "type_name": "panorama::CStylePropertyAnimationProperties", - "vtable_address": 6467631168, - "methods": [ - 6461926048, - 6461917872, - 6461918368, - 6461918384, - 6461880592, - 6461880608, - 6461918400, - 6461920336, - 6461921104, - 6461921216, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461921456, - 6461921840, - 6461880704 + "vtable_address": 6467635264, + "methods": [ + 6461928240, + 6461920064, + 6461920560, + 6461920576, + 6461882784, + 6461882800, + 6461920592, + 6461922528, + 6461923296, + 6461923408, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461923648, + 6461924032, + 6461882896 ], "bases": [ { @@ -557934,7 +557940,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969840, + "complete_object_locator": 6468973936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -557943,26 +557949,26 @@ }, { "type_name": "panorama::CStylePropertyBackgroundBlur", - "vtable_address": 6467630376, - "methods": [ - 6461924160, - 6461923024, - 6461923264, - 6461923280, - 6461880592, - 6461880608, - 6461923376, - 6461923440, - 6461923120, - 6461923184, - 6461923232, - 6461880640, - 6461924144, - 6461880672, - 6461880688, - 6461923728, - 6461923792, - 6461880704 + "vtable_address": 6467634472, + "methods": [ + 6461926352, + 6461925216, + 6461925456, + 6461925472, + 6461882784, + 6461882800, + 6461925568, + 6461925632, + 6461925312, + 6461925376, + 6461925424, + 6461882832, + 6461926336, + 6461882864, + 6461882880, + 6461925920, + 6461925984, + 6461882896 ], "bases": [ { @@ -557996,7 +558002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965064, + "complete_object_locator": 6468969160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558005,26 +558011,26 @@ }, { "type_name": "panorama::CStylePropertyBackgroundColor", - "vtable_address": 6467607600, - "methods": [ - 6461881376, - 6461880784, - 6461946160, - 6461946176, - 6461880592, - 6461880608, - 6461881040, - 6461946624, - 6461880768, - 6461946144, - 6461946448, - 6461880640, - 6461881328, - 6461880672, - 6461880688, - 6461946640, - 6461946672, - 6461880704 + "vtable_address": 6467611696, + "methods": [ + 6461883568, + 6461882976, + 6461948352, + 6461948368, + 6461882784, + 6461882800, + 6461883232, + 6461948816, + 6461882960, + 6461948336, + 6461948640, + 6461882832, + 6461883520, + 6461882864, + 6461882880, + 6461948832, + 6461948864, + 6461882896 ], "bases": [ { @@ -558058,7 +558064,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468967520, + "complete_object_locator": 6468971616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558067,26 +558073,26 @@ }, { "type_name": "panorama::CStylePropertyBackgroundImage", - "vtable_address": 6467616784, - "methods": [ - 6461897264, - 6461889520, - 6461889808, - 6461889824, - 6461891296, - 6461892336, - 6461892528, - 6461895744, - 6461895872, - 6461895968, - 6461896960, - 6461897072, - 6461897168, - 6461880672, - 6461880688, - 6461896768, - 6461896752, - 6461880704 + "vtable_address": 6467620880, + "methods": [ + 6461899456, + 6461891712, + 6461892000, + 6461892016, + 6461893488, + 6461894528, + 6461894720, + 6461897936, + 6461898064, + 6461898160, + 6461899152, + 6461899264, + 6461899360, + 6461882864, + 6461882880, + 6461898960, + 6461898944, + 6461882896 ], "bases": [ { @@ -558106,7 +558112,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968048, + "complete_object_locator": 6468972144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558115,26 +558121,26 @@ }, { "type_name": "panorama::CStylePropertyBackgroundImgOpacity", - "vtable_address": 6467617008, - "methods": [ - 6461897648, - 6461897328, - 6461897472, - 6461897488, - 6461880592, - 6461880608, - 6461897536, - 6461897568, - 6461897408, - 6461897440, - 6461880624, - 6461880640, - 6461897584, - 6461880672, - 6461880688, - 6461897600, - 6461897632, - 6461880704 + "vtable_address": 6467621104, + "methods": [ + 6461899840, + 6461899520, + 6461899664, + 6461899680, + 6461882784, + 6461882800, + 6461899728, + 6461899760, + 6461899600, + 6461899632, + 6461882816, + 6461882832, + 6461899776, + 6461882864, + 6461882880, + 6461899792, + 6461899824, + 6461882896 ], "bases": [ { @@ -558154,7 +558160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968176, + "complete_object_locator": 6468972272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558163,26 +558169,26 @@ }, { "type_name": "panorama::CStylePropertyBlur", - "vtable_address": 6467629160, + "vtable_address": 6467633256, "methods": [ - 6461924032, - 6461923024, - 6461923264, - 6461923280, - 6461880592, - 6461880608, - 6461923376, - 6461923440, - 6461923120, - 6461923184, - 6461923232, - 6461880640, - 6461923856, - 6461880672, - 6461880688, - 6461923728, - 6461923792, - 6461880704 + 6461926224, + 6461925216, + 6461925456, + 6461925472, + 6461882784, + 6461882800, + 6461925568, + 6461925632, + 6461925312, + 6461925376, + 6461925424, + 6461882832, + 6461926048, + 6461882864, + 6461882880, + 6461925920, + 6461925984, + 6461882896 ], "bases": [ { @@ -558216,7 +558222,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964792, + "complete_object_locator": 6468968888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558225,26 +558231,26 @@ }, { "type_name": "panorama::CStylePropertyBlurBase", - "vtable_address": 6467628968, - "methods": [ - 6461923808, - 6461923024, - 6461923264, - 6461923280, - 6461880592, - 6461880608, - 6461923376, - 6461923440, - 6461923120, - 6461923184, - 6461923232, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461923728, - 6461923792, - 6461880704 + "vtable_address": 6467633064, + "methods": [ + 6461926000, + 6461925216, + 6461925456, + 6461925472, + 6461882784, + 6461882800, + 6461925568, + 6461925632, + 6461925312, + 6461925376, + 6461925424, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461925920, + 6461925984, + 6461882896 ], "bases": [ { @@ -558264,7 +558270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964664, + "complete_object_locator": 6468968760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558273,26 +558279,26 @@ }, { "type_name": "panorama::CStylePropertyBorder", - "vtable_address": 6467609272, - "methods": [ - 6461886256, - 6461881968, - 6461882176, - 6461882192, - 6461880592, - 6461880608, - 6461882592, - 6461884576, - 6461885248, - 6461885312, - 6461884032, - 6461880640, - 6461885488, - 6461880672, - 6461880688, - 6461885824, - 6461886032, - 6461880704 + "vtable_address": 6467613368, + "methods": [ + 6461888448, + 6461884160, + 6461884368, + 6461884384, + 6461882784, + 6461882800, + 6461884784, + 6461886768, + 6461887440, + 6461887504, + 6461886224, + 6461882832, + 6461887680, + 6461882864, + 6461882880, + 6461888016, + 6461888224, + 6461882896 ], "bases": [ { @@ -558312,7 +558318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468967792, + "complete_object_locator": 6468971888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558321,26 +558327,26 @@ }, { "type_name": "panorama::CStylePropertyBorderBrush", - "vtable_address": 6467608600, - "methods": [ - 6461881904, - 6461881456, - 6461881728, - 6461881744, - 6461880592, - 6461880608, - 6461881568, - 6461946624, - 6461881440, - 6461946144, - 6461946448, - 6461880640, - 6461881872, - 6461880672, - 6461880688, - 6461946640, - 6461946672, - 6461880704 + "vtable_address": 6467612696, + "methods": [ + 6461884096, + 6461883648, + 6461883920, + 6461883936, + 6461882784, + 6461882800, + 6461883760, + 6461948816, + 6461883632, + 6461948336, + 6461948640, + 6461882832, + 6461884064, + 6461882864, + 6461882880, + 6461948832, + 6461948864, + 6461882896 ], "bases": [ { @@ -558374,7 +558380,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468967656, + "complete_object_locator": 6468971752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558383,26 +558389,26 @@ }, { "type_name": "panorama::CStylePropertyBorderImage", - "vtable_address": 6467646440, - "methods": [ - 6461956528, - 6461952448, - 6461952768, - 6461952784, - 6461880592, - 6461880608, - 6461952800, - 6461953504, - 6461954624, - 6461954672, - 6461954832, - 6461955488, - 6461956416, - 6461880672, - 6461880688, - 6461955984, - 6461956384, - 6461880704 + "vtable_address": 6467650536, + "methods": [ + 6461958720, + 6461954640, + 6461954960, + 6461954976, + 6461882784, + 6461882800, + 6461954992, + 6461955696, + 6461956816, + 6461956864, + 6461957024, + 6461957680, + 6461958608, + 6461882864, + 6461882880, + 6461958176, + 6461958576, + 6461882896 ], "bases": [ { @@ -558422,7 +558428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468962744, + "complete_object_locator": 6468966840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558431,26 +558437,26 @@ }, { "type_name": "panorama::CStylePropertyBorderRadius", - "vtable_address": 6467613384, + "vtable_address": 6467617480, "methods": [ - 6461889472, - 6461886304, - 6461886448, - 6461886480, - 6461880592, - 6461880608, - 6461886912, + 6461891664, + 6461888496, 6461888640, - 6461888992, - 6461889040, - 6461887664, - 6461880640, - 6461889168, - 6461886464, - 6461880688, - 6461889264, - 6461889456, - 6461880704 + 6461888672, + 6461882784, + 6461882800, + 6461889104, + 6461890832, + 6461891184, + 6461891232, + 6461889856, + 6461882832, + 6461891360, + 6461888656, + 6461882880, + 6461891456, + 6461891648, + 6461882896 ], "bases": [ { @@ -558470,7 +558476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468967920, + "complete_object_locator": 6468972016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558479,26 +558485,26 @@ }, { "type_name": "panorama::CStylePropertyBoxShadow", - "vtable_address": 6467631320, - "methods": [ - 6461926448, - 6461924208, - 6461924368, - 6461924400, - 6461880592, - 6461880608, - 6461924832, - 6461925744, - 6461924320, - 6461924336, - 6461925312, - 6461880640, - 6461926208, - 6461924384, - 6461880688, - 6461926224, - 6461926432, - 6461880704 + "vtable_address": 6467635416, + "methods": [ + 6461928640, + 6461926400, + 6461926560, + 6461926592, + 6461882784, + 6461882800, + 6461927024, + 6461927936, + 6461926512, + 6461926528, + 6461927504, + 6461882832, + 6461928400, + 6461926576, + 6461882880, + 6461928416, + 6461928624, + 6461882896 ], "bases": [ { @@ -558518,7 +558524,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965200, + "complete_object_locator": 6468969296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558527,26 +558533,26 @@ }, { "type_name": "panorama::CStylePropertyBrightness", - "vtable_address": 6467628032, + "vtable_address": 6467632128, "methods": [ - 6461922192, - 6461921920, - 6461922000, - 6461922032, - 6461880592, - 6461880608, - 6461922080, - 6461922112, - 6461921856, - 6461921888, - 6461880624, - 6461880640, - 6461922128, - 6461922016, - 6461880688, - 6461922144, - 6461922176, - 6461880704 + 6461924384, + 6461924112, + 6461924192, + 6461924224, + 6461882784, + 6461882800, + 6461924272, + 6461924304, + 6461924048, + 6461924080, + 6461882816, + 6461882832, + 6461924320, + 6461924208, + 6461882880, + 6461924336, + 6461924368, + 6461882896 ], "bases": [ { @@ -558566,7 +558572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964280, + "complete_object_locator": 6468968376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558575,26 +558581,26 @@ }, { "type_name": "panorama::CStylePropertyClip", - "vtable_address": 6467633704, - "methods": [ - 6461935520, - 6461931728, - 6461931952, - 6461931984, - 6461880592, - 6461880608, - 6461932432, - 6461933504, - 6461931904, - 6461934288, - 6461932736, - 6461880640, - 6461934000, - 6461931968, - 6461880688, - 6461934016, - 6461934464, - 6461880704 + "vtable_address": 6467637800, + "methods": [ + 6461937712, + 6461933920, + 6461934144, + 6461934176, + 6461882784, + 6461882800, + 6461934624, + 6461935696, + 6461934096, + 6461936480, + 6461934928, + 6461882832, + 6461936192, + 6461934160, + 6461882880, + 6461936208, + 6461936656, + 6461882896 ], "bases": [ { @@ -558614,7 +558620,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965584, + "complete_object_locator": 6468969680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558623,26 +558629,26 @@ }, { "type_name": "panorama::CStylePropertyContextMenuArrowPosition", - "vtable_address": 6467644616, + "vtable_address": 6467648712, "methods": [ - 6461949408, - 6461945312, - 6461945376, - 6461945520, - 6461880592, - 6461880608, - 6461945536, - 6461945584, - 6461945680, - 6461946896, - 6461880624, - 6461880640, - 6461948128, - 6461880672, - 6461880688, - 6461945712, - 6461945856, - 6461880704 + 6461951600, + 6461947504, + 6461947568, + 6461947712, + 6461882784, + 6461882800, + 6461947728, + 6461947776, + 6461947872, + 6461949088, + 6461882816, + 6461882832, + 6461950320, + 6461882864, + 6461882880, + 6461947904, + 6461948048, + 6461882896 ], "bases": [ { @@ -558690,7 +558696,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972032, + "complete_object_locator": 6468976128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558699,26 +558705,26 @@ }, { "type_name": "panorama::CStylePropertyContextMenuBodyPosition", - "vtable_address": 6467642600, + "vtable_address": 6467646696, "methods": [ - 6461946832, - 6461945312, - 6461945376, - 6461945520, - 6461880592, - 6461880608, - 6461945536, - 6461945584, - 6461945680, - 6461945968, - 6461880624, - 6461880640, - 6461946816, - 6461880672, - 6461880688, - 6461945712, - 6461945856, - 6461880704 + 6461949024, + 6461947504, + 6461947568, + 6461947712, + 6461882784, + 6461882800, + 6461947728, + 6461947776, + 6461947872, + 6461948160, + 6461882816, + 6461882832, + 6461949008, + 6461882864, + 6461882880, + 6461947904, + 6461948048, + 6461882896 ], "bases": [ { @@ -558766,7 +558772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468971648, + "complete_object_locator": 6468975744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558775,26 +558781,26 @@ }, { "type_name": "panorama::CStylePropertyContextMenuPosition", - "vtable_address": 6467640360, + "vtable_address": 6467644456, "methods": [ - 6461944672, - 6461941632, - 6461941776, - 6461941904, - 6461880592, - 6461880608, - 6461942064, - 6461942080, - 6461942240, - 6461942288, - 6461880624, - 6461880640, - 6461944656, - 6461880672, - 6461880688, - 6461942304, - 6461942352, - 6461880704 + 6461946864, + 6461943824, + 6461943968, + 6461944096, + 6461882784, + 6461882800, + 6461944256, + 6461944272, + 6461944432, + 6461944480, + 6461882816, + 6461882832, + 6461946848, + 6461882864, + 6461882880, + 6461944496, + 6461944544, + 6461882896 ], "bases": [ { @@ -558828,7 +558834,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468971144, + "complete_object_locator": 6468975240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558837,26 +558843,26 @@ }, { "type_name": "panorama::CStylePropertyContextUIComponentPosition", - "vtable_address": 6467641224, + "vtable_address": 6467645320, "methods": [ - 6461945920, - 6461945312, - 6461945376, - 6461945520, - 6461880592, - 6461880608, - 6461945536, - 6461945584, - 6461945680, - 6463705588, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461945712, - 6461945856, - 6461880704 + 6461948112, + 6461947504, + 6461947568, + 6461947712, + 6461882784, + 6461882800, + 6461947728, + 6461947776, + 6461947872, + 6463707780, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461947904, + 6461948048, + 6461882896 ], "bases": [ { @@ -558876,7 +558882,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468971280, + "complete_object_locator": 6468975376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558885,26 +558891,26 @@ }, { "type_name": "panorama::CStylePropertyContextUIPosition", - "vtable_address": 6467637032, + "vtable_address": 6467641128, "methods": [ - 6461942448, - 6461941632, - 6461941776, - 6461941904, - 6461880592, - 6461880608, - 6461942064, - 6461942080, - 6461942240, - 6461942288, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461942304, - 6461942352, - 6461880704 + 6461944640, + 6461943824, + 6461943968, + 6461944096, + 6461882784, + 6461882800, + 6461944256, + 6461944272, + 6461944432, + 6461944480, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461944496, + 6461944544, + 6461882896 ], "bases": [ { @@ -558924,7 +558930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468970880, + "complete_object_locator": 6468974976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558933,26 +558939,26 @@ }, { "type_name": "panorama::CStylePropertyContrast", - "vtable_address": 6467628384, - "methods": [ - 6461922576, - 6461922304, - 6461922384, - 6461922416, - 6461880592, - 6461880608, - 6461922464, - 6461922496, - 6461922240, - 6461922272, - 6461880624, - 6461880640, - 6461922512, - 6461922400, - 6461880688, - 6461922528, - 6461922560, - 6461880704 + "vtable_address": 6467632480, + "methods": [ + 6461924768, + 6461924496, + 6461924576, + 6461924608, + 6461882784, + 6461882800, + 6461924656, + 6461924688, + 6461924432, + 6461924464, + 6461882816, + 6461882832, + 6461924704, + 6461924592, + 6461882880, + 6461924720, + 6461924752, + 6461882896 ], "bases": [ { @@ -558972,7 +558978,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964408, + "complete_object_locator": 6468968504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -558981,26 +558987,26 @@ }, { "type_name": "panorama::CStylePropertyCursor", - "vtable_address": 6467628672, - "methods": [ - 6461922976, - 6461922672, - 6461922752, - 6461922784, - 6461880592, - 6461880608, - 6461922800, - 6461922848, - 6461922624, - 6461922640, - 6461880624, - 6461880640, - 6461922912, - 6461922768, - 6461880688, - 6461922928, - 6461922960, - 6461880704 + "vtable_address": 6467632768, + "methods": [ + 6461925168, + 6461924864, + 6461924944, + 6461924976, + 6461882784, + 6461882800, + 6461924992, + 6461925040, + 6461924816, + 6461924832, + 6461882816, + 6461882832, + 6461925104, + 6461924960, + 6461882880, + 6461925120, + 6461925152, + 6461882896 ], "bases": [ { @@ -559020,7 +559026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964536, + "complete_object_locator": 6468968632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559029,26 +559035,26 @@ }, { "type_name": "panorama::CStylePropertyDimensionsBase", - "vtable_address": 6467633856, + "vtable_address": 6467637952, "methods": [ - 6461935568, - 6461934480, - 6461934560, - 6461934576, - 6461880592, - 6461880608, - 6461934592, - 6461934960, - 6461935152, - 6461935184, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461935248, - 6461935488, - 6461880704 + 6461937760, + 6461936672, + 6461936752, + 6461936768, + 6461882784, + 6461882800, + 6461936784, + 6461937152, + 6461937344, + 6461937376, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461937440, + 6461937680, + 6461882896 ], "bases": [ { @@ -559068,7 +559074,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468970456, + "complete_object_locator": 6468974552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559077,26 +559083,26 @@ }, { "type_name": "panorama::CStylePropertyDimensionsBase", - "vtable_address": 6467633008, + "vtable_address": 6467637104, "methods": [ - 6461931136, - 6461930096, - 6461930176, - 6461930192, - 6461880592, - 6461880608, - 6461930208, - 6461930576, - 6461930768, - 6461930800, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461930864, - 6461931104, - 6461880704 + 6461933328, + 6461932288, + 6461932368, + 6461932384, + 6461882784, + 6461882800, + 6461932400, + 6461932768, + 6461932960, + 6461932992, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461933056, + 6461933296, + 6461882896 ], "bases": [ { @@ -559116,7 +559122,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468970192, + "complete_object_locator": 6468974288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559125,26 +559131,26 @@ }, { "type_name": "panorama::CStylePropertyEntranceSound", - "vtable_address": 6467645352, - "methods": [ - 6461950912, - 6461949648, - 6461949888, - 6461949904, - 6461880592, - 6461880608, - 6461949920, - 6461950352, - 6461950496, - 6461950512, - 6461880624, - 6461880640, - 6461950896, - 6461880672, - 6461880688, - 6461950528, - 6461950656, - 6461880704 + "vtable_address": 6467649448, + "methods": [ + 6461953104, + 6461951840, + 6461952080, + 6461952096, + 6461882784, + 6461882800, + 6461952112, + 6461952544, + 6461952688, + 6461952704, + 6461882816, + 6461882832, + 6461953088, + 6461882864, + 6461882880, + 6461952720, + 6461952848, + 6461882896 ], "bases": [ { @@ -559178,7 +559184,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972304, + "complete_object_locator": 6468976400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559187,26 +559193,26 @@ }, { "type_name": "panorama::CStylePropertyExitSound", - "vtable_address": 6467645632, - "methods": [ - 6461951152, - 6461949648, - 6461949888, - 6461949904, - 6461880592, - 6461880608, - 6461949920, - 6461950352, - 6461950496, - 6461950512, - 6461880624, - 6461880640, - 6461951136, - 6461880672, - 6461880688, - 6461950528, - 6461950656, - 6461880704 + "vtable_address": 6467649728, + "methods": [ + 6461953344, + 6461951840, + 6461952080, + 6461952096, + 6461882784, + 6461882800, + 6461952112, + 6461952544, + 6461952688, + 6461952704, + 6461882816, + 6461882832, + 6461953328, + 6461882864, + 6461882880, + 6461952720, + 6461952848, + 6461882896 ], "bases": [ { @@ -559240,7 +559246,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972440, + "complete_object_locator": 6468976536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559249,26 +559255,26 @@ }, { "type_name": "panorama::CStylePropertyFillColor", - "vtable_address": 6467641792, - "methods": [ - 6461946704, - 6461946016, - 6461946160, - 6461946176, - 6461880592, - 6461880608, - 6461946304, - 6461946624, - 6461946128, - 6461946144, - 6461946448, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461946640, - 6461946672, - 6461880704 + "vtable_address": 6467645888, + "methods": [ + 6461948896, + 6461948208, + 6461948352, + 6461948368, + 6461882784, + 6461882800, + 6461948496, + 6461948816, + 6461948320, + 6461948336, + 6461948640, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461948832, + 6461948864, + 6461882896 ], "bases": [ { @@ -559288,7 +559294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966864, + "complete_object_locator": 6468970960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559297,26 +559303,26 @@ }, { "type_name": "panorama::CStylePropertyFlowChildren", - "vtable_address": 6467626424, + "vtable_address": 6467630520, "methods": [ - 6461915888, - 6461914944, - 6461915072, - 6461915088, - 6461880592, - 6461880608, - 6461915104, - 6461915504, - 6461915024, - 6461915040, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461915680, - 6461915712, - 6461880704 + 6461918080, + 6461917136, + 6461917264, + 6461917280, + 6461882784, + 6461882800, + 6461917296, + 6461917696, + 6461917216, + 6461917232, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461917872, + 6461917904, + 6461882896 ], "bases": [ { @@ -559336,7 +559342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969584, + "complete_object_locator": 6468973680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559345,26 +559351,26 @@ }, { "type_name": "panorama::CStylePropertyFont", - "vtable_address": 6467636880, - "methods": [ - 6461942368, - 6461939456, - 6461939648, - 6461939664, - 6461880592, - 6461880608, - 6461939680, - 6461941472, - 6461941712, - 6461941792, - 6461940512, - 6461880640, - 6461941808, - 6461880672, - 6461940544, - 6461941920, - 6461942032, - 6461880704 + "vtable_address": 6467640976, + "methods": [ + 6461944560, + 6461941648, + 6461941840, + 6461941856, + 6461882784, + 6461882800, + 6461941872, + 6461943664, + 6461943904, + 6461943984, + 6461942704, + 6461882832, + 6461944000, + 6461882864, + 6461942736, + 6461944112, + 6461944224, + 6461882896 ], "bases": [ { @@ -559384,7 +559390,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965968, + "complete_object_locator": 6468970064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559393,26 +559399,26 @@ }, { "type_name": "panorama::CStylePropertyForegroundColor", - "vtable_address": 6467643280, - "methods": [ - 6461946944, - 6461946016, - 6461946160, - 6461946176, - 6461880592, - 6461880608, - 6461946304, - 6461946624, - 6461946128, - 6461946144, - 6461946448, - 6461880640, - 6461946880, - 6461880672, - 6461880688, - 6461946640, - 6461946672, - 6461880704 + "vtable_address": 6467647376, + "methods": [ + 6461949136, + 6461948208, + 6461948352, + 6461948368, + 6461882784, + 6461882800, + 6461948496, + 6461948816, + 6461948320, + 6461948336, + 6461948640, + 6461882832, + 6461949072, + 6461882864, + 6461882880, + 6461948832, + 6461948864, + 6461882896 ], "bases": [ { @@ -559446,7 +559452,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966992, + "complete_object_locator": 6468971088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559455,26 +559461,26 @@ }, { "type_name": "panorama::CStylePropertyHeight", - "vtable_address": 6467621296, - "methods": [ - 6461907408, - 6461904624, - 6461904736, - 6461904752, - 6461880592, - 6461880608, - 6461905136, - 6461905344, - 6461904672, - 6461904688, - 6461905184, - 6461880640, - 6461905488, - 6461880672, - 6461880688, - 6461905584, - 6461905680, - 6461880704 + "vtable_address": 6467625392, + "methods": [ + 6461909600, + 6461906816, + 6461906928, + 6461906944, + 6461882784, + 6461882800, + 6461907328, + 6461907536, + 6461906864, + 6461906880, + 6461907376, + 6461882832, + 6461907680, + 6461882864, + 6461882880, + 6461907776, + 6461907872, + 6461882896 ], "bases": [ { @@ -559494,7 +559500,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968816, + "complete_object_locator": 6468972912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559503,26 +559509,26 @@ }, { "type_name": "panorama::CStylePropertyHueShift", - "vtable_address": 6467627256, - "methods": [ - 6461917440, - 6461916816, - 6461916896, - 6461917024, - 6461880592, - 6461880608, - 6461917152, - 6461917264, - 6461916704, - 6461916768, - 6461880624, - 6461880640, - 6461917328, - 6461916912, - 6461880688, - 6461917344, - 6461917376, - 6461880704 + "vtable_address": 6467631352, + "methods": [ + 6461919632, + 6461919008, + 6461919088, + 6461919216, + 6461882784, + 6461882800, + 6461919344, + 6461919456, + 6461918896, + 6461918960, + 6461882816, + 6461882832, + 6461919520, + 6461919104, + 6461882880, + 6461919536, + 6461919568, + 6461882896 ], "bases": [ { @@ -559542,7 +559548,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964024, + "complete_object_locator": 6468968120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559551,26 +559557,26 @@ }, { "type_name": "panorama::CStylePropertyIgnoreParentFlow", - "vtable_address": 6467627104, - "methods": [ - 6461917392, - 6461916608, - 6461916800, - 6461916928, - 6461880592, - 6461880608, - 6461916944, - 6461917072, - 6461916688, - 6461916736, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461917232, - 6461917296, - 6461880704 + "vtable_address": 6467631200, + "methods": [ + 6461919584, + 6461918800, + 6461918992, + 6461919120, + 6461882784, + 6461882800, + 6461919136, + 6461919264, + 6461918880, + 6461918928, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461919424, + 6461919488, + 6461882896 ], "bases": [ { @@ -559590,7 +559596,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969712, + "complete_object_locator": 6468973808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559599,26 +559605,26 @@ }, { "type_name": "panorama::CStylePropertyImageShadow", - "vtable_address": 6467632840, + "vtable_address": 6467636936, "methods": [ - 6461930048, - 6461928192, - 6461928352, - 6461928384, - 6461880592, - 6461880608, - 6461928720, - 6461929472, - 6461928304, - 6461928320, - 6461929152, - 6461880640, - 6461929792, - 6461928368, - 6461880688, - 6461929808, - 6461930032, - 6461880704 + 6461932240, + 6461930384, + 6461930544, + 6461930576, + 6461882784, + 6461882800, + 6461930912, + 6461931664, + 6461930496, + 6461930512, + 6461931344, + 6461882832, + 6461931984, + 6461930560, + 6461882880, + 6461932000, + 6461932224, + 6461882896 ], "bases": [ { @@ -559638,7 +559644,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965456, + "complete_object_locator": 6468969552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559647,26 +559653,26 @@ }, { "type_name": "panorama::CStylePropertyLayoutPosition", - "vtable_address": 6467620112, - "methods": [ - 6461904576, - 6461904192, - 6461904272, - 6461904288, - 6461880592, - 6461880608, - 6461904320, - 6461904368, - 6461904432, - 6461904448, - 6461880624, - 6461880640, - 6461904464, - 6461904304, - 6461880688, - 6461904528, - 6461904560, - 6461880704 + "vtable_address": 6467624208, + "methods": [ + 6461906768, + 6461906384, + 6461906464, + 6461906480, + 6461882784, + 6461882800, + 6461906512, + 6461906560, + 6461906624, + 6461906640, + 6461882816, + 6461882832, + 6461906656, + 6461906496, + 6461882880, + 6461906720, + 6461906752, + 6461882896 ], "bases": [ { @@ -559686,7 +559692,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963000, + "complete_object_locator": 6468967096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559695,26 +559701,26 @@ }, { "type_name": "panorama::CStylePropertyLineHeight", - "vtable_address": 6467641072, + "vtable_address": 6467645168, "methods": [ - 6461945872, - 6461944720, - 6461944800, - 6461944816, - 6461880592, - 6461880608, - 6461944832, - 6461945216, - 6461945232, - 6461945264, - 6461945056, - 6461880640, - 6461945360, - 6461880672, - 6461880688, - 6461945392, - 6461945488, - 6461880704 + 6461948064, + 6461946912, + 6461946992, + 6461947008, + 6461882784, + 6461882800, + 6461947024, + 6461947408, + 6461947424, + 6461947456, + 6461947248, + 6461882832, + 6461947552, + 6461882864, + 6461882880, + 6461947584, + 6461947680, + 6461882896 ], "bases": [ { @@ -559734,7 +559740,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966736, + "complete_object_locator": 6468970832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559743,26 +559749,26 @@ }, { "type_name": "panorama::CStylePropertyMargin", - "vtable_address": 6467634008, + "vtable_address": 6467638104, "methods": [ - 6461936160, - 6461934480, - 6461934560, - 6461934576, - 6461880592, - 6461880608, - 6461934592, - 6461934960, - 6461935152, - 6461935184, - 6461935616, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461935248, - 6461935488, - 6461880704 + 6461938352, + 6461936672, + 6461936752, + 6461936768, + 6461882784, + 6461882800, + 6461936784, + 6461937152, + 6461937344, + 6461937376, + 6461937808, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461937440, + 6461937680, + 6461882896 ], "bases": [ { @@ -559796,7 +559802,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468970232, + "complete_object_locator": 6468974328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559805,26 +559811,26 @@ }, { "type_name": "panorama::CStylePropertyMaxHeight", - "vtable_address": 6467624976, - "methods": [ - 6461913376, - 6461912160, - 6461912288, - 6461912304, - 6461880592, - 6461880608, - 6461912688, - 6461912912, - 6461912240, - 6461912256, - 6461912752, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461913008, - 6461913168, - 6461880704 + "vtable_address": 6467629072, + "methods": [ + 6461915568, + 6461914352, + 6461914480, + 6461914496, + 6461882784, + 6461882800, + 6461914880, + 6461915104, + 6461914432, + 6461914448, + 6461914944, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461915200, + 6461915360, + 6461882896 ], "bases": [ { @@ -559844,7 +559850,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969328, + "complete_object_locator": 6468973424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559853,26 +559859,26 @@ }, { "type_name": "panorama::CStylePropertyMaxWidth", - "vtable_address": 6467623864, + "vtable_address": 6467627960, "methods": [ - 6461911968, - 6461910880, - 6461911008, - 6461911024, - 6461880592, - 6461880608, - 6461911408, - 6461911632, - 6461910960, - 6461910976, - 6461911472, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461911648, - 6461911760, - 6461880704 + 6461914160, + 6461913072, + 6461913200, + 6461913216, + 6461882784, + 6461882800, + 6461913600, + 6461913824, + 6461913152, + 6461913168, + 6461913664, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461913840, + 6461913952, + 6461882896 ], "bases": [ { @@ -559892,7 +559898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969200, + "complete_object_locator": 6468973296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559901,26 +559907,26 @@ }, { "type_name": "panorama::CStylePropertyMinHeight", - "vtable_address": 6467623248, - "methods": [ - 6461910624, - 6461909888, - 6461910016, - 6461910032, - 6461880592, - 6461880608, - 6461910048, - 6461910272, - 6461909968, - 6461909984, - 6461910112, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461910288, - 6461910400, - 6461880704 + "vtable_address": 6467627344, + "methods": [ + 6461912816, + 6461912080, + 6461912208, + 6461912224, + 6461882784, + 6461882800, + 6461912240, + 6461912464, + 6461912160, + 6461912176, + 6461912304, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461912480, + 6461912592, + 6461882896 ], "bases": [ { @@ -559940,7 +559946,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969072, + "complete_object_locator": 6468973168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559949,26 +559955,26 @@ }, { "type_name": "panorama::CStylePropertyMinWidth", - "vtable_address": 6467622664, + "vtable_address": 6467626760, "methods": [ - 6461909488, - 6461907520, - 6461907648, - 6461907664, - 6461880592, - 6461880608, - 6461907680, - 6461907904, - 6461907600, - 6461907616, - 6461907744, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461907920, - 6461908032, - 6461880704 + 6461911680, + 6461909712, + 6461909840, + 6461909856, + 6461882784, + 6461882800, + 6461909872, + 6461910096, + 6461909792, + 6461909808, + 6461909936, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461910112, + 6461910224, + 6461882896 ], "bases": [ { @@ -559988,7 +559994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968944, + "complete_object_locator": 6468973040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -559997,26 +560003,26 @@ }, { "type_name": "panorama::CStylePropertyMixBlendMode", - "vtable_address": 6467634568, + "vtable_address": 6467638664, "methods": [ - 6461937248, - 6461936224, - 6461936320, - 6461936336, - 6461880592, - 6461880608, - 6461936352, - 6461936624, - 6461936272, - 6461936288, - 6461880624, - 6461880640, - 6461936736, - 6461880672, - 6461880688, - 6461936768, - 6461936816, - 6461936208 + 6461939440, + 6461938416, + 6461938512, + 6461938528, + 6461882784, + 6461882800, + 6461938544, + 6461938816, + 6461938464, + 6461938480, + 6461882816, + 6461882832, + 6461938928, + 6461882864, + 6461882880, + 6461938960, + 6461939008, + 6461938400 ], "bases": [ { @@ -560036,7 +560042,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468970496, + "complete_object_locator": 6468974592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560045,26 +560051,26 @@ }, { "type_name": "panorama::CStylePropertyOpacity", - "vtable_address": 6467625128, - "methods": [ - 6461913424, - 6461912928, - 6461913152, - 6461913216, - 6461880592, - 6461880608, - 6461913264, - 6461913296, - 6461912976, - 6461913120, - 6461880624, - 6461880640, - 6461913312, - 6461913200, - 6461880688, - 6461913328, - 6461913360, - 6461880704 + "vtable_address": 6467629224, + "methods": [ + 6461915616, + 6461915120, + 6461915344, + 6461915408, + 6461882784, + 6461882800, + 6461915456, + 6461915488, + 6461915168, + 6461915312, + 6461882816, + 6461882832, + 6461915504, + 6461915392, + 6461882880, + 6461915520, + 6461915552, + 6461882896 ], "bases": [ { @@ -560084,7 +560090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963640, + "complete_object_locator": 6468967736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560093,26 +560099,26 @@ }, { "type_name": "panorama::CStylePropertyOpacityBrush", - "vtable_address": 6467643696, + "vtable_address": 6467647792, "methods": [ - 6461947024, - 6461946016, - 6461946160, - 6461946176, - 6461880592, - 6461880608, - 6461946304, - 6461946624, - 6461946128, - 6461946144, - 6461946448, - 6461880640, - 6461947008, - 6461880672, - 6461880688, - 6461946640, - 6461946672, - 6461880704 + 6461949216, + 6461948208, + 6461948352, + 6461948368, + 6461882784, + 6461882800, + 6461948496, + 6461948816, + 6461948320, + 6461948336, + 6461948640, + 6461882832, + 6461949200, + 6461882864, + 6461882880, + 6461948832, + 6461948864, + 6461882896 ], "bases": [ { @@ -560146,7 +560152,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468967128, + "complete_object_locator": 6468971224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560155,26 +560161,26 @@ }, { "type_name": "panorama::CStylePropertyOpacityMask", - "vtable_address": 6467617456, + "vtable_address": 6467621552, "methods": [ - 6461899984, - 6461897696, - 6461898160, - 6461898496, - 6461880592, - 6461880608, - 6461898512, - 6461899104, - 6461897968, - 6461898032, - 6461898176, - 6461899296, - 6461899264, - 6461898144, - 6461880688, - 6461899760, - 6461899968, - 6461880704 + 6461902176, + 6461899888, + 6461900352, + 6461900688, + 6461882784, + 6461882800, + 6461900704, + 6461901296, + 6461900160, + 6461900224, + 6461900368, + 6461901488, + 6461901456, + 6461900336, + 6461882880, + 6461901952, + 6461902160, + 6461882896 ], "bases": [ { @@ -560194,7 +560200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968304, + "complete_object_locator": 6468972400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560203,26 +560209,26 @@ }, { "type_name": "panorama::CStylePropertyOverflow", - "vtable_address": 6467635616, - "methods": [ - 6461938880, - 6461937920, - 6461938048, - 6461938064, - 6461880592, - 6461880608, - 6461938128, - 6461938544, - 6461938000, - 6461938016, - 6461880624, - 6461880640, - 6461938784, - 6461880672, - 6461880688, - 6461938800, - 6461938848, - 6461880704 + "vtable_address": 6467639712, + "methods": [ + 6461941072, + 6461940112, + 6461940240, + 6461940256, + 6461882784, + 6461882800, + 6461940320, + 6461940736, + 6461940192, + 6461940208, + 6461882816, + 6461882832, + 6461940976, + 6461882864, + 6461882880, + 6461940992, + 6461941040, + 6461882896 ], "bases": [ { @@ -560242,7 +560248,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965840, + "complete_object_locator": 6468969936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560251,26 +560257,26 @@ }, { "type_name": "panorama::CStylePropertyPadding", - "vtable_address": 6467633552, + "vtable_address": 6467637648, "methods": [ + 6461934576, + 6461932288, + 6461932368, 6461932384, - 6461930096, - 6461930176, - 6461930192, - 6461880592, - 6461880608, - 6461930208, - 6461930576, - 6461930768, - 6461930800, - 6461931184, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461930864, - 6461931104, - 6461880704 + 6461882784, + 6461882800, + 6461932400, + 6461932768, + 6461932960, + 6461932992, + 6461933376, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461933056, + 6461933296, + 6461882896 ], "bases": [ { @@ -560304,7 +560310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969968, + "complete_object_locator": 6468974064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560313,26 +560319,26 @@ }, { "type_name": "panorama::CStylePropertyPerspective", - "vtable_address": 6467623416, + "vtable_address": 6467627512, "methods": [ - 6461910832, - 6461910432, - 6461910560, - 6461910576, - 6461880592, - 6461880608, - 6461910672, - 6461910752, - 6461910480, - 6461910512, - 6461910544, - 6461880640, - 6461910768, - 6461880672, - 6461880688, - 6461910784, - 6461910816, - 6461880704 + 6461913024, + 6461912624, + 6461912752, + 6461912768, + 6461882784, + 6461882800, + 6461912864, + 6461912944, + 6461912672, + 6461912704, + 6461912736, + 6461882832, + 6461912960, + 6461882864, + 6461882880, + 6461912976, + 6461913008, + 6461882896 ], "bases": [ { @@ -560352,7 +560358,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963384, + "complete_object_locator": 6468967480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560361,26 +560367,26 @@ }, { "type_name": "panorama::CStylePropertyPerspectiveOrigin", - "vtable_address": 6467622832, + "vtable_address": 6467626928, "methods": [ - 6461909840, - 6461908064, - 6461908256, - 6461908272, - 6461880592, - 6461880608, - 6461908960, - 6461909536, - 6461908160, - 6461908192, - 6461909152, - 6461909472, - 6461909664, - 6461880672, - 6461880688, - 6461909680, - 6461909824, - 6461880704 + 6461912032, + 6461910256, + 6461910448, + 6461910464, + 6461882784, + 6461882800, + 6461911152, + 6461911728, + 6461910352, + 6461910384, + 6461911344, + 6461911664, + 6461911856, + 6461882864, + 6461882880, + 6461911872, + 6461912016, + 6461882896 ], "bases": [ { @@ -560400,7 +560406,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963256, + "complete_object_locator": 6468967352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560409,26 +560415,26 @@ }, { "type_name": "panorama::CStylePropertyPosition", - "vtable_address": 6467618656, - "methods": [ - 6461902304, - 6461900560, - 6461900624, - 6461900640, - 6461880592, - 6461880608, - 6461901168, - 6461901872, - 6461902016, - 6461902048, - 6461901424, - 6461880640, - 6461902096, - 6461901152, - 6461880688, - 6461902112, - 6461902288, - 6461880704 + "vtable_address": 6467622752, + "methods": [ + 6461904496, + 6461902752, + 6461902816, + 6461902832, + 6461882784, + 6461882800, + 6461903360, + 6461904064, + 6461904208, + 6461904240, + 6461903616, + 6461882832, + 6461904288, + 6461903344, + 6461882880, + 6461904304, + 6461904480, + 6461882896 ], "bases": [ { @@ -560448,7 +560454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468962872, + "complete_object_locator": 6468966968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560457,26 +560463,26 @@ }, { "type_name": "panorama::CStylePropertyRotate2DCentered", - "vtable_address": 6467626584, - "methods": [ - 6461916560, - 6461915744, - 6461915936, - 6461915968, - 6461880592, - 6461880608, - 6461916016, - 6461916480, - 6461915824, - 6461915856, - 6461880624, - 6461880640, - 6461916496, - 6461915952, - 6461880688, - 6461916512, - 6461916544, - 6461880704 + "vtable_address": 6467630680, + "methods": [ + 6461918752, + 6461917936, + 6461918128, + 6461918160, + 6461882784, + 6461882800, + 6461918208, + 6461918672, + 6461918016, + 6461918048, + 6461882816, + 6461882832, + 6461918688, + 6461918144, + 6461882880, + 6461918704, + 6461918736, + 6461882896 ], "bases": [ { @@ -560496,7 +560502,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963896, + "complete_object_locator": 6468967992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560505,26 +560511,26 @@ }, { "type_name": "panorama::CStylePropertySaturation", - "vtable_address": 6467627616, - "methods": [ - 6461917824, - 6461917552, - 6461917632, - 6461917664, - 6461880592, - 6461880608, - 6461917712, - 6461917744, - 6461917488, - 6461917520, - 6461880624, - 6461880640, - 6461917760, - 6461917648, - 6461880688, - 6461917776, - 6461917808, - 6461880704 + "vtable_address": 6467631712, + "methods": [ + 6461920016, + 6461919744, + 6461919824, + 6461919856, + 6461882784, + 6461882800, + 6461919904, + 6461919936, + 6461919680, + 6461919712, + 6461882816, + 6461882832, + 6461919952, + 6461919840, + 6461882880, + 6461919968, + 6461920000, + 6461882896 ], "bases": [ { @@ -560544,7 +560550,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964152, + "complete_object_locator": 6468968248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560553,26 +560559,26 @@ }, { "type_name": "panorama::CStylePropertyScale2DCentered", - "vtable_address": 6467625664, - "methods": [ - 6461914896, - 6461913616, - 6461913808, - 6461914016, - 6461880592, - 6461880608, - 6461914128, - 6461914672, - 6461913696, - 6461913760, - 6461880624, - 6461880640, - 6461914768, - 6461913824, - 6461880688, - 6461914784, - 6461914832, - 6461880704 + "vtable_address": 6467629760, + "methods": [ + 6461917088, + 6461915808, + 6461916000, + 6461916208, + 6461882784, + 6461882800, + 6461916320, + 6461916864, + 6461915888, + 6461915952, + 6461882816, + 6461882832, + 6461916960, + 6461916016, + 6461882880, + 6461916976, + 6461917024, + 6461882896 ], "bases": [ { @@ -560592,7 +560598,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963768, + "complete_object_locator": 6468967864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560601,26 +560607,26 @@ }, { "type_name": "panorama::CStylePropertySound", - "vtable_address": 6467645200, - "methods": [ - 6461950672, - 6461949648, - 6461949888, - 6461949904, - 6461880592, - 6461880608, - 6461949920, - 6461950352, - 6461950496, - 6461950512, - 6461880624, - 6461880640, - 6461880656, - 6461880672, - 6461880688, - 6461950528, - 6461950656, - 6461880704 + "vtable_address": 6467649296, + "methods": [ + 6461952864, + 6461951840, + 6461952080, + 6461952096, + 6461882784, + 6461882800, + 6461952112, + 6461952544, + 6461952688, + 6461952704, + 6461882816, + 6461882832, + 6461882848, + 6461882864, + 6461882880, + 6461952720, + 6461952848, + 6461882896 ], "bases": [ { @@ -560640,7 +560646,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972176, + "complete_object_locator": 6468976272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560649,26 +560655,26 @@ }, { "type_name": "panorama::CStylePropertyTextAlign", - "vtable_address": 6467637984, - "methods": [ - 6461942992, - 6461942496, - 6461942544, - 6461942560, - 6461880592, - 6461880608, - 6461942576, - 6461942816, - 6461942880, - 6461942896, - 6461880624, - 6461880640, - 6461942912, - 6461880672, - 6461880688, - 6461942928, - 6461942960, - 6461880704 + "vtable_address": 6467642080, + "methods": [ + 6461945184, + 6461944688, + 6461944736, + 6461944752, + 6461882784, + 6461882800, + 6461944768, + 6461945008, + 6461945072, + 6461945088, + 6461882816, + 6461882832, + 6461945104, + 6461882864, + 6461882880, + 6461945120, + 6461945152, + 6461882896 ], "bases": [ { @@ -560688,7 +560694,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966096, + "complete_object_locator": 6468970192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560697,26 +560703,26 @@ }, { "type_name": "panorama::CStylePropertyTextDecoration", - "vtable_address": 6467638664, + "vtable_address": 6467642760, "methods": [ - 6461943808, - 6461943488, - 6461943584, - 6461943600, - 6461880592, - 6461880608, - 6461943616, - 6461943664, - 6461943536, - 6461943552, - 6461880624, - 6461880640, - 6461943728, - 6461880672, - 6461880688, - 6461943744, - 6461943776, - 6461880704 + 6461946000, + 6461945680, + 6461945776, + 6461945792, + 6461882784, + 6461882800, + 6461945808, + 6461945856, + 6461945728, + 6461945744, + 6461882816, + 6461882832, + 6461945920, + 6461882864, + 6461882880, + 6461945936, + 6461945968, + 6461882896 ], "bases": [ { @@ -560736,7 +560742,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966352, + "complete_object_locator": 6468970448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560745,26 +560751,26 @@ }, { "type_name": "panorama::CStylePropertyTextDecorationStyle", - "vtable_address": 6467639008, + "vtable_address": 6467643104, "methods": [ - 6461944176, - 6461943856, - 6461943952, - 6461943968, - 6461880592, - 6461880608, - 6461943984, - 6461944032, - 6461943904, - 6461943920, - 6461880624, - 6461880640, - 6461944096, - 6461880672, - 6461880688, - 6461944112, - 6461944144, - 6461880704 + 6461946368, + 6461946048, + 6461946144, + 6461946160, + 6461882784, + 6461882800, + 6461946176, + 6461946224, + 6461946096, + 6461946112, + 6461882816, + 6461882832, + 6461946288, + 6461882864, + 6461882880, + 6461946304, + 6461946336, + 6461882896 ], "bases": [ { @@ -560784,7 +560790,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966480, + "complete_object_locator": 6468970576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560793,26 +560799,26 @@ }, { "type_name": "panorama::CStylePropertyTextLetterSpacing", - "vtable_address": 6467638360, + "vtable_address": 6467642456, "methods": [ - 6461943440, - 6461943040, - 6461943168, - 6461943184, - 6461880592, - 6461880608, - 6461943200, - 6461943344, - 6461943120, - 6461943136, - 6461943328, - 6461880640, - 6461943360, - 6461880672, - 6461880688, - 6461943376, - 6461943408, - 6461880704 + 6461945632, + 6461945232, + 6461945360, + 6461945376, + 6461882784, + 6461882800, + 6461945392, + 6461945536, + 6461945312, + 6461945328, + 6461945520, + 6461882832, + 6461945552, + 6461882864, + 6461882880, + 6461945568, + 6461945600, + 6461882896 ], "bases": [ { @@ -560832,7 +560838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966224, + "complete_object_locator": 6468970320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560841,26 +560847,26 @@ }, { "type_name": "panorama::CStylePropertyTextOverflow", - "vtable_address": 6467618832, + "vtable_address": 6467622928, "methods": [ - 6461903296, - 6461902352, - 6461902544, - 6461902560, - 6461880592, - 6461880608, - 6461902576, - 6461902976, - 6461902416, - 6461902448, - 6461902512, - 6461880640, - 6461903200, - 6461880672, - 6461880688, - 6461903232, - 6461903280, - 6461880704 + 6461905488, + 6461904544, + 6461904736, + 6461904752, + 6461882784, + 6461882800, + 6461904768, + 6461905168, + 6461904608, + 6461904640, + 6461904704, + 6461882832, + 6461905392, + 6461882864, + 6461882880, + 6461905424, + 6461905472, + 6461882896 ], "bases": [ { @@ -560880,7 +560886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968560, + "complete_object_locator": 6468972656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560889,26 +560895,26 @@ }, { "type_name": "panorama::CStylePropertyTextShadow", - "vtable_address": 6467632352, - "methods": [ - 6461928144, - 6461926496, - 6461926656, - 6461926688, - 6461880592, - 6461880608, - 6461927024, - 6461927664, - 6461926608, - 6461926624, - 6461927344, - 6461880640, - 6461927904, - 6461926672, - 6461880688, - 6461927920, - 6461928128, - 6461880704 + "vtable_address": 6467636448, + "methods": [ + 6461930336, + 6461928688, + 6461928848, + 6461928880, + 6461882784, + 6461882800, + 6461929216, + 6461929856, + 6461928800, + 6461928816, + 6461929536, + 6461882832, + 6461930096, + 6461928864, + 6461882880, + 6461930112, + 6461930320, + 6461882896 ], "bases": [ { @@ -560928,7 +560934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965328, + "complete_object_locator": 6468969424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560937,26 +560943,26 @@ }, { "type_name": "panorama::CStylePropertyTextTransform", - "vtable_address": 6467639352, - "methods": [ - 6461944544, - 6461944224, - 6461944272, - 6461944288, - 6461880592, - 6461880608, - 6461944304, - 6461944352, - 6461944416, - 6461944432, - 6461880624, - 6461880640, - 6461944464, - 6461880672, - 6461880688, - 6461944480, - 6461944512, - 6461880704 + "vtable_address": 6467643448, + "methods": [ + 6461946736, + 6461946416, + 6461946464, + 6461946480, + 6461882784, + 6461882800, + 6461946496, + 6461946544, + 6461946608, + 6461946624, + 6461882816, + 6461882832, + 6461946656, + 6461882864, + 6461882880, + 6461946672, + 6461946704, + 6461882896 ], "bases": [ { @@ -560976,7 +560982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468966608, + "complete_object_locator": 6468970704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -560985,26 +560991,26 @@ }, { "type_name": "panorama::CStylePropertyTextureSampleMode", - "vtable_address": 6467635464, - "methods": [ - 6461938080, - 6461937424, - 6461937520, - 6461937536, - 6461880592, - 6461880608, - 6461937552, - 6461937728, - 6461937472, - 6461937488, - 6461880624, - 6461880640, - 6461937824, - 6461880672, - 6461880688, - 6461937856, - 6461937904, - 6461880704 + "vtable_address": 6467639560, + "methods": [ + 6461940272, + 6461939616, + 6461939712, + 6461939728, + 6461882784, + 6461882800, + 6461939744, + 6461939920, + 6461939664, + 6461939680, + 6461882816, + 6461882832, + 6461940016, + 6461882864, + 6461882880, + 6461940048, + 6461940096, + 6461882896 ], "bases": [ { @@ -561024,7 +561030,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468970624, + "complete_object_locator": 6468974720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561033,26 +561039,26 @@ }, { "type_name": "panorama::CStylePropertyTooltipArrowPosition", - "vtable_address": 6467644056, + "vtable_address": 6467648152, "methods": [ - 6461947104, - 6461945312, - 6461945376, - 6461945520, - 6461880592, - 6461880608, - 6461945536, - 6461945584, - 6461945680, - 6461946896, - 6461880624, - 6461880640, - 6461947088, - 6461880672, - 6461880688, - 6461945712, - 6461945856, - 6461880704 + 6461949296, + 6461947504, + 6461947568, + 6461947712, + 6461882784, + 6461882800, + 6461947728, + 6461947776, + 6461947872, + 6461949088, + 6461882816, + 6461882832, + 6461949280, + 6461882864, + 6461882880, + 6461947904, + 6461948048, + 6461882896 ], "bases": [ { @@ -561100,7 +561106,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468971888, + "complete_object_locator": 6468975984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561109,26 +561115,26 @@ }, { "type_name": "panorama::CStylePropertyTooltipBodyPosition", - "vtable_address": 6467641944, + "vtable_address": 6467646040, "methods": [ - 6461946768, - 6461945312, - 6461945376, - 6461945520, - 6461880592, - 6461880608, - 6461945536, - 6461945584, - 6461945680, - 6461945968, - 6461880624, - 6461880640, - 6461946688, - 6461880672, - 6461880688, - 6461945712, - 6461945856, - 6461880704 + 6461948960, + 6461947504, + 6461947568, + 6461947712, + 6461882784, + 6461882800, + 6461947728, + 6461947776, + 6461947872, + 6461948160, + 6461882816, + 6461882832, + 6461948880, + 6461882864, + 6461882880, + 6461947904, + 6461948048, + 6461882896 ], "bases": [ { @@ -561176,7 +561182,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468971504, + "complete_object_locator": 6468975600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561185,26 +561191,26 @@ }, { "type_name": "panorama::CStylePropertyTooltipPosition", - "vtable_address": 6467639504, + "vtable_address": 6467643600, "methods": [ - 6461944608, - 6461941632, - 6461941776, - 6461941904, - 6461880592, - 6461880608, - 6461942064, - 6461942080, - 6461942240, - 6461942288, - 6461880624, - 6461880640, - 6461944592, - 6461880672, - 6461880688, - 6461942304, - 6461942352, - 6461880704 + 6461946800, + 6461943824, + 6461943968, + 6461944096, + 6461882784, + 6461882800, + 6461944256, + 6461944272, + 6461944432, + 6461944480, + 6461882816, + 6461882832, + 6461946784, + 6461882864, + 6461882880, + 6461944496, + 6461944544, + 6461882896 ], "bases": [ { @@ -561238,7 +561244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468971008, + "complete_object_locator": 6468975104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561247,26 +561253,26 @@ }, { "type_name": "panorama::CStylePropertyTransform3D", - "vtable_address": 6467650264, + "vtable_address": 6467654360, "methods": [ - 6461956640, - 6461947152, - 6461947696, - 6461947728, - 6461880592, - 6461880608, - 6461948144, - 6461949216, - 6461947648, - 6461947664, - 6461948688, - 6461880640, - 6461949392, - 6461947712, - 6461880688, - 6461949456, - 6461949632, - 6461880704 + 6461958832, + 6461949344, + 6461949888, + 6461949920, + 6461882784, + 6461882800, + 6461950336, + 6461951408, + 6461949840, + 6461949856, + 6461950880, + 6461882832, + 6461951584, + 6461949904, + 6461882880, + 6461951648, + 6461951824, + 6461882896 ], "bases": [ { @@ -561286,7 +561292,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468967264, + "complete_object_locator": 6468971360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561295,26 +561301,26 @@ }, { "type_name": "panorama::CStylePropertyTransformOrigin", - "vtable_address": 6467621448, + "vtable_address": 6467625544, "methods": [ - 6461907472, - 6461905360, - 6461905568, - 6461905712, - 6461880592, - 6461880608, - 6461906608, - 6461907120, - 6461905456, - 6461905504, - 6461906800, - 6461880640, - 6461907248, - 6461880672, - 6461880688, - 6461907264, - 6461907456, - 6461880704 + 6461909664, + 6461907552, + 6461907760, + 6461907904, + 6461882784, + 6461882800, + 6461908800, + 6461909312, + 6461907648, + 6461907696, + 6461908992, + 6461882832, + 6461909440, + 6461882864, + 6461882880, + 6461909456, + 6461909648, + 6461882896 ], "bases": [ { @@ -561334,7 +561340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963128, + "complete_object_locator": 6468967224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561343,26 +561349,26 @@ }, { "type_name": "panorama::CStylePropertyTransitionProperties", - "vtable_address": 6467650960, - "methods": [ - 6461961056, - 6461956960, - 6461957920, - 6461957936, - 6461880592, - 6461880608, - 6461957952, - 6461960192, - 6461959888, - 6461959984, - 6461880624, - 6461880640, - 6461960592, - 6461880672, - 6461880688, - 6461960720, - 6461961040, - 6461880704 + "vtable_address": 6467655056, + "methods": [ + 6461963248, + 6461959152, + 6461960112, + 6461960128, + 6461882784, + 6461882800, + 6461960144, + 6461962384, + 6461962080, + 6461962176, + 6461882816, + 6461882832, + 6461962784, + 6461882864, + 6461882880, + 6461962912, + 6461963232, + 6461882896 ], "bases": [ { @@ -561382,7 +561388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468967392, + "complete_object_locator": 6468971488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561391,26 +561397,26 @@ }, { "type_name": "panorama::CStylePropertyUIScale", - "vtable_address": 6467645904, - "methods": [ - 6461952400, - 6461951376, - 6461951472, - 6461951488, - 6461880592, - 6461880608, - 6461951600, - 6461951984, - 6461952144, - 6461952208, - 6461880624, - 6461880640, - 6461952384, - 6461880672, - 6461880688, - 6461952288, - 6461952352, - 6461880704 + "vtable_address": 6467650000, + "methods": [ + 6461954592, + 6461953568, + 6461953664, + 6461953680, + 6461882784, + 6461882800, + 6461953792, + 6461954176, + 6461954336, + 6461954400, + 6461882816, + 6461882832, + 6461954576, + 6461882864, + 6461882880, + 6461954480, + 6461954544, + 6461882896 ], "bases": [ { @@ -561430,7 +561436,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972576, + "complete_object_locator": 6468976672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561439,26 +561445,26 @@ }, { "type_name": "panorama::CStylePropertyVisible", - "vtable_address": 6467625512, + "vtable_address": 6467629608, "methods": [ - 6461914848, - 6461913472, - 6461913600, - 6461913744, - 6461880592, - 6461880608, - 6461913840, - 6461913952, - 6461913552, - 6461913568, - 6461880624, - 6461880640, - 6461914080, - 6461880672, - 6461880688, - 6461914096, - 6461914624, - 6461880704 + 6461917040, + 6461915664, + 6461915792, + 6461915936, + 6461882784, + 6461882800, + 6461916032, + 6461916144, + 6461915744, + 6461915760, + 6461882816, + 6461882832, + 6461916272, + 6461882864, + 6461882880, + 6461916288, + 6461916816, + 6461882896 ], "bases": [ { @@ -561478,7 +561484,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468969456, + "complete_object_locator": 6468973552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561487,26 +561493,26 @@ }, { "type_name": "panorama::CStylePropertyWashColor", - "vtable_address": 6467634720, - "methods": [ - 6461937376, - 6461936832, - 6461936960, - 6461936992, - 6461880592, - 6461880608, - 6461937088, - 6461937296, - 6461936912, - 6461936928, - 6461880624, - 6461880640, - 6461937312, - 6461936976, - 6461880688, - 6461937328, - 6461937360, - 6461880704 + "vtable_address": 6467638816, + "methods": [ + 6461939568, + 6461939024, + 6461939152, + 6461939184, + 6461882784, + 6461882800, + 6461939280, + 6461939488, + 6461939104, + 6461939120, + 6461882816, + 6461882832, + 6461939504, + 6461939168, + 6461882880, + 6461939520, + 6461939552, + 6461882896 ], "bases": [ { @@ -561526,7 +561532,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468965712, + "complete_object_locator": 6468969808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561535,26 +561541,26 @@ }, { "type_name": "panorama::CStylePropertyWhiteSpace", - "vtable_address": 6467618288, + "vtable_address": 6467622384, "methods": [ - 6461900512, - 6461900096, - 6461900192, - 6461900208, - 6461880592, - 6461880608, - 6461900224, - 6461900352, - 6461900144, - 6461900160, - 6461880624, - 6461880640, - 6461900416, - 6461880672, - 6461880688, - 6461900448, - 6461900496, - 6461880704 + 6461902704, + 6461902288, + 6461902384, + 6461902400, + 6461882784, + 6461882800, + 6461902416, + 6461902544, + 6461902336, + 6461902352, + 6461882816, + 6461882832, + 6461902608, + 6461882864, + 6461882880, + 6461902640, + 6461902688, + 6461882896 ], "bases": [ { @@ -561574,7 +561580,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968432, + "complete_object_locator": 6468972528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561583,26 +561589,26 @@ }, { "type_name": "panorama::CStylePropertyWidth", - "vtable_address": 6467619960, - "methods": [ - 6461904480, - 6461903344, - 6461903456, - 6461903472, - 6461880592, - 6461880608, - 6461903856, - 6461904064, - 6461903392, - 6461903408, - 6461903904, - 6461880640, - 6461904080, - 6461880672, - 6461880688, - 6461904096, - 6461904240, - 6461880704 + "vtable_address": 6467624056, + "methods": [ + 6461906672, + 6461905536, + 6461905648, + 6461905664, + 6461882784, + 6461882800, + 6461906048, + 6461906256, + 6461905584, + 6461905600, + 6461906096, + 6461882832, + 6461906272, + 6461882864, + 6461882880, + 6461906288, + 6461906432, + 6461882896 ], "bases": [ { @@ -561622,7 +561628,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468968688, + "complete_object_locator": 6468972784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561631,26 +561637,26 @@ }, { "type_name": "panorama::CStylePropertyWorldBlur", - "vtable_address": 6467629936, - "methods": [ - 6461924096, - 6461923024, - 6461923264, - 6461923280, - 6461880592, - 6461880608, - 6461923376, - 6461923440, - 6461923120, - 6461923184, - 6461923232, - 6461880640, - 6461924080, - 6461880672, - 6461880688, - 6461923728, - 6461923792, - 6461880704 + "vtable_address": 6467634032, + "methods": [ + 6461926288, + 6461925216, + 6461925456, + 6461925472, + 6461882784, + 6461882800, + 6461925568, + 6461925632, + 6461925312, + 6461925376, + 6461925424, + 6461882832, + 6461926272, + 6461882864, + 6461882880, + 6461925920, + 6461925984, + 6461882896 ], "bases": [ { @@ -561684,7 +561690,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468964928, + "complete_object_locator": 6468969024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561693,26 +561699,26 @@ }, { "type_name": "panorama::CStylePropertyZIndex", - "vtable_address": 6467624064, + "vtable_address": 6467628160, "methods": [ - 6461912112, - 6461911792, - 6461911904, - 6461911920, - 6461880592, - 6461880608, - 6461912016, - 6461912032, - 6461911840, - 6461911872, - 6461880624, - 6461880640, - 6461912048, - 6461880672, - 6461880688, - 6461912064, - 6461912096, - 6461880704 + 6461914304, + 6461913984, + 6461914096, + 6461914112, + 6461882784, + 6461882800, + 6461914208, + 6461914224, + 6461914032, + 6461914064, + 6461882816, + 6461882832, + 6461914240, + 6461882864, + 6461882880, + 6461914256, + 6461914288, + 6461882896 ], "bases": [ { @@ -561732,7 +561738,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468963512, + "complete_object_locator": 6468967608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561741,35 +561747,35 @@ }, { "type_name": "panorama::CTabButton", - "vtable_address": 6467696384, + "vtable_address": 6467700480, "methods": [ 6443876544, - 6461535472, - 6462316592, - 6462316624, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462318784, + 6462318816, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6462314480, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6462316672, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -561782,12 +561788,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -561802,29 +561808,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462316560, - 6462314272, + 6461548896, + 6462318752, + 6462316464, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, - 6462316688, - 6461515216, - 6461531136, - 6461504352, + 6462318880, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -561860,7 +561866,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468982864, + "complete_object_locator": 6468986960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561869,35 +561875,35 @@ }, { "type_name": "panorama::CTabContents", - "vtable_address": 6467697064, + "vtable_address": 6467701160, "methods": [ 6443876544, - 6461535472, - 6462316608, - 6462316656, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462318800, + 6462318848, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6462315232, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6462317424, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -561910,12 +561916,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -561930,29 +561936,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462316576, - 6462314368, + 6461548896, + 6462318768, + 6462316560, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -561988,7 +561994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983000, + "complete_object_locator": 6468987096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -561997,35 +562003,35 @@ }, { "type_name": "panorama::CTextButton", - "vtable_address": 6467575208, + "vtable_address": 6467579304, "methods": [ 6443876544, - 6461535472, - 6461638720, - 6461641424, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461640912, + 6461643616, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461634832, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461637024, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -562038,12 +562044,12 @@ 6443913856, 6443821360, 6443848384, - 6461646672, - 6461505456, - 6461505088, - 6461526000, + 6461648864, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -562058,33 +562064,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461638640, - 6461632816, + 6461548896, + 6461640832, + 6461635008, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461641504, - 6461635952, + 6461517408, + 6461643696, + 6461638144, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461641488, + 6461643680, 6443798832, 6443858048, - 6461642096, - 6461646032 + 6461644288, + 6461648224 ], "bases": [ { @@ -562132,7 +562138,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468955896, + "complete_object_locator": 6468959992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -562141,53 +562147,53 @@ }, { "type_name": "panorama::CTextEntry", - "vtable_address": 6467585288, + "vtable_address": 6467589384, "methods": [ 6443876544, - 6461535472, - 6461719488, - 6461730224, - 6461742896, - 6461546688, - 6461559344, - 6461733936, - 6461738000, - 6461734784, - 6461737872, - 6461737696, - 6461536000, - 6461536016, - 6461535504, - 6461740464, - 6461741472, - 6461739712, - 6461741312, - 6461538896, - 6461741536, + 6461537664, + 6461721680, + 6461732416, + 6461745088, + 6461548880, + 6461561536, + 6461736128, + 6461740192, + 6461736976, + 6461740064, + 6461739888, + 6461538192, + 6461538208, + 6461537696, + 6461742656, + 6461743664, + 6461741904, + 6461743504, + 6461541088, + 6461743728, 6443802144, - 6461535456, - 6461545040, - 6461710816, - 6461503872, - 6461711024, + 6461537648, + 6461547232, + 6461713008, + 6461506064, + 6461713216, 6443844992, 6443848064, 6443844976, - 6461734560, - 6461742224, + 6461736752, + 6461744416, 6443845024, 6443848560, 6443848128, - 6461710992, + 6461713184, 6443913856, - 6461719392, + 6461721584, 6443848384, - 6461754144, - 6461505456, - 6461505088, - 6461526000, + 6461756336, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -562202,33 +562208,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461719440, - 6461706960, + 6461548896, + 6461721632, + 6461709152, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, - 6461711008, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, + 6461713200, 6443866800, - 6461719104, - 6461531136, - 6461504352, + 6461721296, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6461750400, - 6461748432 + 6461752592, + 6461750624 ], "bases": [ { @@ -562304,7 +562310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468958832, + "complete_object_locator": 6468962928, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -562313,22 +562319,22 @@ }, { "type_name": "panorama::CTextEntry", - "vtable_address": 6467585984, - "methods": [ - 6461706948, - 6461737468, - 6461737880, - 6461737764, - 6461712176, - 6461719088, - 6461719072, - 6461746624, - 6461746240, - 6461730320, - 6461730336, - 6461718992, - 6461742656, - 6461749824 + "vtable_address": 6467590080, + "methods": [ + 6461709140, + 6461739660, + 6461740072, + 6461739956, + 6461714368, + 6461721280, + 6461721264, + 6461748816, + 6461748432, + 6461732512, + 6461732528, + 6461721184, + 6461744848, + 6461752016 ], "bases": [ { @@ -562404,7 +562410,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959112, + "complete_object_locator": 6468963208, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -562413,37 +562419,37 @@ }, { "type_name": "panorama::CTextEntry", - "vtable_address": 6467586104, - "methods": [ - 6461725072, - 6461729232, + "vtable_address": 6467590200, + "methods": [ + 6461727264, + 6461731424, + 6461727552, + 6461726784, + 6461725136, + 6461723424, + 6461724384, + 6461730112, + 6461729872, + 6461731152, + 6461726544, + 6461726304, + 6461727024, + 6461728320, + 6461731440, + 6461731696, + 6461727280, + 6461725696, + 6461727616, + 6461725952, + 6461729088, 6461725360, - 6461724592, - 6461722944, - 6461721232, - 6461722192, - 6461727920, - 6461727680, - 6461728960, - 6461724352, + 6461728048, 6461724112, - 6461724832, - 6461726128, - 6461729248, - 6461729504, - 6461725088, - 6461723504, - 6461725424, - 6461723760, - 6461726896, - 6461723168, - 6461725856, - 6461721920, - 6461729744, - 6461726672, - 6461727120, - 6461720432, - 6461727424 + 6461731936, + 6461728864, + 6461729312, + 6461722624, + 6461729616 ], "bases": [ { @@ -562519,7 +562525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959152, + "complete_object_locator": 6468963248, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -562528,35 +562534,35 @@ }, { "type_name": "panorama::CTextEntryAutocomplete", - "vtable_address": 6467586344, + "vtable_address": 6467590440, "methods": [ 6443876544, - 6461535472, - 6461719504, - 6461730256, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461721696, + 6461732448, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461739456, - 6461737488, - 6461737904, - 6461737776, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461741648, + 6461739680, + 6461740096, + 6461739968, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -562569,12 +562575,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -562589,29 +562595,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461719456, - 6461707024, + 6461548896, + 6461721648, + 6461709216, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -562647,7 +562653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468958560, + "complete_object_locator": 6468962656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -562656,35 +562662,35 @@ }, { "type_name": "panorama::CTextEntryIMEControls", - "vtable_address": 6467587024, + "vtable_address": 6467591120, "methods": [ 6443876544, - 6461535472, - 6461719520, - 6461730288, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461721712, + 6461732480, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461739664, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461741856, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -562697,12 +562703,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -562717,29 +562723,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461719472, - 6461707088, + 6461548896, + 6461721664, + 6461709280, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -562775,7 +562781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468958696, + "complete_object_locator": 6468962792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -562784,35 +562790,35 @@ }, { "type_name": "panorama::CTextInputDaisyWheel", - "vtable_address": 6467715344, + "vtable_address": 6467719440, "methods": [ 6443876544, - 6461535472, - 6462411472, - 6462412528, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462413664, + 6462414720, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6462420720, - 6462420864, - 6462420768, - 6462420576, - 6462420592, - 6462417328, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462422912, + 6462423056, + 6462422960, + 6462422768, + 6462422784, + 6462419520, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -562825,12 +562831,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -562845,35 +562851,35 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462411456, - 6462404736, + 6461548896, + 6462413648, + 6462406928, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462411440, - 6462425952, - 6462424880, - 6462405472 + 6462413632, + 6462428144, + 6462427072, + 6462407664 ], "bases": [ { @@ -562921,7 +562927,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985816, + "complete_object_locator": 6468989912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -562930,35 +562936,35 @@ }, { "type_name": "panorama::CTextInputHandler", - "vtable_address": 6467709264, + "vtable_address": 6467713360, "methods": [ 6443876544, - 6461535472, - 6456629776, + 6461537664, + 6456631552, 6443827424, - 6461546672, - 6461546688, - 6461559344, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -562971,12 +562977,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -562991,35 +562997,35 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6456629280, - 6462376640, + 6461548896, + 6456631056, + 6462378832, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [ { @@ -563053,7 +563059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985000, + "complete_object_locator": 6468989096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563062,35 +563068,35 @@ }, { "type_name": "panorama::CTextTooltip", - "vtable_address": 6467667632, + "vtable_address": 6467671728, "methods": [ 6443876544, - 6461535472, - 6462112368, - 6462112480, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462114560, + 6462114672, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462113024, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462115216, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -563103,12 +563109,12 @@ 6443913856, 6443821360, 6443848384, - 6462114016, - 6461505456, - 6461505088, - 6461526000, + 6462116208, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -563123,33 +563129,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462112336, - 6462111744, + 6461548896, + 6462114528, + 6462113936, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6462112592, - 6462111872, + 6461517408, + 6462114784, + 6462114064, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6462112512, + 6462114704, 6443798832, 6443858048, - 6456609520, - 6462114064 + 6456611296, + 6462116256 ], "bases": [ { @@ -563197,7 +563203,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978680, + "complete_object_locator": 6468982776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563206,35 +563212,35 @@ }, { "type_name": "panorama::CToggleButton", - "vtable_address": 6467575904, + "vtable_address": 6467580000, "methods": [ 6443876544, - 6461535472, - 6461638736, - 6461641456, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461640928, + 6461643648, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461641808, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461538224, + 6461538256, + 6461644000, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461635312, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461637504, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -563247,12 +563253,12 @@ 6443913856, 6443821360, 6443848384, - 6461646752, - 6461505456, - 6461505088, - 6461526000, + 6461648944, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -563267,33 +563273,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461638656, - 6461632880, + 6461548896, + 6461640848, + 6461635072, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, - 6461646000, - 6461515216, - 6461641504, - 6461635952, + 6461648192, + 6461517408, + 6461643696, + 6461638144, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461641488, + 6461643680, 6443798832, 6443858048, - 6461638208, - 6461642112 + 6461640400, + 6461644304 ], "bases": [ { @@ -563341,7 +563347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956040, + "complete_object_locator": 6468960136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563350,35 +563356,35 @@ }, { "type_name": "panorama::CTooltip", - "vtable_address": 6467666936, + "vtable_address": 6467671032, "methods": [ 6443876544, - 6461535472, - 6462112384, - 6456634576, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462114576, + 6456636352, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6462113024, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6462115216, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -563391,12 +563397,12 @@ 6443913856, 6443821360, 6443848384, - 6462114016, - 6461505456, - 6461505088, - 6461526000, + 6462116208, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -563411,33 +563417,33 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462112352, - 6462111808, + 6461548896, + 6462114544, + 6462114000, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6456609520, - 6462114064 + 6456611296, + 6462116256 ], "bases": [ { @@ -563471,7 +563477,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978640, + "complete_object_locator": 6468982736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563480,20 +563486,20 @@ }, { "type_name": "panorama::CTransform3D", - "vtable_address": 6466372696, + "vtable_address": 6466376856, "methods": [ - 6452642880, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6452644496, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468684504, + "complete_object_locator": 6468688600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563502,15 +563508,15 @@ }, { "type_name": "panorama::CTransformRotate3D", - "vtable_address": 6466408144, + "vtable_address": 6466412304, "methods": [ - 6452808656, - 6452856416, - 6452856272, - 6452818736, - 6452898848, - 6452811648, - 6452804736 + 6452810272, + 6452858032, + 6452857888, + 6452820352, + 6452900464, + 6452813264, + 6452806352 ], "bases": [ { @@ -563530,7 +563536,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468690240, + "complete_object_locator": 6468694336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563539,15 +563545,15 @@ }, { "type_name": "panorama::CTransformScale3D", - "vtable_address": 6466408208, + "vtable_address": 6466412368, "methods": [ - 6452808704, - 6452856432, - 6452856368, - 6452818800, - 6452898864, - 6452811744, - 6452804816 + 6452810320, + 6452858048, + 6452857984, + 6452820416, + 6452900480, + 6452813360, + 6452806432 ], "bases": [ { @@ -563567,7 +563573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468690368, + "complete_object_locator": 6468694464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563576,15 +563582,15 @@ }, { "type_name": "panorama::CTransformSkew3D", - "vtable_address": 6467561848, + "vtable_address": 6467565944, "methods": [ - 6461363824, - 6461400000, - 6461399904, - 6461398512, - 6461401776, - 6461367648, - 6461363728 + 6461366016, + 6461402192, + 6461402096, + 6461400704, + 6461403968, + 6461369840, + 6461365920 ], "bases": [ { @@ -563604,7 +563610,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954520, + "complete_object_locator": 6468958616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563613,15 +563619,15 @@ }, { "type_name": "panorama::CTransformTranslate3D", - "vtable_address": 6466372760, + "vtable_address": 6466376920, "methods": [ - 6452642928, - 6452697632, - 6452697296, - 6452652912, - 6452763072, - 6452647920, - 6452635072 + 6452644544, + 6452699248, + 6452698912, + 6452654528, + 6452764688, + 6452649536, + 6452636688 ], "bases": [ { @@ -563641,7 +563647,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468684624, + "complete_object_locator": 6468688720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563650,12 +563656,12 @@ }, { "type_name": "panorama::CUIEvent<0,bool *>", - "vtable_address": 6466311416, + "vtable_address": 6466315576, "methods": [ - 6452109008, - 6452144928, - 6452135792, - 6452190528 + 6452110592, + 6452146512, + 6452137376, + 6452192112 ], "bases": [ { @@ -563675,7 +563681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468655192, + "complete_object_locator": 6468659288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563684,12 +563690,12 @@ }, { "type_name": "panorama::CUIEvent<0,bool,bool>", - "vtable_address": 6466211264, + "vtable_address": 6466215376, "methods": [ - 6451773728, - 6451843440, - 6451823616, - 6451876432 + 6451775312, + 6451845024, + 6451825200, + 6451878016 ], "bases": [ { @@ -563709,7 +563715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468638952, + "complete_object_locator": 6468643048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563718,12 +563724,12 @@ }, { "type_name": "panorama::CUIEvent<0,bool,class panorama::CPanelPtr >", - "vtable_address": 6467601808, + "vtable_address": 6467605904, "methods": [ - 6461848960, - 6461848400, - 6461848464, - 6461848752 + 6461851152, + 6461850592, + 6461850656, + 6461850944 ], "bases": [ { @@ -563743,7 +563749,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960952, + "complete_object_locator": 6468965048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563752,12 +563758,12 @@ }, { "type_name": "panorama::CUIEvent<0,bool,int,int>", - "vtable_address": 6466590552, + "vtable_address": 6466594680, "methods": [ - 6454069104, - 6454068608, - 6454068672, - 6454068960 + 6454070864, + 6454070368, + 6454070432, + 6454070720 ], "bases": [ { @@ -563777,7 +563783,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468731328, + "complete_object_locator": 6468735424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563786,7 +563792,7 @@ }, { "type_name": "panorama::CUIEvent<0,bool>", - "vtable_address": 6464443064, + "vtable_address": 6464447160, "methods": [ 6443892640, 6443892224, @@ -563811,7 +563817,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225568, + "complete_object_locator": 6468229664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563820,12 +563826,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,bool,bool,char const *>", - "vtable_address": 6466660888, + "vtable_address": 6466664984, "methods": [ - 6454961584, - 6454961024, - 6454961104, - 6454961424 + 6454963344, + 6454962784, + 6454962864, + 6454963184 ], "bases": [ { @@ -563845,7 +563851,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752696, + "complete_object_locator": 6468756792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563854,12 +563860,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,bool>", - "vtable_address": 6466366656, + "vtable_address": 6466370816, "methods": [ - 6452572128, - 6452571632, - 6452571696, - 6452572000 + 6452573744, + 6452573248, + 6452573312, + 6452573616 ], "bases": [ { @@ -563879,7 +563885,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683992, + "complete_object_locator": 6468688088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563888,12 +563894,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,bool>", - "vtable_address": 6466367224, + "vtable_address": 6466371384, "methods": [ - 6452574368, - 6452573856, - 6452573920, - 6452574224 + 6452575984, + 6452575472, + 6452575536, + 6452575840 ], "bases": [ { @@ -563913,7 +563919,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683480, + "complete_object_locator": 6468687576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563922,12 +563928,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,char const *,bool,bool>", - "vtable_address": 6466371736, + "vtable_address": 6466375896, "methods": [ - 6452577856, - 6452577248, - 6452577344, - 6452577680 + 6452579472, + 6452578864, + 6452578960, + 6452579296 ], "bases": [ { @@ -563947,7 +563953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682696, + "complete_object_locator": 6468686792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563956,12 +563962,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,char const *,char const *,bool>", - "vtable_address": 6466591000, + "vtable_address": 6466595128, "methods": [ - 6454070272, - 6454069552, - 6454069648, - 6454069984 + 6454072032, + 6454071312, + 6454071408, + 6454071744 ], "bases": [ { @@ -563981,7 +563987,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468732560, + "complete_object_locator": 6468736656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -563990,12 +563996,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,char const *,char const *,char const *,char const *>", - "vtable_address": 6466408104, + "vtable_address": 6466412264, "methods": [ - 6452786928, - 6452786256, - 6452786368, - 6452786736 + 6452788544, + 6452787872, + 6452787984, + 6452788352 ], "bases": [ { @@ -564015,7 +564021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689848, + "complete_object_locator": 6468693944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564024,12 +564030,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,char const *,char const *,char const *>", - "vtable_address": 6466367384, + "vtable_address": 6466371544, "methods": [ - 6452575632, - 6452575008, - 6452575104, - 6452575456 + 6452577248, + 6452576624, + 6452576720, + 6452577072 ], "bases": [ { @@ -564049,7 +564055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683736, + "complete_object_locator": 6468687832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564058,7 +564064,7 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,char const *,char const *>", - "vtable_address": 6464413040, + "vtable_address": 6464417136, "methods": [ 6443772448, 6443771888, @@ -564083,7 +564089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468215216, + "complete_object_locator": 6468219312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564092,12 +564098,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,char const *>", - "vtable_address": 6466372464, + "vtable_address": 6466376624, "methods": [ - 6452579536, - 6452579008, - 6452579072, - 6452579392 + 6452581152, + 6452580624, + 6452580688, + 6452581008 ], "bases": [ { @@ -564117,7 +564123,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683080, + "complete_object_locator": 6468687176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564126,12 +564132,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,class panorama::CPanelPtr >", - "vtable_address": 6466366224, + "vtable_address": 6466370384, "methods": [ - 6452571552, - 6452570800, - 6452570976, - 6452571280 + 6452573168, + 6452572416, + 6452572592, + 6452572896 ], "bases": [ { @@ -564151,7 +564157,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468684120, + "complete_object_locator": 6468688216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564160,7 +564166,7 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,float>", - "vtable_address": 6464412136, + "vtable_address": 6464416232, "methods": [ 6443767664, 6443767152, @@ -564185,7 +564191,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468215736, + "complete_object_locator": 6468219832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564194,12 +564200,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *,int>", - "vtable_address": 6466260264, + "vtable_address": 6466264408, "methods": [ - 6452053152, - 6452062240, - 6452062304, - 6452062608 + 6452054736, + 6452063824, + 6452063888, + 6452064192 ], "bases": [ { @@ -564219,7 +564225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468647824, + "complete_object_locator": 6468651920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564228,7 +564234,7 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,char const *>", - "vtable_address": 6464443104, + "vtable_address": 6464447200, "methods": [ 6443893168, 6443892688, @@ -564253,7 +564259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225952, + "complete_object_locator": 6468230048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564262,12 +564268,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,enum CCSGO_HudHintText::EPriority>", - "vtable_address": 6466489048, + "vtable_address": 6466493176, "methods": [ - 6453454224, - 6453453744, - 6453453792, - 6453454080 + 6453455984, + 6453455504, + 6453455552, + 6453455840 ], "bases": [ { @@ -564287,7 +564293,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468708120, + "complete_object_locator": 6468712216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564296,7 +564302,7 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,enum ELeaderboardType>", - "vtable_address": 6464863032, + "vtable_address": 6464867112, "methods": [ 6445617744, 6445617264, @@ -564321,7 +564327,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291872, + "complete_object_locator": 6468295968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564330,7 +564336,7 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,float>", - "vtable_address": 6464412240, + "vtable_address": 6464416336, "methods": [ 6443768528, 6443768064, @@ -564355,7 +564361,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468215608, + "complete_object_locator": 6468219704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564364,12 +564370,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,int>", - "vtable_address": 6465901088, + "vtable_address": 6465905280, "methods": [ - 6450336320, - 6450335856, - 6450335904, - 6450336192 + 6450337888, + 6450337424, + 6450337472, + 6450337760 ], "bases": [ { @@ -564389,7 +564395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468555728, + "complete_object_locator": 6468559824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564398,12 +564404,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,struct LineColumn_t>", - "vtable_address": 6467673736, + "vtable_address": 6467677832, "methods": [ - 6462163600, - 6462174080, - 6462173616, - 6462183552 + 6462165792, + 6462176272, + 6462175808, + 6462185744 ], "bases": [ { @@ -564423,7 +564429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468979504, + "complete_object_locator": 6468983600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564432,12 +564438,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,uint64_t,int>", - "vtable_address": 6466602072, + "vtable_address": 6466606168, "methods": [ - 6454075968, - 6454075456, - 6454075520, - 6454075824 + 6454077728, + 6454077216, + 6454077280, + 6454077584 ], "bases": [ { @@ -564457,7 +564463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468732176, + "complete_object_locator": 6468736272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564466,12 +564472,12 @@ }, { "type_name": "panorama::CUIEvent<0,char const *,unsigned int>", - "vtable_address": 6467686592, + "vtable_address": 6467690688, "methods": [ - 6462219744, - 6462236432, - 6462232784, - 6462240784 + 6462221936, + 6462238624, + 6462234976, + 6462242976 ], "bases": [ { @@ -564491,7 +564497,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981320, + "complete_object_locator": 6468985416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564500,7 +564506,7 @@ }, { "type_name": "panorama::CUIEvent<0,char const *>", - "vtable_address": 6464442840, + "vtable_address": 6464446936, "methods": [ 6443890528, 6443890096, @@ -564525,7 +564531,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225696, + "complete_object_locator": 6468229792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564534,12 +564540,12 @@ }, { "type_name": "panorama::CUIEvent<0,class CCSUsrMsg_RoundEndReportData_t const *>", - "vtable_address": 6466517832, + "vtable_address": 6466521960, "methods": [ - 6453604752, - 6453604272, - 6453604320, - 6453604608 + 6453606512, + 6453606032, + 6453606080, + 6453606368 ], "bases": [ { @@ -564559,7 +564565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714512, + "complete_object_locator": 6468718608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564568,12 +564574,12 @@ }, { "type_name": "panorama::CUIEvent<0,class CPlayerSlot>", - "vtable_address": 6466261376, + "vtable_address": 6466265488, "methods": [ - 6452053840, - 6452053424, - 6452053472, - 6452053744 + 6452055424, + 6452055008, + 6452055056, + 6452055328 ], "bases": [ { @@ -564593,7 +564599,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468647616, + "complete_object_locator": 6468651712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564602,12 +564608,12 @@ }, { "type_name": "panorama::CUIEvent<0,class C_CSPlayerPawn *,int>", - "vtable_address": 6466211304, + "vtable_address": 6466215416, "methods": [ - 6451773680, - 6451843392, - 6451823328, - 6451876288 + 6451775264, + 6451844976, + 6451824912, + 6451877872 ], "bases": [ { @@ -564627,7 +564633,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468638328, + "complete_object_locator": 6468642424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564636,12 +564642,12 @@ }, { "type_name": "panorama::CUIEvent<0,class C_CSWeaponBase *>", - "vtable_address": 6465688256, + "vtable_address": 6465692448, "methods": [ - 6448652544, - 6448652096, - 6448652144, - 6448652432 + 6448654112, + 6448653664, + 6448653712, + 6448654000 ], "bases": [ { @@ -564661,7 +564667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468486888, + "complete_object_locator": 6468490984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564670,12 +564676,12 @@ }, { "type_name": "panorama::CUIEvent<0,class C_EconItemView const *>", - "vtable_address": 6466430120, + "vtable_address": 6466434280, "methods": [ - 6452913616, - 6452913168, - 6452913216, - 6452913504 + 6452915232, + 6452914784, + 6452914832, + 6452915120 ], "bases": [ { @@ -564695,7 +564701,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695176, + "complete_object_locator": 6468699272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564704,12 +564710,12 @@ }, { "type_name": "panorama::CUIEvent<0,class IVideoPlayer *>", - "vtable_address": 6466430376, + "vtable_address": 6466434536, "methods": [ - 6452914112, - 6452913664, - 6452913712, - 6452914000 + 6452915728, + 6452915280, + 6452915328, + 6452915616 ], "bases": [ { @@ -564729,7 +564735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694536, + "complete_object_locator": 6468698632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564738,12 +564744,12 @@ }, { "type_name": "panorama::CUIEvent<0,class SoundEventGuid_t>", - "vtable_address": 6467572184, + "vtable_address": 6467576280, "methods": [ - 6461502992, - 6461506256, - 6461504816, - 6461515968 + 6461505184, + 6461508448, + 6461507008, + 6461518160 ], "bases": [ { @@ -564763,7 +564769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954688, + "complete_object_locator": 6468958784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564772,12 +564778,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CImagePanel *>", - "vtable_address": 6466572920, + "vtable_address": 6466577048, "methods": [ - 6453918368, - 6453921664, - 6453921712, - 6453922000 + 6453920128, + 6453923424, + 6453923472, + 6453923760 ], "bases": [ { @@ -564797,7 +564803,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728768, + "complete_object_locator": 6468732864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564806,12 +564812,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CPanelPtr >", - "vtable_address": 6466367320, + "vtable_address": 6466371480, "methods": [ - 6452574960, - 6452574448, - 6452574512, - 6452574784 + 6452576576, + 6452576064, + 6452576128, + 6452576400 ], "bases": [ { @@ -564831,7 +564837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683608, + "complete_object_locator": 6468687704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564840,12 +564846,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CPanelPtr,bool,int,bool>", - "vtable_address": 6466486832, + "vtable_address": 6466490960, "methods": [ - 6453452672, - 6453452016, - 6453452112, - 6453452432 + 6453454432, + 6453453776, + 6453453872, + 6453454192 ], "bases": [ { @@ -564865,7 +564871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707992, + "complete_object_locator": 6468712088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564874,12 +564880,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CPanelPtr,char const *>", - "vtable_address": 6466366736, + "vtable_address": 6466370896, "methods": [ - 6452573312, - 6452572736, - 6452572800, - 6452573104 + 6452574928, + 6452574352, + 6452574416, + 6452574720 ], "bases": [ { @@ -564899,7 +564905,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468683864, + "complete_object_locator": 6468687960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564908,12 +564914,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CPanelPtr,char const *>", - "vtable_address": 6467572224, + "vtable_address": 6467576320, "methods": [ - 6461502912, - 6461506192, - 6461504512, - 6461515808 + 6461505104, + 6461508384, + 6461506704, + 6461518000 ], "bases": [ { @@ -564933,7 +564939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954816, + "complete_object_locator": 6468958912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564942,12 +564948,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CPanelPtr,class v8::Global *>", - "vtable_address": 6466657536, + "vtable_address": 6466661640, "methods": [ - 6454959664, - 6454958976, - 6454959040, - 6454959344 + 6454961424, + 6454960736, + 6454960800, + 6454961248 ], "bases": [ { @@ -564967,7 +564973,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468753080, + "complete_object_locator": 6468757176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -564976,12 +564982,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CVideoPlayerAudioRenderer *,int,int>", - "vtable_address": 6467603480, + "vtable_address": 6467607576, "methods": [ - 6461872912, - 6461872400, - 6461872464, - 6461872752 + 6461875104, + 6461874592, + 6461874656, + 6461874944 ], "bases": [ { @@ -565001,7 +565007,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468961256, + "complete_object_locator": 6468965352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565010,12 +565016,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CVideoPlayerAudioRenderer *>", - "vtable_address": 6467603440, + "vtable_address": 6467607536, "methods": [ - 6461872352, - 6461871904, - 6461871952, - 6461872240 + 6461874544, + 6461874096, + 6461874144, + 6461874432 ], "bases": [ { @@ -565035,7 +565041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468961384, + "complete_object_locator": 6468965480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565044,12 +565050,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::CVideoPlayerEventDispatcher *,enum EVideoPlayerEvent>", - "vtable_address": 6467603624, + "vtable_address": 6467607720, "methods": [ - 6461873440, - 6461872960, - 6461873008, - 6461873296 + 6461875632, + 6461875152, + 6461875200, + 6461875488 ], "bases": [ { @@ -565069,7 +565075,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468961512, + "complete_object_locator": 6468965608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565078,12 +565084,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::IUIPanel *,char const *>", - "vtable_address": 6466370368, + "vtable_address": 6466374528, "methods": [ - 6452577168, - 6452576704, - 6452576752, - 6452577040 + 6452578784, + 6452578320, + 6452578368, + 6452578656 ], "bases": [ { @@ -565103,7 +565109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682952, + "complete_object_locator": 6468687048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565112,12 +565118,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::IUIPanel *,int,int>", - "vtable_address": 6466488832, + "vtable_address": 6466492960, "methods": [ - 6453453696, - 6453453200, - 6453453264, - 6453453552 + 6453455456, + 6453454960, + 6453455024, + 6453455312 ], "bases": [ { @@ -565137,7 +565143,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468708248, + "complete_object_locator": 6468712344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565146,12 +565152,12 @@ }, { "type_name": "panorama::CUIEvent<0,class panorama::IUIPanel *>", - "vtable_address": 6466488768, + "vtable_address": 6466492896, "methods": [ - 6453453152, - 6453452720, - 6453452768, - 6453453056 + 6453454912, + 6453454480, + 6453454528, + 6453454816 ], "bases": [ { @@ -565171,7 +565177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468708376, + "complete_object_locator": 6468712472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565180,12 +565186,12 @@ }, { "type_name": "panorama::CUIEvent<0,class v8::Local >", - "vtable_address": 6466587984, + "vtable_address": 6466592112, "methods": [ - 6454065504, - 6454065024, - 6454065072, - 6454065360 + 6454067264, + 6454066800, + 6454066848, + 6454067136 ], "bases": [ { @@ -565205,7 +565211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468732048, + "complete_object_locator": 6468736144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565214,7 +565220,7 @@ }, { "type_name": "panorama::CUIEvent<0,enum ClientUIState_t,enum ClientUIState_t>", - "vtable_address": 6464413112, + "vtable_address": 6464417208, "methods": [ 6443773008, 6443772544, @@ -565239,7 +565245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468214824, + "complete_object_locator": 6468218920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565248,7 +565254,7 @@ }, { "type_name": "panorama::CUIEvent<0,enum GamePhase>", - "vtable_address": 6465307200, + "vtable_address": 6465311264, "methods": [ 6447746368, 6447756032, @@ -565273,7 +565279,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468430232, + "complete_object_locator": 6468434328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565282,12 +565288,12 @@ }, { "type_name": "panorama::CUIEvent<0,enum loadout_slot_t,class panorama::IUIPanel *>", - "vtable_address": 6466366696, + "vtable_address": 6466370856, "methods": [ - 6452572688, - 6452572208, - 6452572256, - 6452572544 + 6452574304, + 6452573824, + 6452573872, + 6452574160 ], "bases": [ { @@ -565307,7 +565313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682568, + "complete_object_locator": 6468686664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565316,12 +565322,12 @@ }, { "type_name": "panorama::CUIEvent<0,enum loadout_slot_t>", - "vtable_address": 6466366896, + "vtable_address": 6466371056, "methods": [ - 6452573808, - 6452573392, - 6452573440, - 6452573712 + 6452575424, + 6452575008, + 6452575056, + 6452575328 ], "bases": [ { @@ -565341,7 +565347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682440, + "complete_object_locator": 6468686536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565350,12 +565356,12 @@ }, { "type_name": "panorama::CUIEvent<0,float,char const *>", - "vtable_address": 6466342248, + "vtable_address": 6466346472, "methods": [ - 6452473904, - 6452473440, - 6452473488, - 6452473776 + 6452475520, + 6452475056, + 6452475104, + 6452475392 ], "bases": [ { @@ -565375,7 +565381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468678264, + "complete_object_locator": 6468682360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565384,12 +565390,12 @@ }, { "type_name": "panorama::CUIEvent<0,float,class panorama::IUIEvent *>", - "vtable_address": 6467579792, + "vtable_address": 6467583888, "methods": [ - 6461659664, - 6461659184, - 6461659232, - 6461659520 + 6461662384, + 6461661904, + 6461661952, + 6461662240 ], "bases": [ { @@ -565409,7 +565415,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468957632, + "complete_object_locator": 6468961728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565418,12 +565424,12 @@ }, { "type_name": "panorama::CUIEvent<0,float,float,bool,float>", - "vtable_address": 6467699464, + "vtable_address": 6467703560, "methods": [ - 6462322224, - 6462321696, - 6462321760, - 6462322064 + 6462324416, + 6462323888, + 6462323952, + 6462324256 ], "bases": [ { @@ -565443,7 +565449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983272, + "complete_object_locator": 6468987368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565452,7 +565458,7 @@ }, { "type_name": "panorama::CUIEvent<0,float>", - "vtable_address": 6464862920, + "vtable_address": 6464867000, "methods": [ 6445598896, 6445600960, @@ -565477,7 +565483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291576, + "complete_object_locator": 6468295672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565486,12 +565492,12 @@ }, { "type_name": "panorama::CUIEvent<0,int,bool>", - "vtable_address": 6466058624, + "vtable_address": 6466062848, "methods": [ - 6451163104, - 6451162640, - 6451162688, - 6451162976 + 6451164672, + 6451164208, + 6451164256, + 6451164544 ], "bases": [ { @@ -565511,7 +565517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592944, + "complete_object_locator": 6468597040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565520,12 +565526,12 @@ }, { "type_name": "panorama::CUIEvent<0,int,char const *,char const *>", - "vtable_address": 6466595864, + "vtable_address": 6466600056, "methods": [ - 6454071136, - 6454070480, - 6454070544, - 6454070848 + 6454072896, + 6454072240, + 6454072304, + 6454072608 ], "bases": [ { @@ -565545,7 +565551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468732432, + "complete_object_locator": 6468736528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565554,12 +565560,12 @@ }, { "type_name": "panorama::CUIEvent<0,int,char const *>", - "vtable_address": 6466661360, + "vtable_address": 6466665456, "methods": [ - 6454962272, - 6454961808, - 6454961856, - 6454962144 + 6454964032, + 6454963568, + 6454963616, + 6454963904 ], "bases": [ { @@ -565579,7 +565585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752568, + "complete_object_locator": 6468756664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565588,12 +565594,12 @@ }, { "type_name": "panorama::CUIEvent<0,int,int,int,float,int>", - "vtable_address": 6466589152, + "vtable_address": 6466593280, "methods": [ - 6454066544, - 6454065984, - 6454066064, - 6454066368 + 6454068304, + 6454067744, + 6454067824, + 6454068128 ], "bases": [ { @@ -565613,7 +565619,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468731920, + "complete_object_locator": 6468736016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565622,12 +565628,12 @@ }, { "type_name": "panorama::CUIEvent<0,int,uint64_t,int,int>", - "vtable_address": 6466599664, + "vtable_address": 6466603768, "methods": [ - 6454072176, - 6454071648, - 6454071712, - 6454072016 + 6454073936, + 6454073408, + 6454073472, + 6454073776 ], "bases": [ { @@ -565647,7 +565653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468732304, + "complete_object_locator": 6468736400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565656,12 +565662,12 @@ }, { "type_name": "panorama::CUIEvent<0,int,uint64_t>", - "vtable_address": 6466430504, + "vtable_address": 6466434664, "methods": [ - 6452915376, - 6452914912, - 6452914960, - 6452915248 + 6452916992, + 6452916528, + 6452916576, + 6452916864 ], "bases": [ { @@ -565681,7 +565687,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468695048, + "complete_object_locator": 6468699144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565690,12 +565696,12 @@ }, { "type_name": "panorama::CUIEvent<0,int>", - "vtable_address": 6466058728, + "vtable_address": 6466062952, "methods": [ - 6451166352, - 6451165280, - 6451165328, - 6451165600 + 6451167920, + 6451166848, + 6451166896, + 6451167168 ], "bases": [ { @@ -565715,7 +565721,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592144, + "complete_object_locator": 6468596240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565724,12 +565730,12 @@ }, { "type_name": "panorama::CUIEvent<0,struct BlogRSSFeed_t>", - "vtable_address": 6466590960, + "vtable_address": 6466595088, "methods": [ - 6454070160, - 6454069152, - 6454069376, - 6454069456 + 6454071920, + 6454070912, + 6454071136, + 6454071216 ], "bases": [ { @@ -565749,7 +565755,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468731200, + "complete_object_locator": 6468735296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565758,12 +565764,12 @@ }, { "type_name": "panorama::CUIEvent<0,struct GameClientCommandQueueState_t const &>", - "vtable_address": 6466031880, + "vtable_address": 6466036088, "methods": [ - 6450921360, - 6450958096, - 6450948336, - 6450984336 + 6450922928, + 6450959664, + 6450949904, + 6450985904 ], "bases": [ { @@ -565783,7 +565789,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468582536, + "complete_object_locator": 6468586632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565792,12 +565798,12 @@ }, { "type_name": "panorama::CUIEvent<0,uint64_t,int,int>", - "vtable_address": 6466517792, + "vtable_address": 6466521920, "methods": [ - 6453604224, - 6453603728, - 6453603792, - 6453604080 + 6453605984, + 6453605488, + 6453605552, + 6453605840 ], "bases": [ { @@ -565817,7 +565823,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714640, + "complete_object_locator": 6468718736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565826,12 +565832,12 @@ }, { "type_name": "panorama::CUIEvent<0,uint64_t,int>", - "vtable_address": 6466431008, + "vtable_address": 6466435168, "methods": [ - 6452915888, - 6452915424, - 6452915472, - 6452915760 + 6452917504, + 6452917040, + 6452917088, + 6452917376 ], "bases": [ { @@ -565851,7 +565857,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694920, + "complete_object_locator": 6468699016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565860,12 +565866,12 @@ }, { "type_name": "panorama::CUIEvent<0,uint64_t,uint64_t,int>", - "vtable_address": 6466522240, + "vtable_address": 6466526368, "methods": [ - 6453605296, - 6453604800, - 6453604864, - 6453605152 + 6453607056, + 6453606560, + 6453606624, + 6453606912 ], "bases": [ { @@ -565885,7 +565891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714768, + "complete_object_locator": 6468718864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565894,7 +565900,7 @@ }, { "type_name": "panorama::CUIEvent<0,uint64_t>", - "vtable_address": 6464865288, + "vtable_address": 6464869368, "methods": [ 6445625520, 6445625088, @@ -565919,7 +565925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468291744, + "complete_object_locator": 6468295840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565928,12 +565934,12 @@ }, { "type_name": "panorama::CUIEvent<0,unsigned char>", - "vtable_address": 6467668368, + "vtable_address": 6467672464, "methods": [ - 6462115072, - 6462114656, - 6462114704, - 6462114976 + 6462117264, + 6462116848, + 6462116896, + 6462117168 ], "bases": [ { @@ -565953,7 +565959,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468978824, + "complete_object_locator": 6468982920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565962,12 +565968,12 @@ }, { "type_name": "panorama::CUIEvent<0,unsigned int,int,int>", - "vtable_address": 6467600080, + "vtable_address": 6467604176, "methods": [ - 6461834080, - 6461833584, - 6461833648, - 6461833936 + 6461836272, + 6461835776, + 6461835840, + 6461836128 ], "bases": [ { @@ -565987,7 +565993,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960408, + "complete_object_locator": 6468964504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -565996,12 +566002,12 @@ }, { "type_name": "panorama::CUIEvent<0,unsigned int>", - "vtable_address": 6466850976, + "vtable_address": 6466855272, "methods": [ - 6456578480, - 6456578064, - 6456578112, - 6456578384 + 6456580256, + 6456579840, + 6456579888, + 6456580160 ], "bases": [ { @@ -566021,7 +566027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804792, + "complete_object_locator": 6468808888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566030,12 +566036,12 @@ }, { "type_name": "panorama::CUIEvent<0,unsigned short,unsigned int>", - "vtable_address": 6466261512, + "vtable_address": 6466265624, "methods": [ - 6452054352, - 6452053888, - 6452053936, - 6452054224 + 6452055936, + 6452055472, + 6452055520, + 6452055808 ], "bases": [ { @@ -566055,7 +566061,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468647488, + "complete_object_locator": 6468651584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566064,12 +566070,12 @@ }, { "type_name": "panorama::CUIEvent<0,unsigned short>", - "vtable_address": 6466366184, + "vtable_address": 6466370344, "methods": [ - 6452571504, - 6452570480, - 6452570528, - 6452570880 + 6452573120, + 6452572096, + 6452572144, + 6452572496 ], "bases": [ { @@ -566089,7 +566095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468682824, + "complete_object_locator": 6468686920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566098,7 +566104,7 @@ }, { "type_name": "panorama::CUIEvent<0>", - "vtable_address": 6464410968, + "vtable_address": 6464415064, "methods": [ 6443767104, 6443766736, @@ -566123,7 +566129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468214616, + "complete_object_locator": 6468218712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566132,12 +566138,12 @@ }, { "type_name": "panorama::CUIEvent<1,bool,bool>", - "vtable_address": 6467661184, + "vtable_address": 6467665280, "methods": [ - 6462060192, - 6462059456, - 6462059680, - 6462059968 + 6462062384, + 6462061648, + 6462061872, + 6462062160 ], "bases": [ { @@ -566157,7 +566163,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974032, + "complete_object_locator": 6468978128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566166,12 +566172,12 @@ }, { "type_name": "panorama::CUIEvent<1,bool,char const *>", - "vtable_address": 6467579752, + "vtable_address": 6467583848, "methods": [ - 6461659104, - 6461658368, - 6461658592, - 6461658880 + 6461661824, + 6461661088, + 6461661312, + 6461661600 ], "bases": [ { @@ -566191,7 +566197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468957760, + "complete_object_locator": 6468961856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566200,7 +566206,7 @@ }, { "type_name": "panorama::CUIEvent<1,bool>", - "vtable_address": 6464443000, + "vtable_address": 6464447096, "methods": [ 6443892176, 6443891456, @@ -566225,7 +566231,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225440, + "complete_object_locator": 6468229536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566234,12 +566240,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,bool *>", - "vtable_address": 6467660344, + "vtable_address": 6467664440, "methods": [ - 6462057216, - 6462056480, - 6462056704, - 6462056992 + 6462059408, + 6462058672, + 6462058896, + 6462059184 ], "bases": [ { @@ -566259,7 +566265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468973648, + "complete_object_locator": 6468977744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566268,12 +566274,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,bool,bool,bool,char const *>", - "vtable_address": 6467661144, + "vtable_address": 6467665240, "methods": [ - 6462059376, - 6462058496, - 6462058768, - 6462059104 + 6462061568, + 6462060688, + 6462060960, + 6462061296 ], "bases": [ { @@ -566293,7 +566299,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974288, + "complete_object_locator": 6468978384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566302,12 +566308,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,bool>", - "vtable_address": 6467660264, + "vtable_address": 6467664360, "methods": [ - 6462055632, - 6462054880, - 6462055104, - 6462055408 + 6462057824, + 6462057072, + 6462057296, + 6462057600 ], "bases": [ { @@ -566327,7 +566333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468973776, + "complete_object_locator": 6468977872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566336,7 +566342,7 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,char const *,bool>", - "vtable_address": 6464442944, + "vtable_address": 6464447040, "methods": [ 6443891376, 6443890608, @@ -566361,7 +566367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468226208, + "complete_object_locator": 6468230304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566370,12 +566376,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,char const *,char const *,char const *,char const *,char const *>", - "vtable_address": 6466372056, + "vtable_address": 6466376216, "methods": [ - 6452578896, - 6452577952, - 6452578240, - 6452578608 + 6452580512, + 6452579568, + 6452579856, + 6452580224 ], "bases": [ { @@ -566395,7 +566401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468684248, + "complete_object_locator": 6468688344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566404,12 +566410,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,char const *,char const *,class panorama::CPanoramaSymbol>", - "vtable_address": 6466449616, + "vtable_address": 6466453776, "methods": [ - 6452955968, - 6452982480, - 6452976304, - 6453004496 + 6452957584, + 6452984096, + 6452977920, + 6453006112 ], "bases": [ { @@ -566429,7 +566435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468698288, + "complete_object_locator": 6468702384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566438,7 +566444,7 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,char const *,char const *>", - "vtable_address": 6464412624, + "vtable_address": 6464416720, "methods": [ 6443770080, 6443769296, @@ -566463,7 +566469,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468215344, + "complete_object_locator": 6468219440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566472,12 +566478,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,char const *,class panorama::CPanoramaSymbol>", - "vtable_address": 6466449656, + "vtable_address": 6466453816, "methods": [ - 6452956064, - 6452982720, - 6452976624, - 6453004752 + 6452957680, + 6452984336, + 6452978240, + 6453006368 ], "bases": [ { @@ -566497,7 +566503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468698160, + "complete_object_locator": 6468702256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566506,12 +566512,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,char const *,float>", - "vtable_address": 6466342208, + "vtable_address": 6466346432, "methods": [ - 6452473360, - 6452472576, - 6452472816, - 6452473120 + 6452474976, + 6452474192, + 6452474432, + 6452474736 ], "bases": [ { @@ -566531,7 +566537,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468678392, + "complete_object_locator": 6468682488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566540,7 +566546,7 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,char const *>", - "vtable_address": 6464412736, + "vtable_address": 6464416832, "methods": [ 6443771616, 6443770864, @@ -566565,7 +566571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468214488, + "complete_object_locator": 6468218584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566574,12 +566580,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,class panorama::CPanoramaSymbol>", - "vtable_address": 6466449696, + "vtable_address": 6466453856, "methods": [ - 6452956144, - 6452982944, - 6452976928, - 6453004992 + 6452957760, + 6452984560, + 6452978544, + 6453006608 ], "bases": [ { @@ -566599,7 +566605,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468698032, + "complete_object_locator": 6468702128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566608,12 +566614,12 @@ }, { "type_name": "panorama::CUIEvent<1,char const *,class panorama::IUIEvent *>", - "vtable_address": 6467579872, + "vtable_address": 6467583968, "methods": [ - 6461661264, - 6461660464, - 6461660688, - 6461660992 + 6461663984, + 6461663184, + 6461663408, + 6461663712 ], "bases": [ { @@ -566633,7 +566639,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468957376, + "complete_object_locator": 6468961472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566642,7 +566648,7 @@ }, { "type_name": "panorama::CUIEvent<1,char const *>", - "vtable_address": 6464442800, + "vtable_address": 6464446896, "methods": [ 6443890016, 6443889296, @@ -566667,7 +566673,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225824, + "complete_object_locator": 6468229920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566676,12 +566682,12 @@ }, { "type_name": "panorama::CUIEvent<1,class CSteamProfileItems const *>", - "vtable_address": 6466431232, + "vtable_address": 6466435392, "methods": [ - 6452916656, - 6452915936, - 6452916160, - 6452916448 + 6452918272, + 6452917552, + 6452917776, + 6452918064 ], "bases": [ { @@ -566701,7 +566707,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694792, + "complete_object_locator": 6468698888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566710,12 +566716,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanel2D *,int,class Vec2D >", - "vtable_address": 6466573536, + "vtable_address": 6466577664, "methods": [ - 6453921616, - 6453920800, - 6453921056, - 6453921360 + 6453923376, + 6453922560, + 6453922816, + 6453923120 ], "bases": [ { @@ -566735,7 +566741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728384, + "complete_object_locator": 6468732480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566744,12 +566750,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanel2D *,int,float>", - "vtable_address": 6466573272, + "vtable_address": 6466577400, "methods": [ - 6453920752, - 6453919984, - 6453920208, - 6453920496 + 6453922512, + 6453921744, + 6453921968, + 6453922256 ], "bases": [ { @@ -566769,7 +566775,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728512, + "complete_object_locator": 6468732608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566778,12 +566784,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanel2D *,int,int>", - "vtable_address": 6466573160, + "vtable_address": 6466577288, "methods": [ - 6453919184, - 6453918416, - 6453918640, - 6453918928 + 6453920944, + 6453920176, + 6453920400, + 6453920688 ], "bases": [ { @@ -566803,7 +566809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728640, + "complete_object_locator": 6468732736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566812,12 +566818,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanelPtr >", - "vtable_address": 6466399832, + "vtable_address": 6466403992, "methods": [ - 6452786080, - 6452785328, - 6452785536, - 6452785808 + 6452787696, + 6452786944, + 6452787152, + 6452787424 ], "bases": [ { @@ -566837,7 +566843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689976, + "complete_object_locator": 6468694072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566846,12 +566852,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanelPtr >", - "vtable_address": 6467581136, + "vtable_address": 6467585232, "methods": [ - 6461662896, - 6461662176, - 6461662384, - 6461662656 + 6461665616, + 6461664896, + 6461665104, + 6461665376 ], "bases": [ { @@ -566871,7 +566877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468957504, + "complete_object_locator": 6468961600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566880,12 +566886,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanoramaSymbol,char const *>", - "vtable_address": 6467581464, + "vtable_address": 6467585560, "methods": [ - 6461663696, - 6461662944, - 6461663168, - 6461663472 + 6461666416, + 6461665664, + 6461665888, + 6461666192 ], "bases": [ { @@ -566905,7 +566911,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468957120, + "complete_object_locator": 6468961216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566914,12 +566920,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanoramaSymbol,class panorama::CPanoramaSymbol>", - "vtable_address": 6467579712, + "vtable_address": 6467583808, "methods": [ - 6461658320, - 6461657600, - 6461657808, - 6461658096 + 6461661040, + 6461660320, + 6461660528, + 6461660816 ], "bases": [ { @@ -566939,7 +566945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956608, + "complete_object_locator": 6468960704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566948,12 +566954,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanoramaSymbol,class panorama::IUIEvent *>", - "vtable_address": 6467580968, + "vtable_address": 6467585064, "methods": [ - 6461662096, - 6461661344, - 6461661568, - 6461661872 + 6461664816, + 6461664064, + 6461664288, + 6461664592 ], "bases": [ { @@ -566973,7 +566979,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468957248, + "complete_object_locator": 6468961344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -566982,12 +566988,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanoramaSymbol,float,float>", - "vtable_address": 6467579672, + "vtable_address": 6467583768, "methods": [ - 6461657552, - 6461656784, - 6461657024, - 6461657312 + 6461660272, + 6461659504, + 6461659744, + 6461660032 ], "bases": [ { @@ -567007,7 +567013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956736, + "complete_object_locator": 6468960832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567016,12 +567022,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanoramaSymbol,float>", - "vtable_address": 6467579344, + "vtable_address": 6467583440, "methods": [ - 6461656736, - 6461656000, - 6461656224, - 6461656512 + 6461659456, + 6461658720, + 6461658944, + 6461659232 ], "bases": [ { @@ -567041,7 +567047,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956864, + "complete_object_locator": 6468960960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567050,12 +567056,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::CPanoramaSymbol>", - "vtable_address": 6466867416, + "vtable_address": 6466871528, "methods": [ - 6456601280, - 6456616160, - 6456611904, - 6456628992 + 6456603056, + 6456617936, + 6456613680, + 6456630768 ], "bases": [ { @@ -567075,7 +567081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805176, + "complete_object_locator": 6468809272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567084,12 +567090,12 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::IImageSource *>", - "vtable_address": 6467579832, + "vtable_address": 6467583928, "methods": [ - 6461661216, - 6461659744, - 6461659968, - 6461660256 + 6461663936, + 6461662464, + 6461662688, + 6461662976 ], "bases": [ { @@ -567109,7 +567115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468958144, + "complete_object_locator": 6468962240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567118,7 +567124,7 @@ }, { "type_name": "panorama::CUIEvent<1,class panorama::IUIEvent *>", - "vtable_address": 6464443376, + "vtable_address": 6464447472, "methods": [ 6443893968, 6443893248, @@ -567143,7 +567149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468226080, + "complete_object_locator": 6468230176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567152,12 +567158,12 @@ }, { "type_name": "panorama::CUIEvent<1,enum EVideoPlayerPlaybackError>", - "vtable_address": 6467594072, + "vtable_address": 6467598168, "methods": [ - 6461781680, - 6461780992, - 6461781216, - 6461781488 + 6461783872, + 6461783184, + 6461783408, + 6461783680 ], "bases": [ { @@ -567177,7 +567183,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959416, + "complete_object_locator": 6468963512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567186,7 +567192,7 @@ }, { "type_name": "panorama::CUIEvent<1,enum GenericPopupResult_t,char const *>", - "vtable_address": 6464442760, + "vtable_address": 6464446856, "methods": [ 6443889216, 6443888496, @@ -567211,7 +567217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468226336, + "complete_object_locator": 6468230432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567220,12 +567226,12 @@ }, { "type_name": "panorama::CUIEvent<1,enum GenericPopupResult_t,class panorama::IUIEvent *>", - "vtable_address": 6466557904, + "vtable_address": 6466562032, "methods": [ - 6453858080, - 6453857344, - 6453857568, - 6453857856 + 6453859840, + 6453859104, + 6453859328, + 6453859616 ], "bases": [ { @@ -567245,7 +567251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468724344, + "complete_object_locator": 6468728440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567254,12 +567260,12 @@ }, { "type_name": "panorama::CUIEvent<1,enum panorama::EPanelEventSource_t>", - "vtable_address": 6466397128, + "vtable_address": 6466401288, "methods": [ - 6452640272, - 6452672800, - 6452654944, - 6452688608 + 6452641888, + 6452674416, + 6452656560, + 6452690224 ], "bases": [ { @@ -567279,7 +567285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468684752, + "complete_object_locator": 6468688848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567288,12 +567294,12 @@ }, { "type_name": "panorama::CUIEvent<1,enum panorama::ModifierCode>", - "vtable_address": 6467658080, + "vtable_address": 6467662176, "methods": [ - 6462029280, - 6462028592, - 6462028816, - 6462029088 + 6462031472, + 6462030784, + 6462031008, + 6462031280 ], "bases": [ { @@ -567313,7 +567319,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468972984, + "complete_object_locator": 6468977080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567322,12 +567328,12 @@ }, { "type_name": "panorama::CUIEvent<1,enum panorama::ScrollBehavior_t,bool>", - "vtable_address": 6467584400, + "vtable_address": 6467588496, "methods": [ - 6461665344, - 6461664624, - 6461664848, - 6461665136 + 6461668064, + 6461667344, + 6461667568, + 6461667856 ], "bases": [ { @@ -567347,7 +567353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468956992, + "complete_object_locator": 6468961088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567356,12 +567362,12 @@ }, { "type_name": "panorama::CUIEvent<1,float,float,class panorama::IUIEvent *>", - "vtable_address": 6466850128, + "vtable_address": 6466854336, "methods": [ - 6456577984, - 6456577200, - 6456577424, - 6456577728 + 6456579760, + 6456578976, + 6456579200, + 6456579504 ], "bases": [ { @@ -567381,7 +567387,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468805048, + "complete_object_locator": 6468809144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567390,12 +567396,12 @@ }, { "type_name": "panorama::CUIEvent<1,float,float,float>", - "vtable_address": 6467699424, + "vtable_address": 6467703520, "methods": [ - 6462321648, - 6462320880, - 6462321120, - 6462321408 + 6462323840, + 6462323072, + 6462323312, + 6462323600 ], "bases": [ { @@ -567415,7 +567421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468983400, + "complete_object_locator": 6468987496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567424,12 +567430,12 @@ }, { "type_name": "panorama::CUIEvent<1,float,float>", - "vtable_address": 6467689344, + "vtable_address": 6467693440, "methods": [ - 6462264416, - 6462263696, - 6462263920, - 6462264192 + 6462266608, + 6462265888, + 6462266112, + 6462266384 ], "bases": [ { @@ -567449,7 +567455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468981584, + "complete_object_locator": 6468985680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567458,12 +567464,12 @@ }, { "type_name": "panorama::CUIEvent<1,float>", - "vtable_address": 6466430464, + "vtable_address": 6466434624, "methods": [ - 6452914864, - 6452914160, - 6452914384, - 6452914656 + 6452916480, + 6452915776, + 6452916000, + 6452916272 ], "bases": [ { @@ -567483,7 +567489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694664, + "complete_object_locator": 6468698760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567492,12 +567498,12 @@ }, { "type_name": "panorama::CUIEvent<1,int,char const *>", - "vtable_address": 6466851440, + "vtable_address": 6466855640, "methods": [ - 6456579264, - 6456578528, - 6456578752, - 6456579040 + 6456581040, + 6456580304, + 6456580528, + 6456580816 ], "bases": [ { @@ -567517,7 +567523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804920, + "complete_object_locator": 6468809016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567526,12 +567532,12 @@ }, { "type_name": "panorama::CUIEvent<1,int,class CUtlBuffer *,unsigned int,unsigned int>", - "vtable_address": 6467660224, + "vtable_address": 6467664320, "methods": [ - 6462054832, - 6462054016, - 6462054256, - 6462054560 + 6462057024, + 6462056208, + 6462056448, + 6462056752 ], "bases": [ { @@ -567551,7 +567557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468973904, + "complete_object_locator": 6468978000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567560,12 +567566,12 @@ }, { "type_name": "panorama::CUIEvent<1,int,enum panorama::ScrollBehavior_t,bool>", - "vtable_address": 6467600040, + "vtable_address": 6467604136, "methods": [ - 6461833536, - 6461832768, - 6461833008, - 6461833312 + 6461835728, + 6461834960, + 6461835200, + 6461835504 ], "bases": [ { @@ -567585,7 +567591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960280, + "complete_object_locator": 6468964376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567594,12 +567600,12 @@ }, { "type_name": "panorama::CUIEvent<1,int,int,float,float>", - "vtable_address": 6467583768, + "vtable_address": 6467587864, "methods": [ - 6461664576, - 6461663776, - 6461664032, - 6461664320 + 6461667296, + 6461666496, + 6461666752, + 6461667040 ], "bases": [ { @@ -567619,7 +567625,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468958016, + "complete_object_locator": 6468962112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567628,12 +567634,12 @@ }, { "type_name": "panorama::CUIEvent<1,int,int,int,int>", - "vtable_address": 6467579096, + "vtable_address": 6467583192, "methods": [ - 6461655952, - 6461665392, - 6461665632, - 6461655696 + 6461658672, + 6461657888, + 6461658128, + 6461658416 ], "bases": [ { @@ -567653,7 +567659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468957888, + "complete_object_locator": 6468961984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567662,12 +567668,12 @@ }, { "type_name": "panorama::CUIEvent<1,int,int>", - "vtable_address": 6467660304, + "vtable_address": 6467664400, "methods": [ - 6462056432, - 6462055712, - 6462055936, - 6462056208 + 6462058624, + 6462057904, + 6462058128, + 6462058400 ], "bases": [ { @@ -567687,7 +567693,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974160, + "complete_object_locator": 6468978256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567696,12 +567702,12 @@ }, { "type_name": "panorama::CUIEvent<1,int>", - "vtable_address": 6466573200, + "vtable_address": 6466577328, "methods": [ - 6453919936, - 6453919232, - 6453919456, - 6453919728 + 6453921696, + 6453920992, + 6453921216, + 6453921488 ], "bases": [ { @@ -567721,7 +567727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728256, + "complete_object_locator": 6468732352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567730,12 +567736,12 @@ }, { "type_name": "panorama::CUIEvent<1,struct panorama::GamePadData_t>", - "vtable_address": 6467709224, + "vtable_address": 6467713320, "methods": [ - 6462376304, - 6462375456, - 6462375792, - 6462376112 + 6462378496, + 6462377648, + 6462377984, + 6462378304 ], "bases": [ { @@ -567755,7 +567761,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468984872, + "complete_object_locator": 6468988968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567764,12 +567770,12 @@ }, { "type_name": "panorama::CUIEvent<1,struct panorama::HtmlFormHasFocus_t,char const *>", - "vtable_address": 6467660952, + "vtable_address": 6467665048, "methods": [ - 6462058368, - 6462057296, - 6462058080, - 6462058160 + 6462060560, + 6462059488, + 6462060272, + 6462060352 ], "bases": [ { @@ -567789,7 +567795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468974416, + "complete_object_locator": 6468978512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567798,12 +567804,12 @@ }, { "type_name": "panorama::CUIEvent<1,uint64_t>", - "vtable_address": 6466370224, + "vtable_address": 6466374384, "methods": [ - 6452576656, - 6452575936, - 6452576160, - 6452576448 + 6452578272, + 6452577552, + 6452577776, + 6452578064 ], "bases": [ { @@ -567823,7 +567829,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468684376, + "complete_object_locator": 6468688472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567832,7 +567838,7 @@ }, { "type_name": "panorama::CUIEvent<1>", - "vtable_address": 6464412664, + "vtable_address": 6464416760, "methods": [ 6443770816, 6443770176, @@ -567857,7 +567863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468214360, + "complete_object_locator": 6468218456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -567866,40 +567872,40 @@ }, { "type_name": "panorama::CVerticalScrollBar", - "vtable_address": 6467566904, + "vtable_address": 6467571000, "methods": [ 6443876544, - 6461535472, - 6461516896, - 6461526288, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461519088, + 6461528480, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536336, - 6461537072, - 6461536080, - 6461536928, - 6461538896, - 6461538496, - 6461503744, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538528, + 6461539264, + 6461538272, + 6461539120, + 6461541088, + 6461540688, + 6461505936, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, 6443847568, - 6461545472, + 6461547664, 6443845024, 6443848560, 6443848128, @@ -567907,12 +567913,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -567927,36 +567933,36 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461516832, - 6461503184, + 6461548896, + 6461519024, + 6461505376, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048, - 6462374688, - 6462375120, - 6461514272, - 6461515088, - 6461549872 + 6462376880, + 6462377312, + 6461516464, + 6461517280, + 6461552064 ], "bases": [ { @@ -568032,7 +568038,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468954944, + "complete_object_locator": 6468959040, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -568041,31 +568047,31 @@ }, { "type_name": "panorama::CVerticalScrollBar", - "vtable_address": 6467567624, - "methods": [ - 6461559408, - 6461504320, - 6461535344, - 6461554784, - 6461525744, - 6461525728, - 6461525712, - 6461554992, - 6461525776, - 6461554976, - 6461516064, - 6461525760, - 6461515424, - 6461503808, - 6461525952, - 6461525888, - 6461525840, - 6462374192, - 6462373808, - 6462373072, - 6461549712, - 6461551472, - 6461516800 + "vtable_address": 6467571720, + "methods": [ + 6461561600, + 6461506512, + 6461537536, + 6461556976, + 6461527936, + 6461527920, + 6461527904, + 6461557184, + 6461527968, + 6461557168, + 6461518256, + 6461527952, + 6461517616, + 6461506000, + 6461528144, + 6461528080, + 6461528032, + 6462376384, + 6462376000, + 6462375264, + 6461551904, + 6461553664, + 6461518992 ], "bases": [ { @@ -568141,7 +568147,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468955440, + "complete_object_locator": 6468959536, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -568150,35 +568156,35 @@ }, { "type_name": "panorama::CVerticalScrollForwardingPanel", - "vtable_address": 6467694064, + "vtable_address": 6467698160, "methods": [ 6443876544, - 6461535472, - 6462304576, - 6462304864, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462306768, + 6462307056, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6462305168, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6462304896, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6462305600, - 6461537344, + 6462307360, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6462307088, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6462307792, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6462304288, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6462306480, 6443844992, 6443848064, 6443844976, @@ -568191,12 +568197,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -568211,29 +568217,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462304560, - 6462304208, + 6461548896, + 6462306752, + 6462306400, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -568269,7 +568275,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468982456, + "complete_object_locator": 6468986552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568278,35 +568284,35 @@ }, { "type_name": "panorama::CVerticalSplitter", - "vtable_address": 6467712136, + "vtable_address": 6467716232, "methods": [ 6443876544, - 6461535472, - 6462399872, - 6462399920, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6462402064, + 6462402112, + 6461548864, + 6461548880, + 6461561536, 6443845056, 6443847712, - 6461536032, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6462401424, - 6462401456, - 6461536080, - 6461536928, - 6461538896, - 6462402224, + 6461538224, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6462403616, + 6462403648, + 6461538272, + 6461539120, + 6461541088, + 6462404416, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -568317,14 +568323,14 @@ 6443848128, 6443802160, 6443913856, - 6462399808, + 6462402000, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -568339,29 +568345,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6462399840, - 6462398304, + 6461548896, + 6462402032, + 6462400496, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -568397,7 +568403,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985272, + "complete_object_locator": 6468989368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568406,21 +568412,21 @@ }, { "type_name": "panorama::CVideoPlayerAudioRenderer", - "vtable_address": 6467603896, + "vtable_address": 6467607992, "methods": [ - 6461878208, - 6461877616, - 6461878416, - 6461877744, - 6461877776, - 6461877760, - 6461876128, - 6461878048, - 6461877888, - 6461877920, - 6461879120, - 6461879568, - 6461874768 + 6461880400, + 6461879808, + 6461880608, + 6461879936, + 6461879968, + 6461879952, + 6461878320, + 6461880240, + 6461880080, + 6461880112, + 6461881312, + 6461881760, + 6461876960 ], "bases": [ { @@ -568440,7 +568446,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468962368, + "complete_object_locator": 6468966464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568449,9 +568455,9 @@ }, { "type_name": "panorama::CVideoPlayerEventDispatcher", - "vtable_address": 6467604008, + "vtable_address": 6467608104, "methods": [ - 6461880272 + 6461882464 ], "bases": [ { @@ -568471,7 +568477,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468962496, + "complete_object_locator": 6468966592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568480,10 +568486,10 @@ }, { "type_name": "panorama::CVideoPlayerVideoRenderer", - "vtable_address": 6467603872, + "vtable_address": 6467607968, "methods": [ - 6461875904, - 6461875088 + 6461878096, + 6461877280 ], "bases": [ { @@ -568503,7 +568509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468962240, + "complete_object_locator": 6468966336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568512,35 +568518,35 @@ }, { "type_name": "panorama::CVolumeSliderPopup", - "vtable_address": 6467595184, + "vtable_address": 6467599280, "methods": [ 6443876544, - 6461535472, - 6461812256, - 6461812608, - 6461546672, - 6461546688, - 6461559344, + 6461537664, + 6461814448, + 6461814800, + 6461548864, + 6461548880, + 6461561536, 6443845056, - 6461818672, - 6461818400, - 6461536064, - 6461536048, - 6461536000, - 6461536016, - 6461535504, - 6461536208, - 6461536944, - 6461536080, - 6461536928, - 6461538896, - 6461537344, + 6461820864, + 6461820592, + 6461538256, + 6461538240, + 6461538192, + 6461538208, + 6461537696, + 6461538400, + 6461539136, + 6461538272, + 6461539120, + 6461541088, + 6461539536, 6443802144, - 6461535456, - 6461545040, - 6461503728, - 6461503872, - 6461504016, + 6461537648, + 6461547232, + 6461505920, + 6461506064, + 6461506208, 6443844992, 6443848064, 6443844976, @@ -568553,12 +568559,12 @@ 6443913856, 6443821360, 6443848384, - 6461555696, - 6461505456, - 6461505088, - 6461526000, + 6461557888, + 6461507648, + 6461507280, + 6461528192, 6443847520, - 6461521616, + 6461523808, 6443801776, 6443801728, 6443801744, @@ -568573,29 +568579,29 @@ 6443879584, 6443817680, 6443848032, - 6461546704, - 6461812176, - 6461798720, + 6461548896, + 6461814368, + 6461800912, 6443817520, - 6461547664, - 6461547840, - 6461543696, - 6461539296, - 6461540688, - 6461542176, - 6461546080, - 6461545488, + 6461549856, + 6461550032, + 6461545888, + 6461541488, + 6461542880, + 6461544368, + 6461548272, + 6461547680, 6443802176, 6443866800, - 6461515216, - 6461531136, - 6461504352, + 6461517408, + 6461533328, + 6461506544, 6443801824, 6443844960, 6443848080, 6443797648, 6443797632, - 6461526336, + 6461528528, 6443798832, 6443858048 ], @@ -568645,7 +568651,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468959680, + "complete_object_locator": 6468963776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568654,27 +568660,27 @@ }, { "type_name": "panorama::ITextInputControl", - "vtable_address": 6467585168, - "methods": [ - 6461707440, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + "vtable_address": 6467589264, + "methods": [ + 6461709632, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468958272, + "complete_object_locator": 6468962368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568683,17 +568689,17 @@ }, { "type_name": "panorama::IUIEvent", - "vtable_address": 6464414040, + "vtable_address": 6464418136, "methods": [ 6443797392, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468217032, + "complete_object_locator": 6468221128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568702,12 +568708,12 @@ }, { "type_name": "pcharNode", - "vtable_address": 6467894360, + "vtable_address": 6467898456, "methods": [ - 6463760112, - 6463760416, - 6463745612, - 6463752980 + 6463762304, + 6463762608, + 6463747804, + 6463755172 ], "bases": [ { @@ -568727,7 +568733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468997432, + "complete_object_locator": 6469001528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568736,17 +568742,17 @@ }, { "type_name": "sky3dparams_t", - "vtable_address": 6465811088, + "vtable_address": 6465815280, "methods": [ - 6449720848, - 6449641440, - 6449641552, - 6449641536 + 6449722416, + 6449643008, + 6449643120, + 6449643104 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468522312, + "complete_object_locator": 6468526408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568755,12 +568761,12 @@ }, { "type_name": "sky3dparams_t::NetworkVar_fog", - "vtable_address": 6465811048, + "vtable_address": 6465815240, "methods": [ 6443865456, - 6449641344, + 6449642912, 6443844128, - 6449641504 + 6449643072 ], "bases": [ { @@ -568780,7 +568786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468522432, + "complete_object_locator": 6468526528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568789,19 +568795,19 @@ }, { "type_name": "std::_Associated_state", - "vtable_address": 6467202904, + "vtable_address": 6467206968, "methods": [ - 6460136512, - 6460153872, - 6460147744, - 6460148544, - 6460151648, - 6460147024 + 6460138704, + 6460156064, + 6460149936, + 6460150736, + 6460153840, + 6460149216 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468942416, + "complete_object_locator": 6468946512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568810,19 +568816,19 @@ }, { "type_name": "std::_Associated_state", - "vtable_address": 6467203440, + "vtable_address": 6467207504, "methods": [ - 6460136640, - 6460154048, - 6460148064, - 6460148560, - 6460151664, - 6460147136 + 6460138832, + 6460156240, + 6460150256, + 6460150752, + 6460153856, + 6460149328 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468942536, + "complete_object_locator": 6468946632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568831,14 +568837,14 @@ }, { "type_name": "std::_Deferred_async_state", - "vtable_address": 6467204032, + "vtable_address": 6467208096, "methods": [ - 6460136896, - 6460154048, - 6460148064, - 6460148576, - 6460151680, - 6460147136 + 6460139088, + 6460156240, + 6460150256, + 6460150768, + 6460153872, + 6460149328 ], "bases": [ { @@ -568872,7 +568878,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468943752, + "complete_object_locator": 6468947848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568881,14 +568887,14 @@ }, { "type_name": "std::_Deferred_async_state", - "vtable_address": 6467203808, + "vtable_address": 6467207872, "methods": [ - 6460136960, - 6460153872, - 6460147744, - 6460148592, - 6460151760, - 6460147024 + 6460139152, + 6460156064, + 6460149936, + 6460150784, + 6460153952, + 6460149216 ], "bases": [ { @@ -568922,7 +568928,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468943176, + "complete_object_locator": 6468947272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568931,16 +568937,16 @@ }, { "type_name": "std::_Facet_base", - "vtable_address": 6466942136, + "vtable_address": 6466946200, "methods": [ - 6457475424, - 6463705588, - 6463705588 + 6457477616, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468826024, + "complete_object_locator": 6468830120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568949,19 +568955,19 @@ }, { "type_name": "std::_Func_base", - "vtable_address": 6467203496, + "vtable_address": 6467207560, "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468942032, + "complete_object_locator": 6468946128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568970,19 +568976,19 @@ }, { "type_name": "std::_Func_base", - "vtable_address": 6467204144, + "vtable_address": 6467208208, "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468943712, + "complete_object_locator": 6468947808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -568991,19 +568997,19 @@ }, { "type_name": "std::_Func_base", - "vtable_address": 6467203384, + "vtable_address": 6467207448, "methods": [ - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588, - 6463705588 + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780, + 6463707780 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468941736, + "complete_object_locator": 6468945832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569012,14 +569018,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204784, + "vtable_address": 6467208848, "methods": [ - 6460144288, - 6460149024, - 6460146800, - 6460153440, - 6460145872, - 6460147408 + 6460146480, + 6460151216, + 6460148992, + 6460155632, + 6460148064, + 6460149600 ], "bases": [ { @@ -569039,7 +569045,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945976, + "complete_object_locator": 6468950072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569048,14 +569054,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204896, + "vtable_address": 6467208960, "methods": [ - 6460144320, - 6460149056, - 6460146816, - 6460153456, - 6460145904, - 6460147424 + 6460146512, + 6460151248, + 6460149008, + 6460155648, + 6460148096, + 6460149616 ], "bases": [ { @@ -569075,7 +569081,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468946232, + "complete_object_locator": 6468950328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569084,14 +569090,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204256, + "vtable_address": 6467208320, "methods": [ - 6460144352, - 6460149088, - 6460146832, - 6460153472, - 6460145936, - 6460147440 + 6460146544, + 6460151280, + 6460149024, + 6460155664, + 6460148128, + 6460149632 ], "bases": [ { @@ -569111,7 +569117,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944152, + "complete_object_locator": 6468948248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569120,14 +569126,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204368, + "vtable_address": 6467208432, "methods": [ - 6460144384, - 6460149120, - 6460146848, - 6460153488, - 6460145968, - 6460147456 + 6460146576, + 6460151312, + 6460149040, + 6460155680, + 6460148160, + 6460149648 ], "bases": [ { @@ -569147,7 +569153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944408, + "complete_object_locator": 6468948504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569156,14 +569162,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204840, + "vtable_address": 6467208904, "methods": [ - 6460144416, - 6460149152, - 6460146864, - 6460153504, - 6460146000, - 6460147472 + 6460146608, + 6460151344, + 6460149056, + 6460155696, + 6460148192, + 6460149664 ], "bases": [ { @@ -569183,7 +569189,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468946104, + "complete_object_locator": 6468950200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569192,14 +569198,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,unsigned char>", - "vtable_address": 6467204312, + "vtable_address": 6467208376, "methods": [ - 6460144448, - 6460149184, - 6460146880, - 6460153520, - 6460146032, - 6460147488 + 6460146640, + 6460151376, + 6460149072, + 6460155712, + 6460148224, + 6460149680 ], "bases": [ { @@ -569219,7 +569225,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944280, + "complete_object_locator": 6468948376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569228,14 +569234,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204728, + "vtable_address": 6467208792, "methods": [ - 6460144464, - 6460149296, - 6460146912, - 6460153536, - 6460146144, - 6460147504 + 6460146656, + 6460151488, + 6460149104, + 6460155728, + 6460148336, + 6460149696 ], "bases": [ { @@ -569255,7 +569261,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945848, + "complete_object_locator": 6468949944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569264,14 +569270,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204200, + "vtable_address": 6467208264, "methods": [ - 6460144496, - 6460149328, - 6460146928, - 6460153552, - 6460146176, - 6460147520 + 6460146688, + 6460151520, + 6460149120, + 6460155744, + 6460148368, + 6460149712 ], "bases": [ { @@ -569291,7 +569297,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944024, + "complete_object_locator": 6468948120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569300,14 +569306,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,unsigned int>", - "vtable_address": 6467204576, + "vtable_address": 6467208640, "methods": [ - 6460144576, - 6460149392, - 6460146960, - 6460153568, - 6460146224, - 6460147536 + 6460146768, + 6460151584, + 6460149152, + 6460155760, + 6460148416, + 6460149728 ], "bases": [ { @@ -569327,7 +569333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468945192, + "complete_object_locator": 6468949288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569336,14 +569342,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6467204424, + "vtable_address": 6467208488, "methods": [ - 6460144656, - 6460149456, - 6460146992, - 6460153584, - 6460146256, - 6460147552 + 6460146848, + 6460151648, + 6460149184, + 6460155776, + 6460148448, + 6460149744 ], "bases": [ { @@ -569363,7 +569369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468944536, + "complete_object_locator": 6468948632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569372,7 +569378,7 @@ }, { "type_name": "std::_Func_impl_no_alloc", - "vtable_address": 6464692184, + "vtable_address": 6464696264, "methods": [ 6444984672, 6444985248, @@ -569399,7 +569405,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272544, + "complete_object_locator": 6468276640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569408,14 +569414,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6466107208, + "vtable_address": 6466111416, "methods": [ - 6451425424, - 6451425440, - 6451425456, - 6451425504, - 6451425536, - 6451425520 + 6451427008, + 6451427024, + 6451427040, + 6451427088, + 6451427120, + 6451427104 ], "bases": [ { @@ -569435,7 +569441,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468606472, + "complete_object_locator": 6468610568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569444,14 +569450,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6466107264, + "vtable_address": 6466111472, "methods": [ - 6451425552, - 6451425568, - 6451425584, - 6451425616, - 6451425648, - 6451425632 + 6451427136, + 6451427152, + 6451427168, + 6451427200, + 6451427232, + 6451427216 ], "bases": [ { @@ -569471,7 +569477,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468606600, + "complete_object_locator": 6468610696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569480,14 +569486,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6466138128, + "vtable_address": 6466142336, "methods": [ - 6451592400, - 6451592416, - 6451592432, - 6451592480, - 6451592512, - 6451592496 + 6451593984, + 6451594000, + 6451594016, + 6451594064, + 6451594096, + 6451594080 ], "bases": [ { @@ -569507,7 +569513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468615280, + "complete_object_locator": 6468619376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569516,14 +569522,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6466138184, + "vtable_address": 6466142392, "methods": [ - 6451592528, - 6451592544, - 6451592560, - 6451592592, - 6451592624, - 6451592608 + 6451594112, + 6451594128, + 6451594144, + 6451594176, + 6451594208, + 6451594192 ], "bases": [ { @@ -569543,7 +569549,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468615408, + "complete_object_locator": 6468619504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569552,14 +569558,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6464468088, + "vtable_address": 6464472184, "methods": [ - 6444013344, - 6444013360, - 6444013376, - 6444013424, - 6444013456, - 6444013440 + 6444013600, + 6444013616, + 6444013632, + 6444013680, + 6444013712, + 6444013696 ], "bases": [ { @@ -569579,7 +569585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468234272, + "complete_object_locator": 6468238368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569588,14 +569594,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6464468240, + "vtable_address": 6464472336, "methods": [ - 6444014256, - 6444014272, - 6444014288, - 6444014320, - 6444014352, - 6444014336 + 6444014512, + 6444014528, + 6444014544, + 6444014576, + 6444014608, + 6444014592 ], "bases": [ { @@ -569615,7 +569621,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468234400, + "complete_object_locator": 6468238496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569624,14 +569630,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6466138240, + "vtable_address": 6466142448, "methods": [ - 6451592640, - 6451592656, - 6451592672, - 6451592720, - 6451592752, - 6451592736 + 6451594224, + 6451594240, + 6451594256, + 6451594304, + 6451594336, + 6451594320 ], "bases": [ { @@ -569651,7 +569657,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468615536, + "complete_object_locator": 6468619632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569660,14 +569666,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6466138296, + "vtable_address": 6466142504, "methods": [ - 6451592768, - 6451592784, - 6451592800, - 6451592816, - 6451592848, - 6451592832 + 6451594352, + 6451594368, + 6451594384, + 6451594400, + 6451594432, + 6451594416 ], "bases": [ { @@ -569687,7 +569693,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468615664, + "complete_object_locator": 6468619760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569696,14 +569702,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465797744, + "vtable_address": 6465801936, "methods": [ - 6449394000, - 6449395776, - 6449395136, - 6449395888, - 6449394640, - 6449395680 + 6449395552, + 6449397328, + 6449396688, + 6449397440, + 6449396192, + 6449397232 ], "bases": [ { @@ -569723,7 +569729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468513080, + "complete_object_locator": 6468517176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569732,14 +569738,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465797800, + "vtable_address": 6465801992, "methods": [ - 6449394256, - 6449395840, - 6449395280, - 6449395936, - 6449394816, - 6449395728 + 6449395808, + 6449397392, + 6449396832, + 6449397488, + 6449396368, + 6449397280 ], "bases": [ { @@ -569759,7 +569765,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468513208, + "complete_object_locator": 6468517304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569768,14 +569774,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466486200, + "vtable_address": 6466490328, "methods": [ - 6453449344, - 6453450432, - 6453449984, - 6453450592, - 6453449776, - 6453450320 + 6453451104, + 6453452192, + 6453451744, + 6453452352, + 6453451536, + 6453452080 ], "bases": [ { @@ -569795,7 +569801,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707608, + "complete_object_locator": 6468711704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569804,14 +569810,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec3D const &,class Vec3D *)'::`2'::,bool,class Vec3D const &,unsigned int>", - "vtable_address": 6465426040, + "vtable_address": 6465430200, "methods": [ - 6448070944, - 6448071312, - 6448071024, - 6448071360, - 6448070992, - 6448071056 + 6448072512, + 6448072880, + 6448072592, + 6448072928, + 6448072560, + 6448072624 ], "bases": [ { @@ -569831,7 +569837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448432, + "complete_object_locator": 6468452528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569840,14 +569846,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465958168, + "vtable_address": 6465962360, "methods": [ - 6450736896, - 6450738048, - 6450737248, - 6450738160, - 6450737088, - 6450737712 + 6450738464, + 6450739616, + 6450738816, + 6450739728, + 6450738656, + 6450739280 ], "bases": [ { @@ -569867,7 +569873,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566128, + "complete_object_locator": 6468570224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569876,14 +569882,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_CallVoteFailed_t const &)'::`16'::,void>", - "vtable_address": 6466556656, + "vtable_address": 6466560784, "methods": [ - 6453854976, - 6453856320, - 6453856096, - 6453856432, - 6453855424, - 6453856208 + 6453856736, + 6453858080, + 6453857856, + 6453858192, + 6453857184, + 6453857968 ], "bases": [ { @@ -569903,7 +569909,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723576, + "complete_object_locator": 6468727672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569912,14 +569918,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_Damage_t const &)'::`16'::,void>", - "vtable_address": 6466517496, + "vtable_address": 6466521624, "methods": [ - 6453602720, - 6453603488, - 6453603360, - 6453603552, - 6453602976, - 6453603424 + 6453604480, + 6453605248, + 6453605120, + 6453605312, + 6453604736, + 6453605184 ], "bases": [ { @@ -569939,7 +569945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714128, + "complete_object_locator": 6468718224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569948,14 +569954,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_DeepStats_t const &)'::`16'::,void>", - "vtable_address": 6466314272, + "vtable_address": 6466318432, "methods": [ - 6452300784, - 6452304976, - 6452304160, - 6452305344, - 6452301968, - 6452304592 + 6452302368, + 6452306560, + 6452305744, + 6452306928, + 6452303552, + 6452306176 ], "bases": [ { @@ -569975,7 +569981,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669208, + "complete_object_locator": 6468673304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -569984,14 +569990,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_DisconnectToLobby2_t const &)'::`16'::,void>", - "vtable_address": 6466313824, + "vtable_address": 6466317984, "methods": [ - 6452300848, - 6452304992, - 6452304176, - 6452305360, - 6452302064, - 6452304608 + 6452302432, + 6452306576, + 6452305760, + 6452306944, + 6452303648, + 6452306192 ], "bases": [ { @@ -570011,7 +570017,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668184, + "complete_object_locator": 6468672280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570020,14 +570026,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_DisconnectToLobby_t const &)'::`16'::,void>", - "vtable_address": 6466313768, + "vtable_address": 6466317928, "methods": [ - 6452300912, - 6452305008, - 6452304192, - 6452305376, - 6452302160, - 6452304624 + 6452302496, + 6452306592, + 6452305776, + 6452306960, + 6452303744, + 6452306208 ], "bases": [ { @@ -570047,7 +570053,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668056, + "complete_object_locator": 6468672152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570056,14 +570062,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_EndOfMatchAllPlayersData_t const &)'::`16'::,void>", - "vtable_address": 6466314216, + "vtable_address": 6466318376, "methods": [ - 6452300976, - 6452305024, - 6452304208, - 6452305392, - 6452302256, - 6452304640 + 6452302560, + 6452306608, + 6452305792, + 6452306976, + 6452303840, + 6452306224 ], "bases": [ { @@ -570083,7 +570089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669080, + "complete_object_locator": 6468673176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570092,14 +570098,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_HintText_t const &)'::`16'::,void>", - "vtable_address": 6466517632, + "vtable_address": 6466521760, "methods": [ - 6453602784, - 6453603504, - 6453603376, - 6453603568, - 6453603072, - 6453603440 + 6453604544, + 6453605264, + 6453605136, + 6453605328, + 6453604832, + 6453605200 ], "bases": [ { @@ -570119,7 +570125,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714256, + "complete_object_locator": 6468718352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570128,14 +570134,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_KeyHintText_t const &)'::`16'::,void>", - "vtable_address": 6466517688, + "vtable_address": 6466521816, "methods": [ - 6453602848, - 6453603520, - 6453603392, - 6453603584, - 6453603168, - 6453603456 + 6453604608, + 6453605280, + 6453605152, + 6453605344, + 6453604928, + 6453605216 ], "bases": [ { @@ -570155,7 +570161,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714384, + "complete_object_locator": 6468718480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570164,14 +570170,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_KillCam_t const &)'::`16'::,void>", - "vtable_address": 6466314552, + "vtable_address": 6466318712, "methods": [ - 6452301040, - 6452305040, - 6452304224, - 6452305408, - 6452302352, - 6452304656 + 6452302624, + 6452306624, + 6452305808, + 6452306992, + 6452303936, + 6452306240 ], "bases": [ { @@ -570191,7 +570197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669848, + "complete_object_locator": 6468673944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570200,14 +570206,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_MatchEndConditions_t const &)'::`16'::,void>", - "vtable_address": 6466313712, + "vtable_address": 6466317872, "methods": [ - 6452301104, - 6452305056, - 6452304240, - 6452305424, - 6452302448, - 6452304672 + 6452302688, + 6452306640, + 6452305824, + 6452307008, + 6452304032, + 6452306256 ], "bases": [ { @@ -570227,7 +570233,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667928, + "complete_object_locator": 6468672024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570236,14 +570242,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_PlayerDecalDigitalSignature_t const &)'::`16'::,void>", - "vtable_address": 6466314160, + "vtable_address": 6466318320, "methods": [ - 6452301168, - 6452305072, - 6452304256, - 6452305440, - 6452302544, - 6452304688 + 6452302752, + 6452306656, + 6452305840, + 6452307024, + 6452304128, + 6452306272 ], "bases": [ { @@ -570263,7 +570269,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668952, + "complete_object_locator": 6468673048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570272,14 +570278,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_PlayerStatsUpdate_t const &)'::`16'::,void>", - "vtable_address": 6466314608, + "vtable_address": 6466318768, "methods": [ - 6452301232, - 6452305088, - 6452304272, - 6452305456, - 6452302640, - 6452304704 + 6452302816, + 6452306672, + 6452305856, + 6452307040, + 6452304224, + 6452306288 ], "bases": [ { @@ -570299,7 +570305,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669976, + "complete_object_locator": 6468674072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570308,14 +570314,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_PostRoundDamageReport_t const &)'::`16'::,void>", - "vtable_address": 6466556600, + "vtable_address": 6466560728, "methods": [ - 6453855040, - 6453856336, - 6453856112, - 6453856448, - 6453855520, - 6453856224 + 6453856800, + 6453858096, + 6453857872, + 6453858208, + 6453857280, + 6453857984 ], "bases": [ { @@ -570335,7 +570341,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723448, + "complete_object_locator": 6468727544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570344,14 +570350,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_ProcessSpottedEntityUpdate_t const &)'::`16'::,void>", - "vtable_address": 6466428768, + "vtable_address": 6466432928, "methods": [ - 6452912624, - 6452912816, - 6452912784, - 6452912832, - 6452912688, - 6452912800 + 6452914240, + 6452914432, + 6452914400, + 6452914448, + 6452914304, + 6452914416 ], "bases": [ { @@ -570371,7 +570377,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468694408, + "complete_object_locator": 6468698504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570380,14 +570386,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_QuestProgress_t const &)'::`16'::,void>", - "vtable_address": 6466314104, + "vtable_address": 6466318264, "methods": [ - 6452301296, - 6452305104, - 6452304288, - 6452305472, - 6452302736, - 6452304720 + 6452302880, + 6452306688, + 6452305872, + 6452307056, + 6452304320, + 6452306304 ], "bases": [ { @@ -570407,7 +570413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668824, + "complete_object_locator": 6468672920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570416,14 +570422,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_RadioText_t const &)'::`16'::,void>", - "vtable_address": 6466847736, + "vtable_address": 6466851848, "methods": [ - 6456573552, - 6456574512, - 6456574352, - 6456574592, - 6456573872, - 6456574432 + 6456575328, + 6456576288, + 6456576128, + 6456576368, + 6456575648, + 6456576208 ], "bases": [ { @@ -570443,7 +570449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804152, + "complete_object_locator": 6468808248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570452,14 +570458,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_RawAudio_t const &)'::`16'::,void>", - "vtable_address": 6466847960, + "vtable_address": 6466852072, "methods": [ - 6456573616, - 6456574528, - 6456574368, - 6456574608, - 6456573968, - 6456574448 + 6456575392, + 6456576304, + 6456576144, + 6456576384, + 6456575744, + 6456576224 ], "bases": [ { @@ -570479,7 +570485,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804664, + "complete_object_locator": 6468808760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570488,14 +570494,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_RecurringMissionSchema_t const &)'::`16'::,void>", - "vtable_address": 6466713128, + "vtable_address": 6466717224, "methods": [ - 6455684464, - 6455685008, - 6455684672, - 6455685056, - 6455684560, - 6455684976 + 6455686224, + 6455686768, + 6455686432, + 6455686816, + 6455686320, + 6455686736 ], "bases": [ { @@ -570515,7 +570521,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772808, + "complete_object_locator": 6468776904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570524,14 +570530,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_RoundBackupFilenames_t const &)'::`16'::,void>", - "vtable_address": 6466654192, + "vtable_address": 6466658288, "methods": [ - 6454952064, + 6454953824, + 6454955936, + 6454955008, + 6454956240, 6454954176, - 6454953248, - 6454954480, - 6454952416, - 6454953840 + 6454955600 ], "bases": [ { @@ -570551,7 +570557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752440, + "complete_object_locator": 6468756536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570560,14 +570566,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_RoundEndReportData_t const &)'::`16'::,void>", - "vtable_address": 6466556936, + "vtable_address": 6466561064, "methods": [ - 6453855104, - 6453856352, - 6453856128, - 6453856464, - 6453855616, - 6453856240 + 6453856864, + 6453858112, + 6453857888, + 6453858224, + 6453857376, + 6453858000 ], "bases": [ { @@ -570587,7 +570593,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468724216, + "complete_object_locator": 6468728312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570596,14 +570602,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_ScoreLeaderboardData_t const &)'::`16'::,void>", - "vtable_address": 6466313992, + "vtable_address": 6466318152, "methods": [ - 6452301360, - 6452305120, - 6452304304, - 6452305488, - 6452302832, - 6452304736 + 6452302944, + 6452306704, + 6452305888, + 6452307072, + 6452304416, + 6452306320 ], "bases": [ { @@ -570623,7 +570629,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668568, + "complete_object_locator": 6468672664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570632,14 +570638,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_SendLastKillerDamageToClient_t const &)'::`16'::,void>", - "vtable_address": 6466213712, + "vtable_address": 6466217824, "methods": [ - 6451988656, - 6451989280, - 6451989072, - 6451989376, - 6451988848, - 6451989216 + 6451990240, + 6451990864, + 6451990656, + 6451990960, + 6451990432, + 6451990800 ], "bases": [ { @@ -570659,7 +570665,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640576, + "complete_object_locator": 6468644672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570668,14 +570674,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_SendPlayerItemDrops_t const &)'::`16'::,void>", - "vtable_address": 6466314328, + "vtable_address": 6466318488, "methods": [ - 6452301424, - 6452305136, - 6452304320, - 6452305504, - 6452302928, - 6452304752 + 6452303008, + 6452306720, + 6452305904, + 6452307088, + 6452304512, + 6452306336 ], "bases": [ { @@ -570695,7 +570701,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669336, + "complete_object_locator": 6468673432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570704,14 +570710,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_SendPlayerItemFound_t const &)'::`16'::,void>", - "vtable_address": 6466314440, + "vtable_address": 6466318600, "methods": [ - 6452301488, - 6452305152, - 6452304336, - 6452305520, - 6452303024, - 6452304768 + 6452303072, + 6452306736, + 6452305920, + 6452307104, + 6452304608, + 6452306352 ], "bases": [ { @@ -570731,7 +570737,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669592, + "complete_object_locator": 6468673688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570740,14 +570746,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_SendPlayerLoadout_t const &)'::`16'::,void>", - "vtable_address": 6466314496, + "vtable_address": 6466318656, "methods": [ - 6452301552, - 6452305168, - 6452304352, - 6452305536, - 6452303120, - 6452304784 + 6452303136, + 6452306752, + 6452305936, + 6452307120, + 6452304704, + 6452306368 ], "bases": [ { @@ -570767,7 +570773,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669720, + "complete_object_locator": 6468673816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570776,14 +570782,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_ServerRankRevealAll_t const &)'::`16'::,void>", - "vtable_address": 6466313936, + "vtable_address": 6466318096, "methods": [ - 6452301616, - 6452305184, - 6452304368, - 6452305552, - 6452303216, - 6452304800 + 6452303200, + 6452306768, + 6452305952, + 6452307136, + 6452304800, + 6452306384 ], "bases": [ { @@ -570803,7 +570809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668440, + "complete_object_locator": 6468672536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570812,14 +570818,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_ServerRankUpdate_t const &)'::`16'::,void>", - "vtable_address": 6466313880, + "vtable_address": 6466318040, "methods": [ - 6452301680, - 6452305200, - 6452304384, - 6452305568, - 6452303312, - 6452304816 + 6452303264, + 6452306784, + 6452305968, + 6452307152, + 6452304896, + 6452306400 ], "bases": [ { @@ -570839,7 +570845,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668312, + "complete_object_locator": 6468672408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570848,14 +570854,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_UpdateScreenHealthBar_t const &)'::`16'::,void>", - "vtable_address": 6466213768, + "vtable_address": 6466217880, "methods": [ - 6451988720, - 6451989296, - 6451989088, - 6451989392, - 6451988944, - 6451989232 + 6451990304, + 6451990880, + 6451990672, + 6451990976, + 6451990528, + 6451990816 ], "bases": [ { @@ -570875,7 +570881,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640704, + "complete_object_locator": 6468644800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570884,14 +570890,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_VoteFailed_t const &)'::`16'::,void>", - "vtable_address": 6466556824, + "vtable_address": 6466560952, "methods": [ - 6453855168, - 6453856368, - 6453856144, - 6453856480, - 6453855712, - 6453856256 + 6453856928, + 6453858128, + 6453857904, + 6453858240, + 6453857472, + 6453858016 ], "bases": [ { @@ -570911,7 +570917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723960, + "complete_object_locator": 6468728056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570920,14 +570926,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_VotePass_t const &)'::`16'::,void>", - "vtable_address": 6466556768, + "vtable_address": 6466560896, "methods": [ - 6453855232, - 6453856384, - 6453856160, - 6453856496, - 6453855808, - 6453856272 + 6453856992, + 6453858144, + 6453857920, + 6453858256, + 6453857568, + 6453858032 ], "bases": [ { @@ -570947,7 +570953,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723832, + "complete_object_locator": 6468727928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570956,14 +570962,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_VoteSetup_t const &)'::`16'::,void>", - "vtable_address": 6466556880, + "vtable_address": 6466561008, "methods": [ - 6453855296, - 6453856400, - 6453856176, - 6453856512, - 6453855904, - 6453856288 + 6453857056, + 6453858160, + 6453857936, + 6453858272, + 6453857664, + 6453858048 ], "bases": [ { @@ -570983,7 +570989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468724088, + "complete_object_locator": 6468728184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -570992,14 +570998,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_VoteStart_t const &)'::`16'::,void>", - "vtable_address": 6466556712, + "vtable_address": 6466560840, "methods": [ - 6453855360, - 6453856416, - 6453856192, - 6453856528, - 6453856000, - 6453856304 + 6453857120, + 6453858176, + 6453857952, + 6453858288, + 6453857760, + 6453858064 ], "bases": [ { @@ -571019,7 +571025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468723704, + "complete_object_locator": 6468727800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571028,14 +571034,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_WeaponSound_t const &)'::`16'::,void>", - "vtable_address": 6466314384, + "vtable_address": 6466318544, "methods": [ - 6452301744, - 6452305216, - 6452304400, - 6452305584, - 6452303408, - 6452304832 + 6452303328, + 6452306800, + 6452305984, + 6452307168, + 6452304992, + 6452306416 ], "bases": [ { @@ -571055,7 +571061,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468669464, + "complete_object_locator": 6468673560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571064,14 +571070,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CCSUsrMsg_XpUpdate_t const &)'::`16'::,void>", - "vtable_address": 6466314048, + "vtable_address": 6466318208, "methods": [ - 6452301808, - 6452305232, - 6452304416, - 6452305600, - 6452303504, - 6452304848 + 6452303392, + 6452306816, + 6452306000, + 6452307184, + 6452305088, + 6452306432 ], "bases": [ { @@ -571091,7 +571097,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468668696, + "complete_object_locator": 6468672792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571100,14 +571106,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CEntityMessageRemoveAllDecals_t const &)'::`16'::,void>", - "vtable_address": 6465958112, + "vtable_address": 6465962304, "methods": [ - 6450736800, - 6450738000, - 6450737216, - 6450738128, - 6450736976, - 6450737680 + 6450738368, + 6450739568, + 6450738784, + 6450739696, + 6450738544, + 6450739248 ], "bases": [ { @@ -571127,7 +571133,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566000, + "complete_object_locator": 6468570096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571136,14 +571142,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageAudioParameter_t const &)'::`16'::,void>", - "vtable_address": 6466056104, + "vtable_address": 6466060312, "methods": [ - 6451160768, - 6451161408, - 6451161280, - 6451161472, - 6451160976, - 6451161344 + 6451162336, + 6451162976, + 6451162848, + 6451163040, + 6451162544, + 6451162912 ], "bases": [ { @@ -571163,7 +571169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468592016, + "complete_object_locator": 6468596112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571172,14 +571178,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageCameraTransition_t const &)'::`16'::,void>", - "vtable_address": 6466033544, + "vtable_address": 6466037752, "methods": [ - 6451057712, - 6451057984, - 6451057920, - 6451058032, - 6451057808, - 6451057952 + 6451059280, + 6451059552, + 6451059488, + 6451059600, + 6451059376, + 6451059520 ], "bases": [ { @@ -571199,7 +571205,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583632, + "complete_object_locator": 6468587728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571208,14 +571214,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageCloseCaptionDirect_t const &)'::`16'::,void>", - "vtable_address": 6466138008, + "vtable_address": 6466142216, "methods": [ - 6451590544, - 6451591296, - 6451591152, - 6451592016, - 6451590752, - 6451591216 + 6451592128, + 6451592880, + 6451592736, + 6451593600, + 6451592336, + 6451592800 ], "bases": [ { @@ -571235,7 +571241,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468615024, + "complete_object_locator": 6468619120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571244,14 +571250,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageCloseCaptionPlaceholder_t const &)'::`16'::,void>", - "vtable_address": 6466138064, + "vtable_address": 6466142272, "methods": [ - 6451590608, - 6451591312, - 6451591168, - 6451592032, - 6451590848, - 6451591232 + 6451592192, + 6451592896, + 6451592752, + 6451593616, + 6451592432, + 6451592816 ], "bases": [ { @@ -571271,7 +571277,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468615152, + "complete_object_locator": 6468619248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571280,14 +571286,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageCloseCaption_t const &)'::`16'::,void>", - "vtable_address": 6466137952, + "vtable_address": 6466142160, "methods": [ - 6451590672, - 6451591328, - 6451591184, - 6451592048, - 6451590944, - 6451591248 + 6451592256, + 6451592912, + 6451592768, + 6451593632, + 6451592528, + 6451592832 ], "bases": [ { @@ -571307,7 +571313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614896, + "complete_object_locator": 6468618992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571316,14 +571322,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageCurrentTimescale_t const &)'::`16'::,void>", - "vtable_address": 6466065936, + "vtable_address": 6466070144, "methods": [ - 6451231232, - 6451231616, - 6451231552, - 6451231648, - 6451231360, - 6451231584 + 6451232800, + 6451233184, + 6451233120, + 6451233216, + 6451232928, + 6451233152 ], "bases": [ { @@ -571343,7 +571349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468595776, + "complete_object_locator": 6468599872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571352,14 +571358,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageDesiredTimescale_t const &)'::`16'::,void>", - "vtable_address": 6466065992, + "vtable_address": 6466070200, "methods": [ - 6451231296, - 6451231632, - 6451231568, - 6451231664, - 6451231456, - 6451231600 + 6451232864, + 6451233200, + 6451233136, + 6451233232, + 6451233024, + 6451233168 ], "bases": [ { @@ -571379,7 +571385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468595904, + "complete_object_locator": 6468600000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571388,14 +571394,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageFade_t const &)'::`16'::,void>", - "vtable_address": 6466131168, + "vtable_address": 6466135376, "methods": [ - 6451544192, - 6451545264, - 6451545072, - 6451545360, - 6451544528, - 6451545168 + 6451545776, + 6451546848, + 6451546656, + 6451546944, + 6451546112, + 6451546752 ], "bases": [ { @@ -571415,7 +571421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468612120, + "complete_object_locator": 6468616216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571424,14 +571430,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageRequestState_t const &)'::`16'::,void>", - "vtable_address": 6466131224, + "vtable_address": 6466135432, "methods": [ - 6451544256, - 6451545280, - 6451545088, - 6451545376, - 6451544624, - 6451545184 + 6451545840, + 6451546864, + 6451546672, + 6451546960, + 6451546208, + 6451546768 ], "bases": [ { @@ -571451,7 +571457,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468612248, + "complete_object_locator": 6468616344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571460,14 +571466,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageResetHUD_t const &)'::`16'::,void>", - "vtable_address": 6466517440, + "vtable_address": 6466521568, "methods": [ - 6453602912, - 6453603536, - 6453603408, - 6453603600, - 6453603264, - 6453603472 + 6453604672, + 6453605296, + 6453605168, + 6453605360, + 6453605024, + 6453605232 ], "bases": [ { @@ -571487,7 +571493,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468714000, + "complete_object_locator": 6468718096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571496,14 +571502,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageRumble_t const &)'::`16'::,void>", - "vtable_address": 6466055992, + "vtable_address": 6466060200, "methods": [ - 6451160832, - 6451161424, - 6451161296, - 6451161488, - 6451161072, - 6451161360 + 6451162400, + 6451162992, + 6451162864, + 6451163056, + 6451162640, + 6451162928 ], "bases": [ { @@ -571523,7 +571529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591760, + "complete_object_locator": 6468595856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571532,14 +571538,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageSayText2_t const &)'::`16'::,void>", - "vtable_address": 6466847848, + "vtable_address": 6466851960, "methods": [ - 6456573680, - 6456574544, - 6456574384, - 6456574624, - 6456574064, - 6456574464 + 6456575456, + 6456576320, + 6456576160, + 6456576400, + 6456575840, + 6456576240 ], "bases": [ { @@ -571559,7 +571565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804408, + "complete_object_locator": 6468808504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571568,14 +571574,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageSayText_t const &)'::`16'::,void>", - "vtable_address": 6466847792, + "vtable_address": 6466851904, "methods": [ - 6456573744, - 6456574560, - 6456574400, - 6456574640, - 6456574160, - 6456574480 + 6456575520, + 6456576336, + 6456576176, + 6456576416, + 6456575936, + 6456576256 ], "bases": [ { @@ -571595,7 +571601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804280, + "complete_object_locator": 6468808376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571604,14 +571610,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageSendAudio_t const &)'::`16'::,void>", - "vtable_address": 6466056048, + "vtable_address": 6466060256, "methods": [ - 6451160896, - 6451161440, - 6451161312, - 6451161504, - 6451161168, - 6451161376 + 6451162464, + 6451163008, + 6451162880, + 6451163072, + 6451162736, + 6451162944 ], "bases": [ { @@ -571631,7 +571637,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591888, + "complete_object_locator": 6468595984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571640,14 +571646,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageShakeDir_t const &)'::`16'::,void>", - "vtable_address": 6466131112, + "vtable_address": 6466135320, "methods": [ - 6451544320, - 6451545296, - 6451545104, - 6451545392, - 6451544720, - 6451545200 + 6451545904, + 6451546880, + 6451546688, + 6451546976, + 6451546304, + 6451546784 ], "bases": [ { @@ -571667,7 +571673,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611992, + "complete_object_locator": 6468616088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571676,14 +571682,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageShake_t const &)'::`16'::,void>", - "vtable_address": 6466131056, + "vtable_address": 6466135264, "methods": [ - 6451544384, - 6451545312, - 6451545120, - 6451545408, - 6451544816, - 6451545216 + 6451545968, + 6451546896, + 6451546704, + 6451546992, + 6451546400, + 6451546800 ], "bases": [ { @@ -571703,7 +571709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611864, + "complete_object_locator": 6468615960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571712,14 +571718,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageTextMsg_t const &)'::`16'::,void>", - "vtable_address": 6466847904, + "vtable_address": 6466852016, "methods": [ - 6456573808, - 6456574576, - 6456574416, - 6456574656, - 6456574256, - 6456574496 + 6456575584, + 6456576352, + 6456576192, + 6456576432, + 6456576032, + 6456576272 ], "bases": [ { @@ -571739,7 +571745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468804536, + "complete_object_locator": 6468808632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571748,7 +571754,7 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageUpdateCssClasses_t const &)'::`16'::,void>", - "vtable_address": 6464442416, + "vtable_address": 6464446512, "methods": [ 6443888000, 6443888448, @@ -571775,7 +571781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468225312, + "complete_object_locator": 6468229408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571784,14 +571790,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessageVoiceMask_t const &)'::`16'::,void>", - "vtable_address": 6466131280, + "vtable_address": 6466135488, "methods": [ - 6451544448, - 6451545328, - 6451545136, - 6451545424, - 6451544912, - 6451545232 + 6451546032, + 6451546912, + 6451546720, + 6451547008, + 6451546496, + 6451546816 ], "bases": [ { @@ -571811,7 +571817,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468612376, + "complete_object_locator": 6468616472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571820,14 +571826,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessage_NotifyResponseFound_t const &)'::`16'::,void>", - "vtable_address": 6465741800, + "vtable_address": 6465745992, "methods": [ - 6449067696, - 6449068480, - 6449068176, - 6449068528, - 6449067840, - 6449068224 + 6449069248, + 6449070032, + 6449069728, + 6449070080, + 6449069392, + 6449069776 ], "bases": [ { @@ -571847,7 +571853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468501872, + "complete_object_locator": 6468505968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571856,14 +571862,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMessage_PlayResponseConditional_t const &)'::`16'::,void>", - "vtable_address": 6465741856, + "vtable_address": 6465746048, "methods": [ - 6449067760, - 6449068496, - 6449068192, - 6449068544, - 6449067936, - 6449068240 + 6449069312, + 6449070048, + 6449069744, + 6449070096, + 6449069488, + 6449069792 ], "bases": [ { @@ -571883,7 +571889,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468502000, + "complete_object_locator": 6468506096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571892,14 +571898,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::Dispatch(class CUserMsg_ParticleManager_t const &)'::`16'::,void>", - "vtable_address": 6465798256, + "vtable_address": 6465802448, "methods": [ - 6449394192, - 6449395824, - 6449395264, - 6449395920, - 6449394720, - 6449395712 + 6449395744, + 6449397376, + 6449396816, + 6449397472, + 6449396272, + 6449397264 ], "bases": [ { @@ -571919,7 +571925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468513720, + "complete_object_locator": 6468517816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571928,7 +571934,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,int,int>", - "vtable_address": 6464692240, + "vtable_address": 6464696320, "methods": [ 6444984768, 6444985344, @@ -571955,7 +571961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272672, + "complete_object_locator": 6468276768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -571964,7 +571970,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464694096, + "vtable_address": 6464698176, "methods": [ 6444984736, 6444985312, @@ -571991,7 +571997,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468273056, + "complete_object_locator": 6468277152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572000,7 +572006,7 @@ }, { "type_name": "std::_Func_impl_no_alloc const &)'::`2'::,void>", - "vtable_address": 6464693936, + "vtable_address": 6464698016, "methods": [ 6444984704, 6444985280, @@ -572027,7 +572033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468272928, + "complete_object_locator": 6468277024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572036,14 +572042,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,void (__cdecl *)(class ConVarRefAbstract *,class CSplitScreenSlot,void const *,class ConVarRefAbstract *,class ConVarUserInfoSet_t,void *),void *>", - "vtable_address": 6465741280, + "vtable_address": 6465745472, "methods": [ - 6449067664, - 6449068448, - 6449068032, - 6449068512, - 6449067824, - 6449068208 + 6449069216, + 6449070000, + 6449069584, + 6449070064, + 6449069376, + 6449069760 ], "bases": [ { @@ -572063,7 +572069,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468501744, + "complete_object_locator": 6468505840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572072,14 +572078,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class panorama::CPanel2D *>", - "vtable_address": 6466587032, + "vtable_address": 6466591160, "methods": [ - 6454063920, - 6454064576, - 6454064336, - 6454064784, - 6454064128, - 6454064448 + 6454065680, + 6454066336, + 6454066096, + 6454066544, + 6454065888, + 6454066208 ], "bases": [ { @@ -572099,7 +572105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468730224, + "complete_object_locator": 6468734320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572108,14 +572114,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class panorama::CLabel *>", - "vtable_address": 6466572584, + "vtable_address": 6466576712, "methods": [ - 6453917392, - 6453917968, - 6453917584, - 6453918016, - 6453917440, - 6453917904 + 6453919152, + 6453919728, + 6453919344, + 6453919776, + 6453919200, + 6453919664 ], "bases": [ { @@ -572135,7 +572141,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468727872, + "complete_object_locator": 6468731968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572144,14 +572150,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,char const *>", - "vtable_address": 6466313656, + "vtable_address": 6466317816, "methods": [ - 6452300752, - 6452304944, - 6452304144, - 6452305328, - 6452301952, - 6452304576 + 6452302336, + 6452306528, + 6452305728, + 6452306912, + 6452303536, + 6452306160 ], "bases": [ { @@ -572171,7 +572177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667800, + "complete_object_locator": 6468671896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572180,14 +572186,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465797688, + "vtable_address": 6465801880, "methods": [ - 6449394160, - 6449395792, - 6449395248, - 6449395904, - 6449394704, - 6449395696 + 6449395712, + 6449397344, + 6449396800, + 6449397456, + 6449396256, + 6449397248 ], "bases": [ { @@ -572207,7 +572213,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468512952, + "complete_object_locator": 6468517048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572216,14 +572222,14 @@ }, { "type_name": "std::_Func_impl_no_alloc &)'::`2'::,void>", - "vtable_address": 6467720328, + "vtable_address": 6467724424, "methods": [ - 6462468672, - 6462469184, - 6462469120, - 6462469216, - 6462468768, - 6462469152 + 6462470864, + 6462471376, + 6462471312, + 6462471408, + 6462470960, + 6462471344 ], "bases": [ { @@ -572243,7 +572249,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468986336, + "complete_object_locator": 6468990432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572252,14 +572258,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465832208, + "vtable_address": 6465836400, "methods": [ - 6449788592, - 6449789232, - 6449788736, - 6449789328, - 6449788688, - 6449788784 + 6449790160, + 6449790800, + 6449790304, + 6449790896, + 6449790256, + 6449790352 ], "bases": [ { @@ -572279,7 +572285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468527088, + "complete_object_locator": 6468531184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572288,14 +572294,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465832152, + "vtable_address": 6465836344, "methods": [ - 6449788624, - 6449789264, - 6449788752, - 6449789344, - 6449788704, - 6449788800 + 6449790192, + 6449790832, + 6449790320, + 6449790912, + 6449790272, + 6449790368 ], "bases": [ { @@ -572315,7 +572321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526960, + "complete_object_locator": 6468531056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572324,14 +572330,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465832096, + "vtable_address": 6465836288, "methods": [ - 6449788656, - 6449789296, - 6449788768, - 6449789360, - 6449788720, - 6449788816 + 6449790224, + 6449790864, + 6449790336, + 6449790928, + 6449790288, + 6449790384 ], "bases": [ { @@ -572351,7 +572357,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468526832, + "complete_object_locator": 6468530928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572360,7 +572366,7 @@ }, { "type_name": "std::_Func_impl_no_alloc &)'::`13'::,void,int,int>", - "vtable_address": 6464757824, + "vtable_address": 6464761904, "methods": [ 6445398752, 6445399136, @@ -572387,7 +572393,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468283456, + "complete_object_locator": 6468287552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572396,14 +572402,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,char const *>", - "vtable_address": 6466652712, + "vtable_address": 6466656808, "methods": [ - 6454952000, - 6454954112, - 6454952752, - 6454954448, - 6454952384, - 6454953808 + 6454953760, + 6454955872, + 6454954512, + 6454956208, + 6454954144, + 6454955568 ], "bases": [ { @@ -572423,7 +572429,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750264, + "complete_object_locator": 6468754360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572432,14 +572438,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,char const *>", - "vtable_address": 6466652768, + "vtable_address": 6466656864, "methods": [ - 6454952144, - 6454954208, - 6454953280, - 6454954512, - 6454952528, - 6454953872 + 6454953904, + 6454955968, + 6454955040, + 6454956272, + 6454954288, + 6454955632 ], "bases": [ { @@ -572459,7 +572465,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750392, + "complete_object_locator": 6468754488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572468,14 +572474,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,class Vec3D,int,class CUtlMultiJobProcessor *)'::`12'::,void>", - "vtable_address": 6467838600, + "vtable_address": 6467842696, "methods": [ - 6463204144, - 6463204912, - 6463204528, - 6463204960, - 6463204320, - 6463204832 + 6463206336, + 6463207104, + 6463206720, + 6463207152, + 6463206512, + 6463207024 ], "bases": [ { @@ -572495,7 +572501,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468994152, + "complete_object_locator": 6468998248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572504,14 +572510,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,class Vec3D,int,class CUtlMultiJobProcessor *)'::`25'::,void>", - "vtable_address": 6467838656, + "vtable_address": 6467842752, "methods": [ - 6463204224, - 6463204928, - 6463204640, - 6463204976, - 6463204336, - 6463204848 + 6463206416, + 6463207120, + 6463206832, + 6463207168, + 6463206528, + 6463207040 ], "bases": [ { @@ -572531,7 +572537,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468994280, + "complete_object_locator": 6468998376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572540,14 +572546,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466486312, + "vtable_address": 6466490440, "methods": [ - 6453449440, - 6453450528, - 6453450032, - 6453450640, - 6453449824, - 6453450368 + 6453451200, + 6453452288, + 6453451792, + 6453452400, + 6453451584, + 6453452128 ], "bases": [ { @@ -572567,7 +572573,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707864, + "complete_object_locator": 6468711960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572576,14 +572582,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465958224, + "vtable_address": 6465962416, "methods": [ - 6450736928, - 6450738080, - 6450737424, - 6450738176, - 6450737104, - 6450737728 + 6450738496, + 6450739648, + 6450738992, + 6450739744, + 6450738672, + 6450739296 ], "bases": [ { @@ -572603,7 +572609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468566256, + "complete_object_locator": 6468570352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572612,7 +572618,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464508448, + "vtable_address": 6464512544, "methods": [ 6444255232, 6444256576, @@ -572639,7 +572645,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239544, + "complete_object_locator": 6468243640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572648,7 +572654,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464508504, + "vtable_address": 6464512600, "methods": [ 6444255440, 6444256592, @@ -572675,7 +572681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239672, + "complete_object_locator": 6468243768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572684,7 +572690,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464537568, + "vtable_address": 6464541664, "methods": [ 6444310880, 6444311088, @@ -572711,7 +572717,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468242264, + "complete_object_locator": 6468246360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572720,14 +572726,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class C_BaseEntity *>", - "vtable_address": 6465958000, + "vtable_address": 6465962192, "methods": [ - 6450736864, - 6450738016, - 6450737232, - 6450738144, - 6450737072, - 6450737696 + 6450738432, + 6450739584, + 6450738800, + 6450739712, + 6450738640, + 6450739264 ], "bases": [ { @@ -572747,7 +572753,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468565744, + "complete_object_locator": 6468569840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572756,14 +572762,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466486048, + "vtable_address": 6466490176, "methods": [ - 6453449168, - 6453450416, - 6453449920, - 6453450576, - 6453449680, - 6453450304 + 6453450928, + 6453452176, + 6453451680, + 6453452336, + 6453451440, + 6453452064 ], "bases": [ { @@ -572783,7 +572789,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707352, + "complete_object_locator": 6468711448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572792,14 +572798,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466485992, + "vtable_address": 6466490120, "methods": [ - 6453449376, - 6453450464, - 6453450000, - 6453450608, - 6453449792, - 6453450336 + 6453451136, + 6453452224, + 6453451760, + 6453452368, + 6453451552, + 6453452096 ], "bases": [ { @@ -572819,7 +572825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707224, + "complete_object_locator": 6468711320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572828,14 +572834,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466485936, + "vtable_address": 6466490064, "methods": [ - 6453449408, - 6453450496, - 6453450016, - 6453450624, - 6453449808, - 6453450352 + 6453451168, + 6453452256, + 6453451776, + 6453452384, + 6453451568, + 6453452112 ], "bases": [ { @@ -572855,7 +572861,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707096, + "complete_object_locator": 6468711192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572864,14 +572870,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,class panorama::CPanel2D *,class panorama::CPanel2D *,int,class panorama::CPanel2D *>", - "vtable_address": 6466398552, + "vtable_address": 6466402712, "methods": [ - 6452783968, - 6452785184, - 6452784320, - 6452785264, - 6452784256, - 6452785120 + 6452785584, + 6452786800, + 6452785936, + 6452786880, + 6452785872, + 6452786736 ], "bases": [ { @@ -572891,7 +572897,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689720, + "complete_object_locator": 6468693816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572900,14 +572906,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CCommand const &>", - "vtable_address": 6466313088, + "vtable_address": 6466317248, "methods": [ - 6452300704, - 6452304896, - 6452303632, - 6452305296, - 6452301920, - 6452304544 + 6452302288, + 6452306480, + 6452305216, + 6452306880, + 6452303504, + 6452306128 ], "bases": [ { @@ -572927,7 +572933,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667288, + "complete_object_locator": 6468671384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572936,14 +572942,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CCommand const &>", - "vtable_address": 6466313144, + "vtable_address": 6466317304, "methods": [ - 6452301872, - 6452305248, - 6452304432, - 6452305616, - 6452303600, - 6452304864 + 6452303456, + 6452306832, + 6452306016, + 6452307200, + 6452305184, + 6452306448 ], "bases": [ { @@ -572963,7 +572969,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667416, + "complete_object_locator": 6468671512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -572972,14 +572978,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CCommand const &>", - "vtable_address": 6466313200, + "vtable_address": 6466317360, "methods": [ - 6452301888, - 6452305264, - 6452304528, - 6452305632, - 6452303616, - 6452304880 + 6452303472, + 6452306848, + 6452306112, + 6452307216, + 6452305200, + 6452306464 ], "bases": [ { @@ -572999,7 +573005,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667544, + "complete_object_locator": 6468671640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573008,14 +573014,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,class panorama::CPanel2D *,class panorama::CPanel2D *,int,class panorama::CPanel2D *>", - "vtable_address": 6466450672, + "vtable_address": 6466454832, "methods": [ - 6453080064, - 6453080160, - 6453080112, - 6453080192, - 6453080096, - 6453080144 + 6453081680, + 6453081776, + 6453081728, + 6453081808, + 6453081712, + 6453081760 ], "bases": [ { @@ -573035,7 +573041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468699560, + "complete_object_locator": 6468703656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573044,14 +573050,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::operator()(void) const'::`2'::,void,struct SteamUGCQueryCompleted_t *,bool>", - "vtable_address": 6466332336, + "vtable_address": 6466336496, "methods": [ - 6452431376, - 6452431840, - 6452431424, - 6452431872, - 6452431408, - 6452431824 + 6452432992, + 6452433456, + 6452433040, + 6452433488, + 6452433024, + 6452433440 ], "bases": [ { @@ -573071,7 +573077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468676528, + "complete_object_locator": 6468680624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573080,14 +573086,14 @@ }, { "type_name": "std::_Func_impl_no_alloc &)'::`2'::::operator()(void) const'::`2'::,void>", - "vtable_address": 6467720384, + "vtable_address": 6467724480, "methods": [ - 6462468592, - 6462469168, - 6462468784, - 6462469200, - 6462468752, - 6462469136 + 6462470784, + 6462471360, + 6462470976, + 6462471392, + 6462470944, + 6462471328 ], "bases": [ { @@ -573107,7 +573113,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468986464, + "complete_object_locator": 6468990560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573116,14 +573122,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::operator()(char const *) const'::`2'::,bool,class CCommand const &>", - "vtable_address": 6466313256, + "vtable_address": 6466317416, "methods": [ - 6452300720, - 6452304912, - 6452303728, + 6452302304, + 6452306496, 6452305312, - 6452301936, - 6452304560 + 6452306896, + 6452303520, + 6452306144 ], "bases": [ { @@ -573143,7 +573149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468667672, + "complete_object_locator": 6468671768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573152,14 +573158,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::operator()(void) const'::`23'::,void,struct SteamUGCQueryCompleted_t *,bool>", - "vtable_address": 6466572680, + "vtable_address": 6466576808, "methods": [ - 6453917408, - 6453917984, - 6453917696, - 6453918032, - 6453917456, - 6453917920 + 6453919168, + 6453919744, + 6453919456, + 6453919792, + 6453919216, + 6453919680 ], "bases": [ { @@ -573179,7 +573185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728000, + "complete_object_locator": 6468732096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573188,14 +573194,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class panorama::CDelayLoadPanel *>", - "vtable_address": 6467601568, + "vtable_address": 6467605664, "methods": [ - 6461848288, - 6461848368, - 6461848320, - 6461848384, - 6461848304, - 6461848352 + 6461850480, + 6461850560, + 6461850512, + 6461850576, + 6461850496, + 6461850544 ], "bases": [ { @@ -573215,7 +573221,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960824, + "complete_object_locator": 6468964920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573224,14 +573230,14 @@ }, { "type_name": "std::_Func_impl_no_alloc(class std::function const &)'::`2'::,bool,class panorama::CPanel2D *>", - "vtable_address": 6466587392, + "vtable_address": 6466591520, "methods": [ - 6454063888, - 6454064544, - 6454064224, - 6454064768, - 6454064112, - 6454064432 + 6454065648, + 6454066304, + 6454065984, + 6454066528, + 6454065872, + 6454066192 ], "bases": [ { @@ -573251,7 +573257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468730864, + "complete_object_locator": 6468734960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573260,14 +573266,14 @@ }, { "type_name": "std::_Func_impl_no_alloc(class std::function const &)'::`2'::,bool,class panorama::CPanel2D *>", - "vtable_address": 6466572816, + "vtable_address": 6466576944, "methods": [ - 6453917360, - 6453917936, - 6453917472, - 6453918000, - 6453917424, - 6453917888 + 6453919120, + 6453919696, + 6453919232, + 6453919760, + 6453919184, + 6453919648 ], "bases": [ { @@ -573287,7 +573293,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468728128, + "complete_object_locator": 6468732224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573296,14 +573302,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,char const *>", - "vtable_address": 6465663320, + "vtable_address": 6465667496, "methods": [ - 6448507856, - 6448508624, - 6448508032, - 6448508736, - 6448507968, - 6448508336 + 6448509424, + 6448510192, + 6448509600, + 6448510304, + 6448509536, + 6448509904 ], "bases": [ { @@ -573323,7 +573329,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468484304, + "complete_object_locator": 6468488400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573332,14 +573338,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,char const *>", - "vtable_address": 6465663376, + "vtable_address": 6465667552, "methods": [ - 6448507872, - 6448508640, - 6448508048, - 6448508752, - 6448507984, - 6448508352 + 6448509440, + 6448510208, + 6448509616, + 6448510320, + 6448509552, + 6448509920 ], "bases": [ { @@ -573359,7 +573365,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468484432, + "complete_object_locator": 6468488528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573368,14 +573374,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,char const *>", - "vtable_address": 6465663432, + "vtable_address": 6465667608, "methods": [ - 6448507904, - 6448508672, - 6448508192, - 6448508768, - 6448508000, - 6448508368 + 6448509472, + 6448510240, + 6448509760, + 6448510336, + 6448509568, + 6448509936 ], "bases": [ { @@ -573395,7 +573401,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468484560, + "complete_object_locator": 6468488656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573404,14 +573410,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,char const *>", - "vtable_address": 6465663488, + "vtable_address": 6465667664, "methods": [ - 6448507936, - 6448508704, - 6448508320, - 6448508784, - 6448508016, - 6448508384 + 6448509504, + 6448510272, + 6448509888, + 6448510352, + 6448509584, + 6448509952 ], "bases": [ { @@ -573431,7 +573437,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468484688, + "complete_object_locator": 6468488784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573440,14 +573446,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465596112, + "vtable_address": 6465600288, "methods": [ - 6448230432, - 6448230512, - 6448230480, - 6448230544, - 6448230464, - 6448230496 + 6448232000, + 6448232080, + 6448232048, + 6448232112, + 6448232032, + 6448232064 ], "bases": [ { @@ -573467,7 +573473,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468471784, + "complete_object_locator": 6468475880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573476,14 +573482,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec3D const &,class Vec3D *)'::`2'::,bool,class Vec3D const &,unsigned int>", - "vtable_address": 6465426096, + "vtable_address": 6465430256, "methods": [ - 6448070912, - 6448071280, - 6448071008, - 6448071344, - 6448070976, - 6448071040 + 6448072480, + 6448072848, + 6448072576, + 6448072912, + 6448072544, + 6448072608 ], "bases": [ { @@ -573503,7 +573509,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468448560, + "complete_object_locator": 6468452656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573512,14 +573518,14 @@ }, { "type_name": "std::_Func_impl_no_alloc)'::`2'::,void>", - "vtable_address": 6467721056, + "vtable_address": 6467725152, "methods": [ - 6462480464, - 6462480976, - 6462480752, - 6462481104, - 6462480592, - 6462480928 + 6462482656, + 6462483168, + 6462482944, + 6462483296, + 6462482784, + 6462483120 ], "bases": [ { @@ -573539,7 +573545,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468987096, + "complete_object_locator": 6468991192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573548,14 +573554,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465857336, + "vtable_address": 6465861528, "methods": [ - 6449995408, - 6449995600, - 6449995552, - 6449995616, - 6449995488, - 6449995584 + 6449996976, + 6449997168, + 6449997120, + 6449997184, + 6449997056, + 6449997152 ], "bases": [ { @@ -573575,7 +573581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468533512, + "complete_object_locator": 6468537608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573584,14 +573590,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466131000, + "vtable_address": 6466135208, "methods": [ - 6451544112, - 6451545248, - 6451545008, - 6451545344, - 6451544512, - 6451545152 + 6451545696, + 6451546832, + 6451546592, + 6451546928, + 6451546096, + 6451546736 ], "bases": [ { @@ -573611,7 +573617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468611736, + "complete_object_locator": 6468615832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573620,14 +573626,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465797912, + "vtable_address": 6465802104, "methods": [ - 6449394480, - 6449395872, - 6449395552, - 6449395968, - 6449395056, - 6449395760 + 6449396032, + 6449397424, + 6449397104, + 6449397520, + 6449396608, + 6449397312 ], "bases": [ { @@ -573647,7 +573653,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468513464, + "complete_object_locator": 6468517560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573656,14 +573662,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465797856, + "vtable_address": 6465802048, "methods": [ - 6449394384, - 6449395856, - 6449395504, - 6449395952, - 6449394992, - 6449395744 + 6449395936, + 6449397408, + 6449397056, + 6449397504, + 6449396544, + 6449397296 ], "bases": [ { @@ -573683,7 +573689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468513336, + "complete_object_locator": 6468517432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573692,14 +573698,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,void const *>", - "vtable_address": 6464470888, + "vtable_address": 6464474984, "methods": [ - 6444025424, - 6444025440, - 6444025456, - 6444025488, - 6444025520, - 6444025504 + 6444025680, + 6444025696, + 6444025712, + 6444025744, + 6444025776, + 6444025760 ], "bases": [ { @@ -573719,7 +573725,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468234528, + "complete_object_locator": 6468238624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573728,14 +573734,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,void const *>", - "vtable_address": 6464471112, + "vtable_address": 6464475208, "methods": [ - 6444025536, - 6444025552, - 6444025568, - 6444025600, - 6444025632, - 6444025616 + 6444025792, + 6444025808, + 6444025824, + 6444025856, + 6444025888, + 6444025872 ], "bases": [ { @@ -573755,7 +573761,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468234656, + "complete_object_locator": 6468238752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573764,14 +573770,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class panorama::CPanel2D *>", - "vtable_address": 6466587144, + "vtable_address": 6466591272, "methods": [ - 6454064064, - 6454064720, - 6454064416, - 6454064864, - 6454064208, - 6454064528 + 6454065824, + 6454066480, + 6454066176, + 6454066624, + 6454065968, + 6454066288 ], "bases": [ { @@ -573791,7 +573797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468730480, + "complete_object_locator": 6468734576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573800,14 +573806,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class panorama::CPanel2D *>", - "vtable_address": 6466587088, + "vtable_address": 6466591216, "methods": [ - 6454063936, - 6454064592, - 6454064352, - 6454064800, - 6454064144, - 6454064464 + 6454065696, + 6454066352, + 6454066112, + 6454066560, + 6454065904, + 6454066224 ], "bases": [ { @@ -573827,7 +573833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468730352, + "complete_object_locator": 6468734448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573836,14 +573842,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class panorama::CPanel2D *>", - "vtable_address": 6466586976, + "vtable_address": 6466591104, "methods": [ - 6454063968, - 6454064624, - 6454064368, - 6454064816, - 6454064160, - 6454064480 + 6454065728, + 6454066384, + 6454066128, + 6454066576, + 6454065920, + 6454066240 ], "bases": [ { @@ -573863,7 +573869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468730096, + "complete_object_locator": 6468734192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573872,14 +573878,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,void *,int,int,int,int,int,int,int,int,float,bool>", - "vtable_address": 6466398224, + "vtable_address": 6466402384, "methods": [ - 6452784160, - 6452785248, - 6452784992, - 6452785312, - 6452784304, - 6452785168 + 6452785776, + 6452786864, + 6452786608, + 6452786928, + 6452785920, + 6452786784 ], "bases": [ { @@ -573899,7 +573905,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689336, + "complete_object_locator": 6468693432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573908,14 +573914,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class panorama::CImagePanel *>", - "vtable_address": 6466587240, + "vtable_address": 6466591368, "methods": [ - 6454064000, - 6454064656, - 6454064384, - 6454064832, - 6454064176, - 6454064496 + 6454065760, + 6454066416, + 6454066144, + 6454066592, + 6454065936, + 6454066256 ], "bases": [ { @@ -573935,7 +573941,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468730608, + "complete_object_locator": 6468734704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573944,14 +573950,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466033600, + "vtable_address": 6466037808, "methods": [ - 6451057776, - 6451058000, - 6451057936, - 6451058048, - 6451057904, - 6451057968 + 6451059344, + 6451059568, + 6451059504, + 6451059616, + 6451059472, + 6451059536 ], "bases": [ { @@ -573971,7 +573977,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468583760, + "complete_object_locator": 6468587856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -573980,14 +573986,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,void const *>", - "vtable_address": 6465891664, + "vtable_address": 6465895856, "methods": [ - 6450302560, - 6450303840, - 6450302624, - 6450303872, - 6450302592, - 6450303104 + 6450304128, + 6450305408, + 6450304192, + 6450305440, + 6450304160, + 6450304672 ], "bases": [ { @@ -574007,7 +574013,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468552936, + "complete_object_locator": 6468557032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574016,14 +574022,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,void const *>", - "vtable_address": 6465891720, + "vtable_address": 6465895912, "methods": [ - 6450302576, - 6450303856, - 6450302656, - 6450303888, - 6450302608, - 6450303120 + 6450304144, + 6450305424, + 6450304224, + 6450305456, + 6450304176, + 6450304688 ], "bases": [ { @@ -574043,7 +574049,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468553064, + "complete_object_locator": 6468557160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574052,14 +574058,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466486144, + "vtable_address": 6466490272, "methods": [ - 6453449552, - 6453450544, - 6453450064, - 6453450656, - 6453449888, - 6453450384 + 6453451312, + 6453452304, + 6453451824, + 6453452416, + 6453451648, + 6453452144 ], "bases": [ { @@ -574079,7 +574085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707480, + "complete_object_locator": 6468711576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574088,14 +574094,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,uint64_t,class KeyValues *,class KeyValues *>", - "vtable_address": 6466712800, + "vtable_address": 6466716896, "methods": [ - 6455684528, - 6455685024, - 6455684688, - 6455685072, - 6455684656, - 6455684992 + 6455686288, + 6455686784, + 6455686448, + 6455686832, + 6455686416, + 6455686752 ], "bases": [ { @@ -574115,7 +574121,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468772680, + "complete_object_locator": 6468776776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574124,14 +574130,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class panorama::CImagePanel *>", - "vtable_address": 6466587336, + "vtable_address": 6466591464, "methods": [ - 6454064032, - 6454064688, - 6454064400, - 6454064848, - 6454064192, - 6454064512 + 6454065792, + 6454066448, + 6454066160, + 6454066608, + 6454065952, + 6454066272 ], "bases": [ { @@ -574151,7 +574157,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468730736, + "complete_object_locator": 6468734832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574160,14 +574166,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class IAsyncReadRequest2*,enum AsyncRequestStatus_t>", - "vtable_address": 6466137896, + "vtable_address": 6466142104, "methods": [ - 6451590512, - 6451591264, - 6451591040, - 6451592000, - 6451590736, - 6451591200 + 6451592096, + 6451592848, + 6451592624, + 6451593584, + 6451592320, + 6451592784 ], "bases": [ { @@ -574187,7 +574193,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468614768, + "complete_object_locator": 6468618864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574196,14 +574202,14 @@ }, { "type_name": "std::_Func_impl_no_alloc *)'::`2'::,void,class panorama::CDelayLoadPanel *>", - "vtable_address": 6466398280, + "vtable_address": 6466402440, "methods": [ - 6452784000, - 6452785216, - 6452784352, - 6452785280, - 6452784272, - 6452785136 + 6452785616, + 6452786832, + 6452785968, + 6452786896, + 6452785888, + 6452786752 ], "bases": [ { @@ -574223,7 +574229,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689464, + "complete_object_locator": 6468693560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574232,14 +574238,14 @@ }, { "type_name": "std::_Func_impl_no_alloc *)'::`2'::,void,class panorama::CDelayLoadPanel *>", - "vtable_address": 6466398336, + "vtable_address": 6466402496, "methods": [ - 6452784080, - 6452785232, - 6452784672, - 6452785296, - 6452784288, - 6452785152 + 6452785696, + 6452786848, + 6452786288, + 6452786912, + 6452785904, + 6452786768 ], "bases": [ { @@ -574259,7 +574265,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468689592, + "complete_object_locator": 6468693688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574268,14 +574274,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6465958056, + "vtable_address": 6465962248, "methods": [ - 6450736768, - 6450737968, - 6450737120, - 6450738112, - 6450736960, - 6450737664 + 6450738336, + 6450739536, + 6450738688, + 6450739680, + 6450738528, + 6450739232 ], "bases": [ { @@ -574295,7 +574301,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468565872, + "complete_object_locator": 6468569968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574304,14 +574310,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467718176, + "vtable_address": 6467722272, "methods": [ - 6462448944, - 6462449040, - 6462448992, - 6462449072, - 6462448976, - 6462449024 + 6462451136, + 6462451232, + 6462451184, + 6462451264, + 6462451168, + 6462451216 ], "bases": [ { @@ -574331,7 +574337,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468985960, + "complete_object_locator": 6468990056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574340,14 +574346,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467721000, + "vtable_address": 6467725096, "methods": [ - 6462480528, - 6462481040, - 6462480848, - 6462481120, - 6462480720, - 6462480944 + 6462482720, + 6462483232, + 6462483040, + 6462483312, + 6462482912, + 6462483136 ], "bases": [ { @@ -574367,7 +574373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468986968, + "complete_object_locator": 6468991064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574376,14 +574382,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467720944, + "vtable_address": 6467725040, "methods": [ - 6462480560, - 6462481072, - 6462480880, - 6462481136, - 6462480736, - 6462480960 + 6462482752, + 6462483264, + 6462483072, + 6462483328, + 6462482928, + 6462483152 ], "bases": [ { @@ -574403,7 +574409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468986840, + "complete_object_locator": 6468990936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574412,14 +574418,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466213824, + "vtable_address": 6466217936, "methods": [ - 6451988784, - 6451989312, - 6451989104, - 6451989408, - 6451989040, - 6451989248 + 6451990368, + 6451990896, + 6451990688, + 6451990992, + 6451990624, + 6451990832 ], "bases": [ { @@ -574439,7 +574445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640832, + "complete_object_locator": 6468644928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574448,14 +574454,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466213880, + "vtable_address": 6466217992, "methods": [ - 6451988816, - 6451989344, - 6451989200, - 6451989424, - 6451989056, - 6451989264 + 6451990400, + 6451990928, + 6451990784, + 6451991008, + 6451990640, + 6451990848 ], "bases": [ { @@ -574475,7 +574481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468640960, + "complete_object_locator": 6468645056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574484,7 +574490,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464757880, + "vtable_address": 6464761960, "methods": [ 6445398784, 6445399168, @@ -574511,7 +574517,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468283584, + "complete_object_locator": 6468287680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574520,7 +574526,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464759024, + "vtable_address": 6464763104, "methods": [ 6445398800, 6445399184, @@ -574547,7 +574553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468283840, + "complete_object_locator": 6468287936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574556,7 +574562,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464758968, + "vtable_address": 6464763048, "methods": [ 6445398720, 6445399104, @@ -574583,7 +574589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468283712, + "complete_object_locator": 6468287808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574592,14 +574598,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467547856, + "vtable_address": 6467551952, "methods": [ - 6461148688, - 6461149616, - 6461149216, - 6461149728, - 6461148800, - 6461149504 + 6461150880, + 6461151808, + 6461151408, + 6461151920, + 6461150992, + 6461151696 ], "bases": [ { @@ -574619,7 +574625,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468953408, + "complete_object_locator": 6468957504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574628,14 +574634,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467547968, + "vtable_address": 6467552064, "methods": [ - 6461148640, - 6461149568, - 6461149104, - 6461149712, - 6461148784, - 6461149488 + 6461150832, + 6461151760, + 6461151296, + 6461151904, + 6461150976, + 6461151680 ], "bases": [ { @@ -574655,7 +574661,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468953664, + "complete_object_locator": 6468957760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574664,14 +574670,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467548024, + "vtable_address": 6467552120, "methods": [ - 6461148720, - 6461149648, - 6461149360, - 6461149744, - 6461148816, - 6461149520 + 6461150912, + 6461151840, + 6461151552, + 6461151936, + 6461151008, + 6461151712 ], "bases": [ { @@ -574691,7 +574697,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468953792, + "complete_object_locator": 6468957888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574700,14 +574706,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467547912, + "vtable_address": 6467552008, "methods": [ - 6461148608, - 6461149536, - 6461148832, - 6461149696, - 6461148768, - 6461149472 + 6461150800, + 6461151728, + 6461151024, + 6461151888, + 6461150960, + 6461151664 ], "bases": [ { @@ -574727,7 +574733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468953536, + "complete_object_locator": 6468957632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574736,14 +574742,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466486256, + "vtable_address": 6466490384, "methods": [ - 6453449616, - 6453450560, - 6453450080, - 6453450672, - 6453449904, - 6453450400 + 6453451376, + 6453452320, + 6453451840, + 6453452432, + 6453451664, + 6453452160 ], "bases": [ { @@ -574763,7 +574769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468707736, + "complete_object_locator": 6468711832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574772,14 +574778,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653936, + "vtable_address": 6466658032, "methods": [ - 6454951888, - 6454954000, - 6454952656, - 6454954352, - 6454952288, - 6454953712 + 6454953648, + 6454955760, + 6454954416, + 6454956112, + 6454954048, + 6454955472 ], "bases": [ { @@ -574799,7 +574805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751928, + "complete_object_locator": 6468756024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574808,14 +574814,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653992, + "vtable_address": 6466658088, "methods": [ - 6454951904, - 6454954016, - 6454952672, - 6454954368, - 6454952304, - 6454953728 + 6454953664, + 6454955776, + 6454954432, + 6454956128, + 6454954064, + 6454955488 ], "bases": [ { @@ -574835,7 +574841,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752056, + "complete_object_locator": 6468756152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574844,14 +574850,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466654048, + "vtable_address": 6466658144, "methods": [ - 6454951920, - 6454954032, - 6454952688, - 6454954384, - 6454952320, - 6454953744 + 6454953680, + 6454955792, + 6454954448, + 6454956144, + 6454954080, + 6454955504 ], "bases": [ { @@ -574871,7 +574877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752184, + "complete_object_locator": 6468756280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574880,14 +574886,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466654104, + "vtable_address": 6466658200, "methods": [ - 6454951936, - 6454954048, - 6454952704, - 6454954400, - 6454952336, - 6454953760 + 6454953696, + 6454955808, + 6454954464, + 6454956160, + 6454954096, + 6454955520 ], "bases": [ { @@ -574907,7 +574913,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468752312, + "complete_object_locator": 6468756408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574916,14 +574922,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653432, + "vtable_address": 6466657528, "methods": [ - 6454951952, - 6454954064, - 6454952720, - 6454954416, - 6454952352, - 6454953776 + 6454953712, + 6454955824, + 6454954480, + 6454956176, + 6454954112, + 6454955536 ], "bases": [ { @@ -574943,7 +574949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750776, + "complete_object_locator": 6468754872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574952,14 +574958,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653488, + "vtable_address": 6466657584, "methods": [ - 6454952128, - 6454954192, - 6454953264, - 6454954496, - 6454952512, - 6454953856 + 6454953888, + 6454955952, + 6454955024, + 6454956256, + 6454954272, + 6454955616 ], "bases": [ { @@ -574979,7 +574985,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750904, + "complete_object_locator": 6468755000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -574988,14 +574994,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653544, + "vtable_address": 6466657640, "methods": [ - 6454952176, - 6454954240, - 6454953600, - 6454954528, - 6454952544, - 6454953888 + 6454953936, + 6454956000, + 6454955360, + 6454956288, + 6454954304, + 6454955648 ], "bases": [ { @@ -575015,7 +575021,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751032, + "complete_object_locator": 6468755128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575024,14 +575030,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653600, + "vtable_address": 6466657696, "methods": [ - 6454952192, - 6454954256, - 6454953616, - 6454954544, - 6454952560, - 6454953904 + 6454953952, + 6454956016, + 6454955376, + 6454956304, + 6454954320, + 6454955664 ], "bases": [ { @@ -575051,7 +575057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751160, + "complete_object_locator": 6468755256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575060,14 +575066,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653656, + "vtable_address": 6466657752, "methods": [ - 6454952208, - 6454954272, - 6454953632, - 6454954560, - 6454952576, - 6454953920 + 6454953968, + 6454956032, + 6454955392, + 6454956320, + 6454954336, + 6454955680 ], "bases": [ { @@ -575087,7 +575093,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751288, + "complete_object_locator": 6468755384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575096,14 +575102,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653712, + "vtable_address": 6466657808, "methods": [ - 6454952224, - 6454954288, - 6454953648, - 6454954576, - 6454952592, - 6454953936 + 6454953984, + 6454956048, + 6454955408, + 6454956336, + 6454954352, + 6454955696 ], "bases": [ { @@ -575123,7 +575129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751416, + "complete_object_locator": 6468755512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575132,14 +575138,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653768, + "vtable_address": 6466657864, "methods": [ - 6454952240, - 6454954304, - 6454953664, - 6454954592, - 6454952608, - 6454953952 + 6454954000, + 6454956064, + 6454955424, + 6454956352, + 6454954368, + 6454955712 ], "bases": [ { @@ -575159,7 +575165,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751544, + "complete_object_locator": 6468755640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575168,14 +575174,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653824, + "vtable_address": 6466657920, "methods": [ - 6454952256, - 6454954320, - 6454953680, - 6454954608, - 6454952624, - 6454953968 + 6454954016, + 6454956080, + 6454955440, + 6454956368, + 6454954384, + 6454955728 ], "bases": [ { @@ -575195,7 +575201,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751672, + "complete_object_locator": 6468755768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575204,14 +575210,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,float,class DeepPlayerStatsEntry const &>", - "vtable_address": 6466653880, + "vtable_address": 6466657976, "methods": [ - 6454952272, - 6454954336, - 6454953696, - 6454954624, - 6454952640, - 6454953984 + 6454954032, + 6454956096, + 6454955456, + 6454956384, + 6454954400, + 6454955744 ], "bases": [ { @@ -575231,7 +575237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468751800, + "complete_object_locator": 6468755896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575240,14 +575246,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class C_Team *>", - "vtable_address": 6466652960, + "vtable_address": 6466657056, "methods": [ - 6454952032, - 6454954144, - 6454952960, - 6454954464, - 6454952400, - 6454953824 + 6454953792, + 6454955904, + 6454954720, + 6454956224, + 6454954160, + 6454955584 ], "bases": [ { @@ -575267,7 +575273,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750648, + "complete_object_locator": 6468754744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575276,14 +575282,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &)'::`2'::,bool,class C_Team *>", - "vtable_address": 6466652864, + "vtable_address": 6466656960, "methods": [ - 6454951968, - 6454954080, - 6454952736, - 6454954432, - 6454952368, - 6454953792 + 6454953728, + 6454955840, + 6454954496, + 6454956192, + 6454954128, + 6454955552 ], "bases": [ { @@ -575303,7 +575309,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468750520, + "complete_object_locator": 6468754616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575312,14 +575318,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6467838712, + "vtable_address": 6467842808, "methods": [ - 6463204096, - 6463204864, - 6463204352, - 6463204944, - 6463204304, - 6463204816 + 6463206288, + 6463207056, + 6463206544, + 6463207136, + 6463206496, + 6463207008 ], "bases": [ { @@ -575339,7 +575345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468994408, + "complete_object_locator": 6468998504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575348,14 +575354,14 @@ }, { "type_name": "std::_Func_impl_no_alloc(bool (__cdecl &)(class panorama::CPanel2D const *,class panorama::CPanel2D const *))'::`2'::,bool,class panorama::IUIPanel *,class panorama::IUIPanel *>", - "vtable_address": 6467660152, + "vtable_address": 6467664248, "methods": [ - 6462053632, - 6462053920, - 6462053728, - 6462053984, - 6462053696, - 6462053888 + 6462055824, + 6462056112, + 6462055920, + 6462056176, + 6462055888, + 6462056080 ], "bases": [ { @@ -575375,7 +575381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468973520, + "complete_object_locator": 6468977616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575384,14 +575390,14 @@ }, { "type_name": "std::_Func_impl_no_alloc >(class `private: bool __cdecl panorama::CDelayLoadList::EventLoadVisiblePanels(unsigned int,int,int)'::`54':: &&)'::`2'::,bool,class panorama::IUIPanel *,class panorama::IUIPanel *>", - "vtable_address": 6467600816, + "vtable_address": 6467604912, "methods": [ - 6461845888, - 6461846128, - 6461845936, - 6461846160, - 6461845920, - 6461846112 + 6461848080, + 6461848320, + 6461848128, + 6461848352, + 6461848112, + 6461848304 ], "bases": [ { @@ -575411,7 +575417,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468960656, + "complete_object_locator": 6468964752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575420,7 +575426,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464400232, + "vtable_address": 6464404328, "methods": [ 6443747664, 6443748016, @@ -575447,7 +575453,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468213088, + "complete_object_locator": 6468217184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575456,7 +575462,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CEntityClassPulseSignature *>", - "vtable_address": 6464508184, + "vtable_address": 6464512280, "methods": [ 6444255616, 6444256608, @@ -575483,7 +575489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239288, + "complete_object_locator": 6468243384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575492,14 +575498,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &)'::`2'::,void,class PulseMethodBindingInfo_t const *>", - "vtable_address": 6467194040, + "vtable_address": 6467198104, "methods": [ - 6460100128, - 6460100608, - 6460100224, - 6460100672, - 6460100192, - 6460100576 + 6460102320, + 6460102800, + 6460102416, + 6460102864, + 6460102384, + 6460102768 ], "bases": [ { @@ -575519,7 +575525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468939680, + "complete_object_locator": 6468943776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575528,14 +575534,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &)'::`2'::,void,class PulseEventBindingInfo_t const *>", - "vtable_address": 6467194096, + "vtable_address": 6467198160, "methods": [ - 6460100160, - 6460100640, - 6460100272, - 6460100688, - 6460100208, - 6460100592 + 6460102352, + 6460102832, + 6460102464, + 6460102880, + 6460102400, + 6460102784 ], "bases": [ { @@ -575555,7 +575561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468939808, + "complete_object_locator": 6468943904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575564,7 +575570,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464694152, + "vtable_address": 6464698232, "methods": [ 6444984800, 6444985376, @@ -575591,7 +575597,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468273184, + "complete_object_locator": 6468277280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575600,14 +575606,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6466055856, + "vtable_address": 6466060064, "methods": [ - 6451160464, - 6451161392, - 6451161264, - 6451161456, - 6451160960, - 6451161328 + 6451162032, + 6451162960, + 6451162832, + 6451163024, + 6451162528, + 6451162896 ], "bases": [ { @@ -575627,7 +575633,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468591632, + "complete_object_locator": 6468595728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575636,7 +575642,7 @@ }, { "type_name": "std::_Func_impl_no_alloc const *,class CPulseArgumentPack const *,class CPulseInputParamMap const *)'::`2'::,void,int,char const * *,class CPulseValueFullType *,class CPulseVariant const * *>", - "vtable_address": 6464508392, + "vtable_address": 6464512488, "methods": [ 6444255200, 6444256544, @@ -575663,7 +575669,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468239416, + "complete_object_locator": 6468243512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575672,7 +575678,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464400288, + "vtable_address": 6464404384, "methods": [ 6443747568, 6443747968, @@ -575699,7 +575705,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468213216, + "complete_object_locator": 6468217312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575708,7 +575714,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6464400344, + "vtable_address": 6464404440, "methods": [ 6443747632, 6443747984, @@ -575735,7 +575741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468213344, + "complete_object_locator": 6468217440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575744,14 +575750,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class C_BaseEntity *,class CUtlString>", - "vtable_address": 6466456584, + "vtable_address": 6466460728, "methods": [ - 6453089088, - 6453089120, - 6453089152, - 6453089200, - 6453089232, - 6453089216 + 6453090704, + 6453090736, + 6453090768, + 6453090816, + 6453090848, + 6453090832 ], "bases": [ { @@ -575771,7 +575777,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468700168, + "complete_object_locator": 6468704264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575780,14 +575786,14 @@ }, { "type_name": "std::_Func_impl_no_alloc", - "vtable_address": 6466901848, + "vtable_address": 6466905928, "methods": [ - 6457044768, - 6457044848, - 6457044816, - 6457044880, - 6457044800, - 6457044832 + 6457046960, + 6457047040, + 6457047008, + 6457047072, + 6457046992, + 6457047024 ], "bases": [ { @@ -575807,7 +575813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468815192, + "complete_object_locator": 6468819288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575816,14 +575822,14 @@ }, { "type_name": "std::_Func_impl_no_alloc", - "vtable_address": 6466842144, + "vtable_address": 6466846256, "methods": [ - 6456536992, - 6456537136, - 6456537040, - 6456537168, - 6456537024, - 6456537120 + 6456538768, + 6456538912, + 6456538816, + 6456538944, + 6456538800, + 6456538896 ], "bases": [ { @@ -575843,7 +575849,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468800272, + "complete_object_locator": 6468804368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575852,14 +575858,14 @@ }, { "type_name": "std::_Future_error_category", - "vtable_address": 6467202840, + "vtable_address": 6467206904, "methods": [ - 6460138176, - 6460156480, - 6460156224, - 6457476880, - 6457477184, - 6457477216 + 6460140368, + 6460158672, + 6460158416, + 6457479072, + 6457479376, + 6457479408 ], "bases": [ { @@ -575893,7 +575899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468942280, + "complete_object_locator": 6468946376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575902,14 +575908,14 @@ }, { "type_name": "std::_Generic_error_category", - "vtable_address": 6467202328, + "vtable_address": 6467206392, "methods": [ - 6460138224, - 6460156496, - 6460156384, - 6457476880, - 6457477184, - 6457477216 + 6460140416, + 6460158688, + 6460158576, + 6457479072, + 6457479376, + 6457479408 ], "bases": [ { @@ -575929,7 +575935,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468940904, + "complete_object_locator": 6468945000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575938,14 +575944,14 @@ }, { "type_name": "std::_Iostream_error_category2", - "vtable_address": 6466942000, + "vtable_address": 6466946064, "methods": [ - 6457475472, - 6457477504, - 6457477376, - 6457476880, - 6457477184, - 6457477216 + 6457477664, + 6457479696, + 6457479568, + 6457479072, + 6457479376, + 6457479408 ], "bases": [ { @@ -575965,7 +575971,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468825768, + "complete_object_locator": 6468829864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -575974,14 +575980,14 @@ }, { "type_name": "std::_Packaged_state", - "vtable_address": 6467203920, + "vtable_address": 6467207984, "methods": [ - 6460137536, - 6460154048, - 6460148064, - 6460148560, - 6460151664, - 6460147136 + 6460139728, + 6460156240, + 6460150256, + 6460150752, + 6460153856, + 6460149328 ], "bases": [ { @@ -576001,7 +576007,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468943672, + "complete_object_locator": 6468947768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576010,14 +576016,14 @@ }, { "type_name": "std::_Packaged_state", - "vtable_address": 6467203696, + "vtable_address": 6467207760, "methods": [ - 6460137600, - 6460153872, - 6460147744, - 6460148544, - 6460151648, - 6460147024 + 6460139792, + 6460156064, + 6460149936, + 6460150736, + 6460153840, + 6460149216 ], "bases": [ { @@ -576037,7 +576043,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468943136, + "complete_object_locator": 6468947232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576046,17 +576052,17 @@ }, { "type_name": "std::_Ref_count_base", - "vtable_address": 6467197616, + "vtable_address": 6467201680, "methods": [ - 6463705588, - 6463705588, - 6460121472, + 6463707780, + 6463707780, + 6460123664, 6445625072 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468940824, + "complete_object_locator": 6468944920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576065,7 +576071,7 @@ }, { "type_name": "std::_Ref_count_obj2", - "vtable_address": 6464865064, + "vtable_address": 6464869144, "methods": [ 6445624032, 6445624048, @@ -576090,7 +576096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468293000, + "complete_object_locator": 6468297096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576099,11 +576105,11 @@ }, { "type_name": "std::_Ref_count_obj2", - "vtable_address": 6465851632, + "vtable_address": 6465855824, "methods": [ - 6449956560, - 6449956528, - 6449819120, + 6449958128, + 6449958096, + 6449820688, 6445625072 ], "bases": [ @@ -576124,7 +576130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468530808, + "complete_object_locator": 6468534904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576133,11 +576139,11 @@ }, { "type_name": "std::_Ref_count_obj", - "vtable_address": 6467203616, + "vtable_address": 6467207680, "methods": [ - 6460146752, - 6460146320, - 6460137712, + 6460148944, + 6460148512, + 6460139904, 6445625072 ], "bases": [ @@ -576158,7 +576164,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468942656, + "complete_object_locator": 6468946752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576167,11 +576173,11 @@ }, { "type_name": "std::_Ref_count_obj >", - "vtable_address": 6467203656, + "vtable_address": 6467207720, "methods": [ - 6460146736, - 6460146288, - 6460137664, + 6460148928, + 6460148480, + 6460139856, 6445625072 ], "bases": [ @@ -576192,7 +576198,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468942784, + "complete_object_locator": 6468946880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576201,9 +576207,9 @@ }, { "type_name": "std::_System_error", - "vtable_address": 6466941952, + "vtable_address": 6466946016, "methods": [ - 6457475520, + 6457477712, 6443748544 ], "bases": [ @@ -576238,7 +576244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468825488, + "complete_object_locator": 6468829584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576247,14 +576253,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6467203976, + "vtable_address": 6467208040, "methods": [ - 6460137824, - 6460154256, - 6460148448, - 6460148560, - 6460151664, - 6460147136 + 6460140016, + 6460156448, + 6460150640, + 6460150752, + 6460153856, + 6460149328 ], "bases": [ { @@ -576288,7 +576294,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468943448, + "complete_object_locator": 6468947544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576297,14 +576303,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6467204088, + "vtable_address": 6467208152, "methods": [ - 6460137760, - 6460154224, - 6460148384, - 6460148560, - 6460151664, - 6460147136 + 6460139952, + 6460156416, + 6460150576, + 6460150752, + 6460153856, + 6460149328 ], "bases": [ { @@ -576338,7 +576344,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468943888, + "complete_object_locator": 6468947984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576347,14 +576353,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6467203752, + "vtable_address": 6467207816, "methods": [ - 6460137952, - 6460154304, - 6460148528, - 6460148544, - 6460151648, - 6460147024 + 6460140144, + 6460156496, + 6460150720, + 6460150736, + 6460153840, + 6460149216 ], "bases": [ { @@ -576388,7 +576394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468942912, + "complete_object_locator": 6468947008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576397,14 +576403,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6467203864, + "vtable_address": 6467207928, "methods": [ - 6460137888, - 6460154272, - 6460148464, - 6460148544, - 6460151648, - 6460147024 + 6460140080, + 6460156464, + 6460150656, + 6460150736, + 6460153840, + 6460149216 ], "bases": [ { @@ -576438,7 +576444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468943312, + "complete_object_locator": 6468947408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576447,9 +576453,9 @@ }, { "type_name": "std::__non_rtti_object", - "vtable_address": 6467889688, + "vtable_address": 6467893784, "methods": [ - 6463709916, + 6463712108, 6443748544 ], "bases": [ @@ -576484,7 +576490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468997088, + "complete_object_locator": 6469001184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576493,7 +576499,7 @@ }, { "type_name": "std::bad_alloc", - "vtable_address": 6464397376, + "vtable_address": 6464401472, "methods": [ 6443724144, 6443748544 @@ -576516,7 +576522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468211080, + "complete_object_locator": 6468215176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576525,7 +576531,7 @@ }, { "type_name": "std::bad_array_new_length", - "vtable_address": 6464397400, + "vtable_address": 6464401496, "methods": [ 6443724224, 6443748544 @@ -576562,7 +576568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468210856, + "complete_object_locator": 6468214952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576571,9 +576577,9 @@ }, { "type_name": "std::bad_cast", - "vtable_address": 6466942096, + "vtable_address": 6466946160, "methods": [ - 6457475600, + 6457477792, 6443748544 ], "bases": [ @@ -576594,7 +576600,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468825896, + "complete_object_locator": 6468829992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576603,9 +576609,9 @@ }, { "type_name": "std::bad_exception", - "vtable_address": 6467888472, + "vtable_address": 6467892568, "methods": [ - 6463695948, + 6463698140, 6443748544 ], "bases": [ @@ -576626,7 +576632,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468996192, + "complete_object_locator": 6469000288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576635,10 +576641,10 @@ }, { "type_name": "std::bad_function_call", - "vtable_address": 6467884552, + "vtable_address": 6467888648, "methods": [ - 6463690260, - 6463690704 + 6463692452, + 6463692896 ], "bases": [ { @@ -576658,7 +576664,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468995520, + "complete_object_locator": 6468999616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576667,10 +576673,10 @@ }, { "type_name": "std::bad_optional_access", - "vtable_address": 6466666336, + "vtable_address": 6466670432, "methods": [ - 6455312896, - 6455686640 + 6455314656, + 6455688400 ], "bases": [ { @@ -576690,7 +576696,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468753744, + "complete_object_locator": 6468757840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576699,9 +576705,9 @@ }, { "type_name": "std::bad_typeid", - "vtable_address": 6467889664, + "vtable_address": 6467893760, "methods": [ - 6463709984, + 6463712176, 6443748544 ], "bases": [ @@ -576722,7 +576728,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468996960, + "complete_object_locator": 6469001056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576731,9 +576737,9 @@ }, { "type_name": "std::basic_ios >", - "vtable_address": 6466942472, + "vtable_address": 6466946536, "methods": [ - 6457474784 + 6457476976 ], "bases": [ { @@ -576767,7 +576773,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468824632, + "complete_object_locator": 6468828728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -576776,9 +576782,9 @@ }, { "type_name": "std::basic_iostream >", - "vtable_address": 6466949560, + "vtable_address": 6466953624, "methods": [ - 6457543388 + 6457545580 ], "bases": [ { @@ -576896,7 +576902,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468827040, + "complete_object_locator": 6468831136, "offset": 32, "constructor_displacement": 4, "class_attributes": 3 @@ -576905,9 +576911,9 @@ }, { "type_name": "std::basic_istream >", - "vtable_address": 6466949536, + "vtable_address": 6466953600, "methods": [ - 6457543400 + 6457545592 ], "bases": [ { @@ -576955,7 +576961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468826896, + "complete_object_locator": 6468830992, "offset": 24, "constructor_displacement": 4, "class_attributes": 0 @@ -576964,9 +576970,9 @@ }, { "type_name": "std::basic_ostream >", - "vtable_address": 6466942488, + "vtable_address": 6466946552, "methods": [ - 6457474768 + 6457476960 ], "bases": [ { @@ -577014,7 +577020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468824888, + "complete_object_locator": 6468828984, "offset": 16, "constructor_displacement": 4, "class_attributes": 0 @@ -577023,28 +577029,28 @@ }, { "type_name": "std::basic_streambuf >", - "vtable_address": 6466942504, - "methods": [ - 6457474960, - 6457476560, - 6457476640, - 6457477520, - 6457477984, - 6457478768, - 6457478864, - 6457478800, - 6457479008, - 6457479184, - 6457478096, - 6457478480, + "vtable_address": 6466946568, + "methods": [ + 6457477152, 6457478752, - 6457478784, - 6457477328 + 6457478832, + 6457479712, + 6457480176, + 6457480960, + 6457481056, + 6457480992, + 6457481200, + 6457481376, + 6457480288, + 6457480672, + 6457480944, + 6457480976, + 6457479520 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468824768, + "complete_object_locator": 6468828864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577053,23 +577059,23 @@ }, { "type_name": "std::basic_stringbuf,class std::allocator >", - "vtable_address": 6466942632, - "methods": [ - 6457475088, - 6457476560, - 6457476640, - 6457477536, - 6457478000, - 6457478768, - 6457478880, - 6457478800, - 6457479008, - 6457479184, - 6457478128, - 6457478512, + "vtable_address": 6466946696, + "methods": [ + 6457477280, 6457478752, - 6457478784, - 6457477328 + 6457478832, + 6457479728, + 6457480192, + 6457480960, + 6457481072, + 6457480992, + 6457481200, + 6457481376, + 6457480320, + 6457480704, + 6457480944, + 6457480976, + 6457479520 ], "bases": [ { @@ -577089,7 +577095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468825152, + "complete_object_locator": 6468829248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577098,9 +577104,9 @@ }, { "type_name": "std::basic_stringstream,class std::allocator >", - "vtable_address": 6466949576, + "vtable_address": 6466953640, "methods": [ - 6457543412 + 6457545604 ], "bases": [ { @@ -577232,7 +577238,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468827264, + "complete_object_locator": 6468831360, "offset": 152, "constructor_displacement": 4, "class_attributes": 3 @@ -577241,19 +577247,19 @@ }, { "type_name": "std::ctype", - "vtable_address": 6466942184, - "methods": [ - 6457475152, - 6457476544, - 6457476048, - 6457476960, - 6457476944, - 6457477056, - 6457477040, - 6457477152, - 6457477136, - 6457476912, - 6457476896 + "vtable_address": 6466946248, + "methods": [ + 6457477344, + 6457478736, + 6457478240, + 6457479152, + 6457479136, + 6457479248, + 6457479232, + 6457479344, + 6457479328, + 6457479104, + 6457479088 ], "bases": [ { @@ -577315,7 +577321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468826464, + "complete_object_locator": 6468830560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -577324,19 +577330,19 @@ }, { "type_name": "std::error_category", - "vtable_address": 6467202264, + "vtable_address": 6467206328, "methods": [ - 6460138432, - 6463705588, - 6463705588, - 6457476880, - 6457477184, - 6457477216 + 6460140624, + 6463707780, + 6463707780, + 6457479072, + 6457479376, + 6457479408 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468940864, + "complete_object_locator": 6468944960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577345,7 +577351,7 @@ }, { "type_name": "std::exception", - "vtable_address": 6464397328, + "vtable_address": 6464401424, "methods": [ 6443724304, 6443748544 @@ -577353,7 +577359,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468210736, + "complete_object_locator": 6468214832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577362,10 +577368,10 @@ }, { "type_name": "std::future_error", - "vtable_address": 6467888728, + "vtable_address": 6467892824, "methods": [ - 6463699724, - 6463699888 + 6463701916, + 6463702080 ], "bases": [ { @@ -577399,7 +577405,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468996704, + "complete_object_locator": 6469000800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577408,9 +577414,9 @@ }, { "type_name": "std::ios_base", - "vtable_address": 6466942304, + "vtable_address": 6466946368, "methods": [ - 6457475760 + 6457477952 ], "bases": [ { @@ -577430,7 +577436,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468824384, + "complete_object_locator": 6468828480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577439,9 +577445,9 @@ }, { "type_name": "std::ios_base::failure", - "vtable_address": 6466942280, + "vtable_address": 6466946344, "methods": [ - 6457475680, + 6457477872, 6443748544 ], "bases": [ @@ -577504,7 +577510,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468826616, + "complete_object_locator": 6468830712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577513,9 +577519,9 @@ }, { "type_name": "std::length_error", - "vtable_address": 6467884624, + "vtable_address": 6467888720, "methods": [ - 6463690328, + 6463692520, 6443748544 ], "bases": [ @@ -577550,7 +577556,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468995776, + "complete_object_locator": 6468999872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577559,11 +577565,11 @@ }, { "type_name": "std::locale::_Locimp", - "vtable_address": 6467888424, + "vtable_address": 6467892520, "methods": [ - 6463692772, - 6457476544, - 6457476048 + 6463694964, + 6457478736, + 6457478240 ], "bases": [ { @@ -577611,7 +577617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468996048, + "complete_object_locator": 6469000144, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -577620,9 +577626,9 @@ }, { "type_name": "std::logic_error", - "vtable_address": 6467884600, + "vtable_address": 6467888696, "methods": [ - 6463690396, + 6463692588, 6443748544 ], "bases": [ @@ -577643,7 +577649,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468995648, + "complete_object_locator": 6468999744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577652,19 +577658,19 @@ }, { "type_name": "std::num_put > >", - "vtable_address": 6466954712, - "methods": [ - 6457543776, - 6457476544, - 6457476048, - 6457741312, - 6457740576, - 6457739856, + "vtable_address": 6466958776, + "methods": [ + 6457545968, + 6457478736, + 6457478240, + 6457743504, + 6457742768, + 6457742048, + 6457743952, + 6457743664, 6457741760, 6457741472, - 6457739568, - 6457739280, - 6457742048 + 6457744240 ], "bases": [ { @@ -577712,7 +577718,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468827584, + "complete_object_locator": 6468831680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -577721,16 +577727,16 @@ }, { "type_name": "std::numpunct", - "vtable_address": 6466954880, - "methods": [ - 6457543824, - 6457476544, - 6457476048, - 6457739104, - 6457742720, - 6457739200, - 6457739120, - 6457742736 + "vtable_address": 6466958944, + "methods": [ + 6457546016, + 6457478736, + 6457478240, + 6457741296, + 6457744912, + 6457741392, + 6457741312, + 6457744928 ], "bases": [ { @@ -577778,7 +577784,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468827856, + "complete_object_locator": 6468831952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -577787,9 +577793,9 @@ }, { "type_name": "std::out_of_range", - "vtable_address": 6467884648, + "vtable_address": 6467888744, "methods": [ - 6463690464, + 6463692656, 6443748544 ], "bases": [ @@ -577824,7 +577830,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468995912, + "complete_object_locator": 6469000008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577833,9 +577839,9 @@ }, { "type_name": "std::runtime_error", - "vtable_address": 6466941928, + "vtable_address": 6466945992, "methods": [ - 6457475824, + 6457478016, 6443748544 ], "bases": [ @@ -577856,7 +577862,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468825280, + "complete_object_locator": 6468829376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577865,9 +577871,9 @@ }, { "type_name": "std::system_error", - "vtable_address": 6466941976, + "vtable_address": 6466946040, "methods": [ - 6457475904, + 6457478096, 6443748544 ], "bases": [ @@ -577916,7 +577922,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6468825624, + "complete_object_locator": 6468829720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -577925,15 +577931,15 @@ }, { "type_name": "type_info", - "vtable_address": 6467889288, + "vtable_address": 6467893384, "methods": [ - 6463702120, - 6463702300 + 6463704312, + 6463704492 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6468996840, + "complete_object_locator": 6469000936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 diff --git a/dump/windows/vtables/client_short.txt b/dump/windows/vtables/client_short.txt index adaf062..2e01726 100644 --- a/dump/windows/vtables/client_short.txt +++ b/dump/windows/vtables/client_short.txt @@ -34,7 +34,7 @@ CAttributeIterator_GetTypedAttributeValue [5] CAttributeIterator_HasAttribute [6] CAttributeList [4] CAttributeManager [11] -CAttribute_String [21] +CAttribute_String [19] CAudioEventTagListener [2] CAutoGameSystem [61] CBaseAnimGraph [273] [6] [1] @@ -157,7 +157,7 @@ CBulletWhizTimer [61] CBuoyancyHelper [8] CCLCMsg_BaselineAck [17] CCLCMsg_ClientInfo [25] -CCLCMsg_CmdKeyValues [17] +CCLCMsg_CmdKeyValues [19] CCLCMsg_Diagnostic [23] CCLCMsg_HltvFixupOperatorTick [19] CCLCMsg_HltvReplay [21] @@ -341,9 +341,9 @@ CCSPredictionEvent_DamageTag [17] CCSReplayObserverHandler [62] CCSSteamVideo [61] [2] [4] CCSTraceFilterSimple [2] -CCSUsrMsgPreMatchSayText [25] +CCSUsrMsgPreMatchSayText [17] CCSUsrMsg_AchievementEvent [17] -CCSUsrMsg_AdjustMoney [23] +CCSUsrMsg_AdjustMoney [25] CCSUsrMsg_AmmoDenied [17] CCSUsrMsg_BarTime [17] CCSUsrMsg_CallVoteFailed [17] @@ -357,18 +357,18 @@ CCSUsrMsg_CurrentTimescale [19] CCSUsrMsg_Damage [17] CCSUsrMsg_DamagePrediction [19] CCSUsrMsg_Damage_t [5] [17] -CCSUsrMsg_DeepStats [25] +CCSUsrMsg_DeepStats [27] CCSUsrMsg_DeepStats_t [5] [17] -CCSUsrMsg_DesiredTimescale [19] +CCSUsrMsg_DesiredTimescale [21] CCSUsrMsg_DisconnectToLobby [21] CCSUsrMsg_DisconnectToLobby2_t [5] [17] CCSUsrMsg_DisconnectToLobby_t [5] [17] CCSUsrMsg_EndOfMatchAllPlayersData [17] CCSUsrMsg_EndOfMatchAllPlayersData_Accolade [19] -CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData [17] +CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData [19] CCSUsrMsg_EndOfMatchAllPlayersData_t [5] [17] CCSUsrMsg_EntityOutlineHighlight [17] -CCSUsrMsg_Fade [17] +CCSUsrMsg_Fade [19] CCSUsrMsg_GameTitle [19] CCSUsrMsg_Geiger [19] CCSUsrMsg_HintText [19] @@ -388,7 +388,7 @@ CCSUsrMsg_MatchStatsUpdate [17] CCSUsrMsg_PlayerDecalDigitalSignature [17] CCSUsrMsg_PlayerDecalDigitalSignature_t [5] [17] CCSUsrMsg_PlayerStatsUpdate [19] -CCSUsrMsg_PlayerStatsUpdate_Stat [17] +CCSUsrMsg_PlayerStatsUpdate_Stat [19] CCSUsrMsg_PlayerStatsUpdate_t [5] [17] CCSUsrMsg_PostRoundDamageReport [23] CCSUsrMsg_PostRoundDamageReport_t [5] [17] @@ -405,20 +405,20 @@ CCSUsrMsg_RecurringMissionSchema [19] CCSUsrMsg_RecurringMissionSchema_t [5] [17] CCSUsrMsg_ReloadEffect [19] CCSUsrMsg_ReportHit [17] -CCSUsrMsg_RequestState [19] +CCSUsrMsg_RequestState [21] CCSUsrMsg_ResetHud [17] CCSUsrMsg_RoundBackupFilenames [19] CCSUsrMsg_RoundBackupFilenames_t [5] [17] -CCSUsrMsg_RoundEndReportData [19] +CCSUsrMsg_RoundEndReportData [17] CCSUsrMsg_RoundEndReportData_InitialConditions [23] CCSUsrMsg_RoundEndReportData_RerEvent [17] -CCSUsrMsg_RoundEndReportData_RerEvent_Damage [19] +CCSUsrMsg_RoundEndReportData_RerEvent_Damage [17] CCSUsrMsg_RoundEndReportData_RerEvent_Objective [17] CCSUsrMsg_RoundEndReportData_RerEvent_Victim [19] CCSUsrMsg_RoundEndReportData_t [5] [17] CCSUsrMsg_Rumble [19] CCSUsrMsg_SSUI [17] -CCSUsrMsg_ScoreLeaderboardData [21] +CCSUsrMsg_ScoreLeaderboardData [19] CCSUsrMsg_ScoreLeaderboardData_t [5] [17] CCSUsrMsg_SendAudio [21] CCSUsrMsg_SendLastKillerDamageToClient [19] @@ -432,24 +432,24 @@ CCSUsrMsg_SendPlayerLoadout_LoadoutItem [17] CCSUsrMsg_SendPlayerLoadout_t [5] [17] CCSUsrMsg_ServerRankRevealAll [17] CCSUsrMsg_ServerRankRevealAll_t [5] [17] -CCSUsrMsg_ServerRankUpdate [19] +CCSUsrMsg_ServerRankUpdate [21] CCSUsrMsg_ServerRankUpdate_RankUpdate [19] CCSUsrMsg_ServerRankUpdate_t [5] [17] -CCSUsrMsg_Shake [25] +CCSUsrMsg_Shake [17] CCSUsrMsg_ShootInfo [19] CCSUsrMsg_ShowMenu [17] -CCSUsrMsg_StopSpectatorMode [19] +CCSUsrMsg_StopSpectatorMode [21] CCSUsrMsg_SurvivalStats [17] CCSUsrMsg_SurvivalStats_Damage [19] CCSUsrMsg_SurvivalStats_Fact [19] CCSUsrMsg_SurvivalStats_Placement [17] -CCSUsrMsg_Train [19] +CCSUsrMsg_Train [21] CCSUsrMsg_UpdateScreenHealthBar [17] CCSUsrMsg_UpdateScreenHealthBar_t [5] [17] CCSUsrMsg_VGUIMenu [19] CCSUsrMsg_VGUIMenu_Keys [17] CCSUsrMsg_VoiceMask [17] -CCSUsrMsg_VoiceMask_PlayerMask [23] +CCSUsrMsg_VoiceMask_PlayerMask [25] CCSUsrMsg_VoteFailed [19] CCSUsrMsg_VoteFailed_t [5] [17] CCSUsrMsg_VotePass [19] @@ -568,7 +568,7 @@ CCameraManagerGameSystem [61] CCharacterDecalSystem [61] [2] CChickenGameSystem [61] CChinaAgreementSessions_StartAgreementSessionInGame_Request [23] -CChinaAgreementSessions_StartAgreementSessionInGame_Response [17] +CChinaAgreementSessions_StartAgreementSessionInGame_Response [23] CChoreoActor [3] CChoreoChannel [3] CChoreoEvent [4] [6] @@ -581,7 +581,7 @@ CClientGameBlackboardView [8] CClientHeaderOverwatchEvidence [17] CClientInput [29] CClientModeGameSystem [61] -CClientMsg_ClientUIEvent [27] +CClientMsg_ClientUIEvent [25] CClientMsg_ClientUIEvent_t [5] [17] CClientMsg_CustomGameEvent [19] CClientMsg_CustomGameEventBounce [21] @@ -755,7 +755,7 @@ CDamageRecord [5] CDataDrivenCamera [53] [1] CDataGCCStrike15_v2_MatchInfo [17] CDataGCCStrike15_v2_TournamentGroup [17] -CDataGCCStrike15_v2_TournamentGroupTeam [19] +CDataGCCStrike15_v2_TournamentGroupTeam [17] CDataGCCStrike15_v2_TournamentGroup_Picks [17] CDataGCCStrike15_v2_TournamentInfo [17] CDataGCCStrike15_v2_TournamentMatchDraft [17] @@ -799,7 +799,7 @@ CDefaultTypedEntityInstanceFilter [1] CDemoAnimationData [19] CDemoAnimationHeader [17] CDemoClassInfo [17] -CDemoClassInfo_class_t [21] +CDemoClassInfo_class_t [19] CDemoConsoleCmd [21] CDemoCustomData [19] CDemoCustomDataCallbacks [17] @@ -810,16 +810,16 @@ CDemoMessagePB<16,class CDemoAnimationData> [6] [17] CDemoMessagePB<17,class CDemoAnimationHeader> [6] [17] CDemoPacket [17] CDemoRecovery [17] -CDemoRecovery_DemoInitialSpawnGroupEntry [19] +CDemoRecovery_DemoInitialSpawnGroupEntry [17] CDemoSaveGame [17] -CDemoSendTables [17] +CDemoSendTables [19] CDemoSpawnGroups [17] CDemoStop [19] CDemoStringTables [17] CDemoStringTables_items_t [19] CDemoStringTables_table_t [19] CDemoSyncTick [17] -CDemoUserCmd [17] +CDemoUserCmd [19] CDepthPyramidComputeRenderer [3] CDirtySpatialPartitionEntityList [61] CDllVerificationMonitor [61] @@ -894,7 +894,7 @@ CEmptyPhysicsBodyList [4] CEmptySequence [61] CEmptyWorldService [23] CEnduringClassMemoryPool [1] -CEngineGotvSyncPacket [17] +CEngineGotvSyncPacket [19] CEntity2NetworkClasses [6] [4] CEntity2SaveRestore [44] CEntity2_EHandle_Restore [1] @@ -1077,9 +1077,9 @@ CGCMsgAdjustEquipSlotsShuffleAcknowledged [6] CGCNameBaseItemResponse [6] CGCPaintKitItemResponse [6] CGCStorePurchaseInit_LineItem [17] -CGCToGCMsgMasterAck [19] +CGCToGCMsgMasterAck [17] CGCToGCMsgMasterAck_Response [17] -CGCToGCMsgMasterStartupComplete [19] +CGCToGCMsgMasterStartupComplete [17] CGCToGCMsgRouted [17] CGCToGCMsgRoutedReply [17] CGCUnlockCrateResponse [6] @@ -1093,7 +1093,7 @@ CGameInfo [17] CGameInfo_CCSGameInfo [17] CGameInfo_CDotaGameInfo [17] CGameInfo_CDotaGameInfo_CHeroSelectEvent [19] -CGameInfo_CDotaGameInfo_CPlayerInfo [21] +CGameInfo_CDotaGameInfo_CPlayerInfo [19] CGameInstructorSaveRestoreBlockHandler [9] CGameIntegrationDataRenderer_AllGrenades_v1 [1] CGameIntegrationDataRenderer_AllPlayers_ID_v1 [2] @@ -1183,8 +1183,8 @@ CGameSceneNode [29] CGameSceneNode::Cm_vecOriginInitializer [2] CGameSceneNode::NetworkVar_m_hParent [4] CGameSceneNodeHandle [4] -CGameServers_AggregationQuery_Request [17] -CGameServers_AggregationQuery_Response [23] +CGameServers_AggregationQuery_Request [25] +CGameServers_AggregationQuery_Response [21] CGameServers_AggregationQuery_Response_Group [17] CGameSurfacePropertiesList [4] CGameSystemAbstractFactory [10] @@ -1464,17 +1464,17 @@ CMsgAccountDetails [17] CMsgAcknowledgeRentalExpiration [17] CMsgAdjustEquipSlot [17] CMsgAdjustEquipSlots [17] -CMsgApplyEggEssence [19] +CMsgApplyEggEssence [21] CMsgApplyPennantUpgrade [21] -CMsgApplyStatTrakSwap [21] -CMsgApplySticker [17] -CMsgApplyStrangePart [21] +CMsgApplyStatTrakSwap [19] +CMsgApplySticker [19] +CMsgApplyStrangePart [19] CMsgCStrike15Welcome [19] CMsgCasketItem [19] CMsgClearDecalsForEntityEvent [17] CMsgClearEntityDecalsEvent [17] CMsgClearWorldDecalsEvent [19] -CMsgClientHello [17] +CMsgClientHello [19] CMsgClientWelcome [17] CMsgClientWelcome_Location [17] CMsgConVarValue [17] @@ -1486,21 +1486,21 @@ CMsgEffectData [17] CMsgGCBannedWord [17] CMsgGCBannedWordListRequest [17] CMsgGCBannedWordListResponse [17] -CMsgGCCStrike15_ClientDeepStats [19] -CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch [23] +CMsgGCCStrike15_ClientDeepStats [21] +CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch [21] CMsgGCCStrike15_ClientDeepStats_DeepStatsRange [27] CMsgGCCStrike15_GotvSyncPacket [23] -CMsgGCCStrike15_v2_AccountPrivacySettings [17] -CMsgGCCStrike15_v2_AccountPrivacySettings_Setting [19] +CMsgGCCStrike15_v2_AccountPrivacySettings [19] +CMsgGCCStrike15_v2_AccountPrivacySettings_Setting [17] CMsgGCCStrike15_v2_Account_RequestCoPlays [17] -CMsgGCCStrike15_v2_Account_RequestCoPlays_Player [19] +CMsgGCCStrike15_v2_Account_RequestCoPlays_Player [17] CMsgGCCStrike15_v2_AcknowledgePenalty [19] -CMsgGCCStrike15_v2_BetaEnrollment [17] +CMsgGCCStrike15_v2_BetaEnrollment [19] CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest [21] CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse [19] CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin [17] CMsgGCCStrike15_v2_Client2GCStreamUnlock [17] -CMsgGCCStrike15_v2_Client2GCTextMsg [21] +CMsgGCCStrike15_v2_Client2GCTextMsg [19] CMsgGCCStrike15_v2_Client2GcAckXPShopTracks [19] CMsgGCCStrike15_v2_ClientAccountBalance [17] CMsgGCCStrike15_v2_ClientAuthKeyCode [17] @@ -1521,17 +1521,17 @@ CMsgGCCStrike15_v2_ClientReportServer [17] CMsgGCCStrike15_v2_ClientReportValidation [19] CMsgGCCStrike15_v2_ClientRequestJoinFriendData [19] CMsgGCCStrike15_v2_ClientRequestJoinServerData [17] -CMsgGCCStrike15_v2_ClientRequestOffers [19] -CMsgGCCStrike15_v2_ClientRequestPlayersProfile [17] +CMsgGCCStrike15_v2_ClientRequestOffers [17] +CMsgGCCStrike15_v2_ClientRequestPlayersProfile [21] CMsgGCCStrike15_v2_ClientRequestSouvenir [17] CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends [17] CMsgGCCStrike15_v2_ClientSubmitSurveyVote [21] CMsgGCCStrike15_v2_ClientToGCChat [19] CMsgGCCStrike15_v2_ClientToGCRequestElevate [23] CMsgGCCStrike15_v2_ClientToGCRequestTicket [17] -CMsgGCCStrike15_v2_ClientVarValueNotificationInfo [17] -CMsgGCCStrike15_v2_Fantasy [21] -CMsgGCCStrike15_v2_Fantasy_FantasySlot [25] +CMsgGCCStrike15_v2_ClientVarValueNotificationInfo [19] +CMsgGCCStrike15_v2_Fantasy [23] +CMsgGCCStrike15_v2_Fantasy_FantasySlot [23] CMsgGCCStrike15_v2_Fantasy_FantasyTeam [21] CMsgGCCStrike15_v2_GC2ClientInitSystem [21] CMsgGCCStrike15_v2_GC2ClientInitSystem_Response [25] @@ -1540,7 +1540,7 @@ CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode [17] CMsgGCCStrike15_v2_GC2ClientRequestValidation [17] CMsgGCCStrike15_v2_GC2ClientTextMsg [23] CMsgGCCStrike15_v2_GC2ClientTournamentInfo [17] -CMsgGCCStrike15_v2_GC2ServerReservationUpdate [17] +CMsgGCCStrike15_v2_GC2ServerReservationUpdate [19] CMsgGCCStrike15_v2_GCToClientChat [17] CMsgGCCStrike15_v2_GetEventFavorites_Request [21] CMsgGCCStrike15_v2_GetEventFavorites_Response [25] @@ -1550,31 +1550,31 @@ CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry [17] CMsgGCCStrike15_v2_MatchEndRewardDropsNotification [19] CMsgGCCStrike15_v2_MatchEndRunRewardDrops [19] CMsgGCCStrike15_v2_MatchList [17] -CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames [17] +CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames [21] CMsgGCCStrike15_v2_MatchListRequestFullGameInfo [17] CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser [19] CMsgGCCStrike15_v2_MatchListRequestRecentUserGames [17] CMsgGCCStrike15_v2_MatchListRequestTournamentGames [17] -CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt [17] -CMsgGCCStrike15_v2_MatchmakingClient2GCHello [19] +CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt [19] +CMsgGCCStrike15_v2_MatchmakingClient2GCHello [21] CMsgGCCStrike15_v2_MatchmakingClient2ServerPing [17] CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon [19] CMsgGCCStrike15_v2_MatchmakingGC2ClientHello [17] -CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve [19] +CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve [17] CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats [17] CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate [17] CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note [17] CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm [19] CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve [19] CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate [21] -CMsgGCCStrike15_v2_MatchmakingServerReservationResponse [19] +CMsgGCCStrike15_v2_MatchmakingServerReservationResponse [21] CMsgGCCStrike15_v2_MatchmakingServerRoundStats [23] CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo [17] CMsgGCCStrike15_v2_MatchmakingStart [25] CMsgGCCStrike15_v2_MatchmakingStop [19] CMsgGCCStrike15_v2_Party_Invite [23] CMsgGCCStrike15_v2_Party_Register [17] -CMsgGCCStrike15_v2_Party_Search [17] +CMsgGCCStrike15_v2_Party_Search [19] CMsgGCCStrike15_v2_Party_SearchResults [21] CMsgGCCStrike15_v2_Party_SearchResults_Entry [17] CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment [17] @@ -1586,9 +1586,9 @@ CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick [17] CMsgGCCStrike15_v2_PremierSeasonSummary [17] CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap [17] CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek [17] -CMsgGCCStrike15_v2_Server2GCClientValidate [19] +CMsgGCCStrike15_v2_Server2GCClientValidate [21] CMsgGCCStrike15_v2_ServerNotificationForUserPenalty [17] -CMsgGCCStrike15_v2_ServerVarValueNotificationInfo [19] +CMsgGCCStrike15_v2_ServerVarValueNotificationInfo [21] CMsgGCCStrike15_v2_SetEventFavorite [25] CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName [27] CMsgGCCStrike15_v2_WatchInfoUsers [21] @@ -1599,40 +1599,40 @@ CMsgGCCstrike15_v2_ClientRedeemFreeReward [17] CMsgGCCstrike15_v2_ClientRedeemMissionReward [19] CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded [21] CMsgGCDev_SchemaReservationRequest [17] -CMsgGCError [19] +CMsgGCError [25] CMsgGCGiftedItems [17] -CMsgGCHAccountPhoneNumberChange [17] +CMsgGCHAccountPhoneNumberChange [21] CMsgGCHInviteUserToLobby [25] -CMsgGCHRecurringSubscriptionStatusChange [19] +CMsgGCHRecurringSubscriptionStatusChange [17] CMsgGCHVacVerificationChange [17] CMsgGCIncrementKillCountResponse [17] CMsgGCItemCustomizationNotification [21] -CMsgGCItemPreviewItemBoughtNotification [23] +CMsgGCItemPreviewItemBoughtNotification [19] CMsgGCMultiplexMessage [17] CMsgGCMultiplexMessage_Response [21] -CMsgGCNameItemNotification [21] +CMsgGCNameItemNotification [19] CMsgGCReportAbuse [21] -CMsgGCReportAbuseResponse [19] -CMsgGCRequestAnnouncements [21] -CMsgGCRequestAnnouncementsResponse [21] +CMsgGCReportAbuseResponse [17] +CMsgGCRequestAnnouncements [19] +CMsgGCRequestAnnouncementsResponse [19] CMsgGCRequestSessionIP [19] -CMsgGCRequestSessionIPResponse [17] -CMsgGCServerVersionUpdated [19] -CMsgGCShowItemsPickedUp [17] +CMsgGCRequestSessionIPResponse [21] +CMsgGCServerVersionUpdated [17] +CMsgGCShowItemsPickedUp [19] CMsgGCStorePurchaseCancel [19] CMsgGCStorePurchaseCancelResponse [19] CMsgGCStorePurchaseFinalize [17] CMsgGCStorePurchaseFinalizeResponse [17] CMsgGCStorePurchaseInit [17] CMsgGCStorePurchaseInitResponse [19] -CMsgGCToClientSteamDatagramTicket [19] -CMsgGCToGCBannedWordListBroadcast [23] -CMsgGCToGCBannedWordListUpdated [21] +CMsgGCToClientSteamDatagramTicket [17] +CMsgGCToGCBannedWordListBroadcast [21] +CMsgGCToGCBannedWordListUpdated [19] CMsgGCToGCBroadcastConsoleCommand [21] CMsgGCToGCDirtyMultipleSDOCache [17] -CMsgGCToGCDirtySDOCache [17] +CMsgGCToGCDirtySDOCache [25] CMsgGCToGCIsTrustedServer [19] -CMsgGCToGCIsTrustedServerResponse [17] +CMsgGCToGCIsTrustedServerResponse [19] CMsgGCToGCRequestPassportItemGrant [17] CMsgGCToGCUpdateSQLKeyValue [17] CMsgGCToGCWebAPIAccountChanged [17] @@ -1642,22 +1642,22 @@ CMsgGC_GlobalGame_Play [17] CMsgGC_GlobalGame_Subscribe [17] CMsgGC_GlobalGame_Unsubscribe [17] CMsgGC_ServerQuestUpdateData [17] -CMsgGameServerInfo [25] +CMsgGameServerInfo [23] CMsgIPCAddress [17] CMsgIncrementKillCountAttribute [17] -CMsgInvitationCreated [19] +CMsgInvitationCreated [17] CMsgInviteToParty [19] CMsgItemAcknowledged [17] CMsgItemAcknowledged__DEPRECATED [17] CMsgKickFromParty [17] CMsgLANServerAvailable [19] CMsgLeaveParty [17] -CMsgLegacySource1ClientWelcome [19] -CMsgLegacySource1ClientWelcome_Location [21] +CMsgLegacySource1ClientWelcome [21] +CMsgLegacySource1ClientWelcome_Location [23] CMsgModifyItemAttribute [19] CMsgOpenCrate [27] CMsgPartyInviteResponse [17] -CMsgPlaceDecalEvent [19] +CMsgPlaceDecalEvent [21] CMsgPlayerBulletHit [17] CMsgPlayerInfo [17] CMsgProtoBufHeader [19] @@ -1672,16 +1672,16 @@ CMsgRequestInventoryRefresh [21] CMsgRequestRecurringMissionSchedule [17] CMsgSDONoMemcached [19] CMsgSOCacheHaveVersion [21] -CMsgSOCacheSubscribed [19] +CMsgSOCacheSubscribed [17] CMsgSOCacheSubscribed_SubscribedType [19] CMsgSOCacheSubscriptionCheck [19] -CMsgSOCacheSubscriptionRefresh [19] +CMsgSOCacheSubscriptionRefresh [27] CMsgSOCacheUnsubscribed [17] -CMsgSOCacheVersion [21] +CMsgSOCacheVersion [19] CMsgSOIDOwner [17] CMsgSOMultipleObjects [25] -CMsgSOMultipleObjects_SingleObject [17] -CMsgSOSingleObject [19] +CMsgSOMultipleObjects_SingleObject [19] +CMsgSOSingleObject [17] CMsgSerializedSOCache [17] CMsgSerializedSOCache_Cache [17] CMsgSerializedSOCache_Cache_Version [17] @@ -1701,11 +1701,11 @@ CMsgSosSetSoundEventParams [17] CMsgSosStartSoundEvent [25] CMsgSosStopSoundEvent [25] CMsgSosStopSoundEventHash [17] -CMsgSource1LegacyGameEvent [19] -CMsgSource1LegacyGameEventList [19] -CMsgSource1LegacyGameEventList_descriptor_t [17] -CMsgSource1LegacyGameEventList_key_t [17] -CMsgSource1LegacyGameEvent_key_t [19] +CMsgSource1LegacyGameEvent [17] +CMsgSource1LegacyGameEventList [17] +CMsgSource1LegacyGameEventList_descriptor_t [19] +CMsgSource1LegacyGameEventList_key_t [19] +CMsgSource1LegacyGameEvent_key_t [17] CMsgSource1LegacyListenEvents [17] CMsgSource2NetworkFlowQuality [25] CMsgSource2PerfIntervalSample [19] @@ -1736,7 +1736,7 @@ CMsgTEFizz [19] CMsgTEGlowSprite [17] CMsgTEImpact [19] CMsgTELargeFunnel [19] -CMsgTEMuzzleFlash [19] +CMsgTEMuzzleFlash [17] CMsgTEPhysicsProp [21] CMsgTEPlayerAnimEvent [17] CMsgTERadioIcon [17] @@ -1747,7 +1747,7 @@ CMsgTEWorldDecal [19] CMsgTransform [17] CMsgUpdateItemSchema [23] CMsgUseItem [21] -CMsgVDebugGameSessionIDEvent [21] +CMsgVDebugGameSessionIDEvent [17] CMsgVector [19] CMsgVector2D [27] CMsgVoiceAudio [19] @@ -2279,12 +2279,12 @@ CNmZeroPoseTask [14] CNoClipCamera [53] [1] CNotifyManager [61] [5] [4] CNullGameJournal [8] [61] -COAuthToken_ImplicitGrantNoPrompt_Request [23] +COAuthToken_ImplicitGrantNoPrompt_Request [25] COAuthToken_ImplicitGrantNoPrompt_Response [19] CP2P_Ping [27] CP2P_Ping_t [5] [17] CP2P_TextMessage [17] -CP2P_VRAvatarPosition [23] +CP2P_VRAvatarPosition [17] CP2P_VRAvatarPosition_COrientation [23] CP2P_Voice [21] CP2P_Voice_t [5] [17] @@ -2386,7 +2386,7 @@ CPlayer_GetLastPlayedTimes_Response [19] CPlayer_GetLastPlayedTimes_Response_Game [19] CPlayer_GetMutualFriendsForIncomingInvites_Request [23] CPlayer_GetMutualFriendsForIncomingInvites_Response [19] -CPlayer_GetNewSteamAnnouncementState_Request [19] +CPlayer_GetNewSteamAnnouncementState_Request [17] CPlayer_GetNewSteamAnnouncementState_Response [19] CPlayer_GetNicknameList_Request [17] CPlayer_GetNicknameList_Response [17] @@ -2405,7 +2405,7 @@ CPlayer_RemoveFriend_Response [19] CPlayer_SetCommunityPreferences_Request [19] CPlayer_SetCommunityPreferences_Response [17] CPlayer_SetPerFriendPreferences_Request [19] -CPlayer_SetPerFriendPreferences_Response [17] +CPlayer_SetPerFriendPreferences_Response [21] CPlayer_UpdateSteamAnnouncementLastRead_Request [17] CPlayer_UpdateSteamAnnouncementLastRead_Response [17] CPlayer_UseServices [27] @@ -2420,8 +2420,8 @@ CPointWorldTextPreviewer [8] CPopupWorkshopAnnotationSubmit [89] CPopupWorkshopSubmit [89] CPostConnectCallback [1] -CPreMatchInfoData [19] -CPreMatchInfoData_TeamStats [21] +CPreMatchInfoData [17] +CPreMatchInfoData_TeamStats [17] CPrecacheRegister [61] CPrecipitationVData [6] CPredTrackAutoCompletionFunctor [1] [1] @@ -2436,7 +2436,7 @@ CPredictionSuppressEffects [6] CProductInfo_SetRichPresenceLocalization_Request [27] CProductInfo_SetRichPresenceLocalization_Request_LanguageSection [17] CProductInfo_SetRichPresenceLocalization_Request_Token [17] -CProductInfo_SetRichPresenceLocalization_Response [23] +CProductInfo_SetRichPresenceLocalization_Response [17] CProjectedTextureBase [1] CPropData [61] [3] CPropDataComponent [3] @@ -2510,7 +2510,7 @@ CPulseScopeEnumeratingTypeService [8] CPulseSharedEHandleService [8] CPulseSharedSaveRestoreBlockHandler [9] CPulseTypeQueriesModuleMetadataProvider [1] -CQuest_PublisherAddCommunityItemsToPlayer_Request [19] +CQuest_PublisherAddCommunityItemsToPlayer_Request [17] CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute [21] CQuest_PublisherAddCommunityItemsToPlayer_Response [19] CQueueMatchServerListListener [3] @@ -2573,32 +2573,32 @@ CSHA1 [1] CSMatchStats_t [5] CSOAccountItemPersonalStore [17] CSOAccountKeychainRemoveToolCharges [17] -CSOAccountRecurringMission [19] +CSOAccountRecurringMission [21] CSOAccountRecurringSubscription [17] CSOAccountSeasonalOperation [17] CSOAccountXpShop [17] CSOAccountXpShopBids [17] CSOEconClaimCode [17] -CSOEconCoupon [17] +CSOEconCoupon [19] CSOEconEquipSlot [17] CSOEconGameAccountClient [19] CSOEconItem [19] CSOEconItemAttribute [17] CSOEconItemDropRateBonus [17] -CSOEconItemEquipped [21] -CSOEconItemEventTicket [19] -CSOEconItemLeagueViewPass [21] +CSOEconItemEquipped [19] +CSOEconItemEventTicket [17] +CSOEconItemLeagueViewPass [17] CSOEconRentalHistory [19] -CSOGameAccountSteamChina [21] +CSOGameAccountSteamChina [23] CSOItemCriteria [25] CSOItemCriteriaCondition [19] CSOItemRecipe [19] CSOLobbyInvite [17] -CSOPartyInvite [17] -CSOPersonaDataPublic [23] +CSOPartyInvite [19] +CSOPersonaDataPublic [25] CSOQuestProgress [17] CSOVolatileItemClaimedRewards [17] -CSOVolatileItemOffer [19] +CSOVolatileItemOffer [17] CSPerRoundStats_t [5] CSVCMsgList_GameEvents [17] CSVCMsgList_GameEvents_event_t [19] @@ -2625,9 +2625,9 @@ CSVCMsg_HltvFixupOperatorStatus [17] CSVCMsg_HltvReplay [17] CSVCMsg_Menu [17] CSVCMsg_NextMsgPredicted [19] -CSVCMsg_PacketEntities [19] +CSVCMsg_PacketEntities [17] CSVCMsg_PacketEntities_alternate_baseline_t [17] -CSVCMsg_PacketEntities_non_transmitted_entities_t [17] +CSVCMsg_PacketEntities_non_transmitted_entities_t [19] CSVCMsg_PacketEntities_outofpvs_entity_updates_t [17] CSVCMsg_PacketReliable [19] CSVCMsg_PeerList [19] @@ -2646,7 +2646,7 @@ CSVCMsg_SplitScreen [21] CSVCMsg_StopSound [17] CSVCMsg_TempEntities [21] CSVCMsg_UpdateStringTable [17] -CSVCMsg_UserCommands [19] +CSVCMsg_UserCommands [21] CSVCMsg_UserMessage [17] CSVCMsg_UserMessage_t [5] [17] CSVCMsg_VoiceData [19] @@ -2949,7 +2949,7 @@ CUserMessageHapticsManagerPulse [17] CUserMessageHudMsg [17] CUserMessageHudText [23] CUserMessageItemPickup [25] -CUserMessageLagCompensationError [21] +CUserMessageLagCompensationError [17] CUserMessageRequestDiagnostic [17] CUserMessageRequestDiagnostic_Diagnostic [19] CUserMessageRequestDiagnostic_t [5] [17] @@ -2980,10 +2980,10 @@ CUserMessageTextMsg [19] CUserMessageTextMsg_t [5] [17] CUserMessageUpdateCssClasses [23] CUserMessageUpdateCssClasses_t [5] [17] -CUserMessageVoiceMask [19] +CUserMessageVoiceMask [21] CUserMessageVoiceMask_t [5] [17] CUserMessageWaterShake [19] -CUserMessage_Diagnostic_Response [19] +CUserMessage_Diagnostic_Response [21] CUserMessage_Diagnostic_Response_Diagnostic [25] CUserMessage_DllStatus [17] CUserMessage_DllStatus_CModule [21] @@ -3153,10 +3153,10 @@ CWaterLevelChangeGameSystem [61] CWaterSplasher [239] [6] [1] CWeaponEconData [1] CWeaponSpiderGraph [87] -CWorkshop_AddSpecialPayment_Request [21] +CWorkshop_AddSpecialPayment_Request [17] CWorkshop_AddSpecialPayment_Response [23] -CWorkshop_GetContributors_Request [19] -CWorkshop_GetContributors_Response [25] +CWorkshop_GetContributors_Request [17] +CWorkshop_GetContributors_Response [23] CWorkshop_PopulateItemDescriptions_Request [17] CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock [17] CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription [17] @@ -3164,7 +3164,7 @@ CWorkshop_SetItemPaymentRules_Request [17] CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule [17] CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule [17] CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule [19] -CWorkshop_SetItemPaymentRules_Response [19] +CWorkshop_SetItemPaymentRules_Response [21] CWorldGameSystem [61] CWorldTextSceneObject [3] CWorldTextSceneObjectDesc [24] @@ -3889,10 +3889,10 @@ IVideoPlayer [25] IVoiceStatusHelper [5] IWrappedInterpolatedVarAdapter [20] IpAddressMask [19] -MLDemoHeader [21] -MLDict [21] +MLDemoHeader [23] +MLDict [17] MLEvent [17] -MLGameState [19] +MLGameState [17] MLMatchState [17] MLPlayerState [23] MLRoundState [17] @@ -3901,16 +3901,16 @@ MLWeaponState [21] MatchEndItemUpdates [19] OperationalStatisticDescription [17] OperationalStatisticElement [21] -OperationalStatisticsPacket [19] +OperationalStatisticsPacket [21] OperationalVarValue [17] PerFriendPreferences [19] PhysicsRagdollPose_t [4] PlayerCommendationInfo [17] PlayerDecalDigitalSignature [19] PlayerMedalsInfo [19] -PlayerQuestData [19] +PlayerQuestData [21] PlayerQuestData_QuestItemData [17] -PlayerRankingInfo [19] +PlayerRankingInfo [21] PlayerRankingInfo_PerMapRank [17] PredictedDamageTag_t [5] PredictionRecord [1] @@ -3922,7 +3922,7 @@ PublishedFileDetails_Child [19] PublishedFileDetails_KVTag [17] PublishedFileDetails_Preview [21] PublishedFileDetails_Tag [17] -PublishedFileDetails_VoteData [19] +PublishedFileDetails_VoteData [17] RotationTrack_t [1] ScaleTrack_t [1] ScoreLeaderboardData [17] diff --git a/dump/windows/vtables/engine2.json b/dump/windows/vtables/engine2.json index 7d32a6b..cafc70e 100644 --- a/dump/windows/vtables/engine2.json +++ b/dump/windows/vtables/engine2.json @@ -1,25 +1,25 @@ [ { "type_name": "C2S_CONNECTION_Message", - "vtable_address": 6447938096, + "vtable_address": 6447942376, "methods": [ - 6443805344, - 6444851872, - 6442807520, - 6443810496, + 6443805632, + 6444852176, + 6442807968, + 6443810784, 6442590368, - 6444851920, - 6444849504, - 6443811248, + 6444852224, + 6444849808, + 6443811536, 6442600000, - 6443810624, - 6442600384, - 6443811088, - 6444853136, - 6444854608, - 6443805552, - 6443811792, - 6443811488 + 6443810912, + 6442600400, + 6443811376, + 6444853440, + 6444854912, + 6443805840, + 6443812080, + 6443811776 ], "bases": [ { @@ -53,7 +53,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247112, + "complete_object_locator": 6448251336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62,25 +62,25 @@ }, { "type_name": "C2S_CONNECTION_Message_t", - "vtable_address": 6447775752, + "vtable_address": 6447779864, "methods": [ - 6442824124, - 6444851872, - 6442807520, - 6443810496, + 6442824572, + 6444852176, + 6442807968, + 6443810784, 6442590368, - 6444851920, - 6444849504, - 6443811248, + 6444852224, + 6444849808, + 6443811536, 6442600000, - 6443810624, - 6442600384, - 6443811088, - 6444853136, - 6444854608, - 6443805552, - 6443811792, - 6443811488 + 6443810912, + 6442600400, + 6443811376, + 6444853440, + 6444854912, + 6443805840, + 6443812080, + 6443811776 ], "bases": [ { @@ -156,7 +156,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179544, + "complete_object_locator": 6448183768, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -165,13 +165,13 @@ }, { "type_name": "C2S_CONNECTION_Message_t", - "vtable_address": 6447775944, + "vtable_address": 6447780056, "methods": [ - 6442812464, - 6442694608, - 6442694608, - 6442823248, - 6442823328 + 6442812912, + 6442695056, + 6442695056, + 6442823696, + 6442823776 ], "bases": [ { @@ -247,7 +247,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179584, + "complete_object_locator": 6448183808, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -256,31 +256,31 @@ }, { "type_name": "C2S_CONNECT_Message", - "vtable_address": 6447938240, + "vtable_address": 6447942520, "methods": [ - 6443805104, - 6444851872, - 6442807504, - 6443807184, + 6443805392, + 6444852176, + 6442807952, + 6443807472, 6442590368, - 6444851920, - 6444849504, - 6443809296, + 6444852224, + 6444849808, + 6443809584, 6442600000, - 6443807536, - 6442600384, - 6443808640, - 6444853136, - 6444854608, - 6443805552, - 6443810432, - 6443809888, - 6444850176, - 6443811504, - 6444850176, - 6443806512, - 6444850176, - 6443809904 + 6443807824, + 6442600400, + 6443808928, + 6444853440, + 6444854912, + 6443805840, + 6443810720, + 6443810176, + 6444850480, + 6443806800, + 6444850480, + 6443811792, + 6444850480, + 6443810192 ], "bases": [ { @@ -314,7 +314,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247072, + "complete_object_locator": 6448251296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -323,25 +323,25 @@ }, { "type_name": "C2S_CONNECT_Message_t", - "vtable_address": 6447776136, + "vtable_address": 6447780248, "methods": [ - 6442824136, - 6444851872, - 6442807504, - 6443807184, + 6442824584, + 6444852176, + 6442807952, + 6443807472, 6442590368, - 6444851920, - 6444849504, - 6443809296, + 6444852224, + 6444849808, + 6443809584, 6442600000, - 6443807536, - 6442600384, - 6443808640, - 6444853136, - 6444854608, - 6443805552, - 6443810432, - 6443809888 + 6443807824, + 6442600400, + 6443808928, + 6444853440, + 6444854912, + 6443805840, + 6443810720, + 6443810176 ], "bases": [ { @@ -417,7 +417,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179784, + "complete_object_locator": 6448184008, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -426,13 +426,13 @@ }, { "type_name": "C2S_CONNECT_Message_t", - "vtable_address": 6447776280, + "vtable_address": 6447780392, "methods": [ - 6442810704, - 6442694608, - 6442694608, - 6442822848, - 6442822928 + 6442811152, + 6442695056, + 6442695056, + 6442823296, + 6442823376 ], "bases": [ { @@ -508,7 +508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179744, + "complete_object_locator": 6448183968, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -517,25 +517,25 @@ }, { "type_name": "C2S_CONNECT_SameProcessCheck", - "vtable_address": 6447939264, + "vtable_address": 6447943552, "methods": [ - 6443804960, - 6444851872, - 6443804944, - 6443805568, + 6443805248, + 6444852176, + 6443805232, + 6443805856, 6442590368, - 6444851920, - 6444849504, - 6443806400, + 6444852224, + 6444849808, + 6443806688, 6442600000, - 6443805600, - 6442600384, - 6443806096, - 6444853136, - 6444854608, - 6443805552, - 6443806592, - 6443806496 + 6443805888, + 6442600400, + 6443806384, + 6444853440, + 6444854912, + 6443805840, + 6443806880, + 6443806784 ], "bases": [ { @@ -569,7 +569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247032, + "complete_object_locator": 6448251256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -578,20 +578,20 @@ }, { "type_name": "CAppSystemDict", - "vtable_address": 6447131832, + "vtable_address": 6447135928, "methods": [ - 6445507824, - 6445516032, - 6442600368, - 6444083520, + 6445508128, + 6445516336, 6442600384, - 6445512464, - 6442600384 + 6444083808, + 6442600400, + 6445512768, + 6442600400 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448138792, + "complete_object_locator": 6448143016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -600,17 +600,17 @@ }, { "type_name": "CAsyncCallJob", - "vtable_address": 6447926272, + "vtable_address": 6447930664, "methods": [ + 6443765600, + 6443283488, + 6443283344, + 6443283392, + 6443283424, 6443765328, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443765056, - 6443254176, - 6442600464, - 6442600384 + 6443254368, + 6442600368, + 6442600400 ], "bases": [ { @@ -700,7 +700,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241592, + "complete_object_locator": 6448245936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -709,17 +709,17 @@ }, { "type_name": "CAsyncCallJob", - "vtable_address": 6447857752, - "methods": [ - 6443274032, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443278848, - 6443254176, - 6442600464, - 6442600384 + "vtable_address": 6447861800, + "methods": [ + 6443274224, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443279040, + 6443254368, + 6442600368, + 6442600400 ], "bases": [ { @@ -809,7 +809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217952, + "complete_object_locator": 6448222088, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -818,17 +818,17 @@ }, { "type_name": "CAsyncCallJob", - "vtable_address": 6447857592, - "methods": [ - 6443259520, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443279296, - 6443254176, - 6442600464, - 6442600384 + "vtable_address": 6447861880, + "methods": [ + 6443259712, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443279488, + 6443254368, + 6442600368, + 6442600400 ], "bases": [ { @@ -918,7 +918,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217792, + "complete_object_locator": 6448222248, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -927,17 +927,17 @@ }, { "type_name": "CAsyncCallJob", - "vtable_address": 6447857672, - "methods": [ - 6443259312, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443279024, - 6443254176, - 6442600464, - 6442600384 + "vtable_address": 6447861720, + "methods": [ + 6443259504, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443279216, + 6443254368, + 6442600368, + 6442600400 ], "bases": [ { @@ -1027,7 +1027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217912, + "complete_object_locator": 6448222048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -1036,9 +1036,9 @@ }, { "type_name": "CAsyncShaderCompilePrerequisite", - "vtable_address": 6448052832, + "vtable_address": 6448057360, "methods": [ - 6444353328 + 6444353616 ], "bases": [ { @@ -1072,7 +1072,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274872, + "complete_object_locator": 6448279072, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -1081,14 +1081,14 @@ }, { "type_name": "CAsyncShaderCompilePrerequisite", - "vtable_address": 6448052904, + "vtable_address": 6448057376, "methods": [ - 6444353344, - 6442845840, - 6442845856, - 6444352672, - 6444352656, - 6442845888 + 6444353632, + 6442846288, + 6442846304, + 6444352960, + 6444352944, + 6442846336 ], "bases": [ { @@ -1122,7 +1122,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274792, + "complete_object_locator": 6448279112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -1131,14 +1131,14 @@ }, { "type_name": "CAttributeDictSaveDataOps", - "vtable_address": 6447149216, + "vtable_address": 6447153312, "methods": [ - 6445684832, - 6445685360, - 6445685824, - 6445685856, - 6442600464, - 6442600384 + 6445685136, + 6445685664, + 6445686128, + 6445686160, + 6442600368, + 6442600400 ], "bases": [ { @@ -1172,7 +1172,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448141136, + "complete_object_locator": 6448145360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1181,13 +1181,13 @@ }, { "type_name": "CBannedUsersFilter", - "vtable_address": 6447872376, + "vtable_address": 6447876480, "methods": [ - 6443366768, - 6443371248, - 6443366736, - 6443366752, - 6443376592 + 6443366960, + 6443371440, + 6443366928, + 6443366944, + 6443376784 ], "bases": [ { @@ -1207,7 +1207,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448225544, + "complete_object_locator": 6448229760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1216,25 +1216,25 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6447798760, + "vtable_address": 6447802872, "methods": [ - 6442910528, - 6444851872, - 6442846640, - 6443834080, + 6442910608, + 6444852176, + 6442847088, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443889280, - 6443889264 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443889568, + 6443889552 ], "bases": [ { @@ -1282,7 +1282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189480, + "complete_object_locator": 6448193704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1291,25 +1291,25 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6447824240, + "vtable_address": 6447827792, "methods": [ - 6443044320, - 6444851872, - 6442954976, - 6443834080, + 6443044512, + 6444852176, + 6442955056, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443975008, - 6443974992 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443975296, + 6443975280 ], "bases": [ { @@ -1357,7 +1357,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206048, + "complete_object_locator": 6448210112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1366,25 +1366,25 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6447825152, + "vtable_address": 6447829664, "methods": [ - 6442969312, - 6444851872, - 6442954720, - 6444064704, + 6442969392, + 6444852176, + 6442954800, + 6444064992, 6442590368, - 6444851920, - 6444849504, - 6444067632, + 6444852224, + 6444849808, + 6444067920, 6442600000, - 6444065008, - 6442600384, - 6444066672, - 6444853136, - 6444854608, - 6443805552, - 6444068928, - 6444068256 + 6444065296, + 6442600400, + 6444066960, + 6444853440, + 6444854912, + 6443805840, + 6444069216, + 6444068544 ], "bases": [ { @@ -1432,7 +1432,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205008, + "complete_object_locator": 6448209232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1441,32 +1441,32 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448025144, + "vtable_address": 6448029672, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444186128, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444186416, + 6446722972 ], "bases": [ { @@ -1598,7 +1598,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448261672, + "complete_object_locator": 6448265824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1607,31 +1607,31 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448025584, + "vtable_address": 6448029944, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444200816 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444201104 ], "bases": [ { @@ -1749,7 +1749,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263640, + "complete_object_locator": 6448267832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1758,52 +1758,52 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448030528, + "vtable_address": 6448034856, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444223952, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444224240, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -1935,7 +1935,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448265576, + "complete_object_locator": 6448269736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -1944,47 +1944,47 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448033128, + "vtable_address": 6448037432, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444251392, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444251680, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -2116,7 +2116,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267760, + "complete_object_locator": 6448271952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2125,68 +2125,68 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448043704, + "vtable_address": 6448048000, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444314032, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444314320, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -2318,7 +2318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269968, + "complete_object_locator": 6448274080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2327,34 +2327,34 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448044984, + "vtable_address": 6448049216, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444341776, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444342064, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -2486,7 +2486,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448271544, + "complete_object_locator": 6448275720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2495,72 +2495,72 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448051168, + "vtable_address": 6448055432, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, - 6442600384, - 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186096, - 6444186080, - 6444383744, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444384032, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6442600400, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -2692,7 +2692,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275392, + "complete_object_locator": 6448279624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2701,41 +2701,41 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448055104, + "vtable_address": 6448059400, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444407616, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444407904, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -2867,7 +2867,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448277072, + "complete_object_locator": 6448281232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -2876,54 +2876,54 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448055760, + "vtable_address": 6448060040, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444431328, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444431616, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -3055,7 +3055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448279264, + "complete_object_locator": 6448283464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3064,32 +3064,32 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448059336, + "vtable_address": 6448063616, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444432176, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444432464, + 6446722972 ], "bases": [ { @@ -3221,7 +3221,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448280528, + "complete_object_locator": 6448284704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3230,45 +3230,45 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448061352, + "vtable_address": 6448065632, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444442192, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444442480, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -3400,7 +3400,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448282400, + "complete_object_locator": 6448286456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3409,44 +3409,44 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448066456, + "vtable_address": 6448070736, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444480608, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444480896, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -3578,7 +3578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448285376, + "complete_object_locator": 6448289448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3587,51 +3587,51 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448069064, + "vtable_address": 6448073528, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444498640, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444498928, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -3763,7 +3763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448286920, + "complete_object_locator": 6448291304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3772,35 +3772,35 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448071448, + "vtable_address": 6448076016, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444513264, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444513552, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -3932,7 +3932,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448288664, + "complete_object_locator": 6448292832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -3941,99 +3941,99 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448072184, + "vtable_address": 6448076472, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444517504, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444517792, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -4165,7 +4165,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448289944, + "complete_object_locator": 6448294200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4174,33 +4174,33 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6448074776, + "vtable_address": 6448079080, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444527536, - 6446722668, - 6446722668 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444527824, + 6446722972, + 6446722972 ], "bases": [ { @@ -4332,7 +4332,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291736, + "complete_object_locator": 6448295912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4341,9 +4341,9 @@ }, { "type_name": "CBaseSpawnGroup", - "vtable_address": 6447887864, + "vtable_address": 6447891896, "methods": [ - 6443522000 + 6443522192 ], "bases": [ { @@ -4391,7 +4391,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448229400, + "complete_object_locator": 6448233576, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -4400,10 +4400,10 @@ }, { "type_name": "CBaseSpawnGroup", - "vtable_address": 6447887880, + "vtable_address": 6447891912, "methods": [ - 6442600384, - 6443524000 + 6442600400, + 6443524192 ], "bases": [ { @@ -4451,7 +4451,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448229440, + "complete_object_locator": 6448233616, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -4460,53 +4460,53 @@ }, { "type_name": "CBaseSpawnGroup", - "vtable_address": 6447887904, - "methods": [ - 6442824976, - 6442825008, - 6442825040, - 6442825072, - 6442825088, - 6442825104, - 6442825168, - 6442825200, - 6442825136, - 6442825152, - 6443524720, - 6442825232, - 6443524736, - 6446722668, - 6446722668, - 6446722668, - 6442825248, - 6442825264, - 6442778448, - 6442825360, - 6443521488, - 6442600384, - 6442600464, - 6443525680, - 6443523936, - 6442825280, - 6442825296, - 6442825312, - 6446722668, - 6442825328, - 6442825344, - 6442600384, - 6443522144, - 6443242704, - 6443522672, - 6442824960, - 6443522704, - 6443523328, - 6443524672, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6443524048, - 6446722668 + "vtable_address": 6447891936, + "methods": [ + 6442825424, + 6442825456, + 6442825488, + 6442825520, + 6442825536, + 6442825552, + 6442825616, + 6442825648, + 6442825584, + 6442825600, + 6443524912, + 6442825680, + 6443524928, + 6446722972, + 6446722972, + 6446722972, + 6442825696, + 6442825712, + 6442778896, + 6442825808, + 6443521680, + 6442600400, + 6442600368, + 6443525872, + 6443524128, + 6442825728, + 6442825744, + 6442825760, + 6446722972, + 6442825776, + 6442825792, + 6442600400, + 6443522336, + 6443242896, + 6443522864, + 6442825408, + 6443522896, + 6443523520, + 6443524864, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6443524240, + 6446722972 ], "bases": [ { @@ -4554,7 +4554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448229320, + "complete_object_locator": 6448233656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -4563,14 +4563,14 @@ }, { "type_name": "CBaseVModuleMetadataProvider", - "vtable_address": 6448121032, + "vtable_address": 6448125272, "methods": [ - 6446722668 + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448303896, + "complete_object_locator": 6448308104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4579,32 +4579,32 @@ }, { "type_name": "CBenchmarkService", - "vtable_address": 6448025344, + "vtable_address": 6448029280, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444183168, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6444183456, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6444184256, - 6444184272, + 6442697072, 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444182464, - 6444186096, - 6444186080, - 6444183088, - 6444184320 + 6443587504, + 6444184544, + 6444184560, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444182752, + 6444186384, + 6444186368, + 6444183376, + 6444184608 ], "bases": [ { @@ -4750,7 +4750,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448261632, + "complete_object_locator": 6448265864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4759,25 +4759,29 @@ }, { "type_name": "CBidirMsg_PredictionEvent", - "vtable_address": 6447952600, + "vtable_address": 6447956856, "methods": [ - 6443874416, - 6444851872, - 6443862992, - 6443971408, - 6443991536, - 6444851920, - 6444849504, - 6443991280, + 6443874704, + 6444852176, + 6443863280, + 6443971696, + 6443991824, + 6444852224, + 6444849808, + 6443991568, 6442600000, - 6443990192, - 6442600384, - 6443990880, - 6444853136, - 6444854608, - 6443805552, - 6443991552, - 6443991520 + 6443990480, + 6442600400, + 6443991168, + 6444853440, + 6444854912, + 6443805840, + 6443991840, + 6443991808, + 6444850480, + 6443842528, + 6444850480, + 6443830592 ], "bases": [ { @@ -4811,7 +4815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253816, + "complete_object_locator": 6448257928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4820,25 +4824,25 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent", - "vtable_address": 6447978664, + "vtable_address": 6447982952, "methods": [ - 6443874128, - 6444851872, - 6443862960, - 6443988592, + 6443874416, + 6444852176, + 6443863248, + 6443988880, 6442590368, - 6444851920, - 6444849504, - 6443989792, + 6444852224, + 6444849808, + 6443990080, 6442600000, - 6443988640, - 6442600384, - 6443989360, - 6444853136, - 6444854608, - 6443805552, - 6443990048, - 6443989936 + 6443988928, + 6442600400, + 6443989648, + 6444853440, + 6444854912, + 6443805840, + 6443990336, + 6443990224 ], "bases": [ { @@ -4872,7 +4876,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250288, + "complete_object_locator": 6448254552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -4881,13 +4885,25 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent_t", - "vtable_address": 6448097776, + "vtable_address": 6448102424, "methods": [ - 6444625936, - 6442694608, - 6442694608, - 6444637648, - 6444637728 + 6444645176, + 6444852176, + 6443863248, + 6443988880, + 6442590368, + 6444852224, + 6444849808, + 6443990080, + 6442600000, + 6443988928, + 6442600400, + 6443989648, + 6444853440, + 6444854912, + 6443805840, + 6443990336, + 6443990224 ], "bases": [ { @@ -4963,8 +4979,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299208, - "offset": 0, + "complete_object_locator": 6448303368, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -4972,25 +4988,13 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent_t", - "vtable_address": 6448097824, + "vtable_address": 6448102904, "methods": [ - 6444644872, - 6444851872, - 6443862960, - 6443988592, - 6442590368, - 6444851920, - 6444849504, - 6443989792, - 6442600000, - 6443988640, - 6442600384, - 6443989360, - 6444853136, - 6444854608, - 6443805552, - 6443990048, - 6443989936 + 6444626240, + 6442695056, + 6442695056, + 6444637952, + 6444638032 ], "bases": [ { @@ -5066,8 +5070,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299288, - "offset": 48, + "complete_object_locator": 6448303448, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -5075,37 +5079,37 @@ }, { "type_name": "CBidirMsg_RebroadcastSource", - "vtable_address": 6447952216, + "vtable_address": 6447956440, "methods": [ - 6443874272, - 6444851872, - 6443862976, - 6443886880, + 6443874560, + 6444852176, + 6443863264, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, - 6443990128, - 6443990112, - 6444850176, - 6443884432, - 6444850176, - 6443842240, - 6444850176, - 6443950736, - 6444850176, - 6443842240, - 6444850176, - 6443830304, - 6444850176, - 6443942736 + 6443887200, + 6442600400, + 6443887584, + 6444853440, + 6444854912, + 6443805840, + 6443990416, + 6443990400, + 6444850480, + 6443975168, + 6444850480, + 6443884720, + 6444850480, + 6443952880, + 6444850480, + 6443987760, + 6444850480, + 6443842528, + 6444850480, + 6443884720 ], "bases": [ { @@ -5139,7 +5143,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253584, + "complete_object_locator": 6448257968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5148,13 +5152,25 @@ }, { "type_name": "CBidirMsg_RebroadcastSource_t", - "vtable_address": 6448098144, + "vtable_address": 6448101848, "methods": [ - 6444630560, - 6442694608, - 6442694608, - 6444637968, - 6444638048 + 6444645188, + 6444852176, + 6443863264, + 6443887168, + 6442590368, + 6444852224, + 6444849808, + 6443887760, + 6442600000, + 6443887200, + 6442600400, + 6443887584, + 6444853440, + 6444854912, + 6443805840, + 6443990416, + 6443990400 ], "bases": [ { @@ -5230,8 +5246,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448298848, - "offset": 0, + "complete_object_locator": 6448303008, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -5239,25 +5255,13 @@ }, { "type_name": "CBidirMsg_RebroadcastSource_t", - "vtable_address": 6448098192, + "vtable_address": 6448102136, "methods": [ - 6444644884, - 6444851872, - 6443862976, - 6443886880, - 6442590368, - 6444851920, - 6444849504, - 6443887472, - 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, - 6443990128, - 6443990112 + 6444630864, + 6442695056, + 6442695056, + 6444638272, + 6444638352 ], "bases": [ { @@ -5333,8 +5337,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448298968, - "offset": 48, + "complete_object_locator": 6448302968, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -5342,11 +5346,11 @@ }, { "type_name": "CBreakpadPassiveAssertionFailureListener", - "vtable_address": 6448078344, + "vtable_address": 6448082552, "methods": [ - 6444596416, - 6444595616, - 6444595952 + 6444596704, + 6444595904, + 6444596240 ], "bases": [ { @@ -5366,7 +5370,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294872, + "complete_object_locator": 6448299008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -5375,51 +5379,53 @@ }, { "type_name": "CBroadcastPlayer", - "vtable_address": 6447903848, + "vtable_address": 6447907864, "methods": [ - 6443608160, - 6443609216, + 6443608352, + 6443609408, 6442600000, - 6443626208, - 6443626272, - 6443626320, - 6443626336, - 6443609232, + 6443626368, + 6443626432, 6443626480, - 6443626512, - 6442600464, + 6443626496, + 6443609424, + 6443626640, + 6443626672, 6442600368, - 6442938064, - 6443626400, - 6442600464, - 6443626432, + 6442600384, + 6442938144, + 6443626560, + 6442600368, + 6443626592, 6442590368, - 6443626384, - 6443626368, - 6443612256, + 6443626544, + 6443626528, 6443612448, - 6443614384, - 6443607744, - 6443620544, - 6442600464, + 6443612640, + 6443614576, + 6443607936, + 6443620736, + 6442600368, 6442600384, - 6443625984, - 6442600464, - 6442600464, - 6442600464, - 6443607744, - 6443626704, + 6442600368, + 6442600400, + 6443626144, + 6442600368, + 6442600368, + 6442600368, + 6443607936, + 6443626864, 6442590368, - 6442600384, - 6443607824, - 6443607840, - 6443607856, + 6442600400, + 6443608016, + 6443608032, + 6443608048, 6442599968, - 6442769136, - 6442769136, - 6442600384, - 6442600384, - 6443626144 + 6442769584, + 6442769584, + 6442600400, + 6442600400, + 6443626304 ], "bases": [ { @@ -5453,7 +5459,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235192, + "complete_object_locator": 6448239456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -5462,13 +5468,13 @@ }, { "type_name": "CBroadcastPlayer", - "vtable_address": 6447904200, + "vtable_address": 6447908232, "methods": [ - 6443627424, - 6443607888, - 6443607872, - 6443627648, - 6443627696 + 6443627584, + 6443608080, + 6443608064, + 6443627808, + 6443627856 ], "bases": [ { @@ -5502,7 +5508,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235232, + "complete_object_locator": 6448239416, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -5511,13 +5517,10 @@ }, { "type_name": "CBugService", - "vtable_address": 6448025856, + "vtable_address": 6448030184, "methods": [ - 6442600464, - 6444197552, - 6442600464, - 6442600464, - 6442590368 + 6444200064, + 6444200336 ], "bases": [ { @@ -5691,8 +5694,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263520, - "offset": 64, + "complete_object_locator": 6448267712, + "offset": 72, "constructor_displacement": 0, "class_attributes": 1 } @@ -5700,10 +5703,9 @@ }, { "type_name": "CBugService", - "vtable_address": 6448025904, + "vtable_address": 6448030208, "methods": [ - 6444199776, - 6444200048 + 6444197136 ], "bases": [ { @@ -5877,8 +5879,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263400, - "offset": 72, + "complete_object_locator": 6448267792, + "offset": 56, "constructor_displacement": 0, "class_attributes": 1 } @@ -5886,31 +5888,13 @@ }, { "type_name": "CBugService", - "vtable_address": 6448025928, + "vtable_address": 6448030224, "methods": [ - 6442793040, - 6442792800, 6442600368, - 6444188640, - 6442792864, - 6442600384, + 6444197840, 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, 6442600368, - 6443587312, - 6442696624, - 6442600384, - 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444186368, - 6444186096, - 6444186080, - 6444188576 + 6442590368 ], "bases": [ { @@ -6084,8 +6068,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263560, - "offset": 0, + "complete_object_locator": 6448267672, + "offset": 64, "constructor_displacement": 0, "class_attributes": 1 } @@ -6093,9 +6077,31 @@ }, { "type_name": "CBugService", - "vtable_address": 6448026120, + "vtable_address": 6448030272, "methods": [ - 6444196848 + 6442793488, + 6442793248, + 6442600384, + 6444188928, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, + 6442600384, + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444186656, + 6444186384, + 6444186368, + 6444188864 ], "bases": [ { @@ -6269,8 +6275,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263480, - "offset": 56, + "complete_object_locator": 6448267752, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -6278,25 +6284,25 @@ }, { "type_name": "CCLCMsg_BaselineAck", - "vtable_address": 6447979816, + "vtable_address": 6447984104, "methods": [ - 6443864000, - 6444851872, - 6442744208, - 6443883488, + 6443864288, + 6444852176, + 6442744656, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443884320, + 6444852224, + 6444849808, + 6443884608, 6442600000, - 6443883520, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443884512, - 6443884416 + 6443883808, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443884800, + 6443884704 ], "bases": [ { @@ -6330,7 +6336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253256, + "complete_object_locator": 6448257552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6339,25 +6345,25 @@ }, { "type_name": "CCLCMsg_BaselineAck_t", - "vtable_address": 6447767456, + "vtable_address": 6447771552, "methods": [ - 6442768488, - 6444851872, - 6442744208, - 6443883488, + 6442768936, + 6444852176, + 6442744656, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443884320, + 6444852224, + 6444849808, + 6443884608, 6442600000, - 6443883520, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443884512, - 6443884416 + 6443883808, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443884800, + 6443884704 ], "bases": [ { @@ -6433,7 +6439,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174264, + "complete_object_locator": 6448178488, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -6442,13 +6448,13 @@ }, { "type_name": "CCLCMsg_BaselineAck_t", - "vtable_address": 6447767600, + "vtable_address": 6447771696, "methods": [ - 6442759136, - 6442694608, - 6442694608, - 6442760320, - 6442760400 + 6442759584, + 6442695056, + 6442695056, + 6442760768, + 6442760848 ], "bases": [ { @@ -6524,7 +6530,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174304, + "complete_object_locator": 6448178528, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -6533,25 +6539,25 @@ }, { "type_name": "CCLCMsg_ClientInfo", - "vtable_address": 6447950480, + "vtable_address": 6447954768, "methods": [ - 6443863312, - 6444851872, - 6442846592, - 6443876576, + 6443863600, + 6444852176, + 6442847040, + 6443876864, 6442590368, - 6444851920, - 6444849504, - 6443877776, + 6444852224, + 6444849808, + 6443878064, 6442600000, - 6443876656, - 6442600384, - 6443877376, - 6444853136, - 6444854608, - 6443805552, - 6443878176, - 6443877952 + 6443876944, + 6442600400, + 6443877664, + 6444853440, + 6444854912, + 6443805840, + 6443878464, + 6443878240 ], "bases": [ { @@ -6585,7 +6591,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250008, + "complete_object_locator": 6448254488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6594,25 +6600,25 @@ }, { "type_name": "CCLCMsg_ClientInfo_t", - "vtable_address": 6447800776, + "vtable_address": 6447804888, "methods": [ - 6442936760, - 6444851872, - 6442846592, - 6443876576, + 6442936840, + 6444852176, + 6442847040, + 6443876864, 6442590368, - 6444851920, - 6444849504, - 6443877776, + 6444852224, + 6444849808, + 6443878064, 6442600000, - 6443876656, - 6442600384, - 6443877376, - 6444853136, - 6444854608, - 6443805552, - 6443878176, - 6443877952 + 6443876944, + 6442600400, + 6443877664, + 6444853440, + 6444854912, + 6443805840, + 6443878464, + 6443878240 ], "bases": [ { @@ -6688,7 +6694,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190240, + "complete_object_locator": 6448194464, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -6697,13 +6703,13 @@ }, { "type_name": "CCLCMsg_ClientInfo_t", - "vtable_address": 6447801352, + "vtable_address": 6447805464, "methods": [ - 6442852800, - 6442694608, - 6442694608, - 6442911760, - 6442911840 + 6442853248, + 6442695056, + 6442695056, + 6442911840, + 6442911920 ], "bases": [ { @@ -6779,7 +6785,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190200, + "complete_object_locator": 6448194424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -6788,25 +6794,25 @@ }, { "type_name": "CCLCMsg_CmdKeyValues", - "vtable_address": 6447950048, + "vtable_address": 6447954336, "methods": [ - 6443865216, - 6444851872, - 6442846640, - 6443834080, + 6443865504, + 6444852176, + 6442847088, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443889280, - 6443889264 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443889568, + 6443889552 ], "bases": [ { @@ -6840,7 +6846,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253216, + "complete_object_locator": 6448257512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -6849,25 +6855,25 @@ }, { "type_name": "CCLCMsg_CmdKeyValues_t", - "vtable_address": 6447802632, + "vtable_address": 6447806744, "methods": [ - 6442936736, - 6444851872, - 6442846640, - 6443834080, + 6442936816, + 6444852176, + 6442847088, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443889280, - 6443889264 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443889568, + 6443889552 ], "bases": [ { @@ -6957,7 +6963,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189640, + "complete_object_locator": 6448193864, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -6966,13 +6972,13 @@ }, { "type_name": "CCLCMsg_CmdKeyValues_t", - "vtable_address": 6447802968, + "vtable_address": 6447807080, "methods": [ - 6442848800, - 6442694608, - 6442694608, - 6442912816, - 6442912896 + 6442849248, + 6442695056, + 6442695056, + 6442912896, + 6442912976 ], "bases": [ { @@ -7062,7 +7068,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189600, + "complete_object_locator": 6448193824, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -7071,25 +7077,25 @@ }, { "type_name": "CCLCMsg_Diagnostic", - "vtable_address": 6447949760, + "vtable_address": 6447954048, "methods": [ - 6443866576, - 6444851872, - 6442846864, - 6443917216, + 6443866864, + 6444852176, + 6442847312, + 6443917504, 6442590368, - 6444851920, - 6444849504, - 6443918992, + 6444852224, + 6444849808, + 6443919280, 6442600000, - 6443917904, - 6442600384, - 6443918704, - 6444853136, - 6444854608, - 6443805552, - 6443919792, - 6443919296 + 6443918192, + 6442600400, + 6443918992, + 6444853440, + 6444854912, + 6443805840, + 6443920080, + 6443919584 ], "bases": [ { @@ -7123,7 +7129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255288, + "complete_object_locator": 6448259728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7132,13 +7138,13 @@ }, { "type_name": "CCLCMsg_Diagnostic_t", - "vtable_address": 6447799432, + "vtable_address": 6447803544, "methods": [ - 6442900880, - 6442694608, - 6442694608, - 6442913072, - 6442913152 + 6442900960, + 6442695056, + 6442695056, + 6442913152, + 6442913232 ], "bases": [ { @@ -7214,7 +7220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189400, + "complete_object_locator": 6448193624, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -7223,25 +7229,25 @@ }, { "type_name": "CCLCMsg_Diagnostic_t", - "vtable_address": 6447799480, + "vtable_address": 6447803592, "methods": [ - 6442936748, - 6444851872, - 6442846864, - 6443917216, + 6442936828, + 6444852176, + 6442847312, + 6443917504, 6442590368, - 6444851920, - 6444849504, - 6443918992, + 6444852224, + 6444849808, + 6443919280, 6442600000, - 6443917904, - 6442600384, - 6443918704, - 6444853136, - 6444854608, - 6443805552, - 6443919792, - 6443919296 + 6443918192, + 6442600400, + 6443918992, + 6444853440, + 6444854912, + 6443805840, + 6443920080, + 6443919584 ], "bases": [ { @@ -7317,7 +7323,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189440, + "complete_object_locator": 6448193664, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -7326,25 +7332,25 @@ }, { "type_name": "CCLCMsg_HltvFixupOperatorTick", - "vtable_address": 6447978952, + "vtable_address": 6447983240, "methods": [ - 6443875552, - 6444851872, - 6443283392, - 6444005120, + 6443875840, + 6444852176, + 6443283584, + 6444005408, 6442590368, - 6444851920, - 6444849504, - 6444007040, + 6444852224, + 6444849808, + 6444007328, 6442600000, - 6444005360, - 6442600384, - 6444006464, - 6444853136, - 6444854608, - 6443805552, - 6444008304, - 6444007584 + 6444005648, + 6442600400, + 6444006752, + 6444853440, + 6444854912, + 6443805840, + 6444008592, + 6444007872 ], "bases": [ { @@ -7378,7 +7384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251128, + "complete_object_locator": 6448255456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7387,25 +7393,25 @@ }, { "type_name": "CCLCMsg_HltvReplay", - "vtable_address": 6447979096, + "vtable_address": 6447983384, "methods": [ - 6443875248, - 6444851872, - 6443283376, - 6444003104, + 6443875536, + 6444852176, + 6443283568, + 6444003392, 6442590368, - 6444851920, - 6444849504, - 6444004160, + 6444852224, + 6444849808, + 6444004448, 6442600000, - 6444003152, - 6442600384, - 6444003760, - 6444853136, - 6444854608, - 6443805552, - 6444004416, - 6444004288 + 6444003440, + 6442600400, + 6444004048, + 6444853440, + 6444854912, + 6443805840, + 6444004704, + 6444004576 ], "bases": [ { @@ -7439,7 +7445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254064, + "complete_object_locator": 6448258224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7448,25 +7454,39 @@ }, { "type_name": "CCLCMsg_ListenEvents", - "vtable_address": 6447969496, + "vtable_address": 6447973960, "methods": [ - 6443864144, - 6444851872, - 6443862272, - 6443829440, + 6443864432, + 6444852176, + 6443862560, + 6443829728, 6442590368, - 6444851920, - 6444849504, - 6443885152, - 6442825136, - 6443884576, - 6442600384, - 6443884992, - 6444853136, - 6444854608, - 6443829424, - 6443885248, - 6443885232 + 6444852224, + 6444849808, + 6443885440, + 6442825584, + 6443884864, + 6442600400, + 6443885280, + 6444853440, + 6444854912, + 6443829712, + 6443885536, + 6443885520, + 6444850480, + 6443842528, + 6444850480, + 6443990240, + 6444850480, + 6443886896, + 6444850480, + 6444003024, + 6444850480, + 6443834976, + 6444850480, + 6443842528, + 6444850480, + 6443842528 ], "bases": [ { @@ -7500,7 +7520,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251904, + "complete_object_locator": 6448256184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7509,25 +7529,25 @@ }, { "type_name": "CCLCMsg_LoadingProgress", - "vtable_address": 6447950192, + "vtable_address": 6447954480, "methods": [ - 6443864480, - 6444851872, - 6442846624, - 6443886880, + 6443864768, + 6444852176, + 6442847072, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, + 6443887200, + 6442600400, 6443887584, - 6443887520 + 6444853440, + 6444854912, + 6443805840, + 6443887872, + 6443887808 ], "bases": [ { @@ -7561,7 +7581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249360, + "complete_object_locator": 6448253560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7570,25 +7590,25 @@ }, { "type_name": "CCLCMsg_LoadingProgress_t", - "vtable_address": 6447800632, + "vtable_address": 6447804744, "methods": [ - 6442936700, - 6444851872, - 6442846624, - 6443886880, + 6442936780, + 6444852176, + 6442847072, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, + 6443887200, + 6442600400, 6443887584, - 6443887520 + 6444853440, + 6444854912, + 6443805840, + 6443887872, + 6443887808 ], "bases": [ { @@ -7664,7 +7684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189800, + "complete_object_locator": 6448194024, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -7673,13 +7693,13 @@ }, { "type_name": "CCLCMsg_LoadingProgress_t", - "vtable_address": 6447801112, + "vtable_address": 6447805224, "methods": [ - 6442852992, - 6442694608, - 6442694608, - 6442912512, - 6442912592 + 6442853440, + 6442695056, + 6442695056, + 6442912592, + 6442912672 ], "bases": [ { @@ -7755,7 +7775,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189840, + "complete_object_locator": 6448194064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -7764,25 +7784,25 @@ }, { "type_name": "CCLCMsg_Move", - "vtable_address": 6447950336, + "vtable_address": 6447954624, "methods": [ - 6443863472, - 6444851872, - 6442846608, - 6443841344, + 6443863760, + 6444852176, + 6442847056, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443878240, - 6442600384, - 6443878720, - 6444853136, - 6444854608, - 6443805552, - 6443879072, - 6443879056 + 6443878528, + 6442600400, + 6443879008, + 6444853440, + 6444854912, + 6443805840, + 6443879360, + 6443879344 ], "bases": [ { @@ -7816,7 +7836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254752, + "complete_object_locator": 6448258776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -7825,25 +7845,25 @@ }, { "type_name": "CCLCMsg_Move_t", - "vtable_address": 6447800248, + "vtable_address": 6447804360, "methods": [ - 6442936676, - 6444851872, - 6442846608, - 6443841344, + 6442936756, + 6444852176, + 6442847056, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443878240, - 6442600384, - 6443878720, - 6444853136, - 6444854608, - 6443805552, - 6443879072, - 6443879056 + 6443878528, + 6442600400, + 6443879008, + 6444853440, + 6444854912, + 6443805840, + 6443879360, + 6443879344 ], "bases": [ { @@ -7919,7 +7939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190000, + "complete_object_locator": 6448194224, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -7928,13 +7948,13 @@ }, { "type_name": "CCLCMsg_Move_t", - "vtable_address": 6447800584, + "vtable_address": 6447804696, "methods": [ - 6442872000, - 6442694608, - 6442694608, - 6442912144, - 6442912224 + 6442872448, + 6442695056, + 6442695056, + 6442912224, + 6442912304 ], "bases": [ { @@ -8010,7 +8030,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190120, + "complete_object_locator": 6448194344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -8019,25 +8039,25 @@ }, { "type_name": "CCLCMsg_RconServerDetails", - "vtable_address": 6447979240, + "vtable_address": 6447983528, "methods": [ - 6443865376, - 6444851872, - 6443283360, - 6443834080, + 6443865664, + 6444852176, + 6443283552, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443889360, - 6443889344 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443889648, + 6443889632 ], "bases": [ { @@ -8071,7 +8091,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252400, + "complete_object_locator": 6448256696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8080,25 +8100,25 @@ }, { "type_name": "CCLCMsg_RequestPause", - "vtable_address": 6447979528, + "vtable_address": 6447983672, "methods": [ - 6443865072, - 6444851872, - 6443283344, - 6443883488, + 6443865360, + 6444852176, + 6443283536, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443889088, + 6444852224, + 6444849808, + 6443889376, 6442600000, - 6443888512, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443889200, - 6443889184 + 6443888800, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443889488, + 6443889472 ], "bases": [ { @@ -8132,7 +8152,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254328, + "complete_object_locator": 6448258624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8141,25 +8161,25 @@ }, { "type_name": "CCLCMsg_RequestPause_t", - "vtable_address": 6448050920, + "vtable_address": 6448056528, "methods": [ - 6443337312, - 6444851872, - 6443283344, - 6443883488, + 6443337504, + 6444852176, + 6443283536, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443889088, + 6444852224, + 6444849808, + 6443889376, 6442600000, - 6443888512, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443889200, - 6443889184 + 6443888800, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443889488, + 6443889472 ], "bases": [ { @@ -8235,7 +8255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275192, + "complete_object_locator": 6448279344, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -8244,13 +8264,13 @@ }, { "type_name": "CCLCMsg_RequestPause_t", - "vtable_address": 6448051104, + "vtable_address": 6448056672, "methods": [ - 6443324304, - 6442694608, - 6442694608, - 6443325568, - 6443325648 + 6443324496, + 6442695056, + 6442695056, + 6443325760, + 6443325840 ], "bases": [ { @@ -8326,7 +8346,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275312, + "complete_object_locator": 6448279264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -8335,25 +8355,25 @@ }, { "type_name": "CCLCMsg_RespondCvarValue", - "vtable_address": 6447982864, + "vtable_address": 6447987008, "methods": [ - 6443864304, - 6444851872, - 6442954752, - 6443885312, + 6443864592, + 6444852176, + 6442954832, + 6443885600, 6442590368, - 6444851920, - 6444849504, - 6443886400, + 6444852224, + 6444849808, + 6443886688, 6442600000, - 6443885424, - 6442600384, - 6443886032, - 6444853136, - 6444854608, - 6443805552, - 6443886816, - 6443886592 + 6443885712, + 6442600400, + 6443886320, + 6444853440, + 6444854912, + 6443805840, + 6443887104, + 6443886880 ], "bases": [ { @@ -8387,7 +8407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254184, + "complete_object_locator": 6448258704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8396,25 +8416,25 @@ }, { "type_name": "CCLCMsg_RespondCvarValue_t", - "vtable_address": 6447827336, + "vtable_address": 6447831848, "methods": [ - 6443126952, - 6444851872, - 6442954752, - 6443885312, + 6443127144, + 6444852176, + 6442954832, + 6443885600, 6442590368, - 6444851920, - 6444849504, - 6443886400, + 6444852224, + 6444849808, + 6443886688, 6442600000, - 6443885424, - 6442600384, - 6443886032, - 6444853136, - 6444854608, - 6443805552, - 6443886816, - 6443886592 + 6443885712, + 6442600400, + 6443886320, + 6444853440, + 6444854912, + 6443805840, + 6443887104, + 6443886880 ], "bases": [ { @@ -8490,7 +8510,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207808, + "complete_object_locator": 6448211872, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -8499,13 +8519,13 @@ }, { "type_name": "CCLCMsg_RespondCvarValue_t", - "vtable_address": 6447827480, + "vtable_address": 6447831992, "methods": [ - 6443026576, - 6442694608, - 6442694608, - 6443048464, - 6443048544 + 6443026768, + 6442695056, + 6442695056, + 6443048656, + 6443048736 ], "bases": [ { @@ -8581,7 +8601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207768, + "complete_object_locator": 6448212032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -8590,25 +8610,25 @@ }, { "type_name": "CCLCMsg_ServerStatus", - "vtable_address": 6447982576, + "vtable_address": 6447986864, "methods": [ - 6443864928, - 6444851872, - 6442954784, - 6443887808, + 6443865216, + 6444852176, + 6442954864, + 6443888096, 6442590368, - 6444851920, - 6444849504, - 6443888352, + 6444852224, + 6444849808, + 6443888640, 6442600000, - 6443887840, - 6442600384, - 6443888240, - 6444853136, - 6444854608, - 6443805552, - 6443888448, - 6443888384 + 6443888128, + 6442600400, + 6443888528, + 6444853440, + 6444854912, + 6443805840, + 6443888736, + 6443888672 ], "bases": [ { @@ -8642,7 +8662,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252976, + "complete_object_locator": 6448257144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8651,13 +8671,25 @@ }, { "type_name": "CCLCMsg_ServerStatus_t", - "vtable_address": 6447826760, + "vtable_address": 6447830888, "methods": [ - 6443029600, - 6442694608, - 6442694608, - 6443048896, - 6443048976 + 6443126748, + 6444852176, + 6442954864, + 6443888096, + 6442590368, + 6444852224, + 6444849808, + 6443888640, + 6442600000, + 6443888128, + 6442600400, + 6443888528, + 6444853440, + 6444854912, + 6443805840, + 6443888736, + 6443888672 ], "bases": [ { @@ -8733,8 +8765,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207568, - "offset": 0, + "complete_object_locator": 6448211672, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -8742,25 +8774,13 @@ }, { "type_name": "CCLCMsg_ServerStatus_t", - "vtable_address": 6447827000, + "vtable_address": 6447831224, "methods": [ - 6443126556, - 6444851872, - 6442954784, - 6443887808, - 6442590368, - 6444851920, - 6444849504, - 6443888352, - 6442600000, - 6443887840, - 6442600384, - 6443888240, - 6444853136, - 6444854608, - 6443805552, - 6443888448, - 6443888384 + 6443029792, + 6442695056, + 6442695056, + 6443049088, + 6443049168 ], "bases": [ { @@ -8836,8 +8856,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207608, - "offset": 48, + "complete_object_locator": 6448211832, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -8845,25 +8865,25 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect", - "vtable_address": 6447982720, + "vtable_address": 6447987152, "methods": [ - 6443864624, - 6444851872, - 6442954768, - 6443834080, + 6443864912, + 6444852176, + 6442954848, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443887664, - 6443887648 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443887952, + 6443887936 ], "bases": [ { @@ -8897,7 +8917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255848, + "complete_object_locator": 6448260120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -8906,25 +8926,25 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect_t", - "vtable_address": 6447827528, + "vtable_address": 6447831032, "methods": [ - 6443126628, - 6444851872, - 6442954768, - 6443834080, + 6443126820, + 6444852176, + 6442954848, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443887664, - 6443887648 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443887952, + 6443887936 ], "bases": [ { @@ -9000,7 +9020,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207328, + "complete_object_locator": 6448211592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -9009,13 +9029,13 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect_t", - "vtable_address": 6447827672, + "vtable_address": 6447831176, "methods": [ - 6443027632, - 6442694608, - 6442694608, - 6443049200, - 6443049280 + 6443027824, + 6442695056, + 6442695056, + 6443049392, + 6443049472 ], "bases": [ { @@ -9091,7 +9111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207368, + "complete_object_locator": 6448211632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -9100,25 +9120,25 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect", - "vtable_address": 6447979384, + "vtable_address": 6447983816, "methods": [ - 6443864784, - 6444851872, - 6443283328, - 6443886880, + 6443865072, + 6444852176, + 6443283520, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, - 6443887744, - 6443887728 + 6443887200, + 6442600400, + 6443887584, + 6444853440, + 6444854912, + 6443805840, + 6443888032, + 6443888016 ], "bases": [ { @@ -9152,7 +9172,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252440, + "complete_object_locator": 6448256736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9161,13 +9181,13 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect_t", - "vtable_address": 6448069824, + "vtable_address": 6448073336, "methods": [ - 6443324480, - 6442694608, - 6442694608, - 6443325264, - 6443325344 + 6443324672, + 6442695056, + 6442695056, + 6443325456, + 6443325536 ], "bases": [ { @@ -9243,7 +9263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448287184, + "complete_object_locator": 6448291384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -9252,25 +9272,25 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect_t", - "vtable_address": 6448069872, + "vtable_address": 6448073384, "methods": [ - 6443337300, - 6444851872, - 6443283328, - 6443886880, + 6443337492, + 6444852176, + 6443283520, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, - 6443887744, - 6443887728 + 6443887200, + 6442600400, + 6443887584, + 6444853440, + 6444854912, + 6443805840, + 6443888032, + 6443888016 ], "bases": [ { @@ -9346,7 +9366,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448287224, + "complete_object_locator": 6448291424, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -9355,25 +9375,25 @@ }, { "type_name": "CCLCMsg_VoiceData", - "vtable_address": 6447979672, + "vtable_address": 6447983960, "methods": [ - 6443863808, - 6444851872, - 6443283312, - 6443882112, + 6443864096, + 6444852176, + 6443283504, + 6443882400, 6442590368, - 6444851920, - 6444849504, - 6443883072, + 6444852224, + 6444849808, + 6443883360, 6442600000, - 6443882304, - 6442600384, - 6443882816, - 6444853136, - 6444854608, - 6443805552, - 6443883424, - 6443883216 + 6443882592, + 6442600400, + 6443883104, + 6444853440, + 6444854912, + 6443805840, + 6443883712, + 6443883504 ], "bases": [ { @@ -9407,7 +9427,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254560, + "complete_object_locator": 6448258816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9416,12 +9436,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447774880, + "vtable_address": 6447778992, "methods": [ - 6442801072, - 6442801504, - 6442692480, - 6442801424 + 6442801520, + 6442801952, + 6442692928, + 6442801872 ], "bases": [ { @@ -9455,7 +9475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178272, + "complete_object_locator": 6448182496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9464,12 +9484,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447774920, + "vtable_address": 6447779032, "methods": [ - 6442801072, - 6442801504, - 6442688240, - 6442801264 + 6442801520, + 6442801952, + 6442688688, + 6442801712 ], "bases": [ { @@ -9503,7 +9523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178232, + "complete_object_locator": 6448182456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9512,12 +9532,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447774960, + "vtable_address": 6447779072, "methods": [ - 6442801072, - 6442801504, - 6442801088, - 6442801344 + 6442801520, + 6442801952, + 6442801536, + 6442801792 ], "bases": [ { @@ -9551,7 +9571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178312, + "complete_object_locator": 6448182536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9560,12 +9580,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447774760, + "vtable_address": 6447778872, "methods": [ - 6442801072, - 6442801504, + 6442801520, + 6442801952, 6442592912, - 6442801184 + 6442801632 ], "bases": [ { @@ -9599,7 +9619,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178152, + "complete_object_locator": 6448182376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9608,12 +9628,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447774800, + "vtable_address": 6447778912, "methods": [ - 6442801072, - 6442801504, - 6442692480, - 6442801424 + 6442801520, + 6442801952, + 6442692928, + 6442801872 ], "bases": [ { @@ -9647,7 +9667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178072, + "complete_object_locator": 6448182296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9656,12 +9676,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447774840, + "vtable_address": 6447778952, "methods": [ - 6442801072, + 6442801520, + 6442801952, 6442801504, - 6442801056, - 6442801104 + 6442801552 ], "bases": [ { @@ -9695,7 +9715,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178032, + "complete_object_locator": 6448182256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9704,12 +9724,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447884032, + "vtable_address": 6447888072, "methods": [ - 6442801072, - 6442801504, + 6442801520, + 6442801952, 6442592912, - 6442801184 + 6442801632 ], "bases": [ { @@ -9743,7 +9763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228784, + "complete_object_locator": 6448233080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9752,12 +9772,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447884112, + "vtable_address": 6447888152, "methods": [ - 6442801072, - 6442801504, - 6443516112, - 6443516208 + 6442801520, + 6442801952, + 6443516304, + 6443516400 ], "bases": [ { @@ -9791,7 +9811,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228944, + "complete_object_locator": 6448232960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9800,12 +9820,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447884192, + "vtable_address": 6447888232, "methods": [ - 6442801072, - 6442801504, + 6442801520, + 6442801952, 6442592912, - 6442801184 + 6442801632 ], "bases": [ { @@ -9839,7 +9859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228984, + "complete_object_locator": 6448233000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9848,12 +9868,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447884152, + "vtable_address": 6447888192, "methods": [ - 6442801072, - 6442801504, - 6442694208, - 6443516128 + 6442801520, + 6442801952, + 6442694656, + 6443516320 ], "bases": [ { @@ -9887,7 +9907,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228904, + "complete_object_locator": 6448233200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9896,12 +9916,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6447884072, + "vtable_address": 6447888112, "methods": [ - 6442801072, + 6442801520, + 6442801952, 6442801504, - 6442801056, - 6442801104 + 6442801552 ], "bases": [ { @@ -9935,7 +9955,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228744, + "complete_object_locator": 6448233040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9944,12 +9964,12 @@ }, { "type_name": "CCallbackImpl<128>", - "vtable_address": 6447775000, + "vtable_address": 6447779112, "methods": [ - 6442801072, - 6446722668, - 6442801088, - 6442801344 + 6442801520, + 6446722972, + 6442801536, + 6442801792 ], "bases": [ { @@ -9969,7 +9989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178192, + "complete_object_locator": 6448182416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -9978,12 +9998,12 @@ }, { "type_name": "CCallbackImpl<12>", - "vtable_address": 6447775120, + "vtable_address": 6447779232, "methods": [ - 6442801072, - 6446722668, - 6442688240, - 6442801264 + 6442801520, + 6446722972, + 6442688688, + 6442801712 ], "bases": [ { @@ -10003,7 +10023,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178112, + "complete_object_locator": 6448182336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10012,12 +10032,12 @@ }, { "type_name": "CCallbackImpl<16>", - "vtable_address": 6447775040, + "vtable_address": 6447779152, "methods": [ - 6442801072, - 6446722668, - 6442692480, - 6442801424 + 6442801520, + 6446722972, + 6442692928, + 6442801872 ], "bases": [ { @@ -10037,7 +10057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448178352, + "complete_object_locator": 6448182576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10046,12 +10066,12 @@ }, { "type_name": "CCallbackImpl<1>", - "vtable_address": 6447775080, + "vtable_address": 6447779192, "methods": [ - 6442801072, - 6446722668, + 6442801520, + 6446722972, 6442592912, - 6442801184 + 6442801632 ], "bases": [ { @@ -10071,7 +10091,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448177952, + "complete_object_locator": 6448182176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10080,12 +10100,12 @@ }, { "type_name": "CCallbackImpl<20>", - "vtable_address": 6447775160, + "vtable_address": 6447779272, "methods": [ - 6442801072, - 6446722668, - 6442801056, - 6442801104 + 6442801520, + 6446722972, + 6442801504, + 6442801552 ], "bases": [ { @@ -10105,7 +10125,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448177992, + "complete_object_locator": 6448182216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10114,12 +10134,12 @@ }, { "type_name": "CCallbackImpl<24>", - "vtable_address": 6448031416, + "vtable_address": 6448035576, "methods": [ - 6442801072, - 6446722668, - 6444223664, - 6444203120 + 6442801520, + 6446722972, + 6444223952, + 6444203408 ], "bases": [ { @@ -10139,7 +10159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448265416, + "complete_object_locator": 6448269568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10148,12 +10168,12 @@ }, { "type_name": "CCallbackImpl<4>", - "vtable_address": 6447884232, + "vtable_address": 6447888272, "methods": [ - 6442801072, - 6446722668, - 6442694208, - 6443516128 + 6442801520, + 6446722972, + 6442694656, + 6443516320 ], "bases": [ { @@ -10173,7 +10193,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228824, + "complete_object_locator": 6448233120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10182,12 +10202,12 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 6447884272, + "vtable_address": 6447888312, "methods": [ - 6442801072, - 6446722668, - 6443516112, - 6443516208 + 6442801520, + 6446722972, + 6443516304, + 6443516400 ], "bases": [ { @@ -10207,7 +10227,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228864, + "complete_object_locator": 6448233160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10216,14 +10236,14 @@ }, { "type_name": "CChangelevelGameClientPrerequisite", - "vtable_address": 6448052848, + "vtable_address": 6448057304, "methods": [ - 6444352416, - 6442845840, - 6442845856, - 6444352384, - 6444352368, - 6442845888 + 6444352704, + 6442846288, + 6442846304, + 6444352672, + 6444352656, + 6442846336 ], "bases": [ { @@ -10243,7 +10263,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274912, + "complete_object_locator": 6448279504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10252,15 +10272,15 @@ }, { "type_name": "CClientFrame", - "vtable_address": 6447775568, + "vtable_address": 6447779680, "methods": [ - 6442802048, + 6442802496, 6442590368 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448178472, + "complete_object_locator": 6448182696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10269,14 +10289,14 @@ }, { "type_name": "CClientFrameManager", - "vtable_address": 6447804168, + "vtable_address": 6447808280, "methods": [ - 6442846304 + 6442846752 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448190800, + "complete_object_locator": 6448195024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10285,37 +10305,37 @@ }, { "type_name": "CClientOnlyServerConfig", - "vtable_address": 6448078752, + "vtable_address": 6448082784, "methods": [ 6442590368, + 6442600400, 6442600384, - 6442600368, 6442592912, + 6442600400, + 6442600400, 6442600384, - 6442600384, - 6442600368, - 6442693056, - 6443567808, + 6442693504, + 6443568000, 6442590368, - 6442696624, - 6444550288, + 6442697072, + 6444550576, 6442592912, - 6444550320, + 6444550608, 6442592912, - 6442949136, + 6442949216, 6442590368, - 6442600384, - 6444550352, + 6442600400, + 6444550640, 6442590368, - 6442600384, - 6442600464, - 6442600464, - 6442600464, - 6442960048, - 6442600464, - 6442600464, + 6442600400, + 6442600368, + 6442600368, + 6442600368, + 6442960128, + 6442600368, + 6442600368, 6442590368, - 6442600384 + 6442600400 ], "bases": [ { @@ -10377,7 +10397,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294512, + "complete_object_locator": 6448298888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10386,13 +10406,13 @@ }, { "type_name": "CColorizedLoggingListener", - "vtable_address": 6447131736, + "vtable_address": 6447135832, "methods": [ - 6445504720, - 6445504688, - 6442600384, - 6442600384, - 6442600384 + 6445505024, + 6445504992, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -10426,7 +10446,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448138528, + "complete_object_locator": 6448142752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -10435,9 +10455,9 @@ }, { "type_name": "CCompressedResourceManifestRefCounted", - "vtable_address": 6447837592, + "vtable_address": 6447841688, "methods": [ - 6443160448 + 6443160640 ], "bases": [ { @@ -10485,7 +10505,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211992, + "complete_object_locator": 6448216336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -10494,9 +10514,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6447872344, + "vtable_address": 6447876448, "methods": [ - 6443377840 + 6443378032 ], "bases": [ { @@ -10558,7 +10578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448225584, + "complete_object_locator": 6448229800, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -10567,9 +10587,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6447872360, + "vtable_address": 6447876464, "methods": [ - 6443377808 + 6443378000 ], "bases": [ { @@ -10631,7 +10651,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448225624, + "complete_object_locator": 6448229840, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -10640,9 +10660,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448025776, + "vtable_address": 6448029912, "methods": [ - 6444200768 + 6444201088 ], "bases": [ { @@ -10704,8 +10724,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263600, - "offset": 8, + "complete_object_locator": 6448267592, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -10713,9 +10733,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448025792, + "vtable_address": 6448029928, "methods": [ - 6444200800 + 6444201056 ], "bases": [ { @@ -10777,8 +10797,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263440, - "offset": 0, + "complete_object_locator": 6448267632, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -10786,9 +10806,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448033112, + "vtable_address": 6448037752, "methods": [ - 6444200768 + 6444201088 ], "bases": [ { @@ -10850,8 +10870,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267720, - "offset": 8, + "complete_object_locator": 6448271912, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -10859,9 +10879,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448033448, + "vtable_address": 6448037768, "methods": [ - 6444200800 + 6444201056 ], "bases": [ { @@ -10923,8 +10943,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267680, - "offset": 0, + "complete_object_locator": 6448271872, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -10932,9 +10952,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448044192, + "vtable_address": 6448048488, "methods": [ - 6444200768 + 6444201056 ], "bases": [ { @@ -10996,7 +11016,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269808, + "complete_object_locator": 6448274040, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -11005,9 +11025,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448044208, + "vtable_address": 6448048504, "methods": [ - 6444200800 + 6444201088 ], "bases": [ { @@ -11069,7 +11089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269848, + "complete_object_locator": 6448273960, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -11078,9 +11098,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6447876376, + "vtable_address": 6447880440, "methods": [ - 6443377808 + 6443378032 ], "bases": [ { @@ -11142,8 +11162,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448226192, - "offset": 8, + "complete_object_locator": 6448230368, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -11151,9 +11171,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6447876392, + "vtable_address": 6447880456, "methods": [ - 6443377840 + 6443378000 ], "bases": [ { @@ -11215,8 +11235,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448226152, - "offset": 0, + "complete_object_locator": 6448230408, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -11224,9 +11244,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448044952, + "vtable_address": 6448049432, "methods": [ - 6443377808 + 6443378000 ], "bases": [ { @@ -11288,7 +11308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448271464, + "complete_object_locator": 6448275640, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -11297,9 +11317,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448044968, + "vtable_address": 6448049448, "methods": [ - 6443377840 + 6443378032 ], "bases": [ { @@ -11361,7 +11381,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448271504, + "complete_object_locator": 6448275680, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -11370,9 +11390,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448051152, + "vtable_address": 6448055400, "methods": [ - 6444200800 + 6444201056 ], "bases": [ { @@ -11434,8 +11454,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275352, - "offset": 0, + "complete_object_locator": 6448279544, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -11443,9 +11463,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448051688, + "vtable_address": 6448055416, "methods": [ - 6444200768 + 6444201088 ], "bases": [ { @@ -11507,8 +11527,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275592, - "offset": 8, + "complete_object_locator": 6448279584, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -11516,9 +11536,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448055376, + "vtable_address": 6448059384, "methods": [ - 6444200768 + 6444201088 ], "bases": [ { @@ -11580,8 +11600,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448276968, - "offset": 8, + "complete_object_locator": 6448281272, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -11589,9 +11609,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448055392, + "vtable_address": 6448059672, "methods": [ - 6444200800 + 6444201056 ], "bases": [ { @@ -11653,8 +11673,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448277008, - "offset": 0, + "complete_object_locator": 6448281312, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -11662,9 +11682,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448055728, + "vtable_address": 6448060008, "methods": [ - 6444200800 + 6444201088 ], "bases": [ { @@ -11726,7 +11746,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448279104, + "complete_object_locator": 6448283344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -11735,9 +11755,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448055744, + "vtable_address": 6448060024, "methods": [ - 6444200768 + 6444201056 ], "bases": [ { @@ -11799,7 +11819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448279144, + "complete_object_locator": 6448283384, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -11808,9 +11828,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448061320, + "vtable_address": 6448065616, "methods": [ - 6444200800 + 6444201056 ], "bases": [ { @@ -11872,8 +11892,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448282240, - "offset": 0, + "complete_object_locator": 6448286576, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -11881,9 +11901,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448061336, + "vtable_address": 6448065936, "methods": [ - 6444200768 + 6444201088 ], "bases": [ { @@ -11945,8 +11965,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448282280, - "offset": 8, + "complete_object_locator": 6448286536, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -11954,9 +11974,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448114464, + "vtable_address": 6448118704, "methods": [ - 6444200800 + 6444201088 ], "bases": [ { @@ -12018,7 +12038,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303816, + "complete_object_locator": 6448308024, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -12027,9 +12047,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448114480, + "vtable_address": 6448118720, "methods": [ - 6444200768 + 6444201056 ], "bases": [ { @@ -12091,7 +12111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303856, + "complete_object_locator": 6448308064, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -12100,9 +12120,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448062152, + "vtable_address": 6448066448, "methods": [ - 6444200800 + 6444201088 ], "bases": [ { @@ -12164,7 +12184,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283608, + "complete_object_locator": 6448287704, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -12173,9 +12193,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448062168, + "vtable_address": 6448066464, "methods": [ - 6444200768 + 6444201056 ], "bases": [ { @@ -12237,7 +12257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283448, + "complete_object_locator": 6448287744, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -12246,9 +12266,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448066424, + "vtable_address": 6448070704, "methods": [ - 6443377840 + 6443378032 ], "bases": [ { @@ -12310,7 +12330,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448285256, + "complete_object_locator": 6448289568, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -12319,9 +12339,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448066440, + "vtable_address": 6448070720, "methods": [ - 6443377808 + 6443378000 ], "bases": [ { @@ -12383,7 +12403,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448285296, + "complete_object_locator": 6448289528, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -12392,9 +12412,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448069048, + "vtable_address": 6448073880, "methods": [ - 6444200768 + 6444201088 ], "bases": [ { @@ -12456,8 +12476,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448287144, - "offset": 8, + "complete_object_locator": 6448291120, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -12465,9 +12485,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448069416, + "vtable_address": 6448073896, "methods": [ - 6444200800 + 6444201056 ], "bases": [ { @@ -12529,8 +12549,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448287104, - "offset": 0, + "complete_object_locator": 6448291160, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -12538,9 +12558,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448071672, + "vtable_address": 6448076240, "methods": [ - 6444200768 + 6444201056 ], "bases": [ { @@ -12602,7 +12622,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448288512, + "complete_object_locator": 6448292912, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -12611,9 +12631,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448071688, + "vtable_address": 6448076256, "methods": [ - 6444200800 + 6444201088 ], "bases": [ { @@ -12675,7 +12695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448288552, + "complete_object_locator": 6448292952, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -12684,9 +12704,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448074760, + "vtable_address": 6448079048, "methods": [ - 6444200800 + 6444201056 ], "bases": [ { @@ -12748,8 +12768,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291616, - "offset": 0, + "complete_object_locator": 6448295952, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -12757,9 +12777,9 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6448074984, + "vtable_address": 6448079064, "methods": [ - 6444200768 + 6444201088 ], "bases": [ { @@ -12821,8 +12841,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291496, - "offset": 8, + "complete_object_locator": 6448295992, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -12830,14 +12850,14 @@ }, { "type_name": "CConnectGameClientPrerequisite", - "vtable_address": 6448052552, + "vtable_address": 6448056824, "methods": [ - 6444354448, - 6442845840, - 6442845856, - 6444354544, - 6444354528, - 6444354960 + 6444354736, + 6442846288, + 6442846304, + 6444354832, + 6444354816, + 6444355248 ], "bases": [ { @@ -12857,7 +12877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274752, + "complete_object_locator": 6448278952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12866,14 +12886,14 @@ }, { "type_name": "CConnectRelayPrerequisite", - "vtable_address": 6447937456, + "vtable_address": 6447941664, "methods": [ - 6443794528, - 6442845840, - 6442845856, - 6443794192, - 6443794176, - 6442845888 + 6443794800, + 6442846288, + 6442846304, + 6443794464, + 6443794448, + 6442846336 ], "bases": [ { @@ -12893,7 +12913,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246352, + "complete_object_locator": 6448250576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12902,9 +12922,9 @@ }, { "type_name": "CConsoleProcessorForTestScripts", - "vtable_address": 6448079152, + "vtable_address": 6448083264, "methods": [ - 6444550448 + 6444550736 ], "bases": [ { @@ -12924,7 +12944,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294432, + "complete_object_locator": 6448298928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12933,14 +12953,14 @@ }, { "type_name": "CCreateGameClientPrerequisite", - "vtable_address": 6448052608, + "vtable_address": 6448057056, "methods": [ + 6444354736, + 6442846288, + 6442846304, + 6444354464, 6444354448, - 6442845840, - 6442845856, - 6444354176, - 6444354160, - 6442845888 + 6442846336 ], "bases": [ { @@ -12960,7 +12980,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274712, + "complete_object_locator": 6448278992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -12969,14 +12989,14 @@ }, { "type_name": "CDebugVisualizerAbsTime", - "vtable_address": 6447889280, + "vtable_address": 6447893312, "methods": [ - 6443532400, - 6443532336, - 6443532352, - 6443532384, - 6442600384, - 6442600464 + 6443532592, + 6443532528, + 6443532544, + 6443532576, + 6442600400, + 6442600368 ], "bases": [ { @@ -12996,7 +13016,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230584, + "complete_object_locator": 6448234800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13005,17 +13025,17 @@ }, { "type_name": "CDebugVisualizerMgr", - "vtable_address": 6448075904, + "vtable_address": 6448080200, "methods": [ - 6442846528, - 6444531696, - 6444532032, - 6444532176, - 6444532256, - 6444532384, - 6444532656, - 6444532768, - 6444532576 + 6442846976, + 6444531984, + 6444532320, + 6444532464, + 6444532544, + 6444532672, + 6444532944, + 6444533056, + 6444532864 ], "bases": [ { @@ -13035,7 +13055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291840, + "complete_object_locator": 6448296176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13044,27 +13064,27 @@ }, { "type_name": "CDefaultClientConfig", - "vtable_address": 6448078992, + "vtable_address": 6448083280, "methods": [ 6442590368, + 6442600400, 6442600384, - 6442600368, 6442592912, + 6442600400, + 6442600400, 6442600384, - 6442600384, - 6442600368, - 6442693056, - 6443567808, + 6442693504, + 6443568000, 6442590368, - 6442696624, + 6442697072, 6442592912, - 6444549184, - 6444550256, + 6444549472, + 6444550544, 6442590368, - 6442600464, + 6442600368, 6442590368, - 6444550272, - 6442600384 + 6444550560, + 6442600400 ], "bases": [ { @@ -13112,7 +13132,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294792, + "complete_object_locator": 6448299208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13121,37 +13141,37 @@ }, { "type_name": "CDefaultServerConfig", - "vtable_address": 6448078512, + "vtable_address": 6448083024, "methods": [ 6442590368, + 6442600400, 6442600384, - 6442600368, 6442592912, + 6442600400, + 6442600400, 6442600384, - 6442600384, - 6442600368, - 6442693056, - 6443567808, + 6442693504, + 6443568000, 6442590368, - 6442696624, - 6444550288, + 6442697072, + 6444550576, 6442592912, - 6444550320, + 6444550608, 6442592912, - 6442949136, + 6442949216, 6442590368, - 6442600384, - 6444550352, + 6442600400, + 6444550640, 6442590368, - 6442600384, - 6442600464, - 6442600464, - 6442600464, - 6442960048, - 6442600464, - 6442600464, + 6442600400, + 6442600368, + 6442600368, + 6442600368, + 6442960128, + 6442600368, + 6442600368, 6442590368, - 6442600384 + 6442600400 ], "bases": [ { @@ -13199,7 +13219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294712, + "complete_object_locator": 6448299168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13208,10 +13228,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447926656, + "vtable_address": 6447930640, "methods": [ - 6443743952, - 6443764304 + 6443744224, + 6443764576 ], "bases": [ { @@ -13231,7 +13251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241312, + "complete_object_locator": 6448245656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13240,10 +13260,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447925336, + "vtable_address": 6447929600, "methods": [ - 6443236992, - 6443739056 + 6443237184, + 6443739328 ], "bases": [ { @@ -13263,7 +13283,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237688, + "complete_object_locator": 6448241912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13272,10 +13292,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447836688, + "vtable_address": 6447840760, "methods": [ - 6443238560, - 6443238544 + 6443238752, + 6443238736 ], "bases": [ { @@ -13295,7 +13315,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211552, + "complete_object_locator": 6448215816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13304,10 +13324,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447836640, + "vtable_address": 6447840784, "methods": [ - 6443236992, - 6443238512 + 6443237184, + 6443238704 ], "bases": [ { @@ -13327,7 +13347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211592, + "complete_object_locator": 6448215736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13336,10 +13356,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447836664, + "vtable_address": 6447840808, "methods": [ - 6443236992, - 6443238528 + 6443237184, + 6443238720 ], "bases": [ { @@ -13359,7 +13379,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211512, + "complete_object_locator": 6448215776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13368,10 +13388,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447914536, + "vtable_address": 6447918600, "methods": [ - 6443280128, - 6443676192 + 6443280320, + 6443676352 ], "bases": [ { @@ -13391,7 +13411,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236504, + "complete_object_locator": 6448240728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13400,10 +13420,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447857520, + "vtable_address": 6447861608, "methods": [ - 6443280128, - 6443279760 + 6443280320, + 6443279952 ], "bases": [ { @@ -13423,7 +13443,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217752, + "complete_object_locator": 6448221928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13432,10 +13452,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447857568, + "vtable_address": 6447861656, "methods": [ - 6443280128, - 6443279792 + 6443280320, + 6443279984 ], "bases": [ { @@ -13455,7 +13475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217672, + "complete_object_locator": 6448221968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13464,10 +13484,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447857496, + "vtable_address": 6447861584, "methods": [ - 6443280128, - 6443279776 + 6443280320, + 6443279968 ], "bases": [ { @@ -13487,7 +13507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217712, + "complete_object_locator": 6448221888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13496,10 +13516,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864824, + "vtable_address": 6447868864, "methods": [ - 6443327872, - 6443327376 + 6443328064, + 6443327568 ], "bases": [ { @@ -13519,7 +13539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222256, + "complete_object_locator": 6448226592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13528,10 +13548,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864920, + "vtable_address": 6447869104, "methods": [ - 6443327184, - 6443327024 + 6443327376, + 6443327216 ], "bases": [ { @@ -13551,7 +13571,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222376, + "complete_object_locator": 6448226712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13560,10 +13580,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864872, + "vtable_address": 6447868912, "methods": [ - 6443327504, - 6443327296 + 6443327696, + 6443327488 ], "bases": [ { @@ -13583,7 +13603,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222176, + "complete_object_locator": 6448226472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13592,10 +13612,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864848, + "vtable_address": 6447868888, "methods": [ - 6443327408, - 6443327280 + 6443327600, + 6443327472 ], "bases": [ { @@ -13615,7 +13635,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222216, + "complete_object_locator": 6448226392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13624,10 +13644,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864776, + "vtable_address": 6447868936, "methods": [ - 6443327600, - 6443327312 + 6443327792, + 6443327504 ], "bases": [ { @@ -13647,7 +13667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222336, + "complete_object_locator": 6448226432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13656,10 +13676,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864968, + "vtable_address": 6447869008, "methods": [ - 6443280128, - 6443326752 + 6443280320, + 6443326944 ], "bases": [ { @@ -13679,7 +13699,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222536, + "complete_object_locator": 6448226552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13688,10 +13708,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864896, + "vtable_address": 6447869080, "methods": [ - 6443280128, - 6443327104 + 6443280320, + 6443327296 ], "bases": [ { @@ -13711,7 +13731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222576, + "complete_object_locator": 6448226672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13720,10 +13740,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864800, + "vtable_address": 6447868960, "methods": [ - 6443327696, - 6443327360 + 6443327888, + 6443327552 ], "bases": [ { @@ -13743,7 +13763,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222296, + "complete_object_locator": 6448226632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13752,10 +13772,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864992, + "vtable_address": 6447869032, "methods": [ - 6443280128, - 6443326832 + 6443280320, + 6443327024 ], "bases": [ { @@ -13775,7 +13795,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222456, + "complete_object_locator": 6448226792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13784,10 +13804,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447865016, + "vtable_address": 6447869056, "methods": [ - 6443280128, - 6443326800 + 6443280320, + 6443326992 ], "bases": [ { @@ -13807,7 +13827,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222416, + "complete_object_locator": 6448226752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13816,10 +13836,10 @@ }, { "type_name": "CDelayedCall2", - "vtable_address": 6447864944, + "vtable_address": 6447868984, "methods": [ - 6443280128, - 6443326768 + 6443280320, + 6443326960 ], "bases": [ { @@ -13839,7 +13859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222496, + "complete_object_locator": 6448226512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13848,15 +13868,15 @@ }, { "type_name": "CDelayedCallBase", - "vtable_address": 6447926856, + "vtable_address": 6447931208, "methods": [ - 6443743952, - 6446722668 + 6443744224, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448241712, + "complete_object_locator": 6448245976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13865,15 +13885,15 @@ }, { "type_name": "CDelayedCallBase", - "vtable_address": 6447836776, + "vtable_address": 6447840896, "methods": [ - 6443236992, - 6446722668 + 6443237184, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448211632, + "complete_object_locator": 6448215856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13882,15 +13902,15 @@ }, { "type_name": "CDelayedCallBase", - "vtable_address": 6447857544, + "vtable_address": 6447861632, "methods": [ - 6443280128, - 6446722668 + 6443280320, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448218032, + "complete_object_locator": 6448222128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13899,9 +13919,9 @@ }, { "type_name": "CDeltaEntityHeaderReader", - "vtable_address": 6447891384, + "vtable_address": 6447895384, "methods": [ - 6443547600 + 6443547792 ], "bases": [ { @@ -13921,7 +13941,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230880, + "complete_object_locator": 6448235096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13930,9 +13950,9 @@ }, { "type_name": "CDeltaEntityHeaderWriter", - "vtable_address": 6447868280, + "vtable_address": 6447872408, "methods": [ - 6443345648 + 6443345840 ], "bases": [ { @@ -13952,7 +13972,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448224696, + "complete_object_locator": 6448228872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13961,9 +13981,9 @@ }, { "type_name": "CDeltaEntityNonTransmitHeaderReader", - "vtable_address": 6447830448, + "vtable_address": 6447834576, "methods": [ - 6442954432 + 6442954512 ], "bases": [ { @@ -13983,7 +14003,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208408, + "complete_object_locator": 6448212632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -13992,9 +14012,9 @@ }, { "type_name": "CDeltaEntityNonTransmitHeaderWriter", - "vtable_address": 6447868296, + "vtable_address": 6447872352, "methods": [ - 6443345872 + 6443346064 ], "bases": [ { @@ -14014,7 +14034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448224736, + "complete_object_locator": 6448228912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14023,25 +14043,25 @@ }, { "type_name": "CDemoAnimationData", - "vtable_address": 6447940152, + "vtable_address": 6447944440, "methods": [ - 6443817072, - 6444851872, + 6443817360, + 6444852176, 6442600208, - 6443844832, + 6443845120, 6442590368, - 6444851920, - 6444849504, - 6443846272, + 6444852224, + 6444849808, + 6443846560, 6442600000, - 6443844912, - 6442600384, - 6443845728, - 6444853136, - 6444854608, - 6443805552, - 6443846720, - 6443846496 + 6443845200, + 6442600400, + 6443846016, + 6444853440, + 6444854912, + 6443805840, + 6443847008, + 6443846784 ], "bases": [ { @@ -14075,7 +14095,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247488, + "complete_object_locator": 6448251688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14084,25 +14104,25 @@ }, { "type_name": "CDemoAnimationHeader", - "vtable_address": 6447940296, + "vtable_address": 6447944584, "methods": [ - 6443816912, - 6444851872, + 6443817200, + 6444852176, 6442600192, - 6443843440, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443844448, + 6444852224, + 6444849808, + 6443844736, 6442600000, - 6443843520, - 6442600384, - 6443844112, - 6444853136, - 6444854608, - 6443805552, - 6443844768, - 6443844592 + 6443843808, + 6442600400, + 6443844400, + 6444853440, + 6444854912, + 6443805840, + 6443845056, + 6443844880 ], "bases": [ { @@ -14136,7 +14156,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248264, + "complete_object_locator": 6448252320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14145,25 +14165,25 @@ }, { "type_name": "CDemoClassInfo", - "vtable_address": 6447940728, + "vtable_address": 6447945016, "methods": [ - 6443816384, - 6444851872, + 6443816672, + 6444852176, 6442600128, - 6443839984, + 6443840272, 6442590368, - 6444851920, - 6444849504, - 6443840768, + 6444852224, + 6444849808, + 6443841056, 6442600144, - 6443840208, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443841280, - 6443841088 + 6443840496, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443841568, + 6443841376 ], "bases": [ { @@ -14197,7 +14217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248384, + "complete_object_locator": 6448252576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14206,27 +14226,33 @@ }, { "type_name": "CDemoClassInfo_class_t", - "vtable_address": 6447944224, + "vtable_address": 6447948480, "methods": [ - 6443816208, - 6444851872, - 6443813760, - 6443838688, + 6443816496, + 6444852176, + 6443814048, + 6443838976, 6442590368, - 6444851920, - 6444849504, - 6443839536, + 6444852224, + 6444849808, + 6443839824, 6442600000, - 6443838784, - 6442600384, - 6443839280, - 6444853136, - 6444854608, - 6443805552, - 6443839904, - 6443839696, - 6444850176, - 6443825152 + 6443839072, + 6442600400, + 6443839568, + 6444853440, + 6444854912, + 6443805840, + 6443840192, + 6443839984, + 6444850480, + 6443829232, + 6444850480, + 6443849872, + 6444850480, + 6443825440, + 6444850480, + 6443840000 ], "bases": [ { @@ -14260,7 +14286,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248680, + "complete_object_locator": 6448252968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14269,25 +14295,25 @@ }, { "type_name": "CDemoConsoleCmd", - "vtable_address": 6447941016, + "vtable_address": 6447945304, "methods": [ - 6443815888, - 6444851872, + 6443816176, + 6444852176, 6442600096, - 6443834080, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443838544, - 6443838528 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443838832, + 6443838816 ], "bases": [ { @@ -14321,7 +14347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249040, + "complete_object_locator": 6448253384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14330,25 +14356,25 @@ }, { "type_name": "CDemoCustomData", - "vtable_address": 6447940584, + "vtable_address": 6447944872, "methods": [ - 6443816560, - 6444851872, + 6443816848, + 6444852176, 6442600160, - 6443841344, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443842384, - 6443842224 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443842672, + 6443842512 ], "bases": [ { @@ -14382,7 +14408,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247344, + "complete_object_locator": 6448251608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14391,25 +14417,25 @@ }, { "type_name": "CDemoCustomDataCallbacks", - "vtable_address": 6447940440, + "vtable_address": 6447944728, "methods": [ - 6443816720, - 6444851872, + 6443817008, + 6444852176, 6442600176, - 6443842448, + 6443842736, 6442590368, - 6444851920, - 6444849504, - 6443843120, + 6444852224, + 6444849808, + 6443843408, 6442600144, - 6443842496, - 6442600384, - 6443842864, - 6444853136, - 6444854608, - 6443839968, - 6443843376, - 6443843280 + 6443842784, + 6442600400, + 6443843152, + 6444853440, + 6444854912, + 6443840256, + 6443843664, + 6443843568 ], "bases": [ { @@ -14443,7 +14469,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247776, + "complete_object_locator": 6448251792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14452,16 +14478,15 @@ }, { "type_name": "CDemoFile", - "vtable_address": 6447762776, + "vtable_address": 6447766888, "methods": [ 6442614096, - 6444541776, - 6442600368, - 6444541824, + 6444542064, + 6444542112, 6442600592, 6442600496, 6442600512, - 6442600368, + 6442600384, 6442600624 ], "bases": [ @@ -14482,7 +14507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171392, + "complete_object_locator": 6448175616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14491,25 +14516,25 @@ }, { "type_name": "CDemoFileHeader", - "vtable_address": 6447941880, + "vtable_address": 6447946168, "methods": [ - 6443814000, - 6444851872, + 6443814288, + 6444852176, 6442599984, - 6443818464, - 6443822176, - 6444851920, - 6444849504, - 6443820912, + 6443818752, + 6443822464, + 6444852224, + 6444849808, + 6443821200, 6442600000, - 6443818784, - 6442600384, - 6443820016, - 6444853136, - 6444854608, - 6443805552, - 6443822192, - 6443821536 + 6443819072, + 6442600400, + 6443820304, + 6444853440, + 6444854912, + 6443805840, + 6443822480, + 6443821824 ], "bases": [ { @@ -14543,7 +14568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247976, + "complete_object_locator": 6448252240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14552,25 +14577,25 @@ }, { "type_name": "CDemoFileInfo", - "vtable_address": 6447941736, + "vtable_address": 6447946024, "methods": [ - 6443815168, - 6444851872, + 6443815456, + 6444852176, 6442600016, - 6443831904, + 6443832192, 6442590368, - 6444851920, - 6444849504, - 6443833088, + 6444852224, + 6444849808, + 6443833376, 6442600000, - 6443832096, - 6442600384, - 6443832720, - 6444853136, - 6444854608, - 6443805552, - 6443834016, - 6443833456 + 6443832384, + 6442600400, + 6443833008, + 6444853440, + 6444854912, + 6443805840, + 6443834304, + 6443833744 ], "bases": [ { @@ -14604,7 +14629,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248088, + "complete_object_locator": 6448252200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14613,25 +14638,25 @@ }, { "type_name": "CDemoFullPacket", - "vtable_address": 6447941448, + "vtable_address": 6447945736, "methods": [ - 6443815520, - 6444851872, + 6443815808, + 6444852176, 6442600048, - 6443834848, + 6443835136, 6442590368, - 6444851920, - 6444849504, - 6443835648, + 6444852224, + 6444849808, + 6443835936, 6442600000, - 6443834992, - 6442600384, - 6443835472, - 6444853136, - 6444854608, - 6443805552, - 6443836320, - 6443836000 + 6443835280, + 6442600400, + 6443835760, + 6444853440, + 6444854912, + 6443805840, + 6443836608, + 6443836288 ], "bases": [ { @@ -14665,7 +14690,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247384, + "complete_object_locator": 6448251568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -14674,25 +14699,25 @@ }, { "type_name": "CDemoMessagePB<0,class CDemoStop>", - "vtable_address": 6447760760, + "vtable_address": 6447764856, "methods": [ - 6442738084, - 6444851872, + 6442738532, + 6444852176, 6442600240, - 6444866016, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6443850832, - 6443850816 + 6443851120, + 6443851104 ], "bases": [ { @@ -14768,7 +14793,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172552, + "complete_object_locator": 6448176776, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -14777,14 +14802,14 @@ }, { "type_name": "CDemoMessagePB<0,class CDemoStop>", - "vtable_address": 6447760904, + "vtable_address": 6447765000, "methods": [ - 6442698768, - 6442600368, - 6442688880, - 6442689184, - 6442689440, - 6442686784 + 6442699216, + 6442600384, + 6442689328, + 6442689632, + 6442689888, + 6442687232 ], "bases": [ { @@ -14860,7 +14885,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172592, + "complete_object_locator": 6448176816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -14869,25 +14894,25 @@ }, { "type_name": "CDemoMessagePB<1,class CDemoFileHeader>", - "vtable_address": 6447757400, + "vtable_address": 6447761496, "methods": [ - 6442738048, - 6444851872, + 6442738496, + 6444852176, 6442599984, - 6443818464, - 6443822176, - 6444851920, - 6444849504, - 6443820912, + 6443818752, + 6443822464, + 6444852224, + 6444849808, + 6443821200, 6442600000, - 6443818784, - 6442600384, - 6443820016, - 6444853136, - 6444854608, - 6443805552, - 6443822192, - 6443821536 + 6443819072, + 6442600400, + 6443820304, + 6444853440, + 6444854912, + 6443805840, + 6443822480, + 6443821824 ], "bases": [ { @@ -14949,7 +14974,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172712, + "complete_object_locator": 6448176936, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -14958,14 +14983,14 @@ }, { "type_name": "CDemoMessagePB<1,class CDemoFileHeader>", - "vtable_address": 6447757544, + "vtable_address": 6447761640, "methods": [ - 6442700560, + 6442701008, 6442592912, - 6442697008, - 6442697312, - 6442697568, - 6442686784 + 6442697456, + 6442697760, + 6442698016, + 6442687232 ], "bases": [ { @@ -15027,7 +15052,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172752, + "complete_object_locator": 6448176976, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15036,25 +15061,25 @@ }, { "type_name": "CDemoMessagePB<10,class CDemoCustomData>", - "vtable_address": 6447759960, + "vtable_address": 6447764056, "methods": [ - 6442737892, - 6444851872, + 6442738340, + 6444852176, 6442600160, - 6443841344, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443842384, - 6443842224 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443842672, + 6443842512 ], "bases": [ { @@ -15116,7 +15141,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172072, + "complete_object_locator": 6448176296, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -15125,14 +15150,14 @@ }, { "type_name": "CDemoMessagePB<10,class CDemoCustomData>", - "vtable_address": 6447760104, + "vtable_address": 6447764200, "methods": [ - 6442699280, - 6442691904, - 6442691600, - 6442687392, - 6442687648, - 6442686784 + 6442699728, + 6442692352, + 6442692048, + 6442687840, + 6442688096, + 6442687232 ], "bases": [ { @@ -15194,7 +15219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172112, + "complete_object_locator": 6448176336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15203,25 +15228,25 @@ }, { "type_name": "CDemoMessagePB<11,class CDemoCustomDataCallbacks>", - "vtable_address": 6447760560, + "vtable_address": 6447764656, "methods": [ - 6442738144, - 6444851872, + 6442738592, + 6444852176, 6442600176, - 6443842448, + 6443842736, 6442590368, - 6444851920, - 6444849504, - 6443843120, + 6444852224, + 6444849808, + 6443843408, 6442600144, - 6443842496, - 6442600384, - 6443842864, - 6444853136, - 6444854608, - 6443839968, - 6443843376, - 6443843280 + 6443842784, + 6442600400, + 6443843152, + 6444853440, + 6444854912, + 6443840256, + 6443843664, + 6443843568 ], "bases": [ { @@ -15283,7 +15308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171992, + "complete_object_locator": 6448176216, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -15292,14 +15317,14 @@ }, { "type_name": "CDemoMessagePB<11,class CDemoCustomDataCallbacks>", - "vtable_address": 6447760704, + "vtable_address": 6447764800, "methods": [ - 6442698960, - 6442690032, - 6442689456, - 6442689760, - 6442690016, - 6442686784 + 6442699408, + 6442690480, + 6442689904, + 6442690208, + 6442690464, + 6442687232 ], "bases": [ { @@ -15361,7 +15386,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172032, + "complete_object_locator": 6448176256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15370,25 +15395,25 @@ }, { "type_name": "CDemoMessagePB<12,class CDemoUserCmd>", - "vtable_address": 6447761160, + "vtable_address": 6447765256, "methods": [ - 6442738024, - 6444851872, + 6442738472, + 6444852176, 6442600256, - 6443841344, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443850912, - 6443850896 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443851200, + 6443851184 ], "bases": [ { @@ -15450,7 +15475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171912, + "complete_object_locator": 6448176136, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -15459,14 +15484,14 @@ }, { "type_name": "CDemoMessagePB<12,class CDemoUserCmd>", - "vtable_address": 6447761304, + "vtable_address": 6447765400, "methods": [ - 6442698416, - 6442688240, - 6442687936, - 6442687392, - 6442687648, - 6442686784 + 6442698864, + 6442688688, + 6442688384, + 6442687840, + 6442688096, + 6442687232 ], "bases": [ { @@ -15528,7 +15553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171952, + "complete_object_locator": 6448176176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15537,25 +15562,25 @@ }, { "type_name": "CDemoMessagePB<13,class CDemoFullPacket>", - "vtable_address": 6447760960, + "vtable_address": 6447765056, "methods": [ - 6442738060, - 6444851872, + 6442738508, + 6444852176, 6442600048, - 6443834848, + 6443835136, 6442590368, - 6444851920, - 6444849504, - 6443835648, + 6444852224, + 6444849808, + 6443835936, 6442600000, - 6443834992, - 6442600384, - 6443835472, - 6444853136, - 6444854608, - 6443805552, - 6443836320, - 6443836000 + 6443835280, + 6442600400, + 6443835760, + 6444853440, + 6444854912, + 6443805840, + 6443836608, + 6443836288 ], "bases": [ { @@ -15617,7 +15642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171832, + "complete_object_locator": 6448176056, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -15626,14 +15651,14 @@ }, { "type_name": "CDemoMessagePB<13,class CDemoFullPacket>", - "vtable_address": 6447761104, + "vtable_address": 6447765200, "methods": [ - 6442698704, - 6442688560, - 6442688256, - 6442687392, - 6442687648, - 6442686784 + 6442699152, + 6442689008, + 6442688704, + 6442687840, + 6442688096, + 6442687232 ], "bases": [ { @@ -15695,7 +15720,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171872, + "complete_object_locator": 6448176096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15704,25 +15729,25 @@ }, { "type_name": "CDemoMessagePB<14,class CDemoSaveGame>", - "vtable_address": 6447761560, + "vtable_address": 6447765656, "methods": [ - 6442737844, - 6444851872, + 6442738292, + 6444852176, 6442600064, - 6443836384, + 6443836672, 6442590368, - 6444851920, - 6444849504, - 6443837312, + 6444852224, + 6444849808, + 6443837600, 6442600000, - 6443836464, - 6442600384, - 6443837008, - 6444853136, - 6444854608, - 6443805552, - 6443837904, - 6443837440 + 6443836752, + 6442600400, + 6443837296, + 6444853440, + 6444854912, + 6443805840, + 6443838192, + 6443837728 ], "bases": [ { @@ -15784,7 +15809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171752, + "complete_object_locator": 6448175976, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -15793,14 +15818,14 @@ }, { "type_name": "CDemoMessagePB<14,class CDemoSaveGame>", - "vtable_address": 6447761704, + "vtable_address": 6447765800, "methods": [ - 6442698288, - 6442686816, - 6442686224, - 6442686528, - 6442686800, - 6442686784 + 6442698736, + 6442687264, + 6442686672, + 6442686976, + 6442687248, + 6442687232 ], "bases": [ { @@ -15862,7 +15887,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171792, + "complete_object_locator": 6448176016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -15871,25 +15896,25 @@ }, { "type_name": "CDemoMessagePB<15,class CDemoSpawnGroups>", - "vtable_address": 6447757800, + "vtable_address": 6447761896, "methods": [ - 6442738012, - 6444851872, + 6442738460, + 6444852176, 6442600272, - 6443842448, + 6443842736, 6442590368, - 6444851920, - 6444849504, - 6443843120, + 6444852224, + 6444849808, + 6443843408, 6442600144, - 6443850976, - 6442600384, - 6443851344, - 6444853136, - 6444854608, - 6443839968, - 6443851616, - 6443851600 + 6443851264, + 6442600400, + 6443851632, + 6444853440, + 6444854912, + 6443840256, + 6443851904, + 6443851888 ], "bases": [ { @@ -15951,7 +15976,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171672, + "complete_object_locator": 6448175896, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -15960,14 +15985,14 @@ }, { "type_name": "CDemoMessagePB<15,class CDemoSpawnGroups>", - "vtable_address": 6447757944, + "vtable_address": 6447762040, "methods": [ - 6442700432, - 6442695920, - 6442695616, - 6442689760, - 6442690016, - 6442686784 + 6442700880, + 6442696368, + 6442696064, + 6442690208, + 6442690464, + 6442687232 ], "bases": [ { @@ -16029,7 +16054,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171712, + "complete_object_locator": 6448175936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16038,25 +16063,25 @@ }, { "type_name": "CDemoMessagePB<16,class CDemoAnimationData>", - "vtable_address": 6447759760, + "vtable_address": 6447763856, "methods": [ - 6442738120, - 6444851872, + 6442738568, + 6444852176, 6442600208, - 6443844832, + 6443845120, 6442590368, - 6444851920, - 6444849504, - 6443846272, + 6444852224, + 6444849808, + 6443846560, 6442600000, - 6443844912, - 6442600384, - 6443845728, - 6444853136, - 6444854608, - 6443805552, - 6443846720, - 6443846496 + 6443845200, + 6442600400, + 6443846016, + 6444853440, + 6444854912, + 6443805840, + 6443847008, + 6443846784 ], "bases": [ { @@ -16118,7 +16143,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171592, + "complete_object_locator": 6448175816, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -16127,14 +16152,14 @@ }, { "type_name": "CDemoMessagePB<16,class CDemoAnimationData>", - "vtable_address": 6447759904, + "vtable_address": 6447764000, "methods": [ - 6442699344, - 6442692480, - 6442692176, - 6442686528, - 6442686800, - 6442686784 + 6442699792, + 6442692928, + 6442692624, + 6442686976, + 6442687248, + 6442687232 ], "bases": [ { @@ -16196,7 +16221,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171632, + "complete_object_locator": 6448175856, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16205,25 +16230,25 @@ }, { "type_name": "CDemoMessagePB<17,class CDemoAnimationHeader>", - "vtable_address": 6447761360, + "vtable_address": 6447765456, "methods": [ - 6442737964, - 6444851872, + 6442738412, + 6444852176, 6442600192, - 6443843440, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443844448, + 6444852224, + 6444849808, + 6443844736, 6442600000, - 6443843520, - 6442600384, - 6443844112, - 6444853136, - 6444854608, - 6443805552, - 6443844768, - 6443844592 + 6443843808, + 6442600400, + 6443844400, + 6444853440, + 6444854912, + 6443805840, + 6443845056, + 6443844880 ], "bases": [ { @@ -16285,7 +16310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171512, + "complete_object_locator": 6448175736, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -16294,14 +16319,14 @@ }, { "type_name": "CDemoMessagePB<17,class CDemoAnimationHeader>", - "vtable_address": 6447761504, + "vtable_address": 6447765600, "methods": [ - 6442698352, - 6442687664, - 6442687088, - 6442687392, - 6442687648, - 6442686784 + 6442698800, + 6442688112, + 6442687536, + 6442687840, + 6442688096, + 6442687232 ], "bases": [ { @@ -16363,7 +16388,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171552, + "complete_object_locator": 6448175776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16372,14 +16397,14 @@ }, { "type_name": "CDemoMessagePB<18,class CDemoRecovery>", - "vtable_address": 6447899552, + "vtable_address": 6447903536, "methods": [ - 6443605312, - 6443605008, - 6443604704, - 6442687392, - 6442687648, - 6442686784 + 6443605504, + 6443605200, + 6443604896, + 6442687840, + 6442688096, + 6442687232 ], "bases": [ { @@ -16441,7 +16466,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448234240, + "complete_object_locator": 6448238464, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16450,25 +16475,25 @@ }, { "type_name": "CDemoMessagePB<18,class CDemoRecovery>", - "vtable_address": 6447899608, + "vtable_address": 6447903592, "methods": [ - 6443605372, - 6444851872, - 6443602208, - 6443852672, + 6443605564, + 6444852176, + 6443602400, + 6443852960, 6442590368, - 6444851920, - 6444849504, - 6443853424, + 6444852224, + 6444849808, + 6443853712, 6442600000, - 6443852800, - 6442600384, - 6443853264, - 6444853136, - 6444854608, - 6443805552, - 6443853936, - 6443853632 + 6443853088, + 6442600400, + 6443853552, + 6444853440, + 6444854912, + 6443805840, + 6443854224, + 6443853920 ], "bases": [ { @@ -16530,7 +16555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448234280, + "complete_object_locator": 6448238504, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -16539,25 +16564,25 @@ }, { "type_name": "CDemoMessagePB<2,class CDemoFileInfo>", - "vtable_address": 6447757600, + "vtable_address": 6447761696, "methods": [ - 6442737904, - 6444851872, + 6442738352, + 6444852176, 6442600016, - 6443831904, + 6443832192, 6442590368, - 6444851920, - 6444849504, - 6443833088, + 6444852224, + 6444849808, + 6443833376, 6442600000, - 6443832096, - 6442600384, - 6443832720, - 6444853136, - 6444854608, - 6443805552, - 6443834016, - 6443833456 + 6443832384, + 6442600400, + 6443833008, + 6444853440, + 6444854912, + 6443805840, + 6443834304, + 6443833744 ], "bases": [ { @@ -16619,7 +16644,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172632, + "complete_object_locator": 6448176856, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -16628,14 +16653,14 @@ }, { "type_name": "CDemoMessagePB<2,class CDemoFileInfo>", - "vtable_address": 6447757744, + "vtable_address": 6447761840, "methods": [ - 6442700496, - 6442696624, - 6442696320, - 6442689760, - 6442690016, - 6442686784 + 6442700944, + 6442697072, + 6442696768, + 6442690208, + 6442690464, + 6442687232 ], "bases": [ { @@ -16697,7 +16722,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172672, + "complete_object_locator": 6448176896, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16706,25 +16731,25 @@ }, { "type_name": "CDemoMessagePB<3,class CDemoSyncTick>", - "vtable_address": 6447760360, + "vtable_address": 6447764456, "methods": [ - 6442737868, - 6444851872, + 6442738316, + 6444852176, 6442600080, - 6444866016, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6443837984, - 6443837968 + 6443838272, + 6443838256 ], "bases": [ { @@ -16800,7 +16825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172472, + "complete_object_locator": 6448176696, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -16809,14 +16834,14 @@ }, { "type_name": "CDemoMessagePB<3,class CDemoSyncTick>", - "vtable_address": 6447760504, + "vtable_address": 6447764600, "methods": [ - 6442699024, - 6442690736, - 6442690432, - 6442689184, - 6442689440, - 6442686784 + 6442699472, + 6442691184, + 6442690880, + 6442689632, + 6442689888, + 6442687232 ], "bases": [ { @@ -16892,7 +16917,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172512, + "complete_object_locator": 6448176736, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -16901,25 +16926,25 @@ }, { "type_name": "CDemoMessagePB<4,class CDemoSendTables>", - "vtable_address": 6447759160, + "vtable_address": 6447763256, "methods": [ - 6442738036, - 6444851872, + 6442738484, + 6444852176, 6442600112, - 6443834080, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443838624, - 6443838608 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443838912, + 6443838896 ], "bases": [ { @@ -16981,7 +17006,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172392, + "complete_object_locator": 6448176616, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -16990,14 +17015,14 @@ }, { "type_name": "CDemoMessagePB<4,class CDemoSendTables>", - "vtable_address": 6447759304, + "vtable_address": 6447763400, "methods": [ - 6442699536, - 6442694208, - 6442693904, - 6442691056, - 6442691312, - 6442686784 + 6442699984, + 6442694656, + 6442694352, + 6442691504, + 6442691760, + 6442687232 ], "bases": [ { @@ -17059,7 +17084,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172432, + "complete_object_locator": 6448176656, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17068,25 +17093,25 @@ }, { "type_name": "CDemoMessagePB<5,class CDemoClassInfo>", - "vtable_address": 6447759360, + "vtable_address": 6447763456, "methods": [ - 6442737976, - 6444851872, + 6442738424, + 6444852176, 6442600128, - 6443839984, + 6443840272, 6442590368, - 6444851920, - 6444849504, - 6443840768, + 6444852224, + 6444849808, + 6443841056, 6442600144, - 6443840208, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443841280, - 6443841088 + 6443840496, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443841568, + 6443841376 ], "bases": [ { @@ -17148,7 +17173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172312, + "complete_object_locator": 6448176536, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -17157,14 +17182,14 @@ }, { "type_name": "CDemoMessagePB<5,class CDemoClassInfo>", - "vtable_address": 6447759504, + "vtable_address": 6447763600, "methods": [ - 6442699472, - 6442693632, - 6442693328, - 6442689760, - 6442690016, - 6442686784 + 6442699920, + 6442694080, + 6442693776, + 6442690208, + 6442690464, + 6442687232 ], "bases": [ { @@ -17226,7 +17251,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172352, + "complete_object_locator": 6448176576, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17235,25 +17260,25 @@ }, { "type_name": "CDemoMessagePB<6,class CDemoStringTables>", - "vtable_address": 6447759560, + "vtable_address": 6447763656, "methods": [ - 6442737856, - 6444851872, + 6442738304, + 6444852176, 6442600224, - 6443849952, + 6443850240, 6442590368, - 6444851920, - 6444849504, - 6443850576, + 6444852224, + 6444849808, + 6443850864, 6442600144, - 6443850160, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443850752, - 6443850736 + 6443850448, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443851040, + 6443851024 ], "bases": [ { @@ -17315,7 +17340,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172232, + "complete_object_locator": 6448176456, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -17324,14 +17349,14 @@ }, { "type_name": "CDemoMessagePB<6,class CDemoStringTables>", - "vtable_address": 6447759704, + "vtable_address": 6447763800, "methods": [ - 6442699408, - 6442693056, - 6442692752, - 6442689760, - 6442690016, - 6442686784 + 6442699856, + 6442693504, + 6442693200, + 6442690208, + 6442690464, + 6442687232 ], "bases": [ { @@ -17393,7 +17418,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172272, + "complete_object_locator": 6448176496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17402,25 +17427,25 @@ }, { "type_name": "CDemoMessagePB<7,class CDemoPacket>", - "vtable_address": 6447758000, + "vtable_address": 6447762096, "methods": [ - 6442737940, - 6444851872, + 6442738388, + 6444852176, 6442600032, - 6443834080, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443834144, - 6442600384, - 6443834496, - 6444853136, - 6444854608, - 6443805552, + 6443834432, + 6442600400, 6443834784, - 6443834672 + 6444853440, + 6444854912, + 6443805840, + 6443835072, + 6443834960 ], "bases": [ { @@ -17482,7 +17507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171432, + "complete_object_locator": 6448175656, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -17491,14 +17516,14 @@ }, { "type_name": "CDemoMessagePB<7,class CDemoPacket>", - "vtable_address": 6447758144, + "vtable_address": 6447762240, "methods": [ - 6442700368, - 6442695168, - 6442694864, - 6442691056, - 6442691312, - 6442686784 + 6442700816, + 6442695616, + 6442695312, + 6442691504, + 6442691760, + 6442687232 ], "bases": [ { @@ -17560,7 +17585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171472, + "complete_object_locator": 6448175696, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17569,25 +17594,25 @@ }, { "type_name": "CDemoMessagePB<9,class CDemoConsoleCmd>", - "vtable_address": 6447760160, + "vtable_address": 6447764256, "methods": [ - 6442738108, - 6444851872, + 6442738556, + 6444852176, 6442600096, - 6443834080, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443838544, - 6443838528 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443838832, + 6443838816 ], "bases": [ { @@ -17649,7 +17674,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172152, + "complete_object_locator": 6448176376, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -17658,14 +17683,14 @@ }, { "type_name": "CDemoMessagePB<9,class CDemoConsoleCmd>", - "vtable_address": 6447760304, + "vtable_address": 6447764400, "methods": [ - 6442699216, - 6442691328, - 6442690752, - 6442691056, - 6442691312, - 6442686784 + 6442699664, + 6442691776, + 6442691200, + 6442691504, + 6442691760, + 6442687232 ], "bases": [ { @@ -17727,7 +17752,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448172192, + "complete_object_locator": 6448176416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17736,25 +17761,25 @@ }, { "type_name": "CDemoPacket", - "vtable_address": 6447941592, + "vtable_address": 6447945880, "methods": [ - 6443815360, - 6444851872, + 6443815648, + 6444852176, 6442600032, - 6443834080, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443834144, - 6442600384, - 6443834496, - 6444853136, - 6444854608, - 6443805552, + 6443834432, + 6442600400, 6443834784, - 6443834672 + 6444853440, + 6444854912, + 6443805840, + 6443835072, + 6443834960 ], "bases": [ { @@ -17788,7 +17813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249120, + "complete_object_locator": 6448253344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -17797,13 +17822,13 @@ }, { "type_name": "CDemoPlaybackLoop", - "vtable_address": 6447763264, + "vtable_address": 6447767368, "methods": [ - 6442684320, - 6442684848, - 6442684480, - 6442685200, - 6442684816 + 6442684768, + 6442685296, + 6442684928, + 6442685648, + 6442685264 ], "bases": [ { @@ -17823,7 +17848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171072, + "complete_object_locator": 6448175296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -17832,9 +17857,9 @@ }, { "type_name": "CDemoPlayer", - "vtable_address": 6447762216, + "vtable_address": 6447766312, "methods": [ - 6442650160 + 6442650608 ], "bases": [ { @@ -17868,7 +17893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171192, + "complete_object_locator": 6448175416, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -17877,50 +17902,52 @@ }, { "type_name": "CDemoPlayer", - "vtable_address": 6447762232, + "vtable_address": 6447766328, "methods": [ - 6442638960, + 6442639408, 6442600768, - 6442671280, - 6442671296, - 6442671296, - 6442671344, + 6442671728, + 6442671744, + 6442671744, + 6442671792, 6442619920, - 6442671360, - 6442651088, - 6442663648, - 6442641824, - 6442641840, - 6442638288, - 6442671232, - 6442638256, + 6442671808, + 6442651536, + 6442664096, + 6442642272, + 6442642288, + 6442638736, + 6442671680, + 6442638704, 6442619888, - 6442600464, - 6442671408, - 6442671392, - 6442669840, + 6442600368, + 6442671856, + 6442671840, + 6442670288, 6442619952, - 6442670144, + 6442670592, 6442618720, 6442629568, - 6442600464, - 6442684288, - 6442684304, - 6442671424, - 6442672416, - 6442672432, + 6442590368, + 6442635488, + 6442600368, + 6442684736, + 6442684752, + 6442671872, + 6442672864, + 6442672880, 6442619872, - 6442641696, - 6442641808, + 6442642144, + 6442642256, 6442627216, 6442600816, 6442600784, 6442600800, 6442599968, - 6442669808, - 6442669824, - 6442665344, - 6442665440 + 6442670256, + 6442670272, + 6442665792, + 6442665888 ], "bases": [ { @@ -17954,7 +17981,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171232, + "complete_object_locator": 6448175456, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -17963,7 +17990,7 @@ }, { "type_name": "CDemoRecorder", - "vtable_address": 6447762576, + "vtable_address": 6447766688, "methods": [ 6442607888 ], @@ -18013,7 +18040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171112, + "complete_object_locator": 6448175336, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -18022,7 +18049,7 @@ }, { "type_name": "CDemoRecorder", - "vtable_address": 6447762592, + "vtable_address": 6447766704, "methods": [ 6442615168, 6442615728, @@ -18036,7 +18063,7 @@ 6442618432, 6442618048, 6442609696, - 6442600384, + 6442600400, 6442603008, 6442604576, 6442605280, @@ -18093,7 +18120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171152, + "complete_object_locator": 6448175376, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -18102,25 +18129,25 @@ }, { "type_name": "CDemoRecovery", - "vtable_address": 6447939432, + "vtable_address": 6447943720, "methods": [ - 6443818256, - 6444851872, - 6443602208, - 6443852672, + 6443818544, + 6444852176, + 6443602400, + 6443852960, 6442590368, - 6444851920, - 6444849504, - 6443853424, + 6444852224, + 6444849808, + 6443853712, 6442600000, - 6443852800, - 6442600384, - 6443853264, - 6444853136, - 6444854608, - 6443805552, - 6443853936, - 6443853632 + 6443853088, + 6442600400, + 6443853552, + 6444853440, + 6444854912, + 6443805840, + 6443854224, + 6443853920 ], "bases": [ { @@ -18154,7 +18181,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247528, + "complete_object_locator": 6448251728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18163,27 +18190,25 @@ }, { "type_name": "CDemoRecovery_DemoInitialSpawnGroupEntry", - "vtable_address": 6447944824, + "vtable_address": 6447949128, "methods": [ - 6443818112, - 6444851872, - 6443813984, - 6443851680, + 6443818400, + 6444852176, + 6443814272, + 6443851968, 6442590368, - 6444851920, - 6444849504, - 6443852448, + 6444852224, + 6444849808, + 6443852736, 6442600000, - 6443851728, - 6442600384, - 6443852224, - 6444853136, - 6444854608, - 6443805552, - 6443852608, + 6443852016, + 6442600400, 6443852512, - 6444850176, - 6443849584 + 6444853440, + 6444854912, + 6443805840, + 6443852896, + 6443852800 ], "bases": [ { @@ -18217,7 +18242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248016, + "complete_object_locator": 6448252280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18226,25 +18251,25 @@ }, { "type_name": "CDemoSaveGame", - "vtable_address": 6447941304, + "vtable_address": 6447945592, "methods": [ - 6443815728, - 6444851872, + 6443816016, + 6444852176, 6442600064, - 6443836384, + 6443836672, 6442590368, - 6444851920, - 6444849504, - 6443837312, + 6444852224, + 6444849808, + 6443837600, 6442600000, - 6443836464, - 6442600384, - 6443837008, - 6444853136, - 6444854608, - 6443805552, - 6443837904, - 6443837440 + 6443836752, + 6442600400, + 6443837296, + 6444853440, + 6444854912, + 6443805840, + 6443838192, + 6443837728 ], "bases": [ { @@ -18278,7 +18303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249160, + "complete_object_locator": 6448253304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18287,25 +18312,25 @@ }, { "type_name": "CDemoSendTables", - "vtable_address": 6447940872, + "vtable_address": 6447945160, "methods": [ - 6443816048, - 6444851872, + 6443816336, + 6444852176, 6442600112, - 6443834080, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443838624, - 6443838608 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443838912, + 6443838896 ], "bases": [ { @@ -18339,7 +18364,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247816, + "complete_object_locator": 6448252040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18348,25 +18373,25 @@ }, { "type_name": "CDemoSpawnGroups", - "vtable_address": 6447939576, + "vtable_address": 6447943864, "methods": [ - 6443817952, - 6444851872, + 6443818240, + 6444852176, 6442600272, - 6443842448, + 6443842736, 6442590368, - 6444851920, - 6444849504, - 6443843120, + 6444852224, + 6444849808, + 6443843408, 6442600144, - 6443850976, - 6442600384, - 6443851344, - 6444853136, - 6444854608, - 6443839968, - 6443851616, - 6443851600 + 6443851264, + 6442600400, + 6443851632, + 6444853440, + 6444854912, + 6443840256, + 6443851904, + 6443851888 ], "bases": [ { @@ -18400,7 +18425,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247216, + "complete_object_locator": 6448251440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18409,25 +18434,25 @@ }, { "type_name": "CDemoStop", - "vtable_address": 6447939864, + "vtable_address": 6447944152, "methods": [ - 6443813616, - 6444851872, + 6443813904, + 6444852176, 6442600240, - 6444866016, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6443850832, - 6443850816 + 6443851120, + 6443851104 ], "bases": [ { @@ -18475,7 +18500,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247592, + "complete_object_locator": 6448251832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18484,17 +18509,16 @@ }, { "type_name": "CDemoStreamHttp", - "vtable_address": 6447904328, + "vtable_address": 6447908360, "methods": [ - 6443631360, - 6442600464, + 6443631520, 6442600368, - 6443631184, - 6442745104, - 6443631168, + 6443631344, + 6442745552, + 6443631328, 6442600512, - 6442600368, - 6442600368 + 6442600384, + 6442600384 ], "bases": [ { @@ -18514,7 +18538,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235856, + "complete_object_locator": 6448240080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18523,15 +18547,15 @@ }, { "type_name": "CDemoStreamHttp::CFragmentRequest", - "vtable_address": 6447904536, + "vtable_address": 6447908560, "methods": [ - 6443642752, - 6443642560, - 6443631200, - 6443644016, - 6443644400, - 6443631248, - 6443631296 + 6443642912, + 6443642720, + 6443631360, + 6443644176, + 6443644560, + 6443631408, + 6443631456 ], "bases": [ { @@ -18565,7 +18589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235736, + "complete_object_locator": 6448239960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18574,15 +18598,15 @@ }, { "type_name": "CDemoStreamHttp::CPendingRequest", - "vtable_address": 6447904248, + "vtable_address": 6447908296, "methods": [ - 6443642752, - 6443642560, - 6443631200, - 6446722668, - 6443641040, - 6446722668, - 6443631296 + 6443642912, + 6443642720, + 6443631360, + 6446722972, + 6443641200, + 6446722972, + 6443631456 ], "bases": [ { @@ -18602,7 +18626,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235896, + "complete_object_locator": 6448240120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18611,15 +18635,15 @@ }, { "type_name": "CDemoStreamHttp::CStartRequest", - "vtable_address": 6447904472, + "vtable_address": 6447908496, "methods": [ - 6443642752, - 6443642560, - 6443631200, - 6443641280, - 6443641040, - 6443631216, - 6443631296 + 6443642912, + 6443642720, + 6443631360, + 6443641440, + 6443641200, + 6443631376, + 6443631456 ], "bases": [ { @@ -18653,7 +18677,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235816, + "complete_object_locator": 6448240040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18662,15 +18686,15 @@ }, { "type_name": "CDemoStreamHttp::CSyncRequest", - "vtable_address": 6447904408, + "vtable_address": 6447908432, "methods": [ - 6443642752, - 6443642560, - 6443631200, - 6443638752, - 6443639552, - 6443638672, - 6443631296 + 6443642912, + 6443642720, + 6443631360, + 6443638912, + 6443639712, + 6443638832, + 6443631456 ], "bases": [ { @@ -18704,7 +18728,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235776, + "complete_object_locator": 6448240000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18713,25 +18737,25 @@ }, { "type_name": "CDemoStringTables", - "vtable_address": 6447940008, + "vtable_address": 6447944296, "methods": [ - 6443817616, - 6444851872, + 6443817904, + 6444852176, 6442600224, - 6443849952, + 6443850240, 6442590368, - 6444851920, - 6444849504, - 6443850576, + 6444852224, + 6444849808, + 6443850864, 6442600144, - 6443850160, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443850752, - 6443850736 + 6443850448, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443851040, + 6443851024 ], "bases": [ { @@ -18765,7 +18789,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248192, + "complete_object_locator": 6448252464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18774,25 +18798,25 @@ }, { "type_name": "CDemoStringTables_items_t", - "vtable_address": 6447945336, + "vtable_address": 6447949656, "methods": [ - 6443817232, - 6444851872, - 6443813776, - 6443846784, + 6443817520, + 6444852176, + 6443814064, + 6443847072, 6442590368, - 6444851920, - 6444849504, - 6443847424, + 6444852224, + 6444849808, + 6443847712, 6442600000, - 6443846880, - 6442600384, - 6443847264, - 6444853136, - 6444854608, - 6443805552, - 6443847760, - 6443847552 + 6443847168, + 6442600400, + 6443847552, + 6444853440, + 6444854912, + 6443805840, + 6443848048, + 6443847840 ], "bases": [ { @@ -18826,7 +18850,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247304, + "complete_object_locator": 6448251528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18835,25 +18859,29 @@ }, { "type_name": "CDemoStringTables_table_t", - "vtable_address": 6447945192, + "vtable_address": 6447949480, "methods": [ - 6443817408, - 6444851872, - 6443813792, - 6443847824, + 6443817696, + 6444852176, + 6443814080, + 6443848112, 6442590368, - 6444851920, - 6444849504, - 6443848992, + 6444852224, + 6444849808, + 6443849280, 6442600000, - 6443847920, - 6442600384, - 6443848640, - 6444853136, - 6444854608, - 6443805552, - 6443849888, - 6443849568 + 6443848208, + 6442600400, + 6443848928, + 6444853440, + 6444854912, + 6443805840, + 6443850176, + 6443849856, + 6444850480, + 6443834976, + 6444850480, + 6443841392 ], "bases": [ { @@ -18887,7 +18915,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247896, + "complete_object_locator": 6448252160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18896,25 +18924,25 @@ }, { "type_name": "CDemoSyncTick", - "vtable_address": 6447941160, + "vtable_address": 6447945448, "methods": [ - 6443813616, - 6444851872, + 6443813904, + 6444852176, 6442600080, - 6444866016, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6443837984, - 6443837968 + 6443838272, + 6443838256 ], "bases": [ { @@ -18962,7 +18990,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248968, + "complete_object_locator": 6448253008, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -18971,25 +18999,25 @@ }, { "type_name": "CDemoUserCmd", - "vtable_address": 6447939720, + "vtable_address": 6447944008, "methods": [ - 6443817792, - 6444851872, + 6443818080, + 6444852176, 6442600256, - 6443841344, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443850912, - 6443850896 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443851200, + 6443851184 ], "bases": [ { @@ -19023,7 +19051,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248344, + "complete_object_locator": 6448252536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19032,23 +19060,23 @@ }, { "type_name": "CDiskDemoBuffer", - "vtable_address": 6448076072, + "vtable_address": 6448080360, "methods": [ - 6444534544, - 6444534736, - 6444533520, - 6444533488, - 6444533568, - 6444533600, - 6444533632, - 6444533648, - 6444533664, - 6444533680, - 6444533312, - 6444533472, - 6444533696, + 6444534832, + 6444535024, + 6444533808, + 6444533776, + 6444533856, + 6444533888, + 6444533920, 6444533936, - 6442600384 + 6444533952, + 6444533968, + 6444533600, + 6444533760, + 6444533984, + 6444534224, + 6442600400 ], "bases": [ { @@ -19068,7 +19096,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448292072, + "complete_object_locator": 6448296288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19077,14 +19105,14 @@ }, { "type_name": "CDownloadAddonPrerequisite", - "vtable_address": 6447934200, + "vtable_address": 6447938544, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6443774928, - 6443774912, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6443775200, + 6443775184, + 6442846336 ], "bases": [ { @@ -19104,7 +19132,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448244552, + "complete_object_locator": 6448248736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19113,20 +19141,20 @@ }, { "type_name": "CEmptyEntityResourceManifest", - "vtable_address": 6448031456, + "vtable_address": 6448035784, "methods": [ - 6442600384, - 6442600384, - 6442600384, - 6444216144, - 6444216560, - 6444216576, - 6444202208, - 6444211088, - 6444211104, + 6442600400, + 6442600400, + 6442600400, + 6444216432, + 6444216848, + 6444216864, + 6444202496, + 6444211376, + 6444211392, 6442600144, - 6444216784, - 6444202176 + 6444217072, + 6444202464 ], "bases": [ { @@ -19160,7 +19188,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448265456, + "complete_object_locator": 6448269648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19169,11 +19197,11 @@ }, { "type_name": "CEngine2MinidumpCommentBuilder", - "vtable_address": 6448078312, + "vtable_address": 6448082584, "methods": [ - 6444596560, - 6446550549, - 6444596512 + 6444596848, + 6446550853, + 6444596800 ], "bases": [ { @@ -19193,7 +19221,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294832, + "complete_object_locator": 6448298688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19202,198 +19230,198 @@ }, { "type_name": "CEngineClient", - "vtable_address": 6447805968, + "vtable_address": 6447810080, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442949456, + 6442697072, + 6442949536, 6442600512, - 6442948640, - 6442948672, 6442948720, - 6442949808, - 6442949856, - 6442938448, - 6442945600, - 6442945920, - 6442938048, - 6442946048, + 6442948752, + 6442948800, + 6442949888, + 6442949936, + 6442938528, + 6442945680, + 6442946000, + 6442938128, 6442946128, - 6442938640, - 6442946240, - 6442946256, - 6442946368, - 6442946400, - 6442946432, - 6442947008, - 6442948160, - 6442948224, + 6442946208, + 6442938720, + 6442946320, + 6442946336, + 6442946448, + 6442946480, + 6442946512, + 6442947088, + 6442948240, 6442948304, - 6442948368, - 6442948480, - 6442948544, - 6442948576, - 6442948736, - 6442948784, - 6442949184, - 6442949216, + 6442948384, + 6442948448, + 6442948560, + 6442948624, + 6442948656, + 6442948816, + 6442948864, + 6442949264, 6442949296, 6442949376, - 6442949424, - 6442949248, - 6442946576, - 6442946560, - 6442947104, - 6442947152, - 6442948112, - 6442948144, - 6442950320, - 6442950448, - 6442950560, - 6442950688, - 6442950720, + 6442949456, + 6442949504, + 6442949328, + 6442946656, + 6442946640, + 6442947184, + 6442947232, + 6442948192, + 6442948224, + 6442950400, + 6442950528, + 6442950640, 6442950768, - 6442949136, - 6442947072, - 6442948816, - 6442948848, - 6442948944, - 6442949040, - 6442600368, - 6442949152, - 6442949872, - 6442949888, - 6442949408, - 6442939216, - 6442939152, - 6442949904, - 6442949920, - 6442949936, + 6442950800, + 6442950848, + 6442949216, + 6442947152, + 6442948896, + 6442948928, + 6442949024, + 6442949120, + 6442600384, + 6442949232, + 6442949952, 6442949968, + 6442949488, + 6442939296, + 6442939232, + 6442949984, 6442950000, - 6442939120, - 6442949520, - 6442949552, - 6442949584, - 6442949648, - 6442949696, - 6442949728, - 6442949616, - 6442949760, 6442950016, - 6442950144, - 6442938656, - 6442938672, - 6442938704, + 6442950048, + 6442950080, + 6442939200, + 6442949600, + 6442949632, + 6442949664, + 6442949728, + 6442949776, + 6442949808, + 6442949696, + 6442949840, + 6442950096, + 6442950224, 6442938736, - 6442938768, - 6442950272, - 6442948608, - 6442950288, - 6442950304, + 6442938752, + 6442938784, + 6442938816, + 6442938848, 6442950352, - 6442950400, - 6442950496, - 6442950528, - 6442950816, - 6442950992, - 6442600384, + 6442948688, + 6442950368, + 6442950384, + 6442950432, + 6442950480, + 6442950576, + 6442950608, + 6442950896, + 6442951072, + 6442600400, 6442600512, - 6442951248, - 6442951280, + 6442951328, + 6442951360, + 6442951392, + 6442951424, + 6442951264, + 6442951296, 6442951312, - 6442951344, - 6442951184, - 6442951216, - 6442951232, - 6442600368, 6442600384, - 6442951376, - 6442951520, - 6442948816, - 6442951648, - 6442952080, - 6442952416, - 6442938800, - 6442938832, + 6442600400, + 6442951456, + 6442951600, + 6442948896, + 6442951728, + 6442952160, + 6442952496, 6442938880, - 6442938944, - 6442938992, - 6442939008, - 6442939232, - 6442939552, - 6442940288, - 6442940336, - 6442940384, + 6442938912, + 6442938960, + 6442939024, + 6442939072, + 6442939088, + 6442939312, + 6442939632, + 6442940368, 6442940416, - 6442940448, - 6442940896, - 6442940960, - 6442941648, - 6442941744, - 6442941360, - 6442941328, - 6442940928, - 6442942000, - 6442939456, - 6442939472, - 6442939488, - 6442939504, - 6442939520, - 6442942544, - 6442942576, - 6442942608, + 6442940464, + 6442940496, + 6442940528, + 6442940976, + 6442941040, + 6442941728, + 6442941824, + 6442941440, + 6442941408, + 6442941008, + 6442942080, + 6442939536, + 6442939552, + 6442939568, + 6442939584, + 6442939600, + 6442942624, + 6442942656, 6442942688, - 6442942720, - 6442942736, 6442942768, - 6442942864, - 6442942960, - 6442943072, - 6442943120, - 6442943136, - 6442943936, - 6442944224, - 6442944256, - 6442944320, - 6442944368, - 6442944608, - 6442944672, - 6442944704, - 6442944736, - 6442944832, - 6442944944, - 6442945040, - 6442945136, - 6442945184, - 6442945248, - 6442945344, - 6442945408, - 6442949952, - 6442939072, - 6442945440, - 6442945456, + 6442942800, + 6442942816, + 6442942848, + 6442942944, + 6442943040, + 6442943152, + 6442943200, + 6442943216, + 6442944016, + 6442944304, + 6442944336, + 6442944400, + 6442944448, + 6442944688, + 6442944752, + 6442944784, + 6442944816, + 6442944912, + 6442945024, + 6442945120, + 6442945216, + 6442945264, + 6442945328, + 6442945424, 6442945488, - 6442945584, - 6442600384, - 6442600384, - 6442600384, - 6442947552, - 6442946224, - 6442946528, - 6442946592, - 6442946704, - 6442946864, - 6442946976 + 6442950032, + 6442939152, + 6442945520, + 6442945536, + 6442945568, + 6442945664, + 6442600400, + 6442600400, + 6442600400, + 6442947632, + 6442946304, + 6442946608, + 6442946672, + 6442946784, + 6442946944, + 6442947056 ], "bases": [ { @@ -19525,7 +19553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448192464, + "complete_object_locator": 6448196688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19534,13 +19562,13 @@ }, { "type_name": "CEngineConsoleLoggingListener", - "vtable_address": 6448078464, + "vtable_address": 6448082712, "methods": [ - 6444572000, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + 6444572288, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -19560,7 +19588,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294472, + "complete_object_locator": 6448298808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19569,23 +19597,23 @@ }, { "type_name": "CEngineGameUI", - "vtable_address": 6447931872, + "vtable_address": 6447936144, "methods": [ - 6443771440, - 6442792800, - 6442600368, - 6443771728, - 6443772016, + 6443771712, + 6442793248, 6442600384, - 6443772176, - 6442690736, - 6442792976, + 6443772000, + 6443772288, + 6442600400, + 6443772448, + 6442691184, + 6442793424, 6442590368, - 6442696624, - 6443771152, - 6443772192, - 6443772208, - 6443772384 + 6442697072, + 6443771424, + 6443772464, + 6443772480, + 6443772656 ], "bases": [ { @@ -19689,7 +19717,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448243080, + "complete_object_locator": 6448247352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19698,25 +19726,25 @@ }, { "type_name": "CEngineGotvSyncPacket", - "vtable_address": 6447948568, + "vtable_address": 6447952856, "methods": [ - 6443859152, - 6444851872, - 6443859136, - 6443859376, + 6443859440, + 6444852176, + 6443859424, + 6443859664, 6442590368, - 6444851920, - 6444849504, - 6443861328, + 6444852224, + 6444849808, + 6443861616, 6442600000, - 6443859440, - 6442600384, - 6443860496, - 6444853136, - 6444854608, - 6443805552, - 6443861824, - 6443861616 + 6443859728, + 6442600400, + 6443860784, + 6444853440, + 6444854912, + 6443805840, + 6443862112, + 6443861904 ], "bases": [ { @@ -19750,7 +19778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249232, + "complete_object_locator": 6448253456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19759,17 +19787,17 @@ }, { "type_name": "CEnginePVSManager", - "vtable_address": 6448114008, + "vtable_address": 6448118304, "methods": [ - 6444756464, - 6444756880, - 6444757456, - 6444757584, - 6444756448, - 6444758192, - 6444758208, - 6444758384, - 6443839968 + 6444756768, + 6444757184, + 6444757760, + 6444757888, + 6444756752, + 6444758496, + 6444758512, + 6444758688, + 6443840256 ], "bases": [ { @@ -19789,7 +19817,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303080, + "complete_object_locator": 6448307288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -19798,128 +19826,128 @@ }, { "type_name": "CEngineServer", - "vtable_address": 6447834704, + "vtable_address": 6447838832, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6443146512, - 6443146544, - 6442948640, - 6442948672, + 6442697072, + 6443146704, + 6443146736, 6442948720, - 6442949808, - 6442949856, - 6442938448, - 6443152704, + 6442948752, + 6442948800, + 6442949888, + 6442949936, + 6442938528, 6443152896, - 6442938048, - 6443152992, - 6443153072, - 6442938640, - 6442946240, - 6442946256, - 6442946368, - 6442946400, - 6442946432, - 6442947008, - 6443146576, - 6443146960, - 6443147024, - 6443147040, - 6443147136, - 6443150064, - 6443150144, + 6443153088, + 6442938128, + 6443153184, + 6443153264, + 6442938720, + 6442946320, + 6442946336, + 6442946448, + 6442946480, + 6442946512, + 6442947088, + 6443146768, + 6443147152, + 6443147216, + 6443147232, 6443147328, - 6443147424, - 6443148432, - 6443148496, - 6443148592, - 6443148400, - 6443148656, + 6443150256, + 6443150336, + 6443147520, + 6443147616, + 6443148624, 6443148688, - 6443150416, + 6443148784, + 6443148592, + 6443148848, + 6443148880, + 6443150608, + 6443148096, + 6442950400, + 6443149456, + 6443149664, + 6443150784, + 6443150192, + 6443148176, + 6443148560, + 6443148576, + 6443149872, + 6443149936, + 6443150016, + 6443147744, + 6443147808, + 6443147840, + 6443147968, + 6443148064, + 6443147872, 6443147904, - 6442950320, - 6443149264, - 6443149472, - 6443150592, - 6443150000, - 6443147984, - 6443148368, - 6443148384, - 6443149680, - 6443149744, - 6443149824, - 6443147552, - 6443147616, - 6443147648, 6443147776, - 6443147872, - 6443147680, - 6443147712, - 6443147584, - 6442951184, - 6442950272, - 6443151728, - 6442951216, - 6442951232, - 6443150224, - 6443151104, - 6443151040, - 6443151904, - 6443148080, - 6443147536, - 6442950288, - 6442950304, - 6443150672, - 6443151808, - 6443149584, - 6443147744, - 6443151568, - 6442938672, - 6443153136, - 6443151936, + 6442951264, + 6442950352, + 6443151920, + 6442951296, + 6442951312, + 6443150416, + 6443151296, + 6443151232, + 6443152096, + 6443148272, + 6443147728, + 6442950368, + 6442950384, + 6443150864, 6443152000, - 6443149632, - 6443152208, - 6443152320, + 6443149776, + 6443147936, + 6443151760, + 6442938752, + 6443153328, + 6443152128, + 6443152192, + 6443149824, + 6443152400, 6443152512, - 6443147216, - 6443147296, - 6443153216, - 6443153376, - 6443153248, - 6443153696, - 6443153760, - 6443153824, - 6443153936, - 6443154000, + 6443152704, + 6443147408, + 6443147488, + 6443153408, + 6443153568, + 6443153440, + 6443153888, + 6443153952, + 6443154016, + 6443154128, 6443154192, - 6443154256, - 6443154320, - 6443148224, - 6443148288, - 6443151136, - 6443151552, + 6443154384, 6443154448, - 6443154464, - 6443154704, - 6443154960, - 6443154992, - 6443154832, - 6443154576, - 6443155216, - 6443155264, - 6443155184 + 6443154512, + 6443148416, + 6443148480, + 6443151328, + 6443151744, + 6443154640, + 6443154656, + 6443154896, + 6443155152, + 6443155184, + 6443155024, + 6443154768, + 6443155408, + 6443155456, + 6443155376 ], "bases": [ { @@ -20051,7 +20079,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211128, + "complete_object_locator": 6448215352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20060,69 +20088,69 @@ }, { "type_name": "CEngineServiceMgr", - "vtable_address": 6448096744, + "vtable_address": 6448100944, "methods": [ - 6444605440, - 6442792800, - 6442600368, - 6444606096, - 6444606256, + 6444605744, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6444606800, - 6444607040, - 6444607232, - 6444608048, - 6444608384, - 6444609072, - 6444609200, - 6444606480, - 6444606496, - 6444606512, - 6444606528, + 6444606400, 6444606560, - 6444606592, - 6444606656, - 6444606624, - 6444609168, - 6444609184, + 6442600400, + 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, + 6444607104, + 6444607344, + 6444607536, + 6444608352, + 6444608688, 6444609376, - 6444606768, + 6444609504, 6444606784, - 6444609120, - 6444618688, - 6444620208, - 6444619072, - 6444619104, - 6444619136, - 6444619248, - 6444619312, - 6444622144, - 6444622160, - 6444622192, - 6444622320, - 6444622352, - 6444622432, - 6444622560, - 6444622688, - 6444623040, - 6444623168, - 6444623520, - 6444610752, - 6444611088, - 6444611104, - 6444611120, - 6444602944, - 6444609296, - 6444610496, - 6444610464, - 6442946240, - 6442946256, - 6442946368 + 6444606800, + 6444606816, + 6444606832, + 6444606864, + 6444606896, + 6444606960, + 6444606928, + 6444609472, + 6444609488, + 6444609680, + 6444607072, + 6444607088, + 6444609424, + 6444618992, + 6444620512, + 6444619376, + 6444619408, + 6444619440, + 6444619552, + 6444619616, + 6444622448, + 6444622464, + 6444622496, + 6444622624, + 6444622656, + 6444622736, + 6444622864, + 6444622992, + 6444623344, + 6444623472, + 6444623824, + 6444611056, + 6444611392, + 6444611408, + 6444611424, + 6444603248, + 6444609600, + 6444610800, + 6444610768, + 6442946320, + 6442946336, + 6442946448 ], "bases": [ { @@ -20268,7 +20296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448296704, + "complete_object_locator": 6448300944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -20277,10 +20305,10 @@ }, { "type_name": "CEngineServiceMgr", - "vtable_address": 6448097240, + "vtable_address": 6448101448, "methods": [ - 6444625688, - 6444610576 + 6444625992, + 6444610880 ], "bases": [ { @@ -20426,7 +20454,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448296744, + "complete_object_locator": 6448300904, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -20435,50 +20463,50 @@ }, { "type_name": "CEngineSoundServices", - "vtable_address": 6447888824, - "methods": [ - 6443532848, - 6443533200, - 6443533424, - 6443533456, - 6443533488, - 6443533552, - 6443533584, + "vtable_address": 6447892912, + "methods": [ + 6443533040, + 6443533392, 6443533616, - 6442600384, - 6442600384, - 6443533792, - 6443533824, - 6443533856, - 6443533888, - 6443533920, - 6443534176, - 6443534208, - 6443534240, - 6443534272, - 6443534080, - 6443533952, + 6443533648, + 6443533680, + 6443533744, + 6443533776, + 6443533808, + 6442600400, + 6442600400, 6443533984, 6443534016, - 6443533744, - 6443534304, + 6443534048, + 6443534080, + 6443534112, + 6443534368, + 6443534400, 6443534432, - 6443533648, - 6442600384, - 6443534816, + 6443534464, + 6443534272, + 6443534144, + 6443534176, + 6443534208, + 6443533936, + 6443534496, + 6443534624, + 6443533840, + 6442600400, + 6443535008, + 6443535136, + 6443535168, + 6443535216, + 6442600400, + 6443534896, 6443534944, 6443534976, - 6443535024, - 6442600384, - 6443534704, - 6443534752, - 6443534784, - 6442600384, + 6442600400, + 6443534528, + 6443534560, + 6443534304, 6443534336, - 6443534368, - 6443534112, - 6443534144, - 6443533680 + 6443533872 ], "bases": [ { @@ -20498,7 +20526,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230464, + "complete_object_locator": 6448234680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20507,14 +20535,14 @@ }, { "type_name": "CEngineSoundServicesDebugVisualizer", - "vtable_address": 6447888584, + "vtable_address": 6447892800, "methods": [ - 6443532400, - 6443532336, - 6443532352, - 6443532384, - 6442600384, - 6442600464 + 6443532592, + 6443532528, + 6443532544, + 6443532576, + 6442600400, + 6442600368 ], "bases": [ { @@ -20548,7 +20576,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230504, + "complete_object_locator": 6448234720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20557,14 +20585,14 @@ }, { "type_name": "CEngineSoundServicesDebugVisualizerRel", - "vtable_address": 6447889168, + "vtable_address": 6447892856, "methods": [ - 6443532576, - 6442600384, - 6442600384, - 6443532496, - 6442600384, - 6442600464 + 6443532768, + 6442600400, + 6442600400, + 6443532688, + 6442600400, + 6442600368 ], "bases": [ { @@ -20584,7 +20612,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230424, + "complete_object_locator": 6448234640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20593,14 +20621,14 @@ }, { "type_name": "CEngineWatchdogThread", - "vtable_address": 6448096680, + "vtable_address": 6448101472, "methods": [ - 6444605984, - 6446550555, - 6444605824, - 6446550561, - 6446550567, - 6446550573 + 6444606288, + 6446550859, + 6444606128, + 6446550865, + 6446550871, + 6446550877 ], "bases": [ { @@ -20620,7 +20648,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448296552, + "complete_object_locator": 6448300824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20629,9 +20657,9 @@ }, { "type_name": "CEntity2_EHandle_Restore", - "vtable_address": 6447149184, + "vtable_address": 6447153280, "methods": [ - 6445688016 + 6445688320 ], "bases": [ { @@ -20651,7 +20679,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448141008, + "complete_object_locator": 6448145232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20660,9 +20688,9 @@ }, { "type_name": "CEntity2_EHandle_Save", - "vtable_address": 6447149168, + "vtable_address": 6447153264, "methods": [ - 6445688256 + 6445688560 ], "bases": [ { @@ -20682,7 +20710,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448140880, + "complete_object_locator": 6448145104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20691,14 +20719,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6447148856, + "vtable_address": 6447152952, "methods": [ - 6445679200, - 6445679120, - 6445679152, - 6445679136, + 6445679504, + 6445679424, + 6445679456, + 6445679440, 6442590368, - 6442600384 + 6442600400 ], "bases": [ { @@ -20732,7 +20760,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448140584, + "complete_object_locator": 6448144808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20741,15 +20769,15 @@ }, { "type_name": "CEntityInfo", - "vtable_address": 6447868256, + "vtable_address": 6447872384, "methods": [ - 6443347008, - 6443346448 + 6443347200, + 6443346640 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448224656, + "complete_object_locator": 6448228992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20758,9 +20786,9 @@ }, { "type_name": "CEntityMETASpewFunctor", - "vtable_address": 6447883960, + "vtable_address": 6447887952, "methods": [ - 6443494464 + 6443491840 ], "bases": [ { @@ -20808,8 +20836,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448227928, - "offset": 8, + "complete_object_locator": 6448232264, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -20817,9 +20845,9 @@ }, { "type_name": "CEntityMETASpewFunctor", - "vtable_address": 6447883976, + "vtable_address": 6447888016, "methods": [ - 6443491648 + 6443494656 ], "bases": [ { @@ -20867,8 +20895,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448227968, - "offset": 0, + "complete_object_locator": 6448232224, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -20876,25 +20904,25 @@ }, { "type_name": "CEntityMsg", - "vtable_address": 6447995776, + "vtable_address": 6448001696, "methods": [ - 6444029440, - 6444851872, - 6444027984, - 6444040000, + 6444029728, + 6444852176, + 6444028272, + 6444040288, 6442590368, - 6444851920, - 6444849504, - 6444040208, + 6444852224, + 6444849808, + 6444040496, 6442600000, - 6443886912, - 6442600384, - 6444040032, - 6444853136, - 6444854608, - 6443805552, - 6444040272, - 6444040256 + 6443887200, + 6442600400, + 6444040320, + 6444853440, + 6444854912, + 6443805840, + 6444040560, + 6444040544 ], "bases": [ { @@ -20928,7 +20956,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256624, + "complete_object_locator": 6448260968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20937,10 +20965,10 @@ }, { "type_name": "CEntityReadInfo", - "vtable_address": 6447891360, + "vtable_address": 6447895360, "methods": [ - 6443549184, - 6443549424 + 6443549376, + 6443549616 ], "bases": [ { @@ -20960,7 +20988,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230840, + "complete_object_locator": 6448235056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -20969,14 +20997,14 @@ }, { "type_name": "CEntityReport", - "vtable_address": 6447893104, + "vtable_address": 6447897104, "methods": [ - 6443560704, - 6443560960, + 6443560896, 6443561152, - 6443561312, - 6443561472, - 6443561632 + 6443561344, + 6443561504, + 6443561664, + 6443561824 ], "bases": [ { @@ -20996,7 +21024,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448231760, + "complete_object_locator": 6448235816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21005,20 +21033,20 @@ }, { "type_name": "CEntityResourceManifest", - "vtable_address": 6448031272, - "methods": [ - 6444216112, - 6444216080, - 6444216048, - 6444216144, - 6444216560, - 6444216576, - 6444212080, - 6444211088, - 6444211104, + "vtable_address": 6448035680, + "methods": [ + 6444216400, + 6444216368, + 6444216336, + 6444216432, + 6444216848, + 6444216864, + 6444212368, + 6444211376, + 6444211392, 6442600144, - 6444216784, - 6444216800 + 6444217072, + 6444217088 ], "bases": [ { @@ -21038,7 +21066,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448265536, + "complete_object_locator": 6448269816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21047,10 +21075,10 @@ }, { "type_name": "CEntityWriteInfo", - "vtable_address": 6447868120, + "vtable_address": 6447872216, "methods": [ - 6443362128, - 6443347280 + 6443362320, + 6443347472 ], "bases": [ { @@ -21070,7 +21098,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448224616, + "complete_object_locator": 6448228832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21079,15 +21107,15 @@ }, { "type_name": "CFileLoggingListener", - "vtable_address": 6447391264, + "vtable_address": 6447395360, "methods": [ - 6446657040, - 6446656928, - 6442600384, - 6442600384, - 6442600384, - 6446657472, - 6446656864 + 6446657344, + 6446657232, + 6442600400, + 6442600400, + 6442600400, + 6446657776, + 6446657168 ], "bases": [ { @@ -21121,7 +21149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448155144, + "complete_object_locator": 6448159368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21130,14 +21158,14 @@ }, { "type_name": "CFinalizeConnectionPrerequisite", - "vtable_address": 6448052720, + "vtable_address": 6448056768, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6444355216, - 6444355200, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6444355504, + 6444355488, + 6442846336 ], "bases": [ { @@ -21157,7 +21185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275072, + "complete_object_locator": 6448279032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21166,11 +21194,11 @@ }, { "type_name": "CFlattenedSerializerSpewFunc_Log", - "vtable_address": 6447830784, + "vtable_address": 6447834912, "methods": [ - 6442953792, - 6442953856, - 6442600464 + 6442953872, + 6442953936, + 6442600368 ], "bases": [ { @@ -21190,7 +21218,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208728, + "complete_object_locator": 6448212912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21199,14 +21227,14 @@ }, { "type_name": "CFlattenedSerializerSpewListener<1>", - "vtable_address": 6447880136, + "vtable_address": 6447884176, "methods": [ - 6443444128, - 6443443776, - 6442846528, - 6443443760, - 6443443712, - 6443443328 + 6443444320, + 6443443968, + 6442846976, + 6443443952, + 6443443904, + 6443443520 ], "bases": [ { @@ -21226,7 +21254,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448226656, + "complete_object_locator": 6448230872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21235,15 +21263,15 @@ }, { "type_name": "CFrameMemDumpJob", - "vtable_address": 6447872504, + "vtable_address": 6447876608, "methods": [ - 6443390496, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443390208, - 6443390480 + 6443390688, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443390400, + 6443390672 ], "bases": [ { @@ -21305,7 +21333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448225960, + "complete_object_locator": 6448230176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -21314,9 +21342,9 @@ }, { "type_name": "CFrameSnapshotManager", - "vtable_address": 6447872568, + "vtable_address": 6447876672, "methods": [ - 6443378224 + 6443378416 ], "bases": [ { @@ -21350,7 +21378,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448226000, + "complete_object_locator": 6448230216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21359,16 +21387,10 @@ }, { "type_name": "CGameClientConnectPrerequisite", - "vtable_address": 6448052960, - "methods": [ - 6444357536, - 6442845840, - 6442845856, - 6444357760, - 6444356528, - 6442842448, - 6442600384, - 6442844064 + "vtable_address": 6448057208, + "methods": [ + 6442843952, + 6442844736 ], "bases": [ { @@ -21416,8 +21438,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275512, - "offset": 0, + "complete_object_locator": 6448279704, + "offset": 16, "constructor_displacement": 0, "class_attributes": 1 } @@ -21425,10 +21447,16 @@ }, { "type_name": "CGameClientConnectPrerequisite", - "vtable_address": 6448053032, - "methods": [ - 6442843504, - 6442844288 + "vtable_address": 6448057232, + "methods": [ + 6444357824, + 6442846288, + 6442846304, + 6444358048, + 6444356816, + 6442842896, + 6442600400, + 6442844512 ], "bases": [ { @@ -21476,8 +21504,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275472, - "offset": 16, + "complete_object_locator": 6448279824, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -21485,9 +21513,9 @@ }, { "type_name": "CGameEventDispatcher", - "vtable_address": 6448098720, + "vtable_address": 6448102744, "methods": [ - 6444626112 + 6444626416 ], "bases": [ { @@ -21507,7 +21535,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299248, + "complete_object_locator": 6448303408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21516,29 +21544,29 @@ }, { "type_name": "CGameEventSystem", - "vtable_address": 6448097968, + "vtable_address": 6448102568, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444628224, - 6444628896, + 6442793488, + 6442793248, 6442600384, - 6444628208, - 6442694208, - 6442792976, + 6444628528, + 6444629200, + 6442600400, + 6444628512, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6444628992, - 6444629072, + 6442697072, + 6444629296, 6444629376, - 6444629632, - 6444631568, - 6444630736, - 6444629760, - 6444633248, - 6444633232, - 6444628480 + 6444629680, + 6444629936, + 6444631872, + 6444631040, + 6444630064, + 6444633552, + 6444633536, + 6444628784 ], "bases": [ { @@ -21656,7 +21684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299168, + "complete_object_locator": 6448303488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21665,230 +21693,33 @@ }, { "type_name": "CGameInfo", - "vtable_address": 6447944984, - "methods": [ - 6443814960, - 6444851872, - 6443813744, - 6443830448, - 6442590368, - 6444851920, - 6444849504, - 6443831216, - 6442600000, - 6443830560, - 6442600384, - 6443831040, - 6444853136, - 6444854608, - 6443805552, - 6443831840, - 6443831424, - 6444850176, - 6443813808, - 6444850176, - 6443834688, - 6444850176, - 6443843296, - 6444850176, - 6443852528 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448248304, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CGameInfo_CCSGameInfo", - "vtable_address": 6447945480, - "methods": [ - 6443814784, - 6444851872, - 6443813728, - 6443829440, - 6442590368, - 6444851920, - 6444849504, - 6443830208, - 6442825136, - 6443829488, - 6442600384, - 6443829968, - 6444853136, - 6444854608, - 6443829424, - 6443830384, - 6443830288, - 6444850176, - 6443834688, - 6444850176, - 6443841104 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448247688, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CGameInfo_CDotaGameInfo", - "vtable_address": 6447944000, + "vtable_address": 6447949272, "methods": [ - 6443814560, - 6444851872, - 6443813712, - 6443825296, + 6443815248, + 6444852176, + 6443814032, + 6443830736, 6442590368, - 6444851920, - 6444849504, - 6443828032, + 6444852224, + 6444849808, + 6443831504, 6442600000, - 6443825712, - 6442600384, - 6443827056, - 6444853136, - 6444854608, - 6443805552, - 6443829360, - 6443828928, - 6444850176, - 6443844608, - 6444850176, - 6443834688, - 6444850176, - 6443830304, - 6444850176, - 6443828944, - 6444850176, - 6443839712 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448247936, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CGameInfo_CDotaGameInfo_CHeroSelectEvent", - "vtable_address": 6447943320, - "methods": [ - 6443814416, - 6444851872, - 6443813696, - 6443824032, - 6442590368, - 6444851920, - 6444849504, - 6443825024, - 6442600000, - 6443824080, - 6442600384, - 6443824688, - 6444853136, - 6444854608, - 6443805552, - 6443825232, - 6443825136 + 6443830848, + 6442600400, + 6443831328, + 6444853440, + 6444854912, + 6443805840, + 6443832128, + 6443831712, + 6444850480, + 6443834976, + 6444850480, + 6443814096, + 6444850480, + 6443843584, + 6444850480, + 6443852816 ], "bases": [ { @@ -21922,7 +21753,198 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448247448, + "complete_object_locator": 6448252360, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CGameInfo_CCSGameInfo", + "vtable_address": 6447952696, + "methods": [ + 6443815072, + 6444852176, + 6443814016, + 6443829728, + 6442590368, + 6444852224, + 6444849808, + 6443830496, + 6442825584, + 6443829776, + 6442600400, + 6443830256, + 6444853440, + 6444854912, + 6443829712, + 6443830672, + 6443830576, + 6444850480, + 6443836304 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448252120, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CGameInfo_CDotaGameInfo", + "vtable_address": 6447948288, + "methods": [ + 6443814848, + 6444852176, + 6443814000, + 6443825584, + 6442590368, + 6444852224, + 6444849808, + 6443828320, + 6442600000, + 6443826000, + 6442600400, + 6443827344, + 6444853440, + 6444854912, + 6443805840, + 6443829648, + 6443829216, + 6444850480, + 6443834976, + 6444850480, + 6443830592, + 6444850480, + 6443837744 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448252000, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CGameInfo_CDotaGameInfo_CHeroSelectEvent", + "vtable_address": 6447947672, + "methods": [ + 6443814704, + 6444852176, + 6443813984, + 6443824320, + 6442590368, + 6444852224, + 6444849808, + 6443825312, + 6442600000, + 6443824368, + 6442600400, + 6443824976, + 6444853440, + 6444854912, + 6443805840, + 6443825520, + 6443825424 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448251648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21931,29 +21953,27 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CPlayerInfo", - "vtable_address": 6447943824, + "vtable_address": 6447948128, "methods": [ - 6443814240, - 6444851872, - 6443813680, - 6443822256, + 6443814528, + 6444852176, + 6443813968, + 6443822544, 6442590368, - 6444851920, - 6444849504, - 6443823488, + 6444852224, + 6444849808, + 6443823776, 6442600000, - 6443822368, - 6442600384, - 6443823088, - 6444853136, - 6444854608, - 6443805552, - 6443823968, - 6443823696, - 6444850176, - 6443842240, - 6444850176, - 6443837456 + 6443822656, + 6442600400, + 6443823376, + 6444853440, + 6444854912, + 6443805840, + 6443824256, + 6443823984, + 6444850480, + 6443844896 ], "bases": [ { @@ -21987,7 +22007,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448248568, + "complete_object_locator": 6448252752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -21996,12 +22016,12 @@ }, { "type_name": "CGameResourceManifest::CCallbackInternal_Steam_OnUGCDownload", - "vtable_address": 6448031376, + "vtable_address": 6448035616, "methods": [ - 6442801072, - 6444202912, - 6444223664, - 6444203120 + 6442801520, + 6444203200, + 6444223952, + 6444203408 ], "bases": [ { @@ -22035,7 +22055,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448265496, + "complete_object_locator": 6448269608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22044,15 +22064,15 @@ }, { "type_name": "CGameResourceManifestPrerequisite", - "vtable_address": 6447888272, + "vtable_address": 6447892304, "methods": [ - 6443519824, - 6442845840, - 6442845856, - 6443516896, - 6443517024, - 6443517040, - 6442600384 + 6443520016, + 6442846288, + 6442846304, + 6443517088, + 6443517216, + 6443517232, + 6442600400 ], "bases": [ { @@ -22072,7 +22092,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448229360, + "complete_object_locator": 6448233536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22081,52 +22101,52 @@ }, { "type_name": "CGameResourceService", - "vtable_address": 6448030888, + "vtable_address": 6448035216, "methods": [ - 6444217824, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6444218112, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442697072, 6442600384, - 6444223440, - 6444186112, - 6444186048, - 6444186064, - 6444201744, - 6444186096, - 6444186080, - 6444217520, - 6444219440, - 6444219984, - 6444218336, - 6444220976, - 6444220528, - 6444222976, - 6444223040, - 6444223072, - 6444222256, - 6444223200, - 6444222928, - 6444217888, - 6444219232, - 6444223504, - 6444223472, - 6444218224, - 6444221456, - 6444221680, - 6444222352, - 6444218640, - 6444218864 + 6443587504, + 6442697072, + 6442600400, + 6444223728, + 6444186400, + 6444186336, + 6444186352, + 6444202032, + 6444186384, + 6444186368, + 6444217808, + 6444219728, + 6444220272, + 6444218624, + 6444221264, + 6444220816, + 6444223264, + 6444223328, + 6444223360, + 6444222544, + 6444223488, + 6444223216, + 6444218176, + 6444219520, + 6444223792, + 6444223760, + 6444218512, + 6444221744, + 6444221968, + 6444222640, + 6444218928, + 6444219152 ], "bases": [ { @@ -22272,7 +22292,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448265616, + "complete_object_locator": 6448269776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22281,25 +22301,25 @@ }, { "type_name": "CGameUIFuncs", - "vtable_address": 6447932160, + "vtable_address": 6447936432, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442690736, - 6442792976, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442691184, + 6442793424, 6442590368, - 6442696624, - 6443773712, - 6443774032, - 6443774112, + 6442697072, + 6443773984, + 6443774304, 6443774384, - 6443774448, - 6443774480 + 6443774656, + 6443774720, + 6443774752 ], "bases": [ { @@ -22403,7 +22423,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448243952, + "complete_object_locator": 6448248176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22412,11 +22432,11 @@ }, { "type_name": "CGameUIRenderCallbackGroupLayer", - "vtable_address": 6448033464, + "vtable_address": 6448037816, "methods": [ - 6444238256, - 6443798032, - 6442600464 + 6444238544, + 6443798320, + 6442600368 ], "bases": [ { @@ -22436,7 +22456,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267520, + "complete_object_locator": 6448271728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22445,11 +22465,11 @@ }, { "type_name": "CGameUIRenderLayer", - "vtable_address": 6448033496, + "vtable_address": 6448037784, "methods": [ - 6444238224, - 6443798032, - 6442600464 + 6444238512, + 6443798320, + 6442600368 ], "bases": [ { @@ -22469,7 +22489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267600, + "complete_object_locator": 6448271688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22478,11 +22498,48 @@ }, { "type_name": "CGameUIService", - "vtable_address": 6448033544, + "vtable_address": 6448037888, "methods": [ - 6444244928, - 6442600464, - 6442600384 + 6444218112, + 6442793248, + 6442600384, + 6444234336, + 6444236016, + 6442600400, + 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, + 6444234288, + 6443587504, + 6444234304, + 6444236912, + 6444237360, + 6444186400, + 6444186336, + 6444186352, + 6444230592, + 6444186384, + 6444186368, + 6444233440, + 6444248480, + 6444248608, + 6444248688, + 6444248816, + 6444249184, + 6444249488, + 6444249568, + 6444250064, + 6444249520, + 6444249536, + 6444250128, + 6444245024, + 6444250368, + 6444250768, + 6444251568, + 6444251424, + 6444237440 ], "bases": [ { @@ -22642,8 +22699,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267800, - "offset": 56, + "complete_object_locator": 6448272032, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -22651,48 +22708,11 @@ }, { "type_name": "CGameUIService", - "vtable_address": 6448033576, + "vtable_address": 6448038216, "methods": [ - 6444217824, - 6442792800, - 6442600368, - 6444234048, - 6444235728, - 6442600384, + 6444245216, 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6444234000, - 6443587312, - 6444234016, - 6444236624, - 6444237072, - 6444186112, - 6444186048, - 6444186064, - 6444230304, - 6444186096, - 6444186080, - 6444233152, - 6444248192, - 6444248320, - 6444248400, - 6444248528, - 6444248896, - 6444249200, - 6444249280, - 6444249776, - 6444249232, - 6444249248, - 6444249840, - 6444244736, - 6444250080, - 6444250480, - 6444251280, - 6444251136, - 6444237152 + 6442600400 ], "bases": [ { @@ -22852,8 +22872,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267840, - "offset": 0, + "complete_object_locator": 6448271992, + "offset": 56, "constructor_displacement": 0, "class_attributes": 1 } @@ -22861,18 +22881,18 @@ }, { "type_name": "CGenericExprPart", - "vtable_address": 6447736048, + "vtable_address": 6447740144, "methods": [ - 6446941680, - 6446722668, - 6446722668, - 6442600368, - 6442600368 + 6446941984, + 6446722972, + 6446722972, + 6442600384, + 6442600384 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448157088, + "complete_object_locator": 6448161312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22881,13 +22901,13 @@ }, { "type_name": "CGenericExpr_Binary", - "vtable_address": 6447736184, + "vtable_address": 6447740280, "methods": [ - 6446941728, - 6446942720, - 6446944304, - 6442696624, - 6446942640 + 6446942032, + 6446943024, + 6446944608, + 6442697072, + 6446942944 ], "bases": [ { @@ -22907,7 +22927,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448157336, + "complete_object_locator": 6448161560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -22916,120 +22936,13 @@ }, { "type_name": "CGenericExpr_BoolLiteral", - "vtable_address": 6447736632, + "vtable_address": 6447740728, "methods": [ - 6446941840, - 6446943408, - 6446944400, - 6442600368, - 6442600368 - ], - "bases": [ - { - "type_name": "CGenericExprPart", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448157976, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CGenericExpr_FloatLiteral", - "vtable_address": 6447736504, - "methods": [ - 6446941840, - 6446943456, - 6446944432, - 6442600368, - 6442600368 - ], - "bases": [ - { - "type_name": "CGenericExprPart", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448157720, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CGenericExpr_FunctionCall", - "vtable_address": 6447736824, - "methods": [ - 6446941888, - 6446943488, - 6446944464, - 6446944032, - 6446942656, - 6442825136, - 6446942624 - ], - "bases": [ - { - "type_name": "CGenericExprPart", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448158360, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "CGenericExpr_IntLiteral", - "vtable_address": 6447736568, - "methods": [ - 6446941840, - 6446943552, + 6446942144, + 6446943712, 6446944704, - 6442600368, - 6442600368 + 6442600384, + 6442600384 ], "bases": [ { @@ -23049,7 +22962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448157848, + "complete_object_locator": 6448162200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23057,14 +22970,121 @@ } }, { - "type_name": "CGenericExpr_Property", - "vtable_address": 6447736760, + "type_name": "CGenericExpr_FloatLiteral", + "vtable_address": 6447740600, "methods": [ - 6446942208, - 6446943584, + 6446942144, + 6446943760, 6446944736, + 6442600384, + 6442600384 + ], + "bases": [ + { + "type_name": "CGenericExprPart", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448161944, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CGenericExpr_FunctionCall", + "vtable_address": 6447740920, + "methods": [ + 6446942192, + 6446943792, + 6446944768, + 6446944336, + 6446942960, + 6442825584, + 6446942928 + ], + "bases": [ + { + "type_name": "CGenericExprPart", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448162584, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CGenericExpr_IntLiteral", + "vtable_address": 6447740664, + "methods": [ + 6446942144, + 6446943856, + 6446945008, + 6442600384, + 6442600384 + ], + "bases": [ + { + "type_name": "CGenericExprPart", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448162072, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "CGenericExpr_Property", + "vtable_address": 6447740856, + "methods": [ + 6446942512, + 6446943888, + 6446945040, 6442592912, - 6442744528 + 6442744976 ], "bases": [ { @@ -23084,7 +23104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448158232, + "complete_object_locator": 6448162456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23093,13 +23113,13 @@ }, { "type_name": "CGenericExpr_StringLiteral", - "vtable_address": 6447736440, + "vtable_address": 6447740536, "methods": [ - 6446942320, - 6446943648, - 6446944928, - 6442600368, - 6442600368 + 6446942624, + 6446943952, + 6446945232, + 6442600384, + 6442600384 ], "bases": [ { @@ -23119,7 +23139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448157592, + "complete_object_locator": 6448161816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23128,13 +23148,13 @@ }, { "type_name": "CGenericExpr_TernaryConditional", - "vtable_address": 6447736368, + "vtable_address": 6447740464, "methods": [ - 6446942400, - 6446943712, - 6446945104, - 6442690736, - 6446942672 + 6446942704, + 6446944016, + 6446945408, + 6442691184, + 6446942976 ], "bases": [ { @@ -23154,7 +23174,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448157464, + "complete_object_locator": 6448161688, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23163,13 +23183,13 @@ }, { "type_name": "CGenericExpr_Unary", - "vtable_address": 6447736096, + "vtable_address": 6447740192, "methods": [ - 6446942528, - 6446943792, - 6446945216, + 6446942832, + 6446944096, + 6446945520, 6442592912, - 6446942704 + 6446943008 ], "bases": [ { @@ -23189,7 +23209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448157208, + "complete_object_locator": 6448161432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23198,13 +23218,13 @@ }, { "type_name": "CGenericExpr_VariableReference", - "vtable_address": 6447736696, + "vtable_address": 6447740792, "methods": [ - 6446942320, - 6446943968, - 6446945264, - 6442600368, - 6442600368 + 6446942624, + 6446944272, + 6446945568, + 6442600384, + 6442600384 ], "bases": [ { @@ -23224,7 +23244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448158104, + "complete_object_locator": 6448162328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23233,14 +23253,14 @@ }, { "type_name": "CHLTVBroadcast", - "vtable_address": 6447911608, + "vtable_address": 6447915680, "methods": [ - 6443647088 + 6443647248 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448236104, + "complete_object_locator": 6448240328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23249,11 +23269,11 @@ }, { "type_name": "CHLTVBroadcast::CHttpCallback", - "vtable_address": 6447911576, + "vtable_address": 6447915648, "methods": [ - 6443664976, - 6443664960, - 6443631200 + 6443665136, + 6443665120, + 6443631360 ], "bases": [ { @@ -23273,7 +23293,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236144, + "complete_object_locator": 6448240368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -23282,15 +23302,15 @@ }, { "type_name": "CHLTVBuildFullFrameSplitJob", - "vtable_address": 6447926352, - "methods": [ - 6443755072, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443755280, - 6442600384 + "vtable_address": 6447930816, + "methods": [ + 6443755344, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443755552, + 6442600400 ], "bases": [ { @@ -23352,7 +23372,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241872, + "complete_object_locator": 6448246096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -23361,9 +23381,9 @@ }, { "type_name": "CHLTVClient", - "vtable_address": 6447914560, + "vtable_address": 6447918624, "methods": [ - 6443287664 + 6443287856 ], "bases": [ { @@ -23425,7 +23445,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236544, + "complete_object_locator": 6448240848, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -23434,87 +23454,87 @@ }, { "type_name": "CHLTVClient", - "vtable_address": 6447914576, - "methods": [ - 6443322752, - 6443666064, - 6443297104, - 6443666448, - 6443293648, - 6443293632, - 6443292272, - 6443297904, + "vtable_address": 6447918640, + "methods": [ + 6443322944, + 6443666224, + 6443297296, + 6443666608, + 6443293840, + 6443293824, + 6443292464, + 6443298096, 6442590368, - 6443319728, - 6443669280, - 6443669632, - 6443286384, - 6443666480, - 6443667760, - 6443287792, - 6443286944, - 6443254800, - 6443321936, - 6442600464, - 6442600464, - 6443254816, - 6443254832, - 6443307824, - 6443308720, - 6443669648, - 6443309632, - 6443667344, - 6443667136, - 6443310352, - 6443310336, - 6443320416, - 6443319904, + 6443319920, + 6443669440, + 6443669792, + 6443286576, + 6443666640, + 6443667920, + 6443287984, + 6443287136, + 6443254992, + 6443322128, + 6442600368, + 6442600368, + 6443255008, + 6443255024, + 6443308016, + 6443308912, + 6443669808, + 6443309824, + 6443667504, + 6443667296, + 6443310544, + 6443310528, + 6443320608, + 6443320096, 6442590368, - 6443320432, + 6443320624, 6442590368, - 6443667264, + 6443667424, 6442590368, 6442590368, - 6443667328, + 6443667488, 6442590368, - 6443667280, - 6443667280, - 6443321664, - 6442600464, - 6442600464, + 6443667440, + 6443667440, + 6443321856, + 6442600368, + 6442600368, 6442590368, - 6443304080, - 6443299408, - 6443666048, - 6443675440, - 6443671552, - 6443668880, - 6443313776, - 6443286928, - 6443671344, - 6443314128, - 6443667696, - 6443666560, - 6443669200, - 6443294480, - 6443294112, - 6443289264, - 6443289536, - 6443254848, - 6443321824, + 6443304272, + 6443299600, + 6443666208, + 6443675600, + 6443671712, + 6443669040, + 6443313968, + 6443287120, + 6443671504, + 6443314320, + 6443667856, + 6443666720, + 6443669360, + 6443294672, + 6443294304, + 6443289456, + 6443289728, + 6443255040, + 6443322016, 6442590368, - 6443667168, - 6442600464, - 6442600384, + 6443667328, 6442600368, - 6442600464, + 6442600400, 6442600384, + 6442600368, + 6442600400, 6442600480, - 6443676112, - 6443277440, - 6443277472, - 6443675232, - 6443297600 + 6443676272, + 6443277632, + 6443277664, + 6443675392, + 6443297792 ], "bases": [ { @@ -23576,7 +23596,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236584, + "complete_object_locator": 6448240888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -23585,9 +23605,150 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 6447916464, + "vtable_address": 6447920688, "methods": [ - 6443033264 + 6442971584, + 6442998208, + 6443029472, + 6443029488, + 6442602016, + 6442602032, + 6442602048, + 6442600384, + 6442745584, + 6442600384, + 6442600368, + 6442600400, + 6442985424, + 6443686720, + 6442602064, + 6442849488, + 6442600368, + 6442600368, + 6442849504, + 6442849536, + 6443029456, + 6442972176, + 6443687984, + 6443688032, + 6442600400, + 6443030576, + 6443030432, + 6442600400, + 6442600400, + 6442954048, + 6443029536, + 6442986464, + 6442997808, + 6443030592, + 6443029424, + 6443030768, + 6443031232, + 6442990752, + 6443026960, + 6443028480, + 6443029968, + 6443029968, + 6442600400, + 6443030656, + 6442960128, + 6442984352, + 6442950400, + 6442938736, + 6442972128, + 6442745584, + 6442971568, + 6443018448, + 6443019600, + 6442849568, + 6442971552, + 6442999120, + 6443031264, + 6443031856, + 6442849552, + 6443032400, + 6443005984, + 6442987360, + 6442991120, + 6442960160, + 6442960128, + 6442960144, + 6443007472, + 6442960128, + 6442960128, + 6443007504, + 6442600400, + 6442600400, + 6442769584, + 6443030000, + 6442600400, + 6442972192, + 6442600400, + 6442600400, + 6442960128, + 6442600400, + 6442600400, + 6442600400, + 6442600400, + 6442600368, + 6442600368, + 6443041696, + 6442972560, + 6442989984, + 6443680848, + 6443681120, + 6442999696, + 6443000688, + 6443688208, + 6443683056, + 6443683056, + 6443683056, + 6443007520, + 6443683056, + 6443683056, + 6443000768, + 6443681440, + 6443682288, + 6443010144, + 6443683056, + 6443025824, + 6443683168, + 6443688096, + 6443012224, + 6443012992, + 6442590368, + 6443683216, + 6443028016, + 6443028592, + 6443028960, + 6443683056, + 6443683056, + 6443000720, + 6443033248, + 6442590368, + 6443680752, + 6443033440, + 6443686544, + 6443686112, + 6443028496, + 6442590368, + 6443682592, + 6443029200, + 6443029216, + 6442600368, + 6442971632, + 6443681248, + 6443678320, + 6443686832, + 6443682928, + 6443682928, + 6443688544, + 6442600400, + 6443678192, + 6443677040, + 6443685312, + 6443013152, + 6442600400 ], "bases": [ { @@ -23691,8 +23852,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237000, - "offset": 8, + "complete_object_locator": 6448241184, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -23700,150 +23861,9 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 6447916480, + "vtable_address": 6447921832, "methods": [ - 6442971504, - 6442998016, - 6443029280, - 6443029296, - 6442602016, - 6442602032, - 6442602048, - 6442600368, - 6442745136, - 6442600368, - 6442600464, - 6442600384, - 6442985344, - 6443686464, - 6442602064, - 6442849040, - 6442600464, - 6442600464, - 6442849056, - 6442849088, - 6443029264, - 6442972096, - 6443687712, - 6443687760, - 6442600384, - 6443030384, - 6443030240, - 6442600384, - 6442600384, - 6442953968, - 6443029344, - 6442986384, - 6442997616, - 6443030400, - 6443029232, - 6443030576, - 6443031040, - 6442990560, - 6443026768, - 6443028288, - 6443029776, - 6443029776, - 6442600384, - 6443030464, - 6442960048, - 6442984272, - 6442950320, - 6442938656, - 6442972048, - 6442745136, - 6442971488, - 6443018256, - 6443019408, - 6442849120, - 6442971472, - 6442998928, - 6443031072, - 6443031664, - 6442849104, - 6443032208, - 6443005792, - 6442987184, - 6442990928, - 6442960080, - 6442960048, - 6442960064, - 6443007280, - 6442960048, - 6442960048, - 6443007312, - 6442600384, - 6442600384, - 6442769136, - 6443029808, - 6442600384, - 6442972112, - 6442600384, - 6442600384, - 6442960048, - 6442600384, - 6442600384, - 6442600384, - 6442600384, - 6442600464, - 6442600464, - 6443041504, - 6442972480, - 6442989792, - 6443680688, - 6443680960, - 6442999504, - 6443000496, - 6443687936, - 6443682896, - 6443682896, - 6443682896, - 6443007328, - 6443682896, - 6443682896, - 6443000576, - 6443681280, - 6443682128, - 6443009952, - 6443682896, - 6443025632, - 6443683008, - 6443687824, - 6443012032, - 6443012800, - 6442590368, - 6443683056, - 6443027824, - 6443028400, - 6443028768, - 6443682896, - 6443682896, - 6443000528, - 6443033056, - 6442590368, - 6443680592, - 6443033248, - 6443686288, - 6443685952, - 6443028304, - 6442590368, - 6443682432, - 6443029008, - 6443029024, - 6442600464, - 6442971552, - 6443681088, - 6443678160, - 6443686560, - 6443682768, - 6443682768, - 6443688272, - 6442600384, - 6443678032, - 6443676880, - 6443685152, - 6443012960, - 6442600384 + 6443680544 ], "bases": [ { @@ -23947,8 +23967,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236840, - "offset": 0, + "complete_object_locator": 6448241224, + "offset": 32, "constructor_displacement": 0, "class_attributes": 1 } @@ -23956,9 +23976,9 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 6447917664, + "vtable_address": 6447921848, "methods": [ - 6443680384 + 6442988512 ], "bases": [ { @@ -24062,8 +24082,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236880, - "offset": 32, + "complete_object_locator": 6448241064, + "offset": 24, "constructor_displacement": 0, "class_attributes": 1 } @@ -24071,9 +24091,10 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 6447917680, + "vtable_address": 6447921864, "methods": [ - 6442988320 + 6443688604, + 6442936864 ], "bases": [ { @@ -24177,8 +24198,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236920, - "offset": 24, + "complete_object_locator": 6448241104, + "offset": 16, "constructor_displacement": 0, "class_attributes": 1 } @@ -24186,10 +24207,9 @@ }, { "type_name": "CHLTVClientState", - "vtable_address": 6447917696, + "vtable_address": 6447921888, "methods": [ - 6443688332, - 6442936784 + 6443033456 ], "bases": [ { @@ -24293,8 +24313,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236960, - "offset": 16, + "complete_object_locator": 6448241144, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -24302,30 +24322,30 @@ }, { "type_name": "CHLTVDemoRecorder", - "vtable_address": 6447917720, + "vtable_address": 6447921904, "methods": [ - 6443710112, - 6442600384, - 6442600384, - 6443710336, - 6442686784, - 6442686784, - 6443693280, - 6443689792, - 6442600384, - 6443692384, - 6443693216, - 6443697536, - 6442600384, - 6443697888, - 6443699968, - 6442600384, - 6443699456, - 6442600384, - 6442600384, - 6442600384, - 6443710944, - 6443688800 + 6443710384, + 6442600400, + 6442600400, + 6443710608, + 6442687232, + 6442687232, + 6443693552, + 6443690064, + 6442600400, + 6443692656, + 6443693488, + 6443697808, + 6442600400, + 6443698160, + 6443700240, + 6442600400, + 6443699728, + 6442600400, + 6442600400, + 6442600400, + 6443711216, + 6443689072 ], "bases": [ { @@ -24359,7 +24379,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237136, + "complete_object_locator": 6448241360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -24368,10 +24388,10 @@ }, { "type_name": "CHLTVFrame", - "vtable_address": 6447927016, + "vtable_address": 6447931096, "methods": [ - 6443740464, - 6442600464 + 6443740736, + 6442600368 ], "bases": [ { @@ -24391,7 +24411,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241952, + "complete_object_locator": 6448246056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -24400,13 +24420,10 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 6447925360, + "vtable_address": 6447929624, "methods": [ - 6443720736, - 6443720992, - 6443721008, - 6443721024, - 6443723104 + 6443171168, + 6442600400 ], "bases": [ { @@ -24510,8 +24527,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237888, - "offset": 1808, + "complete_object_locator": 6448242072, + "offset": 16, "constructor_displacement": 0, "class_attributes": 1 } @@ -24519,29 +24536,10 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 6447925408, - "methods": [ - 6443739128, - 6443723120, - 6443723136, - 6443716352, - 6443716368, - 6443716448, - 6443716688, - 6443716928, - 6443717168, - 6443717472, - 6443717840, - 6443717856, - 6442600464, - 6443717872, - 6443718432, - 6443718960, - 6443718992, - 6443719040, - 6443719056, - 6443711040, - 6443719184 + "vtable_address": 6447929648, + "methods": [ + 6443739388, + 6443170240 ], "bases": [ { @@ -24645,8 +24643,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237728, - "offset": 1800, + "complete_object_locator": 6448242112, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -24654,10 +24652,84 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 6447925584, - "methods": [ - 6443170976, - 6442600384 + "vtable_address": 6447929672, + "methods": [ + 6443727392, + 6443201504, + 6443201456, + 6443202528, + 6443728224, + 6443225728, + 6443225744, + 6443225712, + 6442960176, + 6443199648, + 6443226544, + 6443128704, + 6443220896, + 6443231488, + 6443231936, + 6443232144, + 6443232272, + 6443724208, + 6443174592, + 6443176400, + 6443180176, + 6443226608, + 6443226160, + 6443226528, + 6443226560, + 6443128720, + 6443226592, + 6443198896, + 6443720816, + 6442590368, + 6443230048, + 6443181104, + 6443175008, + 6443175056, + 6443199664, + 6442590368, + 6443179888, + 6443174256, + 6443227680, + 6443229024, + 6443229584, + 6443229600, + 6443230032, + 6443128752, + 6443214416, + 6443128816, + 6442590368, + 6443220640, + 6443209584, + 6443203616, + 6442600400, + 6443210912, + 6443236032, + 6443236080, + 6443727520, + 6443203376, + 6443041696, + 6443146688, + 6443128784, + 6443688544, + 6443727680, + 6443192160, + 6442590368, + 6442600368, + 6443728992, + 6442600400, + 6443726736, + 6442600400, + 6443720496, + 6442600400, + 6443729440, + 6443719472, + 6442590368, + 6443729232, + 6443718160, + 6443195984 ], "bases": [ { @@ -24761,8 +24833,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237768, - "offset": 16, + "complete_object_locator": 6448241952, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -24770,10 +24842,13 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 6447925608, + "vtable_address": 6447930288, "methods": [ - 6443739116, - 6443170048 + 6443721008, + 6443721264, + 6443721280, + 6443721296, + 6443723376 ], "bases": [ { @@ -24877,8 +24952,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237808, - "offset": 8, + "complete_object_locator": 6448241992, + "offset": 1808, "constructor_displacement": 0, "class_attributes": 1 } @@ -24886,84 +24961,29 @@ }, { "type_name": "CHLTVServer", - "vtable_address": 6447925632, - "methods": [ - 6443727120, - 6443201312, - 6443201264, - 6443202336, - 6443727952, - 6443225536, - 6443225552, - 6443225520, - 6442960096, - 6443199456, - 6443226352, - 6443128512, - 6443220704, - 6443231296, - 6443231744, - 6443231952, - 6443232080, - 6443723936, - 6443174400, - 6443176208, - 6443179984, - 6443226416, - 6443225968, - 6443226336, - 6443226368, - 6443128528, - 6443226400, - 6443198704, - 6443720544, - 6442590368, - 6443229856, - 6443180912, - 6443174816, - 6443174864, - 6443199472, - 6442590368, - 6443179696, - 6443174064, - 6443227488, - 6443228832, - 6443229392, - 6443229408, - 6443229840, - 6443128560, - 6443214224, - 6443128624, - 6442590368, - 6443220448, - 6443209392, - 6443203424, - 6442600384, - 6443210720, - 6443235840, - 6443235888, - 6443727248, - 6443203184, - 6443041504, - 6443146496, - 6443128592, - 6443688272, - 6443727408, - 6443191968, - 6442590368, - 6442600464, - 6443728720, - 6442600384, - 6443726464, - 6442600384, - 6443720224, - 6442600384, - 6443729168, - 6443719200, - 6442590368, - 6443728960, - 6443717888, - 6443195792 + "vtable_address": 6447930336, + "methods": [ + 6443739400, + 6443723392, + 6443723408, + 6443716624, + 6443716640, + 6443716720, + 6443716960, + 6443717200, + 6443717440, + 6443717744, + 6443718112, + 6443718128, + 6442600368, + 6443718144, + 6443718704, + 6443719232, + 6443719264, + 6443719312, + 6443719328, + 6443711312, + 6443719456 ], "bases": [ { @@ -25067,8 +25087,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448237848, - "offset": 0, + "complete_object_locator": 6448242032, + "offset": 1800, "constructor_displacement": 0, "class_attributes": 1 } @@ -25076,18 +25096,18 @@ }, { "type_name": "CHLTVServerAsync", - "vtable_address": 6447926928, - "methods": [ - 6443746944, - 6443646368, - 6443746880, - 6443746912, - 6443746864, - 6443739152, - 6442600384, - 6443739232, - 6443739248, - 6443739264 + "vtable_address": 6447931120, + "methods": [ + 6443747216, + 6443646528, + 6443747152, + 6443747184, + 6443747136, + 6443739424, + 6442600400, + 6443739504, + 6443739520, + 6443739536 ], "bases": [ { @@ -25107,7 +25127,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241912, + "complete_object_locator": 6448246016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25116,10 +25136,10 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 6447926632, + "vtable_address": 6447930616, "methods": [ - 6443743952, - 6443764032 + 6443744224, + 6443764304 ], "bases": [ { @@ -25167,7 +25187,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241392, + "complete_object_locator": 6448245456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25176,10 +25196,10 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 6447926416, + "vtable_address": 6447930792, "methods": [ - 6443743952, - 6443764048 + 6443744224, + 6443764320 ], "bases": [ { @@ -25227,7 +25247,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241352, + "complete_object_locator": 6448245696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25236,10 +25256,10 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 6447926880, + "vtable_address": 6447931280, "methods": [ - 6443743952, - 6443764896 + 6443744224, + 6443765168 ], "bases": [ { @@ -25287,7 +25307,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241432, + "complete_object_locator": 6448245856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25296,10 +25316,10 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 6447926904, + "vtable_address": 6447931256, "methods": [ - 6443743952, - 6443764800 + 6443744224, + 6443765072 ], "bases": [ { @@ -25347,7 +25367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241472, + "complete_object_locator": 6448245896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25356,10 +25376,10 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 6447926808, + "vtable_address": 6447930768, "methods": [ - 6443743952, - 6443764112 + 6443744224, + 6443764384 ], "bases": [ { @@ -25407,7 +25427,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241272, + "complete_object_locator": 6448245616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25416,10 +25436,10 @@ }, { "type_name": "CHLTVServerAsync::CAsyncCall", - "vtable_address": 6447926760, + "vtable_address": 6447930744, "methods": [ - 6443743952, - 6443764304 + 6443744224, + 6443764576 ], "bases": [ { @@ -25467,7 +25487,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241552, + "complete_object_locator": 6448245576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25476,10 +25496,10 @@ }, { "type_name": "CHLTVServerAsync::CDeferredCall", - "vtable_address": 6447926784, + "vtable_address": 6447931072, "methods": [ - 6443743952, - 6443764448 + 6443744224, + 6443764720 ], "bases": [ { @@ -25527,7 +25547,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241512, + "complete_object_locator": 6448245536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25536,9 +25556,9 @@ }, { "type_name": "CHLTVServerAsync::CHLTVDemoRecorderProxy", - "vtable_address": 6447927040, + "vtable_address": 6447931304, "methods": [ - 6443763936 + 6443764208 ], "bases": [ { @@ -25558,7 +25578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241672, + "complete_object_locator": 6448245736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25567,10 +25587,10 @@ }, { "type_name": "CHLTVServerAsync::CReverseCall", - "vtable_address": 6447926832, + "vtable_address": 6447931232, "methods": [ - 6443743952, - 6443765008 + 6443744224, + 6443765280 ], "bases": [ { @@ -25618,7 +25638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241752, + "complete_object_locator": 6448245776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25627,17 +25647,17 @@ }, { "type_name": "CHLTVServerAsync::CSendClientMessagesJob", - "vtable_address": 6447926680, + "vtable_address": 6447930536, "methods": [ - 6443254192, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443763872, - 6443254176, - 6442600464, - 6443763904 + 6443254384, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443764144, + 6443254368, + 6442600368, + 6443764176 ], "bases": [ { @@ -25727,7 +25747,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241632, + "complete_object_locator": 6448245816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -25736,24 +25756,24 @@ }, { "type_name": "CHiddenFieldValuePrinter", - "vtable_address": 6448121656, - "methods": [ - 6444834912, - 6444833040, - 6444833040, - 6444833040, - 6444833040, - 6444833040, - 6444833040, - 6444833040, - 6444833040, - 6444833040, - 6444833072, - 6444921136, - 6444921104, - 6444833104, + "vtable_address": 6448125896, + "methods": [ + 6444835216, + 6444833344, + 6444833344, + 6444833344, + 6444833344, + 6444833344, + 6444833344, + 6444833344, + 6444833344, + 6444833344, + 6444833376, + 6444921440, + 6444921408, + 6444833408, 6442590368, - 6442600384 + 6442600400 ], "bases": [ { @@ -25773,7 +25793,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448304208, + "complete_object_locator": 6448308416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -25782,9 +25802,31 @@ }, { "type_name": "CHostStateMgr", - "vtable_address": 6448102096, + "vtable_address": 6448106344, "methods": [ - 6444653968 + 6442793488, + 6442793248, + 6442600384, + 6444648656, + 6444648736, + 6442600400, + 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, + 6444649232, + 6444649440, + 6444651264, + 6444652048, + 6444652416, + 6444652704, + 6444649888, + 6444650320, + 6444650720, + 6444651648, + 6444653104, + 6444653504 ], "bases": [ { @@ -25916,8 +25958,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448300344, - "offset": 40, + "complete_object_locator": 6448304560, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -25925,31 +25967,9 @@ }, { "type_name": "CHostStateMgr", - "vtable_address": 6448102112, + "vtable_address": 6448106536, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444648352, - 6444648432, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6444648928, - 6444649136, - 6444650960, - 6444651744, - 6444652112, - 6444652400, - 6444649584, - 6444650016, - 6444650416, - 6444651344, - 6444652800, - 6444653200 + 6444654272 ], "bases": [ { @@ -26081,8 +26101,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448300304, - "offset": 0, + "complete_object_locator": 6448304520, + "offset": 40, "constructor_displacement": 0, "class_attributes": 1 } @@ -26090,9 +26110,9 @@ }, { "type_name": "CHostSubscribeForProfileEvents", - "vtable_address": 6447893184, + "vtable_address": 6447897232, "methods": [ - 6443557872 + 6443558064 ], "bases": [ { @@ -26112,7 +26132,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448231680, + "complete_object_locator": 6448235936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26121,9 +26141,68 @@ }, { "type_name": "CInputService", - "vtable_address": 6448044392, + "vtable_address": 6448048616, "methods": [ - 6444291232 + 6442793488, + 6442793248, + 6442600384, + 6444280432, + 6444283648, + 6442600400, + 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, + 6444262224, + 6443587504, + 6442697072, + 6444289856, + 6444290240, + 6444186400, + 6444186336, + 6444186352, + 6444252512, + 6444186384, + 6444186368, + 6444260256, + 6444293552, + 6444293728, + 6444252528, + 6444289392, + 6444284416, + 6444289456, + 6444264160, + 6444263792, + 6444269616, + 6444269536, + 6444269008, + 6444262272, + 6444262448, + 6444289424, + 6444295232, + 6444295888, + 6444296016, + 6444262240, + 6444262256, + 6444296144, + 6444308528, + 6444310128, + 6444312048, + 6444267200, + 6444263312, + 6444263664, + 6444294224, + 6444294256, + 6444294288, + 6444294320, + 6444294352, + 6444294512, + 6444294608, + 6444284912, + 6444268240, + 6444252592, + 6444294704 ], "bases": [ { @@ -26283,8 +26362,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269888, - "offset": 56, + "complete_object_locator": 6448274160, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -26292,68 +26371,9 @@ }, { "type_name": "CInputService", - "vtable_address": 6448044408, + "vtable_address": 6448049104, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444280144, - 6444283360, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6444261936, - 6443587312, - 6442696624, - 6444289568, - 6444289952, - 6444186112, - 6444186048, - 6444186064, - 6444252224, - 6444186096, - 6444186080, - 6444259968, - 6444293264, - 6444293440, - 6444252240, - 6444289104, - 6444284128, - 6444289168, - 6444263872, - 6444263504, - 6444269328, - 6444269248, - 6444268720, - 6444261984, - 6444262160, - 6444289136, - 6444294944, - 6444295600, - 6444295728, - 6444261952, - 6444261968, - 6444295856, - 6444308240, - 6444309840, - 6444311760, - 6444266912, - 6444263024, - 6444263376, - 6444293936, - 6444293968, - 6444294000, - 6444294032, - 6444294064, - 6444294224, - 6444294320, - 6444284624, - 6444267952, - 6444252304, - 6444294416 + 6444291520 ], "bases": [ { @@ -26513,8 +26533,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269928, - "offset": 0, + "complete_object_locator": 6448274120, + "offset": 56, "constructor_displacement": 0, "class_attributes": 1 } @@ -26522,11 +26542,11 @@ }, { "type_name": "CInstantReplay", - "vtable_address": 6447768536, + "vtable_address": 6447772632, "methods": [ - 6442773616, - 6442773360, - 6442773376 + 6442774064, + 6442773808, + 6442773824 ], "bases": [ { @@ -26560,7 +26580,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175416, + "complete_object_locator": 6448179640, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -26569,50 +26589,52 @@ }, { "type_name": "CInstantReplay", - "vtable_address": 6447768568, - "methods": [ - 6442769664, - 6442774736, - 6442778448, - 6442778464, - 6442778496, - 6442774896, - 6442774896, - 6442671360, - 6442600384, - 6442600464, - 6442600464, + "vtable_address": 6447772664, + "methods": [ + 6442770112, + 6442775184, + 6442778896, + 6442778912, + 6442778944, + 6442775344, + 6442775344, + 6442671808, + 6442600400, 6442600368, - 6442778224, - 6442778400, - 6442600464, - 6442774864, - 6442600464, - 6442778560, - 6442778544, - 6442778240, - 6442774912, - 6442778336, - 6442774688, 6442600368, - 6442776032, 6442600384, + 6442778672, + 6442778848, 6442600368, - 6442600464, - 6442600464, - 6442600464, - 6442774720, - 6442600384, - 6442590368, - 6442600384, - 6442600384, + 6442775312, + 6442600368, + 6442779008, + 6442778992, + 6442778688, + 6442775360, + 6442778784, + 6442775136, 6442600384, - 6442600464, + 6442600368, 6442600384, - 6442769136, - 6442769136, + 6442776480, + 6442600400, 6442600384, - 6442600384 + 6442600368, + 6442600368, + 6442600368, + 6442775168, + 6442600400, + 6442590368, + 6442600400, + 6442600400, + 6442600400, + 6442600368, + 6442600400, + 6442769584, + 6442769584, + 6442600400, + 6442600400 ], "bases": [ { @@ -26646,7 +26668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175376, + "complete_object_locator": 6448179600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -26655,14 +26677,14 @@ }, { "type_name": "CKV3TransferContextBase", - "vtable_address": 6447389416, + "vtable_address": 6447393512, "methods": [ - 6446636176, - 6446635808, - 6446636160, - 6442600464, - 6446636384, - 6442600384 + 6446636480, + 6446636112, + 6446636464, + 6442600368, + 6446636688, + 6442600400 ], "bases": [ { @@ -26682,7 +26704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448154552, + "complete_object_locator": 6448158776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26691,14 +26713,14 @@ }, { "type_name": "CKV3TransferLoadContext", - "vtable_address": 6447389528, + "vtable_address": 6447393624, "methods": [ - 6446636176, - 6446635808, - 6446636160, - 6446635472, - 6446636384, - 6442600384 + 6446636480, + 6446636112, + 6446636464, + 6446635776, + 6446636688, + 6442600400 ], "bases": [ { @@ -26732,7 +26754,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448154416, + "complete_object_locator": 6448158640, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26741,14 +26763,14 @@ }, { "type_name": "CKV3TransferSaveContext", - "vtable_address": 6447389472, + "vtable_address": 6447393568, "methods": [ - 6446636176, - 6446635808, - 6446636160, - 6442600464, - 6446636384, - 6442600384 + 6446636480, + 6446636112, + 6446636464, + 6442600368, + 6446636688, + 6442600400 ], "bases": [ { @@ -26782,7 +26804,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448154192, + "complete_object_locator": 6448158416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26791,25 +26813,25 @@ }, { "type_name": "CKeyValueCache", - "vtable_address": 6448102328, + "vtable_address": 6448106576, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6444655984, - 6444656336, - 6444655568, - 6444657152, - 6444657392, - 6444657872 + 6442697072, + 6444656288, + 6444656640, + 6444655872, + 6444657456, + 6444657696, + 6444658176 ], "bases": [ { @@ -26927,7 +26949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448300904, + "complete_object_locator": 6448305528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -26936,9 +26958,9 @@ }, { "type_name": "CLoadAutoCompletionFunctor", - "vtable_address": 6448044920, + "vtable_address": 6448049464, "methods": [ - 6444340608 + 6444340896 ], "bases": [ { @@ -26972,7 +26994,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448271384, + "complete_object_locator": 6448275560, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -26981,9 +27003,9 @@ }, { "type_name": "CLoadAutoCompletionFunctor", - "vtable_address": 6448044936, + "vtable_address": 6448049480, "methods": [ - 6444340096 + 6444340384 ], "bases": [ { @@ -27017,7 +27039,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448271424, + "complete_object_locator": 6448275600, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -27026,14 +27048,14 @@ }, { "type_name": "CLoadSpawnGroupsPrerequisite", - "vtable_address": 6448053144, + "vtable_address": 6448057432, "methods": [ - 6443241680, - 6442845840, - 6442845856, - 6444351920, - 6444350432, - 6444350448 + 6443241872, + 6442846288, + 6442846304, + 6444352208, + 6444350720, + 6444350736 ], "bases": [ { @@ -27053,7 +27075,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274952, + "complete_object_locator": 6448279464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27062,10 +27084,10 @@ }, { "type_name": "CLoadStartupResourcePrerequisite", - "vtable_address": 6448053056, + "vtable_address": 6448056744, "methods": [ - 6444355648, - 6444355696 + 6444355936, + 6444355984 ], "bases": [ { @@ -27127,7 +27149,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274992, + "complete_object_locator": 6448278872, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -27136,15 +27158,15 @@ }, { "type_name": "CLoadStartupResourcePrerequisite", - "vtable_address": 6448053080, - "methods": [ - 6444356272, - 6442845840, - 6442845856, - 6444355840, - 6444355632, - 6444356032, - 6442600384 + "vtable_address": 6448056880, + "methods": [ + 6444356560, + 6442846288, + 6442846304, + 6444356128, + 6444355920, + 6444356320, + 6442600400 ], "bases": [ { @@ -27206,7 +27228,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275112, + "complete_object_locator": 6448278912, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -27215,16 +27237,16 @@ }, { "type_name": "CLoopModeAddonDownload", - "vtable_address": 6447934256, + "vtable_address": 6447938472, "methods": [ - 6443775312, - 6443781936, - 6443776048, + 6443775584, + 6443782208, + 6443776320, + 6442600400, + 6443775232, 6442600384, - 6443774960, - 6442600368, - 6443781920, - 6442600464 + 6443782192, + 6442600368 ], "bases": [ { @@ -27258,7 +27280,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448244512, + "complete_object_locator": 6448248816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27267,16 +27289,16 @@ }, { "type_name": "CLoopModeConsole", - "vtable_address": 6447934376, + "vtable_address": 6447938648, "methods": [ - 6443784944, - 6443781936, - 6443785136, - 6443785312, + 6443785216, + 6443782208, + 6443785408, + 6443785584, + 6442600400, 6442600384, - 6442600368, - 6443785392, - 6442600464 + 6443785664, + 6442600368 ], "bases": [ { @@ -27310,7 +27332,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448244944, + "complete_object_locator": 6448249208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27319,13 +27341,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6447934064, + "vtable_address": 6447938336, "methods": [ 6442590368, - 6442600384, - 6443776432, - 6443776336, - 6442846528 + 6442600400, + 6443776704, + 6443776608, + 6442846976 ], "bases": [ { @@ -27345,7 +27367,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448244592, + "complete_object_locator": 6448248776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27354,13 +27376,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6447934328, + "vtable_address": 6447938600, "methods": [ - 6443785936, - 6442600384, - 6443785856, - 6443785744, - 6442846528 + 6443786208, + 6442600400, + 6443786128, + 6443786016, + 6442846976 ], "bases": [ { @@ -27380,7 +27402,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448244984, + "complete_object_locator": 6448249168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27389,13 +27411,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6447934864, + "vtable_address": 6447939144, "methods": [ - 6443785936, - 6442600384, - 6443786912, - 6443785744, - 6442846528 + 6443786208, + 6442600400, + 6443787184, + 6443786016, + 6442846976 ], "bases": [ { @@ -27415,7 +27437,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448245208, + "complete_object_locator": 6448249432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27424,13 +27446,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6447935752, + "vtable_address": 6447940032, "methods": [ - 6443790512, - 6442600384, - 6443790368, - 6443790176, - 6442846528 + 6443790784, + 6442600400, + 6443790640, + 6443790448, + 6442846976 ], "bases": [ { @@ -27450,7 +27472,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448245472, + "complete_object_locator": 6448249736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27459,13 +27481,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6447936232, + "vtable_address": 6447940584, "methods": [ - 6443785936, - 6442600384, - 6443791936, - 6443791824, - 6442846528 + 6443786208, + 6442600400, + 6443792208, + 6443792096, + 6442846976 ], "bases": [ { @@ -27485,7 +27507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448245736, + "complete_object_locator": 6448250000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27494,13 +27516,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6447936424, + "vtable_address": 6447940704, "methods": [ - 6443794096, - 6442600384, - 6443794016, - 6443791824, - 6442846528 + 6443794368, + 6442600400, + 6443794288, + 6443792096, + 6442846976 ], "bases": [ { @@ -27520,7 +27542,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246040, + "complete_object_locator": 6448250264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27529,13 +27551,13 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6447937408, + "vtable_address": 6447941616, "methods": [ - 6443797952, - 6442600384, - 6443797872, - 6443797840, - 6442846528 + 6443798240, + 6442600400, + 6443798160, + 6443798128, + 6442846976 ], "bases": [ { @@ -27555,7 +27577,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246432, + "complete_object_locator": 6448250656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27564,16 +27586,16 @@ }, { "type_name": "CLoopModeInGameUI", - "vtable_address": 6447934912, + "vtable_address": 6447939192, "methods": [ - 6443786256, - 6443781936, - 6443786416, - 6442600384, + 6443786528, + 6443782208, + 6443786688, + 6442600400, + 6442600400, 6442600384, - 6442600368, - 6443786544, - 6442600464 + 6443786816, + 6442600368 ], "bases": [ { @@ -27607,7 +27629,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448245248, + "complete_object_locator": 6448249472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27616,16 +27638,16 @@ }, { "type_name": "CLoopModeLevelLoad", - "vtable_address": 6447935800, + "vtable_address": 6447940080, "methods": [ - 6443787360, - 6443781936, 6443787632, - 6443788640, - 6443786992, - 6442600368, - 6443789824, - 6443787344 + 6443782208, + 6443787904, + 6443788912, + 6443787264, + 6442600384, + 6443790096, + 6443787616 ], "bases": [ { @@ -27659,7 +27681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448245512, + "complete_object_locator": 6448249696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27668,16 +27690,16 @@ }, { "type_name": "CLoopModeMainMenu", - "vtable_address": 6447936280, + "vtable_address": 6447940512, "methods": [ - 6443790960, - 6443781936, - 6443791216, - 6443791376, - 6443790608, - 6442600368, - 6443791408, - 6442600464 + 6443791232, + 6443782208, + 6443791488, + 6443791648, + 6443790880, + 6442600384, + 6443791680, + 6442600368 ], "bases": [ { @@ -27711,7 +27733,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448245776, + "complete_object_locator": 6448249960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27720,16 +27742,16 @@ }, { "type_name": "CLoopModeRemoteConnect", - "vtable_address": 6447936352, + "vtable_address": 6447940632, "methods": [ - 6443792368, - 6443781936, - 6443792528, + 6443792640, + 6443782208, + 6443792800, + 6442600400, + 6443792288, 6442600384, - 6443792016, - 6442600368, - 6443793664, - 6442600464 + 6443793936, + 6442600368 ], "bases": [ { @@ -27763,7 +27785,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246000, + "complete_object_locator": 6448250224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27772,16 +27794,16 @@ }, { "type_name": "CLoopModeSourceTVRelay", - "vtable_address": 6447937336, + "vtable_address": 6447941720, "methods": [ - 6443796336, - 6443797104, - 6443797424, - 6443797648, - 6443794608, - 6442600368, - 6443781920, - 6442600464 + 6443796624, + 6443797392, + 6443797712, + 6443797936, + 6443794880, + 6442600384, + 6443782192, + 6442600368 ], "bases": [ { @@ -27815,7 +27837,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246392, + "complete_object_locator": 6448250616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27824,22 +27846,22 @@ }, { "type_name": "CLoopTypeBase", - "vtable_address": 6448097264, - "methods": [ - 6444658656, - 6444603280, - 6444661808, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6444662704, - 6446722668, - 6442600384, - 6446722668, - 6442600384, - 6442600368 + "vtable_address": 6448101528, + "methods": [ + 6444658960, + 6444603584, + 6444662112, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6444663008, + 6446722972, + 6442600400, + 6446722972, + 6442600400, + 6442600384 ], "bases": [ { @@ -27859,7 +27881,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448296784, + "complete_object_locator": 6448300984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27868,22 +27890,22 @@ }, { "type_name": "CLoopTypeClientServer", - "vtable_address": 6448110672, - "methods": [ - 6444658656, - 6444603280, - 6444690496, - 6444691280, - 6444691680, - 6444692288, - 6444692496, - 6444692832, - 6444702832, + "vtable_address": 6448114920, + "methods": [ + 6444658960, + 6444603584, + 6444690800, + 6444691584, + 6444691984, + 6444692592, + 6444692800, + 6444693136, + 6444703136, 6442592912, - 6444718032, - 6444381184, - 6442600384, - 6444664480 + 6444718336, + 6444381472, + 6442600400, + 6444664784 ], "bases": [ { @@ -27917,7 +27939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302200, + "complete_object_locator": 6448306456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -27926,31 +27948,9 @@ }, { "type_name": "CLoopTypeClientServerService", - "vtable_address": 6448110792, + "vtable_address": 6448115040, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6444679360, - 6443587312, - 6442696624, - 6444679376, - 6444679648, - 6444186112, - 6444186048, - 6444186064, - 6444678736, - 6444186096, - 6444186080, - 6444681728 + 6444680208 ], "bases": [ { @@ -28110,8 +28110,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302080, - "offset": 0, + "complete_object_locator": 6448306296, + "offset": 56, "constructor_displacement": 0, "class_attributes": 1 } @@ -28119,11 +28119,31 @@ }, { "type_name": "CLoopTypeClientServerService", - "vtable_address": 6448110984, + "vtable_address": 6448115056, "methods": [ - 6444679920, + 6442793488, + 6442793248, + 6442600384, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442600384 + 6442697072, + 6444679664, + 6443587504, + 6442697072, + 6444679680, + 6444679952, + 6444186400, + 6444186336, + 6444186352, + 6444679040, + 6444186384, + 6444186368, + 6444682032 ], "bases": [ { @@ -28283,8 +28303,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302160, - "offset": 64, + "complete_object_locator": 6448306376, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -28292,9 +28312,11 @@ }, { "type_name": "CLoopTypeClientServerService", - "vtable_address": 6448111016, + "vtable_address": 6448115248, "methods": [ - 6444679904 + 6444680224, + 6442590368, + 6442600400 ], "bases": [ { @@ -28454,8 +28476,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302040, - "offset": 56, + "complete_object_locator": 6448306256, + "offset": 64, "constructor_displacement": 0, "class_attributes": 1 } @@ -28463,22 +28485,22 @@ }, { "type_name": "CLoopTypeSimple", - "vtable_address": 6448096560, - "methods": [ - 6444658656, - 6444603280, - 6444742912, - 6444743328, - 6444743408, - 6444743504, - 6444743584, - 6444743728, - 6444743936, - 6442600368, - 6444745632, - 6442600368, + "vtable_address": 6448100824, + "methods": [ + 6444658960, + 6444603584, + 6444743216, + 6444743632, + 6444743712, + 6444743808, + 6444743888, + 6444744032, + 6444744240, 6442600384, - 6442600368 + 6444745936, + 6442600384, + 6442600400, + 6442600384 ], "bases": [ { @@ -28512,7 +28534,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448296664, + "complete_object_locator": 6448300864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -28521,31 +28543,9 @@ }, { "type_name": "CLoopTypeSimpleService", - "vtable_address": 6448111168, + "vtable_address": 6448115416, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6444742480, - 6443587312, - 6442696624, - 6444742528, - 6444742688, - 6444186112, - 6444186048, - 6444186064, - 6442600384, - 6444186096, - 6444186080, - 6444200816 + 6444743120 ], "bases": [ { @@ -28705,8 +28705,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302496, - "offset": 0, + "complete_object_locator": 6448306744, + "offset": 56, "constructor_displacement": 0, "class_attributes": 1 } @@ -28714,11 +28714,31 @@ }, { "type_name": "CLoopTypeSimpleService", - "vtable_address": 6448111360, + "vtable_address": 6448115432, "methods": [ + 6442793488, + 6442793248, + 6442600384, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, + 6444742784, + 6443587504, + 6442697072, 6444742832, - 6442600464, - 6442600384 + 6444742992, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444201104 ], "bases": [ { @@ -28878,8 +28898,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302456, - "offset": 64, + "complete_object_locator": 6448306664, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -28887,9 +28907,11 @@ }, { "type_name": "CLoopTypeSimpleService", - "vtable_address": 6448111392, + "vtable_address": 6448115624, "methods": [ - 6444742816 + 6444743136, + 6442600368, + 6442600400 ], "bases": [ { @@ -29049,8 +29071,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302536, - "offset": 56, + "complete_object_locator": 6448306704, + "offset": 64, "constructor_displacement": 0, "class_attributes": 1 } @@ -29058,34 +29080,34 @@ }, { "type_name": "CMapListService", - "vtable_address": 6448045200, + "vtable_address": 6448049496, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444330240, - 6444331664, - 6444336496, - 6444330304 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444330528, + 6444331952, + 6444336784, + 6444330592 ], "bases": [ { @@ -29231,7 +29253,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448271584, + "complete_object_locator": 6448275760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29240,15 +29262,15 @@ }, { "type_name": "CMaterialSystem2AppSystemDict", - "vtable_address": 6448014352, + "vtable_address": 6448018672, "methods": [ - 6444125136, - 6444125536, - 6444090448, - 6444090464, - 6444090784, - 6444090944, - 6444091744 + 6444125424, + 6444125824, + 6444090736, + 6444090752, + 6444091072, + 6444091232, + 6444092032 ], "bases": [ { @@ -29310,7 +29332,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448259440, + "complete_object_locator": 6448263664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -29319,9 +29341,9 @@ }, { "type_name": "CMaterialSystem2AppSystemDict", - "vtable_address": 6448014440, + "vtable_address": 6448018760, "methods": [ - 6444130656 + 6444130944 ], "bases": [ { @@ -29383,7 +29405,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448259520, + "complete_object_locator": 6448263704, "offset": 1168, "constructor_displacement": 0, "class_attributes": 1 @@ -29392,9 +29414,9 @@ }, { "type_name": "CMetaDuplicationAutoCompletionFunctor", - "vtable_address": 6447883752, + "vtable_address": 6447887784, "methods": [ - 6443491648 + 6443495568 ], "bases": [ { @@ -29442,8 +29464,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228048, - "offset": 0, + "complete_object_locator": 6448232144, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -29451,9 +29473,9 @@ }, { "type_name": "CMetaDuplicationAutoCompletionFunctor", - "vtable_address": 6447883768, + "vtable_address": 6447887800, "methods": [ - 6443495376 + 6443491840 ], "bases": [ { @@ -29501,8 +29523,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448228008, - "offset": 8, + "complete_object_locator": 6448232184, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -29510,10 +29532,10 @@ }, { "type_name": "CMiniDumpCommentConvarsWriter", - "vtable_address": 6448078416, + "vtable_address": 6448082672, "methods": [ - 6444587216, - 6444587232 + 6444587504, + 6444587520 ], "bases": [ { @@ -29533,7 +29555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294552, + "complete_object_locator": 6448299048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29542,9 +29564,9 @@ }, { "type_name": "CModuleMetadataProvider_ResourceManifests", - "vtable_address": 6447391168, + "vtable_address": 6447395264, "methods": [ - 6446655424 + 6446655728 ], "bases": [ { @@ -29564,7 +29586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448154928, + "complete_object_locator": 6448159152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29573,11 +29595,11 @@ }, { "type_name": "CMovieRecorder", - "vtable_address": 6447888640, + "vtable_address": 6447892616, "methods": [ - 6443547580, - 6443543824, - 6443544000 + 6443547772, + 6443544016, + 6443544192 ], "bases": [ { @@ -29625,7 +29647,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230304, + "complete_object_locator": 6448234520, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -29634,20 +29656,20 @@ }, { "type_name": "CMovieRecorder", - "vtable_address": 6447888672, + "vtable_address": 6447892648, "methods": [ - 6443535248, - 6443544688, - 6443539152, - 6443540576, - 6443540656, - 6443540672, - 6443540592, - 6443541264, - 6443540704, - 6443542560, - 6443544128, - 6443540688 + 6443535440, + 6443544880, + 6443539344, + 6443540768, + 6443540848, + 6443540864, + 6443540784, + 6443541456, + 6443540896, + 6443542752, + 6443544320, + 6443540880 ], "bases": [ { @@ -29695,7 +29717,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230344, + "complete_object_locator": 6448234560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -29704,13 +29726,13 @@ }, { "type_name": "CMovieRecorder", - "vtable_address": 6447888776, + "vtable_address": 6447892752, "methods": [ - 6443542816, - 6442600464, - 6442600464, - 6443543568, - 6443543712 + 6443543008, + 6442600368, + 6442600368, + 6443543760, + 6443543904 ], "bases": [ { @@ -29758,7 +29780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448230384, + "complete_object_locator": 6448234600, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -29767,10 +29789,10 @@ }, { "type_name": "CMsgConvarsWriter", - "vtable_address": 6448078376, + "vtable_address": 6448082648, "methods": [ - 6444587312, - 6444587328 + 6444587600, + 6444587616 ], "bases": [ { @@ -29790,7 +29812,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294592, + "complete_object_locator": 6448298968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29799,25 +29821,25 @@ }, { "type_name": "CMsgIPCAddress", - "vtable_address": 6447977704, + "vtable_address": 6447982152, "methods": [ - 6443872832, - 6444851872, - 6443862880, - 6443975152, + 6443873120, + 6444852176, + 6443863168, + 6443975440, 6442590368, - 6444851920, - 6444849504, - 6443975840, + 6444852224, + 6444849808, + 6443976128, 6442600000, - 6443975200, - 6442600384, - 6443975616, - 6444853136, - 6444854608, - 6443805552, - 6443976016, - 6443975920 + 6443975488, + 6442600400, + 6443975904, + 6444853440, + 6444854912, + 6443805840, + 6443976304, + 6443976208 ], "bases": [ { @@ -29851,7 +29873,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251808, + "complete_object_locator": 6448256224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29860,25 +29882,25 @@ }, { "type_name": "CMsgPlayerInfo", - "vtable_address": 6447994424, + "vtable_address": 6447998712, "methods": [ - 6444029280, - 6444851872, - 6444027968, - 6444038016, + 6444029568, + 6444852176, + 6444028256, + 6444038304, 6442590368, - 6444851920, - 6444849504, - 6444039280, + 6444852224, + 6444849808, + 6444039568, 6442600000, - 6444038096, - 6442600384, - 6444038896, - 6444853136, - 6444854608, - 6443805552, - 6444039936, - 6444039440 + 6444038384, + 6442600400, + 6444039184, + 6444853440, + 6444854912, + 6443805840, + 6444040224, + 6444039728 ], "bases": [ { @@ -29912,7 +29934,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257440, + "complete_object_locator": 6448261600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29921,25 +29943,27 @@ }, { "type_name": "CMsgQAngle", - "vtable_address": 6448004216, + "vtable_address": 6448008496, "methods": [ - 6444028640, - 6444851872, - 6444027904, - 6443824032, + 6444028928, + 6444852176, + 6444028192, + 6443824320, 6442590368, - 6444851920, - 6444849504, - 6444034672, + 6444852224, + 6444849808, + 6444034960, 6442600000, - 6444034080, - 6442600384, - 6444034464, - 6444853136, - 6444854608, - 6443805552, + 6444034368, + 6442600400, 6444034752, - 6444034736 + 6444853440, + 6444854912, + 6443805840, + 6444035040, + 6444035024, + 6444850480, + 6444039744 ], "bases": [ { @@ -29973,7 +29997,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256848, + "complete_object_locator": 6448260888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -29982,25 +30006,25 @@ }, { "type_name": "CMsgQuaternion", - "vtable_address": 6447997552, + "vtable_address": 6448001872, "methods": [ - 6444028784, - 6444851872, - 6444027920, - 6444032464, + 6444029072, + 6444852176, + 6444028208, + 6444032752, 6442590368, - 6444851920, - 6444849504, - 6444033168, + 6444852224, + 6444849808, + 6444033456, 6442600000, - 6444032496, - 6442600384, - 6444032928, - 6444853136, - 6444854608, - 6443805552, - 6444034832, - 6444034816 + 6444032784, + 6442600400, + 6444033216, + 6444853440, + 6444854912, + 6443805840, + 6444035120, + 6444035104 ], "bases": [ { @@ -30034,7 +30058,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258728, + "complete_object_locator": 6448262976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30043,37 +30067,35 @@ }, { "type_name": "CMsgRGBA", - "vtable_address": 6448004360, + "vtable_address": 6448008656, "methods": [ - 6444029136, - 6444851872, - 6444027952, - 6444032464, + 6444029424, + 6444852176, + 6444028240, + 6444032752, 6442590368, - 6444851920, - 6444849504, - 6444037760, + 6444852224, + 6444849808, + 6444038048, 6442600000, - 6444036560, - 6442600384, - 6444037264, - 6444853136, - 6444854608, - 6443805552, - 6444037952, - 6444037936, - 6444850176, - 6444039456, - 6444850176, - 6444033264, - 6444850176, - 6443946272, - 6444850176, - 6443887536, - 6444850176, - 6444044512, - 6444850176, - 6444068272 + 6444036848, + 6442600400, + 6444037552, + 6444853440, + 6444854912, + 6443805840, + 6444038240, + 6444038224, + 6444850480, + 6444033552, + 6444850480, + 6443946560, + 6444850480, + 6443887824, + 6444850480, + 6444068560, + 6444850480, + 6444044800 ], "bases": [ { @@ -30107,7 +30129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256584, + "complete_object_locator": 6448260928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30116,25 +30138,25 @@ }, { "type_name": "CMsgServerNetworkStats", - "vtable_address": 6447978808, + "vtable_address": 6447983096, "methods": [ - 6443874896, - 6444851872, - 6443863264, - 6443993760, + 6443875184, + 6444852176, + 6443863552, + 6443994048, 6442590368, - 6444851920, - 6444849504, - 6443998640, + 6444852224, + 6444849808, + 6443998928, 6442600000, - 6443994144, - 6442600384, - 6443996512, - 6444853136, - 6444854608, - 6443805552, - 6444000272, - 6443999648 + 6443994432, + 6442600400, + 6443996800, + 6444853440, + 6444854912, + 6443805840, + 6444000560, + 6443999936 ], "bases": [ { @@ -30168,7 +30190,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253464, + "complete_object_locator": 6448257680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30177,31 +30199,31 @@ }, { "type_name": "CMsgServerNetworkStats_Player", - "vtable_address": 6447977032, + "vtable_address": 6447981320, "methods": [ - 6443874736, - 6444851872, - 6443863024, - 6443991696, + 6443875024, + 6444852176, + 6443863312, + 6443991984, 6442590368, - 6444851920, - 6444849504, - 6443993312, + 6444852224, + 6444849808, + 6443993600, 6442600000, - 6443991776, - 6442600384, - 6443992720, - 6444853136, - 6444854608, - 6443805552, - 6443993552, - 6443993536, - 6444850176, - 6443979968, - 6444850176, - 6444004304, - 6444850176, - 6443834688 + 6443992064, + 6442600400, + 6443993008, + 6444853440, + 6444854912, + 6443805840, + 6443993840, + 6443993824, + 6444850480, + 6443980256, + 6444850480, + 6444004592, + 6444850480, + 6443929936 ], "bases": [ { @@ -30235,7 +30257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253336, + "complete_object_locator": 6448257592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30244,27 +30266,31 @@ }, { "type_name": "CMsgServerNetworkStats_Port", - "vtable_address": 6447976696, + "vtable_address": 6447980952, "methods": [ - 6443874576, - 6444851872, - 6443863008, - 6443841344, + 6443874864, + 6444852176, + 6443863296, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443991632, - 6443991616, - 6444850176, - 6443862048 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443991920, + 6443991904, + 6444850480, + 6443898640, + 6444850480, + 6443842528, + 6444850480, + 6443862336 ], "bases": [ { @@ -30298,7 +30324,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254520, + "complete_object_locator": 6448258584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30307,29 +30333,25 @@ }, { "type_name": "CMsgServerPeer", - "vtable_address": 6447970264, + "vtable_address": 6447974424, "methods": [ - 6443872976, - 6444851872, - 6443862896, - 6443976080, + 6443873264, + 6444852176, + 6443863184, + 6443976368, 6442590368, - 6444851920, - 6444849504, - 6443977488, + 6444852224, + 6444849808, + 6443977776, 6442600000, - 6443976208, - 6442600384, - 6443977104, - 6444853136, - 6444854608, - 6443805552, - 6443978032, - 6443977728, - 6444850176, - 6443975936, - 6444850176, - 6443884432 + 6443976496, + 6442600400, + 6443977392, + 6444853440, + 6444854912, + 6443805840, + 6443978320, + 6443978016 ], "bases": [ { @@ -30363,7 +30385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253040, + "complete_object_locator": 6448257400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30372,29 +30394,25 @@ }, { "type_name": "CMsgServerUserCmd", - "vtable_address": 6447978008, + "vtable_address": 6447982008, "methods": [ - 6443875952, - 6444851872, - 6443863296, - 6444008672, + 6443876240, + 6444852176, + 6443863584, + 6444008960, 6442590368, - 6444851920, - 6444849504, - 6444010064, + 6444852224, + 6444849808, + 6444010352, 6442600000, - 6444008752, - 6442600384, - 6444009536, - 6444853136, - 6444854608, - 6443805552, - 6444010512, - 6444010288, - 6444850176, - 6443925168, - 6444850176, - 6443887536 + 6444009040, + 6442600400, + 6444009824, + 6444853440, + 6444854912, + 6443805840, + 6444010800, + 6444010576 ], "bases": [ { @@ -30428,7 +30446,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255048, + "complete_object_locator": 6448259464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30437,25 +30455,25 @@ }, { "type_name": "CMsgSource2NetworkFlowQuality", - "vtable_address": 6447949904, + "vtable_address": 6447954192, "methods": [ - 6443866096, - 6444851872, - 6443862336, - 6443901392, + 6443866384, + 6444852176, + 6443862624, + 6443901680, 6442590368, - 6444851920, - 6444849504, - 6443911344, - 6442825072, - 6443901552, - 6442600384, - 6443906880, - 6444853136, - 6444854608, - 6443901376, - 6443913888, - 6443913056 + 6444852224, + 6444849808, + 6443911632, + 6442825520, + 6443901840, + 6442600400, + 6443907168, + 6444853440, + 6444854912, + 6443901664, + 6443914176, + 6443913344 ], "bases": [ { @@ -30489,7 +30507,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249672, + "complete_object_locator": 6448253960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30498,27 +30516,25 @@ }, { "type_name": "CMsgSource2PerfIntervalSample", - "vtable_address": 6447976344, + "vtable_address": 6447980808, "methods": [ - 6443866400, - 6444851872, - 6443862368, - 6443914800, + 6443866688, + 6444852176, + 6443862656, + 6443915088, 6442590368, - 6444851920, - 6444849504, - 6443916112, + 6444852224, + 6444849808, + 6443916400, 6442600000, - 6443915008, - 6442600384, - 6443915696, - 6444853136, - 6444854608, - 6443805552, - 6443916480, - 6443916464, - 6444850176, - 6443999664 + 6443915296, + 6442600400, + 6443915984, + 6444853440, + 6444854912, + 6443805840, + 6443916768, + 6443916752 ], "bases": [ { @@ -30552,7 +30568,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253104, + "complete_object_locator": 6448257312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30561,35 +30577,37 @@ }, { "type_name": "CMsgSource2PerfIntervalSample_Tag", - "vtable_address": 6447968920, + "vtable_address": 6447973176, "methods": [ - 6443866240, - 6444851872, - 6443862352, - 6443841344, + 6443866528, + 6444852176, + 6443862640, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443913952, - 6442600384, - 6443914432, - 6444853136, - 6444854608, - 6443805552, - 6443914672, - 6443914656, - 6444850176, - 6443919312, - 6444850176, - 6443863040, - 6444850176, - 6443932288, - 6444850176, - 6443877968, - 6444850176, - 6443887536 + 6443914240, + 6442600400, + 6443914720, + 6444853440, + 6444854912, + 6443805840, + 6443914960, + 6443914944, + 6444850480, + 6443971552, + 6444850480, + 6443953888, + 6444850480, + 6443863328, + 6444850480, + 6443919600, + 6444850480, + 6443932576, + 6444850480, + 6443878256 ], "bases": [ { @@ -30623,7 +30641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254712, + "complete_object_locator": 6448259048, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30632,29 +30650,27 @@ }, { "type_name": "CMsgSource2SystemSpecs", - "vtable_address": 6447975880, + "vtable_address": 6447974712, "methods": [ - 6443865536, - 6444851872, - 6443862288, - 6443889792, + 6443865824, + 6444852176, + 6443862576, + 6443890080, 6442590368, - 6444851920, - 6444849504, - 6443892640, + 6444852224, + 6444849808, + 6443892928, 6442600000, - 6443889968, - 6442600384, - 6443891472, - 6444853136, - 6444854608, - 6443805552, - 6443893648, - 6443893200, - 6444850176, - 6443900720, - 6444850176, - 6443884432 + 6443890256, + 6442600400, + 6443891760, + 6444853440, + 6444854912, + 6443805840, + 6443893936, + 6443893488, + 6444850480, + 6443901008 ], "bases": [ { @@ -30688,7 +30704,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250912, + "complete_object_locator": 6448255288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30697,27 +30713,25 @@ }, { "type_name": "CMsgSource2VProfLiteReport", - "vtable_address": 6447984016, + "vtable_address": 6447988320, "methods": [ - 6443865888, - 6444851872, - 6443862320, - 6443899216, + 6443866176, + 6444852176, + 6443862608, + 6443899504, 6442590368, - 6444851920, - 6444849504, - 6443900480, + 6444852224, + 6444849808, + 6443900768, 6442600000, - 6443899584, - 6442600384, - 6443900192, - 6444853136, - 6444854608, - 6443805552, - 6443900960, - 6443900704, - 6444850176, - 6443844608 + 6443899872, + 6442600400, + 6443900480, + 6444853440, + 6444854912, + 6443805840, + 6443901248, + 6443900992 ], "bases": [ { @@ -30751,7 +30765,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251768, + "complete_object_locator": 6448256088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30760,25 +30774,25 @@ }, { "type_name": "CMsgSource2VProfLiteReportItem", - "vtable_address": 6447975736, + "vtable_address": 6447974568, "methods": [ - 6443865728, - 6444851872, - 6443862304, - 6443893712, + 6443866016, + 6444852176, + 6443862592, + 6443894000, 6442590368, - 6444851920, - 6444849504, - 6443897664, + 6444852224, + 6444849808, + 6443897952, 6442600000, - 6443893824, - 6442600384, - 6443895920, - 6444853136, - 6444854608, - 6443805552, - 6443898704, - 6443898336 + 6443894112, + 6442600400, + 6443896208, + 6444853440, + 6444854912, + 6443805840, + 6443898992, + 6443898624 ], "bases": [ { @@ -30812,7 +30826,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252360, + "complete_object_locator": 6448256656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30821,29 +30835,29 @@ }, { "type_name": "CMsgTransform", - "vtable_address": 6448004600, + "vtable_address": 6448008880, "methods": [ - 6444028928, - 6444851872, - 6444027936, - 6444034896, + 6444029216, + 6444852176, + 6444028224, + 6444035184, 6442590368, - 6444851920, - 6444849504, - 6444035760, + 6444852224, + 6444849808, + 6444036048, 6442600000, - 6444035040, - 6442600384, - 6444035552, - 6444853136, - 6444854608, - 6443805552, - 6444036496, - 6444036064, - 6444850176, - 6444033264, - 6444850176, - 6444062064 + 6444035328, + 6442600400, + 6444035840, + 6444853440, + 6444854912, + 6443805840, + 6444036784, + 6444036352, + 6444850480, + 6444062352, + 6444850480, + 6444033552 ], "bases": [ { @@ -30877,7 +30891,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257192, + "complete_object_locator": 6448261400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30886,25 +30900,25 @@ }, { "type_name": "CMsgVector", - "vtable_address": 6448004776, + "vtable_address": 6448009056, "methods": [ - 6444028352, - 6444851872, - 6444027872, - 6444032464, + 6444028640, + 6444852176, + 6444028160, + 6444032752, 6442590368, - 6444851920, - 6444849504, - 6444033168, + 6444852224, + 6444849808, + 6444033456, 6442600000, - 6444032496, - 6442600384, - 6444032928, - 6444853136, - 6444854608, - 6443805552, - 6444033360, - 6444033248 + 6444032784, + 6442600400, + 6444033216, + 6444853440, + 6444854912, + 6443805840, + 6444033648, + 6444033536 ], "bases": [ { @@ -30938,7 +30952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257112, + "complete_object_locator": 6448261440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -30947,39 +30961,37 @@ }, { "type_name": "CMsgVector2D", - "vtable_address": 6447997904, + "vtable_address": 6448002192, "methods": [ - 6444028496, - 6444851872, - 6444027888, - 6443883488, + 6444028784, + 6444852176, + 6444028176, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6444033952, + 6444852224, + 6444849808, + 6444034240, 6442600000, - 6444033424, - 6442600384, - 6444033776, - 6444853136, - 6444854608, - 6443805552, - 6444034016, - 6444034000, - 6444850176, - 6444041360, - 6444850176, - 6443887536, - 6444850176, - 6443946272, - 6444850176, - 6443884432, - 6444850176, - 6444054208, - 6444850176, - 6444047968, - 6444850176, - 6444072752 + 6444033712, + 6442600400, + 6444034064, + 6444853440, + 6444854912, + 6443805840, + 6444034304, + 6444034288, + 6444850480, + 6444041648, + 6444850480, + 6443887824, + 6444850480, + 6443946560, + 6444850480, + 6443884720, + 6444850480, + 6444054496, + 6444850480, + 6444048256 ], "bases": [ { @@ -31013,7 +31025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257640, + "complete_object_locator": 6448261936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31022,25 +31034,29 @@ }, { "type_name": "CMsgVoiceAudio", - "vtable_address": 6447952456, + "vtable_address": 6447956680, "methods": [ - 6443863632, - 6444851872, - 6443862032, - 6443879360, + 6443863920, + 6444852176, + 6443862320, + 6443879648, 6442590368, - 6444851920, - 6444849504, - 6443881680, + 6444852224, + 6444849808, + 6443881968, 6442600000, - 6443879472, - 6442600384, - 6443880704, - 6444853136, - 6444854608, - 6443805552, - 6443882048, - 6443882032 + 6443879760, + 6442600400, + 6443880992, + 6444853440, + 6444854912, + 6443805840, + 6443882336, + 6443882320, + 6444850480, + 6443951024, + 6444850480, + 6443943024 ], "bases": [ { @@ -31074,7 +31090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255808, + "complete_object_locator": 6448260080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31083,25 +31099,27 @@ }, { "type_name": "CMsg_CVars", - "vtable_address": 6447999024, + "vtable_address": 6448003168, "methods": [ - 6444029760, - 6444851872, - 6444028016, - 6444040416, + 6444030048, + 6444852176, + 6444028304, + 6444040704, 6442590368, - 6444851920, - 6444849504, - 6444041056, + 6444852224, + 6444849808, + 6444041344, 6442600144, - 6444040640, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6444041536, - 6444041344 + 6444040928, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6444041824, + 6444041632, + 6444850480, + 6443946560 ], "bases": [ { @@ -31135,7 +31153,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258416, + "complete_object_locator": 6448262672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31144,25 +31162,27 @@ }, { "type_name": "CMsg_CVars_CVar", - "vtable_address": 6447998880, + "vtable_address": 6448003328, "methods": [ - 6444029584, - 6444851872, - 6444028000, - 6443846784, + 6444029872, + 6444852176, + 6444028288, + 6443847072, 6442590368, - 6444851920, - 6444849504, - 6443847424, + 6444852224, + 6444849808, + 6443847712, 6442600000, - 6443846880, - 6442600384, - 6443847264, - 6444853136, - 6444854608, - 6443805552, - 6444040352, - 6444040336 + 6443847168, + 6442600400, + 6443847552, + 6444853440, + 6444854912, + 6443805840, + 6444040640, + 6444040624, + 6444850480, + 6443847856 ], "bases": [ { @@ -31196,7 +31216,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256704, + "complete_object_locator": 6448260848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31205,25 +31225,25 @@ }, { "type_name": "CNETMsg_DebugOverlay", - "vtable_address": 6448005064, + "vtable_address": 6448009200, "methods": [ - 6444032384, - 6444851872, - 6442954736, - 6444069600, + 6444032672, + 6444852176, + 6442954816, + 6444069888, 6442590368, - 6444851920, - 6444849504, - 6444071952, + 6444852224, + 6444849808, + 6444072240, 6442600000, - 6444069904, - 6442600384, - 6444071168, - 6444853136, - 6444854608, - 6443805552, - 6444073088, - 6444072736 + 6444070192, + 6442600400, + 6444071456, + 6444853440, + 6444854912, + 6443805840, + 6444073376, + 6444073024 ], "bases": [ { @@ -31257,7 +31277,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258032, + "complete_object_locator": 6448262320, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31266,25 +31286,25 @@ }, { "type_name": "CNETMsg_DebugOverlay_t", - "vtable_address": 6447831080, + "vtable_address": 6447835224, "methods": [ - 6443127012, - 6444851872, - 6442954736, - 6444069600, + 6443127204, + 6444852176, + 6442954816, + 6444069888, 6442590368, - 6444851920, - 6444849504, - 6444071952, + 6444852224, + 6444849808, + 6444072240, 6442600000, - 6444069904, - 6442600384, - 6444071168, - 6444853136, - 6444854608, - 6443805552, - 6444073088, - 6444072736 + 6444070192, + 6442600400, + 6444071456, + 6444853440, + 6444854912, + 6443805840, + 6444073376, + 6444073024 ], "bases": [ { @@ -31360,7 +31380,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209912, + "complete_object_locator": 6448214176, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -31369,13 +31389,13 @@ }, { "type_name": "CNETMsg_DebugOverlay_t", - "vtable_address": 6447831224, + "vtable_address": 6447835368, "methods": [ - 6443046432, - 6442694608, - 6442694608, - 6443047904, - 6443047984 + 6443046624, + 6442695056, + 6442695056, + 6443048096, + 6443048176 ], "bases": [ { @@ -31451,7 +31471,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209952, + "complete_object_locator": 6448214136, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -31460,29 +31480,29 @@ }, { "type_name": "CNETMsg_NOP", - "vtable_address": 6447997728, + "vtable_address": 6448002016, "methods": [ - 6443813616, - 6444851872, - 6444028032, - 6444866016, + 6443813904, + 6444852176, + 6444028320, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6444041616, - 6444041600, - 6444850176, - 6444045552, - 6444850176, - 6443887536 + 6444041904, + 6444041888, + 6444850480, + 6443887824, + 6444850480, + 6444052048 ], "bases": [ { @@ -31530,7 +31550,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257008, + "complete_object_locator": 6448261176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31539,25 +31559,25 @@ }, { "type_name": "CNETMsg_SetConVar", - "vtable_address": 6447994712, + "vtable_address": 6447999000, "methods": [ - 6444030400, - 6444851872, - 6442846560, - 6444044912, + 6444030688, + 6444852176, + 6442847008, + 6444045200, 6442590368, - 6444851920, - 6444849504, - 6444045472, + 6444852224, + 6444849808, + 6444045760, 6442600000, - 6444044976, - 6442600384, - 6444045360, - 6444853136, - 6444854608, - 6443805552, - 6444045840, - 6444045536 + 6444045264, + 6442600400, + 6444045648, + 6444853440, + 6444854912, + 6443805840, + 6444046128, + 6444045824 ], "bases": [ { @@ -31591,7 +31611,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257600, + "complete_object_locator": 6448261824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31600,13 +31620,13 @@ }, { "type_name": "CNETMsg_SetConVar_t", - "vtable_address": 6447803928, + "vtable_address": 6447808040, "methods": [ - 6442846912, - 6442694608, - 6442694608, - 6442910752, - 6442910832 + 6442847360, + 6442695056, + 6442695056, + 6442910832, + 6442910912 ], "bases": [ { @@ -31682,7 +31702,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190720, + "complete_object_locator": 6448194944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -31691,25 +31711,25 @@ }, { "type_name": "CNETMsg_SetConVar_t", - "vtable_address": 6447803976, + "vtable_address": 6447808088, "methods": [ - 6442936688, - 6444851872, - 6442846560, - 6444044912, + 6442936768, + 6444852176, + 6442847008, + 6444045200, 6442590368, - 6444851920, - 6444849504, - 6444045472, + 6444852224, + 6444849808, + 6444045760, 6442600000, - 6444044976, - 6442600384, - 6444045360, - 6444853136, - 6444854608, - 6443805552, - 6444045840, - 6444045536 + 6444045264, + 6442600400, + 6444045648, + 6444853440, + 6444854912, + 6443805840, + 6444046128, + 6444045824 ], "bases": [ { @@ -31785,7 +31805,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190760, + "complete_object_locator": 6448194984, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -31794,25 +31814,25 @@ }, { "type_name": "CNETMsg_SignonState", - "vtable_address": 6447994568, + "vtable_address": 6447998856, "methods": [ - 6444030592, - 6444851872, - 6442846576, - 6444045904, + 6444030880, + 6444852176, + 6442847024, + 6444046192, 6442590368, - 6444851920, - 6444849504, - 6444047584, + 6444852224, + 6444849808, + 6444047872, 6442600000, - 6444046048, - 6442600384, - 6444046960, - 6444853136, - 6444854608, - 6443805552, - 6444048224, - 6444047952 + 6444046336, + 6442600400, + 6444047248, + 6444853440, + 6444854912, + 6443805840, + 6444048512, + 6444048240 ], "bases": [ { @@ -31846,7 +31866,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257752, + "complete_object_locator": 6448261976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -31855,25 +31875,25 @@ }, { "type_name": "CNETMsg_SignonState_t", - "vtable_address": 6447803016, + "vtable_address": 6447807128, "methods": [ - 6442936724, - 6444851872, - 6442846576, - 6444045904, + 6442936804, + 6444852176, + 6442847024, + 6444046192, 6442590368, - 6444851920, - 6444849504, - 6444047584, + 6444852224, + 6444849808, + 6444047872, 6442600000, - 6444046048, - 6442600384, - 6444046960, - 6444853136, - 6444854608, - 6443805552, - 6444048224, - 6444047952 + 6444046336, + 6442600400, + 6444047248, + 6444853440, + 6444854912, + 6443805840, + 6444048512, + 6444048240 ], "bases": [ { @@ -31949,7 +31969,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190400, + "complete_object_locator": 6448194624, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -31958,13 +31978,13 @@ }, { "type_name": "CNETMsg_SignonState_t", - "vtable_address": 6447803688, + "vtable_address": 6447807800, "methods": [ - 6442848096, - 6442694608, - 6442694608, - 6442911296, - 6442911376 + 6442848544, + 6442695056, + 6442695056, + 6442911376, + 6442911456 ], "bases": [ { @@ -32040,7 +32060,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190520, + "complete_object_locator": 6448194744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -32049,25 +32069,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load", - "vtable_address": 6447995432, + "vtable_address": 6447999720, "methods": [ - 6444031504, - 6444851872, + 6444031792, + 6444852176, 6442600704, - 6444055504, + 6444055792, 6442590368, - 6444851920, - 6444849504, - 6444059008, + 6444852224, + 6444849808, + 6444059296, 6442600000, - 6444055936, - 6442600384, - 6444057712, - 6444853136, - 6444854608, - 6443805552, - 6444060944, - 6444059952 + 6444056224, + 6442600400, + 6444058000, + 6444853440, + 6444854912, + 6443805840, + 6444061232, + 6444060240 ], "bases": [ { @@ -32101,7 +32121,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256288, + "complete_object_locator": 6448260552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -32110,25 +32130,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted", - "vtable_address": 6448005208, + "vtable_address": 6448009344, "methods": [ - 6444032016, - 6444851872, - 6442954704, - 6443886880, + 6444032304, + 6444852176, + 6442954784, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6444040208, + 6444852224, + 6444849808, + 6444040496, 6442600000, - 6443886912, - 6442600384, - 6444040032, - 6444853136, - 6444854608, - 6443805552, - 6444064064, - 6444064048 + 6443887200, + 6442600400, + 6444040320, + 6444853440, + 6444854912, + 6443805840, + 6444064352, + 6444064336 ], "bases": [ { @@ -32162,7 +32182,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258232, + "complete_object_locator": 6448262456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -32171,25 +32191,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted_t", - "vtable_address": 6447829856, + "vtable_address": 6447833840, "methods": [ - 6443126964, - 6444851872, - 6442954704, - 6443886880, + 6443127156, + 6444852176, + 6442954784, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6444040208, + 6444852224, + 6444849808, + 6444040496, 6442600000, - 6443886912, - 6442600384, - 6444040032, - 6444853136, - 6444854608, - 6443805552, - 6444064064, - 6444064048 + 6443887200, + 6442600400, + 6444040320, + 6444853440, + 6444854912, + 6443805840, + 6444064352, + 6444064336 ], "bases": [ { @@ -32265,7 +32285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207968, + "complete_object_locator": 6448212192, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -32274,13 +32294,13 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted_t", - "vtable_address": 6447830000, + "vtable_address": 6447833984, "methods": [ - 6442955904, - 6442694608, - 6442694608, - 6443048160, - 6443048240 + 6442955984, + 6442695056, + 6442695056, + 6443048352, + 6443048432 ], "bases": [ { @@ -32356,7 +32376,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208008, + "complete_object_locator": 6448212232, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -32365,25 +32385,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load_t", - "vtable_address": 6447764272, + "vtable_address": 6447768376, "methods": [ - 6442737880, - 6444851872, + 6442738328, + 6444852176, 6442600704, - 6444055504, + 6444055792, 6442590368, - 6444851920, - 6444849504, - 6444059008, + 6444852224, + 6444849808, + 6444059296, 6442600000, - 6444055936, - 6442600384, - 6444057712, - 6444853136, - 6444854608, - 6443805552, - 6444060944, - 6444059952 + 6444056224, + 6442600400, + 6444058000, + 6444853440, + 6444854912, + 6443805840, + 6444061232, + 6444060240 ], "bases": [ { @@ -32459,7 +32479,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170992, + "complete_object_locator": 6448175216, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -32468,13 +32488,13 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load_t", - "vtable_address": 6447764416, + "vtable_address": 6447768520, "methods": [ 6442601168, - 6442694608, - 6442694608, - 6442704352, - 6442704432 + 6442695056, + 6442695056, + 6442704800, + 6442704880 ], "bases": [ { @@ -32550,7 +32570,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171032, + "complete_object_locator": 6448175256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -32559,25 +32579,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate", - "vtable_address": 6447995288, + "vtable_address": 6447999576, "methods": [ - 6444031568, - 6444851872, + 6444031856, + 6444852176, 6442600720, - 6444061008, + 6444061296, 6442590368, - 6444851920, - 6444849504, - 6444061936, - 6442600000, - 6444061088, - 6442600384, - 6444061680, - 6444853136, - 6444854608, - 6443805552, + 6444852224, + 6444849808, 6444062224, - 6444062048 + 6442600000, + 6444061376, + 6442600400, + 6444061968, + 6444853440, + 6444854912, + 6443805840, + 6444062512, + 6444062336 ], "bases": [ { @@ -32611,7 +32631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257256, + "complete_object_locator": 6448261480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -32620,25 +32640,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate_t", - "vtable_address": 6447867656, + "vtable_address": 6447871552, "methods": [ - 6442738132, - 6444851872, + 6442738580, + 6444852176, 6442600720, - 6444061008, + 6444061296, 6442590368, - 6444851920, - 6444849504, - 6444061936, - 6442600000, - 6444061088, - 6442600384, - 6444061680, - 6444853136, - 6444854608, - 6443805552, + 6444852224, + 6444849808, 6444062224, - 6444062048 + 6442600000, + 6444061376, + 6442600400, + 6444061968, + 6444853440, + 6444854912, + 6443805840, + 6444062512, + 6444062336 ], "bases": [ { @@ -32714,7 +32734,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223776, + "complete_object_locator": 6448227832, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -32723,13 +32743,13 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate_t", - "vtable_address": 6447867800, + "vtable_address": 6447871696, "methods": [ 6442601264, - 6442694608, - 6442694608, - 6442704608, - 6442704688 + 6442695056, + 6442695056, + 6442705056, + 6442705136 ], "bases": [ { @@ -32805,7 +32825,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223696, + "complete_object_locator": 6448228072, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -32814,25 +32834,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick", - "vtable_address": 6447995144, + "vtable_address": 6447999432, "methods": [ - 6444031728, - 6444851872, + 6444032016, + 6444852176, 6442600736, - 6443824032, + 6443824320, 6442590368, - 6444851920, - 6444849504, - 6444063248, + 6444852224, + 6444849808, + 6444063536, 6442600000, - 6444062288, - 6442600384, - 6444062880, - 6444853136, - 6444854608, - 6443805552, - 6444063392, - 6444063376 + 6444062576, + 6442600400, + 6444063168, + 6444853440, + 6444854912, + 6443805840, + 6444063680, + 6444063664 ], "bases": [ { @@ -32866,7 +32886,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258688, + "complete_object_locator": 6448262936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -32875,25 +32895,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick_t", - "vtable_address": 6447867848, + "vtable_address": 6447871744, "methods": [ - 6442737832, - 6444851872, + 6442738280, + 6444852176, 6442600736, - 6443824032, + 6443824320, 6442590368, - 6444851920, - 6444849504, - 6444063248, + 6444852224, + 6444849808, + 6444063536, 6442600000, - 6444062288, - 6442600384, - 6444062880, - 6444853136, - 6444854608, - 6443805552, - 6444063392, - 6444063376 + 6444062576, + 6442600400, + 6444063168, + 6444853440, + 6444854912, + 6443805840, + 6444063680, + 6444063664 ], "bases": [ { @@ -32969,7 +32989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223856, + "complete_object_locator": 6448227912, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -32978,13 +32998,13 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick_t", - "vtable_address": 6447867992, + "vtable_address": 6447871888, "methods": [ 6442601456, - 6442694608, - 6442694608, - 6442704992, - 6442705072 + 6442695056, + 6442695056, + 6442705440, + 6442705520 ], "bases": [ { @@ -33060,7 +33080,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223736, + "complete_object_locator": 6448227792, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -33069,25 +33089,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload", - "vtable_address": 6447995000, + "vtable_address": 6447999288, "methods": [ - 6444031872, - 6444851872, + 6444032160, + 6444852176, 6442600752, - 6443824032, + 6443824320, 6442590368, - 6444851920, - 6444849504, - 6444063840, + 6444852224, + 6444849808, + 6444064128, 6442600000, - 6444062288, - 6442600384, - 6444063456, - 6444853136, - 6444854608, - 6443805552, - 6444063984, - 6444063968 + 6444062576, + 6442600400, + 6444063744, + 6444853440, + 6444854912, + 6443805840, + 6444064272, + 6444064256 ], "bases": [ { @@ -33121,7 +33141,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256248, + "complete_object_locator": 6448260512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33130,25 +33150,25 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload_t", - "vtable_address": 6447867464, + "vtable_address": 6447871936, "methods": [ - 6442738156, - 6444851872, + 6442738604, + 6444852176, 6442600752, - 6443824032, + 6443824320, 6442590368, - 6444851920, - 6444849504, - 6444063840, + 6444852224, + 6444849808, + 6444064128, 6442600000, - 6444062288, - 6442600384, - 6444063456, - 6444853136, - 6444854608, - 6443805552, - 6444063984, - 6444063968 + 6444062576, + 6442600400, + 6444063744, + 6444853440, + 6444854912, + 6443805840, + 6444064272, + 6444064256 ], "bases": [ { @@ -33224,7 +33244,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223576, + "complete_object_locator": 6448227952, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -33233,13 +33253,13 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload_t", - "vtable_address": 6447867608, + "vtable_address": 6447872080, "methods": [ 6442601632, - 6442694608, - 6442694608, - 6442705312, - 6442705392 + 6442695056, + 6442695056, + 6442705760, + 6442705840 ], "bases": [ { @@ -33315,7 +33335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223816, + "complete_object_locator": 6448227872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -33324,27 +33344,25 @@ }, { "type_name": "CNETMsg_SplitScreenUser", - "vtable_address": 6447998720, + "vtable_address": 6448003024, "methods": [ - 6444029936, - 6444851872, - 6444028048, - 6443886880, + 6444030224, + 6444852176, + 6444028336, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, - 6444041696, - 6444041680, - 6444850176, - 6444036080 + 6443887200, + 6442600400, + 6443887584, + 6444853440, + 6444854912, + 6443805840, + 6444041984, + 6444041968 ], "bases": [ { @@ -33378,7 +33396,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256744, + "complete_object_locator": 6448260728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33387,25 +33405,25 @@ }, { "type_name": "CNETMsg_StringCmd", - "vtable_address": 6448005352, + "vtable_address": 6448009632, "methods": [ - 6444030240, - 6444851872, - 6442954688, - 6443841344, + 6444030528, + 6444852176, + 6442954768, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443913952, - 6442600384, - 6443914432, - 6444853136, - 6444854608, - 6443805552, - 6444044848, - 6444044832 + 6443914240, + 6442600400, + 6443914720, + 6444853440, + 6444854912, + 6443805840, + 6444045136, + 6444045120 ], "bases": [ { @@ -33439,7 +33457,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257336, + "complete_object_locator": 6448261664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33448,25 +33466,25 @@ }, { "type_name": "CNETMsg_StringCmd_t", - "vtable_address": 6447830096, + "vtable_address": 6447834368, "methods": [ - 6443126880, - 6444851872, - 6442954688, - 6443841344, + 6443127072, + 6444852176, + 6442954768, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443913952, - 6442600384, - 6443914432, - 6444853136, - 6444854608, - 6443805552, - 6444044848, - 6444044832 + 6443914240, + 6442600400, + 6443914720, + 6444853440, + 6444854912, + 6443805840, + 6444045136, + 6444045120 ], "bases": [ { @@ -33542,7 +33560,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208288, + "complete_object_locator": 6448212512, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -33551,13 +33569,13 @@ }, { "type_name": "CNETMsg_StringCmd_t", - "vtable_address": 6447830240, + "vtable_address": 6447834512, "methods": [ - 6442955424, - 6442694608, - 6442694608, - 6443047536, - 6443047616 + 6442955504, + 6442695056, + 6442695056, + 6443047728, + 6443047808 ], "bases": [ { @@ -33633,7 +33651,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208328, + "complete_object_locator": 6448212552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -33642,25 +33660,25 @@ }, { "type_name": "CNETMsg_Tick", - "vtable_address": 6447994856, + "vtable_address": 6447999144, "methods": [ - 6444030080, - 6444851872, - 6442846544, - 6444041760, + 6444030368, + 6444852176, + 6442846992, + 6444042048, 6442590368, - 6444851920, - 6444849504, - 6444044112, + 6444852224, + 6444849808, + 6444044400, 6442600000, - 6444041856, - 6442600384, - 6444043136, - 6444853136, - 6444854608, - 6443805552, - 6444044768, - 6444044496 + 6444042144, + 6442600400, + 6444043424, + 6444853440, + 6444854912, + 6443805840, + 6444045056, + 6444044784 ], "bases": [ { @@ -33694,7 +33712,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256392, + "complete_object_locator": 6448260472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33703,25 +33721,25 @@ }, { "type_name": "CNETMsg_Tick_t", - "vtable_address": 6447803352, + "vtable_address": 6447807464, "methods": [ - 6442936712, - 6444851872, - 6442846544, - 6444041760, + 6442936792, + 6444852176, + 6442846992, + 6444042048, 6442590368, - 6444851920, - 6444849504, - 6444044112, + 6444852224, + 6444849808, + 6444044400, 6442600000, - 6444041856, - 6442600384, - 6444043136, - 6444853136, - 6444854608, - 6443805552, - 6444044768, - 6444044496 + 6444042144, + 6442600400, + 6444043424, + 6444853440, + 6444854912, + 6443805840, + 6444045056, + 6444044784 ], "bases": [ { @@ -33797,7 +33815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190880, + "complete_object_locator": 6448195104, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -33806,13 +33824,13 @@ }, { "type_name": "CNETMsg_Tick_t", - "vtable_address": 6447803736, + "vtable_address": 6447807848, "methods": [ - 6442847568, - 6442694608, - 6442694608, - 6442910896, - 6442910976 + 6442848016, + 6442695056, + 6442695056, + 6442910976, + 6442911056 ], "bases": [ { @@ -33888,7 +33906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190840, + "complete_object_locator": 6448195064, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -33897,7 +33915,7 @@ }, { "type_name": "CNetConsoleMgr", - "vtable_address": 6447741048, + "vtable_address": 6447745144, "methods": [ 6442590368, 6442590384, @@ -33921,7 +33939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448158656, + "complete_object_locator": 6448162880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33930,18 +33948,18 @@ }, { "type_name": "CNetMessage", - "vtable_address": 6447741792, + "vtable_address": 6447745888, "methods": [ 6442600640, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448172872, + "complete_object_locator": 6448177096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -33950,13 +33968,13 @@ }, { "type_name": "CNetMessagePB<-1,class C2S_CONNECTION_Message,0,1,0>", - "vtable_address": 6447775896, + "vtable_address": 6447780008, "methods": [ - 6442812464, - 6442694608, - 6442694608, - 6442823248, - 6442823328 + 6442812912, + 6442695056, + 6442695056, + 6442823696, + 6442823776 ], "bases": [ { @@ -34018,7 +34036,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179504, + "complete_object_locator": 6448183728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -34027,25 +34045,25 @@ }, { "type_name": "CNetMessagePB<-1,class C2S_CONNECTION_Message,0,1,0>", - "vtable_address": 6447775992, + "vtable_address": 6447780104, "methods": [ - 6442824124, - 6444851872, - 6442807520, - 6443810496, + 6442824572, + 6444852176, + 6442807968, + 6443810784, 6442590368, - 6444851920, - 6444849504, - 6443811248, + 6444852224, + 6444849808, + 6443811536, 6442600000, - 6443810624, - 6442600384, - 6443811088, - 6444853136, - 6444854608, - 6443805552, - 6443811792, - 6443811488 + 6443810912, + 6442600400, + 6443811376, + 6444853440, + 6444854912, + 6443805840, + 6443812080, + 6443811776 ], "bases": [ { @@ -34107,7 +34125,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179464, + "complete_object_locator": 6448183688, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -34116,17 +34134,17 @@ }, { "type_name": "CNetMessagePB<-1,class C2S_CONNECTION_Message,0,1,0>::CProtobufBinding", - "vtable_address": 6447775592, + "vtable_address": 6447779704, "methods": [ - 6442820992, - 6442690016, - 6442702256, - 6442724480, - 6442823392, + 6442821440, + 6442690464, + 6442702704, + 6442724928, + 6442823840, 6442590368, - 6442820832, - 6442600464, - 6442600464 + 6442821280, + 6442600368, + 6442600368 ], "bases": [ { @@ -34146,7 +34164,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179424, + "complete_object_locator": 6448183648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -34155,25 +34173,25 @@ }, { "type_name": "CNetMessagePB<-1,class C2S_CONNECT_Message,0,1,0>", - "vtable_address": 6447776328, + "vtable_address": 6447780440, "methods": [ - 6442824136, - 6444851872, - 6442807504, - 6443807184, + 6442824584, + 6444852176, + 6442807952, + 6443807472, 6442590368, - 6444851920, - 6444849504, - 6443809296, + 6444852224, + 6444849808, + 6443809584, 6442600000, - 6443807536, - 6442600384, - 6443808640, - 6444853136, - 6444854608, - 6443805552, - 6443810432, - 6443809888 + 6443807824, + 6442600400, + 6443808928, + 6444853440, + 6444854912, + 6443805840, + 6443810720, + 6443810176 ], "bases": [ { @@ -34235,7 +34253,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179704, + "complete_object_locator": 6448183928, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -34244,13 +34262,13 @@ }, { "type_name": "CNetMessagePB<-1,class C2S_CONNECT_Message,0,1,0>", - "vtable_address": 6447776472, + "vtable_address": 6447780584, "methods": [ - 6442810704, - 6442694608, - 6442694608, - 6442822848, - 6442822928 + 6442811152, + 6442695056, + 6442695056, + 6442823296, + 6442823376 ], "bases": [ { @@ -34312,7 +34330,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179624, + "complete_object_locator": 6448183848, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -34321,17 +34339,17 @@ }, { "type_name": "CNetMessagePB<-1,class C2S_CONNECT_Message,0,1,0>::CProtobufBinding", - "vtable_address": 6447775672, + "vtable_address": 6447779784, "methods": [ - 6442819472, - 6442702240, - 6442702256, - 6442724480, - 6442823104, + 6442819920, + 6442702688, + 6442702704, + 6442724928, + 6442823552, 6442590368, - 6442819248, - 6442600464, - 6442600464 + 6442819696, + 6442600368, + 6442600368 ], "bases": [ { @@ -34351,7 +34369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179664, + "complete_object_locator": 6448183888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -34360,13 +34378,25 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageConnectionClosed,11,1,0>", - "vtable_address": 6447825720, + "vtable_address": 6447830040, "methods": [ - 6443042656, - 6442694608, - 6442694608, - 6443057872, - 6443057952 + 6443127132, + 6444852176, + 6442960208, + 6443841632, + 6442590368, + 6444852224, + 6444849808, + 6443879232, + 6442600000, + 6443841696, + 6442600400, + 6444008656, + 6444853440, + 6444854912, + 6443805840, + 6444079232, + 6444079216 ], "bases": [ { @@ -34428,8 +34458,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204888, - "offset": 0, + "complete_object_locator": 6448208952, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -34437,25 +34467,13 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageConnectionClosed,11,1,0>", - "vtable_address": 6447826296, + "vtable_address": 6447830424, "methods": [ - 6443126940, - 6444851872, - 6442960128, - 6443841344, - 6442590368, - 6444851920, - 6444849504, - 6443878944, - 6442600000, - 6443841408, - 6442600384, - 6444008368, - 6444853136, - 6444854608, - 6443805552, - 6444078944, - 6444078928 + 6443042848, + 6442695056, + 6442695056, + 6443058064, + 6443058144 ], "bases": [ { @@ -34517,8 +34535,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204848, - "offset": 48, + "complete_object_locator": 6448208992, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -34526,17 +34544,17 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageConnectionClosed,11,1,0>::CProtobufBinding", - "vtable_address": 6447819592, + "vtable_address": 6447823960, "methods": [ - 6443101616, - 6442690016, - 6442702256, - 6443100240, - 6443115744, + 6443101808, + 6442690464, + 6442702704, + 6443100432, + 6443115936, 6442590368, - 6443101456, - 6442600464, - 6442600464 + 6443101648, + 6442600368, + 6442600368 ], "bases": [ { @@ -34556,7 +34574,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204728, + "complete_object_locator": 6448209072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -34565,25 +34583,25 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageConnectionCrashed,11,1,0>", - "vtable_address": 6447825768, + "vtable_address": 6447830472, "methods": [ - 6443127168, - 6444851872, - 6442960144, - 6443841344, + 6443127360, + 6444852176, + 6442960224, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443841408, - 6442600384, - 6444008368, - 6444853136, - 6444854608, - 6443805552, - 6444079024, - 6444079008 + 6443841696, + 6442600400, + 6444008656, + 6444853440, + 6444854912, + 6443805840, + 6444079312, + 6444079296 ], "bases": [ { @@ -34645,7 +34663,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204768, + "complete_object_locator": 6448208792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -34654,13 +34672,13 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageConnectionCrashed,11,1,0>", - "vtable_address": 6447825912, + "vtable_address": 6447830616, "methods": [ - 6443042464, - 6442694608, - 6442694608, - 6443058240, - 6443058320 + 6443042656, + 6442695056, + 6442695056, + 6443058432, + 6443058512 ], "bases": [ { @@ -34722,7 +34740,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204688, + "complete_object_locator": 6448209032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -34731,17 +34749,17 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageConnectionCrashed,11,1,0>::CProtobufBinding", - "vtable_address": 6447819832, + "vtable_address": 6447823720, "methods": [ - 6443103040, - 6442690016, - 6442702256, - 6443100240, - 6443115888, + 6443103232, + 6442690464, + 6442702704, + 6443100432, + 6443116080, 6442590368, - 6443102880, - 6442600464, - 6442600464 + 6443103072, + 6442600368, + 6442600368 ], "bases": [ { @@ -34761,7 +34779,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204528, + "complete_object_locator": 6448208912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -34770,25 +34788,25 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageSplitscreenUserChanged,11,1,0>", - "vtable_address": 6447826104, + "vtable_address": 6447829848, "methods": [ - 6443126460, - 6444851872, - 6442960112, - 6443886880, + 6443126652, + 6444852176, + 6442960192, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6444040208, + 6444852224, + 6444849808, + 6444040496, 6442600000, - 6443886912, - 6442600384, - 6444040032, - 6444853136, - 6444854608, - 6443805552, - 6444078864, - 6444078848 + 6443887200, + 6442600400, + 6444040320, + 6444853440, + 6444854912, + 6443805840, + 6444079152, + 6444079136 ], "bases": [ { @@ -34850,7 +34868,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204928, + "complete_object_locator": 6448209112, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -34859,13 +34877,13 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageSplitscreenUserChanged,11,1,0>", - "vtable_address": 6447826248, + "vtable_address": 6447829992, "methods": [ - 6443042848, - 6442694608, - 6442694608, - 6443057568, - 6443057648 + 6443043040, + 6442695056, + 6442695056, + 6443057760, + 6443057840 ], "bases": [ { @@ -34927,7 +34945,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204968, + "complete_object_locator": 6448209152, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -34936,17 +34954,17 @@ }, { "type_name": "CNetMessagePB<-1,class NetMessageSplitscreenUserChanged,11,1,0>::CProtobufBinding", - "vtable_address": 6447819672, + "vtable_address": 6447824040, "methods": [ - 6443100256, - 6442687648, - 6442702256, - 6443100240, - 6443115600, + 6443100448, + 6442688096, + 6442702704, + 6443100432, + 6443115792, 6442590368, - 6443100096, - 6442600464, - 6442600464 + 6443100288, + 6442600368, + 6442600368 ], "bases": [ { @@ -34966,7 +34984,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204808, + "complete_object_locator": 6448209192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -34975,25 +34993,13 @@ }, { "type_name": "CNetMessagePB<1073741824,class NetMessagePacketStart,11,1,0>", - "vtable_address": 6447825960, + "vtable_address": 6447830184, "methods": [ - 6443126712, - 6444851872, - 6442960160, - 6444866016, - 6442590368, - 6444851920, - 6444849504, - 6444866000, - 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, - 6442599968, - 6444079104, - 6444079088 + 6443042560, + 6442695056, + 6442695056, + 6443058800, + 6443058880 ], "bases": [ { @@ -35069,8 +35075,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204448, - "offset": 48, + "complete_object_locator": 6448208872, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -35078,13 +35084,25 @@ }, { "type_name": "CNetMessagePB<1073741824,class NetMessagePacketStart,11,1,0>", - "vtable_address": 6447826440, + "vtable_address": 6447830664, "methods": [ - 6443042368, - 6442694608, - 6442694608, - 6443058608, - 6443058688 + 6443126904, + 6444852176, + 6442960240, + 6444866320, + 6442590368, + 6444852224, + 6444849808, + 6444866304, + 6442599952, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, + 6442599968, + 6444079392, + 6444079376 ], "bases": [ { @@ -35160,8 +35178,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204488, - "offset": 0, + "complete_object_locator": 6448208832, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -35169,17 +35187,17 @@ }, { "type_name": "CNetMessagePB<1073741824,class NetMessagePacketStart,11,1,0>::CProtobufBinding", - "vtable_address": 6447819752, + "vtable_address": 6447823640, "methods": [ - 6443104432, - 6442691312, - 6442702256, - 6443100240, - 6443116032, + 6443104624, + 6442691760, + 6442702704, + 6443100432, + 6443116224, 6442590368, - 6443104304, - 6442600464, - 6442600464 + 6443104496, + 6442600368, + 6442600368 ], "bases": [ { @@ -35199,7 +35217,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204648, + "complete_object_locator": 6448208712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -35208,25 +35226,25 @@ }, { "type_name": "CNetMessagePB<1073741825,class NetMessagePacketEnd,11,1,0>", - "vtable_address": 6447826488, + "vtable_address": 6447830232, "methods": [ - 6443126616, - 6444851872, - 6442960176, - 6444866016, + 6443126808, + 6444852176, + 6442960256, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6444079184, - 6444079168 + 6444079472, + 6444079456 ], "bases": [ { @@ -35302,7 +35320,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204568, + "complete_object_locator": 6448208632, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -35311,13 +35329,13 @@ }, { "type_name": "CNetMessagePB<1073741825,class NetMessagePacketEnd,11,1,0>", - "vtable_address": 6447826632, + "vtable_address": 6447830376, "methods": [ - 6443042272, - 6442694608, - 6442694608, - 6443058896, - 6443058976 + 6443042464, + 6442695056, + 6442695056, + 6443059088, + 6443059168 ], "bases": [ { @@ -35393,7 +35411,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204608, + "complete_object_locator": 6448208672, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -35402,17 +35420,17 @@ }, { "type_name": "CNetMessagePB<1073741825,class NetMessagePacketEnd,11,1,0>::CProtobufBinding", - "vtable_address": 6447819512, + "vtable_address": 6447823800, "methods": [ - 6443105680, - 6442691312, - 6442702256, - 6443100240, - 6443116176, + 6443105872, + 6442691760, + 6442702704, + 6443100432, + 6443116368, 6442590368, - 6443105552, - 6442600464, - 6442600464 + 6443105744, + 6442600368, + 6442600368 ], "bases": [ { @@ -35432,7 +35450,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204368, + "complete_object_locator": 6448208752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -35441,25 +35459,25 @@ }, { "type_name": "CNetMessagePB<11,class CNETMsg_SpawnGroup_SetCreationTick,15,1,0>", - "vtable_address": 6447763696, + "vtable_address": 6447767800, "methods": [ - 6442737832, - 6444851872, + 6442738280, + 6444852176, 6442600736, - 6443824032, + 6443824320, 6442590368, - 6444851920, - 6444849504, - 6444063248, + 6444852224, + 6444849808, + 6444063536, 6442600000, - 6444062288, - 6442600384, - 6444062880, - 6444853136, - 6444854608, - 6443805552, - 6444063392, - 6444063376 + 6444062576, + 6442600400, + 6444063168, + 6444853440, + 6444854912, + 6443805840, + 6444063680, + 6444063664 ], "bases": [ { @@ -35521,7 +35539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170672, + "complete_object_locator": 6448174896, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -35530,13 +35548,13 @@ }, { "type_name": "CNetMessagePB<11,class CNETMsg_SpawnGroup_SetCreationTick,15,1,0>", - "vtable_address": 6447763840, + "vtable_address": 6447767944, "methods": [ 6442601456, - 6442694608, - 6442694608, - 6442704992, - 6442705072 + 6442695056, + 6442695056, + 6442705440, + 6442705520 ], "bases": [ { @@ -35598,7 +35616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170712, + "complete_object_locator": 6448174936, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -35607,17 +35625,17 @@ }, { "type_name": "CNetMessagePB<11,class CNETMsg_SpawnGroup_SetCreationTick,15,1,0>::CProtobufBinding", - "vtable_address": 6447756704, + "vtable_address": 6447760800, "methods": [ - 6442721760, - 6442690016, - 6442702256, - 6442718720, - 6442728640, + 6442722208, + 6442690464, + 6442702704, + 6442719168, + 6442729088, 6442590368, - 6442721616, - 6442600464, - 6442600464 + 6442722064, + 6442600368, + 6442600368 ], "bases": [ { @@ -35637,7 +35655,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170632, + "complete_object_locator": 6448174856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -35646,25 +35664,25 @@ }, { "type_name": "CNetMessagePB<12,class CNETMsg_SpawnGroup_Unload,15,1,0>", - "vtable_address": 6447763504, + "vtable_address": 6447767608, "methods": [ - 6442738156, - 6444851872, + 6442738604, + 6444852176, 6442600752, - 6443824032, + 6443824320, 6442590368, - 6444851920, - 6444849504, - 6444063840, + 6444852224, + 6444849808, + 6444064128, 6442600000, - 6444062288, - 6442600384, - 6444063456, - 6444853136, - 6444854608, - 6443805552, - 6444063984, - 6444063968 + 6444062576, + 6442600400, + 6444063744, + 6444853440, + 6444854912, + 6443805840, + 6444064272, + 6444064256 ], "bases": [ { @@ -35726,7 +35744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170552, + "complete_object_locator": 6448174776, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -35735,13 +35753,13 @@ }, { "type_name": "CNetMessagePB<12,class CNETMsg_SpawnGroup_Unload,15,1,0>", - "vtable_address": 6447763648, + "vtable_address": 6447767752, "methods": [ 6442601632, - 6442694608, - 6442694608, - 6442705312, - 6442705392 + 6442695056, + 6442695056, + 6442705760, + 6442705840 ], "bases": [ { @@ -35803,7 +35821,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170592, + "complete_object_locator": 6448174816, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -35812,17 +35830,17 @@ }, { "type_name": "CNetMessagePB<12,class CNETMsg_SpawnGroup_Unload,15,1,0>::CProtobufBinding", - "vtable_address": 6447756624, + "vtable_address": 6447760720, "methods": [ - 6442723120, - 6442690016, - 6442702256, - 6442718720, - 6442728784, + 6442723568, + 6442690464, + 6442702704, + 6442719168, + 6442729232, 6442590368, - 6442722976, - 6442600464, - 6442600464 + 6442723424, + 6442600368, + 6442600368 ], "bases": [ { @@ -35842,7 +35860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170512, + "complete_object_locator": 6448174736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -35851,25 +35869,13 @@ }, { "type_name": "CNetMessagePB<13,class CNETMsg_SpawnGroup_LoadCompleted,15,1,0>", - "vtable_address": 6447829664, + "vtable_address": 6447833792, "methods": [ - 6443126964, - 6444851872, - 6442954704, - 6443886880, - 6442590368, - 6444851920, - 6444849504, - 6444040208, - 6442600000, - 6443886912, - 6442600384, - 6444040032, - 6444853136, - 6444854608, - 6443805552, - 6444064064, - 6444064048 + 6442955984, + 6442695056, + 6442695056, + 6443048352, + 6443048432 ], "bases": [ { @@ -35931,8 +35937,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207888, - "offset": 48, + "complete_object_locator": 6448212152, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -35940,13 +35946,25 @@ }, { "type_name": "CNetMessagePB<13,class CNETMsg_SpawnGroup_LoadCompleted,15,1,0>", - "vtable_address": 6447829808, + "vtable_address": 6447834032, "methods": [ - 6442955904, - 6442694608, - 6442694608, - 6443048160, - 6443048240 + 6443127156, + 6444852176, + 6442954784, + 6443887168, + 6442590368, + 6444852224, + 6444849808, + 6444040496, + 6442600000, + 6443887200, + 6442600400, + 6444040320, + 6444853440, + 6444854912, + 6443805840, + 6444064352, + 6444064336 ], "bases": [ { @@ -36008,8 +36026,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207928, - "offset": 0, + "complete_object_locator": 6448212112, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -36017,17 +36035,17 @@ }, { "type_name": "CNetMessagePB<13,class CNETMsg_SpawnGroup_LoadCompleted,15,1,0>::CProtobufBinding", - "vtable_address": 6447821512, + "vtable_address": 6447825880, "methods": [ - 6443069296, - 6442687648, - 6442702256, - 6442718720, - 6443108160, + 6443069488, + 6442688096, + 6442702704, + 6442719168, + 6443108352, 6442590368, - 6443069152, - 6442600464, - 6442600464 + 6443069344, + 6442600368, + 6442600368 ], "bases": [ { @@ -36047,7 +36065,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207848, + "complete_object_locator": 6448212072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -36056,25 +36074,25 @@ }, { "type_name": "CNetMessagePB<15,class CNETMsg_DebugOverlay,16,1,0>", - "vtable_address": 6447821936, + "vtable_address": 6447826064, "methods": [ - 6443127012, - 6444851872, - 6442954736, - 6444069600, + 6443127204, + 6444852176, + 6442954816, + 6444069888, 6442590368, - 6444851920, - 6444849504, - 6444071952, + 6444852224, + 6444849808, + 6444072240, 6442600000, - 6444069904, - 6442600384, - 6444071168, - 6444853136, - 6444854608, - 6443805552, - 6444073088, - 6444072736 + 6444070192, + 6442600400, + 6444071456, + 6444853440, + 6444854912, + 6443805840, + 6444073376, + 6444073024 ], "bases": [ { @@ -36136,7 +36154,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208248, + "complete_object_locator": 6448212272, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -36145,13 +36163,13 @@ }, { "type_name": "CNetMessagePB<15,class CNETMsg_DebugOverlay,16,1,0>", - "vtable_address": 6447822080, + "vtable_address": 6447826208, "methods": [ - 6443046432, - 6442694608, - 6442694608, - 6443047904, - 6443047984 + 6443046624, + 6442695056, + 6442695056, + 6443048096, + 6443048176 ], "bases": [ { @@ -36213,7 +36231,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208088, + "complete_object_locator": 6448212352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -36222,17 +36240,17 @@ }, { "type_name": "CNetMessagePB<15,class CNETMsg_DebugOverlay,16,1,0>::CProtobufBinding", - "vtable_address": 6447821672, + "vtable_address": 6447825720, "methods": [ - 6443067728, - 6442715616, - 6442702256, - 6442765024, - 6443108016, + 6443067920, + 6442716064, + 6442702704, + 6442765472, + 6443108208, 6442590368, - 6443067648, - 6442600464, - 6442600464 + 6443067840, + 6442600368, + 6442600368 ], "bases": [ { @@ -36252,7 +36270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208048, + "complete_object_locator": 6448212312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -36261,13 +36279,25 @@ }, { "type_name": "CNetMessagePB<16,class CBidirMsg_RebroadcastGameEvent,5,1,1>", - "vtable_address": 6448098528, + "vtable_address": 6448102760, "methods": [ - 6444625936, - 6442694608, - 6442694608, - 6444637648, - 6444637728 + 6444645176, + 6444852176, + 6443863248, + 6443988880, + 6442590368, + 6444852224, + 6444849808, + 6443990080, + 6442600000, + 6443988928, + 6442600400, + 6443989648, + 6444853440, + 6444854912, + 6443805840, + 6443990336, + 6443990224 ], "bases": [ { @@ -36329,8 +36359,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299088, - "offset": 0, + "complete_object_locator": 6448303048, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -36338,25 +36368,13 @@ }, { "type_name": "CNetMessagePB<16,class CBidirMsg_RebroadcastGameEvent,5,1,1>", - "vtable_address": 6448098576, + "vtable_address": 6448102952, "methods": [ - 6444644872, - 6444851872, - 6443862960, - 6443988592, - 6442590368, - 6444851920, - 6444849504, - 6443989792, - 6442600000, - 6443988640, - 6442600384, - 6443989360, - 6444853136, - 6444854608, - 6443805552, - 6443990048, - 6443989936 + 6444626240, + 6442695056, + 6442695056, + 6444637952, + 6444638032 ], "bases": [ { @@ -36418,8 +36436,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448298888, - "offset": 48, + "complete_object_locator": 6448303288, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -36427,17 +36445,17 @@ }, { "type_name": "CNetMessagePB<16,class CBidirMsg_RebroadcastGameEvent,5,1,1>::CProtobufBinding", - "vtable_address": 6448097384, + "vtable_address": 6448101648, "methods": [ - 6444639952, - 6442686800, - 6442702256, - 6444639936, - 6444642512, + 6444640256, + 6442687248, + 6442702704, + 6444640240, + 6444642816, 6442590368, - 6444639776, + 6444640080, 6442590368, - 6442600464 + 6442600368 ], "bases": [ { @@ -36457,7 +36475,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448298808, + "complete_object_locator": 6448303088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -36466,13 +36484,25 @@ }, { "type_name": "CNetMessagePB<17,class CBidirMsg_RebroadcastSource,5,1,1>", - "vtable_address": 6448098336, + "vtable_address": 6448101992, "methods": [ - 6444630560, - 6442694608, - 6442694608, - 6444637968, - 6444638048 + 6444645188, + 6444852176, + 6443863264, + 6443887168, + 6442590368, + 6444852224, + 6444849808, + 6443887760, + 6442600000, + 6443887200, + 6442600400, + 6443887584, + 6444853440, + 6444854912, + 6443805840, + 6443990416, + 6443990400 ], "bases": [ { @@ -36534,8 +36564,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299008, - "offset": 0, + "complete_object_locator": 6448303128, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -36543,25 +36573,13 @@ }, { "type_name": "CNetMessagePB<17,class CBidirMsg_RebroadcastSource,5,1,1>", - "vtable_address": 6448098384, + "vtable_address": 6448102184, "methods": [ - 6444644884, - 6444851872, - 6443862976, - 6443886880, - 6442590368, - 6444851920, - 6444849504, - 6443887472, - 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, - 6443990128, - 6443990112 + 6444630864, + 6442695056, + 6442695056, + 6444638272, + 6444638352 ], "bases": [ { @@ -36623,8 +36641,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448298928, - "offset": 48, + "complete_object_locator": 6448303208, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -36632,17 +36650,17 @@ }, { "type_name": "CNetMessagePB<17,class CBidirMsg_RebroadcastSource,5,1,1>::CProtobufBinding", - "vtable_address": 6448097464, + "vtable_address": 6448101728, "methods": [ - 6444641312, - 6442687648, - 6442702256, - 6444639936, - 6444642656, + 6444641616, + 6442688096, + 6442702704, + 6444640240, + 6444642960, 6442590368, - 6444641168, + 6444641472, 6442590368, - 6442600464 + 6442600368 ], "bases": [ { @@ -36662,7 +36680,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448298768, + "complete_object_locator": 6448303168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -36671,25 +36689,25 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>", - "vtable_address": 6448051704, + "vtable_address": 6448055168, "methods": [ - 6444390948, - 6444851872, - 6443862992, - 6443971408, - 6443991536, - 6444851920, - 6444849504, - 6443991280, + 6444391236, + 6444852176, + 6443863280, + 6443971696, + 6443991824, + 6444852224, + 6444849808, + 6443991568, 6442600000, - 6443990192, - 6442600384, - 6443990880, - 6444853136, - 6444854608, - 6443805552, - 6443991552, - 6443991520 + 6443990480, + 6442600400, + 6443991168, + 6444853440, + 6444854912, + 6443805840, + 6443991840, + 6443991808 ], "bases": [ { @@ -36751,7 +36769,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275272, + "complete_object_locator": 6448279384, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -36760,13 +36778,13 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>", - "vtable_address": 6448051848, + "vtable_address": 6448055312, "methods": [ - 6444383552, - 6442694608, - 6442694608, - 6444385168, - 6444385248 + 6444383840, + 6442695056, + 6442695056, + 6444385456, + 6444385536 ], "bases": [ { @@ -36828,7 +36846,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275152, + "complete_object_locator": 6448279424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -36837,17 +36855,17 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>::CProtobufBinding", - "vtable_address": 6448050760, + "vtable_address": 6448055048, "methods": [ - 6444386576, - 6442686800, - 6442702256, - 6442724480, - 6444387840, - 6442600464, - 6444386416, - 6442600464, - 6442600464 + 6444386864, + 6442687248, + 6442702704, + 6442724928, + 6444388128, + 6442600368, + 6444386704, + 6442600368, + 6442600368 ], "bases": [ { @@ -36867,7 +36885,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275232, + "complete_object_locator": 6448279304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -36876,13 +36894,13 @@ }, { "type_name": "CNetMessagePB<20,class CCLCMsg_ClientInfo,10,1,0>", - "vtable_address": 6447801160, + "vtable_address": 6447805272, "methods": [ - 6442852800, - 6442694608, - 6442694608, - 6442911760, - 6442911840 + 6442853248, + 6442695056, + 6442695056, + 6442911840, + 6442911920 ], "bases": [ { @@ -36944,7 +36962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190160, + "complete_object_locator": 6448194384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -36953,25 +36971,25 @@ }, { "type_name": "CNetMessagePB<20,class CCLCMsg_ClientInfo,10,1,0>", - "vtable_address": 6447801208, + "vtable_address": 6447805320, "methods": [ - 6442936760, - 6444851872, - 6442846592, - 6443876576, + 6442936840, + 6444852176, + 6442847040, + 6443876864, 6442590368, - 6444851920, - 6444849504, - 6443877776, + 6444852224, + 6444849808, + 6443878064, 6442600000, - 6443876656, - 6442600384, - 6443877376, - 6444853136, - 6444854608, - 6443805552, - 6443878176, - 6443877952 + 6443876944, + 6442600400, + 6443877664, + 6444853440, + 6444854912, + 6443805840, + 6443878464, + 6443878240 ], "bases": [ { @@ -37033,7 +37051,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190040, + "complete_object_locator": 6448194264, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -37042,17 +37060,17 @@ }, { "type_name": "CNetMessagePB<20,class CCLCMsg_ClientInfo,10,1,0>::CProtobufBinding", - "vtable_address": 6447798304, + "vtable_address": 6447802416, "methods": [ - 6442921872, - 6442686800, - 6442702256, - 6442700880, - 6442932384, + 6442921952, + 6442687248, + 6442702704, + 6442701328, + 6442932464, 6442590368, - 6442921712, - 6442600464, - 6442600464 + 6442921792, + 6442600368, + 6442600368 ], "bases": [ { @@ -37072,7 +37090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190080, + "complete_object_locator": 6448194304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -37081,13 +37099,13 @@ }, { "type_name": "CNetMessagePB<21,class CCLCMsg_Move,8,0,0>", - "vtable_address": 6447800392, + "vtable_address": 6447804504, "methods": [ - 6442872000, - 6442694608, - 6442694608, - 6442912144, - 6442912224 + 6442872448, + 6442695056, + 6442695056, + 6442912224, + 6442912304 ], "bases": [ { @@ -37149,7 +37167,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189880, + "complete_object_locator": 6448194104, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37158,25 +37176,25 @@ }, { "type_name": "CNetMessagePB<21,class CCLCMsg_Move,8,0,0>", - "vtable_address": 6447800440, + "vtable_address": 6447804552, "methods": [ - 6442936676, - 6444851872, - 6442846608, - 6443841344, + 6442936756, + 6444852176, + 6442847056, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443878240, - 6442600384, - 6443878720, - 6444853136, - 6444854608, - 6443805552, - 6443879072, - 6443879056 + 6443878528, + 6442600400, + 6443879008, + 6444853440, + 6444854912, + 6443805840, + 6443879360, + 6443879344 ], "bases": [ { @@ -37238,7 +37256,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189920, + "complete_object_locator": 6448194144, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -37247,17 +37265,17 @@ }, { "type_name": "CNetMessagePB<21,class CCLCMsg_Move,8,0,0>::CProtobufBinding", - "vtable_address": 6447798384, + "vtable_address": 6447802496, "methods": [ - 6442923312, - 6442690016, - 6442702256, - 6442923296, - 6442932528, - 6442600464, - 6442923136, - 6442600464, - 6442600464 + 6442923392, + 6442690464, + 6442702704, + 6442923376, + 6442932608, + 6442600368, + 6442923216, + 6442600368, + 6442600368 ], "bases": [ { @@ -37277,7 +37295,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189960, + "complete_object_locator": 6448194184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -37286,25 +37304,25 @@ }, { "type_name": "CNetMessagePB<22,class CCLCMsg_VoiceData,6,0,0>", - "vtable_address": 6447865424, + "vtable_address": 6447869128, "methods": [ - 6443337528, - 6444851872, - 6443283312, - 6443882112, + 6443337720, + 6444852176, + 6443283504, + 6443882400, 6442590368, - 6444851920, - 6444849504, - 6443883072, + 6444852224, + 6444849808, + 6443883360, 6442600000, - 6443882304, - 6442600384, - 6443882816, - 6444853136, - 6444854608, - 6443805552, - 6443883424, - 6443883216 + 6443882592, + 6442600400, + 6443883104, + 6444853440, + 6444854912, + 6443805840, + 6443883712, + 6443883504 ], "bases": [ { @@ -37366,7 +37384,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223616, + "complete_object_locator": 6448227992, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -37375,13 +37393,13 @@ }, { "type_name": "CNetMessagePB<22,class CCLCMsg_VoiceData,6,0,0>", - "vtable_address": 6447865568, + "vtable_address": 6447869272, "methods": [ - 6443324656, - 6442694608, - 6442694608, - 6443324880, - 6443324960 + 6443324848, + 6442695056, + 6442695056, + 6443325072, + 6443325152 ], "bases": [ { @@ -37443,7 +37461,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223656, + "complete_object_locator": 6448228032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37452,17 +37470,17 @@ }, { "type_name": "CNetMessagePB<22,class CCLCMsg_VoiceData,6,0,0>::CProtobufBinding", - "vtable_address": 6447864696, + "vtable_address": 6447868624, "methods": [ - 6443328144, - 6442686800, - 6442702256, - 6443079120, - 6443336384, - 6442600464, - 6443327984, - 6442600464, - 6442600464 + 6443328336, + 6442687248, + 6442702704, + 6443079312, + 6443336576, + 6442600368, + 6443328176, + 6442600368, + 6442600368 ], "bases": [ { @@ -37482,7 +37500,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223456, + "complete_object_locator": 6448227712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -37491,25 +37509,25 @@ }, { "type_name": "CNetMessagePB<23,class CCLCMsg_BaselineAck,16,1,0>", - "vtable_address": 6447767648, + "vtable_address": 6447771744, "methods": [ - 6442768488, - 6444851872, - 6442744208, - 6443883488, + 6442768936, + 6444852176, + 6442744656, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443884320, + 6444852224, + 6444849808, + 6443884608, 6442600000, - 6443883520, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443884512, - 6443884416 + 6443883808, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443884800, + 6443884704 ], "bases": [ { @@ -37571,7 +37589,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174184, + "complete_object_locator": 6448178408, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -37580,13 +37598,13 @@ }, { "type_name": "CNetMessagePB<23,class CCLCMsg_BaselineAck,16,1,0>", - "vtable_address": 6447767792, + "vtable_address": 6447771888, "methods": [ - 6442759136, - 6442694608, - 6442694608, - 6442760320, - 6442760400 + 6442759584, + 6442695056, + 6442695056, + 6442760768, + 6442760848 ], "bases": [ { @@ -37648,7 +37666,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174224, + "complete_object_locator": 6448178448, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37657,17 +37675,17 @@ }, { "type_name": "CNetMessagePB<23,class CCLCMsg_BaselineAck,16,1,0>::CProtobufBinding", - "vtable_address": 6447767304, + "vtable_address": 6447771400, "methods": [ - 6442765040, - 6442687648, - 6442702256, - 6442765024, - 6442766256, + 6442765488, + 6442688096, + 6442702704, + 6442765472, + 6442766704, 6442590368, - 6442764896, - 6442600464, - 6442600464 + 6442765344, + 6442600368, + 6442600368 ], "bases": [ { @@ -37687,7 +37705,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174144, + "complete_object_locator": 6448178368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -37696,25 +37714,25 @@ }, { "type_name": "CNetMessagePB<25,class CCLCMsg_RespondCvarValue,0,1,0>", - "vtable_address": 6447827720, + "vtable_address": 6447831464, "methods": [ - 6443126952, - 6444851872, - 6442954752, - 6443885312, + 6443127144, + 6444852176, + 6442954832, + 6443885600, 6442590368, - 6444851920, - 6444849504, - 6443886400, + 6444852224, + 6444849808, + 6443886688, 6442600000, - 6443885424, - 6442600384, - 6443886032, - 6444853136, - 6444854608, - 6443805552, - 6443886816, - 6443886592 + 6443885712, + 6442600400, + 6443886320, + 6444853440, + 6444854912, + 6443805840, + 6443887104, + 6443886880 ], "bases": [ { @@ -37776,7 +37794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207688, + "complete_object_locator": 6448211952, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -37785,13 +37803,13 @@ }, { "type_name": "CNetMessagePB<25,class CCLCMsg_RespondCvarValue,0,1,0>", - "vtable_address": 6447827864, + "vtable_address": 6447831608, "methods": [ - 6443026576, - 6442694608, - 6442694608, - 6443048464, - 6443048544 + 6443026768, + 6442695056, + 6442695056, + 6443048656, + 6443048736 ], "bases": [ { @@ -37853,7 +37871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207728, + "complete_object_locator": 6448211992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37862,17 +37880,17 @@ }, { "type_name": "CNetMessagePB<25,class CCLCMsg_RespondCvarValue,0,1,0>::CProtobufBinding", - "vtable_address": 6447821592, + "vtable_address": 6447825560, "methods": [ - 6443070656, - 6442686800, - 6442702256, - 6442724480, - 6443108304, + 6443070848, + 6442687248, + 6442702704, + 6442724928, + 6443108496, 6442590368, - 6443070496, - 6442600464, - 6442600464 + 6443070688, + 6442600368, + 6442600368 ], "bases": [ { @@ -37892,7 +37910,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207648, + "complete_object_locator": 6448211912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -37901,13 +37919,13 @@ }, { "type_name": "CNetMessagePB<27,class CCLCMsg_LoadingProgress,10,1,0>", - "vtable_address": 6447800920, + "vtable_address": 6447805032, "methods": [ - 6442852992, - 6442694608, - 6442694608, - 6442912512, - 6442912592 + 6442853440, + 6442695056, + 6442695056, + 6442912592, + 6442912672 ], "bases": [ { @@ -37969,7 +37987,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189680, + "complete_object_locator": 6448193904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -37978,25 +37996,25 @@ }, { "type_name": "CNetMessagePB<27,class CCLCMsg_LoadingProgress,10,1,0>", - "vtable_address": 6447800968, + "vtable_address": 6447805080, "methods": [ - 6442936700, - 6444851872, - 6442846624, - 6443886880, + 6442936780, + 6444852176, + 6442847072, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, + 6443887200, + 6442600400, 6443887584, - 6443887520 + 6444853440, + 6444854912, + 6443805840, + 6443887872, + 6443887808 ], "bases": [ { @@ -38058,7 +38076,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189720, + "complete_object_locator": 6448193944, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -38067,17 +38085,17 @@ }, { "type_name": "CNetMessagePB<27,class CCLCMsg_LoadingProgress,10,1,0>::CProtobufBinding", - "vtable_address": 6447798224, + "vtable_address": 6447802336, "methods": [ - 6442924720, - 6442687648, - 6442702256, - 6442700880, - 6442932672, + 6442924800, + 6442688096, + 6442702704, + 6442701328, + 6442932752, 6442590368, - 6442924576, - 6442600464, - 6442600464 + 6442924656, + 6442600368, + 6442600368 ], "bases": [ { @@ -38097,7 +38115,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189760, + "complete_object_locator": 6448193984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38106,25 +38124,25 @@ }, { "type_name": "CNetMessagePB<28,class CCLCMsg_SplitPlayerConnect,10,1,0>", - "vtable_address": 6447827144, + "vtable_address": 6447831656, "methods": [ - 6443126628, - 6444851872, - 6442954768, - 6443834080, + 6443126820, + 6444852176, + 6442954848, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443887664, - 6443887648 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443887952, + 6443887936 ], "bases": [ { @@ -38186,7 +38204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207248, + "complete_object_locator": 6448211552, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -38195,13 +38213,13 @@ }, { "type_name": "CNetMessagePB<28,class CCLCMsg_SplitPlayerConnect,10,1,0>", - "vtable_address": 6447827288, + "vtable_address": 6447831800, "methods": [ - 6443027632, - 6442694608, - 6442694608, - 6443049200, - 6443049280 + 6443027824, + 6442695056, + 6442695056, + 6443049392, + 6443049472 ], "bases": [ { @@ -38263,7 +38281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207408, + "complete_object_locator": 6448211432, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -38272,17 +38290,17 @@ }, { "type_name": "CNetMessagePB<28,class CCLCMsg_SplitPlayerConnect,10,1,0>::CProtobufBinding", - "vtable_address": 6447821192, + "vtable_address": 6447825480, "methods": [ - 6443073424, - 6442687648, - 6442702256, - 6442700880, - 6443108592, + 6443073616, + 6442688096, + 6442702704, + 6442701328, + 6443108784, 6442590368, - 6443073280, - 6442600464, - 6442600464 + 6443073472, + 6442600368, + 6442600368 ], "bases": [ { @@ -38302,7 +38320,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207208, + "complete_object_locator": 6448211512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38311,25 +38329,25 @@ }, { "type_name": "CNetMessagePB<30,class CCLCMsg_SplitPlayerDisconnect,10,1,0>", - "vtable_address": 6447865232, + "vtable_address": 6447869896, "methods": [ - 6443337300, - 6444851872, - 6443283328, - 6443886880, + 6443337492, + 6444852176, + 6443283520, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443887472, + 6444852224, + 6444849808, + 6443887760, 6442600000, - 6443886912, - 6442600384, - 6443887296, - 6444853136, - 6444854608, - 6443805552, - 6443887744, - 6443887728 + 6443887200, + 6442600400, + 6443887584, + 6444853440, + 6444854912, + 6443805840, + 6443888032, + 6443888016 ], "bases": [ { @@ -38391,7 +38409,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223496, + "complete_object_locator": 6448227752, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -38400,13 +38418,13 @@ }, { "type_name": "CNetMessagePB<30,class CCLCMsg_SplitPlayerDisconnect,10,1,0>", - "vtable_address": 6447865376, + "vtable_address": 6447870040, "methods": [ - 6443324480, - 6442694608, - 6442694608, - 6443325264, - 6443325344 + 6443324672, + 6442695056, + 6442695056, + 6443325456, + 6443325536 ], "bases": [ { @@ -38468,7 +38486,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223416, + "complete_object_locator": 6448227672, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -38477,17 +38495,17 @@ }, { "type_name": "CNetMessagePB<30,class CCLCMsg_SplitPlayerDisconnect,10,1,0>::CProtobufBinding", - "vtable_address": 6447864376, + "vtable_address": 6447868704, "methods": [ - 6443329552, - 6442687648, - 6442702256, - 6442700880, - 6443336528, + 6443329744, + 6442688096, + 6442702704, + 6442701328, + 6443336720, 6442590368, - 6443329408, - 6442600464, - 6442600464 + 6443329600, + 6442600368, + 6442600368 ], "bases": [ { @@ -38507,7 +38525,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223536, + "complete_object_locator": 6448227552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38516,25 +38534,25 @@ }, { "type_name": "CNetMessagePB<31,class CCLCMsg_ServerStatus,0,1,0>", - "vtable_address": 6447826808, + "vtable_address": 6447831272, "methods": [ - 6443126556, - 6444851872, - 6442954784, - 6443887808, + 6443126748, + 6444852176, + 6442954864, + 6443888096, 6442590368, - 6444851920, - 6444849504, - 6443888352, + 6444852224, + 6444849808, + 6443888640, 6442600000, - 6443887840, - 6442600384, - 6443888240, - 6444853136, - 6444854608, - 6443805552, - 6443888448, - 6443888384 + 6443888128, + 6442600400, + 6443888528, + 6444853440, + 6444854912, + 6443805840, + 6443888736, + 6443888672 ], "bases": [ { @@ -38596,7 +38614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207488, + "complete_object_locator": 6448211752, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -38605,13 +38623,13 @@ }, { "type_name": "CNetMessagePB<31,class CCLCMsg_ServerStatus,0,1,0>", - "vtable_address": 6447826952, + "vtable_address": 6447831416, "methods": [ - 6443029600, - 6442694608, - 6442694608, - 6443048896, - 6443048976 + 6443029792, + 6442695056, + 6442695056, + 6443049088, + 6443049168 ], "bases": [ { @@ -38673,7 +38691,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207528, + "complete_object_locator": 6448211792, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -38682,17 +38700,17 @@ }, { "type_name": "CNetMessagePB<31,class CCLCMsg_ServerStatus,0,1,0>::CProtobufBinding", - "vtable_address": 6447821432, + "vtable_address": 6447825640, "methods": [ - 6443072080, - 6442687648, - 6442702256, - 6442724480, - 6443108448, + 6443072272, + 6442688096, + 6442702704, + 6442724928, + 6443108640, 6442590368, - 6443071936, - 6442600464, - 6442600464 + 6443072128, + 6442600368, + 6442600368 ], "bases": [ { @@ -38712,7 +38730,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207448, + "complete_object_locator": 6448211712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38721,25 +38739,25 @@ }, { "type_name": "CNetMessagePB<33,class CCLCMsg_RequestPause,0,1,0>", - "vtable_address": 6447865040, + "vtable_address": 6447869704, "methods": [ - 6443337312, - 6444851872, - 6443283344, - 6443883488, + 6443337504, + 6444852176, + 6443283536, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443889088, + 6444852224, + 6444849808, + 6443889376, 6442600000, - 6443888512, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443889200, - 6443889184 + 6443888800, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443889488, + 6443889472 ], "bases": [ { @@ -38801,7 +38819,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223256, + "complete_object_locator": 6448227592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -38810,13 +38828,13 @@ }, { "type_name": "CNetMessagePB<33,class CCLCMsg_RequestPause,0,1,0>", - "vtable_address": 6447865184, + "vtable_address": 6447869848, "methods": [ - 6443324304, - 6442694608, - 6442694608, - 6443325568, - 6443325648 + 6443324496, + 6442695056, + 6442695056, + 6443325760, + 6443325840 ], "bases": [ { @@ -38878,7 +38896,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223296, + "complete_object_locator": 6448227632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -38887,17 +38905,17 @@ }, { "type_name": "CNetMessagePB<33,class CCLCMsg_RequestPause,0,1,0>::CProtobufBinding", - "vtable_address": 6447864456, + "vtable_address": 6447868784, "methods": [ - 6443330880, - 6442687648, - 6442702256, - 6442724480, - 6443336672, + 6443331072, + 6442688096, + 6442702704, + 6442724928, + 6443336864, 6442590368, - 6443330752, - 6442600464, - 6442600464 + 6443330944, + 6442600368, + 6442600368 ], "bases": [ { @@ -38917,7 +38935,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223376, + "complete_object_locator": 6448227472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -38926,13 +38944,13 @@ }, { "type_name": "CNetMessagePB<34,class CBaseCmdKeyValues,9,1,0>", - "vtable_address": 6447802776, + "vtable_address": 6447806888, "methods": [ - 6442848800, - 6442694608, - 6442694608, - 6442912816, - 6442912896 + 6442849248, + 6442695056, + 6442695056, + 6442912896, + 6442912976 ], "bases": [ { @@ -39008,7 +39026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189520, + "complete_object_locator": 6448193744, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -39017,25 +39035,25 @@ }, { "type_name": "CNetMessagePB<34,class CBaseCmdKeyValues,9,1,0>", - "vtable_address": 6447802824, + "vtable_address": 6447806936, "methods": [ - 6442936736, - 6444851872, - 6442846640, - 6443834080, + 6442936816, + 6444852176, + 6442847088, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443889280, - 6443889264 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443889568, + 6443889552 ], "bases": [ { @@ -39111,7 +39129,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189560, + "complete_object_locator": 6448193784, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -39120,17 +39138,17 @@ }, { "type_name": "CNetMessagePB<34,class CBaseCmdKeyValues,9,1,0>::CProtobufBinding", - "vtable_address": 6447798144, + "vtable_address": 6447802256, "methods": [ - 6442926176, - 6442690016, - 6442702256, - 6442917408, - 6442932816, + 6442926256, + 6442690464, + 6442702704, + 6442917488, + 6442932896, 6442590368, - 6442925920, - 6442600464, - 6442600464 + 6442926000, + 6442600368, + 6442600368 ], "bases": [ { @@ -39150,7 +39168,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189360, + "complete_object_locator": 6448193584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39159,25 +39177,25 @@ }, { "type_name": "CNetMessagePB<35,class CCLCMsg_RconServerDetails,0,1,0>", - "vtable_address": 6447865808, + "vtable_address": 6447869512, "methods": [ - 6443337444, - 6444851872, - 6443283360, - 6443834080, + 6443337636, + 6444852176, + 6443283552, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443889360, - 6443889344 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443889648, + 6443889632 ], "bases": [ { @@ -39239,7 +39257,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223096, + "complete_object_locator": 6448227512, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -39248,13 +39266,13 @@ }, { "type_name": "CNetMessagePB<35,class CCLCMsg_RconServerDetails,0,1,0>", - "vtable_address": 6447865952, + "vtable_address": 6447869656, "methods": [ - 6443324112, - 6442694608, - 6442694608, - 6443325872, - 6443325952 + 6443324304, + 6442695056, + 6442695056, + 6443326064, + 6443326144 ], "bases": [ { @@ -39316,7 +39334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223336, + "complete_object_locator": 6448227432, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -39325,17 +39343,17 @@ }, { "type_name": "CNetMessagePB<35,class CCLCMsg_RconServerDetails,0,1,0>::CProtobufBinding", - "vtable_address": 6447864536, + "vtable_address": 6447868384, "methods": [ - 6443332240, - 6442687648, - 6442702256, - 6442724480, - 6443336816, + 6443332432, + 6442688096, + 6442702704, + 6442724928, + 6443337008, 6442590368, - 6443332096, - 6442600464, - 6442600464 + 6443332288, + 6442600368, + 6442600368 ], "bases": [ { @@ -39355,7 +39373,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223136, + "complete_object_locator": 6448227312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39364,25 +39382,25 @@ }, { "type_name": "CNetMessagePB<36,class CCLCMsg_HltvReplay,17,1,0>", - "vtable_address": 6447865616, + "vtable_address": 6447869320, "methods": [ - 6443337492, - 6444851872, - 6443283376, - 6444003104, + 6443337684, + 6444852176, + 6443283568, + 6444003392, 6442590368, - 6444851920, - 6444849504, - 6444004160, + 6444852224, + 6444849808, + 6444004448, 6442600000, - 6444003152, - 6442600384, - 6444003760, - 6444853136, - 6444854608, - 6443805552, - 6444004416, - 6444004288 + 6444003440, + 6442600400, + 6444004048, + 6444853440, + 6444854912, + 6443805840, + 6444004704, + 6444004576 ], "bases": [ { @@ -39444,7 +39462,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223176, + "complete_object_locator": 6448227352, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -39453,13 +39471,13 @@ }, { "type_name": "CNetMessagePB<36,class CCLCMsg_HltvReplay,17,1,0>", - "vtable_address": 6447865760, + "vtable_address": 6447869464, "methods": [ - 6443323936, - 6442694608, - 6442694608, - 6443326240, - 6443326320 + 6443324128, + 6442695056, + 6442695056, + 6443326432, + 6443326512 ], "bases": [ { @@ -39521,7 +39539,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223216, + "complete_object_locator": 6448227392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -39530,17 +39548,17 @@ }, { "type_name": "CNetMessagePB<36,class CCLCMsg_HltvReplay,17,1,0>::CProtobufBinding", - "vtable_address": 6447864616, + "vtable_address": 6447868464, "methods": [ - 6443333664, - 6442686800, - 6442702256, - 6442930736, - 6443336960, + 6443333856, + 6442687248, + 6442702704, + 6442930816, + 6443337152, 6442590368, - 6443333504, - 6442600464, - 6442600464 + 6443333696, + 6442600368, + 6442600368 ], "bases": [ { @@ -39560,7 +39578,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222976, + "complete_object_locator": 6448227072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39569,25 +39587,25 @@ }, { "type_name": "CNetMessagePB<37,class CCLCMsg_Diagnostic,0,1,0>", - "vtable_address": 6447799288, + "vtable_address": 6447803400, "methods": [ - 6442936748, - 6444851872, - 6442846864, - 6443917216, + 6442936828, + 6444852176, + 6442847312, + 6443917504, 6442590368, - 6444851920, - 6444849504, - 6443918992, + 6444852224, + 6444849808, + 6443919280, 6442600000, - 6443917904, - 6442600384, - 6443918704, - 6444853136, - 6444854608, - 6443805552, - 6443919792, - 6443919296 + 6443918192, + 6442600400, + 6443918992, + 6444853440, + 6444854912, + 6443805840, + 6443920080, + 6443919584 ], "bases": [ { @@ -39649,7 +39667,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189200, + "complete_object_locator": 6448193424, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -39658,13 +39676,13 @@ }, { "type_name": "CNetMessagePB<37,class CCLCMsg_Diagnostic,0,1,0>", - "vtable_address": 6447799624, + "vtable_address": 6447803736, "methods": [ - 6442900880, - 6442694608, - 6442694608, - 6442913072, - 6442913152 + 6442900960, + 6442695056, + 6442695056, + 6442913152, + 6442913232 ], "bases": [ { @@ -39726,7 +39744,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189320, + "complete_object_locator": 6448193544, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -39735,17 +39753,17 @@ }, { "type_name": "CNetMessagePB<37,class CCLCMsg_Diagnostic,0,1,0>::CProtobufBinding", - "vtable_address": 6447797984, + "vtable_address": 6447802096, "methods": [ - 6442927712, - 6442801088, - 6442702256, - 6442724480, - 6442932960, + 6442927792, + 6442801536, + 6442702704, + 6442724928, + 6442933040, 6442590368, - 6442927520, - 6442600464, - 6442600464 + 6442927600, + 6442600368, + 6442600368 ], "bases": [ { @@ -39765,7 +39783,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189240, + "complete_object_locator": 6448193464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39774,13 +39792,13 @@ }, { "type_name": "CNetMessagePB<4,class CNETMsg_Tick,16,0,0>", - "vtable_address": 6447803496, + "vtable_address": 6447807608, "methods": [ - 6442847568, - 6442694608, - 6442694608, - 6442910896, - 6442910976 + 6442848016, + 6442695056, + 6442695056, + 6442910976, + 6442911056 ], "bases": [ { @@ -39842,7 +39860,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190560, + "complete_object_locator": 6448194784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -39851,25 +39869,25 @@ }, { "type_name": "CNetMessagePB<4,class CNETMsg_Tick,16,0,0>", - "vtable_address": 6447803544, + "vtable_address": 6447807656, "methods": [ - 6442936712, - 6444851872, - 6442846544, - 6444041760, + 6442936792, + 6444852176, + 6442846992, + 6444042048, 6442590368, - 6444851920, - 6444849504, - 6444044112, + 6444852224, + 6444849808, + 6444044400, 6442600000, - 6444041856, - 6442600384, - 6444043136, - 6444853136, - 6444854608, - 6443805552, - 6444044768, - 6444044496 + 6444042144, + 6442600400, + 6444043424, + 6444853440, + 6444854912, + 6443805840, + 6444045056, + 6444044784 ], "bases": [ { @@ -39931,7 +39949,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190440, + "complete_object_locator": 6448194664, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -39940,17 +39958,17 @@ }, { "type_name": "CNetMessagePB<4,class CNETMsg_Tick,16,0,0>::CProtobufBinding", - "vtable_address": 6447798544, + "vtable_address": 6447802656, "methods": [ - 6442918880, - 6442920160, - 6442702256, - 6442765024, - 6442932096, - 6442600464, - 6442918688, - 6442600464, - 6442600464 + 6442918960, + 6442920240, + 6442702704, + 6442765472, + 6442932176, + 6442600368, + 6442918768, + 6442600368, + 6442600368 ], "bases": [ { @@ -39970,7 +39988,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190480, + "complete_object_locator": 6448194704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -39979,25 +39997,25 @@ }, { "type_name": "CNetMessagePB<40,class CSVCMsg_ServerInfo,10,1,0>", - "vtable_address": 6447758200, + "vtable_address": 6447762296, "methods": [ - 6442737952, - 6444851872, + 6442738400, + 6444852176, 6442601040, - 6443926192, + 6443926480, 6442590368, - 6444851920, - 6444849504, - 6443929008, + 6444852224, + 6444849808, + 6443929296, 6442600000, - 6443926496, - 6442600384, - 6443927968, - 6444853136, - 6444854608, - 6443805552, - 6443930240, - 6443929632 + 6443926784, + 6442600400, + 6443928256, + 6444853440, + 6444854912, + 6443805840, + 6443930528, + 6443929920 ], "bases": [ { @@ -40059,7 +40077,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170432, + "complete_object_locator": 6448174656, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -40068,13 +40086,13 @@ }, { "type_name": "CNetMessagePB<40,class CSVCMsg_ServerInfo,10,1,0>", - "vtable_address": 6447758344, + "vtable_address": 6447762440, "methods": [ - 6442700304, - 6442694608, - 6442694608, - 6442705632, - 6442705712 + 6442700752, + 6442695056, + 6442695056, + 6442706080, + 6442706160 ], "bases": [ { @@ -40136,7 +40154,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170472, + "complete_object_locator": 6448174696, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -40145,17 +40163,17 @@ }, { "type_name": "CNetMessagePB<40,class CSVCMsg_ServerInfo,10,1,0>::CProtobufBinding", - "vtable_address": 6447757184, + "vtable_address": 6447761280, "methods": [ - 6442709840, - 6442697568, - 6442702256, - 6442700880, - 6442717200, + 6442710288, + 6442698016, + 6442702704, + 6442701328, + 6442717648, 6442590368, - 6442709696, - 6442600464, - 6442600464 + 6442710144, + 6442600368, + 6442600368 ], "bases": [ { @@ -40175,7 +40193,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170392, + "complete_object_locator": 6448174616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40184,25 +40202,25 @@ }, { "type_name": "CNetMessagePB<41,class CSVCMsg_FlattenedSerializerWrapper,10,1,0>", - "vtable_address": 6447758392, + "vtable_address": 6447762488, "methods": [ - 6442737988, - 6444851872, + 6442738436, + 6444852176, 6442601136, - 6443985600, + 6443985888, 6442590368, - 6444851920, - 6444849504, - 6443986960, + 6444852224, + 6444849808, + 6443987248, 6442601152, - 6443985984, - 6442600384, - 6443986608, - 6444853136, - 6444854608, - 6443985584, - 6443987984, - 6443987456 + 6443986272, + 6442600400, + 6443986896, + 6444853440, + 6444854912, + 6443985872, + 6443988272, + 6443987744 ], "bases": [ { @@ -40278,7 +40296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170272, + "complete_object_locator": 6448174496, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -40287,13 +40305,13 @@ }, { "type_name": "CNetMessagePB<41,class CSVCMsg_FlattenedSerializerWrapper,10,1,0>", - "vtable_address": 6447758536, + "vtable_address": 6447762632, "methods": [ - 6442700080, - 6442694608, - 6442694608, - 6442705888, - 6442705968 + 6442700528, + 6442695056, + 6442695056, + 6442706336, + 6442706416 ], "bases": [ { @@ -40369,7 +40387,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170312, + "complete_object_locator": 6448174536, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -40378,17 +40396,17 @@ }, { "type_name": "CNetMessagePB<41,class CSVCMsg_FlattenedSerializerWrapper,10,1,0>::CProtobufBinding", - "vtable_address": 6447757264, + "vtable_address": 6447761360, "methods": [ - 6442700896, - 6442702240, - 6442702256, - 6442700880, - 6442706032, + 6442701344, + 6442702688, + 6442702704, + 6442701328, + 6442706480, 6442590368, - 6442700624, - 6442600464, - 6442600464 + 6442701072, + 6442600368, + 6442600368 ], "bases": [ { @@ -40408,7 +40426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170232, + "complete_object_locator": 6448174456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40417,13 +40435,13 @@ }, { "type_name": "CNetMessagePB<42,class CSVCMsg_ClassInfo,10,1,0>", - "vtable_address": 6447799672, + "vtable_address": 6447803784, "methods": [ - 6442887776, - 6442694608, - 6442694608, - 6442913328, - 6442913408 + 6442887824, + 6442695056, + 6442695056, + 6442913408, + 6442913488 ], "bases": [ { @@ -40485,7 +40503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189040, + "complete_object_locator": 6448193264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -40494,25 +40512,25 @@ }, { "type_name": "CNetMessagePB<42,class CSVCMsg_ClassInfo,10,1,0>", - "vtable_address": 6447799720, + "vtable_address": 6447803832, "methods": [ - 6442936772, - 6444851872, - 6442846880, - 6443931088, + 6442936852, + 6444852176, + 6442847328, + 6443931376, 6442590368, - 6444851920, - 6444849504, - 6443931984, + 6444852224, + 6444849808, + 6443932272, 6442600000, - 6443931280, - 6442600384, - 6443931808, - 6444853136, - 6444854608, - 6443805552, - 6443932480, - 6443932272 + 6443931568, + 6442600400, + 6443932096, + 6444853440, + 6444854912, + 6443805840, + 6443932768, + 6443932560 ], "bases": [ { @@ -40574,7 +40592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189080, + "complete_object_locator": 6448193304, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -40583,17 +40601,17 @@ }, { "type_name": "CNetMessagePB<42,class CSVCMsg_ClassInfo,10,1,0>::CProtobufBinding", - "vtable_address": 6447798064, + "vtable_address": 6447802176, "methods": [ - 6442929280, - 6442930544, - 6442702256, - 6442700880, - 6442933104, + 6442929360, + 6442930624, + 6442702704, + 6442701328, + 6442933184, 6442590368, - 6442929120, - 6442600464, - 6442600464 + 6442929200, + 6442600368, + 6442600368 ], "bases": [ { @@ -40613,7 +40631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189120, + "complete_object_locator": 6448193344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40622,25 +40640,25 @@ }, { "type_name": "CNetMessagePB<43,class CSVCMsg_SetPause,0,1,0>", - "vtable_address": 6447761960, + "vtable_address": 6447766056, "methods": [ - 6442738072, - 6444851872, + 6442738520, + 6444852176, 6442601056, - 6443887808, + 6443888096, 6442590368, - 6444851920, - 6444849504, - 6443888352, + 6444852224, + 6444849808, + 6443888640, 6442600000, - 6443887840, - 6442600384, - 6443888240, - 6444853136, - 6444854608, - 6443805552, - 6443932560, - 6443932544 + 6443888128, + 6442600400, + 6443888528, + 6444853440, + 6444854912, + 6443805840, + 6443932848, + 6443932832 ], "bases": [ { @@ -40702,7 +40720,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170072, + "complete_object_locator": 6448174296, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -40711,13 +40729,13 @@ }, { "type_name": "CNetMessagePB<43,class CSVCMsg_SetPause,0,1,0>", - "vtable_address": 6447762104, + "vtable_address": 6447766200, "methods": [ - 6442670368, - 6442694608, - 6442694608, - 6442706176, - 6442706256 + 6442670816, + 6442695056, + 6442695056, + 6442706624, + 6442706704 ], "bases": [ { @@ -40779,7 +40797,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170112, + "complete_object_locator": 6448174336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -40788,17 +40806,17 @@ }, { "type_name": "CNetMessagePB<43,class CSVCMsg_SetPause,0,1,0>::CProtobufBinding", - "vtable_address": 6447756544, + "vtable_address": 6447760640, "methods": [ - 6442724496, - 6442687648, - 6442702256, - 6442724480, - 6442728928, + 6442724944, + 6442688096, + 6442702704, + 6442724928, + 6442729376, 6442590368, - 6442724336, - 6442600464, - 6442600464 + 6442724784, + 6442600368, + 6442600368 ], "bases": [ { @@ -40818,7 +40836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170032, + "complete_object_locator": 6448174256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -40827,25 +40845,25 @@ }, { "type_name": "CNetMessagePB<44,class CSVCMsg_CreateStringTable,10,1,0>", - "vtable_address": 6447758584, + "vtable_address": 6447762680, "methods": [ - 6442737928, - 6444851872, + 6442738376, + 6444852176, 6442601104, - 6443963504, + 6443963792, 6442590368, - 6444851920, - 6444849504, - 6443965680, + 6444852224, + 6444849808, + 6443965968, 6442600000, - 6443963632, - 6442600384, - 6443964880, - 6444853136, - 6444854608, - 6443805552, - 6443966352, - 6443966032 + 6443963920, + 6442600400, + 6443965168, + 6444853440, + 6444854912, + 6443805840, + 6443966640, + 6443966320 ], "bases": [ { @@ -40907,7 +40925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169952, + "complete_object_locator": 6448174176, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -40916,13 +40934,13 @@ }, { "type_name": "CNetMessagePB<44,class CSVCMsg_CreateStringTable,10,1,0>", - "vtable_address": 6447758728, + "vtable_address": 6447762824, "methods": [ - 6442699888, - 6442694608, - 6442694608, - 6442706480, - 6442706560 + 6442700336, + 6442695056, + 6442695056, + 6442706928, + 6442707008 ], "bases": [ { @@ -40984,7 +41002,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169992, + "complete_object_locator": 6448174216, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -40993,17 +41011,17 @@ }, { "type_name": "CNetMessagePB<44,class CSVCMsg_CreateStringTable,10,1,0>::CProtobufBinding", - "vtable_address": 6447757104, + "vtable_address": 6447761200, "methods": [ - 6442711328, - 6442712624, - 6442702256, - 6442700880, - 6442717344, + 6442711776, + 6442713072, + 6442702704, + 6442701328, + 6442717792, 6442590368, - 6442711136, - 6442600464, - 6442600464 + 6442711584, + 6442600368, + 6442600368 ], "bases": [ { @@ -41023,7 +41041,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169912, + "complete_object_locator": 6448174136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -41032,25 +41050,25 @@ }, { "type_name": "CNetMessagePB<45,class CSVCMsg_UpdateStringTable,7,1,0>", - "vtable_address": 6447758776, + "vtable_address": 6447762872, "methods": [ - 6442737916, - 6444851872, + 6442738364, + 6444852176, 6442601120, - 6443843440, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443966416, - 6442600384, - 6443966992, - 6444853136, - 6444854608, - 6443805552, - 6443967344, - 6443967328 + 6443966704, + 6442600400, + 6443967280, + 6444853440, + 6444854912, + 6443805840, + 6443967632, + 6443967616 ], "bases": [ { @@ -41112,7 +41130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169832, + "complete_object_locator": 6448174056, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -41121,13 +41139,13 @@ }, { "type_name": "CNetMessagePB<45,class CSVCMsg_UpdateStringTable,7,1,0>", - "vtable_address": 6447758920, + "vtable_address": 6447763016, "methods": [ - 6442699696, - 6442694608, - 6442694608, - 6442706624, - 6442706704 + 6442700144, + 6442695056, + 6442695056, + 6442707072, + 6442707152 ], "bases": [ { @@ -41189,7 +41207,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169872, + "complete_object_locator": 6448174096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -41198,17 +41216,17 @@ }, { "type_name": "CNetMessagePB<45,class CSVCMsg_UpdateStringTable,7,1,0>::CProtobufBinding", - "vtable_address": 6447757024, + "vtable_address": 6447761120, "methods": [ - 6442712816, - 6442690016, - 6442702256, - 6442712800, - 6442717488, + 6442713264, + 6442690464, + 6442702704, + 6442713248, + 6442717936, 6442590368, - 6442712640, - 6442600464, - 6442600464 + 6442713088, + 6442600368, + 6442600368 ], "bases": [ { @@ -41228,7 +41246,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169792, + "complete_object_locator": 6448174016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -41237,25 +41255,25 @@ }, { "type_name": "CNetMessagePB<46,class CSVCMsg_VoiceInit,10,1,0>", - "vtable_address": 6447822896, + "vtable_address": 6447826448, "methods": [ - 6443127216, - 6444851872, - 6442954800, - 6443843440, + 6443127408, + 6444852176, + 6442954880, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443932624, - 6442600384, - 6443933200, - 6444853136, - 6444854608, - 6443805552, - 6443933696, - 6443933680 + 6443932912, + 6442600400, + 6443933488, + 6444853440, + 6444854912, + 6443805840, + 6443933984, + 6443933968 ], "bases": [ { @@ -41317,7 +41335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206888, + "complete_object_locator": 6448211152, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -41326,13 +41344,13 @@ }, { "type_name": "CNetMessagePB<46,class CSVCMsg_VoiceInit,10,1,0>", - "vtable_address": 6447823040, + "vtable_address": 6447826592, "methods": [ - 6443045856, - 6442694608, - 6442694608, - 6443050560, - 6443050640 + 6443046048, + 6442695056, + 6442695056, + 6443050752, + 6443050832 ], "bases": [ { @@ -41394,7 +41412,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206928, + "complete_object_locator": 6448211192, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -41403,17 +41421,17 @@ }, { "type_name": "CNetMessagePB<46,class CSVCMsg_VoiceInit,10,1,0>::CProtobufBinding", - "vtable_address": 6447821272, + "vtable_address": 6447825080, "methods": [ - 6443077680, - 6442690016, - 6442702256, - 6442700880, - 6443109424, + 6443077872, + 6442690464, + 6442702704, + 6442701328, + 6443109616, 6442590368, - 6443077520, - 6442600464, - 6442600464 + 6443077712, + 6442600368, + 6442600368 ], "bases": [ { @@ -41433,7 +41451,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207008, + "complete_object_locator": 6448211032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -41442,25 +41460,25 @@ }, { "type_name": "CNetMessagePB<47,class CSVCMsg_VoiceData,6,0,0>", - "vtable_address": 6447822320, + "vtable_address": 6447827216, "methods": [ - 6443126532, - 6444851872, - 6442954912, - 6443967408, + 6443126724, + 6444852176, + 6442954992, + 6443967696, 6442590368, - 6444851920, - 6444849504, - 6443969184, + 6444852224, + 6444849808, + 6443969472, 6442600000, - 6443967600, - 6442600384, - 6443968576, - 6444853136, - 6444854608, - 6443805552, - 6443970080, - 6443969424 + 6443967888, + 6442600400, + 6443968864, + 6444853440, + 6444854912, + 6443805840, + 6443970368, + 6443969712 ], "bases": [ { @@ -41522,7 +41540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206728, + "complete_object_locator": 6448211072, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -41531,13 +41549,13 @@ }, { "type_name": "CNetMessagePB<47,class CSVCMsg_VoiceData,6,0,0>", - "vtable_address": 6447822464, + "vtable_address": 6447827360, "methods": [ - 6443045632, - 6442694608, - 6442694608, - 6443050928, - 6443051008 + 6443045824, + 6442695056, + 6442695056, + 6443051120, + 6443051200 ], "bases": [ { @@ -41599,7 +41617,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206768, + "complete_object_locator": 6448211112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -41608,17 +41626,17 @@ }, { "type_name": "CNetMessagePB<47,class CSVCMsg_VoiceData,6,0,0>::CProtobufBinding", - "vtable_address": 6447820872, + "vtable_address": 6447825320, "methods": [ + 6443079328, + 6442713072, + 6442702704, + 6443079312, + 6443109760, + 6442600368, 6443079136, - 6442712624, - 6442702256, - 6443079120, - 6443109568, - 6442600464, - 6443078944, - 6442600464, - 6442600464 + 6442600368, + 6442600368 ], "bases": [ { @@ -41638,7 +41656,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206848, + "complete_object_locator": 6448210952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -41647,25 +41665,25 @@ }, { "type_name": "CNetMessagePB<48,class CSVCMsg_Print,0,1,0>", - "vtable_address": 6447822704, + "vtable_address": 6447826256, "methods": [ - 6443127060, - 6444851872, - 6442954816, - 6443834080, + 6443127252, + 6444852176, + 6442954896, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443933776, - 6443933760 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443934064, + 6443934048 ], "bases": [ { @@ -41727,7 +41745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207048, + "complete_object_locator": 6448211312, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -41736,13 +41754,13 @@ }, { "type_name": "CNetMessagePB<48,class CSVCMsg_Print,0,1,0>", - "vtable_address": 6447822848, + "vtable_address": 6447826400, "methods": [ - 6443046048, - 6442694608, - 6442694608, - 6443050192, - 6443050272 + 6443046240, + 6442695056, + 6442695056, + 6443050384, + 6443050464 ], "bases": [ { @@ -41804,7 +41822,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207088, + "complete_object_locator": 6448211352, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -41813,17 +41831,17 @@ }, { "type_name": "CNetMessagePB<48,class CSVCMsg_Print,0,1,0>::CProtobufBinding", - "vtable_address": 6447821352, + "vtable_address": 6447825160, "methods": [ - 6443076256, - 6442687648, - 6442702256, - 6442724480, - 6443109280, + 6443076448, + 6442688096, + 6442702704, + 6442724928, + 6443109472, 6442590368, - 6443076112, - 6442600464, - 6442600464 + 6443076304, + 6442600368, + 6442600368 ], "bases": [ { @@ -41843,7 +41861,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206968, + "complete_object_locator": 6448211232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -41852,25 +41870,25 @@ }, { "type_name": "CNetMessagePB<49,class CSVCMsg_Sounds,4,1,0>", - "vtable_address": 6447823472, + "vtable_address": 6447826832, "methods": [ - 6443127036, - 6444851872, - 6442954832, - 6443938704, + 6443127228, + 6444852176, + 6442954912, + 6443938992, 6442590368, - 6444851920, - 6444849504, - 6443939440, + 6444852224, + 6444849808, + 6443939728, 6442600000, - 6443938912, - 6442600384, - 6443931808, - 6444853136, - 6444854608, - 6443805552, - 6443939808, - 6443939600 + 6443939200, + 6442600400, + 6443932096, + 6444853440, + 6444854912, + 6443805840, + 6443940096, + 6443939888 ], "bases": [ { @@ -41932,7 +41950,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206608, + "complete_object_locator": 6448210792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -41941,13 +41959,13 @@ }, { "type_name": "CNetMessagePB<49,class CSVCMsg_Sounds,4,1,0>", - "vtable_address": 6447823616, + "vtable_address": 6447826976, "methods": [ - 6443045264, - 6442694608, - 6442694608, - 6443051376, - 6443051456 + 6443045456, + 6442695056, + 6442695056, + 6443051568, + 6443051648 ], "bases": [ { @@ -42009,7 +42027,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206648, + "complete_object_locator": 6448210832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -42018,17 +42036,17 @@ }, { "type_name": "CNetMessagePB<49,class CSVCMsg_Sounds,4,1,0>::CProtobufBinding", - "vtable_address": 6447821032, + "vtable_address": 6447824840, "methods": [ - 6443081936, - 6442930544, - 6442702256, - 6443080560, - 6443109856, + 6443082128, + 6442930624, + 6442702704, + 6443080752, + 6443110048, 6442590368, - 6443081776, - 6442600464, - 6442600464 + 6443081968, + 6442600368, + 6442600368 ], "bases": [ { @@ -42048,7 +42066,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206528, + "complete_object_locator": 6448210712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42057,13 +42075,25 @@ }, { "type_name": "CNetMessagePB<5,class CNETMsg_StringCmd,9,1,0>", - "vtable_address": 6447830048, + "vtable_address": 6447834176, "methods": [ - 6442955424, - 6442694608, - 6442694608, - 6443047536, - 6443047616 + 6443127072, + 6444852176, + 6442954768, + 6443841632, + 6442590368, + 6444852224, + 6444849808, + 6443879232, + 6442600000, + 6443914240, + 6442600400, + 6443914720, + 6444853440, + 6444854912, + 6443805840, + 6444045136, + 6444045120 ], "bases": [ { @@ -42125,8 +42155,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208208, - "offset": 0, + "complete_object_locator": 6448212432, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -42134,25 +42164,13 @@ }, { "type_name": "CNetMessagePB<5,class CNETMsg_StringCmd,9,1,0>", - "vtable_address": 6447830288, + "vtable_address": 6447834320, "methods": [ - 6443126880, - 6444851872, - 6442954688, - 6443841344, - 6442590368, - 6444851920, - 6444849504, - 6443878944, - 6442600000, - 6443913952, - 6442600384, - 6443914432, - 6444853136, - 6444854608, - 6443805552, - 6444044848, - 6444044832 + 6442955504, + 6442695056, + 6442695056, + 6443047728, + 6443047808 ], "bases": [ { @@ -42214,8 +42232,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208168, - "offset": 48, + "complete_object_locator": 6448212472, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -42223,17 +42241,17 @@ }, { "type_name": "CNetMessagePB<5,class CNETMsg_StringCmd,9,1,0>::CProtobufBinding", - "vtable_address": 6447821752, + "vtable_address": 6447825800, "methods": [ - 6443066384, - 6442690016, - 6442702256, - 6442917408, - 6443107872, + 6443066576, + 6442690464, + 6442702704, + 6442917488, + 6443108064, 6442590368, - 6443066224, - 6442600464, - 6442600464 + 6443066416, + 6442600368, + 6442600368 ], "bases": [ { @@ -42253,7 +42271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208128, + "complete_object_locator": 6448212392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42262,25 +42280,25 @@ }, { "type_name": "CNetMessagePB<50,class CSVCMsg_SetView,0,1,0>", - "vtable_address": 6447823088, + "vtable_address": 6447827936, "methods": [ - 6443126856, - 6444851872, - 6442954864, - 6443940624, + 6443127048, + 6444852176, + 6442954944, + 6443940912, 6442590368, - 6444851920, - 6444849504, - 6443884320, + 6444852224, + 6444849808, + 6443884608, 6442600000, - 6443883520, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443940688, - 6443940672 + 6443883808, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443940976, + 6443940960 ], "bases": [ { @@ -42342,7 +42360,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206368, + "complete_object_locator": 6448210472, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -42351,13 +42369,13 @@ }, { "type_name": "CNetMessagePB<50,class CSVCMsg_SetView,0,1,0>", - "vtable_address": 6447823232, + "vtable_address": 6447828080, "methods": [ - 6443044912, - 6442694608, - 6442694608, - 6443052096, - 6443052176 + 6443045104, + 6442695056, + 6442695056, + 6443052288, + 6443052368 ], "bases": [ { @@ -42419,7 +42437,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206408, + "complete_object_locator": 6448210512, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -42428,17 +42446,17 @@ }, { "type_name": "CNetMessagePB<50,class CSVCMsg_SetView,0,1,0>::CProtobufBinding", - "vtable_address": 6447820552, + "vtable_address": 6447825000, "methods": [ - 6443084688, - 6442687648, - 6442702256, - 6442724480, - 6443110144, + 6443084880, + 6442688096, + 6442702704, + 6442724928, + 6443110336, 6442590368, - 6443084544, - 6442600464, - 6442600464 + 6443084736, + 6442600368, + 6442600368 ], "bases": [ { @@ -42458,7 +42476,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206248, + "complete_object_locator": 6448210592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42467,25 +42485,25 @@ }, { "type_name": "CNetMessagePB<51,class CSVCMsg_ClearAllStringTables,10,1,0>", - "vtable_address": 6447822128, + "vtable_address": 6447826640, "methods": [ - 6443127132, - 6444851872, - 6442955024, - 6443979168, + 6443127324, + 6444852176, + 6442955104, + 6443979456, 6442590368, - 6444851920, - 6444849504, - 6443979872, + 6444852224, + 6444849808, + 6443980160, 6442600000, - 6443979232, - 6442600384, - 6443979712, - 6444853136, - 6444854608, - 6443805552, - 6443980128, - 6443979952 + 6443979520, + 6442600400, + 6443980000, + 6444853440, + 6444854912, + 6443805840, + 6443980416, + 6443980240 ], "bases": [ { @@ -42547,7 +42565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207288, + "complete_object_locator": 6448211272, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -42556,13 +42574,13 @@ }, { "type_name": "CNetMessagePB<51,class CSVCMsg_ClearAllStringTables,10,1,0>", - "vtable_address": 6447822272, + "vtable_address": 6447826784, "methods": [ - 6443046240, - 6442694608, - 6442694608, - 6443049824, - 6443049904 + 6443046432, + 6442695056, + 6442695056, + 6443050016, + 6443050096 ], "bases": [ { @@ -42624,7 +42642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207168, + "complete_object_locator": 6448211472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -42633,17 +42651,17 @@ }, { "type_name": "CNetMessagePB<51,class CSVCMsg_ClearAllStringTables,10,1,0>::CProtobufBinding", - "vtable_address": 6447821112, + "vtable_address": 6447825400, "methods": [ - 6443074848, - 6442690016, - 6442702256, - 6442700880, - 6443109136, + 6443075040, + 6442690464, + 6442702704, + 6442701328, + 6443109328, 6442590368, - 6443074688, - 6442600464, - 6442600464 + 6443074880, + 6442600368, + 6442600368 ], "bases": [ { @@ -42663,7 +42681,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448207128, + "complete_object_locator": 6448211392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42672,13 +42690,25 @@ }, { "type_name": "CNetMessagePB<52,class CBaseCmdKeyValues,9,1,0>", - "vtable_address": 6447829472, + "vtable_address": 6447833600, "methods": [ - 6442959520, - 6442694608, - 6442694608, - 6443053136, - 6443053216 + 6443127480, + 6444852176, + 6442955056, + 6443834368, + 6442590368, + 6444852224, + 6444849808, + 6443834896, + 6442600000, + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443975296, + 6443975280 ], "bases": [ { @@ -42754,8 +42784,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205888, - "offset": 0, + "complete_object_locator": 6448210192, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -42763,25 +42793,13 @@ }, { "type_name": "CNetMessagePB<52,class CBaseCmdKeyValues,9,1,0>", - "vtable_address": 6447829520, + "vtable_address": 6447833744, "methods": [ - 6443127288, - 6444851872, - 6442954976, - 6443834080, - 6442590368, - 6444851920, - 6444849504, - 6443834608, - 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443975008, - 6443974992 + 6442959600, + 6442695056, + 6442695056, + 6443053328, + 6443053408 ], "bases": [ { @@ -42857,8 +42875,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205848, - "offset": 48, + "complete_object_locator": 6448210232, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -42866,17 +42884,17 @@ }, { "type_name": "CNetMessagePB<52,class CBaseCmdKeyValues,9,1,0>::CProtobufBinding", - "vtable_address": 6447820632, + "vtable_address": 6447824440, "methods": [ - 6443089008, - 6442690016, - 6442702256, - 6442917408, - 6443110576, + 6443089200, + 6442690464, + 6442702704, + 6442917488, + 6443110768, 6442590368, - 6443088752, - 6442600464, - 6442600464 + 6443088944, + 6442600368, + 6442600368 ], "bases": [ { @@ -42896,7 +42914,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205808, + "complete_object_locator": 6448210152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -42905,25 +42923,25 @@ }, { "type_name": "CNetMessagePB<54,class CSVCMsg_SplitScreen,10,1,0>", - "vtable_address": 6447763048, + "vtable_address": 6447767152, "methods": [ - 6442738000, - 6444851872, + 6442738448, + 6444852176, 6442601072, - 6443945024, + 6443945312, 6442590368, - 6444851920, - 6444849504, - 6443946128, + 6444852224, + 6444849808, + 6443946416, 6442600000, - 6443945072, - 6442600384, - 6443945728, - 6444853136, - 6444854608, - 6443805552, - 6443946352, - 6443946256 + 6443945360, + 6442600400, + 6443946016, + 6444853440, + 6444854912, + 6443805840, + 6443946640, + 6443946544 ], "bases": [ { @@ -42985,7 +43003,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169512, + "complete_object_locator": 6448173736, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -42994,13 +43012,13 @@ }, { "type_name": "CNetMessagePB<54,class CSVCMsg_SplitScreen,10,1,0>", - "vtable_address": 6447763192, + "vtable_address": 6447767296, "methods": [ 6442602832, - 6442694608, - 6442694608, - 6442707248, - 6442707328 + 6442695056, + 6442695056, + 6442707696, + 6442707776 ], "bases": [ { @@ -43062,7 +43080,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169552, + "complete_object_locator": 6448173776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -43071,17 +43089,17 @@ }, { "type_name": "CNetMessagePB<54,class CSVCMsg_SplitScreen,10,1,0>::CProtobufBinding", - "vtable_address": 6447756464, + "vtable_address": 6447760560, "methods": [ - 6442725856, - 6442690016, - 6442702256, - 6442700880, - 6442729072, + 6442726304, + 6442690464, + 6442702704, + 6442701328, + 6442729520, 6442590368, - 6442725696, - 6442600464, - 6442600464 + 6442726144, + 6442600368, + 6442600368 ], "bases": [ { @@ -43101,7 +43119,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169472, + "complete_object_locator": 6448173696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43110,25 +43128,25 @@ }, { "type_name": "CNetMessagePB<55,class CSVCMsg_PacketEntities,-1,1,0>", - "vtable_address": 6447758968, + "vtable_address": 6447763064, "methods": [ - 6442738096, - 6444851872, + 6442738544, + 6444852176, 6442601088, - 6443955136, + 6443955424, 6442590368, - 6444851920, - 6444849504, - 6443959984, + 6444852224, + 6444849808, + 6443960272, 6442600000, - 6443955616, - 6442600384, - 6443958096, - 6444853136, - 6444854608, - 6443805552, - 6443962208, - 6443961216 + 6443955904, + 6442600400, + 6443958384, + 6444853440, + 6444854912, + 6443805840, + 6443962496, + 6443961504 ], "bases": [ { @@ -43190,7 +43208,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169712, + "complete_object_locator": 6448173936, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -43199,13 +43217,13 @@ }, { "type_name": "CNetMessagePB<55,class CSVCMsg_PacketEntities,-1,1,0>", - "vtable_address": 6447759112, + "vtable_address": 6447763208, "methods": [ - 6442699600, - 6442694608, - 6442694608, - 6442706992, - 6442707072 + 6442700048, + 6442695056, + 6442695056, + 6442707440, + 6442707520 ], "bases": [ { @@ -43267,7 +43285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169752, + "complete_object_locator": 6448173976, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -43276,16 +43294,16 @@ }, { "type_name": "CNetMessagePB<55,class CSVCMsg_PacketEntities,-1,1,0>::CProtobufBinding", - "vtable_address": 6447756944, + "vtable_address": 6447761040, "methods": [ - 6442714176, - 6442715616, - 6442702256, - 6442714160, - 6442717632, + 6442714624, + 6442716064, + 6442702704, + 6442714608, + 6442718080, 6442590368, - 6442714080, - 6442600464, + 6442714528, + 6442600368, 6442590368 ], "bases": [ @@ -43306,7 +43324,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169672, + "complete_object_locator": 6448173896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43315,25 +43333,25 @@ }, { "type_name": "CNetMessagePB<56,class CSVCMsg_Prefetch,4,1,0>", - "vtable_address": 6447823664, + "vtable_address": 6447827024, "methods": [ - 6443126676, - 6444851872, - 6442954848, - 6443883488, + 6443126868, + 6444852176, + 6442954928, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443940448, + 6444852224, + 6444849808, + 6443940736, 6442600000, - 6443939872, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443940560, - 6443940544 + 6443940160, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443940848, + 6443940832 ], "bases": [ { @@ -43395,7 +43413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206448, + "complete_object_locator": 6448210632, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -43404,13 +43422,13 @@ }, { "type_name": "CNetMessagePB<56,class CSVCMsg_Prefetch,4,1,0>", - "vtable_address": 6447823808, + "vtable_address": 6447827168, "methods": [ - 6443045088, - 6442694608, - 6442694608, - 6443051792, - 6443051872 + 6443045280, + 6442695056, + 6442695056, + 6443051984, + 6443052064 ], "bases": [ { @@ -43472,7 +43490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206488, + "complete_object_locator": 6448210672, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -43481,17 +43499,17 @@ }, { "type_name": "CNetMessagePB<56,class CSVCMsg_Prefetch,4,1,0>::CProtobufBinding", - "vtable_address": 6447820952, + "vtable_address": 6447824760, "methods": [ - 6443083328, - 6442687648, - 6442702256, - 6443080560, - 6443110000, + 6443083520, + 6442688096, + 6442702704, + 6443080752, + 6443110192, 6442590368, - 6443083200, - 6442600464, - 6442600464 + 6443083392, + 6442600368, + 6442600368 ], "bases": [ { @@ -43511,7 +43529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206328, + "complete_object_locator": 6448210752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43520,25 +43538,25 @@ }, { "type_name": "CNetMessagePB<57,class CSVCMsg_Menu,0,1,0>", - "vtable_address": 6447823280, + "vtable_address": 6447828128, "methods": [ - 6443126724, - 6444851872, - 6442954896, - 6443841344, + 6443126916, + 6444852176, + 6442954976, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443946512, - 6443946496 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443946800, + 6443946784 ], "bases": [ { @@ -43600,7 +43618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206288, + "complete_object_locator": 6448210312, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -43609,13 +43627,13 @@ }, { "type_name": "CNetMessagePB<57,class CSVCMsg_Menu,0,1,0>", - "vtable_address": 6447823424, + "vtable_address": 6447828272, "methods": [ - 6443044720, - 6442694608, - 6442694608, - 6443052400, - 6443052480 + 6443044912, + 6442695056, + 6442695056, + 6443052592, + 6443052672 ], "bases": [ { @@ -43677,7 +43695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206208, + "complete_object_locator": 6448210552, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -43686,17 +43704,17 @@ }, { "type_name": "CNetMessagePB<57,class CSVCMsg_Menu,0,1,0>::CProtobufBinding", - "vtable_address": 6447820472, + "vtable_address": 6447824920, "methods": [ - 6443086064, - 6442690016, - 6442702256, - 6442724480, - 6443110288, + 6443086256, + 6442690464, + 6442702704, + 6442724928, + 6443110480, 6442590368, - 6443085904, - 6442600464, - 6442600464 + 6443086096, + 6442600368, + 6442600368 ], "bases": [ { @@ -43716,7 +43734,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206168, + "complete_object_locator": 6448210432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43725,25 +43743,25 @@ }, { "type_name": "CNetMessagePB<58,class CSVCMsg_GetCvarValue,0,1,0>", - "vtable_address": 6447824048, + "vtable_address": 6447827600, "methods": [ - 6443126760, - 6444851872, - 6442954880, - 6443841344, + 6443126952, + 6444852176, + 6442954960, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443946432, - 6443946416 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443946720, + 6443946704 ], "bases": [ { @@ -43805,7 +43823,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206088, + "complete_object_locator": 6448210352, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -43814,13 +43832,13 @@ }, { "type_name": "CNetMessagePB<58,class CSVCMsg_GetCvarValue,0,1,0>", - "vtable_address": 6447824192, + "vtable_address": 6447827744, "methods": [ - 6443044528, - 6442694608, - 6442694608, - 6443052768, - 6443052848 + 6443044720, + 6442695056, + 6442695056, + 6443052960, + 6443053040 ], "bases": [ { @@ -43882,7 +43900,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206128, + "complete_object_locator": 6448210392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -43891,17 +43909,17 @@ }, { "type_name": "CNetMessagePB<58,class CSVCMsg_GetCvarValue,0,1,0>::CProtobufBinding", - "vtable_address": 6447820712, + "vtable_address": 6447824520, "methods": [ - 6443087488, - 6442690016, - 6442702256, - 6442724480, - 6443110432, + 6443087680, + 6442690464, + 6442702704, + 6442724928, + 6443110624, 6442590368, - 6443087328, - 6442600464, - 6442600464 + 6443087520, + 6442600368, + 6442600368 ], "bases": [ { @@ -43921,7 +43939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206008, + "complete_object_locator": 6448210272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -43930,25 +43948,25 @@ }, { "type_name": "CNetMessagePB<59,class CSVCMsg_StopSound,4,1,0>", - "vtable_address": 6447822512, + "vtable_address": 6447827408, "methods": [ - 6443126592, - 6444851872, - 6442955040, - 6443886880, + 6443126784, + 6444852176, + 6442955120, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443988480, + 6444852224, + 6444849808, + 6443988768, 6442600000, - 6443988048, - 6442600384, - 6443988368, - 6444853136, - 6444854608, - 6443805552, - 6443988528, - 6443988512 + 6443988336, + 6442600400, + 6443988656, + 6444853440, + 6444854912, + 6443805840, + 6443988816, + 6443988800 ], "bases": [ { @@ -44010,7 +44028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206568, + "complete_object_locator": 6448210992, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -44019,13 +44037,13 @@ }, { "type_name": "CNetMessagePB<59,class CSVCMsg_StopSound,4,1,0>", - "vtable_address": 6447822656, + "vtable_address": 6447827552, "methods": [ - 6443045456, - 6442694608, - 6442694608, - 6443051072, - 6443051152 + 6443045648, + 6442695056, + 6442695056, + 6443051264, + 6443051344 ], "bases": [ { @@ -44087,7 +44105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206808, + "complete_object_locator": 6448210912, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -44096,17 +44114,17 @@ }, { "type_name": "CNetMessagePB<59,class CSVCMsg_StopSound,4,1,0>::CProtobufBinding", - "vtable_address": 6447820792, + "vtable_address": 6447825240, "methods": [ - 6443080576, - 6442687648, - 6442702256, - 6443080560, - 6443109712, + 6443080768, + 6442688096, + 6442702704, + 6443080752, + 6443109904, 6442590368, - 6443080416, - 6442600464, - 6442600464 + 6443080608, + 6442600368, + 6442600368 ], "bases": [ { @@ -44126,7 +44144,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448206688, + "complete_object_locator": 6448210872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44135,25 +44153,25 @@ }, { "type_name": "CNetMessagePB<6,class CNETMsg_SetConVar,9,1,0>", - "vtable_address": 6447803784, + "vtable_address": 6447807896, "methods": [ - 6442936688, - 6444851872, - 6442846560, - 6444044912, + 6442936768, + 6444852176, + 6442847008, + 6444045200, 6442590368, - 6444851920, - 6444849504, - 6444045472, + 6444852224, + 6444849808, + 6444045760, 6442600000, - 6444044976, - 6442600384, - 6444045360, - 6444853136, - 6444854608, - 6443805552, - 6444045840, - 6444045536 + 6444045264, + 6442600400, + 6444045648, + 6444853440, + 6444854912, + 6443805840, + 6444046128, + 6444045824 ], "bases": [ { @@ -44215,7 +44233,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190600, + "complete_object_locator": 6448194824, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -44224,13 +44242,13 @@ }, { "type_name": "CNetMessagePB<6,class CNETMsg_SetConVar,9,1,0>", - "vtable_address": 6447804120, + "vtable_address": 6447808232, "methods": [ - 6442846912, - 6442694608, - 6442694608, - 6442910752, - 6442910832 + 6442847360, + 6442695056, + 6442695056, + 6442910832, + 6442910912 ], "bases": [ { @@ -44292,7 +44310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190680, + "complete_object_locator": 6448194904, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -44301,17 +44319,17 @@ }, { "type_name": "CNetMessagePB<6,class CNETMsg_SetConVar,9,1,0>::CProtobufBinding", - "vtable_address": 6447798624, + "vtable_address": 6447802736, "methods": [ - 6442917424, - 6442687648, - 6442702256, - 6442917408, - 6442931952, + 6442917504, + 6442688096, + 6442702704, + 6442917488, + 6442932032, 6442590368, - 6442917280, - 6442600464, - 6442600464 + 6442917360, + 6442600368, + 6442600368 ], "bases": [ { @@ -44331,7 +44349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190640, + "complete_object_locator": 6448194864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44340,25 +44358,25 @@ }, { "type_name": "CNetMessagePB<60,class CSVCMsg_PeerList,0,1,0>", - "vtable_address": 6447824768, + "vtable_address": 6447828320, "methods": [ - 6443127180, - 6444851872, - 6442955008, - 6443978096, + 6443127372, + 6444852176, + 6442955088, + 6443978384, 6442590368, - 6444851920, - 6444849504, - 6443978752, + 6444852224, + 6444849808, + 6443979040, 6442600144, - 6443978336, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443979104, - 6443978912 + 6443978624, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443979392, + 6443979200 ], "bases": [ { @@ -44420,7 +44438,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205768, + "complete_object_locator": 6448209792, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -44429,13 +44447,13 @@ }, { "type_name": "CNetMessagePB<60,class CSVCMsg_PeerList,0,1,0>", - "vtable_address": 6447824912, + "vtable_address": 6447828464, "methods": [ - 6443043936, - 6442694608, - 6442694608, - 6443053808, - 6443053888 + 6443044128, + 6442695056, + 6442695056, + 6443054000, + 6443054080 ], "bases": [ { @@ -44497,7 +44515,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205688, + "complete_object_locator": 6448210032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -44506,17 +44524,17 @@ }, { "type_name": "CNetMessagePB<60,class CSVCMsg_PeerList,0,1,0>::CProtobufBinding", - "vtable_address": 6447820152, + "vtable_address": 6447824600, "methods": [ - 6443091936, - 6442686800, - 6442702256, - 6442724480, - 6443110864, + 6443092128, + 6442687248, + 6442702704, + 6442724928, + 6443111056, 6442590368, - 6443091776, - 6442600464, - 6442600464 + 6443091968, + 6442600368, + 6442600368 ], "bases": [ { @@ -44536,7 +44554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205648, + "complete_object_locator": 6448209912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44545,25 +44563,25 @@ }, { "type_name": "CNetMessagePB<61,class CSVCMsg_PacketReliable,0,1,0>", - "vtable_address": 6447824960, + "vtable_address": 6447828512, "methods": [ - 6443126916, - 6444851872, - 6442954928, - 6443970144, + 6443127108, + 6444852176, + 6442955008, + 6443970432, 6442590368, - 6444851920, - 6444849504, - 6443971136, + 6444852224, + 6444849808, + 6443971424, 6442600000, - 6443970192, - 6442600384, - 6443970800, - 6444853136, - 6444854608, - 6443805552, - 6443971344, - 6443971248 + 6443970480, + 6442600400, + 6443971088, + 6444853440, + 6444854912, + 6443805840, + 6443971632, + 6443971536 ], "bases": [ { @@ -44625,7 +44643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205568, + "complete_object_locator": 6448209832, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -44634,13 +44652,13 @@ }, { "type_name": "CNetMessagePB<61,class CSVCMsg_PacketReliable,0,1,0>", - "vtable_address": 6447825104, + "vtable_address": 6447828656, "methods": [ - 6443043760, - 6442694608, - 6442694608, - 6443054208, - 6443054288 + 6443043952, + 6442695056, + 6442695056, + 6443054400, + 6443054480 ], "bases": [ { @@ -44702,7 +44720,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205608, + "complete_object_locator": 6448209872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -44711,17 +44729,17 @@ }, { "type_name": "CNetMessagePB<61,class CSVCMsg_PacketReliable,0,1,0>::CProtobufBinding", - "vtable_address": 6447820392, + "vtable_address": 6447824280, "methods": [ - 6443093344, - 6442690016, - 6442702256, - 6442724480, - 6443111008, + 6443093536, + 6442690464, + 6442702704, + 6442724928, + 6443111200, 6442590368, - 6443093200, - 6442600464, - 6442600464 + 6443093392, + 6442600368, + 6442600368 ], "bases": [ { @@ -44741,7 +44759,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205488, + "complete_object_locator": 6448209752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44750,25 +44768,25 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>", - "vtable_address": 6447824384, + "vtable_address": 6447828896, "methods": [ - 6443126904, - 6444851872, - 6442954944, - 6443971408, + 6443127096, + 6444852176, + 6442955024, + 6443971696, 6442590368, - 6444851920, - 6444849504, - 6443972592, + 6444852224, + 6444849808, + 6443972880, 6442600000, - 6443973024, - 6442600384, - 6443973712, - 6444853136, - 6444854608, - 6443805552, - 6443974160, - 6443974144 + 6443973312, + 6442600400, + 6443974000, + 6444853440, + 6444854912, + 6443805840, + 6443974448, + 6443974432 ], "bases": [ { @@ -44830,7 +44848,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205408, + "complete_object_locator": 6448209672, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -44839,13 +44857,13 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>", - "vtable_address": 6447824528, + "vtable_address": 6447829040, "methods": [ - 6443043568, - 6442694608, - 6442694608, - 6443054528, - 6443054608 + 6443043760, + 6442695056, + 6442695056, + 6443054720, + 6443054800 ], "bases": [ { @@ -44907,7 +44925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205448, + "complete_object_locator": 6448209712, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -44916,17 +44934,17 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>::CProtobufBinding", - "vtable_address": 6447820312, + "vtable_address": 6447824200, "methods": [ - 6443094720, - 6442686800, - 6442702256, - 6442724480, - 6443111152, + 6443094912, + 6442687248, + 6442702704, + 6442724928, + 6443111344, 6442590368, - 6443094560, + 6443094752, 6442590368, - 6442600464 + 6442600368 ], "bases": [ { @@ -44946,7 +44964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205528, + "complete_object_locator": 6448209552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -44955,25 +44973,25 @@ }, { "type_name": "CNetMessagePB<63,class CSVCMsg_ServerSteamID,0,1,1>", - "vtable_address": 6447824576, + "vtable_address": 6447829088, "methods": [ - 6443126520, - 6444851872, - 6442954960, - 6443974224, + 6443126712, + 6444852176, + 6442955040, + 6443974512, 6442590368, - 6444851920, - 6444849504, - 6443974816, + 6444852224, + 6444849808, + 6443975104, 6442600000, - 6443974256, - 6442600384, - 6443974640, - 6444853136, - 6444854608, - 6443805552, + 6443974544, + 6442600400, 6443974928, - 6443974864 + 6444853440, + 6444854912, + 6443805840, + 6443975216, + 6443975152 ], "bases": [ { @@ -45035,7 +45053,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205288, + "complete_object_locator": 6448209592, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -45044,13 +45062,13 @@ }, { "type_name": "CNetMessagePB<63,class CSVCMsg_ServerSteamID,0,1,1>", - "vtable_address": 6447824720, + "vtable_address": 6447829232, "methods": [ - 6443043392, - 6442694608, - 6442694608, - 6443054912, - 6443054992 + 6443043584, + 6442695056, + 6442695056, + 6443055104, + 6443055184 ], "bases": [ { @@ -45112,7 +45130,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205328, + "complete_object_locator": 6448209632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -45121,17 +45139,17 @@ }, { "type_name": "CNetMessagePB<63,class CSVCMsg_ServerSteamID,0,1,1>::CProtobufBinding", - "vtable_address": 6447820072, + "vtable_address": 6447824360, "methods": [ - 6443096112, - 6442687648, - 6442702256, - 6442724480, - 6443111296, + 6443096304, + 6442688096, + 6442702704, + 6442724928, + 6443111488, 6442590368, - 6443095984, + 6443096176, 6442590368, - 6442600464 + 6442600368 ], "bases": [ { @@ -45151,7 +45169,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205368, + "complete_object_locator": 6448209512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45160,13 +45178,13 @@ }, { "type_name": "CNetMessagePB<7,class CNETMsg_SignonState,10,1,0>", - "vtable_address": 6447803160, + "vtable_address": 6447807272, "methods": [ - 6442848096, - 6442694608, - 6442694608, - 6442911296, - 6442911376 + 6442848544, + 6442695056, + 6442695056, + 6442911376, + 6442911456 ], "bases": [ { @@ -45228,7 +45246,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190280, + "complete_object_locator": 6448194504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -45237,25 +45255,25 @@ }, { "type_name": "CNetMessagePB<7,class CNETMsg_SignonState,10,1,0>", - "vtable_address": 6447803208, + "vtable_address": 6447807320, "methods": [ - 6442936724, - 6444851872, - 6442846576, - 6444045904, + 6442936804, + 6444852176, + 6442847024, + 6444046192, 6442590368, - 6444851920, - 6444849504, - 6444047584, + 6444852224, + 6444849808, + 6444047872, 6442600000, - 6444046048, - 6442600384, - 6444046960, - 6444853136, - 6444854608, - 6443805552, - 6444048224, - 6444047952 + 6444046336, + 6442600400, + 6444047248, + 6444853440, + 6444854912, + 6443805840, + 6444048512, + 6444048240 ], "bases": [ { @@ -45317,7 +45335,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190320, + "complete_object_locator": 6448194544, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -45326,17 +45344,17 @@ }, { "type_name": "CNetMessagePB<7,class CNETMsg_SignonState,10,1,0>::CProtobufBinding", - "vtable_address": 6447798464, + "vtable_address": 6447802576, "methods": [ - 6442920400, - 6442801088, - 6442702256, - 6442700880, - 6442932240, + 6442920480, + 6442801536, + 6442702704, + 6442701328, + 6442932320, 6442590368, - 6442920176, - 6442600464, - 6442600464 + 6442920256, + 6442600368, + 6442600368 ], "bases": [ { @@ -45356,7 +45374,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190360, + "complete_object_locator": 6448194584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45365,25 +45383,25 @@ }, { "type_name": "CNetMessagePB<70,class CSVCMsg_FullFrameSplit,0,1,0>", - "vtable_address": 6447767960, + "vtable_address": 6447772056, "methods": [ - 6442782952, - 6444851872, - 6442769152, - 6443971408, + 6442783400, + 6444852176, + 6442769600, + 6443971696, 6442590368, - 6444851920, - 6444849504, - 6443972592, + 6444852224, + 6444849808, + 6443972880, 6442600000, - 6443971488, - 6442600384, - 6443972160, - 6444853136, - 6444854608, - 6443805552, - 6443972960, - 6443972768 + 6443971776, + 6442600400, + 6443972448, + 6444853440, + 6444854912, + 6443805840, + 6443973248, + 6443973056 ], "bases": [ { @@ -45445,7 +45463,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175296, + "complete_object_locator": 6448179520, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -45454,13 +45472,13 @@ }, { "type_name": "CNetMessagePB<70,class CSVCMsg_FullFrameSplit,0,1,0>", - "vtable_address": 6447768104, + "vtable_address": 6447772200, "methods": [ - 6442780128, - 6442694608, - 6442694608, - 6442780880, - 6442780960 + 6442780576, + 6442695056, + 6442695056, + 6442781328, + 6442781408 ], "bases": [ { @@ -45522,7 +45540,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175336, + "complete_object_locator": 6448179560, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -45531,17 +45549,17 @@ }, { "type_name": "CNetMessagePB<70,class CSVCMsg_FullFrameSplit,0,1,0>::CProtobufBinding", - "vtable_address": 6447767880, + "vtable_address": 6447771976, "methods": [ - 6442781552, - 6442686800, - 6442702256, - 6442724480, - 6442782816, + 6442782000, + 6442687248, + 6442702704, + 6442724928, + 6442783264, 6442590368, - 6442781392, - 6442600464, - 6442600464 + 6442781840, + 6442600368, + 6442600368 ], "bases": [ { @@ -45561,7 +45579,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175256, + "complete_object_locator": 6448179480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45570,25 +45588,25 @@ }, { "type_name": "CNetMessagePB<71,class CSVCMsg_RconServerDetails,0,1,0>", - "vtable_address": 6447823856, + "vtable_address": 6447828704, "methods": [ - 6443126472, - 6444851872, - 6442954992, - 6443846784, + 6443126664, + 6444852176, + 6442955072, + 6443847072, 6442590368, - 6444851920, - 6444849504, - 6443847424, + 6444852224, + 6444849808, + 6443847712, 6442600000, - 6443846880, - 6442600384, - 6443847264, - 6444853136, - 6444854608, - 6443805552, - 6443975088, - 6443975072 + 6443847168, + 6442600400, + 6443847552, + 6444853440, + 6444854912, + 6443805840, + 6443975376, + 6443975360 ], "bases": [ { @@ -45650,7 +45668,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205928, + "complete_object_locator": 6448209952, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -45659,13 +45677,13 @@ }, { "type_name": "CNetMessagePB<71,class CSVCMsg_RconServerDetails,0,1,0>", - "vtable_address": 6447824000, + "vtable_address": 6447828848, "methods": [ - 6443044128, - 6442694608, - 6442694608, - 6443053392, - 6443053472 + 6443044320, + 6442695056, + 6442695056, + 6443053584, + 6443053664 ], "bases": [ { @@ -45727,7 +45745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205968, + "complete_object_locator": 6448209992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -45736,17 +45754,17 @@ }, { "type_name": "CNetMessagePB<71,class CSVCMsg_RconServerDetails,0,1,0>::CProtobufBinding", - "vtable_address": 6447820232, + "vtable_address": 6447824680, "methods": [ - 6443090512, - 6442690016, - 6442702256, - 6442724480, - 6443110720, + 6443090704, + 6442690464, + 6442702704, + 6442724928, + 6443110912, 6442590368, - 6443090352, - 6442600464, - 6442600464 + 6443090544, + 6442600368, + 6442600368 ], "bases": [ { @@ -45766,7 +45784,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205728, + "complete_object_locator": 6448210072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45775,13 +45793,25 @@ }, { "type_name": "CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0>", - "vtable_address": 6447857912, + "vtable_address": 6447862088, "methods": [ - 6443264944, - 6442694608, - 6442694608, - 6443279616, - 6443279696 + 6443283332, + 6444852176, + 6443254976, + 6443843728, + 6442590368, + 6444852224, + 6444849808, + 6443933824, + 6442600000, + 6443932912, + 6442600400, + 6443933488, + 6444853440, + 6444854912, + 6443805840, + 6443946880, + 6443946864 ], "bases": [ { @@ -45843,8 +45873,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218232, - "offset": 0, + "complete_object_locator": 6448222488, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -45852,25 +45882,13 @@ }, { "type_name": "CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0>", - "vtable_address": 6447858008, + "vtable_address": 6447862376, "methods": [ - 6443283140, - 6444851872, - 6443254784, - 6443843440, - 6442590368, - 6444851920, - 6444849504, - 6443933536, - 6442600000, - 6443932624, - 6442600384, - 6443933200, - 6444853136, - 6444854608, - 6443805552, - 6443946592, - 6443946576 + 6443265136, + 6442695056, + 6442695056, + 6443279808, + 6443279888 ], "bases": [ { @@ -45932,8 +45950,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218312, - "offset": 48, + "complete_object_locator": 6448222408, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -45941,17 +45959,17 @@ }, { "type_name": "CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0>::CProtobufBinding", - "vtable_address": 6447857376, + "vtable_address": 6447861504, "methods": [ - 6443280368, - 6442690016, - 6442702256, - 6443280352, - 6443281632, + 6443280560, + 6442690464, + 6442702704, + 6443280544, + 6443281824, 6442590368, - 6443280192, - 6442600464, - 6442600464 + 6443280384, + 6442600368, + 6442600368 ], "bases": [ { @@ -45971,7 +45989,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218272, + "complete_object_locator": 6448222448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -45980,13 +45998,13 @@ }, { "type_name": "CNetMessagePB<74,class CSVCMsg_Broadcast_Command,17,1,0>", - "vtable_address": 6447903464, + "vtable_address": 6447907672, "methods": [ - 6443625408, - 6442694608, - 6442694608, - 6443627792, - 6443627872 + 6443625568, + 6442695056, + 6442695056, + 6443627952, + 6443628032 ], "bases": [ { @@ -46048,7 +46066,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448234992, + "complete_object_locator": 6448239256, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -46057,25 +46075,25 @@ }, { "type_name": "CNetMessagePB<74,class CSVCMsg_Broadcast_Command,17,1,0>", - "vtable_address": 6447903512, + "vtable_address": 6447907720, "methods": [ - 6443631056, - 6444851872, - 6443608144, - 6443834080, + 6443631216, + 6444852176, + 6443608336, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6444004496, - 6444004480 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6444004784, + 6444004768 ], "bases": [ { @@ -46137,7 +46155,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235032, + "complete_object_locator": 6448239296, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -46146,17 +46164,17 @@ }, { "type_name": "CNetMessagePB<74,class CSVCMsg_Broadcast_Command,17,1,0>::CProtobufBinding", - "vtable_address": 6447903384, + "vtable_address": 6447907400, "methods": [ - 6443628304, - 6442687648, - 6442702256, - 6442930736, - 6443629568, + 6443628464, + 6442688096, + 6442702704, + 6442930816, + 6443629728, 6442590368, - 6443628160, - 6442600464, - 6442600464 + 6443628320, + 6442600368, + 6442600368 ], "bases": [ { @@ -46176,7 +46194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235152, + "complete_object_locator": 6448239216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46185,13 +46203,13 @@ }, { "type_name": "CNetMessagePB<74,class CSVCMsg_HltvReplay,17,1,0>", - "vtable_address": 6447798904, + "vtable_address": 6447803016, "methods": [ - 6442901344, - 6442694608, - 6442694608, - 6442913472, - 6442913552 + 6442901424, + 6442695056, + 6442695056, + 6442913552, + 6442913632 ], "bases": [ { @@ -46253,7 +46271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448188880, + "complete_object_locator": 6448193104, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -46262,25 +46280,25 @@ }, { "type_name": "CNetMessagePB<74,class CSVCMsg_HltvReplay,17,1,0>", - "vtable_address": 6447798952, + "vtable_address": 6447803064, "methods": [ - 6442936664, - 6444851872, - 6442846896, - 6444000528, + 6442936744, + 6444852176, + 6442847344, + 6444000816, 6442590368, - 6444851920, - 6444849504, - 6444002432, + 6444852224, + 6444849808, + 6444002720, 6442600000, - 6444000576, - 6442600384, - 6444001600, - 6444853136, - 6444854608, - 6443805552, - 6444002880, - 6444002720 + 6444000864, + 6442600400, + 6444001888, + 6444853440, + 6444854912, + 6443805840, + 6444003168, + 6444003008 ], "bases": [ { @@ -46342,7 +46360,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448188920, + "complete_object_locator": 6448193144, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -46351,17 +46369,17 @@ }, { "type_name": "CNetMessagePB<74,class CSVCMsg_HltvReplay,17,1,0>::CProtobufBinding", - "vtable_address": 6447797904, + "vtable_address": 6447802016, "methods": [ - 6442930752, - 6442930544, - 6442702256, - 6442930736, - 6442933248, + 6442930832, + 6442930624, + 6442702704, + 6442930816, + 6442933328, 6442590368, - 6442930560, - 6442600464, - 6442600464 + 6442930640, + 6442600368, + 6442600368 ], "bases": [ { @@ -46381,7 +46399,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448188840, + "complete_object_locator": 6448193064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46390,25 +46408,25 @@ }, { "type_name": "CNetMessagePB<75,class CCLCMsg_HltvFixupOperatorTick,17,1,0>", - "vtable_address": 6447866000, + "vtable_address": 6447870128, "methods": [ - 6443337264, - 6444851872, - 6443283392, - 6444005120, + 6443337456, + 6444852176, + 6443283584, + 6444005408, 6442590368, - 6444851920, - 6444849504, - 6444007040, + 6444852224, + 6444849808, + 6444007328, 6442600000, - 6444005360, - 6442600384, - 6444006464, - 6444853136, - 6444854608, - 6443805552, - 6444008304, - 6444007584 + 6444005648, + 6442600400, + 6444006752, + 6444853440, + 6444854912, + 6443805840, + 6444008592, + 6444007872 ], "bases": [ { @@ -46470,7 +46488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222776, + "complete_object_locator": 6448226912, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -46479,13 +46497,13 @@ }, { "type_name": "CNetMessagePB<75,class CCLCMsg_HltvFixupOperatorTick,17,1,0>", - "vtable_address": 6447866144, + "vtable_address": 6447870272, "methods": [ - 6443323872, - 6442694608, - 6442694608, - 6443326496, - 6443326576 + 6443324064, + 6442695056, + 6442695056, + 6443326688, + 6443326768 ], "bases": [ { @@ -46547,7 +46565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222736, + "complete_object_locator": 6448226992, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -46556,17 +46574,17 @@ }, { "type_name": "CNetMessagePB<75,class CCLCMsg_HltvFixupOperatorTick,17,1,0>::CProtobufBinding", - "vtable_address": 6447864296, + "vtable_address": 6447868544, "methods": [ - 6443335056, - 6442920160, - 6442702256, - 6442930736, - 6443337104, + 6443335248, + 6442920240, + 6442702704, + 6442930816, + 6443337296, 6442590368, - 6443334864, - 6442600464, - 6442600464 + 6443335056, + 6442600368, + 6442600368 ], "bases": [ { @@ -46586,7 +46604,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222696, + "complete_object_locator": 6448226952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46595,25 +46613,25 @@ }, { "type_name": "CNetMessagePB<76,class CSVCMsg_UserCommands,17,1,0>", - "vtable_address": 6447825336, + "vtable_address": 6447829280, "methods": [ - 6443126580, - 6444851872, - 6442955056, - 6444010576, + 6443126772, + 6444852176, + 6442955136, + 6444010864, 6442590368, - 6444851920, - 6444849504, - 6444011200, + 6444852224, + 6444849808, + 6444011488, 6442600144, - 6444010784, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6444011776, - 6444011584 + 6444011072, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6444012064, + 6444011872 ], "bases": [ { @@ -46675,7 +46693,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205248, + "complete_object_locator": 6448209312, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -46684,13 +46702,13 @@ }, { "type_name": "CNetMessagePB<76,class CSVCMsg_UserCommands,17,1,0>", - "vtable_address": 6447825480, + "vtable_address": 6447829424, "methods": [ - 6443043200, - 6442694608, - 6442694608, - 6443055216, - 6443055296 + 6443043392, + 6442695056, + 6442695056, + 6443055408, + 6443055488 ], "bases": [ { @@ -46752,7 +46770,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205208, + "complete_object_locator": 6448209472, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -46761,17 +46779,17 @@ }, { "type_name": "CNetMessagePB<76,class CSVCMsg_UserCommands,17,1,0>::CProtobufBinding", - "vtable_address": 6447819912, + "vtable_address": 6447824120, "methods": [ - 6443097488, - 6442686800, - 6442702256, - 6442930736, - 6443111440, + 6443097680, + 6442687248, + 6442702704, + 6442930816, + 6443111632, 6442590368, - 6443097328, - 6442600464, - 6442600464 + 6443097520, + 6442600368, + 6442600368 ], "bases": [ { @@ -46791,7 +46809,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205168, + "complete_object_locator": 6448209432, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -46800,25 +46818,25 @@ }, { "type_name": "CNetMessagePB<77,class CSVCMsg_NextMsgPredicted,17,1,0>", - "vtable_address": 6447825528, + "vtable_address": 6447829472, "methods": [ - 6443127096, - 6444851872, - 6442955072, - 6444011840, + 6443127288, + 6444852176, + 6442955152, + 6444012128, 6442590368, - 6444851920, - 6444849504, - 6444012656, + 6444852224, + 6444849808, + 6444012944, 6442600000, - 6444011888, - 6442600384, - 6444012368, - 6444853136, - 6444854608, - 6443805552, - 6444012768, - 6444012752 + 6444012176, + 6442600400, + 6444012656, + 6444853440, + 6444854912, + 6443805840, + 6444013056, + 6444013040 ], "bases": [ { @@ -46880,7 +46898,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205088, + "complete_object_locator": 6448209352, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -46889,13 +46907,13 @@ }, { "type_name": "CNetMessagePB<77,class CSVCMsg_NextMsgPredicted,17,1,0>", - "vtable_address": 6447825672, + "vtable_address": 6447829616, "methods": [ - 6443043024, - 6442694608, - 6442694608, - 6443055616, - 6443055696 + 6443043216, + 6442695056, + 6442695056, + 6443055808, + 6443055888 ], "bases": [ { @@ -46957,7 +46975,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205128, + "complete_object_locator": 6448209392, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -46966,17 +46984,17 @@ }, { "type_name": "CNetMessagePB<77,class CSVCMsg_NextMsgPredicted,17,1,0>::CProtobufBinding", - "vtable_address": 6447819992, + "vtable_address": 6447823880, "methods": [ - 6443098896, - 6442687648, - 6442702256, - 6442930736, - 6443111584, + 6443099088, + 6442688096, + 6442702704, + 6442930816, + 6443111776, 6442590368, - 6443098752, - 6442600464, - 6442600464 + 6443098944, + 6442600368, + 6442600368 ], "bases": [ { @@ -46996,7 +47014,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448205048, + "complete_object_locator": 6448209272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47005,25 +47023,25 @@ }, { "type_name": "CNetMessagePB<8,class CNETMsg_SpawnGroup_Load,15,1,0>", - "vtable_address": 6447764080, + "vtable_address": 6447768184, "methods": [ - 6442737880, - 6444851872, + 6442738328, + 6444852176, 6442600704, - 6444055504, + 6444055792, 6442590368, - 6444851920, - 6444849504, - 6444059008, + 6444852224, + 6444849808, + 6444059296, 6442600000, - 6444055936, - 6442600384, - 6444057712, - 6444853136, - 6444854608, - 6443805552, - 6444060944, - 6444059952 + 6444056224, + 6442600400, + 6444058000, + 6444853440, + 6444854912, + 6443805840, + 6444061232, + 6444060240 ], "bases": [ { @@ -47085,7 +47103,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170912, + "complete_object_locator": 6448175136, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -47094,13 +47112,13 @@ }, { "type_name": "CNetMessagePB<8,class CNETMsg_SpawnGroup_Load,15,1,0>", - "vtable_address": 6447764224, + "vtable_address": 6447768328, "methods": [ 6442601168, - 6442694608, - 6442694608, - 6442704352, - 6442704432 + 6442695056, + 6442695056, + 6442704800, + 6442704880 ], "bases": [ { @@ -47162,7 +47180,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170952, + "complete_object_locator": 6448175176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -47171,17 +47189,17 @@ }, { "type_name": "CNetMessagePB<8,class CNETMsg_SpawnGroup_Load,15,1,0>::CProtobufBinding", - "vtable_address": 6447756864, + "vtable_address": 6447760960, "methods": [ - 6442718736, - 6442720160, - 6442702256, - 6442718720, - 6442728352, + 6442719184, + 6442720608, + 6442702704, + 6442719168, + 6442728800, 6442590368, - 6442718448, - 6442600464, - 6442600464 + 6442718896, + 6442600368, + 6442600368 ], "bases": [ { @@ -47201,7 +47219,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170872, + "complete_object_locator": 6448175096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47210,25 +47228,25 @@ }, { "type_name": "CNetMessagePB<9,class CNETMsg_SpawnGroup_ManifestUpdate,15,1,0>", - "vtable_address": 6447763888, + "vtable_address": 6447767992, "methods": [ - 6442738132, - 6444851872, + 6442738580, + 6444852176, 6442600720, - 6444061008, + 6444061296, 6442590368, - 6444851920, - 6444849504, - 6444061936, - 6442600000, - 6444061088, - 6442600384, - 6444061680, - 6444853136, - 6444854608, - 6443805552, + 6444852224, + 6444849808, 6444062224, - 6444062048 + 6442600000, + 6444061376, + 6442600400, + 6444061968, + 6444853440, + 6444854912, + 6443805840, + 6444062512, + 6444062336 ], "bases": [ { @@ -47290,7 +47308,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170792, + "complete_object_locator": 6448175016, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -47299,13 +47317,13 @@ }, { "type_name": "CNetMessagePB<9,class CNETMsg_SpawnGroup_ManifestUpdate,15,1,0>", - "vtable_address": 6447764032, + "vtable_address": 6447768136, "methods": [ 6442601264, - 6442694608, - 6442694608, - 6442704608, - 6442704688 + 6442695056, + 6442695056, + 6442705056, + 6442705136 ], "bases": [ { @@ -47367,7 +47385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170832, + "complete_object_locator": 6448175056, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -47376,17 +47394,17 @@ }, { "type_name": "CNetMessagePB<9,class CNETMsg_SpawnGroup_ManifestUpdate,15,1,0>::CProtobufBinding", - "vtable_address": 6447756784, + "vtable_address": 6447760880, "methods": [ - 6442720336, - 6442690016, - 6442702256, - 6442718720, - 6442728496, + 6442720784, + 6442690464, + 6442702704, + 6442719168, + 6442728944, 6442590368, - 6442720176, - 6442600464, - 6442600464 + 6442720624, + 6442600368, + 6442600368 ], "bases": [ { @@ -47406,7 +47424,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170752, + "complete_object_locator": 6448174976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47415,30 +47433,30 @@ }, { "type_name": "CNetSupportImpl", - "vtable_address": 6447893656, + "vtable_address": 6447897656, "methods": [ - 6443565568, - 6443565648, - 6443565680, + 6443565760, + 6443565840, + 6443565872, 6442592912, + 6442600400, + 6442600400, 6442600384, - 6442600384, - 6442600368, - 6442693056, - 6443567808, + 6442693504, + 6443568000, 6442590368, - 6442696624, - 6442938656, - 6443565728, - 6443566416, - 6443567040, - 6443567104, - 6443567632, - 6443567584, - 6442600384, - 6443567664, - 6442600384, - 6443567696 + 6442697072, + 6442938736, + 6443565920, + 6443566608, + 6443567232, + 6443567296, + 6443567824, + 6443567776, + 6442600400, + 6443567856, + 6442600400, + 6443567888 ], "bases": [ { @@ -47500,7 +47518,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448232240, + "complete_object_locator": 6448236456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -47509,9 +47527,9 @@ }, { "type_name": "CNetworkClientService", - "vtable_address": 6448051896, + "vtable_address": 6448055952, "methods": [ - 6444379504 + 6444379792 ], "bases": [ { @@ -47685,7 +47703,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275432, + "complete_object_locator": 6448279744, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -47694,72 +47712,72 @@ }, { "type_name": "CNetworkClientService", - "vtable_address": 6448051912, + "vtable_address": 6448055968, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444369776, - 6444372064, + 6442793488, + 6442793248, 6442600384, - 6444369760, - 6442694208, - 6442792976, + 6444370064, + 6444372352, + 6442600400, + 6444370048, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, - 6442600384, - 6444369312, - 6444186112, - 6444186048, - 6444186064, - 6444347920, - 6444186096, - 6444186080, - 6444364736, - 6444365808, - 6444365824, - 6444366544, - 6444366160, - 6444373648, - 6444373824, - 6444377504, - 6444377952, - 6444378032, - 6444378064, - 6444378096, - 6444379408, - 6444374304, - 6444373808, - 6444378144, - 6444378208, - 6444378704, - 6444378768, - 6444378864, - 6444378912, - 6444379136, + 6442697072, 6442600384, - 6444379184, - 6444379264, - 6444379328, - 6444379488, + 6443587504, + 6442697072, + 6442600400, + 6444369600, + 6444186400, + 6444186336, + 6444186352, + 6444348208, + 6444186384, + 6444186368, + 6444365024, + 6444366096, + 6444366112, + 6444366832, + 6444366448, + 6444373936, + 6444374112, + 6444377792, + 6444378240, + 6444378320, + 6444378352, + 6444378384, + 6444379696, + 6444374592, + 6444374096, + 6444378432, + 6444378496, + 6444378992, + 6444379056, + 6444379152, + 6444379200, + 6444379424, + 6442600400, 6444379472, - 6444378960, - 6444380608, - 6444380768, - 6444380816, - 6444380880, + 6444379552, + 6444379616, + 6444379776, + 6444379760, + 6444379248, + 6444380896, + 6444381056, + 6444381104, 6444381168, - 6444381184, - 6442600464, - 6444372304, - 6444372384, - 6444372400, - 6444374336, - 6444366128, - 6444381712 + 6444381456, + 6444381472, + 6442600368, + 6444372592, + 6444372672, + 6444372688, + 6444374624, + 6444366416, + 6444382000 ], "bases": [ { @@ -47933,7 +47951,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275552, + "complete_object_locator": 6448279664, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -47942,53 +47960,53 @@ }, { "type_name": "CNetworkClientSpawnGroup", - "vtable_address": 6447779208, - "methods": [ - 6442824976, - 6442825008, - 6442825040, - 6442825072, - 6442825088, - 6442825104, - 6442825168, - 6442825200, - 6442825136, - 6442825152, - 6443524720, - 6442825232, - 6442838384, - 6442825376, - 6442828976, - 6442825392, - 6442825248, - 6442825264, - 6442778448, - 6442825360, - 6443521488, + "vtable_address": 6447783320, + "methods": [ 6442825424, + 6442825456, + 6442825488, + 6442825520, + 6442825536, + 6442825552, + 6442825616, + 6442825648, + 6442825584, + 6442825600, + 6443524912, + 6442825680, + 6442838832, + 6442825824, + 6442829424, + 6442825840, + 6442825696, + 6442825712, + 6442778896, + 6442825808, + 6443521680, + 6442825872, + 6442825856, + 6442840336, + 6442830768, + 6442825728, + 6442825744, + 6442825760, + 6442831088, + 6442825776, + 6442825792, + 6442600400, + 6442829520, + 6442830096, + 6443522864, 6442825408, - 6442839888, - 6442830320, - 6442825280, - 6442825296, - 6442825312, - 6442830640, - 6442825328, - 6442825344, - 6442600384, - 6442829072, - 6442829648, - 6443522672, - 6442824960, - 6442829488, - 6443523328, - 6443524672, - 6442830576, - 6442829808, - 6442829920, - 6442830224, - 6442830656, - 6442828384 + 6442829936, + 6443523520, + 6443524864, + 6442831024, + 6442830256, + 6442830368, + 6442830672, + 6442831104, + 6442828832 ], "bases": [ { @@ -48050,7 +48068,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182552, + "complete_object_locator": 6448186776, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -48059,9 +48077,9 @@ }, { "type_name": "CNetworkClientSpawnGroup", - "vtable_address": 6447779576, + "vtable_address": 6447783688, "methods": [ - 6443522000 + 6443522192 ], "bases": [ { @@ -48123,7 +48141,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182592, + "complete_object_locator": 6448186816, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -48132,10 +48150,10 @@ }, { "type_name": "CNetworkClientSpawnGroup", - "vtable_address": 6447779592, + "vtable_address": 6447783704, "methods": [ - 6442600384, - 6443524000 + 6442600400, + 6443524192 ], "bases": [ { @@ -48197,7 +48215,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182432, + "complete_object_locator": 6448186656, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -48206,10 +48224,10 @@ }, { "type_name": "CNetworkClientSpawnGroupCreatePrerequisites", - "vtable_address": 6447778336, + "vtable_address": 6447782448, "methods": [ - 6442843504, - 6442844288 + 6442843952, + 6442844736 ], "bases": [ { @@ -48257,7 +48275,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182312, + "complete_object_locator": 6448186536, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -48266,16 +48284,16 @@ }, { "type_name": "CNetworkClientSpawnGroupCreatePrerequisites", - "vtable_address": 6447778360, + "vtable_address": 6447782472, "methods": [ - 6442830976, - 6442845840, - 6442845856, - 6442841280, - 6442844272, - 6442842448, - 6442833472, - 6442844064 + 6442831424, + 6442846288, + 6442846304, + 6442841728, + 6442844720, + 6442842896, + 6442833920, + 6442844512 ], "bases": [ { @@ -48323,7 +48341,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182352, + "complete_object_locator": 6448186576, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -48332,14 +48350,14 @@ }, { "type_name": "CNetworkClientSpawnGroup_AllocateEntitiesPrerequisite", - "vtable_address": 6447780064, + "vtable_address": 6447784176, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6442833840, - 6442825520, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6442834288, + 6442825968, + 6442846336 ], "bases": [ { @@ -48373,7 +48391,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182232, + "complete_object_locator": 6448186456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48382,14 +48400,14 @@ }, { "type_name": "CNetworkClientSpawnGroup_AllocateSpawnGroupPrerequisite", - "vtable_address": 6447780008, + "vtable_address": 6447784120, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6442833904, - 6442825440, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6442834352, + 6442825888, + 6442846336 ], "bases": [ { @@ -48423,7 +48441,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182512, + "complete_object_locator": 6448186736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48432,14 +48450,14 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadEntitiesPrerequisite", - "vtable_address": 6447779728, + "vtable_address": 6447783840, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6442837136, - 6442825920, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6442837584, + 6442826368, + 6442846336 ], "bases": [ { @@ -48473,7 +48491,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182032, + "complete_object_locator": 6448186256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48482,16 +48500,16 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadPreviousLevelPrerequisite", - "vtable_address": 6447779856, + "vtable_address": 6447783968, "methods": [ - 6442825536, - 6442845840, - 6442845856, - 6442834896, - 6442825600, - 6442845888, - 6442835872, - 6442834720 + 6442825984, + 6442846288, + 6442846304, + 6442835344, + 6442826048, + 6442846336, + 6442836320, + 6442835168 ], "bases": [ { @@ -48539,7 +48557,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182072, + "complete_object_locator": 6448186296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48548,16 +48566,16 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadSaveGamePrerequisite", - "vtable_address": 6447779784, + "vtable_address": 6447783896, "methods": [ - 6442825536, - 6442845840, - 6442845856, - 6442834896, - 6442825600, - 6442845888, - 6442835744, - 6442834720 + 6442825984, + 6442846288, + 6442846304, + 6442835344, + 6442826048, + 6442846336, + 6442836192, + 6442835168 ], "bases": [ { @@ -48605,7 +48623,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182272, + "complete_object_locator": 6448186496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48614,16 +48632,16 @@ }, { "type_name": "CNetworkClientSpawnGroup_LoadSaveGamePrerequisiteBase", - "vtable_address": 6447780120, + "vtable_address": 6447784232, "methods": [ - 6442825536, - 6442845840, - 6442845856, - 6442834896, - 6446722668, - 6442845888, - 6446722668, - 6442834720 + 6442825984, + 6442846288, + 6442846304, + 6442835344, + 6446722972, + 6442846336, + 6446722972, + 6442835168 ], "bases": [ { @@ -48657,7 +48675,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182192, + "complete_object_locator": 6448186416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48666,14 +48684,14 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 6447779928, + "vtable_address": 6447784040, "methods": [ - 6442825632, - 6442845840, - 6442845856, - 6442836496, - 6442825616, - 6442845888 + 6442826080, + 6442846288, + 6442846304, + 6442836944, + 6442826064, + 6442846336 ], "bases": [ { @@ -48735,7 +48753,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182472, + "complete_object_locator": 6448186696, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -48744,10 +48762,10 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 6447779984, + "vtable_address": 6447784096, "methods": [ - 6442836304, - 6442836352 + 6442836752, + 6442836800 ], "bases": [ { @@ -48809,7 +48827,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182392, + "complete_object_locator": 6448186616, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -48818,14 +48836,14 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForChildSpawnGroups", - "vtable_address": 6447779672, + "vtable_address": 6447783784, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6442838080, 6442825904, - 6442845888 + 6442846288, + 6442846304, + 6442838528, + 6442826352, + 6442846336 ], "bases": [ { @@ -48859,7 +48877,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182112, + "complete_object_locator": 6448186336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48868,14 +48886,14 @@ }, { "type_name": "CNetworkClientSpawnGroup_WaitForOwnerSpawnGroupPrerequisite", - "vtable_address": 6447779616, + "vtable_address": 6447783728, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6442836976, - 6442825888, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6442837424, + 6442826336, + 6442846336 ], "bases": [ { @@ -48909,7 +48927,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448182152, + "complete_object_locator": 6448186376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -48918,9 +48936,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 6447801400, + "vtable_address": 6447805512, "methods": [ - 6442600384 + 6442600400 ], "bases": [ { @@ -49038,7 +49056,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448191040, + "complete_object_locator": 6448195264, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -49047,9 +49065,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 6447801416, + "vtable_address": 6447805528, "methods": [ - 6442878816 + 6442878880 ], "bases": [ { @@ -49167,7 +49185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190920, + "complete_object_locator": 6448195144, "offset": 2888824, "constructor_displacement": 0, "class_attributes": 1 @@ -49176,150 +49194,150 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 6447801432, + "vtable_address": 6447805544, "methods": [ - 6442971504, - 6442998016, - 6443029280, - 6443029296, + 6442971584, + 6442998208, + 6443029472, + 6443029488, 6442602016, 6442602032, 6442602048, - 6442859808, - 6442745136, - 6442859824, - 6442859840, - 6442849552, - 6442985344, - 6442888368, + 6442860256, + 6442745584, + 6442860272, + 6442860288, + 6442850000, + 6442985424, + 6442888448, 6442602064, - 6442849040, - 6442856112, - 6442856080, - 6442849056, - 6442849088, - 6443029264, - 6442897072, - 6442875328, - 6442879040, - 6442858640, - 6442884288, - 6443030240, - 6442600384, - 6442886496, - 6442861840, - 6443029344, - 6442986384, - 6442997616, - 6443030400, - 6443029232, - 6443030576, - 6443031040, - 6442990560, - 6443026768, - 6443028288, - 6443029776, - 6443029776, - 6442600384, - 6443030464, - 6442856160, - 6442984272, - 6442950320, - 6442938656, - 6442972048, - 6442745136, - 6442971488, - 6443018256, - 6443019408, - 6442849120, - 6442971472, - 6442998928, - 6443031072, - 6443031664, - 6442849104, - 6443032208, - 6443005792, - 6442987184, - 6442990928, - 6442862448, - 6442602080, - 6442901296, - 6443007280, - 6442849584, - 6442849600, - 6443007312, - 6442901264, - 6442901280, - 6442889600, - 6443029808, - 6442868192, - 6442868496, - 6442862480, - 6442873728, + 6442849488, + 6442856560, + 6442856528, + 6442849504, + 6442849536, + 6443029456, + 6442897152, + 6442875776, + 6442879104, + 6442859088, + 6442884336, + 6443030432, + 6442600400, + 6442886544, + 6442862288, + 6443029536, + 6442986464, + 6442997808, + 6443030592, + 6443029424, + 6443030768, + 6443031232, + 6442990752, + 6443026960, + 6443028480, + 6443029968, + 6443029968, + 6442600400, + 6443030656, + 6442856608, + 6442984352, + 6442950400, + 6442938736, + 6442972128, + 6442745584, + 6442971568, + 6443018448, + 6443019600, 6442849568, - 6442869008, + 6442971552, + 6442999120, + 6443031264, + 6443031856, + 6442849552, + 6443032400, + 6443005984, + 6442987360, + 6442991120, + 6442862896, + 6442602080, + 6442901376, + 6443007472, + 6442850032, + 6442850048, + 6443007504, + 6442901344, + 6442901360, + 6442889680, + 6443030000, + 6442868640, + 6442868944, + 6442862928, + 6442874176, + 6442850016, 6442869456, - 6442874656, - 6442867568, - 6442901248, - 6442896944, - 6442897008, - 6442889424, - 6442892784, - 6442894128, - 6442999072, - 6442999504, - 6443000496, - 6443001072, - 6443003408, - 6443005392, - 6443004400, - 6443007328, + 6442869904, + 6442875104, + 6442868016, + 6442901328, + 6442897024, + 6442897088, + 6442889504, + 6442892864, + 6442894208, + 6442999264, + 6442999696, + 6443000688, + 6443001264, + 6443003600, + 6443005584, + 6443004592, + 6443007520, 6442590368, 6442590368, - 6443000576, - 6442894144, - 6442886528, - 6443009952, + 6443000768, + 6442894224, + 6442886576, + 6443010144, 6442590368, - 6443025632, - 6443011792, - 6442856224, - 6443012032, - 6443012800, + 6443025824, + 6443011984, + 6442856672, + 6443012224, + 6443012992, 6442590368, - 6442895920, - 6443027824, - 6443028400, - 6443028768, + 6442896000, + 6443028016, + 6443028592, + 6443028960, 6442590368, 6442590368, - 6443000528, - 6443033056, + 6443000720, + 6443033248, 6442590368, 6442590368, - 6443033248, - 6442887968, - 6442888144, - 6443028304, - 6442888304, - 6442888336, + 6443033440, + 6442888016, + 6442888208, + 6443028496, + 6442888384, + 6442888416, + 6442856736, + 6443029216, + 6442756048, + 6442856992, + 6442857424, + 6442853616, + 6442858912, 6442856288, - 6443029024, - 6442755600, - 6442856544, - 6442856976, - 6442853168, - 6442858464, - 6442855840, - 6442855200, - 6443041520, - 6442750096, - 6442753264, - 6442751184, - 6442752464, - 6442894512, - 6442900976 + 6442855648, + 6443041712, + 6442750544, + 6442753712, + 6442751632, + 6442752912, + 6442894592, + 6442901056 ], "bases": [ { @@ -49437,7 +49455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448191120, + "complete_object_locator": 6448195344, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -49446,9 +49464,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 6447802576, + "vtable_address": 6447806688, "methods": [ - 6443033264 + 6443033456 ], "bases": [ { @@ -49566,7 +49584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448191080, + "complete_object_locator": 6448195304, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -49575,10 +49593,10 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 6447802592, + "vtable_address": 6447806704, "methods": [ - 6442936796, - 6442936784 + 6442936876, + 6442936864 ], "bases": [ { @@ -49696,7 +49714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448190960, + "complete_object_locator": 6448195184, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -49705,9 +49723,9 @@ }, { "type_name": "CNetworkGameClient", - "vtable_address": 6447802616, + "vtable_address": 6447806728, "methods": [ - 6442889472 + 6442889552 ], "bases": [ { @@ -49825,7 +49843,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448191000, + "complete_object_locator": 6448195224, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -49834,9 +49852,9 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 6447828080, + "vtable_address": 6447832208, "methods": [ - 6443033264 + 6442600400 ], "bases": [ { @@ -49926,8 +49944,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208568, - "offset": 8, + "complete_object_locator": 6448212792, + "offset": 32, "constructor_displacement": 0, "class_attributes": 1 } @@ -49935,150 +49953,9 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 6447828096, + "vtable_address": 6447832224, "methods": [ - 6442971504, - 6442998016, - 6443029280, - 6443029296, - 6442602016, - 6442602032, - 6442602048, - 6442600368, - 6442745136, - 6442600368, - 6442600464, - 6442600384, - 6442985344, - 6442987200, - 6442602064, - 6442849040, - 6442600464, - 6442600464, - 6442849056, - 6442849088, - 6443029264, - 6442972096, - 6442600384, - 6442600384, - 6442600384, - 6443030384, - 6443030240, - 6442600384, - 6442600384, - 6442953968, - 6443029344, - 6442986384, - 6442997616, - 6443030400, - 6443029232, - 6443030576, - 6443031040, - 6442990560, - 6443026768, - 6443028288, - 6443029776, - 6443029776, - 6442600384, - 6443030464, - 6442960048, - 6442984272, - 6442950320, - 6442938656, - 6442972048, - 6442745136, - 6442971488, - 6443018256, - 6443019408, - 6442849120, - 6442971472, - 6442998928, - 6443031072, - 6443031664, - 6442849104, - 6443032208, - 6443005792, - 6442987184, - 6442990928, - 6442960080, - 6442960048, - 6442960064, - 6443007280, - 6446722668, - 6446722668, - 6443007312, - 6442600384, - 6442600384, - 6442769136, - 6443029808, - 6442600384, - 6442972112, - 6442600384, - 6442600384, - 6442960048, - 6442600384, - 6442600384, - 6442600384, - 6442600384, - 6442600464, - 6442600464, - 6443041504, - 6442972480, - 6442989792, - 6442894128, - 6442999072, - 6442999504, - 6443000496, - 6443001072, - 6443003408, - 6443005392, - 6443004400, - 6443007328, - 6442590368, - 6442590368, - 6443000576, - 6443007920, - 6443011184, - 6443009952, - 6442590368, - 6443025632, - 6443011792, - 6443011808, - 6443012032, - 6443012800, - 6442590368, - 6443013104, - 6443027824, - 6443028400, - 6443028768, - 6442590368, - 6442590368, - 6443000528, - 6443033056, - 6442590368, - 6442590368, - 6443033248, - 6442983712, - 6442986800, - 6443028304, - 6442590368, - 6442590368, - 6443029008, - 6443029024, - 6442600464, - 6442971552, - 6442986784, - 6442983856, - 6442988432, - 6442600384, - 6442600384, - 6443041520, - 6442600384, - 6442600384, - 6446722668, - 6446722668, - 6443012960, - 6442600384 + 6442988512 ], "bases": [ { @@ -50168,8 +50045,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208608, - "offset": 0, + "complete_object_locator": 6448212832, + "offset": 24, "constructor_displacement": 0, "class_attributes": 1 } @@ -50177,9 +50054,10 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 6447829240, + "vtable_address": 6447832240, "methods": [ - 6442600384 + 6443126844, + 6442936864 ], "bases": [ { @@ -50269,8 +50147,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208448, - "offset": 32, + "complete_object_locator": 6448212672, + "offset": 16, "constructor_displacement": 0, "class_attributes": 1 } @@ -50278,9 +50156,9 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 6447829256, + "vtable_address": 6447832352, "methods": [ - 6442988320 + 6443033456 ], "bases": [ { @@ -50370,8 +50248,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208488, - "offset": 24, + "complete_object_locator": 6448212712, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -50379,10 +50257,150 @@ }, { "type_name": "CNetworkGameClientBase", - "vtable_address": 6447829272, + "vtable_address": 6447832368, "methods": [ - 6443126652, - 6442936784 + 6442971584, + 6442998208, + 6443029472, + 6443029488, + 6442602016, + 6442602032, + 6442602048, + 6442600384, + 6442745584, + 6442600384, + 6442600368, + 6442600400, + 6442985424, + 6442987376, + 6442602064, + 6442849488, + 6442600368, + 6442600368, + 6442849504, + 6442849536, + 6443029456, + 6442972176, + 6442600400, + 6442600400, + 6442600400, + 6443030576, + 6443030432, + 6442600400, + 6442600400, + 6442954048, + 6443029536, + 6442986464, + 6442997808, + 6443030592, + 6443029424, + 6443030768, + 6443031232, + 6442990752, + 6443026960, + 6443028480, + 6443029968, + 6443029968, + 6442600400, + 6443030656, + 6442960128, + 6442984352, + 6442950400, + 6442938736, + 6442972128, + 6442745584, + 6442971568, + 6443018448, + 6443019600, + 6442849568, + 6442971552, + 6442999120, + 6443031264, + 6443031856, + 6442849552, + 6443032400, + 6443005984, + 6442987360, + 6442991120, + 6442960160, + 6442960128, + 6442960144, + 6443007472, + 6446722972, + 6446722972, + 6443007504, + 6442600400, + 6442600400, + 6442769584, + 6443030000, + 6442600400, + 6442972192, + 6442600400, + 6442600400, + 6442960128, + 6442600400, + 6442600400, + 6442600400, + 6442600400, + 6442600368, + 6442600368, + 6443041696, + 6442972560, + 6442989984, + 6442894208, + 6442999264, + 6442999696, + 6443000688, + 6443001264, + 6443003600, + 6443005584, + 6443004592, + 6443007520, + 6442590368, + 6442590368, + 6443000768, + 6443008112, + 6443011376, + 6443010144, + 6442590368, + 6443025824, + 6443011984, + 6443012000, + 6443012224, + 6443012992, + 6442590368, + 6443013296, + 6443028016, + 6443028592, + 6443028960, + 6442590368, + 6442590368, + 6443000720, + 6443033248, + 6442590368, + 6442590368, + 6443033440, + 6442983792, + 6442986880, + 6443028496, + 6442590368, + 6442590368, + 6443029200, + 6443029216, + 6442600368, + 6442971632, + 6442986864, + 6442983936, + 6442988624, + 6442600400, + 6442600400, + 6443041712, + 6442600400, + 6442600400, + 6446722972, + 6446722972, + 6443013152, + 6442600400 ], "bases": [ { @@ -50472,8 +50490,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208528, - "offset": 16, + "complete_object_locator": 6448212752, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -50481,10 +50499,10 @@ }, { "type_name": "CNetworkGameServer", - "vtable_address": 6447831288, + "vtable_address": 6447835416, "methods": [ - 6443170976, - 6442600384 + 6443171168, + 6442600400 ], "bases": [ { @@ -50546,7 +50564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209712, + "complete_object_locator": 6448213976, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -50555,10 +50573,10 @@ }, { "type_name": "CNetworkGameServer", - "vtable_address": 6447831312, + "vtable_address": 6447835440, "methods": [ - 6443145760, - 6443170048 + 6443145952, + 6443170240 ], "bases": [ { @@ -50620,7 +50638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209752, + "complete_object_locator": 6448213936, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -50629,84 +50647,84 @@ }, { "type_name": "CNetworkGameServer", - "vtable_address": 6447831336, - "methods": [ - 6443130480, - 6443201312, - 6443201264, - 6443202336, - 6443131664, - 6443225536, - 6443225552, - 6443225520, - 6442960096, - 6443199456, - 6443226352, - 6443128512, - 6443220704, - 6443231296, - 6443231744, - 6443231952, - 6443232080, - 6443142864, - 6443174400, - 6443176208, - 6443179984, - 6443226416, - 6443225968, - 6443226336, - 6443226368, - 6443128528, - 6443226400, - 6443198704, - 6443139744, - 6443140496, - 6443229856, - 6443180912, - 6443174816, - 6443174864, - 6443199472, - 6443141424, - 6443179696, - 6443174064, - 6443227488, - 6443228832, - 6443229392, - 6443229408, - 6443229840, - 6443128560, - 6443214224, - 6443128624, - 6443128576, - 6443220448, - 6443209392, - 6443203424, - 6443134192, - 6443210720, - 6443235840, - 6443235888, - 6443130720, - 6443203184, - 6443143776, - 6443143840, - 6443128592, - 6443195376, - 6443195600, - 6443191968, - 6442600464, - 6443131008, - 6443162160, - 6443136720, - 6443182416, - 6443172960, - 6443202912, - 6443140480, - 6443165680, - 6443137024, - 6443137200, - 6443195440, - 6443198496, - 6443195792 + "vtable_address": 6447835464, + "methods": [ + 6443130672, + 6443201504, + 6443201456, + 6443202528, + 6443131856, + 6443225728, + 6443225744, + 6443225712, + 6442960176, + 6443199648, + 6443226544, + 6443128704, + 6443220896, + 6443231488, + 6443231936, + 6443232144, + 6443232272, + 6443143056, + 6443174592, + 6443176400, + 6443180176, + 6443226608, + 6443226160, + 6443226528, + 6443226560, + 6443128720, + 6443226592, + 6443198896, + 6443139936, + 6443140688, + 6443230048, + 6443181104, + 6443175008, + 6443175056, + 6443199664, + 6443141616, + 6443179888, + 6443174256, + 6443227680, + 6443229024, + 6443229584, + 6443229600, + 6443230032, + 6443128752, + 6443214416, + 6443128816, + 6443128768, + 6443220640, + 6443209584, + 6443203616, + 6443134384, + 6443210912, + 6443236032, + 6443236080, + 6443130912, + 6443203376, + 6443143968, + 6443144032, + 6443128784, + 6443195568, + 6443195792, + 6443192160, + 6442600368, + 6443131200, + 6443162352, + 6443136912, + 6443182608, + 6443173152, + 6443203104, + 6443140672, + 6443165872, + 6443137216, + 6443137392, + 6443195632, + 6443198688, + 6443195984 ], "bases": [ { @@ -50768,7 +50786,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209792, + "complete_object_locator": 6448214016, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -50777,10 +50795,84 @@ }, { "type_name": "CNetworkGameServerBase", - "vtable_address": 6447837568, - "methods": [ - 6443170976, - 6442600384 + "vtable_address": 6447841704, + "methods": [ + 6443199952, + 6443201504, + 6443201456, + 6443202528, + 6443208224, + 6443225728, + 6443225744, + 6443225712, + 6442960176, + 6443199648, + 6443226544, + 6443128704, + 6443220896, + 6443231488, + 6443231936, + 6443232144, + 6443232272, + 6443233152, + 6443174592, + 6443176400, + 6443180176, + 6443226608, + 6443226160, + 6443226528, + 6443226560, + 6443128720, + 6443226592, + 6443198896, + 6442590368, + 6442590368, + 6443230048, + 6443181104, + 6443175008, + 6443175056, + 6443199664, + 6442590368, + 6443179888, + 6443174256, + 6443227680, + 6443229024, + 6443229584, + 6443229600, + 6443230032, + 6443128752, + 6443214416, + 6443128816, + 6443128768, + 6443220640, + 6443209584, + 6443203616, + 6442600400, + 6443210912, + 6443236032, + 6443236080, + 6443201360, + 6443203376, + 6443041696, + 6443146688, + 6443128784, + 6443195568, + 6443195792, + 6443192160, + 6442600368, + 6442600368, + 6443162352, + 6442600400, + 6443182608, + 6443173152, + 6443203104, + 6442600400, + 6443165872, + 6446722972, + 6442590368, + 6443195632, + 6443198688, + 6443195984 ], "bases": [ { @@ -50828,8 +50920,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448212072, - "offset": 16, + "complete_object_locator": 6448216296, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -50837,84 +50929,10 @@ }, { "type_name": "CNetworkGameServerBase", - "vtable_address": 6447837608, - "methods": [ - 6443199760, - 6443201312, - 6443201264, - 6443202336, - 6443208032, - 6443225536, - 6443225552, - 6443225520, - 6442960096, - 6443199456, - 6443226352, - 6443128512, - 6443220704, - 6443231296, - 6443231744, - 6443231952, - 6443232080, - 6443232960, - 6443174400, - 6443176208, - 6443179984, - 6443226416, - 6443225968, - 6443226336, - 6443226368, - 6443128528, - 6443226400, - 6443198704, - 6442590368, - 6442590368, - 6443229856, - 6443180912, - 6443174816, - 6443174864, - 6443199472, - 6442590368, - 6443179696, - 6443174064, - 6443227488, - 6443228832, - 6443229392, - 6443229408, - 6443229840, - 6443128560, - 6443214224, - 6443128624, - 6443128576, - 6443220448, - 6443209392, - 6443203424, - 6442600384, - 6443210720, - 6443235840, - 6443235888, - 6443201168, - 6443203184, - 6443041504, - 6443146496, - 6443128592, - 6443195376, - 6443195600, - 6443191968, - 6442600464, - 6442600464, - 6443162160, - 6442600384, - 6443182416, - 6443172960, - 6443202912, - 6442600384, - 6443165680, - 6446722668, - 6442590368, - 6443195440, - 6443198496, - 6443195792 + "vtable_address": 6447842320, + "methods": [ + 6443240716, + 6443170240 ], "bases": [ { @@ -50962,8 +50980,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448212112, - "offset": 0, + "complete_object_locator": 6448216216, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -50971,10 +50989,10 @@ }, { "type_name": "CNetworkGameServerBase", - "vtable_address": 6447838224, + "vtable_address": 6447842344, "methods": [ - 6443240524, - 6443170048 + 6443171168, + 6442600400 ], "bases": [ { @@ -51022,8 +51040,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448212032, - "offset": 8, + "complete_object_locator": 6448216256, + "offset": 16, "constructor_displacement": 0, "class_attributes": 1 } @@ -51031,41 +51049,41 @@ }, { "type_name": "CNetworkP2PService", - "vtable_address": 6448055408, + "vtable_address": 6448059688, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6444395216, + 6442793488, + 6442793248, 6442600384, - 6444395200, - 6442694208, - 6442792976, + 6442793392, + 6444395504, + 6442600400, + 6444395488, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442697072, 6442600384, - 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444391168, - 6444186096, - 6444186080, - 6444392912, - 6444398688, - 6444402960, - 6444403824, - 6442600384, - 6444404624, - 6444402704, - 6444406960, - 6444402464, - 6444394464, - 6442600384 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444391456, + 6444186384, + 6444186368, + 6444393200, + 6444398976, + 6444403248, + 6444404112, + 6442600400, + 6444404912, + 6444402992, + 6444407248, + 6444402752, + 6444394752, + 6442600400 ], "bases": [ { @@ -51225,7 +51243,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448277112, + "complete_object_locator": 6448281192, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -51234,10 +51252,16 @@ }, { "type_name": "CNetworkServerCreatePrerequisites", - "vtable_address": 6448056136, + "vtable_address": 6448060952, "methods": [ - 6442843504, - 6442844288 + 6444410144, + 6442846288, + 6442846304, + 6442841728, + 6444410128, + 6442842896, + 6444410912, + 6442844512 ], "bases": [ { @@ -51285,8 +51309,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448278944, - "offset": 16, + "complete_object_locator": 6448283064, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -51294,16 +51318,10 @@ }, { "type_name": "CNetworkServerCreatePrerequisites", - "vtable_address": 6448056304, + "vtable_address": 6448061024, "methods": [ - 6444409856, - 6442845840, - 6442845856, - 6442841280, - 6444409840, - 6442842448, - 6444410624, - 6442844064 + 6442843952, + 6442844736 ], "bases": [ { @@ -51351,8 +51369,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448278904, - "offset": 0, + "complete_object_locator": 6448283104, + "offset": 16, "constructor_displacement": 0, "class_attributes": 1 } @@ -51360,54 +51378,54 @@ }, { "type_name": "CNetworkServerService", - "vtable_address": 6448056432, + "vtable_address": 6448060560, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444419584, - 6444423616, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6444419872, + 6444423904, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, - 6444419456, + 6442697072, 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444408544, - 6444186096, - 6444186080, - 6444413584, - 6444414176, - 6444423792, - 6444414192, - 6444414240, - 6444415168, - 6444415232, - 6444423824, - 6444423856, - 6444424336, - 6444424432, - 6444424528, - 6444424544, - 6444424560, - 6444424576, - 6444424640, - 6444424768, - 6444424784, - 6444425872, - 6444425920, - 6444415200, - 6444426496, - 6444430112, - 6444430128 + 6443587504, + 6442697072, + 6444419744, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444408832, + 6444186384, + 6444186368, + 6444413872, + 6444414464, + 6444424080, + 6444414480, + 6444414528, + 6444415456, + 6444415520, + 6444424112, + 6444424144, + 6444424624, + 6444424720, + 6444424816, + 6444424832, + 6444424848, + 6444424864, + 6444424928, + 6444425056, + 6444425072, + 6444426160, + 6444426208, + 6444415488, + 6444426784, + 6444430400, + 6444430416 ], "bases": [ { @@ -51567,7 +51585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448279184, + "complete_object_locator": 6448283304, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -51576,9 +51594,9 @@ }, { "type_name": "CNetworkServerService", - "vtable_address": 6448056808, + "vtable_address": 6448060936, "methods": [ - 6444430176 + 6444430464 ], "bases": [ { @@ -51738,7 +51756,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448279224, + "complete_object_locator": 6448283424, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -51747,10 +51765,53 @@ }, { "type_name": "CNetworkServerSpawnGroup", - "vtable_address": 6447851328, + "vtable_address": 6447855480, "methods": [ - 6442600384, - 6443242032 + 6442825424, + 6442825456, + 6442825488, + 6442825520, + 6442825536, + 6442825552, + 6442825616, + 6442825648, + 6442825584, + 6442825600, + 6443524912, + 6442825680, + 6443524928, + 6443241488, + 6442600400, + 6442949216, + 6442825696, + 6442825712, + 6442778896, + 6442825808, + 6443242960, + 6443241520, + 6443241504, + 6443525872, + 6443243504, + 6442825728, + 6442825744, + 6442825760, + 6442600400, + 6442825776, + 6442825792, + 6443242192, + 6443242512, + 6443242896, + 6443522864, + 6442825408, + 6443522896, + 6443523520, + 6443524864, + 6443243600, + 6443243024, + 6443243120, + 6443243296, + 6443524240, + 6443242208 ], "bases": [ { @@ -51812,8 +51873,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448215008, - "offset": 16, + "complete_object_locator": 6448219152, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -51821,53 +51882,9 @@ }, { "type_name": "CNetworkServerSpawnGroup", - "vtable_address": 6447851352, - "methods": [ - 6442824976, - 6442825008, - 6442825040, - 6442825072, - 6442825088, - 6442825104, - 6442825168, - 6442825200, - 6442825136, - 6442825152, - 6443524720, - 6442825232, - 6443524736, - 6443241296, - 6442600384, - 6442949136, - 6442825248, - 6442825264, - 6442778448, - 6442825360, - 6443242768, - 6443241328, - 6443241312, - 6443525680, - 6443243312, - 6442825280, - 6442825296, - 6442825312, - 6442600384, - 6442825328, - 6442825344, - 6443242000, - 6443242320, - 6443242704, - 6443522672, - 6442824960, - 6443522704, - 6443523328, - 6443524672, - 6443243408, - 6443242832, - 6443242928, - 6443243104, - 6443524048, - 6443242016 + "vtable_address": 6447855848, + "methods": [ + 6443522192 ], "bases": [ { @@ -51929,8 +51946,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448215048, - "offset": 0, + "complete_object_locator": 6448219072, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -51938,9 +51955,10 @@ }, { "type_name": "CNetworkServerSpawnGroup", - "vtable_address": 6447851720, + "vtable_address": 6447855864, "methods": [ - 6443522000 + 6442600400, + 6443242224 ], "bases": [ { @@ -52002,8 +52020,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214968, - "offset": 8, + "complete_object_locator": 6448219112, + "offset": 16, "constructor_displacement": 0, "class_attributes": 1 } @@ -52011,10 +52029,10 @@ }, { "type_name": "CNetworkServerSpawnGroupCreatePrerequisites", - "vtable_address": 6447851232, + "vtable_address": 6447855384, "methods": [ - 6442843504, - 6442844288 + 6442843952, + 6442844736 ], "bases": [ { @@ -52062,7 +52080,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214808, + "complete_object_locator": 6448218872, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -52071,16 +52089,16 @@ }, { "type_name": "CNetworkServerSpawnGroupCreatePrerequisites", - "vtable_address": 6447851256, + "vtable_address": 6447855408, "methods": [ - 6443245136, - 6442845840, - 6442845856, - 6442841280, - 6443241984, - 6442842448, - 6443247392, - 6442844064 + 6443245328, + 6442846288, + 6442846304, + 6442841728, + 6443242176, + 6442842896, + 6443247584, + 6442844512 ], "bases": [ { @@ -52128,7 +52146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214728, + "complete_object_locator": 6448219032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -52137,14 +52155,14 @@ }, { "type_name": "CNetworkServerSpawnGroup_AllocateEntitiesPrerequisite", - "vtable_address": 6447852336, + "vtable_address": 6447856296, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6443248112, - 6443241360, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6443248304, + 6443241552, + 6442846336 ], "bases": [ { @@ -52178,7 +52196,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214768, + "complete_object_locator": 6448218832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52187,14 +52205,14 @@ }, { "type_name": "CNetworkServerSpawnGroup_AllocatePrerequisite", - "vtable_address": 6447852280, + "vtable_address": 6447856240, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6443248032, - 6443241344, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6443248224, + 6443241536, + 6442846336 ], "bases": [ { @@ -52228,7 +52246,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214928, + "complete_object_locator": 6448219272, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52237,14 +52255,14 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadEntitiesPrerequisite", - "vtable_address": 6447851816, + "vtable_address": 6447856352, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6443251472, - 6443241648, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6443251664, + 6443241840, + 6442846336 ], "bases": [ { @@ -52278,7 +52296,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214528, + "complete_object_locator": 6448218952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52287,17 +52305,17 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadPreviousLevelPrerequisite", - "vtable_address": 6447851736, + "vtable_address": 6447856160, "methods": [ - 6443241888, - 6442845840, - 6442845856, - 6443250336, - 6443241968, - 6442845888, - 6443249712, - 6443251344, - 6443250160 + 6443242080, + 6442846288, + 6442846304, + 6443250528, + 6443242160, + 6442846336, + 6443249904, + 6443251536, + 6443250352 ], "bases": [ { @@ -52345,7 +52363,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214448, + "complete_object_locator": 6448218792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52354,17 +52372,17 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadSaveGamePrerequisite", - "vtable_address": 6447852088, + "vtable_address": 6447855968, "methods": [ - 6443241888, - 6442845840, - 6442845856, - 6443250336, - 6443241952, - 6442845888, - 6443249712, - 6443251168, - 6443250160 + 6443242080, + 6442846288, + 6442846304, + 6443250528, + 6443242144, + 6442846336, + 6443249904, + 6443251360, + 6443250352 ], "bases": [ { @@ -52412,7 +52430,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214648, + "complete_object_locator": 6448218712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52421,17 +52439,17 @@ }, { "type_name": "CNetworkServerSpawnGroup_LoadSaveGamePrerequisiteBase", - "vtable_address": 6447852008, + "vtable_address": 6447855888, "methods": [ - 6443241888, - 6442845840, - 6442845856, - 6443250336, - 6446722668, - 6442845888, - 6443249712, - 6446722668, - 6443250160 + 6443242080, + 6442846288, + 6442846304, + 6443250528, + 6446722972, + 6442846336, + 6443249904, + 6446722972, + 6443250352 ], "bases": [ { @@ -52465,7 +52483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214608, + "complete_object_locator": 6448218672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52474,14 +52492,14 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 6447851928, + "vtable_address": 6447856464, "methods": [ - 6443241392, - 6442845840, - 6442845856, - 6443248144, - 6443241376, - 6442845888 + 6443241584, + 6442846288, + 6442846304, + 6443248336, + 6443241568, + 6442846336 ], "bases": [ { @@ -52543,7 +52561,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214848, + "complete_object_locator": 6448219192, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -52552,10 +52570,10 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForAssetLoadPrerequisite", - "vtable_address": 6447851984, + "vtable_address": 6447856520, "methods": [ - 6442836304, - 6442836352 + 6442836752, + 6442836800 ], "bases": [ { @@ -52617,7 +52635,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214888, + "complete_object_locator": 6448219232, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -52626,14 +52644,14 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForChildSpawnGroups", - "vtable_address": 6447852224, + "vtable_address": 6447856104, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6443253248, - 6443241872, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6443253440, + 6443242064, + 6442846336 ], "bases": [ { @@ -52667,7 +52685,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214688, + "complete_object_locator": 6448218752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52676,14 +52694,14 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForClients", - "vtable_address": 6447851872, + "vtable_address": 6447856408, "methods": [ - 6443241680, - 6442845840, - 6442845856, - 6443251664, - 6443241664, - 6442845888 + 6443241872, + 6442846288, + 6442846304, + 6443251856, + 6443241856, + 6442846336 ], "bases": [ { @@ -52717,7 +52735,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214568, + "complete_object_locator": 6448218992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52726,14 +52744,14 @@ }, { "type_name": "CNetworkServerSpawnGroup_WaitForOwnerSpawnGroupPrerequisite", - "vtable_address": 6447852168, + "vtable_address": 6447856048, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6443252272, - 6443241856, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6443252464, + 6443242048, + 6442846336 ], "bases": [ { @@ -52767,7 +52785,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448214488, + "complete_object_locator": 6448218912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52776,32 +52794,32 @@ }, { "type_name": "CNetworkService", - "vtable_address": 6448059536, + "vtable_address": 6448063816, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444432640, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6444432352, - 6442694208, - 6442792976, + 6444432928, + 6442793312, + 6442600400, + 6444432640, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442697072, 6442600384, - 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6442600384, - 6444186096, - 6444186080, - 6444432176, - 6444432704 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444432464, + 6444432992 ], "bases": [ { @@ -52947,7 +52965,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448280488, + "complete_object_locator": 6448284664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52956,17 +52974,17 @@ }, { "type_name": "CNetworkStringDict", - "vtable_address": 6447894264, + "vtable_address": 6447898408, "methods": [ - 6443570288, - 6442778448, - 6443568592, - 6443568704, - 6443568752, - 6443568832, - 6443569728, - 6443570000, - 6443570000 + 6443570480, + 6442778896, + 6443568784, + 6443568896, + 6443568944, + 6443569024, + 6443569920, + 6443570192, + 6443570192 ], "bases": [ { @@ -52986,7 +53004,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448233672, + "complete_object_locator": 6448237896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -52995,25 +53013,25 @@ }, { "type_name": "CNetworkStringTable", - "vtable_address": 6447894344, + "vtable_address": 6447898264, "methods": [ - 6443570352, - 6442745072, + 6443570544, + 6442745520, 6442599952, - 6443583264, - 6443571424, - 6442774896, - 6443580096, - 6443580704, - 6443581248, - 6443581344, - 6443583168, - 6443583280, - 6443579840, - 6443570576, - 6443568016, - 6443568032, - 6443580080 + 6443583456, + 6443571616, + 6442775344, + 6443580288, + 6443580896, + 6443581440, + 6443581536, + 6443583360, + 6443583472, + 6443580032, + 6443570768, + 6443568208, + 6443568224, + 6443580272 ], "bases": [ { @@ -53033,7 +53051,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448233792, + "complete_object_locator": 6448238016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53042,26 +53060,26 @@ }, { "type_name": "CNetworkStringTableContainer", - "vtable_address": 6447894112, + "vtable_address": 6447898072, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6443585904, - 6443586224, - 6443590960, - 6443587136, - 6443587264, - 6443587296, - 6443587312 + 6442697072, + 6443586096, + 6443586416, + 6443591152, + 6443587328, + 6443587456, + 6443587488, + 6443587504 ], "bases": [ { @@ -53179,7 +53197,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448233872, + "complete_object_locator": 6448238096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53188,9 +53206,9 @@ }, { "type_name": "COutOfPVSDeltaEntityHeaderWriter", - "vtable_address": 6447868312, + "vtable_address": 6447872368, "methods": [ - 6443345952 + 6443346144 ], "bases": [ { @@ -53210,7 +53228,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448224776, + "complete_object_locator": 6448228952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53219,9 +53237,9 @@ }, { "type_name": "COutOfPVSDeltaEntitytHeaderReader", - "vtable_address": 6447830432, + "vtable_address": 6447834560, "methods": [ - 6442954560 + 6442954640 ], "bases": [ { @@ -53241,7 +53259,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208368, + "complete_object_locator": 6448212592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53250,24 +53268,24 @@ }, { "type_name": "CP4File", - "vtable_address": 6447391360, + "vtable_address": 6447395456, "methods": [ - 6446658016, - 6446658160, - 6446658224, - 6446658096, - 6446658336, + 6446658320, 6446658464, - 6446659168, + 6446658528, 6446658400, - 6446659248, - 6446659040, - 6446658288 + 6446658640, + 6446658768, + 6446659472, + 6446658704, + 6446659552, + 6446659344, + 6446658592 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448155280, + "complete_object_locator": 6448159504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53276,40 +53294,40 @@ }, { "type_name": "CPVS", - "vtable_address": 6448114144, - "methods": [ - 6444758400, - 6444760720, - 6444761536, - 6444762256, - 6444762240, - 6444761968, - 6444753072, - 6444753088, - 6444763440, - 6444753968, - 6444754048, - 6444763968, - 6444764048, - 6444753808, - 6444754080, - 6444754192, + "vtable_address": 6448118384, + "methods": [ + 6444758704, + 6444761024, + 6444761840, + 6444762560, + 6444762544, + 6444762272, + 6444753376, + 6444753392, + 6444763744, + 6444754272, + 6444754352, + 6444764272, 6444764352, - 6444764432, - 6444754304, - 6444764176, - 6444764256, + 6444754112, 6444754384, - 6444754992, - 6444754752, - 6444754928, - 6444760992, - 6444755536, - 6444755664, - 6444603264, - 6444755888, - 6444755920, - 6444760816 + 6444754496, + 6444764656, + 6444764736, + 6444754608, + 6444764480, + 6444764560, + 6444754688, + 6444755296, + 6444755056, + 6444755232, + 6444761296, + 6444755840, + 6444755968, + 6444603568, + 6444756192, + 6444756224, + 6444761120 ], "bases": [ { @@ -53329,7 +53347,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303000, + "complete_object_locator": 6448307248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53338,9 +53356,9 @@ }, { "type_name": "CPanoramaInputHandler", - "vtable_address": 6448033904, + "vtable_address": 6448037848, "methods": [ - 6444231616, + 6444231904, 6442601024 ], "bases": [ @@ -53375,7 +53393,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267560, + "complete_object_locator": 6448271808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53384,11 +53402,11 @@ }, { "type_name": "CPanoramaProceduralLayer", - "vtable_address": 6447937632, + "vtable_address": 6447941912, "methods": [ - 6443802704, - 6443798096, - 6442600464 + 6443802992, + 6443798384, + 6442600368 ], "bases": [ { @@ -53408,7 +53426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246768, + "complete_object_locator": 6448250952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53417,10 +53435,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6447178496, + "vtable_address": 6447182592, "methods": [ - 6445567392, - 6445977952 + 6445567696, + 6445978256 ], "bases": [ { @@ -53440,7 +53458,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148848, + "complete_object_locator": 6448153072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53449,10 +53467,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6447137448, + "vtable_address": 6447141544, "methods": [ - 6445567392, - 6445621936 + 6445567696, + 6445622240 ], "bases": [ { @@ -53472,7 +53490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139600, + "complete_object_locator": 6448143824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53481,10 +53499,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6447137472, + "vtable_address": 6447141568, "methods": [ - 6445567392, - 6445621952 + 6445567696, + 6445622256 ], "bases": [ { @@ -53504,7 +53522,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139728, + "complete_object_locator": 6448143952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53513,10 +53531,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6447137496, + "vtable_address": 6447141592, "methods": [ - 6445567392, - 6445621968 + 6445567696, + 6445622272 ], "bases": [ { @@ -53536,7 +53554,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139856, + "complete_object_locator": 6448144080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53545,10 +53563,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6447926248, + "vtable_address": 6447930512, "methods": [ - 6443066160, - 6443765568 + 6443066352, + 6443765840 ], "bases": [ { @@ -53568,7 +53586,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241232, + "complete_object_locator": 6448245496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53577,10 +53595,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6447135752, + "vtable_address": 6447139848, "methods": [ - 6445567392, - 6445588368 + 6445567696, + 6445588672 ], "bases": [ { @@ -53600,7 +53618,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139088, + "complete_object_locator": 6448143312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53609,10 +53627,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA16161616F_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct RGBA16161616F_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6447135776, + "vtable_address": 6447139872, "methods": [ - 6445567392, - 6445588480 + 6445567696, + 6445588784 ], "bases": [ { @@ -53632,7 +53650,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139216, + "complete_object_locator": 6448143440, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53641,10 +53659,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA32323232F_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct RGBA32323232F_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6447135800, + "vtable_address": 6447139896, "methods": [ - 6445567392, - 6445588496 + 6445567696, + 6445588800 ], "bases": [ { @@ -53664,7 +53682,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139344, + "complete_object_locator": 6448143568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53673,10 +53691,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC6h(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6447135728, + "vtable_address": 6447139824, "methods": [ - 6445567392, - 6445588512 + 6445567696, + 6445588816 ], "bases": [ { @@ -53696,7 +53714,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448138960, + "complete_object_locator": 6448143184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53705,10 +53723,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC7(unsigned char const *,struct BGRA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6447135824, + "vtable_address": 6447139920, "methods": [ - 6445567392, - 6445588624 + 6445567696, + 6445588928 ], "bases": [ { @@ -53728,7 +53746,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139472, + "complete_object_locator": 6448143696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53737,10 +53755,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: >(int,int,char const *,class `bool __cdecl ImageLoader::ConvertFromBC7(unsigned char const *,struct RGBA8888_t *,int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6447135704, + "vtable_address": 6447139800, "methods": [ - 6445567392, - 6445588640 + 6445567696, + 6445588944 ], "bases": [ { @@ -53760,7 +53778,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448138832, + "complete_object_locator": 6448143056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53769,10 +53787,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `protected: bool __cdecl FloatBitMap_t::WriteToBufferBC6H_ispctexcomp(void *,uint64_t,struct FloatBitmapEncodeSettings_t const &) const'::`12':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6447137520, + "vtable_address": 6447141616, "methods": [ - 6445567392, - 6445621984 + 6445567696, + 6445622288 ], "bases": [ { @@ -53792,7 +53810,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448139984, + "complete_object_locator": 6448144208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53801,10 +53819,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob > &,class `protected: void __cdecl CNetworkGameClientBase::CopyEntityBaseline(int,int)'::`2':: >(class CUtlVector > &,char const *,class `protected: void __cdecl CNetworkGameClientBase::CopyEntityBaseline(int,int)'::`2':: &&,int,int,enum JobPriority_t)'::`2':: >", - "vtable_address": 6447821832, + "vtable_address": 6447825960, "methods": [ - 6443066160, - 6443066144 + 6443066352, + 6443066336 ], "bases": [ { @@ -53824,7 +53842,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204248, + "complete_object_locator": 6448208512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53833,10 +53851,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob > &,class `private: void __cdecl CNetworkGameServer::PackEntities_Normal(class CUtlVector > &,int,class CServerSideClient * *,class CBitVec<16384> &,class CServerSideClient * *,class CFrameSnapshot *)'::`27':: >(class CUtlVector > &,char const *,class `private: void __cdecl CNetworkGameServer::PackEntities_Normal(class CUtlVector > &,int,class CServerSideClient * *,class CBitVec<16384> &,class CBitVec<16384> &,class CFrameSnapshot *)'::`27':: &&,int,int,enum JobPriority_t)'::`2':: >", - "vtable_address": 6447880048, + "vtable_address": 6447884088, "methods": [ - 6443066160, - 6443454704 + 6443066352, + 6443454896 ], "bases": [ { @@ -53856,7 +53874,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448226576, + "complete_object_locator": 6448230792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53865,10 +53883,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob > &,class `private: void __cdecl CNetworkGameServer::PackEntities_Normal(class CUtlVector > &,int,class CServerSideClient * *,class CBitVec<16384> &,class CServerSideClient * *,class CFrameSnapshot *)'::`24':: >(class CUtlVector > &,char const *,class `private: void __cdecl CNetworkGameServer::PackEntities_Normal(class CUtlVector > &,int,class CServerSideClient * *,class CBitVec<16384> &,class CBitVec<16384> &,class CFrameSnapshot *)'::`24':: &&,int,int,enum JobPriority_t)'::`2':: >", - "vtable_address": 6447880072, + "vtable_address": 6447884112, "methods": [ - 6443066160, - 6443454816 + 6443066352, + 6443455008 ], "bases": [ { @@ -53888,7 +53906,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448226616, + "complete_object_locator": 6448230832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -53897,10 +53915,10 @@ }, { "type_name": "CParallelProcessorAbstract,1> >", - "vtable_address": 6448078216, + "vtable_address": 6448082432, "methods": [ - 6442761680, - 6444602288 + 6442762128, + 6444602592 ], "bases": [ { @@ -53934,7 +53952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294992, + "complete_object_locator": 6448298648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -53943,10 +53961,10 @@ }, { "type_name": "CParallelProcessorAbstract,1> >", - "vtable_address": 6448078192, + "vtable_address": 6448082456, "methods": [ - 6442761680, - 6444602288 + 6442762128, + 6444602592 ], "bases": [ { @@ -53980,7 +53998,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294912, + "complete_object_locator": 6448298768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -53989,10 +54007,10 @@ }, { "type_name": "CParallelProcessorAbstract,1> >", - "vtable_address": 6447767408, + "vtable_address": 6447771504, "methods": [ - 6442761680, - 6442761744 + 6442762128, + 6442762192 ], "bases": [ { @@ -54026,7 +54044,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174064, + "complete_object_locator": 6448178288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -54035,10 +54053,10 @@ }, { "type_name": "CParallelProcessorAbstract,1> >", - "vtable_address": 6447767384, + "vtable_address": 6447771480, "methods": [ - 6442761680, - 6442762032 + 6442762128, + 6442762480 ], "bases": [ { @@ -54072,7 +54090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174024, + "complete_object_locator": 6448178248, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -54081,10 +54099,10 @@ }, { "type_name": "CParallelProcessorAbstract", - "vtable_address": 6447767432, + "vtable_address": 6447771528, "methods": [ - 6442761680, - 6442760800 + 6442762128, + 6442761248 ], "bases": [ { @@ -54118,7 +54136,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448174104, + "complete_object_locator": 6448178328, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -54127,13 +54145,13 @@ }, { "type_name": "CPipedCommandLogRedirector", - "vtable_address": 6448044232, + "vtable_address": 6448048528, "methods": [ - 6444302960, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + 6444303248, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -54153,7 +54171,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269768, + "complete_object_locator": 6448274000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54162,14 +54180,14 @@ }, { "type_name": "CPlayDemoClientPrerequisite", - "vtable_address": 6448052776, + "vtable_address": 6448057000, "methods": [ - 6444354032, - 6442845840, - 6442845856, - 6444353632, - 6444353616, - 6442845888 + 6444354320, + 6442846288, + 6442846304, + 6444353920, + 6444353904, + 6442846336 ], "bases": [ { @@ -54189,7 +54207,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448274832, + "complete_object_locator": 6448279152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54198,14 +54216,14 @@ }, { "type_name": "CPostConnectCallback", - "vtable_address": 6447386688, + "vtable_address": 6447390784, "methods": [ - 6446722668 + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448153576, + "complete_object_locator": 6448157800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54214,25 +54232,25 @@ }, { "type_name": "CPulseCell_Base", - "vtable_address": 6447290040, - "methods": [ - 6446458944, - 6446444400, - 6446441328, - 6446444256, - 6446484320, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + "vtable_address": 6447294136, + "methods": [ + 6446459248, + 6446444704, + 6446441632, + 6446444560, + 6446484624, + 6446486880, + 6442600400, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448152280, + "complete_object_locator": 6448156504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54241,20 +54259,20 @@ }, { "type_name": "CPulseCell_BaseFlow", - "vtable_address": 6447290144, - "methods": [ - 6446458992, - 6446444400, - 6446441344, - 6446444272, - 6446484320, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + "vtable_address": 6447294240, + "methods": [ + 6446459296, + 6446444704, + 6446441648, + 6446444576, + 6446484624, + 6446486880, + 6442600400, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -54274,7 +54292,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448152400, + "complete_object_locator": 6448156624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54283,23 +54301,23 @@ }, { "type_name": "CPulseCell_BaseRequirement", - "vtable_address": 6447290248, - "methods": [ - 6446459040, - 6446444400, - 6446441472, - 6446444288, - 6446484320, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, + "vtable_address": 6447294344, + "methods": [ + 6446459344, + 6446444704, + 6446441776, + 6446444592, + 6446484624, + 6446486880, + 6442600400, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400, 6442600384, - 6442600368, 6442600480, - 6442600384 + 6442600400 ], "bases": [ { @@ -54319,7 +54337,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448152992, + "complete_object_locator": 6448157216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54328,20 +54346,20 @@ }, { "type_name": "CPulseCell_BaseValue", - "vtable_address": 6447290584, - "methods": [ - 6446459088, - 6446444400, + "vtable_address": 6447294680, + "methods": [ + 6446459392, + 6446444704, + 6446441904, + 6446444608, + 6446484624, + 6446486880, + 6442600400, 6446441600, - 6446444304, - 6446484320, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -54361,7 +54379,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448152528, + "complete_object_locator": 6448156752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54370,20 +54388,20 @@ }, { "type_name": "CPulseCell_Inflow_BaseEntrypoint", - "vtable_address": 6447290376, - "methods": [ - 6446459136, - 6446444416, - 6446441728, - 6446444320, - 6446484320, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + "vtable_address": 6447294472, + "methods": [ + 6446459440, + 6446444720, + 6446442032, + 6446444624, + 6446484624, + 6446486880, + 6442600400, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -54417,7 +54435,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448153120, + "complete_object_locator": 6448157344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54426,20 +54444,20 @@ }, { "type_name": "CPulseCell_Inflow_Method", - "vtable_address": 6447290480, - "methods": [ - 6446459184, - 6446444432, - 6446441744, - 6446444336, - 6446484416, - 6446486576, - 6446483680, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + "vtable_address": 6447294576, + "methods": [ + 6446459488, + 6446444736, + 6446442048, + 6446444640, + 6446484720, + 6446486880, + 6446483984, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -54487,7 +54505,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448152848, + "complete_object_locator": 6448157072, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54496,30 +54514,30 @@ }, { "type_name": "CPulseCell_Inflow_Wait", - "vtable_address": 6447290688, - "methods": [ - 6446459232, - 6446444448, - 6446441760, - 6446444352, - 6446484592, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384, - 6446485136, - 6442600384, - 6446485104, - 6442600464, - 6442600384, + "vtable_address": 6447294784, + "methods": [ + 6446459536, + 6446444752, + 6446442064, + 6446444656, + 6446484896, + 6446486880, + 6442600400, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400, + 6446485440, + 6442600400, + 6446485408, 6442600368, + 6442600400, 6442600384, + 6442600400, 6442590368, 6442590368, - 6442600384 + 6442600400 ], "bases": [ { @@ -54567,7 +54585,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448153160, + "complete_object_locator": 6448157384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54576,20 +54594,20 @@ }, { "type_name": "CPulseCell_Value_RandomFloat", - "vtable_address": 6447290976, - "methods": [ - 6446459280, - 6446444400, - 6446442048, - 6446444368, - 6446484320, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + "vtable_address": 6447295072, + "methods": [ + 6446459584, + 6446444704, + 6446442352, + 6446444672, + 6446484624, + 6446486880, + 6442600400, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -54623,7 +54641,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448153440, + "complete_object_locator": 6448157664, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54632,20 +54650,20 @@ }, { "type_name": "CPulseCell_Value_RandomInt", - "vtable_address": 6447290872, - "methods": [ - 6446459328, - 6446444400, - 6446442272, - 6446444384, - 6446484320, - 6446486576, - 6442600384, - 6446441296, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + "vtable_address": 6447294968, + "methods": [ + 6446459632, + 6446444704, + 6446442576, + 6446444688, + 6446484624, + 6446486880, + 6442600400, + 6446441600, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -54679,7 +54697,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448153304, + "complete_object_locator": 6448157528, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -54688,9 +54706,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6447283168, + "vtable_address": 6447287264, "methods": [ - 6446416912 + 6446417216 ], "bases": [ { @@ -54836,7 +54854,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448150616, + "complete_object_locator": 6448154840, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -54845,9 +54863,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6447283184, + "vtable_address": 6447287280, "methods": [ - 6446417328 + 6446417632 ], "bases": [ { @@ -54993,7 +55011,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151144, + "complete_object_locator": 6448155368, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -55002,9 +55020,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6447283200, + "vtable_address": 6447287296, "methods": [ - 6445688192 + 6445688496 ], "bases": [ { @@ -55150,7 +55168,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151184, + "complete_object_locator": 6448155408, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -55159,10 +55177,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6447283216, + "vtable_address": 6447287312, "methods": [ - 6446417376, - 6446417344 + 6446417680, + 6446417648 ], "bases": [ { @@ -55308,7 +55326,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151224, + "complete_object_locator": 6448155448, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -55317,9 +55335,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Load_NoOp", - "vtable_address": 6447283240, + "vtable_address": 6447287336, "methods": [ - 6446416928 + 6446417232 ], "bases": [ { @@ -55465,7 +55483,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151264, + "complete_object_locator": 6448155488, "offset": 32, "constructor_displacement": 0, "class_attributes": 1 @@ -55474,9 +55492,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6447283256, + "vtable_address": 6447287352, "methods": [ - 6446416912 + 6446417216 ], "bases": [ { @@ -55594,7 +55612,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151304, + "complete_object_locator": 6448155528, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -55603,9 +55621,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6447283272, + "vtable_address": 6447287368, "methods": [ - 6446417328 + 6446417632 ], "bases": [ { @@ -55723,7 +55741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151736, + "complete_object_locator": 6448155960, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -55732,9 +55750,9 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6447283288, + "vtable_address": 6447287384, "methods": [ - 6445688336 + 6445688640 ], "bases": [ { @@ -55852,7 +55870,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151776, + "complete_object_locator": 6448156000, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -55861,10 +55879,10 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_NoOp", - "vtable_address": 6447283304, + "vtable_address": 6447287400, "methods": [ - 6446417376, - 6446417344 + 6446417680, + 6446417648 ], "bases": [ { @@ -55982,7 +56000,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448151816, + "complete_object_locator": 6448156040, "offset": 24, "constructor_displacement": 0, "class_attributes": 1 @@ -55991,16 +56009,16 @@ }, { "type_name": "CPulseScopeEnumeratingTypeService", - "vtable_address": 6447286944, + "vtable_address": 6447291040, "methods": [ 6442599952, - 6442600384, - 6442600464, - 6442600464, - 6442600464, - 6446420864, - 6446420832, - 6446421280 + 6442600400, + 6442600368, + 6442600368, + 6442600368, + 6446421168, + 6446421136, + 6446421584 ], "bases": [ { @@ -56034,7 +56052,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448152144, + "complete_object_locator": 6448156368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56043,11 +56061,11 @@ }, { "type_name": "CRConClient", - "vtable_address": 6447771504, + "vtable_address": 6447775616, "methods": [ - 6442785136, - 6442600384, - 6442785168 + 6442785584, + 6442600400, + 6442785616 ], "bases": [ { @@ -56067,7 +56085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448176616, + "complete_object_locator": 6448180840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56076,11 +56094,11 @@ }, { "type_name": "CRConServer", - "vtable_address": 6447881240, + "vtable_address": 6447885264, "methods": [ 6442590368, - 6443462544, - 6443462736 + 6443462736, + 6443462928 ], "bases": [ { @@ -56100,7 +56118,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448226824, + "complete_object_locator": 6448231040, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56109,10 +56127,10 @@ }, { "type_name": "CRConVProfExport", - "vtable_address": 6447771536, + "vtable_address": 6447775648, "methods": [ - 6442783424, - 6442784656 + 6442783872, + 6442785104 ], "bases": [ { @@ -56230,7 +56248,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448176696, + "complete_object_locator": 6448180920, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -56239,27 +56257,27 @@ }, { "type_name": "CRConVProfExport", - "vtable_address": 6447771560, + "vtable_address": 6447775672, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442690736, - 6442792976, - 6442590368, - 6442696624, - 6442600384, - 6442600384, - 6442600384, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6442783232, - 6442783248, - 6442783312 + 6442691184, + 6442793424, + 6442590368, + 6442697072, + 6442600400, + 6442600400, + 6442600400, + 6442600400, + 6442600400, + 6442783680, + 6442783696, + 6442783760 ], "bases": [ { @@ -56377,7 +56395,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448176656, + "complete_object_locator": 6448180880, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -56386,23 +56404,23 @@ }, { "type_name": "CRealMemoryDemoBuffer", - "vtable_address": 6448076200, + "vtable_address": 6448080488, "methods": [ - 6444535024, + 6444535312, + 6444535552, 6444535264, - 6444534976, - 6444533488, - 6444533568, - 6444533600, - 6444533632, - 6444533648, - 6444533664, - 6442600384, - 6444534960, - 6444533472, - 6444534992, + 6444533776, + 6444533856, + 6444533888, + 6444533920, 6444533936, - 6444535216 + 6444533952, + 6442600400, + 6444535248, + 6444533760, + 6444535280, + 6444534224, + 6444535504 ], "bases": [ { @@ -56422,7 +56440,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448292272, + "complete_object_locator": 6448296488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56431,12 +56449,12 @@ }, { "type_name": "CRefreshRateGetter", - "vtable_address": 6448111032, + "vtable_address": 6448115280, "methods": [ - 6442600384, - 6444665056, - 6444665056, - 6444665056 + 6442600400, + 6444665360, + 6444665360, + 6444665360 ], "bases": [ { @@ -56456,7 +56474,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302240, + "complete_object_locator": 6448306416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56465,17 +56483,17 @@ }, { "type_name": "CRegistry", - "vtable_address": 6447391056, - "methods": [ - 6446655056, - 6446654736, - 6446654864, - 6446655136, - 6446655264, - 6446654880, + "vtable_address": 6447395152, + "methods": [ + 6446655360, 6446655040, - 6446655280, - 6446655408 + 6446655168, + 6446655440, + 6446655568, + 6446655184, + 6446655344, + 6446655584, + 6446655712 ], "bases": [ { @@ -56495,7 +56513,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448154800, + "complete_object_locator": 6448159024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56504,9 +56522,9 @@ }, { "type_name": "CRenderDevicePresentCallbackClientServer", - "vtable_address": 6448110656, + "vtable_address": 6448114904, "methods": [ - 6444702496 + 6444702800 ], "bases": [ { @@ -56526,7 +56544,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448302120, + "complete_object_locator": 6448306336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -56535,45 +56553,45 @@ }, { "type_name": "CRenderService", - "vtable_address": 6448061656, + "vtable_address": 6448065952, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444435776, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6444436064, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6444234016, - 6444436560, + 6442697072, 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444433408, - 6444186096, - 6444186080, - 6444435248, - 6444437120, - 6444437296, - 6444436000, - 6444440512, - 6444435984, - 6444440704, - 6444440976, - 6444441008, - 6442948640, - 6444441056, - 6444441040, + 6443587504, + 6444234304, + 6444436848, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444433696, + 6444186384, + 6444186368, + 6444435536, + 6444437408, + 6444437584, + 6444436288, + 6444440800, + 6444436272, + 6444440992, + 6444441264, 6444441296, - 6444440592, - 6444441424 + 6442948720, + 6444441344, + 6444441328, + 6444441584, + 6444440880, + 6444441712 ], "bases": [ { @@ -56733,7 +56751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448282320, + "complete_object_locator": 6448286496, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -56742,10 +56760,10 @@ }, { "type_name": "CRenderService", - "vtable_address": 6448061960, + "vtable_address": 6448066256, "methods": [ - 6442600368, - 6444440528 + 6442600384, + 6444440816 ], "bases": [ { @@ -56905,7 +56923,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448282360, + "complete_object_locator": 6448286416, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -56914,49 +56932,49 @@ }, { "type_name": "CRenderingWorldSession", - "vtable_address": 6448114496, - "methods": [ - 6444789072, - 6444789152, - 6444788736, - 6444788864, - 6444789440, - 6444789888, - 6444788704, - 6444788720, - 6444792656, - 6444792672, - 6444793024, - 6444793360, - 6444793120, - 6444793280, + "vtable_address": 6448118736, + "methods": [ + 6444789376, + 6444789456, + 6444789040, + 6444789168, + 6444789744, + 6444790192, + 6444789008, + 6444789024, + 6444792960, + 6444792976, 6444793328, - 6444792320, - 6444792336, - 6444792512, - 6444792592, + 6444793664, + 6444793424, + 6444793584, + 6444793632, 6444792624, - 6444792352, - 6444792368, - 6444792448, - 6444792480, - 6444810448, - 6444792224, - 6444810512, - 6444793344, - 6444810480, - 6444792384, - 6444783376, - 6444783392, - 6444810928, - 6444810960, - 6444810976, - 6444810992, - 6444811248, + 6444792640, + 6444792816, + 6444792896, + 6444792928, + 6444792656, + 6444792672, + 6444792752, + 6444792784, + 6444810752, + 6444792528, + 6444810816, + 6444793648, + 6444810784, + 6444792688, + 6444783680, + 6444783696, + 6444811232, 6444811264, - 6444811216, - 6444793216, - 6444793264 + 6444811280, + 6444811296, + 6444811552, + 6444811568, + 6444811520, + 6444793520, + 6444793568 ], "bases": [ { @@ -56990,7 +57008,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303736, + "complete_object_locator": 6448307944, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -56999,10 +57017,10 @@ }, { "type_name": "CRenderingWorldSession", - "vtable_address": 6448114832, + "vtable_address": 6448119072, "methods": [ - 6444791008, - 6444791616 + 6444791312, + 6444791920 ], "bases": [ { @@ -57036,7 +57054,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303776, + "complete_object_locator": 6448307984, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -57045,14 +57063,14 @@ }, { "type_name": "CResourceManifestPrerequisite", - "vtable_address": 6447934112, + "vtable_address": 6447938416, "methods": [ - 6443781984, - 6442845840, - 6442845856, 6443782256, - 6443782368, - 6443782384 + 6442846288, + 6442846304, + 6443782528, + 6443782640, + 6443782656 ], "bases": [ { @@ -57072,7 +57090,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448244632, + "complete_object_locator": 6448248880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57081,25 +57099,33 @@ }, { "type_name": "CSVCMsgList_GameEvents", - "vtable_address": 6447998576, + "vtable_address": 6448002816, "methods": [ - 6444031328, - 6444851872, - 6444028336, - 6444053440, + 6444031616, + 6444852176, + 6444028624, + 6444053728, 6442590368, - 6444851920, - 6444849504, - 6444054032, + 6444852224, + 6444849808, + 6444054320, 6442600144, - 6444053616, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6444054384, - 6444054192 + 6444053904, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6444054672, + 6444054480, + 6444850480, + 6444028368, + 6444850480, + 6443842528, + 6444850480, + 6444053488, + 6444850480, + 6444036368 ], "bases": [ { @@ -57133,7 +57159,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256912, + "complete_object_locator": 6448261112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57142,29 +57168,25 @@ }, { "type_name": "CSVCMsgList_GameEvents_event_t", - "vtable_address": 6447998160, + "vtable_address": 6448002672, "methods": [ - 6444031136, - 6444851872, - 6444028320, - 6444052048, + 6444031424, + 6444852176, + 6444028608, + 6444052336, 6442590368, - 6444851920, - 6444849504, - 6444052816, + 6444852224, + 6444849808, + 6444053104, 6442600000, - 6444052112, - 6442600384, - 6444052592, - 6444853136, - 6444854608, - 6443805552, - 6444053376, - 6444053184, - 6444850176, - 6444028080, - 6444850176, - 6443842240 + 6444052400, + 6442600400, + 6444052880, + 6444853440, + 6444854912, + 6443805840, + 6444053664, + 6444053472 ], "bases": [ { @@ -57198,7 +57220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258488, + "complete_object_locator": 6448262712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57207,31 +57229,25 @@ }, { "type_name": "CSVCMsg_BSPDecal", - "vtable_address": 6447976504, + "vtable_address": 6447980504, "methods": [ - 6443868960, - 6444851872, - 6443862720, - 6443943008, + 6443869248, + 6444852176, + 6443863008, + 6443943296, 6442590368, - 6444851920, - 6444849504, - 6443944384, + 6444852224, + 6444849808, + 6443944672, 6442600000, - 6443943120, - 6442600384, - 6443943920, - 6444853136, - 6444854608, - 6443805552, - 6443944960, - 6443944656, - 6444850176, - 6443941696, - 6444850176, - 6443898352, - 6444850176, - 6443842240 + 6443943408, + 6442600400, + 6443944208, + 6444853440, + 6444854912, + 6443805840, + 6443945248, + 6443944944 ], "bases": [ { @@ -57265,7 +57281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252864, + "complete_object_locator": 6448257216, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57274,25 +57290,25 @@ }, { "type_name": "CSVCMsg_Broadcast_Command", - "vtable_address": 6447949328, + "vtable_address": 6447953616, "methods": [ - 6443875392, - 6444851872, - 6443608144, - 6443834080, + 6443875680, + 6444852176, + 6443608336, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6444004496, - 6444004480 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6444004784, + 6444004768 ], "bases": [ { @@ -57326,7 +57342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249784, + "complete_object_locator": 6448254200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57335,13 +57351,13 @@ }, { "type_name": "CSVCMsg_Broadcast_Command_t", - "vtable_address": 6447903656, + "vtable_address": 6447907480, "methods": [ - 6443625408, - 6442694608, - 6442694608, - 6443627792, - 6443627872 + 6443625568, + 6442695056, + 6442695056, + 6443627952, + 6443628032 ], "bases": [ { @@ -57417,7 +57433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235072, + "complete_object_locator": 6448239336, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -57426,25 +57442,25 @@ }, { "type_name": "CSVCMsg_Broadcast_Command_t", - "vtable_address": 6447903704, + "vtable_address": 6447907528, "methods": [ - 6443631056, - 6444851872, - 6443608144, - 6443834080, + 6443631216, + 6444852176, + 6443608336, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6444004496, - 6444004480 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6444004784, + 6444004768 ], "bases": [ { @@ -57520,7 +57536,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448235112, + "complete_object_locator": 6448239376, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -57529,25 +57545,25 @@ }, { "type_name": "CSVCMsg_ClassInfo", - "vtable_address": 6447949616, + "vtable_address": 6447953904, "methods": [ - 6443867328, - 6444851872, - 6442846880, - 6443931088, + 6443867616, + 6444852176, + 6442847328, + 6443931376, 6442590368, - 6444851920, - 6444849504, - 6443931984, + 6444852224, + 6444849808, + 6443932272, 6442600000, - 6443931280, - 6442600384, - 6443931808, - 6444853136, - 6444854608, - 6443805552, - 6443932480, - 6443932272 + 6443931568, + 6442600400, + 6443932096, + 6444853440, + 6444854912, + 6443805840, + 6443932768, + 6443932560 ], "bases": [ { @@ -57581,7 +57597,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249944, + "complete_object_locator": 6448254304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57590,25 +57606,27 @@ }, { "type_name": "CSVCMsg_ClassInfo_class_t", - "vtable_address": 6447976200, + "vtable_address": 6447980648, "methods": [ - 6443867168, - 6444851872, - 6443862656, - 6443841344, + 6443867456, + 6444852176, + 6443862944, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443930304, - 6442600384, - 6443930784, - 6444853136, - 6444854608, - 6443805552, - 6443931024, - 6443931008 + 6443930592, + 6442600400, + 6443931072, + 6444853440, + 6444854912, + 6443805840, + 6443931312, + 6443931296, + 6444850480, + 6443941984 ], "bases": [ { @@ -57642,7 +57660,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250368, + "complete_object_locator": 6448254728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57651,13 +57669,13 @@ }, { "type_name": "CSVCMsg_ClassInfo_t", - "vtable_address": 6447799864, + "vtable_address": 6447803976, "methods": [ - 6442887776, - 6442694608, - 6442694608, - 6442913328, - 6442913408 + 6442887824, + 6442695056, + 6442695056, + 6442913408, + 6442913488 ], "bases": [ { @@ -57733,7 +57751,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189280, + "complete_object_locator": 6448193504, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -57742,25 +57760,25 @@ }, { "type_name": "CSVCMsg_ClassInfo_t", - "vtable_address": 6447799912, + "vtable_address": 6447804024, "methods": [ - 6442936772, - 6444851872, - 6442846880, - 6443931088, + 6442936852, + 6444852176, + 6442847328, + 6443931376, 6442590368, - 6444851920, - 6444849504, - 6443931984, + 6444852224, + 6444849808, + 6443932272, 6442600000, - 6443931280, - 6442600384, - 6443931808, - 6444853136, - 6444854608, - 6443805552, - 6443932480, - 6443932272 + 6443931568, + 6442600400, + 6443932096, + 6444853440, + 6444854912, + 6443805840, + 6443932768, + 6443932560 ], "bases": [ { @@ -57836,7 +57854,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189160, + "complete_object_locator": 6448193384, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -57845,25 +57863,25 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables", - "vtable_address": 6447980416, + "vtable_address": 6447984848, "methods": [ - 6443873344, - 6444851872, - 6442955024, - 6443979168, + 6443873632, + 6444852176, + 6442955104, + 6443979456, 6442590368, - 6444851920, - 6444849504, - 6443979872, + 6444852224, + 6444849808, + 6443980160, 6442600000, - 6443979232, - 6442600384, - 6443979712, - 6444853136, - 6444854608, - 6443805552, - 6443980128, - 6443979952 + 6443979520, + 6442600400, + 6443980000, + 6444853440, + 6444854912, + 6443805840, + 6443980416, + 6443980240 ], "bases": [ { @@ -57897,7 +57915,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254792, + "complete_object_locator": 6448259240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -57906,25 +57924,25 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables_t", - "vtable_address": 6447866424, + "vtable_address": 6447870512, "methods": [ - 6443127132, - 6444851872, - 6442955024, - 6443979168, + 6443127324, + 6444852176, + 6442955104, + 6443979456, 6442590368, - 6444851920, - 6444849504, - 6443979872, + 6444852224, + 6444849808, + 6443980160, 6442600000, - 6443979232, - 6442600384, - 6443979712, - 6444853136, - 6444854608, - 6443805552, - 6443980128, - 6443979952 + 6443979520, + 6442600400, + 6443980000, + 6444853440, + 6444854912, + 6443805840, + 6443980416, + 6443980240 ], "bases": [ { @@ -58000,7 +58018,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222816, + "complete_object_locator": 6448227192, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -58009,13 +58027,13 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables_t", - "vtable_address": 6447866568, + "vtable_address": 6447870656, "methods": [ - 6443046240, - 6442694608, - 6442694608, - 6443049824, - 6443049904 + 6443046432, + 6442695056, + 6442695056, + 6443050016, + 6443050096 ], "bases": [ { @@ -58091,7 +58109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223016, + "complete_object_locator": 6448227112, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -58100,25 +58118,25 @@ }, { "type_name": "CSVCMsg_CmdKeyValues", - "vtable_address": 6447980992, + "vtable_address": 6447984992, "methods": [ - 6443872496, - 6444851872, - 6442954976, - 6443834080, + 6443872784, + 6444852176, + 6442955056, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443975008, - 6443974992 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443975296, + 6443975280 ], "bases": [ { @@ -58152,7 +58170,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253720, + "complete_object_locator": 6448258112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58161,13 +58179,25 @@ }, { "type_name": "CSVCMsg_CmdKeyValues_t", - "vtable_address": 6447835672, + "vtable_address": 6447839800, "methods": [ - 6442959520, - 6442694608, - 6442694608, - 6443053136, - 6443053216 + 6443127480, + 6444852176, + 6442955056, + 6443834368, + 6442590368, + 6444852224, + 6444849808, + 6443834896, + 6442600000, + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443975296, + 6443975280 ], "bases": [ { @@ -58257,8 +58287,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211208, - "offset": 0, + "complete_object_locator": 6448215392, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -58266,25 +58296,13 @@ }, { "type_name": "CSVCMsg_CmdKeyValues_t", - "vtable_address": 6447835720, + "vtable_address": 6447839944, "methods": [ - 6443127288, - 6444851872, - 6442954976, - 6443834080, - 6442590368, - 6444851920, - 6444849504, - 6443834608, - 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443975008, - 6443974992 + 6442959600, + 6442695056, + 6442695056, + 6443053328, + 6443053408 ], "bases": [ { @@ -58374,8 +58392,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211168, - "offset": 48, + "complete_object_locator": 6448215432, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -58383,25 +58401,25 @@ }, { "type_name": "CSVCMsg_CreateStringTable", - "vtable_address": 6447983296, + "vtable_address": 6447987584, "methods": [ - 6443871360, - 6444851872, + 6443871648, + 6444852176, 6442601104, - 6443963504, + 6443963792, 6442590368, - 6444851920, - 6444849504, - 6443965680, + 6444852224, + 6444849808, + 6443965968, 6442600000, - 6443963632, - 6442600384, - 6443964880, - 6444853136, - 6444854608, - 6443805552, - 6443966352, - 6443966032 + 6443963920, + 6442600400, + 6443965168, + 6444853440, + 6444854912, + 6443805840, + 6443966640, + 6443966320 ], "bases": [ { @@ -58435,7 +58453,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252592, + "complete_object_locator": 6448256880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58444,13 +58462,13 @@ }, { "type_name": "CSVCMsg_CreateStringTable_t", - "vtable_address": 6447768152, + "vtable_address": 6447772248, "methods": [ - 6442699888, - 6442694608, - 6442694608, - 6442706480, - 6442706560 + 6442700336, + 6442695056, + 6442695056, + 6442706928, + 6442707008 ], "bases": [ { @@ -58526,7 +58544,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175536, + "complete_object_locator": 6448179760, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -58535,25 +58553,25 @@ }, { "type_name": "CSVCMsg_CreateStringTable_t", - "vtable_address": 6447768200, + "vtable_address": 6447772296, "methods": [ - 6442737928, - 6444851872, + 6442738376, + 6444852176, 6442601104, - 6443963504, + 6443963792, 6442590368, - 6444851920, - 6444849504, - 6443965680, + 6444852224, + 6444849808, + 6443965968, 6442600000, - 6443963632, - 6442600384, - 6443964880, - 6444853136, - 6444854608, - 6443805552, - 6443966352, - 6443966032 + 6443963920, + 6442600400, + 6443965168, + 6444853440, + 6444854912, + 6443805840, + 6443966640, + 6443966320 ], "bases": [ { @@ -58629,7 +58647,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175456, + "complete_object_locator": 6448179680, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -58638,29 +58656,29 @@ }, { "type_name": "CSVCMsg_CrosshairAngle", - "vtable_address": 6447976856, + "vtable_address": 6447981144, "methods": [ - 6443868768, - 6444851872, - 6443862704, - 6443942000, + 6443869056, + 6444852176, + 6443862992, + 6443942288, 6442590368, - 6444851920, - 6444849504, - 6443942592, + 6444852224, + 6444849808, + 6443942880, 6442600000, - 6443942096, - 6442600384, - 6443942480, - 6444853136, - 6444854608, - 6443805552, - 6443942944, - 6443942720, - 6444850176, - 6443844608, - 6444850176, - 6443888400 + 6443942384, + 6442600400, + 6443942768, + 6444853440, + 6444854912, + 6443805840, + 6443943232, + 6443943008, + 6444850480, + 6443844896, + 6444850480, + 6443888688 ], "bases": [ { @@ -58694,7 +58712,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250328, + "complete_object_locator": 6448254656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58703,25 +58721,27 @@ }, { "type_name": "CSVCMsg_FixAngle", - "vtable_address": 6447976056, + "vtable_address": 6447975160, "methods": [ - 6443868576, - 6444851872, - 6443862688, - 6443940752, + 6443868864, + 6444852176, + 6443862976, + 6443941040, 6442590368, - 6444851920, - 6444849504, - 6443941520, + 6444852224, + 6444849808, + 6443941808, 6442600000, - 6443940848, - 6442600384, - 6443941344, - 6444853136, - 6444854608, - 6443805552, - 6443941936, - 6443941680 + 6443941136, + 6442600400, + 6443941632, + 6444853440, + 6444854912, + 6443805840, + 6443942224, + 6443941968, + 6444850480, + 6443884720 ], "bases": [ { @@ -58755,7 +58775,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252120, + "complete_object_locator": 6448256576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58764,25 +58784,25 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer", - "vtable_address": 6447983008, + "vtable_address": 6447987296, "methods": [ 6442601808, - 6444851872, + 6444852176, 6442601136, - 6443985600, + 6443985888, 6442590368, - 6444851920, - 6444849504, - 6443986960, + 6444852224, + 6444849808, + 6443987248, 6442601152, - 6443985984, - 6442600384, - 6443986608, - 6444853136, - 6444854608, - 6443985584, - 6443987984, - 6443987456 + 6443986272, + 6442600400, + 6443986896, + 6444853440, + 6444854912, + 6443985872, + 6443988272, + 6443987744 ], "bases": [ { @@ -58816,7 +58836,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249744, + "complete_object_locator": 6448254160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58825,25 +58845,25 @@ }, { "type_name": "CSVCMsg_FlattenedSerializerWrapper", - "vtable_address": 6447763360, + "vtable_address": 6447767464, "methods": [ 6442601808, - 6444851872, + 6444852176, 6442601136, - 6443985600, + 6443985888, 6442590368, - 6444851920, - 6444849504, - 6443986960, + 6444852224, + 6444849808, + 6443987248, 6442601152, - 6443985984, - 6442600384, - 6443986608, - 6444853136, - 6444854608, - 6443985584, - 6443987984, - 6443987456 + 6443986272, + 6442600400, + 6443986896, + 6444853440, + 6444854912, + 6443985872, + 6443988272, + 6443987744 ], "bases": [ { @@ -58891,7 +58911,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170352, + "complete_object_locator": 6448174576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -58900,13 +58920,13 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer_t", - "vtable_address": 6447800056, + "vtable_address": 6447804168, "methods": [ - 6442700080, - 6442694608, - 6442694608, - 6442705888, - 6442705968 + 6442700528, + 6442695056, + 6442695056, + 6442706336, + 6442706416 ], "bases": [ { @@ -58996,7 +59016,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448188960, + "complete_object_locator": 6448193184, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -59005,25 +59025,25 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer_t", - "vtable_address": 6447800104, + "vtable_address": 6447804216, "methods": [ - 6442737988, - 6444851872, + 6442738436, + 6444852176, 6442601136, - 6443985600, + 6443985888, 6442590368, - 6444851920, - 6444849504, - 6443986960, + 6444852224, + 6444849808, + 6443987248, 6442601152, - 6443985984, - 6442600384, - 6443986608, - 6444853136, - 6444854608, - 6443985584, - 6443987984, - 6443987456 + 6443986272, + 6442600400, + 6443986896, + 6444853440, + 6444854912, + 6443985872, + 6443988272, + 6443987744 ], "bases": [ { @@ -59113,7 +59133,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448189000, + "complete_object_locator": 6448193224, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -59122,25 +59142,25 @@ }, { "type_name": "CSVCMsg_FullFrameSplit", - "vtable_address": 6447949184, + "vtable_address": 6447953472, "methods": [ - 6443872032, - 6444851872, - 6442769152, - 6443971408, + 6443872320, + 6444852176, + 6442769600, + 6443971696, 6442590368, - 6444851920, - 6444849504, - 6443972592, + 6444852224, + 6444849808, + 6443972880, 6442600000, - 6443971488, - 6442600384, - 6443972160, - 6444853136, - 6444854608, - 6443805552, - 6443972960, - 6443972768 + 6443971776, + 6442600400, + 6443972448, + 6444853440, + 6444854912, + 6443805840, + 6443973248, + 6443973056 ], "bases": [ { @@ -59174,7 +59194,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252760, + "complete_object_locator": 6448256800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59183,13 +59203,25 @@ }, { "type_name": "CSVCMsg_FullFrameSplit_t", - "vtable_address": 6447926440, + "vtable_address": 6447930880, "methods": [ - 6442780128, - 6442694608, - 6442694608, - 6442780880, - 6442780960 + 6442783400, + 6444852176, + 6442769600, + 6443971696, + 6442590368, + 6444852224, + 6444849808, + 6443972880, + 6442600000, + 6443971776, + 6442600400, + 6443972448, + 6444853440, + 6444854912, + 6443805840, + 6443973248, + 6443973056 ], "bases": [ { @@ -59265,8 +59297,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241792, - "offset": 0, + "complete_object_locator": 6448246136, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -59274,25 +59306,13 @@ }, { "type_name": "CSVCMsg_FullFrameSplit_t", - "vtable_address": 6447926488, + "vtable_address": 6447931024, "methods": [ - 6442782952, - 6444851872, - 6442769152, - 6443971408, - 6442590368, - 6444851920, - 6444849504, - 6443972592, - 6442600000, - 6443971488, - 6442600384, - 6443972160, - 6444853136, - 6444854608, - 6443805552, - 6443972960, - 6443972768 + 6442780576, + 6442695056, + 6442695056, + 6442781328, + 6442781408 ], "bases": [ { @@ -59368,8 +59388,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448241832, - "offset": 48, + "complete_object_locator": 6448246176, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -59377,27 +59397,25 @@ }, { "type_name": "CSVCMsg_GameEvent", - "vtable_address": 6447999168, + "vtable_address": 6448003488, "methods": [ - 6444030944, - 6444851872, - 6444028304, - 6444050384, + 6444031232, + 6444852176, + 6444028592, + 6444050672, 6442590368, - 6444851920, - 6444849504, - 6444051504, + 6444852224, + 6444849808, + 6444051792, 6442600000, - 6444050624, - 6442600384, - 6444051216, - 6444853136, - 6444854608, - 6443805552, - 6444051984, - 6444051744, - 6444850176, - 6443946272 + 6444050912, + 6442600400, + 6444051504, + 6444853440, + 6444854912, + 6443805840, + 6444052272, + 6444052032 ], "bases": [ { @@ -59431,7 +59449,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258552, + "complete_object_locator": 6448262776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59440,35 +59458,31 @@ }, { "type_name": "CSVCMsg_GameEventList", - "vtable_address": 6447951992, + "vtable_address": 6447956248, "methods": [ - 6443870496, - 6444851872, - 6443862800, - 6443952880, + 6443870784, + 6444852176, + 6443863088, + 6443953168, 6442590368, - 6444851920, - 6444849504, - 6443953424, + 6444852224, + 6444849808, + 6443953712, 6442600144, - 6443953008, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443953776, - 6443953584, - 6444850176, - 6443884432, - 6444850176, - 6443952592, - 6444850176, - 6443844608, - 6444850176, - 6443974880, - 6444850176, - 6443987472 + 6443953296, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443954064, + 6443953872, + 6444850480, + 6443862672, + 6444850480, + 6443884720, + 6444850480, + 6443844896 ], "bases": [ { @@ -59502,7 +59516,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249824, + "complete_object_locator": 6448254080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59511,27 +59525,27 @@ }, { "type_name": "CSVCMsg_GameEventList_descriptor_t", - "vtable_address": 6447968640, + "vtable_address": 6447972928, "methods": [ - 6443870304, - 6444851872, - 6443862784, - 6443951104, + 6443870592, + 6444852176, + 6443863072, + 6443951392, 6442590368, - 6444851920, - 6444849504, - 6443952208, + 6444852224, + 6444849808, + 6443952496, 6442600000, - 6443951328, - 6442600384, - 6443951920, - 6444853136, - 6444854608, - 6443805552, - 6443952816, - 6443952576, - 6444850176, - 6443966048 + 6443951616, + 6442600400, + 6443952208, + 6444853440, + 6444854912, + 6443805840, + 6443953104, + 6443952864, + 6444850480, + 6443973072 ], "bases": [ { @@ -59565,7 +59579,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254288, + "complete_object_locator": 6448258416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59574,31 +59588,33 @@ }, { "type_name": "CSVCMsg_GameEventList_key_t", - "vtable_address": 6447969912, + "vtable_address": 6447974216, "methods": [ - 6443870144, - 6444851872, - 6443862768, - 6443841344, + 6443870432, + 6444852176, + 6443863056, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443951040, - 6443951024, - 6444850176, - 6444002736, - 6444850176, - 6443842240, - 6444850176, - 6443938320 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443951328, + 6443951312, + 6444850480, + 6443938608, + 6444850480, + 6443976224, + 6444850480, + 6443842528, + 6444850480, + 6443883520 ], "bases": [ { @@ -59632,7 +59648,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250448, + "complete_object_locator": 6448254592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59641,27 +59657,27 @@ }, { "type_name": "CSVCMsg_GameEvent_key_t", - "vtable_address": 6447995616, + "vtable_address": 6448001536, "methods": [ - 6444030784, - 6444851872, - 6444028064, - 6443991696, + 6444031072, + 6444852176, + 6444028352, + 6443991984, 6442590368, - 6444851920, - 6444849504, - 6444050032, - 6442600000, - 6444048288, - 6442600384, - 6444049328, - 6444853136, - 6444854608, - 6443805552, + 6444852224, + 6444849808, 6444050320, - 6444050304, - 6444850176, - 6444033264 + 6442600000, + 6444048576, + 6442600400, + 6444049616, + 6444853440, + 6444854912, + 6443805840, + 6444050608, + 6444050592, + 6444850480, + 6444033552 ], "bases": [ { @@ -59695,7 +59711,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257400, + "complete_object_locator": 6448261560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59704,25 +59720,25 @@ }, { "type_name": "CSVCMsg_GameSessionConfiguration", - "vtable_address": 6448004920, + "vtable_address": 6448009488, "methods": [ - 6444032160, - 6444851872, - 6442954720, - 6444064704, + 6444032448, + 6444852176, + 6442954800, + 6444064992, 6442590368, - 6444851920, - 6444849504, - 6444067632, + 6444852224, + 6444849808, + 6444067920, 6442600000, - 6444065008, - 6442600384, - 6444066672, - 6444853136, - 6444854608, - 6443805552, - 6444068928, - 6444068256 + 6444065296, + 6442600400, + 6444066960, + 6444853440, + 6444854912, + 6443805840, + 6444069216, + 6444068544 ], "bases": [ { @@ -59756,7 +59772,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448257888, + "complete_object_locator": 6448262112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59765,25 +59781,25 @@ }, { "type_name": "CSVCMsg_GetCvarValue", - "vtable_address": 6447981712, + "vtable_address": 6447985856, "methods": [ - 6443869296, - 6444851872, - 6442954880, - 6443841344, + 6443869584, + 6444852176, + 6442954960, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443946432, - 6443946416 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443946720, + 6443946704 ], "bases": [ { @@ -59817,7 +59833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250952, + "complete_object_locator": 6448255096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59826,25 +59842,25 @@ }, { "type_name": "CSVCMsg_HLTVStatus", - "vtable_address": 6447981280, + "vtable_address": 6447985280, "methods": [ - 6443872192, - 6444851872, - 6442954944, - 6443971408, + 6443872480, + 6444852176, + 6442955024, + 6443971696, 6442590368, - 6444851920, - 6444849504, - 6443972592, + 6444852224, + 6444849808, + 6443972880, 6442600000, - 6443973024, - 6442600384, - 6443973712, - 6444853136, - 6444854608, - 6443805552, - 6443974160, - 6443974144 + 6443973312, + 6442600400, + 6443974000, + 6444853440, + 6444854912, + 6443805840, + 6443974448, + 6443974432 ], "bases": [ { @@ -59878,7 +59894,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249512, + "complete_object_locator": 6448253776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59887,29 +59903,35 @@ }, { "type_name": "CSVCMsg_HltvFixupOperatorStatus", - "vtable_address": 6447977528, + "vtable_address": 6447981784, "methods": [ - 6443875792, - 6444851872, - 6443863280, - 6443841344, + 6443876080, + 6444852176, + 6443863568, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443841408, - 6442600384, - 6444008368, - 6444853136, - 6444854608, - 6443805552, - 6444008608, - 6444008592, - 6444850176, - 6443887536, - 6444850176, - 6443963280 + 6443841696, + 6442600400, + 6444008656, + 6444853440, + 6444854912, + 6443805840, + 6444008896, + 6444008880, + 6444850480, + 6443949136, + 6444850480, + 6443963568, + 6444850480, + 6443887824, + 6444850480, + 6444007888, + 6444850480, + 6443973072 ], "bases": [ { @@ -59943,7 +59965,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251728, + "complete_object_locator": 6448255920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -59952,25 +59974,25 @@ }, { "type_name": "CSVCMsg_HltvReplay", - "vtable_address": 6447949472, + "vtable_address": 6447953760, "methods": [ - 6443875104, - 6444851872, - 6442846896, - 6444000528, + 6443875392, + 6444852176, + 6442847344, + 6444000816, 6442590368, - 6444851920, - 6444849504, - 6444002432, + 6444852224, + 6444849808, + 6444002720, 6442600000, - 6444000576, - 6442600384, - 6444001600, - 6444853136, - 6444854608, - 6443805552, - 6444002880, - 6444002720 + 6444000864, + 6442600400, + 6444001888, + 6444853440, + 6444854912, + 6443805840, + 6444003168, + 6444003008 ], "bases": [ { @@ -60004,7 +60026,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250736, + "complete_object_locator": 6448255208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60013,13 +60035,13 @@ }, { "type_name": "CSVCMsg_HltvReplay_t", - "vtable_address": 6447799096, + "vtable_address": 6447803208, "methods": [ - 6442901344, - 6442694608, - 6442694608, - 6442913472, - 6442913552 + 6442901424, + 6442695056, + 6442695056, + 6442913552, + 6442913632 ], "bases": [ { @@ -60095,7 +60117,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448191160, + "complete_object_locator": 6448195384, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -60104,25 +60126,25 @@ }, { "type_name": "CSVCMsg_HltvReplay_t", - "vtable_address": 6447799144, + "vtable_address": 6447803256, "methods": [ - 6442936664, - 6444851872, - 6442846896, - 6444000528, + 6442936744, + 6444852176, + 6442847344, + 6444000816, 6442590368, - 6444851920, - 6444849504, - 6444002432, + 6444852224, + 6444849808, + 6444002720, 6442600000, - 6444000576, - 6442600384, - 6444001600, - 6444853136, - 6444854608, - 6443805552, - 6444002880, - 6444002720 + 6444000864, + 6442600400, + 6444001888, + 6444853440, + 6444854912, + 6443805840, + 6444003168, + 6444003008 ], "bases": [ { @@ -60198,7 +60220,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448191200, + "complete_object_locator": 6448195424, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -60207,25 +60229,25 @@ }, { "type_name": "CSVCMsg_Menu", - "vtable_address": 6447981568, + "vtable_address": 6447986000, "methods": [ - 6443869456, - 6444851872, - 6442954896, - 6443841344, + 6443869744, + 6444852176, + 6442954976, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443946512, - 6443946496 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443946800, + 6443946784 ], "bases": [ { @@ -60259,7 +60281,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251088, + "complete_object_locator": 6448255600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60268,25 +60290,25 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted", - "vtable_address": 6447980128, + "vtable_address": 6447984272, "methods": [ - 6443876288, - 6444851872, - 6442955072, - 6444011840, + 6443876576, + 6444852176, + 6442955152, + 6444012128, 6442590368, - 6444851920, - 6444849504, - 6444012656, + 6444852224, + 6444849808, + 6444012944, 6442600000, - 6444011888, - 6442600384, - 6444012368, - 6444853136, - 6444854608, - 6443805552, - 6444012768, - 6444012752 + 6444012176, + 6442600400, + 6444012656, + 6444853440, + 6444854912, + 6443805840, + 6444013056, + 6444013040 ], "bases": [ { @@ -60320,7 +60342,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254368, + "complete_object_locator": 6448258904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60329,13 +60351,13 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted_t", - "vtable_address": 6448097584, + "vtable_address": 6448102232, "methods": [ - 6443043024, - 6442694608, - 6442694608, - 6443055616, - 6443055696 + 6443043216, + 6442695056, + 6442695056, + 6443055808, + 6443055888 ], "bases": [ { @@ -60411,7 +60433,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299048, + "complete_object_locator": 6448303248, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -60420,25 +60442,25 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted_t", - "vtable_address": 6448097632, + "vtable_address": 6448102280, "methods": [ - 6443127096, - 6444851872, - 6442955072, - 6444011840, + 6443127288, + 6444852176, + 6442955152, + 6444012128, 6442590368, - 6444851920, - 6444849504, - 6444012656, + 6444852224, + 6444849808, + 6444012944, 6442600000, - 6444011888, - 6442600384, - 6444012368, - 6444853136, - 6444854608, - 6443805552, - 6444012768, - 6444012752 + 6444012176, + 6442600400, + 6444012656, + 6444853440, + 6444854912, + 6443805840, + 6444013056, + 6444013040 ], "bases": [ { @@ -60514,7 +60536,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448299128, + "complete_object_locator": 6448303328, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -60523,25 +60545,25 @@ }, { "type_name": "CSVCMsg_PacketEntities", - "vtable_address": 6447983440, + "vtable_address": 6447987728, "methods": [ - 6443871136, - 6444851872, + 6443871424, + 6444852176, 6442601088, - 6443955136, + 6443955424, 6442590368, - 6444851920, - 6444849504, - 6443959984, + 6444852224, + 6444849808, + 6443960272, 6442600000, - 6443955616, - 6442600384, - 6443958096, - 6444853136, - 6444854608, - 6443805552, - 6443962208, - 6443961216 + 6443955904, + 6442600400, + 6443958384, + 6444853440, + 6444854912, + 6443805840, + 6443962496, + 6443961504 ], "bases": [ { @@ -60575,7 +60597,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250176, + "complete_object_locator": 6448254384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60584,31 +60606,25 @@ }, { "type_name": "CSVCMsg_PacketEntities_alternate_baseline_t", - "vtable_address": 6447953736, + "vtable_address": 6447957928, "methods": [ - 6443870672, - 6444851872, - 6443862816, - 6443883488, + 6443870960, + 6444852176, + 6443863104, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443884320, + 6444852224, + 6444849808, + 6443884608, 6442600000, - 6443883520, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443953856, - 6443953840, - 6444850176, - 6443969440, - 6444850176, - 6443946272, - 6444850176, - 6443939616 + 6443883808, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443954144, + 6443954128 ], "bases": [ { @@ -60642,7 +60658,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255128, + "complete_object_locator": 6448259424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60651,29 +60667,33 @@ }, { "type_name": "CSVCMsg_PacketEntities_non_transmitted_entities_t", - "vtable_address": 6447969144, + "vtable_address": 6447973416, "methods": [ - 6443870816, - 6444851872, - 6443862832, - 6443841344, + 6443871104, + 6444852176, + 6443863120, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443953936, - 6443953920, - 6444850176, - 6443887536, - 6444850176, - 6443834688 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443954224, + 6443954208, + 6444850480, + 6443887824, + 6444850480, + 6443978032, + 6444850480, + 6443887824, + 6444850480, + 6443834976 ], "bases": [ { @@ -60707,7 +60727,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249592, + "complete_object_locator": 6448253848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60716,25 +60736,25 @@ }, { "type_name": "CSVCMsg_PacketEntities_outofpvs_entity_updates_t", - "vtable_address": 6447975592, + "vtable_address": 6447975016, "methods": [ - 6443870976, - 6444851872, - 6443862848, - 6443841344, + 6443871264, + 6444852176, + 6443863136, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443842112, + 6444852224, + 6444849808, + 6443842400, 6442600000, - 6443841408, - 6442600384, - 6443841888, - 6444853136, - 6444854608, - 6443805552, - 6443954016, - 6443954000 + 6443841696, + 6442600400, + 6443842176, + 6444853440, + 6444854912, + 6443805840, + 6443954304, + 6443954288 ], "bases": [ { @@ -60768,7 +60788,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250408, + "complete_object_locator": 6448254768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -60777,13 +60797,13 @@ }, { "type_name": "CSVCMsg_PacketEntities_t", - "vtable_address": 6447768344, + "vtable_address": 6447772440, "methods": [ - 6442699600, - 6442694608, - 6442694608, - 6442706992, - 6442707072 + 6442700048, + 6442695056, + 6442695056, + 6442707440, + 6442707520 ], "bases": [ { @@ -60859,7 +60879,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175576, + "complete_object_locator": 6448179800, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -60868,25 +60888,25 @@ }, { "type_name": "CSVCMsg_PacketEntities_t", - "vtable_address": 6447768392, + "vtable_address": 6447772488, "methods": [ - 6442738096, - 6444851872, + 6442738544, + 6444852176, 6442601088, - 6443955136, + 6443955424, 6442590368, - 6444851920, - 6444849504, - 6443959984, + 6444852224, + 6444849808, + 6443960272, 6442600000, - 6443955616, - 6442600384, - 6443958096, - 6444853136, - 6444854608, - 6443805552, - 6443962208, - 6443961216 + 6443955904, + 6442600400, + 6443958384, + 6444853440, + 6444854912, + 6443805840, + 6443962496, + 6443961504 ], "bases": [ { @@ -60962,7 +60982,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448175496, + "complete_object_locator": 6448179720, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -60971,25 +60991,25 @@ }, { "type_name": "CSVCMsg_PacketReliable", - "vtable_address": 6447981136, + "vtable_address": 6447985712, "methods": [ - 6443871888, - 6444851872, - 6442954928, - 6443970144, + 6443872176, + 6444852176, + 6442955008, + 6443970432, 6442590368, - 6444851920, - 6444849504, - 6443971136, + 6444852224, + 6444849808, + 6443971424, 6442600000, - 6443970192, - 6442600384, - 6443970800, - 6444853136, - 6444854608, - 6443805552, - 6443971344, - 6443971248 + 6443970480, + 6442600400, + 6443971088, + 6444853440, + 6444854912, + 6443805840, + 6443971632, + 6443971536 ], "bases": [ { @@ -61023,7 +61043,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252480, + "complete_object_locator": 6448256920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61032,25 +61052,25 @@ }, { "type_name": "CSVCMsg_PacketReliable_t", - "vtable_address": 6447914344, + "vtable_address": 6447918408, "methods": [ - 6443126916, - 6444851872, - 6442954928, - 6443970144, + 6443127108, + 6444852176, + 6442955008, + 6443970432, 6442590368, - 6444851920, - 6444849504, - 6443971136, + 6444852224, + 6444849808, + 6443971424, 6442600000, - 6443970192, - 6442600384, - 6443970800, - 6444853136, - 6444854608, - 6443805552, - 6443971344, - 6443971248 + 6443970480, + 6442600400, + 6443971088, + 6444853440, + 6444854912, + 6443805840, + 6443971632, + 6443971536 ], "bases": [ { @@ -61126,7 +61146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236624, + "complete_object_locator": 6448240768, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -61135,13 +61155,13 @@ }, { "type_name": "CSVCMsg_PacketReliable_t", - "vtable_address": 6447914488, + "vtable_address": 6447918552, "methods": [ - 6443043760, - 6442694608, - 6442694608, - 6443054208, - 6443054288 + 6443043952, + 6442695056, + 6442695056, + 6443054400, + 6443054480 ], "bases": [ { @@ -61217,7 +61237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448236664, + "complete_object_locator": 6448240808, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -61226,25 +61246,25 @@ }, { "type_name": "CSVCMsg_PeerList", - "vtable_address": 6447980560, + "vtable_address": 6447984704, "methods": [ - 6443873168, - 6444851872, - 6442955008, - 6443978096, + 6443873456, + 6444852176, + 6442955088, + 6443978384, 6442590368, - 6444851920, - 6444849504, - 6443978752, + 6444852224, + 6444849808, + 6443979040, 6442600144, - 6443978336, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443979104, - 6443978912 + 6443978624, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443979392, + 6443979200 ], "bases": [ { @@ -61278,7 +61298,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252936, + "complete_object_locator": 6448257104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61287,13 +61307,13 @@ }, { "type_name": "CSVCMsg_PeerList_t", - "vtable_address": 6447837376, + "vtable_address": 6447841496, "methods": [ - 6443043936, - 6442694608, - 6442694608, - 6443053808, - 6443053888 + 6443044128, + 6442695056, + 6442695056, + 6443054000, + 6443054080 ], "bases": [ { @@ -61369,7 +61389,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211752, + "complete_object_locator": 6448216176, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -61378,25 +61398,25 @@ }, { "type_name": "CSVCMsg_PeerList_t", - "vtable_address": 6447837424, + "vtable_address": 6447841544, "methods": [ - 6443127180, - 6444851872, - 6442955008, - 6443978096, + 6443127372, + 6444852176, + 6442955088, + 6443978384, 6442590368, - 6444851920, - 6444849504, - 6443978752, + 6444852224, + 6444849808, + 6443979040, 6442600144, - 6443978336, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6443979104, - 6443978912 + 6443978624, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6443979392, + 6443979200 ], "bases": [ { @@ -61472,7 +61492,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211672, + "complete_object_locator": 6448216096, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -61481,25 +61501,25 @@ }, { "type_name": "CSVCMsg_Prefetch", - "vtable_address": 6447981856, + "vtable_address": 6447986432, "methods": [ - 6443868288, - 6444851872, - 6442954848, - 6443883488, + 6443868576, + 6444852176, + 6442954928, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443940448, + 6444852224, + 6444849808, + 6443940736, 6442600000, - 6443939872, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443940560, - 6443940544 + 6443940160, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443940848, + 6443940832 ], "bases": [ { @@ -61533,7 +61553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251984, + "complete_object_locator": 6448256304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61542,25 +61562,25 @@ }, { "type_name": "CSVCMsg_Print", - "vtable_address": 6447982432, + "vtable_address": 6447986576, "methods": [ - 6443867808, - 6444851872, - 6442954816, - 6443834080, + 6443868096, + 6444852176, + 6442954896, + 6443834368, 6442590368, - 6444851920, - 6444849504, - 6443834608, + 6444852224, + 6444849808, + 6443834896, 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443933776, - 6443933760 + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443934064, + 6443934048 ], "bases": [ { @@ -61594,7 +61614,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254928, + "complete_object_locator": 6448259280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61603,25 +61623,13 @@ }, { "type_name": "CSVCMsg_Print_t", - "vtable_address": 6447836992, + "vtable_address": 6447841112, "methods": [ - 6443127060, - 6444851872, - 6442954816, - 6443834080, - 6442590368, - 6444851920, - 6444849504, - 6443834608, - 6442600000, - 6443838048, - 6442600384, - 6443838416, - 6444853136, - 6444854608, - 6443805552, - 6443933776, - 6443933760 + 6443046240, + 6442695056, + 6442695056, + 6443050384, + 6443050464 ], "bases": [ { @@ -61697,8 +61705,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211872, - "offset": 48, + "complete_object_locator": 6448216056, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -61706,13 +61714,25 @@ }, { "type_name": "CSVCMsg_Print_t", - "vtable_address": 6447837136, + "vtable_address": 6447841160, "methods": [ - 6443046048, - 6442694608, - 6442694608, - 6443050192, - 6443050272 + 6443127252, + 6444852176, + 6442954896, + 6443834368, + 6442590368, + 6444852224, + 6444849808, + 6443834896, + 6442600000, + 6443838336, + 6442600400, + 6443838704, + 6444853440, + 6444854912, + 6443805840, + 6443934064, + 6443934048 ], "bases": [ { @@ -61788,8 +61808,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211952, - "offset": 0, + "complete_object_locator": 6448215976, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -61797,25 +61817,25 @@ }, { "type_name": "CSVCMsg_RconServerDetails", - "vtable_address": 6447980704, + "vtable_address": 6447985136, "methods": [ - 6443872656, - 6444851872, - 6442954992, - 6443846784, + 6443872944, + 6444852176, + 6442955072, + 6443847072, 6442590368, - 6444851920, - 6444849504, - 6443847424, + 6444852224, + 6444849808, + 6443847712, 6442600000, - 6443846880, - 6442600384, - 6443847264, - 6444853136, - 6444854608, - 6443805552, - 6443975088, - 6443975072 + 6443847168, + 6442600400, + 6443847552, + 6444853440, + 6444854912, + 6443805840, + 6443975376, + 6443975360 ], "bases": [ { @@ -61849,7 +61869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448256096, + "complete_object_locator": 6448253624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -61858,25 +61878,25 @@ }, { "type_name": "CSVCMsg_RconServerDetails_t", - "vtable_address": 6447866232, + "vtable_address": 6447870320, "methods": [ - 6443126472, - 6444851872, - 6442954992, - 6443846784, + 6443126664, + 6444852176, + 6442955072, + 6443847072, 6442590368, - 6444851920, - 6444849504, - 6443847424, + 6444852224, + 6444849808, + 6443847712, 6442600000, - 6443846880, - 6442600384, - 6443847264, - 6444853136, - 6444854608, - 6443805552, - 6443975088, - 6443975072 + 6443847168, + 6442600400, + 6443847552, + 6444853440, + 6444854912, + 6443805840, + 6443975376, + 6443975360 ], "bases": [ { @@ -61952,7 +61972,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222856, + "complete_object_locator": 6448227232, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -61961,13 +61981,13 @@ }, { "type_name": "CSVCMsg_RconServerDetails_t", - "vtable_address": 6447866376, + "vtable_address": 6447870464, "methods": [ - 6443044128, - 6442694608, - 6442694608, - 6443053392, - 6443053472 + 6443044320, + 6442695056, + 6442695056, + 6443053584, + 6443053664 ], "bases": [ { @@ -62043,7 +62063,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222896, + "complete_object_locator": 6448227272, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -62052,25 +62072,25 @@ }, { "type_name": "CSVCMsg_SendTable", - "vtable_address": 6447978360, + "vtable_address": 6447982808, "methods": [ - 6443869952, - 6444851872, - 6443862752, - 6443949216, + 6443870240, + 6444852176, + 6443863040, + 6443949504, 6442590368, - 6444851920, - 6444849504, - 6443950480, + 6444852224, + 6444849808, + 6443950768, 6442600000, - 6443949504, - 6442600384, - 6443950224, - 6444853136, - 6444854608, - 6443805552, - 6443950960, - 6443950720 + 6443949792, + 6442600400, + 6443950512, + 6444853440, + 6444854912, + 6443805840, + 6443951248, + 6443951008 ], "bases": [ { @@ -62104,7 +62124,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249864, + "complete_object_locator": 6448254000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62113,27 +62133,27 @@ }, { "type_name": "CSVCMsg_SendTable_sendprop_t", - "vtable_address": 6447977848, + "vtable_address": 6447982296, "methods": [ - 6443869776, - 6444851872, - 6443862736, - 6443946656, + 6443870064, + 6444852176, + 6443863024, + 6443946944, 6442590368, - 6444851920, - 6444849504, - 6443948512, + 6444852224, + 6444849808, + 6443948800, 6442600000, - 6443946768, - 6442600384, - 6443947776, - 6444853136, - 6444854608, - 6443805552, - 6443949152, - 6443948832, - 6444850176, - 6443972784 + 6443947056, + 6442600400, + 6443948064, + 6444853440, + 6444854912, + 6443805840, + 6443949440, + 6443949120, + 6444850480, + 6443925456 ], "bases": [ { @@ -62167,7 +62187,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251168, + "complete_object_locator": 6448255328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62176,25 +62196,27 @@ }, { "type_name": "CSVCMsg_ServerInfo", - "vtable_address": 6447983872, + "vtable_address": 6447988160, "methods": [ - 6443866928, - 6444851872, + 6443867216, + 6444852176, 6442601040, - 6443926192, + 6443926480, 6442590368, - 6444851920, - 6444849504, - 6443929008, + 6444852224, + 6444849808, + 6443929296, 6442600000, - 6443926496, - 6442600384, - 6443927968, - 6444853136, - 6444854608, - 6443805552, - 6443930240, - 6443929632 + 6443926784, + 6442600400, + 6443928256, + 6444853440, + 6444854912, + 6443805840, + 6443930528, + 6443929920, + 6444850480, + 6443844896 ], "bases": [ { @@ -62228,7 +62250,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251240, + "complete_object_locator": 6448255560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62237,25 +62259,25 @@ }, { "type_name": "CSVCMsg_ServerInfo_t", - "vtable_address": 6447866616, + "vtable_address": 6447870704, "methods": [ - 6442737952, - 6444851872, + 6442738400, + 6444852176, 6442601040, - 6443926192, + 6443926480, 6442590368, - 6444851920, - 6444849504, - 6443929008, + 6444852224, + 6444849808, + 6443929296, 6442600000, - 6443926496, - 6442600384, - 6443927968, - 6444853136, - 6444854608, - 6443805552, - 6443930240, - 6443929632 + 6443926784, + 6442600400, + 6443928256, + 6444853440, + 6444854912, + 6443805840, + 6443930528, + 6443929920 ], "bases": [ { @@ -62331,7 +62353,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448223056, + "complete_object_locator": 6448227152, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -62340,13 +62362,13 @@ }, { "type_name": "CSVCMsg_ServerInfo_t", - "vtable_address": 6447866760, + "vtable_address": 6447870848, "methods": [ - 6442700304, - 6442694608, - 6442694608, - 6442705632, - 6442705712 + 6442700752, + 6442695056, + 6442695056, + 6442706080, + 6442706160 ], "bases": [ { @@ -62422,7 +62444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222936, + "complete_object_locator": 6448227032, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -62431,25 +62453,25 @@ }, { "type_name": "CSVCMsg_ServerSteamID", - "vtable_address": 6447980848, + "vtable_address": 6447985424, "methods": [ - 6443872352, - 6444851872, - 6442954960, - 6443974224, + 6443872640, + 6444852176, + 6442955040, + 6443974512, 6442590368, - 6444851920, - 6444849504, - 6443974816, + 6444852224, + 6444849808, + 6443975104, 6442600000, - 6443974256, - 6442600384, - 6443974640, - 6444853136, - 6444854608, - 6443805552, + 6443974544, + 6442600400, 6443974928, - 6443974864 + 6444853440, + 6444854912, + 6443805840, + 6443975216, + 6443975152 ], "bases": [ { @@ -62483,7 +62505,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251624, + "complete_object_locator": 6448256024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62492,25 +62514,25 @@ }, { "type_name": "CSVCMsg_ServerSteamID_t", - "vtable_address": 6447837184, + "vtable_address": 6447841304, "methods": [ - 6443126520, - 6444851872, - 6442954960, - 6443974224, + 6443126712, + 6444852176, + 6442955040, + 6443974512, 6442590368, - 6444851920, - 6444849504, - 6443974816, + 6444852224, + 6444849808, + 6443975104, 6442600000, - 6443974256, - 6442600384, - 6443974640, - 6444853136, - 6444854608, - 6443805552, + 6443974544, + 6442600400, 6443974928, - 6443974864 + 6444853440, + 6444854912, + 6443805840, + 6443975216, + 6443975152 ], "bases": [ { @@ -62586,7 +62608,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211832, + "complete_object_locator": 6448215936, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -62595,13 +62617,13 @@ }, { "type_name": "CSVCMsg_ServerSteamID_t", - "vtable_address": 6447837328, + "vtable_address": 6447841448, "methods": [ - 6443043392, - 6442694608, - 6442694608, - 6443054912, - 6443054992 + 6443043584, + 6442695056, + 6442695056, + 6443055104, + 6443055184 ], "bases": [ { @@ -62677,7 +62699,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211792, + "complete_object_locator": 6448215896, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -62686,25 +62708,25 @@ }, { "type_name": "CSVCMsg_SetPause", - "vtable_address": 6447983728, + "vtable_address": 6447988016, "methods": [ - 6443867504, - 6444851872, + 6443867792, + 6444852176, 6442601056, - 6443887808, + 6443888096, 6442590368, - 6444851920, - 6444849504, - 6443888352, + 6444852224, + 6444849808, + 6443888640, 6442600000, - 6443887840, - 6442600384, - 6443888240, - 6444853136, - 6444854608, - 6443805552, - 6443932560, - 6443932544 + 6443888128, + 6442600400, + 6443888528, + 6444853440, + 6444854912, + 6443805840, + 6443932848, + 6443932832 ], "bases": [ { @@ -62738,7 +62760,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255352, + "complete_object_locator": 6448259648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -62747,25 +62769,25 @@ }, { "type_name": "CSVCMsg_SetPause_t", - "vtable_address": 6447761768, + "vtable_address": 6447765864, "methods": [ - 6442738072, - 6444851872, + 6442738520, + 6444852176, 6442601056, - 6443887808, + 6443888096, 6442590368, - 6444851920, - 6444849504, - 6443888352, + 6444852224, + 6444849808, + 6443888640, 6442600000, - 6443887840, - 6442600384, - 6443888240, - 6444853136, - 6444854608, - 6443805552, - 6443932560, - 6443932544 + 6443888128, + 6442600400, + 6443888528, + 6444853440, + 6444854912, + 6443805840, + 6443932848, + 6443932832 ], "bases": [ { @@ -62841,7 +62863,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170152, + "complete_object_locator": 6448174376, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -62850,13 +62872,13 @@ }, { "type_name": "CSVCMsg_SetPause_t", - "vtable_address": 6447761912, + "vtable_address": 6447766008, "methods": [ - 6442670368, - 6442694608, - 6442694608, - 6442706176, - 6442706256 + 6442670816, + 6442695056, + 6442695056, + 6442706624, + 6442706704 ], "bases": [ { @@ -62932,7 +62954,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448170192, + "complete_object_locator": 6448174416, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -62941,25 +62963,25 @@ }, { "type_name": "CSVCMsg_SetView", - "vtable_address": 6447982000, + "vtable_address": 6447986144, "methods": [ - 6443868432, - 6444851872, - 6442954864, - 6443940624, + 6443868720, + 6444852176, + 6442954944, + 6443940912, 6442590368, - 6444851920, - 6444849504, - 6443884320, + 6444852224, + 6444849808, + 6443884608, 6442600000, - 6443883520, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443940688, - 6443940672 + 6443883808, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443940976, + 6443940960 ], "bases": [ { @@ -62993,7 +63015,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250136, + "complete_object_locator": 6448254344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63002,25 +63024,25 @@ }, { "type_name": "CSVCMsg_Sounds", - "vtable_address": 6447982144, + "vtable_address": 6447986288, "methods": [ - 6443868112, - 6444851872, - 6442954832, - 6443938704, + 6443868400, + 6444852176, + 6442954912, + 6443938992, 6442590368, - 6444851920, - 6444849504, - 6443939440, + 6444852224, + 6444849808, + 6443939728, 6442600000, - 6443938912, - 6442600384, - 6443931808, - 6444853136, - 6444854608, - 6443805552, - 6443939808, - 6443939600 + 6443939200, + 6442600400, + 6443932096, + 6444853440, + 6444854912, + 6443805840, + 6443940096, + 6443939888 ], "bases": [ { @@ -63054,7 +63076,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448252320, + "complete_object_locator": 6448256616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63063,27 +63085,27 @@ }, { "type_name": "CSVCMsg_Sounds_sounddata_t", - "vtable_address": 6447978504, + "vtable_address": 6447982648, "methods": [ - 6443867968, - 6444851872, - 6443862672, - 6443933840, + 6443868256, + 6444852176, + 6443862960, + 6443934128, 6442590368, - 6444851920, - 6444849504, - 6443937680, + 6444852224, + 6444849808, + 6443937968, 6442600000, - 6443933936, - 6442600384, - 6443935968, - 6444853136, - 6444854608, - 6443805552, - 6443938640, - 6443938304, - 6444850176, - 6443888400 + 6443934224, + 6442600400, + 6443936256, + 6444853440, + 6444854912, + 6443805840, + 6443938928, + 6443938592, + 6444850480, + 6443888688 ], "bases": [ { @@ -63117,7 +63139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250872, + "complete_object_locator": 6448255248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63126,25 +63148,25 @@ }, { "type_name": "CSVCMsg_SplitScreen", - "vtable_address": 6447983584, + "vtable_address": 6447987872, "methods": [ - 6443869152, - 6444851872, + 6443869440, + 6444852176, 6442601072, - 6443945024, + 6443945312, 6442590368, - 6444851920, - 6444849504, - 6443946128, + 6444852224, + 6444849808, + 6443946416, 6442600000, - 6443945072, - 6442600384, - 6443945728, - 6444853136, - 6444854608, - 6443805552, - 6443946352, - 6443946256 + 6443945360, + 6442600400, + 6443946016, + 6444853440, + 6444854912, + 6443805840, + 6443946640, + 6443946544 ], "bases": [ { @@ -63178,7 +63200,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253984, + "complete_object_locator": 6448258336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63187,25 +63209,25 @@ }, { "type_name": "CSVCMsg_SplitScreen_t", - "vtable_address": 6447762856, + "vtable_address": 6447766960, "methods": [ - 6442738000, - 6444851872, + 6442738448, + 6444852176, 6442601072, - 6443945024, + 6443945312, 6442590368, - 6444851920, - 6444849504, - 6443946128, + 6444852224, + 6444849808, + 6443946416, 6442600000, - 6443945072, - 6442600384, - 6443945728, - 6444853136, - 6444854608, - 6443805552, - 6443946352, - 6443946256 + 6443945360, + 6442600400, + 6443946016, + 6444853440, + 6444854912, + 6443805840, + 6443946640, + 6443946544 ], "bases": [ { @@ -63281,7 +63303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169592, + "complete_object_locator": 6448173816, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -63290,13 +63312,13 @@ }, { "type_name": "CSVCMsg_SplitScreen_t", - "vtable_address": 6447763000, + "vtable_address": 6447767104, "methods": [ 6442602832, - 6442694608, - 6442694608, - 6442707248, - 6442707328 + 6442695056, + 6442695056, + 6442707696, + 6442707776 ], "bases": [ { @@ -63372,7 +63394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169632, + "complete_object_locator": 6448173856, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -63381,25 +63403,25 @@ }, { "type_name": "CSVCMsg_StopSound", - "vtable_address": 6447980272, + "vtable_address": 6447984560, "methods": [ - 6443873984, - 6444851872, - 6442955040, - 6443886880, + 6443874272, + 6444852176, + 6442955120, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6443988480, + 6444852224, + 6444849808, + 6443988768, 6442600000, - 6443988048, - 6442600384, - 6443988368, - 6444853136, - 6444854608, - 6443805552, - 6443988528, - 6443988512 + 6443988336, + 6442600400, + 6443988656, + 6444853440, + 6444854912, + 6443805840, + 6443988816, + 6443988800 ], "bases": [ { @@ -63433,7 +63455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250992, + "complete_object_locator": 6448255136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63442,27 +63464,25 @@ }, { "type_name": "CSVCMsg_TempEntities", - "vtable_address": 6447953576, + "vtable_address": 6447972784, "methods": [ - 6443871200, - 6444851872, - 6443862864, - 6443843440, + 6443871488, + 6444852176, + 6443863152, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443963136, + 6444852224, + 6444849808, + 6443963424, 6442600000, - 6443962272, - 6442600384, - 6443962864, - 6444853136, - 6444854608, - 6443805552, - 6443963440, - 6443963264, - 6444850176, - 6444011600 + 6443962560, + 6442600400, + 6443963152, + 6444853440, + 6444854912, + 6443805840, + 6443963728, + 6443963552 ], "bases": [ { @@ -63496,7 +63516,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251584, + "complete_object_locator": 6448255960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63505,25 +63525,25 @@ }, { "type_name": "CSVCMsg_UpdateStringTable", - "vtable_address": 6447983152, + "vtable_address": 6447987440, "methods": [ - 6443871536, - 6444851872, + 6443871824, + 6444852176, 6442601120, - 6443843440, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443966416, - 6442600384, - 6443966992, - 6444853136, - 6444854608, - 6443805552, - 6443967344, - 6443967328 + 6443966704, + 6442600400, + 6443967280, + 6444853440, + 6444854912, + 6443805840, + 6443967632, + 6443967616 ], "bases": [ { @@ -63557,7 +63577,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251944, + "complete_object_locator": 6448256264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63566,25 +63586,25 @@ }, { "type_name": "CSVCMsg_UpdateStringTable_t", - "vtable_address": 6447893880, + "vtable_address": 6447897880, "methods": [ - 6442737916, - 6444851872, + 6442738364, + 6444852176, 6442601120, - 6443843440, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443966416, - 6442600384, - 6443966992, - 6444853136, - 6444854608, - 6443805552, - 6443967344, - 6443967328 + 6443966704, + 6442600400, + 6443967280, + 6444853440, + 6444854912, + 6443805840, + 6443967632, + 6443967616 ], "bases": [ { @@ -63660,7 +63680,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448233712, + "complete_object_locator": 6448237936, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -63669,13 +63689,13 @@ }, { "type_name": "CSVCMsg_UpdateStringTable_t", - "vtable_address": 6447894024, + "vtable_address": 6447898024, "methods": [ - 6442699696, - 6442694608, - 6442694608, - 6442706624, - 6442706704 + 6442700144, + 6442695056, + 6442695056, + 6442707072, + 6442707152 ], "bases": [ { @@ -63751,7 +63771,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448233752, + "complete_object_locator": 6448237976, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -63760,25 +63780,25 @@ }, { "type_name": "CSVCMsg_UserCommands", - "vtable_address": 6447979984, + "vtable_address": 6447984416, "methods": [ - 6443876112, - 6444851872, - 6442955056, - 6444010576, + 6443876400, + 6444852176, + 6442955136, + 6444010864, 6442590368, - 6444851920, - 6444849504, - 6444011200, + 6444852224, + 6444849808, + 6444011488, 6442600144, - 6444010784, - 6442600384, - 6443840624, - 6444853136, - 6444854608, - 6443839968, - 6444011776, - 6444011584 + 6444011072, + 6442600400, + 6443840912, + 6444853440, + 6444854912, + 6443840256, + 6444012064, + 6444011872 ], "bases": [ { @@ -63812,7 +63832,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448251424, + "complete_object_locator": 6448255520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63821,29 +63841,25 @@ }, { "type_name": "CSVCMsg_UserMessage", - "vtable_address": 6447969320, + "vtable_address": 6447973624, "methods": [ - 6443869616, - 6444851872, - 6443254784, - 6443843440, + 6443869904, + 6444852176, + 6443254976, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443932624, - 6442600384, - 6443933200, - 6444853136, - 6444854608, - 6443805552, - 6443946592, - 6443946576, - 6444850176, - 6443977744, - 6444850176, - 6443847568 + 6443932912, + 6442600400, + 6443933488, + 6444853440, + 6444854912, + 6443805840, + 6443946880, + 6443946864 ], "bases": [ { @@ -63877,7 +63893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253424, + "complete_object_locator": 6448257760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -63886,13 +63902,13 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 6447857960, + "vtable_address": 6447862040, "methods": [ - 6443264944, - 6442694608, - 6442694608, - 6443279616, - 6443279696 + 6443265136, + 6442695056, + 6442695056, + 6443279808, + 6443279888 ], "bases": [ { @@ -63968,7 +63984,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218352, + "complete_object_locator": 6448222528, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -63977,25 +63993,25 @@ }, { "type_name": "CSVCMsg_UserMessage_t", - "vtable_address": 6447858152, + "vtable_address": 6447862232, "methods": [ - 6443283140, - 6444851872, - 6443254784, - 6443843440, + 6443283332, + 6444852176, + 6443254976, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443932624, - 6442600384, - 6443933200, - 6444853136, - 6444854608, - 6443805552, - 6443946592, - 6443946576 + 6443932912, + 6442600400, + 6443933488, + 6444853440, + 6444854912, + 6443805840, + 6443946880, + 6443946864 ], "bases": [ { @@ -64071,7 +64087,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218192, + "complete_object_locator": 6448222568, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -64080,25 +64096,25 @@ }, { "type_name": "CSVCMsg_VoiceData", - "vtable_address": 6447981424, + "vtable_address": 6447985568, "methods": [ - 6443871696, - 6444851872, - 6442954912, - 6443967408, + 6443871984, + 6444852176, + 6442954992, + 6443967696, 6442590368, - 6444851920, - 6444849504, - 6443969184, + 6444852224, + 6444849808, + 6443969472, 6442600000, - 6443967600, - 6442600384, - 6443968576, - 6444853136, - 6444854608, - 6443805552, - 6443970080, - 6443969424 + 6443967888, + 6442600400, + 6443968864, + 6444853440, + 6444854912, + 6443805840, + 6443970368, + 6443969712 ], "bases": [ { @@ -64132,7 +64148,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254408, + "complete_object_locator": 6448258944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64141,25 +64157,13 @@ }, { "type_name": "CSVCMsg_VoiceData_t", - "vtable_address": 6447836800, + "vtable_address": 6447840920, "methods": [ - 6443126532, - 6444851872, - 6442954912, - 6443967408, - 6442590368, - 6444851920, - 6444849504, - 6443969184, - 6442600000, - 6443967600, - 6442600384, - 6443968576, - 6444853136, - 6444854608, - 6443805552, - 6443970080, - 6443969424 + 6443045824, + 6442695056, + 6442695056, + 6443051120, + 6443051200 ], "bases": [ { @@ -64235,8 +64239,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211712, - "offset": 48, + "complete_object_locator": 6448216016, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -64244,13 +64248,25 @@ }, { "type_name": "CSVCMsg_VoiceData_t", - "vtable_address": 6447836944, + "vtable_address": 6447840968, "methods": [ - 6443045632, - 6442694608, - 6442694608, - 6443050928, - 6443051008 + 6443126724, + 6444852176, + 6442954992, + 6443967696, + 6442590368, + 6444852224, + 6444849808, + 6443969472, + 6442600000, + 6443967888, + 6442600400, + 6443968864, + 6444853440, + 6444854912, + 6443805840, + 6443970368, + 6443969712 ], "bases": [ { @@ -64326,8 +64342,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448211912, - "offset": 0, + "complete_object_locator": 6448216136, + "offset": 48, "constructor_displacement": 0, "class_attributes": 1 } @@ -64335,25 +64351,25 @@ }, { "type_name": "CSVCMsg_VoiceInit", - "vtable_address": 6447982288, + "vtable_address": 6447986720, "methods": [ - 6443867648, - 6444851872, - 6442954800, - 6443843440, + 6443867936, + 6444852176, + 6442954880, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443932624, - 6442600384, - 6443933200, - 6444853136, - 6444854608, - 6443805552, - 6443933696, - 6443933680 + 6443932912, + 6442600400, + 6443933488, + 6444853440, + 6444854912, + 6443805840, + 6443933984, + 6443933968 ], "bases": [ { @@ -64387,7 +64403,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448250640, + "complete_object_locator": 6448254808, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64396,25 +64412,25 @@ }, { "type_name": "CSVCMsg_VoiceInit_t", - "vtable_address": 6447830888, + "vtable_address": 6447835016, "methods": [ - 6443127216, - 6444851872, - 6442954800, - 6443843440, + 6443127408, + 6444852176, + 6442954880, + 6443843728, 6442590368, - 6444851920, - 6444849504, - 6443933536, + 6444852224, + 6444849808, + 6443933824, 6442600000, - 6443932624, - 6442600384, - 6443933200, - 6444853136, - 6444854608, - 6443805552, - 6443933696, - 6443933680 + 6443932912, + 6442600400, + 6443933488, + 6444853440, + 6444854912, + 6443805840, + 6443933984, + 6443933968 ], "bases": [ { @@ -64490,7 +64506,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209832, + "complete_object_locator": 6448214056, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -64499,13 +64515,13 @@ }, { "type_name": "CSVCMsg_VoiceInit_t", - "vtable_address": 6447831032, + "vtable_address": 6447835160, "methods": [ - 6443045856, - 6442694608, - 6442694608, - 6443050560, - 6443050640 + 6443046048, + 6442695056, + 6442695056, + 6443050752, + 6443050832 ], "bases": [ { @@ -64581,7 +64597,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209872, + "complete_object_locator": 6448214096, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -64590,9 +64606,9 @@ }, { "type_name": "CSceneViewDebugOverlaysListener", - "vtable_address": 6447831272, + "vtable_address": 6447835208, "methods": [ - 6443133776 + 6443133968 ], "bases": [ { @@ -64612,7 +64628,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448209672, + "complete_object_locator": 6448213896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64621,9 +64637,9 @@ }, { "type_name": "CSchemaInstallCallback", - "vtable_address": 6447390904, + "vtable_address": 6447395000, "methods": [ - 6446647472 + 6446647776 ], "bases": [ { @@ -64643,7 +64659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448154592, + "complete_object_locator": 6448158816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64652,9 +64668,9 @@ }, { "type_name": "CSchemaRegistration_engine2", - "vtable_address": 6448121816, + "vtable_address": 6448126056, "methods": [ - 6444841632 + 6444841936 ], "bases": [ { @@ -64674,7 +64690,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448304384, + "complete_object_locator": 6448308552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64683,9 +64699,9 @@ }, { "type_name": "CSchemaRegistration_entity2", - "vtable_address": 6447149888, + "vtable_address": 6447153984, "methods": [ - 6445686784 + 6445687088 ], "bases": [ { @@ -64705,7 +64721,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448141272, + "complete_object_locator": 6448145496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -64714,31 +64730,31 @@ }, { "type_name": "CScreenshotService", - "vtable_address": 6448062520, + "vtable_address": 6448066792, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6444444448, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793392, + 6444444736, + 6442600400, 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444442560, - 6444186096, - 6444186080, - 6444443760 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444442848, + 6444186384, + 6444186368, + 6444444048 ], "bases": [ { @@ -64884,7 +64900,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283528, + "complete_object_locator": 6448287784, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -64893,12 +64909,12 @@ }, { "type_name": "CScreenshotService", - "vtable_address": 6448062712, + "vtable_address": 6448066984, "methods": [ - 6444451520, - 6444452080, - 6444452560, - 6442600464, + 6444451808, + 6444452368, + 6444452848, + 6442600368, 6442590368 ], "bases": [ @@ -65045,7 +65061,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283568, + "complete_object_locator": 6448287664, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -65054,11 +65070,11 @@ }, { "type_name": "CScreenshotServiceReadTexturePixelsCallback", - "vtable_address": 6448062488, + "vtable_address": 6448067032, "methods": [ - 6444442960, - 6444448096, - 6444447584 + 6444443248, + 6444448384, + 6444447872 ], "bases": [ { @@ -65092,7 +65108,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283264, + "complete_object_locator": 6448287584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65101,16 +65117,16 @@ }, { "type_name": "CSequentialPrerequisite", - "vtable_address": 6447778736, - "methods": [ - 6442841216, - 6442845840, - 6442845856, - 6442841280, - 6442844272, - 6442842448, - 6442600384, - 6442844064 + "vtable_address": 6447782848, + "methods": [ + 6442841664, + 6442846288, + 6442846304, + 6442841728, + 6442844720, + 6442842896, + 6442600400, + 6442844512 ], "bases": [ { @@ -65144,7 +65160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179824, + "complete_object_locator": 6448184048, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -65153,10 +65169,10 @@ }, { "type_name": "CSequentialPrerequisite", - "vtable_address": 6447778936, + "vtable_address": 6447783048, "methods": [ - 6442843504, - 6442844288 + 6442843952, + 6442844736 ], "bases": [ { @@ -65190,7 +65206,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448179976, + "complete_object_locator": 6448184200, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -65199,9 +65215,9 @@ }, { "type_name": "CSerializedEntityPolymorphicFieldsMetadataHelper", - "vtable_address": 6447868144, + "vtable_address": 6447872240, "methods": [ - 6443347248 + 6443347440 ], "bases": [ { @@ -65221,7 +65237,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448224576, + "complete_object_locator": 6448228792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65230,12 +65246,12 @@ }, { "type_name": "CServerConsoleRedirect", - "vtable_address": 6447881336, + "vtable_address": 6447885360, "methods": [ + 6443472544, + 6443472224, 6443472352, - 6443472032, - 6443472160, - 6443472400 + 6443472592 ], "bases": [ { @@ -65255,7 +65271,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448227032, + "complete_object_locator": 6448231248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65264,15 +65280,15 @@ }, { "type_name": "CServerGameSessionManifestPrerequisite", - "vtable_address": 6448056160, + "vtable_address": 6448060416, "methods": [ - 6443519824, - 6442845840, - 6442845856, - 6443516896, - 6444408768, - 6443517040, - 6444408784 + 6443520016, + 6442846288, + 6442846304, + 6443517088, + 6444409056, + 6443517232, + 6444409072 ], "bases": [ { @@ -65320,7 +65336,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448278984, + "complete_object_locator": 6448283264, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -65329,10 +65345,10 @@ }, { "type_name": "CServerGameSessionManifestPrerequisite", - "vtable_address": 6448056224, + "vtable_address": 6448060480, "methods": [ - 6442600384, - 6444408848 + 6442600400, + 6444409136 ], "bases": [ { @@ -65380,7 +65396,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448279024, + "complete_object_locator": 6448283144, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -65389,18 +65405,18 @@ }, { "type_name": "CServerMsg", - "vtable_address": 6447829384, + "vtable_address": 6447833512, "methods": [ - 6442960192, + 6442960272, 6442599952, - 6442960208, + 6442960288, 6442600480, - 6442960224, - 6446722668, - 6446722668, - 6442960240, - 6442960368, - 6446722668 + 6442960304, + 6446722972, + 6446722972, + 6442960320, + 6442960448, + 6446722972 ], "bases": [ { @@ -65420,7 +65436,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204408, + "complete_object_locator": 6448208472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65429,18 +65445,18 @@ }, { "type_name": "CServerMsg_CheckReservation", - "vtable_address": 6447829296, + "vtable_address": 6447832264, "methods": [ - 6442960192, + 6442960272, 6442599952, - 6442960208, + 6442960288, 6442600480, - 6442960224, - 6442960800, - 6442962944, - 6442960512, - 6442961280, - 6442963088 + 6442960304, + 6442960880, + 6442963024, + 6442960592, + 6442961360, + 6442963168 ], "bases": [ { @@ -65474,7 +65490,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204328, + "complete_object_locator": 6448208592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -65483,12 +65499,12 @@ }, { "type_name": "CServerRemoteAccess", - "vtable_address": 6447881376, + "vtable_address": 6447885400, "methods": [ - 6442600464, - 6443478368, - 6442600464, - 6442600464, + 6442600368, + 6443478560, + 6442600368, + 6442600368, 6442590368 ], "bases": [ @@ -65537,7 +65553,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448227384, + "complete_object_locator": 6448231600, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -65546,13 +65562,13 @@ }, { "type_name": "CServerRemoteAccess", - "vtable_address": 6447881424, + "vtable_address": 6447885448, "methods": [ - 6443475616, - 6443478240, - 6443480512, - 6443475712, - 6443472624 + 6443475808, + 6443478432, + 6443480704, + 6443475904, + 6443472816 ], "bases": [ { @@ -65600,7 +65616,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448227424, + "complete_object_locator": 6448231640, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -65609,9 +65625,9 @@ }, { "type_name": "CServerSideClient", - "vtable_address": 6447858456, + "vtable_address": 6447862584, "methods": [ - 6443287664 + 6443287856 ], "bases": [ { @@ -65673,7 +65689,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217992, + "complete_object_locator": 6448222328, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -65682,87 +65698,87 @@ }, { "type_name": "CServerSideClient", - "vtable_address": 6447858472, - "methods": [ - 6443322752, - 6443256064, - 6443257776, - 6443260464, - 6443260608, - 6443293632, - 6443261136, - 6443261552, - 6443262096, - 6443319728, - 6443259728, - 6443289456, - 6443286384, - 6443260816, - 6443265168, - 6443263680, - 6443286944, - 6443254800, - 6443321936, - 6443260160, - 6443260384, - 6443254816, - 6443254832, - 6443307824, - 6443308720, - 6443309584, - 6443309632, - 6443308688, - 6443256592, - 6443310352, - 6443310336, - 6443320416, - 6443319904, - 6443257008, - 6443320432, - 6443257408, - 6443256608, - 6443256912, + "vtable_address": 6447862600, + "methods": [ + 6443322944, + 6443256256, + 6443257968, + 6443260656, + 6443260800, + 6443293824, + 6443261328, + 6443261744, + 6443262288, + 6443319920, + 6443259920, + 6443289648, + 6443286576, + 6443261008, + 6443265360, + 6443263872, + 6443287136, + 6443254992, + 6443322128, + 6443260352, + 6443260576, + 6443255008, + 6443255024, + 6443308016, + 6443308912, + 6443309776, + 6443309824, + 6443308880, + 6443256784, + 6443310544, + 6443310528, + 6443320608, + 6443320096, + 6443257200, + 6443320624, + 6443257600, + 6443256800, + 6443257104, 6442590368, - 6443274368, - 6443274480, - 6443274512, + 6443274560, 6443274672, - 6443321664, - 6443257456, - 6442600464, - 6443257696, - 6443304080, - 6443299408, - 6443274832, + 6443274704, 6443274864, - 6443260640, - 6443274240, - 6443313776, - 6443286928, - 6443259904, - 6443314128, - 6443263664, - 6443262960, - 6443263536, - 6443262400, - 6443294112, - 6443289264, - 6443289536, - 6443254848, - 6443321824, - 6443265136, - 6443323056, - 6443271072, - 6443273296, - 6443255072, - 6443270752, - 6443271008, - 6443255088, - 6443277056, - 6443277440, - 6443277472, - 6443261888, - 6443261184 + 6443321856, + 6443257648, + 6442600368, + 6443257888, + 6443304272, + 6443299600, + 6443275024, + 6443275056, + 6443260832, + 6443274432, + 6443313968, + 6443287120, + 6443260096, + 6443314320, + 6443263856, + 6443263152, + 6443263728, + 6443262592, + 6443294304, + 6443289456, + 6443289728, + 6443255040, + 6443322016, + 6443265328, + 6443323248, + 6443271264, + 6443273488, + 6443255264, + 6443270944, + 6443271200, + 6443255280, + 6443277248, + 6443277632, + 6443277664, + 6443262080, + 6443261376 ], "bases": [ { @@ -65824,7 +65840,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218152, + "complete_object_locator": 6448222368, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -65833,17 +65849,17 @@ }, { "type_name": "CServerSideClient::CSendJob_Empty", - "vtable_address": 6447857832, - "methods": [ - 6443274032, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443278848, - 6443254176, - 6442600464, - 6443277680 + "vtable_address": 6447861960, + "methods": [ + 6443274224, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443279040, + 6443254368, + 6442600368, + 6443277872 ], "bases": [ { @@ -65947,7 +65963,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217872, + "complete_object_locator": 6448222008, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -65956,17 +65972,17 @@ }, { "type_name": "CServerSideClient::CSendJob_HltvReplay", - "vtable_address": 6447858296, + "vtable_address": 6447862424, "methods": [ - 6443259520, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443279296, - 6443254176, - 6442600464, - 6443277824 + 6443259712, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443279488, + 6443254368, + 6442600368, + 6443278016 ], "bases": [ { @@ -66070,7 +66086,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218072, + "complete_object_locator": 6448222168, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -66079,17 +66095,17 @@ }, { "type_name": "CServerSideClient::CSendJob_HltvSource", - "vtable_address": 6447858376, + "vtable_address": 6447862504, "methods": [ - 6443259312, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443279024, - 6443254176, - 6442600464, - 6443278000 + 6443259504, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443279216, + 6443254368, + 6442600368, + 6443278192 ], "bases": [ { @@ -66193,7 +66209,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448217832, + "complete_object_locator": 6448222288, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -66202,17 +66218,17 @@ }, { "type_name": "CServerSideClient::CSendJob_Regular", - "vtable_address": 6447852432, - "methods": [ - 6443255104, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443254864, - 6443254176, + "vtable_address": 6447856584, + "methods": [ + 6443255296, + 6443283488, + 6443283344, + 6443283392, + 6443283424, 6443255056, - 6443277488 + 6443254368, + 6443255248, + 6443277680 ], "bases": [ { @@ -66302,7 +66318,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218112, + "complete_object_locator": 6448222208, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -66311,9 +66327,87 @@ }, { "type_name": "CServerSideClientBase", - "vtable_address": 6447866808, - "methods": [ - 6443287664 + "vtable_address": 6447870896, + "methods": [ + 6443322944, + 6443285232, + 6443297296, + 6443293008, + 6443293840, + 6443293824, + 6443292464, + 6443298096, + 6442590368, + 6443319920, + 6443286416, + 6443289648, + 6443286576, + 6443290448, + 6443313488, + 6443287984, + 6443287136, + 6443254992, + 6443322128, + 6442600368, + 6442600368, + 6443255008, + 6443255024, + 6443308016, + 6443308912, + 6443309776, + 6443309824, + 6443308880, + 6443309936, + 6443310544, + 6443310528, + 6443320608, + 6443320096, + 6442590368, + 6443320624, + 6442590368, + 6442590368, + 6442590368, + 6442590368, + 6442590368, + 6442590368, + 6442590368, + 6442590368, + 6443321856, + 6442600368, + 6442600368, + 6442590368, + 6443304272, + 6443299600, + 6446722972, + 6446722972, + 6443318464, + 6443313536, + 6443313968, + 6443287120, + 6443314144, + 6443314320, + 6446722972, + 6443296656, + 6443295200, + 6443294672, + 6443294304, + 6443289456, + 6443289728, + 6443255040, + 6443322016, + 6442590368, + 6443323248, + 6442600368, + 6442600400, + 6442600384, + 6442600368, + 6442600400, + 6442600480, + 6446722972, + 6443277632, + 6443277664, + 6443291136, + 6443297792 ], "bases": [ { @@ -66361,8 +66455,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222656, - "offset": 8, + "complete_object_locator": 6448226832, + "offset": 0, "constructor_displacement": 0, "class_attributes": 1 } @@ -66370,87 +66464,9 @@ }, { "type_name": "CServerSideClientBase", - "vtable_address": 6447866824, - "methods": [ - 6443322752, - 6443285040, - 6443297104, - 6443292816, - 6443293648, - 6443293632, - 6443292272, - 6443297904, - 6442590368, - 6443319728, - 6443286224, - 6443289456, - 6443286384, - 6443290256, - 6443313296, - 6443287792, - 6443286944, - 6443254800, - 6443321936, - 6442600464, - 6442600464, - 6443254816, - 6443254832, - 6443307824, - 6443308720, - 6443309584, - 6443309632, - 6443308688, - 6443309744, - 6443310352, - 6443310336, - 6443320416, - 6443319904, - 6442590368, - 6443320432, - 6442590368, - 6442590368, - 6442590368, - 6442590368, - 6442590368, - 6442590368, - 6442590368, - 6442590368, - 6443321664, - 6442600464, - 6442600464, - 6442590368, - 6443304080, - 6443299408, - 6446722668, - 6446722668, - 6443318272, - 6443313344, - 6443313776, - 6443286928, - 6443313952, - 6443314128, - 6446722668, - 6443296464, - 6443295008, - 6443294480, - 6443294112, - 6443289264, - 6443289536, - 6443254848, - 6443321824, - 6442590368, - 6443323056, - 6442600464, - 6442600384, - 6442600368, - 6442600464, - 6442600384, - 6442600480, - 6446722668, - 6443277440, - 6443277472, - 6443290944, - 6443297600 + "vtable_address": 6447871536, + "methods": [ + 6443287856 ], "bases": [ { @@ -66498,8 +66514,8 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448222616, - "offset": 0, + "complete_object_locator": 6448226872, + "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } @@ -66507,13 +66523,13 @@ }, { "type_name": "CSimpleLoggingListener", - "vtable_address": 6447131688, + "vtable_address": 6447135784, "methods": [ - 6445504576, - 6445504688, - 6442600384, - 6442600384, - 6442600384 + 6445504880, + 6445504992, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -66533,7 +66549,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448138400, + "complete_object_locator": 6448142624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66542,13 +66558,13 @@ }, { "type_name": "CSimpleWindowsLoggingListener", - "vtable_address": 6447131784, + "vtable_address": 6447135880, "methods": [ - 6445505040, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + 6445505344, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -66568,7 +66584,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448138664, + "complete_object_locator": 6448142888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66577,45 +66593,45 @@ }, { "type_name": "CSoundService", - "vtable_address": 6448066752, + "vtable_address": 6448071032, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444473808, - 6444474256, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6444474096, + 6444474544, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6444234016, - 6444473728, - 6444473792, - 6444186112, - 6444186048, - 6444186064, - 6444459936, - 6444186096, - 6444186080, - 6444461472, - 6444474528, - 6444479168, - 6444479344, - 6444479888, - 6444461536, - 6444461552, - 6444461616, - 6444468016, - 6444468400, - 6444468432, - 6444468464, - 6444468496, - 6444468512, - 6444474416 + 6442697072, + 6442600384, + 6443587504, + 6444234304, + 6444474016, + 6444474080, + 6444186400, + 6444186336, + 6444186352, + 6444460224, + 6444186384, + 6444186368, + 6444461760, + 6444474816, + 6444479456, + 6444479632, + 6444480176, + 6444461824, + 6444461840, + 6444461904, + 6444468304, + 6444468688, + 6444468720, + 6444468752, + 6444468784, + 6444468800, + 6444474704 ], "bases": [ { @@ -66761,7 +66777,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448285336, + "complete_object_locator": 6448289488, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66770,9 +66786,9 @@ }, { "type_name": "CSource1InputHandlerPostClientHandler", - "vtable_address": 6447893216, + "vtable_address": 6447897184, "methods": [ - 6443556960 + 6443557152 ], "bases": [ { @@ -66792,7 +66808,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448231720, + "complete_object_locator": 6448235976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66801,9 +66817,9 @@ }, { "type_name": "CSource1InputHandlerPreClientHandler", - "vtable_address": 6447893200, + "vtable_address": 6447897216, "methods": [ - 6443556688 + 6443556880 ], "bases": [ { @@ -66823,7 +66839,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448231600, + "complete_object_locator": 6448235856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66832,9 +66848,9 @@ }, { "type_name": "CSource1InputHandler_Client", - "vtable_address": 6447893232, + "vtable_address": 6447897200, "methods": [ - 6443556464 + 6443556656 ], "bases": [ { @@ -66854,7 +66870,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448231640, + "complete_object_locator": 6448235896, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66863,29 +66879,31 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification", - "vtable_address": 6447978184, + "vtable_address": 6447982456, "methods": [ - 6443866704, - 6444851872, - 6443862640, - 6443923152, + 6443866992, + 6444852176, + 6443862928, + 6443923440, 6442590368, - 6444851920, - 6444849504, - 6443924816, + 6444852224, + 6444849808, + 6443925104, 6442600000, - 6443923392, - 6442600384, - 6443924320, - 6444853136, - 6444854608, - 6443805552, - 6443925520, - 6443925152, - 6444850176, - 6443884432, - 6444850176, - 6443944672 + 6443923680, + 6442600400, + 6443924608, + 6444853440, + 6444854912, + 6443805840, + 6443925808, + 6443925440, + 6444850480, + 6443884720, + 6444850480, + 6443944960, + 6444850480, + 6443887824 ], "bases": [ { @@ -66919,7 +66937,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448253176, + "complete_object_locator": 6448257472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66928,27 +66946,25 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification_Client", - "vtable_address": 6447970104, + "vtable_address": 6447974872, "methods": [ - 6443866640, - 6444851872, - 6443862624, - 6443920080, + 6443866928, + 6444852176, + 6443862912, + 6443920368, 6442590368, - 6444851920, - 6444849504, - 6443922192, + 6444852224, + 6444849808, + 6443922480, 6442600000, - 6443920784, - 6442600384, - 6443921744, - 6444853136, - 6444854608, - 6443805552, - 6443923088, - 6443922544, - 6444850176, - 6443883232 + 6443921072, + 6442600400, + 6443922032, + 6444853440, + 6444854912, + 6443805840, + 6443923376, + 6443922832 ], "bases": [ { @@ -66982,7 +66998,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249904, + "complete_object_locator": 6448254120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -66991,14 +67007,14 @@ }, { "type_name": "CSpawnServerPrerequisite", - "vtable_address": 6448056376, + "vtable_address": 6448061048, "methods": [ - 6444409072, - 6442845840, - 6442845856, - 6444408992, - 6444409056, - 6442845888 + 6444409360, + 6442846288, + 6442846304, + 6444409280, + 6444409344, + 6442846336 ], "bases": [ { @@ -67018,7 +67034,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448279064, + "complete_object_locator": 6448283184, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67027,51 +67043,51 @@ }, { "type_name": "CSplitScreenService", - "vtable_address": 6448069432, + "vtable_address": 6448073952, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444487968, - 6444488704, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6442793488, + 6442793248, 6442600384, + 6444488256, + 6444488992, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186096, - 6444186080, - 6444487904, - 6444491040, - 6444491008, - 6444492192, - 6444492416, - 6444492544, - 6444492992, - 6444493024, - 6444493040, - 6444492800, + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6442600400, + 6444186384, + 6444186368, + 6444488192, + 6444491328, + 6444491296, + 6444492480, + 6444492704, 6444492832, - 6444492944, - 6444493184, - 6444493232, 6444493280, - 6444493424, - 6444492816, - 6444492880, + 6444493312, + 6444493328, + 6444493088, + 6444493120, + 6444493232, + 6444493472, + 6444493520, + 6444493568, + 6444493712, 6444493104, - 6444495664, - 6444496768 + 6444493168, + 6444493392, + 6444495952, + 6444497056 ], "bases": [ { @@ -67231,7 +67247,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448287000, + "complete_object_locator": 6448291224, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -67240,12 +67256,12 @@ }, { "type_name": "CSplitScreenService", - "vtable_address": 6448069784, + "vtable_address": 6448074304, "methods": [ - 6444498816, - 6444496992, - 6442600384, - 6442600384 + 6444499104, + 6444497280, + 6442600400, + 6442600400 ], "bases": [ { @@ -67405,7 +67421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448287040, + "complete_object_locator": 6448291264, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -67414,14 +67430,14 @@ }, { "type_name": "CStatsService", - "vtable_address": 6448071704, + "vtable_address": 6448075736, "methods": [ - 6444516836, - 6442600384, - 6444508944, - 6444509024, - 6442600384, - 6444508896 + 6444517124, + 6442600400, + 6444509232, + 6444509312, + 6442600400, + 6444509184 ], "bases": [ { @@ -67581,7 +67597,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448288704, + "complete_object_locator": 6448292872, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -67590,35 +67606,35 @@ }, { "type_name": "CStatsService", - "vtable_address": 6448071760, + "vtable_address": 6448075792, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, + 6442793392, + 6442793312, + 6442600400, + 6442600384, + 6442694656, + 6442793424, 6442590368, - 6442696624, - 6444500880, - 6443587312, - 6444500896, - 6444500944, - 6444501424, - 6444186112, - 6444186048, - 6444186064, - 6444498832, - 6444186096, - 6444186080, - 6444500128, - 6444500832, - 6444509040, - 6444499232, - 6444499248 + 6442697072, + 6444501168, + 6443587504, + 6444501184, + 6444501232, + 6444501712, + 6444186400, + 6444186336, + 6444186352, + 6444499120, + 6444186384, + 6444186368, + 6444500416, + 6444501120, + 6444509328, + 6444499520, + 6444499536 ], "bases": [ { @@ -67778,7 +67794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448288744, + "complete_object_locator": 6448292792, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -67787,15 +67803,15 @@ }, { "type_name": "CStdFunctionJob", - "vtable_address": 6447937568, - "methods": [ - 6443804048, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6443804208, - 6442600384 + "vtable_address": 6447941848, + "methods": [ + 6443804336, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6443804496, + 6442600400 ], "bases": [ { @@ -67857,7 +67873,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246936, + "complete_object_locator": 6448251072, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -67866,30 +67882,30 @@ }, { "type_name": "CTextConsole", - "vtable_address": 6448079312, + "vtable_address": 6448083440, "methods": [ - 6444547536, + 6444547824, 6442592192, 6442592368, 6442592384, - 6442600384, - 6442600384, - 6442600384, - 6446722668, - 6446722668, - 6446722668, - 6446722668, + 6442600400, + 6442600400, + 6442600400, + 6446722972, + 6446722972, + 6446722972, + 6446722972, 6442592336, 6442592352, - 6442600384, - 6442600384, - 6442600384, - 6444547520 + 6442600400, + 6442600400, + 6442600400, + 6444547808 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448294672, + "complete_object_locator": 6448299128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67898,9 +67914,9 @@ }, { "type_name": "CTextConsoleWin", - "vtable_address": 6448079168, + "vtable_address": 6448083584, "methods": [ - 6444547600, + 6444547888, 6442592928, 6442595216, 6442592384, @@ -67936,7 +67952,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294752, + "complete_object_locator": 6448299088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67945,13 +67961,13 @@ }, { "type_name": "CTextOnlyLoggingListener", - "vtable_address": 6448025808, + "vtable_address": 6448030136, "methods": [ - 6444186768, - 6442600384, - 6442600384, - 6442600384, - 6442600384 + 6444187056, + 6442600400, + 6442600400, + 6442600400, + 6442600400 ], "bases": [ { @@ -67971,7 +67987,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448263360, + "complete_object_locator": 6448267552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -67980,16 +67996,16 @@ }, { "type_name": "CThreadedDependentJob", - "vtable_address": 6447852512, - "methods": [ - 6443254400, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6446722668, - 6442600384, - 6442600464 + "vtable_address": 6447856664, + "methods": [ + 6443254592, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6446722972, + 6442600400, + 6442600368 ], "bases": [ { @@ -68051,7 +68067,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218392, + "complete_object_locator": 6448222608, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -68060,13 +68076,13 @@ }, { "type_name": "CThreadedFileLogger", - "vtable_address": 6447391608, + "vtable_address": 6447395704, "methods": [ - 6446663088, - 6446665552, - 6446663632, - 6446663792, - 6442600384 + 6446663392, + 6446665856, + 6446663936, + 6446664096, + 6442600400 ], "bases": [ { @@ -68086,7 +68102,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448155520, + "complete_object_locator": 6448159744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68095,15 +68111,15 @@ }, { "type_name": "CThreadedJob", - "vtable_address": 6447852592, - "methods": [ - 6443254400, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6446722668, - 6442600384 + "vtable_address": 6447856736, + "methods": [ + 6443254592, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6446722972, + 6442600400 ], "bases": [ { @@ -68151,7 +68167,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448215264, + "complete_object_locator": 6448219632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -68160,17 +68176,17 @@ }, { "type_name": "CThreadedJobWithDependencies", - "vtable_address": 6447852656, - "methods": [ - 6443254192, - 6443283296, - 6443283152, - 6443283200, - 6443283232, - 6444823008, - 6443254176, - 6442600464, - 6442600384 + "vtable_address": 6447856808, + "methods": [ + 6443254384, + 6443283488, + 6443283344, + 6443283392, + 6443283424, + 6444823312, + 6443254368, + 6442600368, + 6442600400 ], "bases": [ { @@ -68246,7 +68262,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448218432, + "complete_object_locator": 6448222648, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -68255,18 +68271,18 @@ }, { "type_name": "CThreadedLogger", - "vtable_address": 6447391560, + "vtable_address": 6447395656, "methods": [ - 6446663168, - 6446722668, - 6446722668, - 6442600384, - 6442600384 + 6446663472, + 6446722972, + 6446722972, + 6442600400, + 6442600400 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448155400, + "complete_object_locator": 6448159624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68275,69 +68291,69 @@ }, { "type_name": "CTier1Application", - "vtable_address": 6447131896, + "vtable_address": 6447135992, "methods": [ - 6444139040, - 6444139024, - 6442600368, - 6442792944, - 6444139008, + 6444139328, + 6444139312, 6442600384, - 6444083536, + 6442793392, + 6444139296, + 6442600400, + 6444083824, 6442592912, - 6443567808, + 6443568000, 6442590368, - 6442696624, - 6444084560, - 6444083776, - 6444083760, - 6444083696, - 6444083840, - 6444083808, - 6444083824, - 6444083856, - 6444083792, - 6444083872, - 6444083936, - 6444084000, + 6442697072, + 6444084848, + 6444084064, + 6444084048, + 6444083984, + 6444084128, 6444084096, 6444084112, - 6444084016, - 6444084128, - 6444084064, + 6444084144, + 6444084080, 6444084160, - 6444084176, - 6444084032, - 6444084192, - 6444084208, - 6444084240, - 6444083712, - 6444084256, - 6442600384, - 6442600384, - 6442600368, - 6442600384, - 6444084288, + 6444084224, 6444084288, - 6442600464, - 6442600384, - 6442600464, - 6444084336, + 6444084384, + 6444084400, + 6444084304, + 6444084416, 6444084352, - 6444084368, - 6444083664, - 6444083680, - 6442600368, - 6442600384, + 6444084448, + 6444084464, + 6444084320, + 6444084480, + 6444084496, + 6444084528, + 6444084000, + 6444084544, + 6442600400, + 6442600400, 6442600384, - 6444083520, + 6442600400, + 6444084576, + 6444084576, + 6442600368, + 6442600400, 6442600368, - 6444083520, + 6444084624, + 6444084640, + 6444084656, + 6444083952, + 6444083968, 6442600384, + 6442600400, + 6442600400, + 6444083808, 6442600384, - 6444083520, - 6444084384, - 6444084400, + 6444083808, + 6442600400, + 6442600400, + 6444083808, + 6444084672, + 6444084688, 6442601024 ], "bases": [ @@ -68414,7 +68430,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448259344, + "complete_object_locator": 6448263568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68423,15 +68439,15 @@ }, { "type_name": "CTier2AppSystemDict", - "vtable_address": 6448014456, + "vtable_address": 6448018776, "methods": [ - 6444088720, - 6444091024, - 6444090448, - 6444090464, - 6444090784, - 6444090944, - 6444091744 + 6444089008, + 6444091312, + 6444090736, + 6444090752, + 6444091072, + 6444091232, + 6444092032 ], "bases": [ { @@ -68465,7 +68481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448259560, + "complete_object_locator": 6448263784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68474,69 +68490,69 @@ }, { "type_name": "CTier2Application", - "vtable_address": 6448014520, + "vtable_address": 6448018840, "methods": [ - 6444086400, - 6444086528, - 6442600368, - 6442792944, - 6444139008, + 6444086688, + 6444086816, 6442600384, - 6444083536, + 6442793392, + 6444139296, + 6442600400, + 6444083824, 6442592912, - 6444086464, + 6444086752, 6442590368, - 6442696624, - 6444084560, - 6444083776, - 6444083760, - 6444083696, - 6444083840, - 6444083808, - 6444083824, - 6444083856, - 6444083792, - 6444083872, - 6444083936, - 6444084000, + 6442697072, + 6444084848, + 6444084064, + 6444084048, + 6444083984, + 6444084128, 6444084096, 6444084112, - 6444084016, - 6444084128, - 6444084064, + 6444084144, + 6444084080, 6444084160, - 6444084176, - 6444084032, - 6444084192, - 6444084208, - 6444084240, - 6444083712, - 6444084256, - 6444086576, - 6444086592, - 6444086624, - 6444086608, - 6444086992, - 6444087008, - 6444087056, - 6444087024, - 6444087040, - 6444084336, + 6444084224, + 6444084288, + 6444084384, + 6444084400, + 6444084304, + 6444084416, 6444084352, - 6444084368, - 6444083664, - 6444083680, - 6444087072, - 6444087120, - 6444087184, - 6444087200, + 6444084448, + 6444084464, + 6444084320, + 6444084480, + 6444084496, + 6444084528, + 6444084000, + 6444084544, + 6444086864, + 6444086880, + 6444086912, + 6444086896, + 6444087280, + 6444087296, 6444087344, + 6444087312, + 6444087328, + 6444084624, + 6444084640, + 6444084656, + 6444083952, + 6444083968, + 6444087360, 6444087408, - 6444087440, + 6444087472, + 6444087488, + 6444087632, + 6444087696, 6444087728, - 6444087904, - 6444084384, - 6444084400, + 6444088016, + 6444088192, + 6444084672, + 6444084688, 6442601024 ], "bases": [ @@ -68627,7 +68643,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448259384, + "complete_object_locator": 6448263624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68636,99 +68652,99 @@ }, { "type_name": "CToolService", - "vtable_address": 6448072920, + "vtable_address": 6448077208, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6442792944, - 6442792864, - 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6444517680, - 6443587312, - 6444517744, + 6442793488, + 6442793248, 6442600384, + 6442793392, + 6442793312, + 6442600400, 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444516848, - 6444186096, - 6444186080, - 6444517504, - 6444517696, - 6444518384, - 6444518496, - 6444518528, - 6444518560, - 6444518592, - 6444518624, - 6444518656, - 6444518688, - 6444518720, + 6442694656, + 6442793424, + 6442590368, + 6442697072, + 6444517968, + 6443587504, + 6444518032, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444517136, + 6444186384, + 6444186368, + 6444517792, + 6444517984, + 6444518672, 6444518784, 6444518816, + 6444518848, + 6444518880, 6444518912, 6444518944, 6444518976, + 6444519008, + 6444519072, + 6444519104, + 6444519200, + 6444519232, 6444519264, - 6444519296, - 6444519328, - 6444519360, - 6444519392, - 6444519456, + 6444519552, 6444519584, - 6444519488, - 6444519536, - 6444519424, + 6444519616, 6444519648, 6444519680, - 6444519712, 6444519744, - 6444519776, - 6444519808, - 6444519840, 6444519872, - 6444518848, - 6444518880, - 6444519904, - 6444518128, - 6444518256, - 6444518752, + 6444519776, + 6444519824, + 6444519712, + 6444519936, + 6444519968, + 6444520000, + 6444520032, + 6444520064, 6444520096, 6444520128, + 6444520160, + 6444519136, + 6444519168, 6444520192, - 6444520256, - 6444520336, - 6444520464, - 6444520688, - 6444520720, + 6444518416, + 6444518544, + 6444519040, + 6444520384, + 6444520416, + 6444520480, + 6444520544, + 6444520624, 6444520752, - 6444520784, - 6444520816, - 6444520848, - 6444520880, - 6444520912, - 6444521072, - 6444520944, 6444520976, 6444521008, 6444521040, - 6444519616, + 6444521072, 6444521104, + 6444521136, + 6444521168, + 6444521200, + 6444521360, + 6444521232, + 6444521264, + 6444521296, 6444521328, - 6444521552, - 6444521568, - 6444521600, - 6444521632, - 6444521664, - 6444521696, - 6444521728 + 6444519904, + 6444521392, + 6444521616, + 6444521840, + 6444521856, + 6444521888, + 6444521920, + 6444521952, + 6444521984, + 6444522016 ], "bases": [ { @@ -68874,7 +68890,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448289984, + "complete_object_locator": 6448294160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -68883,18 +68899,140 @@ }, { "type_name": "CTvDirectDemoRecorder", - "vtable_address": 6447930152, + "vtable_address": 6447934424, "methods": [ - 6443769248, - 6443769280, - 6442590368, - 6443769152, - 6443769296, - 6443769312, + 6443771104 + ], + "bases": [ + { + "type_name": "ITvStreamSink", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "ITvStreamSource", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 8, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "IDemoMessageSink", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 16, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448246400, + "offset": 16, + "constructor_displacement": 0, + "class_attributes": 1 + } + } + }, + { + "type_name": "CTvDirectDemoRecorder", + "vtable_address": 6447934440, + "methods": [ + 6443769456, + 6442600400, 6442600384, - 6443769136, - 6443769824, - 6443769872 + 6443769440, + 6443770208 + ], + "bases": [ + { + "type_name": "ITvStreamSink", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "ITvStreamSource", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 8, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + }, + { + "type_name": "IDemoMessageSink", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 16, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], + "model": { + "Msvc": { + "complete_object_locator": 6448246440, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 1 + } + } + }, + { + "type_name": "CTvDirectDemoRecorder", + "vtable_address": 6447934488, + "methods": [ + 6443769520, + 6443769552, + 6442590368, + 6443769424, + 6443769568, + 6443769584, + 6442600400, + 6443769408, + 6443770096, + 6443770144 ], "bases": [ { @@ -68942,140 +69080,18 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448242216, + "complete_object_locator": 6448246480, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 } } }, - { - "type_name": "CTvDirectDemoRecorder", - "vtable_address": 6447930240, - "methods": [ - 6443770832 - ], - "bases": [ - { - "type_name": "ITvStreamSink", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - }, - { - "type_name": "ITvStreamSource", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 8, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - }, - { - "type_name": "IDemoMessageSink", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 16, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448242256, - "offset": 16, - "constructor_displacement": 0, - "class_attributes": 1 - } - } - }, - { - "type_name": "CTvDirectDemoRecorder", - "vtable_address": 6447930256, - "methods": [ - 6443769184, - 6442600384, - 6442600368, - 6443769168, - 6443769936 - ], - "bases": [ - { - "type_name": "ITvStreamSink", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - }, - { - "type_name": "ITvStreamSource", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 8, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - }, - { - "type_name": "IDemoMessageSink", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 16, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6448242176, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 1 - } - } - }, { "type_name": "CUGCAddonPathResolver", - "vtable_address": 6448078400, + "vtable_address": 6448082696, "methods": [ - 6444582960 + 6444583248 ], "bases": [ { @@ -69095,7 +69111,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294632, + "complete_object_locator": 6448298848, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69104,9 +69120,9 @@ }, { "type_name": "CVConActivateMessage", - "vtable_address": 6448033528, + "vtable_address": 6448037872, "methods": [ - 6444230464 + 6444230752 ], "bases": [ { @@ -69126,7 +69142,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448267640, + "complete_object_locator": 6448271768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69135,9 +69151,9 @@ }, { "type_name": "CVConAutoCompleteHelper", - "vtable_address": 6448044376, + "vtable_address": 6448049120, "methods": [ - 6444254960 + 6444255248 ], "bases": [ { @@ -69157,7 +69173,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269640, + "complete_object_locator": 6448273872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69166,9 +69182,9 @@ }, { "type_name": "CVConCommandMessage", - "vtable_address": 6448044896, + "vtable_address": 6448049192, "methods": [ - 6444254128 + 6444254416 ], "bases": [ { @@ -69188,7 +69204,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269680, + "complete_object_locator": 6448273792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69197,15 +69213,15 @@ }, { "type_name": "CVConsole2FlattenedSerializerListener", - "vtable_address": 6448053432, + "vtable_address": 6448057720, "methods": [ - 6444344448, - 6444348240, - 6444348304, - 6444348320, - 6444348464, - 6442600384, - 6444350160 + 6444344736, + 6444348528, + 6444348592, + 6444348608, + 6444348752, + 6442600400, + 6444350448 ], "bases": [ { @@ -69239,7 +69255,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275632, + "complete_object_locator": 6448279784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69248,13 +69264,13 @@ }, { "type_name": "CVProfService", - "vtable_address": 6448075000, + "vtable_address": 6448079288, "methods": [ - 6444525040, - 6442600464, - 6442600464, - 6444525264, - 6444525488 + 6444525328, + 6442600368, + 6442600368, + 6444525552, + 6444525776 ], "bases": [ { @@ -69428,7 +69444,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291776, + "complete_object_locator": 6448295792, "offset": 64, "constructor_displacement": 0, "class_attributes": 1 @@ -69437,9 +69453,9 @@ }, { "type_name": "CVProfService", - "vtable_address": 6448075048, + "vtable_address": 6448079336, "methods": [ - 6444525520 + 6444525808 ], "bases": [ { @@ -69613,7 +69629,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291656, + "complete_object_locator": 6448295832, "offset": 56, "constructor_displacement": 0, "class_attributes": 1 @@ -69622,33 +69638,33 @@ }, { "type_name": "CVProfService", - "vtable_address": 6448075064, + "vtable_address": 6448079352, "methods": [ - 6442793040, - 6442792800, - 6442600368, - 6444523584, - 6442792864, + 6442793488, + 6442793248, 6442600384, - 6442600368, - 6442694208, - 6442792976, - 6442590368, - 6442696624, - 6442600368, - 6443587312, - 6442696624, + 6444523872, + 6442793312, + 6442600400, 6442600384, + 6442694656, + 6442793424, + 6442590368, + 6442697072, 6442600384, - 6444186112, - 6444186048, - 6444186064, - 6444522560, - 6444186096, - 6444186080, - 6444523264, - 6444524688, - 6444524704 + 6443587504, + 6442697072, + 6442600400, + 6442600400, + 6444186400, + 6444186336, + 6444186352, + 6444522848, + 6444186384, + 6444186368, + 6444523552, + 6444524976, + 6444524992 ], "bases": [ { @@ -69822,7 +69838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291696, + "complete_object_locator": 6448295872, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -69831,14 +69847,14 @@ }, { "type_name": "CVariantSaveDataOps", - "vtable_address": 6447145368, + "vtable_address": 6447149464, "methods": [ - 6445655392, - 6445656208, - 6445657040, - 6442600384, - 6442600464, - 6442600384 + 6445655696, + 6445656512, + 6445657344, + 6442600400, + 6442600368, + 6442600400 ], "bases": [ { @@ -69872,7 +69888,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448140280, + "complete_object_locator": 6448144504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69881,14 +69897,14 @@ }, { "type_name": "CVisRender", - "vtable_address": 6448114088, + "vtable_address": 6448118248, "methods": [ - 6444765104, - 6442600384, - 6444767744, - 6442600384, - 6442600384, - 6442600464 + 6444765408, + 6442600400, + 6444768048, + 6442600400, + 6442600400, + 6442600368 ], "bases": [ { @@ -69908,7 +69924,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303040, + "complete_object_locator": 6448307208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69917,14 +69933,14 @@ }, { "type_name": "CWaitForGameServerStartupPrerequisite", - "vtable_address": 6448052664, + "vtable_address": 6448056944, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6444355424, - 6444355408, - 6444355520 + 6442825904, + 6442846288, + 6442846304, + 6444355712, + 6444355696, + 6444355808 ], "bases": [ { @@ -69944,7 +69960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448275032, + "complete_object_locator": 6448278832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69953,14 +69969,14 @@ }, { "type_name": "CWaitForInitialSpawnGroupsPrerequisite", - "vtable_address": 6448056248, + "vtable_address": 6448060504, "methods": [ - 6444410448, - 6442845840, - 6442845856, - 6444409168, - 6444409296, - 6442845888 + 6444410736, + 6442846288, + 6442846304, + 6444409456, + 6444409584, + 6442846336 ], "bases": [ { @@ -69980,7 +69996,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448278864, + "complete_object_locator": 6448283224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -69989,11 +70005,11 @@ }, { "type_name": "Concurrency::details::_CancellationTokenCallback >", - "vtable_address": 6447156112, + "vtable_address": 6447160208, "methods": [ - 6445702912, - 6444845712, - 6445712640 + 6445703216, + 6444846016, + 6445712944 ], "bases": [ { @@ -70027,7 +70043,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448142728, + "complete_object_locator": 6448146952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70036,11 +70052,11 @@ }, { "type_name": "Concurrency::details::_CancellationTokenRegistration", - "vtable_address": 6447155912, + "vtable_address": 6447160008, "methods": [ - 6445704096, - 6444845712, - 6446722668 + 6445704400, + 6444846016, + 6446722972 ], "bases": [ { @@ -70060,7 +70076,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448142320, + "complete_object_locator": 6448146544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70069,9 +70085,9 @@ }, { "type_name": "Concurrency::details::_DefaultPPLTaskScheduler", - "vtable_address": 6447155840, + "vtable_address": 6447159936, "methods": [ - 6445720576 + 6445720880 ], "bases": [ { @@ -70091,7 +70107,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448142072, + "complete_object_locator": 6448146296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70100,10 +70116,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6447157952, + "vtable_address": 6447162048, "methods": [ - 6445703424, - 6445719600 + 6445703728, + 6445719904 ], "bases": [ { @@ -70123,7 +70139,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146064, + "complete_object_locator": 6448150288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70132,10 +70148,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6447158104, + "vtable_address": 6447162200, "methods": [ - 6445703488, - 6445719712 + 6445703792, + 6445720016 ], "bases": [ { @@ -70155,7 +70171,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146720, + "complete_object_locator": 6448150944, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70164,10 +70180,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6447158056, + "vtable_address": 6447162152, "methods": [ - 6445703552, - 6445719824 + 6445703856, + 6445720128 ], "bases": [ { @@ -70187,7 +70203,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146456, + "complete_object_locator": 6448150680, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70196,10 +70212,10 @@ }, { "type_name": "Concurrency::details::_PPLTaskHandle::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>,struct Concurrency::details::_TaskProcHandle>", - "vtable_address": 6447157904, + "vtable_address": 6447162000, "methods": [ - 6445703616, - 6445719936 + 6445703920, + 6445720240 ], "bases": [ { @@ -70219,7 +70235,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448145800, + "complete_object_locator": 6448150024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70228,15 +70244,15 @@ }, { "type_name": "Concurrency::details::_RefCounter", - "vtable_address": 6447155888, + "vtable_address": 6447159984, "methods": [ - 6445704240, - 6444845712 + 6445704544, + 6444846016 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448142200, + "complete_object_locator": 6448146424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70245,15 +70261,15 @@ }, { "type_name": "Concurrency::details::_TaskProcHandle", - "vtable_address": 6447155944, + "vtable_address": 6447160040, "methods": [ - 6445704288, - 6446722668 + 6445704592, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448142448, + "complete_object_locator": 6448146672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70262,10 +70278,10 @@ }, { "type_name": "Concurrency::details::_Task_impl", - "vtable_address": 6447156144, + "vtable_address": 6447160240, "methods": [ - 6445704032, - 6445709456 + 6445704336, + 6445709760 ], "bases": [ { @@ -70285,7 +70301,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448142984, + "complete_object_locator": 6448147208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70294,15 +70310,15 @@ }, { "type_name": "Concurrency::details::_Task_impl_base", - "vtable_address": 6447156032, + "vtable_address": 6447160128, "methods": [ - 6445704336, - 6446722668 + 6445704640, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448142608, + "complete_object_locator": 6448146832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70311,10 +70327,10 @@ }, { "type_name": "Concurrency::invalid_operation", - "vtable_address": 6447155816, + "vtable_address": 6447159912, "methods": [ - 6445704400, - 6442743280 + 6445704704, + 6442743728 ], "bases": [ { @@ -70334,7 +70350,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448141944, + "complete_object_locator": 6448146168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70343,10 +70359,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6447157976, + "vtable_address": 6447162072, "methods": [ - 6445703168, - 6445719600 + 6445703472, + 6445719904 ], "bases": [ { @@ -70380,7 +70396,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448145840, + "complete_object_locator": 6448150064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70389,10 +70405,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6447158128, + "vtable_address": 6447162224, "methods": [ - 6445703232, - 6445719712 + 6445703536, + 6445720016 ], "bases": [ { @@ -70426,7 +70442,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146496, + "complete_object_locator": 6448150720, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70435,10 +70451,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6447158080, + "vtable_address": 6447162176, "methods": [ - 6445703296, - 6445719824 + 6445703600, + 6445720128 ], "bases": [ { @@ -70472,7 +70488,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146232, + "complete_object_locator": 6448150456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70481,10 +70497,10 @@ }, { "type_name": "Concurrency::task::_InitialTaskHandle,struct Concurrency::details::_TypeSelectorNoAsync>", - "vtable_address": 6447157928, + "vtable_address": 6447162024, "methods": [ - 6445703360, - 6445719936 + 6445703664, + 6445720240 ], "bases": [ { @@ -70518,7 +70534,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448145576, + "complete_object_locator": 6448149800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70527,21 +70543,21 @@ }, { "type_name": "Etc::Block4x4Encoding", - "vtable_address": 6447159800, + "vtable_address": 6447163896, "methods": [ - 6445724704, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6445725008, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448148352, + "complete_object_locator": 6448152576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70550,16 +70566,16 @@ }, { "type_name": "Etc::Block4x4Encoding_ETC1", - "vtable_address": 6447159872, + "vtable_address": 6447163968, "methods": [ - 6445724752, - 6445729888, - 6445729008, - 6445730320, - 6445730896, - 6445721104, - 6445722096, - 6445721120 + 6445725056, + 6445730192, + 6445729312, + 6445730624, + 6445731200, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -70579,7 +70595,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148392, + "complete_object_locator": 6448152616, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70588,16 +70604,16 @@ }, { "type_name": "Etc::Block4x4Encoding_R11", - "vtable_address": 6447163696, + "vtable_address": 6447167792, "methods": [ - 6445781680, - 6445783968, - 6445783264, - 6445784016, - 6445784560, - 6445721104, - 6445722096, - 6445721120 + 6445781984, + 6445784272, + 6445783568, + 6445784320, + 6445784864, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -70645,7 +70661,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148552, + "complete_object_locator": 6448152776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70654,16 +70670,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RG11", - "vtable_address": 6447164032, + "vtable_address": 6447168128, "methods": [ - 6445784992, - 6445787600, - 6445786528, - 6445787648, - 6445788384, - 6445721104, - 6445722096, - 6445721120 + 6445785296, + 6445787904, + 6445786832, + 6445787952, + 6445788688, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -70725,7 +70741,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148696, + "complete_object_locator": 6448152920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70734,16 +70750,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8", - "vtable_address": 6447161968, + "vtable_address": 6447166064, "methods": [ - 6445739472, - 6445729888, - 6445744192, - 6445745840, - 6445747280, - 6445721104, - 6445722096, - 6445721120 + 6445739776, + 6445730192, + 6445744496, + 6445746144, + 6445747584, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -70777,7 +70793,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148432, + "complete_object_locator": 6448152656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70786,16 +70802,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1", - "vtable_address": 6447163248, + "vtable_address": 6447167344, "methods": [ - 6445762832, - 6445766208, - 6445764640, - 6445767120, - 6445768480, - 6445721104, - 6445722096, - 6445721120 + 6445763136, + 6445766512, + 6445764944, + 6445767424, + 6445768784, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -70843,7 +70859,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148512, + "complete_object_locator": 6448152736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70852,16 +70868,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Opaque", - "vtable_address": 6447158640, + "vtable_address": 6447162736, "methods": [ - 6445720976, - 6445766208, - 6445764640, - 6445767648, - 6445768480, - 6445721104, - 6445722096, - 6445721120 + 6445721280, + 6445766512, + 6445764944, + 6445767952, + 6445768784, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -70923,7 +70939,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448147944, + "complete_object_locator": 6448152168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -70932,16 +70948,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGB8A1_Transparent", - "vtable_address": 6447158712, + "vtable_address": 6447162808, "methods": [ - 6445720976, - 6445766208, - 6445764640, - 6445768160, - 6445768480, - 6445721104, - 6445722096, - 6445721120 + 6445721280, + 6445766512, + 6445764944, + 6445768464, + 6445768784, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -71003,7 +71019,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148200, + "complete_object_locator": 6448152424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71012,16 +71028,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8", - "vtable_address": 6447162752, + "vtable_address": 6447166848, "methods": [ - 6445759376, - 6445761584, - 6445760912, - 6445761648, - 6445762144, - 6445721104, - 6445722096, - 6445721120 + 6445759680, + 6445761888, + 6445761216, + 6445761952, + 6445762448, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -71069,7 +71085,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148472, + "complete_object_locator": 6448152696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71078,16 +71094,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Opaque", - "vtable_address": 6447158496, + "vtable_address": 6447162592, "methods": [ - 6445721040, - 6445761584, - 6445760912, - 6445761792, - 6445762464, - 6445721104, - 6445722096, - 6445721120 + 6445721344, + 6445761888, + 6445761216, + 6445762096, + 6445762768, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -71149,7 +71165,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448147352, + "complete_object_locator": 6448151576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71158,16 +71174,16 @@ }, { "type_name": "Etc::Block4x4Encoding_RGBA8_Transparent", - "vtable_address": 6447158568, + "vtable_address": 6447162664, "methods": [ - 6445721040, - 6445761584, - 6445760912, - 6445761952, - 6445762608, - 6445721104, - 6445722096, - 6445721120 + 6445721344, + 6445761888, + 6445761216, + 6445762256, + 6445762912, + 6445721408, + 6445722400, + 6445721424 ], "bases": [ { @@ -71229,7 +71245,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448147792, + "complete_object_locator": 6448152016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71238,25 +71254,25 @@ }, { "type_name": "GameSessionConfiguration_t", - "vtable_address": 6447827936, + "vtable_address": 6447832048, "methods": [ - 6442969312, - 6444851872, - 6442954720, - 6444064704, + 6442969392, + 6444852176, + 6442954800, + 6444064992, 6442590368, - 6444851920, - 6444849504, - 6444067632, + 6444852224, + 6444849808, + 6444067920, 6442600000, - 6444065008, - 6442600384, - 6444066672, - 6444853136, - 6444854608, - 6443805552, - 6444068928, - 6444068256 + 6444065296, + 6442600400, + 6444066960, + 6444853440, + 6444854912, + 6443805840, + 6444069216, + 6444068544 ], "bases": [ { @@ -71318,7 +71334,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448208688, + "complete_object_locator": 6448212992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71327,16 +71343,16 @@ }, { "type_name": "IAssertionFailureListener", - "vtable_address": 6448078280, + "vtable_address": 6448082616, "methods": [ - 6444602864, - 6446722668, - 6442600384 + 6444603168, + 6446722972, + 6442600400 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448295072, + "complete_object_locator": 6448299304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71345,16 +71361,16 @@ }, { "type_name": "IAudioStreamRecorder", - "vtable_address": 6447889336, + "vtable_address": 6447893368, "methods": [ - 6443532208, - 6446722668, - 6446722668 + 6443532400, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448230624, + "complete_object_locator": 6448234840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71363,14 +71379,14 @@ }, { "type_name": "IBaseInterface", - "vtable_address": 6447881472, + "vtable_address": 6447885496, "methods": [ - 6443488480 + 6443488672 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448227544, + "complete_object_locator": 6448231760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71379,15 +71395,15 @@ }, { "type_name": "IConnectionlessPacketHandler", - "vtable_address": 6447830760, + "vtable_address": 6447834888, "methods": [ - 6442953984, - 6446722668 + 6442954064, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448208648, + "complete_object_locator": 6448212872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71396,19 +71412,19 @@ }, { "type_name": "IDebugVisualizer", - "vtable_address": 6447889224, + "vtable_address": 6447893256, "methods": [ - 6443532272, - 6446722668, - 6446722668, - 6446722668, - 6442600384, - 6442600464 + 6443532464, + 6446722972, + 6446722972, + 6446722972, + 6442600400, + 6442600368 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448230544, + "complete_object_locator": 6448234760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71417,19 +71433,19 @@ }, { "type_name": "IDemoMessage", - "vtable_address": 6447742464, + "vtable_address": 6447746568, "methods": [ 6442600304, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448172792, + "complete_object_locator": 6448177016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71438,55 +71454,57 @@ }, { "type_name": "IDemoPlayer", - "vtable_address": 6447741944, - "methods": [ - 6442600400, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, + "vtable_address": 6447746032, + "methods": [ + 6442600416, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, 6442600368, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, 6442600384, - 6446722668 + 6446722972, + 6446722972, + 6442600384, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6442600400, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448171272, + "complete_object_locator": 6448175496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71495,29 +71513,29 @@ }, { "type_name": "IDemoRecorder", - "vtable_address": 6447742288, - "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + "vtable_address": 6447746392, + "methods": [ + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -71537,7 +71555,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448171312, + "complete_object_locator": 6448175536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71546,22 +71564,21 @@ }, { "type_name": "IDemoStream", - "vtable_address": 6447741864, + "vtable_address": 6447745960, "methods": [ 6442600528, - 6442600464, 6442600368, - 6442600384, + 6442600400, 6442600480, 6442600496, 6442600512, - 6442600368, - 6442600368 + 6442600384, + 6442600384 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448171352, + "complete_object_locator": 6448175576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71570,23 +71587,23 @@ }, { "type_name": "IEngineGameUI", - "vtable_address": 6447932000, - "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6443770912, - 6446722668, - 6446722668, - 6446722668 + "vtable_address": 6447936272, + "methods": [ + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6443771184, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -71606,7 +71623,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448243120, + "complete_object_locator": 6448247312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71615,31 +71632,31 @@ }, { "type_name": "IEngineService", - "vtable_address": 6448024952, - "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6444186304 + "vtable_address": 6448029480, + "methods": [ + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6444186592 ], "bases": [ { @@ -71659,7 +71676,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448261800, + "complete_object_locator": 6448265992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71668,19 +71685,19 @@ }, { "type_name": "IEntityReport", - "vtable_address": 6447893280, + "vtable_address": 6447897280, "methods": [ - 6443550480, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443550672, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448231800, + "complete_object_locator": 6448236016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71689,16 +71706,16 @@ }, { "type_name": "IFlattenedSerializerSpewFunc", - "vtable_address": 6447830816, + "vtable_address": 6447834944, "methods": [ - 6442953792, - 6446722668, - 6442600464 + 6442953872, + 6446722972, + 6442600368 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448208768, + "complete_object_locator": 6448212952, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71707,19 +71724,19 @@ }, { "type_name": "IFlattenedSerializerSpewListener", - "vtable_address": 6447880192, + "vtable_address": 6447884232, "methods": [ - 6443425104, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443425296, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448226696, + "complete_object_locator": 6448230912, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71728,17 +71745,17 @@ }, { "type_name": "IMobileEventListener", - "vtable_address": 6448070016, + "vtable_address": 6448073912, "methods": [ - 6444487536, - 6442600384, - 6442600384, - 6442600384 + 6444487824, + 6442600400, + 6442600400, + 6442600400 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448286960, + "complete_object_locator": 6448291344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71747,15 +71764,15 @@ }, { "type_name": "IMultipleWorkerJob", - "vtable_address": 6447135664, + "vtable_address": 6447139760, "methods": [ - 6442761680, - 6446722668 + 6442762128, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448174424, + "complete_object_locator": 6448178648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71764,7 +71781,7 @@ }, { "type_name": "INetPacketMemoryCustomAlloc", - "vtable_address": 6447742584, + "vtable_address": 6447746688, "methods": [ 6442599424, 6442599920 @@ -71772,7 +71789,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448172832, + "complete_object_locator": 6448177056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71781,22 +71798,22 @@ }, { "type_name": "INetworkStringDict", - "vtable_address": 6447894640, - "methods": [ - 6443567952, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + "vtable_address": 6447898640, + "methods": [ + 6443568144, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448233832, + "complete_object_locator": 6448238056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71805,30 +71822,30 @@ }, { "type_name": "INetworkStringTable", - "vtable_address": 6447894720, + "vtable_address": 6447898720, "methods": [ - 6443567824, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6443568016, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448233912, + "complete_object_locator": 6448238136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71837,26 +71854,26 @@ }, { "type_name": "INetworkStringTableContainer", - "vtable_address": 6447894488, - "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6443567888, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + "vtable_address": 6447898488, + "methods": [ + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6443568080, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [ { @@ -71876,7 +71893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448233952, + "complete_object_locator": 6448238176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71885,19 +71902,19 @@ }, { "type_name": "IPrerequisite", - "vtable_address": 6447780256, + "vtable_address": 6447784368, "methods": [ - 6442825456, - 6442845840, - 6442845856, - 6446722668, - 6446722668, - 6442845888 + 6442825904, + 6442846288, + 6442846304, + 6446722972, + 6446722972, + 6442846336 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448180200, + "complete_object_locator": 6448184424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71906,16 +71923,16 @@ }, { "type_name": "IProceduralLayerRenderer", - "vtable_address": 6447937664, + "vtable_address": 6447941944, "methods": [ - 6446722668, - 6443798032, - 6442600464 + 6446722972, + 6443798320, + 6442600368 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448246808, + "complete_object_locator": 6448251032, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71924,15 +71941,15 @@ }, { "type_name": "IRenderReadCallback", - "vtable_address": 6448062760, + "vtable_address": 6448067064, "methods": [ - 6444442960, + 6444443248, 6442590368 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448283488, + "complete_object_locator": 6448287624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -71941,25 +71958,25 @@ }, { "type_name": "NetMessageConnectionClosed", - "vtable_address": 6448006752, + "vtable_address": 6448010736, "methods": [ - 6444078512, - 6444851872, - 6442960128, - 6443841344, + 6444078800, + 6444852176, + 6442960208, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443841408, - 6442600384, - 6444008368, - 6444853136, - 6444854608, - 6443805552, - 6444078944, - 6444078928 + 6443841696, + 6442600400, + 6444008656, + 6444853440, + 6444854912, + 6443805840, + 6444079232, + 6444079216 ], "bases": [ { @@ -71993,7 +72010,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258912, + "complete_object_locator": 6448263136, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72002,25 +72019,25 @@ }, { "type_name": "NetMessageConnectionCrashed", - "vtable_address": 6448006176, + "vtable_address": 6448010880, "methods": [ - 6444078672, - 6444851872, - 6442960144, - 6443841344, + 6444078960, + 6444852176, + 6442960224, + 6443841632, 6442590368, - 6444851920, - 6444849504, - 6443878944, + 6444852224, + 6444849808, + 6443879232, 6442600000, - 6443841408, - 6442600384, - 6444008368, - 6444853136, - 6444854608, - 6443805552, - 6444079024, - 6444079008 + 6443841696, + 6442600400, + 6444008656, + 6444853440, + 6444854912, + 6443805840, + 6444079312, + 6444079296 ], "bases": [ { @@ -72054,7 +72071,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258792, + "complete_object_locator": 6448263016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72063,25 +72080,25 @@ }, { "type_name": "NetMessagePacketEnd", - "vtable_address": 6448006320, + "vtable_address": 6448010448, "methods": [ - 6443813616, - 6444851872, - 6442960176, - 6444866016, + 6443813904, + 6444852176, + 6442960256, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6444079184, - 6444079168 + 6444079472, + 6444079456 ], "bases": [ { @@ -72129,7 +72146,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258832, + "complete_object_locator": 6448263056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72138,25 +72155,25 @@ }, { "type_name": "NetMessagePacketStart", - "vtable_address": 6448006464, + "vtable_address": 6448010592, "methods": [ - 6443813616, - 6444851872, - 6442960160, - 6444866016, + 6443813904, + 6444852176, + 6442960240, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6444079104, - 6444079088 + 6444079392, + 6444079376 ], "bases": [ { @@ -72204,7 +72221,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258872, + "complete_object_locator": 6448263096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72213,25 +72230,25 @@ }, { "type_name": "NetMessageSplitscreenUserChanged", - "vtable_address": 6448006608, + "vtable_address": 6448011024, "methods": [ - 6444078368, - 6444851872, - 6442960112, - 6443886880, + 6444078656, + 6444852176, + 6442960192, + 6443887168, 6442590368, - 6444851920, - 6444849504, - 6444040208, + 6444852224, + 6444849808, + 6444040496, 6442600000, - 6443886912, - 6442600384, - 6444040032, - 6444853136, - 6444854608, - 6443805552, - 6444078864, - 6444078848 + 6443887200, + 6442600400, + 6444040320, + 6444853440, + 6444854912, + 6443805840, + 6444079152, + 6444079136 ], "bases": [ { @@ -72265,7 +72282,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448258952, + "complete_object_locator": 6448263176, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72274,7 +72291,7 @@ }, { "type_name": "NetPacketCustomAlloc_std_string", - "vtable_address": 6447763240, + "vtable_address": 6447767344, "methods": [ 6442602112, 6442599920 @@ -72297,7 +72314,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448169432, + "complete_object_locator": 6448173656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72306,9 +72323,9 @@ }, { "type_name": "PacketEntitiesFilter", - "vtable_address": 6447827920, + "vtable_address": 6447832192, "methods": [ - 6442972144 + 6442972224 ], "bases": [ { @@ -72328,7 +72345,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448204288, + "complete_object_locator": 6448208552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72337,41 +72354,31 @@ }, { "type_name": "ProtoFlattenedSerializerField_t", - "vtable_address": 6447969640, + "vtable_address": 6447973768, "methods": [ - 6443873648, - 6444851872, - 6443862928, - 6443980272, + 6443873936, + 6444852176, + 6443863216, + 6443980560, 6442590368, - 6444851920, - 6444849504, - 6443983056, + 6444852224, + 6444849808, + 6443983344, 6442600000, - 6443980464, - 6442600384, - 6443981840, - 6444853136, - 6444854608, - 6443805552, - 6443983984, - 6443983648, - 6444850176, - 6443972784, - 6444850176, - 6443983664, - 6444850176, - 6443886608, - 6444850176, - 6443842240, - 6444850176, - 6443842240, - 6444850176, - 6443989952, - 6444850176, - 6443834688, - 6444850176, - 6443842240 + 6443980752, + 6442600400, + 6443982128, + 6444853440, + 6444854912, + 6443805840, + 6443984272, + 6443983936, + 6444850480, + 6443847856, + 6444850480, + 6443973072, + 6444850480, + 6443983952 ], "bases": [ { @@ -72405,7 +72412,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255984, + "complete_object_locator": 6448260280, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72414,27 +72421,33 @@ }, { "type_name": "ProtoFlattenedSerializerField_t_polymorphic_field_t", - "vtable_address": 6447953416, + "vtable_address": 6447957032, "methods": [ - 6443873504, - 6444851872, - 6443862912, - 6443883488, + 6443873792, + 6444852176, + 6443863200, + 6443883776, 6442590368, - 6444851920, - 6444849504, - 6443884320, + 6444852224, + 6444849808, + 6443884608, 6442600000, - 6443883520, - 6442600384, - 6443884016, - 6444853136, - 6444854608, - 6443805552, - 6443980208, - 6443980192, - 6444850176, - 6443842240 + 6443883808, + 6442600400, + 6443884304, + 6444853440, + 6444854912, + 6443805840, + 6443980496, + 6443980480, + 6444850480, + 6443969728, + 6444850480, + 6443946560, + 6444850480, + 6443939904, + 6444850480, + 6443842528 ], "bases": [ { @@ -72468,7 +72481,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448255088, + "complete_object_locator": 6448259344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72477,45 +72490,41 @@ }, { "type_name": "ProtoFlattenedSerializer_t", - "vtable_address": 6447977224, + "vtable_address": 6447981512, "methods": [ - 6443873824, - 6444851872, - 6443862944, - 6443984048, + 6443874112, + 6444852176, + 6443863232, + 6443984336, 6442590368, - 6444851920, - 6444849504, - 6443985232, - 6442600000, - 6443984112, - 6442600384, - 6443984784, - 6444853136, - 6444854608, - 6443805552, + 6444852224, + 6444849808, 6443985520, - 6443985392, - 6444850176, - 6443884432, - 6444850176, - 6443929648, - 6444850176, - 6443922560, - 6444850176, - 6443842240, - 6444850176, - 6443985408, - 6444850176, - 6444010304, - 6444850176, - 6443834688, - 6444850176, - 6443913072, - 6444850176, - 6443948848, - 6444850176, - 6444007600 + 6442600000, + 6443984400, + 6442600400, + 6443985072, + 6444853440, + 6444854912, + 6443805840, + 6443985808, + 6443985680, + 6444850480, + 6443884720, + 6444850480, + 6443842528, + 6444850480, + 6443985696, + 6444850480, + 6443834976, + 6444850480, + 6443834976, + 6444850480, + 6443913360, + 6444850480, + 6443922848, + 6444850480, + 6444010592 ], "bases": [ { @@ -72549,7 +72558,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448254648, + "complete_object_locator": 6448258984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72558,12 +72567,12 @@ }, { "type_name": "`anonymous namespace'::_ExceptionPtr_normal", - "vtable_address": 6447412888, + "vtable_address": 6447416984, "methods": [ - 6446713892, - 6446713876, - 6446712760, - 6444849440 + 6446714196, + 6446714180, + 6446713064, + 6444849744 ], "bases": [ { @@ -72583,7 +72592,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448156448, + "complete_object_locator": 6448160672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72592,12 +72601,12 @@ }, { "type_name": "`anonymous namespace'::_ExceptionPtr_static", - "vtable_address": 6447412928, + "vtable_address": 6447417024, "methods": [ - 6442600384, - 6442600384, - 6446712468, - 6444849440 + 6442600400, + 6442600400, + 6446712772, + 6444849744 ], "bases": [ { @@ -72617,7 +72626,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448156576, + "complete_object_locator": 6448160800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72626,12 +72635,12 @@ }, { "type_name": "`anonymous namespace'::_ExceptionPtr_static", - "vtable_address": 6447412968, + "vtable_address": 6447417064, "methods": [ - 6442600384, - 6442600384, - 6446712552, - 6444849440 + 6442600400, + 6442600400, + 6446712856, + 6444849744 ], "bases": [ { @@ -72651,7 +72660,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448156704, + "complete_object_locator": 6448160928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72660,13 +72669,13 @@ }, { "type_name": "google::protobuf::DescriptorBuilder::OptionInterpreter::AggregateOptionFinder", - "vtable_address": 6447105664, + "vtable_address": 6447109760, "methods": [ - 6445036160, - 6445133776, - 6444914608, - 6445131184, - 6444849440 + 6445036464, + 6445134080, + 6444914912, + 6445131488, + 6444849744 ], "bases": [ { @@ -72686,7 +72695,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448133072, + "complete_object_locator": 6448137296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72695,19 +72704,19 @@ }, { "type_name": "google::protobuf::DescriptorDatabase", - "vtable_address": 6447128208, + "vtable_address": 6447132304, "methods": [ - 6445496016, - 6446722668, - 6446722668, - 6446722668, - 6444890016, - 6444890016 + 6445496320, + 6446722972, + 6446722972, + 6446722972, + 6444890320, + 6444890320 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448138152, + "complete_object_locator": 6448142376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72716,25 +72725,25 @@ }, { "type_name": "google::protobuf::DescriptorProto", - "vtable_address": 6447118784, - "methods": [ - 6445350272, - 6444851872, - 6445370640, - 6445360976, - 6445368704, - 6444851920, - 6444849504, - 6445351424, - 6445366480, + "vtable_address": 6447122880, + "methods": [ + 6445350576, + 6444852176, + 6445370944, + 6445361280, + 6445369008, + 6444852224, + 6444849808, + 6445351728, + 6445366784, + 6445371680, + 6442600400, + 6445393472, + 6444853440, + 6444854912, 6445371376, - 6442600384, - 6445393168, - 6444853136, - 6444854608, - 6445371072, - 6445366976, - 6445366544 + 6445367280, + 6445366848 ], "bases": [ { @@ -72768,7 +72777,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448133616, + "complete_object_locator": 6448137840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72777,25 +72786,25 @@ }, { "type_name": "google::protobuf::DescriptorProto_ExtensionRange", - "vtable_address": 6447118496, + "vtable_address": 6447122592, "methods": [ - 6445350336, - 6444851872, - 6445370656, - 6445361616, - 6445369024, - 6444851920, - 6444849504, - 6445352608, - 6445366480, - 6445372816, - 6442600384, - 6445393936, - 6444853136, - 6444854608, - 6445371072, - 6445367040, - 6445366560 + 6445350640, + 6444852176, + 6445370960, + 6445361920, + 6445369328, + 6444852224, + 6444849808, + 6445352912, + 6445366784, + 6445373120, + 6442600400, + 6445394240, + 6444853440, + 6444854912, + 6445371376, + 6445367344, + 6445366864 ], "bases": [ { @@ -72829,7 +72838,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448133752, + "complete_object_locator": 6448137976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72838,25 +72847,25 @@ }, { "type_name": "google::protobuf::DescriptorProto_ReservedRange", - "vtable_address": 6447118640, + "vtable_address": 6447122736, "methods": [ - 6445350400, - 6444851872, - 6445370672, - 6445361696, - 6444974384, - 6444851920, - 6444849504, - 6445352928, - 6445366480, - 6445373408, - 6442600384, - 6445394272, - 6444853136, - 6444854608, - 6445371072, - 6445367104, - 6445366576 + 6445350704, + 6444852176, + 6445370976, + 6445362000, + 6444974688, + 6444852224, + 6444849808, + 6445353232, + 6445366784, + 6445373712, + 6442600400, + 6445394576, + 6444853440, + 6444854912, + 6445371376, + 6445367408, + 6445366880 ], "bases": [ { @@ -72890,7 +72899,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448136336, + "complete_object_locator": 6448140560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72899,25 +72908,25 @@ }, { "type_name": "google::protobuf::DynamicMessage", - "vtable_address": 6447127144, - "methods": [ - 6445465152, - 6444851872, - 6445467856, - 6444849600, - 6444853024, - 6444851920, - 6444849504, - 6444849456, - 6445465440, - 6444857984, - 6442600384, - 6444858000, - 6444853136, - 6444854608, - 6445468096, + "vtable_address": 6447131240, + "methods": [ 6445465456, - 6442600368 + 6444852176, + 6445468160, + 6444849904, + 6444853328, + 6444852224, + 6444849808, + 6444849760, + 6445465744, + 6444858288, + 6442600400, + 6444858304, + 6444853440, + 6444854912, + 6445468400, + 6445465760, + 6442600384 ], "bases": [ { @@ -72951,7 +72960,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448138016, + "complete_object_locator": 6448142240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72960,10 +72969,10 @@ }, { "type_name": "google::protobuf::DynamicMessageFactory", - "vtable_address": 6447127024, + "vtable_address": 6447131120, "methods": [ - 6445465216, - 6445465488 + 6445465520, + 6445465792 ], "bases": [ { @@ -72983,7 +72992,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448137888, + "complete_object_locator": 6448142112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -72992,14 +73001,14 @@ }, { "type_name": "google::protobuf::EncodedDescriptorDatabase", - "vtable_address": 6447128264, + "vtable_address": 6447132360, "methods": [ - 6445496064, - 6445499296, - 6445500064, - 6445499712, - 6445498192, - 6445499264 + 6445496368, + 6445499600, + 6445500368, + 6445500016, + 6445498496, + 6445499568 ], "bases": [ { @@ -73019,7 +73028,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448138272, + "complete_object_locator": 6448142496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73028,25 +73037,25 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto", - "vtable_address": 6447119504, - "methods": [ - 6445350528, - 6444851872, - 6445370688, - 6445361728, - 6445369088, - 6444851920, - 6444849504, - 6445353024, - 6445366480, - 6445373904, - 6442600384, - 6445394576, - 6444853136, - 6444854608, - 6445371072, - 6445367168, - 6445366592 + "vtable_address": 6447123600, + "methods": [ + 6445350832, + 6444852176, + 6445370992, + 6445362032, + 6445369392, + 6444852224, + 6444849808, + 6445353328, + 6445366784, + 6445374208, + 6442600400, + 6445394880, + 6444853440, + 6444854912, + 6445371376, + 6445367472, + 6445366896 ], "bases": [ { @@ -73080,7 +73089,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134160, + "complete_object_locator": 6448138384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73089,25 +73098,25 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto_EnumReservedRange", - "vtable_address": 6447119360, + "vtable_address": 6447123456, "methods": [ - 6445350592, - 6444851872, - 6445370704, - 6445361696, - 6444974384, - 6444851920, - 6444849504, - 6445352928, - 6445366480, - 6445373408, - 6442600384, - 6445394272, - 6444853136, - 6444854608, - 6445371072, - 6445367232, - 6445366608 + 6445350896, + 6444852176, + 6445371008, + 6445362000, + 6444974688, + 6444852224, + 6444849808, + 6445353232, + 6445366784, + 6445373712, + 6442600400, + 6445394576, + 6444853440, + 6444854912, + 6445371376, + 6445367536, + 6445366912 ], "bases": [ { @@ -73141,7 +73150,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448136472, + "complete_object_locator": 6448140696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73150,25 +73159,25 @@ }, { "type_name": "google::protobuf::EnumOptions", - "vtable_address": 6447120656, - "methods": [ - 6445036224, - 6444851872, - 6445370720, - 6445362080, - 6445369264, - 6444851920, - 6444849504, - 6445353712, - 6445366496, - 6445374688, - 6442600384, - 6445394992, - 6444853136, - 6444854608, - 6445371088, - 6445367296, - 6445366624 + "vtable_address": 6447124752, + "methods": [ + 6445036528, + 6444852176, + 6445371024, + 6445362384, + 6445369568, + 6444852224, + 6444849808, + 6445354016, + 6445366800, + 6445374992, + 6442600400, + 6445395296, + 6444853440, + 6444854912, + 6445371392, + 6445367600, + 6445366928 ], "bases": [ { @@ -73202,7 +73211,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448135248, + "complete_object_locator": 6448139472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73211,25 +73220,25 @@ }, { "type_name": "google::protobuf::EnumValueDescriptorProto", - "vtable_address": 6447119648, + "vtable_address": 6447123744, "methods": [ - 6445350720, - 6444851872, - 6445370736, - 6445362224, - 6445369328, - 6444851920, - 6444849504, - 6445353904, - 6445366480, - 6445375408, - 6442600384, - 6445395280, - 6444853136, - 6444854608, - 6445371072, - 6445367360, - 6445366640 + 6445351024, + 6444852176, + 6445371040, + 6445362528, + 6445369632, + 6444852224, + 6444849808, + 6445354208, + 6445366784, + 6445375712, + 6442600400, + 6445395584, + 6444853440, + 6444854912, + 6445371376, + 6445367664, + 6445366944 ], "bases": [ { @@ -73263,7 +73272,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134296, + "complete_object_locator": 6448138520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73272,25 +73281,25 @@ }, { "type_name": "google::protobuf::EnumValueOptions", - "vtable_address": 6447120800, - "methods": [ - 6445036288, - 6444851872, - 6445370752, - 6445362336, - 6445369264, - 6444851920, - 6444849504, - 6445354240, - 6445366496, - 6445375984, - 6442600384, - 6445395552, - 6444853136, - 6444854608, - 6445371088, - 6445367424, - 6445366656 + "vtable_address": 6447124896, + "methods": [ + 6445036592, + 6444852176, + 6445371056, + 6445362640, + 6445369568, + 6444852224, + 6444849808, + 6445354544, + 6445366800, + 6445376288, + 6442600400, + 6445395856, + 6444853440, + 6444854912, + 6445371392, + 6445367728, + 6445366960 ], "bases": [ { @@ -73324,7 +73333,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448135384, + "complete_object_locator": 6448139608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73333,25 +73342,25 @@ }, { "type_name": "google::protobuf::ExtensionRangeOptions", - "vtable_address": 6447118928, + "vtable_address": 6447123024, "methods": [ - 6445036352, - 6444851872, - 6445370768, - 6445362480, - 6445369392, - 6444851920, - 6444849504, - 6445354416, - 6445366512, - 6445376576, - 6442600384, - 6445395792, - 6444853136, - 6444854608, - 6445371104, - 6445367488, - 6445366672 + 6445036656, + 6444852176, + 6445371072, + 6445362784, + 6445369696, + 6444852224, + 6444849808, + 6445354720, + 6445366816, + 6445376880, + 6442600400, + 6445396096, + 6444853440, + 6444854912, + 6445371408, + 6445367792, + 6445366976 ], "bases": [ { @@ -73385,7 +73394,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448135520, + "complete_object_locator": 6448139744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73394,10 +73403,10 @@ }, { "type_name": "google::protobuf::FatalException", - "vtable_address": 6447087144, + "vtable_address": 6447091240, "methods": [ - 6444862112, - 6444865328 + 6444862416, + 6444865632 ], "bases": [ { @@ -73417,7 +73426,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448131224, + "complete_object_locator": 6448135448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73426,25 +73435,25 @@ }, { "type_name": "google::protobuf::FieldDescriptorProto", - "vtable_address": 6447119072, - "methods": [ - 6445350784, - 6444851872, - 6445370784, - 6445362608, - 6445369456, - 6444851920, - 6444849504, - 6445354576, - 6445366480, - 6445377104, - 6442600384, - 6445395984, - 6444853136, - 6444854608, - 6445371072, - 6445367552, - 6445366688 + "vtable_address": 6447123168, + "methods": [ + 6445351088, + 6444852176, + 6445371088, + 6445362912, + 6445369760, + 6444852224, + 6444849808, + 6445354880, + 6445366784, + 6445377408, + 6442600400, + 6445396288, + 6444853440, + 6444854912, + 6445371376, + 6445367856, + 6445366992 ], "bases": [ { @@ -73478,7 +73487,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448133888, + "complete_object_locator": 6448138112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73487,25 +73496,25 @@ }, { "type_name": "google::protobuf::FieldOptions", - "vtable_address": 6447120368, - "methods": [ - 6445036416, - 6444851872, - 6445370800, - 6445362880, - 6445369264, - 6444851920, - 6444849504, - 6445355072, - 6445366496, - 6445378560, - 6442600384, - 6445396720, - 6444853136, - 6444854608, - 6445371088, - 6445367616, - 6445366704 + "vtable_address": 6447124464, + "methods": [ + 6445036720, + 6444852176, + 6445371104, + 6445363184, + 6445369568, + 6444852224, + 6444849808, + 6445355376, + 6445366800, + 6445378864, + 6442600400, + 6445397024, + 6444853440, + 6444854912, + 6445371392, + 6445367920, + 6445367008 ], "bases": [ { @@ -73539,7 +73548,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134976, + "complete_object_locator": 6448139200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73548,25 +73557,25 @@ }, { "type_name": "google::protobuf::FileDescriptorProto", - "vtable_address": 6447118352, - "methods": [ - 6445350848, - 6444851872, - 6445370816, - 6445363104, - 6445369520, - 6444851920, - 6444849504, - 6445355456, - 6445366480, - 6445380096, - 6442600384, - 6445397392, - 6444853136, - 6444854608, - 6445371072, - 6445367680, - 6445366720 + "vtable_address": 6447122448, + "methods": [ + 6445351152, + 6444852176, + 6445371120, + 6445363408, + 6445369824, + 6444852224, + 6444849808, + 6445355760, + 6445366784, + 6445380400, + 6442600400, + 6445397696, + 6444853440, + 6444854912, + 6445371376, + 6445367984, + 6445367024 ], "bases": [ { @@ -73600,7 +73609,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134704, + "complete_object_locator": 6448138928, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73609,25 +73618,25 @@ }, { "type_name": "google::protobuf::FileDescriptorSet", - "vtable_address": 6447118208, - "methods": [ - 6445350912, - 6444851872, - 6445370832, - 6445363568, - 6445369696, - 6444851920, - 6444849504, - 6445356400, - 6445366528, - 6445381696, - 6442600384, - 6445398368, - 6444853136, - 6444854608, - 6445371120, - 6445367744, - 6445366736 + "vtable_address": 6447122304, + "methods": [ + 6445351216, + 6444852176, + 6445371136, + 6445363872, + 6445370000, + 6444852224, + 6444849808, + 6445356704, + 6445366832, + 6445382000, + 6442600400, + 6445398672, + 6444853440, + 6444854912, + 6445371424, + 6445368048, + 6445367040 ], "bases": [ { @@ -73661,7 +73670,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448136608, + "complete_object_locator": 6448140832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73670,25 +73679,25 @@ }, { "type_name": "google::protobuf::FileOptions", - "vtable_address": 6447120080, - "methods": [ - 6445036672, - 6444851872, - 6445370848, - 6445363696, - 6445369920, - 6444851920, - 6444849504, - 6445356544, - 6445366496, - 6445382128, - 6442600384, - 6445398512, - 6444853136, - 6444854608, - 6445371088, - 6445367808, - 6445366752 + "vtable_address": 6447124176, + "methods": [ + 6445036976, + 6444852176, + 6445371152, + 6445364000, + 6445370224, + 6444852224, + 6444849808, + 6445356848, + 6445366800, + 6445382432, + 6442600400, + 6445398816, + 6444853440, + 6444854912, + 6445371392, + 6445368112, + 6445367056 ], "bases": [ { @@ -73722,7 +73731,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448135928, + "complete_object_locator": 6448140152, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73731,25 +73740,25 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo", - "vtable_address": 6447121952, + "vtable_address": 6447126048, "methods": [ - 6445350976, - 6444851872, - 6445370864, - 6445364240, - 6444974384, - 6444851920, - 6444849504, - 6445357456, - 6445366528, - 6445384688, - 6442600384, - 6445398368, - 6444853136, - 6444854608, - 6445371120, - 6445367872, - 6445366768 + 6445351280, + 6444852176, + 6445371168, + 6445364544, + 6444974688, + 6444852224, + 6444849808, + 6445357760, + 6445366832, + 6445384992, + 6442600400, + 6445398672, + 6444853440, + 6444854912, + 6445371424, + 6445368176, + 6445367072 ], "bases": [ { @@ -73783,7 +73792,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448136744, + "complete_object_locator": 6448140968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73792,25 +73801,25 @@ }, { "type_name": "google::protobuf::GeneratedCodeInfo_Annotation", - "vtable_address": 6447121808, - "methods": [ - 6445351040, - 6444851872, - 6445370880, - 6445364448, - 6444974384, - 6444851920, - 6444849504, - 6445357840, - 6445366480, - 6445385120, - 6442600384, - 6445399744, - 6444853136, - 6444854608, - 6445371072, - 6445367936, - 6445366784 + "vtable_address": 6447125904, + "methods": [ + 6445351344, + 6444852176, + 6445371184, + 6445364752, + 6444974688, + 6444852224, + 6444849808, + 6445358144, + 6445366784, + 6445385424, + 6442600400, + 6445400048, + 6444853440, + 6444854912, + 6445371376, + 6445368240, + 6445367088 ], "bases": [ { @@ -73844,7 +73853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448136880, + "complete_object_locator": 6448141104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73853,15 +73862,15 @@ }, { "type_name": "google::protobuf::MessageFactory", - "vtable_address": 6447084376, + "vtable_address": 6447088472, "methods": [ - 6444848736, - 6446722668 + 6444849040, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448126128, + "complete_object_locator": 6448130352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73870,25 +73879,25 @@ }, { "type_name": "google::protobuf::MessageOptions", - "vtable_address": 6447120224, + "vtable_address": 6447124320, "methods": [ - 6445036736, - 6444851872, - 6445370896, - 6445364544, - 6445369264, - 6444851920, - 6444849504, - 6445358064, - 6445366496, - 6445385872, - 6442600384, - 6445400304, - 6444853136, - 6444854608, - 6445371088, - 6445368000, - 6445366800 + 6445037040, + 6444852176, + 6445371200, + 6445364848, + 6445369568, + 6444852224, + 6444849808, + 6445358368, + 6445366800, + 6445386176, + 6442600400, + 6445400608, + 6444853440, + 6444854912, + 6445371392, + 6445368304, + 6445367104 ], "bases": [ { @@ -73922,7 +73931,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134840, + "complete_object_locator": 6448139064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73931,25 +73940,25 @@ }, { "type_name": "google::protobuf::MethodDescriptorProto", - "vtable_address": 6447119936, - "methods": [ - 6445351104, - 6444851872, - 6445370912, - 6445364688, - 6445369984, - 6444851920, - 6444849504, - 6445358272, - 6445366480, - 6445386832, - 6442600384, - 6445400672, - 6444853136, - 6444854608, - 6445371072, - 6445368064, - 6445366816 + "vtable_address": 6447124032, + "methods": [ + 6445351408, + 6444852176, + 6445371216, + 6445364992, + 6445370288, + 6444852224, + 6444849808, + 6445358576, + 6445366784, + 6445387136, + 6442600400, + 6445400976, + 6444853440, + 6444854912, + 6445371376, + 6445368368, + 6445367120 ], "bases": [ { @@ -73983,7 +73992,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134568, + "complete_object_locator": 6448138792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -73992,25 +74001,25 @@ }, { "type_name": "google::protobuf::MethodOptions", - "vtable_address": 6447121088, - "methods": [ - 6445036800, - 6444851872, - 6445370928, - 6445364848, - 6445369264, - 6444851920, - 6444849504, - 6445358736, - 6445366496, - 6445387648, - 6442600384, - 6445400976, - 6444853136, - 6444854608, - 6445371088, - 6445368128, - 6445366832 + "vtable_address": 6447125184, + "methods": [ + 6445037104, + 6444852176, + 6445371232, + 6445365152, + 6445369568, + 6444852224, + 6444849808, + 6445359040, + 6445366800, + 6445387952, + 6442600400, + 6445401280, + 6444853440, + 6444854912, + 6445371392, + 6445368432, + 6445367136 ], "bases": [ { @@ -74044,7 +74053,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448135792, + "complete_object_locator": 6448140016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74053,25 +74062,25 @@ }, { "type_name": "google::protobuf::OneofDescriptorProto", - "vtable_address": 6447119216, + "vtable_address": 6447123312, "methods": [ - 6445351168, - 6444851872, - 6445370944, - 6445364992, - 6445370048, - 6444851920, - 6444849504, - 6445358960, - 6445366480, - 6445388432, - 6442600384, - 6445401312, - 6444853136, - 6444854608, - 6445371072, - 6445368192, - 6445366848 + 6445351472, + 6444852176, + 6445371248, + 6445365296, + 6445370352, + 6444852224, + 6444849808, + 6445359264, + 6445366784, + 6445388736, + 6442600400, + 6445401616, + 6444853440, + 6444854912, + 6445371376, + 6445368496, + 6445367152 ], "bases": [ { @@ -74105,7 +74114,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134024, + "complete_object_locator": 6448138248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74114,25 +74123,25 @@ }, { "type_name": "google::protobuf::OneofOptions", - "vtable_address": 6447120512, + "vtable_address": 6447124608, "methods": [ - 6445036864, - 6444851872, - 6445370960, - 6445362480, - 6445369392, - 6444851920, - 6444849504, - 6445354416, - 6445366512, - 6445388896, - 6442600384, - 6445401472, - 6444853136, - 6444854608, - 6445371104, - 6445368256, - 6445366864 + 6445037168, + 6444852176, + 6445371264, + 6445362784, + 6445369696, + 6444852224, + 6444849808, + 6445354720, + 6445366816, + 6445389200, + 6442600400, + 6445401776, + 6444853440, + 6444854912, + 6445371408, + 6445368560, + 6445367168 ], "bases": [ { @@ -74166,7 +74175,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448135112, + "complete_object_locator": 6448139336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74175,25 +74184,25 @@ }, { "type_name": "google::protobuf::ServiceDescriptorProto", - "vtable_address": 6447119792, - "methods": [ - 6445351232, - 6444851872, - 6445370976, - 6445365088, - 6445370112, - 6444851920, - 6444849504, - 6445359264, - 6445366480, - 6445389424, - 6442600384, - 6445401664, - 6444853136, - 6444854608, - 6445371072, - 6445368320, - 6445366880 + "vtable_address": 6447123888, + "methods": [ + 6445351536, + 6444852176, + 6445371280, + 6445365392, + 6445370416, + 6444852224, + 6444849808, + 6445359568, + 6445366784, + 6445389728, + 6442600400, + 6445401968, + 6444853440, + 6444854912, + 6445371376, + 6445368624, + 6445367184 ], "bases": [ { @@ -74227,7 +74236,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448134432, + "complete_object_locator": 6448138656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74236,25 +74245,25 @@ }, { "type_name": "google::protobuf::ServiceOptions", - "vtable_address": 6447120944, - "methods": [ - 6445036928, - 6444851872, - 6445370992, - 6445362336, - 6445369264, - 6444851920, - 6444849504, - 6445359648, - 6445366496, - 6445390000, - 6442600384, - 6445401872, - 6444853136, - 6444854608, - 6445371088, - 6445368384, - 6445366896 + "vtable_address": 6447125040, + "methods": [ + 6445037232, + 6444852176, + 6445371296, + 6445362640, + 6445369568, + 6444852224, + 6444849808, + 6445359952, + 6445366800, + 6445390304, + 6442600400, + 6445402176, + 6444853440, + 6444854912, + 6445371392, + 6445368688, + 6445367200 ], "bases": [ { @@ -74288,7 +74297,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448135656, + "complete_object_locator": 6448139880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74297,25 +74306,25 @@ }, { "type_name": "google::protobuf::SourceCodeInfo", - "vtable_address": 6447121664, - "methods": [ - 6445036992, - 6444851872, - 6445371008, - 6445365280, - 6444974384, - 6444851920, - 6444849504, - 6445359824, - 6445366528, - 6445390592, - 6442600384, - 6445398368, - 6444853136, - 6444854608, - 6445371120, - 6445368448, - 6445366912 + "vtable_address": 6447125760, + "methods": [ + 6445037296, + 6444852176, + 6445371312, + 6445365584, + 6444974688, + 6444852224, + 6444849808, + 6445360128, + 6445366832, + 6445390896, + 6442600400, + 6445398672, + 6444853440, + 6444854912, + 6445371424, + 6445368752, + 6445367216 ], "bases": [ { @@ -74349,7 +74358,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448136200, + "complete_object_locator": 6448140424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74358,25 +74367,25 @@ }, { "type_name": "google::protobuf::SourceCodeInfo_Location", - "vtable_address": 6447121520, - "methods": [ - 6445037056, - 6444851872, - 6445371024, - 6445365408, - 6444974384, - 6444851920, - 6444849504, - 6445359968, - 6445366480, - 6445391024, - 6442600384, - 6445402112, - 6444853136, - 6444854608, - 6445371072, - 6445368512, - 6445366928 + "vtable_address": 6447125616, + "methods": [ + 6445037360, + 6444852176, + 6445371328, + 6445365712, + 6444974688, + 6444852224, + 6444849808, + 6445360272, + 6445366784, + 6445391328, + 6442600400, + 6445402416, + 6444853440, + 6444854912, + 6445371376, + 6445368816, + 6445367232 ], "bases": [ { @@ -74410,7 +74419,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448137016, + "complete_object_locator": 6448141240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74419,18 +74428,18 @@ }, { "type_name": "google::protobuf::TextFormat::BaseTextGenerator", - "vtable_address": 6447088024, + "vtable_address": 6447092120, "methods": [ - 6444889584, - 6444850240, - 6444850240, - 6444849440, - 6446722668 + 6444889888, + 6444850544, + 6444850544, + 6444849744, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448131592, + "complete_object_locator": 6448135816, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74439,29 +74448,29 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 6447088072, - "methods": [ - 6444889632, - 6444919472, - 6444924352, - 6444925472, - 6444924592, - 6444925712, - 6444924000, - 6444919536, - 6444925072, - 6444919520, - 6444919888, - 6444921136, - 6444921104, - 6444925024, - 6444890016, - 6444924832 + "vtable_address": 6447092168, + "methods": [ + 6444889936, + 6444919776, + 6444924656, + 6444925776, + 6444924896, + 6444926016, + 6444924304, + 6444919840, + 6444925376, + 6444919824, + 6444920192, + 6444921440, + 6444921408, + 6444925328, + 6444890320, + 6444925136 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448131712, + "complete_object_locator": 6448135936, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74470,18 +74479,18 @@ }, { "type_name": "google::protobuf::TextFormat::Finder", - "vtable_address": 6447088208, + "vtable_address": 6447092304, "methods": [ - 6444889680, - 6444914560, - 6444914608, - 6444914528, - 6444849440 + 6444889984, + 6444914864, + 6444914912, + 6444914832, + 6444849744 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448131752, + "complete_object_locator": 6448135976, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74490,11 +74499,11 @@ }, { "type_name": "google::protobuf::TextFormat::Parser::ParserImpl::ParserErrorCollector", - "vtable_address": 6447089264, + "vtable_address": 6447093360, "methods": [ - 6444889728, - 6444889984, - 6444890000 + 6444890032, + 6444890288, + 6444890304 ], "bases": [ { @@ -74514,7 +74523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448132128, + "complete_object_locator": 6448136352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74523,24 +74532,24 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::DebugStringFieldValuePrinter", - "vtable_address": 6447090688, - "methods": [ - 6444889632, - 6444919472, - 6444924352, - 6444925472, - 6444924592, - 6444925712, - 6444924000, - 6444919536, - 6444925072, - 6444919520, - 6444919888, - 6444921136, - 6444921104, - 6444924880, - 6444890016, - 6444924832 + "vtable_address": 6447094784, + "methods": [ + 6444889936, + 6444919776, + 6444924656, + 6444925776, + 6444924896, + 6444926016, + 6444924304, + 6444919840, + 6444925376, + 6444919824, + 6444920192, + 6444921440, + 6444921408, + 6444925184, + 6444890320, + 6444925136 ], "bases": [ { @@ -74560,7 +74569,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448132000, + "complete_object_locator": 6448136224, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74569,13 +74578,13 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::TextGenerator", - "vtable_address": 6447090600, + "vtable_address": 6447094696, "methods": [ - 6444889792, - 6444915008, - 6444916144, - 6444914624, - 6444917664 + 6444890096, + 6444915312, + 6444916448, + 6444914928, + 6444917968 ], "bases": [ { @@ -74595,7 +74604,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448131872, + "complete_object_locator": 6448136096, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74604,25 +74613,25 @@ }, { "type_name": "google::protobuf::UninterpretedOption", - "vtable_address": 6447121376, + "vtable_address": 6447125472, "methods": [ - 6445351296, - 6444851872, - 6445371040, - 6445365552, - 6445370288, - 6444851920, - 6444849504, - 6445360320, - 6445366480, - 6445391776, - 6442600384, - 6445402816, - 6444853136, - 6444854608, - 6445371072, - 6445368576, - 6445366944 + 6445351600, + 6444852176, + 6445371344, + 6445365856, + 6445370592, + 6444852224, + 6444849808, + 6445360624, + 6445366784, + 6445392080, + 6442600400, + 6445403120, + 6444853440, + 6444854912, + 6445371376, + 6445368880, + 6445367248 ], "bases": [ { @@ -74656,7 +74665,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448136064, + "complete_object_locator": 6448140288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74665,25 +74674,25 @@ }, { "type_name": "google::protobuf::UninterpretedOption_NamePart", - "vtable_address": 6447121232, + "vtable_address": 6447125328, "methods": [ - 6445351360, - 6444851872, - 6445371056, - 6445365856, - 6445370352, - 6444851920, - 6444849504, - 6445360832, - 6445366480, - 6445392672, - 6442600384, - 6445403312, - 6444853136, - 6444854608, - 6445371072, - 6445368640, - 6445366960 + 6445351664, + 6444852176, + 6445371360, + 6445366160, + 6445370656, + 6444852224, + 6444849808, + 6445361136, + 6445366784, + 6445392976, + 6442600400, + 6445403616, + 6444853440, + 6444854912, + 6445371376, + 6445368944, + 6445367264 ], "bases": [ { @@ -74717,7 +74726,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448137152, + "complete_object_locator": 6448141376, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74726,13 +74735,13 @@ }, { "type_name": "google::protobuf::ZeroCopyCodedInputStream", - "vtable_address": 6447094496, + "vtable_address": 6447098592, "methods": [ - 6444975120, - 6444977008, - 6444975792, - 6444979072, - 6444849440 + 6444975424, + 6444977312, + 6444976096, + 6444979376, + 6444849744 ], "bases": [ { @@ -74752,7 +74761,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448132384, + "complete_object_locator": 6448136608, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74761,11 +74770,11 @@ }, { "type_name": "google::protobuf::`anonymous namespace'::AggregateErrorCollector", - "vtable_address": 6447105712, + "vtable_address": 6447109808, "methods": [ - 6445036096, - 6445037120, - 6444850240 + 6445036400, + 6445037424, + 6444850544 ], "bases": [ { @@ -74785,7 +74794,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448133344, + "complete_object_locator": 6448137568, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74794,10 +74803,10 @@ }, { "type_name": "google::protobuf::`anonymous namespace'::GeneratedMessageFactory", - "vtable_address": 6447085256, + "vtable_address": 6447089352, "methods": [ - 6444848592, - 6444850896 + 6444848896, + 6444851200 ], "bases": [ { @@ -74817,7 +74826,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448127032, + "complete_object_locator": 6448131256, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74826,31 +74835,31 @@ }, { "type_name": "google::protobuf::internal::DynamicMapField", - "vtable_address": 6447125424, - "methods": [ - 6445442336, - 6445444816, - 6445445664, - 6445443184, - 6445443456, - 6445445760, - 6445445952, - 6445446016, - 6445450992, - 6444919520, - 6445460048, - 6445441904, - 6445450544, - 6445455216, - 6445451680, - 6445444624, - 6445443168, - 6445442400, - 6445444560, - 6445444432, - 6445449568, - 6445450288, - 6445441120 + "vtable_address": 6447129520, + "methods": [ + 6445442640, + 6445445120, + 6445445968, + 6445443488, + 6445443760, + 6445446064, + 6445446256, + 6445446320, + 6445451296, + 6444919824, + 6445460352, + 6445442208, + 6445450848, + 6445455520, + 6445451984, + 6445444928, + 6445443472, + 6445442704, + 6445444864, + 6445444736, + 6445449872, + 6445450592, + 6445441424 ], "bases": [ { @@ -74884,7 +74893,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448137408, + "complete_object_locator": 6448141632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74893,20 +74902,20 @@ }, { "type_name": "google::protobuf::internal::ImplicitWeakMessage", - "vtable_address": 6447094144, + "vtable_address": 6447098240, "methods": [ - 6444973392, - 6444974080, - 6444974400, - 6444973776, + 6444973696, 6444974384, - 6444976608, - 6444973728, - 6444973712, - 6444974064, - 6445476768, - 6442600384, - 6444974672 + 6444974704, + 6444974080, + 6444974688, + 6444976912, + 6444974032, + 6444974016, + 6444974368, + 6445477072, + 6442600400, + 6444974976 ], "bases": [ { @@ -74926,7 +74935,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448132256, + "complete_object_locator": 6448136480, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74935,28 +74944,28 @@ }, { "type_name": "google::protobuf::internal::MapFieldAccessor", - "vtable_address": 6447084400, + "vtable_address": 6447088496, "methods": [ - 6444852992, - 6444854576, - 6444850816, - 6444849568, - 6444854464, - 6444849216, - 6444853408, - 6444856448, - 6444855312, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444848688, - 6444853264, - 6444849632, - 6444849616 + 6444853296, + 6444854880, + 6444851120, + 6444849872, + 6444854768, + 6444849520, + 6444853712, + 6444856752, + 6444855616, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444848992, + 6444853568, + 6444849936, + 6444849920 ], "bases": [ { @@ -74990,7 +74999,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448126328, + "complete_object_locator": 6448130552, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -74999,32 +75008,32 @@ }, { "type_name": "google::protobuf::internal::MapFieldBase", - "vtable_address": 6447125264, - "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6445451072, - 6445458576, - 6446722668, - 6446722668, - 6445450976, - 6445456912, - 6444850240, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + "vtable_address": 6447129360, + "methods": [ + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6445451376, + 6445458880, + 6446722972, + 6446722972, + 6445451280, + 6445457216, + 6444850544, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448137288, + "complete_object_locator": 6448141512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75033,26 +75042,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6447086392, + "vtable_address": 6447090488, "methods": [ - 6444852944, - 6444854528, - 6444850608, - 6444849520, - 6444854272, - 6444848976, - 6444853344, - 6444856368, - 6444855008, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444849712, - 6444849616 + 6444853248, + 6444854832, + 6444850912, + 6444849824, + 6444854576, + 6444849280, + 6444853648, + 6444856672, + 6444855312, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444850016, + 6444849920 ], "bases": [ { @@ -75100,7 +75109,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448128600, + "complete_object_locator": 6448132824, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75109,26 +75118,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6447086240, + "vtable_address": 6447090336, "methods": [ - 6444852944, - 6444854528, - 6444850528, - 6444849520, - 6444854144, - 6444848880, - 6444853344, - 6444856336, + 6444853248, 6444854832, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444849680, - 6444849616 + 6444850832, + 6444849824, + 6444854448, + 6444849184, + 6444853648, + 6444856640, + 6444855136, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444849984, + 6444849920 ], "bases": [ { @@ -75176,7 +75185,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448128360, + "complete_object_locator": 6448132584, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75185,26 +75194,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6447086088, + "vtable_address": 6447090184, "methods": [ - 6444852944, - 6444854528, - 6444850448, - 6444849520, - 6444854080, - 6444848832, - 6444853344, - 6444856320, - 6444854656, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444849664, - 6444849616 + 6444853248, + 6444854832, + 6444850752, + 6444849824, + 6444854384, + 6444849136, + 6444853648, + 6444856624, + 6444854960, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444849968, + 6444849920 ], "bases": [ { @@ -75252,7 +75261,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448128120, + "complete_object_locator": 6448132344, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75261,26 +75270,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6447085784, + "vtable_address": 6447089880, "methods": [ - 6444852944, - 6444854528, - 6444850528, - 6444849520, - 6444854208, - 6444848928, - 6444853344, - 6444856352, + 6444853248, 6444854832, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444849696, - 6444849616 + 6444850832, + 6444849824, + 6444854512, + 6444849232, + 6444853648, + 6444856656, + 6444855136, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444850000, + 6444849920 ], "bases": [ { @@ -75328,7 +75337,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448127640, + "complete_object_locator": 6448131864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75337,26 +75346,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6447085480, + "vtable_address": 6447089576, "methods": [ - 6444852944, - 6444854528, - 6444850448, - 6444849520, - 6444854016, - 6444848784, - 6444853344, - 6444856304, - 6444854656, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444849648, - 6444849616 + 6444853248, + 6444854832, + 6444850752, + 6444849824, + 6444854320, + 6444849088, + 6444853648, + 6444856608, + 6444854960, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444849952, + 6444849920 ], "bases": [ { @@ -75404,7 +75413,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448127160, + "complete_object_locator": 6448131384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75413,26 +75422,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6447085936, + "vtable_address": 6447090032, "methods": [ - 6444852944, - 6444854528, - 6444850528, - 6444849520, - 6444854208, - 6444848928, - 6444853344, - 6444856352, + 6444853248, 6444854832, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444849696, - 6444849616 + 6444850832, + 6444849824, + 6444854512, + 6444849232, + 6444853648, + 6444856656, + 6444855136, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444850000, + 6444849920 ], "bases": [ { @@ -75480,7 +75489,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448127880, + "complete_object_locator": 6448132104, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75489,26 +75498,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6447085632, + "vtable_address": 6447089728, "methods": [ - 6444852944, - 6444854528, - 6444850448, - 6444849520, - 6444854016, - 6444848784, - 6444853344, - 6444856304, - 6444854656, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444849648, - 6444849616 + 6444853248, + 6444854832, + 6444850752, + 6444849824, + 6444854320, + 6444849088, + 6444853648, + 6444856608, + 6444854960, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444849952, + 6444849920 ], "bases": [ { @@ -75556,7 +75565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448127400, + "complete_object_locator": 6448131624, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75565,27 +75574,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldMessageAccessor", - "vtable_address": 6447084864, - "methods": [ - 6444852976, - 6444854560, - 6444850768, - 6444849552, - 6444854416, - 6444849120, - 6444853376, - 6444856400, - 6444855504, - 6444849440, - 6444850256, - 6444850160, + "vtable_address": 6447088960, + "methods": [ + 6444853280, + 6444854864, + 6444851072, + 6444849856, + 6444854720, 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444853264, - 6444849632, - 6444849616 + 6444853680, + 6444856704, + 6444855808, + 6444849744, + 6444850560, + 6444850464, + 6444849728, + 6444850592, + 6444850544, + 6444851152, + 6444853568, + 6444849936, + 6444849920 ], "bases": [ { @@ -75633,7 +75642,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448126792, + "complete_object_locator": 6448131016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75642,27 +75651,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldStringAccessor", - "vtable_address": 6447084704, - "methods": [ - 6444852960, - 6444854544, - 6444850688, - 6444849536, - 6444854336, - 6444849024, - 6444853360, - 6444856384, - 6444855680, - 6444849440, - 6444850256, - 6444850160, - 6444849424, - 6444850288, - 6444850240, - 6444850848, - 6444853280, + "vtable_address": 6447088800, + "methods": [ + 6444853264, + 6444854848, + 6444850992, + 6444849840, + 6444854640, + 6444849328, + 6444853664, + 6444856688, + 6444855984, + 6444849744, + 6444850560, + 6444850464, 6444849728, - 6444849616 + 6444850592, + 6444850544, + 6444851152, + 6444853584, + 6444850032, + 6444849920 ], "bases": [ { @@ -75710,7 +75719,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448126552, + "complete_object_locator": 6448130776, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75719,25 +75728,25 @@ }, { "type_name": "google::protobuf::internal::ZeroFieldsBase", - "vtable_address": 6447087528, + "vtable_address": 6447091624, "methods": [ - 6443813616, - 6444851872, - 6446722668, - 6444866016, + 6443813904, + 6444852176, + 6446722972, + 6444866320, 6442590368, - 6444851920, - 6444849504, - 6444866000, + 6444852224, + 6444849808, + 6444866304, 6442599952, - 6444866144, - 6442600384, - 6444866464, - 6444853136, - 6444854608, + 6444866448, + 6442600400, + 6444866768, + 6444853440, + 6444854912, 6442599968, - 6446722668, - 6442600368 + 6446722972, + 6442600384 ], "bases": [ { @@ -75771,7 +75780,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448249080, + "complete_object_locator": 6448253264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75780,13 +75789,13 @@ }, { "type_name": "google::protobuf::io::ArrayInputStream", - "vtable_address": 6447126408, + "vtable_address": 6447130504, "methods": [ - 6445460848, - 6445461952, - 6445460944, - 6445462288, - 6445461776 + 6445461152, + 6445462256, + 6445461248, + 6445462592, + 6445462080 ], "bases": [ { @@ -75806,7 +75815,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448137632, + "complete_object_locator": 6448141856, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75815,16 +75824,16 @@ }, { "type_name": "google::protobuf::io::ErrorCollector", - "vtable_address": 6447088256, + "vtable_address": 6447092352, "methods": [ - 6444828832, - 6446722668, - 6442600384 + 6444829136, + 6446722972, + 6442600400 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448304248, + "complete_object_locator": 6448308456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75833,14 +75842,14 @@ }, { "type_name": "google::protobuf::io::StringOutputStream", - "vtable_address": 6447126456, + "vtable_address": 6447130552, "methods": [ - 6445460896, - 6445462032, - 6445461312, - 6445461792, - 6445460656, - 6444890016 + 6445461200, + 6445462336, + 6445461616, + 6445462096, + 6445460960, + 6444890320 ], "bases": [ { @@ -75860,7 +75869,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448137760, + "complete_object_locator": 6448141984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75869,18 +75878,18 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 6447087920, + "vtable_address": 6447092016, "methods": [ - 6444889888, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6444890192, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448131352, + "complete_object_locator": 6448135576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75889,19 +75898,19 @@ }, { "type_name": "google::protobuf::io::ZeroCopyOutputStream", - "vtable_address": 6447087968, + "vtable_address": 6447092064, "methods": [ - 6444889936, - 6446722668, - 6446722668, - 6446722668, - 6445460656, - 6444890016 + 6444890240, + 6446722972, + 6446722972, + 6446722972, + 6445460960, + 6444890320 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448131472, + "complete_object_locator": 6448135696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75910,12 +75919,12 @@ }, { "type_name": "snappy::ByteArraySource", - "vtable_address": 6447387872, + "vtable_address": 6447391968, "methods": [ - 6446571264, - 6444603264, - 6446643744, - 6446643760 + 6446571568, + 6444603568, + 6446644048, + 6446644064 ], "bases": [ { @@ -75935,7 +75944,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448153856, + "complete_object_locator": 6448158080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75944,18 +75953,18 @@ }, { "type_name": "snappy::Sink", - "vtable_address": 6447387784, + "vtable_address": 6447391880, "methods": [ - 6446571328, - 6446722668, - 6446643680, - 6446643520, - 6446643696 + 6446571632, + 6446722972, + 6446643984, + 6446643824, + 6446644000 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448153616, + "complete_object_locator": 6448157840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75964,17 +75973,17 @@ }, { "type_name": "snappy::Source", - "vtable_address": 6447387832, + "vtable_address": 6447391928, "methods": [ - 6446571392, - 6446722668, - 6446722668, - 6446722668 + 6446571696, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448153736, + "complete_object_locator": 6448157960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -75983,13 +75992,13 @@ }, { "type_name": "snappy::UncheckedByteArraySink", - "vtable_address": 6447387912, + "vtable_address": 6447392008, "methods": [ - 6446571456, - 6446643472, + 6446571760, + 6446643776, 6442601024, - 6446643584, - 6446643728 + 6446643888, + 6446644032 ], "bases": [ { @@ -76009,7 +76018,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448153984, + "complete_object_locator": 6448158208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76018,19 +76027,19 @@ }, { "type_name": "std::_Associated_state", - "vtable_address": 6447156328, + "vtable_address": 6447160424, "methods": [ - 6445702656, - 6445718016, - 6445712992, - 6444890016, - 6444850240, - 6445712528 + 6445702960, + 6445718320, + 6445713296, + 6444890320, + 6444850544, + 6445712832 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448143248, + "complete_object_locator": 6448147472, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76039,19 +76048,19 @@ }, { "type_name": "std::_Associated_state", - "vtable_address": 6447156864, + "vtable_address": 6447160960, "methods": [ - 6445702784, - 6445718016, - 6445712992, - 6444890016, - 6444850240, - 6445712528 + 6445703088, + 6445718320, + 6445713296, + 6444890320, + 6444850544, + 6445712832 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448143368, + "complete_object_locator": 6448147592, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76060,14 +76069,14 @@ }, { "type_name": "std::_Deferred_async_state", - "vtable_address": 6447157456, + "vtable_address": 6447161552, "methods": [ - 6445703040, - 6445718016, - 6445712992, - 6445713392, - 6445715824, - 6445712528 + 6445703344, + 6445718320, + 6445713296, + 6445713696, + 6445716128, + 6445712832 ], "bases": [ { @@ -76101,7 +76110,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448144664, + "complete_object_locator": 6448148888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76110,14 +76119,14 @@ }, { "type_name": "std::_Deferred_async_state", - "vtable_address": 6447157232, + "vtable_address": 6447161328, "methods": [ - 6445703104, - 6445718016, - 6445712992, - 6445713392, - 6445715904, - 6445712528 + 6445703408, + 6445718320, + 6445713296, + 6445713696, + 6445716208, + 6445712832 ], "bases": [ { @@ -76151,7 +76160,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448144008, + "complete_object_locator": 6448148232, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76160,16 +76169,16 @@ }, { "type_name": "std::_Facet_base", - "vtable_address": 6447086888, + "vtable_address": 6447090984, "methods": [ - 6444862272, - 6446722668, - 6446722668 + 6444862576, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448130480, + "complete_object_locator": 6448134704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76178,19 +76187,19 @@ }, { "type_name": "std::_Func_base", - "vtable_address": 6447156920, + "vtable_address": 6447161016, "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448142864, + "complete_object_locator": 6448147088, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76199,19 +76208,19 @@ }, { "type_name": "std::_Func_base", - "vtable_address": 6447157568, + "vtable_address": 6447161664, "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448144544, + "complete_object_locator": 6448148768, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76220,19 +76229,19 @@ }, { "type_name": "std::_Func_base", - "vtable_address": 6447156808, + "vtable_address": 6447160904, "methods": [ - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668, - 6446722668 + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972, + 6446722972 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448142568, + "complete_object_locator": 6448146792, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76241,14 +76250,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447158208, + "vtable_address": 6447162304, "methods": [ - 6445710208, - 6445710208, - 6445712336, - 6445717584, - 6445711664, - 6445712800 + 6445710512, + 6445710512, + 6445712640, + 6445717888, + 6445711968, + 6445713104 ], "bases": [ { @@ -76268,7 +76277,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146888, + "complete_object_locator": 6448151112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76277,14 +76286,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447158320, + "vtable_address": 6447162416, "methods": [ - 6445710240, - 6445710240, - 6445712352, - 6445717600, - 6445711664, - 6445712800 + 6445710544, + 6445710544, + 6445712656, + 6445717904, + 6445711968, + 6445713104 ], "bases": [ { @@ -76304,7 +76313,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448147144, + "complete_object_locator": 6448151368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76313,14 +76322,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447157680, + "vtable_address": 6447161776, "methods": [ - 6445710272, - 6445710272, - 6445712368, - 6445717616, - 6445711664, - 6445712800 + 6445710576, + 6445710576, + 6445712672, + 6445717920, + 6445711968, + 6445713104 ], "bases": [ { @@ -76340,7 +76349,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448145064, + "complete_object_locator": 6448149288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76349,14 +76358,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447157792, + "vtable_address": 6447161888, "methods": [ - 6445710304, - 6445710304, - 6445712384, - 6445717632, - 6445711664, - 6445712800 + 6445710608, + 6445710608, + 6445712688, + 6445717936, + 6445711968, + 6445713104 ], "bases": [ { @@ -76376,7 +76385,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448145320, + "complete_object_locator": 6448149544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76385,14 +76394,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447158264, + "vtable_address": 6447162360, "methods": [ - 6445710336, - 6445710336, - 6445712352, - 6445717648, - 6445711664, - 6445712800 + 6445710640, + 6445710640, + 6445712656, + 6445717952, + 6445711968, + 6445713104 ], "bases": [ { @@ -76412,7 +76421,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448147016, + "complete_object_locator": 6448151240, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76421,14 +76430,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,unsigned char>", - "vtable_address": 6447157736, + "vtable_address": 6447161832, "methods": [ - 6445710368, - 6445713824, - 6445712400, - 6445717664, - 6445711696, - 6445712800 + 6445710672, + 6445714128, + 6445712704, + 6445717968, + 6445712000, + 6445713104 ], "bases": [ { @@ -76448,7 +76457,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448145192, + "complete_object_locator": 6448149416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76457,14 +76466,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447158152, + "vtable_address": 6447162248, "methods": [ - 6445710384, - 6445710384, - 6445712336, - 6445717680, - 6445711664, - 6445712800 + 6445710688, + 6445710688, + 6445712640, + 6445717984, + 6445711968, + 6445713104 ], "bases": [ { @@ -76484,7 +76493,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146760, + "complete_object_locator": 6448150984, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76493,14 +76502,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447157624, + "vtable_address": 6447161720, "methods": [ - 6445710416, - 6445713936, - 6445712432, - 6445717696, - 6445711808, - 6445712800 + 6445710720, + 6445714240, + 6445712736, + 6445718000, + 6445712112, + 6445713104 ], "bases": [ { @@ -76520,7 +76529,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448144936, + "complete_object_locator": 6448149160, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76529,14 +76538,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,unsigned int>", - "vtable_address": 6447158000, + "vtable_address": 6447162096, "methods": [ - 6445710496, - 6445714000, - 6445712464, - 6445717712, - 6445711856, - 6445712800 + 6445710800, + 6445714304, + 6445712768, + 6445718016, + 6445712160, + 6445713104 ], "bases": [ { @@ -76556,7 +76565,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448146104, + "complete_object_locator": 6448150328, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76565,14 +76574,14 @@ }, { "type_name": "std::_Func_impl,class std::allocator,void>", - "vtable_address": 6447157848, + "vtable_address": 6447161944, "methods": [ - 6445710576, - 6445714064, - 6445712496, - 6445717728, - 6445711664, - 6445712800 + 6445710880, + 6445714368, + 6445712800, + 6445718032, + 6445711968, + 6445713104 ], "bases": [ { @@ -76592,7 +76601,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448145448, + "complete_object_locator": 6448149672, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76601,14 +76610,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class IAudioInputStream *,int>", - "vtable_address": 6448066368, + "vtable_address": 6448070592, "methods": [ - 6444481488, - 6444481488, - 6442600384, - 6444481472, - 6442768000, - 6442686784 + 6444481776, + 6444481776, + 6442600400, + 6444481760, + 6442768448, + 6442687232 ], "bases": [ { @@ -76628,7 +76637,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448285152, + "complete_object_locator": 6448289368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76637,14 +76646,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6447282824, + "vtable_address": 6447286920, "methods": [ - 6446410944, - 6446410944, - 6446410960, - 6446411008, - 6446411024, - 6442686784 + 6446411248, + 6446411248, + 6446411264, + 6446411312, + 6446411328, + 6442687232 ], "bases": [ { @@ -76664,7 +76673,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448149184, + "complete_object_locator": 6448153408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76673,14 +76682,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6447282880, + "vtable_address": 6447286976, "methods": [ - 6446411040, - 6446411040, - 6446411056, - 6446411088, - 6446411024, - 6442686784 + 6446411344, + 6446411344, + 6446411360, + 6446411392, + 6446411328, + 6442687232 ], "bases": [ { @@ -76700,7 +76709,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448149312, + "complete_object_locator": 6448153536, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76709,14 +76718,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448015024, + "vtable_address": 6448019344, "methods": [ - 6444140288, - 6444140288, - 6444140256, - 6444140240, - 6442768000, - 6442686784 + 6444140576, + 6444140576, + 6444140544, + 6444140528, + 6442768448, + 6442687232 ], "bases": [ { @@ -76736,7 +76745,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448259792, + "complete_object_locator": 6448264016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76745,14 +76754,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,void const *>", - "vtable_address": 6448062040, + "vtable_address": 6448066392, "methods": [ - 6444458048, - 6444458048, - 6444325376, - 6444458032, - 6442768000, - 6442686784 + 6444458336, + 6444458336, + 6444325664, + 6444458320, + 6442768448, + 6442687232 ], "bases": [ { @@ -76772,7 +76781,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283384, + "complete_object_locator": 6448287496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76781,14 +76790,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6447767248, + "vtable_address": 6447771344, "methods": [ - 6442768064, - 6442768064, - 6442768048, - 6442768032, - 6442768000, - 6442686784 + 6442768512, + 6442768512, + 6442768496, + 6442768480, + 6442768448, + 6442687232 ], "bases": [ { @@ -76808,7 +76817,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448173984, + "complete_object_locator": 6448178208, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76817,14 +76826,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class ISceneView *,struct RenderViewport_t const &,struct HSceneViewRenderTarget__*,struct HSceneViewRenderTarget__*>", - "vtable_address": 6448114408, + "vtable_address": 6448118648, "methods": [ - 6444811856, - 6444811856, - 6444811824, - 6444811808, - 6442768000, - 6442686784 + 6444812160, + 6444812160, + 6444812128, + 6444812112, + 6442768448, + 6442687232 ], "bases": [ { @@ -76844,7 +76853,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448303696, + "complete_object_locator": 6448307904, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76853,14 +76862,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448062096, + "vtable_address": 6448066336, "methods": [ - 6444458112, - 6444458112, - 6444458096, - 6444458080, - 6442768000, - 6442686784 + 6444458400, + 6444458400, + 6444458384, + 6444458368, + 6442768448, + 6442687232 ], "bases": [ { @@ -76880,7 +76889,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283344, + "complete_object_locator": 6448287456, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76889,14 +76898,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class IAudioInputStream *,int>", - "vtable_address": 6448066312, + "vtable_address": 6448070648, "methods": [ - 6444485568, - 6444485568, - 6444485488, - 6444485472, - 6442768000, - 6442686784 + 6444485856, + 6444485856, + 6444485776, + 6444485760, + 6442768448, + 6442687232 ], "bases": [ { @@ -76916,7 +76925,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448285192, + "complete_object_locator": 6448289408, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76925,14 +76934,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448074704, + "vtable_address": 6448078992, "methods": [ - 6444527936, - 6444527936, - 6444527840, - 6444527824, - 6442768000, - 6442686784 + 6444528224, + 6444528224, + 6444528128, + 6444528112, + 6442768448, + 6442687232 ], "bases": [ { @@ -76952,7 +76961,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291576, + "complete_object_locator": 6448295752, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76961,14 +76970,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448074648, + "vtable_address": 6448078936, "methods": [ - 6444527792, - 6444527792, - 6444527728, - 6444527712, - 6442768000, - 6442686784 + 6444528080, + 6444528080, + 6444528016, + 6444528000, + 6442768448, + 6442687232 ], "bases": [ { @@ -76988,7 +76997,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448291536, + "complete_object_locator": 6448295712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -76997,14 +77006,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448061984, + "vtable_address": 6448066280, "methods": [ - 6444458192, - 6444458192, - 6444458160, - 6444458144, - 6442768000, - 6442686784 + 6444458480, + 6444458480, + 6444458448, + 6444458432, + 6442768448, + 6442687232 ], "bases": [ { @@ -77024,7 +77033,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448283304, + "complete_object_locator": 6448287416, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77033,14 +77042,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class IAsyncReadRequest2*,enum AsyncRequestStatus_t>", - "vtable_address": 6447887808, + "vtable_address": 6447891840, "methods": [ + 6443526976, + 6443526976, 6443526784, - 6443526784, - 6443526592, - 6443526576, - 6442768000, - 6442686784 + 6443526768, + 6442768448, + 6442687232 ], "bases": [ { @@ -77060,7 +77069,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448229280, + "complete_object_locator": 6448233496, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77069,14 +77078,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,void const *>", - "vtable_address": 6448043608, + "vtable_address": 6448047904, "methods": [ - 6444325488, - 6444325488, - 6444325376, - 6444325360, - 6442768000, - 6442686784 + 6444325776, + 6444325776, + 6444325664, + 6444325648, + 6442768448, + 6442687232 ], "bases": [ { @@ -77096,7 +77105,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448269600, + "complete_object_locator": 6448273832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77105,14 +77114,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,char const *>", - "vtable_address": 6447798704, + "vtable_address": 6447802816, "methods": [ + 6442917040, + 6442917040, 6442916960, - 6442916960, - 6442916880, - 6442916864, - 6442768000, - 6442686784 + 6442916944, + 6442768448, + 6442687232 ], "bases": [ { @@ -77132,7 +77141,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448188800, + "complete_object_locator": 6448193024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77141,14 +77150,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6447937512, + "vtable_address": 6447941792, "methods": [ - 6443803696, - 6443803696, - 6443803680, - 6443803664, - 6442768000, - 6442686784 + 6443803984, + 6443803984, + 6443803968, + 6443803952, + 6442768448, + 6442687232 ], "bases": [ { @@ -77168,7 +77177,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448246728, + "complete_object_locator": 6448250992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77177,14 +77186,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448061264, + "vtable_address": 6448065504, "methods": [ - 6444442480, - 6442600368, - 6444442464, - 6444442448, - 6442768000, - 6442686784 + 6444442768, + 6442600384, + 6444442752, + 6444442736, + 6442768448, + 6442687232 ], "bases": [ { @@ -77204,7 +77213,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448282112, + "complete_object_locator": 6448286312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77213,14 +77222,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448061208, + "vtable_address": 6448065560, "methods": [ - 6444442416, - 6444442416, - 6444442384, - 6444442368, - 6442768000, - 6442686784 + 6444442704, + 6444442704, + 6444442672, + 6444442656, + 6442768448, + 6442687232 ], "bases": [ { @@ -77240,7 +77249,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448282152, + "complete_object_locator": 6448286352, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77249,14 +77258,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6447181080, + "vtable_address": 6447185176, "methods": [ - 6446005696, - 6446005696, - 6446005744, - 6446005888, - 6446005728, - 6442686784 + 6446006000, + 6446006000, + 6446006048, + 6446006192, + 6446006032, + 6442687232 ], "bases": [ { @@ -77276,7 +77285,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448148976, + "complete_object_locator": 6448153200, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77285,14 +77294,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6448078104, + "vtable_address": 6448082376, "methods": [ - 6444602592, - 6444602592, - 6444602576, - 6444602560, - 6442768000, - 6442686784 + 6444602896, + 6444602896, + 6444602880, + 6444602864, + 6442768448, + 6442687232 ], "bases": [ { @@ -77312,7 +77321,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448294952, + "complete_object_locator": 6448298728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77321,14 +77330,14 @@ }, { "type_name": "std::_Func_impl_no_alloc", - "vtable_address": 6447805712, + "vtable_address": 6447809824, "methods": [ - 6442953104, - 6442953104, - 6442953088, - 6442953072, - 6442768000, - 6442686784 + 6442953184, + 6442953184, + 6442953168, + 6442953152, + 6442768448, + 6442687232 ], "bases": [ { @@ -77348,7 +77357,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448192424, + "complete_object_locator": 6448196648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77357,14 +77366,14 @@ }, { "type_name": "std::_Future_error_category", - "vtable_address": 6447156264, + "vtable_address": 6447160360, "methods": [ - 6445704192, - 6445720400, - 6445720144, - 6444863344, - 6444863632, - 6444863664 + 6445704496, + 6445720704, + 6445720448, + 6444863648, + 6444863936, + 6444863968 ], "bases": [ { @@ -77398,7 +77407,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448143112, + "complete_object_locator": 6448147336, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77407,14 +77416,14 @@ }, { "type_name": "std::_Generic_error_category", - "vtable_address": 6447155752, + "vtable_address": 6447159848, "methods": [ - 6445704192, - 6445720416, - 6445720304, - 6444863344, - 6444863632, - 6444863664 + 6445704496, + 6445720720, + 6445720608, + 6444863648, + 6444863936, + 6444863968 ], "bases": [ { @@ -77434,7 +77443,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448141736, + "complete_object_locator": 6448145960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77443,14 +77452,14 @@ }, { "type_name": "std::_Iostream_error_category2", - "vtable_address": 6447086752, + "vtable_address": 6447090848, "methods": [ - 6444862320, + 6444862624, + 6444864240, + 6444864112, + 6444863648, 6444863936, - 6444863808, - 6444863344, - 6444863632, - 6444863664 + 6444863968 ], "bases": [ { @@ -77470,7 +77479,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448130224, + "complete_object_locator": 6448134448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77479,14 +77488,14 @@ }, { "type_name": "std::_Packaged_state", - "vtable_address": 6447157344, + "vtable_address": 6447161440, "methods": [ - 6445703040, - 6445718016, - 6445712992, - 6444890016, - 6444850240, - 6445712528 + 6445703344, + 6445718320, + 6445713296, + 6444890320, + 6444850544, + 6445712832 ], "bases": [ { @@ -77506,7 +77515,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448144504, + "complete_object_locator": 6448148728, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77515,14 +77524,14 @@ }, { "type_name": "std::_Packaged_state", - "vtable_address": 6447157120, + "vtable_address": 6447161216, "methods": [ - 6445703104, - 6445718016, - 6445712992, - 6444890016, - 6444850240, - 6445712528 + 6445703408, + 6445718320, + 6445713296, + 6444890320, + 6444850544, + 6445712832 ], "bases": [ { @@ -77542,7 +77551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448143968, + "complete_object_locator": 6448148192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77551,17 +77560,17 @@ }, { "type_name": "std::_Ref_count_base", - "vtable_address": 6447151400, + "vtable_address": 6447155496, "methods": [ - 6446722668, - 6446722668, - 6445688992, - 6444849440 + 6446722972, + 6446722972, + 6445689296, + 6444849744 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448141576, + "complete_object_locator": 6448145800, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77570,12 +77579,12 @@ }, { "type_name": "std::_Ref_count_obj", - "vtable_address": 6447157040, + "vtable_address": 6447161136, "methods": [ - 6445712320, - 6445711888, - 6445703728, - 6444849440 + 6445712624, + 6445712192, + 6445704032, + 6444849744 ], "bases": [ { @@ -77595,7 +77604,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448143488, + "complete_object_locator": 6448147712, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77604,12 +77613,12 @@ }, { "type_name": "std::_Ref_count_obj >", - "vtable_address": 6447157080, + "vtable_address": 6447161176, "methods": [ - 6445712304, - 6445711888, - 6445703680, - 6444849440 + 6445712608, + 6445712192, + 6445703984, + 6444849744 ], "bases": [ { @@ -77629,7 +77638,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448143616, + "complete_object_locator": 6448147840, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77638,10 +77647,10 @@ }, { "type_name": "std::_System_error", - "vtable_address": 6447086696, + "vtable_address": 6447090792, "methods": [ - 6444862368, - 6442743280 + 6444862672, + 6442743728 ], "bases": [ { @@ -77675,7 +77684,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448129944, + "complete_object_locator": 6448134168, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77684,14 +77693,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6447157400, + "vtable_address": 6447161496, "methods": [ - 6445703840, - 6445718224, - 6445713376, - 6444890016, - 6444850240, - 6445712528 + 6445704144, + 6445718528, + 6445713680, + 6444890320, + 6444850544, + 6445712832 ], "bases": [ { @@ -77725,7 +77734,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448144280, + "complete_object_locator": 6448148504, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77734,14 +77743,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6447157512, + "vtable_address": 6447161608, "methods": [ - 6445703776, - 6445718192, - 6445713312, - 6444890016, - 6444850240, - 6445712528 + 6445704080, + 6445718496, + 6445713616, + 6444890320, + 6444850544, + 6445712832 ], "bases": [ { @@ -77775,7 +77784,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448144800, + "complete_object_locator": 6448149024, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77784,14 +77793,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6447157176, + "vtable_address": 6447161272, "methods": [ - 6445703968, - 6445718224, - 6445713376, - 6444890016, - 6444850240, - 6445712528 + 6445704272, + 6445718528, + 6445713680, + 6444890320, + 6444850544, + 6445712832 ], "bases": [ { @@ -77825,7 +77834,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448143744, + "complete_object_locator": 6448147968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77834,14 +77843,14 @@ }, { "type_name": "std::_Task_async_state", - "vtable_address": 6447157288, + "vtable_address": 6447161384, "methods": [ - 6445703904, - 6445718192, - 6445713312, - 6444890016, - 6444850240, - 6445712528 + 6445704208, + 6445718496, + 6445713616, + 6444890320, + 6444850544, + 6445712832 ], "bases": [ { @@ -77875,7 +77884,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448144144, + "complete_object_locator": 6448148368, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77884,10 +77893,10 @@ }, { "type_name": "std::__non_rtti_object", - "vtable_address": 6448125184, + "vtable_address": 6448129424, "methods": [ - 6446707780, - 6442743280 + 6446708084, + 6442743728 ], "bases": [ { @@ -77921,7 +77930,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448304680, + "complete_object_locator": 6448308888, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77930,10 +77939,10 @@ }, { "type_name": "std::bad_alloc", - "vtable_address": 6447084328, + "vtable_address": 6447088424, "methods": [ - 6442743072, - 6442743280 + 6442743520, + 6442743728 ], "bases": [ { @@ -77953,7 +77962,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448158920, + "complete_object_locator": 6448163144, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -77962,10 +77971,10 @@ }, { "type_name": "std::bad_array_new_length", - "vtable_address": 6447084352, + "vtable_address": 6447088448, "methods": [ - 6442743072, - 6442743280 + 6442743520, + 6442743728 ], "bases": [ { @@ -77999,7 +78008,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448158792, + "complete_object_locator": 6448163016, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78008,10 +78017,10 @@ }, { "type_name": "std::bad_cast", - "vtable_address": 6447086848, + "vtable_address": 6447090944, "methods": [ - 6444862448, - 6442743280 + 6444862752, + 6442743728 ], "bases": [ { @@ -78031,7 +78040,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448130352, + "complete_object_locator": 6448134576, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78040,10 +78049,10 @@ }, { "type_name": "std::bad_exception", - "vtable_address": 6447412848, + "vtable_address": 6447416944, "methods": [ - 6446712796, - 6442743280 + 6446713100, + 6442743728 ], "bases": [ { @@ -78063,7 +78072,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448156320, + "complete_object_locator": 6448160544, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78072,10 +78081,10 @@ }, { "type_name": "std::bad_function_call", - "vtable_address": 6447408952, + "vtable_address": 6447413048, "methods": [ - 6446707780, - 6446708020 + 6446708084, + 6446708324 ], "bases": [ { @@ -78095,7 +78104,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448155648, + "complete_object_locator": 6448159872, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78104,10 +78113,10 @@ }, { "type_name": "std::bad_typeid", - "vtable_address": 6448125160, + "vtable_address": 6448129400, "methods": [ - 6446707780, - 6442743280 + 6446708084, + 6442743728 ], "bases": [ { @@ -78127,7 +78136,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448304552, + "complete_object_locator": 6448308760, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78136,9 +78145,9 @@ }, { "type_name": "std::basic_ios >", - "vtable_address": 6447087232, + "vtable_address": 6447091328, "methods": [ - 6444861632 + 6444861936 ], "bases": [ { @@ -78172,7 +78181,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448129088, + "complete_object_locator": 6448133312, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78181,9 +78190,9 @@ }, { "type_name": "std::basic_iostream >", - "vtable_address": 6447101480, + "vtable_address": 6447105576, "methods": [ - 6445035564 + 6445035868 ], "bases": [ { @@ -78301,7 +78310,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448132656, + "complete_object_locator": 6448136880, "offset": 32, "constructor_displacement": 4, "class_attributes": 3 @@ -78310,9 +78319,9 @@ }, { "type_name": "std::basic_istream >", - "vtable_address": 6447101456, + "vtable_address": 6447105552, "methods": [ - 6445035576 + 6445035880 ], "bases": [ { @@ -78360,7 +78369,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448132512, + "complete_object_locator": 6448136736, "offset": 24, "constructor_displacement": 4, "class_attributes": 0 @@ -78369,9 +78378,9 @@ }, { "type_name": "std::basic_ostream >", - "vtable_address": 6447087248, + "vtable_address": 6447091344, "methods": [ - 6444861616 + 6444861920 ], "bases": [ { @@ -78419,7 +78428,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448129344, + "complete_object_locator": 6448133568, "offset": 16, "constructor_displacement": 4, "class_attributes": 0 @@ -78428,28 +78437,28 @@ }, { "type_name": "std::basic_streambuf >", - "vtable_address": 6447087264, - "methods": [ - 6444861808, - 6444850240, - 6444850240, - 6444863952, - 6444863952, - 6444849440, - 6444863952, - 6444865152, - 6444865344, - 6444865520, - 6444864512, - 6444864512, - 6444865136, - 6444849440, - 6444850240 + "vtable_address": 6447091360, + "methods": [ + 6444862112, + 6444850544, + 6444850544, + 6444864256, + 6444864256, + 6444849744, + 6444864256, + 6444865456, + 6444865648, + 6444865824, + 6444864816, + 6444864816, + 6444865440, + 6444849744, + 6444850544 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448129224, + "complete_object_locator": 6448133448, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78458,23 +78467,23 @@ }, { "type_name": "std::basic_stringbuf,class std::allocator >", - "vtable_address": 6447087392, - "methods": [ - 6444861936, - 6444850240, - 6444850240, - 6444863968, - 6444864416, - 6444849440, - 6444865216, - 6444865152, - 6444865344, + "vtable_address": 6447091488, + "methods": [ + 6444862240, + 6444850544, + 6444850544, + 6444864272, + 6444864720, + 6444849744, 6444865520, - 6444864544, - 6444864896, - 6444865136, - 6444849440, - 6444850240 + 6444865456, + 6444865648, + 6444865824, + 6444864848, + 6444865200, + 6444865440, + 6444849744, + 6444850544 ], "bases": [ { @@ -78494,7 +78503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448129608, + "complete_object_locator": 6448133832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78503,9 +78512,9 @@ }, { "type_name": "std::basic_stringstream,class std::allocator >", - "vtable_address": 6447101496, + "vtable_address": 6447105592, "methods": [ - 6445035588 + 6445035892 ], "bases": [ { @@ -78637,7 +78646,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448132880, + "complete_object_locator": 6448137104, "offset": 152, "constructor_displacement": 4, "class_attributes": 3 @@ -78646,19 +78655,19 @@ }, { "type_name": "std::ctype", - "vtable_address": 6447086936, - "methods": [ - 6444862000, - 6444863136, - 6444862640, - 6444863424, - 6444863408, - 6444863520, - 6444863504, - 6444863600, - 6444863360, - 6444863376, - 6444863360 + "vtable_address": 6447091032, + "methods": [ + 6444862304, + 6444863440, + 6444862944, + 6444863728, + 6444863712, + 6444863824, + 6444863808, + 6444863904, + 6444863664, + 6444863680, + 6444863664 ], "bases": [ { @@ -78720,7 +78729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448130920, + "complete_object_locator": 6448135144, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -78729,19 +78738,19 @@ }, { "type_name": "std::error_category", - "vtable_address": 6447155688, + "vtable_address": 6447159784, "methods": [ - 6445704192, - 6446722668, - 6446722668, - 6444863344, - 6444863632, - 6444863664 + 6445704496, + 6446722972, + 6446722972, + 6444863648, + 6444863936, + 6444863968 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448141696, + "complete_object_locator": 6448145920, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78750,15 +78759,15 @@ }, { "type_name": "std::exception", - "vtable_address": 6447084304, + "vtable_address": 6447088400, "methods": [ - 6442743072, - 6442743280 + 6442743520, + 6442743728 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448159040, + "complete_object_locator": 6448163264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78767,10 +78776,10 @@ }, { "type_name": "std::future_error", - "vtable_address": 6447413104, + "vtable_address": 6447417200, "methods": [ - 6446716736, - 6446716900 + 6446717040, + 6446717204 ], "bases": [ { @@ -78804,7 +78813,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448156832, + "complete_object_locator": 6448161056, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78813,9 +78822,9 @@ }, { "type_name": "std::ios_base", - "vtable_address": 6447087056, + "vtable_address": 6447091152, "methods": [ - 6444862528 + 6444862832 ], "bases": [ { @@ -78835,7 +78844,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448128840, + "complete_object_locator": 6448133064, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78844,10 +78853,10 @@ }, { "type_name": "std::ios_base::failure", - "vtable_address": 6447087032, + "vtable_address": 6447091128, "methods": [ - 6444862368, - 6442743280 + 6444862672, + 6442743728 ], "bases": [ { @@ -78909,7 +78918,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448131072, + "complete_object_locator": 6448135296, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78918,10 +78927,10 @@ }, { "type_name": "std::length_error", - "vtable_address": 6447409024, + "vtable_address": 6447413120, "methods": [ - 6446707780, - 6442743280 + 6446708084, + 6442743728 ], "bases": [ { @@ -78955,7 +78964,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448155904, + "complete_object_locator": 6448160128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -78964,11 +78973,11 @@ }, { "type_name": "std::locale::_Locimp", - "vtable_address": 6447412792, + "vtable_address": 6447416888, "methods": [ - 6446709620, - 6444863136, - 6444862640 + 6446709924, + 6444863440, + 6444862944 ], "bases": [ { @@ -79016,7 +79025,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448156176, + "complete_object_locator": 6448160400, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -79025,10 +79034,10 @@ }, { "type_name": "std::logic_error", - "vtable_address": 6447409000, + "vtable_address": 6447413096, "methods": [ - 6446707780, - 6442743280 + 6446708084, + 6442743728 ], "bases": [ { @@ -79048,7 +79057,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448155776, + "complete_object_locator": 6448160000, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -79057,19 +79066,19 @@ }, { "type_name": "std::num_put > >", - "vtable_address": 6447106696, + "vtable_address": 6447110792, "methods": [ - 6445035952, - 6444863136, - 6444862640, - 6445220576, - 6445219840, - 6445219120, - 6445221024, - 6445220736, - 6445218832, - 6445218544, - 6445221312 + 6445036256, + 6444863440, + 6444862944, + 6445220880, + 6445220144, + 6445219424, + 6445221328, + 6445221040, + 6445219136, + 6445218848, + 6445221616 ], "bases": [ { @@ -79117,7 +79126,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448133200, + "complete_object_locator": 6448137424, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -79126,16 +79135,16 @@ }, { "type_name": "std::numpunct", - "vtable_address": 6447106864, + "vtable_address": 6447110960, "methods": [ - 6445036000, - 6444863136, - 6444862640, - 6445218368, - 6445221984, - 6445218464, - 6445218384, - 6445222000 + 6445036304, + 6444863440, + 6444862944, + 6445218672, + 6445222288, + 6445218768, + 6445218688, + 6445222304 ], "bases": [ { @@ -79183,7 +79192,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448133472, + "complete_object_locator": 6448137696, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -79192,10 +79201,10 @@ }, { "type_name": "std::out_of_range", - "vtable_address": 6447409048, + "vtable_address": 6447413144, "methods": [ - 6446707780, - 6442743280 + 6446708084, + 6442743728 ], "bases": [ { @@ -79229,7 +79238,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448156040, + "complete_object_locator": 6448160264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -79238,10 +79247,10 @@ }, { "type_name": "std::runtime_error", - "vtable_address": 6447086672, + "vtable_address": 6447090768, "methods": [ - 6444862448, - 6442743280 + 6444862752, + 6442743728 ], "bases": [ { @@ -79261,7 +79270,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448129736, + "complete_object_locator": 6448133960, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -79270,10 +79279,10 @@ }, { "type_name": "std::system_error", - "vtable_address": 6447086728, + "vtable_address": 6447090824, "methods": [ - 6444862368, - 6442743280 + 6444862672, + 6442743728 ], "bases": [ { @@ -79321,7 +79330,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6448130080, + "complete_object_locator": 6448134304, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -79330,14 +79339,14 @@ }, { "type_name": "type_info", - "vtable_address": 6447413656, + "vtable_address": 6447417752, "methods": [ - 6446718068 + 6446718372 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6448156968, + "complete_object_locator": 6448161192, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 diff --git a/dump/windows/vtables/engine2_short.txt b/dump/windows/vtables/engine2_short.txt index 5f387ec..d5ac8ca 100644 --- a/dump/windows/vtables/engine2_short.txt +++ b/dump/windows/vtables/engine2_short.txt @@ -33,14 +33,14 @@ CBaseEngineService [25] CBaseSpawnGroup [1] [2] [45] CBaseVModuleMetadataProvider [1] CBenchmarkService [24] -CBidirMsg_PredictionEvent [17] +CBidirMsg_PredictionEvent [21] CBidirMsg_RebroadcastGameEvent [17] -CBidirMsg_RebroadcastGameEvent_t [5] [17] +CBidirMsg_RebroadcastGameEvent_t [17] [5] CBidirMsg_RebroadcastSource [29] -CBidirMsg_RebroadcastSource_t [5] [17] +CBidirMsg_RebroadcastSource_t [17] [5] CBreakpadPassiveAssertionFailureListener [3] -CBroadcastPlayer [43] [5] -CBugService [5] [2] [23] [1] +CBroadcastPlayer [45] [5] +CBugService [2] [1] [5] [23] CCLCMsg_BaselineAck [17] CCLCMsg_BaselineAck_t [17] [5] CCLCMsg_ClientInfo [17] @@ -51,7 +51,7 @@ CCLCMsg_Diagnostic [17] CCLCMsg_Diagnostic_t [5] [17] CCLCMsg_HltvFixupOperatorTick [17] CCLCMsg_HltvReplay [17] -CCLCMsg_ListenEvents [17] +CCLCMsg_ListenEvents [31] CCLCMsg_LoadingProgress [17] CCLCMsg_LoadingProgress_t [17] [5] CCLCMsg_Move [17] @@ -62,7 +62,7 @@ CCLCMsg_RequestPause_t [17] [5] CCLCMsg_RespondCvarValue [17] CCLCMsg_RespondCvarValue_t [17] [5] CCLCMsg_ServerStatus [17] -CCLCMsg_ServerStatus_t [5] [17] +CCLCMsg_ServerStatus_t [17] [5] CCLCMsg_SplitPlayerConnect [17] CCLCMsg_SplitPlayerConnect_t [17] [5] CCLCMsg_SplitPlayerDisconnect [17] @@ -147,11 +147,11 @@ CDeltaEntityNonTransmitHeaderWriter [1] CDemoAnimationData [17] CDemoAnimationHeader [17] CDemoClassInfo [17] -CDemoClassInfo_class_t [19] +CDemoClassInfo_class_t [25] CDemoConsoleCmd [17] CDemoCustomData [17] CDemoCustomDataCallbacks [17] -CDemoFile [9] +CDemoFile [8] CDemoFileHeader [17] CDemoFileInfo [17] CDemoFullPacket [17] @@ -175,22 +175,22 @@ CDemoMessagePB<7,class CDemoPacket> [17] [6] CDemoMessagePB<9,class CDemoConsoleCmd> [17] [6] CDemoPacket [17] CDemoPlaybackLoop [5] -CDemoPlayer [1] [42] +CDemoPlayer [1] [44] CDemoRecorder [1] [22] CDemoRecovery [17] -CDemoRecovery_DemoInitialSpawnGroupEntry [19] +CDemoRecovery_DemoInitialSpawnGroupEntry [17] CDemoSaveGame [17] CDemoSendTables [17] CDemoSpawnGroups [17] CDemoStop [17] -CDemoStreamHttp [9] +CDemoStreamHttp [8] CDemoStreamHttp::CFragmentRequest [7] CDemoStreamHttp::CPendingRequest [7] CDemoStreamHttp::CStartRequest [7] CDemoStreamHttp::CSyncRequest [7] CDemoStringTables [17] CDemoStringTables_items_t [17] -CDemoStringTables_table_t [17] +CDemoStringTables_table_t [21] CDemoSyncTick [17] CDemoUserCmd [17] CDiskDemoBuffer [15] @@ -224,21 +224,21 @@ CFlattenedSerializerSpewFunc_Log [3] CFlattenedSerializerSpewListener<1> [6] CFrameMemDumpJob [7] CFrameSnapshotManager [1] -CGameClientConnectPrerequisite [8] [2] +CGameClientConnectPrerequisite [2] [8] CGameEventDispatcher [1] CGameEventSystem [21] CGameInfo [25] -CGameInfo_CCSGameInfo [21] -CGameInfo_CDotaGameInfo [27] +CGameInfo_CCSGameInfo [19] +CGameInfo_CDotaGameInfo [23] CGameInfo_CDotaGameInfo_CHeroSelectEvent [17] -CGameInfo_CDotaGameInfo_CPlayerInfo [21] +CGameInfo_CDotaGameInfo_CPlayerInfo [19] CGameResourceManifest::CCallbackInternal_Steam_OnUGCDownload [4] CGameResourceManifestPrerequisite [7] CGameResourceService [44] CGameUIFuncs [17] CGameUIRenderCallbackGroupLayer [3] CGameUIRenderLayer [3] -CGameUIService [3] [40] +CGameUIService [40] [3] CGenericExprPart [5] CGenericExpr_Binary [5] CGenericExpr_BoolLiteral [5] @@ -254,10 +254,10 @@ CHLTVBroadcast [1] CHLTVBroadcast::CHttpCallback [3] CHLTVBuildFullFrameSplitJob [7] CHLTVClient [1] [79] -CHLTVClientState [1] [142] [1] [1] [2] +CHLTVClientState [142] [1] [1] [2] [1] CHLTVDemoRecorder [22] CHLTVFrame [2] -CHLTVServer [5] [21] [2] [2] [76] +CHLTVServer [2] [2] [76] [5] [21] CHLTVServerAsync [10] CHLTVServerAsync::CAsyncCall [2] CHLTVServerAsync::CAsyncCall [2] @@ -270,10 +270,10 @@ CHLTVServerAsync::CHLTVDemoRecorderProxy [1] CHLTVServerAsync::CReverseCall [2] CHLTVServerAsync::CSendClientMessagesJob [9] CHiddenFieldValuePrinter [16] -CHostStateMgr [1] [23] +CHostStateMgr [23] [1] CHostSubscribeForProfileEvents [1] -CInputService [1] [60] -CInstantReplay [3] [42] +CInputService [60] [1] +CInstantReplay [3] [44] CKV3TransferContextBase [6] CKV3TransferLoadContext [6] CKV3TransferSaveContext [6] @@ -297,9 +297,9 @@ CLoopModeRemoteConnect [8] CLoopModeSourceTVRelay [8] CLoopTypeBase [14] CLoopTypeClientServer [14] -CLoopTypeClientServerService [23] [3] [1] +CLoopTypeClientServerService [1] [23] [3] CLoopTypeSimple [14] -CLoopTypeSimpleService [23] [3] [1] +CLoopTypeSimpleService [1] [23] [3] CMapListService [26] CMaterialSystem2AppSystemDict [7] [1] CMetaDuplicationAutoCompletionFunctor [1] [1] @@ -309,26 +309,26 @@ CMovieRecorder [3] [12] [5] CMsgConvarsWriter [2] CMsgIPCAddress [17] CMsgPlayerInfo [17] -CMsgQAngle [17] +CMsgQAngle [19] CMsgQuaternion [17] -CMsgRGBA [29] +CMsgRGBA [27] CMsgServerNetworkStats [17] CMsgServerNetworkStats_Player [23] -CMsgServerNetworkStats_Port [19] -CMsgServerPeer [21] -CMsgServerUserCmd [21] +CMsgServerNetworkStats_Port [23] +CMsgServerPeer [17] +CMsgServerUserCmd [17] CMsgSource2NetworkFlowQuality [17] -CMsgSource2PerfIntervalSample [19] -CMsgSource2PerfIntervalSample_Tag [27] -CMsgSource2SystemSpecs [21] -CMsgSource2VProfLiteReport [19] +CMsgSource2PerfIntervalSample [17] +CMsgSource2PerfIntervalSample_Tag [29] +CMsgSource2SystemSpecs [19] +CMsgSource2VProfLiteReport [17] CMsgSource2VProfLiteReportItem [17] CMsgTransform [21] CMsgVector [17] -CMsgVector2D [31] -CMsgVoiceAudio [17] -CMsg_CVars [17] -CMsg_CVars_CVar [17] +CMsgVector2D [29] +CMsgVoiceAudio [21] +CMsg_CVars [19] +CMsg_CVars_CVar [19] CNETMsg_DebugOverlay [17] CNETMsg_DebugOverlay_t [17] [5] CNETMsg_NOP [21] @@ -346,7 +346,7 @@ CNETMsg_SpawnGroup_SetCreationTick [17] CNETMsg_SpawnGroup_SetCreationTick_t [17] [5] CNETMsg_SpawnGroup_Unload [17] CNETMsg_SpawnGroup_Unload_t [17] [5] -CNETMsg_SplitScreenUser [19] +CNETMsg_SplitScreenUser [17] CNETMsg_StringCmd [17] CNETMsg_StringCmd_t [17] [5] CNETMsg_Tick [17] @@ -357,13 +357,13 @@ CNetMessagePB<-1,class C2S_CONNECTION_Message,0,1,0> [5] [17] CNetMessagePB<-1,class C2S_CONNECTION_Message,0,1,0>::CProtobufBinding [9] CNetMessagePB<-1,class C2S_CONNECT_Message,0,1,0> [17] [5] CNetMessagePB<-1,class C2S_CONNECT_Message,0,1,0>::CProtobufBinding [9] -CNetMessagePB<-1,class NetMessageConnectionClosed,11,1,0> [5] [17] +CNetMessagePB<-1,class NetMessageConnectionClosed,11,1,0> [17] [5] CNetMessagePB<-1,class NetMessageConnectionClosed,11,1,0>::CProtobufBinding [9] CNetMessagePB<-1,class NetMessageConnectionCrashed,11,1,0> [17] [5] CNetMessagePB<-1,class NetMessageConnectionCrashed,11,1,0>::CProtobufBinding [9] CNetMessagePB<-1,class NetMessageSplitscreenUserChanged,11,1,0> [17] [5] CNetMessagePB<-1,class NetMessageSplitscreenUserChanged,11,1,0>::CProtobufBinding [9] -CNetMessagePB<1073741824,class NetMessagePacketStart,11,1,0> [17] [5] +CNetMessagePB<1073741824,class NetMessagePacketStart,11,1,0> [5] [17] CNetMessagePB<1073741824,class NetMessagePacketStart,11,1,0>::CProtobufBinding [9] CNetMessagePB<1073741825,class NetMessagePacketEnd,11,1,0> [17] [5] CNetMessagePB<1073741825,class NetMessagePacketEnd,11,1,0>::CProtobufBinding [9] @@ -371,13 +371,13 @@ CNetMessagePB<11,class CNETMsg_SpawnGroup_SetCreationTick,15,1,0> [17] [5] CNetMessagePB<11,class CNETMsg_SpawnGroup_SetCreationTick,15,1,0>::CProtobufBinding [9] CNetMessagePB<12,class CNETMsg_SpawnGroup_Unload,15,1,0> [17] [5] CNetMessagePB<12,class CNETMsg_SpawnGroup_Unload,15,1,0>::CProtobufBinding [9] -CNetMessagePB<13,class CNETMsg_SpawnGroup_LoadCompleted,15,1,0> [17] [5] +CNetMessagePB<13,class CNETMsg_SpawnGroup_LoadCompleted,15,1,0> [5] [17] CNetMessagePB<13,class CNETMsg_SpawnGroup_LoadCompleted,15,1,0>::CProtobufBinding [9] CNetMessagePB<15,class CNETMsg_DebugOverlay,16,1,0> [17] [5] CNetMessagePB<15,class CNETMsg_DebugOverlay,16,1,0>::CProtobufBinding [9] -CNetMessagePB<16,class CBidirMsg_RebroadcastGameEvent,5,1,1> [5] [17] +CNetMessagePB<16,class CBidirMsg_RebroadcastGameEvent,5,1,1> [17] [5] CNetMessagePB<16,class CBidirMsg_RebroadcastGameEvent,5,1,1>::CProtobufBinding [9] -CNetMessagePB<17,class CBidirMsg_RebroadcastSource,5,1,1> [5] [17] +CNetMessagePB<17,class CBidirMsg_RebroadcastSource,5,1,1> [17] [5] CNetMessagePB<17,class CBidirMsg_RebroadcastSource,5,1,1>::CProtobufBinding [9] CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0> [17] [5] CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>::CProtobufBinding [9] @@ -431,13 +431,13 @@ CNetMessagePB<48,class CSVCMsg_Print,0,1,0> [17] [5] CNetMessagePB<48,class CSVCMsg_Print,0,1,0>::CProtobufBinding [9] CNetMessagePB<49,class CSVCMsg_Sounds,4,1,0> [17] [5] CNetMessagePB<49,class CSVCMsg_Sounds,4,1,0>::CProtobufBinding [9] -CNetMessagePB<5,class CNETMsg_StringCmd,9,1,0> [5] [17] +CNetMessagePB<5,class CNETMsg_StringCmd,9,1,0> [17] [5] CNetMessagePB<5,class CNETMsg_StringCmd,9,1,0>::CProtobufBinding [9] CNetMessagePB<50,class CSVCMsg_SetView,0,1,0> [17] [5] CNetMessagePB<50,class CSVCMsg_SetView,0,1,0>::CProtobufBinding [9] CNetMessagePB<51,class CSVCMsg_ClearAllStringTables,10,1,0> [17] [5] CNetMessagePB<51,class CSVCMsg_ClearAllStringTables,10,1,0>::CProtobufBinding [9] -CNetMessagePB<52,class CBaseCmdKeyValues,9,1,0> [5] [17] +CNetMessagePB<52,class CBaseCmdKeyValues,9,1,0> [17] [5] CNetMessagePB<52,class CBaseCmdKeyValues,9,1,0>::CProtobufBinding [9] CNetMessagePB<54,class CSVCMsg_SplitScreen,10,1,0> [17] [5] CNetMessagePB<54,class CSVCMsg_SplitScreen,10,1,0>::CProtobufBinding [9] @@ -467,7 +467,7 @@ CNetMessagePB<70,class CSVCMsg_FullFrameSplit,0,1,0> [17] [5] CNetMessagePB<70,class CSVCMsg_FullFrameSplit,0,1,0>::CProtobufBinding [9] CNetMessagePB<71,class CSVCMsg_RconServerDetails,0,1,0> [17] [5] CNetMessagePB<71,class CSVCMsg_RconServerDetails,0,1,0>::CProtobufBinding [9] -CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0> [5] [17] +CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0> [17] [5] CNetMessagePB<72,class CSVCMsg_UserMessage,13,1,0>::CProtobufBinding [9] CNetMessagePB<74,class CSVCMsg_Broadcast_Command,17,1,0> [5] [17] CNetMessagePB<74,class CSVCMsg_Broadcast_Command,17,1,0>::CProtobufBinding [9] @@ -497,13 +497,13 @@ CNetworkClientSpawnGroup_WaitForAssetLoadPrerequisite [6] [2] CNetworkClientSpawnGroup_WaitForChildSpawnGroups [6] CNetworkClientSpawnGroup_WaitForOwnerSpawnGroupPrerequisite [6] CNetworkGameClient [1] [1] [142] [1] [2] [1] -CNetworkGameClientBase [1] [142] [1] [1] [2] +CNetworkGameClientBase [1] [1] [2] [1] [142] CNetworkGameServer [2] [2] [76] -CNetworkGameServerBase [2] [76] [2] +CNetworkGameServerBase [76] [2] [2] CNetworkP2PService [33] -CNetworkServerCreatePrerequisites [2] [8] +CNetworkServerCreatePrerequisites [8] [2] CNetworkServerService [46] [1] -CNetworkServerSpawnGroup [2] [45] [1] +CNetworkServerSpawnGroup [45] [1] [2] CNetworkServerSpawnGroupCreatePrerequisites [2] [8] CNetworkServerSpawnGroup_AllocateEntitiesPrerequisite [6] CNetworkServerSpawnGroup_AllocatePrerequisite [6] @@ -570,44 +570,44 @@ CRenderDevicePresentCallbackClientServer [1] CRenderService [37] [2] CRenderingWorldSession [41] [2] CResourceManifestPrerequisite [6] -CSVCMsgList_GameEvents [17] -CSVCMsgList_GameEvents_event_t [21] -CSVCMsg_BSPDecal [23] +CSVCMsgList_GameEvents [25] +CSVCMsgList_GameEvents_event_t [17] +CSVCMsg_BSPDecal [17] CSVCMsg_Broadcast_Command [17] CSVCMsg_Broadcast_Command_t [5] [17] CSVCMsg_ClassInfo [17] -CSVCMsg_ClassInfo_class_t [17] +CSVCMsg_ClassInfo_class_t [19] CSVCMsg_ClassInfo_t [5] [17] CSVCMsg_ClearAllStringTables [17] CSVCMsg_ClearAllStringTables_t [17] [5] CSVCMsg_CmdKeyValues [17] -CSVCMsg_CmdKeyValues_t [5] [17] +CSVCMsg_CmdKeyValues_t [17] [5] CSVCMsg_CreateStringTable [17] CSVCMsg_CreateStringTable_t [5] [17] CSVCMsg_CrosshairAngle [21] -CSVCMsg_FixAngle [17] +CSVCMsg_FixAngle [19] CSVCMsg_FlattenedSerializer [17] CSVCMsg_FlattenedSerializerWrapper [17] CSVCMsg_FlattenedSerializer_t [5] [17] CSVCMsg_FullFrameSplit [17] -CSVCMsg_FullFrameSplit_t [5] [17] -CSVCMsg_GameEvent [19] -CSVCMsg_GameEventList [27] +CSVCMsg_FullFrameSplit_t [17] [5] +CSVCMsg_GameEvent [17] +CSVCMsg_GameEventList [23] CSVCMsg_GameEventList_descriptor_t [19] -CSVCMsg_GameEventList_key_t [23] +CSVCMsg_GameEventList_key_t [25] CSVCMsg_GameEvent_key_t [19] CSVCMsg_GameSessionConfiguration [17] CSVCMsg_GetCvarValue [17] CSVCMsg_HLTVStatus [17] -CSVCMsg_HltvFixupOperatorStatus [21] +CSVCMsg_HltvFixupOperatorStatus [27] CSVCMsg_HltvReplay [17] CSVCMsg_HltvReplay_t [5] [17] CSVCMsg_Menu [17] CSVCMsg_NextMsgPredicted [17] CSVCMsg_NextMsgPredicted_t [5] [17] CSVCMsg_PacketEntities [17] -CSVCMsg_PacketEntities_alternate_baseline_t [23] -CSVCMsg_PacketEntities_non_transmitted_entities_t [21] +CSVCMsg_PacketEntities_alternate_baseline_t [17] +CSVCMsg_PacketEntities_non_transmitted_entities_t [25] CSVCMsg_PacketEntities_outofpvs_entity_updates_t [17] CSVCMsg_PacketEntities_t [5] [17] CSVCMsg_PacketReliable [17] @@ -616,12 +616,12 @@ CSVCMsg_PeerList [17] CSVCMsg_PeerList_t [5] [17] CSVCMsg_Prefetch [17] CSVCMsg_Print [17] -CSVCMsg_Print_t [17] [5] +CSVCMsg_Print_t [5] [17] CSVCMsg_RconServerDetails [17] CSVCMsg_RconServerDetails_t [17] [5] CSVCMsg_SendTable [17] CSVCMsg_SendTable_sendprop_t [19] -CSVCMsg_ServerInfo [17] +CSVCMsg_ServerInfo [19] CSVCMsg_ServerInfo_t [17] [5] CSVCMsg_ServerSteamID [17] CSVCMsg_ServerSteamID_t [17] [5] @@ -633,14 +633,14 @@ CSVCMsg_Sounds_sounddata_t [19] CSVCMsg_SplitScreen [17] CSVCMsg_SplitScreen_t [17] [5] CSVCMsg_StopSound [17] -CSVCMsg_TempEntities [19] +CSVCMsg_TempEntities [17] CSVCMsg_UpdateStringTable [17] CSVCMsg_UpdateStringTable_t [17] [5] CSVCMsg_UserCommands [17] -CSVCMsg_UserMessage [21] +CSVCMsg_UserMessage [17] CSVCMsg_UserMessage_t [5] [17] CSVCMsg_VoiceData [17] -CSVCMsg_VoiceData_t [17] [5] +CSVCMsg_VoiceData_t [5] [17] CSVCMsg_VoiceInit [17] CSVCMsg_VoiceInit_t [17] [5] CSceneViewDebugOverlaysListener [1] @@ -661,15 +661,15 @@ CServerSideClient::CSendJob_Empty [9] CServerSideClient::CSendJob_HltvReplay [9] CServerSideClient::CSendJob_HltvSource [9] CServerSideClient::CSendJob_Regular [9] -CServerSideClientBase [1] [79] +CServerSideClientBase [79] [1] CSimpleLoggingListener [5] CSimpleWindowsLoggingListener [5] CSoundService [37] CSource1InputHandlerPostClientHandler [1] CSource1InputHandlerPreClientHandler [1] CSource1InputHandler_Client [1] -CSource2Metrics_MatchPerfSummary_Notification [21] -CSource2Metrics_MatchPerfSummary_Notification_Client [19] +CSource2Metrics_MatchPerfSummary_Notification [23] +CSource2Metrics_MatchPerfSummary_Notification_Client [17] CSpawnServerPrerequisite [6] CSplitScreenService [43] [4] CStatsService [6] [27] @@ -686,7 +686,7 @@ CTier1Application [62] CTier2AppSystemDict [7] CTier2Application [62] CToolService [91] -CTvDirectDemoRecorder [10] [1] [5] +CTvDirectDemoRecorder [1] [5] [10] CUGCAddonPathResolver [1] CVConActivateMessage [1] CVConAutoCompleteHelper [1] @@ -731,9 +731,9 @@ IBaseInterface [1] IConnectionlessPacketHandler [2] IDebugVisualizer [6] IDemoMessage [6] -IDemoPlayer [42] +IDemoPlayer [44] IDemoRecorder [21] -IDemoStream [9] +IDemoStream [8] IEngineGameUI [15] IEngineService [23] IEntityReport [6] @@ -755,9 +755,9 @@ NetMessagePacketStart [17] NetMessageSplitscreenUserChanged [17] NetPacketCustomAlloc_std_string [2] PacketEntitiesFilter [1] -ProtoFlattenedSerializerField_t [33] -ProtoFlattenedSerializerField_t_polymorphic_field_t [19] -ProtoFlattenedSerializer_t [37] +ProtoFlattenedSerializerField_t [23] +ProtoFlattenedSerializerField_t_polymorphic_field_t [25] +ProtoFlattenedSerializer_t [33] `anonymous namespace'::_ExceptionPtr_normal [4] `anonymous namespace'::_ExceptionPtr_static [4] `anonymous namespace'::_ExceptionPtr_static [4] diff --git a/dump/windows/vtables/server.json b/dump/windows/vtables/server.json index fb23eb5..1d4c24b 100644 --- a/dump/windows/vtables/server.json +++ b/dump/windows/vtables/server.json @@ -1,26 +1,26 @@ [ { "type_name": "AccountActivity", - "vtable_address": 6461474256, + "vtable_address": 6461474240, "methods": [ 6447665120, - 6455181760, + 6455181776, 6447647168, 6447649120, 6447649184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447649264, 6447650720, 6447649504, 6443766512, 6447650240, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447652272, 6447658768, 6447658752, - 6455179744, + 6455179760, 6447661936 ], "bases": [ @@ -64,7 +64,7 @@ }, { "type_name": "AmmoTypeInfo_t", - "vtable_address": 6461148888, + "vtable_address": 6461148864, "methods": [ 6446838624, 6446815232, @@ -83,7 +83,7 @@ }, { "type_name": "AnimGraphUtils::CTraceFilterAnimGraphSlope", - "vtable_address": 6461036824, + "vtable_address": 6461036808, "methods": [ 6445978480, 6451213696 @@ -190,12 +190,12 @@ 6445320432, 6444708928, 6444685088, - 6458122208, + 6458122224, 6445323312, - 6458123984, - 6458124256, + 6458124000, + 6458124272, 6444673408, - 6458122304, + 6458122320, 6445323744, 6445323984 ], @@ -522,7 +522,7 @@ "vtable_address": 6460699240, "methods": [ 6444613008, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -666,18 +666,18 @@ }, { "type_name": "CAI_ChangeHintGroup", - "vtable_address": 6463006936, + "vtable_address": 6463006952, "methods": [ 6446805888, 6453710336, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -707,7 +707,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758160, 6453807200, 6453809376, @@ -953,7 +953,7 @@ }, { "type_name": "CAI_Expresser", - "vtable_address": 6462377840, + "vtable_address": 6462377872, "methods": [ 6451844128, 6451842752, @@ -990,7 +990,7 @@ }, { "type_name": "CAK47", - "vtable_address": 6461917296, + "vtable_address": 6461917312, "methods": [ 6446805904, 6449542272, @@ -999,9 +999,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -1031,7 +1031,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570544, 6449644304, 6449650560, @@ -1092,7 +1092,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -1315,14 +1315,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -1612,14 +1612,14 @@ }, { "type_name": "CAK47", - "vtable_address": 6461920920, + "vtable_address": 6461920936, "methods": [ 6449650596, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -1788,7 +1788,7 @@ }, { "type_name": "CAK47", - "vtable_address": 6461920976, + "vtable_address": 6461920992, "methods": [ 6449606576, 6449574480 @@ -1960,7 +1960,7 @@ }, { "type_name": "CAimTargetManager", - "vtable_address": 6461027816, + "vtable_address": 6461027800, "methods": [ 6443752688, 6443767152, @@ -2065,18 +2065,18 @@ }, { "type_name": "CAmbientGeneric", - "vtable_address": 6461146912, + "vtable_address": 6461146888, "methods": [ 6445499872, 6446776192, 6445463120, - 6456889008, + 6456889024, 6451873216, 6451753984, 6451910432, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745040, 6451931648, 6451865168, @@ -2106,7 +2106,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451817968, 6446826576, 6446838672, @@ -2369,7 +2369,7 @@ }, { "type_name": "CAmmoDef", - "vtable_address": 6462180904, + "vtable_address": 6462180936, "methods": [ 6445800160, 6450455216, @@ -2378,11 +2378,11 @@ 6450410144, 6450382448, 6450523792, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6450430816, - 6459886716, - 6459886716 + 6459886732, + 6459886732 ], "bases": [ { @@ -2411,7 +2411,7 @@ }, { "type_name": "CAmmoDefTyped", - "vtable_address": 6461731392, + "vtable_address": 6461731408, "methods": [ 6445800160, 6450455216, @@ -2467,7 +2467,7 @@ }, { "type_name": "CAnchorList", - "vtable_address": 6462681792, + "vtable_address": 6462681824, "methods": [ 6443752688, 6443767152, @@ -2572,7 +2572,7 @@ }, { "type_name": "CAnimGraphControllerBase", - "vtable_address": 6461143448, + "vtable_address": 6461143424, "methods": [ 6446838720, 6446776256, @@ -2587,7 +2587,7 @@ 6446799312, 6446798400, 6446834944, - 6459886716, + 6459886732, 6450463952, 6450463184 ], @@ -2603,7 +2603,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 6461035128, + "vtable_address": 6461035112, "methods": [ 6443752688, 6443767152, @@ -2722,7 +2722,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 6461035624, + "vtable_address": 6461035608, "methods": [ 6443778400, 6446106272 @@ -2782,7 +2782,7 @@ }, { "type_name": "CAnimGraphGameSystem", - "vtable_address": 6461035648, + "vtable_address": 6461035632, "methods": [ 6446105488 ], @@ -2841,7 +2841,7 @@ }, { "type_name": "CAnimGraphNetworkedVariables", - "vtable_address": 6461031352, + "vtable_address": 6461031336, "methods": [ 6446191520, 6446191984, @@ -2934,7 +2934,7 @@ }, { "type_name": "CAnimGraphSaveRestoreOps", - "vtable_address": 6462161744, + "vtable_address": 6462161808, "methods": [ 6450256816, 6450256912, @@ -2984,7 +2984,7 @@ }, { "type_name": "CAnimGraphTraceFilter", - "vtable_address": 6461031864, + "vtable_address": 6461031848, "methods": [ 6445977136, 6451213696 @@ -3086,7 +3086,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 6461031888, + "vtable_address": 6461031872, "methods": [ 6446210864 ], @@ -3145,7 +3145,7 @@ }, { "type_name": "CAnimGraphTraceProvider", - "vtable_address": 6461031904, + "vtable_address": 6461031888, "methods": [ 6445975404 ], @@ -3204,7 +3204,7 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6462168320, + "vtable_address": 6462168352, "methods": [ 6450308048, 6450447488 @@ -3236,7 +3236,7 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6462168248, + "vtable_address": 6462168280, "methods": [ 6450308224, 6450447632 @@ -3268,7 +3268,7 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6462168296, + "vtable_address": 6462168328, "methods": [ 6450308400, 6450447776 @@ -3300,7 +3300,7 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6462168272, + "vtable_address": 6462168304, "methods": [ 6450308576, 6450447920 @@ -3332,7 +3332,7 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6462168344, + "vtable_address": 6462168376, "methods": [ 6450308752, 6450448064 @@ -3364,7 +3364,7 @@ }, { "type_name": "CAnimTagListenerHelper", - "vtable_address": 6462167488, + "vtable_address": 6462167520, "methods": [ 6450308928, 6450448208 @@ -3396,26 +3396,26 @@ }, { "type_name": "CAnimationBucket", - "vtable_address": 6463247040, - "methods": [ - 6456611632, - 6456614272, - 6456611728, - 6456614320, - 6456614224, - 6456612784, - 6456612352, - 6456614656, - 6456612400, - 6456613664, - 6456613744, - 6456614096, - 6456614176, - 6456614368, - 6456613888, - 6456613920, - 6456614000, - 6456614064 + "vtable_address": 6463247072, + "methods": [ + 6456611648, + 6456614288, + 6456611744, + 6456614336, + 6456614240, + 6456612800, + 6456612368, + 6456614672, + 6456612416, + 6456613680, + 6456613760, + 6456614112, + 6456614192, + 6456614384, + 6456613904, + 6456613936, + 6456614016, + 6456614080 ], "bases": [], "model": { @@ -3429,15 +3429,15 @@ }, { "type_name": "CAttributeContainer", - "vtable_address": 6463034560, + "vtable_address": 6463034576, "methods": [ 6445191936, - 6454110304, - 6454202416, + 6454110320, + 6454202432, 6445184928, - 6454205440, + 6454205456, 6453949744, - 6454143680, + 6454143696, 6453963104, 6453964368 ], @@ -3468,38 +3468,38 @@ }, { "type_name": "CAttributeContainer::NetworkVar_m_Item", - "vtable_address": 6463034312, + "vtable_address": 6463034328, "methods": [ 6444348960, 6453956336, - 6454309920, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186880, - 6454184288, - 6454183536, - 6454187488, - 6454184224, - 6454111584, + 6454309936, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186896, + 6454184304, + 6454183552, + 6454187504, + 6454184240, + 6454111600, 6444215488, 6444202768, 6444215504, - 6454312512, - 6454313344, - 6454306320, - 6454312096, - 6454313216, + 6454312528, + 6454313360, + 6454306336, + 6454312112, + 6454313232, 6444215520, 6444213808, - 6454309616, - 6454309376, - 6454311520, - 6454317952, - 6454202528, + 6454309632, + 6454309392, + 6454311536, + 6454317968, + 6454202544, 6444294960, - 6454205504 + 6454205520 ], "bases": [ { @@ -3542,12 +3542,12 @@ }, { "type_name": "CAttributeDictSaveDataOps", - "vtable_address": 6463268056, + "vtable_address": 6463268088, "methods": [ - 6456900992, - 6456901520, - 6456901984, - 6456902016, + 6456901008, + 6456901536, + 6456902000, + 6456902032, 6443767104, 6443738720 ], @@ -3592,7 +3592,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6461861624, + "vtable_address": 6461861640, "methods": [ 6449383680, 6449455744, @@ -3627,13 +3627,13 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6463076568, + "vtable_address": 6463076600, "methods": [ 6453949104, - 6454213312, 6454213328, - 6454213392, - 6454213376 + 6454213344, + 6454213408, + 6454213392 ], "bases": [ { @@ -3662,13 +3662,13 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue,class Vec3D >", - "vtable_address": 6463076616, + "vtable_address": 6463076648, "methods": [ 6453949056, - 6454213216, - 6454213264, - 6454213296, - 6454213280 + 6454213232, + 6454213280, + 6454213312, + 6454213296 ], "bases": [ { @@ -3697,7 +3697,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6461883984, + "vtable_address": 6461884000, "methods": [ 6449383632, 6449455664, @@ -3732,7 +3732,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6461794176, + "vtable_address": 6461794192, "methods": [ 6449226512, 6449265616, @@ -3767,7 +3767,7 @@ }, { "type_name": "CAttributeIterator_GetTypedAttributeValue", - "vtable_address": 6461794224, + "vtable_address": 6461794240, "methods": [ 6449226464, 6449265536, @@ -3802,7 +3802,7 @@ }, { "type_name": "CAttributeIterator_HasAttribute", - "vtable_address": 6461723672, + "vtable_address": 6461723688, "methods": [ 6448893840, 6449102576, @@ -3852,12 +3852,12 @@ }, { "type_name": "CAttributeList", - "vtable_address": 6463078936, + "vtable_address": 6463078968, "methods": [ - 6454329616, - 6454318896, - 6454322640, - 6454322544 + 6454329632, + 6454318912, + 6454322656, + 6454322560 ], "bases": [], "model": { @@ -3871,15 +3871,15 @@ }, { "type_name": "CAttributeManager", - "vtable_address": 6463034232, + "vtable_address": 6463034248, "methods": [ - 6454277280, - 6454110320, - 6454202432, - 6454205520, - 6454205456, + 6454277296, + 6454110336, + 6454202448, + 6454205536, + 6454205472, 6453949824, - 6454143840, + 6454143856, 6453963488, 6453964368 ], @@ -3895,22 +3895,22 @@ }, { "type_name": "CAttribute_String", - "vtable_address": 6461489200, + "vtable_address": 6461489184, "methods": [ 6447784080, - 6455181760, + 6455181776, 6447779680, 6447780816, 6447781264, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447781296, 6447782128, 6447781648, 6443766512, 6447782016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447782368, 6447783600, 6447783584 @@ -3956,7 +3956,7 @@ }, { "type_name": "CAudioEventTagListener", - "vtable_address": 6462168144, + "vtable_address": 6462168176, "methods": [ 6450309408, 6450448352 @@ -4200,13 +4200,13 @@ 6446805920, 6445267056, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445306064, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445267248, 6445316352, 6450455600, @@ -4236,7 +4236,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445275536, 6445293120, 6445300928, @@ -4527,7 +4527,7 @@ }, { "type_name": "CBaseAnimGraph", - "vtable_address": 6462168368, + "vtable_address": 6462168400, "methods": [ 6446805696, 6450309472, @@ -4536,9 +4536,9 @@ 6450464528, 6450317360, 6450523824, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -4568,7 +4568,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389488, 6446826592, 6450498816, @@ -4893,7 +4893,7 @@ }, { "type_name": "CBaseAnimGraph::CRagdollAsyncConflictFixup", - "vtable_address": 6462168208, + "vtable_address": 6462168240, "methods": [ 6450318640, 6450523808, @@ -4927,7 +4927,7 @@ }, { "type_name": "CBaseAnimGraph::NetworkVar_m_RagdollPose", - "vtable_address": 6462168168, + "vtable_address": 6462168200, "methods": [ 6445891632, 6450432512, @@ -4961,7 +4961,7 @@ }, { "type_name": "CBaseAnimGraphAnimGraphController", - "vtable_address": 6461143640, + "vtable_address": 6461143616, "methods": [ 6446838768, 6446776448, @@ -5007,7 +5007,7 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 6462167512, + "vtable_address": 6462167544, "methods": [ 6450498864, 6450328160, @@ -5099,7 +5099,7 @@ }, { "type_name": "CBaseAnimGraphController", - "vtable_address": 6462167792, + "vtable_address": 6462167824, "methods": [ 6450447472 ], @@ -5158,7 +5158,7 @@ }, { "type_name": "CBaseAnimGraphController::NetworkVar_m_animGraphNetworkedVars", - "vtable_address": 6462166976, + "vtable_address": 6462167008, "methods": [ 6446191520, 6446191984, @@ -5265,18 +5265,18 @@ }, { "type_name": "CBaseButton", - "vtable_address": 6461160328, + "vtable_address": 6461160296, "methods": [ 6446805920, 6446776512, 6450347280, - 6456889008, + 6456889024, 6451873232, 6450317376, 6451911872, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -5306,7 +5306,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451817984, 6446826608, 6446838816, @@ -5618,7 +5618,7 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 6461875376, + "vtable_address": 6461875392, "methods": [ 6446805904, 6449384112, @@ -5627,9 +5627,9 @@ 6449458272, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -5659,7 +5659,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449428400, 6449461440, 6449471376, @@ -5720,7 +5720,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -5943,14 +5943,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449407632, @@ -6230,14 +6230,14 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 6461879032, + "vtable_address": 6461879048, "methods": [ 6449471412, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -6392,7 +6392,7 @@ }, { "type_name": "CBaseCSGrenade", - "vtable_address": 6461879088, + "vtable_address": 6461879104, "methods": [ 6449606576, 6449574480 @@ -6559,9 +6559,9 @@ 6449125920, 6450317360, 6449483136, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -6591,7 +6591,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449428416, 6449461456, 6445378720, @@ -7151,13 +7151,13 @@ 6446805920, 6443735840, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -7187,7 +7187,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443746960, 6443768128, 6443773888, @@ -7478,22 +7478,22 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6461031920, + "vtable_address": 6461031904, "methods": [ 6445975440, - 6455181760, + 6455181776, 6446103968, 6447639136, 6447639248, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447639696, 6446048016, 6447641184, 6443766512, 6447642880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447643552, 6447643696, 6447643616 @@ -7553,22 +7553,22 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6461032256, + "vtable_address": 6461032240, "methods": [ 6445975552, - 6455181760, + 6455181776, 6446103984, 6447665840, 6447665952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447665968, 6446048032, 6447666128, 6443766512, 6447666624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447667072, 6447668320, 6447668304 @@ -7628,22 +7628,22 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6462276216, + "vtable_address": 6462276248, "methods": [ 6450980576, - 6455181760, + 6455181776, 6448407520, 6448408208, 6448408512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448408528, 6448411856, - 6448409168, + 6448409152, 6443766512, 6448410896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448411872, 6448412048, 6448412032 @@ -7703,22 +7703,22 @@ }, { "type_name": "CBaseCmdKeyValues", - "vtable_address": 6461032592, + "vtable_address": 6461032576, "methods": [ 6445975664, - 6455181760, + 6455181776, 6446104096, 6448297680, 6448297776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448297792, 6446048144, 6448297952, 6443766512, 6448298928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448300624, 6448305520, 6448305504 @@ -7778,7 +7778,7 @@ }, { "type_name": "CBaseCombatCharacter", - "vtable_address": 6462370896, + "vtable_address": 6462370928, "methods": [ 6446805712, 6451742912, @@ -7787,9 +7787,9 @@ 6451873280, 6450317360, 6451912960, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451745792, 6451931696, 6450455584, @@ -7819,7 +7819,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818000, 6446826624, 6451893088, @@ -8260,18 +8260,18 @@ }, { "type_name": "CBaseDMStart", - "vtable_address": 6462937248, + "vtable_address": 6462937264, "methods": [ 6445499872, 6453710400, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -8301,7 +8301,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758176, 6453807216, 6453809424, @@ -8561,18 +8561,18 @@ }, { "type_name": "CBaseDoor", - "vtable_address": 6462442008, + "vtable_address": 6462442040, "methods": [ 6446805920, 6451977344, 6450347280, - 6456889008, + 6456889024, 6452080912, 6450317376, 6452096496, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451980640, 6452116368, 6450455600, @@ -8602,7 +8602,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035296, 6446896032, 6452084864, @@ -8935,7 +8935,7 @@ }, { "type_name": "CBaseDoor", - "vtable_address": 6462444208, + "vtable_address": 6462444240, "methods": [ 6451977272, 6452032240 @@ -9037,7 +9037,7 @@ }, { "type_name": "CBaseDynamicIOSignature", - "vtable_address": 6462778600, + "vtable_address": 6462778632, "methods": [ 6452929456 ], @@ -9053,7 +9053,7 @@ }, { "type_name": "CBaseEngineService", - "vtable_address": 6461809728, + "vtable_address": 6461809744, "methods": [ 6449302512, 6449303248, @@ -9204,18 +9204,18 @@ }, { "type_name": "CBaseEntity", - "vtable_address": 6462366344, + "vtable_address": 6462366376, "methods": [ 6446805888, 6451742976, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -9245,7 +9245,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818016, 6446826640, 6451893136, @@ -9477,7 +9477,7 @@ }, { "type_name": "CBaseEntity::Cm_vecVelocityInitializer", - "vtable_address": 6462366320, + "vtable_address": 6462366352, "methods": [ 6451849344, 6451859760 @@ -9509,18 +9509,18 @@ }, { "type_name": "CBaseFilter", - "vtable_address": 6462222096, + "vtable_address": 6462222128, "methods": [ 6446805888, 6450639616, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -9550,7 +9550,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758608, 6450823696, 6450848208, @@ -9826,7 +9826,7 @@ }, { "type_name": "CBaseFlex", - "vtable_address": 6462368296, + "vtable_address": 6462368328, "methods": [ 6446805904, 6451743040, @@ -9835,9 +9835,9 @@ 6450464528, 6450317360, 6450523824, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -9867,7 +9867,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818032, 6446826656, 6451893184, @@ -10220,7 +10220,7 @@ }, { "type_name": "CBaseFlexAlias_funCBaseFlex", - "vtable_address": 6462383744, + "vtable_address": 6462383776, "methods": [ 6446805904, 6451743104, @@ -10229,9 +10229,9 @@ 6450464528, 6450317360, 6450523824, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -10261,7 +10261,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818048, 6451877696, 6451893232, @@ -10628,7 +10628,7 @@ }, { "type_name": "CBaseGameStats", - "vtable_address": 6462284048, + "vtable_address": 6462284080, "methods": [ 6444068272, 6443963520, @@ -10697,7 +10697,7 @@ }, { "type_name": "CBaseGameStats_Driver", - "vtable_address": 6462284504, + "vtable_address": 6462284536, "methods": [ 6451077936, 6443767152, @@ -10802,18 +10802,18 @@ }, { "type_name": "CBaseGameSystemFactory", - "vtable_address": 6461030392, + "vtable_address": 6461030376, "methods": [ - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [ { @@ -10842,7 +10842,7 @@ }, { "type_name": "CBaseGrenade", - "vtable_address": 6461732192, + "vtable_address": 6461732208, "methods": [ 6446805904, 6448893888, @@ -10851,9 +10851,9 @@ 6449125920, 6450317360, 6449180192, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -10883,7 +10883,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448991456, 6449135344, 6449168784, @@ -11290,7 +11290,7 @@ }, { "type_name": "CBaseGrenade", - "vtable_address": 6461734872, + "vtable_address": 6461734888, "methods": [ 6443908752, 6443918000 @@ -11427,10 +11427,10 @@ 6444520016, 6444520272, 6444506496, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6444506192, 6444450848, 6444502448, @@ -11492,18 +11492,18 @@ }, { "type_name": "CBaseModelEntity", - "vtable_address": 6462164704, + "vtable_address": 6462164736, "methods": [ 6446805920, 6450309536, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -11533,7 +11533,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389520, 6446826672, 6450498912, @@ -11807,7 +11807,7 @@ }, { "type_name": "CBaseModelEntity::Cm_vecViewOffsetInitializer", - "vtable_address": 6462164680, + "vtable_address": 6462164712, "methods": [ 6450432000, 6450445856 @@ -11839,7 +11839,7 @@ }, { "type_name": "CBaseModelEntity::NetworkVar_m_Collision", - "vtable_address": 6462164600, + "vtable_address": 6462164632, "methods": [ 6450499248, 6450432352, @@ -11873,7 +11873,7 @@ }, { "type_name": "CBaseModelEntity::NetworkVar_m_Glow", - "vtable_address": 6462164640, + "vtable_address": 6462164672, "methods": [ 6450499344, 6450432432, @@ -11907,18 +11907,18 @@ }, { "type_name": "CBaseMoveBehavior", - "vtable_address": 6462704816, + "vtable_address": 6462704848, "methods": [ 6446805888, 6452729840, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452866944, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452733728, 6451932368, 6451865168, @@ -11948,7 +11948,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789040, 6452842592, 6452856208, @@ -12238,18 +12238,18 @@ }, { "type_name": "CBasePlatTrain", - "vtable_address": 6462954560, + "vtable_address": 6462954576, "methods": [ 6446805920, 6453710464, 6450347280, - 6456889008, + 6456889024, 6453804848, 6450317376, 6453819440, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -12279,7 +12279,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758192, 6453807232, 6453809472, @@ -12582,7 +12582,7 @@ }, { "type_name": "CBasePlayerController", - "vtable_address": 6462177168, + "vtable_address": 6462177200, "methods": [ 6450400064, 6450309600, @@ -12591,9 +12591,9 @@ 6445541280, 6451753984, 6450523952, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315200, 6450537920, 6451865168, @@ -12623,7 +12623,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389536, 6450478480, 6450498960, @@ -12903,7 +12903,7 @@ }, { "type_name": "CBasePlayerPawn", - "vtable_address": 6462373888, + "vtable_address": 6462373920, "methods": [ 6446805936, 6451743168, @@ -12912,9 +12912,9 @@ 6451873296, 6450317360, 6451913808, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451746432, 6451933104, 6450455584, @@ -12944,7 +12944,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818064, 6446826688, 6444348672, @@ -13424,7 +13424,7 @@ }, { "type_name": "CBasePlayerPawn::NetworkVar_m_skybox3d", - "vtable_address": 6462373848, + "vtable_address": 6462373880, "methods": [ 6451893808, 6451858080, @@ -13458,7 +13458,7 @@ }, { "type_name": "CBasePlayerVData", - "vtable_address": 6462171104, + "vtable_address": 6462171136, "methods": [ 6450309664, 6450499008, @@ -13508,7 +13508,7 @@ }, { "type_name": "CBasePlayerWeapon", - "vtable_address": 6462171160, + "vtable_address": 6462171192, "methods": [ 6446805904, 6450309792, @@ -13517,11 +13517,11 @@ 6450464528, 6450317360, 6450526144, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, - 6454284448, + 6454284464, 6450455584, 6451818320, 6451744928, @@ -13549,7 +13549,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389552, 6450478496, 6450499056, @@ -13610,7 +13610,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -13833,14 +13833,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6450421248, 6450378368, 6450375200, @@ -14008,14 +14008,14 @@ }, { "type_name": "CBasePlayerWeapon", - "vtable_address": 6462174144, + "vtable_address": 6462174176, "methods": [ 6450499092, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -14142,10 +14142,10 @@ }, { "type_name": "CBasePlayerWeapon", - "vtable_address": 6462174200, + "vtable_address": 6462174232, "methods": [ - 6454202272, - 6454120288 + 6454202288, + 6454120304 ], "bases": [ { @@ -14272,7 +14272,7 @@ }, { "type_name": "CBasePlayerWeaponVData", - "vtable_address": 6461861528, + "vtable_address": 6461861544, "methods": [ 6449384176, 6449471424, @@ -14324,7 +14324,7 @@ }, { "type_name": "CBaseProp", - "vtable_address": 6461143896, + "vtable_address": 6461143872, "methods": [ 6446805696, 6446776576, @@ -14333,9 +14333,9 @@ 6450464576, 6450317360, 6450526416, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -14365,7 +14365,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389568, 6446826704, 6446838864, @@ -14706,7 +14706,7 @@ }, { "type_name": "CBasePropDoor", - "vtable_address": 6462389416, + "vtable_address": 6462389448, "methods": [ 6446805696, 6451743488, @@ -14715,9 +14715,9 @@ 6451873376, 6450317360, 6451914272, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451746592, 6450870512, 6450455584, @@ -14747,7 +14747,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818080, 6446826720, 6451893280, @@ -15031,19 +15031,19 @@ 6451754048, 6451796336, 6451796352, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6451773952, 6451901312, 6451863232, 6451863216, 6451863552, 6451868688, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6451845632, 6451929248, 6451802256, @@ -15221,7 +15221,7 @@ }, { "type_name": "CBasePropDoor", - "vtable_address": 6462392184, + "vtable_address": 6462392216, "methods": [ 6445170480, 6445186928 @@ -15393,7 +15393,7 @@ }, { "type_name": "CBasePropDoor", - "vtable_address": 6462392208, + "vtable_address": 6462392240, "methods": [ 6451742796, 6451814656 @@ -15565,7 +15565,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 6461670672, + "vtable_address": 6461670656, "methods": [ 6443752688, 6443767152, @@ -15698,7 +15698,7 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 6461671168, + "vtable_address": 6461671152, "methods": [ 6448760752, 6448760768, @@ -15774,9 +15774,9 @@ }, { "type_name": "CBasePulseGameSystem", - "vtable_address": 6461671208, + "vtable_address": 6461671192, "methods": [ - 6459886716, + 6459886732, 6448761408, 6448762368, 6448763600 @@ -15857,35 +15857,35 @@ 6448795792, 6448795872, 6448795856, - 6459042160, - 6459886716, + 6459042176, + 6459886732, 6448783584, - 6459886716, - 6459028368, - 6459027936, - 6459033136, - 6459033056, - 6459043488, - 6459031104, - 6459028880, - 6459031712, - 6459039744, - 6459039488, + 6459886732, + 6459028384, + 6459027952, + 6459033152, + 6459033072, + 6459043504, + 6459031120, + 6459028896, + 6459031728, + 6459039760, 6459039504, - 6459031600, - 6459040416, - 6459035232, - 6459036672, - 6459036960, - 6459029072, - 6459029360, - 6458752800, - 6459032640, - 6459033040, - 6459031552, - 6459030112, - 6459029632, - 6459029568 + 6459039520, + 6459031616, + 6459040432, + 6459035248, + 6459036688, + 6459036976, + 6459029088, + 6459029376, + 6458752816, + 6459032656, + 6459033056, + 6459031568, + 6459030128, + 6459029648, + 6459029584 ], "bases": [ { @@ -15914,10 +15914,10 @@ }, { "type_name": "CBaseTempEntity", - "vtable_address": 6461826760, + "vtable_address": 6461826776, "methods": [ 6449318400, - 6459886716, + 6459886732, 6449318368, 6449318384 ], @@ -15948,18 +15948,18 @@ }, { "type_name": "CBaseToggle", - "vtable_address": 6462386792, + "vtable_address": 6462386824, "methods": [ 6446805920, 6451743552, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -15989,7 +15989,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818096, 6446826736, 6451893328, @@ -16282,13 +16282,13 @@ 6445499856, 6445409376, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6445582112, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -16318,7 +16318,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445495072, 6445552336, 6445560672, @@ -16628,16 +16628,16 @@ }, { "type_name": "CBaseTypesafeVDataFileManager", - "vtable_address": 6462205296, + "vtable_address": 6462205328, "methods": [ 6445800160, - 6459504336, + 6459504352, 6445800528, 6450559216, 6450552640, 6450559360, 6450559344, - 6459886716 + 6459886732 ], "bases": [ { @@ -16683,13 +16683,13 @@ "vtable_address": 6463609800, "methods": [ 6445800160, - 6459504336, + 6459504352, 6445800528, - 6458097376, + 6458097392, 6450552640, - 6458091232, - 6458084160, - 6459886716 + 6458091248, + 6458084176, + 6459886732 ], "bases": [ { @@ -16735,13 +16735,13 @@ "vtable_address": 6463609624, "methods": [ 6445800160, - 6459504336, + 6459504352, 6445800528, - 6458097504, + 6458097520, 6450552640, - 6458092656, - 6458084176, - 6459886716 + 6458092672, + 6458084192, + 6459886732 ], "bases": [ { @@ -16784,26 +16784,26 @@ }, { "type_name": "CBaseUserCmdPB", - "vtable_address": 6461316896, + "vtable_address": 6461316880, "methods": [ 6447058512, - 6455181760, + 6455181776, 6447052880, 6447053520, 6447053824, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447053840, 6447058400, 6447054816, 6443766512, 6447056720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447058416, 6447058448, 6447058432, - 6455179744, + 6455179760, 6447058752 ], "bases": [ @@ -16847,14 +16847,14 @@ }, { "type_name": "CBaseVDataFileManager", - "vtable_address": 6462200032, + "vtable_address": 6462200064, "methods": [ 6445800160, - 6459504336, - 6445800528, 6459504352, + 6445800528, + 6459504368, 6450552640, - 6459886716 + 6459886732 ], "bases": [ { @@ -16883,9 +16883,9 @@ }, { "type_name": "CBaseVModuleMetadataProvider", - "vtable_address": 6463028768, + "vtable_address": 6463028784, "methods": [ - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -16899,18 +16899,18 @@ }, { "type_name": "CBeam", - "vtable_address": 6462393984, + "vtable_address": 6462394016, "methods": [ 6446805920, 6451743616, 6450347280, - 6456889008, + 6456889024, 6451873600, 6450317376, 6451915632, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451747808, 6451933344, 6450455600, @@ -16940,7 +16940,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818112, 6445853920, 6451893376, @@ -17229,7 +17229,7 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 6461062472, + "vtable_address": 6461062456, "methods": [ 6446322720, 6446339312, @@ -17320,25 +17320,25 @@ }, { "type_name": "CBiDirMsg_PredictionEvent_t", - "vtable_address": 6461062520, + "vtable_address": 6461062504, "methods": [ 6446321964, - 6455181760, + 6455181776, 6446516368, 6448108416, 6448108496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448108512, 6446426848, 6448108752, 6443766512, 6448109440, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448110032, 6448110400, - 6448110224 + 6448110384 ], "bases": [ { @@ -17423,26 +17423,26 @@ }, { "type_name": "CBidirMsg_PredictionEvent", - "vtable_address": 6461557440, + "vtable_address": 6461557424, "methods": [ 6448119216, - 6455181760, + 6455181776, 6446516368, 6448108416, 6448108496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448108512, 6446426848, 6448108752, 6443766512, 6448109440, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448110032, 6448110400, - 6448110224, - 6455179744, + 6448110384, + 6455179760, 6448115840 ], "bases": [ @@ -17486,22 +17486,22 @@ }, { "type_name": "CBidirMsg_RebroadcastGameEvent", - "vtable_address": 6461554864, + "vtable_address": 6461554848, "methods": [ 6448088736, - 6455181760, - 6448076336, - 6448076848, - 6448076912, - 6455181808, - 6455178784, + 6455181776, + 6448076352, + 6448076864, + 6448076976, + 6455181824, + 6455178800, 6448077584, 6448079168, 6448078000, 6443766512, 6448078736, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448081296, 6448084400, 6448084384 @@ -17547,22 +17547,22 @@ }, { "type_name": "CBidirMsg_RebroadcastSource", - "vtable_address": 6461555712, + "vtable_address": 6461555696, "methods": [ 6448102848, - 6455181760, - 6448099376, + 6455181776, + 6448099440, 6448099584, 6448099616, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448099632, 6448100240, 6448099680, 6443766512, 6448100064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448100320, 6448100528, 6448100512 @@ -17608,18 +17608,18 @@ }, { "type_name": "CBlood", - "vtable_address": 6462453528, + "vtable_address": 6462453560, "methods": [ 6445499872, 6451977408, 6445463120, - 6456889008, + 6456889024, 6452081200, 6451753984, 6452097664, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -17649,7 +17649,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035312, 6452081952, 6452084912, @@ -17943,7 +17943,7 @@ }, { "type_name": "CBodyComponentBaseAnimGraph", - "vtable_address": 6462168104, + "vtable_address": 6462168136, "methods": [ 6450499104, 6450389584, @@ -18005,7 +18005,7 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 6462167808, + "vtable_address": 6462167840, "methods": [ 6450498864, 6450328160, @@ -18111,7 +18111,7 @@ }, { "type_name": "CBodyComponentBaseAnimGraph::NetworkVar_m_animationController", - "vtable_address": 6462168088, + "vtable_address": 6462168120, "methods": [ 6450447472 ], @@ -18184,7 +18184,7 @@ }, { "type_name": "CBodyComponentBaseModelEntity", - "vtable_address": 6462164560, + "vtable_address": 6462164592, "methods": [ 6450499152, 6450389600, @@ -18545,7 +18545,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 6461037712, + "vtable_address": 6461037696, "methods": [ 6443752688, 6443767152, @@ -18664,7 +18664,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 6461038208, + "vtable_address": 6461038192, "methods": [ 6443778400, 6446106960 @@ -18724,7 +18724,7 @@ }, { "type_name": "CBodyGameSystem", - "vtable_address": 6461038232, + "vtable_address": 6461038216, "methods": [ 6446105776 ], @@ -18783,18 +18783,18 @@ }, { "type_name": "CBombTarget", - "vtable_address": 6461829448, + "vtable_address": 6461829464, "methods": [ 6445499856, 6449324816, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6449344320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -18824,7 +18824,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331488, 6449342528, 6449343568, @@ -19165,14 +19165,14 @@ }, { "type_name": "CBoneSetup", - "vtable_address": 6463247192, + "vtable_address": 6463247224, "methods": [ - 6456613904, - 6456613936, - 6456614016, - 6456614080, - 6456612112, - 6456613824 + 6456613920, + 6456613952, + 6456614032, + 6456614096, + 6456612128, + 6456613840 ], "bases": [ { @@ -19207,8 +19207,8 @@ 6445060816, 6444613680, 6444704384, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6444787168, 6444831744, 6444715904, @@ -19528,14 +19528,14 @@ "vtable_address": 6460740536, "methods": [ 6445049904, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6445072032, 6445073408, - 6459886716, + 6459886732, 6444620064 ], "bases": [], @@ -19550,18 +19550,18 @@ }, { "type_name": "CBreakable", - "vtable_address": 6461208248, + "vtable_address": 6461208216, "methods": [ 6446805920, 6446874592, 6450347280, - 6456889008, + 6456889024, 6452260336, 6450317376, 6452283040, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -19591,7 +19591,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207824, 6446896048, 6446897808, @@ -19908,7 +19908,7 @@ }, { "type_name": "CBreakable", - "vtable_address": 6461210432, + "vtable_address": 6461210400, "methods": [ 6443908752, 6443918000 @@ -19996,7 +19996,7 @@ }, { "type_name": "CBreakableProp", - "vtable_address": 6462174608, + "vtable_address": 6462174640, "methods": [ 6446805696, 6450309968, @@ -20005,9 +20005,9 @@ 6450464656, 6450317360, 6450528144, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450538432, 6450455584, @@ -20037,7 +20037,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389648, 6446826752, 6450499200, @@ -20426,7 +20426,7 @@ }, { "type_name": "CBreakableProp", - "vtable_address": 6462177144, + "vtable_address": 6462177176, "methods": [ 6445170480, 6445186928 @@ -22743,9 +22743,9 @@ 6444892048, 6444902768, 6445027456, - 6459886716, + 6459886732, 6444903536, - 6459886716 + 6459886732 ], "bases": [ { @@ -23527,9 +23527,9 @@ 6444892048, 6444902768, 6444869888, - 6459886716, + 6459886732, 6444903536, - 6459886716 + 6459886732 ], "bases": [ { @@ -24406,8 +24406,8 @@ 6444896048, 6444892032, 6444902752, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6444903536 ], "bases": [], @@ -24432,7 +24432,7 @@ 6444892032, 6444902752, 6444871056, - 6459886716, + 6459886732, 6444903536 ], "bases": [ @@ -24472,9 +24472,9 @@ 6444892048, 6444902768, 6444975696, - 6459886716, + 6459886732, 6444995120, - 6459886716 + 6459886732 ], "bases": [ { @@ -25848,8 +25848,8 @@ 6444896080, 6444892048, 6444902768, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6444903536 ], "bases": [ @@ -26084,7 +26084,7 @@ "vtable_address": 6460710792, "methods": [ 6444873472, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -26208,7 +26208,7 @@ }, { "type_name": "CBuoyancyHelper", - "vtable_address": 6461829376, + "vtable_address": 6461829392, "methods": [ 6449326432, 6445581088, @@ -26251,13 +26251,13 @@ 6445499856, 6444436128, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6444565200, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -26287,7 +26287,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444484944, 6444544576, 6444557648, @@ -26611,7 +26611,7 @@ }, { "type_name": "CC4", - "vtable_address": 6461906768, + "vtable_address": 6461906784, "methods": [ 6446805904, 6449542336, @@ -26620,9 +26620,9 @@ 6449634992, 6450317360, 6449656352, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546720, 6449662208, 6450455584, @@ -26652,7 +26652,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570560, 6449644320, 6449650608, @@ -26936,14 +26936,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449562368, @@ -27219,14 +27219,14 @@ }, { "type_name": "CC4", - "vtable_address": 6461910392, + "vtable_address": 6461910408, "methods": [ 6449650644, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -27381,7 +27381,7 @@ }, { "type_name": "CC4", - "vtable_address": 6461910448, + "vtable_address": 6461910464, "methods": [ 6449606576, 6449574480 @@ -27539,7 +27539,7 @@ }, { "type_name": "CC4::NetworkVar_m_entitySpottedState", - "vtable_address": 6461906728, + "vtable_address": 6461906744, "methods": [ 6443919568, 6449613776, @@ -27573,28 +27573,28 @@ }, { "type_name": "CCLCMsg_BaselineAck", - "vtable_address": 6461559168, + "vtable_address": 6461559152, "methods": [ 6448138576, - 6455181760, + 6455181776, 6448127680, 6448128624, 6448128880, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448128912, 6448130048, - 6448129136, + 6448129168, 6443766512, 6448129744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448130640, 6448130784, 6448130768, - 6455179744, + 6455179760, 6448132448, - 6455179744, + 6455179760, 6448137872 ], "bases": [ @@ -27638,26 +27638,26 @@ }, { "type_name": "CCLCMsg_ClientInfo", - "vtable_address": 6461545264, + "vtable_address": 6461545248, "methods": [ 6448067648, - 6455181760, + 6455181776, 6448058336, 6448058656, 6448059056, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448059216, 6448061424, 6448059696, 6443766512, 6448061024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448061952, 6448062000, 6448061984, - 6455179744, + 6455179760, 6448066784 ], "bases": [ @@ -27701,26 +27701,26 @@ }, { "type_name": "CCLCMsg_CmdKeyValues", - "vtable_address": 6461579416, + "vtable_address": 6461579400, "methods": [ 6448259616, - 6455181760, + 6455181776, 6448251136, 6448251696, 6448251760, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448251776, 6448252400, 6448251840, 6443766512, 6448252288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448252496, 6448253328, 6448252528, - 6455179744, + 6455179760, 6448257952 ], "bases": [ @@ -27764,30 +27764,30 @@ }, { "type_name": "CCLCMsg_Diagnostic", - "vtable_address": 6461608208, + "vtable_address": 6461608192, "methods": [ 6448473728, - 6455181760, + 6455181776, 6448456272, 6448457584, 6448458496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448458528, 6448460112, 6448458832, 6443766512, 6448459648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448460128, 6448460240, 6448460224, - 6455179744, + 6455179760, 6448468272, - 6455179744, + 6455179760, 6448469632, - 6455179744, + 6455179760, 6448473888 ], "bases": [ @@ -27831,26 +27831,26 @@ }, { "type_name": "CCLCMsg_HltvFixupOperatorTick", - "vtable_address": 6461582312, + "vtable_address": 6461582296, "methods": [ 6448292656, - 6455181760, + 6455181776, 6448277840, 6448278640, 6448278880, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448278912, 6448281200, 6448279520, 6443766512, 6448280624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448281216, 6448281408, 6448281392, - 6455179744, + 6455179760, 6448291472 ], "bases": [ @@ -27894,26 +27894,26 @@ }, { "type_name": "CCLCMsg_HltvReplay", - "vtable_address": 6461579576, + "vtable_address": 6461579560, "methods": [ 6448261152, - 6455181760, + 6455181776, 6448248336, 6448248928, 6448249344, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448249360, 6448251552, 6448250224, 6443766512, 6448251152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448251680, 6448252432, 6448252416, - 6455179744, + 6455179760, 6448259792 ], "bases": [ @@ -27957,22 +27957,22 @@ }, { "type_name": "CCLCMsg_ListenEvents", - "vtable_address": 6461559888, + "vtable_address": 6461559872, "methods": [ 6448152688, - 6455181760, + 6455181776, 6448143584, 6448146448, 6448146720, - 6455181808, - 6455178784, - 6448146736, + 6455181824, + 6455178800, + 6448147712, 6448150816, 6448149264, 6443766512, 6448150656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448150880, 6448151152, 6448151136 @@ -28018,29 +28018,29 @@ }, { "type_name": "CCLCMsg_LoadingProgress", - "vtable_address": 6461562864, + "vtable_address": 6461562848, "methods": [ - 6448186960, - 6455181760, + 6448186976, + 6455181776, 6448179184, 6448179520, 6448179552, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448179568, 6448180176, 6448179616, 6443766512, 6448180000, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448180272, 6448182080, 6448181056, - 6455179744, + 6455179760, 6448184512, - 6455179744, - 6448184880 + 6455179760, + 6448184944 ], "bases": [ { @@ -28083,26 +28083,26 @@ }, { "type_name": "CCLCMsg_Move", - "vtable_address": 6461554096, + "vtable_address": 6461554080, "methods": [ 6448084656, - 6455181760, + 6455181776, 6448071328, 6448072480, 6448072544, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448072800, 6448073728, 6448072912, 6443766512, 6448073488, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448074032, 6448075168, 6448075152, - 6455179744, + 6455179760, 6448079200 ], "bases": [ @@ -28146,25 +28146,27 @@ }, { "type_name": "CCLCMsg_RconServerDetails", - "vtable_address": 6461580632, + "vtable_address": 6461580616, "methods": [ 6448265008, - 6455181760, + 6455181776, 6448261552, 6448262000, 6448262064, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448262080, 6448262624, 6448262144, 6443766512, 6448262512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448262816, 6448263088, - 6448263008 + 6448263008, + 6455179760, + 6448264160 ], "bases": [ { @@ -28207,31 +28209,31 @@ }, { "type_name": "CCLCMsg_RequestPause", - "vtable_address": 6461578568, + "vtable_address": 6461578552, "methods": [ - 6448247472, - 6455181760, + 6448247488, + 6455181776, 6448240800, 6448241856, 6448242528, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448242608, 6448244064, 6448243184, 6443766512, 6448243760, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448244096, 6448244208, 6448244192, - 6455179744, + 6455179760, 6448244288, - 6455179744, + 6455179760, 6448245856, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -28274,29 +28276,29 @@ }, { "type_name": "CCLCMsg_RespondCvarValue", - "vtable_address": 6461561472, + "vtable_address": 6461561456, "methods": [ 6448177760, - 6455181760, + 6455181776, 6448155504, 6448157520, 6448157632, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448157664, 6448158848, 6448157872, 6443766512, 6448158480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448160272, 6448160592, 6448160560, - 6455179744, - 6448173152, - 6455179744, - 6448176848 + 6455179760, + 6448173392, + 6455179760, + 6448176864 ], "bases": [ { @@ -28339,28 +28341,28 @@ }, { "type_name": "CCLCMsg_ServerStatus", - "vtable_address": 6461577624, + "vtable_address": 6461577608, "methods": [ 6448236704, - 6455181760, - 6448228464, + 6455181776, + 6448228736, 6448230560, 6448230592, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448230608, 6448231168, 6448230656, 6443766512, 6448231056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448231264, 6448231296, 6448231280, - 6455179744, + 6455179760, 6448235456, - 6455179744, + 6455179760, 6448236944 ], "bases": [ @@ -28404,26 +28406,26 @@ }, { "type_name": "CCLCMsg_SplitPlayerConnect", - "vtable_address": 6461563848, + "vtable_address": 6461563832, "methods": [ 6448197104, - 6455181760, + 6455181776, 6448192416, 6448192592, 6448192832, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448192848, 6448193392, 6448192912, 6443766512, 6448193280, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448193408, 6448193440, 6448193424, - 6455179744, + 6455179760, 6448194672 ], "bases": [ @@ -28467,26 +28469,26 @@ }, { "type_name": "CCLCMsg_SplitPlayerDisconnect", - "vtable_address": 6461576648, + "vtable_address": 6461576632, "methods": [ 6448205616, - 6455181760, + 6455181776, 6448202864, 6448202928, 6448202960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448202976, 6448203760, 6448203200, 6443766512, 6448203584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448203776, 6448204000, 6448203792, - 6455179744, + 6455179760, 6448204672 ], "bases": [ @@ -28530,22 +28532,22 @@ }, { "type_name": "CCLCMsg_VoiceData", - "vtable_address": 6461557600, + "vtable_address": 6461557584, "methods": [ 6448123360, - 6455181760, + 6455181776, 6448111312, 6448111664, 6448111872, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448111888, 6448113744, 6448112400, 6443766512, 6448113072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448114000, 6448114048, 6448114032 @@ -28591,7 +28593,7 @@ }, { "type_name": "CCS2ChickenGraphController", - "vtable_address": 6462091984, + "vtable_address": 6462092000, "methods": [ 6449773568, 6449734080, @@ -28637,7 +28639,7 @@ }, { "type_name": "CCS2WeaponGraphController", - "vtable_address": 6462125400, + "vtable_address": 6462125416, "methods": [ 6450064368, 6449949072, @@ -28788,7 +28790,7 @@ }, { "type_name": "CCSAmmoDef", - "vtable_address": 6461731496, + "vtable_address": 6461731512, "methods": [ 6445800160, 6450455216, @@ -28866,7 +28868,7 @@ 6444023680, 6444005040, 6444005056, - 6459886716, + 6459886732, 6444041200, 6444025056, 6444023376, @@ -31448,7 +31450,7 @@ "type_name": "CCSGCServerSystem", "vtable_address": 6460531640, "methods": [ - 6454315024, + 6454315040, 6443917840, 6443920832, 6443744672, @@ -31494,7 +31496,7 @@ 6443766464, 6443766416, 6443899488, - 6454325632, + 6454325648, 6443773872, 6443772176, 6443774944, @@ -31509,9 +31511,9 @@ 6443899120, 6443888192, 6443925200, - 6454308864, - 6454314176, - 6454315072, + 6454308880, + 6454314192, + 6454315088, 6443917904, 6443917856, 6443915008, @@ -31604,9 +31606,9 @@ "vtable_address": 6460532200, "methods": [ 6443886420, - 6454323056, - 6454323088, - 6454324336 + 6454323072, + 6454323104, + 6454324352 ], "bases": [ { @@ -31782,7 +31784,7 @@ }, { "type_name": "CCSGOPlayerAnimGraphState", - "vtable_address": 6462145184, + "vtable_address": 6462145200, "methods": [ 6450207424 ], @@ -32167,19 +32169,19 @@ "vtable_address": 6460696208, "methods": [ 6444611632, - 6455181760, + 6455181776, 6444730016, 6449356048, 6449356208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6449356224, 6444678944, 6449356544, 6443766512, 6449357728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6449358272, 6449358304, 6449358288 @@ -32267,7 +32269,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 6461794760, + "vtable_address": 6461794776, "methods": [ 6443752688, 6443767152, @@ -32389,7 +32391,7 @@ }, { "type_name": "CCSGOVScriptGameSystem", - "vtable_address": 6461795280, + "vtable_address": 6461795296, "methods": [ 6446669648, 6446670704, @@ -32464,18 +32466,18 @@ }, { "type_name": "CCSGO_TeamIntroCounterTerroristPosition", - "vtable_address": 6461819512, + "vtable_address": 6461819528, "methods": [ 6446805888, 6449295856, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449315568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -32505,7 +32507,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449303840, 6449313360, 6449314128, @@ -32780,18 +32782,18 @@ }, { "type_name": "CCSGO_TeamIntroTerroristPosition", - "vtable_address": 6461817552, + "vtable_address": 6461817568, "methods": [ 6446805888, 6449295968, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449315568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -32821,7 +32823,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449303856, 6449313376, 6449314176, @@ -33096,18 +33098,18 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition", - "vtable_address": 6461811672, + "vtable_address": 6461811688, "methods": [ 6446805888, 6449296080, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449315568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -33137,7 +33139,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449303872, 6449313392, 6449314224, @@ -33341,7 +33343,7 @@ 6443756992, 6443778016, 6451826192, - 6459886716 + 6459886732 ], "bases": [ { @@ -33384,35 +33386,35 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_agentItem", - "vtable_address": 6461810928, + "vtable_address": 6461810944, "methods": [ 6444348960, 6449297168, - 6454309920, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186880, - 6454184288, - 6454183536, - 6454187488, - 6454184224, - 6454111584, + 6454309936, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186896, + 6454184304, + 6454183552, + 6454187504, + 6454184240, + 6454111600, 6444215488, 6444202768, 6444215504, - 6454312512, - 6454313344, - 6454306320, - 6454312096, - 6454313216, + 6454312528, + 6454313360, + 6454306336, + 6454312112, + 6454313232, 6444215520, 6444213808, - 6454309616, - 6454309376, - 6454311520, - 6454317952, + 6454309632, + 6454309392, + 6454311536, + 6454317968, 6449306752, 6444294960, 6449308560 @@ -33458,35 +33460,35 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_glovesItem", - "vtable_address": 6461811176, + "vtable_address": 6461811192, "methods": [ 6444348960, 6449297232, - 6454309920, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186880, - 6454184288, - 6454183536, - 6454187488, - 6454184224, - 6454111584, + 6454309936, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186896, + 6454184304, + 6454183552, + 6454187504, + 6454184240, + 6454111600, 6444215488, 6444202768, 6444215504, - 6454312512, - 6454313344, - 6454306320, - 6454312096, - 6454313216, + 6454312528, + 6454313360, + 6454306336, + 6454312112, + 6454313232, 6444215520, 6444213808, - 6454309616, - 6454309376, - 6454311520, - 6454317952, + 6454309632, + 6454309392, + 6454311536, + 6454317968, 6449306832, 6444294960, 6449308592 @@ -33532,35 +33534,35 @@ }, { "type_name": "CCSGO_TeamPreviewCharacterPosition::NetworkVar_m_weaponItem", - "vtable_address": 6461811424, + "vtable_address": 6461811440, "methods": [ 6444348960, 6449297296, - 6454309920, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186880, - 6454184288, - 6454183536, - 6454187488, - 6454184224, - 6454111584, + 6454309936, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186896, + 6454184304, + 6454183552, + 6454187504, + 6454184240, + 6454111600, 6444215488, 6444202768, 6444215504, - 6454312512, - 6454313344, - 6454306320, - 6454312096, - 6454313216, + 6454312528, + 6454313360, + 6454306336, + 6454312112, + 6454313232, 6444215520, 6444213808, - 6454309616, - 6454309376, - 6454311520, - 6454317952, + 6454309632, + 6454309392, + 6454311536, + 6454317968, 6449308144, 6444294960, 6449308624 @@ -33606,18 +33608,18 @@ }, { "type_name": "CCSGO_TeamSelectCounterTerroristPosition", - "vtable_address": 6461815592, + "vtable_address": 6461815608, "methods": [ 6446805888, 6449296192, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449315568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -33647,7 +33649,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449303888, 6449313408, 6449314272, @@ -33922,18 +33924,18 @@ }, { "type_name": "CCSGO_TeamSelectTerroristPosition", - "vtable_address": 6461813632, + "vtable_address": 6461813648, "methods": [ 6446805888, 6449296304, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449315568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -33963,7 +33965,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449303904, 6449313424, 6449314320, @@ -34238,18 +34240,18 @@ }, { "type_name": "CCSGO_WingmanIntroCounterTerroristPosition", - "vtable_address": 6461823432, + "vtable_address": 6461823448, "methods": [ 6446805888, 6449296416, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449315568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -34279,7 +34281,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449303920, 6449313440, 6449314368, @@ -34568,18 +34570,18 @@ }, { "type_name": "CCSGO_WingmanIntroTerroristPosition", - "vtable_address": 6461821472, + "vtable_address": 6461821488, "methods": [ 6446805888, 6449296528, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449315568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -34609,7 +34611,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449303936, 6449313456, 6449314416, @@ -34898,7 +34900,7 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 6461716424, + "vtable_address": 6461716600, "methods": [ 6448839536, 6448839744, @@ -35130,7 +35132,7 @@ }, { "type_name": "CCSGameConfiguration", - "vtable_address": 6461716728, + "vtable_address": 6461716904, "methods": [ 6448837404, 6448837416, @@ -35357,7 +35359,7 @@ }, { "type_name": "CCSGameModeRules", - "vtable_address": 6461735944, + "vtable_address": 6461735960, "methods": [ 6449168832, 6448894240, @@ -35382,7 +35384,7 @@ }, { "type_name": "CCSGameModeRules_ArmsRace", - "vtable_address": 6461736120, + "vtable_address": 6461736136, "methods": [ 6449168880, 6448894400, @@ -35422,7 +35424,7 @@ }, { "type_name": "CCSGameModeRules_Deathmatch", - "vtable_address": 6461736976, + "vtable_address": 6461736992, "methods": [ 6449168928, 6448894464, @@ -35462,7 +35464,7 @@ }, { "type_name": "CCSGameModeRules_Noop", - "vtable_address": 6461736032, + "vtable_address": 6461736048, "methods": [ 6449168976, 6448894528, @@ -35502,7 +35504,7 @@ }, { "type_name": "CCSGameRules", - "vtable_address": 6461729720, + "vtable_address": 6461729736, "methods": [ 6449169024, 6449123088, @@ -35716,7 +35718,7 @@ }, { "type_name": "CCSGameRules", - "vtable_address": 6461730752, + "vtable_address": 6461730768, "methods": [ 6444023440, 6444023696, @@ -35806,7 +35808,7 @@ }, { "type_name": "CCSGameRules::NetworkVar_m_RetakeRules", - "vtable_address": 6461729664, + "vtable_address": 6461729680, "methods": [ 6448897280, 6449235808, @@ -35870,18 +35872,18 @@ }, { "type_name": "CCSGameRulesProxy", - "vtable_address": 6461727712, + "vtable_address": 6461727728, "methods": [ 6446805888, 6448894768, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -35911,7 +35913,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448991472, 6449135360, 6449169072, @@ -37048,7 +37050,7 @@ }, { "type_name": "CCSHitboxSystem", - "vtable_address": 6462091736, + "vtable_address": 6462091752, "methods": [ 6449725104, 6449721840 @@ -37080,7 +37082,7 @@ }, { "type_name": "CCSInventoryManager", - "vtable_address": 6462087592, + "vtable_address": 6462087608, "methods": [ 6449712160, 6449714752, @@ -37090,11 +37092,11 @@ 6443744688, 6443744704, 6449705568, - 6454100160, + 6454100176, 6443740800, 6443740784, 6443740768, - 6454100816, + 6454100832, 6443775920, 6443775936, 6443767344, @@ -37143,7 +37145,7 @@ 6449707328, 6449700240, 6449718416, - 6454112672, + 6454112688, 6449700736, 6449709392, 6449707312 @@ -37203,7 +37205,7 @@ }, { "type_name": "CCSMapEntityFilter", - "vtable_address": 6461698136, + "vtable_address": 6461698312, "methods": [ 6448832896, 6448832400 @@ -37235,18 +37237,18 @@ }, { "type_name": "CCSMinimapBoundary", - "vtable_address": 6461789976, + "vtable_address": 6461789992, "methods": [ 6446805888, 6449226720, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -37276,7 +37278,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449243024, 6449274128, 6449275200, @@ -37524,20 +37526,20 @@ "type_name": "CCSNavArea", "vtable_address": 6460794512, "methods": [ - 6458044432, + 6458044448, 6444484464, 6445320480, - 6458118240, - 6458120928, + 6458118256, + 6458120944, 6445356768, 6445343248, 6444557584, 6445347152, - 6458061280, + 6458061296, 6445353504, 6445353472, 6445353456, - 6458118848, + 6458118864, 6444510848, 6445336400, 6445344944, @@ -37610,9 +37612,9 @@ 6451873296, 6444127200, 6449779600, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451746432, 6444407424, 6444316720, @@ -37642,7 +37644,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443996880, 6444041072, 6444052608, @@ -38384,7 +38386,7 @@ }, { "type_name": "CCSObserver_CameraServices", - "vtable_address": 6462092656, + "vtable_address": 6462092672, "methods": [ 6449773616, 6449747040, @@ -38471,7 +38473,7 @@ }, { "type_name": "CCSObserver_MovementServices", - "vtable_address": 6462093168, + "vtable_address": 6462093184, "methods": [ 6449773664, 6449747056, @@ -38558,7 +38560,7 @@ }, { "type_name": "CCSObserver_ObserverServices", - "vtable_address": 6462092896, + "vtable_address": 6462092912, "methods": [ 6449773712, 6449747072, @@ -38635,7 +38637,7 @@ }, { "type_name": "CCSObserver_UseServices", - "vtable_address": 6462093608, + "vtable_address": 6462093624, "methods": [ 6449773760, 6449747088, @@ -38701,18 +38703,18 @@ }, { "type_name": "CCSPetPlacement", - "vtable_address": 6461791928, + "vtable_address": 6461791944, "methods": [ 6446805888, 6449226784, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -38742,7 +38744,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449243040, 6449274144, 6449275248, @@ -39026,13 +39028,13 @@ 6446805920, 6443957920, 6450347280, - 6456889008, + 6456889024, 6444028720, 6450317376, 6444055296, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -39062,7 +39064,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443996896, 6444041088, 6444052656, @@ -39465,7 +39467,7 @@ }, { "type_name": "CCSPlayerBase_CameraServices", - "vtable_address": 6462092416, + "vtable_address": 6462092432, "methods": [ 6449773808, 6449747104, @@ -39538,7 +39540,7 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 6462107192, + "vtable_address": 6462107208, "methods": [ 6450400064, 6449791392, @@ -39547,9 +39549,9 @@ 6445541280, 6451753984, 6449925744, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315200, 6449934896, 6451865168, @@ -39579,7 +39581,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449835776, 6449913552, 6449921472, @@ -39904,7 +39906,7 @@ }, { "type_name": "CCSPlayerController", - "vtable_address": 6462109440, + "vtable_address": 6462109456, "methods": [ 6449791332, 6449834096 @@ -39992,7 +39994,7 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices", - "vtable_address": 6462146656, + "vtable_address": 6462146672, "methods": [ 6450207472, 6450151776, @@ -40032,7 +40034,7 @@ }, { "type_name": "CCSPlayerController_ActionTrackingServices::NetworkVar_m_matchStats", - "vtable_address": 6462146608, + "vtable_address": 6462146624, "methods": [ 6449314464, 6450178816, @@ -40081,7 +40083,7 @@ }, { "type_name": "CCSPlayerController_DamageServices", - "vtable_address": 6462145096, + "vtable_address": 6462145112, "methods": [ 6450207520, 6450151792, @@ -40121,7 +40123,7 @@ }, { "type_name": "CCSPlayerController_InGameMoneyServices", - "vtable_address": 6462146792, + "vtable_address": 6462146808, "methods": [ 6450207568, 6450151808, @@ -40161,7 +40163,7 @@ }, { "type_name": "CCSPlayerController_InventoryServices", - "vtable_address": 6462147760, + "vtable_address": 6462147776, "methods": [ 6450207616, 6450151824, @@ -40201,13 +40203,13 @@ }, { "type_name": "CCSPlayerInventory", - "vtable_address": 6462087392, + "vtable_address": 6462087408, "methods": [ 6449716944, 6449717168, 6449717056, - 6454275888, - 6454276320, + 6454275904, + 6454276336, 6449700368, 6449706848, 6449711600, @@ -40216,17 +40218,17 @@ 6449707344, 6449707952, 6449711808, - 6454276352, + 6454276368, 6449714688, - 6454230432, + 6454230448, 6449718272, - 6454277440, + 6454277456, 6449714704, 6449714736, 6449718400, 6449713728, 6449713920, - 6454202288 + 6454202304 ], "bases": [ { @@ -40278,9 +40280,9 @@ 6444329488, 6444127200, 6444381440, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6444105616, 6444407344, 6444316720, @@ -40310,7 +40312,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444206752, 6444341024, 6444348720, @@ -41222,31 +41224,31 @@ "methods": [ 6444348960, 6444104128, - 6454309920, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186880, - 6454184288, - 6454183536, - 6454187488, - 6454184224, - 6454111584, + 6454309936, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186896, + 6454184304, + 6454183552, + 6454187504, + 6454184240, + 6454111600, 6444215488, 6444202768, 6444215504, - 6454312512, - 6454313344, - 6454306320, - 6454312096, - 6454313216, + 6454312528, + 6454313360, + 6454306336, + 6454312112, + 6454313232, 6444215520, 6444213808, - 6454309616, - 6454309376, - 6454311520, - 6454317952, + 6454309632, + 6454309392, + 6454311536, + 6454317968, 6444268208, 6444294960, 6444294880 @@ -41335,9 +41337,9 @@ 6451873296, 6444127200, 6444381744, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451746432, 6444407424, 6444316720, @@ -41367,7 +41369,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444206768, 6444341040, 6444348768, @@ -42081,18 +42083,18 @@ }, { "type_name": "CCSPlayerResource", - "vtable_address": 6462132456, + "vtable_address": 6462132472, "methods": [ 6446805888, 6449949136, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6450071632, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6449951952, 6450089152, 6451865168, @@ -42122,7 +42124,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450002000, 6450060544, 6450064416, @@ -42598,7 +42600,7 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices", - "vtable_address": 6462094600, + "vtable_address": 6462094616, "methods": [ 6449773856, 6449747120, @@ -42646,7 +42648,7 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisMatch", - "vtable_address": 6462094520, + "vtable_address": 6462094536, "methods": [ 6449773952, 6449757008, @@ -42680,7 +42682,7 @@ }, { "type_name": "CCSPlayer_ActionTrackingServices::NetworkVar_m_weaponPurchasesThisRound", - "vtable_address": 6462094560, + "vtable_address": 6462094576, "methods": [ 6449773952, 6449757072, @@ -42714,7 +42716,7 @@ }, { "type_name": "CCSPlayer_BulletServices", - "vtable_address": 6462109464, + "vtable_address": 6462109480, "methods": [ 6449921520, 6449835792, @@ -42762,7 +42764,7 @@ }, { "type_name": "CCSPlayer_BuyServices", - "vtable_address": 6462109928, + "vtable_address": 6462109944, "methods": [ 6449921568, 6449835808, @@ -42810,7 +42812,7 @@ }, { "type_name": "CCSPlayer_CameraServices", - "vtable_address": 6462110896, + "vtable_address": 6462110912, "methods": [ 6449921616, 6449835824, @@ -42897,7 +42899,7 @@ }, { "type_name": "CCSPlayer_DamageReactServices", - "vtable_address": 6462112912, + "vtable_address": 6462112928, "methods": [ 6449921664, 6449835840, @@ -42945,7 +42947,7 @@ }, { "type_name": "CCSPlayer_DamageReactServices::ITakeDamageListener", - "vtable_address": 6462112888, + "vtable_address": 6462112904, "methods": [ 6445185152, 6444542272 @@ -42962,7 +42964,7 @@ }, { "type_name": "CCSPlayer_HostageServices", - "vtable_address": 6462113976, + "vtable_address": 6462113992, "methods": [ 6449921712, 6449835856, @@ -43010,7 +43012,7 @@ }, { "type_name": "CCSPlayer_ItemServices", - "vtable_address": 6462110080, + "vtable_address": 6462110096, "methods": [ 6449921760, 6449835872, @@ -43077,7 +43079,7 @@ }, { "type_name": "CCSPlayer_MovementServices", - "vtable_address": 6462124792, + "vtable_address": 6462124808, "methods": [ 6450064464, 6450002016, @@ -43189,7 +43191,7 @@ }, { "type_name": "CCSPlayer_PingServices", - "vtable_address": 6462132192, + "vtable_address": 6462132208, "methods": [ 6450064512, 6450002032, @@ -43285,7 +43287,7 @@ }, { "type_name": "CCSPlayer_UseServices", - "vtable_address": 6462128832, + "vtable_address": 6462128848, "methods": [ 6450064560, 6450002048, @@ -43351,7 +43353,7 @@ }, { "type_name": "CCSPlayer_WaterServices", - "vtable_address": 6462125536, + "vtable_address": 6462125552, "methods": [ 6450064608, 6450002064, @@ -43416,7 +43418,7 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 6462145288, + "vtable_address": 6462145304, "methods": [ 6450207664, 6450151840, @@ -43524,7 +43526,7 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 6462145584, + "vtable_address": 6462145600, "methods": [ 6450182048 ], @@ -43597,7 +43599,7 @@ }, { "type_name": "CCSPlayer_WeaponServices", - "vtable_address": 6462145600, + "vtable_address": 6462145616, "methods": [ 6443778400, 6450182160 @@ -43883,13 +43885,13 @@ 6446805888, 6444103072, 6445463120, - 6456889008, + 6456889024, 6444330432, 6451753984, 6444382432, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6444105712, 6451932368, 6451865168, @@ -43919,7 +43921,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444206800, 6444341088, 6444348864, @@ -44239,22 +44241,22 @@ }, { "type_name": "CCSPredictionEvent_AddAimPunch", - "vtable_address": 6461467432, + "vtable_address": 6461467416, "methods": [ 6447593664, - 6455181760, + 6455181776, 6447585360, 6447586304, 6447586512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447586528, 6447588592, 6447587376, 6443766512, 6447588320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447588944, 6447591120, 6447591088 @@ -44300,26 +44302,26 @@ }, { "type_name": "CCSPredictionEvent_DamageTag", - "vtable_address": 6461465384, + "vtable_address": 6461465368, "methods": [ 6447578576, - 6455181760, + 6455181776, 6447565424, 6447566448, 6447566496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447566512, 6447567184, 6447566592, 6443766512, 6447566976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447567440, 6447567648, 6447567472, - 6455179744, + 6455179760, 6447577472 ], "bases": [ @@ -44363,22 +44365,22 @@ }, { "type_name": "CCSPredictionEvent_DamageTag_t", - "vtable_address": 6462113064, + "vtable_address": 6462113080, "methods": [ 6449792416, - 6455181760, + 6455181776, 6447565424, 6447566448, 6447566496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447566512, 6447567184, 6447566592, 6443766512, 6447566976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447567440, 6447567648, 6447567472 @@ -44735,18 +44737,18 @@ }, { "type_name": "CCSSprite", - "vtable_address": 6461849656, + "vtable_address": 6461849672, "methods": [ 6446805920, 6449325104, 6450347280, - 6456889008, + 6456889024, 6453805408, 6450317376, 6453822944, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -44776,7 +44778,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331504, 6449342544, 6449343664, @@ -45083,13 +45085,13 @@ 6446805888, 6444103392, 6445463120, - 6456889008, + 6456889024, 6444330656, 6451753984, 6444383392, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766944, 6445840672, 6451865168, @@ -45119,7 +45121,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444206816, 6444341104, 6444348912, @@ -45382,7 +45384,7 @@ }, { "type_name": "CCSTraceFilterSimple", - "vtable_address": 6462128568, + "vtable_address": 6462128584, "methods": [ 6449949872, 6444054944 @@ -45442,22 +45444,22 @@ }, { "type_name": "CCSUsrMsgPreMatchSayText", - "vtable_address": 6461454584, + "vtable_address": 6461454568, "methods": [ 6447445984, - 6455181760, + 6455181776, 6447434080, 6447434576, 6447434656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447434672, 6447436960, 6447434976, 6443766512, 6447435808, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447437872, 6447438160, 6447438144 @@ -45503,22 +45505,22 @@ }, { "type_name": "CCSUsrMsg_AchievementEvent", - "vtable_address": 6461351192, + "vtable_address": 6461351176, "methods": [ 6447160048, - 6455181760, + 6455181776, 6447152560, 6447154400, 6447155680, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447155696, 6447157808, 6447156736, 6443766512, 6447157408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447157840, 6447157952, 6447157936 @@ -45564,22 +45566,22 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney", - "vtable_address": 6461332160, + "vtable_address": 6461332144, "methods": [ 6447083808, - 6455181760, + 6455181776, 6447077904, 6447078320, 6447078352, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447078368, 6447079072, 6447078416, 6443766512, 6447078896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447079424, 6447081648, 6447081632 @@ -45625,7 +45627,7 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney_t", - "vtable_address": 6462144384, + "vtable_address": 6462144400, "methods": [ 6450119872, 6448682944, @@ -45730,22 +45732,22 @@ }, { "type_name": "CCSUsrMsg_AdjustMoney_t", - "vtable_address": 6462144432, + "vtable_address": 6462144448, "methods": [ 6450118884, - 6455181760, + 6455181776, 6447077904, 6447078320, 6447078352, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447078368, 6447079072, 6447078416, 6443766512, 6447078896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447079424, 6447081648, 6447081632 @@ -45847,22 +45849,22 @@ }, { "type_name": "CCSUsrMsg_AmmoDenied", - "vtable_address": 6461468584, + "vtable_address": 6461468568, "methods": [ 6447608224, - 6455181760, + 6455181776, 6447601024, 6447601088, 6447601120, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447601136, 6447601744, 6447601184, 6443766512, 6447601568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447601776, 6447603200, 6447602768 @@ -45908,26 +45910,26 @@ }, { "type_name": "CCSUsrMsg_BarTime", - "vtable_address": 6461466984, + "vtable_address": 6461466968, "methods": [ 6447593136, - 6455181760, + 6455181776, 6447585264, 6447585472, 6447585536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447585552, 6447587360, 6447585936, 6443766512, 6447586656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447588688, 6447589968, 6447589792, - 6455179744, + 6455179760, 6447591936 ], "bases": [ @@ -45971,22 +45973,22 @@ }, { "type_name": "CCSUsrMsg_CallVoteFailed", - "vtable_address": 6461387504, + "vtable_address": 6461387488, "methods": [ 6447335504, - 6455181760, + 6455181776, 6444539632, 6447331408, 6447331440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447331456, 6444484624, 6447331568, 6443766512, 6447332368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447332896, 6447333664, 6447333648 @@ -46140,19 +46142,19 @@ "vtable_address": 6460650304, "methods": [ 6444435096, - 6455181760, + 6455181776, 6444539632, 6447331408, 6447331440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447331456, 6444484624, 6447331568, 6443766512, 6447332368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447332896, 6447333664, 6447333648 @@ -46254,22 +46256,22 @@ }, { "type_name": "CCSUsrMsg_ClientInfo", - "vtable_address": 6461435720, + "vtable_address": 6461435704, "methods": [ 6447413760, - 6455181760, + 6455181776, 6447403984, 6447404336, 6447404368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447404384, 6447405104, 6447404448, 6443766512, 6447404912, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447405856, 6447410224, 6447410112 @@ -46315,22 +46317,22 @@ }, { "type_name": "CCSUsrMsg_CloseCaption", - "vtable_address": 6461459208, + "vtable_address": 6461459192, "methods": [ 6447510592, - 6455181760, + 6455181776, 6447502240, 6447502992, 6447503072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447503824, 6447505712, 6447504528, 6443766512, 6447505360, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447505744, 6447505856, 6447505840 @@ -46376,30 +46378,30 @@ }, { "type_name": "CCSUsrMsg_CloseCaptionDirect", - "vtable_address": 6461460792, + "vtable_address": 6461460776, "methods": [ 6447524976, - 6455181760, + 6455181776, 6447518704, 6447518944, 6447519152, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447519168, 6447520416, 6447519280, 6443766512, 6447520096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447520448, 6447521456, 6447521440, - 6455179744, + 6455179760, 6447523744, - 6455179744, + 6455179760, 6447524848, - 6455179744, + 6455179760, 6447525392 ], "bases": [ @@ -46443,28 +46445,28 @@ }, { "type_name": "CCSUsrMsg_CounterStrafe", - "vtable_address": 6461456504, + "vtable_address": 6461456488, "methods": [ 6447475984, - 6455181760, + 6455181776, 6443917104, 6447454256, 6447454320, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447454336, 6443899680, 6447454432, 6443766512, 6447455856, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447463024, 6447467440, 6447466768, - 6455179744, + 6455179760, 6447473216, - 6455179744, + 6455179760, 6447474720 ], "bases": [ @@ -46616,19 +46618,19 @@ "vtable_address": 6460531112, "methods": [ 6443886432, - 6455181760, + 6455181776, 6443917104, 6447454256, 6447454320, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447454336, 6443899680, 6447454432, 6443766512, 6447455856, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447463024, 6447467440, 6447466768 @@ -46730,27 +46732,27 @@ }, { "type_name": "CCSUsrMsg_CurrentRoundOdds", - "vtable_address": 6461377744, + "vtable_address": 6461377728, "methods": [ 6447249968, - 6455181760, + 6455181776, 6444539648, 6447247824, 6447247856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447247872, 6444484640, 6447248016, 6443766512, 6447248400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447248800, 6447248832, 6447248816, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -46901,19 +46903,19 @@ "vtable_address": 6460652608, "methods": [ 6444435108, - 6455181760, + 6455181776, 6444539648, 6447247824, 6447247856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447247872, 6444484640, 6447248016, 6443766512, 6447248400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447248800, 6447248832, 6447248816 @@ -47015,30 +47017,30 @@ }, { "type_name": "CCSUsrMsg_CurrentTimescale", - "vtable_address": 6461350216, + "vtable_address": 6461350200, "methods": [ 6447147216, - 6455181760, + 6455181776, 6447143312, 6447143584, 6447143616, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447143632, 6447144176, 6447143664, 6443766512, 6447144064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447144192, 6447144240, 6447144224, - 6455179744, + 6455179760, 6447145840, - 6455179744, + 6455179760, 6447147120, - 6455179744, + 6455179760, 6447148560 ], "bases": [ @@ -47082,22 +47084,22 @@ }, { "type_name": "CCSUsrMsg_Damage", - "vtable_address": 6461472000, + "vtable_address": 6461471984, "methods": [ 6447633488, - 6455181760, + 6455181776, 6447626800, 6447627008, 6447627104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447627120, 6447628368, 6447627440, 6443766512, 6447628032, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447628384, 6447628560, 6447628544 @@ -47143,22 +47145,22 @@ }, { "type_name": "CCSUsrMsg_DamagePrediction", - "vtable_address": 6461458472, + "vtable_address": 6461458456, "methods": [ 6447505920, - 6455181760, + 6455181776, 6447482640, 6447483056, 6447483184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447483200, 6447486560, 6447483744, 6443766512, 6447485040, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447487328, 6447487520, 6447487504 @@ -47204,7 +47206,7 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 6462106616, + "vtable_address": 6462106632, "methods": [ 6449792480, 6448682544, @@ -47309,22 +47311,22 @@ }, { "type_name": "CCSUsrMsg_Damage_t", - "vtable_address": 6462106664, + "vtable_address": 6462106680, "methods": [ 6449791344, - 6455181760, + 6455181776, 6447626800, 6447627008, 6447627104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447627120, 6447628368, 6447627440, 6443766512, 6447628032, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447628384, 6447628560, 6447628544 @@ -47426,26 +47428,26 @@ }, { "type_name": "CCSUsrMsg_DeepStats", - "vtable_address": 6461378912, + "vtable_address": 6461378896, "methods": [ 6447264672, - 6455181760, + 6455181776, 6447257456, 6447261248, 6447261536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447262080, 6447262848, 6447262176, 6443766512, 6447262720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447262880, 6447263056, 6447263040, - 6455179744, + 6455179760, 6447263776 ], "bases": [ @@ -47489,22 +47491,22 @@ }, { "type_name": "CCSUsrMsg_DesiredTimescale", - "vtable_address": 6461347624, + "vtable_address": 6461347608, "methods": [ 6447134576, - 6455181760, + 6455181776, 6447129760, 6447130192, 6447130224, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447130240, 6447131168, 6447130352, 6443766512, 6447130864, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447131344, 6447131376, 6447131360 @@ -47550,22 +47552,22 @@ }, { "type_name": "CCSUsrMsg_DisconnectToLobby", - "vtable_address": 6461434120, + "vtable_address": 6461434104, "methods": [ 6447396112, - 6455181760, + 6455181776, 6443917120, 6447386816, 6447387376, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447387392, 6443899696, 6447388736, 6443766512, 6447390016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447392016, 6447392224, 6447392208 @@ -47719,19 +47721,19 @@ "vtable_address": 6460530344, "methods": [ 6443886444, - 6455181760, + 6455181776, 6443917120, 6447386816, 6447387376, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447387392, 6443899696, 6447388736, 6443766512, 6447390016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447392016, 6447392224, 6447392208 @@ -47833,28 +47835,28 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData", - "vtable_address": 6461331984, + "vtable_address": 6461331968, "methods": [ 6447081744, - 6455181760, + 6455181776, 6447845024, 6447845232, 6447845360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447845376, 6447846320, 6447845568, 6443766512, 6447846064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447846496, 6447846544, 6447846528, - 6455179744, + 6455179760, 6447079152, - 6455179744, + 6455179760, 6447081904 ], "bases": [ @@ -47898,22 +47900,22 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_Accolade", - "vtable_address": 6461503280, + "vtable_address": 6461503264, "methods": [ 6447819440, - 6455181760, + 6455181776, 6447799776, 6447799872, 6447799920, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447799936, 6447800912, 6447800048, 6443766512, 6447800576, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447800928, 6447801008, 6447800976 @@ -47959,28 +47961,28 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData", - "vtable_address": 6461504704, + "vtable_address": 6461504688, "methods": [ 6447841344, - 6455181760, + 6455181776, 6447825216, 6447825792, 6447826192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447826208, 6447828560, 6447826736, 6443766512, 6447827872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447828720, 6447829328, 6447829312, - 6455179744, + 6455179760, 6447840256, - 6455179744, + 6455179760, 6447840848 ], "bases": [ @@ -48024,7 +48026,7 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 6461725568, + "vtable_address": 6461725584, "methods": [ 6448894832, 6448706576, @@ -48129,22 +48131,22 @@ }, { "type_name": "CCSUsrMsg_EndOfMatchAllPlayersData_t", - "vtable_address": 6461725616, + "vtable_address": 6461725632, "methods": [ 6448892296, - 6455181760, + 6455181776, 6447845024, 6447845232, 6447845360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447845376, 6447846320, 6447845568, 6443766512, 6447846064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447846496, 6447846544, 6447846528 @@ -48246,26 +48248,26 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight", - "vtable_address": 6461506144, + "vtable_address": 6461506128, "methods": [ 6447855616, - 6455181760, + 6455181776, 6447846512, 6447846688, 6447846736, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447846752, 6447847536, 6447846816, 6443766512, 6447847312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447847696, 6447848112, 6447848000, - 6455179744, + 6455179760, 6447854816 ], "bases": [ @@ -48309,7 +48311,7 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight_t", - "vtable_address": 6461899936, + "vtable_address": 6461899952, "methods": [ 6449542688, 6448691104, @@ -48414,22 +48416,22 @@ }, { "type_name": "CCSUsrMsg_EntityOutlineHighlight_t", - "vtable_address": 6461899984, + "vtable_address": 6461900000, "methods": [ 6449542248, - 6455181760, + 6455181776, 6447846512, 6447846688, 6447846736, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447846752, 6447847536, 6447846816, 6443766512, 6447847312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447847696, 6447848112, 6447848000 @@ -48531,22 +48533,22 @@ }, { "type_name": "CCSUsrMsg_Fade", - "vtable_address": 6461455944, + "vtable_address": 6461455928, "methods": [ 6447454928, - 6455181760, + 6455181776, 6447444592, 6447445008, 6447445088, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447445104, 6447446576, 6447445296, 6443766512, 6447446144, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447446608, 6447447872, 6447447856 @@ -48592,22 +48594,22 @@ }, { "type_name": "CCSUsrMsg_GameTitle", - "vtable_address": 6461387648, + "vtable_address": 6461387632, "methods": [ 6447335648, - 6455181760, + 6455181776, 6447331552, 6447332800, 6447332832, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447332848, 6447333632, 6447333072, 6443766512, 6447333456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447333904, 6447334256, 6447334240 @@ -48653,22 +48655,22 @@ }, { "type_name": "CCSUsrMsg_Geiger", - "vtable_address": 6461391528, + "vtable_address": 6461391512, "methods": [ 6447347040, - 6455181760, + 6455181776, 6447338624, 6447339552, 6447339648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447339712, 6447341024, 6447339984, 6443766512, 6447340768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447341264, 6447342256, 6447342240 @@ -48714,26 +48716,26 @@ }, { "type_name": "CCSUsrMsg_HintText", - "vtable_address": 6461475824, + "vtable_address": 6461475808, "methods": [ 6447676288, - 6455181760, + 6455181776, 6447668864, 6447669040, 6447669104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447669120, 6447669808, 6447669328, 6443766512, 6447669696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447669984, 6447671552, 6447671200, - 6455179744, + 6455179760, 6447674816 ], "bases": [ @@ -48777,7 +48779,7 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 6462553336, + "vtable_address": 6462553368, "methods": [ 6452386752, 6448723776, @@ -48882,22 +48884,22 @@ }, { "type_name": "CCSUsrMsg_HintText_t", - "vtable_address": 6462553384, + "vtable_address": 6462553416, "methods": [ 6452386500, - 6455181760, + 6455181776, 6447668864, 6447669040, 6447669104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447669120, 6447669808, 6447669328, 6443766512, 6447669696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447669984, 6447671552, 6447671200 @@ -48999,22 +49001,22 @@ }, { "type_name": "CCSUsrMsg_HudMsg", - "vtable_address": 6461440608, + "vtable_address": 6461440592, "methods": [ 6447418640, - 6455181760, + 6455181776, 6447398576, 6447399072, 6447399232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447399248, 6447401248, 6447399616, 6443766512, 6447400656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447401264, 6447402208, 6447402016 @@ -49060,28 +49062,28 @@ }, { "type_name": "CCSUsrMsg_HudText", - "vtable_address": 6461433656, + "vtable_address": 6461433640, "methods": [ 6447392288, - 6455181760, + 6455181776, 6447372432, 6447375232, 6447375296, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447375312, 6447377232, 6447376064, 6443766512, 6447377120, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447380000, 6447381936, 6447381024, - 6455179744, + 6455179760, 6447386496, - 6455179744, + 6455179760, 6447387456 ], "bases": [ @@ -49125,22 +49127,22 @@ }, { "type_name": "CCSUsrMsg_ItemDrop", - "vtable_address": 6461473776, + "vtable_address": 6461473760, "methods": [ 6447661024, - 6455181760, + 6455181776, 6447643584, 6447643952, 6447644000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447644016, 6447645376, 6447644080, 6443766512, 6447645072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447646800, 6447648336, 6447647440 @@ -49186,28 +49188,28 @@ }, { "type_name": "CCSUsrMsg_ItemPickup", - "vtable_address": 6461463208, + "vtable_address": 6461463192, "methods": [ 6447557152, - 6455181760, + 6455181776, 6447544304, 6447546000, 6447546080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447546096, 6447546832, 6447546176, 6443766512, 6447546544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447548048, 6447548832, 6447548720, - 6455179744, + 6455179760, 6447554096, - 6455179744, + 6455179760, 6447555504 ], "bases": [ @@ -49251,26 +49253,26 @@ }, { "type_name": "CCSUsrMsg_KeyHintText", - "vtable_address": 6461479016, + "vtable_address": 6461479000, "methods": [ 6447698624, - 6455181760, + 6455181776, 6447684752, 6447685008, 6447685072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447685152, 6447686144, 6447685392, 6443766512, 6447685888, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447686848, 6447686896, 6447686880, - 6455179744, + 6455179760, 6447695904 ], "bases": [ @@ -49314,7 +49316,7 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 6461809376, + "vtable_address": 6461809392, "methods": [ 6449296640, 6448727600, @@ -49419,22 +49421,22 @@ }, { "type_name": "CCSUsrMsg_KeyHintText_t", - "vtable_address": 6461809424, + "vtable_address": 6461809440, "methods": [ 6449295668, - 6455181760, + 6455181776, 6447684752, 6447685008, 6447685072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447685152, 6447686144, 6447685392, 6443766512, 6447685888, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447686848, 6447686896, 6447686880 @@ -49536,26 +49538,26 @@ }, { "type_name": "CCSUsrMsg_KillCam", - "vtable_address": 6461335040, + "vtable_address": 6461335024, "methods": [ 6447122432, - 6455181760, + 6455181776, 6447117584, 6447118144, 6447118208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447118448, 6447120320, 6447119008, 6443766512, 6447119920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447120352, 6447120704, 6447120624, - 6455179744, + 6455179760, 6447121232 ], "bases": [ @@ -49599,22 +49601,22 @@ }, { "type_name": "CCSUsrMsg_MarkAchievement", - "vtable_address": 6461469960, + "vtable_address": 6461469944, "methods": [ 6447622784, - 6455181760, + 6455181776, 6447613408, 6447615888, 6447615952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447615968, 6447616544, 6447616048, 6443766512, 6447616432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447616656, 6447617776, 6447617760 @@ -49660,22 +49662,22 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions", - "vtable_address": 6461366584, + "vtable_address": 6461366568, "methods": [ 6447184240, - 6455181760, + 6455181776, 6447172016, 6447172304, 6447172336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447172352, 6447174016, 6447172496, 6443766512, 6447173504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447174544, 6447175872, 6447175296 @@ -49721,7 +49723,7 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 6462107000, + "vtable_address": 6462107016, "methods": [ 6449792576, 6448702720, @@ -49826,22 +49828,22 @@ }, { "type_name": "CCSUsrMsg_MatchEndConditions_t", - "vtable_address": 6462107048, + "vtable_address": 6462107064, "methods": [ 6449791356, - 6455181760, + 6455181776, 6447172016, 6447172304, 6447172336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447172352, 6447174016, 6447172496, 6443766512, 6447173504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447174544, 6447175872, 6447175296 @@ -49943,22 +49945,22 @@ }, { "type_name": "CCSUsrMsg_MatchStatsUpdate", - "vtable_address": 6461472144, + "vtable_address": 6461472128, "methods": [ 6447634752, - 6455181760, + 6455181776, 6447628848, 6447628992, 6447629264, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447629360, 6447631360, 6447629680, 6443766512, 6447631088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447632672, 6447633072, 6447633056 @@ -50004,22 +50006,22 @@ }, { "type_name": "CCSUsrMsg_PlayerDecalDigitalSignature", - "vtable_address": 6461380080, + "vtable_address": 6461380064, "methods": [ 6447281968, - 6455181760, + 6455181776, 6443917136, 6447267264, 6447268912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447269008, 6443899712, 6447270336, 6443766512, 6447271456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447272896, 6447275584, 6447274848 @@ -50173,19 +50175,19 @@ "vtable_address": 6460530728, "methods": [ 6443886456, - 6455181760, + 6455181776, 6443917136, 6447267264, 6447268912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447269008, 6443899712, 6447270336, 6443766512, 6447271456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447272896, 6447275584, 6447274848 @@ -50287,22 +50289,22 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate", - "vtable_address": 6461374744, + "vtable_address": 6461374728, "methods": [ 6447227664, - 6455181760, + 6455181776, 6444021296, 6447203648, 6447203824, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447204336, 6443995904, 6447204864, 6443766512, 6447205600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447206240, 6447207248, 6447207232 @@ -50348,22 +50350,22 @@ }, { "type_name": "CCSUsrMsg_PlayerStatsUpdate_Stat", - "vtable_address": 6461367768, + "vtable_address": 6461367752, "methods": [ 6447197360, - 6455181760, + 6455181776, 6447190960, 6447192608, 6447192640, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447192672, 6447193792, 6447192848, 6443766512, 6447193344, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447194464, 6447195520, 6447195504 @@ -50517,19 +50519,19 @@ "vtable_address": 6460558024, "methods": [ 6443956960, - 6455181760, + 6455181776, 6444021296, 6447203648, 6447203824, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447204336, 6443995904, 6447204864, 6443766512, 6447205600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447206240, 6447207248, 6447207232 @@ -50631,28 +50633,28 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport", - "vtable_address": 6461375464, + "vtable_address": 6461375448, "methods": [ 6447228384, - 6455181760, + 6455181776, 6447218368, 6447218736, 6447218784, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447218800, 6447220896, 6447219072, 6443766512, 6447220080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447220912, 6447221552, 6447221536, - 6455179744, + 6455179760, 6447228528, - 6455179744, + 6455179760, 6447234288 ], "bases": [ @@ -50696,7 +50698,7 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 6462144768, + "vtable_address": 6462144784, "methods": [ 6450119968, 6448675776, @@ -50801,22 +50803,22 @@ }, { "type_name": "CCSUsrMsg_PostRoundDamageReport_t", - "vtable_address": 6462144816, + "vtable_address": 6462144832, "methods": [ 6450118896, - 6455181760, + 6455181776, 6447218368, 6447218736, 6447218784, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447218800, 6447220896, 6447219072, 6443766512, 6447220080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447220912, 6447221552, 6447221536 @@ -50918,22 +50920,22 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate", - "vtable_address": 6461484088, + "vtable_address": 6461484072, "methods": [ 6447748864, - 6455181760, + 6455181776, 6444294992, 6447723248, 6447724080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447724112, 6444204704, 6447725008, 6443766512, 6447726112, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447726576, 6447726896, 6447726864 @@ -50979,30 +50981,30 @@ }, { "type_name": "CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate", - "vtable_address": 6461481496, + "vtable_address": 6461481480, "methods": [ 6447714224, - 6455181760, + 6455181776, 6447702272, 6447703440, 6447703520, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447703568, 6447706864, 6447704704, 6443766512, 6447706048, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447706928, 6447707536, 6447707456, - 6455179744, + 6455179760, 6447712528, - 6455179744, + 6455179760, 6447713280, - 6455179744, + 6455179760, 6447714592 ], "bases": [ @@ -51154,19 +51156,19 @@ "vtable_address": 6460590352, "methods": [ 6444102256, - 6455181760, + 6455181776, 6444294992, 6447723248, 6447724080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447724112, 6444204704, 6447725008, 6443766512, 6447726112, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447726576, 6447726896, 6447726864 @@ -51268,22 +51270,22 @@ }, { "type_name": "CCSUsrMsg_QuestProgress", - "vtable_address": 6461377168, + "vtable_address": 6461377152, "methods": [ 6447249344, - 6455181760, + 6455181776, 6447238688, 6447238880, 6447238928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447238976, 6447241008, 6447239472, 6443766512, 6447240528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447243312, 6447244528, 6447244512 @@ -51329,26 +51331,26 @@ }, { "type_name": "CCSUsrMsg_RadioText", - "vtable_address": 6461474096, + "vtable_address": 6461474080, "methods": [ 6447664400, - 6455181760, + 6455181776, 6444295008, 6447639824, 6447639936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447640112, 6444204720, 6447641712, 6443766512, 6447643056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447643568, 6447643776, 6447643760, - 6455179744, + 6455179760, 6447661552 ], "bases": [ @@ -51500,19 +51502,19 @@ "vtable_address": 6460590736, "methods": [ 6444102268, - 6455181760, + 6455181776, 6444295008, 6447639824, 6447639936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447640112, 6444204720, 6447641712, 6443766512, 6447643056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447643568, 6447643776, 6447643760 @@ -51614,22 +51616,22 @@ }, { "type_name": "CCSUsrMsg_RawAudio", - "vtable_address": 6461464728, + "vtable_address": 6461464712, "methods": [ 6447573536, - 6455181760, + 6455181776, 6444730000, 6447559008, 6447559088, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447559104, 6444678928, 6447559280, 6443766512, 6447560256, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447560960, 6447561360, 6447561296 @@ -51783,19 +51785,19 @@ "vtable_address": 6460696912, "methods": [ 6444611644, - 6455181760, + 6455181776, 6444730000, 6447559008, 6447559088, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447559104, 6444678928, 6447559280, 6443766512, 6447560256, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447560960, 6447561360, 6447561296 @@ -51897,28 +51899,28 @@ }, { "type_name": "CCSUsrMsg_RecurringMissionSchema", - "vtable_address": 6461460312, + "vtable_address": 6461460296, "methods": [ 6447521520, - 6455181760, + 6455181776, 6447511408, 6447511584, 6447511648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447511664, 6447513504, 6447512240, 6443766512, 6447513280, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447515872, 6447516768, 6447516256, - 6455179744, + 6455179760, 6447518864, - 6455179744, + 6455179760, 6447520464 ], "bases": [ @@ -51962,26 +51964,26 @@ }, { "type_name": "CCSUsrMsg_ReloadEffect", - "vtable_address": 6461494312, + "vtable_address": 6461494296, "methods": [ 6447799392, - 6455181760, + 6455181776, 6447785728, 6447786992, 6447787040, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447787056, 6447788960, 6447787840, 6443766512, 6447788544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447789664, 6447789808, 6447789776, - 6455179744, + 6455179760, 6447797120 ], "bases": [ @@ -52025,28 +52027,28 @@ }, { "type_name": "CCSUsrMsg_ReportHit", - "vtable_address": 6461333920, + "vtable_address": 6461333904, "methods": [ 6447115008, - 6455181760, + 6455181776, 6447096016, 6447096128, 6447096160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447096176, 6447096944, 6447096272, 6443766512, 6447096704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447097392, 6447098960, 6447098944, - 6455179744, + 6455179760, 6447110208, - 6455179744, + 6455179760, 6447111536 ], "bases": [ @@ -52090,7 +52092,7 @@ }, { "type_name": "CCSUsrMsg_ReportHit_t", - "vtable_address": 6462106808, + "vtable_address": 6462106824, "methods": [ 6449792672, 6448684624, @@ -52195,22 +52197,22 @@ }, { "type_name": "CCSUsrMsg_ReportHit_t", - "vtable_address": 6462106856, + "vtable_address": 6462106872, "methods": [ 6449791368, - 6455181760, + 6455181776, 6447096016, 6447096128, 6447096160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447096176, 6447096944, 6447096272, 6443766512, 6447096704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447097392, 6447098960, 6447098944 @@ -52312,22 +52314,22 @@ }, { "type_name": "CCSUsrMsg_RequestState", - "vtable_address": 6461392600, + "vtable_address": 6461392584, "methods": [ 6447351712, - 6455181760, + 6455181776, 6447343280, 6447343936, 6447343984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447344320, 6447346976, 6447345488, 6443766512, 6447346800, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447347008, 6447347584, 6447347504 @@ -52373,32 +52375,32 @@ }, { "type_name": "CCSUsrMsg_ResetHud", - "vtable_address": 6461385904, + "vtable_address": 6461385888, "methods": [ 6447323360, - 6455181760, + 6455181776, 6447314816, 6447315040, 6447315072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447315088, 6447315712, 6447315200, 6443766512, 6447315600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447315728, 6447315920, 6447315904, - 6455179744, + 6455179760, 6447320000, - 6455179744, + 6455179760, 6447319888, - 6455179744, + 6455179760, 6447323504, - 6455179744, + 6455179760, 6447323968 ], "bases": [ @@ -52442,22 +52444,22 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames", - "vtable_address": 6461475984, + "vtable_address": 6461475968, "methods": [ 6447676528, - 6455181760, + 6455181776, 6447667056, 6447667296, 6447667408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447667424, 6447668752, 6447667696, 6443766512, 6447668384, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447668768, 6447668880, 6447668784 @@ -52503,7 +52505,7 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 6461714536, + "vtable_address": 6461714712, "methods": [ 6448838848, 6448685760, @@ -52608,22 +52610,22 @@ }, { "type_name": "CCSUsrMsg_RoundBackupFilenames_t", - "vtable_address": 6461714584, + "vtable_address": 6461714760, "methods": [ 6448837392, - 6455181760, + 6455181776, 6447667056, 6447667296, 6447667408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447667424, 6447668752, 6447667696, 6443766512, 6447668384, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447668768, 6447668880, 6447668784 @@ -52725,26 +52727,26 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData", - "vtable_address": 6461369032, + "vtable_address": 6461369016, "methods": [ 6447210768, - 6455181760, + 6455181776, 6444539664, 6447194288, 6447194480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447194496, 6444484656, 6447194832, 6443766512, 6447195328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447195744, 6447196160, 6447196032, - 6455179744, + 6455179760, 6447209200 ], "bases": [ @@ -52788,22 +52790,22 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_InitialConditions", - "vtable_address": 6461366760, + "vtable_address": 6461366744, "methods": [ 6447184384, - 6455181760, + 6455181776, 6447174576, 6447175952, 6447177104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447177120, 6447183184, 6447179936, 6443766512, 6447182784, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447183216, 6447183472, 6447183456 @@ -52849,22 +52851,22 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent", - "vtable_address": 6461351640, + "vtable_address": 6461351624, "methods": [ - 6447161840, - 6455181760, + 6447161856, + 6455181776, 6447140112, 6447140784, 6447141072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447141152, 6447143296, 6447141744, 6443766512, 6447142704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447143520, 6447144000, 6447143984 @@ -52910,22 +52912,22 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Damage", - "vtable_address": 6461347480, + "vtable_address": 6461347464, "methods": [ 6447133408, - 6455181760, + 6455181776, 6447125264, 6447125408, 6447125472, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447125504, 6447127440, 6447125744, 6443766512, 6447126656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447128448, 6447129680, 6447129648 @@ -52971,22 +52973,22 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Objective", - "vtable_address": 6461334608, + "vtable_address": 6461334592, "methods": [ 6447120864, - 6455181760, + 6455181776, 6447116576, 6447116656, 6447116688, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447116704, 6447117568, 6447116992, 6443766512, 6447117392, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447117600, 6447119856, 6447119600 @@ -53032,26 +53034,26 @@ }, { "type_name": "CCSUsrMsg_RoundEndReportData_RerEvent_Victim", - "vtable_address": 6461333600, + "vtable_address": 6461333584, "methods": [ 6447112688, - 6455181760, + 6455181776, 6447093200, 6447093488, 6447093536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447093552, 6447095312, 6447093808, 6443766512, 6447094736, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447095328, 6447095808, 6447095648, - 6455179744, + 6455179760, 6447099136 ], "bases": [ @@ -53203,19 +53205,19 @@ "vtable_address": 6460652224, "methods": [ 6444435120, - 6455181760, + 6455181776, 6444539664, 6447194288, 6447194480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447194496, 6444484656, 6447194832, 6443766512, 6447195328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447195744, 6447196160, 6447196032 @@ -53317,34 +53319,34 @@ }, { "type_name": "CCSUsrMsg_Rumble", - "vtable_address": 6461457880, + "vtable_address": 6461457864, "methods": [ 6447487344, - 6455181760, + 6455181776, 6447476224, 6447476400, 6447476464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447476480, 6447477824, 6447476608, 6443766512, 6447477424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447479248, 6447480192, 6447480176, - 6455179744, + 6455179760, 6447482672, - 6455179744, + 6455179760, 6447483568, - 6455179744, + 6455179760, 6447487680, - 6455179744, + 6455179760, 6447489440, - 6455179744, + 6455179760, 6447490384 ], "bases": [ @@ -53388,26 +53390,26 @@ }, { "type_name": "CCSUsrMsg_SSUI", - "vtable_address": 6461478712, + "vtable_address": 6461478696, "methods": [ 6447698176, - 6455181760, + 6455181776, 6447684912, 6447685760, 6447685808, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447685824, 6447686832, 6447686160, 6443766512, 6447686624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447686864, 6447686992, 6447686976, - 6455179744, + 6455179760, 6447694960 ], "bases": [ @@ -53451,22 +53453,22 @@ }, { "type_name": "CCSUsrMsg_ScoreLeaderboardData", - "vtable_address": 6461378336, + "vtable_address": 6461378320, "methods": [ 6447263296, - 6455181760, + 6455181776, 6447252832, 6447254080, 6447254576, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447255056, 6447256928, 6447255664, 6443766512, 6447256736, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447257968, 6447262560, 6447262160 @@ -53512,28 +53514,28 @@ }, { "type_name": "CCSUsrMsg_SendAudio", - "vtable_address": 6461462696, + "vtable_address": 6461462680, "methods": [ 6447548080, - 6455181760, + 6455181776, 6444295024, 6447540912, 6447541168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447541184, 6444204736, 6447541248, 6443766512, 6447541616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447541872, 6447542080, 6447542064, - 6455179744, + 6455179760, 6447545904, - 6455179744, + 6455179760, 6447546656 ], "bases": [ @@ -53685,19 +53687,19 @@ "vtable_address": 6460591120, "methods": [ 6444102280, - 6455181760, + 6455181776, 6444295024, 6447540912, 6447541168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447541184, 6444204736, 6447541248, 6443766512, 6447541616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447541872, 6447542080, 6447542064 @@ -53799,28 +53801,28 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient", - "vtable_address": 6461455464, + "vtable_address": 6461455448, "methods": [ 6447449280, - 6455181760, + 6455181776, 6447434096, 6447434912, 6447434960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447435568, 6447437680, 6447436064, 6443766512, 6447436976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447437888, 6447438720, 6447438704, - 6455179744, + 6455179760, 6447447008, - 6455179744, + 6455179760, 6447448816 ], "bases": [ @@ -53864,7 +53866,7 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 6462144576, + "vtable_address": 6462144592, "methods": [ 6450120064, 6448683392, @@ -53969,22 +53971,22 @@ }, { "type_name": "CCSUsrMsg_SendLastKillerDamageToClient_t", - "vtable_address": 6462144624, + "vtable_address": 6462144640, "methods": [ 6450118908, - 6455181760, + 6455181776, 6447434096, 6447434912, 6447434960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447435568, 6447437680, 6447436064, 6443766512, 6447436976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447437888, 6447438720, 6447438704 @@ -54086,22 +54088,22 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops", - "vtable_address": 6461488096, + "vtable_address": 6461488080, "methods": [ 6447774160, - 6455181760, + 6455181776, 6447757168, 6447757840, 6447757984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447758176, 6447761440, 6447759360, 6443766512, 6447761296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447762832, 6447762960, 6447762880 @@ -54147,7 +54149,7 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 6461725376, + "vtable_address": 6461725392, "methods": [ 6448894928, 6448685392, @@ -54252,22 +54254,22 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemDrops_t", - "vtable_address": 6461725424, + "vtable_address": 6461725440, "methods": [ 6448892308, - 6455181760, + 6455181776, 6447757168, 6447757840, 6447757984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447758176, 6447761440, 6447759360, 6443766512, 6447761296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447762832, 6447762960, 6447762880 @@ -54369,22 +54371,22 @@ }, { "type_name": "CCSUsrMsg_SendPlayerItemFound", - "vtable_address": 6461489056, + "vtable_address": 6461489040, "methods": [ 6447783904, - 6455181760, + 6455181776, 6443917152, 6447779440, 6447779536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447779552, 6443899728, 6447779696, 6443766512, 6447780192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447781280, 6447782176, 6447782144 @@ -54538,19 +54540,19 @@ "vtable_address": 6460529960, "methods": [ 6443886468, - 6455181760, + 6455181776, 6443917152, 6447779440, 6447779536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447779552, 6443899728, 6447779696, 6443766512, 6447780192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447781280, 6447782176, 6447782144 @@ -54652,26 +54654,26 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout", - "vtable_address": 6461465832, + "vtable_address": 6461465816, "methods": [ 6447581168, - 6455181760, + 6455181776, 6447554816, 6447555696, 6447555904, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447555920, 6447557136, 6447556304, 6443766512, 6447556880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447557392, 6447557424, 6447557408, - 6455179744, + 6455179760, 6447578944 ], "bases": [ @@ -54715,26 +54717,26 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_LoadoutItem", - "vtable_address": 6461462360, + "vtable_address": 6461462344, "methods": [ 6447542192, - 6455181760, + 6455181776, 6447530128, 6447530512, 6447530592, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447530768, 6447532096, 6447531088, 6443766512, 6447531760, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447532128, 6447533024, 6447532640, - 6455179744, + 6455179760, 6447542144 ], "bases": [ @@ -54778,7 +54780,7 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 6462091792, + "vtable_address": 6462091808, "methods": [ 6449735152, 6448682112, @@ -54883,22 +54885,22 @@ }, { "type_name": "CCSUsrMsg_SendPlayerLoadout_t", - "vtable_address": 6462091840, + "vtable_address": 6462091856, "methods": [ 6449734056, - 6455181760, + 6455181776, 6447554816, 6447555696, 6447555904, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447555920, 6447557136, 6447556304, 6443766512, 6447556880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447557392, 6447557424, 6447557408 @@ -55000,22 +55002,22 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll", - "vtable_address": 6461441456, + "vtable_address": 6461441440, "methods": [ 6447428448, - 6455181760, + 6455181776, 6447419824, 6447420352, 6447420432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447420448, 6447421296, 6447420576, 6443766512, 6447421072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447421536, 6447423328, 6447423312 @@ -55061,7 +55063,7 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 6461725184, + "vtable_address": 6461725200, "methods": [ 6448895024, 6448685024, @@ -55166,22 +55168,22 @@ }, { "type_name": "CCSUsrMsg_ServerRankRevealAll_t", - "vtable_address": 6461725232, + "vtable_address": 6461725248, "methods": [ 6448892320, - 6455181760, + 6455181776, 6447419824, 6447420352, 6447420432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447420448, 6447421296, 6447420576, 6443766512, 6447421072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447421536, 6447423328, 6447423312 @@ -55283,26 +55285,26 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate", - "vtable_address": 6461459704, + "vtable_address": 6461459688, "methods": [ 6447518448, - 6455181760, + 6455181776, 6447497056, 6447497312, 6447497472, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447497488, 6447499600, 6447497968, 6443766512, 6447499424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447501456, 6447502176, 6447502144, - 6455179744, + 6455179760, 6447515888 ], "bases": [ @@ -55346,26 +55348,26 @@ }, { "type_name": "CCSUsrMsg_ServerRankUpdate_RankUpdate", - "vtable_address": 6461457288, + "vtable_address": 6461457272, "methods": [ 6447482128, - 6455181760, + 6455181776, 6447466352, 6447470256, 6447470304, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447470320, 6447472832, 6447471152, 6443766512, 6447472192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447472944, 6447473152, 6447473136, - 6455179744, + 6455179760, 6447480256 ], "bases": [ @@ -55409,28 +55411,28 @@ }, { "type_name": "CCSUsrMsg_Shake", - "vtable_address": 6461443704, + "vtable_address": 6461443688, "methods": [ 6447434128, - 6455181760, + 6455181776, 6447426352, 6447426480, 6447426512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447426528, 6447428016, 6447426624, 6443766512, 6447427552, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447428784, 6447428992, 6447428976, - 6455179744, + 6455179760, 6447430560, - 6455179744, + 6455179760, 6447430848 ], "bases": [ @@ -55474,30 +55476,30 @@ }, { "type_name": "CCSUsrMsg_ShootInfo", - "vtable_address": 6461384128, + "vtable_address": 6461384112, "methods": [ 6447299568, - 6455181760, + 6455181776, 6447272576, 6447273440, 6447273840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447273872, 6447276544, 6447274880, 6443766512, 6447276224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447277376, 6447281104, 6447280528, - 6455179744, + 6455179760, 6447297440, - 6455179744, + 6455179760, 6447297520, - 6455179744, + 6455179760, 6447299792 ], "bases": [ @@ -55541,7 +55543,7 @@ }, { "type_name": "CCSUsrMsg_ShootInfo_t", - "vtable_address": 6462779272, + "vtable_address": 6462779304, "methods": [ 6452929520, 6448677888, @@ -55646,22 +55648,22 @@ }, { "type_name": "CCSUsrMsg_ShootInfo_t", - "vtable_address": 6462779320, + "vtable_address": 6462779352, "methods": [ 6452929292, - 6455181760, + 6455181776, 6447272576, 6447273440, 6447273840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447273872, 6447276544, 6447274880, 6443766512, 6447276224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447277376, 6447281104, 6447280528 @@ -55763,22 +55765,22 @@ }, { "type_name": "CCSUsrMsg_ShowMenu", - "vtable_address": 6461465096, + "vtable_address": 6461465080, "methods": [ 6447578256, - 6455181760, + 6455181776, 6447564928, 6447565184, 6447565264, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447565280, 6447566352, 6447565440, 6443766512, 6447566016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447566576, 6447567376, 6447567360 @@ -55824,22 +55826,22 @@ }, { "type_name": "CCSUsrMsg_StopSpectatorMode", - "vtable_address": 6461430360, + "vtable_address": 6461430344, "methods": [ 6447369520, - 6455181760, + 6455181776, 6447366912, 6447367248, 6447367280, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447367296, 6447368160, 6447367424, 6443766512, 6447367808, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447368176, 6447368512, 6447368496 @@ -55885,22 +55887,22 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats", - "vtable_address": 6461493560, + "vtable_address": 6461493544, "methods": [ 6447790768, - 6455181760, + 6455181776, 6447757184, 6447759776, 6447760128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447760400, 6447762816, 6447761456, 6443766512, 6447762320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447762848, 6447763040, 6447763024 @@ -55946,28 +55948,28 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Damage", - "vtable_address": 6461484232, + "vtable_address": 6461484216, "methods": [ 6447752112, - 6455181760, + 6455181776, 6447733520, 6447737136, 6447737184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447737200, 6447739056, 6447737408, 6443766512, 6447738448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447739072, 6447739184, 6447739168, - 6455179744, + 6455179760, 6447742432, - 6455179744, + 6455179760, 6447742720 ], "bases": [ @@ -56011,22 +56013,22 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Fact", - "vtable_address": 6461480488, + "vtable_address": 6461480472, "methods": [ 6447712064, - 6455181760, + 6455181776, 6447702160, 6447702384, 6447702416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447702432, 6447704272, 6447702816, 6443766512, 6447703840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447706880, 6447707184, 6447707024 @@ -56072,28 +56074,28 @@ }, { "type_name": "CCSUsrMsg_SurvivalStats_Placement", - "vtable_address": 6461482520, + "vtable_address": 6461482504, "methods": [ 6447727024, - 6455181760, + 6455181776, 6447715888, 6447716064, 6447716112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447716128, 6447717712, 6447716256, 6443766512, 6447717008, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447718464, 6447718800, 6447718768, - 6455179744, + 6455179760, 6447727200, - 6455179744, + 6455179760, 6447727456 ], "bases": [ @@ -56137,22 +56139,22 @@ }, { "type_name": "CCSUsrMsg_Train", - "vtable_address": 6461429176, + "vtable_address": 6461429160, "methods": [ 6447368192, - 6455181760, + 6455181776, 6447354704, 6447356416, 6447356720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447356864, 6447360064, 6447357456, 6443766512, 6447359456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447363328, 6447364912, 6447364880 @@ -56198,26 +56200,26 @@ }, { "type_name": "CCSUsrMsg_UpdateScreenHealthBar", - "vtable_address": 6461504880, + "vtable_address": 6461504864, "methods": [ 6447844304, - 6455181760, + 6455181776, 6447835600, 6447837648, 6447838800, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447838832, 6447840048, 6447839024, 6443766512, 6447839680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447840064, 6447840176, 6447840160, - 6455179744, + 6455179760, 6447843408 ], "bases": [ @@ -56261,22 +56263,22 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu", - "vtable_address": 6461386896, + "vtable_address": 6461386880, "methods": [ 6447333920, - 6455181760, + 6455181776, 6447306960, 6447308512, 6447308944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447308960, 6447310464, 6447309456, 6443766512, 6447310224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447310560, 6447311520, 6447311104 @@ -56322,22 +56324,22 @@ }, { "type_name": "CCSUsrMsg_VGUIMenu_Keys", - "vtable_address": 6461383504, + "vtable_address": 6461383488, "methods": [ 6447293504, - 6455181760, + 6455181776, 6447286064, 6447286672, 6447286768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447286784, 6447287456, 6447286912, 6443766512, 6447287296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447287472, 6447287648, 6447287632 @@ -56383,30 +56385,30 @@ }, { "type_name": "CCSUsrMsg_VoiceMask", - "vtable_address": 6461469768, + "vtable_address": 6461469752, "methods": [ 6447618624, - 6455181760, + 6455181776, 6447594896, 6447596848, 6447597184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447597296, 6447599296, 6447597840, 6443766512, 6447599104, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447600320, 6447600640, 6447600624, - 6455179744, + 6455179760, 6447616752, - 6455179744, + 6455179760, 6447619280, - 6455179744, + 6455179760, 6447619376 ], "bases": [ @@ -56450,22 +56452,22 @@ }, { "type_name": "CCSUsrMsg_VoiceMask_PlayerMask", - "vtable_address": 6461466520, + "vtable_address": 6461466504, "methods": [ 6447591200, - 6455181760, + 6455181776, 6447581968, 6447582320, 6447582368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447582384, 6447583296, 6447582480, 6443766512, 6447582992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447583936, 6447585168, 6447585152 @@ -56511,22 +56513,22 @@ }, { "type_name": "CCSUsrMsg_VoteFailed", - "vtable_address": 6461435576, + "vtable_address": 6461435560, "methods": [ 6447413616, - 6455181760, + 6455181776, 6444539680, 6447401376, 6447401408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447401424, 6444484672, 6447401520, 6443766512, 6447402352, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447403536, 6447404256, 6447404192 @@ -56680,19 +56682,19 @@ "vtable_address": 6460651456, "methods": [ 6444435132, - 6455181760, + 6455181776, 6444539680, 6447401376, 6447401408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447401424, 6444484672, 6447401520, 6443766512, 6447402352, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447403536, 6447404256, 6447404192 @@ -56794,22 +56796,22 @@ }, { "type_name": "CCSUsrMsg_VotePass", - "vtable_address": 6461433832, + "vtable_address": 6461433816, "methods": [ 6447392528, - 6455181760, + 6455181776, 6444539696, 6447370016, 6447370144, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447370160, 6444484688, 6447370352, 6443766512, 6447370960, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447373904, 6447375856, 6447375600 @@ -56963,19 +56965,19 @@ "vtable_address": 6460651072, "methods": [ 6444435144, - 6455181760, + 6455181776, 6444539696, 6447370016, 6447370144, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447370160, 6444484688, 6447370352, 6443766512, 6447370960, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447373904, 6447375856, 6447375600 @@ -57077,28 +57079,28 @@ }, { "type_name": "CCSUsrMsg_VoteSetup", - "vtable_address": 6461441600, + "vtable_address": 6461441584, "methods": [ 6447428800, - 6455181760, + 6455181776, 6444539712, 6447419152, 6447419200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447419216, 6444484704, 6447419456, 6443766512, 6447419840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447420416, 6447421328, 6447421312, - 6455179744, + 6455179760, 6447426384, - 6455179744, + 6455179760, 6447427120 ], "bases": [ @@ -57250,19 +57252,19 @@ "vtable_address": 6460651840, "methods": [ 6444435156, - 6455181760, + 6455181776, 6444539712, 6447419152, 6447419200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447419216, 6444484704, 6447419456, 6443766512, 6447419840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447420416, 6447421328, 6447421312 @@ -57364,22 +57366,22 @@ }, { "type_name": "CCSUsrMsg_VoteStart", - "vtable_address": 6461428840, + "vtable_address": 6461428824, "methods": [ 6447367072, - 6455181760, + 6455181776, 6444539728, 6447343792, 6447343968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447344000, 6444484720, 6447344512, 6443766512, 6447346160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447346992, 6447347520, 6447347488 @@ -57533,19 +57535,19 @@ "vtable_address": 6460650688, "methods": [ 6444435168, - 6455181760, + 6455181776, 6444539728, 6447343792, 6447343968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447344000, 6444484720, 6447344512, 6443766512, 6447346160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447346992, 6447347520, 6447347488 @@ -57647,28 +57649,28 @@ }, { "type_name": "CCSUsrMsg_WeaponSound", - "vtable_address": 6461504032, + "vtable_address": 6461504016, "methods": [ 6447826032, - 6455181760, + 6455181776, 6447804592, 6447809872, 6447809952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447809968, 6447811312, 6447810192, 6443766512, 6447810880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447811632, 6447811664, 6447811648, - 6455179744, + 6455179760, 6447825376, - 6455179744, + 6455179760, 6447828576 ], "bases": [ @@ -57712,7 +57714,7 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 6461900128, + "vtable_address": 6461900144, "methods": [ 6449542784, 6448694992, @@ -57817,22 +57819,22 @@ }, { "type_name": "CCSUsrMsg_WeaponSound_t", - "vtable_address": 6461900176, + "vtable_address": 6461900192, "methods": [ 6449542260, - 6455181760, + 6455181776, 6447804592, 6447809872, 6447809952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447809968, 6447811312, 6447810192, 6443766512, 6447810880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447811632, 6447811664, 6447811648 @@ -57934,26 +57936,26 @@ }, { "type_name": "CCSUsrMsg_XRankGet", - "vtable_address": 6461383808, + "vtable_address": 6461383792, "methods": [ 6447296464, - 6455181760, + 6455181776, 6447287856, 6447287952, 6447288224, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447288400, 6447289312, 6447288512, 6443766512, 6447289008, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447289472, 6447291488, 6447291472, - 6455179744, + 6455179760, 6447295184 ], "bases": [ @@ -57997,26 +57999,26 @@ }, { "type_name": "CCSUsrMsg_XRankUpd", - "vtable_address": 6461385744, + "vtable_address": 6461385728, "methods": [ 6447322160, - 6455181760, + 6455181776, 6447311504, 6447311856, 6447311904, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447311936, 6447313072, 6447312080, 6443766512, 6447312672, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447313888, 6447314752, 6447314736, - 6455179744, + 6455179760, 6447317040 ], "bases": [ @@ -58060,22 +58062,22 @@ }, { "type_name": "CCSUsrMsg_XpUpdate", - "vtable_address": 6461461448, + "vtable_address": 6461461432, "methods": [ 6447535088, - 6455181760, + 6455181776, 6447523408, 6447523904, 6447524128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447524144, 6447524752, 6447524224, 6443766512, 6447524624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447524960, 6447528096, 6447527792 @@ -58121,7 +58123,7 @@ }, { "type_name": "CCSWeaponBase", - "vtable_address": 6461896248, + "vtable_address": 6461896264, "methods": [ 6446805904, 6449542880, @@ -58130,9 +58132,9 @@ 6449635056, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -58162,7 +58164,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570576, 6449644336, 6449650656, @@ -58223,7 +58225,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -58446,14 +58448,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -58713,14 +58715,14 @@ }, { "type_name": "CCSWeaponBase", - "vtable_address": 6461899856, + "vtable_address": 6461899872, "methods": [ 6449650692, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -58861,7 +58863,7 @@ }, { "type_name": "CCSWeaponBase", - "vtable_address": 6461899912, + "vtable_address": 6461899928, "methods": [ 6449606576, 6449574480 @@ -59005,7 +59007,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 6461913592, + "vtable_address": 6461913608, "methods": [ 6446805904, 6449542944, @@ -59014,9 +59016,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -59046,7 +59048,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570592, 6449644352, 6449650704, @@ -59107,7 +59109,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -59330,14 +59332,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -59613,14 +59615,14 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 6461917216, + "vtable_address": 6461917232, "methods": [ 6449650740, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -59775,7 +59777,7 @@ }, { "type_name": "CCSWeaponBaseGun", - "vtable_address": 6461917272, + "vtable_address": 6461917288, "methods": [ 6449606576, 6449574480 @@ -59933,7 +59935,7 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 6462023080, + "vtable_address": 6462023096, "methods": [ 6446805904, 6449543008, @@ -59942,9 +59944,9 @@ 6449635056, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -59974,7 +59976,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570608, 6449644368, 6449650752, @@ -60035,7 +60037,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -60258,14 +60260,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -60539,14 +60541,14 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 6462026688, + "vtable_address": 6462026704, "methods": [ 6449650788, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -60701,7 +60703,7 @@ }, { "type_name": "CCSWeaponBaseShotgun", - "vtable_address": 6462026744, + "vtable_address": 6462026760, "methods": [ 6449606576, 6449574480 @@ -60859,7 +60861,7 @@ }, { "type_name": "CCSWeaponBaseVData", - "vtable_address": 6461896152, + "vtable_address": 6461896168, "methods": [ 6449543072, 6449650800, @@ -60925,7 +60927,7 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 6461856648, + "vtable_address": 6461856664, "methods": [ 6449361504, 6443767152, @@ -61044,7 +61046,7 @@ }, { "type_name": "CCSWeaponSystem", - "vtable_address": 6461857144, + "vtable_address": 6461857160, "methods": [ 6449361600 ], @@ -61103,21 +61105,21 @@ }, { "type_name": "CCStrike15ItemDefinition", - "vtable_address": 6462086496, + "vtable_address": 6462086512, "methods": [ 6449709728, 6449711744, 6449709936, 6449711312, 6449709984, - 6454112800, + 6454112816, 6449709488, - 6454132240, + 6454132256, 6449709872, 6449711872, 6449709888, 6449711840, - 6454116480, + 6454116496, 6449709568, 6449709520, 6449713600, @@ -61125,14 +61127,14 @@ 6449713616, 6449713648, 6449713664, - 6454064448, + 6454064464, 6449700432, 6449700752, 6449705280, 6449714784, - 6454101840, - 6454104144, - 6454101600, + 6454101856, + 6454104160, + 6454101616, 6449711296, 6449713632, 6449711328, @@ -61140,18 +61142,18 @@ 6449709584, 6449712112, 6449712128, - 6454120544, - 6454119744, - 6454124144, - 6454131312, - 6454125632, + 6454120560, + 6454119760, + 6454124160, + 6454131328, + 6454125648, + 6454120240, 6454120224, - 6454120208, 6449709920, 6449711712, 6449711728, 6449713712, - 6454184208, + 6454184224, 6449712144 ], "bases": [ @@ -61195,10 +61197,10 @@ }, { "type_name": "CCStrike15ItemSchema", - "vtable_address": 6462086888, + "vtable_address": 6462086904, "methods": [ 6453966384, - 6454042256, + 6454042272, 6449711888, 6449709952, 6449709968, @@ -61211,39 +61213,39 @@ 6449709632, 6449709680, 6449709664, - 6454107392, - 6454107552, - 6454097344, + 6454107408, + 6454107568, + 6454097360, 6449711680, 6449711824, - 6454121664, - 6454121408, + 6454121680, + 6454121424, 6449711856, - 6454123264, - 6454122880, - 6454122400, - 6454123072, - 6454122848, + 6454123280, + 6454122896, + 6454122416, + 6454123088, + 6454122864, 6449709376, 6449711280, - 6454115552, + 6454115568, 6449715616, 6449711568, 6449711472, 6449711392, 6449711584, - 6454097600, - 6454106240, + 6454097616, + 6454106256, 6453975840, - 6454038192, - 6454036816, - 6454077536, - 6454113728, - 6454113472, - 6454125440, - 6454124992, + 6454038208, + 6454036832, + 6454077552, + 6454113744, + 6454113488, + 6454125456, + 6454125008, 6449712032, - 6454125264, + 6454125280, 6449700512, 6449712048, 6449711696, @@ -61252,12 +61254,12 @@ 6449707024, 6449706976, 6449707216, - 6454074240, - 6454234752, - 6454071264, - 6454034224, + 6454074256, + 6454234768, + 6454071280, + 6454034240, 6453981088, - 6454046032, + 6454046048, 6449705552 ], "bases": [ @@ -61301,14 +61303,14 @@ }, { "type_name": "CCStrike15ItemSystem", - "vtable_address": 6463062232, + "vtable_address": 6463062264, "methods": [ - 6454115536, - 6454234688, - 6454234736, - 6454225904, + 6454115552, + 6454234704, + 6454234752, + 6454225920, 6453949888, - 6454101024 + 6454101040 ], "bases": [ { @@ -61384,7 +61386,7 @@ }, { "type_name": "CCallResult", - "vtable_address": 6461851960, + "vtable_address": 6461851976, "methods": [ 6449343472, 6449343440, @@ -61417,7 +61419,7 @@ }, { "type_name": "CCallResult", - "vtable_address": 6461851928, + "vtable_address": 6461851944, "methods": [ 6449343536, 6449343504, @@ -61579,12 +61581,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6463082328, + "vtable_address": 6463082360, "methods": [ 6444052576, - 6454329600, + 6454329616, 6443996224, - 6454293520 + 6454293536 ], "bases": [ { @@ -61627,12 +61629,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6463141672, + "vtable_address": 6463141704, "methods": [ 6444052592, - 6455166800, + 6455166816, 6443996240, - 6455162496 + 6455162512 ], "bases": [ { @@ -61675,12 +61677,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6463141712, + "vtable_address": 6463141744, "methods": [ 6444052592, - 6455166784, + 6455166800, 6443996240, - 6455162416 + 6455162432 ], "bases": [ { @@ -61723,12 +61725,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6463281064, + "vtable_address": 6463281096, "methods": [ - 6457072864, - 6457072800, - 6457056096, - 6457044576 + 6457072880, + 6457072816, + 6457056112, + 6457044592 ], "bases": [ { @@ -61771,12 +61773,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6463281184, + "vtable_address": 6463281216, "methods": [ - 6457072880, - 6457072816, - 6457056112, - 6457044656 + 6457072896, + 6457072832, + 6457056128, + 6457044672 ], "bases": [ { @@ -61819,12 +61821,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6463281224, + "vtable_address": 6463281256, "methods": [ 6444052576, - 6457072832, + 6457072848, 6443996224, - 6457044736 + 6457044752 ], "bases": [ { @@ -61867,12 +61869,12 @@ }, { "type_name": "CCallback", - "vtable_address": 6463281104, + "vtable_address": 6463281136, "methods": [ + 6457072880, 6457072864, - 6457072848, - 6457056096, - 6457044816 + 6457056112, + 6457044832 ], "bases": [ { @@ -61918,7 +61920,7 @@ "vtable_address": 6460557688, "methods": [ 6444052576, - 6459886716, + 6459886732, 6443996224, 6443957136 ], @@ -61952,7 +61954,7 @@ "vtable_address": 6460567560, "methods": [ 6444052592, - 6459886716, + 6459886732, 6443996240, 6443957216 ], @@ -61983,12 +61985,12 @@ }, { "type_name": "CCallbackImpl<4>", - "vtable_address": 6463281024, + "vtable_address": 6463281056, "methods": [ - 6457072864, - 6459886716, - 6457056096, - 6457044896 + 6457072880, + 6459886732, + 6457056112, + 6457044912 ], "bases": [ { @@ -62017,12 +62019,12 @@ }, { "type_name": "CCallbackImpl<8>", - "vtable_address": 6463281144, + "vtable_address": 6463281176, "methods": [ - 6457072880, - 6459886716, - 6457056112, - 6457044976 + 6457072896, + 6459886732, + 6457056128, + 6457044992 ], "bases": [ { @@ -62051,18 +62053,18 @@ }, { "type_name": "CChangeLevel", - "vtable_address": 6461299992, + "vtable_address": 6461299960, "methods": [ 6445499856, 6447017872, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453819760, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453716256, 6445591936, 6450455600, @@ -62092,7 +62094,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758208, 6447028096, 6447028816, @@ -62416,7 +62418,7 @@ }, { "type_name": "CChangeLevelIssue", - "vtable_address": 6461738272, + "vtable_address": 6461738288, "methods": [ 6444557600, 6448895120, @@ -62493,7 +62495,7 @@ }, { "type_name": "CCheckClient", - "vtable_address": 6462924960, + "vtable_address": 6462924976, "methods": [ 6443752688, 6443767152, @@ -62607,9 +62609,9 @@ 6445186640, 6450317360, 6445193600, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450644000, 6450870512, 6450455584, @@ -62639,7 +62641,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445167616, 6445187392, 6445191984, @@ -63940,12 +63942,12 @@ "vtable_address": 6460753160, "methods": [ 6445191936, - 6454110304, + 6454110320, 6445182272, 6445184928, 6445184896, 6445145568, - 6454143680, + 6454143696, 6453963104, 6453964368 ], @@ -63990,22 +63992,22 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Request", - "vtable_address": 6461591928, + "vtable_address": 6461591912, "methods": [ 6448397984, - 6455181760, + 6455181776, 6448392288, 6448392784, 6448392864, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448393376, 6448394576, 6448393808, 6443766512, 6448394320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448394624, 6448395744, 6448395568 @@ -64051,22 +64053,22 @@ }, { "type_name": "CChinaAgreementSessions_StartAgreementSessionInGame_Response", - "vtable_address": 6461603456, + "vtable_address": 6461603440, "methods": [ 6448412128, - 6455181760, + 6455181776, 6448402400, 6448403520, 6448403984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448404144, 6448405520, 6448404560, 6443766512, 6448405408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448405808, 6448406032, 6448406016 @@ -64112,11 +64114,11 @@ }, { "type_name": "CChoreoActor", - "vtable_address": 6463252104, + "vtable_address": 6463252136, "methods": [ - 6456667680, - 6456667648, - 6456687600 + 6456667696, + 6456667664, + 6456687616 ], "bases": [ { @@ -64145,11 +64147,11 @@ }, { "type_name": "CChoreoChannel", - "vtable_address": 6463252232, + "vtable_address": 6463252264, "methods": [ - 6456667680, - 6456700320, - 6456667632 + 6456667696, + 6456700336, + 6456667648 ], "bases": [ { @@ -64178,12 +64180,12 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 6463251784, + "vtable_address": 6463251816, "methods": [ + 6456667680, 6456667664, 6456667648, - 6456667632, - 6456659072 + 6456659088 ], "bases": [ { @@ -64226,14 +64228,14 @@ }, { "type_name": "CChoreoEvent", - "vtable_address": 6463251824, + "vtable_address": 6463251856, "methods": [ - 6456663008, - 6456663072, - 6456664256, - 6456663152, - 6456664160, - 6456664192 + 6456663024, + 6456663088, + 6456664272, + 6456663168, + 6456664176, + 6456664208 ], "bases": [ { @@ -64276,15 +64278,15 @@ }, { "type_name": "CChoreoScene", - "vtable_address": 6463251984, + "vtable_address": 6463252016, "methods": [ - 6456674192, - 6456674224, - 6456676512, + 6456674208, 6456674240, - 6456676480, + 6456676528, + 6456674256, 6456676496, - 6456672960 + 6456676512, + 6456672976 ], "bases": [ { @@ -64313,7 +64315,7 @@ }, { "type_name": "CChoreoServicesSaveRestoreOps", - "vtable_address": 6462151896, + "vtable_address": 6462151944, "methods": [ 6450247888, 6450248000, @@ -64363,18 +64365,18 @@ }, { "type_name": "CCitadelSoundOpvarSetOBB", - "vtable_address": 6462913008, + "vtable_address": 6462913024, "methods": [ 6446805888, 6453417360, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453616400, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -64404,7 +64406,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488464, 6453560000, 6453583136, @@ -64650,7 +64652,7 @@ }, { "type_name": "CClassAutoAllocatePtrSaveRestoreOps", - "vtable_address": 6462192616, + "vtable_address": 6462192648, "methods": [ 6443773856, 6450482400, @@ -64700,7 +64702,7 @@ }, { "type_name": "CCleanupRelationshipsGameSystem", - "vtable_address": 6462356576, + "vtable_address": 6462356608, "methods": [ 6443752688, 6443767152, @@ -64805,22 +64807,22 @@ }, { "type_name": "CClientHeaderOverwatchEvidence", - "vtable_address": 6461333120, + "vtable_address": 6461333104, "methods": [ 6447095872, - 6455181760, + 6455181776, 6447083680, 6447084816, 6447084864, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447084880, 6447085936, 6447084976, 6443766512, 6447085648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447085984, 6447090912, 6447089040 @@ -64866,22 +64868,22 @@ }, { "type_name": "CClientMsg_ClientUIEvent", - "vtable_address": 6461478872, + "vtable_address": 6461478856, "methods": [ 6447698464, - 6455181760, + 6455181776, 6443765680, 6447682832, 6447682944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447682960, 6443746592, 6447683344, 6443766512, 6447684288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447684736, 6447685088, 6447685056 @@ -64927,26 +64929,26 @@ }, { "type_name": "CClientMsg_CustomGameEvent", - "vtable_address": 6461473616, + "vtable_address": 6461473600, "methods": [ 6447658880, - 6455181760, + 6455181776, 6446103968, 6447639136, 6447639248, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447639696, 6446048016, 6447641184, 6443766512, 6447642880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447643552, 6447643696, 6447643616, - 6455179744, + 6455179760, 6447650736 ], "bases": [ @@ -64990,26 +64992,26 @@ }, { "type_name": "CClientMsg_CustomGameEventBounce", - "vtable_address": 6461475664, + "vtable_address": 6461475648, "methods": [ 6447675056, - 6455181760, + 6455181776, 6446103984, 6447665840, 6447665952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447665968, 6446048032, 6447666128, 6443766512, 6447666624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447667072, 6447668320, 6447668304, - 6455179744, + 6455179760, 6447673088 ], "bases": [ @@ -65053,30 +65055,30 @@ }, { "type_name": "CClientMsg_DevPaletteVisibilityChangedEvent", - "vtable_address": 6461480296, + "vtable_address": 6461480280, "methods": [ 6447710640, - 6455181760, + 6455181776, 6447702256, 6447702784, 6447703504, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447703536, 6447706032, 6447704304, 6443766512, 6447705920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447706912, 6447707472, 6447707440, - 6455179744, + 6455179760, 6447708512, - 6455179744, + 6455179760, 6447708992, - 6455179744, + 6455179760, 6447710368 ], "bases": [ @@ -65120,30 +65122,30 @@ }, { "type_name": "CClientMsg_ListenForResponseFound", - "vtable_address": 6461484744, + "vtable_address": 6461484728, "methods": [ 6447758336, - 6455181760, + 6455181776, 6447752592, 6447753728, 6447754512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447754768, 6447756368, 6447755136, 6443766512, 6447756192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447756736, 6447756864, 6447756848, - 6455179744, + 6455179760, 6447757200, - 6455179744, + 6455179760, 6447757392, - 6455179744, + 6455179760, 6447758992 ], "bases": [ @@ -65187,22 +65189,22 @@ }, { "type_name": "CClientMsg_RotateAnchor", - "vtable_address": 6461483624, + "vtable_address": 6461483608, "methods": [ 6447739408, - 6455181760, + 6455181776, 6447732288, 6447732352, 6447732384, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447732400, 6447733008, 6447732432, 6443766512, 6447732896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447733040, 6447735680, 6447734112 @@ -65248,28 +65250,28 @@ }, { "type_name": "CClientMsg_WorldUIControllerHasPanelChangedEvent", - "vtable_address": 6461482168, + "vtable_address": 6461482152, "methods": [ 6447724608, - 6455181760, + 6455181776, 6447714192, 6447714672, 6447714720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447714736, 6447715856, 6447714848, 6443766512, 6447715536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447715872, 6447715920, 6447715904, - 6455179744, + 6455179760, 6447720528, - 6455179744, + 6455179760, 6447722640 ], "bases": [ @@ -65421,16 +65423,16 @@ "vtable_address": 6463709816, "methods": [ 6449437488, - 6459829056, + 6459829072, 6449430224, 6449396736, 6449430240, - 6459829280, + 6459829296, 6449388928, - 6459827472, - 6459827568, + 6459827488, + 6459827584, 6449388976, - 6459827840 + 6459827856 ], "bases": [], "model": { @@ -65444,19 +65446,19 @@ }, { "type_name": "CCoJobLambda const &,class CFixedSizeCircularBuffer,16,int> &,float)'::`2':: >", - "vtable_address": 6461883888, + "vtable_address": 6461883904, "methods": [ 6449437488, - 6459829056, + 6459829072, 6449430224, 6449396736, 6449430240, - 6459829280, + 6459829296, 6449388928, 6449383728, 6449388944, 6449388976, - 6459827840 + 6459827856 ], "bases": [ { @@ -65485,7 +65487,7 @@ }, { "type_name": "CCollisionProperty", - "vtable_address": 6462422192, + "vtable_address": 6462422224, "methods": [ 6450499248, 6452057568, @@ -65504,7 +65506,7 @@ }, { "type_name": "CCollisionProperty::NetworkVar_m_collisionAttribute", - "vtable_address": 6462422152, + "vtable_address": 6462422184, "methods": [ 6452086256, 6452062448, @@ -65538,18 +65540,18 @@ }, { "type_name": "CColorCorrection", - "vtable_address": 6462429576, + "vtable_address": 6462429608, "methods": [ 6446805888, 6451977472, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452097888, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451981360, 6451932368, 6451865168, @@ -65579,7 +65581,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035328, 6446826768, 6452084960, @@ -65825,7 +65827,7 @@ }, { "type_name": "CColorCorrectionSystem", - "vtable_address": 6462418400, + "vtable_address": 6462418432, "methods": [ 6443752688, 6443767152, @@ -65958,7 +65960,7 @@ }, { "type_name": "CColorCorrectionSystem", - "vtable_address": 6462418912, + "vtable_address": 6462418944, "methods": [ 6451947176, 6451951744 @@ -66032,18 +66034,18 @@ }, { "type_name": "CColorCorrectionVolume", - "vtable_address": 6462431768, + "vtable_address": 6462431800, "methods": [ 6445499856, 6451977536, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6452098304, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -66073,7 +66075,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035344, 6452081968, 6452085008, @@ -66397,7 +66399,7 @@ }, { "type_name": "CCommandQueueTester", - "vtable_address": 6462775152, + "vtable_address": 6462775184, "methods": [ 6443752688, 6443767152, @@ -66502,18 +66504,18 @@ }, { "type_name": "CCommentaryAuto", - "vtable_address": 6462439448, + "vtable_address": 6462439480, "methods": [ 6446805888, 6451977600, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452098688, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -66543,7 +66545,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035360, 6452081984, 6452085056, @@ -66789,7 +66791,7 @@ }, { "type_name": "CCommentarySystem", - "vtable_address": 6462417192, + "vtable_address": 6462417224, "methods": [ 6443752688, 6443767152, @@ -66896,18 +66898,18 @@ }, { "type_name": "CCommentaryViewPosition", - "vtable_address": 6462436896, + "vtable_address": 6462436928, "methods": [ 6446805920, 6451977888, 6450347280, - 6456889008, + 6456889024, 6452081232, 6450317376, 6452098768, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -66937,7 +66939,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035376, 6452082000, 6452085104, @@ -67239,22 +67241,22 @@ }, { "type_name": "CCommunity_GamePersonalDataCategoryInfo", - "vtable_address": 6461608560, + "vtable_address": 6461608544, "methods": [ 6448478432, - 6455181760, + 6455181776, 6448468256, 6448468512, 6448468800, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448468832, 6448469616, 6448469008, 6443766512, 6448469424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448471696, 6448473808, 6448473792 @@ -67300,22 +67302,22 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Request", - "vtable_address": 6461616400, + "vtable_address": 6461616384, "methods": [ 6448489392, - 6455181760, + 6455181776, 6448483824, 6448483904, 6448483936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448484352, 6448485952, 6448484880, 6443766512, 6448485776, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448486352, 6448486416, 6448486400 @@ -67361,30 +67363,30 @@ }, { "type_name": "CCommunity_GetGamePersonalDataCategories_Response", - "vtable_address": 6461618304, + "vtable_address": 6461618288, "methods": [ 6448507760, - 6455181760, + 6455181776, 6448491088, 6448492480, 6448492768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448492784, 6448495200, 6448493952, 6443766512, 6448495024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448496672, 6448496960, 6448496944, - 6455179744, + 6455179760, 6448507024, - 6455179744, + 6455179760, 6448507952, - 6455179744, + 6455179760, 6448509392 ], "bases": [ @@ -67428,26 +67430,26 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Request", - "vtable_address": 6461619440, + "vtable_address": 6461619424, "methods": [ 6448519648, - 6455181760, + 6455181776, 6448511680, 6448512048, 6448512160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448512176, 6448513328, 6448512368, 6443766512, 6448512976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448513408, 6448513440, 6448513424, - 6455179744, + 6455179760, 6448518784 ], "bases": [ @@ -67491,36 +67493,36 @@ }, { "type_name": "CCommunity_GetGamePersonalDataEntries_Response", - "vtable_address": 6461620992, + "vtable_address": 6461620976, "methods": [ 6448528832, - 6455181760, + 6455181776, 6448521584, 6448521808, 6448521936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448521952, 6448523232, 6448522240, 6443766512, 6448522816, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448523264, 6448524256, 6448524240, - 6455179744, + 6455179760, 6448529024, - 6455179744, + 6455179760, 6448529968, - 6455179744, + 6455179760, 6448530672, - 6455179744, + 6455179760, 6448532288, - 6455179744, + 6455179760, 6448534384, - 6455179744, + 6455179760, 6448535632 ], "bases": [ @@ -67564,22 +67566,22 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Request", - "vtable_address": 6461623480, + "vtable_address": 6461623464, "methods": [ 6448537536, - 6455181760, + 6455181776, 6448534816, 6448535712, 6448535760, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448535792, 6448536752, 6448535968, 6443766512, 6448536464, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448536848, 6448536880, 6448536864 @@ -67625,22 +67627,22 @@ }, { "type_name": "CCommunity_TerminateGamePersonalDataEntries_Response", - "vtable_address": 6461629880, + "vtable_address": 6461629864, "methods": [ 6448549184, - 6455181760, + 6455181776, 6448543856, 6448545232, 6448545264, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448545472, 6448546160, 6448545600, 6443766512, 6448545984, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448546192, 6448546704, 6448546320 @@ -67686,20 +67688,20 @@ }, { "type_name": "CCompressedAnimQuaternion", - "vtable_address": 6463249608, + "vtable_address": 6463249640, "methods": [ - 6456642160, 6456642176, 6456642192, - 6456643024, - 6456640400, - 6456640128, - 6456640048, 6456642208, - 6456643088, - 6456642288, + 6456643040, + 6456640416, + 6456640144, + 6456640064, + 6456642224, + 6456643104, 6456642304, - 6456640032 + 6456642320, + 6456640048 ], "bases": [ { @@ -67742,20 +67744,20 @@ }, { "type_name": "CCompressedAnimVector3", - "vtable_address": 6463249008, + "vtable_address": 6463249040, "methods": [ - 6456635488, 6456635504, 6456635520, - 6456636496, - 6456633712, - 6456633520, - 6456633440, 6456635536, - 6456636560, - 6456635616, - 6456636160, - 6456633424 + 6456636512, + 6456633728, + 6456633536, + 6456633456, + 6456635552, + 6456636576, + 6456635632, + 6456636176, + 6456633440 ], "bases": [ { @@ -67798,20 +67800,20 @@ }, { "type_name": "CCompressedDeltaVector3", - "vtable_address": 6463249136, + "vtable_address": 6463249168, "methods": [ - 6456636624, 6456636640, 6456636656, - 6456637936, - 6456633712, - 6456633520, - 6456633440, 6456636672, - 6456639408, - 6456636752, - 6456637440, - 6456633424 + 6456637952, + 6456633728, + 6456633536, + 6456633456, + 6456636688, + 6456639424, + 6456636768, + 6456637456, + 6456633440 ], "bases": [ { @@ -67854,20 +67856,20 @@ }, { "type_name": "CCompressedFullBool", - "vtable_address": 6463250752, + "vtable_address": 6463250784, "methods": [ - 6456648720, 6456648736, 6456648752, - 6456648656, - 6456647872, - 6456647792, - 6456647728, 6456648768, - 6456648848, - 6456648400, + 6456648672, + 6456647888, + 6456647808, + 6456647744, + 6456648784, + 6456648864, 6456648416, - 6456647712 + 6456648432, + 6456647728 ], "bases": [ { @@ -67924,20 +67926,20 @@ }, { "type_name": "CCompressedFullChar", - "vtable_address": 6463250240, + "vtable_address": 6463250272, "methods": [ - 6456646288, 6456646304, 6456646320, - 6456646048, - 6456643904, - 6456643744, - 6456643680, 6456646336, - 6456646416, - 6456645760, - 6456645808, - 6456643664 + 6456646064, + 6456643920, + 6456643760, + 6456643696, + 6456646352, + 6456646432, + 6456645776, + 6456645824, + 6456643680 ], "bases": [ { @@ -67994,20 +67996,20 @@ }, { "type_name": "CCompressedFullColor32", - "vtable_address": 6463251016, + "vtable_address": 6463251048, "methods": [ - 6456650144, 6456650160, 6456650176, - 6456650080, - 6456649296, - 6456649008, - 6456648928, 6456650192, - 6456650272, - 6456649824, + 6456650096, + 6456649312, + 6456649024, + 6456648944, + 6456650208, + 6456650288, 6456649840, - 6456648912 + 6456649856, + 6456648928 ], "bases": [ { @@ -68064,20 +68066,20 @@ }, { "type_name": "CCompressedFullFloat", - "vtable_address": 6463248608, + "vtable_address": 6463248640, "methods": [ - 6456633232, 6456633248, 6456633264, - 6456632976, - 6456632304, - 6456632176, - 6456632112, 6456633280, - 6456633360, - 6456632704, - 6456632752, - 6456632096 + 6456632992, + 6456632320, + 6456632192, + 6456632128, + 6456633296, + 6456633376, + 6456632720, + 6456632768, + 6456632112 ], "bases": [ { @@ -68134,20 +68136,20 @@ }, { "type_name": "CCompressedFullInt", - "vtable_address": 6463250496, + "vtable_address": 6463250528, "methods": [ - 6456647520, 6456647536, 6456647552, - 6456647456, - 6456643904, - 6456643744, - 6456643680, 6456647568, - 6456647648, - 6456647200, + 6456647472, + 6456643920, + 6456643760, + 6456643696, + 6456647584, + 6456647664, 6456647216, - 6456643664 + 6456647232, + 6456643680 ], "bases": [ { @@ -68204,20 +68206,20 @@ }, { "type_name": "CCompressedFullQuaternion", - "vtable_address": 6463249744, + "vtable_address": 6463249776, "methods": [ - 6456643152, 6456643168, 6456643184, - 6456643536, - 6456640400, - 6456640128, - 6456640048, 6456643200, - 6456643600, - 6456643280, + 6456643552, + 6456640416, + 6456640144, + 6456640064, + 6456643216, + 6456643616, 6456643296, - 6456640032 + 6456643312, + 6456640048 ], "bases": [ { @@ -68260,20 +68262,20 @@ }, { "type_name": "CCompressedFullShort", - "vtable_address": 6463250368, + "vtable_address": 6463250400, "methods": [ - 6456647008, 6456647024, 6456647040, - 6456646768, - 6456643904, - 6456643744, - 6456643680, 6456647056, - 6456647136, - 6456646480, - 6456646528, - 6456643664 + 6456646784, + 6456643920, + 6456643760, + 6456643696, + 6456647072, + 6456647152, + 6456646496, + 6456646544, + 6456643680 ], "bases": [ { @@ -68330,20 +68332,20 @@ }, { "type_name": "CCompressedFullVector2D", - "vtable_address": 6463248088, + "vtable_address": 6463248120, "methods": [ - 6456630304, 6456630320, 6456630336, - 6456630240, - 6456629376, - 6456629216, - 6456629136, 6456630352, - 6456630432, - 6456629920, - 6456629984, - 6456629120 + 6456630256, + 6456629392, + 6456629232, + 6456629152, + 6456630368, + 6456630448, + 6456629936, + 6456630000, + 6456629136 ], "bases": [ { @@ -68400,20 +68402,20 @@ }, { "type_name": "CCompressedFullVector3", - "vtable_address": 6463249344, + "vtable_address": 6463249376, "methods": [ - 6456639520, 6456639536, 6456639552, - 6456639904, - 6456633712, - 6456633520, - 6456633440, 6456639568, - 6456639968, - 6456639648, + 6456639920, + 6456633728, + 6456633536, + 6456633456, + 6456639584, + 6456639984, 6456639664, - 6456633424 + 6456639680, + 6456633440 ], "bases": [ { @@ -68456,20 +68458,20 @@ }, { "type_name": "CCompressedFullVector4D", - "vtable_address": 6463248352, + "vtable_address": 6463248384, "methods": [ - 6456631904, 6456631920, 6456631936, - 6456631824, - 6456630896, - 6456630592, - 6456630512, 6456631952, - 6456632032, - 6456631488, - 6456631584, - 6456630496 + 6456631840, + 6456630912, + 6456630608, + 6456630528, + 6456631968, + 6456632048, + 6456631504, + 6456631600, + 6456630512 ], "bases": [ { @@ -68526,20 +68528,20 @@ }, { "type_name": "CCompressedStaticBool", - "vtable_address": 6463250624, + "vtable_address": 6463250656, "methods": [ - 6456648208, 6456648224, 6456648240, - 6456648144, - 6456647872, - 6456647792, - 6456647728, 6456648256, - 6456648336, - 6456647904, - 6456647952, - 6456647712 + 6456648160, + 6456647888, + 6456647808, + 6456647744, + 6456648272, + 6456648352, + 6456647920, + 6456647968, + 6456647728 ], "bases": [ { @@ -68596,20 +68598,20 @@ }, { "type_name": "CCompressedStaticChar", - "vtable_address": 6463250008, + "vtable_address": 6463250040, "methods": [ - 6456644912, 6456644928, 6456644944, - 6456644672, - 6456643904, - 6456643744, - 6456643680, 6456644960, - 6456645040, - 6456644432, - 6456644480, - 6456643664 + 6456644688, + 6456643920, + 6456643760, + 6456643696, + 6456644976, + 6456645056, + 6456644448, + 6456644496, + 6456643680 ], "bases": [ { @@ -68666,20 +68668,20 @@ }, { "type_name": "CCompressedStaticColor32", - "vtable_address": 6463250880, + "vtable_address": 6463250912, "methods": [ - 6456649632, 6456649648, 6456649664, - 6456649568, - 6456649296, - 6456649008, - 6456648928, 6456649680, - 6456649760, - 6456649328, - 6456649376, - 6456648912 + 6456649584, + 6456649312, + 6456649024, + 6456648944, + 6456649696, + 6456649776, + 6456649344, + 6456649392, + 6456648928 ], "bases": [ { @@ -68736,20 +68738,20 @@ }, { "type_name": "CCompressedStaticFloat", - "vtable_address": 6463248480, + "vtable_address": 6463248512, "methods": [ - 6456633040, 6456633056, 6456633072, - 6456632656, - 6456632304, - 6456632176, - 6456632112, 6456633088, - 6456633168, - 6456632336, - 6456632464, - 6456632096 + 6456632672, + 6456632320, + 6456632192, + 6456632128, + 6456633104, + 6456633184, + 6456632352, + 6456632480, + 6456632112 ], "bases": [ { @@ -68806,20 +68808,20 @@ }, { "type_name": "CCompressedStaticFullVector3", - "vtable_address": 6463248872, + "vtable_address": 6463248904, "methods": [ - 6456634800, 6456634816, 6456634832, - 6456635376, - 6456633712, - 6456633520, - 6456633440, 6456634848, - 6456635424, - 6456634928, - 6456635184, - 6456633424 + 6456635392, + 6456633728, + 6456633536, + 6456633456, + 6456634864, + 6456635440, + 6456634944, + 6456635200, + 6456633440 ], "bases": [ { @@ -68862,20 +68864,20 @@ }, { "type_name": "CCompressedStaticInt", - "vtable_address": 6463249880, + "vtable_address": 6463249912, "methods": [ - 6456644240, 6456644256, 6456644272, - 6456644176, - 6456643904, - 6456643744, - 6456643680, 6456644288, - 6456644368, - 6456643936, - 6456643984, - 6456643664 + 6456644192, + 6456643920, + 6456643760, + 6456643696, + 6456644304, + 6456644384, + 6456643952, + 6456644000, + 6456643680 ], "bases": [ { @@ -68932,20 +68934,20 @@ }, { "type_name": "CCompressedStaticQuaternion", - "vtable_address": 6463249472, + "vtable_address": 6463249504, "methods": [ - 6456640432, 6456640448, 6456640464, - 6456642048, - 6456640400, - 6456640128, - 6456640048, 6456640480, - 6456642096, - 6456640560, - 6456641424, - 6456640032 + 6456642064, + 6456640416, + 6456640144, + 6456640064, + 6456640496, + 6456642112, + 6456640576, + 6456641440, + 6456640048 ], "bases": [ { @@ -68988,20 +68990,20 @@ }, { "type_name": "CCompressedStaticShort", - "vtable_address": 6463250136, + "vtable_address": 6463250168, "methods": [ - 6456645568, 6456645584, 6456645600, - 6456645344, - 6456643904, - 6456643744, - 6456643680, 6456645616, - 6456645696, - 6456645104, - 6456645152, - 6456643664 + 6456645360, + 6456643920, + 6456643760, + 6456643696, + 6456645632, + 6456645712, + 6456645120, + 6456645168, + 6456643680 ], "bases": [ { @@ -69058,20 +69060,20 @@ }, { "type_name": "CCompressedStaticVector2D", - "vtable_address": 6463247952, + "vtable_address": 6463247984, "methods": [ - 6456629728, 6456629744, 6456629760, - 6456629680, - 6456629376, - 6456629216, - 6456629136, 6456629776, - 6456629856, - 6456629408, - 6456629488, - 6456629120 + 6456629696, + 6456629392, + 6456629232, + 6456629152, + 6456629792, + 6456629872, + 6456629424, + 6456629504, + 6456629136 ], "bases": [ { @@ -69128,20 +69130,20 @@ }, { "type_name": "CCompressedStaticVector3", - "vtable_address": 6463248736, + "vtable_address": 6463248768, "methods": [ - 6456633744, 6456633760, 6456633776, - 6456634688, - 6456633712, - 6456633520, - 6456633440, 6456633792, - 6456634736, - 6456633872, - 6456634432, - 6456633424 + 6456634704, + 6456633728, + 6456633536, + 6456633456, + 6456633808, + 6456634752, + 6456633888, + 6456634448, + 6456633440 ], "bases": [ { @@ -69184,20 +69186,20 @@ }, { "type_name": "CCompressedStaticVector4D", - "vtable_address": 6463248216, + "vtable_address": 6463248248, "methods": [ - 6456631296, 6456631312, 6456631328, - 6456631232, - 6456630896, - 6456630592, - 6456630512, 6456631344, - 6456631424, - 6456630928, - 6456631040, - 6456630496 + 6456631248, + 6456630912, + 6456630608, + 6456630528, + 6456631360, + 6456631440, + 6456630944, + 6456631056, + 6456630512 ], "bases": [ { @@ -69254,7 +69256,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6461030528, + "vtable_address": 6461030512, "methods": [ 6446009664 ], @@ -69327,7 +69329,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6461030544, + "vtable_address": 6461030528, "methods": [ 6446009680 ], @@ -69400,7 +69402,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6462291504, + "vtable_address": 6462291536, "methods": [ 6451006544 ], @@ -69473,7 +69475,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6462291520, + "vtable_address": 6462291552, "methods": [ 6451006560 ], @@ -69546,7 +69548,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6461064768, + "vtable_address": 6461064752, "methods": [ 6446369792 ], @@ -69619,7 +69621,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6461064784, + "vtable_address": 6461064768, "methods": [ 6446370240 ], @@ -69692,7 +69694,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6461065488, + "vtable_address": 6461065472, "methods": [ 6446369808 ], @@ -69765,7 +69767,7 @@ }, { "type_name": "CConCommandMemberAccessor", - "vtable_address": 6461065504, + "vtable_address": 6461065488, "methods": [ 6446370272 ], @@ -69838,7 +69840,7 @@ }, { "type_name": "CConstantForceController", - "vtable_address": 6462713560, + "vtable_address": 6462713592, "methods": [ 6449326432, 6452863728, @@ -69873,7 +69875,7 @@ }, { "type_name": "CConstraintAnchor", - "vtable_address": 6462722272, + "vtable_address": 6462722304, "methods": [ 6446805696, 6452729904, @@ -69882,9 +69884,9 @@ 6450464528, 6450317360, 6452867168, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -69914,7 +69916,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789056, 6452842608, 6452856304, @@ -70253,7 +70255,7 @@ }, { "type_name": "CCopyRecipientFilter", - "vtable_address": 6462915288, + "vtable_address": 6462915304, "methods": [ 6453417424, 6453490384, @@ -70292,18 +70294,18 @@ }, { "type_name": "CCredits", - "vtable_address": 6462508560, + "vtable_address": 6462508592, "methods": [ 6445499872, 6452168544, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452284784, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -70333,7 +70335,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207840, 6452267952, 6452272304, @@ -70593,7 +70595,7 @@ }, { "type_name": "CCustomGameEventManager", - "vtable_address": 6461038400, + "vtable_address": 6461038384, "methods": [ 6443752688, 6443767152, @@ -70826,7 +70828,7 @@ }, { "type_name": "CDEagle", - "vtable_address": 6462041904, + "vtable_address": 6462041920, "methods": [ 6446805904, 6449543248, @@ -70835,9 +70837,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -70867,7 +70869,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570624, 6449644384, 6449650848, @@ -70928,7 +70930,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -71151,14 +71153,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -71448,14 +71450,14 @@ }, { "type_name": "CDEagle", - "vtable_address": 6462045528, + "vtable_address": 6462045544, "methods": [ 6449650884, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -71624,7 +71626,7 @@ }, { "type_name": "CDEagle", - "vtable_address": 6462045584, + "vtable_address": 6462045600, "methods": [ 6449606576, 6449574480 @@ -71796,7 +71798,7 @@ }, { "type_name": "CDamageRecord", - "vtable_address": 6462145048, + "vtable_address": 6462145064, "methods": [ 6450207712, 6450172352, @@ -71816,22 +71818,22 @@ }, { "type_name": "CDataGCCStrike15_v2_MatchInfo", - "vtable_address": 6461440016, + "vtable_address": 6461440000, "methods": [ 6447413920, - 6455181760, + 6455181776, 6447380016, 6447381040, 6447382000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447382016, 6447384480, 6447383040, 6443766512, 6447384048, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447385264, 6447386544, 6447386480 @@ -71877,22 +71879,22 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup", - "vtable_address": 6461460168, + "vtable_address": 6461460152, "methods": [ 6447519888, - 6455181760, + 6455181776, 6447454288, 6447456960, 6447457312, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447458256, 6447465888, 6447461712, 6443766512, 6447464976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447466864, 6447471072, 6447470992 @@ -71938,22 +71940,22 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroupTeam", - "vtable_address": 6461441776, + "vtable_address": 6461441760, "methods": [ 6447429136, - 6455181760, + 6455181776, 6447421056, 6447421488, 6447421552, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447421568, 6447423040, 6447421680, 6443766512, 6447422704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447424304, 6447425312, 6447425296 @@ -71999,22 +72001,22 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentGroup_Picks", - "vtable_address": 6461454872, + "vtable_address": 6461454856, "methods": [ 6447446848, - 6455181760, + 6455181776, 6447437696, 6447437984, 6447438048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447438064, 6447439168, 6447438224, 6443766512, 6447438784, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447440032, 6447441872, 6447441824 @@ -72060,22 +72062,22 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentInfo", - "vtable_address": 6461467576, + "vtable_address": 6461467560, "methods": [ 6447593840, - 6455181760, + 6455181776, 6447567712, 6447571344, 6447572064, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447573712, 6447575520, 6447574256, 6443766512, 6447575264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447576128, 6447577296, 6447577264 @@ -72121,22 +72123,22 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft", - "vtable_address": 6461466664, + "vtable_address": 6461466648, "methods": [ 6447591344, - 6455181760, + 6455181776, 6447532144, 6447533600, 6447534128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447534160, 6447540288, 6447535264, 6443766512, 6447537904, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447540480, 6447540592, 6447540576 @@ -72182,26 +72184,26 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentMatchDraft_Entry", - "vtable_address": 6461460632, + "vtable_address": 6461460616, "methods": [ 6447522224, - 6455181760, + 6455181776, 6447516272, 6447517392, 6447517424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447517472, 6447518432, 6447517632, 6443766512, 6447518128, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447518688, 6447518800, 6447518784, - 6455179744, + 6455179760, 6447522368 ], "bases": [ @@ -72245,22 +72247,22 @@ }, { "type_name": "CDataGCCStrike15_v2_TournamentSection", - "vtable_address": 6461463784, + "vtable_address": 6461463768, "methods": [ 6447560624, - 6455181760, + 6455181776, 6447525184, 6447528160, 6447528384, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447528848, 6447530112, 6447529152, 6443766512, 6447529776, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447530224, 6447531696, 6447531680 @@ -72306,18 +72308,18 @@ }, { "type_name": "CDebugHistory", - "vtable_address": 6462479104, + "vtable_address": 6462479136, "methods": [ 6446805888, 6451978032, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452099120, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6452116432, 6451865168, @@ -72347,7 +72349,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035392, 6452082016, 6452085152, @@ -72593,7 +72595,7 @@ }, { "type_name": "CDebugOverlayAIEventFilter", - "vtable_address": 6462218344, + "vtable_address": 6462218376, "methods": [ 6450810960, 6450764288, @@ -72634,7 +72636,7 @@ }, { "type_name": "CDebugOverlayBullets", - "vtable_address": 6461825496, + "vtable_address": 6461825512, "methods": [ 6443752688, 6443767152, @@ -72756,7 +72758,7 @@ }, { "type_name": "CDebugOverlayCombinedFilter", - "vtable_address": 6462217960, + "vtable_address": 6462217992, "methods": [ 6450810960, 6450764320, @@ -72797,7 +72799,7 @@ }, { "type_name": "CDebugOverlayEntityFilter", - "vtable_address": 6462217864, + "vtable_address": 6462217896, "methods": [ 6450810944, 6450764368, @@ -72838,7 +72840,7 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6462213640, + "vtable_address": 6462213672, "methods": [ 6443752688, 6443767152, @@ -72985,7 +72987,7 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6462214136, + "vtable_address": 6462214168, "methods": [ 6450638848, 6450850912, @@ -73077,7 +73079,7 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6462214192, + "vtable_address": 6462214224, "methods": [ 6450767296 ], @@ -73164,7 +73166,7 @@ }, { "type_name": "CDebugOverlayGameSystem", - "vtable_address": 6462214208, + "vtable_address": 6462214240, "methods": [ 6450811632 ], @@ -73251,7 +73253,7 @@ }, { "type_name": "CDebugOverlayGrenades", - "vtable_address": 6461828176, + "vtable_address": 6461828192, "methods": [ 6443752688, 6443767152, @@ -73403,7 +73405,7 @@ }, { "type_name": "CDebugOverlayPathfindingFilter", - "vtable_address": 6462218440, + "vtable_address": 6462218472, "methods": [ 6450810960, 6450764400, @@ -73444,7 +73446,7 @@ }, { "type_name": "CDebugOverlayRecorderBase", - "vtable_address": 6462218552, + "vtable_address": 6462218584, "methods": [ 6443752688, 6443767152, @@ -73521,7 +73523,7 @@ 6449344288, 6449344272, 6449328416, - 6459886716, + 6459886732, 6449328400, 6450848928, 6450778144, @@ -73582,7 +73584,7 @@ }, { "type_name": "CDebugOverlayScheduleFilter", - "vtable_address": 6462218152, + "vtable_address": 6462218184, "methods": [ 6450810960, 6450764416, @@ -73623,7 +73625,7 @@ }, { "type_name": "CDebugOverlayTacticalFilter", - "vtable_address": 6462218056, + "vtable_address": 6462218088, "methods": [ 6450810960, 6450764448, @@ -73664,7 +73666,7 @@ }, { "type_name": "CDebugOverlayTaskFilter", - "vtable_address": 6462218248, + "vtable_address": 6462218280, "methods": [ 6450810960, 6450764464, @@ -73705,7 +73707,7 @@ }, { "type_name": "CDebugOverlayTextFilter", - "vtable_address": 6462217760, + "vtable_address": 6462217792, "methods": [ 6450810960, 6450764496, @@ -73746,7 +73748,7 @@ }, { "type_name": "CDebugOverlayWindow", - "vtable_address": 6462213104, + "vtable_address": 6462213136, "methods": [ 6443752688, 6443767152, @@ -73809,7 +73811,7 @@ 6450705648, 6450639968, 6450871280, - 6459886716, + 6459886732, 6450804336, 6450846480 ], @@ -73854,7 +73856,7 @@ }, { "type_name": "CDebugOverlayWorldModel", - "vtable_address": 6461828840, + "vtable_address": 6461828856, "methods": [ 6443752688, 6443767152, @@ -73976,7 +73978,7 @@ }, { "type_name": "CDebugSnapshotCache", - "vtable_address": 6461030504, + "vtable_address": 6461030488, "methods": [ 6446009824, 6450824080 @@ -74008,12 +74010,12 @@ }, { "type_name": "CDebugVisualizerAbsTime", - "vtable_address": 6463247472, + "vtable_address": 6463247504, "methods": [ - 6456614720, - 6456623392, - 6456620160, - 6456614976, + 6456614736, + 6456623408, + 6456620176, + 6456614992, 6450811008, 6450694256 ], @@ -74044,7 +74046,7 @@ }, { "type_name": "CDecalEmitterSystem", - "vtable_address": 6462205504, + "vtable_address": 6462205536, "methods": [ 6443752688, 6443767152, @@ -74149,7 +74151,7 @@ }, { "type_name": "CDecalGameSystem", - "vtable_address": 6461040432, + "vtable_address": 6461040416, "methods": [ 6443752688, 6443767152, @@ -74268,7 +74270,7 @@ }, { "type_name": "CDecoyGrenade", - "vtable_address": 6462045608, + "vtable_address": 6462045624, "methods": [ 6446805904, 6449543312, @@ -74277,9 +74279,9 @@ 6449458272, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -74309,7 +74311,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570640, 6449644400, 6449650896, @@ -74370,7 +74372,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -74593,14 +74595,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449407632, @@ -74894,14 +74896,14 @@ }, { "type_name": "CDecoyGrenade", - "vtable_address": 6462049264, + "vtable_address": 6462049280, "methods": [ 6449650932, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -75070,7 +75072,7 @@ }, { "type_name": "CDecoyGrenade", - "vtable_address": 6462049320, + "vtable_address": 6462049336, "methods": [ 6449606576, 6449574480 @@ -75242,7 +75244,7 @@ }, { "type_name": "CDecoyProjectile", - "vtable_address": 6461866728, + "vtable_address": 6461866744, "methods": [ 6446805904, 6449384256, @@ -75251,9 +75253,9 @@ 6449125920, 6450317360, 6449483744, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -75283,7 +75285,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449428432, 6449461472, 6449471472, @@ -75736,7 +75738,7 @@ }, { "type_name": "CDecoyProjectile", - "vtable_address": 6461869440, + "vtable_address": 6461869456, "methods": [ 6443908752, 6443918000 @@ -75894,7 +75896,7 @@ }, { "type_name": "CDecoyProjectile", - "vtable_address": 6461869464, + "vtable_address": 6461869480, "methods": [ 6449383584 ], @@ -76229,7 +76231,7 @@ }, { "type_name": "CDefaultLagCompensation", - "vtable_address": 6462794616, + "vtable_address": 6462794648, "methods": [ 6453065360, 6453038288, @@ -76263,7 +76265,7 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 6462160024, + "vtable_address": 6462160088, "methods": [ 6443752688, 6443767152, @@ -76382,7 +76384,7 @@ }, { "type_name": "CDefaultResponseSystem", - "vtable_address": 6462160520, + "vtable_address": 6462160584, "methods": [ 6450252388, 6450254048, @@ -76448,7 +76450,7 @@ }, { "type_name": "CDefaultResponseSystemSaveRestoreBlockHandler", - "vtable_address": 6462160984, + "vtable_address": 6462161048, "methods": [ 6450254592, 6445901264, @@ -76501,7 +76503,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6461035664, + "vtable_address": 6461035648, "methods": [ 6446199904 ], @@ -76563,7 +76565,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6462159536, + "vtable_address": 6462159600, "methods": [ 6450254176 ], @@ -76594,7 +76596,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6462135872, + "vtable_address": 6462135888, "methods": [ 6450069728 ], @@ -76625,7 +76627,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6462148984, + "vtable_address": 6462149000, "methods": [ 6450214352 ], @@ -76656,7 +76658,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6462786072, + "vtable_address": 6462786104, "methods": [ 6453038528 ], @@ -76687,7 +76689,7 @@ }, { "type_name": "CDefaultTypedEntityInstanceFilter", - "vtable_address": 6462916528, + "vtable_address": 6462916544, "methods": [ 6453613152 ], @@ -76718,28 +76720,28 @@ }, { "type_name": "CDemoAnimationData", - "vtable_address": 6461466808, + "vtable_address": 6461466792, "methods": [ 6447591680, - 6455181760, + 6455181776, 6446104000, 6447579152, 6447579232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447579248, 6446048048, 6447579616, 6443766512, 6447580448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447581152, 6447582176, 6447582160, - 6455179744, + 6455179760, 6447588608, - 6455179744, + 6455179760, 6447588864 ], "bases": [ @@ -76783,26 +76785,26 @@ }, { "type_name": "CDemoAnimationHeader", - "vtable_address": 6461464408, + "vtable_address": 6461464392, "methods": [ 6447567200, - 6455181760, + 6455181776, 6446104016, 6447557648, 6447557728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447557744, 6446048064, 6447557888, 6443766512, 6447558480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447558816, 6447560032, 6447559264, - 6455179744, + 6455179760, 6447565024 ], "bases": [ @@ -76846,22 +76848,22 @@ }, { "type_name": "CDemoClassInfo", - "vtable_address": 6461458760, + "vtable_address": 6461458744, "methods": [ 6447506304, - 6455181760, + 6455181776, 6447480144, 6447480432, 6447480672, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447480912, 6447481936, 6447481376, 6443766512, 6447481792, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447481952, 6447482288, 6447482272 @@ -76907,32 +76909,32 @@ }, { "type_name": "CDemoClassInfo_class_t", - "vtable_address": 6461456296, + "vtable_address": 6461456280, "methods": [ 6447472032, - 6455181760, + 6455181776, 6447448432, 6447449008, 6447449104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447449120, 6447450256, 6447449424, 6443766512, 6447450000, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447450272, 6447450320, 6447450288, - 6455179744, + 6455179760, 6447465904, - 6455179744, + 6455179760, 6447466064, - 6455179744, + 6455179760, 6447466384, - 6455179744, + 6455179760, 6447468848 ], "bases": [ @@ -76976,26 +76978,26 @@ }, { "type_name": "CDemoConsoleCmd", - "vtable_address": 6461440992, + "vtable_address": 6461440976, "methods": [ 6447425376, - 6455181760, + 6455181776, 6447416832, 6447416960, 6447417024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447417040, 6447418064, 6447417280, 6443766512, 6447417952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447418880, 6447419392, 6447419376, - 6455179744, + 6455179760, 6447422288 ], "bases": [ @@ -77039,22 +77041,22 @@ }, { "type_name": "CDemoCustomData", - "vtable_address": 6461460488, + "vtable_address": 6461460472, "methods": [ 6447522048, - 6455181760, + 6455181776, 6447514816, 6447516048, 6447516112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447516128, 6447517232, 6447516288, 6443766512, 6447516992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447517440, 6447518624, 6447518608 @@ -77100,28 +77102,28 @@ }, { "type_name": "CDemoCustomDataCallbacks", - "vtable_address": 6461462520, + "vtable_address": 6461462504, "methods": [ 6447545680, - 6455181760, + 6455181776, 6447532112, 6447532416, 6447532464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447532480, 6447534144, 6447532656, 6443766512, 6447533872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447537888, 6447540512, 6447540496, - 6455179744, + 6455179760, 6447542400, - 6455179744, + 6455179760, 6447543792 ], "bases": [ @@ -77165,22 +77167,22 @@ }, { "type_name": "CDemoFileHeader", - "vtable_address": 6461354472, + "vtable_address": 6461354456, "methods": [ 6447183856, - 6455181760, + 6455181776, 6447152224, 6447153200, 6447153536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447153696, 6447156720, 6447154448, 6443766512, 6447155824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447157824, 6447157872, 6447157856 @@ -77226,22 +77228,22 @@ }, { "type_name": "CDemoFileInfo", - "vtable_address": 6461386752, + "vtable_address": 6461386736, "methods": [ 6447333728, - 6455181760, + 6455181776, 6447323312, 6447324192, 6447324720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447324768, 6447327280, 6447325920, 6443766512, 6447326912, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447327312, 6447327952, 6447327936 @@ -77287,27 +77289,27 @@ }, { "type_name": "CDemoFullPacket", - "vtable_address": 6461429624, + "vtable_address": 6461429608, "methods": [ 6447368736, - 6455181760, + 6455181776, 6447355200, 6447356464, 6447356848, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447356960, 6447360272, 6447358192, 6443766512, 6447360080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447363728, 6447365536, 6447364896, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -77350,7 +77352,7 @@ }, { "type_name": "CDemoMessagePB<16,class CDemoAnimationData>", - "vtable_address": 6461034888, + "vtable_address": 6461034872, "methods": [ 6445975776, 6446063216, @@ -77428,22 +77430,22 @@ }, { "type_name": "CDemoMessagePB<16,class CDemoAnimationData>", - "vtable_address": 6461034944, + "vtable_address": 6461034928, "methods": [ 6445975296, - 6455181760, + 6455181776, 6446104000, 6447579152, 6447579232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447579248, 6446048048, 6447579616, 6443766512, 6447580448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447581152, 6447582176, 6447582160 @@ -77517,7 +77519,7 @@ }, { "type_name": "CDemoMessagePB<17,class CDemoAnimationHeader>", - "vtable_address": 6461034560, + "vtable_address": 6461034544, "methods": [ 6445975968, 6446063232, @@ -77595,22 +77597,22 @@ }, { "type_name": "CDemoMessagePB<17,class CDemoAnimationHeader>", - "vtable_address": 6461034616, + "vtable_address": 6461034600, "methods": [ 6445975308, - 6455181760, + 6455181776, 6446104016, 6447557648, 6447557728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447557744, 6446048064, 6447557888, 6443766512, 6447558480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447558816, 6447560032, 6447559264 @@ -77684,22 +77686,22 @@ }, { "type_name": "CDemoPacket", - "vtable_address": 6461391672, + "vtable_address": 6461391656, "methods": [ 6447347184, - 6455181760, + 6455181776, 6447338000, 6447338752, 6447338960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447338976, 6447339920, 6447339200, 6443766512, 6447339792, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447341040, 6447341568, 6447341440 @@ -77745,30 +77747,30 @@ }, { "type_name": "CDemoRecovery", - "vtable_address": 6461484408, + "vtable_address": 6461484392, "methods": [ 6447754320, - 6455181760, + 6455181776, 6447739392, 6447739984, 6447740112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447740128, 6447740960, 6447740336, 6443766512, 6447740800, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447740976, 6447741024, 6447741008, - 6455179744, + 6455179760, 6447752464, - 6455179744, + 6455179760, 6447753680, - 6455179744, + 6455179760, 6447754528 ], "bases": [ @@ -77812,26 +77814,26 @@ }, { "type_name": "CDemoRecovery_DemoInitialSpawnGroupEntry", - "vtable_address": 6461482696, + "vtable_address": 6461482680, "methods": [ 6447731904, - 6455181760, + 6455181776, 6447721856, 6447722736, 6447722784, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447722800, 6447724992, 6447723584, 6443766512, 6447724752, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447726560, 6447726624, 6447726608, - 6455179744, + 6455179760, 6447730224 ], "bases": [ @@ -77875,22 +77877,22 @@ }, { "type_name": "CDemoSaveGame", - "vtable_address": 6461434264, + "vtable_address": 6461434248, "methods": [ 6447397728, - 6455181760, + 6455181776, 6447378832, 6447380416, 6447380512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447380528, 6447382928, 6447381392, 6443766512, 6447382528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447385024, 6447385840, 6447385728 @@ -77936,28 +77938,28 @@ }, { "type_name": "CDemoSendTables", - "vtable_address": 6461454088, + "vtable_address": 6461454072, "methods": [ 6447439264, - 6455181760, + 6455181776, 6447429600, 6447429712, 6447429776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447429952, 6447430512, 6447430016, 6443766512, 6447430400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447430544, 6447433328, 6447433136, - 6455179744, + 6455179760, 6447437904, - 6455179744, + 6455179760, 6447439024 ], "bases": [ @@ -78001,22 +78003,22 @@ }, { "type_name": "CDemoSpawnGroups", - "vtable_address": 6461481208, + "vtable_address": 6461481192, "methods": [ 6447714032, - 6455181760, + 6455181776, 6447708400, 6447708768, 6447708816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447708832, 6447709776, 6447709088, 6443766512, 6447709520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447710448, 6447711824, 6447711808 @@ -78062,26 +78064,26 @@ }, { "type_name": "CDemoStop", - "vtable_address": 6461476480, + "vtable_address": 6461476464, "methods": [ 6447682448, - 6455181760, + 6455181776, 6447679296, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447680576, 6447680528, - 6455179744, + 6455179760, 6447680352 ], "bases": [ @@ -78139,22 +78141,22 @@ }, { "type_name": "CDemoStringTables", - "vtable_address": 6461475328, + "vtable_address": 6461475312, "methods": [ 6447670336, - 6455181760, + 6455181776, 6447643936, 6447644944, 6447645392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447645408, 6447646960, 6447646112, 6443766512, 6447646816, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447647424, 6447649440, 6447649424 @@ -78200,22 +78202,22 @@ }, { "type_name": "CDemoStringTables_items_t", - "vtable_address": 6461468280, + "vtable_address": 6461468264, "methods": [ 6447607808, - 6455181760, + 6455181776, 6447597168, 6447599312, 6447599792, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447599808, 6447600592, 6447599936, 6443766512, 6447600432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447600608, 6447600960, 6447600944 @@ -78261,28 +78263,28 @@ }, { "type_name": "CDemoStringTables_table_t", - "vtable_address": 6461472432, + "vtable_address": 6461472416, "methods": [ 6447636288, - 6455181760, + 6455181776, 6447611888, 6447612240, 6447612688, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447612784, 6447615392, 6447613728, 6443766512, 6447615040, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447616032, 6447616592, 6447616576, - 6455179744, + 6455179760, 6447633680, - 6455179744, + 6455179760, 6447634912 ], "bases": [ @@ -78326,26 +78328,26 @@ }, { "type_name": "CDemoSyncTick", - "vtable_address": 6461435224, + "vtable_address": 6461435208, "methods": [ 6447412880, - 6455181760, + 6455181776, 6447404320, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447405392, 6447405120, - 6455179744, + 6455179760, 6447405136 ], "bases": [ @@ -78403,22 +78405,22 @@ }, { "type_name": "CDemoUserCmd", - "vtable_address": 6461479480, + "vtable_address": 6461479464, "methods": [ 6447700384, - 6455181760, + 6455181776, 6447693760, 6447694032, 6447694096, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447694288, 6447695888, 6447694480, 6443766512, 6447695328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447697632, 6447698016, 6447697984 @@ -78464,7 +78466,7 @@ }, { "type_name": "CDirtySpatialPartitionEntityList", - "vtable_address": 6462428920, + "vtable_address": 6462428952, "methods": [ 6452045408, 6443767152, @@ -78569,7 +78571,7 @@ }, { "type_name": "CDontUseThisGameSystem", - "vtable_address": 6461029896, + "vtable_address": 6461029880, "methods": [ 6443752688, 6443767152, @@ -78660,18 +78662,18 @@ }, { "type_name": "CDynamicLight", - "vtable_address": 6462447216, + "vtable_address": 6462447248, "methods": [ 6446805920, 6451978208, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452099232, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -78701,7 +78703,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035408, 6452082032, 6452085200, @@ -78989,18 +78991,18 @@ }, { "type_name": "CDynamicNavConnectionsVolume", - "vtable_address": 6461265496, + "vtable_address": 6461265464, "methods": [ 6445499856, 6446985552, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6452867248, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452733936, 6452885328, 6450455600, @@ -79030,7 +79032,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789072, 6447001392, 6447005600, @@ -79368,7 +79370,7 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 6462209488, + "vtable_address": 6462209520, "methods": [ 6446805696, 6450640032, @@ -79377,9 +79379,9 @@ 6450464656, 6450317360, 6450859328, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450644000, 6450870512, 6450455584, @@ -79409,7 +79411,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758624, 6446896064, 6450848256, @@ -79813,7 +79815,7 @@ }, { "type_name": "CDynamicProp", - "vtable_address": 6462212032, + "vtable_address": 6462212064, "methods": [ 6445170480, 6445186928 @@ -79943,7 +79945,7 @@ }, { "type_name": "CDynamicPropAlias_cable_dynamic", - "vtable_address": 6461199360, + "vtable_address": 6461199328, "methods": [ 6446805696, 6446874960, @@ -79952,9 +79954,9 @@ 6450464656, 6450317360, 6450859328, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450644000, 6450870512, 6450455584, @@ -79984,7 +79986,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446879232, 6446896080, 6446897856, @@ -80402,7 +80404,7 @@ }, { "type_name": "CDynamicPropAlias_cable_dynamic", - "vtable_address": 6461201904, + "vtable_address": 6461201872, "methods": [ 6445170480, 6445186928 @@ -80546,7 +80548,7 @@ }, { "type_name": "CDynamicPropAlias_dynamic_prop", - "vtable_address": 6461194224, + "vtable_address": 6461194192, "methods": [ 6446805696, 6446875024, @@ -80555,9 +80557,9 @@ 6450464656, 6450317360, 6450859328, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450644000, 6450870512, 6450455584, @@ -80587,7 +80589,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446879248, 6446896096, 6446897904, @@ -81005,7 +81007,7 @@ }, { "type_name": "CDynamicPropAlias_dynamic_prop", - "vtable_address": 6461196768, + "vtable_address": 6461196736, "methods": [ 6445170480, 6445186928 @@ -81149,7 +81151,7 @@ }, { "type_name": "CDynamicPropAlias_prop_dynamic_override", - "vtable_address": 6461196792, + "vtable_address": 6461196760, "methods": [ 6446805696, 6446875088, @@ -81158,9 +81160,9 @@ 6450464656, 6450317360, 6450859328, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450644000, 6450870512, 6450455584, @@ -81190,7 +81192,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446879264, 6446896112, 6446897952, @@ -81608,7 +81610,7 @@ }, { "type_name": "CDynamicPropAlias_prop_dynamic_override", - "vtable_address": 6461199336, + "vtable_address": 6461199304, "methods": [ 6445170480, 6445186928 @@ -81752,18 +81754,18 @@ }, { "type_name": "CEconAccountSeasonalOperationGS", - "vtable_address": 6463040584, + "vtable_address": 6463040600, "methods": [ 6453949984, - 6454130528, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120320 + 6454130544, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120336 ], "bases": [ { @@ -81820,10 +81822,10 @@ }, { "type_name": "CEconCraftingRecipeDefinition", - "vtable_address": 6463032360, + "vtable_address": 6463032376, "methods": [ 6453950064, - 6454188240 + 6454188256 ], "bases": [], "model": { @@ -81837,7 +81839,7 @@ }, { "type_name": "CEconEntity", - "vtable_address": 6463034720, + "vtable_address": 6463034736, "methods": [ 6446805904, 6453950128, @@ -81846,11 +81848,11 @@ 6450464528, 6450317360, 6450523824, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, - 6454284448, + 6454284464, 6450455584, 6451818320, 6451744928, @@ -81878,12 +81880,12 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454110336, - 6454225392, - 6454277328, + 6456895872, + 6454110352, + 6454225408, + 6454277344, 6443738704, - 6454112144, + 6454112160, 6445582096, 6450530464, 6445541264, @@ -81939,7 +81941,7 @@ 6450516816, 6445499744, 6445594096, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -82162,14 +82164,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096 + 6454284112 ], "bases": [ { @@ -82282,14 +82284,14 @@ }, { "type_name": "CEconEntity", - "vtable_address": 6463037376, + "vtable_address": 6463037392, "methods": [ - 6454277364, + 6454277380, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -82402,10 +82404,10 @@ }, { "type_name": "CEconEntity", - "vtable_address": 6463037432, + "vtable_address": 6463037448, "methods": [ - 6454202272, - 6454120288 + 6454202288, + 6454120304 ], "bases": [ { @@ -82518,15 +82520,15 @@ }, { "type_name": "CEconEntity::NetworkVar_m_AttributeManager", - "vtable_address": 6463034640, + "vtable_address": 6463034656, "methods": [ 6445191936, - 6454110304, - 6454202448, + 6454110320, + 6454202464, 6445184928, - 6454205472, + 6454205488, 6453956256, - 6454143680, + 6454143696, 6453963104, 6453964368 ], @@ -82571,18 +82573,18 @@ }, { "type_name": "CEconEquipSlot", - "vtable_address": 6463034144, + "vtable_address": 6463034160, "methods": [ 6453950272, - 6454130544, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120336 + 6454130560, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120352 ], "bases": [ { @@ -82639,18 +82641,18 @@ }, { "type_name": "CEconGameAccountSteamChina", - "vtable_address": 6463040408, + "vtable_address": 6463040424, "methods": [ 6453950352, - 6454130560, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120352 + 6454130576, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120368 ], "bases": [ { @@ -82707,21 +82709,21 @@ }, { "type_name": "CEconItem", - "vtable_address": 6463033720, + "vtable_address": 6463033736, "methods": [ 6453950432, - 6454130592, - 6454070048, - 6454070352, - 6454069776, - 6454074128, - 6454081216, + 6454130608, + 6454070064, + 6454070368, + 6454069792, + 6454074144, + 6454081232, 6453965024, 6453964896, - 6454278512, - 6454116512, - 6454069792, - 6454069904 + 6454278528, + 6454116528, + 6454069808, + 6454069920 ], "bases": [ { @@ -82764,35 +82766,35 @@ }, { "type_name": "CEconItem", - "vtable_address": 6463033832, + "vtable_address": 6463033848, "methods": [ - 6454277376, + 6454277392, 6453949040, - 6454108688, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186768, + 6454108704, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186784, + 6454184256, + 6454183552, + 6454186992, 6454184240, - 6454183536, - 6454186976, - 6454184224, - 6454111584, - 6454113024, - 6454106112, - 6454113904, - 6454120976, - 6454122080, - 6454071664, - 6454120240, - 6454121856, - 6454113936, - 6454112656, - 6454108320, - 6454107952, - 6454115648, - 6454189520 + 6454111600, + 6454113040, + 6454106128, + 6454113920, + 6454120992, + 6454122096, + 6454071680, + 6454120256, + 6454121872, + 6454113952, + 6454112672, + 6454108336, + 6454107968, + 6454115664, + 6454189536 ], "bases": [ { @@ -82835,13 +82837,13 @@ }, { "type_name": "CEconItemAttribute", - "vtable_address": 6463078976, + "vtable_address": 6463079008, "methods": [ - 6454329664, - 6454318912, - 6454322656, - 6454322560, - 6454318864 + 6454329680, + 6454318928, + 6454322672, + 6454322576, + 6454318880 ], "bases": [], "model": { @@ -82855,13 +82857,13 @@ }, { "type_name": "CEconItemAttributeDefinition", - "vtable_address": 6463032384, + "vtable_address": 6463032400, "methods": [ - 6454110352, 6454110368, 6454110384, - 6454107376, - 6454123456 + 6454110400, + 6454107392, + 6454123472 ], "bases": [ { @@ -82890,13 +82892,13 @@ }, { "type_name": "CEconItemAttributeIterator_ApplyAttributeFloat", - "vtable_address": 6463038864, + "vtable_address": 6463038880, "methods": [ 6453950544, - 6454213536, 6454213552, - 6454213936, - 6454213568 + 6454213568, + 6454213952, + 6454213584 ], "bases": [ { @@ -82925,21 +82927,21 @@ }, { "type_name": "CEconItemDefinition", - "vtable_address": 6463032504, + "vtable_address": 6463032520, "methods": [ 6449709728, 6449711744, 6449709936, 6449711312, 6449709984, - 6454112800, + 6454112816, 6449709488, - 6454132240, + 6454132256, 6449709872, 6449711872, 6449709888, 6449711840, - 6454116480, + 6454116496, 6449709568, 6449709520, 6449713600, @@ -82947,14 +82949,14 @@ 6449713616, 6449713648, 6449713664, - 6454064448, + 6454064464, 6453950592, - 6453994816, - 6454028064, + 6453994832, + 6454028080, 6449715328, - 6454101840, - 6454104144, - 6454101600, + 6454101856, + 6454104160, + 6454101616, 6449711296, 6449713632, 6449711328, @@ -82962,18 +82964,18 @@ 6449709584, 6449712112, 6449712128, - 6454120544, - 6454119744, - 6454124144, - 6454131312, - 6454125632, + 6454120560, + 6454119760, + 6454124160, + 6454131328, + 6454125648, + 6454120240, 6454120224, - 6454120208, 6449709920, 6449711712, 6449711728, 6449713712, - 6454184208, + 6454184224, 6449712144 ], "bases": [ @@ -83003,22 +83005,22 @@ }, { "type_name": "CEconItemPreviewDataBlock", - "vtable_address": 6461369496, + "vtable_address": 6461369480, "methods": [ 6447214544, - 6455181760, + 6455181776, 6447174560, 6447175312, 6447175936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447176000, 6447182768, 6447177248, 6443766512, 6447180592, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447183200, 6447183392, 6447183376 @@ -83064,26 +83066,26 @@ }, { "type_name": "CEconItemPreviewDataBlock_Sticker", - "vtable_address": 6461351480, + "vtable_address": 6461351464, "methods": [ 6447161632, - 6455181760, + 6455181776, 6447148528, 6447148768, 6447148832, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447148848, 6447151232, 6447149232, 6443766512, 6447150352, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447151248, 6447151280, 6447151264, - 6455179744, + 6455179760, 6447159856 ], "bases": [ @@ -83127,10 +83129,10 @@ }, { "type_name": "CEconItemSchema", - "vtable_address": 6463032992, + "vtable_address": 6463033008, "methods": [ 6453966384, - 6454042256, + 6454042272, 6449711888, 6449709952, 6449709968, @@ -83143,54 +83145,54 @@ 6449709632, 6449709680, 6449709664, - 6454107392, - 6454107552, - 6454097344, + 6454107408, + 6454107568, + 6454097360, 6449711680, 6449711824, - 6454121664, - 6454121408, + 6454121680, + 6454121424, 6449711856, - 6454123264, - 6454122880, - 6454122400, - 6454123072, - 6454122848, + 6454123280, + 6454122896, + 6454122416, + 6454123088, + 6454122864, 6449709376, 6449711280, - 6454115552, + 6454115568, 6449715616, 6449711568, 6449711472, 6449711392, 6449711584, - 6454097600, - 6454106240, + 6454097616, + 6454106256, 6453975840, - 6454038192, - 6454036816, - 6454077536, - 6454113728, - 6454113472, - 6454125440, - 6454124992, + 6454038208, + 6454036832, + 6454077552, + 6454113744, + 6454113488, + 6454125456, + 6454125008, 6449712032, - 6454125264, + 6454125280, 6453950656, 6449712048, 6449711696, 6449711760, 6449709904, - 6454074192, + 6454074208, 6449706976, 6449707216, - 6454074240, - 6454234752, - 6454071264, - 6454034224, + 6454074256, + 6454234768, + 6454071280, + 6454034240, 6453981088, - 6454046032, - 6454055472 + 6454046048, + 6454055488 ], "bases": [ { @@ -83219,21 +83221,21 @@ }, { "type_name": "CEconItemSetDefinition", - "vtable_address": 6463032136, + "vtable_address": 6463032152, "methods": [ - 6454120176, - 6454119504, - 6454131664, - 6454107920, - 6454112992, - 6454113008, - 6454113952, + 6454120192, + 6454119520, + 6454131680, 6454107936, - 6454113984, - 6454112560, - 6454069760, - 6454133968, - 6454005968 + 6454113008, + 6454113024, + 6454113968, + 6454107952, + 6454114000, + 6454112576, + 6454069776, + 6454133984, + 6454005984 ], "bases": [ { @@ -83262,14 +83264,14 @@ }, { "type_name": "CEconItemSystem", - "vtable_address": 6463038632, + "vtable_address": 6463038648, "methods": [ - 6454115536, - 6454234688, - 6454234736, - 6454225904, + 6454115552, + 6454234704, + 6454234752, + 6454225920, 6453950720, - 6454101024 + 6454101040 ], "bases": [ { @@ -83298,38 +83300,38 @@ }, { "type_name": "CEconItemView", - "vtable_address": 6463079104, + "vtable_address": 6463079136, "methods": [ 6444348960, - 6454293728, - 6454309920, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186880, - 6454184288, - 6454183536, - 6454187488, - 6454184224, - 6454111584, + 6454293744, + 6454309936, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186896, + 6454184304, + 6454183552, + 6454187504, + 6454184240, + 6454111600, 6444215488, 6444202768, 6444215504, - 6454312512, - 6454313344, - 6454306320, - 6454312096, - 6454313216, + 6454312528, + 6454313360, + 6454306336, + 6454312112, + 6454313232, 6444215520, 6444213808, - 6454309616, - 6454309376, - 6454311520, - 6454317952, - 6454318928, + 6454309632, + 6454309392, + 6454311536, + 6454317968, + 6454318944, 6444294960, - 6454322576 + 6454322592 ], "bases": [ { @@ -83358,12 +83360,12 @@ }, { "type_name": "CEconItemView::NetworkVar_m_AttributeList", - "vtable_address": 6463079024, + "vtable_address": 6463079056, "methods": [ - 6454329616, - 6454318944, - 6454322640, - 6454322592 + 6454329632, + 6454318960, + 6454322656, + 6454322608 ], "bases": [ { @@ -83392,12 +83394,12 @@ }, { "type_name": "CEconItemView::NetworkVar_m_NetworkedDynamicAttributes", - "vtable_address": 6463079064, + "vtable_address": 6463079096, "methods": [ - 6454329616, - 6454319024, - 6454322640, - 6454322608 + 6454329632, + 6454319040, + 6454322656, + 6454322624 ], "bases": [ { @@ -83426,21 +83428,21 @@ }, { "type_name": "CEconLootListDefinition", - "vtable_address": 6463032248, + "vtable_address": 6463032264, "methods": [ - 6454120192, - 6454119728, - 6454132208, - 6454101104, - 6454186752, - 6454106224, - 6454106128, - 6454122064, - 6454122016, - 6454121984, - 6454121872, - 6454223424, - 6454133584 + 6454120208, + 6454119744, + 6454132224, + 6454101120, + 6454186768, + 6454106240, + 6454106144, + 6454122080, + 6454122032, + 6454122000, + 6454121888, + 6454223440, + 6454133600 ], "bases": [ { @@ -83469,17 +83471,17 @@ }, { "type_name": "CEconPersonaDataPublic", - "vtable_address": 6462147624, + "vtable_address": 6462147640, "methods": [ 6450120160, 6450162320, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, 6450161888 ], "bases": [ @@ -83537,18 +83539,18 @@ }, { "type_name": "CEconQuestProgress", - "vtable_address": 6463040056, + "vtable_address": 6463040072, "methods": [ 6453950816, - 6454130576, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120368 + 6454130592, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120384 ], "bases": [ { @@ -83605,18 +83607,18 @@ }, { "type_name": "CEconRecurringMission", - "vtable_address": 6463040232, + "vtable_address": 6463040248, "methods": [ 6453950896, - 6454130512, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120304 + 6454130528, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120320 ], "bases": [ { @@ -83673,11 +83675,11 @@ }, { "type_name": "CEconStyleInfo", - "vtable_address": 6462086448, + "vtable_address": 6462086464, "methods": [ 6449700576, - 6454016368, - 6454103888 + 6454016384, + 6454103904 ], "bases": [], "model": { @@ -83691,14 +83693,14 @@ }, { "type_name": "CEconTool_BackpackExpander", - "vtable_address": 6463042392, + "vtable_address": 6463042408, "methods": [ 6453950976, - 6454071648, - 6454330656, - 6454234720, - 6454187984, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188000, + 6454074192 ], "bases": [ { @@ -83727,14 +83729,14 @@ }, { "type_name": "CEconTool_Casket", - "vtable_address": 6463043424, + "vtable_address": 6463043440, "methods": [ 6453951136, - 6454305312, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454305328, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -83763,14 +83765,14 @@ }, { "type_name": "CEconTool_Collection", - "vtable_address": 6463042464, + "vtable_address": 6463042480, "methods": [ 6453951296, - 6454305360, - 6454278544, - 6454234720, - 6454188000, - 6454074176 + 6454305376, + 6454278560, + 6454234736, + 6454188016, + 6454074192 ], "bases": [ { @@ -83799,14 +83801,14 @@ }, { "type_name": "CEconTool_CrateKey", - "vtable_address": 6463043592, + "vtable_address": 6463043608, "methods": [ 6453951456, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -83835,14 +83837,14 @@ }, { "type_name": "CEconTool_CustomizeTexture", - "vtable_address": 6463043536, + "vtable_address": 6463043552, "methods": [ 6453951616, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -83871,14 +83873,14 @@ }, { "type_name": "CEconTool_Default", - "vtable_address": 6463043688, + "vtable_address": 6463043704, "methods": [ 6453951776, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -83907,14 +83909,14 @@ }, { "type_name": "CEconTool_DescTag", - "vtable_address": 6463043368, + "vtable_address": 6463043384, "methods": [ 6453951936, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -83943,14 +83945,14 @@ }, { "type_name": "CEconTool_DuelingMinigame", - "vtable_address": 6463042056, + "vtable_address": 6463042072, "methods": [ 6453952096, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -83979,14 +83981,14 @@ }, { "type_name": "CEconTool_FanToken", - "vtable_address": 6463043088, + "vtable_address": 6463043104, "methods": [ 6453952256, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84015,14 +84017,14 @@ }, { "type_name": "CEconTool_Gift", - "vtable_address": 6463042544, + "vtable_address": 6463042560, "methods": [ 6453952416, - 6454071648, - 6454330656, - 6454234720, - 6454188176, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188192, + 6454074192 ], "bases": [ { @@ -84051,14 +84053,14 @@ }, { "type_name": "CEconTool_Keychain", - "vtable_address": 6463042864, + "vtable_address": 6463042880, "methods": [ 6453952576, - 6454305392, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454305408, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84087,14 +84089,14 @@ }, { "type_name": "CEconTool_KeychainToolCharges", - "vtable_address": 6463043032, + "vtable_address": 6463043048, "methods": [ 6453952736, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84123,14 +84125,14 @@ }, { "type_name": "CEconTool_NameTag", - "vtable_address": 6463043312, + "vtable_address": 6463043328, "methods": [ 6453952896, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84159,14 +84161,14 @@ }, { "type_name": "CEconTool_Noisemaker", - "vtable_address": 6463042112, + "vtable_address": 6463042128, "methods": [ 6453953056, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84195,14 +84197,14 @@ }, { "type_name": "CEconTool_PaintCan", - "vtable_address": 6463042696, + "vtable_address": 6463042712, "methods": [ 6453953216, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84231,14 +84233,14 @@ }, { "type_name": "CEconTool_PaintKit", - "vtable_address": 6463042752, + "vtable_address": 6463042768, "methods": [ 6453953376, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84267,14 +84269,14 @@ }, { "type_name": "CEconTool_Patch", - "vtable_address": 6463042920, + "vtable_address": 6463042936, "methods": [ 6453953536, - 6454305472, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454305488, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84303,14 +84305,14 @@ }, { "type_name": "CEconTool_Recipe", - "vtable_address": 6463043256, + "vtable_address": 6463043272, "methods": [ 6453953696, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84339,14 +84341,14 @@ }, { "type_name": "CEconTool_SeasonPass", - "vtable_address": 6463042280, + "vtable_address": 6463042296, "methods": [ 6453953856, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84375,14 +84377,14 @@ }, { "type_name": "CEconTool_SeasonTiers", - "vtable_address": 6463043200, + "vtable_address": 6463043216, "methods": [ 6453954016, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84411,14 +84413,14 @@ }, { "type_name": "CEconTool_Spray", - "vtable_address": 6463042976, + "vtable_address": 6463042992, "methods": [ 6453954176, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84447,14 +84449,14 @@ }, { "type_name": "CEconTool_StatTrakSwap", - "vtable_address": 6463043480, + "vtable_address": 6463043496, "methods": [ 6453954336, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84483,14 +84485,14 @@ }, { "type_name": "CEconTool_Sticker", - "vtable_address": 6463042808, + "vtable_address": 6463042824, "methods": [ 6453954496, - 6454305552, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454305568, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84519,14 +84521,14 @@ }, { "type_name": "CEconTool_WeddingRing", - "vtable_address": 6463042224, + "vtable_address": 6463042240, "methods": [ 6453954656, - 6454071648, - 6454330656, - 6454234704, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234720, + 6454188208, + 6454074192 ], "bases": [ { @@ -84555,14 +84557,14 @@ }, { "type_name": "CEconTool_WrappedGift", - "vtable_address": 6463042168, + "vtable_address": 6463042184, "methods": [ 6453954816, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84591,14 +84593,14 @@ }, { "type_name": "CEconTool_XpGrant", - "vtable_address": 6463043144, + "vtable_address": 6463043160, "methods": [ 6453954976, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84627,14 +84629,14 @@ }, { "type_name": "CEconTool_XpShopTicket", - "vtable_address": 6463042336, + "vtable_address": 6463042352, "methods": [ 6453955136, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [ { @@ -84677,20 +84679,20 @@ }, { "type_name": "CEconWearable", - "vtable_address": 6463079352, + "vtable_address": 6463079384, "methods": [ 6446805904, - 6454294048, + 6454294064, 6450347152, 6450358880, 6450464528, 6450317360, 6450523824, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, - 6454284448, + 6454284464, 6450455584, 6451818320, 6451744928, @@ -84718,12 +84720,12 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454310208, - 6454326544, - 6454329712, + 6456895872, + 6454310224, + 6454326560, + 6454329728, 6443738704, - 6454311360, + 6454311376, 6445582096, 6450530464, 6445541264, @@ -84779,7 +84781,7 @@ 6450516816, 6445499744, 6445594096, - 6454331008, + 6454331024, 6451906816, 6443748256, 6443748272, @@ -85001,26 +85003,26 @@ 6451896112, 6443967696, 6444054976, - 6454314272, - 6454071632, + 6454314288, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, - 6454317936, - 6454327024, - 6454306304, - 6454306896, - 6454331168, - 6454325616, - 6454310224, - 6454314256, - 6454325680, - 6454313840, - 6454329856 + 6454284112, + 6454317952, + 6454327040, + 6454306320, + 6454306912, + 6454331184, + 6454325632, + 6454310240, + 6454314272, + 6454325696, + 6454313856, + 6454329872 ], "bases": [ { @@ -85147,14 +85149,14 @@ }, { "type_name": "CEconWearable", - "vtable_address": 6463082096, + "vtable_address": 6463082128, "methods": [ - 6454329748, + 6454329764, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -85281,10 +85283,10 @@ }, { "type_name": "CEconWearable", - "vtable_address": 6463082152, + "vtable_address": 6463082184, "methods": [ - 6454202272, - 6454120288 + 6454202288, + 6454120304 ], "bases": [ { @@ -85466,17 +85468,16 @@ "type_name": "CEmptySequence", "vtable_address": 6463600872, "methods": [ - 6457867104, - 6457866224, - 6457866752, - 6457866576, + 6457867120, + 6457866240, + 6457866768, + 6457866592, + 6457866064, + 6457866736, 6457866048, - 6457866720, - 6457866032, - 6457867040, - 6457867072, + 6457867056, 6457867088, - 6457866080, + 6457867104, 6457866096, 6457866112, 6457866128, @@ -85485,26 +85486,26 @@ 6457866176, 6457866192, 6457866208, - 6457866240, + 6457866224, 6457866256, 6457866272, 6457866288, 6457866304, 6457866320, - 6457866368, + 6457866336, 6457866384, 6457866400, 6457866416, 6457866432, 6457866448, - 6457866480, 6457866464, 6457866496, + 6457866480, 6457866512, 6457866528, 6457866544, 6457866560, - 6457866592, + 6457866576, 6457866608, 6457866624, 6457866640, @@ -85512,21 +85513,22 @@ 6457866672, 6457866688, 6457866704, - 6457866768, + 6457866720, 6457866784, 6457866800, 6457866816, - 6457866848, - 6457866896, + 6457866832, 6457866864, - 6457866944, - 6457866064, + 6457866912, + 6457866880, 6457866960, - 6457866992, + 6457866080, + 6457866976, 6457867008, 6457867024, - 6457866736, - 6457867056 + 6457867040, + 6457866752, + 6457867072 ], "bases": [ { @@ -85569,7 +85571,7 @@ }, { "type_name": "CEmptyWorldService", - "vtable_address": 6461809920, + "vtable_address": 6461809936, "methods": [ 6449302512, 6449303248, @@ -85734,18 +85736,18 @@ }, { "type_name": "CEnableMotionFixup", - "vtable_address": 6462851144, + "vtable_address": 6462851160, "methods": [ 6446805888, 6453196048, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -85775,7 +85777,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453235504, 6453303120, 6453322560, @@ -86021,7 +86023,7 @@ }, { "type_name": "CEnduringClassMemoryPool", - "vtable_address": 6461034464, + "vtable_address": 6461034448, "methods": [ 6446069936 ], @@ -86037,28 +86039,28 @@ }, { "type_name": "CEngineGotvSyncPacket", - "vtable_address": 6461333264, + "vtable_address": 6461333248, "methods": [ 6447098224, - 6455181760, + 6455181776, 6447078800, 6447079344, 6447079408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447079440, 6447081616, 6447079728, 6443766512, 6447080784, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447081728, 6447082256, 6447082080, - 6455179744, + 6455179760, 6447096032, - 6455179744, + 6455179760, 6447096960 ], "bases": [ @@ -86102,7 +86104,7 @@ }, { "type_name": "CEntFireAutoCompletionFunctor", - "vtable_address": 6462354992, + "vtable_address": 6462355024, "methods": [ 6445894064, 6451673328, @@ -86164,7 +86166,7 @@ }, { "type_name": "CEntFireAutoCompletionFunctor", - "vtable_address": 6462355032, + "vtable_address": 6462355064, "methods": [ 6451672192 ], @@ -86223,7 +86225,7 @@ }, { "type_name": "CEntFireOutputAutoCompletionFunctor", - "vtable_address": 6462355592, + "vtable_address": 6462355624, "methods": [ 6445894064, 6451674080, @@ -86299,7 +86301,7 @@ }, { "type_name": "CEntFireOutputAutoCompletionFunctor", - "vtable_address": 6462355632, + "vtable_address": 6462355664, "methods": [ 6451672192 ], @@ -86372,7 +86374,7 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 6462278200, + "vtable_address": 6462278232, "methods": [ 6450981520, 6451065152, @@ -86422,7 +86424,7 @@ }, { "type_name": "CEntity2NetworkClasses", - "vtable_address": 6462278256, + "vtable_address": 6462278288, "methods": [ 6451123280, 6444023696, @@ -86470,7 +86472,7 @@ }, { "type_name": "CEntity2SaveRestore", - "vtable_address": 6462251184, + "vtable_address": 6462251216, "methods": [ 6450772256, 6450858480, @@ -86544,9 +86546,9 @@ }, { "type_name": "CEntity2_EHandle_Restore", - "vtable_address": 6462778632, + "vtable_address": 6462778664, "methods": [ - 6456923024 + 6456923040 ], "bases": [ { @@ -86575,9 +86577,9 @@ }, { "type_name": "CEntity2_EHandle_Save", - "vtable_address": 6462778616, + "vtable_address": 6462778648, "methods": [ - 6456925728 + 6456925744 ], "bases": [ { @@ -86606,7 +86608,7 @@ }, { "type_name": "CEntityAutoCompletionFunctor", - "vtable_address": 6461015864, + "vtable_address": 6461015848, "methods": [ 6445894064, 6445896240 @@ -86638,18 +86640,18 @@ }, { "type_name": "CEntityBlocker", - "vtable_address": 6461201928, + "vtable_address": 6461201896, "methods": [ 6446805920, 6446875152, 6450347280, - 6456889008, + 6456889024, 6452081280, 6450317376, 6452100144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -86679,7 +86681,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446879280, 6446896128, 6446898000, @@ -86967,10 +86969,10 @@ }, { "type_name": "CEntityClassPulseSignature", - "vtable_address": 6463268656, + "vtable_address": 6463268688, "methods": [ - 6456927600, - 6459886716 + 6456927616, + 6459886732 ], "bases": [ { @@ -86999,7 +87001,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6462411200, + "vtable_address": 6462411232, "methods": [ 6451891248, 6451884336, @@ -87049,7 +87051,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6462192896, + "vtable_address": 6462192928, "methods": [ 6450496704, 6450482704, @@ -87149,7 +87151,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6462317656, + "vtable_address": 6462317688, "methods": [ 6451368464, 6451363728, @@ -87199,7 +87201,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6462193976, + "vtable_address": 6462194008, "methods": [ 6450496816, 6450482816, @@ -87249,7 +87251,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6462192840, + "vtable_address": 6462192872, "methods": [ 6450496928, 6450482928, @@ -87299,7 +87301,7 @@ }, { "type_name": "CEntityComponentDataOps", - "vtable_address": 6462411088, + "vtable_address": 6462411120, "methods": [ 6451891360, 6451884448, @@ -87449,7 +87451,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6462184080, + "vtable_address": 6462184112, "methods": [ 6443858160, 6450381136, @@ -87499,7 +87501,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6462185416, + "vtable_address": 6462185448, "methods": [ 6443858160, 6450381152, @@ -87749,7 +87751,7 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6462313176, + "vtable_address": 6462313208, "methods": [ 6443858160, 6451306864, @@ -87899,14 +87901,14 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6463268928, + "vtable_address": 6463268960, "methods": [ 6443858160, - 6456945168, - 6456947728, - 6456947584, - 6456940240, - 6456945616 + 6456945184, + 6456947744, + 6456947600, + 6456940256, + 6456945632 ], "bases": [ { @@ -87949,12 +87951,12 @@ }, { "type_name": "CEntityComponentHelperT >", - "vtable_address": 6463084592, + "vtable_address": 6463084624, "methods": [ 6443858160, - 6454333504, + 6454333520, + 6454333584, 6454333568, - 6454333552, 6443809040, 6443825568 ], @@ -87999,7 +88001,7 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 6462277160, + "vtable_address": 6462277192, "methods": [ 6450981104, 6451064640, @@ -88033,7 +88035,7 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 6462277120, + "vtable_address": 6462277152, "methods": [ 6450980688, 6451064448, @@ -88067,7 +88069,7 @@ }, { "type_name": "CEntityDataInstantiator", - "vtable_address": 6462277200, + "vtable_address": 6462277232, "methods": [ 6450980896, 6451064544, @@ -88101,7 +88103,7 @@ }, { "type_name": "CEntityDebugGameSystem", - "vtable_address": 6461030560, + "vtable_address": 6461030544, "methods": [ 6443752688, 6443767152, @@ -88220,18 +88222,18 @@ }, { "type_name": "CEntityDissolve", - "vtable_address": 6462474448, + "vtable_address": 6462474480, "methods": [ 6446805920, 6451978272, 6450347280, - 6456889008, + 6456889024, 6452081328, 6450317376, 6452100192, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -88261,7 +88263,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035424, 6446896144, 6452085248, @@ -88549,18 +88551,18 @@ }, { "type_name": "CEntityFlame", - "vtable_address": 6462449568, + "vtable_address": 6462449600, "methods": [ 6446805888, 6451978336, 6445463120, - 6456889008, + 6456889024, 6452081392, 6451753984, 6452101248, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451981456, 6452116464, 6451865168, @@ -88590,7 +88592,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035440, 6446896160, 6452085296, @@ -88836,7 +88838,7 @@ }, { "type_name": "CEntityIONotify", - "vtable_address": 6462267984, + "vtable_address": 6462268016, "methods": [ 6450891936, 6450892880, @@ -88887,51 +88889,51 @@ }, { "type_name": "CEntityInstance", - "vtable_address": 6463264080, + "vtable_address": 6463264112, "methods": [ - 6456891072, - 6456885328, - 6456888448, - 6456889008, - 6456894032, - 6456886080, - 6456897680, - 6456887568, - 6456894000, + 6456891088, + 6456885344, + 6456888464, + 6456889024, + 6456894048, + 6456886096, + 6456897696, + 6456887584, 6456894016, - 6456885776, - 6456897952, - 6456893872, + 6456894032, + 6456885792, + 6456897968, + 6456893888, 6451818352, 6451745024, 6443767248, + 6456889792, 6456889776, - 6456889760, + 6456896592, 6456896576, - 6456896560, + 6456893872, 6456893856, 6456893840, 6456893824, - 6456893808, - 6456896544, + 6456896560, 6443757760, 6443765584, 6443765632, 6443765664, + 6456893808, + 6456893392, 6456893792, - 6456893376, - 6456893776, 6443766736, - 6456886064, - 6456886096, + 6456886080, + 6456886112, + 6456890320, 6456890304, 6456890288, - 6456890272, 6443746320, - 6456895856, - 6456890352, + 6456895872, + 6456890368, 6446826784, - 6456896592 + 6456896608 ], "bases": [], "model": { @@ -88976,7 +88978,7 @@ }, { "type_name": "CEntityKeyValuesSaveRestoreOps", - "vtable_address": 6462198696, + "vtable_address": 6462198728, "methods": [ 6450547088, 6450547312, @@ -89040,7 +89042,7 @@ }, { "type_name": "CEntityLumpRequest", - "vtable_address": 6462586912, + "vtable_address": 6462586952, "methods": [ 6445773488 ], @@ -89071,27 +89073,27 @@ }, { "type_name": "CEntityMessageDoSpark", - "vtable_address": 6461557280, + "vtable_address": 6461557264, "methods": [ 6448117296, - 6455181760, + 6455181776, 6448105248, 6448105856, 6448106016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448106032, 6448107888, 6448106416, 6443766512, 6448107360, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448107968, 6448108176, 6448108160, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -89134,22 +89136,22 @@ }, { "type_name": "CEntityMessageFixAngle", - "vtable_address": 6461558880, + "vtable_address": 6461558864, "methods": [ 6448137680, - 6455181760, + 6455181776, 6448125408, 6448126160, 6448126320, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448126336, 6448127584, 6448126608, 6443766512, 6448127376, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448127904, 6448129024, 6448129008 @@ -89195,22 +89197,22 @@ }, { "type_name": "CEntityMessagePlayJingle", - "vtable_address": 6461523896, + "vtable_address": 6461523880, "methods": [ 6448056416, - 6455181760, + 6455181776, 6448052720, 6448053136, 6448053216, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448053232, 6448053840, 6448053344, 6443766512, 6448053728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448053856, 6448054032, 6448054016 @@ -89256,26 +89258,26 @@ }, { "type_name": "CEntityMessagePropagateForce", - "vtable_address": 6461555552, + "vtable_address": 6461555536, "methods": [ 6448101280, - 6455181760, + 6455181776, 6448091536, 6448094160, 6448094304, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448094464, 6448096896, 6448095216, 6443766512, 6448096720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448097856, - 6448098320, - 6448098288, - 6455179744, + 6448098608, + 6448098304, + 6455179760, 6448100592 ], "bases": [ @@ -89319,7 +89321,7 @@ }, { "type_name": "CEntityMessagePropagateForce_t", - "vtable_address": 6462874352, + "vtable_address": 6462874368, "methods": [ 6453417584, 6451510272, @@ -89438,25 +89440,25 @@ }, { "type_name": "CEntityMessagePropagateForce_t", - "vtable_address": 6462874400, + "vtable_address": 6462874416, "methods": [ 6453417312, - 6455181760, + 6455181776, 6448091536, 6448094160, 6448094304, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448094464, 6448096896, 6448095216, 6443766512, 6448096720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448097856, - 6448098320, - 6448098288 + 6448098608, + 6448098304 ], "bases": [ { @@ -89569,23 +89571,23 @@ }, { "type_name": "CEntityMessageRemoveAllDecals", - "vtable_address": 6461554256, + "vtable_address": 6461554240, "methods": [ 6448086224, - 6455181760, + 6455181776, 6448073472, 6448073952, 6448074048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448074240, 6448075136, 6448074448, 6443766512, 6448074960, - 6455183120, - 6455184944, - 6448075424, + 6455183136, + 6455184960, + 6448075520, 6448076256, 6448076240 ], @@ -89630,7 +89632,7 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 6462377456, + "vtable_address": 6462377488, "methods": [ 6451743840, 6451509856, @@ -89749,23 +89751,23 @@ }, { "type_name": "CEntityMessageRemoveAllDecals_t", - "vtable_address": 6462377504, + "vtable_address": 6462377536, "methods": [ 6451742808, - 6455181760, + 6455181776, 6448073472, 6448073952, 6448074048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448074240, 6448075136, 6448074448, 6443766512, 6448074960, - 6455183120, - 6455184944, - 6448075424, + 6455183136, + 6455184960, + 6448075520, 6448076256, 6448076240 ], @@ -89880,22 +89882,22 @@ }, { "type_name": "CEntityMessageScreenOverlay", - "vtable_address": 6461545424, + "vtable_address": 6461545408, "methods": [ 6448067888, - 6455181760, + 6455181776, 6448062144, 6448062368, 6448062448, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448062608, 6448063408, 6448062736, 6443766512, 6448063232, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448064032, 6448065728, 6448065712 @@ -89941,25 +89943,25 @@ }, { "type_name": "CEntityMsg", - "vtable_address": 6461545568, + "vtable_address": 6461545552, "methods": [ 6448068592, - 6455181760, + 6455181776, 6448065248, - 6448065936, + 6448065872, 6448065968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448065984, - 6448066608, + 6448066592, 6448066032, 6443766512, - 6448066432, - 6455183120, - 6455184944, - 6448066704, - 6448066896, - 6448066864 + 6448066416, + 6455183136, + 6455184960, + 6448066688, + 6448066880, + 6448066832 ], "bases": [ { @@ -90034,7 +90036,7 @@ }, { "type_name": "CEntityOutputTemplate >", - "vtable_address": 6462584328, + "vtable_address": 6462584368, "methods": [ 6443773936, 6443778048 @@ -90066,7 +90068,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 6462633512, + "vtable_address": 6462633544, "methods": [ 6443773936, 6443778048 @@ -90098,7 +90100,7 @@ }, { "type_name": "CEntityOutputTemplate >", - "vtable_address": 6462629328, + "vtable_address": 6462629360, "methods": [ 6443773936, 6443778048 @@ -90130,7 +90132,7 @@ }, { "type_name": "CEntityOutputTemplate", - "vtable_address": 6461146384, + "vtable_address": 6461146360, "methods": [ 6443773936, 6443778048 @@ -90226,7 +90228,7 @@ }, { "type_name": "CEntitySaveRestoreBlockHandler", - "vtable_address": 6462199952, + "vtable_address": 6462199984, "methods": [ 6450547552, 6450547568, @@ -90311,7 +90313,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461043352, + "vtable_address": 6461043336, "methods": [ 6446203104, 6446111712 @@ -90375,7 +90377,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462396456, + "vtable_address": 6462396488, "methods": [ 6451923168, 6451863536 @@ -90407,7 +90409,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462093976, + "vtable_address": 6462093992, "methods": [ 6449779664, 6449757280 @@ -90439,7 +90441,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462111280, + "vtable_address": 6462111296, "methods": [ 6449926592, 6449887552 @@ -90503,7 +90505,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462439424, + "vtable_address": 6462439456, "methods": [ 6452106976, 6452077232 @@ -90535,7 +90537,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462855792, + "vtable_address": 6462855808, "methods": [ 6453327552, 6453288288 @@ -90567,7 +90569,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462474424, + "vtable_address": 6462474456, "methods": [ 6452107168, 6452077248 @@ -90599,7 +90601,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462476792, + "vtable_address": 6462476824, "methods": [ 6452107360, 6452077264 @@ -90631,7 +90633,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462477040, + "vtable_address": 6462477072, "methods": [ 6452107552, 6452077280 @@ -90663,7 +90665,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461785496, + "vtable_address": 6461785512, "methods": [ 6449281472, 6449265520 @@ -90695,7 +90697,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462954032, + "vtable_address": 6462954048, "methods": [ 6453832384, 6453793968 @@ -90727,7 +90729,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462954080, + "vtable_address": 6462954096, "methods": [ 6453832576, 6453793984 @@ -90759,7 +90761,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462114152, + "vtable_address": 6462114168, "methods": [ 6449926784, 6449887568 @@ -90791,7 +90793,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462895832, + "vtable_address": 6462895848, "methods": [ 6453624752, 6453539248 @@ -90823,7 +90825,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462597464, + "vtable_address": 6462597496, "methods": [ 6452674016, 6452649216 @@ -90855,7 +90857,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462754496, + "vtable_address": 6462754528, "methods": [ 6452875520, 6452822080 @@ -90887,7 +90889,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462754400, + "vtable_address": 6462754432, "methods": [ 6452875712, 6452822096 @@ -90919,7 +90921,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462754544, + "vtable_address": 6462754576, "methods": [ 6452875904, 6452822112 @@ -90951,7 +90953,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462760312, + "vtable_address": 6462760344, "methods": [ 6452876096, 6452822128 @@ -90983,7 +90985,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461910992, + "vtable_address": 6461911008, "methods": [ 6449658768, 6449628672 @@ -91015,7 +91017,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462961336, + "vtable_address": 6462961352, "methods": [ 6453832768, 6453794000 @@ -91047,7 +91049,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462132392, + "vtable_address": 6462132408, "methods": [ 6450074096, 6450030704 @@ -91111,7 +91113,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461835840, + "vtable_address": 6461835856, "methods": [ 6449345280, 6449336736 @@ -91143,7 +91145,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461674848, + "vtable_address": 6461674832, "methods": [ 6448802016, 6448793600 @@ -91175,7 +91177,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461097440, + "vtable_address": 6461097424, "methods": [ 6446648032, 6446520912 @@ -91207,7 +91209,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462560464, + "vtable_address": 6462560496, "methods": [ 6452543296, 6452490704 @@ -91239,7 +91241,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462935272, + "vtable_address": 6462935288, "methods": [ 6453832960, 6453794016 @@ -91271,7 +91273,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461749472, + "vtable_address": 6461749488, "methods": [ 6449181648, 6449102544 @@ -91303,7 +91305,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461099016, + "vtable_address": 6461099000, "methods": [ 6446648224, 6446520928 @@ -91335,7 +91337,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6461759768, + "vtable_address": 6461759784, "methods": [ 6449181840, 6449102560 @@ -91367,7 +91369,7 @@ }, { "type_name": "CEntitySpawner", - "vtable_address": 6462352592, + "vtable_address": 6462352624, "methods": [ 6451633024, 6451609200 @@ -91399,7 +91401,7 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 6461098104, + "vtable_address": 6461098088, "methods": [ 6446648416, 6446111712 @@ -91445,7 +91447,7 @@ }, { "type_name": "CEntitySpawnerAsync", - "vtable_address": 6462786352, + "vtable_address": 6462786384, "methods": [ 6453053040, 6453007856 @@ -91491,7 +91493,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461043328, + "vtable_address": 6461043312, "methods": [ 6446203296, 6446111712 @@ -91525,7 +91527,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462396432, + "vtable_address": 6462396464, "methods": [ 6451923360, 6451863536 @@ -91542,7 +91544,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462093952, + "vtable_address": 6462093968, "methods": [ 6449779856, 6449757280 @@ -91559,7 +91561,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462111256, + "vtable_address": 6462111272, "methods": [ 6449926976, 6449887552 @@ -91593,7 +91595,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462439400, + "vtable_address": 6462439432, "methods": [ 6452107744, 6452077232 @@ -91610,7 +91612,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462855768, + "vtable_address": 6462855784, "methods": [ 6453327744, 6453288288 @@ -91627,7 +91629,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462474400, + "vtable_address": 6462474432, "methods": [ 6452107936, 6452077248 @@ -91644,7 +91646,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462476768, + "vtable_address": 6462476800, "methods": [ 6452108128, 6452077264 @@ -91661,7 +91663,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462477016, + "vtable_address": 6462477048, "methods": [ 6452108320, 6452077280 @@ -91678,7 +91680,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461785472, + "vtable_address": 6461785488, "methods": [ 6449281664, 6449265520 @@ -91695,7 +91697,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462954008, + "vtable_address": 6462954024, "methods": [ 6453833152, 6453793968 @@ -91712,7 +91714,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462954056, + "vtable_address": 6462954072, "methods": [ 6453833344, 6453793984 @@ -91729,7 +91731,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462114128, + "vtable_address": 6462114144, "methods": [ 6449927168, 6449887568 @@ -91746,7 +91748,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462895808, + "vtable_address": 6462895824, "methods": [ 6453624944, 6453539248 @@ -91763,7 +91765,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462597440, + "vtable_address": 6462597472, "methods": [ 6452674208, 6452649216 @@ -91780,7 +91782,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462754472, + "vtable_address": 6462754504, "methods": [ 6452876288, 6452822080 @@ -91797,7 +91799,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462754376, + "vtable_address": 6462754408, "methods": [ 6452876480, 6452822096 @@ -91814,7 +91816,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462754520, + "vtable_address": 6462754552, "methods": [ 6452876672, 6452822112 @@ -91831,7 +91833,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462760288, + "vtable_address": 6462760320, "methods": [ 6452876864, 6452822128 @@ -91848,7 +91850,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462786328, + "vtable_address": 6462786360, "methods": [ 6453053232, 6453007856 @@ -91865,7 +91867,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461910968, + "vtable_address": 6461910984, "methods": [ 6449658960, 6449628672 @@ -91882,7 +91884,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462961312, + "vtable_address": 6462961328, "methods": [ 6453833536, 6453794000 @@ -91899,7 +91901,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462132368, + "vtable_address": 6462132384, "methods": [ 6450074288, 6450030704 @@ -91933,7 +91935,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461835816, + "vtable_address": 6461835832, "methods": [ 6449345472, 6449336736 @@ -91950,7 +91952,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461674824, + "vtable_address": 6461674808, "methods": [ 6448802208, 6448793600 @@ -91967,7 +91969,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461097416, + "vtable_address": 6461097400, "methods": [ 6446648608, 6446520912 @@ -91984,7 +91986,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462560440, + "vtable_address": 6462560472, "methods": [ 6452543488, 6452490704 @@ -92001,7 +92003,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462935248, + "vtable_address": 6462935264, "methods": [ 6453833728, 6453794016 @@ -92018,7 +92020,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461749448, + "vtable_address": 6461749464, "methods": [ 6449182032, 6449102544 @@ -92035,7 +92037,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461098992, + "vtable_address": 6461098976, "methods": [ 6446648800, 6446520928 @@ -92052,7 +92054,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6461759744, + "vtable_address": 6461759760, "methods": [ 6449182224, 6449102560 @@ -92069,7 +92071,7 @@ }, { "type_name": "CEntitySpawnerBase", - "vtable_address": 6462352568, + "vtable_address": 6462352600, "methods": [ 6451633216, 6451609200 @@ -92086,7 +92088,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 6461042800, + "vtable_address": 6461042784, "methods": [ 6446067760, 6443767152, @@ -92205,7 +92207,7 @@ }, { "type_name": "CEntitySubclassGameSystem", - "vtable_address": 6461043296, + "vtable_address": 6461043280, "methods": [ 6445800160, 6446113504, @@ -92266,7 +92268,7 @@ }, { "type_name": "CEntitySubclassVDataBase", - "vtable_address": 6461001616, + "vtable_address": 6461001600, "methods": [ 6445874992, 6445891248, @@ -92302,32 +92304,32 @@ }, { "type_name": "CEntitySystem", - "vtable_address": 6462272616, - "methods": [ - 6456776656, - 6456776720, - 6456776624, - 6456775488, - 6456775920, - 6456776768, - 6456821248, - 6456769440, - 6456831472, - 6456823888, + "vtable_address": 6462272648, + "methods": [ + 6456776672, + 6456776736, + 6456776640, + 6456775504, + 6456775936, + 6456776784, + 6456821264, + 6456769456, + 6456831488, + 6456823904, 6450981584, - 6456809248, - 6456778400, - 6456805152, + 6456809264, + 6456778416, + 6456805168, 6451124400, 6451123104, 6451125968, 6451071328, 6451215232, - 6456851104, - 6456763904, - 6456826832, - 6456826704, - 6456860192 + 6456851120, + 6456763920, + 6456826848, + 6456826720, + 6456860208 ], "bases": [ { @@ -92356,18 +92358,18 @@ }, { "type_name": "CEnvBeam", - "vtable_address": 6462503768, + "vtable_address": 6462503800, "methods": [ 6446805920, 6452168688, 6450347280, - 6456889008, + 6456889024, 6452260416, 6450317376, 6452284816, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452171296, 6451933344, 6450455600, @@ -92397,7 +92399,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207856, 6452267968, 6452272352, @@ -92700,18 +92702,18 @@ }, { "type_name": "CEnvBeverage", - "vtable_address": 6462455544, + "vtable_address": 6462455576, "methods": [ 6446805888, 6451978400, 6445463120, - 6456889008, + 6456889024, 6452081408, 6451753984, 6452101424, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -92741,7 +92743,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035456, 6452082048, 6452085344, @@ -92992,13 +92994,13 @@ 6446805888, 6445409504, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445582336, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445411216, 6445592000, 6451865168, @@ -93028,7 +93030,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445495088, 6445552352, 6445560720, @@ -93551,13 +93553,13 @@ 6446805888, 6445409568, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445582336, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445411216, 6445592000, 6451865168, @@ -93587,7 +93589,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445495104, 6445552368, 6445560768, @@ -94152,13 +94154,13 @@ 6446805888, 6445409632, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445582528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445412640, 6451932368, 6451865168, @@ -94188,7 +94190,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445495120, 6445552384, 6445560816, @@ -94547,13 +94549,13 @@ 6446805888, 6445409696, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445582528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445412640, 6451932368, 6451865168, @@ -94583,7 +94585,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445495136, 6445552400, 6445560864, @@ -94970,13 +94972,13 @@ 6446805888, 6445409760, 6445463120, - 6456889008, + 6456889024, 6445542288, 6451753984, 6445582608, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -95006,7 +95008,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445495152, 6445647600, 6445560912, @@ -95284,18 +95286,18 @@ }, { "type_name": "CEnvDecal", - "vtable_address": 6462481400, + "vtable_address": 6462481432, "methods": [ 6446805920, 6451978464, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -95325,7 +95327,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035472, 6446896176, 6452085392, @@ -95613,18 +95615,18 @@ }, { "type_name": "CEnvDetailController", - "vtable_address": 6462483688, + "vtable_address": 6462483720, "methods": [ 6446805888, 6451978608, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -95654,7 +95656,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035488, 6445853936, 6452085440, @@ -95900,18 +95902,18 @@ }, { "type_name": "CEnvEntityIgniter", - "vtable_address": 6462477112, + "vtable_address": 6462477144, "methods": [ 6446805888, 6451978704, 6445463120, - 6456889008, + 6456889024, 6452081456, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -95941,7 +95943,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035504, 6452082064, 6452085488, @@ -96187,18 +96189,18 @@ }, { "type_name": "CEnvEntityMaker", - "vtable_address": 6462485640, + "vtable_address": 6462485672, "methods": [ 6452038496, 6451978768, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452101504, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451981472, 6451932368, 6451865168, @@ -96228,7 +96230,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035520, 6452082080, 6452085536, @@ -96488,18 +96490,18 @@ }, { "type_name": "CEnvExplosion", - "vtable_address": 6462520704, + "vtable_address": 6462520736, "methods": [ 6446805920, 6452169072, 6450347280, - 6456889008, + 6456889024, 6452260576, 6450317376, 6452285840, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452171552, 6450537872, 6450455600, @@ -96529,7 +96531,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207872, 6452267984, 6452272400, @@ -96831,18 +96833,18 @@ }, { "type_name": "CEnvFade", - "vtable_address": 6462506376, + "vtable_address": 6462506408, "methods": [ 6446805888, 6452169136, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452286000, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -96872,7 +96874,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207888, 6452268000, 6452272448, @@ -97146,18 +97148,18 @@ }, { "type_name": "CEnvGlobal", - "vtable_address": 6462635672, + "vtable_address": 6462635704, "methods": [ 6446805888, 6452594560, 6445463120, - 6456889008, + 6456889024, 6452652000, 6451753984, 6452660048, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -97187,7 +97189,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623424, 6452653280, 6452656496, @@ -97466,13 +97468,13 @@ 6445499872, 6444437152, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6444565376, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -97502,7 +97504,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444484960, 6444544592, 6444557696, @@ -97762,18 +97764,18 @@ }, { "type_name": "CEnvInstructorHint", - "vtable_address": 6462494576, + "vtable_address": 6462494608, "methods": [ 6445499872, 6452169280, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452286016, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -97803,7 +97805,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207904, 6452268016, 6452272496, @@ -98063,18 +98065,18 @@ }, { "type_name": "CEnvInstructorVRHint", - "vtable_address": 6462496528, + "vtable_address": 6462496560, "methods": [ 6445499872, 6452169360, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452286096, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -98104,7 +98106,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207920, 6452268032, 6452272544, @@ -98364,18 +98366,18 @@ }, { "type_name": "CEnvLaser", - "vtable_address": 6461204112, + "vtable_address": 6461204080, "methods": [ 6446805920, 6446875216, 6450347280, - 6456889008, + 6456889024, 6452260704, 6450317376, 6452286112, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451747808, 6451933344, 6450455600, @@ -98405,7 +98407,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207936, 6446896192, 6446898048, @@ -98713,13 +98715,13 @@ 6446805888, 6445617568, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445652832, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445618560, 6445655664, 6451865168, @@ -98749,7 +98751,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623264, 6445647616, 6445652128, @@ -99103,18 +99105,18 @@ }, { "type_name": "CEnvMuzzleFlash", - "vtable_address": 6462468416, + "vtable_address": 6462468448, "methods": [ 6445499872, 6451978992, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452101632, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -99144,7 +99146,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035536, 6452082096, 6452085584, @@ -99404,18 +99406,18 @@ }, { "type_name": "CEnvParticleGlow", - "vtable_address": 6462307664, + "vtable_address": 6462307696, "methods": [ 6451327168, 6451284656, 6450347280, - 6456889008, + 6456889024, 6451359616, 6450317376, 6451379904, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451286144, 6451386832, 6450455600, @@ -99445,7 +99447,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451320992, 6451362624, 6451371296, @@ -99747,18 +99749,18 @@ }, { "type_name": "CEnvShake", - "vtable_address": 6462510760, + "vtable_address": 6462510792, "methods": [ 6445499872, 6452169440, 6445463120, - 6456889008, + 6456889024, 6452260880, 6451753984, 6452287920, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6452317776, 6451865168, @@ -99788,7 +99790,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207952, 6452268048, 6452272592, @@ -100053,13 +100055,13 @@ 6446805920, 6445617632, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445652912, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619504, 6445655712, 6450455600, @@ -100089,7 +100091,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623280, 6445647632, 6445652176, @@ -100377,18 +100379,18 @@ }, { "type_name": "CEnvSoundscape", - "vtable_address": 6461072960, + "vtable_address": 6461072944, "methods": [ 6446805888, 6446322816, 6445463120, - 6456889008, + 6456889024, 6446547456, 6451753984, 6446638144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6446328128, 6446667664, 6451865168, @@ -100418,7 +100420,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446427136, 6447028112, 6446595024, @@ -100664,18 +100666,18 @@ }, { "type_name": "CEnvSoundscapeAlias_snd_soundscape", - "vtable_address": 6461080960, + "vtable_address": 6461080944, "methods": [ 6446805888, 6446322976, 6445463120, - 6456889008, + 6456889024, 6446547456, 6451753984, 6446638144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6446328128, 6446667664, 6451865168, @@ -100705,7 +100707,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446427152, 6446565728, 6446595072, @@ -100965,18 +100967,18 @@ }, { "type_name": "CEnvSoundscapeProxy", - "vtable_address": 6461074912, + "vtable_address": 6461074896, "methods": [ 6446805888, 6446323136, 6445463120, - 6456889008, + 6456889024, 6446547520, 6451753984, 6446638144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6446328176, 6446667664, 6451865168, @@ -101006,7 +101008,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446427168, 6447028128, 6446595120, @@ -101266,18 +101268,18 @@ }, { "type_name": "CEnvSoundscapeProxyAlias_snd_soundscape_proxy", - "vtable_address": 6461078896, + "vtable_address": 6461078880, "methods": [ 6446805888, 6446323296, 6445463120, - 6456889008, + 6456889024, 6446547520, 6451753984, 6446638144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6446328176, 6446667664, 6451865168, @@ -101307,7 +101309,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446427184, 6446565744, 6446595168, @@ -101581,18 +101583,18 @@ }, { "type_name": "CEnvSoundscapeTriggerable", - "vtable_address": 6461076864, + "vtable_address": 6461076848, "methods": [ 6446805888, 6446323456, 6445463120, - 6456889008, + 6456889024, 6446547456, 6451753984, 6446638144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6446328128, 6446667664, 6451865168, @@ -101622,7 +101624,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446427200, 6447028144, 6446595216, @@ -101882,18 +101884,18 @@ }, { "type_name": "CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable", - "vtable_address": 6461083424, + "vtable_address": 6461083408, "methods": [ 6446805888, 6446323616, 6445463120, - 6456889008, + 6456889024, 6446547456, 6451753984, 6446638144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6446328128, 6446667664, 6451865168, @@ -101923,7 +101925,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446427216, 6446565760, 6446595264, @@ -102197,18 +102199,18 @@ }, { "type_name": "CEnvSpark", - "vtable_address": 6462515216, + "vtable_address": 6462515248, "methods": [ 6445499872, 6452169504, 6445463120, - 6456889008, + 6456889024, 6452260912, 6451753984, 6452288048, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -102238,7 +102240,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207968, 6452268064, 6452272640, @@ -102498,18 +102500,18 @@ }, { "type_name": "CEnvSplash", - "vtable_address": 6462470408, + "vtable_address": 6462470440, "methods": [ 6445499872, 6451979056, 6445463120, - 6456889008, + 6456889024, 6452081504, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -102539,7 +102541,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035552, 6452082112, 6452085632, @@ -102799,18 +102801,18 @@ }, { "type_name": "CEnvTilt", - "vtable_address": 6462513096, + "vtable_address": 6462513128, "methods": [ 6445499872, 6452169648, 6445463120, - 6456889008, + 6456889024, 6452260992, 6451753984, 6452288272, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -102840,7 +102842,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452207984, 6452268080, 6452272688, @@ -103100,18 +103102,18 @@ }, { "type_name": "CEnvViewPunch", - "vtable_address": 6462472400, + "vtable_address": 6462472432, "methods": [ 6445499872, 6451979120, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452101888, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -103141,7 +103143,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035568, 6452082128, 6452085680, @@ -103406,13 +103408,13 @@ 6446805888, 6445617872, 6445463120, - 6456889008, + 6456889024, 6445647376, 6451753984, 6445652992, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619520, 6451932368, 6451865168, @@ -103442,7 +103444,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623296, 6445647648, 6445652224, @@ -103693,13 +103695,13 @@ 6446805888, 6445618016, 6445463120, - 6456889008, + 6456889024, 6445647392, 6451753984, 6445653520, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619536, 6451932368, 6451865168, @@ -103729,7 +103731,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623312, 6445647664, 6445652272, @@ -103975,18 +103977,18 @@ }, { "type_name": "CEnvWind", - "vtable_address": 6462464504, + "vtable_address": 6462464536, "methods": [ 6446805888, 6451979184, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452101952, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -104016,7 +104018,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035584, 6452082144, 6452085728, @@ -104262,7 +104264,7 @@ }, { "type_name": "CEnvWind::NetworkVar_m_EnvWindShared", - "vtable_address": 6462464464, + "vtable_address": 6462464496, "methods": [ 6445652368, 6452057888, @@ -104301,13 +104303,13 @@ 6446805888, 6445618080, 6445463120, - 6456889008, + 6456889024, 6445647408, 6451753984, 6445653600, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619552, 6451932368, 6451865168, @@ -104337,7 +104339,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623328, 6445647680, 6445652320, @@ -104824,7 +104826,7 @@ }, { "type_name": "CEnvWindShared", - "vtable_address": 6462503536, + "vtable_address": 6462503568, "methods": [ 6445652368, 6452243664, @@ -104848,13 +104850,13 @@ 6446805888, 6445684624, 6445463120, - 6456889008, + 6456889024, 6445729680, 6451753984, 6445740768, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445686368, 6451932368, 6451865168, @@ -104884,7 +104886,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700592, 6445731904, 6445737088, @@ -105130,7 +105132,7 @@ }, { "type_name": "CEventLog", - "vtable_address": 6462517440, + "vtable_address": 6462517472, "methods": [ 6452169712, 6452199520, @@ -105196,7 +105198,7 @@ }, { "type_name": "CEventLog", - "vtable_address": 6462517512, + "vtable_address": 6462517544, "methods": [ 6443752688, 6443767152, @@ -105315,7 +105317,7 @@ }, { "type_name": "CEventQueue_SaveRestoreBlockHandler", - "vtable_address": 6462198472, + "vtable_address": 6462198504, "methods": [ 6450546272, 6445901264, @@ -105368,14 +105370,14 @@ }, { "type_name": "CEventsSaveDataOps", - "vtable_address": 6463263472, + "vtable_address": 6463263504, "methods": [ - 6456860592, - 6456860880, - 6456861136, - 6456861248, + 6456860608, + 6456860896, + 6456861152, 6456861264, - 6456861296 + 6456861280, + 6456861312 ], "bases": [ { @@ -105404,18 +105406,18 @@ }, { "type_name": "CFilterAttributeInt", - "vtable_address": 6462248136, + "vtable_address": 6462248168, "methods": [ 6446805888, 6450640096, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -105445,7 +105447,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758640, 6450823712, 6450848304, @@ -105735,18 +105737,18 @@ }, { "type_name": "CFilterClass", - "vtable_address": 6462229984, + "vtable_address": 6462230016, "methods": [ 6446805888, 6450640320, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -105776,7 +105778,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758656, 6450823728, 6450848352, @@ -106066,18 +106068,18 @@ }, { "type_name": "CFilterContext", - "vtable_address": 6462236160, + "vtable_address": 6462236192, "methods": [ 6446805888, 6450640544, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -106107,7 +106109,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758672, 6450823744, 6450848400, @@ -106397,18 +106399,18 @@ }, { "type_name": "CFilterEnemy", - "vtable_address": 6462246120, + "vtable_address": 6462246152, "methods": [ 6446805888, 6450640768, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -106438,7 +106440,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758688, 6450823760, 6450848448, @@ -106728,18 +106730,18 @@ }, { "type_name": "CFilterLOS", - "vtable_address": 6462228016, + "vtable_address": 6462228048, "methods": [ 6446805888, 6450640992, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -106769,7 +106771,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758704, 6450823776, 6450848496, @@ -107059,18 +107061,18 @@ }, { "type_name": "CFilterMassGreater", - "vtable_address": 6462240144, + "vtable_address": 6462240176, "methods": [ 6446805888, 6450641216, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -107100,7 +107102,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758720, 6450823792, 6450848544, @@ -107390,18 +107392,18 @@ }, { "type_name": "CFilterModel", - "vtable_address": 6462234192, + "vtable_address": 6462234224, "methods": [ 6446805888, 6450641440, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -107431,7 +107433,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758736, 6450823808, 6450848592, @@ -107721,18 +107723,18 @@ }, { "type_name": "CFilterMultiple", - "vtable_address": 6462224080, + "vtable_address": 6462224112, "methods": [ 6446805888, 6450641664, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450644064, 6451932368, 6451865168, @@ -107762,7 +107764,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758752, 6450823824, 6450848640, @@ -108052,18 +108054,18 @@ }, { "type_name": "CFilterName", - "vtable_address": 6462232216, + "vtable_address": 6462232248, "methods": [ 6446805888, 6450641888, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -108093,7 +108095,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758768, 6450823840, 6450848688, @@ -108383,18 +108385,18 @@ }, { "type_name": "CFilterProximity", - "vtable_address": 6462226048, + "vtable_address": 6462226080, "methods": [ 6446805888, 6450642112, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -108424,7 +108426,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758784, 6450823856, 6450848736, @@ -108714,18 +108716,18 @@ }, { "type_name": "CFilterTeam", - "vtable_address": 6462238160, + "vtable_address": 6462238192, "methods": [ 6446805888, 6450642336, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -108755,7 +108757,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758800, 6450823872, 6450848784, @@ -109082,13 +109084,13 @@ 6446805920, 6445145152, 6450347280, - 6456889008, + 6456889024, 6445186752, 6450317376, 6445195344, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6445208112, 6450455600, @@ -109118,7 +109120,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445167632, 6445187888, 6445192032, @@ -109429,7 +109431,7 @@ }, { "type_name": "CFish", - "vtable_address": 6462523048, + "vtable_address": 6462523080, "methods": [ 6446805696, 6452169840, @@ -109438,9 +109440,9 @@ 6450464528, 6450317360, 6452288384, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -109470,7 +109472,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208000, 6446896208, 6452272736, @@ -109809,18 +109811,18 @@ }, { "type_name": "CFishPool", - "vtable_address": 6462525520, + "vtable_address": 6462525552, "methods": [ 6446805888, 6452170032, 6445463120, - 6456889008, + 6456889024, 6452261024, 6451753984, 6452289008, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -109850,7 +109852,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208016, 6446896480, 6452272784, @@ -110124,7 +110126,7 @@ }, { "type_name": "CFishPool", - "vtable_address": 6462527472, + "vtable_address": 6462527504, "methods": [ 6452168516, 6452199552 @@ -110198,7 +110200,7 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6462145264, + "vtable_address": 6462145280, "methods": [ 6450133808, 6450196896 @@ -110215,7 +110217,7 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6461896224, + "vtable_address": 6461896240, "methods": [ 6449558848, 6449644944 @@ -110232,7 +110234,7 @@ }, { "type_name": "CFixedSizeCircularBuffer,16,int>", - "vtable_address": 6461872616, + "vtable_address": 6461872632, "methods": [ 6449398016, 6449461616 @@ -110249,7 +110251,7 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6462145240, + "vtable_address": 6462145256, "methods": [ 6450133792, 6450196880 @@ -110266,7 +110268,7 @@ }, { "type_name": "CFixedSizeCircularBuffer", - "vtable_address": 6461030480, + "vtable_address": 6461030464, "methods": [ 6446009824, 6446146016 @@ -110283,7 +110285,7 @@ }, { "type_name": "CFlashbang", - "vtable_address": 6462056432, + "vtable_address": 6462056448, "methods": [ 6446805904, 6449673088, @@ -110292,9 +110294,9 @@ 6449458272, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -110324,7 +110326,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681376, 6449684944, 6449685072, @@ -110385,7 +110387,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -110608,14 +110610,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449407632, @@ -110909,14 +110911,14 @@ }, { "type_name": "CFlashbang", - "vtable_address": 6462060088, + "vtable_address": 6462060104, "methods": [ 6449685108, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -111085,7 +111087,7 @@ }, { "type_name": "CFlashbang", - "vtable_address": 6462060144, + "vtable_address": 6462060160, "methods": [ 6449606576, 6449574480 @@ -111266,9 +111268,9 @@ 6449125920, 6450317360, 6445379104, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -111298,7 +111300,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445370672, 6445378688, 6445378768, @@ -111881,7 +111883,7 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 6462315808, + "vtable_address": 6462315840, "methods": [ 6443752688, 6443767152, @@ -112000,7 +112002,7 @@ }, { "type_name": "CFlashlightReceiver_Manager", - "vtable_address": 6462316304, + "vtable_address": 6462316336, "methods": [ 6444023440, 6451353904, @@ -112095,15 +112097,15 @@ }, { "type_name": "CFlexAnimationTrack", - "vtable_address": 6463251720, + "vtable_address": 6463251752, "methods": [ - 6456663040, - 6456663104, - 6456664288, - 6456663184, - 6456664176, - 6456664208, - 6456659136 + 6456663056, + 6456663120, + 6456664304, + 6456663200, + 6456664192, + 6456664224, + 6456659152 ], "bases": [ { @@ -112132,7 +112134,7 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 6462865984, + "vtable_address": 6462866032, "methods": [ 6453341360, 6443767152, @@ -112252,7 +112254,7 @@ }, { "type_name": "CFlexSceneFileManager", - "vtable_address": 6462866488, + "vtable_address": 6462866536, "methods": [ 6453341632 ], @@ -112316,13 +112318,13 @@ 6446805888, 6445684688, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445740848, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445686384, 6451932368, 6451865168, @@ -112352,7 +112354,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700608, 6445731920, 6445737136, @@ -112742,13 +112744,13 @@ 6445499856, 6445684752, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6445741216, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -112778,7 +112780,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700624, 6445731936, 6445737184, @@ -113102,18 +113104,18 @@ }, { "type_name": "CFogVolume", - "vtable_address": 6461328672, + "vtable_address": 6461328656, "methods": [ 6446805920, 6447072032, 6450347280, - 6456889008, + 6456889024, 6447074624, 6450317376, 6447074736, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6447072240, 6450537872, 6450455600, @@ -113143,7 +113145,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6447073424, 6447074672, 6447074688, @@ -113445,18 +113447,18 @@ }, { "type_name": "CFootstepControl", - "vtable_address": 6462125736, + "vtable_address": 6462125752, "methods": [ 6445499856, 6449949920, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6450073600, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6449951984, 6450089200, 6450455600, @@ -113486,7 +113488,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450002080, 6450060736, 6450064656, @@ -113938,18 +113940,18 @@ }, { "type_name": "CFuncBrush", - "vtable_address": 6462695800, + "vtable_address": 6462695832, "methods": [ 6446805920, 6452729968, 6450347280, - 6456889008, + 6456889024, 6452840640, 6450317376, 6452867280, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -113979,7 +113981,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789088, 6447001408, 6452856352, @@ -114275,13 +114277,13 @@ 6446805920, 6444437216, 6450347280, - 6456889008, + 6456889024, 6444543296, 6450317376, 6444565408, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6444439760, 6450537872, 6450455600, @@ -114311,7 +114313,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444484976, 6444544608, 6444557744, @@ -114599,18 +114601,18 @@ }, { "type_name": "CFuncElectrifiedVolume", - "vtable_address": 6462698328, + "vtable_address": 6462698360, "methods": [ 6446805920, 6452730032, 6450347280, - 6456889008, + 6456889024, 6452840688, 6450317376, 6452867552, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6452885376, 6450455600, @@ -114640,7 +114642,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789104, 6452842624, 6452856400, @@ -114945,18 +114947,18 @@ }, { "type_name": "CFuncIllusionary", - "vtable_address": 6462403088, + "vtable_address": 6462403120, "methods": [ 6446805920, 6451743936, 6450347280, - 6456889008, + 6456889024, 6451873648, 6450317376, 6451915664, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -114986,7 +114988,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818128, 6451877712, 6451893424, @@ -115274,18 +115276,18 @@ }, { "type_name": "CFuncInteractionLayerClip", - "vtable_address": 6462407440, + "vtable_address": 6462407472, "methods": [ 6446805920, 6451744000, 6450347280, - 6456889008, + 6456889024, 6451873696, 6450317376, 6451915744, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -115315,7 +115317,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818144, 6451877728, 6451893472, @@ -115603,18 +115605,18 @@ }, { "type_name": "CFuncLadder", - "vtable_address": 6462530416, + "vtable_address": 6462530448, "methods": [ 6446805920, 6452170288, 6450347280, - 6456889008, + 6456889024, 6452261072, 6450317376, 6452290144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452171728, 6450537872, 6450455600, @@ -115644,7 +115646,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208032, 6445853952, 6452272832, @@ -115932,18 +115934,18 @@ }, { "type_name": "CFuncLadderAlias_func_useableladder", - "vtable_address": 6462532760, + "vtable_address": 6462532792, "methods": [ 6446805920, 6452170352, 6450347280, - 6456889008, + 6456889024, 6452261072, 6450317376, 6452290144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452171728, 6450537872, 6450455600, @@ -115973,7 +115975,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208048, 6452268096, 6452272880, @@ -116275,18 +116277,18 @@ }, { "type_name": "CFuncMonitor", - "vtable_address": 6462535048, + "vtable_address": 6462535080, "methods": [ 6446805920, 6452170416, 6450347280, - 6456889008, + 6456889024, 6452261120, 6450317376, 6452292176, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452171824, 6452317840, 6450455600, @@ -116316,7 +116318,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208064, 6452268112, 6452272928, @@ -116621,18 +116623,18 @@ }, { "type_name": "CFuncMoveLinear", - "vtable_address": 6461210456, + "vtable_address": 6461210424, "methods": [ 6446805920, 6446875440, 6450347280, - 6456889008, + 6456889024, 6452261168, 6450317376, 6452292320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452171920, 6452317872, 6450455600, @@ -116662,7 +116664,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208080, 6446896560, 6446898096, @@ -116965,18 +116967,18 @@ }, { "type_name": "CFuncMoveLinearAlias_momentary_door", - "vtable_address": 6462537344, + "vtable_address": 6462537376, "methods": [ 6446805920, 6452170512, 6450347280, - 6456889008, + 6456889024, 6452261168, 6450317376, 6452292320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452171920, 6452317872, 6450455600, @@ -117006,7 +117008,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208096, 6452268128, 6452272976, @@ -117323,18 +117325,18 @@ }, { "type_name": "CFuncMover", - "vtable_address": 6461216616, + "vtable_address": 6461216584, "methods": [ 6446805920, 6446875664, 6450347280, - 6456889008, + 6456889024, 6452261312, 6450317376, 6452294032, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452172224, 6452317968, 6450455600, @@ -117364,7 +117366,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208112, 6446896576, 6446898144, @@ -117652,7 +117654,7 @@ }, { "type_name": "CFuncMoverSystem", - "vtable_address": 6462491784, + "vtable_address": 6462491816, "methods": [ 6443752688, 6443767152, @@ -117757,26 +117759,26 @@ }, { "type_name": "CFuncNavBlocker", - "vtable_address": 6461322344, + "vtable_address": 6461322328, "methods": [ 6446805920, 6447066672, 6450347280, - 6456889008, - 6454473280, + 6456889024, + 6454473296, 6450317376, - 6454490000, - 6456887568, - 6456894000, + 6454490016, + 6456887584, 6456894016, - 6454361792, - 6454498704, + 6456894032, + 6454361808, + 6454498720, 6450455600, 6451818320, 6451744928, 6443767248, 6450373856, - 6454418272, + 6454418288, 6450498736, 6451886672, 6445536336, @@ -117798,8 +117800,8 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454439200, + 6456895872, + 6454439216, 6447071488, 6447071552, 6443738704, @@ -118114,10 +118116,10 @@ }, { "type_name": "CFuncNavBlocker", - "vtable_address": 6461324520, + "vtable_address": 6461324504, "methods": [ 6447066656, - 6454463488 + 6454463504 ], "bases": [ { @@ -118202,26 +118204,26 @@ }, { "type_name": "CFuncNavObstruction", - "vtable_address": 6463099680, + "vtable_address": 6463099712, "methods": [ 6446805920, - 6454359744, + 6454359760, 6450347280, - 6456889008, - 6454473328, + 6456889024, + 6454473344, 6450317376, - 6454490128, - 6456887568, - 6456894000, + 6454490144, + 6456887584, 6456894016, - 6454362048, - 6454498848, + 6456894032, + 6454362064, + 6454498864, 6450455600, 6451818320, 6451744928, 6443767248, 6450373856, - 6454418800, + 6454418816, 6450498736, 6451886672, 6445536336, @@ -118243,10 +118245,10 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454439216, - 6454475200, - 6454487040, + 6456895872, + 6454439232, + 6454475216, + 6454487056, 6443738704, 6446805328, 6445582096, @@ -118573,22 +118575,22 @@ }, { "type_name": "CFuncNavObstruction", - "vtable_address": 6463101856, + "vtable_address": 6463101888, "methods": [ - 6454359656, + 6454359672, 6446995280, 6447001312, - 6454463600, - 6454463872, + 6454463616, + 6454463888, 6446989760, - 6454441360, + 6454441376, 6446998272, 6446998240, 6446986832, - 6454448704, - 6454442224, - 6454487536, - 6454441344 + 6454448720, + 6454442240, + 6454487552, + 6454441360 ], "bases": [ { @@ -118687,10 +118689,10 @@ }, { "type_name": "CFuncNavObstruction", - "vtable_address": 6463101976, + "vtable_address": 6463102008, "methods": [ - 6454359668, - 6454463552 + 6454359684, + 6454463568 ], "bases": [ { @@ -118789,18 +118791,18 @@ }, { "type_name": "CFuncPlat", - "vtable_address": 6462956816, + "vtable_address": 6462956832, "methods": [ 6446805920, 6453710576, 6450347280, - 6456889008, + 6456889024, 6453804848, 6450317376, 6453820304, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453716880, 6450537872, 6450455600, @@ -118830,7 +118832,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758224, 6453807248, 6453809520, @@ -119151,18 +119153,18 @@ }, { "type_name": "CFuncPlatRot", - "vtable_address": 6462961384, + "vtable_address": 6462961400, "methods": [ 6446805920, 6453710688, 6450347280, - 6456889008, + 6456889024, 6453804848, 6450317376, 6453820432, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453716880, 6450537872, 6450455600, @@ -119192,7 +119194,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758240, 6453807264, 6453809568, @@ -119527,18 +119529,18 @@ }, { "type_name": "CFuncPropRespawnZone", - "vtable_address": 6462855864, + "vtable_address": 6462855880, "methods": [ 6446805888, 6453196112, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -119568,7 +119570,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453235520, 6453303136, 6453322608, @@ -119814,7 +119816,7 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 6461782808, + "vtable_address": 6461782824, "methods": [ 6446805696, 6449226848, @@ -119823,9 +119825,9 @@ 6450464656, 6450317360, 6449277680, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450644000, 6450870512, 6450455584, @@ -119855,7 +119857,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449243056, 6449274160, 6449275296, @@ -120287,7 +120289,7 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 6461785352, + "vtable_address": 6461785368, "methods": [ 6445170480, 6445186928 @@ -120445,7 +120447,7 @@ }, { "type_name": "CFuncRetakeBarrier", - "vtable_address": 6461785376, + "vtable_address": 6461785392, "methods": [ 6449226444 ], @@ -120602,18 +120604,18 @@ }, { "type_name": "CFuncRotating", - "vtable_address": 6461218808, + "vtable_address": 6461218776, "methods": [ 6446805920, 6446875728, 6450347280, - 6456889008, + 6456889024, 6452261360, 6450317376, 6452294096, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452173024, 6450537872, 6450455600, @@ -120643,7 +120645,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208128, 6446896592, 6446898192, @@ -120931,18 +120933,18 @@ }, { "type_name": "CFuncRotator", - "vtable_address": 6461238784, + "vtable_address": 6461238744, "methods": [ 6446805920, 6446938448, 6450347280, - 6456889008, + 6456889024, 6452494912, 6450317376, 6452531456, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452388432, 6450537872, 6450455600, @@ -120972,7 +120974,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452445328, 6446952512, 6446952800, @@ -121260,18 +121262,18 @@ }, { "type_name": "CFuncShatterglass", - "vtable_address": 6462556992, + "vtable_address": 6462557024, "methods": [ 6446805920, 6452386848, 6450347280, - 6456889008, + 6456889024, 6452494960, 6450317376, 6452531584, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -121301,7 +121303,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452445344, 6445853968, 6452521648, @@ -121589,18 +121591,18 @@ }, { "type_name": "CFuncTankTrain", - "vtable_address": 6462943888, + "vtable_address": 6462943904, "methods": [ 6446805920, 6453710800, 6450347280, - 6456889008, + 6456889024, 6453805360, 6450317376, 6453820576, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453716944, 6453863392, 6450455600, @@ -121630,7 +121632,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758256, 6453807280, 6453809616, @@ -121932,18 +121934,18 @@ }, { "type_name": "CFuncTimescale", - "vtable_address": 6462561184, + "vtable_address": 6462561216, "methods": [ 6446805888, 6452386912, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -121973,7 +121975,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452445360, 6452507440, 6452521696, @@ -122219,18 +122221,18 @@ }, { "type_name": "CFuncTrackAuto", - "vtable_address": 6462971728, + "vtable_address": 6462971744, "methods": [ 6446805920, 6453710944, 6450347280, - 6456889008, + 6456889024, 6453805104, 6450317376, 6453820624, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453716880, 6450537872, 6450455600, @@ -122260,7 +122262,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758272, 6453807296, 6453809664, @@ -122624,18 +122626,18 @@ }, { "type_name": "CFuncTrackChange", - "vtable_address": 6462969296, + "vtable_address": 6462969312, "methods": [ 6446805920, 6453711056, 6450347280, - 6456889008, + 6456889024, 6453805104, 6450317376, 6453820624, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453716880, 6450537872, 6450455600, @@ -122665,7 +122667,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758288, 6453807312, 6453809712, @@ -123015,18 +123017,18 @@ }, { "type_name": "CFuncTrackTrain", - "vtable_address": 6462941712, + "vtable_address": 6462941728, "methods": [ 6446805920, 6453711168, 6450347280, - 6456889008, + 6456889024, 6453805360, 6450317376, 6453820976, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453716944, 6453863392, 6450455600, @@ -123056,7 +123058,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758304, 6447028160, 6453809760, @@ -123344,18 +123346,18 @@ }, { "type_name": "CFuncTrain", - "vtable_address": 6462963600, + "vtable_address": 6462963616, "methods": [ 6446805920, 6453711232, 6450347280, - 6456889008, + 6456889024, 6453804848, 6450317376, 6453821584, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453717168, 6450537872, 6450455600, @@ -123385,7 +123387,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758320, 6453807328, 6453809808, @@ -123702,18 +123704,18 @@ }, { "type_name": "CFuncTrainControls", - "vtable_address": 6462967104, + "vtable_address": 6462967120, "methods": [ 6446805920, 6453711344, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6453821920, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -123743,7 +123745,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758336, 6453807344, 6453809856, @@ -124031,18 +124033,18 @@ }, { "type_name": "CFuncVPhysicsClip", - "vtable_address": 6462405264, + "vtable_address": 6462405296, "methods": [ 6446805920, 6451744064, 6450347280, - 6456889008, + 6456889024, 6451873744, 6450317376, 6451915856, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -124072,7 +124074,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818160, 6451877744, 6451893520, @@ -124360,18 +124362,18 @@ }, { "type_name": "CFuncVehicleClip", - "vtable_address": 6462400880, + "vtable_address": 6462400912, "methods": [ 6446805920, 6451744128, 6450347280, - 6456889008, + 6456889024, 6451873792, 6450317376, 6451915968, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -124401,7 +124403,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818176, 6451877760, 6451893568, @@ -124689,18 +124691,18 @@ }, { "type_name": "CFuncWall", - "vtable_address": 6462396528, + "vtable_address": 6462396560, "methods": [ 6446805920, 6451744192, 6450347280, - 6456889008, + 6456889024, 6451873840, 6450317376, 6451916064, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -124730,7 +124732,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818192, 6451877776, 6451893616, @@ -125018,18 +125020,18 @@ }, { "type_name": "CFuncWallToggle", - "vtable_address": 6462398704, + "vtable_address": 6462398736, "methods": [ 6446805920, 6451744256, 6450347280, - 6456889008, + 6456889024, 6451873840, 6450317376, 6451916176, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -125059,7 +125061,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818208, 6451877792, 6451893664, @@ -125361,18 +125363,18 @@ }, { "type_name": "CFuncWater", - "vtable_address": 6461844656, + "vtable_address": 6461844672, "methods": [ 6446805920, 6449325376, 6450347280, - 6456889008, + 6456889024, 6449338096, 6450317376, 6449344496, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6449326128, 6449347440, 6450455600, @@ -125402,7 +125404,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331520, 6449342560, 6449343712, @@ -125790,11 +125792,11 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 6463082368, + "vtable_address": 6463082400, "methods": [ - 6454315024, - 6454325696, - 6454331104, + 6454315040, + 6454325712, + 6454331120, 6443744672, 6443744784, 6443744688, @@ -125837,8 +125839,8 @@ 6443766400, 6443766464, 6443766416, - 6454308832, - 6454325632, + 6454308848, + 6454325648, 6443773872, 6443772176, 6443774944, @@ -125851,11 +125853,11 @@ 6443774704, 6443774720, 6443743152, - 6454294192, - 6459886716, - 6454308864, - 6454314176, - 6454315072, + 6454294208, + 6459886732, + 6454308880, + 6454314192, + 6454315088, 6443917920, 6443917872 ], @@ -125914,12 +125916,12 @@ }, { "type_name": "CGCClientSystem", - "vtable_address": 6463082904, + "vtable_address": 6463082936, "methods": [ - 6454293496, - 6454323056, - 6454323088, - 6454324336 + 6454293512, + 6454323072, + 6454323104, + 6454324352 ], "bases": [ { @@ -125976,14 +125978,14 @@ }, { "type_name": "CGCDev_NewItemRequestResponse", - "vtable_address": 6463041784, + "vtable_address": 6463041800, "methods": [ 6453955296, 6443894128, 6443894176, 6443896464, 6443893056, - 6454070368 + 6454070384 ], "bases": [ { @@ -126076,28 +126078,28 @@ }, { "type_name": "CGCStorePurchaseInit_LineItem", - "vtable_address": 6461458296, + "vtable_address": 6461458280, "methods": [ 6447505216, - 6455181760, + 6455181776, 6447482656, 6447483680, 6447483728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447484848, 6447487152, 6447485744, 6443766512, 6447486576, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447487488, 6447487616, 6447487584, - 6455179744, + 6455179760, 6447502416, - 6455179744, + 6455179760, 6447502816 ], "bases": [ @@ -126141,26 +126143,26 @@ }, { "type_name": "CGCToGCMsgMasterAck", - "vtable_address": 6461582152, + "vtable_address": 6461582136, "methods": [ 6448291728, - 6455181760, + 6455181776, 6448282896, 6448285920, 6448285968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448286528, 6448289040, - 6448287840, + 6448287904, 6443766512, 6448288752, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448289088, 6448289280, 6448289200, - 6455179744, + 6455179760, 6448289472 ], "bases": [ @@ -126204,28 +126206,28 @@ }, { "type_name": "CGCToGCMsgMasterAck_Response", - "vtable_address": 6461583544, + "vtable_address": 6461583528, "methods": [ 6448305616, - 6455181760, + 6455181776, 6448294256, 6448294336, 6448294368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448294384, 6448295328, 6448294576, 6443766512, 6448295152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448296064, 6448296128, 6448296112, - 6455179744, + 6455179760, 6448298336, - 6455179744, + 6455179760, 6448300144 ], "bases": [ @@ -126269,22 +126271,22 @@ }, { "type_name": "CGCToGCMsgMasterStartupComplete", - "vtable_address": 6461584504, + "vtable_address": 6461584488, "methods": [ 6448316096, - 6455181760, + 6455181776, 6448315360, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448315584, 6448315568 @@ -126344,32 +126346,32 @@ }, { "type_name": "CGCToGCMsgRouted", - "vtable_address": 6461586616, + "vtable_address": 6461586600, "methods": [ 6448332784, - 6455181760, + 6455181776, 6448322144, 6448323520, 6448323600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448323616, 6448326208, 6448323792, 6443766512, 6448325856, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448329264, 6448329504, 6448329488, - 6455179744, + 6455179760, 6448331968, - 6455179744, + 6455179760, 6448333200, - 6455179744, + 6455179760, 6448334672, - 6455179744, + 6455179760, 6448336480 ], "bases": [ @@ -126413,28 +126415,28 @@ }, { "type_name": "CGCToGCMsgRoutedReply", - "vtable_address": 6461587880, + "vtable_address": 6461587864, "methods": [ - 6448349376, - 6455181760, + 6448349392, + 6455181776, 6448340272, 6448340912, 6448340976, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448340992, 6448341824, 6448341120, 6443766512, 6448341600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448341920, 6448342208, 6448341936, - 6455179744, + 6455179760, 6448342768, - 6455179744, + 6455179760, 6448344192 ], "bases": [ @@ -126478,7 +126480,7 @@ }, { "type_name": "CGameChoreoServices", - "vtable_address": 6462181856, + "vtable_address": 6462181888, "methods": [ 6450499296, 6452445376, @@ -126525,7 +126527,7 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 6462274456, + "vtable_address": 6462274488, "methods": [ 6448839536, 6448839744, @@ -126541,8 +126543,8 @@ 6451068432, 6450993152, 6451064736, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6451242960, 6451005920, 6448838944, @@ -126553,7 +126555,7 @@ 6451215152, 6451068448, 6451117328, - 6459886716, + 6459886732, 6451048976, 6451064016, 6451071456, @@ -126729,7 +126731,7 @@ }, { "type_name": "CGameConfiguration", - "vtable_address": 6462274736, + "vtable_address": 6462274768, "methods": [ 6448837404, 6448837416, @@ -126928,18 +126930,18 @@ }, { "type_name": "CGameEnd", - "vtable_address": 6462662856, + "vtable_address": 6462662888, "methods": [ 6446805920, 6452594704, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452671600, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -126969,7 +126971,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623440, 6452653296, 6452656544, @@ -127285,7 +127287,7 @@ }, { "type_name": "CGameEntitySystem", - "vtable_address": 6462274144, + "vtable_address": 6462274176, "methods": [ 6451003472, 6451003600, @@ -127294,8 +127296,8 @@ 6451002096, 6451003952, 6451101696, - 6456769440, - 6456831472, + 6456769456, + 6456831488, 6451109648, 6450981648, 6451067568, @@ -127353,7 +127355,7 @@ }, { "type_name": "CGameEvent", - "vtable_address": 6462279968, + "vtable_address": 6462280000, "methods": [ 6450981872, 6451068480, @@ -127420,7 +127422,7 @@ "vtable_address": 6460558168, "methods": [ 6443958368, - 6459886716 + 6459886732 ], "bases": [ { @@ -127449,7 +127451,7 @@ }, { "type_name": "CGameEventManager", - "vtable_address": 6462280248, + "vtable_address": 6462280280, "methods": [ 6450981952, 6451106928, @@ -127514,13 +127516,13 @@ 6446805888, 6445762880, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445765520, 6451932368, 6451865168, @@ -127550,7 +127552,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781328, 6445814576, 6445824688, @@ -127796,26 +127798,26 @@ }, { "type_name": "CGameInfo", - "vtable_address": 6461385104, + "vtable_address": 6461385088, "methods": [ 6447313360, - 6455181760, + 6455181776, 6447297184, 6447297808, 6447297968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447297984, 6447299504, 6447298576, 6443766512, 6447299328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447299552, 6447301856, 6447301840, - 6455179744, + 6455179760, 6447311776 ], "bases": [ @@ -127859,22 +127861,22 @@ }, { "type_name": "CGameInfo_CCSGameInfo", - "vtable_address": 6461382864, + "vtable_address": 6461382848, "methods": [ 6447288240, - 6455181760, + 6455181776, 6447282160, 6447282352, 6447282448, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447282464, 6447284128, 6447283008, 6443766512, 6447283616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447285440, 6447286000, 6447285968 @@ -127920,22 +127922,22 @@ }, { "type_name": "CGameInfo_CDotaGameInfo", - "vtable_address": 6461379648, + "vtable_address": 6461379632, "methods": [ 6447265616, - 6455181760, + 6455181776, 6447221760, 6447222288, 6447222704, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447222720, 6447226288, 6447223616, 6443766512, 6447225248, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447226784, 6447227520, 6447227504 @@ -127981,22 +127983,22 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CHeroSelectEvent", - "vtable_address": 6461369352, + "vtable_address": 6461369336, "methods": [ 6447214400, - 6455181760, + 6455181776, 6447206992, 6447207392, 6447207456, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447207472, 6447208528, 6447207584, 6443766512, 6447208192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447208624, 6447209120, 6447209104 @@ -128042,26 +128044,26 @@ }, { "type_name": "CGameInfo_CDotaGameInfo_CPlayerInfo", - "vtable_address": 6461368056, + "vtable_address": 6461368040, "methods": [ 6447198832, - 6455181760, + 6455181776, 6447188128, 6447188912, 6447189232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447189312, 6447191392, 6447190032, 6443766512, 6447190992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447192592, 6447193824, 6447193808, - 6455179744, + 6455179760, 6447197696 ], "bases": [ @@ -128105,7 +128107,7 @@ }, { "type_name": "CGameJobSystem", - "vtable_address": 6462206248, + "vtable_address": 6462206280, "methods": [ 6443752688, 6443767152, @@ -128210,16 +128212,16 @@ }, { "type_name": "CGameJournal", - "vtable_address": 6462266736, + "vtable_address": 6462266768, "methods": [ 6450891104, 6450888128, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [ { @@ -128290,7 +128292,7 @@ }, { "type_name": "CGameJournal", - "vtable_address": 6462266808, + "vtable_address": 6462266840, "methods": [ 6443752688, 6443767152, @@ -128352,7 +128354,7 @@ 6443774720, 6443743152, 6450895832, - 6459886716 + 6459886732 ], "bases": [ { @@ -128423,7 +128425,7 @@ }, { "type_name": "CGameMessageDelegateHook", - "vtable_address": 6462250328, + "vtable_address": 6462250360, "methods": [ 6450823920, 6450850144, @@ -128478,13 +128480,13 @@ 6446805920, 6444437408, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452671600, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -128514,7 +128516,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444484992, 6444544624, 6444557792, @@ -128830,7 +128832,7 @@ }, { "type_name": "CGameNetworkStringTables", - "vtable_address": 6462271104, + "vtable_address": 6462271136, "methods": [ 6450901488, 6450901744, @@ -128864,7 +128866,7 @@ }, { "type_name": "CGameParticleManager", - "vtable_address": 6462250208, + "vtable_address": 6462250240, "methods": [ 6450642560, 6450683968, @@ -128889,7 +128891,7 @@ }, { "type_name": "CGameParticleManagerSystem", - "vtable_address": 6462201168, + "vtable_address": 6462201200, "methods": [ 6443752688, 6443767152, @@ -128994,18 +128996,18 @@ }, { "type_name": "CGamePlayerEquip", - "vtable_address": 6461256840, + "vtable_address": 6461256808, "methods": [ 6446805920, 6446985824, 6450347280, - 6456889008, + 6456889024, 6452652016, 6450317376, 6452660272, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -129035,7 +129037,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623456, 6447001424, 6447005648, @@ -129351,18 +129353,18 @@ }, { "type_name": "CGamePlayerZone", - "vtable_address": 6462667280, + "vtable_address": 6462667312, "methods": [ 6446805920, 6452594768, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452671472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -129392,7 +129394,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623472, 6452653312, 6452656592, @@ -129708,7 +129710,7 @@ }, { "type_name": "CGameRules", - "vtable_address": 6462551464, + "vtable_address": 6462551496, "methods": [ 6452521744, 6449123088, @@ -129736,15 +129738,15 @@ 6449125152, 6449123072, 6452432864, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, 6452461216, 6452461232, 6448961152, 6452453872, 6448991440, - 6459886716, + 6459886732, 6449031936, 6449134016, 6452436368, @@ -129759,16 +129761,16 @@ 6448997600, 6449051568, 6452507424, - 6459886716, + 6459886732, 6452427904, 6449046096, 6449009504, 6449108272, 6449176368, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6449177120, 6452431552, 6448989744, @@ -129780,19 +129782,19 @@ 6448991424, 6452446080, 6452445488, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6449034224, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6448924416, 6452491040, 6449102320, 6449046064, 6449046912, - 6459886716, + 6459886732, 6452420368, 6452425168, 6452445216, @@ -129801,7 +129803,7 @@ 6448947248, 6452481280, 6449125136, - 6459886716, + 6459886732, 6448983376, 6448999248, 6452402800, @@ -129830,7 +129832,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6464456352, + "complete_object_locator": 6464456360, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -129839,7 +129841,7 @@ }, { "type_name": "CGameRulesGameSystem", - "vtable_address": 6462545720, + "vtable_address": 6462545752, "methods": [ 6443752688, 6452330480, @@ -129921,7 +129923,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464451640, + "complete_object_locator": 6464451704, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -129930,18 +129932,18 @@ }, { "type_name": "CGameRulesProxy", - "vtable_address": 6460981832, + "vtable_address": 6460981824, "methods": [ 6446805888, 6445848416, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -129971,7 +129973,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445850848, 6445853984, 6445854880, @@ -130217,7 +130219,7 @@ }, { "type_name": "CGameSceneNode", - "vtable_address": 6462273184, + "vtable_address": 6462273216, "methods": [ 6450982016, 6443807184, @@ -130260,7 +130262,7 @@ }, { "type_name": "CGameSceneNode::Cm_vecOriginInitializer", - "vtable_address": 6462273160, + "vtable_address": 6462273192, "methods": [ 6451118304, 6451120656 @@ -130292,7 +130294,7 @@ }, { "type_name": "CGameSceneNode::NetworkVar_m_hParent", - "vtable_address": 6462273120, + "vtable_address": 6462273152, "methods": [ 6446182848, 6451119616, @@ -130326,7 +130328,7 @@ }, { "type_name": "CGameSceneNodeHandle", - "vtable_address": 6461029328, + "vtable_address": 6461029312, "methods": [ 6446182848, 6446095376, @@ -130345,26 +130347,26 @@ }, { "type_name": "CGameServers_AggregationQuery_Request", - "vtable_address": 6461554400, + "vtable_address": 6461554384, "methods": [ 6448087088, - 6455181760, + 6455181776, 6448070096, 6448070240, 6448070336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448070352, 6448071312, 6448070576, 6443766512, 6448071024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448071680, 6448073408, 6448073392, - 6455179744, + 6455179760, 6448084896 ], "bases": [ @@ -130408,27 +130410,27 @@ }, { "type_name": "CGameServers_AggregationQuery_Response", - "vtable_address": 6461558432, + "vtable_address": 6461558416, "methods": [ 6448131744, - 6455181760, + 6455181776, 6448111440, 6448112208, 6448112384, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448112912, 6448113984, 6448113328, 6443766512, 6448113840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448114016, 6448114144, 6448114128, - 6455179744, - 6448130848 + 6455179760, + 6448130864 ], "bases": [ { @@ -130471,28 +130473,28 @@ }, { "type_name": "CGameServers_AggregationQuery_Response_Group", - "vtable_address": 6461556144, + "vtable_address": 6461556128, "methods": [ 6448104480, - 6455181760, + 6455181776, 6448092784, 6448094752, 6448094832, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448094848, 6448097744, 6448095760, 6443766512, 6448096912, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448097872, - 6448098688, + 6448099104, 6448098672, - 6455179744, + 6455179760, 6448103264, - 6455179744, + 6455179760, 6448103472 ], "bases": [ @@ -130536,7 +130538,7 @@ }, { "type_name": "CGameSurfacePropertiesList", - "vtable_address": 6462282048, + "vtable_address": 6462282080, "methods": [ 6451206928, 6451011536, @@ -130598,7 +130600,7 @@ }, { "type_name": "CGameSystemAbstractFactory", - "vtable_address": 6461056584, + "vtable_address": 6461056568, "methods": [ 6446237040, 6446237056, @@ -130638,7 +130640,7 @@ }, { "type_name": "CGameSystemEventDispatcher", - "vtable_address": 6461027072, + "vtable_address": 6461027056, "methods": [ 6445901360, 6445901456 @@ -130670,7 +130672,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461028312, + "vtable_address": 6461028296, "methods": [ 6445902208, 6445902224, @@ -130724,7 +130726,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461015592, + "vtable_address": 6461015576, "methods": [ 6445893136, 6445893152, @@ -130778,7 +130780,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461024752, + "vtable_address": 6461024736, "methods": [ 6445897024, 6445897040, @@ -130940,7 +130942,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461795424, + "vtable_address": 6461795440, "methods": [ 6449286784, 6449286800, @@ -130994,7 +130996,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462926000, + "vtable_address": 6462926016, "methods": [ 6453667536, 6453667552, @@ -131048,7 +131050,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462415704, + "vtable_address": 6462415736, "methods": [ 6451947200, 6451947216, @@ -131102,7 +131104,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462417904, + "vtable_address": 6462417936, "methods": [ 6451950416, 6451950432, @@ -131156,7 +131158,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461808400, + "vtable_address": 6461808416, "methods": [ 6449287664, 6449287680, @@ -131210,7 +131212,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462204320, + "vtable_address": 6462204352, "methods": [ 6450560800, 6450560816, @@ -131264,7 +131266,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461826568, + "vtable_address": 6461826584, "methods": [ 6449317536, 6449317552, @@ -131318,7 +131320,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461826944, + "vtable_address": 6461826960, "methods": [ 6449318976, 6449318992, @@ -131372,7 +131374,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461026904, + "vtable_address": 6461026888, "methods": [ 6445900928, 6445900944, @@ -131426,7 +131428,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461028440, + "vtable_address": 6461028424, "methods": [ 6445902752, 6445902768, @@ -131480,7 +131482,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462546344, + "vtable_address": 6462546376, "methods": [ 6452331168, 6452331184, @@ -131525,7 +131527,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464454568, + "complete_object_locator": 6464454632, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131534,7 +131536,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462550192, + "vtable_address": 6462550224, "methods": [ 6452350544, 6452350560, @@ -131579,7 +131581,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464455064, + "complete_object_locator": 6464455128, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -131588,7 +131590,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461028672, + "vtable_address": 6461028656, "methods": [ 6445903040, 6445903056, @@ -131642,7 +131644,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462581096, + "vtable_address": 6462581160, "methods": [ 6452562592, 6452562608, @@ -131696,18 +131698,18 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6463084696, + "vtable_address": 6463084728, "methods": [ - 6454333792, 6454333808, 6454333824, - 6454333872, - 6454334128, - 6454334192, - 6454333856, + 6454333840, + 6454333888, + 6454334144, 6454334208, + 6454333872, 6454334224, - 6454334240 + 6454334240, + 6454334256 ], "bases": [ { @@ -131750,7 +131752,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461015184, + "vtable_address": 6461015168, "methods": [ 6445892560, 6445892576, @@ -131804,7 +131806,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462843872, + "vtable_address": 6462843952, "methods": [ 6453150304, 6453150320, @@ -131858,7 +131860,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461059400, + "vtable_address": 6461059384, "methods": [ 6446239520, 6446239536, @@ -131912,7 +131914,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462773616, + "vtable_address": 6462773648, "methods": [ 6452902512, 6452902528, @@ -132020,7 +132022,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462864848, + "vtable_address": 6462864896, "methods": [ 6453338576, 6453338592, @@ -132074,7 +132076,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461059776, + "vtable_address": 6461059760, "methods": [ 6446239808, 6446239824, @@ -132128,7 +132130,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462873656, + "vtable_address": 6462873704, "methods": [ 6453363120, 6453363136, @@ -132182,7 +132184,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462157952, + "vtable_address": 6462158000, "methods": [ 6450252736, 6450252752, @@ -132236,7 +132238,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461670304, + "vtable_address": 6461670288, "methods": [ 6448758912, 6448758928, @@ -132290,7 +132292,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462581280, + "vtable_address": 6462581344, "methods": [ 6452563088, 6452563104, @@ -132344,7 +132346,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462873808, + "vtable_address": 6462873856, "methods": [ 6453363568, 6453363584, @@ -132398,7 +132400,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462870040, + "vtable_address": 6462870088, "methods": [ 6453347536, 6453347552, @@ -132452,7 +132454,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461057288, + "vtable_address": 6461057272, "methods": [ 6446237216, 6446237232, @@ -132506,7 +132508,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462271792, + "vtable_address": 6462271824, "methods": [ 6450902736, 6450902752, @@ -132560,7 +132562,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462268208, + "vtable_address": 6462268240, "methods": [ 6450895408, 6450895424, @@ -132614,7 +132616,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462269472, + "vtable_address": 6462269480, "methods": [ 6450899888, 6450899904, @@ -132668,7 +132670,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462270200, + "vtable_address": 6462270232, "methods": [ 6450902112, 6450902128, @@ -132722,7 +132724,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461059888, + "vtable_address": 6461059872, "methods": [ 6446240320, 6446240336, @@ -132776,7 +132778,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462101464, + "vtable_address": 6462101480, "methods": [ 6449782480, 6449782496, @@ -132830,7 +132832,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6461057472, + "vtable_address": 6461057456, "methods": [ 6446237744, 6446237760, @@ -132884,7 +132886,7 @@ }, { "type_name": "CGameSystemReallocatingFactory", - "vtable_address": 6462264656, + "vtable_address": 6462264688, "methods": [ 6450882576, 6450882608, @@ -132938,7 +132940,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462682376, + "vtable_address": 6462682408, "methods": [ 6452683280, 6452683296, @@ -133046,7 +133048,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462267872, + "vtable_address": 6462267904, "methods": [ 6450891728, 6450891744, @@ -133532,7 +133534,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462084232, + "vtable_address": 6462084248, "methods": [ 6449696112, 6449696128, @@ -133586,7 +133588,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6460583520, + "vtable_address": 6460583528, "methods": [ 6444071152, 6444071168, @@ -133640,7 +133642,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6461857160, + "vtable_address": 6461857176, "methods": [ 6449362576, 6449362592, @@ -133694,7 +133696,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462357072, + "vtable_address": 6462357104, "methods": [ 6451675088, 6451675104, @@ -133802,7 +133804,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462775760, + "vtable_address": 6462775792, "methods": [ 6452903488, 6452903504, @@ -133856,7 +133858,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6461027320, + "vtable_address": 6461027304, "methods": [ 6445901632, 6445901648, @@ -133910,7 +133912,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462206024, + "vtable_address": 6462206056, "methods": [ 6450563840, 6450563856, @@ -134018,7 +134020,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462160752, + "vtable_address": 6462160816, "methods": [ 6450254352, 6450254400, @@ -134072,7 +134074,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462416240, + "vtable_address": 6462416272, "methods": [ 6451948000, 6451948016, @@ -134126,7 +134128,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6461015472, + "vtable_address": 6461015456, "methods": [ 6445892944, 6445892960, @@ -134234,7 +134236,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462300808, + "vtable_address": 6462300840, "methods": [ 6451268672, 6451268688, @@ -134288,7 +134290,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462866600, + "vtable_address": 6462866648, "methods": [ 6453343968, 6453343984, @@ -134396,7 +134398,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462492320, + "vtable_address": 6462492352, "methods": [ 6452149952, 6452149968, @@ -134450,7 +134452,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462206744, + "vtable_address": 6462206776, "methods": [ 6450565376, 6450565392, @@ -134504,7 +134506,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462203328, + "vtable_address": 6462203360, "methods": [ 6450557952, 6450557968, @@ -134558,7 +134560,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462543824, + "vtable_address": 6462543856, "methods": [ 6452324080, 6452324096, @@ -134603,7 +134605,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464453320, + "complete_object_locator": 6464453384, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134612,7 +134614,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462547464, + "vtable_address": 6462547496, "methods": [ 6452333424, 6452333440, @@ -134657,7 +134659,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464454928, + "complete_object_locator": 6464454992, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -134666,7 +134668,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6463029680, + "vtable_address": 6463029696, "methods": [ 6453877072, 6453877088, @@ -134720,7 +134722,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462775024, + "vtable_address": 6462775056, "methods": [ 6452903120, 6452903136, @@ -134774,18 +134776,18 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6463121160, + "vtable_address": 6463121192, "methods": [ - 6454907056, 6454907072, 6454907088, - 6454907120, - 6454907168, - 6454907184, 6454907104, + 6454907136, + 6454907184, 6454907200, + 6454907120, 6454907216, - 6454907232 + 6454907232, + 6454907248 ], "bases": [ { @@ -134828,7 +134830,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462364720, + "vtable_address": 6462364752, "methods": [ 6451700656, 6451700672, @@ -134882,7 +134884,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462268096, + "vtable_address": 6462268128, "methods": [ 6450895168, 6450895184, @@ -134936,7 +134938,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462303184, + "vtable_address": 6462303216, "methods": [ 6451270720, 6451270736, @@ -134990,7 +134992,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462318488, + "vtable_address": 6462318520, "methods": [ 6451391536, 6451391552, @@ -135044,7 +135046,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462767808, + "vtable_address": 6462767840, "methods": [ 6452898208, 6452898224, @@ -135098,7 +135100,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462921240, + "vtable_address": 6462921256, "methods": [ 6453656768, 6453656784, @@ -135152,7 +135154,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462865520, + "vtable_address": 6462865568, "methods": [ 6453340640, 6453340656, @@ -135206,7 +135208,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462153224, + "vtable_address": 6462153272, "methods": [ 6450249584, 6450249600, @@ -135314,7 +135316,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462364008, + "vtable_address": 6462364040, "methods": [ 6451700400, 6451700416, @@ -135368,7 +135370,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6461054280, + "vtable_address": 6461054264, "methods": [ 6446236640, 6446236656, @@ -135422,7 +135424,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462090160, + "vtable_address": 6462090176, "methods": [ 6449720960, 6449720976, @@ -135530,7 +135532,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462162296, + "vtable_address": 6462162360, "methods": [ 6450257344, 6450257360, @@ -135584,7 +135586,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462550904, + "vtable_address": 6462550936, "methods": [ 6452351424, 6452351440, @@ -135629,7 +135631,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464453184, + "complete_object_locator": 6464453248, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -135638,7 +135640,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6461058640, + "vtable_address": 6461058624, "methods": [ 6446239328, 6446239344, @@ -135692,7 +135694,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6461808192, + "vtable_address": 6461808208, "methods": [ 6449287152, 6449287168, @@ -135746,7 +135748,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462873456, + "vtable_address": 6462873504, "methods": [ 6453361792, 6453361808, @@ -135800,7 +135802,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462868864, + "vtable_address": 6462868912, "methods": [ 6453345968, 6453345984, @@ -135854,7 +135856,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6461053400, + "vtable_address": 6461053384, "methods": [ 6446236448, 6446236464, @@ -135908,7 +135910,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462359968, + "vtable_address": 6462360000, "methods": [ 6451691872, 6451691888, @@ -135962,7 +135964,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462918616, + "vtable_address": 6462918632, "methods": [ 6453642368, 6453642384, @@ -136016,7 +136018,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462926344, + "vtable_address": 6462926360, "methods": [ 6453668000, 6453668016, @@ -136070,7 +136072,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462152472, + "vtable_address": 6462152520, "methods": [ 6450248736, 6450248752, @@ -136124,7 +136126,7 @@ }, { "type_name": "CGameSystemStaticFactory", - "vtable_address": 6462414936, + "vtable_address": 6462414968, "methods": [ 6451946992, 6451947008, @@ -136232,18 +136234,18 @@ }, { "type_name": "CGameText", - "vtable_address": 6462665056, + "vtable_address": 6462665088, "methods": [ 6446805920, 6452595104, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452660928, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -136273,7 +136275,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623488, 6452653328, 6452656640, @@ -136589,7 +136591,7 @@ }, { "type_name": "CGameTimescale", - "vtable_address": 6462560688, + "vtable_address": 6462560720, "methods": [ 6452457936, 6443767152, @@ -136694,18 +136696,18 @@ }, { "type_name": "CGenericConstraint", - "vtable_address": 6462745104, + "vtable_address": 6462745136, "methods": [ 6446805888, 6452730224, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452734720, 6452885488, 6451865168, @@ -136735,7 +136737,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789120, 6452842640, 6452856448, @@ -137054,7 +137056,7 @@ }, { "type_name": "CGenericConstraint", - "vtable_address": 6462747080, + "vtable_address": 6462747112, "methods": [ 6452729600, 6452817312, @@ -137173,11 +137175,11 @@ "type_name": "CGenericExprPart", "vtable_address": 6464034992, "methods": [ - 6460163904, - 6459886716, - 6459886716, - 6460166480, - 6460165040 + 6460163920, + 6459886732, + 6459886732, + 6460166496, + 6460165056 ], "bases": [], "model": { @@ -137193,11 +137195,11 @@ "type_name": "CGenericExpr_Binary", "vtable_address": 6464035128, "methods": [ - 6460163952, - 6460165152, - 6460166832, - 6460166496, - 6460165056 + 6460163968, + 6460165168, + 6460166848, + 6460166512, + 6460165072 ], "bases": [ { @@ -137228,11 +137230,11 @@ "type_name": "CGenericExpr_BoolLiteral", "vtable_address": 6464035576, "methods": [ - 6460164064, - 6460165840, - 6460166928, - 6460166480, - 6460165040 + 6460164080, + 6460165856, + 6460166944, + 6460166496, + 6460165056 ], "bases": [ { @@ -137263,11 +137265,11 @@ "type_name": "CGenericExpr_FloatLiteral", "vtable_address": 6464035448, "methods": [ - 6460164112, - 6460165888, - 6460166960, - 6460166480, - 6460165040 + 6460164128, + 6460165904, + 6460166976, + 6460166496, + 6460165056 ], "bases": [ { @@ -137298,13 +137300,13 @@ "type_name": "CGenericExpr_FunctionCall", "vtable_address": 6464035768, "methods": [ - 6460164160, - 6460165920, - 6460166992, - 6460166512, - 6460165072, - 6460166464, - 6460165024 + 6460164176, + 6460165936, + 6460167008, + 6460166528, + 6460165088, + 6460166480, + 6460165040 ], "bases": [ { @@ -137335,11 +137337,11 @@ "type_name": "CGenericExpr_IntLiteral", "vtable_address": 6464035512, "methods": [ - 6460164480, - 6460165984, - 6460167232, - 6460166480, - 6460165040 + 6460164496, + 6460166000, + 6460167248, + 6460166496, + 6460165056 ], "bases": [ { @@ -137370,11 +137372,11 @@ "type_name": "CGenericExpr_Property", "vtable_address": 6464035704, "methods": [ - 6460164528, - 6460166016, - 6460167264, - 6460166528, - 6460165088 + 6460164544, + 6460166032, + 6460167280, + 6460166544, + 6460165104 ], "bases": [ { @@ -137405,11 +137407,11 @@ "type_name": "CGenericExpr_StringLiteral", "vtable_address": 6464035384, "methods": [ - 6460164640, - 6460166080, - 6460167456, - 6460166480, - 6460165040 + 6460164656, + 6460166096, + 6460167472, + 6460166496, + 6460165056 ], "bases": [ { @@ -137440,11 +137442,11 @@ "type_name": "CGenericExpr_TernaryConditional", "vtable_address": 6464035312, "methods": [ - 6460164720, - 6460166144, - 6460167632, - 6460166544, - 6460165104 + 6460164736, + 6460166160, + 6460167648, + 6460166560, + 6460165120 ], "bases": [ { @@ -137475,11 +137477,11 @@ "type_name": "CGenericExpr_Unary", "vtable_address": 6464035040, "methods": [ - 6460164848, - 6460166224, - 6460167744, - 6460166560, - 6460165136 + 6460164864, + 6460166240, + 6460167760, + 6460166576, + 6460165152 ], "bases": [ { @@ -137510,11 +137512,11 @@ "type_name": "CGenericExpr_VariableReference", "vtable_address": 6464035640, "methods": [ - 6460164944, - 6460166400, - 6460167792, - 6460166480, - 6460165040 + 6460164960, + 6460166416, + 6460167808, + 6460166496, + 6460165056 ], "bases": [ { @@ -137543,7 +137545,7 @@ }, { "type_name": "CGlobalState", - "vtable_address": 6462546832, + "vtable_address": 6462546864, "methods": [ 6443752688, 6443767152, @@ -137653,7 +137655,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464454704, + "complete_object_locator": 6464454768, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -137662,7 +137664,7 @@ }, { "type_name": "CGlobalState", - "vtable_address": 6462547328, + "vtable_address": 6462547360, "methods": [ 6452332048, 6452332096, @@ -137727,7 +137729,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464454888, + "complete_object_locator": 6464454952, "offset": 16, "constructor_displacement": 0, "class_attributes": 1 @@ -137736,7 +137738,7 @@ }, { "type_name": "CGlowProperty", - "vtable_address": 6462551040, + "vtable_address": 6462551072, "methods": [ 6450499344, 6452481376, @@ -137746,7 +137748,7 @@ "bases": [], "model": { "Msvc": { - "complete_object_locator": 6464456112, + "complete_object_locator": 6464456120, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -137760,13 +137762,13 @@ 6446805888, 6445618144, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445653872, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619568, 6451932368, 6451865168, @@ -137796,7 +137798,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623344, 6445647696, 6445652416, @@ -138042,18 +138044,18 @@ }, { "type_name": "CGunTarget", - "vtable_address": 6462569784, + "vtable_address": 6462569816, "methods": [ 6446805920, 6452387264, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6452532320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452388448, 6450537872, 6450455600, @@ -138083,7 +138085,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452445392, 6452507456, 6452521792, @@ -138385,7 +138387,7 @@ }, { "type_name": "CHEGrenade", - "vtable_address": 6462060400, + "vtable_address": 6462060416, "methods": [ 6446805904, 6449673152, @@ -138394,9 +138396,9 @@ 6449458272, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -138426,7 +138428,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681392, 6449684960, 6449685120, @@ -138487,7 +138489,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -138710,14 +138712,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449407632, @@ -139011,14 +139013,14 @@ }, { "type_name": "CHEGrenade", - "vtable_address": 6462064056, + "vtable_address": 6462064072, "methods": [ 6449685156, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -139187,7 +139189,7 @@ }, { "type_name": "CHEGrenade", - "vtable_address": 6462064112, + "vtable_address": 6462064128, "methods": [ 6449606576, 6449574480 @@ -139368,9 +139370,9 @@ 6449125920, 6450317360, 6445379344, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -139400,7 +139402,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445370688, 6445378704, 6445378816, @@ -139985,7 +139987,7 @@ }, { "type_name": "CHLTVDirector", - "vtable_address": 6462563592, + "vtable_address": 6462563624, "methods": [ 6452387408, 6452434080, @@ -140077,7 +140079,7 @@ }, { "type_name": "CHLTVDirector", - "vtable_address": 6462563760, + "vtable_address": 6462563792, "methods": [ 6452458336, 6443767152, @@ -140210,7 +140212,7 @@ }, { "type_name": "CHLTVDirector", - "vtable_address": 6462564256, + "vtable_address": 6462564288, "methods": [ 6452386524, 6452468016, @@ -140301,7 +140303,7 @@ }, { "type_name": "CHLTVRecipientFilter", - "vtable_address": 6462779032, + "vtable_address": 6462779064, "methods": [ 6452929616, 6451409088, @@ -140350,18 +140352,18 @@ }, { "type_name": "CHandleDummy", - "vtable_address": 6462952056, + "vtable_address": 6462952072, "methods": [ 6446805888, 6453711408, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -140391,7 +140393,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758352, 6453807360, 6453809904, @@ -140637,18 +140639,18 @@ }, { "type_name": "CHandleTest", - "vtable_address": 6462950104, + "vtable_address": 6462950120, "methods": [ 6446805888, 6453711472, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -140678,7 +140680,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758368, 6453807376, 6453809952, @@ -140924,24 +140926,24 @@ }, { "type_name": "CHiddenFieldValuePrinter", - "vtable_address": 6463139792, - "methods": [ - 6455098800, - 6455141168, - 6455141328, - 6455141488, - 6455141360, - 6455141520, - 6455141296, - 6455141232, - 6455141456, - 6455141200, - 6455141264, - 6455292336, - 6455292304, - 6455141424, - 6455141392, - 6455141408 + "vtable_address": 6463139824, + "methods": [ + 6455098816, + 6455141184, + 6455141344, + 6455141504, + 6455141376, + 6455141536, + 6455141312, + 6455141248, + 6455141472, + 6455141216, + 6455141280, + 6455292352, + 6455292320, + 6455141440, + 6455141408, + 6455141424 ], "bases": [ { @@ -141006,7 +141008,7 @@ }, { "type_name": "CHitgroupDisableListSaveRestoreOps", - "vtable_address": 6462151208, + "vtable_address": 6462151256, "methods": [ 6450246448, 6450246752, @@ -141065,9 +141067,9 @@ 6445232496, 6445215696, 6445234688, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451745792, 6451931696, 6450455584, @@ -141097,7 +141099,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445218752, 6445232592, 6445233504, @@ -141990,9 +141992,9 @@ 6445232496, 6445215696, 6445234688, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451745792, 6451931696, 6450455584, @@ -142022,7 +142024,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445218768, 6445232864, 6445233552, @@ -142889,9 +142891,9 @@ 6450464528, 6450317360, 6450523824, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -142921,7 +142923,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445218784, 6445233136, 6445233600, @@ -143269,9 +143271,9 @@ 6451873280, 6450317360, 6451912960, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451745792, 6451931696, 6450455584, @@ -143301,7 +143303,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445218800, 6445233152, 6445233648, @@ -143718,18 +143720,18 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 6461838160, + "vtable_address": 6461838176, "methods": [ 6445499856, 6449325456, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6449344880, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -143759,7 +143761,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331536, 6449342576, 6449343760, @@ -144113,7 +144115,7 @@ }, { "type_name": "CHostageRescueZone", - "vtable_address": 6461840416, + "vtable_address": 6461840432, "methods": [ 6449324616 ], @@ -144228,18 +144230,18 @@ }, { "type_name": "CHostageRescueZoneShim", - "vtable_address": 6461835896, + "vtable_address": 6461835912, "methods": [ 6445499856, 6449325664, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6445582112, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -144269,7 +144271,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331552, 6449342592, 6449343808, @@ -144594,7 +144596,7 @@ }, { "type_name": "CInButtonState", - "vtable_address": 6461236816, + "vtable_address": 6461236776, "methods": [ 6446952848 ], @@ -144610,26 +144612,26 @@ }, { "type_name": "CInButtonStatePB", - "vtable_address": 6461316576, + "vtable_address": 6461316560, "methods": [ 6447050976, - 6455181760, + 6455181776, 6447049536, 6447049648, 6447049696, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447049712, 6447050864, 6447049840, 6443766512, 6447050448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447050880, 6447050912, 6447050896, - 6455179744, + 6455179760, 6447051136 ], "bases": [ @@ -144673,7 +144675,7 @@ }, { "type_name": "CIncendiaryGrenade", - "vtable_address": 6462072088, + "vtable_address": 6462072104, "methods": [ 6446805904, 6449673216, @@ -144682,9 +144684,9 @@ 6449684400, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -144714,7 +144716,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681408, 6449684976, 6449685168, @@ -144775,7 +144777,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -144998,14 +145000,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449407632, @@ -145313,14 +145315,14 @@ }, { "type_name": "CIncendiaryGrenade", - "vtable_address": 6462075744, + "vtable_address": 6462075760, "methods": [ 6449685204, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -145503,7 +145505,7 @@ }, { "type_name": "CIncendiaryGrenade", - "vtable_address": 6462075800, + "vtable_address": 6462075816, "methods": [ 6449606576, 6449574480 @@ -145694,13 +145696,13 @@ 6446805920, 6445145312, 6450347280, - 6456889008, + 6456889024, 6445186752, 6450317376, 6445195408, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6445208112, 6450455600, @@ -145730,7 +145732,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445167648, 6445188128, 6445192080, @@ -146101,18 +146103,18 @@ }, { "type_name": "CInfoData", - "vtable_address": 6461241848, + "vtable_address": 6461241808, "methods": [ 6446944848, 6446938512, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6446955648, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -146142,7 +146144,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446943456, 6446952528, 6446952896, @@ -146402,18 +146404,18 @@ }, { "type_name": "CInfoDeathmatchSpawn", - "vtable_address": 6461745120, + "vtable_address": 6461745136, "methods": [ 6446805888, 6448895184, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449180528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -146443,7 +146445,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448991488, 6449135376, 6449169120, @@ -146736,13 +146738,13 @@ 6445499872, 6443801680, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6443863424, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6443802496, 6443877776, 6451865168, @@ -146772,7 +146774,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443826400, 6443854464, 6443858304, @@ -147039,13 +147041,13 @@ 6445499872, 6443801744, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6443863424, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6443802496, 6443877776, 6451865168, @@ -147075,7 +147077,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443826416, 6443854480, 6443858352, @@ -147356,13 +147358,13 @@ 6445499872, 6445762960, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445832176, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445765584, 6451932368, 6451865168, @@ -147392,7 +147394,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781344, 6445814592, 6445824736, @@ -147652,18 +147654,18 @@ }, { "type_name": "CInfoGameEventProxy", - "vtable_address": 6462348368, + "vtable_address": 6462348400, "methods": [ 6445499872, 6451539968, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451629328, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -147693,7 +147695,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451573328, 6451615728, 6451620144, @@ -147953,18 +147955,18 @@ }, { "type_name": "CInfoInstructorHintBombTargetA", - "vtable_address": 6461831712, + "vtable_address": 6461831728, "methods": [ 6445499872, 6449325728, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449344976, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -147994,7 +147996,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331568, 6449342608, 6449343856, @@ -148254,18 +148256,18 @@ }, { "type_name": "CInfoInstructorHintBombTargetB", - "vtable_address": 6461833664, + "vtable_address": 6461833680, "methods": [ 6445499872, 6449325792, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449345024, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -148295,7 +148297,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331584, 6449342624, 6449343904, @@ -148555,18 +148557,18 @@ }, { "type_name": "CInfoInstructorHintHostageRescueZone", - "vtable_address": 6461840432, + "vtable_address": 6461840448, "methods": [ 6445499872, 6449325856, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6449326192, 6451932368, 6451865168, @@ -148596,7 +148598,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331600, 6449342640, 6449343952, @@ -148856,18 +148858,18 @@ }, { "type_name": "CInfoInstructorHintTarget", - "vtable_address": 6462501584, + "vtable_address": 6462501616, "methods": [ 6445499872, 6452170736, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -148897,7 +148899,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208144, 6452268144, 6452273024, @@ -149157,18 +149159,18 @@ }, { "type_name": "CInfoLadderDismount", - "vtable_address": 6460983784, + "vtable_address": 6460983776, "methods": [ 6446805888, 6445848480, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -149198,7 +149200,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445850864, 6445854000, 6445854928, @@ -149444,18 +149446,18 @@ }, { "type_name": "CInfoLandmark", - "vtable_address": 6462939200, + "vtable_address": 6462939216, "methods": [ 6445499872, 6453711536, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -149485,7 +149487,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758384, 6453807392, 6453810000, @@ -149750,13 +149752,13 @@ 6445499872, 6443735968, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6443737264, 6443777760, 6451865168, @@ -149786,7 +149788,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443746976, 6443768144, 6443773984, @@ -150051,13 +150053,13 @@ 6445499872, 6445684816, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445741344, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -150087,7 +150089,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700640, 6445731952, 6445737232, @@ -150347,18 +150349,18 @@ }, { "type_name": "CInfoPlayerCounterterrorist", - "vtable_address": 6461743168, + "vtable_address": 6461743184, "methods": [ 6446805888, 6448895248, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449180528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -150388,7 +150390,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448991504, 6449135392, 6449169168, @@ -150676,18 +150678,18 @@ }, { "type_name": "CInfoPlayerStart", - "vtable_address": 6462572768, + "vtable_address": 6462572800, "methods": [ 6445499872, 6452387696, 6445463120, - 6456889008, + 6456889024, 6452495008, 6451753984, 6452532544, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -150717,7 +150719,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452445408, 6452507472, 6452521840, @@ -150977,18 +150979,18 @@ }, { "type_name": "CInfoPlayerTerrorist", - "vtable_address": 6461741216, + "vtable_address": 6461741232, "methods": [ 6446805888, 6448895312, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449180528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -151018,7 +151020,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448991520, 6449135408, 6449169216, @@ -151306,18 +151308,18 @@ }, { "type_name": "CInfoSpawnGroupLandmark", - "vtable_address": 6462586928, + "vtable_address": 6462586968, "methods": [ 6445499872, 6452595168, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -151347,7 +151349,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623504, 6452653344, 6452656688, @@ -151607,18 +151609,18 @@ }, { "type_name": "CInfoSpawnGroupLoadUnload", - "vtable_address": 6462588880, + "vtable_address": 6462588920, "methods": [ 6446805888, 6452595232, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452661264, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452599344, 6451932368, 6451865168, @@ -151648,7 +151650,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623520, 6452653360, 6452656736, @@ -151931,13 +151933,13 @@ 6445499872, 6445684880, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445741408, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -151967,7 +151969,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700656, 6445731968, 6445737280, @@ -152232,13 +152234,13 @@ 6446805888, 6445684944, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -152268,7 +152270,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700672, 6445731984, 6445737328, @@ -152542,18 +152544,18 @@ }, { "type_name": "CInfoTeleportDestination", - "vtable_address": 6462998232, + "vtable_address": 6462998248, "methods": [ 6445499872, 6453711600, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -152583,7 +152585,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758400, 6453807408, 6453810048, @@ -152848,13 +152850,13 @@ 6446805888, 6445685008, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445741472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6445743936, 6451865168, @@ -152884,7 +152886,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700688, 6445732000, 6445737376, @@ -153135,13 +153137,13 @@ 6445704160, 6445685072, 6445463120, - 6456889008, + 6456889024, 6445729696, 6451753984, 6445741616, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6445744000, 6451865168, @@ -153171,7 +153173,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700704, 6445732016, 6445737424, @@ -153417,18 +153419,18 @@ }, { "type_name": "CInstancedSceneEntity", - "vtable_address": 6462893312, + "vtable_address": 6462893328, "methods": [ 6453490672, 6453417680, 6445463120, - 6456889008, + 6456889024, 6453546768, 6451753984, 6453616416, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453420016, 6453636832, 6451865168, @@ -153458,7 +153460,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488496, 6453560016, 6453583232, @@ -153799,7 +153801,7 @@ }, { "type_name": "CInstancedSceneEntity", - "vtable_address": 6462895688, + "vtable_address": 6462895704, "methods": [ 6453622784, 6453467776, @@ -153888,18 +153890,18 @@ }, { "type_name": "CInstructorEventEntity", - "vtable_address": 6462498480, + "vtable_address": 6462498512, "methods": [ 6445499872, 6452170800, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452295536, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -153929,7 +153931,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208160, 6452268160, 6452273072, @@ -154203,7 +154205,7 @@ 6443818256, 6443826464, 6443826512, - 6459886716, + 6459886732, 6443863936, 6443860176, 6443831008, @@ -154222,12 +154224,12 @@ 6443829968, 6443851328, 6443839728, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6443826352 ], "bases": [ @@ -154257,7 +154259,7 @@ }, { "type_name": "CInterpolatedVarArrayBase >", - "vtable_address": 6462342048, + "vtable_address": 6462342080, "methods": [ 6451539744, 6451627072, @@ -154271,7 +154273,7 @@ 6451559472, 6451573392, 6451573440, - 6459886716, + 6459886732, 6451629648, 6451621776, 6451585440, @@ -154290,12 +154292,12 @@ 6451584080, 6451607200, 6451600800, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6451573312 ], "bases": [ @@ -154435,7 +154437,7 @@ }, { "type_name": "CInterpolatedVarProcedural", - "vtable_address": 6462342360, + "vtable_address": 6462342392, "methods": [ 6451539808, 6451627072, @@ -154545,21 +154547,21 @@ }, { "type_name": "CInventoryManager", - "vtable_address": 6463037664, + "vtable_address": 6463037680, "methods": [ - 6454136896, - 6454214880, - 6454278576, + 6454136912, + 6454214896, + 6454278592, 6443744672, 6443744784, 6443744688, 6443744704, 6443740176, - 6454100160, + 6454100176, 6443740800, 6443740784, 6443740768, - 6454100816, + 6454100832, 6443775920, 6443775936, 6443767344, @@ -154607,8 +154609,8 @@ 6443774720, 6443743152, 6453955360, - 6459886716, - 6454112672, + 6459886732, + 6454112688, 6449700736, 6449709392 ], @@ -154653,7 +154655,7 @@ }, { "type_name": "CIronSightController", - "vtable_address": 6462052536, + "vtable_address": 6462052552, "methods": [ 6449685216 ], @@ -154669,7 +154671,7 @@ }, { "type_name": "CItem", - "vtable_address": 6462584352, + "vtable_address": 6462584392, "methods": [ 6446805696, 6452595296, @@ -154678,9 +154680,9 @@ 6452652304, 6450317360, 6452661456, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -154710,7 +154712,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623536, 6446952544, 6452656784, @@ -155085,7 +155087,7 @@ }, { "type_name": "CItem", - "vtable_address": 6462586888, + "vtable_address": 6462586928, "methods": [ 6443908752, 6443918000 @@ -155196,9 +155198,9 @@ 6452652304, 6450317360, 6443921008, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -155228,7 +155230,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443899744, 6443918048, 6443919376, @@ -155742,9 +155744,9 @@ 6443917936, 6450317360, 6443921120, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -155774,7 +155776,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443899760, 6443918064, 6443919424, @@ -156288,9 +156290,9 @@ 6443917936, 6450317360, 6443921120, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -156320,7 +156322,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443899776, 6443918080, 6443919472, @@ -156853,7 +156855,7 @@ }, { "type_name": "CItemDogtags", - "vtable_address": 6461869656, + "vtable_address": 6461869672, "methods": [ 6446805696, 6449384576, @@ -156862,9 +156864,9 @@ 6449458288, 6450317360, 6449483808, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -156894,7 +156896,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449428448, 6449461488, 6449471520, @@ -157284,7 +157286,7 @@ }, { "type_name": "CItemDogtags", - "vtable_address": 6461872200, + "vtable_address": 6461872216, "methods": [ 6443908752, 6443918000 @@ -157400,7 +157402,7 @@ }, { "type_name": "CItemGeneration", - "vtable_address": 6463038912, + "vtable_address": 6463038928, "methods": [ 6443752688, 6443767152, @@ -157458,11 +157460,11 @@ 6443767168, 6443766528, 6443750640, - 6454278464, + 6454278480, 6443774720, - 6454081200, + 6454081216, 6453955424, - 6454284512 + 6454284528 ], "bases": [ { @@ -157505,7 +157507,7 @@ }, { "type_name": "CItemGeneric", - "vtable_address": 6462594160, + "vtable_address": 6462594192, "methods": [ 6446805696, 6452595360, @@ -157514,9 +157516,9 @@ 6452652320, 6450317360, 6452661616, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452599472, 6452676928, 6450455584, @@ -157546,7 +157548,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623552, 6446952560, 6452656832, @@ -157937,7 +157939,7 @@ }, { "type_name": "CItemGeneric", - "vtable_address": 6462596712, + "vtable_address": 6462596744, "methods": [ 6443908752, 6443918000 @@ -158053,18 +158055,18 @@ }, { "type_name": "CItemGenericTriggerHelper", - "vtable_address": 6462591984, + "vtable_address": 6462592016, "methods": [ 6446805920, 6452595424, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -158094,7 +158096,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623568, 6446952576, 6452656880, @@ -158391,9 +158393,9 @@ 6452652304, 6450317360, 6443922512, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -158423,7 +158425,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443899792, 6443918096, 6443919520, @@ -158928,13 +158930,13 @@ }, { "type_name": "CItemSelectionCriteria::CCondition", - "vtable_address": 6463078744, + "vtable_address": 6463078776, "methods": [ - 6454293600, - 6454304720, - 6454311264, - 6454314208, - 6459886716 + 6454293616, + 6454304736, + 6454311280, + 6454314224, + 6459886732 ], "bases": [], "model": { @@ -158948,13 +158950,13 @@ }, { "type_name": "CItemSelectionCriteria::CFloatCondition", - "vtable_address": 6463078840, + "vtable_address": 6463078872, "methods": [ - 6454294112, - 6454304832, - 6454311264, - 6454314208, - 6454304160 + 6454294128, + 6454304848, + 6454311280, + 6454314224, + 6454304176 ], "bases": [ { @@ -158983,13 +158985,13 @@ }, { "type_name": "CItemSelectionCriteria::CSetCondition", - "vtable_address": 6463078888, + "vtable_address": 6463078920, "methods": [ - 6454294416, - 6454304960, - 6454311264, - 6454314208, - 6454304368 + 6454294432, + 6454304976, + 6454311280, + 6454314224, + 6454304384 ], "bases": [ { @@ -159018,13 +159020,13 @@ }, { "type_name": "CItemSelectionCriteria::CStringCondition", - "vtable_address": 6463078792, + "vtable_address": 6463078824, "methods": [ - 6454294528, - 6454305136, - 6454311264, - 6454314224, - 6454304480 + 6454294544, + 6454305152, + 6454311280, + 6454314240, + 6454304496 ], "bases": [ { @@ -159053,7 +159055,7 @@ }, { "type_name": "CItemSoda", - "vtable_address": 6462457544, + "vtable_address": 6462457576, "methods": [ 6446805696, 6451979264, @@ -159062,9 +159064,9 @@ 6452081536, 6450317360, 6452102224, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -159094,7 +159096,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035600, 6452082160, 6452085776, @@ -159433,7 +159435,7 @@ }, { "type_name": "CItem_Healthshot", - "vtable_address": 6461861768, + "vtable_address": 6461861784, "methods": [ 6446805904, 6449384640, @@ -159442,9 +159444,9 @@ 6449635056, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449547232, 6449662208, 6450455584, @@ -159474,7 +159476,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449428464, 6449461504, 6449471568, @@ -159535,7 +159537,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -159758,14 +159760,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -160058,14 +160060,14 @@ }, { "type_name": "CItem_Healthshot", - "vtable_address": 6461865416, + "vtable_address": 6461865432, "methods": [ 6449471604, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -160234,7 +160236,7 @@ }, { "type_name": "CItem_Healthshot", - "vtable_address": 6461865472, + "vtable_address": 6461865488, "methods": [ 6449606576, 6449574480 @@ -160406,7 +160408,7 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 6462208992, + "vtable_address": 6462209024, "methods": [ 6451106752 ], @@ -160479,7 +160481,7 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 6462209008, + "vtable_address": 6462209040, "methods": [ 6451109600 ], @@ -160552,7 +160554,7 @@ }, { "type_name": "CKV3Interface_LoadGame", - "vtable_address": 6462209024, + "vtable_address": 6462209056, "methods": [ 6451161920, 6451161728 @@ -160626,7 +160628,7 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 6462208936, + "vtable_address": 6462208968, "methods": [ 6451199280 ], @@ -160699,7 +160701,7 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 6462208952, + "vtable_address": 6462208984, "methods": [ 6451199648 ], @@ -160772,7 +160774,7 @@ }, { "type_name": "CKV3Interface_SaveGame", - "vtable_address": 6462208968, + "vtable_address": 6462209000, "methods": [ 6451162048, 6451161856 @@ -160848,9 +160850,9 @@ "type_name": "CKV3TransferContextBase", "vtable_address": 6463709088, "methods": [ - 6459801728, + 6459801744, 6450564032, - 6459801712, + 6459801728, 6450564400, 6450564416, 6450564432 @@ -160882,7 +160884,7 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Load_NoOp", - "vtable_address": 6462874136, + "vtable_address": 6462874152, "methods": [ 6453519216 ], @@ -160913,7 +160915,7 @@ }, { "type_name": "CKV3TransferInterface_EHandle_Save_NoOp", - "vtable_address": 6462874120, + "vtable_address": 6462874136, "methods": [ 6453580656 ], @@ -160946,10 +160948,10 @@ "type_name": "CKV3TransferLoadContext", "vtable_address": 6463709200, "methods": [ - 6459801728, + 6459801744, 6450564032, - 6459801712, - 6459801376, + 6459801728, + 6459801392, 6450564416, 6450564432 ], @@ -160996,9 +160998,9 @@ "type_name": "CKV3TransferSaveContext", "vtable_address": 6463709144, "methods": [ - 6459801728, + 6459801744, 6450564032, - 6459801712, + 6459801728, 6450564400, 6450564416, 6450564432 @@ -161044,7 +161046,7 @@ }, { "type_name": "CKV3Transfer_AssertAlreadyLoadedResourceLoadInterface", - "vtable_address": 6462195504, + "vtable_address": 6462195536, "methods": [ 6450545824 ], @@ -161089,7 +161091,7 @@ }, { "type_name": "CKV3Transfer_EmptyResourceLoadInterface", - "vtable_address": 6462195488, + "vtable_address": 6462195520, "methods": [ 6450545424 ], @@ -161122,7 +161124,7 @@ "type_name": "CKV3Transfer_ResourceLoadInterface", "vtable_address": 6463631136, "methods": [ - 6458812128 + 6458812144 ], "bases": [ { @@ -161151,7 +161153,7 @@ }, { "type_name": "CKV3Transfer_UtlSymbolLargeInterface >", - "vtable_address": 6461043408, + "vtable_address": 6461043392, "methods": [ 6445982960 ], @@ -161182,18 +161184,18 @@ }, { "type_name": "CKeepUpright", - "vtable_address": 6462720112, + "vtable_address": 6462720144, "methods": [ 6445499872, 6452730576, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452867872, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452734848, 6452885408, 6451865168, @@ -161223,7 +161225,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789136, 6452842656, 6452856496, @@ -161497,7 +161499,7 @@ }, { "type_name": "CKeepUpright", - "vtable_address": 6462722064, + "vtable_address": 6462722096, "methods": [ 6449326432, 6452863936, @@ -161573,7 +161575,7 @@ }, { "type_name": "CKickIssue", - "vtable_address": 6461737712, + "vtable_address": 6461737728, "methods": [ 6444557600, 6448895376, @@ -161650,7 +161652,7 @@ }, { "type_name": "CKnife", - "vtable_address": 6462064384, + "vtable_address": 6462064400, "methods": [ 6446805904, 6449673280, @@ -161659,9 +161661,9 @@ 6449684368, 6450317360, 6449686000, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -161691,7 +161693,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681424, 6449684992, 6449685264, @@ -161752,7 +161754,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -161975,14 +161977,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -162257,14 +162259,14 @@ }, { "type_name": "CKnife", - "vtable_address": 6462068000, + "vtable_address": 6462068016, "methods": [ 6449685300, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -162419,7 +162421,7 @@ }, { "type_name": "CKnife", - "vtable_address": 6462068056, + "vtable_address": 6462068072, "methods": [ 6449606576, 6449574480 @@ -162577,12 +162579,12 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 6463247600, + "vtable_address": 6463247632, "methods": [ - 6456614816, - 6456623392, - 6456620160, - 6456614976, + 6456614832, + 6456623408, + 6456620176, + 6456614992, 6450811008, 6450694256 ], @@ -162641,16 +162643,16 @@ }, { "type_name": "CLabelledDebugHelper", - "vtable_address": 6463247656, + "vtable_address": 6463247688, "methods": [ - 6456614700, - 6456621264, - 6456624224, - 6456619136, - 6456620000, - 6456622784, - 6456623072, - 6456622976 + 6456614716, + 6456621280, + 6456624240, + 6456619152, + 6456620016, + 6456622800, + 6456623088, + 6456622992 ], "bases": [ { @@ -162707,16 +162709,16 @@ }, { "type_name": "CLadderConnectPhysicsInterface", - "vtable_address": 6463122096, + "vtable_address": 6463122128, "methods": [ - 6454945728, + 6454945744, + 6454981600, + 6454981632, + 6454981664, + 6454981696, 6454981584, - 6454981616, - 6454981648, - 6454981680, - 6454981568, - 6454981536, 6454981552, + 6454981568, 6445316704 ], "bases": [ @@ -162746,7 +162748,7 @@ }, { "type_name": "CLagCompensationManager", - "vtable_address": 6462793672, + "vtable_address": 6462793704, "methods": [ 6443752688, 6443767152, @@ -162865,7 +162867,7 @@ }, { "type_name": "CLagCompensationManager", - "vtable_address": 6462794168, + "vtable_address": 6462794200, "methods": [ 6453044128, 6453052992, @@ -163019,13 +163021,13 @@ 6446805920, 6445685232, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445741728, - 6456887568, + 6456887584, 6445729600, - 6456894016, + 6456894032, 6445686688, 6445744080, 6450455600, @@ -163055,7 +163057,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700720, 6445732032, 6445737472, @@ -163362,13 +163364,13 @@ 6446805920, 6445685296, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445741728, - 6456887568, + 6456887584, 6445729600, - 6456894016, + 6456894032, 6445686688, 6445744080, 6450455600, @@ -163398,7 +163400,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700736, 6445732048, 6445737520, @@ -163691,13 +163693,13 @@ 6446805920, 6445685360, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445741728, - 6456887568, + 6456887584, 6445729600, - 6456894016, + 6456894032, 6445686688, 6445744080, 6450455600, @@ -163727,7 +163729,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700752, 6445732064, 6445737568, @@ -164048,13 +164050,13 @@ 6446805920, 6445685424, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445741728, - 6456887568, + 6456887584, 6445729600, - 6456894016, + 6456894032, 6445686688, 6445744080, 6450455600, @@ -164084,7 +164086,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700768, 6445732080, 6445737616, @@ -164386,7 +164388,7 @@ }, { "type_name": "CLightQueryGameSystem", - "vtable_address": 6461040928, + "vtable_address": 6461040912, "methods": [ 6443752688, 6443767152, @@ -164482,13 +164484,13 @@ 6446805920, 6445685488, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445741728, - 6456887568, + 6456887584, 6445729600, - 6456894016, + 6456894032, 6445686688, 6445744080, 6450455600, @@ -164518,7 +164520,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700784, 6445732096, 6445737664, @@ -164852,7 +164854,7 @@ }, { "type_name": "CLoadBackupIssue", - "vtable_address": 6461737984, + "vtable_address": 6461738000, "methods": [ 6444557600, 6448895440, @@ -164929,7 +164931,7 @@ }, { "type_name": "CLoadingEntityListener", - "vtable_address": 6462277680, + "vtable_address": 6462277712, "methods": [ 6444023440, 6451124528, @@ -164963,7 +164965,7 @@ }, { "type_name": "CLoadingSpawnGroup", - "vtable_address": 6462277296, + "vtable_address": 6462277328, "methods": [ 6451041632, 6451065120, @@ -165010,18 +165012,18 @@ }, { "type_name": "CLogicAchievement", - "vtable_address": 6462600728, + "vtable_address": 6462600760, "methods": [ 6446805888, 6452595488, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -165051,7 +165053,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623584, 6452653376, 6452656928, @@ -165325,18 +165327,18 @@ }, { "type_name": "CLogicActiveAutosave", - "vtable_address": 6462649520, + "vtable_address": 6462649552, "methods": [ 6446805888, 6452595632, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -165366,7 +165368,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623600, 6452653392, 6452656976, @@ -165654,18 +165656,18 @@ }, { "type_name": "CLogicAuto", - "vtable_address": 6462620648, + "vtable_address": 6462620680, "methods": [ 6446805888, 6452595696, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452599520, 6451932368, 6451865168, @@ -165695,7 +165697,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623616, 6452653408, 6452657024, @@ -165941,18 +165943,18 @@ }, { "type_name": "CLogicAutosave", - "vtable_address": 6462647336, + "vtable_address": 6462647368, "methods": [ 6446805888, 6452595760, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -165982,7 +165984,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623632, 6452653424, 6452657072, @@ -166256,18 +166258,18 @@ }, { "type_name": "CLogicBranch", - "vtable_address": 6461244104, + "vtable_address": 6461244064, "methods": [ 6446805888, 6446938576, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6452676976, 6451865168, @@ -166297,7 +166299,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623648, 6446952592, 6446952944, @@ -166571,18 +166573,18 @@ }, { "type_name": "CLogicBranchList", - "vtable_address": 6462655960, + "vtable_address": 6462655992, "methods": [ 6446805888, 6452595824, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452663856, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452599600, 6451932368, 6451865168, @@ -166612,7 +166614,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623664, 6452653440, 6452657120, @@ -166886,18 +166888,18 @@ }, { "type_name": "CLogicCase", - "vtable_address": 6462642776, + "vtable_address": 6462642808, "methods": [ 6446805888, 6452595888, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452663872, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -166927,7 +166929,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623680, 6452653456, 6452657168, @@ -167201,18 +167203,18 @@ }, { "type_name": "CLogicCollisionPair", - "vtable_address": 6462653672, + "vtable_address": 6462653704, "methods": [ 6446805888, 6452596144, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452600160, 6451932368, 6451865168, @@ -167242,7 +167244,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623696, 6452653472, 6452657216, @@ -167516,18 +167518,18 @@ }, { "type_name": "CLogicCompare", - "vtable_address": 6462644960, + "vtable_address": 6462644992, "methods": [ 6446805888, 6452596208, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -167557,7 +167559,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623712, 6452653488, 6452657264, @@ -167831,18 +167833,18 @@ }, { "type_name": "CLogicDistanceAutosave", - "vtable_address": 6462651592, + "vtable_address": 6462651624, "methods": [ 6446805888, 6452596544, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -167872,7 +167874,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623728, 6452653504, 6452657312, @@ -168146,18 +168148,18 @@ }, { "type_name": "CLogicDistanceCheck", - "vtable_address": 6462622776, + "vtable_address": 6462622808, "methods": [ 6446805888, 6452596608, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -168187,7 +168189,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623744, 6446952608, 6452657360, @@ -168466,13 +168468,13 @@ 6446805888, 6444437664, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6444565616, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -168502,7 +168504,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444485008, 6444544640, 6444557840, @@ -168906,18 +168908,18 @@ }, { "type_name": "CLogicGameEvent", - "vtable_address": 6462658128, + "vtable_address": 6462658160, "methods": [ 6446805888, 6452596896, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -168947,7 +168949,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623760, 6452653520, 6452657408, @@ -169221,18 +169223,18 @@ }, { "type_name": "CLogicGameEventListener", - "vtable_address": 6462602768, + "vtable_address": 6462602800, "methods": [ 6446805888, 6452596960, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452663904, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452600304, 6451932368, 6451865168, @@ -169262,7 +169264,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623776, 6452653536, 6452657456, @@ -169564,7 +169566,7 @@ }, { "type_name": "CLogicGameEventListener", - "vtable_address": 6462604720, + "vtable_address": 6462604752, "methods": [ 6452594536, 6452622240 @@ -169666,18 +169668,18 @@ }, { "type_name": "CLogicLineToEntity", - "vtable_address": 6462629352, + "vtable_address": 6462629384, "methods": [ 6446805888, 6452597168, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452663984, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452600384, 6451932368, 6451865168, @@ -169707,7 +169709,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623792, 6452653552, 6452657504, @@ -169981,18 +169983,18 @@ }, { "type_name": "CLogicMeasureMovement", - "vtable_address": 6462607168, + "vtable_address": 6462607200, "methods": [ 6446805888, 6452597312, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452601056, 6451932368, 6451865168, @@ -170022,7 +170024,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623808, 6452653568, 6452657552, @@ -170296,18 +170298,18 @@ }, { "type_name": "CLogicNPCCounter", - "vtable_address": 6462611768, + "vtable_address": 6462611800, "methods": [ 6446805888, 6452597376, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452664064, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -170337,7 +170339,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623824, 6452653584, 6452657600, @@ -170586,18 +170588,18 @@ }, { "type_name": "CLogicNPCCounterAABB", - "vtable_address": 6462614632, + "vtable_address": 6462614664, "methods": [ 6446805888, 6452597440, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452664176, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -170627,7 +170629,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623840, 6452653600, 6452657648, @@ -170891,18 +170893,18 @@ }, { "type_name": "CLogicNPCCounterOBB", - "vtable_address": 6462616648, + "vtable_address": 6462616680, "methods": [ 6446805888, 6452597504, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452664336, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -170932,7 +170934,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623856, 6452653616, 6452657696, @@ -171210,18 +171212,18 @@ }, { "type_name": "CLogicNavigation", - "vtable_address": 6462609728, + "vtable_address": 6462609760, "methods": [ 6446805888, 6452597568, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452664496, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452601280, 6452677200, 6451865168, @@ -171251,7 +171253,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623872, 6452653632, 6452657744, @@ -171539,7 +171541,7 @@ }, { "type_name": "CLogicNavigation", - "vtable_address": 6462611680, + "vtable_address": 6462611712, "methods": [ 6444023440, 6452649232, @@ -171629,18 +171631,18 @@ }, { "type_name": "CLogicPlayerProxy", - "vtable_address": 6462618632, + "vtable_address": 6462618664, "methods": [ 6446805888, 6452597632, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452601456, 6451932368, 6451865168, @@ -171670,7 +171672,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623888, 6452653648, 6452657792, @@ -171944,18 +171946,18 @@ }, { "type_name": "CLogicProximity", - "vtable_address": 6463011272, + "vtable_address": 6463011288, "methods": [ 6445499872, 6453711664, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -171985,7 +171987,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758416, 6453807424, 6453810096, @@ -172245,18 +172247,18 @@ }, { "type_name": "CLogicRelay", - "vtable_address": 6462289344, + "vtable_address": 6462289376, "methods": [ 6446944864, 6450982160, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450984160, 6451932368, 6451865168, @@ -172286,7 +172288,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451064400, 6446952624, 6451199952, @@ -172560,18 +172562,18 @@ }, { "type_name": "CLogicScript", - "vtable_address": 6462624728, + "vtable_address": 6462624760, "methods": [ 6452625568, 6452597968, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452664752, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -172601,7 +172603,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623904, 6452653664, 6452657840, @@ -172866,13 +172868,13 @@ 6446805888, 6444437904, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -172902,7 +172904,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818224, 6446826800, 6444557888, @@ -173162,7 +173164,7 @@ }, { "type_name": "CLoopModeFactory", - "vtable_address": 6462261640, + "vtable_address": 6462261672, "methods": [ 6450878304, 6450878496, @@ -173197,7 +173199,7 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 6462291536, + "vtable_address": 6462291568, "methods": [ 6451111792, 6451117344, @@ -173264,7 +173266,7 @@ }, { "type_name": "CLoopModeGame", - "vtable_address": 6462291616, + "vtable_address": 6462291648, "methods": [ 6451075552, 6451064032, @@ -173335,13 +173337,13 @@ 6445499872, 6444437968, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6444565696, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6444573360, 6451865168, @@ -173371,7 +173373,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444485024, 6444544656, 6444557936, @@ -173631,7 +173633,7 @@ }, { "type_name": "CMapLoadEntityFilter", - "vtable_address": 6462265792, + "vtable_address": 6462265824, "methods": [ 6450891056, 6450890624 @@ -173663,18 +173665,18 @@ }, { "type_name": "CMapSharedEnvironment", - "vtable_address": 6461259032, + "vtable_address": 6461259000, "methods": [ 6446805888, 6446986048, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452665440, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6452677264, 6451865168, @@ -173704,7 +173706,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623920, 6447001440, 6447005696, @@ -173983,13 +173985,13 @@ 6446805888, 6444438064, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6444565968, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -174019,7 +174021,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444485040, 6444544672, 6444557984, @@ -174265,7 +174267,7 @@ }, { "type_name": "CMarkupManager", - "vtable_address": 6462579496, + "vtable_address": 6462579560, "methods": [ 6443752688, 6443767152, @@ -174370,18 +174372,18 @@ }, { "type_name": "CMarkupVolume", - "vtable_address": 6461260984, + "vtable_address": 6461260952, "methods": [ 6446805920, 6446986112, 6450347280, - 6456889008, + 6456889024, 6452652368, 6450317376, 6452666208, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -174411,7 +174413,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623936, 6447001456, 6447005744, @@ -174701,18 +174703,18 @@ }, { "type_name": "CMarkupVolumeTagged", - "vtable_address": 6462669704, + "vtable_address": 6462669736, "methods": [ 6446995312, 6452598032, 6450347280, - 6456889008, + 6456889024, 6452652368, 6452606048, 6452666768, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452601680, 6452677296, 6450455600, @@ -174742,7 +174744,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623952, 6447001472, 6452657888, @@ -175049,18 +175051,18 @@ }, { "type_name": "CMarkupVolumeTagged_Nav", - "vtable_address": 6462674192, + "vtable_address": 6462674224, "methods": [ 6446995312, 6452598096, 6450347280, - 6456889008, + 6456889024, 6452652368, 6452606048, 6452667520, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452601728, 6452677344, 6450455600, @@ -175090,7 +175092,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623968, 6452653680, 6452657936, @@ -175411,18 +175413,18 @@ }, { "type_name": "CMarkupVolumeTagged_NavGame", - "vtable_address": 6462676440, + "vtable_address": 6462676472, "methods": [ 6446995312, 6452598160, 6450347280, - 6456889008, + 6456889024, 6452652368, 6452606048, 6452668544, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452601840, 6452677440, 6450455600, @@ -175452,7 +175454,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452623984, 6452653696, 6452657984, @@ -175815,7 +175817,7 @@ }, { "type_name": "CMarkupVolumeTagged_NavGame", - "vtable_address": 6462678656, + "vtable_address": 6462678688, "methods": [ 6452594548, 6452647968 @@ -175945,18 +175947,18 @@ }, { "type_name": "CMarkupVolumeWithRef", - "vtable_address": 6461263176, + "vtable_address": 6461263144, "methods": [ 6446995312, 6446986176, 6450347280, - 6456889008, + 6456889024, 6452652368, 6452606048, 6452666768, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452602416, 6452677552, 6450455600, @@ -175986,7 +175988,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624000, 6447001488, 6447005792, @@ -176335,7 +176337,7 @@ }, { "type_name": "CMarkupVolumeWithRef", - "vtable_address": 6461265392, + "vtable_address": 6461265360, "methods": [ 6446985504, 6452647968 @@ -176451,18 +176453,18 @@ }, { "type_name": "CMathColorBlend", - "vtable_address": 6462633536, + "vtable_address": 6462633568, "methods": [ 6446805888, 6452598240, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452670704, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -176492,7 +176494,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624016, 6452653712, 6452658032, @@ -176766,18 +176768,18 @@ }, { "type_name": "CMathCounter", - "vtable_address": 6462639904, + "vtable_address": 6462639936, "methods": [ 6446805888, 6452598384, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452670800, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -176807,7 +176809,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624032, 6452653728, 6452658080, @@ -177081,18 +177083,18 @@ }, { "type_name": "CMathRemap", - "vtable_address": 6462631432, + "vtable_address": 6462631464, "methods": [ 6446805888, 6452598448, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452671088, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -177122,7 +177124,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624048, 6452653744, 6452658128, @@ -177396,18 +177398,18 @@ }, { "type_name": "CMessage", - "vtable_address": 6461206296, + "vtable_address": 6461206264, "methods": [ 6445499872, 6446876016, 6445463120, - 6456889008, + 6456889024, 6452261408, 6451753984, 6452295552, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -177437,7 +177439,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208176, 6446896608, 6446898240, @@ -177697,18 +177699,18 @@ }, { "type_name": "CMessageEntity", - "vtable_address": 6462678952, + "vtable_address": 6462678984, "methods": [ 6445499872, 6452598512, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452671200, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452602576, 6452677600, 6451865168, @@ -177738,7 +177740,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624064, 6452653760, 6452658176, @@ -178003,13 +178005,13 @@ 6446805920, 6444438128, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -178039,7 +178041,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389664, 6446826816, 6444558032, @@ -178327,7 +178329,7 @@ }, { "type_name": "CModelState", - "vtable_address": 6462342672, + "vtable_address": 6462342704, "methods": [ 6451603104, 6451606816, @@ -178348,7 +178350,7 @@ "type_name": "CModuleMetadataProvider_ResourceManifests", "vtable_address": 6463713040, "methods": [ - 6459862624 + 6459862640 ], "bases": [ { @@ -178377,7 +178379,7 @@ }, { "type_name": "CMolotovGrenade", - "vtable_address": 6462068352, + "vtable_address": 6462068368, "methods": [ 6446805904, 6449673344, @@ -178386,9 +178388,9 @@ 6449684400, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -178418,7 +178420,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681440, 6449685008, 6449685312, @@ -178479,7 +178481,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -178702,14 +178704,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449407632, @@ -179003,14 +179005,14 @@ }, { "type_name": "CMolotovGrenade", - "vtable_address": 6462072008, + "vtable_address": 6462072024, "methods": [ 6449685348, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -179179,7 +179181,7 @@ }, { "type_name": "CMolotovGrenade", - "vtable_address": 6462072064, + "vtable_address": 6462072080, "methods": [ 6449606576, 6449574480 @@ -179351,7 +179353,7 @@ }, { "type_name": "CMolotovProjectile", - "vtable_address": 6461872640, + "vtable_address": 6461872656, "methods": [ 6446805904, 6449384704, @@ -179360,9 +179362,9 @@ 6449125920, 6450317360, 6449484064, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -179392,7 +179394,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449428480, 6449461520, 6449471616, @@ -179831,7 +179833,7 @@ }, { "type_name": "CMolotovProjectile", - "vtable_address": 6461875352, + "vtable_address": 6461875368, "methods": [ 6443908752, 6443918000 @@ -179975,18 +179977,18 @@ }, { "type_name": "CMomentaryRotButton", - "vtable_address": 6461167096, + "vtable_address": 6461167064, "methods": [ 6446805920, 6446776640, 6450347280, - 6456889008, + 6456889024, 6451873232, 6450317376, 6451916336, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -180016,7 +180018,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818240, 6446826832, 6446838912, @@ -180356,7 +180358,7 @@ }, { "type_name": "CMotorController", - "vtable_address": 6461269792, + "vtable_address": 6461269760, "methods": [ 6447005840 ], @@ -180372,7 +180374,7 @@ }, { "type_name": "CMovementStatsProperty", - "vtable_address": 6462370880, + "vtable_address": 6462370912, "methods": [ 6451893712 ], @@ -180388,18 +180390,18 @@ }, { "type_name": "CMoverPathNode", - "vtable_address": 6461212640, + "vtable_address": 6461212608, "methods": [ 6445499872, 6446876160, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452173136, 6451932368, 6451865168, @@ -180429,7 +180431,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208192, 6446896624, 6446898288, @@ -180689,22 +180691,22 @@ }, { "type_name": "CMsgAccountDetails", - "vtable_address": 6461579048, + "vtable_address": 6461579032, "methods": [ 6448248160, - 6455181760, + 6455181776, 6448231360, 6448231744, 6448231856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448231888, 6448235440, 6448232208, 6443766512, 6448234560, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448236160, 6448236448, 6448236416 @@ -180750,26 +180752,26 @@ }, { "type_name": "CMsgAcknowledgeRentalExpiration", - "vtable_address": 6461465992, + "vtable_address": 6461465976, "methods": [ 6447583392, - 6455181760, + 6455181776, 6447577440, 6447577584, 6447577616, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447577632, 6447578240, 6447577680, 6443766512, 6447578064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447578416, 6447578736, 6447578720, - 6455179744, + 6455179760, 6447580992 ], "bases": [ @@ -180813,22 +180815,22 @@ }, { "type_name": "CMsgAdjustEquipSlot", - "vtable_address": 6461457448, + "vtable_address": 6461457432, "methods": [ 6447482496, - 6455181760, + 6455181776, 6447473520, 6447474800, 6447474832, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447474848, 6447475968, 6447474992, 6443766512, 6447475584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447476208, 6447476256, 6447476240 @@ -180874,22 +180876,22 @@ }, { "type_name": "CMsgAdjustEquipSlots", - "vtable_address": 6461460024, + "vtable_address": 6461460008, "methods": [ 6447518992, - 6455181760, + 6455181776, 6447497104, 6447499264, 6447499584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447499792, 6447502080, 6447500960, 6443766512, 6447501824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447502128, 6447502352, 6447502272 @@ -180935,26 +180937,26 @@ }, { "type_name": "CMsgApplyEggEssence", - "vtable_address": 6461367304, + "vtable_address": 6461367288, "methods": [ 6447195600, - 6455181760, + 6455181776, 6447184640, 6447185520, 6447185552, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447185568, 6447186496, 6447185680, 6443766512, 6447186192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447186928, 6447188016, 6447188000, - 6455179744, + 6455179760, 6447193904 ], "bases": [ @@ -180998,26 +181000,26 @@ }, { "type_name": "CMsgApplyPennantUpgrade", - "vtable_address": 6461354168, + "vtable_address": 6461354152, "methods": [ 6447183536, - 6455181760, + 6455181776, 6447162256, 6447163856, 6447163904, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447164928, 6447171888, 6447168256, 6443766512, 6447171568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447172000, 6447172128, 6447172048, - 6455179744, + 6455179760, 6447175792 ], "bases": [ @@ -181061,26 +181063,26 @@ }, { "type_name": "CMsgApplyStatTrakSwap", - "vtable_address": 6461350056, + "vtable_address": 6461350040, "methods": [ 6447146576, - 6455181760, + 6455181776, 6447136896, 6447138768, 6447138816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447138832, 6447140000, 6447138976, 6443766512, 6447139584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447140096, 6447141088, 6447141056, - 6455179744, + 6455179760, 6447144304 ], "bases": [ @@ -181124,22 +181126,22 @@ }, { "type_name": "CMsgApplySticker", - "vtable_address": 6461334896, + "vtable_address": 6461334880, "methods": [ 6447121072, - 6455181760, + 6455181776, 6447107120, 6447110496, 6447110560, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447111264, 6447113888, 6447111712, 6443766512, 6447113136, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447114832, 6447115168, 6447115152 @@ -181185,22 +181187,22 @@ }, { "type_name": "CMsgApplyStrangePart", - "vtable_address": 6461350888, + "vtable_address": 6461350872, "methods": [ 6447159440, - 6455181760, + 6455181776, 6447151488, 6447151584, 6447151616, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447151632, 6447152544, 6447151728, 6443766512, 6447152240, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447153520, 6447157344, 6447157328 @@ -181246,32 +181248,32 @@ }, { "type_name": "CMsgCStrike15Welcome", - "vtable_address": 6461505776, + "vtable_address": 6461505760, "methods": [ 6447847552, - 6455181760, + 6455181776, 6447840704, 6447840992, 6447841040, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447841072, 6447843376, 6447841552, 6443766512, 6447842592, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447843616, 6447844224, 6447844208, - 6455179744, + 6455179760, 6447846608, - 6455179744, + 6455179760, 6447847728, - 6455179744, + 6455179760, 6447849440, - 6455179744, + 6455179760, 6447849296 ], "bases": [ @@ -181315,22 +181317,22 @@ }, { "type_name": "CMsgCasketItem", - "vtable_address": 6461479624, + "vtable_address": 6461479608, "methods": [ 6447700560, - 6455181760, + 6455181776, 6447694272, 6447695984, 6447696016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447696576, 6447697952, 6447697136, 6443766512, 6447697648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447698000, 6447698400, 6447698384 @@ -181376,22 +181378,22 @@ }, { "type_name": "CMsgClearDecalsForEntityEvent", - "vtable_address": 6461391384, + "vtable_address": 6461391368, "methods": [ 6447346016, - 6455181760, + 6455181776, 6446104032, 6447336032, 6447336160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447336176, 6446048080, 6447336688, 6443766512, 6447337664, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447338416, 6447339584, 6447339184 @@ -181437,26 +181439,26 @@ }, { "type_name": "CMsgClearEntityDecalsEvent", - "vtable_address": 6461386432, + "vtable_address": 6461386416, "methods": [ 6447332224, - 6455181760, + 6455181776, 6446104048, 6447327376, 6447327408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447327424, 6446048096, 6447327488, 6443766512, 6447328016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447328192, 6447328400, 6447328384, - 6455179744, + 6455179760, 6447329216 ], "bases": [ @@ -181500,26 +181502,26 @@ }, { "type_name": "CMsgClearWorldDecalsEvent", - "vtable_address": 6461385264, + "vtable_address": 6461385248, "methods": [ 6447314848, - 6455181760, + 6455181776, 6446104064, 6447307712, 6447307744, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447307760, 6446048112, 6447307808, 6443766512, 6447308768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447310208, 6447310592, 6447310576, - 6455179744, + 6455179760, 6447313552 ], "bases": [ @@ -181563,22 +181565,22 @@ }, { "type_name": "CMsgClientHello", - "vtable_address": 6461605392, + "vtable_address": 6461605376, "methods": [ 6448437552, - 6455181760, + 6455181776, 6448413712, 6448416048, 6448417072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448417104, 6448419856, 6448417712, 6443766512, 6448418928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448420016, 6448420128, 6448420112 @@ -181624,22 +181626,22 @@ }, { "type_name": "CMsgClientWelcome", - "vtable_address": 6461617840, + "vtable_address": 6461617824, "methods": [ 6448501328, - 6455181760, + 6455181776, 6448468816, 6448470320, 6448470800, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448470816, 6448473696, 6448471712, 6443766512, 6448472928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448473872, 6448475024, 6448475008 @@ -181685,22 +181687,22 @@ }, { "type_name": "CMsgClientWelcome_Location", - "vtable_address": 6461607472, + "vtable_address": 6461607456, "methods": [ 6448466592, - 6455181760, + 6455181776, 6448460320, 6448461440, 6448461520, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448462416, 6448463696, 6448462896, 6443766512, 6448463488, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448464592, 6448464880, 6448464816 @@ -181746,28 +181748,28 @@ }, { "type_name": "CMsgConVarValue", - "vtable_address": 6461454264, + "vtable_address": 6461454248, "methods": [ 6447444336, - 6455181760, + 6455181776, 6447430384, 6447430752, 6447431136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447431280, 6447433312, 6447431744, 6443766512, 6447433152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447434048, 6447434272, 6447434112, - 6455179744, + 6455179760, 6447440048, - 6455179744, + 6455179760, 6447442400 ], "bases": [ @@ -181811,31 +181813,31 @@ }, { "type_name": "CMsgConnectionStatus", - "vtable_address": 6461619248, + "vtable_address": 6461619232, "methods": [ 6448513504, - 6455181760, + 6455181776, 6448507200, 6448508096, 6448508144, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448508160, 6448510176, 6448508416, 6443766512, 6448509504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448510688, 6448510912, 6448510896, - 6455179744, + 6455179760, 6448513680, - 6455179744, + 6455179760, 6448514112, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -181878,22 +181880,22 @@ }, { "type_name": "CMsgConsumableExhausted", - "vtable_address": 6461462872, + "vtable_address": 6461462856, "methods": [ 6447552032, - 6455181760, + 6455181776, 6447542032, 6447542368, 6447542496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447542576, 6447543632, 6447542704, 6443766512, 6447543456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447543776, 6447545104, 6447545088 @@ -181939,22 +181941,22 @@ }, { "type_name": "CMsgCsgoSteamUserStatChange", - "vtable_address": 6461484600, + "vtable_address": 6461484584, "methods": [ 6447757008, - 6455181760, + 6455181776, 6447740992, 6447741168, 6447741216, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447741232, 6447742288, 6447741344, 6443766512, 6447741952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447742304, 6447742368, 6447742352 @@ -182000,22 +182002,22 @@ }, { "type_name": "CMsgDevNewItemRequest", - "vtable_address": 6461506304, + "vtable_address": 6461506288, "methods": [ 6447858160, - 6455181760, + 6455181776, 6447847968, 6447850320, 6447850416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447850672, 6447853040, 6447851728, 6443766512, 6447852880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447853104, 6447854496, 6447854080 @@ -182061,22 +182063,22 @@ }, { "type_name": "CMsgEffectData", - "vtable_address": 6461555856, + "vtable_address": 6461555840, "methods": [ 6448102992, - 6455181760, + 6455181776, 6448077728, 6448080112, 6448080416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448080432, 6448084304, 6448081312, 6443766512, 6448083040, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448084624, 6448084832, 6448084816 @@ -182122,22 +182124,22 @@ }, { "type_name": "CMsgGCBannedWord", - "vtable_address": 6461349064, + "vtable_address": 6461349048, "methods": [ 6447136256, - 6455181760, + 6455181776, 6447131440, 6447131616, 6447131696, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447131712, 6447132816, 6447131856, 6443766512, 6447132496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447132832, 6447133008, 6447132992 @@ -182183,22 +182185,22 @@ }, { "type_name": "CMsgGCBannedWordListRequest", - "vtable_address": 6461332816, + "vtable_address": 6461332800, "methods": [ 6447095504, - 6455181760, + 6455181776, 6447083472, 6447083648, 6447083696, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447083712, 6447084800, 6447083952, 6443766512, 6447084528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447085472, 6447086016, 6447086000 @@ -182244,22 +182246,22 @@ }, { "type_name": "CMsgGCBannedWordListResponse", - "vtable_address": 6461351336, + "vtable_address": 6461351320, "methods": [ 6447161168, - 6455181760, + 6455181776, 6447144208, 6447144496, 6447144704, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447144720, 6447145824, 6447145056, 6443766512, 6447145584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447145920, 6447147024, 6447146992 @@ -182305,22 +182307,22 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats", - "vtable_address": 6461471856, + "vtable_address": 6461471840, "methods": [ 6447633296, - 6455181760, + 6455181776, 6447609680, 6447610016, 6447610192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447610208, 6447611648, 6447610736, 6443766512, 6447611344, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447611872, 6447612624, 6447612224 @@ -182366,30 +182368,30 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch", - "vtable_address": 6461468088, + "vtable_address": 6461468072, "methods": [ 6447605072, - 6455181760, + 6455181776, 6447582976, 6447583952, 6447584256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447584272, 6447585136, 6447584464, 6443766512, 6447584960, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447585232, 6447585280, 6447585248, - 6455179744, + 6455179760, 6447601792, - 6455179744, + 6455179760, 6447602112, - 6455179744, + 6455179760, 6447604144 ], "bases": [ @@ -182433,34 +182435,34 @@ }, { "type_name": "CMsgGCCStrike15_ClientDeepStats_DeepStatsRange", - "vtable_address": 6461464872, + "vtable_address": 6461464856, "methods": [ 6447576688, - 6455181760, + 6455181776, 6447561280, 6447562784, 6447563616, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447563632, 6447564672, 6447563728, 6443766512, 6447564352, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447564688, 6447564960, 6447564944, - 6455179744, + 6455179760, 6447567728, - 6455179744, + 6455179760, 6447568352, - 6455179744, + 6455179760, 6447570976, - 6455179744, + 6455179760, 6447571296, - 6455179744, + 6455179760, 6447575728 ], "bases": [ @@ -182504,28 +182506,28 @@ }, { "type_name": "CMsgGCCStrike15_GotvSyncPacket", - "vtable_address": 6461482344, + "vtable_address": 6461482328, "methods": [ 6447726688, - 6455181760, + 6455181776, 6447716096, 6447717728, 6447717840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447718000, 6447718592, 6447718080, 6443766512, 6447718480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447718784, 6447719968, 6447719952, - 6455179744, + 6455179760, 6447723056, - 6455179744, + 6455179760, 6447722864 ], "bases": [ @@ -182569,22 +182571,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings", - "vtable_address": 6461354616, + "vtable_address": 6461354600, "methods": [ 6447184080, - 6455181760, + 6455181776, 6447158016, 6447158368, 6447158512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447158528, 6447159728, 6447158784, 6443766512, 6447159584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447159744, 6447159776, 6447159760 @@ -182630,22 +182632,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_AccountPrivacySettings_Setting", - "vtable_address": 6461350408, + "vtable_address": 6461350392, "methods": [ 6447151344, - 6455181760, + 6455181776, 6447145568, 6447145936, 6447145968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447145984, 6447147008, 6447146080, 6443766512, 6447146720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447147088, 6447147408, 6447147200 @@ -182691,32 +182693,32 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays", - "vtable_address": 6461366904, + "vtable_address": 6461366888, "methods": [ 6447184704, - 6455181760, + 6455181776, 6447159840, 6447160192, 6447160352, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447160368, 6447161584, 6447160672, 6443766512, 6447161328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447161600, 6447161776, 6447161616, - 6455179744, + 6455179760, 6447184544, - 6455179744, + 6455179760, 6447185440, - 6455179744, + 6455179760, 6447186512, - 6455179744, + 6455179760, 6447188080 ], "bases": [ @@ -182760,30 +182762,30 @@ }, { "type_name": "CMsgGCCStrike15_v2_Account_RequestCoPlays_Player", - "vtable_address": 6461350552, + "vtable_address": 6461350536, "methods": [ 6447153552, - 6455181760, + 6455181776, 6447147104, 6447147360, 6447147472, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447147488, 6447148512, 6447147584, 6443766512, 6447148192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447148544, 6447149168, 6447149152, - 6455179744, + 6455179760, 6447151504, - 6455179744, + 6455179760, 6447152576, - 6455179744, + 6455179760, 6447154320 ], "bases": [ @@ -182827,22 +182829,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_AcknowledgePenalty", - "vtable_address": 6461468888, + "vtable_address": 6461468872, "methods": [ 6447609376, - 6455181760, + 6455181776, 6447603904, 6447605344, 6447606336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447606352, 6447607616, 6447606960, 6443766512, 6447607440, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447607712, 6447608160, 6447607968 @@ -182888,22 +182890,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_BetaEnrollment", - "vtable_address": 6461488912, + "vtable_address": 6461488896, "methods": [ 6447783760, - 6455181760, + 6455181776, 6447779520, 6447780624, 6447780656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447780672, 6447781632, 6447780880, 6443766512, 6447781440, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447782160, 6447783120, 6447783104 @@ -182949,22 +182951,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest", - "vtable_address": 6461379360, + "vtable_address": 6461379344, "methods": [ 6447265312, - 6455181760, + 6455181776, 6447255488, 6447257904, 6447257952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447257984, 6447262064, 6447259456, 6443766512, 6447261552, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447262832, 6447262976, 6447262960 @@ -183010,26 +183012,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse", - "vtable_address": 6461382112, + "vtable_address": 6461382096, "methods": [ 6447286080, - 6455181760, + 6455181776, 6447277040, 6447280384, 6447280512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447280544, 6447281680, 6447281168, 6443766512, 6447281568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447281728, 6447281904, 6447281888, - 6455179744, + 6455179760, 6447283856 ], "bases": [ @@ -183073,26 +183075,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin", - "vtable_address": 6461470568, + "vtable_address": 6461470552, "methods": [ 6447628400, - 6455181760, + 6455181776, 6447619248, 6447619520, 6447619632, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447619664, 6447621552, 6447619904, 6443766512, 6447621024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447621728, 6447621792, 6447621760, - 6455179744, + 6455179760, 6447626816 ], "bases": [ @@ -183136,30 +183138,30 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCStreamUnlock", - "vtable_address": 6461473056, + "vtable_address": 6461473040, "methods": [ 6447641568, - 6455181760, + 6455181776, 6447633664, 6447633760, 6447633808, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447633824, 6447634736, 6447633936, 6443766512, 6447634432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447635280, 6447636864, 6447636848, - 6455179744, + 6455179760, 6447638608, - 6455179744, + 6455179760, 6447638384, - 6455179744, + 6455179760, 6447639264 ], "bases": [ @@ -183203,26 +183205,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GCTextMsg", - "vtable_address": 6461346872, + "vtable_address": 6461346856, "methods": [ 6447131184, - 6455181760, + 6455181776, 6447121216, 6447121328, 6447121392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447121408, 6447122416, 6447121600, 6443766512, 6447122064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447122576, 6447122624, 6447122608, - 6455179744, + 6455179760, 6447130096 ], "bases": [ @@ -183266,26 +183268,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_Client2GcAckXPShopTracks", - "vtable_address": 6461459864, + "vtable_address": 6461459848, "methods": [ 6447518720, - 6455181760, + 6455181776, 6447516240, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447517568, 6447517456, - 6455179744, + 6455179760, 6447517312 ], "bases": [ @@ -183343,22 +183345,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAccountBalance", - "vtable_address": 6461378624, + "vtable_address": 6461378608, "methods": [ 6447263616, - 6455181760, + 6455181776, 6447250832, 6447253008, 6447253072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447253184, 6447254832, 6447253440, 6443766512, 6447254592, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447256848, 6447259392, 6447259360 @@ -183404,22 +183406,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientAuthKeyCode", - "vtable_address": 6461480632, + "vtable_address": 6461480616, "methods": [ 6447712208, - 6455181760, + 6455181776, 6447706896, 6447707248, 6447707312, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447707328, 6447708304, 6447707600, 6443766512, 6447708080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447708320, 6447708432, 6447708416 @@ -183465,26 +183467,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientCommendPlayer", - "vtable_address": 6461383168, + "vtable_address": 6461383152, "methods": [ 6447292736, - 6455181760, + 6455181776, 6447282432, 6447284144, 6447284400, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447284416, 6447285872, 6447284736, 6443766512, 6447285456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447285984, 6447286272, 6447286256, - 6455179744, + 6455179760, 6447289344 ], "bases": [ @@ -183528,26 +183530,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientGCRankUpdate", - "vtable_address": 6461369192, + "vtable_address": 6461369176, "methods": [ 6447214160, - 6455181760, + 6455181776, 6447205584, 6447206256, 6447206384, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447206400, 6447207216, 6447206560, 6443766512, 6447207072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447207440, 6447208560, 6447208544, - 6455179744, + 6455179760, 6447209952 ], "bases": [ @@ -183591,22 +183593,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientLogonFatalError", - "vtable_address": 6461493704, + "vtable_address": 6461493688, "methods": [ 6447797312, - 6455181760, + 6455181776, 6447785504, 6447786096, 6447786192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447786224, 6447787440, 6447786496, 6443766512, 6447787184, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447788976, 6447789696, 6447789680 @@ -183652,30 +183654,30 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientNetworkConfig", - "vtable_address": 6461463016, + "vtable_address": 6461463000, "methods": [ 6447552848, - 6455181760, + 6455181776, 6447542048, 6447542512, 6447542624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447542640, 6447543760, 6447543088, 6443766512, 6447543648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447543984, 6447545840, 6447545664, - 6455179744, + 6455179760, 6447548736, - 6455179744, + 6455179760, 6447550160, - 6455179744, + 6455179760, 6447552640 ], "bases": [ @@ -183719,22 +183721,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyJoinRelay", - "vtable_address": 6461380224, + "vtable_address": 6461380208, "methods": [ 6447282544, - 6455181760, + 6455181776, 6447266464, 6447270800, 6447270848, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447271568, 6447272880, 6447272080, 6443766512, 6447272592, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447273856, 6447276576, 6447276560 @@ -183780,22 +183782,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning", - "vtable_address": 6461387200, + "vtable_address": 6461387184, "methods": [ 6447334336, - 6455181760, + 6455181776, 6447312064, 6447313728, 6447313872, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447313904, 6447314720, 6447314160, 6443766512, 6447314576, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447314832, 6447315136, 6447315120 @@ -183841,26 +183843,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPartyWarning_Entry", - "vtable_address": 6461383968, + "vtable_address": 6461383952, "methods": [ 6447297280, - 6455181760, + 6455181776, 6447288496, 6447289424, 6447289456, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447289488, 6447290960, 6447289584, 6443766512, 6447290672, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447292272, 6447292960, 6447292944, - 6455179744, + 6455179760, 6447296352 ], "bases": [ @@ -183904,22 +183906,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport", - "vtable_address": 6461455320, + "vtable_address": 6461455304, "methods": [ 6447448640, - 6455181760, + 6455181776, 6447426368, 6447427296, 6447427536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447427856, 6447428768, 6447428032, 6443766512, 6447428624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447428960, 6447429072, 6447429056 @@ -183965,36 +183967,36 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPerfReport_Entry", - "vtable_address": 6461440752, + "vtable_address": 6461440736, "methods": [ 6447418976, - 6455181760, + 6455181776, 6447404432, 6447405456, 6447405584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447405600, 6447408320, 6447406256, 6443766512, 6447407712, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447412144, 6447413120, 6447413088, - 6455179744, + 6455179760, 6447416864, - 6455179744, + 6455179760, 6447417104, - 6455179744, + 6455179760, 6447418896, - 6455179744, + 6455179760, 6447420176, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6447421408 ], "bases": [ @@ -184038,22 +184040,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPlayerDecalSign", - "vtable_address": 6461488240, + "vtable_address": 6461488224, "methods": [ 6447774336, - 6455181760, + 6455181776, 6447764896, 6447765376, 6447765600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447765792, 6447767840, 6447766624, 6443766512, 6447767600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447769040, 6447771472, 6447771392 @@ -184099,22 +184101,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientPollState", - "vtable_address": 6461503584, + "vtable_address": 6461503568, "methods": [ 6447824800, - 6455181760, + 6455181776, 6447800944, 6447801184, 6447801248, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447801264, 6447806192, 6447802848, 6443766512, 6447804608, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447809856, 6447811328, 6447811296 @@ -184160,42 +184162,42 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportPlayer", - "vtable_address": 6461379792, + "vtable_address": 6461379776, "methods": [ 6447267120, - 6455181760, + 6455181776, 6447254848, 6447257104, 6447257440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447257600, 6447261072, 6447258160, 6443766512, 6447260176, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447262624, 6447262896, 6447262864, - 6455179744, + 6455179760, 6447265840, - 6455179744, + 6455179760, 6447266976, - 6455179744, + 6455179760, 6447268928, - 6455179744, + 6455179760, 6447270720, - 6455179744, + 6455179760, 6447272912, - 6455179744, + 6455179760, 6447273056, - 6455179744, + 6455179760, 6447276640, - 6455179744, + 6455179760, 6447277392, - 6455179744, + 6455179760, 6447279504 ], "bases": [ @@ -184239,22 +184241,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportResponse", - "vtable_address": 6461387792, + "vtable_address": 6461387776, "methods": [ 6447337232, - 6455181760, + 6455181776, 6447329184, 6447329344, 6447329392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447329408, 6447331296, 6447329712, 6443766512, 6447330624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447331392, 6447332688, 6447332672 @@ -184300,26 +184302,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportServer", - "vtable_address": 6461385584, + "vtable_address": 6461385568, "methods": [ 6447319600, - 6455181760, + 6455181776, 6447300960, 6447305744, 6447305792, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447305808, 6447307696, 6447306032, 6443766512, 6447307024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447308432, 6447310480, 6447310448, - 6455179744, + 6455179760, 6447316000 ], "bases": [ @@ -184363,22 +184365,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientReportValidation", - "vtable_address": 6461461912, + "vtable_address": 6461461896, "methods": [ 6447540976, - 6455181760, + 6455181776, 6447489040, 6447490000, 6447490368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447490496, 6447496528, 6447491792, 6443766512, 6447494656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447497072, 6447497888, 6447497872 @@ -184424,26 +184426,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinFriendData", - "vtable_address": 6461441296, + "vtable_address": 6461441280, "methods": [ 6447426160, - 6455181760, + 6455181776, 6447413904, 6447414416, 6447414528, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447414544, 6447416416, 6447414976, 6443766512, 6447415872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447416736, 6447416768, 6447416752, - 6455179744, + 6455179760, 6447424336 ], "bases": [ @@ -184487,22 +184489,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestJoinServerData", - "vtable_address": 6461455176, + "vtable_address": 6461455160, "methods": [ 6447448448, - 6455181760, + 6455181776, 6447430528, 6447431152, 6447431408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447431424, 6447434032, 6447432128, 6443766512, 6447433392, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447434064, 6447434352, 6447434336 @@ -184548,22 +184550,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestOffers", - "vtable_address": 6461374888, + "vtable_address": 6461374872, "methods": [ 6447227824, - 6455181760, + 6455181776, 6447226320, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447227264, 6447227248 @@ -184623,22 +184625,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestPlayersProfile", - "vtable_address": 6461477280, + "vtable_address": 6461477264, "methods": [ 6447694112, - 6455181760, + 6455181776, 6447679824, 6447680464, 6447680560, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447680640, 6447682336, 6447681040, 6443766512, 6447681808, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447682432, 6447682528, 6447682512 @@ -184684,22 +184686,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestSouvenir", - "vtable_address": 6461376880, + "vtable_address": 6461376864, "methods": [ 6447249056, - 6455181760, + 6455181776, 6447238736, 6447239280, 6447240176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447240240, 6447242912, 6447241024, 6443766512, 6447242384, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447244464, 6447244624, 6447244608 @@ -184745,22 +184747,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends", - "vtable_address": 6461429032, + "vtable_address": 6461429016, "methods": [ 6447367984, - 6455181760, + 6455181776, 6447347024, 6447348080, 6447348272, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447348288, 6447350496, 6447348720, 6443766512, 6447349808, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447350752, 6447351552, 6447351536 @@ -184806,26 +184808,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientSubmitSurveyVote", - "vtable_address": 6461354008, + "vtable_address": 6461353992, "methods": [ 6447183232, - 6455181760, + 6455181776, 6447162112, 6447162208, 6447162240, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447162288, 6447163152, 6447162384, 6443766512, 6447162880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447165024, 6447171920, 6447171904, - 6455179744, + 6455179760, 6447174608 ], "bases": [ @@ -184869,26 +184871,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCChat", - "vtable_address": 6461476128, + "vtable_address": 6461476112, "methods": [ 6447679856, - 6455181760, + 6455181776, 6447670000, 6447671616, 6447671680, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447672208, 6447673072, 6447672336, 6443766512, 6447672816, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447673616, 6447674752, 6447674736, - 6455179744, + 6455179760, 6447676688 ], "bases": [ @@ -184932,22 +184934,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestElevate", - "vtable_address": 6461474416, + "vtable_address": 6461474400, "methods": [ 6447665344, - 6455181760, + 6455181776, 6447658864, 6447659424, 6447659584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447659600, 6447661008, 6447660160, 6443766512, 6447660832, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447661344, 6447661456, 6447661440 @@ -184993,26 +184995,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientToGCRequestTicket", - "vtable_address": 6461368216, + "vtable_address": 6461368200, "methods": [ 6447201216, - 6455181760, + 6455181776, 6447195584, 6447195936, 6447196016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447196048, 6447196944, 6447196224, 6443766512, 6447196704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447197104, 6447197136, 6447197120, - 6455179744, + 6455179760, 6447199552 ], "bases": [ @@ -185056,34 +185058,34 @@ }, { "type_name": "CMsgGCCStrike15_v2_ClientVarValueNotificationInfo", - "vtable_address": 6461332304, + "vtable_address": 6461332288, "methods": [ 6447085488, - 6455181760, + 6455181776, 6447856080, 6447856368, 6447856480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447856496, 6447858144, 6447856816, 6443766512, 6447857568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447858336, 6447074816, 6447074800, - 6455179744, + 6455179760, 6447083568, - 6455179744, + 6455179760, 6447084448, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6447086080, - 6455179744, + 6455179760, 6447086256 ], "bases": [ @@ -185127,22 +185129,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy", - "vtable_address": 6461488384, + "vtable_address": 6461488368, "methods": [ 6447774768, - 6455181760, + 6455181776, 6447757152, 6447757568, 6447757968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447758000, 6447760384, 6447758480, 6443766512, 6447760144, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447762800, 6447762896, 6447762864 @@ -185188,22 +185190,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasySlot", - "vtable_address": 6461481352, + "vtable_address": 6461481336, "methods": [ 6447714368, - 6455181760, + 6455181776, 6447709504, 6447710464, 6447710496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447710512, 6447711792, 6447710800, 6443766512, 6447711392, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447711968, 6447712000, 6447711984 @@ -185249,22 +185251,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_Fantasy_FantasyTeam", - "vtable_address": 6461483944, + "vtable_address": 6461483928, "methods": [ 6447748704, - 6455181760, + 6455181776, 6447722560, 6447723424, 6447724096, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447724272, 6447726544, 6447725536, 6443766512, 6447726288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447726592, 6447726960, 6447726880 @@ -185310,26 +185312,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem", - "vtable_address": 6461469176, + "vtable_address": 6461469160, "methods": [ 6447611664, - 6455181760, + 6455181776, 6447594064, 6447594672, 6447594912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447594944, 6447596832, 6447595312, 6443766512, 6447596368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447598352, 6447600352, 6447600336, - 6455179744, + 6455179760, 6447609696 ], "bases": [ @@ -185373,22 +185375,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientInitSystem_Response", - "vtable_address": 6461472288, + "vtable_address": 6461472272, "methods": [ 6447636128, - 6455181760, + 6455181776, 6447621920, 6447622240, 6447622368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447622384, 6447625344, 6447622944, 6443766512, 6447624448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447625584, 6447626640, 6447626624 @@ -185434,26 +185436,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientNotifyXPShop", - "vtable_address": 6461459048, + "vtable_address": 6461459032, "methods": [ 6447508592, - 6455181760, + 6455181776, 6447497120, 6447499072, 6447499568, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447499616, 6447502096, 6447500272, 6443766512, 6447501472, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447502112, 6447502288, 6447502256, - 6455179744, + 6455179760, 6447506464 ], "bases": [ @@ -185497,26 +185499,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode", - "vtable_address": 6461464568, + "vtable_address": 6461464552, "methods": [ 6447567488, - 6455181760, + 6455181776, 6447549088, 6447550464, 6447550576, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447550592, 6447552624, 6447550832, 6443766512, 6447552176, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447553264, 6447555232, 6447554832, - 6455179744, + 6455179760, 6447566368 ], "bases": [ @@ -185560,30 +185562,30 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientRequestValidation", - "vtable_address": 6461466328, + "vtable_address": 6461466312, "methods": [ 6447589808, - 6455181760, + 6455181776, 6447580432, 6447581328, 6447581392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447581408, 6447582144, 6447581488, 6443766512, 6447581984, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447582352, 6447583328, 6447583312, - 6455179744, + 6455179760, 6447585376, - 6455179744, + 6455179760, 6447585616, - 6455179744, + 6455179760, 6447585728 ], "bases": [ @@ -185627,28 +185629,28 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTextMsg", - "vtable_address": 6461334240, + "vtable_address": 6461334224, "methods": [ 6447116832, - 6455181760, + 6455181776, 6447108960, 6447112832, 6447112976, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447112992, 6447114816, 6447113920, 6443766512, 6447114496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447114992, 6447115248, 6447115232, - 6455179744, + 6455179760, 6447115488, - 6455179744, + 6455179760, 6447116608 ], "bases": [ @@ -185692,26 +185694,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ClientTournamentInfo", - "vtable_address": 6461368872, + "vtable_address": 6461368856, "methods": [ 6447208800, - 6455181760, + 6455181776, 6447197504, 6447197808, 6447197872, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447197888, 6447199504, 6447198064, 6443766512, 6447198992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447199536, 6447199968, 6447199952, - 6455179744, + 6455179760, 6447207312 ], "bases": [ @@ -185755,22 +185757,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_GC2ServerReservationUpdate", - "vtable_address": 6461384320, + "vtable_address": 6461384304, "methods": [ 6447309312, - 6455181760, + 6455181776, 6447295152, 6447295264, 6447295360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447295376, 6447296336, 6447295472, 6443766512, 6447296064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447296432, 6447297216, 6447297200 @@ -185816,26 +185818,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_GCToClientChat", - "vtable_address": 6461479320, + "vtable_address": 6461479304, "methods": [ 6447698864, - 6455181760, + 6455181776, 6447686960, 6447687360, 6447687440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447687456, 6447688720, 6447687568, 6443766512, 6447688048, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447691840, 6447693808, 6447693776, - 6455179744, + 6455179760, 6447699024 ], "bases": [ @@ -185879,22 +185881,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Request", - "vtable_address": 6461429928, + "vtable_address": 6461429912, "methods": [ 6447369152, - 6455181760, + 6455181776, 6447364448, 6447365728, 6447366160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447366176, 6447366816, 6447366288, 6443766512, 6447366704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447366928, 6447367360, 6447367344 @@ -185940,22 +185942,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_GetEventFavorites_Response", - "vtable_address": 6461434408, + "vtable_address": 6461434392, "methods": [ 6447397888, - 6455181760, + 6455181776, 6447380400, 6447382832, 6447383008, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447383856, 6447385248, 6447384512, 6443766512, 6447385040, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447385584, 6447387904, 6447387440 @@ -186001,22 +186003,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardRequest", - "vtable_address": 6461334752, + "vtable_address": 6461334736, "methods": [ 6447121008, - 6455181760, + 6455181776, 6447120768, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447120800, 6447120784 @@ -186076,22 +186078,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse", - "vtable_address": 6461350744, + "vtable_address": 6461350728, "methods": [ 6447158032, - 6455181760, + 6455181776, 6447136416, 6447136656, 6447136816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447136912, 6447138656, 6447137296, 6443766512, 6447138112, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447138960, 6447140032, 6447140016 @@ -186137,26 +186139,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry", - "vtable_address": 6461347032, + "vtable_address": 6461347016, "methods": [ 6447132848, - 6455181760, + 6455181776, 6447125488, 6447127568, 6447127616, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447127760, 6447129632, 6447128464, 6443766512, 6447129360, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447129744, 6447129872, 6447129792, - 6455179744, + 6455179760, 6447131456 ], "bases": [ @@ -186200,22 +186202,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRewardDropsNotification", - "vtable_address": 6461375320, + "vtable_address": 6461375304, "methods": [ 6447228192, - 6455181760, + 6455181776, 6447222272, 6447226224, 6447226304, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447226336, 6447226912, 6447226416, 6443766512, 6447226800, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447227328, 6447227600, 6447227584 @@ -186261,22 +186263,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchEndRunRewardDrops", - "vtable_address": 6461349528, + "vtable_address": 6461349512, "methods": [ 6447143328, - 6455181760, + 6455181776, 6447133776, 6447134960, 6447135232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447135248, 6447136064, 6447135408, 6443766512, 6447135888, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447136160, 6447136192, 6447136176 @@ -186322,22 +186324,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchList", - "vtable_address": 6461470760, + "vtable_address": 6461470744, "methods": [ 6447628624, - 6455181760, + 6455181776, 6447602752, 6447604480, 6447604656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447604672, 6447606944, 6447605376, 6443766512, 6447606400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447607696, 6447607744, 6447607728 @@ -186383,26 +186385,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames", - "vtable_address": 6461383648, + "vtable_address": 6461383632, "methods": [ 6447295296, - 6455181760, + 6455181776, 6447292912, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447293280, 6447293248, - 6455179744, + 6455179760, 6447293408 ], "bases": [ @@ -186460,22 +186462,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestFullGameInfo", - "vtable_address": 6461429784, + "vtable_address": 6461429768, "methods": [ 6447369008, - 6455181760, + 6455181776, 6447355632, 6447356912, 6447357312, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447357328, 6447360736, 6447358832, 6443766512, 6447360288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447363744, 6447365664, 6447365600 @@ -186521,26 +186523,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser", - "vtable_address": 6461385424, + "vtable_address": 6461385408, "methods": [ 6447315744, - 6455181760, + 6455181776, 6447310544, 6447310704, 6447310736, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447310752, 6447311760, 6447311120, 6443766512, 6447311584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447311920, 6447313296, 6447313088, - 6455179744, + 6455179760, 6447314992 ], "bases": [ @@ -186584,26 +186586,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestRecentUserGames", - "vtable_address": 6461387040, + "vtable_address": 6461387024, "methods": [ 6447334096, - 6455181760, + 6455181776, 6447328208, 6447328512, 6447328544, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447328560, 6447329168, 6447328608, 6443766512, 6447328992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447329200, 6447329648, 6447329632, - 6455179744, + 6455179760, 6447332752 ], "bases": [ @@ -186647,26 +186649,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListRequestTournamentGames", - "vtable_address": 6461391816, + "vtable_address": 6461391800, "methods": [ 6447347344, - 6455181760, + 6455181776, 6447338640, 6447339760, 6447339904, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447339936, 6447341232, 6447340384, 6443766512, 6447341056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447341408, 6447342976, 6447342960, - 6455179744, + 6455179760, 6447343440 ], "bases": [ @@ -186710,22 +186712,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt", - "vtable_address": 6461473248, + "vtable_address": 6461473232, "methods": [ 6447645568, - 6455181760, + 6455181776, 6447633920, 6447635120, 6447635264, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447635296, 6447636832, 6447635520, 6443766512, 6447636480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447636928, 6447636976, 6447636960 @@ -186771,22 +186773,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2GCHello", - "vtable_address": 6461332528, + "vtable_address": 6461332512, "methods": [ 6447093744, - 6455181760, + 6455181776, 6447088032, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447093104, 6447093088 @@ -186846,22 +186848,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingClient2ServerPing", - "vtable_address": 6461454728, + "vtable_address": 6461454712, "methods": [ 6447446624, - 6455181760, + 6455181776, 6447385824, 6447387968, 6447388720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447389120, 6447392000, 6447390192, 6443766512, 6447391312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447392112, 6447392464, 6447392448 @@ -186907,22 +186909,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon", - "vtable_address": 6461367912, + "vtable_address": 6461367896, "methods": [ 6447197520, - 6455181760, + 6455181776, 6447188256, 6447189728, 6447190752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447190768, 6447192496, 6447191408, 6443766512, 6447192096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447192832, 6447194224, 6447193888 @@ -186968,22 +186970,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientHello", - "vtable_address": 6461349208, + "vtable_address": 6461349192, "methods": [ 6447136832, - 6455181760, + 6455181776, 6447099120, 6447100560, 6447101600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447101616, 6447107104, 6447103168, 6443766512, 6447105568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447108064, 6447112912, 6447111696 @@ -187029,22 +187031,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve", - "vtable_address": 6461489504, + "vtable_address": 6461489488, "methods": [ 6447785520, - 6455181760, + 6455181776, 6447776160, 6447776688, 6447776896, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447776912, 6447779424, 6447777392, 6443766512, 6447778704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447780176, 6447781376, 6447781360 @@ -187090,26 +187092,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats", - "vtable_address": 6461462200, + "vtable_address": 6461462184, "methods": [ 6447541888, - 6455181760, + 6455181776, 6447524608, 6447525120, 6447525168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447525200, 6447527776, 6447525552, 6443766512, 6447526496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447529136, 6447530160, 6447530144, - 6455179744, + 6455179760, 6447540816 ], "bases": [ @@ -187153,22 +187155,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate", - "vtable_address": 6461458904, + "vtable_address": 6461458888, "methods": [ 6447508784, - 6455181760, + 6455181776, 6447453584, 6447456560, 6447457296, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447457328, 6447464896, 6447458992, 6443766512, 6447463072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447466752, 6447471008, 6447470960 @@ -187214,22 +187216,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note", - "vtable_address": 6461430504, + "vtable_address": 6461430488, "methods": [ 6447369664, - 6455181760, + 6455181776, 6447361792, 6447364464, 6447364496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447364736, 6447366128, 6447364976, 6443766512, 6447365760, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447366688, 6447366960, 6447366944 @@ -187275,26 +187277,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm", - "vtable_address": 6461382416, + "vtable_address": 6461382400, "methods": [ 6447287488, - 6455181760, + 6455181776, 6447276208, 6447277488, 6447277536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447278656, 6447281088, 6447279648, 6443766512, 6447280624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447281696, 6447281824, 6447281808, - 6455179744, + 6455179760, 6447286480 ], "bases": [ @@ -187338,28 +187340,28 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve", - "vtable_address": 6461483304, + "vtable_address": 6461483288, "methods": [ 6447738384, - 6455181760, + 6455181776, 6447650208, 6447651584, 6447652256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447652352, 6447658736, 6447653808, 6443766512, 6447656592, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447658832, 6447659344, 6447659200, - 6455179744, + 6455179760, 6447733056, - 6455179744, + 6455179760, 6447735744 ], "bases": [ @@ -187403,22 +187405,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate", - "vtable_address": 6461375032, + "vtable_address": 6461375016, "methods": [ 6447227888, - 6455181760, + 6455181776, 6447220880, 6447221024, 6447221088, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447221104, 6447221728, 6447221168, 6443766512, 6447221616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447221744, 6447222208, 6447221776 @@ -187464,26 +187466,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerReservationResponse", - "vtable_address": 6461487936, + "vtable_address": 6461487920, "methods": [ 6447773840, - 6455181760, + 6455181776, 6447742336, 6447743360, 6447744208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447744224, 6447752096, 6447746544, 6443766512, 6447750368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447752272, 6447752400, 6447752384, - 6455179744, + 6455179760, 6447771648 ], "bases": [ @@ -187527,26 +187529,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats", - "vtable_address": 6461331824, + "vtable_address": 6461331808, "methods": [ 6447079088, - 6455181760, + 6455181776, 6447811728, 6447812800, 6447813232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447813248, 6447823408, 6447814848, 6443766512, 6447819584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447823424, 6447823600, 6447823584, - 6455179744, + 6455179760, 6447078096 ], "bases": [ @@ -187590,22 +187592,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo", - "vtable_address": 6461494472, + "vtable_address": 6461494456, "methods": [ 6447799632, - 6455181760, + 6455181776, 6447790976, 6447791056, 6447791088, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447791104, 6447795856, 6447792576, 6443766512, 6447793936, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447797472, 6447799248, 6447799232 @@ -187651,26 +187653,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStart", - "vtable_address": 6461387344, + "vtable_address": 6461387328, "methods": [ 6447334544, - 6455181760, + 6455181776, 6447315888, 6447316384, 6447316544, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447316560, 6447319552, 6447317216, 6443766512, 6447318448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447319872, 6447322096, 6447321408, - 6455179744, + 6455179760, 6447334496 ], "bases": [ @@ -187714,22 +187716,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_MatchmakingStop", - "vtable_address": 6461392280, + "vtable_address": 6461392264, "methods": [ 6447350560, - 6455181760, + 6455181776, 6447341248, 6447341632, 6447341664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447342192, 6447343216, 6447342560, 6443766512, 6447343040, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447343248, 6447343376, 6447343360 @@ -187775,28 +187777,28 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Invite", - "vtable_address": 6461349352, + "vtable_address": 6461349336, "methods": [ 6447140128, - 6455181760, + 6455181776, 6447133392, 6447133632, 6447133664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447133680, 6447134560, 6447133792, 6443766512, 6447134288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447135392, 6447136096, 6447136080, - 6455179744, + 6455179760, 6447136432, - 6455179744, + 6455179760, 6447138672 ], "bases": [ @@ -187840,22 +187842,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Register", - "vtable_address": 6461505328, + "vtable_address": 6461505312, "methods": [ 6447844672, - 6455181760, + 6455181776, 6447829632, 6447829888, 6447829936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447829952, 6447833872, 6447830576, 6443766512, 6447832928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447835616, 6447838960, 6447838816 @@ -187901,22 +187903,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_Search", - "vtable_address": 6461331520, + "vtable_address": 6461331504, "methods": [ 6447077936, - 6455181760, + 6455181776, 6447847984, 6447849632, 6447850384, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447850432, 6447853072, 6447850768, 6443766512, 6447852160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447853088, 6447854096, 6447854064 @@ -187962,26 +187964,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults", - "vtable_address": 6461346712, + "vtable_address": 6461346696, "methods": [ 6447129936, - 6455181760, + 6455181776, 6447115472, 6447115664, 6447115824, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447115840, 6447116560, 6447116000, 6443766512, 6447116416, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447116592, 6447116768, 6447116752, - 6455179744, + 6455179760, 6447127456 ], "bases": [ @@ -188025,27 +188027,27 @@ }, { "type_name": "CMsgGCCStrike15_v2_Party_SearchResults_Entry", - "vtable_address": 6461333440, + "vtable_address": 6461333424, "methods": [ 6447103008, - 6455181760, + 6455181776, 6447085952, 6447086208, 6447086880, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447087168, 6447091728, 6447088048, 6443766512, 6447090976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447093072, 6447093216, 6447093184, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -188088,26 +188090,26 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment", - "vtable_address": 6461505616, + "vtable_address": 6461505600, "methods": [ 6447846336, - 6455181760, + 6455181776, 6447832176, 6447835632, 6447835728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447835744, 6447838784, 6447836160, 6443766512, 6447837696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447839600, 6447840096, 6447840080, - 6455179744, + 6455179760, 6447845040 ], "bases": [ @@ -188151,22 +188153,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus", - "vtable_address": 6461331376, + "vtable_address": 6461331360, "methods": [ 6447075056, - 6455181760, + 6455181776, 6447854784, 6447854960, 6447855008, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447855024, 6447856048, 6447855120, 6443766512, 6447855760, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447856064, 6447856112, 6447856096 @@ -188212,22 +188214,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate", - "vtable_address": 6461503888, + "vtable_address": 6461503872, "methods": [ 6447825232, - 6455181760, + 6455181776, 6447800960, 6447802320, 6447802784, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447803520, 6447808672, 6447805088, 6443766512, 6447807808, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447810144, 6447811424, 6447811392 @@ -188273,22 +188275,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_PlayersProfile", - "vtable_address": 6461481688, + "vtable_address": 6461481672, "methods": [ 6447716848, - 6455181760, + 6455181776, 6447700544, 6447700896, 6447701024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447701040, 6447702128, 6447701216, 6443766512, 6447701888, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447702144, 6447702192, 6447702176 @@ -188334,34 +188336,34 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions", - "vtable_address": 6461479768, + "vtable_address": 6461479752, "methods": [ 6447701728, - 6455181760, + 6455181776, 6447677952, 6447678576, 6447678880, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447678896, 6447680336, 6447679312, 6443766512, 6447680096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447680544, 6447682368, 6447682352, - 6455179744, + 6455179760, 6447700704, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6447702288, - 6455179744, + 6455179760, 6447702576, - 6455179744, + 6455179760, 6447702624 ], "bases": [ @@ -188405,22 +188407,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick", - "vtable_address": 6461475184, + "vtable_address": 6461475168, "methods": [ 6447669840, - 6455181760, + 6455181776, 6447661520, 6447661664, 6447661712, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447661728, 6447664384, 6447662096, 6443766512, 6447663056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447665008, 6447665056, 6447665040 @@ -188466,22 +188468,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary", - "vtable_address": 6461493848, + "vtable_address": 6461493832, "methods": [ 6447797952, - 6455181760, + 6455181776, 6447771632, 6447771936, 6447772208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447772224, 6447773808, 6447772672, 6443766512, 6447773408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447773824, 6447774096, 6447774080 @@ -188527,22 +188529,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap", - "vtable_address": 6461485384, + "vtable_address": 6461485368, "methods": [ 6447764736, - 6455181760, + 6455181776, 6447742320, 6447742656, 6447743344, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447743744, 6447750352, 6447744976, 6443766512, 6447749024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447752256, 6447752320, 6447752304 @@ -188588,22 +188590,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek", - "vtable_address": 6461483160, + "vtable_address": 6461483144, "methods": [ 6447738240, - 6455181760, + 6455181776, 6447727168, 6447727280, 6447727312, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447727328, 6447728832, 6447727632, 6443766512, 6447728448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447730208, 6447731744, 6447731248 @@ -188649,30 +188651,30 @@ }, { "type_name": "CMsgGCCStrike15_v2_Server2GCClientValidate", - "vtable_address": 6461367112, + "vtable_address": 6461367096, "methods": [ 6447193648, - 6455181760, + 6455181776, 6447184528, 6447184592, 6447184624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447184656, 6447185424, 6447184864, 6443766512, 6447185248, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447185664, 6447186864, 6447186832, - 6455179744, + 6455179760, 6447188656, - 6455179744, + 6455179760, 6447189520, - 6455179744, + 6455179760, 6447192512 ], "bases": [ @@ -188716,22 +188718,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerNotificationForUserPenalty", - "vtable_address": 6461377456, + "vtable_address": 6461377440, "methods": [ 6447249648, - 6455181760, + 6455181776, 6447238960, 6447241728, 6447242368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447242784, 6447244448, 6447243328, 6443766512, 6447244032, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447244592, 6447245648, 6447245632 @@ -188777,22 +188779,22 @@ }, { "type_name": "CMsgGCCStrike15_v2_ServerVarValueNotificationInfo", - "vtable_address": 6461334096, + "vtable_address": 6461334080, "methods": [ 6447115312, - 6455181760, + 6455181776, 6447096256, 6447097088, 6447097168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447097184, 6447098928, 6447097408, 6443766512, 6447098368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447099024, 6447099056, 6447099040 @@ -188838,28 +188840,28 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetEventFavorite", - "vtable_address": 6461392424, + "vtable_address": 6461392408, "methods": [ 6447351200, - 6455181760, + 6455181776, 6447341008, 6447341360, 6447341424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447341456, 6447342944, 6447341680, 6443766512, 6447342320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447343232, 6447343296, 6447343264, - 6455179744, + 6455179760, 6447347648, - 6455179744, + 6455179760, 6447350512 ], "bases": [ @@ -188903,28 +188905,28 @@ }, { "type_name": "CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName", - "vtable_address": 6461473920, + "vtable_address": 6461473904, "methods": [ 6447661168, - 6455181760, + 6455181776, 6447643840, 6447644688, 6447644928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447645312, 6447646784, 6447645728, 6443766512, 6447646672, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447647200, 6447649200, 6447649168, - 6455179744, + 6455179760, 6447659040, - 6455179744, + 6455179760, 6447659296 ], "bases": [ @@ -188968,30 +188970,30 @@ }, { "type_name": "CMsgGCCStrike15_v2_WatchInfoUsers", - "vtable_address": 6461475472, + "vtable_address": 6461475456, "methods": [ 6447671376, - 6455181760, + 6455181776, 6447638368, 6447638800, 6447639232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447639440, 6447643040, 6447640400, 6443766512, 6447642368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447643536, 6447643632, 6447643600, - 6455179744, + 6455179760, 6447668944, - 6455179744, + 6455179760, 6447670016, - 6455179744, + 6455179760, 6447671216 ], "bases": [ @@ -189035,22 +189037,22 @@ }, { "type_name": "CMsgGCClientDisplayNotification", - "vtable_address": 6461480152, + "vtable_address": 6461480136, "methods": [ 6447708592, - 6455181760, + 6455181776, 6447693872, 6447695184, 6447695312, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447695552, 6447697104, 6447696032, 6443766512, 6447696672, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447697968, 6447698320, 6447698160 @@ -189096,42 +189098,42 @@ }, { "type_name": "CMsgGCClientVersionUpdated", - "vtable_address": 6461392744, + "vtable_address": 6461392728, "methods": [ 6447355872, - 6455181760, + 6455181776, 6447348704, 6447350704, 6447350736, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447350768, 6447351520, 6447350816, 6443766512, 6447351344, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447351616, 6447351648, 6447351632, - 6455179744, + 6455179760, 6447351904, - 6455179744, + 6455179760, 6447352048, - 6455179744, + 6455179760, 6447352528, - 6455179744, + 6455179760, 6447356064, - 6455179744, + 6455179760, 6447356112, - 6455179744, + 6455179760, 6447356736, - 6455179744, + 6455179760, 6447357840, - 6455179744, + 6455179760, 6447361872, - 6455179744, + 6455179760, 6447364352 ], "bases": [ @@ -189175,28 +189177,28 @@ }, { "type_name": "CMsgGCCollectItem", - "vtable_address": 6461376560, + "vtable_address": 6461376544, "methods": [ 6447248576, - 6455181760, + 6455181776, 6447234272, 6447236016, 6447236048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447237200, 6447238672, 6447237776, 6443766512, 6447238368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447238768, 6447240944, 6447240512, - 6455179744, + 6455179760, 6447246944, - 6455179744, + 6455179760, 6447247776 ], "bases": [ @@ -189240,22 +189242,22 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemFreeReward", - "vtable_address": 6461458616, + "vtable_address": 6461458600, "methods": [ 6447506128, - 6455181760, + 6455181776, 6447489424, 6447491568, 6447491632, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447491648, 6447497040, 6447493968, 6443766512, 6447496608, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447497088, 6447498384, 6447497952 @@ -189301,26 +189303,26 @@ }, { "type_name": "CMsgGCCstrike15_v2_ClientRedeemMissionReward", - "vtable_address": 6461456984, + "vtable_address": 6461456968, "methods": [ 6447481232, - 6455181760, + 6455181776, 6447458976, 6447466192, 6447466368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447466560, 6447470240, 6447467696, 6443766512, 6447469664, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447472016, 6447472976, 6447472960, - 6455179744, + 6455179760, 6447477200 ], "bases": [ @@ -189364,26 +189366,26 @@ }, { "type_name": "CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded", - "vtable_address": 6461461128, + "vtable_address": 6461461112, "methods": [ 6447530928, - 6455181760, + 6455181776, 6447511424, 6447512064, 6447512720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447512736, 6447515856, 6447513520, 6443766512, 6447514832, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447516032, 6447517248, 6447517216, - 6455179744, + 6455179760, 6447527808 ], "bases": [ @@ -189427,22 +189429,22 @@ }, { "type_name": "CMsgGCDev_SchemaReservationRequest", - "vtable_address": 6461476784, + "vtable_address": 6461476768, "methods": [ 6447684128, - 6455181760, + 6455181776, 6447672320, 6447673296, 6447673408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447673424, 6447674720, 6447673664, 6443766512, 6447674352, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447675232, 6447676192, 6447676176 @@ -189488,22 +189490,22 @@ }, { "type_name": "CMsgGCError", - "vtable_address": 6461440304, + "vtable_address": 6461440288, "methods": [ 6447416432, - 6455181760, + 6455181776, 6447406240, 6447411552, 6447412128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447412160, 6447413072, 6447412512, 6443766512, 6447412960, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447413360, 6447413552, 6447413536 @@ -189549,22 +189551,22 @@ }, { "type_name": "CMsgGCGiftedItems", - "vtable_address": 6461474560, + "vtable_address": 6461474544, "methods": [ 6447665488, - 6455181760, + 6455181776, 6447646096, 6447647104, 6447647184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447647216, 6447649104, 6447647456, 6443766512, 6447648400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447650224, 6447652288, 6447652240 @@ -189610,26 +189612,26 @@ }, { "type_name": "CMsgGCHAccountPhoneNumberChange", - "vtable_address": 6461590968, + "vtable_address": 6461590952, "methods": [ 6448390688, - 6455181760, + 6455181776, 6448384752, 6448385776, 6448385824, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448385840, 6448387200, 6448386000, 6443766512, 6448386784, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448387360, 6448387488, 6448387392, - 6455179744, + 6455179760, 6448390848 ], "bases": [ @@ -189673,28 +189675,28 @@ }, { "type_name": "CMsgGCHInviteUserToLobby", - "vtable_address": 6461592232, + "vtable_address": 6461592216, "methods": [ 6448400272, - 6455181760, + 6455181776, 6448394640, 6448395584, 6448395808, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448395840, 6448396752, 6448395936, 6443766512, 6448396448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448396768, 6448397024, 6448397008, - 6455179744, + 6455179760, 6448398400, - 6455179744, + 6455179760, 6448398496 ], "bases": [ @@ -189738,28 +189740,28 @@ }, { "type_name": "CMsgGCHRecurringSubscriptionStatusChange", - "vtable_address": 6461603904, + "vtable_address": 6461603888, "methods": [ 6448419872, - 6455181760, + 6455181776, 6448406000, 6448406448, 6448406496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448406512, 6448407504, 6448406624, 6443766512, 6448407200, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448407536, 6448410832, - 6448409152, - 6455179744, + 6448410816, + 6455179760, 6448413728, - 6455179744, + 6455179760, 6448415776 ], "bases": [ @@ -189803,30 +189805,30 @@ }, { "type_name": "CMsgGCHVacVerificationChange", - "vtable_address": 6461589368, + "vtable_address": 6461589352, "methods": [ 6448374288, - 6455181760, + 6455181776, 6448358576, 6448358976, 6448359104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448359168, 6448360496, 6448359328, 6443766512, 6448360224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448360688, 6448360912, 6448360896, - 6455179744, - 6448362304, - 6455179744, - 6448363552, - 6455179744, + 6455179760, + 6448362288, + 6455179760, + 6448363936, + 6455179760, 6448364448 ], "bases": [ @@ -189870,22 +189872,22 @@ }, { "type_name": "CMsgGCIncrementKillCountResponse", - "vtable_address": 6461483480, + "vtable_address": 6461483464, "methods": [ 6447739248, - 6455181760, + 6455181776, 6447728432, 6447730320, 6447730352, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447730368, 6447731728, 6447730544, 6443766512, 6447731264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447731888, 6447732064, 6447732048 @@ -189931,22 +189933,22 @@ }, { "type_name": "CMsgGCItemCustomizationNotification", - "vtable_address": 6461482856, + "vtable_address": 6461482840, "methods": [ 6447732128, - 6455181760, + 6455181776, 6447718608, 6447718960, 6447719024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447719040, 6447720512, 6447719216, 6443766512, 6447720032, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447720720, 6447722576, 6447722544 @@ -189992,28 +189994,28 @@ }, { "type_name": "CMsgGCItemPreviewItemBoughtNotification", - "vtable_address": 6461494136, + "vtable_address": 6461494120, "methods": [ 6447798320, - 6455181760, + 6455181776, 6447789792, 6447790000, 6447790032, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447790048, 6447790656, 6447790096, 6443766512, 6447790480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447790672, 6447790704, 6447790688, - 6455179744, + 6455179760, 6447791008, - 6455179744, + 6455179760, 6447791152 ], "bases": [ @@ -190057,28 +190059,28 @@ }, { "type_name": "CMsgGCMultiplexMessage", - "vtable_address": 6461580168, + "vtable_address": 6461580152, "methods": [ 6448262640, - 6455181760, + 6455181776, 6448257376, 6448258128, 6448258240, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448258256, 6448259504, 6448258432, 6443766512, 6448259152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448259584, 6448260048, 6448259776, - 6455179744, + 6455179760, 6448261904, - 6455179744, + 6455179760, 6448262832 ], "bases": [ @@ -190122,22 +190124,22 @@ }, { "type_name": "CMsgGCMultiplexMessage_Response", - "vtable_address": 6461581288, + "vtable_address": 6461581272, "methods": [ 6448276416, - 6455181760, + 6455181776, 6448267792, 6448268592, 6448268624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448268640, 6448269264, 6448268688, 6443766512, 6448269088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448269424, 6448269456, 6448269440 @@ -190183,22 +190185,22 @@ }, { "type_name": "CMsgGCNameItemNotification", - "vtable_address": 6461476640, + "vtable_address": 6461476624, "methods": [ 6447683184, - 6455181760, + 6455181776, 6447673648, 6447674976, 6447675216, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447675248, 6447676160, 6447675376, 6443766512, 6447675888, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447676256, 6447676448, 6447676272 @@ -190244,22 +190246,22 @@ }, { "type_name": "CMsgGCReportAbuse", - "vtable_address": 6461472912, + "vtable_address": 6461472896, "methods": [ 6447639952, - 6455181760, + 6455181776, 6447628864, 6447629280, 6447629424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447629440, 6447632080, 6447630144, 6443766512, 6447631488, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447633024, 6447633152, 6447633136 @@ -190305,28 +190307,28 @@ }, { "type_name": "CMsgGCReportAbuseResponse", - "vtable_address": 6461474704, + "vtable_address": 6461474688, "methods": [ 6447666880, - 6455181760, + 6455181776, 6447658848, 6447659216, 6447659408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447659456, 6447660816, 6447659648, 6443766512, 6447660544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447661328, 6447661376, 6447661360, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6447665648 ], "bases": [ @@ -190370,26 +190372,26 @@ }, { "type_name": "CMsgGCRequestAnnouncements", - "vtable_address": 6461333760, + "vtable_address": 6461333744, "methods": [ 6447114928, - 6455181760, + 6455181776, 6447105552, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447110432, 6447110192, - 6455179744, + 6455179760, 6447107136 ], "bases": [ @@ -190447,30 +190449,30 @@ }, { "type_name": "CMsgGCRequestAnnouncementsResponse", - "vtable_address": 6461346520, + "vtable_address": 6461346504, "methods": [ 6447125008, - 6455181760, + 6455181776, 6447117376, 6447117984, 6447118192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447118224, 6447119840, 6447118576, 6443766512, 6447119616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447120336, 6447120640, 6447120608, - 6455179744, + 6455179760, 6447122688, - 6455179744, + 6455179760, 6447125280, - 6455179744, + 6455179760, 6447127360 ], "bases": [ @@ -190514,22 +190516,22 @@ }, { "type_name": "CMsgGCRequestSessionIP", - "vtable_address": 6461590376, + "vtable_address": 6461590360, "methods": [ 6448388720, - 6455181760, + 6455181776, 6448383712, 6448384672, 6448384704, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448384720, 6448385632, 6448385200, 6443766512, 6448385520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448385984, 6448387296, 6448387280 @@ -190575,28 +190577,28 @@ }, { "type_name": "CMsgGCRequestSessionIPResponse", - "vtable_address": 6461591608, + "vtable_address": 6461591592, "methods": [ 6448396784, - 6455181760, + 6455181776, 6448391424, 6448391504, 6448391536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448391568, 6448392096, 6448391664, 6443766512, 6448391984, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448392256, 6448392320, 6448392304, - 6455179744, + 6455179760, 6448394656, - 6455179744, + 6455179760, 6448395472 ], "bases": [ @@ -190640,36 +190642,36 @@ }, { "type_name": "CMsgGCServerVersionUpdated", - "vtable_address": 6461387936, + "vtable_address": 6461387920, "methods": [ 6447338816, - 6455181760, + 6455181776, 6447334320, 6447334736, 6447334768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447334784, 6447335392, 6447334832, 6443766512, 6447335216, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447335408, 6447335440, 6447335424, - 6455179744, + 6455179760, 6447335808, - 6455179744, + 6455179760, 6447335936, - 6455179744, + 6455179760, 6447337184, - 6455179744, + 6455179760, 6447338656, - 6455179744, + 6455179760, 6447339072, - 6455179744, + 6455179760, 6447339664 ], "bases": [ @@ -190713,30 +190715,30 @@ }, { "type_name": "CMsgGCShowItemsPickedUp", - "vtable_address": 6461481976, + "vtable_address": 6461481960, "methods": [ 6447718624, - 6455181760, + 6455181776, 6447712656, 6447713328, 6447713360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447713376, 6447714016, 6447713424, 6443766512, 6447713904, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447714576, 6447715472, 6447715456, - 6455179744, + 6455179760, 6447715984, - 6455179744, + 6455179760, 6447717408, - 6455179744, + 6455179760, 6447718864 ], "bases": [ @@ -190780,26 +190782,26 @@ }, { "type_name": "CMsgGCStorePurchaseCancel", - "vtable_address": 6461503424, + "vtable_address": 6461503408, "methods": [ 6447823440, - 6455181760, + 6455181776, 6447801072, 6447803808, 6447804528, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447804544, 6447809648, 6447807424, 6443766512, 6447809472, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447810176, 6447811568, 6447811552, - 6455179744, + 6455179760, 6447811744 ], "bases": [ @@ -190843,32 +190845,32 @@ }, { "type_name": "CMsgGCStorePurchaseCancelResponse", - "vtable_address": 6461504496, + "vtable_address": 6461504480, "methods": [ 6447834704, - 6455181760, + 6455181776, 6447826720, 6447828624, 6447828656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447828672, 6447829296, 6447828736, 6443766512, 6447829120, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447829392, 6447829424, 6447829408, - 6455179744, + 6455179760, 6447829664, - 6455179744, + 6455179760, 6447830272, - 6455179744, + 6455179760, 6447835312, - 6455179744, + 6455179760, 6447837552 ], "bases": [ @@ -190912,22 +190914,22 @@ }, { "type_name": "CMsgGCStorePurchaseFinalize", - "vtable_address": 6461505472, + "vtable_address": 6461505456, "methods": [ 6447844880, - 6455181760, + 6455181776, 6447841328, 6447843520, 6447843552, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447843568, 6447844192, 6447843632, 6443766512, 6447844016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447844288, 6447844464, 6447844448 @@ -190973,22 +190975,22 @@ }, { "type_name": "CMsgGCStorePurchaseFinalizeResponse", - "vtable_address": 6461331232, + "vtable_address": 6461331216, "methods": [ 6447074880, - 6455181760, + 6455181776, 6447853056, 6447853296, 6447853360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447853376, 6447854560, 6447853488, 6443766512, 6447854160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447854768, 6447854896, 6447854800 @@ -191034,28 +191036,28 @@ }, { "type_name": "CMsgGCStorePurchaseInit", - "vtable_address": 6461461592, + "vtable_address": 6461461576, "methods": [ 6447540304, - 6455181760, + 6455181776, 6447508864, 6447509184, 6447509392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447509408, 6447511136, 6447509888, 6443766512, 6447510752, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447511152, 6447511184, 6447511168, - 6455179744, + 6455179760, 6447532336, - 6455179744, + 6455179760, 6447533088 ], "bases": [ @@ -191099,26 +191101,26 @@ }, { "type_name": "CMsgGCStorePurchaseInitResponse", - "vtable_address": 6461464072, + "vtable_address": 6461464056, "methods": [ 6447561120, - 6455181760, + 6455181776, 6447546064, 6447546848, 6447546960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447546976, 6447548704, 6447547264, 6443766512, 6447548240, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447548816, 6447550096, 6447550064, - 6455179744, + 6455179760, 6447558832 ], "bases": [ @@ -191162,22 +191164,22 @@ }, { "type_name": "CMsgGCToClientSteamDatagramTicket", - "vtable_address": 6461369640, + "vtable_address": 6461369624, "methods": [ 6447214976, - 6455181760, + 6455181776, 6447209184, 6447209296, 6447209360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447209392, 6447209936, 6447209456, 6443766512, 6447209824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447210960, 6447214080, 6447214064 @@ -191223,22 +191225,22 @@ }, { "type_name": "CMsgGCToGCBannedWordListBroadcast", - "vtable_address": 6461354328, + "vtable_address": 6461354312, "methods": [ 6447183680, - 6455181760, + 6455181776, 6447172192, 6447173424, 6447173488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447173936, 6447174528, 6447174032, 6443766512, 6447174416, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447174592, 6447180528, 6447179920 @@ -191284,26 +191286,26 @@ }, { "type_name": "CMsgGCToGCBannedWordListUpdated", - "vtable_address": 6461367464, + "vtable_address": 6461367448, "methods": [ 6447196960, - 6455181760, + 6455181776, 6447187664, 6447188160, 6447188192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447188208, 6447189200, 6447188272, 6443766512, 6447189024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447190976, 6447192768, 6447192656, - 6455179744, + 6455179760, 6447195760 ], "bases": [ @@ -191347,28 +191349,28 @@ }, { "type_name": "CMsgGCToGCBroadcastConsoleCommand", - "vtable_address": 6461386112, + "vtable_address": 6461386096, "methods": [ 6447328224, - 6455181760, + 6455181776, 6447315984, 6447317136, 6447317200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447318384, 6447319856, 6447319184, 6443766512, 6447319744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447319984, 6447323232, 6447322768, - 6455179744, + 6455179760, 6447327328, - 6455179744, + 6455179760, 6447328464 ], "bases": [ @@ -191412,30 +191414,30 @@ }, { "type_name": "CMsgGCToGCDirtyMultipleSDOCache", - "vtable_address": 6461374552, + "vtable_address": 6461374536, "methods": [ 6447227344, - 6455181760, + 6455181776, 6447214784, 6447215312, 6447215408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447215616, 6447218272, 6447216752, 6443766512, 6447217936, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447218336, 6447218544, 6447218400, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6447221792, - 6455179744, + 6455179760, 6447225104 ], "bases": [ @@ -191479,22 +191481,22 @@ }, { "type_name": "CMsgGCToGCDirtySDOCache", - "vtable_address": 6461368728, + "vtable_address": 6461368712, "methods": [ 6447208960, - 6455181760, + 6455181776, 6447200944, 6447201056, 6447201104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447201120, 6447202240, 6447201376, 6443766512, 6447201952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447202416, 6447202464, 6447202448 @@ -191540,22 +191542,22 @@ }, { "type_name": "CMsgGCToGCIsTrustedServer", - "vtable_address": 6461382576, + "vtable_address": 6461382560, "methods": [ 6447287712, - 6455181760, + 6455181776, 6447282144, 6447282224, 6447282336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447282400, 6447283600, 6447282688, 6443766512, 6447283488, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447284720, 6447285904, 6447285888 @@ -191601,28 +191603,28 @@ }, { "type_name": "CMsgGCToGCIsTrustedServerResponse", - "vtable_address": 6461384464, + "vtable_address": 6461384448, "methods": [ 6447310064, - 6455181760, + 6455181776, 6447295968, 6447296400, 6447296448, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447296608, 6447297168, 6447296640, 6443766512, 6447297056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447297424, 6447299264, 6447299056, - 6455179744, + 6455179760, 6447305600, - 6455179744, + 6455179760, 6447306976 ], "bases": [ @@ -191666,26 +191668,26 @@ }, { "type_name": "CMsgGCToGCRequestPassportItemGrant", - "vtable_address": 6461434552, + "vtable_address": 6461434536, "methods": [ 6447398128, - 6455181760, + 6455181776, 6447385232, 6447385904, 6447385936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447386368, 6447388704, 6447386848, 6443766512, 6447388368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447391296, 6447392144, 6447392128, - 6455179744, + 6455179760, 6447392928 ], "bases": [ @@ -191729,22 +191731,22 @@ }, { "type_name": "CMsgGCToGCUpdateSQLKeyValue", - "vtable_address": 6461379504, + "vtable_address": 6461379488, "methods": [ 6447265456, - 6455181760, + 6455181776, 6447263280, 6447263872, 6447263936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447263952, 6447264496, 6447264016, 6443766512, 6447264384, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447264848, 6447264880, 6447264864 @@ -191790,22 +191792,22 @@ }, { "type_name": "CMsgGCToGCWebAPIAccountChanged", - "vtable_address": 6461430216, + "vtable_address": 6461430200, "methods": [ 6447369456, - 6455181760, + 6455181776, 6447368720, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447368944, 6447368928 @@ -191865,22 +191867,22 @@ }, { "type_name": "CMsgGCUpdateSessionIP", - "vtable_address": 6461589224, + "vtable_address": 6461589208, "methods": [ 6448363408, - 6455181760, + 6455181776, 6448358784, 6448359120, 6448359264, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448359280, 6448360672, 6448359872, 6443766512, 6448360512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448360704, 6448360992, 6448360976 @@ -191926,22 +191928,22 @@ }, { "type_name": "CMsgGCUserTrackTimePlayedConsecutively", - "vtable_address": 6461480776, + "vtable_address": 6461480760, "methods": [ 6447712384, - 6455181760, + 6455181776, 6447708496, 6447709040, 6447709072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447709456, 6447710352, 6447709792, 6443766512, 6447710176, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447710784, 6447711904, 6447711888 @@ -191987,30 +191989,30 @@ }, { "type_name": "CMsgGC_GlobalGame_Play", - "vtable_address": 6461467720, + "vtable_address": 6461467704, "methods": [ 6447594080, - 6455181760, + 6455181776, 6447588304, 6447589376, 6447589408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447589424, 6447591104, 6447590032, 6443766512, 6447590704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447591584, 6447591856, 6447591840, - 6455179744, + 6455179760, 6447594224, - 6455179744, + 6455179760, 6447596176, - 6455179744, + 6455179760, 6447597008 ], "bases": [ @@ -192054,22 +192056,22 @@ }, { "type_name": "CMsgGC_GlobalGame_Subscribe", - "vtable_address": 6461463928, + "vtable_address": 6461463912, "methods": [ 6447560816, - 6455181760, + 6455181776, 6447552752, 6447554144, 6447554752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447554768, 6447555488, 6447554848, 6443766512, 6447555312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447556288, 6447557328, 6447557312 @@ -192115,22 +192117,22 @@ }, { "type_name": "CMsgGC_GlobalGame_Unsubscribe", - "vtable_address": 6461465688, + "vtable_address": 6461465672, "methods": [ 6447579472, - 6455181760, + 6455181776, 6447568096, 6447572032, 6447573696, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447574032, 6447575712, 6447574880, 6443766512, 6447575536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447576144, 6447577360, 6447577280 @@ -192176,22 +192178,22 @@ }, { "type_name": "CMsgGC_ServerQuestUpdateData", - "vtable_address": 6461379216, + "vtable_address": 6461379200, "methods": [ 6447265104, - 6455181760, + 6455181776, 6447244496, 6447245104, 6447245296, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447245312, 6447246928, 6447245712, 6443766512, 6447246512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447247248, 6447247936, 6447247920 @@ -192237,26 +192239,26 @@ }, { "type_name": "CMsgGameServerInfo", - "vtable_address": 6461443544, + "vtable_address": 6461443528, "methods": [ 6447429792, - 6455181760, + 6455181776, 6447405088, 6447407088, 6447407216, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447407232, 6447411616, 6447408384, 6443766512, 6447410288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447412944, 6447413392, 6447413376, - 6455179744, + 6455179760, 6447429616 ], "bases": [ @@ -192300,26 +192302,26 @@ }, { "type_name": "CMsgIPCAddress", - "vtable_address": 6461620688, + "vtable_address": 6461620672, "methods": [ 6448528384, - 6455181760, + 6455181776, 6448524512, 6448524784, 6448524848, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448524896, 6448526128, 6448525376, 6443766512, 6448525904, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448526176, 6448526288, 6448526208, - 6455179744, + 6455179760, 6448526528 ], "bases": [ @@ -192363,26 +192365,26 @@ }, { "type_name": "CMsgIncrementKillCountAttribute", - "vtable_address": 6461332960, + "vtable_address": 6461332944, "methods": [ 6447095664, - 6455181760, + 6455181776, 6447081712, 6447082016, 6447082064, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447082096, 6447083440, 6447082320, 6443766512, 6447082992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447083456, 6447083504, 6447083488, - 6455179744, + 6455179760, 6447093360 ], "bases": [ @@ -192426,34 +192428,34 @@ }, { "type_name": "CMsgInvitationCreated", - "vtable_address": 6461473392, + "vtable_address": 6461473376, "methods": [ 6447646528, - 6455181760, + 6455181776, 6447636944, 6447637120, 6447637152, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447637328, 6447638048, 6447637392, 6443766512, 6447637808, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447638064, 6447638304, 6447638288, - 6455179744, + 6455179760, 6447643856, - 6455179744, + 6455179760, 6447644592, - 6455179744, + 6455179760, 6447644752, - 6455179744, + 6455179760, 6447646976, - 6455179744, + 6455179760, 6447649008 ], "bases": [ @@ -192497,30 +192499,30 @@ }, { "type_name": "CMsgInviteToParty", - "vtable_address": 6461471664, + "vtable_address": 6461471648, "methods": [ 6447631216, - 6455181760, + 6455181776, 6447624432, 6447625600, 6447625632, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447625648, 6447626608, 6447625760, 6443766512, 6447626288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447626704, 6447626736, 6447626720, - 6455179744, + 6455179760, 6447628896, - 6455179744, + 6455179760, 6447629056, - 6455179744, + 6455179760, 6447630048 ], "bases": [ @@ -192564,22 +192566,22 @@ }, { "type_name": "CMsgItemAcknowledged", - "vtable_address": 6461377600, + "vtable_address": 6461377584, "methods": [ 6447249792, - 6455181760, + 6455181776, 6447245616, 6447247088, 6447247152, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447247168, 6447247760, 6447247264, 6443766512, 6447247648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447248000, 6447248736, 6447248720 @@ -192625,22 +192627,22 @@ }, { "type_name": "CMsgItemAcknowledged__DEPRECATED", - "vtable_address": 6461465240, + "vtable_address": 6461465224, "methods": [ 6447578432, - 6455181760, + 6455181776, 6447560976, 6447561312, 6447561424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447561440, 6447563600, 6447561696, 6443766512, 6447562832, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447564336, 6447564720, 6447564704 @@ -192686,28 +192688,28 @@ }, { "type_name": "CMsgKickFromParty", - "vtable_address": 6461476928, + "vtable_address": 6461476912, "methods": [ 6447684768, - 6455181760, + 6455181776, 6447676848, 6447677968, 6447678000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447678016, 6447678864, 6447678048, 6443766512, 6447678752, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447680016, 6447680976, 6447680960, - 6455179744, + 6455179760, 6447682592, - 6455179744, + 6455179760, 6447684928 ], "bases": [ @@ -192751,22 +192753,22 @@ }, { "type_name": "CMsgLANServerAvailable", - "vtable_address": 6461481832, + "vtable_address": 6461481816, "methods": [ 6447717856, - 6455181760, + 6455181776, 6447712368, 6447712576, 6447712608, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447712624, 6447713264, 6447712832, 6443766512, 6447713152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447713408, 6447714512, 6447714208 @@ -192812,22 +192814,22 @@ }, { "type_name": "CMsgLeaveParty", - "vtable_address": 6461479176, + "vtable_address": 6461479160, "methods": [ 6447698784, - 6455181760, + 6455181776, 6447697120, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447698096, 6447698080 @@ -192887,22 +192889,22 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome", - "vtable_address": 6461504352, + "vtable_address": 6461504336, "methods": [ 6447829824, - 6455181760, + 6455181776, 6447800992, 6447802368, 6447803504, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447803840, 6447809456, 6447806208, 6443766512, 6447808688, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447810160, 6447811488, 6447811408 @@ -192948,22 +192950,22 @@ }, { "type_name": "CMsgLegacySource1ClientWelcome_Location", - "vtable_address": 6461493992, + "vtable_address": 6461493976, "methods": [ 6447798144, - 6455181760, + 6455181776, 6447786208, 6447787616, 6447788432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447788448, 6447789648, 6447788992, 6443766512, 6447789440, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447789760, 6447789888, 6447789872 @@ -193009,22 +193011,22 @@ }, { "type_name": "CMsgModifyItemAttribute", - "vtable_address": 6461347192, + "vtable_address": 6461347176, "methods": [ 6447133072, - 6455181760, + 6455181776, 6447125456, 6447127536, 6447127600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447127632, 6447129344, 6447127856, 6443766512, 6447128960, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447129664, 6447129808, 6447129776 @@ -193070,22 +193072,22 @@ }, { "type_name": "CMsgOpenCrate", - "vtable_address": 6461462056, + "vtable_address": 6461462040, "methods": [ 6447541728, - 6455181760, + 6455181776, 6447524832, 6447525488, 6447525536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447526352, 6447528832, 6447527056, 6443766512, 6447528400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447530096, 6447530448, 6447530240 @@ -193131,22 +193133,22 @@ }, { "type_name": "CMsgPartyInviteResponse", - "vtable_address": 6461475040, + "vtable_address": 6461475024, "methods": [ 6447669184, - 6455181760, + 6455181776, 6447661536, 6447662032, 6447662080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447662912, 6447664992, 6447663664, 6443766512, 6447664560, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447665024, 6447665280, 6447665264 @@ -193192,29 +193194,29 @@ }, { "type_name": "CMsgPlaceDecalEvent", - "vtable_address": 6461383328, + "vtable_address": 6461383312, "methods": [ 6447293040, - 6455181760, + 6455181776, 6446104080, 6447266304, 6447266448, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447266480, 6446048128, 6447267472, 6443766512, 6447269152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447272064, 6447273776, 6447273424, - 6455179744, + 6455179760, 6447290080, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -193257,22 +193259,22 @@ }, { "type_name": "CMsgPlayerBulletHit", - "vtable_address": 6461347336, + "vtable_address": 6461347320, "methods": [ 6447133216, - 6455181760, + 6455181776, 6447122592, 6447122912, 6447123008, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447123024, 6447124976, 6447123296, 6443766512, 6447124304, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447124992, 6447125200, 6447125184 @@ -193318,26 +193320,26 @@ }, { "type_name": "CMsgPlayerInfo", - "vtable_address": 6461544432, + "vtable_address": 6461544416, "methods": [ 6448058160, - 6455181760, + 6455181776, 6448048848, 6448050784, - 6448051216, - 6455181808, - 6455178784, - 6448051248, - 6448052608, + 6448050864, + 6455181824, + 6455178800, + 6448051232, + 6448052592, 6448051408, 6443766512, - 6448052224, - 6455183120, - 6455184944, + 6448052208, + 6455183136, + 6455184960, 6448052624, 6448052896, 6448052880, - 6455179744, + 6455179760, 6448056880 ], "bases": [ @@ -193381,26 +193383,26 @@ }, { "type_name": "CMsgProtoBufHeader", - "vtable_address": 6461590664, + "vtable_address": 6461590648, "methods": [ 6448390288, - 6455181760, - 6448362496, + 6455181776, + 6448362512, 6448364288, 6448364432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448365264, 6448375280, 6448367536, 6443766512, 6448374432, - 6455183120, - 6455184944, - 6448379776, + 6455183136, + 6455184960, + 6448379792, 6448379904, 6448379888, - 6455179744, + 6455179760, 6448388880 ], "bases": [ @@ -193444,24 +193446,24 @@ }, { "type_name": "CMsgQAngle", - "vtable_address": 6461515880, + "vtable_address": 6461515864, "methods": [ - 6448008208, - 6455181760, + 6448008096, + 6455181776, 6447999296, 6447999792, 6447999840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447999856, 6448000512, 6447999920, 6443766512, 6448000304, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448000528, - 6448000912, + 6448000592, 6448000576 ], "bases": [ @@ -193505,24 +193507,24 @@ }, { "type_name": "CMsgQuaternion", - "vtable_address": 6461517000, + "vtable_address": 6461516984, "methods": [ 6448018320, - 6455181760, + 6455181776, 6448012336, 6448012464, - 6448012512, - 6455181808, - 6455178784, - 6448012608, + 6448012496, + 6455181824, + 6455178800, + 6448012528, 6448013360, 6448012688, 6443766512, 6448013120, - 6455183120, - 6455184944, - 6448014448, - 6448014656, + 6455183136, + 6455184960, + 6448014032, + 6448014640, 6448014624 ], "bases": [ @@ -193566,22 +193568,22 @@ }, { "type_name": "CMsgRGBA", - "vtable_address": 6461521376, + "vtable_address": 6461521360, "methods": [ 6448046064, - 6455181760, + 6455181776, 6448042912, 6448043104, 6448043136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448043152, 6448044528, 6448043328, 6443766512, 6448044032, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448044544, 6448044576, 6448044560 @@ -193627,22 +193629,22 @@ }, { "type_name": "CMsgRecurringMissionSchema", - "vtable_address": 6461481064, + "vtable_address": 6461481048, "methods": [ 6447713744, - 6455181760, + 6455181776, 6447698848, 6447699200, 6447699376, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447699392, 6447700272, 6447699712, 6443766512, 6447700128, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447700288, 6447700320, 6447700304 @@ -193688,28 +193690,28 @@ }, { "type_name": "CMsgRecurringMissionSchema_MissionTemplateList", - "vtable_address": 6461477104, + "vtable_address": 6461477088, "methods": [ 6447687056, - 6455181760, + 6455181776, 6447676512, 6447676784, 6447676864, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447676880, 6447677936, 6447677072, 6443766512, 6447677536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447678368, 6447680032, 6447679840, - 6455179744, + 6455179760, 6447685312, - 6455179744, + 6455179760, 6447687216 ], "bases": [ @@ -193753,22 +193755,22 @@ }, { "type_name": "CMsgReplayUploadedToYouTube", - "vtable_address": 6461460984, + "vtable_address": 6461460968, "methods": [ 6447530608, - 6455181760, + 6455181776, 6447520432, 6447520656, 6447520752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447520768, 6447521936, 6447520928, 6443766512, 6447521680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447521952, 6447521984, 6447521968 @@ -193814,22 +193816,22 @@ }, { "type_name": "CMsgReplicateConVars", - "vtable_address": 6461457736, + "vtable_address": 6461457720, "methods": [ 6447487168, - 6455181760, + 6455181776, 6447450304, 6447450736, 6447450960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447450976, 6447451824, 6447451264, 6443766512, 6447451680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447451984, 6447452192, 6447452016 @@ -193875,22 +193877,22 @@ }, { "type_name": "CMsgRequestInventoryRefresh", - "vtable_address": 6461441152, + "vtable_address": 6461441136, "methods": [ 6447426016, - 6455181760, + 6455181776, 6447422672, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447424624, 6447424480 @@ -193950,26 +193952,26 @@ }, { "type_name": "CMsgRequestRecurringMissionSchedule", - "vtable_address": 6461474880, + "vtable_address": 6461474864, "methods": [ 6447668800, - 6455181760, + 6455181776, 6447667040, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447667632, 6447667616, - 6455179744, + 6455179760, 6447667088 ], "bases": [ @@ -194027,42 +194029,42 @@ }, { "type_name": "CMsgSDONoMemcached", - "vtable_address": 6461377904, + "vtable_address": 6461377888, "methods": [ 6447250768, - 6455181760, + 6455181776, 6447250112, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447250144, 6447250128, - 6455179744, + 6455179760, 6447250240, - 6455179744, + 6455179760, 6447250448, - 6455179744, + 6455179760, 6447252848, - 6455179744, + 6455179760, 6447253088, - 6455179744, + 6455179760, 6447253936, - 6455179744, + 6455179760, 6447254864, - 6455179744, + 6455179760, 6447256944, - 6455179744, + 6455179760, 6447257488, - 6455179744, + 6455179760, 6447261088 ], "bases": [ @@ -194120,30 +194122,30 @@ }, { "type_name": "CMsgSOCacheHaveVersion", - "vtable_address": 6461603104, + "vtable_address": 6461603088, "methods": [ 6448406112, - 6455181760, + 6455181776, 6448400240, 6448400672, 6448400768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448400800, 6448401712, 6448401136, 6443766512, 6448401552, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448401872, 6448401904, 6448401888, - 6455179744, + 6455179760, 6448403424, - 6455179744, + 6455179760, 6448403584, - 6455179744, + 6455179760, 6448406352 ], "bases": [ @@ -194187,22 +194189,22 @@ }, { "type_name": "CMsgSOCacheSubscribed", - "vtable_address": 6461560608, + "vtable_address": 6461560592, "methods": [ 6448153392, - 6455181760, + 6455181776, 6448136592, 6448138336, 6448138720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448138736, 6448139968, 6448139216, 6443766512, 6448139744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448140064, 6448140096, 6448140080 @@ -194248,34 +194250,34 @@ }, { "type_name": "CMsgSOCacheSubscribed_SubscribedType", - "vtable_address": 6461558208, + "vtable_address": 6461558192, "methods": [ 6448127216, - 6455181760, + 6455181776, 6448115568, 6448115936, 6448116000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448116016, 6448117056, 6448116208, 6443766512, 6448116704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448117504, 6448119376, 6448119184, - 6455179744, + 6455179760, 6448123936, - 6455179744, + 6455179760, 6448125808, - 6455179744, + 6455179760, 6448127696, - 6455179744, + 6455179760, 6448128544, - 6455179744, + 6455179760, 6448129088 ], "bases": [ @@ -194319,26 +194321,26 @@ }, { "type_name": "CMsgSOCacheSubscriptionCheck", - "vtable_address": 6461563040, + "vtable_address": 6461563024, "methods": [ 6448189552, - 6455181760, + 6455181776, 6448180288, 6448182384, 6448183216, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448183248, 6448184032, 6448183440, 6443766512, 6448183872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448184304, 6448184448, 6448184432, - 6455179744, + 6455179760, 6448187312 ], "bases": [ @@ -194382,24 +194384,24 @@ }, { "type_name": "CMsgSOCacheSubscriptionRefresh", - "vtable_address": 6461565096, + "vtable_address": 6461565080, "methods": [ 6448200384, - 6455181760, + 6455181776, 6448193664, 6448193872, 6448193968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448193984, - 6448194624, + 6448194640, 6448194144, 6443766512, 6448194512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448194656, - 6448196384, + 6448197008, 6448196368 ], "bases": [ @@ -194443,25 +194445,25 @@ }, { "type_name": "CMsgSOCacheUnsubscribed", - "vtable_address": 6461561792, + "vtable_address": 6461561776, "methods": [ 6448178432, - 6455181760, + 6455181776, 6448163920, 6448166816, 6448166928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448166944, 6448172112, 6448169472, 6443766512, 6448172000, - 6455183120, - 6455184944, - 6448172368, + 6455183136, + 6455184960, + 6448172432, 6448174592, - 6448174272 + 6448174288 ], "bases": [ { @@ -194504,26 +194506,26 @@ }, { "type_name": "CMsgSOCacheVersion", - "vtable_address": 6461576808, + "vtable_address": 6461576792, "methods": [ 6448225568, - 6455181760, + 6455181776, 6448204064, 6448204128, 6448204160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448204192, 6448204656, 6448204224, 6443766512, 6448204544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448205200, 6448205552, 6448205520, - 6455179744, + 6455179760, 6448205856 ], "bases": [ @@ -194567,26 +194569,26 @@ }, { "type_name": "CMsgSOIDOwner", - "vtable_address": 6461523736, + "vtable_address": 6461523720, "methods": [ 6448053872, - 6455181760, + 6455181776, 6448047504, 6448047680, 6448047728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448047744, 6448048624, 6448047840, 6443766512, 6448048336, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448048640, 6448049504, 6448049472, - 6455179744, + 6455179760, 6448052960 ], "bases": [ @@ -194630,22 +194632,22 @@ }, { "type_name": "CMsgSOMultipleObjects", - "vtable_address": 6461556480, + "vtable_address": 6461556464, "methods": [ 6448109840, - 6455181760, + 6455181776, 6448088880, 6448089216, 6448089456, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448089472, 6448090992, 6448089888, 6443766512, 6448090768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448093776, 6448095696, 6448095200 @@ -194691,22 +194693,22 @@ }, { "type_name": "CMsgSOMultipleObjects_SingleObject", - "vtable_address": 6461553952, + "vtable_address": 6461553936, "methods": [ 6448084464, - 6455181760, + 6455181776, 6448070560, 6448071488, 6448071552, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448071568, 6448072784, 6448071856, 6443766512, 6448072560, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448073712, 6448074384, 6448074368 @@ -194752,22 +194754,22 @@ }, { "type_name": "CMsgSOSingleObject", - "vtable_address": 6461545120, + "vtable_address": 6461545104, "methods": [ 6448067440, - 6455181760, + 6455181776, 6448058352, 6448059072, 6448059392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448059408, 6448061936, 6448060416, 6443766512, 6448061632, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448061968, 6448062080, 6448062064 @@ -194813,22 +194815,22 @@ }, { "type_name": "CMsgSerializedSOCache", - "vtable_address": 6461587736, + "vtable_address": 6461587720, "methods": [ 6448344016, - 6455181760, + 6455181776, 6448329312, 6448329792, 6448330000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448330176, 6448331360, 6448330400, 6443766512, 6448331008, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448331376, 6448331728, 6448331712 @@ -194874,30 +194876,30 @@ }, { "type_name": "CMsgSerializedSOCache_Cache", - "vtable_address": 6461584808, + "vtable_address": 6461584792, "methods": [ 6448319104, - 6455181760, + 6455181776, 6448282528, - 6448283216, + 6448283232, 6448283488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448283504, 6448287024, 6448285184, 6443766512, 6448286624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448289056, 6448289120, 6448289104, - 6455179744, + 6455179760, 6448317952, - 6455179744, + 6455179760, 6448319312, - 6455179744, + 6455179760, 6448320496 ], "bases": [ @@ -194941,26 +194943,26 @@ }, { "type_name": "CMsgSerializedSOCache_Cache_Version", - "vtable_address": 6461581128, + "vtable_address": 6461581112, "methods": [ 6448273936, - 6455181760, + 6455181776, 6448265888, 6448266272, 6448266416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448266448, 6448268256, - 6448266736, + 6448266752, 6443766512, 6448267968, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448268512, 6448269296, 6448269072, - 6455179744, + 6455179760, 6448269536 ], "bases": [ @@ -195004,22 +195006,22 @@ }, { "type_name": "CMsgSerializedSOCache_TypeCache", - "vtable_address": 6461579880, + "vtable_address": 6461579864, "methods": [ 6448261568, - 6455181760, + 6455181776, 6448255600, 6448256512, 6448256576, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448256592, 6448257840, 6448256816, 6443766512, 6448257392, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448257936, 6448259520, 6448259136 @@ -195065,26 +195067,26 @@ }, { "type_name": "CMsgServerAvailable", - "vtable_address": 6461479992, + "vtable_address": 6461479976, "methods": [ 6447708336, - 6455181760, + 6455181776, 6447704288, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6447706960, 6447706944, - 6455179744, + 6455179760, 6447707040 ], "bases": [ @@ -195142,22 +195144,22 @@ }, { "type_name": "CMsgServerHello", - "vtable_address": 6461606640, + "vtable_address": 6461606624, "methods": [ 6448455792, - 6455181760, + 6455181776, 6448443504, 6448443824, 6448444128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448444144, 6448446528, 6448444752, 6443766512, 6448445824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448446592, 6448447232, 6448447200 @@ -195203,28 +195205,28 @@ }, { "type_name": "CMsgServerNetworkStats", - "vtable_address": 6461577144, + "vtable_address": 6461577128, "methods": [ - 6448228176, - 6455181760, + 6448228256, + 6455181776, 6448162992, 6448165216, 6448165600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448165808, - 6448171968, + 6448171984, 6448167104, 6443766512, 6448169840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448172208, - 6448173088, + 6448173312, 6448173072, - 6455179744, + 6455179760, 6448227952, - 6455179744, + 6455179760, 6448230512 ], "bases": [ @@ -195268,22 +195270,22 @@ }, { "type_name": "CMsgServerNetworkStats_Player", - "vtable_address": 6461560464, + "vtable_address": 6461560448, "methods": [ 6448153232, - 6455181760, + 6455181776, 6448143184, - 6448144864, + 6448146144, 6448146432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448146496, 6448150576, 6448148320, 6443766512, 6448149984, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448150864, 6448151072, 6448151056 @@ -195329,22 +195331,22 @@ }, { "type_name": "CMsgServerNetworkStats_Port", - "vtable_address": 6461559024, + "vtable_address": 6461559008, "methods": [ 6448138176, - 6455181760, + 6455181776, 6448127200, 6448127840, 6448127920, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448127936, 6448128896, 6448128064, 6443766512, 6448128656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448129728, 6448130672, 6448130656 @@ -195390,22 +195392,22 @@ }, { "type_name": "CMsgServerPeer", - "vtable_address": 6461624200, + "vtable_address": 6461624184, "methods": [ 6448537856, - 6455181760, + 6455181776, 6448531392, 6448532576, 6448532720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448532768, 6448534368, 6448533088, 6443766512, 6448533984, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448534896, 6448535888, 6448535776 @@ -195451,26 +195453,26 @@ }, { "type_name": "CMsgServerUserCmd", - "vtable_address": 6461585848, + "vtable_address": 6461585832, "methods": [ 6448329328, - 6455181760, + 6455181776, 6448315648, 6448316016, 6448316160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448316176, 6448317712, 6448316400, 6443766512, 6448317184, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448317936, 6448318784, 6448318768, - 6455179744, + 6455179760, 6448323344 ], "bases": [ @@ -195514,22 +195516,22 @@ }, { "type_name": "CMsgSetItemPositions", - "vtable_address": 6461470104, + "vtable_address": 6461470088, "methods": [ 6447624272, - 6455181760, + 6455181776, 6447601760, 6447601968, 6447602256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447602336, 6447603888, 6447602784, 6443766512, 6447603744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447605264, 6447607360, 6447607344 @@ -195575,22 +195577,22 @@ }, { "type_name": "CMsgSetItemPositions_ItemPosition", - "vtable_address": 6461467144, + "vtable_address": 6461467128, "methods": [ 6447593376, - 6455181760, + 6455181776, 6447585344, 6447585696, 6447585920, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447586384, 6447588288, 6447586768, 6443766512, 6447587904, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447588848, 6447590640, 6447590624 @@ -195636,22 +195638,22 @@ }, { "type_name": "CMsgSortItems", - "vtable_address": 6461384640, + "vtable_address": 6461384624, "methods": [ 6447310960, - 6455181760, + 6455181776, 6447297040, 6447297488, 6447297792, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447297920, 6447299248, 6447298192, 6443766512, 6447299072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447299536, 6447301776, 6447300992 @@ -195697,22 +195699,22 @@ }, { "type_name": "CMsgSosSetLibraryStackFields", - "vtable_address": 6461470424, + "vtable_address": 6461470408, "methods": [ 6447627280, - 6455181760, + 6455181776, 6446516384, 6447619568, 6447619648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447619824, 6446426864, 6447620608, 6443766512, 6447621568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447621744, 6447621856, 6447621776 @@ -195758,7 +195760,7 @@ }, { "type_name": "CMsgSosSetLibraryStackFields_t", - "vtable_address": 6461064496, + "vtable_address": 6461064480, "methods": [ 6446323776, 6446339440, @@ -195849,22 +195851,22 @@ }, { "type_name": "CMsgSosSetLibraryStackFields_t", - "vtable_address": 6461064544, + "vtable_address": 6461064528, "methods": [ 6446321976, - 6455181760, + 6455181776, 6446516384, 6447619568, 6447619648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447619824, 6446426864, 6447620608, 6443766512, 6447621568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447621744, 6447621856, 6447621776 @@ -195952,22 +195954,22 @@ }, { "type_name": "CMsgSosSetSoundEventParams", - "vtable_address": 6461469032, + "vtable_address": 6461469016, "methods": [ 6447609520, - 6455181760, + 6455181776, 6446516400, 6447602272, 6447602624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447602640, 6446426880, 6447603264, 6443766512, 6447603920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447605280, 6447607632, 6447607424 @@ -196013,7 +196015,7 @@ }, { "type_name": "CMsgSosSetSoundEventParams_t", - "vtable_address": 6461064112, + "vtable_address": 6461064096, "methods": [ 6446323872, 6446339408, @@ -196104,22 +196106,22 @@ }, { "type_name": "CMsgSosSetSoundEventParams_t", - "vtable_address": 6461064160, + "vtable_address": 6461064144, "methods": [ 6446321988, - 6455181760, + 6455181776, 6446516400, 6447602272, 6447602624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447602640, 6446426880, 6447603264, 6443766512, 6447603920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447605280, 6447607632, 6447607424 @@ -196207,22 +196209,22 @@ }, { "type_name": "CMsgSosStartSoundEvent", - "vtable_address": 6461463640, + "vtable_address": 6461463624, "methods": [ 6447560096, - 6455181760, + 6455181776, 6446516416, 6447544000, 6447544080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447544096, 6446426896, 6447544320, 6443766512, 6447545168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447546160, 6447547200, 6447547184 @@ -196268,7 +196270,7 @@ }, { "type_name": "CMsgSosStartSoundEvent_t", - "vtable_address": 6461062960, + "vtable_address": 6461062944, "methods": [ 6446323968, 6446339344, @@ -196359,22 +196361,22 @@ }, { "type_name": "CMsgSosStartSoundEvent_t", - "vtable_address": 6461063008, + "vtable_address": 6461062992, "methods": [ 6446322000, - 6455181760, + 6455181776, 6446516416, 6447544000, 6447544080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447544096, 6446426896, 6447544320, 6443766512, 6447545168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447546160, 6447547200, 6447547184 @@ -196462,22 +196464,22 @@ }, { "type_name": "CMsgSosStopSoundEvent", - "vtable_address": 6461465544, + "vtable_address": 6461465528, "methods": [ 6447578800, - 6455181760, + 6455181776, 6446516432, 6447569152, 6447569184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447569200, 6446426912, 6447571648, 6443766512, 6447574080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447575888, 6447577200, 6447577184 @@ -196523,22 +196525,22 @@ }, { "type_name": "CMsgSosStopSoundEventHash", - "vtable_address": 6461467288, + "vtable_address": 6461467272, "methods": [ 6447593520, - 6455181760, + 6455181776, 6446516448, 6447588704, 6447588752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447588768, 6446426928, 6447588960, 6443766512, 6447589552, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447591184, 6447591616, 6447591600 @@ -196584,7 +196586,7 @@ }, { "type_name": "CMsgSosStopSoundEventHash_t", - "vtable_address": 6461063728, + "vtable_address": 6461063712, "methods": [ 6446324064, 6446339472, @@ -196675,22 +196677,22 @@ }, { "type_name": "CMsgSosStopSoundEventHash_t", - "vtable_address": 6461063776, + "vtable_address": 6461063760, "methods": [ 6446322012, - 6455181760, + 6455181776, 6446516448, 6447588704, 6447588752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447588768, 6446426928, 6447588960, 6443766512, 6447589552, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447591184, 6447591616, 6447591600 @@ -196778,7 +196780,7 @@ }, { "type_name": "CMsgSosStopSoundEvent_t", - "vtable_address": 6461063344, + "vtable_address": 6461063328, "methods": [ 6446324160, 6446339376, @@ -196869,22 +196871,22 @@ }, { "type_name": "CMsgSosStopSoundEvent_t", - "vtable_address": 6461063392, + "vtable_address": 6461063376, "methods": [ 6446322024, - 6455181760, + 6455181776, 6446516432, 6447569152, 6447569184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447569200, 6446426912, 6447571648, 6443766512, 6447574080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447575888, 6447577200, 6447577184 @@ -196972,26 +196974,26 @@ }, { "type_name": "CMsgSource1LegacyGameEvent", - "vtable_address": 6461461288, + "vtable_address": 6461461272, "methods": [ 6447532160, - 6455181760, + 6455181776, 6447506288, 6447506704, 6447506960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447506976, 6447508576, 6447507296, 6443766512, 6447508096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447508848, 6447508896, 6447508880, - 6455179744, + 6455179760, 6447530256 ], "bases": [ @@ -197035,22 +197037,22 @@ }, { "type_name": "CMsgSource1LegacyGameEventList", - "vtable_address": 6461453880, + "vtable_address": 6461453864, "methods": [ 6447437712, - 6455181760, + 6455181776, 6447416848, 6447417648, 6447417776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447417792, 6447418864, 6447418080, 6443766512, 6447418496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447419136, 6447420112, 6447420096 @@ -197096,30 +197098,30 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_descriptor_t", - "vtable_address": 6461435384, + "vtable_address": 6461435368, "methods": [ 6447413184, - 6455181760, + 6455181776, 6447373920, 6447375632, 6447376048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447376480, 6447379152, 6447377248, 6443766512, 6447378848, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447380208, 6447382944, 6447382512, - 6455179744, + 6455179760, 6447405872, - 6455179744, + 6455179760, 6447408240, - 6455179744, + 6455179760, 6447410128 ], "bases": [ @@ -197163,22 +197165,22 @@ }, { "type_name": "CMsgSource1LegacyGameEventList_key_t", - "vtable_address": 6461429320, + "vtable_address": 6461429304, "methods": [ 6447368336, - 6455181760, + 6455181776, 6447351888, 6447352688, 6447352960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447353568, 6447356016, 6447354720, 6443766512, 6447355648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447356832, 6447361808, 6447360752 @@ -197224,30 +197226,30 @@ }, { "type_name": "CMsgSource1LegacyGameEvent_key_t", - "vtable_address": 6461458104, + "vtable_address": 6461458088, "methods": [ 6447500112, - 6455181760, + 6455181776, 6447476448, 6447477840, 6447477920, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447477936, 6447480128, 6447478208, 6443766512, 6447479264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447480160, 6447480848, 6447480656, - 6455179744, + 6455179760, 6447497136, - 6455179744, + 6455179760, 6447498880, - 6455179744, + 6455179760, 6447498448 ], "bases": [ @@ -197291,32 +197293,32 @@ }, { "type_name": "CMsgSource1LegacyListenEvents", - "vtable_address": 6461456088, + "vtable_address": 6461456072, "methods": [ 6447461552, - 6455181760, + 6455181776, 6447446592, 6447447104, 6447447168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447447184, 6447448416, 6447447296, 6443766512, 6447447936, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447448800, 6447449936, 6447449920, - 6455179744, + 6455179760, 6447452032, - 6455179744, + 6455179760, 6447453504, - 6455179744, + 6455179760, 6447455120, - 6455179744, + 6455179760, 6447456160 ], "bases": [ @@ -197360,26 +197362,26 @@ }, { "type_name": "CMsgSource2NetworkFlowQuality", - "vtable_address": 6461603296, + "vtable_address": 6461603280, "methods": [ 6448411888, - 6455181760, + 6455181776, 6448362800, 6448365648, 6448365808, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448365824, 6448379760, 6448368960, 6443766512, 6448375296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448379872, 6448379984, 6448379968, - 6455179744, + 6455179760, 6448407552 ], "bases": [ @@ -197423,26 +197425,26 @@ }, { "type_name": "CMsgSource2PerfIntervalSample", - "vtable_address": 6461606336, + "vtable_address": 6461606320, "methods": [ 6448451376, - 6455181760, + 6455181776, 6448427920, 6448428176, 6448428384, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448428400, 6448429872, 6448428752, 6443766512, 6448429456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448430016, 6448431280, 6448431264, - 6455179744, + 6455179760, 6448449872 ], "bases": [ @@ -197486,26 +197488,26 @@ }, { "type_name": "CMsgSource2PerfIntervalSample_Tag", - "vtable_address": 6461604272, + "vtable_address": 6461604256, "methods": [ 6448425152, - 6455181760, + 6455181776, 6448420192, 6448420352, 6448420416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448420432, 6448421248, 6448420544, 6443766512, 6448421024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448421440, 6448422752, 6448422512, - 6455179744, + 6455179760, 6448424096 ], "bases": [ @@ -197549,22 +197551,22 @@ }, { "type_name": "CMsgSource2SystemSpecs", - "vtable_address": 6461582904, + "vtable_address": 6461582888, "methods": [ 6448293760, - 6455181760, + 6455181776, 6448272064, 6448273728, 6448273920, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448274160, 6448277728, 6448274736, 6443766512, 6448276560, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448277920, 6448279456, 6448278896 @@ -197610,22 +197612,22 @@ }, { "type_name": "CMsgSource2VProfLiteReport", - "vtable_address": 6461588392, + "vtable_address": 6461588376, "methods": [ 6448358592, - 6455181760, + 6455181776, 6448333616, 6448334912, 6448335280, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448335296, 6448336448, 6448335536, 6443766512, 6448336160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448336688, 6448338608, 6448338592 @@ -197671,26 +197673,26 @@ }, { "type_name": "CMsgSource2VProfLiteReportItem", - "vtable_address": 6461586008, + "vtable_address": 6461585992, "methods": [ 6448330016, - 6455181760, + 6455181776, 6448297936, 6448300496, 6448300608, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448300944, 6448305472, 6448301632, 6443766512, 6448303728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448305600, 6448306128, 6448306112, - 6455179744, + 6455179760, 6448324400 ], "bases": [ @@ -197734,22 +197736,22 @@ }, { "type_name": "CMsgStoreGetUserData", - "vtable_address": 6461391240, + "vtable_address": 6461391224, "methods": [ 6447345872, - 6455181760, + 6455181776, 6447335792, 6447335888, 6447336016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447336080, 6447337616, 6447336272, 6443766512, 6447337376, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447338400, 6447339120, 6447339056 @@ -197795,22 +197797,22 @@ }, { "type_name": "CMsgStoreGetUserDataResponse", - "vtable_address": 6461430072, + "vtable_address": 6461430056, "methods": [ 6447369296, - 6455181760, + 6455181776, 6447351872, 6447352416, 6447352672, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447352752, 6447355616, 6447353680, 6443766512, 6447355216, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447356448, 6447360672, 6447360256 @@ -197856,28 +197858,28 @@ }, { "type_name": "CMsgSystemBroadcast", - "vtable_address": 6461469336, + "vtable_address": 6461469320, "methods": [ 6447613440, - 6455181760, + 6455181776, 6447608368, 6447608480, 6447608544, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447608560, 6447609104, 6447608624, 6443766512, 6447608992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447609280, 6447609312, 6447609296, - 6455179744, + 6455179760, 6447611920, - 6455179744, + 6455179760, 6447612704 ], "bases": [ @@ -197921,22 +197923,22 @@ }, { "type_name": "CMsgTEArmorRicochet", - "vtable_address": 6461633280, + "vtable_address": 6461633264, "methods": [ 6448552672, - 6455181760, + 6455181776, 6448549488, 6448549904, 6448550048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448550064, 6448551024, 6448550368, 6443766512, 6448550848, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448551040, 6448551072, 6448551056 @@ -197982,32 +197984,32 @@ }, { "type_name": "CMsgTEBaseBeam", - "vtable_address": 6461507184, + "vtable_address": 6461507168, "methods": [ 6447973024, - 6455181760, + 6455181776, 6448557792, 6448558016, 6448558080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448558096, 6448560288, 6448558384, 6443766512, 6448559456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448560320, 6448561632, 6448561216, - 6455179744, + 6455179760, 6447973168, - 6455179744, + 6455179760, 6447974176, - 6455179744, + 6455179760, 6447974784, - 6455179744, + 6455179760, 6447976944 ], "bases": [ @@ -198051,30 +198053,30 @@ }, { "type_name": "CMsgTEBeamEntPoint", - "vtable_address": 6461508464, + "vtable_address": 6461508448, "methods": [ 6447988880, - 6455181760, + 6455181776, 6447979216, 6447979760, 6447979984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447980144, 6447981888, 6447980544, 6443766512, 6447981488, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447981904, 6447982096, 6447982080, - 6455179744, + 6455179760, 6447984096, - 6455179744, + 6455179760, 6447985440, - 6455179744, + 6455179760, 6447987632 ], "bases": [ @@ -198118,22 +198120,22 @@ }, { "type_name": "CMsgTEBeamEnts", - "vtable_address": 6461515736, + "vtable_address": 6461515720, "methods": [ 6448007408, - 6455181760, + 6455181776, 6447997840, 6447998048, 6447998176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447998192, 6447999264, 6447998352, 6443766512, 6447998944, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447999280, 6447999648, 6447999632 @@ -198179,26 +198181,26 @@ }, { "type_name": "CMsgTEBeamPoints", - "vtable_address": 6461516840, + "vtable_address": 6461516824, "methods": [ 6448016832, - 6455181760, + 6455181776, 6448010144, 6448010656, 6448011024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448011040, 6448012160, 6448011376, 6443766512, 6448011952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448012352, - 6448012544, - 6448012496, - 6455179744, + 6448012624, + 6448012512, + 6455179760, 6448016112 ], "bases": [ @@ -198242,25 +198244,25 @@ }, { "type_name": "CMsgTEBeamRing", - "vtable_address": 6461520560, + "vtable_address": 6461520544, "methods": [ 6448030304, - 6455181760, + 6455181776, 6448020576, 6448020784, 6448020912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448020928, 6448022160, 6448021088, 6443766512, 6448021840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448022192, 6448023312, - 6448022800 + 6448023104 ], "bases": [ { @@ -198303,22 +198305,22 @@ }, { "type_name": "CMsgTEBloodStream", - "vtable_address": 6461578760, + "vtable_address": 6461578744, "methods": [ 6448247904, - 6455181760, + 6455181776, 6448240784, 6448241264, 6448241424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448241440, 6448243168, 6448241888, 6443766512, 6448242864, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448244080, 6448244128, 6448244112 @@ -198364,23 +198366,23 @@ }, { "type_name": "CMsgTEBubbleTrail", - "vtable_address": 6461544144, + "vtable_address": 6461544128, "methods": [ 6448056688, - 6455181760, + 6455181776, 6448048656, 6448049312, 6448049488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448049568, - 6448051232, + 6448051392, 6448049920, 6443766512, - 6448050864, - 6455183120, - 6455184944, - 6448052208, + 6448050880, + 6455183136, + 6455184960, + 6448052608, 6448052656, 6448052640 ], @@ -198425,24 +198427,24 @@ }, { "type_name": "CMsgTEBubbles", - "vtable_address": 6461521232, + "vtable_address": 6461521216, "methods": [ 6448045872, - 6455181760, + 6455181776, 6448040864, 6448041328, 6448041488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448041504, 6448042880, 6448041856, 6443766512, 6448042528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448042896, - 6448042944, + 6448043040, 6448042928 ], "bases": [ @@ -198486,25 +198488,25 @@ }, { "type_name": "CMsgTEDecal", - "vtable_address": 6461546016, + "vtable_address": 6461546000, "methods": [ 6448069904, - 6455181760, + 6455181776, 6445896256, 6448063872, 6448064048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448064064, 6445896272, 6448064464, 6443766512, 6448065264, - 6455183120, - 6455184944, - 6448065808, + 6455183136, + 6455184960, + 6448065856, 6448066624, - 6448066416 + 6448066608 ], "bases": [ { @@ -198547,34 +198549,34 @@ }, { "type_name": "CMsgTEDust", - "vtable_address": 6461581928, + "vtable_address": 6461581912, "methods": [ 6448282544, - 6455181760, + 6455181776, 6448269520, 6448269968, 6448270128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448270160, 6448271296, 6448270496, 6443766512, 6448271056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448272128, 6448274080, 6448273904, - 6455179744, + 6455179760, 6448281632, - 6455179744, + 6455179760, 6448282928, - 6455179744, + 6455179760, 6448284864, - 6455179744, + 6455179760, 6448284128, - 6455179744, + 6455179760, 6448289376 ], "bases": [ @@ -198618,22 +198620,22 @@ }, { "type_name": "CMsgTEEffectDispatch", - "vtable_address": 6461557136, + "vtable_address": 6461557120, "methods": [ 6448115664, - 6455181760, + 6455181776, 6448110048, 6448110608, 6448110672, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448110688, 6448111456, 6448110928, 6443766512, 6448111328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448111856, 6448113776, 6448113760 @@ -198679,22 +198681,22 @@ }, { "type_name": "CMsgTEEnergySplash", - "vtable_address": 6461558592, + "vtable_address": 6461558576, "methods": [ 6448132256, - 6455181760, + 6455181776, 6448123920, 6448124352, 6448124496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448124512, 6448125792, 6448124816, 6443766512, 6448125584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448126304, 6448127616, 6448127600 @@ -198740,22 +198742,22 @@ }, { "type_name": "CMsgTEExplosion", - "vtable_address": 6461580344, + "vtable_address": 6461580328, "methods": [ 6448263744, - 6455181760, + 6455181776, 6448252512, 6448253392, 6448253648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448253664, 6448256368, 6448254272, 6443766512, 6448255616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448256496, 6448257872, 6448257856 @@ -198801,31 +198803,31 @@ }, { "type_name": "CMsgTEFireBullets", - "vtable_address": 6461334416, + "vtable_address": 6461334400, "methods": [ 6447120368, - 6455181760, + 6455181776, 6447085968, 6447086896, 6447087424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447087440, 6447093056, 6447089056, 6443766512, 6447091744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447093168, 6447093296, 6447093280, - 6455179744, + 6455179760, 6447117616, - 6455179744, + 6455179760, 6447117904, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -198868,26 +198870,26 @@ }, { "type_name": "CMsgTEFireBullets_Extra", - "vtable_address": 6461331664, + "vtable_address": 6461331648, "methods": [ 6447078144, - 6455181760, + 6455181776, 6447847712, 6447848016, 6447848176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447848192, 6447850400, 6447848432, 6443766512, 6447849712, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447852144, 6447853232, 6447853120, - 6455179744, + 6455179760, 6447075200 ], "bases": [ @@ -198931,22 +198933,22 @@ }, { "type_name": "CMsgTEFizz", - "vtable_address": 6461559744, + "vtable_address": 6461559728, "methods": [ 6448152544, - 6455181760, + 6455181776, 6448142192, 6448142368, 6448142416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448142432, 6448143600, 6448142576, 6443766512, 6448143200, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448144608, 6448150592, 6448149968 @@ -198992,22 +198994,22 @@ }, { "type_name": "CMsgTEGlowSprite", - "vtable_address": 6461563520, + "vtable_address": 6461563504, "methods": [ 6448192656, - 6455181760, + 6455181776, 6448184416, 6448185232, 6448185344, - 6455181808, - 6455178784, - 6448185360, + 6455181824, + 6455178800, + 6448185744, 6448186944, - 6448185952, + 6448186080, 6443766512, 6448186640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448187120, 6448187248, 6448187232 @@ -199053,26 +199055,26 @@ }, { "type_name": "CMsgTEImpact", - "vtable_address": 6461576328, + "vtable_address": 6461576312, "methods": [ 6448203808, - 6455181760, + 6455181776, 6448197360, 6448198736, 6448199056, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448199088, 6448200256, 6448199408, 6443766512, 6448200000, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448200272, 6448201088, 6448200784, - 6455179744, + 6455179760, 6448202880 ], "bases": [ @@ -199116,26 +199118,26 @@ }, { "type_name": "CMsgTELargeFunnel", - "vtable_address": 6461583192, + "vtable_address": 6461583176, "methods": [ 6448294080, - 6455181760, + 6455181776, 6448291296, 6448291872, 6448291968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448291984, 6448293104, 6448292176, 6443766512, 6448292880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448293120, 6448293152, 6448293136, - 6455179744, + 6455179760, 6448294288 ], "bases": [ @@ -199179,22 +199181,22 @@ }, { "type_name": "CMsgTEMuzzleFlash", - "vtable_address": 6461577480, + "vtable_address": 6461577464, "methods": [ 6448236512, - 6455181760, + 6455181776, 6448225712, 6448226304, 6448226464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448226496, 6448227824, 6448226896, 6443766512, 6448227520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448227840, 6448227872, 6448227856 @@ -199240,26 +199242,26 @@ }, { "type_name": "CMsgTEPhysicsProp", - "vtable_address": 6461587144, + "vtable_address": 6461587128, "methods": [ 6448341952, - 6455181760, + 6455181776, 6448323312, 6448325376, 6448325840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448326224, 6448329280, 6448327024, 6443766512, 6448328432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448329296, 6448329936, 6448329776, - 6455179744, + 6455179760, 6448340768 ], "bases": [ @@ -199303,22 +199305,22 @@ }, { "type_name": "CMsgTEPlayerAnimEvent", - "vtable_address": 6461504208, + "vtable_address": 6461504192, "methods": [ 6447829488, - 6455181760, + 6455181776, 6447823664, 6447823760, 6447823808, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447823824, 6447824784, 6447823936, 6443766512, 6447824464, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447824960, 6447825152, 6447825136 @@ -199364,22 +199366,22 @@ }, { "type_name": "CMsgTERadioIcon", - "vtable_address": 6461505040, + "vtable_address": 6461505024, "methods": [ 6447844528, - 6455181760, + 6455181776, 6447840240, 6447840304, 6447840336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447840352, 6447840832, 6447840384, 6443766512, 6447840720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447841056, 6447843456, 6447843392 @@ -199425,22 +199427,22 @@ }, { "type_name": "CMsgTEShatterSurface", - "vtable_address": 6461562080, + "vtable_address": 6461562064, "methods": [ 6448178768, - 6455181760, + 6455181776, 6448153600, - 6448154400, + 6448154560, 6448154816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448154848, 6448157024, 6448155520, 6443766512, 6448156496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448157856, 6448159696, 6448159680 @@ -199486,28 +199488,28 @@ }, { "type_name": "CMsgTESmoke", - "vtable_address": 6461588744, + "vtable_address": 6461588728, "methods": [ 6448360720, - 6455181760, + 6455181776, 6448351616, 6448351904, 6448352000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448352016, 6448353104, 6448352320, 6443766512, 6448352928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448353856, 6448355456, 6448355440, - 6455179744, + 6455179760, 6448358880, - 6455179744, + 6455179760, 6448359024 ], "bases": [ @@ -199551,26 +199553,26 @@ }, { "type_name": "CMsgTESparks", - "vtable_address": 6461584648, + "vtable_address": 6461584632, "methods": [ 6448317744, - 6455181760, + 6455181776, 6448305984, 6448307536, 6448307696, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448307712, 6448309296, 6448308064, 6443766512, 6448308928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448309328, 6448309568, 6448309408, - 6455179744, + 6455179760, 6448315808 ], "bases": [ @@ -199614,22 +199616,22 @@ }, { "type_name": "CMsgTEWorldDecal", - "vtable_address": 6461590072, + "vtable_address": 6461590056, "methods": [ 6448388080, - 6455181760, + 6455181776, 6445901328, 6448380672, 6448380816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448380832, 6445901344, 6448381152, 6443766512, 6448381968, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448383104, 6448383408, 6448383392 @@ -199675,26 +199677,26 @@ }, { "type_name": "CMsgTransform", - "vtable_address": 6461520704, + "vtable_address": 6461520688, "methods": [ 6448033824, - 6455181760, + 6455181776, 6448022176, 6448022640, 6448022784, - 6455181808, - 6455178784, - 6448022816, - 6448025024, - 6448023600, + 6455181824, + 6455178800, + 6448022800, + 6448024496, + 6448023584, 6443766512, 6448024288, - 6455183120, - 6455184944, - 6448026176, + 6455183136, + 6455184960, + 6448025632, 6448028144, - 6448028128, - 6455179744, + 6448028112, + 6455179760, 6448030480 ], "bases": [ @@ -199738,26 +199740,26 @@ }, { "type_name": "CMsgUpdateItemSchema", - "vtable_address": 6461434856, + "vtable_address": 6461434840, "methods": [ 6447398416, - 6455181760, + 6455181776, 6447384496, 6447385472, 6447385568, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447385600, 6447386800, 6447385952, 6443766512, 6447386608, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447390000, 6447392048, 6447392032, - 6455179744, + 6455179760, 6447398592 ], "bases": [ @@ -199801,28 +199803,28 @@ }, { "type_name": "CMsgUseItem", - "vtable_address": 6461459352, + "vtable_address": 6461459336, "methods": [ 6447511248, - 6455181760, + 6455181776, 6447502160, 6447502544, 6447502624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447502640, 6447504512, 6447503088, 6443766512, 6447503984, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447505728, 6447505776, 6447505760, - 6455179744, + 6455179760, 6447508960, - 6455179744, + 6455179760, 6447511440 ], "bases": [ @@ -199866,22 +199868,22 @@ }, { "type_name": "CMsgVDebugGameSessionIDEvent", - "vtable_address": 6461378192, + "vtable_address": 6461378176, "methods": [ 6447263120, - 6455181760, + 6455181776, 6447250208, 6447250384, 6447250560, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447250640, 6447252384, 6447251008, 6443766512, 6447252160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447253344, 6447256064, 6447256048 @@ -199927,26 +199929,26 @@ }, { "type_name": "CMsgVector", - "vtable_address": 6461507392, + "vtable_address": 6461507376, "methods": [ 6447978992, - 6455181760, + 6455181776, 6447971984, 6447972096, 6447972128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447972144, 6447972896, 6447972224, 6443766512, 6447972656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447972912, 6447972944, 6447972928, - 6455179744, + 6455179760, 6447977744 ], "bases": [ @@ -199990,28 +199992,28 @@ }, { "type_name": "CMsgVector2D", - "vtable_address": 6461508656, + "vtable_address": 6461508640, "methods": [ 6447997200, - 6455181760, + 6455181776, 6447982672, 6447982768, 6447982800, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447982816, 6447983392, 6447982864, 6443766512, 6447983216, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447983408, - 6447983824, - 6447983712, - 6455179744, + 6447983728, + 6447983456, + 6455179760, 6447990544, - 6455179744, + 6455179760, 6447992880 ], "bases": [ @@ -200055,22 +200057,22 @@ }, { "type_name": "CMsgVoiceAudio", - "vtable_address": 6461556000, + "vtable_address": 6461555984, "methods": [ 6448103776, - 6455181760, + 6455181776, 6448088896, 6448090640, 6448090752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448091008, 6448093792, 6448091552, 6443766512, 6448092800, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448094736, 6448097776, 6448097760 @@ -200116,26 +200118,26 @@ }, { "type_name": "CMsg_CVars", - "vtable_address": 6461556768, + "vtable_address": 6461556752, "methods": [ - 6448110240, - 6455181760, + 6448110224, + 6455181776, 6448097840, 6448098064, - 6448098304, - 6455181808, - 6455178784, - 6448098384, + 6448098288, + 6455181824, + 6455178800, + 6448098320, 6448099312, - 6448098752, + 6448098688, 6443766512, 6448099168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448099328, - 6448099392, + 6448099376, 6448099360, - 6455179744, + 6455179760, 6448108240 ], "bases": [ @@ -200179,26 +200181,26 @@ }, { "type_name": "CMsg_CVars_CVar", - "vtable_address": 6461554560, + "vtable_address": 6461554544, "methods": [ 6448088320, - 6455181760, + 6455181776, 6448074944, - 6448075440, + 6448075424, 6448075536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448075552, 6448076224, 6448075680, 6443766512, 6448076064, - 6455183120, - 6455184944, - 6448076352, - 6448077520, - 6448076896, - 6455179744, + 6455183136, + 6455184960, + 6448076336, + 6448076912, + 6448076848, + 6455179760, 6448087280 ], "bases": [ @@ -200247,13 +200249,13 @@ 6446805888, 6445685552, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445741840, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445686768, 6451932368, 6451865168, @@ -200283,7 +200285,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700800, 6445732112, 6445737712, @@ -200557,18 +200559,18 @@ }, { "type_name": "CMultiSource", - "vtable_address": 6462637816, + "vtable_address": 6462637848, "methods": [ 6446805888, 6452598576, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452671296, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -200598,7 +200600,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624080, 6452653776, 6452658224, @@ -200872,7 +200874,7 @@ }, { "type_name": "CMultiplayRules", - "vtable_address": 6461724240, + "vtable_address": 6461724256, "methods": [ 6449169264, 6449123088, @@ -200923,7 +200925,7 @@ 6448997600, 6449051568, 6452507424, - 6459886716, + 6459886732, 6452427904, 6449046096, 6449009504, @@ -201033,7 +201035,7 @@ }, { "type_name": "CMultiplayer_Expresser", - "vtable_address": 6462378184, + "vtable_address": 6462378216, "methods": [ 6451844128, 6451842752, @@ -201098,25 +201100,25 @@ }, { "type_name": "CNETMsg_DebugOverlay", - "vtable_address": 6461607920, + "vtable_address": 6461607904, "methods": [ 6448468016, - 6455181760, + 6455181776, 6448437856, 6448438208, 6448438512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448438528, 6448441392, 6448439312, 6443766512, 6448440592, - 6455183120, - 6455184944, - 6448441664, + 6455183136, + 6455184960, + 6448441584, 6448443008, - 6448442992 + 6448442976 ], "bases": [ { @@ -201159,28 +201161,28 @@ }, { "type_name": "CNETMsg_NOP", - "vtable_address": 6461557744, + "vtable_address": 6461557728, "methods": [ - 6448123632, - 6455181760, - 6448116688, + 6448123552, + 6455181776, + 6448116672, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, - 6448118112, + 6448117632, 6448117616, - 6455179744, + 6455179760, 6448117072, - 6455179744, + 6455179760, 6448118352 ], "bases": [ @@ -201238,29 +201240,29 @@ }, { "type_name": "CNETMsg_SetConVar", - "vtable_address": 6461563200, + "vtable_address": 6461563184, "methods": [ 6448192080, - 6455181760, + 6455181776, 6448184400, 6448184800, 6448184864, - 6455181808, - 6455178784, - 6448185168, - 6448186624, - 6448185568, + 6455181824, + 6455178800, + 6448184880, + 6448186064, + 6448185360, 6443766512, - 6448186512, - 6455183120, - 6455184944, - 6448187104, + 6448185952, + 6455183136, + 6455184960, + 6448186960, 6448187168, 6448187152, - 6455179744, + 6455179760, 6448188880, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -201303,26 +201305,26 @@ }, { "type_name": "CNETMsg_SignonState", - "vtable_address": 6461576488, + "vtable_address": 6461576472, "methods": [ 6448205344, - 6455181760, - 6448194640, + 6455181776, + 6448194624, 6448194928, 6448195072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448195088, 6448197072, 6448195456, 6443766512, - 6448196448, - 6455183120, - 6455184944, + 6448196384, + 6455183136, + 6455184960, 6448197088, 6448197296, 6448197280, - 6455179744, + 6455179760, 6448204080 ], "bases": [ @@ -201366,26 +201368,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_Load", - "vtable_address": 6461586824, + "vtable_address": 6461586808, "methods": [ 6448339648, - 6455181760, + 6455181776, 6448309632, 6448310624, 6448311056, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448311072, 6448315088, 6448312016, 6443766512, 6448313792, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448315264, 6448315296, 6448315280, - 6455179744, + 6455179760, 6448337360 ], "bases": [ @@ -201429,26 +201431,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_LoadCompleted", - "vtable_address": 6461592408, + "vtable_address": 6461592392, "methods": [ 6448401728, - 6455181760, + 6455181776, 6448397088, 6448397152, 6448397184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448397200, 6448397808, 6448397248, 6443766512, 6448397632, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448397968, 6448398304, 6448398288, - 6455179744, + 6455179760, 6448400432 ], "bases": [ @@ -201492,26 +201494,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_ManifestUpdate", - "vtable_address": 6461588232, + "vtable_address": 6461588216, "methods": [ 6448358064, - 6455181760, + 6455181776, 6448342608, 6448342928, 6448343008, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448343024, - 6448344000, + 6448343984, 6448343136, 6443766512, - 6448343744, - 6455183120, - 6455184944, + 6448343728, + 6455183136, + 6455184960, 6448344176, - 6448351456, - 6448349536, - 6455179744, + 6448349552, + 6448349376, + 6455179760, 6448354032 ], "bases": [ @@ -201555,30 +201557,30 @@ }, { "type_name": "CNETMsg_SpawnGroup_SetCreationTick", - "vtable_address": 6461589880, + "vtable_address": 6461589864, "methods": [ 6448383568, - 6455181760, + 6455181776, 6448362272, - 6448362448, - 6448362656, - 6455181808, - 6455178784, + 6448362384, + 6448362496, + 6455181824, + 6455178800, 6448362672, - 6448364272, + 6448363920, 6448362816, 6443766512, - 6448363904, - 6455183120, - 6455184944, + 6448363552, + 6455183136, + 6455184960, 6448368944, 6448379808, - 6448379792, - 6455179744, + 6448379776, + 6455179760, 6448383728, - 6455179744, + 6455179760, 6448384000, - 6455179744, + 6455179760, 6448385664 ], "bases": [ @@ -201622,26 +201624,26 @@ }, { "type_name": "CNETMsg_SpawnGroup_Unload", - "vtable_address": 6461591128, + "vtable_address": 6461591112, "methods": [ 6448392112, - 6455181760, + 6455181776, 6448388864, 6448388960, 6448389008, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448389024, 6448390128, 6448389152, 6443766512, 6448389744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448390448, 6448390480, 6448390464, - 6455179744, + 6455179760, 6448391456 ], "bases": [ @@ -201685,25 +201687,25 @@ }, { "type_name": "CNETMsg_SplitScreenUser", - "vtable_address": 6461558736, + "vtable_address": 6461558720, "methods": [ 6448137536, - 6455181760, + 6455181776, 6448128048, - 6448129632, + 6448129136, 6448129664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448129680, 6448130624, 6448130064, 6443766512, 6448130448, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448130736, - 6448131072, - 6448130992 + 6448131008, + 6448130848 ], "bases": [ { @@ -201746,25 +201748,25 @@ }, { "type_name": "CNETMsg_StringCmd", - "vtable_address": 6461561936, + "vtable_address": 6461561920, "methods": [ 6448178608, - 6455181760, - 6448171984, - 6448172384, - 6448172464, - 6455181808, - 6455178784, + 6455181776, + 6448171968, + 6448172368, + 6448172448, + 6455181824, + 6455178800, 6448172480, - 6448174288, + 6448173376, 6448172592, 6443766512, - 6448174048, - 6455183120, - 6455184944, + 6448173088, + 6455183136, + 6455184960, 6448176256, - 6448177168, - 6448177056 + 6448177072, + 6448176848 ], "bases": [ { @@ -201807,27 +201809,27 @@ }, { "type_name": "CNETMsg_Tick", - "vtable_address": 6461560752, + "vtable_address": 6461560736, "methods": [ - 6448154656, - 6455181760, + 6448154400, + 6455181776, 6448142560, 6448143872, 6448143968, - 6455181808, - 6455178784, - 6448144144, - 6448148304, - 6448145152, + 6455181824, + 6455178800, + 6448143984, + 6448147792, + 6448144864, 6443766512, - 6448147328, - 6455183120, - 6455184944, + 6448146736, + 6455183136, + 6455184960, 6448150832, 6448150912, 6448150896, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -201870,7 +201872,7 @@ }, { "type_name": "CNamedCooldownsDataOps", - "vtable_address": 6462354856, + "vtable_address": 6462354888, "methods": [ 6451671136, 6451671536, @@ -201922,21 +201924,21 @@ "type_name": "CNavArea", "vtable_address": 6463611704, "methods": [ - 6458044432, - 6458028272, - 6458099168, - 6458118240, - 6458120928, - 6458120112, - 6458116480, - 6458068784, - 6458048224, - 6458061280, + 6458044448, + 6458028288, + 6458099184, + 6458118256, + 6458120944, + 6458120128, + 6458116496, + 6458068800, + 6458048240, + 6458061296, 6445353520, 6445353488, 6445353456, - 6458118848, - 6458116624, + 6458118864, + 6458116640, 6445336416 ], "bases": [ @@ -201966,14 +201968,14 @@ }, { "type_name": "CNavAreaBuildPathTest", - "vtable_address": 6463122272, + "vtable_address": 6463122304, "methods": [ - 6454973152, - 6455009888, - 6455009824, - 6455009856, - 6454973184, - 6455003808 + 6454973168, + 6455009904, + 6455009840, + 6455009872, + 6454973200, + 6455003824 ], "bases": [ { @@ -202002,11 +202004,11 @@ }, { "type_name": "CNavAttributeObstacle", - "vtable_address": 6463109512, + "vtable_address": 6463109544, "methods": [ - 6454732192, - 6454730224, - 6454669456 + 6454732208, + 6454730240, + 6454669472 ], "bases": [ { @@ -202035,10 +202037,10 @@ }, { "type_name": "CNavChangeMgr", - "vtable_address": 6463108912, + "vtable_address": 6463108944, "methods": [ - 6454775408, - 6454775376 + 6454775424, + 6454775392 ], "bases": [ { @@ -202067,22 +202069,22 @@ }, { "type_name": "CNavDraw", - "vtable_address": 6463108576, - "methods": [ - 6454702656, - 6454702448, - 6454707504, - 6454694944, - 6454694736, - 6454707712, - 6454707360, - 6454405552, - 6454419776, - 6454415024, - 6454415680, - 6454428192, - 6454695088, - 6454702320 + "vtable_address": 6463108608, + "methods": [ + 6454702672, + 6454702464, + 6454707520, + 6454694960, + 6454694752, + 6454707728, + 6454707376, + 6454405568, + 6454419792, + 6454415040, + 6454415696, + 6454428208, + 6454695104, + 6454702336 ], "bases": [ { @@ -202111,12 +202113,12 @@ }, { "type_name": "CNavDrawArea", - "vtable_address": 6463108696, + "vtable_address": 6463108728, "methods": [ - 6454425744, - 6454426208, - 6454410960, - 6454418928 + 6454425760, + 6454426224, + 6454410976, + 6454418944 ], "bases": [ { @@ -202145,9 +202147,9 @@ }, { "type_name": "CNavDrawMesh", - "vtable_address": 6463108736, + "vtable_address": 6463108768, "methods": [ - 6454419024 + 6454419040 ], "bases": [ { @@ -202176,12 +202178,12 @@ }, { "type_name": "CNavDynamicConnectionsManager", - "vtable_address": 6463095736, + "vtable_address": 6463095768, "methods": [ - 6454359824, - 6454469904, - 6454470240, - 6454464224 + 6454359840, + 6454469920, + 6454470256, + 6454464240 ], "bases": [ { @@ -202210,21 +202212,21 @@ }, { "type_name": "CNavEditObstacle", - "vtable_address": 6463095848, + "vtable_address": 6463095880, "methods": [ - 6454360000, + 6454360016, 6446995280, 6447001312, - 6454463648, - 6454464032, + 6454463664, + 6454464048, 6446989760, - 6454441376, - 6454448736, + 6454441392, + 6454448752, 6446998240, - 6454368336, - 6454448720, - 6454442272, - 6454487616, + 6454368352, + 6454448736, + 6454442288, + 6454487632, 6446995232 ], "bases": [ @@ -202254,12 +202256,12 @@ }, { "type_name": "CNavEditor", - "vtable_address": 6463094832, + "vtable_address": 6463094864, "methods": [ - 6454468752, - 6454495280, - 6454477168, - 6454374272 + 6454468768, + 6454495296, + 6454477184, + 6454374288 ], "bases": [ { @@ -202288,10 +202290,10 @@ }, { "type_name": "CNavEntityInterface", - "vtable_address": 6463108792, + "vtable_address": 6463108824, "methods": [ - 6454612336, - 6454469408 + 6454612352, + 6454469424 ], "bases": [ { @@ -202320,13 +202322,13 @@ }, { "type_name": "CNavGameSystem", - "vtable_address": 6463094872, + "vtable_address": 6463094904, "methods": [ 6443752688, 6443767152, 6443774928, - 6454437408, - 6454437488, + 6454437424, + 6454437504, 6443744688, 6443744704, 6443740176, @@ -202337,11 +202339,11 @@ 6443744592, 6443775920, 6443775936, - 6454473088, - 6454471776, + 6454473104, + 6454471792, 6443767360, - 6454472512, - 6454362880, + 6454472528, + 6454362896, 6443767136, 6443767296, 6443767264, @@ -202370,7 +202372,7 @@ 6443744512, 6443767088, 6443773872, - 6454480656, + 6454480672, 6443774944, 6443778112, 6443778128, @@ -202378,11 +202380,11 @@ 6443767168, 6443766528, 6443750640, - 6454487504, + 6454487520, 6443774720, - 6454405536, - 6454360048, - 6454515408 + 6454405552, + 6454360064, + 6454515424 ], "bases": [ { @@ -202411,20 +202413,20 @@ }, { "type_name": "CNavGameTest", - "vtable_address": 6463121272, + "vtable_address": 6463121304, "methods": [ - 6454906752, - 6454906992, - 6454906672, - 6454906880, - 6454906912, + 6454906768, + 6454907008, 6454906688, + 6454906896, + 6454906928, 6454906704, - 6454907248, - 6454906816, 6454906720, + 6454907264, + 6454906832, 6454906736, - 6454907264 + 6454906752, + 6454907280 ], "bases": [ { @@ -202539,13 +202541,13 @@ "type_name": "CNavGenOrientedMeshTile", "vtable_address": 6463628256, "methods": [ - 6458635776, - 6454366656, - 6454476304, - 6454395872, - 6454487440, - 6458636176, - 6454398384 + 6458635792, + 6454366672, + 6454476320, + 6454395888, + 6454487456, + 6458636192, + 6454398400 ], "bases": [ { @@ -202618,8 +202620,8 @@ "type_name": "CNavGenPolyProcessorStage1", "vtable_address": 6463618880, "methods": [ - 6458427040, - 6458428240 + 6458427056, + 6458428256 ], "bases": [ { @@ -202650,8 +202652,8 @@ "type_name": "CNavGenPolyProcessorStage2", "vtable_address": 6463618904, "methods": [ - 6458427168, - 6458428288 + 6458427184, + 6458428304 ], "bases": [ { @@ -202682,8 +202684,8 @@ "type_name": "CNavGenPolyProcessorStageBase", "vtable_address": 6463618856, "methods": [ - 6458427296, - 6459886716 + 6458427312, + 6459886732 ], "bases": [], "model": { @@ -202699,13 +202701,13 @@ "type_name": "CNavGenRecastTile", "vtable_address": 6463626904, "methods": [ - 6458615968, - 6454366656, - 6454476304, - 6454395872, - 6454487440, - 6458617088, - 6454398384 + 6458615984, + 6454366672, + 6454476320, + 6454395888, + 6454487456, + 6458617104, + 6454398400 ], "bases": [ { @@ -202776,15 +202778,15 @@ }, { "type_name": "CNavGenRtJob", - "vtable_address": 6463095632, + "vtable_address": 6463095664, "methods": [ - 6454360160, - 6454366656, - 6454476304, - 6454395872, - 6454487440, - 6454398400, - 6454398384 + 6454360176, + 6454366672, + 6454476320, + 6454395888, + 6454487456, + 6454398416, + 6454398400 ], "bases": [ { @@ -202858,14 +202860,14 @@ "vtable_address": 6463609872, "methods": [ 6445800160, - 6459504336, + 6459504352, 6445800528, - 6458097376, + 6458097392, 6450552640, - 6458091232, - 6458084160, - 6458078320, - 6458091200 + 6458091248, + 6458084176, + 6458078336, + 6458091216 ], "bases": [ { @@ -202939,14 +202941,14 @@ "vtable_address": 6463609696, "methods": [ 6445800160, - 6459504336, + 6459504352, 6445800528, - 6458097504, + 6458097520, 6450552640, - 6458092656, - 6458084176, - 6458078944, - 6458091216 + 6458092672, + 6458084192, + 6458078960, + 6458091232 ], "bases": [ { @@ -203017,20 +203019,20 @@ }, { "type_name": "CNavLinkAreaEntity", - "vtable_address": 6461324544, + "vtable_address": 6461324528, "methods": [ 6445499872, 6447066752, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, - 6454490272, - 6456887568, - 6456894000, + 6454490288, + 6456887584, 6456894016, - 6454362080, - 6454498912, + 6456894032, + 6454362096, + 6454498928, 6451865168, 6451818320, 6451744928, @@ -203058,8 +203060,8 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454439232, + 6456895872, + 6454439248, 6447071504, 6447071600, 6443738704, @@ -203318,12 +203320,12 @@ }, { "type_name": "CNavLinkManager", - "vtable_address": 6463095560, + "vtable_address": 6463095592, "methods": [ - 6454473376, - 6454467120, - 6454464240, - 6454465632 + 6454473392, + 6454467136, + 6454464256, + 6454465648 ], "bases": [ { @@ -203352,10 +203354,10 @@ }, { "type_name": "CNavLinkMovementDataSchema", - "vtable_address": 6463095600, + "vtable_address": 6463095632, "methods": [ 6445800160, - 6454469072, + 6454469088, 6445800528 ], "bases": [ @@ -203385,11 +203387,11 @@ }, { "type_name": "CNavMarkupManager", - "vtable_address": 6463095464, + "vtable_address": 6463095496, "methods": [ - 6454360544, - 6454469920, - 6454470256 + 6454360560, + 6454469936, + 6454470272 ], "bases": [ { @@ -203420,33 +203422,33 @@ "type_name": "CNavMesh", "vtable_address": 6463604384, "methods": [ - 6457956256, + 6457956272, 6445353824, 6445356800, - 6457965200, - 6457966736, - 6457966976, - 6458014416, - 6458001760, - 6457996768, - 6457996896, - 6458010832, - 6458056592, - 6458061744, + 6457965216, + 6457966752, + 6457966992, + 6458014432, + 6458001776, + 6457996784, + 6457996912, + 6458010848, + 6458056608, + 6458061760, 6445353792, - 6457991136, - 6458002688, - 6457993664, + 6457991152, + 6458002704, + 6457993680, 6445355120, 6445348832, - 6457959456, - 6457996704, - 6457996672, + 6457959472, + 6457996720, + 6457996688, 6445320816, - 6457958080, - 6457999536, - 6457998688, - 6458002704, + 6457958096, + 6457999552, + 6457998704, + 6458002720, 6445355168, 6445350848, 6445355136, @@ -203467,10 +203469,10 @@ }, { "type_name": "CNavMeshGameEventListener", - "vtable_address": 6463102168, + "vtable_address": 6463102200, "methods": [ - 6454360608, - 6454436672 + 6454360624, + 6454436688 ], "bases": [ { @@ -203527,9 +203529,9 @@ }, { "type_name": "CNavMeshGameEventListener", - "vtable_address": 6463102192, + "vtable_address": 6463102224, "methods": [ - 6454469040 + 6454469056 ], "bases": [ { @@ -203586,25 +203588,25 @@ }, { "type_name": "CNavObstacleAvoidMgr", - "vtable_address": 6463109080, + "vtable_address": 6463109112, "methods": [ - 6454776208, - 6454775392, - 6454874832, - 6454881408, - 6454670976, - 6454777168, + 6454776224, + 6454775408, + 6454874848, + 6454881424, + 6454670992, + 6454777184, + 6454783776, + 6454784288, + 6454785104, + 6454785136, 6454783760, - 6454784272, - 6454785088, - 6454785120, - 6454783744, - 6454780896, - 6454772432, - 6454777152, - 6454796336, - 6454832064, - 6454764128 + 6454780912, + 6454772448, + 6454777168, + 6454796352, + 6454832080, + 6454764144 ], "bases": [ { @@ -203647,25 +203649,25 @@ }, { "type_name": "CNavObstacleConnectionMgr", - "vtable_address": 6463109224, + "vtable_address": 6463109256, "methods": [ - 6454775424, - 6454775392, - 6454874912, - 6454881504, - 6454671472, - 6454777488, - 6454784256, - 6454785056, - 6454785088, - 6454785120, - 6454783744, - 6454781184, - 6454772432, - 6454777152, - 6454796496, - 6454832384, - 6454764128 + 6454775440, + 6454775408, + 6454874928, + 6454881520, + 6454671488, + 6454777504, + 6454784272, + 6454785072, + 6454785104, + 6454785136, + 6454783760, + 6454781200, + 6454772448, + 6454777168, + 6454796512, + 6454832400, + 6454764144 ], "bases": [ { @@ -203708,23 +203710,23 @@ }, { "type_name": "CNavObstacleEntity", - "vtable_address": 6462220216, + "vtable_address": 6462220248, "methods": [ 6450642624, - 6454731568, - 6454770816, - 6454770960, - 6454771632, - 6454672512, - 6454732224, - 6454751552, + 6454731584, + 6454770832, + 6454770976, + 6454771648, + 6454672528, + 6454732240, + 6454751568, 6446998240, - 6454624816, - 6454751264, - 6454734640, - 6454846752, - 6454731280, - 6454734784 + 6454624832, + 6454751280, + 6454734656, + 6454846768, + 6454731296, + 6454734800 ], "bases": [ { @@ -203753,22 +203755,22 @@ }, { "type_name": "CNavObstacleEntityDoor", - "vtable_address": 6462393248, + "vtable_address": 6462393280, "methods": [ 6451744384, - 6454731568, - 6454770816, - 6454770960, + 6454731584, + 6454770832, + 6454770976, 6451862672, - 6454672512, - 6454732224, + 6454672528, + 6454732240, 6451842736, 6446998240, - 6454624816, - 6454751264, - 6454734640, - 6454846752, - 6454731280, + 6454624832, + 6454751280, + 6454734656, + 6454846768, + 6454731296, 6451826720 ], "bases": [ @@ -203812,25 +203814,25 @@ }, { "type_name": "CNavObstacleSplitMgr", - "vtable_address": 6463109608, + "vtable_address": 6463109640, "methods": [ - 6454775760, - 6454772448, - 6454875008, - 6454881600, - 6454672912, - 6454777264, - 6454784128, - 6454784848, - 6454785088, - 6454785120, - 6454783744, - 6454781328, - 6454771648, - 6454777152, - 6454797136, - 6454832160, - 6454759648 + 6454775776, + 6454772464, + 6454875024, + 6454881616, + 6454672928, + 6454777280, + 6454784144, + 6454784864, + 6454785104, + 6454785136, + 6454783760, + 6454781344, + 6454771664, + 6454777168, + 6454797152, + 6454832176, + 6454759664 ], "bases": [ { @@ -203887,11 +203889,11 @@ }, { "type_name": "CNavObstacleSplitMgr", - "vtable_address": 6463109752, + "vtable_address": 6463109784, "methods": [ - 6454616816, - 6454815744, - 6454885392 + 6454616832, + 6454815760, + 6454885408 ], "bases": [ { @@ -203948,25 +203950,25 @@ }, { "type_name": "CNavObstructionManager", - "vtable_address": 6463108936, - "methods": [ - 6454776128, - 6454775264, - 6454875088, - 6454881712, - 6454675520, - 6454777280, - 6454784144, - 6454784864, - 6454785072, - 6454785104, - 6454783536, - 6454781536, - 6454772352, - 6454776224, - 6454797904, - 6454832176, - 6454764032 + "vtable_address": 6463108968, + "methods": [ + 6454776144, + 6454775280, + 6454875104, + 6454881728, + 6454675536, + 6454777296, + 6454784160, + 6454784880, + 6454785088, + 6454785120, + 6454783552, + 6454781552, + 6454772368, + 6454776240, + 6454797920, + 6454832192, + 6454764048 ], "bases": [ { @@ -204009,11 +204011,11 @@ }, { "type_name": "CNavOverlapMgr", - "vtable_address": 6463109576, + "vtable_address": 6463109608, "methods": [ - 6459886716, - 6454815872, - 6454885728 + 6459886732, + 6454815888, + 6454885744 ], "bases": [], "model": { @@ -204032,14 +204034,14 @@ 6444614208, 6444708928, 6444685088, - 6458122208, + 6458122224, 6444619648, - 6458123984, - 6458124256, + 6458124000, + 6458124272, 6444673408, - 6458122304, - 6458121488, - 6458121920 + 6458122320, + 6458121504, + 6458121936 ], "bases": [ { @@ -204068,19 +204070,19 @@ }, { "type_name": "CNavPathCostForTests", - "vtable_address": 6463122176, + "vtable_address": 6463122208, "methods": [ - 6454945776, + 6454945792, 6444708928, 6444685088, - 6458122208, + 6458122224, 6444619648, - 6458123984, - 6458124256, + 6458124000, + 6458124272, 6444673408, - 6458122304, - 6454952320, - 6458121920 + 6458122320, + 6454952336, + 6458121936 ], "bases": [ { @@ -204126,17 +204128,17 @@ "vtable_address": 6460740800, "methods": [ 6445050048, - 6454749968, + 6454749984, 6444685088, - 6454750288, - 6454624832, - 6458123984, - 6458124256, - 6454729600, - 6454751840, - 6458121488, - 6458121920, - 6454749952 + 6454750304, + 6454624848, + 6458124000, + 6458124272, + 6454729616, + 6454751856, + 6458121504, + 6458121936, + 6454749968 ], "bases": [ { @@ -204182,9 +204184,9 @@ "vtable_address": 6460699560, "methods": [ 6444614256, - 6454749904, + 6454749920, 6444753120, - 6454704304 + 6454704320 ], "bases": [], "model": { @@ -204198,17 +204200,17 @@ }, { "type_name": "CNavPhysicsInterface", - "vtable_address": 6463108816, + "vtable_address": 6463108848, "methods": [ - 6454612384, - 6454765232, - 6454765408, - 6454765824, - 6454765952, - 6454765184, - 6454461168, - 6454462816, - 6454462784 + 6454612400, + 6454765248, + 6454765424, + 6454765840, + 6454765968, + 6454765200, + 6454461184, + 6454462832, + 6454462800 ], "bases": [ { @@ -204239,8 +204241,8 @@ "type_name": "CNavPoly", "vtable_address": 6463608472, "methods": [ - 6458044432, - 6458028272 + 6458044448, + 6458028288 ], "bases": [], "model": { @@ -204256,13 +204258,13 @@ "type_name": "CNavSpace", "vtable_address": 6463612928, "methods": [ - 6458184304, - 6458200528, - 6458200192, + 6458184320, + 6458200544, 6458200208, - 6458188416, - 6458189056, - 6454966096 + 6458200224, + 6458188432, + 6458189072, + 6454966112 ], "bases": [], "model": { @@ -204276,12 +204278,12 @@ }, { "type_name": "CNavSpaceBuildLocker", - "vtable_address": 6463120664, + "vtable_address": 6463120696, "methods": [ 6443752688, 6443767152, 6443774928, - 6454906400, + 6454906416, 6443744784, 6443744688, 6443744704, @@ -204308,7 +204310,7 @@ 6443777296, 6443767312, 6443767184, - 6454906592, + 6454906608, 6443744528, 6443744544, 6443767232, @@ -204317,8 +204319,8 @@ 6443766896, 6443766448, 6443766880, - 6454906464, - 6454906528, + 6454906480, + 6454906544, 6443766832, 6443766400, 6443766464, @@ -204334,11 +204336,11 @@ 6443767168, 6443766528, 6443750640, - 6454906368, + 6454906384, 6443774720, - 6454906352, - 6454906608, - 6454906336 + 6454906368, + 6454906624, + 6454906352 ], "bases": [ { @@ -204369,13 +204371,13 @@ "type_name": "CNavSpaceBuildTreeJob", "vtable_address": 6463622184, "methods": [ - 6458543776, - 6454366656, - 6454476304, - 6454395872, - 6454487440, - 6458544832, - 6454398384 + 6458543792, + 6454366672, + 6454476320, + 6454395888, + 6454487456, + 6458544848, + 6454398400 ], "bases": [ { @@ -204448,13 +204450,13 @@ "type_name": "CNavSpaceCalcBlocksJob", "vtable_address": 6463622248, "methods": [ - 6458543920, - 6454366656, - 6454476304, - 6454395872, - 6454487440, - 6458545296, - 6454398384 + 6458543936, + 6454366672, + 6454476320, + 6454395888, + 6454487456, + 6458545312, + 6454398400 ], "bases": [ { @@ -204525,15 +204527,15 @@ }, { "type_name": "CNavSpaceGame", - "vtable_address": 6463121760, - "methods": [ - 6454945936, - 6455016176, - 6454981712, - 6454981744, - 6454961280, - 6454962064, - 6454966112 + "vtable_address": 6463121792, + "methods": [ + 6454945952, + 6455016192, + 6454981728, + 6454981760, + 6454961296, + 6454962080, + 6454966128 ], "bases": [ { @@ -204562,18 +204564,18 @@ }, { "type_name": "CNavSpaceInfo", - "vtable_address": 6461326496, + "vtable_address": 6461326480, "methods": [ 6445499872, 6447067008, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -204603,8 +204605,8 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454973312, + 6456895872, + 6454973328, 6447071520, 6447071648, 6443738704, @@ -204863,11 +204865,11 @@ }, { "type_name": "CNavSplitBlockMgr", - "vtable_address": 6463109784, + "vtable_address": 6463109816, "methods": [ - 6454617280, - 6454815872, - 6454885728 + 6454617296, + 6454815888, + 6454885744 ], "bases": [ { @@ -204896,25 +204898,25 @@ }, { "type_name": "CNavTacticalSearchAnnotationMgr", - "vtable_address": 6463109368, - "methods": [ - 6454776208, - 6454775392, - 6454875744, - 6454881920, - 6454677488, - 6454777472, - 6454784256, - 6454785056, - 6454785088, - 6454785120, - 6454783744, - 6454782032, - 6454772432, - 6454776512, - 6454797968, - 6454832368, - 6454764128 + "vtable_address": 6463109400, + "methods": [ + 6454776224, + 6454775408, + 6454875760, + 6454881936, + 6454677504, + 6454777488, + 6454784272, + 6454785072, + 6454785104, + 6454785136, + 6454783760, + 6454782048, + 6454772448, + 6454776528, + 6454797984, + 6454832384, + 6454764144 ], "bases": [ { @@ -204960,13 +204962,13 @@ "vtable_address": 6460793840, "methods": [ 6445316720, - 6458179264, - 6458179360, - 6458179504, - 6458179568, - 6458178816, - 6458178784, + 6458179280, + 6458179376, + 6458179520, + 6458179584, + 6458178832, 6458178800, + 6458178816, 6445316704 ], "bases": [ @@ -204996,19 +204998,19 @@ }, { "type_name": "CNavVolume", - "vtable_address": 6463095368, - "methods": [ - 6454487088, - 6454360720, - 6459886716, - 6458471312, - 6458471024, - 6458470720, - 6459886716, - 6459886716, - 6459886716, - 6458469312, - 6459886716 + "vtable_address": 6463095400, + "methods": [ + 6454487104, + 6454360736, + 6459886732, + 6458471328, + 6458471040, + 6458470736, + 6459886732, + 6459886732, + 6459886732, + 6458469328, + 6459886732 ], "bases": [], "model": { @@ -205022,19 +205024,19 @@ }, { "type_name": "CNavVolumeMarkupVolume", - "vtable_address": 6463121664, - "methods": [ - 6455009360, - 6454946176, - 6454981840, - 6458471312, - 6458471024, - 6458470720, - 6454960128, - 6454973328, - 6454981776, - 6458469312, - 6454966560 + "vtable_address": 6463121696, + "methods": [ + 6455009376, + 6454946192, + 6454981856, + 6458471328, + 6458471040, + 6458470736, + 6454960144, + 6454973344, + 6454981792, + 6458469328, + 6454966576 ], "bases": [ { @@ -205063,18 +205065,18 @@ }, { "type_name": "CNavWalkable", - "vtable_address": 6461320392, + "vtable_address": 6461320376, "methods": [ 6445499872, 6447067072, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -205104,8 +205106,8 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454439248, + 6456895872, + 6454439264, 6447071536, 6447071696, 6443738704, @@ -205367,10 +205369,10 @@ "vtable_address": 6460490088, "methods": [ 6443736032, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -205384,7 +205386,7 @@ }, { "type_name": "CNetMessagePB<101,class CUserMessageAchievementEvent,13,1,1>", - "vtable_address": 6462174224, + "vtable_address": 6462174256, "methods": [ 6450309200, 6450331392, @@ -205461,22 +205463,22 @@ }, { "type_name": "CNetMessagePB<101,class CUserMessageAchievementEvent,13,1,1>", - "vtable_address": 6462174272, + "vtable_address": 6462174304, "methods": [ 6450308012, - 6455181760, + 6455181776, 6448270480, 6448272016, 6448272048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448272080, 6448273280, 6448272560, 6443766512, 6448273104, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448274720, 6448277856, 6448277824 @@ -205550,7 +205552,7 @@ }, { "type_name": "CNetMessagePB<101,class CUserMessageAchievementEvent,13,1,1>::CProtobufBinding", - "vtable_address": 6462179768, + "vtable_address": 6462179800, "methods": [ 6450395840, 6450402000, @@ -205589,7 +205591,7 @@ }, { "type_name": "CNetMessagePB<102,class CUserMessageCloseCaption,13,1,1>", - "vtable_address": 6462329136, + "vtable_address": 6462329200, "methods": [ 6451506304, 6451506048, @@ -205666,22 +205668,22 @@ }, { "type_name": "CNetMessagePB<102,class CUserMessageCloseCaption,13,1,1>", - "vtable_address": 6462329184, + "vtable_address": 6462329248, "methods": [ 6451510644, - 6455181760, + 6455181776, 6448289360, 6448289616, 6448289664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448289680, 6448291248, 6448290160, 6443766512, 6448290928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448291280, 6448291408, 6448291392 @@ -205755,7 +205757,7 @@ }, { "type_name": "CNetMessagePB<102,class CUserMessageCloseCaption,13,1,1>::CProtobufBinding", - "vtable_address": 6462324424, + "vtable_address": 6462324488, "methods": [ 6451470256, 6451470240, @@ -205794,7 +205796,7 @@ }, { "type_name": "CNetMessagePB<103,class CUserMessageCloseCaptionDirect,13,1,1>", - "vtable_address": 6462329328, + "vtable_address": 6462329392, "methods": [ 6451506672, 6451506416, @@ -205871,22 +205873,22 @@ }, { "type_name": "CNetMessagePB<103,class CUserMessageCloseCaptionDirect,13,1,1>", - "vtable_address": 6462329376, + "vtable_address": 6462329440, "methods": [ 6451510656, - 6455181760, + 6455181776, 6448305584, 6448305936, 6448306000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448306016, 6448307520, 6448306192, 6443766512, 6448306768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448308752, 6448309344, 6448309312 @@ -205960,7 +205962,7 @@ }, { "type_name": "CNetMessagePB<103,class CUserMessageCloseCaptionDirect,13,1,1>::CProtobufBinding", - "vtable_address": 6462324344, + "vtable_address": 6462324408, "methods": [ 6451468512, 6451468496, @@ -205999,7 +206001,7 @@ }, { "type_name": "CNetMessagePB<104,class CUserMessageCurrentTimescale,13,1,1>", - "vtable_address": 6462325784, + "vtable_address": 6462325848, "methods": [ 6451499920, 6451499664, @@ -206076,22 +206078,22 @@ }, { "type_name": "CNetMessagePB<104,class CUserMessageCurrentTimescale,13,1,1>", - "vtable_address": 6462325832, + "vtable_address": 6462325896, "methods": [ 6451509248, - 6455181760, + 6455181776, 6448340000, 6448340224, 6448340256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448340288, 6448340752, 6448340320, 6443766512, 6448340640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448341104, 6448341856, 6448341840 @@ -206165,7 +206167,7 @@ }, { "type_name": "CNetMessagePB<104,class CUserMessageCurrentTimescale,13,1,1>::CProtobufBinding", - "vtable_address": 6462325704, + "vtable_address": 6462325768, "methods": [ 6451498192, 6451498176, @@ -206204,7 +206206,7 @@ }, { "type_name": "CNetMessagePB<105,class CUserMessageDesiredTimescale,13,1,1>", - "vtable_address": 6462325976, + "vtable_address": 6462326040, "methods": [ 6451500288, 6451500032, @@ -206281,22 +206283,22 @@ }, { "type_name": "CNetMessagePB<105,class CUserMessageDesiredTimescale,13,1,1>", - "vtable_address": 6462326024, + "vtable_address": 6462326088, "methods": [ 6451509352, - 6455181760, + 6455181776, 6448356640, 6448357488, 6448357536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448357552, 6448358464, 6448357632, 6443766512, 6448358224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448358560, 6448358816, 6448358800 @@ -206370,7 +206372,7 @@ }, { "type_name": "CNetMessagePB<105,class CUserMessageDesiredTimescale,13,1,1>::CProtobufBinding", - "vtable_address": 6462325624, + "vtable_address": 6462325688, "methods": [ 6451496448, 6451496432, @@ -206409,7 +206411,7 @@ }, { "type_name": "CNetMessagePB<106,class CUserMessageFade,13,1,1>", - "vtable_address": 6462328368, + "vtable_address": 6462328432, "methods": [ 6451504832, 6451504576, @@ -206486,22 +206488,22 @@ }, { "type_name": "CNetMessagePB<106,class CUserMessageFade,13,1,1>", - "vtable_address": 6462328416, + "vtable_address": 6462328480, "methods": [ 6451510228, - 6455181760, + 6455181776, 6448383552, 6448383824, 6448383856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448383872, 6448385184, 6448384048, 6443766512, 6448384768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448385648, 6448387216, 6448386768 @@ -206575,7 +206577,7 @@ }, { "type_name": "CNetMessagePB<106,class CUserMessageFade,13,1,1>::CProtobufBinding", - "vtable_address": 6462324744, + "vtable_address": 6462324808, "methods": [ 6451477232, 6451477216, @@ -206614,7 +206616,7 @@ }, { "type_name": "CNetMessagePB<110,class CUserMessageHudMsg,13,1,1>", - "vtable_address": 6462330096, + "vtable_address": 6462330160, "methods": [ 6451508144, 6451507888, @@ -206691,22 +206693,22 @@ }, { "type_name": "CNetMessagePB<110,class CUserMessageHudMsg,13,1,1>", - "vtable_address": 6462330144, + "vtable_address": 6462330208, "methods": [ 6451511076, - 6455181760, + 6455181776, 6448475824, 6448476032, 6448476112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448476128, 6448477552, 6448476320, 6443766512, 6448477088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448477584, 6448477856, 6448477840 @@ -206780,7 +206782,7 @@ }, { "type_name": "CNetMessagePB<110,class CUserMessageHudMsg,13,1,1>::CProtobufBinding", - "vtable_address": 6462324024, + "vtable_address": 6462324088, "methods": [ 6451461520, 6451461504, @@ -206819,7 +206821,7 @@ }, { "type_name": "CNetMessagePB<111,class CUserMessageHudText,13,1,1>", - "vtable_address": 6462330288, + "vtable_address": 6462330352, "methods": [ 6451508512, 6451508256, @@ -206896,22 +206898,22 @@ }, { "type_name": "CNetMessagePB<111,class CUserMessageHudText,13,1,1>", - "vtable_address": 6462330336, + "vtable_address": 6462330400, "methods": [ 6451511088, - 6455181760, + 6455181776, 6448489712, 6448490016, 6448490080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448490096, 6448490640, 6448490160, 6443766512, 6448490528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448490656, 6448490688, 6448490672 @@ -206985,7 +206987,7 @@ }, { "type_name": "CNetMessagePB<111,class CUserMessageHudText,13,1,1>::CProtobufBinding", - "vtable_address": 6462323944, + "vtable_address": 6462324008, "methods": [ 6451459776, 6451459760, @@ -207024,7 +207026,7 @@ }, { "type_name": "CNetMessagePB<113,class CUserMessageColoredText,13,1,1>", - "vtable_address": 6462327216, + "vtable_address": 6462327280, "methods": [ 6451502992, 6451502736, @@ -207101,22 +207103,22 @@ }, { "type_name": "CNetMessagePB<113,class CUserMessageColoredText,13,1,1>", - "vtable_address": 6462327264, + "vtable_address": 6462327328, "methods": [ 6451509792, - 6455181760, + 6455181776, 6447984736, 6447985760, 6447985856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447985888, 6447987616, 6447986112, 6443766512, 6447987056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447988864, 6447994768, 6447994592 @@ -207190,7 +207192,7 @@ }, { "type_name": "CNetMessagePB<113,class CUserMessageColoredText,13,1,1>::CProtobufBinding", - "vtable_address": 6462325144, + "vtable_address": 6462325208, "methods": [ 6451485952, 6451485936, @@ -207229,7 +207231,7 @@ }, { "type_name": "CNetMessagePB<114,class CUserMessageRequestState,13,1,1>", - "vtable_address": 6462326168, + "vtable_address": 6462326232, "methods": [ 6451500656, 6451500400, @@ -207320,22 +207322,22 @@ }, { "type_name": "CNetMessagePB<114,class CUserMessageRequestState,13,1,1>", - "vtable_address": 6462326216, + "vtable_address": 6462326280, "methods": [ 6451509364, - 6455181760, + 6455181776, 6448552576, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448552608, 6448552592 @@ -207423,7 +207425,7 @@ }, { "type_name": "CNetMessagePB<114,class CUserMessageRequestState,13,1,1>::CProtobufBinding", - "vtable_address": 6462325544, + "vtable_address": 6462325608, "methods": [ 6451494704, 6451494688, @@ -207462,7 +207464,7 @@ }, { "type_name": "CNetMessagePB<115,class CUserMessageResetHUD,13,1,1>", - "vtable_address": 6462330480, + "vtable_address": 6462330544, "methods": [ 6451508880, 6451508624, @@ -207553,22 +207555,22 @@ }, { "type_name": "CNetMessagePB<115,class CUserMessageResetHUD,13,1,1>", - "vtable_address": 6462330528, + "vtable_address": 6462330592, "methods": [ 6451511100, - 6455181760, + 6455181776, 6448519392, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448519568, 6448519552 @@ -207656,7 +207658,7 @@ }, { "type_name": "CNetMessagePB<115,class CUserMessageResetHUD,13,1,1>::CProtobufBinding", - "vtable_address": 6462323864, + "vtable_address": 6462323928, "methods": [ 6451458032, 6451458016, @@ -207695,7 +207697,7 @@ }, { "type_name": "CNetMessagePB<116,class CUserMessageRumble,13,1,1>", - "vtable_address": 6462328560, + "vtable_address": 6462328624, "methods": [ 6451505200, 6451504944, @@ -207772,22 +207774,22 @@ }, { "type_name": "CNetMessagePB<116,class CUserMessageRumble,13,1,1>", - "vtable_address": 6462328608, + "vtable_address": 6462328672, "methods": [ 6451510240, - 6455181760, + 6455181776, 6448560304, 6448560416, 6448560464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448560480, 6448561696, 6448560624, 6443766512, 6448561232, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448561808, 6448562512, 6448562464 @@ -207861,7 +207863,7 @@ }, { "type_name": "CNetMessagePB<116,class CUserMessageRumble,13,1,1>::CProtobufBinding", - "vtable_address": 6462324664, + "vtable_address": 6462324728, "methods": [ 6451475488, 6451475472, @@ -207900,7 +207902,7 @@ }, { "type_name": "CNetMessagePB<117,class CUserMessageSayText,13,1,1>", - "vtable_address": 6462327000, + "vtable_address": 6462327064, "methods": [ 6451502384, 6451502128, @@ -207977,22 +207979,22 @@ }, { "type_name": "CNetMessagePB<117,class CUserMessageSayText,13,1,1>", - "vtable_address": 6462327048, + "vtable_address": 6462327112, "methods": [ 6451509780, - 6455181760, + 6455181776, 6448449232, 6448450032, 6448450112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448450144, 6448451120, 6448450272, 6443766512, 6448450864, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448451216, 6448451552, 6448451536 @@ -208066,7 +208068,7 @@ }, { "type_name": "CNetMessagePB<117,class CUserMessageSayText,13,1,1>::CProtobufBinding", - "vtable_address": 6462325224, + "vtable_address": 6462325288, "methods": [ 6451487712, 6451487696, @@ -208105,7 +208107,7 @@ }, { "type_name": "CNetMessagePB<118,class CUserMessageSayText2,13,1,1>", - "vtable_address": 6462263968, + "vtable_address": 6462264000, "methods": [ 6450882352, 6450882096, @@ -208182,22 +208184,22 @@ }, { "type_name": "CNetMessagePB<118,class CUserMessageSayText2,13,1,1>", - "vtable_address": 6462264016, + "vtable_address": 6462264048, "methods": [ 6450890604, - 6455181760, + 6455181776, 6448460304, 6448460720, 6448460928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448460960, 6448463344, 6448461536, 6443766512, 6448462512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448463808, 6448464656, 6448464640 @@ -208271,7 +208273,7 @@ }, { "type_name": "CNetMessagePB<118,class CUserMessageSayText2,13,1,1>::CProtobufBinding", - "vtable_address": 6462262536, + "vtable_address": 6462262568, "methods": [ 6450879408, 6450879392, @@ -208310,7 +208312,7 @@ }, { "type_name": "CNetMessagePB<119,class CUserMessageSayTextChannel,13,1,1>", - "vtable_address": 6462327552, + "vtable_address": 6462327616, "methods": [ 6451503360, 6451503104, @@ -208387,22 +208389,22 @@ }, { "type_name": "CNetMessagePB<119,class CUserMessageSayTextChannel,13,1,1>", - "vtable_address": 6462327600, + "vtable_address": 6462327664, "methods": [ 6451509804, - 6455181760, + 6455181776, 6447973408, 6447974688, 6447974768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447974864, 6447976464, 6447975120, 6443766512, 6447976128, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447976720, 6447976864, 6447976848 @@ -208476,7 +208478,7 @@ }, { "type_name": "CNetMessagePB<119,class CUserMessageSayTextChannel,13,1,1>::CProtobufBinding", - "vtable_address": 6462325064, + "vtable_address": 6462325128, "methods": [ 6451484208, 6451484192, @@ -208515,7 +208517,7 @@ }, { "type_name": "CNetMessagePB<120,class CUserMessageShake,13,1,1>", - "vtable_address": 6462327744, + "vtable_address": 6462327808, "methods": [ 6451503728, 6451503472, @@ -208592,22 +208594,22 @@ }, { "type_name": "CNetMessagePB<120,class CUserMessageShake,13,1,1>", - "vtable_address": 6462327792, + "vtable_address": 6462327856, "methods": [ 6451509816, - 6455181760, + 6455181776, 6448392272, 6448392480, 6448392512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448392528, 6448394304, 6448392880, 6443766512, 6448393504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448394608, 6448395408, 6448394992 @@ -208681,7 +208683,7 @@ }, { "type_name": "CNetMessagePB<120,class CUserMessageShake,13,1,1>::CProtobufBinding", - "vtable_address": 6462324984, + "vtable_address": 6462325048, "methods": [ 6451482464, 6451482448, @@ -208720,7 +208722,7 @@ }, { "type_name": "CNetMessagePB<121,class CUserMessageShakeDir,13,1,1>", - "vtable_address": 6462327936, + "vtable_address": 6462328000, "methods": [ 6451504096, 6451503840, @@ -208797,22 +208799,22 @@ }, { "type_name": "CNetMessagePB<121,class CUserMessageShakeDir,13,1,1>", - "vtable_address": 6462328000, + "vtable_address": 6462328048, "methods": [ 6451510112, - 6455181760, + 6455181776, 6448402416, 6448404000, 6448404208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448404240, 6448405712, 6448404928, 6443766512, 6448405536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448405824, 6448406288, 6448406096 @@ -208886,7 +208888,7 @@ }, { "type_name": "CNetMessagePB<121,class CUserMessageShakeDir,13,1,1>::CProtobufBinding", - "vtable_address": 6462324904, + "vtable_address": 6462324968, "methods": [ 6451480720, 6451480704, @@ -208925,7 +208927,7 @@ }, { "type_name": "CNetMessagePB<122,class CUserMessageWaterShake,13,1,1>", - "vtable_address": 6462328176, + "vtable_address": 6462328240, "methods": [ 6451504464, 6451504208, @@ -209002,22 +209004,22 @@ }, { "type_name": "CNetMessagePB<122,class CUserMessageWaterShake,13,1,1>", - "vtable_address": 6462328224, + "vtable_address": 6462328288, "methods": [ 6451510216, - 6455181760, + 6455181776, 6448421824, 6448422928, 6448422960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448422976, 6448423888, 6448423088, 6443766512, 6448423584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448423984, 6448424016, 6448424000 @@ -209091,7 +209093,7 @@ }, { "type_name": "CNetMessagePB<122,class CUserMessageWaterShake,13,1,1>::CProtobufBinding", - "vtable_address": 6462324824, + "vtable_address": 6462324888, "methods": [ 6451478976, 6451478960, @@ -209130,7 +209132,7 @@ }, { "type_name": "CNetMessagePB<124,class CUserMessageTextMsg,13,1,1>", - "vtable_address": 6462343312, + "vtable_address": 6462343344, "methods": [ 6451539872, 6451543824, @@ -209207,22 +209209,22 @@ }, { "type_name": "CNetMessagePB<124,class CUserMessageTextMsg,13,1,1>", - "vtable_address": 6462343360, + "vtable_address": 6462343392, "methods": [ 6451539700, - 6455181760, + 6455181776, 6448499632, 6448499984, 6448500048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448500064, 6448501072, 6448500256, 6443766512, 6448500720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448501088, 6448501264, 6448501104 @@ -209296,7 +209298,7 @@ }, { "type_name": "CNetMessagePB<124,class CUserMessageTextMsg,13,1,1>::CProtobufBinding", - "vtable_address": 6462343696, + "vtable_address": 6462343728, "methods": [ 6451576784, 6451581360, @@ -209335,7 +209337,7 @@ }, { "type_name": "CNetMessagePB<125,class CUserMessageScreenTilt,13,1,1>", - "vtable_address": 6462328752, + "vtable_address": 6462328816, "methods": [ 6451505568, 6451505312, @@ -209412,22 +209414,22 @@ }, { "type_name": "CNetMessagePB<125,class CUserMessageScreenTilt,13,1,1>", - "vtable_address": 6462328800, + "vtable_address": 6462328864, "methods": [ 6451510528, - 6455181760, + 6455181776, 6448431360, 6448431904, 6448432016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448432032, 6448433664, 6448432256, 6443766512, 6448433184, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448434624, 6448436688, 6448435712 @@ -209501,7 +209503,7 @@ }, { "type_name": "CNetMessagePB<125,class CUserMessageScreenTilt,13,1,1>::CProtobufBinding", - "vtable_address": 6462324584, + "vtable_address": 6462324648, "methods": [ 6451473744, 6451473728, @@ -209540,7 +209542,7 @@ }, { "type_name": "CNetMessagePB<128,class CUserMessageVoiceMask,13,1,1>", - "vtable_address": 6462326360, + "vtable_address": 6462326424, "methods": [ 6451501024, 6451500768, @@ -209617,22 +209619,22 @@ }, { "type_name": "CNetMessagePB<128,class CUserMessageVoiceMask,13,1,1>", - "vtable_address": 6462326408, + "vtable_address": 6462326472, "methods": [ 6451509376, - 6455181760, + 6455181776, 6448539104, 6448540128, 6448540192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448541456, 6448543824, 6448542640, 6443766512, 6448543408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448543872, 6448545536, 6448545280 @@ -209706,7 +209708,7 @@ }, { "type_name": "CNetMessagePB<128,class CUserMessageVoiceMask,13,1,1>::CProtobufBinding", - "vtable_address": 6462325464, + "vtable_address": 6462325528, "methods": [ 6451492944, 6451492928, @@ -209745,7 +209747,7 @@ }, { "type_name": "CNetMessagePB<130,class CUserMessageSendAudio,13,1,1>", - "vtable_address": 6461723856, + "vtable_address": 6461723872, "methods": [ 6448892720, 6448906928, @@ -209822,22 +209824,22 @@ }, { "type_name": "CNetMessagePB<130,class CUserMessageSendAudio,13,1,1>", - "vtable_address": 6461723904, + "vtable_address": 6461723920, "methods": [ 6448892284, - 6455181760, + 6455181776, 6448523248, 6448523600, 6448523664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448523680, 6448524480, 6448523760, 6443766512, 6448524320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448524496, 6448524560, 6448524544 @@ -209911,7 +209913,7 @@ }, { "type_name": "CNetMessagePB<130,class CUserMessageSendAudio,13,1,1>::CProtobufBinding", - "vtable_address": 6461731272, + "vtable_address": 6461731288, "methods": [ 6449003248, 6449009488, @@ -209950,7 +209952,7 @@ }, { "type_name": "CNetMessagePB<131,class CUserMessageItemPickup,13,1,1>", - "vtable_address": 6462326552, + "vtable_address": 6462326616, "methods": [ 6451501648, 6451501392, @@ -210027,22 +210029,22 @@ }, { "type_name": "CNetMessagePB<131,class CUserMessageItemPickup,13,1,1>", - "vtable_address": 6462326600, + "vtable_address": 6462326664, "methods": [ 6451509388, - 6455181760, + 6455181776, 6448007600, 6448007872, 6448008000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448008032, 6448009568, 6448008352, 6443766512, 6448009200, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448009760, 6448009824, 6448009792 @@ -210116,7 +210118,7 @@ }, { "type_name": "CNetMessagePB<131,class CUserMessageItemPickup,13,1,1>::CProtobufBinding", - "vtable_address": 6462325384, + "vtable_address": 6462325448, "methods": [ 6451491200, 6451491184, @@ -210155,7 +210157,7 @@ }, { "type_name": "CNetMessagePB<132,class CUserMessageAmmoDenied,13,1,1>", - "vtable_address": 6462326792, + "vtable_address": 6462326856, "methods": [ 6451502016, 6451501760, @@ -210232,22 +210234,22 @@ }, { "type_name": "CNetMessagePB<132,class CUserMessageAmmoDenied,13,1,1>", - "vtable_address": 6462326840, + "vtable_address": 6462326904, "methods": [ 6451509768, - 6455181760, + 6455181776, 6448016096, 6448016160, 6448016192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448016208, 6448017040, 6448016272, 6443766512, 6448016656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448017424, 6448018240, 6448018224 @@ -210321,7 +210323,7 @@ }, { "type_name": "CNetMessagePB<132,class CUserMessageAmmoDenied,13,1,1>::CProtobufBinding", - "vtable_address": 6462325304, + "vtable_address": 6462325368, "methods": [ 6451489456, 6451489440, @@ -210360,7 +210362,7 @@ }, { "type_name": "CNetMessagePB<134,class CUserMessageShowMenu,13,1,1>", - "vtable_address": 6462328944, + "vtable_address": 6462329008, "methods": [ 6451505936, 6451505680, @@ -210437,22 +210439,22 @@ }, { "type_name": "CNetMessagePB<134,class CUserMessageShowMenu,13,1,1>", - "vtable_address": 6462328992, + "vtable_address": 6462329056, "methods": [ 6451510632, - 6455181760, + 6455181776, 6448028304, 6448028896, 6448028976, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448028992, 6448030176, 6448029136, 6443766512, 6448029824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448030192, 6448030224, 6448030208 @@ -210526,7 +210528,7 @@ }, { "type_name": "CNetMessagePB<134,class CUserMessageShowMenu,13,1,1>::CProtobufBinding", - "vtable_address": 6462324504, + "vtable_address": 6462324568, "methods": [ 6451472000, 6451471984, @@ -210565,7 +210567,7 @@ }, { "type_name": "CNetMessagePB<135,class CUserMessageCreditsMsg,13,1,1>", - "vtable_address": 6462330672, + "vtable_address": 6462330736, "methods": [ 6451509264, 6451508992, @@ -210642,22 +210644,22 @@ }, { "type_name": "CNetMessagePB<135,class CUserMessageCreditsMsg,13,1,1>", - "vtable_address": 6462330720, + "vtable_address": 6462330784, "methods": [ 6451511112, - 6455181760, + 6455181776, 6448044640, 6448044896, 6448044944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448044960, 6448045760, 6448045040, 6443766512, 6448045536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448045776, 6448045808, 6448045792 @@ -210731,7 +210733,7 @@ }, { "type_name": "CNetMessagePB<135,class CUserMessageCreditsMsg,13,1,1>::CProtobufBinding", - "vtable_address": 6462323784, + "vtable_address": 6462323848, "methods": [ 6451456288, 6451456272, @@ -210770,7 +210772,7 @@ }, { "type_name": "CNetMessagePB<137,class CEntityMessageScreenOverlay,13,1,1>", - "vtable_address": 6462330864, + "vtable_address": 6462330928, "methods": [ 6451509680, 6451509424, @@ -210847,22 +210849,22 @@ }, { "type_name": "CNetMessagePB<137,class CEntityMessageScreenOverlay,13,1,1>", - "vtable_address": 6462330912, + "vtable_address": 6462330976, "methods": [ 6451511124, - 6455181760, + 6455181776, 6448062144, 6448062368, 6448062448, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448062608, 6448063408, 6448062736, 6443766512, 6448063232, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448064032, 6448065728, 6448065712 @@ -210936,7 +210938,7 @@ }, { "type_name": "CNetMessagePB<137,class CEntityMessageScreenOverlay,13,1,1>::CProtobufBinding", - "vtable_address": 6462323704, + "vtable_address": 6462323768, "methods": [ 6451454544, 6451454528, @@ -210975,7 +210977,7 @@ }, { "type_name": "CNetMessagePB<138,class CEntityMessageRemoveAllDecals,13,1,1>", - "vtable_address": 6462331056, + "vtable_address": 6462331120, "methods": [ 6451510128, 6451509856, @@ -211052,23 +211054,23 @@ }, { "type_name": "CNetMessagePB<138,class CEntityMessageRemoveAllDecals,13,1,1>", - "vtable_address": 6462331104, + "vtable_address": 6462331168, "methods": [ 6451511136, - 6455181760, + 6455181776, 6448073472, 6448073952, 6448074048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448074240, 6448075136, 6448074448, 6443766512, 6448074960, - 6455183120, - 6455184944, - 6448075424, + 6455183136, + 6455184960, + 6448075520, 6448076256, 6448076240 ], @@ -211141,7 +211143,7 @@ }, { "type_name": "CNetMessagePB<138,class CEntityMessageRemoveAllDecals,13,1,1>::CProtobufBinding", - "vtable_address": 6462323624, + "vtable_address": 6462323688, "methods": [ 6451452800, 6451452784, @@ -211180,7 +211182,7 @@ }, { "type_name": "CNetMessagePB<139,class CEntityMessagePropagateForce,13,1,1>", - "vtable_address": 6462331248, + "vtable_address": 6462331312, "methods": [ 6451510544, 6451510272, @@ -211257,25 +211259,25 @@ }, { "type_name": "CNetMessagePB<139,class CEntityMessagePropagateForce,13,1,1>", - "vtable_address": 6462331296, + "vtable_address": 6462331360, "methods": [ 6451511148, - 6455181760, + 6455181776, 6448091536, 6448094160, 6448094304, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448094464, 6448096896, 6448095216, 6443766512, 6448096720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448097856, - 6448098320, - 6448098288 + 6448098608, + 6448098304 ], "bases": [ { @@ -211346,7 +211348,7 @@ }, { "type_name": "CNetMessagePB<139,class CEntityMessagePropagateForce,13,1,1>::CProtobufBinding", - "vtable_address": 6462323544, + "vtable_address": 6462323608, "methods": [ 6451451056, 6451451040, @@ -211385,7 +211387,7 @@ }, { "type_name": "CNetMessagePB<140,class CEntityMessageDoSpark,13,1,1>", - "vtable_address": 6462331440, + "vtable_address": 6462331504, "methods": [ 6451510976, 6451510720, @@ -211462,22 +211464,22 @@ }, { "type_name": "CNetMessagePB<140,class CEntityMessageDoSpark,13,1,1>", - "vtable_address": 6462331488, + "vtable_address": 6462331552, "methods": [ 6451511160, - 6455181760, + 6455181776, 6448105248, 6448105856, 6448106016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448106032, 6448107888, 6448106416, 6443766512, 6448107360, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448107968, 6448108176, 6448108160 @@ -211551,7 +211553,7 @@ }, { "type_name": "CNetMessagePB<140,class CEntityMessageDoSpark,13,1,1>::CProtobufBinding", - "vtable_address": 6462323464, + "vtable_address": 6462323528, "methods": [ 6451449296, 6451449280, @@ -211590,7 +211592,7 @@ }, { "type_name": "CNetMessagePB<142,class CUserMessageCloseCaptionPlaceholder,13,1,1>", - "vtable_address": 6462329520, + "vtable_address": 6462329584, "methods": [ 6451507040, 6451506784, @@ -211667,22 +211669,22 @@ }, { "type_name": "CNetMessagePB<142,class CUserMessageCloseCaptionPlaceholder,13,1,1>", - "vtable_address": 6462329568, + "vtable_address": 6462329632, "methods": [ 6451510668, - 6455181760, + 6455181776, 6448321840, 6448322048, 6448322128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448322160, 6448323328, 6448322368, 6443766512, 6448322992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448323776, 6448328368, 6448328352 @@ -211756,7 +211758,7 @@ }, { "type_name": "CNetMessagePB<142,class CUserMessageCloseCaptionPlaceholder,13,1,1>::CProtobufBinding", - "vtable_address": 6462324264, + "vtable_address": 6462324328, "methods": [ 6451466768, 6451466752, @@ -211795,7 +211797,7 @@ }, { "type_name": "CNetMessagePB<143,class CUserMessageCameraTransition,13,1,1>", - "vtable_address": 6462329712, + "vtable_address": 6462329776, "methods": [ 6451507408, 6451507152, @@ -211872,22 +211874,22 @@ }, { "type_name": "CNetMessagePB<143,class CUserMessageCameraTransition,13,1,1>", - "vtable_address": 6462329760, + "vtable_address": 6462329824, "methods": [ 6451510680, - 6455181760, + 6455181776, 6448157648, 6448159200, 6448159344, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448159424, 6448160544, 6448159760, 6443766512, 6448160288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448160576, 6448160688, 6448160672 @@ -211961,7 +211963,7 @@ }, { "type_name": "CNetMessagePB<143,class CUserMessageCameraTransition,13,1,1>::CProtobufBinding", - "vtable_address": 6462324184, + "vtable_address": 6462324248, "methods": [ 6451465024, 6451465008, @@ -212000,7 +212002,7 @@ }, { "type_name": "CNetMessagePB<144,class CUserMessageAudioParameter,13,1,1>", - "vtable_address": 6462329904, + "vtable_address": 6462329968, "methods": [ 6451507776, 6451507520, @@ -212077,22 +212079,22 @@ }, { "type_name": "CNetMessagePB<144,class CUserMessageAudioParameter,13,1,1>", - "vtable_address": 6462329952, + "vtable_address": 6462330016, "methods": [ 6451511064, - 6455181760, + 6455181776, 6448529008, 6448529136, 6448529168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448529184, 6448530512, 6448529344, 6443766512, 6448530096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448531408, 6448533008, 6448532752 @@ -212166,7 +212168,7 @@ }, { "type_name": "CNetMessagePB<144,class CUserMessageAudioParameter,13,1,1>::CProtobufBinding", - "vtable_address": 6462324104, + "vtable_address": 6462324168, "methods": [ 6451463280, 6451463264, @@ -212205,7 +212207,7 @@ }, { "type_name": "CNetMessagePB<145,class CUserMsg_ParticleManager,13,1,1>", - "vtable_address": 6462209104, + "vtable_address": 6462209136, "methods": [ 6450638992, 6450658608, @@ -212282,22 +212284,22 @@ }, { "type_name": "CNetMessagePB<145,class CUserMsg_ParticleManager,13,1,1>", - "vtable_address": 6462209152, + "vtable_address": 6462209184, "methods": [ 6450638836, - 6455181760, + 6455181776, 6448206448, 6448212224, 6448214400, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448214464, 6448225472, 6448218624, 6443766512, 6448223424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448225728, 6448226832, 6448226480 @@ -212371,7 +212373,7 @@ }, { "type_name": "CNetMessagePB<145,class CUserMsg_ParticleManager,13,1,1>::CProtobufBinding", - "vtable_address": 6462212056, + "vtable_address": 6462212088, "methods": [ 6450761040, 6450764560, @@ -212410,7 +212412,7 @@ }, { "type_name": "CNetMessagePB<146,class CUserMsg_HudError,13,1,1>", - "vtable_address": 6462331632, + "vtable_address": 6462331696, "methods": [ 6451511472, 6451511216, @@ -212487,22 +212489,22 @@ }, { "type_name": "CNetMessagePB<146,class CUserMsg_HudError,13,1,1>", - "vtable_address": 6462331680, + "vtable_address": 6462331744, "methods": [ 6451511200, - 6455181760, + 6455181776, 6448289344, 6448289424, 6448289456, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448289568, 6448290912, 6448289776, 6443766512, 6448290736, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448291264, 6448291328, 6448291312 @@ -212576,7 +212578,7 @@ }, { "type_name": "CNetMessagePB<146,class CUserMsg_HudError,13,1,1>::CProtobufBinding", - "vtable_address": 6462323384, + "vtable_address": 6462323448, "methods": [ 6451447552, 6451447536, @@ -212615,7 +212617,7 @@ }, { "type_name": "CNetMessagePB<148,class CBaseCmdKeyValues,13,1,1>", - "vtable_address": 6461032736, + "vtable_address": 6461032720, "methods": [ 6445976448, 6445995520, @@ -212706,22 +212708,22 @@ }, { "type_name": "CNetMessagePB<148,class CBaseCmdKeyValues,13,1,1>", - "vtable_address": 6461032784, + "vtable_address": 6461032768, "methods": [ 6445975344, - 6455181760, + 6455181776, 6446104096, 6448297680, 6448297776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448297792, 6446048144, 6448297952, 6443766512, 6448298928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448300624, 6448305520, 6448305504 @@ -212809,7 +212811,7 @@ }, { "type_name": "CNetMessagePB<148,class CBaseCmdKeyValues,13,1,1>::CProtobufBinding", - "vtable_address": 6461033472, + "vtable_address": 6461033456, "methods": [ 6446057136, 6446063072, @@ -212848,7 +212850,7 @@ }, { "type_name": "CNetMessagePB<150,class CUserMessageHapticsManagerPulse,13,1,1>", - "vtable_address": 6462331840, + "vtable_address": 6462331904, "methods": [ 6451511952, 6451511696, @@ -212925,22 +212927,22 @@ }, { "type_name": "CNetMessagePB<150,class CUserMessageHapticsManagerPulse,13,1,1>", - "vtable_address": 6462331888, + "vtable_address": 6462331952, "methods": [ 6451511560, - 6455181760, + 6455181776, 6448319296, 6448319424, 6448319520, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448319536, 6448320432, 6448319632, 6443766512, 6448320128, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448320448, 6448320752, 6448320480 @@ -213014,7 +213016,7 @@ }, { "type_name": "CNetMessagePB<150,class CUserMessageHapticsManagerPulse,13,1,1>::CProtobufBinding", - "vtable_address": 6462323280, + "vtable_address": 6462323344, "methods": [ 6451445808, 6451445792, @@ -213053,7 +213055,7 @@ }, { "type_name": "CNetMessagePB<151,class CUserMessageHapticsManagerEffect,13,1,1>", - "vtable_address": 6462332032, + "vtable_address": 6462332096, "methods": [ 6451512336, 6451512080, @@ -213130,22 +213132,22 @@ }, { "type_name": "CNetMessagePB<151,class CUserMessageHapticsManagerEffect,13,1,1>", - "vtable_address": 6462332080, + "vtable_address": 6462332144, "methods": [ 6451511572, - 6455181760, + 6455181776, 6448336144, 6448336576, 6448336704, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448336720, 6448338256, 6448336832, 6443766512, 6448337920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448339248, 6448339584, 6448339568 @@ -213219,12 +213221,12 @@ }, { "type_name": "CNetMessagePB<151,class CUserMessageHapticsManagerEffect,13,1,1>::CProtobufBinding", - "vtable_address": 6462323200, + "vtable_address": 6462323264, "methods": [ 6451443952, 6451443936, 6451443664, - 6451445040, + 6451445152, 6451445168, 6451445312, 6451445328, @@ -213338,19 +213340,19 @@ "vtable_address": 6460493000, "methods": [ 6443735624, - 6455181760, + 6455181776, 6443765696, 6448381888, 6448382224, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448382240, 6443746608, 6448382512, 6443766512, 6448383120, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448383376, 6448383488, 6448383472 @@ -213463,7 +213465,7 @@ }, { "type_name": "CNetMessagePB<154,class CUserMessageServerFrameTime,13,1,1>", - "vtable_address": 6462332224, + "vtable_address": 6462332288, "methods": [ 6451512704, 6451512448, @@ -213540,22 +213542,22 @@ }, { "type_name": "CNetMessagePB<154,class CUserMessageServerFrameTime,13,1,1>", - "vtable_address": 6462332272, + "vtable_address": 6462332336, "methods": [ 6451511584, - 6455181760, + 6455181776, 6448390832, 6448390896, 6448390928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448390944, 6448391408, 6448390976, 6443766512, 6448391296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448391440, 6448391600, 6448391552 @@ -213629,7 +213631,7 @@ }, { "type_name": "CNetMessagePB<154,class CUserMessageServerFrameTime,13,1,1>::CProtobufBinding", - "vtable_address": 6462323112, + "vtable_address": 6462323176, "methods": [ 6451441168, 6451441152, @@ -213668,7 +213670,7 @@ }, { "type_name": "CNetMessagePB<155,class CUserMessageLagCompensationError,13,1,1>", - "vtable_address": 6462332416, + "vtable_address": 6462332480, "methods": [ 6451513072, 6451512816, @@ -213745,22 +213747,22 @@ }, { "type_name": "CNetMessagePB<155,class CUserMessageLagCompensationError,13,1,1>", - "vtable_address": 6462332464, + "vtable_address": 6462332528, "methods": [ 6451511596, - 6455181760, + 6455181776, 6448398368, 6448398448, 6448398480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448398656, 6448399936, 6448398912, 6443766512, 6448399824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448400256, 6448400992, 6448400784 @@ -213834,7 +213836,7 @@ }, { "type_name": "CNetMessagePB<155,class CUserMessageLagCompensationError,13,1,1>::CProtobufBinding", - "vtable_address": 6462323032, + "vtable_address": 6462323096, "methods": [ 6451439424, 6451439408, @@ -213873,7 +213875,7 @@ }, { "type_name": "CNetMessagePB<156,class CUserMessageRequestDllStatus,13,1,1>", - "vtable_address": 6462332608, + "vtable_address": 6462332672, "methods": [ 6451513440, 6451513184, @@ -213950,22 +213952,22 @@ }, { "type_name": "CNetMessagePB<156,class CUserMessageRequestDllStatus,13,1,1>", - "vtable_address": 6462332656, + "vtable_address": 6462332720, "methods": [ 6451511608, - 6455181760, + 6455181776, 6448412112, 6448412592, 6448412656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448412672, 6448413584, 6448412752, 6443766512, 6448413424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448413600, 6448413648, 6448413632 @@ -214039,7 +214041,7 @@ }, { "type_name": "CNetMessagePB<156,class CUserMessageRequestDllStatus,13,1,1>::CProtobufBinding", - "vtable_address": 6462322952, + "vtable_address": 6462323016, "methods": [ 6451437680, 6451437664, @@ -214078,7 +214080,7 @@ }, { "type_name": "CNetMessagePB<157,class CUserMessageRequestUtilAction,13,1,1>", - "vtable_address": 6462332800, + "vtable_address": 6462332864, "methods": [ 6451513808, 6451513552, @@ -214155,22 +214157,22 @@ }, { "type_name": "CNetMessagePB<157,class CUserMessageRequestUtilAction,13,1,1>", - "vtable_address": 6462332848, + "vtable_address": 6462332912, "methods": [ 6451511620, - 6455181760, + 6455181776, 6448425392, 6448425696, 6448425744, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448425760, 6448427360, 6448425968, 6443766512, 6448426768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448427376, 6448427552, 6448427536 @@ -214244,7 +214246,7 @@ }, { "type_name": "CNetMessagePB<157,class CUserMessageRequestUtilAction,13,1,1>::CProtobufBinding", - "vtable_address": 6462322856, + "vtable_address": 6462322920, "methods": [ 6451435936, 6451435920, @@ -214283,7 +214285,7 @@ }, { "type_name": "CNetMessagePB<160,class CUserMessageRequestInventory,13,1,1>", - "vtable_address": 6462332992, + "vtable_address": 6462333056, "methods": [ 6451514176, 6451513920, @@ -214360,22 +214362,22 @@ }, { "type_name": "CNetMessagePB<160,class CUserMessageRequestInventory,13,1,1>", - "vtable_address": 6462333040, + "vtable_address": 6462333104, "methods": [ 6451511632, - 6455181760, + 6455181776, 6448529120, 6448530048, 6448530528, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448530544, 6448532144, 6448530768, 6443766512, 6448531424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448532704, 6448534608, 6448534528 @@ -214449,7 +214451,7 @@ }, { "type_name": "CNetMessagePB<160,class CUserMessageRequestInventory,13,1,1>::CProtobufBinding", - "vtable_address": 6462322776, + "vtable_address": 6462322840, "methods": [ 6451434192, 6451434176, @@ -214488,7 +214490,7 @@ }, { "type_name": "CNetMessagePB<162,class CUserMessageRequestDiagnostic,13,1,1>", - "vtable_address": 6462333184, + "vtable_address": 6462333248, "methods": [ 6451514688, 6451514432, @@ -214565,23 +214567,23 @@ }, { "type_name": "CNetMessagePB<162,class CUserMessageRequestDiagnostic,13,1,1>", - "vtable_address": 6462333232, + "vtable_address": 6462333296, "methods": [ 6451511644, - 6455181760, - 6448012528, + 6455181776, + 6448012608, 6448013552, 6448013856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448013872, 6448014608, - 6448014032, + 6448014048, 6443766512, 6448014464, - 6455183120, - 6455184944, - 6448014640, + 6455183136, + 6455184960, + 6448014704, 6448014912, 6448014896 ], @@ -214654,7 +214656,7 @@ }, { "type_name": "CNetMessagePB<162,class CUserMessageRequestDiagnostic,13,1,1>::CProtobufBinding", - "vtable_address": 6462322680, + "vtable_address": 6462322744, "methods": [ 6451432448, 6451432432, @@ -214693,7 +214695,7 @@ }, { "type_name": "CNetMessagePB<165,class CUserMessage_NotifyResponseFound,13,1,1>", - "vtable_address": 6462333408, + "vtable_address": 6462333472, "methods": [ 6451515056, 6451514800, @@ -214770,23 +214772,23 @@ }, { "type_name": "CNetMessagePB<165,class CUserMessage_NotifyResponseFound,13,1,1>", - "vtable_address": 6462333456, + "vtable_address": 6462333520, "methods": [ 6451511680, - 6455181760, + 6455181776, 6448117520, 6448118800, 6448119200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448119440, 6448123344, 6448120256, 6443766512, 6448121776, - 6455183120, - 6455184944, - 6448123552, + 6455183136, + 6455184960, + 6448123616, 6448123712, 6448123696 ], @@ -214859,7 +214861,7 @@ }, { "type_name": "CNetMessagePB<165,class CUserMessage_NotifyResponseFound,13,1,1>::CProtobufBinding", - "vtable_address": 6462322600, + "vtable_address": 6462322664, "methods": [ 6451430688, 6451430672, @@ -214898,7 +214900,7 @@ }, { "type_name": "CNetMessagePB<166,class CUserMessage_PlayResponseConditional,13,1,1>", - "vtable_address": 6462333600, + "vtable_address": 6462333664, "methods": [ 6451515424, 6451515168, @@ -214975,22 +214977,22 @@ }, { "type_name": "CNetMessagePB<166,class CUserMessage_PlayResponseConditional,13,1,1>", - "vtable_address": 6462333648, + "vtable_address": 6462333712, "methods": [ 6451512040, - 6455181760, + 6455181776, 6448162080, 6448162480, 6448162640, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448162656, 6448164592, 6448163008, 6443766512, 6448163952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448166912, 6448172144, 6448172128 @@ -215064,7 +215066,7 @@ }, { "type_name": "CNetMessagePB<166,class CUserMessage_PlayResponseConditional,13,1,1>::CProtobufBinding", - "vtable_address": 6462322520, + "vtable_address": 6462322584, "methods": [ 6451428928, 6451428912, @@ -215103,7 +215105,7 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>", - "vtable_address": 6461062280, + "vtable_address": 6461062264, "methods": [ 6446322048, 6446339312, @@ -215180,25 +215182,25 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>", - "vtable_address": 6461062328, + "vtable_address": 6461062312, "methods": [ 6446321892, - 6455181760, + 6455181776, 6446516368, 6448108416, 6448108496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448108512, 6446426848, 6448108752, 6443766512, 6448109440, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448110032, 6448110400, - 6448110224 + 6448110384 ], "bases": [ { @@ -215269,7 +215271,7 @@ }, { "type_name": "CNetMessagePB<19,class CBidirMsg_PredictionEvent,0,0,0>::CProtobufBinding", - "vtable_address": 6461067112, + "vtable_address": 6461067096, "methods": [ 6446434064, 6446444752, @@ -215308,7 +215310,7 @@ }, { "type_name": "CNetMessagePB<201,class CMsgPlaceDecalEvent,12,1,1>", - "vtable_address": 6461041424, + "vtable_address": 6461041408, "methods": [ 6445976592, 6445995552, @@ -215385,22 +215387,22 @@ }, { "type_name": "CNetMessagePB<201,class CMsgPlaceDecalEvent,12,1,1>", - "vtable_address": 6461041472, + "vtable_address": 6461041456, "methods": [ 6445975356, - 6455181760, + 6455181776, 6446104080, 6447266304, 6447266448, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447266480, 6446048128, 6447267472, 6443766512, 6447269152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447272064, 6447273776, 6447273424 @@ -215474,7 +215476,7 @@ }, { "type_name": "CNetMessagePB<201,class CMsgPlaceDecalEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6461048488, + "vtable_address": 6461048472, "methods": [ 6446058320, 6446063088, @@ -215513,7 +215515,7 @@ }, { "type_name": "CNetMessagePB<202,class CMsgClearWorldDecalsEvent,12,1,1>", - "vtable_address": 6461041808, + "vtable_address": 6461041792, "methods": [ 6445976688, 6445995584, @@ -215590,22 +215592,22 @@ }, { "type_name": "CNetMessagePB<202,class CMsgClearWorldDecalsEvent,12,1,1>", - "vtable_address": 6461041856, + "vtable_address": 6461041840, "methods": [ 6445975368, - 6455181760, + 6455181776, 6446104064, 6447307712, 6447307744, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447307760, 6446048112, 6447307808, 6443766512, 6447308768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447310208, 6447310592, 6447310576 @@ -215679,7 +215681,7 @@ }, { "type_name": "CNetMessagePB<202,class CMsgClearWorldDecalsEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6461048408, + "vtable_address": 6461048392, "methods": [ 6446059408, 6446063104, @@ -215718,7 +215720,7 @@ }, { "type_name": "CNetMessagePB<203,class CMsgClearEntityDecalsEvent,12,1,1>", - "vtable_address": 6461042000, + "vtable_address": 6461041984, "methods": [ 6445976784, 6445995616, @@ -215795,22 +215797,22 @@ }, { "type_name": "CNetMessagePB<203,class CMsgClearEntityDecalsEvent,12,1,1>", - "vtable_address": 6461042048, + "vtable_address": 6461042032, "methods": [ 6445975380, - 6455181760, + 6455181776, 6446104048, 6447327376, 6447327408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447327424, 6446048096, 6447327488, 6443766512, 6447328016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447328192, 6447328400, 6447328384 @@ -215884,7 +215886,7 @@ }, { "type_name": "CNetMessagePB<203,class CMsgClearEntityDecalsEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6461048328, + "vtable_address": 6461048312, "methods": [ 6446060496, 6446063120, @@ -215923,7 +215925,7 @@ }, { "type_name": "CNetMessagePB<204,class CMsgClearDecalsForEntityEvent,12,1,1>", - "vtable_address": 6461042192, + "vtable_address": 6461042176, "methods": [ 6445976880, 6445995648, @@ -216000,22 +216002,22 @@ }, { "type_name": "CNetMessagePB<204,class CMsgClearDecalsForEntityEvent,12,1,1>", - "vtable_address": 6461042240, + "vtable_address": 6461042224, "methods": [ 6445975392, - 6455181760, + 6455181776, 6446104032, 6447336032, 6447336160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447336176, 6446048080, 6447336688, 6443766512, 6447337664, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447338416, 6447339584, 6447339184 @@ -216089,7 +216091,7 @@ }, { "type_name": "CNetMessagePB<204,class CMsgClearDecalsForEntityEvent,12,1,1>::CProtobufBinding", - "vtable_address": 6461048248, + "vtable_address": 6461048232, "methods": [ 6446061584, 6446063136, @@ -216128,7 +216130,7 @@ }, { "type_name": "CNetMessagePB<205,class CMsgSource1LegacyGameEventList,10,1,1>", - "vtable_address": 6462263200, + "vtable_address": 6462263232, "methods": [ 6450881152, 6450880896, @@ -216205,22 +216207,22 @@ }, { "type_name": "CNetMessagePB<205,class CMsgSource1LegacyGameEventList,10,1,1>", - "vtable_address": 6462263248, + "vtable_address": 6462263280, "methods": [ 6450895796, - 6455181760, + 6455181776, 6447416848, 6447417648, 6447417776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447417792, 6447418864, 6447418080, 6443766512, 6447418496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447419136, 6447420112, 6447420096 @@ -216294,7 +216296,7 @@ }, { "type_name": "CNetMessagePB<205,class CMsgSource1LegacyGameEventList,10,1,1>::CProtobufBinding", - "vtable_address": 6462264944, + "vtable_address": 6462264976, "methods": [ 6450886672, 6450886656, @@ -216333,7 +216335,7 @@ }, { "type_name": "CNetMessagePB<206,class CMsgSource1LegacyListenEvents,10,1,1>", - "vtable_address": 6462263392, + "vtable_address": 6462263424, "methods": [ 6450881520, 6450881264, @@ -216410,22 +216412,22 @@ }, { "type_name": "CNetMessagePB<206,class CMsgSource1LegacyListenEvents,10,1,1>", - "vtable_address": 6462263440, + "vtable_address": 6462263472, "methods": [ 6450895808, - 6455181760, + 6455181776, 6447446592, 6447447104, 6447447168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447447184, 6447448416, 6447447296, 6443766512, 6447447936, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447448800, 6447449936, 6447449920 @@ -216499,7 +216501,7 @@ }, { "type_name": "CNetMessagePB<206,class CMsgSource1LegacyListenEvents,10,1,1>::CProtobufBinding", - "vtable_address": 6462264864, + "vtable_address": 6462264896, "methods": [ 6450884928, 6450884912, @@ -216538,7 +216540,7 @@ }, { "type_name": "CNetMessagePB<207,class CMsgSource1LegacyGameEvent,5,1,1>", - "vtable_address": 6462263584, + "vtable_address": 6462263616, "methods": [ 6450881888, 6450881632, @@ -216615,22 +216617,22 @@ }, { "type_name": "CNetMessagePB<207,class CMsgSource1LegacyGameEvent,5,1,1>", - "vtable_address": 6462263632, + "vtable_address": 6462263664, "methods": [ 6450895820, - 6455181760, + 6455181776, 6447506288, 6447506704, 6447506960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447506976, 6447508576, 6447507296, 6443766512, 6447508096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447508848, 6447508896, 6447508880 @@ -216704,7 +216706,7 @@ }, { "type_name": "CNetMessagePB<207,class CMsgSource1LegacyGameEvent,5,1,1>::CProtobufBinding", - "vtable_address": 6462264784, + "vtable_address": 6462264816, "methods": [ 6450883168, 6450883152, @@ -216743,7 +216745,7 @@ }, { "type_name": "CNetMessagePB<208,class CMsgSosStartSoundEvent,4,1,1>", - "vtable_address": 6461062768, + "vtable_address": 6461062752, "methods": [ 6446322144, 6446339344, @@ -216820,22 +216822,22 @@ }, { "type_name": "CNetMessagePB<208,class CMsgSosStartSoundEvent,4,1,1>", - "vtable_address": 6461062816, + "vtable_address": 6461062800, "methods": [ 6446321904, - 6455181760, + 6455181776, 6446516416, 6447544000, 6447544080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447544096, 6446426896, 6447544320, 6443766512, 6447545168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447546160, 6447547200, 6447547184 @@ -216909,7 +216911,7 @@ }, { "type_name": "CNetMessagePB<208,class CMsgSosStartSoundEvent,4,1,1>::CProtobufBinding", - "vtable_address": 6461067032, + "vtable_address": 6461067016, "methods": [ 6446435152, 6446444768, @@ -216948,7 +216950,7 @@ }, { "type_name": "CNetMessagePB<209,class CMsgSosStopSoundEvent,4,1,1>", - "vtable_address": 6461063152, + "vtable_address": 6461063136, "methods": [ 6446322240, 6446339376, @@ -217025,22 +217027,22 @@ }, { "type_name": "CNetMessagePB<209,class CMsgSosStopSoundEvent,4,1,1>", - "vtable_address": 6461063200, + "vtable_address": 6461063184, "methods": [ 6446321916, - 6455181760, + 6455181776, 6446516432, 6447569152, 6447569184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447569200, 6446426912, 6447571648, 6443766512, 6447574080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447575888, 6447577200, 6447577184 @@ -217114,7 +217116,7 @@ }, { "type_name": "CNetMessagePB<209,class CMsgSosStopSoundEvent,4,1,1>::CProtobufBinding", - "vtable_address": 6461066952, + "vtable_address": 6461066936, "methods": [ 6446436240, 6446444784, @@ -217153,7 +217155,7 @@ }, { "type_name": "CNetMessagePB<210,class CMsgSosSetSoundEventParams,4,1,1>", - "vtable_address": 6461063920, + "vtable_address": 6461063904, "methods": [ 6446322336, 6446339408, @@ -217230,22 +217232,22 @@ }, { "type_name": "CNetMessagePB<210,class CMsgSosSetSoundEventParams,4,1,1>", - "vtable_address": 6461063968, + "vtable_address": 6461063952, "methods": [ 6446321928, - 6455181760, + 6455181776, 6446516400, 6447602272, 6447602624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447602640, 6446426880, 6447603264, 6443766512, 6447603920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447605280, 6447607632, 6447607424 @@ -217319,7 +217321,7 @@ }, { "type_name": "CNetMessagePB<210,class CMsgSosSetSoundEventParams,4,1,1>::CProtobufBinding", - "vtable_address": 6461066792, + "vtable_address": 6461066776, "methods": [ 6446437328, 6446444800, @@ -217358,7 +217360,7 @@ }, { "type_name": "CNetMessagePB<211,class CMsgSosSetLibraryStackFields,4,1,1>", - "vtable_address": 6461064304, + "vtable_address": 6461064288, "methods": [ 6446322432, 6446339440, @@ -217435,22 +217437,22 @@ }, { "type_name": "CNetMessagePB<211,class CMsgSosSetLibraryStackFields,4,1,1>", - "vtable_address": 6461064352, + "vtable_address": 6461064336, "methods": [ 6446321940, - 6455181760, + 6455181776, 6446516384, 6447619568, 6447619648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447619824, 6446426864, 6447620608, 6443766512, 6447621568, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447621744, 6447621856, 6447621776 @@ -217524,7 +217526,7 @@ }, { "type_name": "CNetMessagePB<211,class CMsgSosSetLibraryStackFields,4,1,1>::CProtobufBinding", - "vtable_address": 6461066712, + "vtable_address": 6461066696, "methods": [ 6446438416, 6446444816, @@ -217563,7 +217565,7 @@ }, { "type_name": "CNetMessagePB<212,class CMsgSosStopSoundEventHash,4,1,1>", - "vtable_address": 6461063536, + "vtable_address": 6461063520, "methods": [ 6446322528, 6446339472, @@ -217640,22 +217642,22 @@ }, { "type_name": "CNetMessagePB<212,class CMsgSosStopSoundEventHash,4,1,1>", - "vtable_address": 6461063584, + "vtable_address": 6461063568, "methods": [ 6446321952, - 6455181760, + 6455181776, 6446516448, 6447588704, 6447588752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447588768, 6446426928, 6447588960, 6443766512, 6447589552, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447591184, 6447591616, 6447591600 @@ -217729,7 +217731,7 @@ }, { "type_name": "CNetMessagePB<212,class CMsgSosStopSoundEventHash,4,1,1>::CProtobufBinding", - "vtable_address": 6461066872, + "vtable_address": 6461066856, "methods": [ 6446439504, 6446444832, @@ -217768,7 +217770,7 @@ }, { "type_name": "CNetMessagePB<280,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6461032064, + "vtable_address": 6461032048, "methods": [ 6445976160, 6445995456, @@ -217859,22 +217861,22 @@ }, { "type_name": "CNetMessagePB<280,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6461032112, + "vtable_address": 6461032096, "methods": [ 6445975320, - 6455181760, + 6455181776, 6446103968, 6447639136, 6447639248, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447639696, 6446048016, 6447641184, 6443766512, 6447642880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447643552, 6447643696, 6447643616 @@ -217962,7 +217964,7 @@ }, { "type_name": "CNetMessagePB<280,class CBaseCmdKeyValues,14,1,1>::CProtobufBinding", - "vtable_address": 6461033632, + "vtable_address": 6461033616, "methods": [ 6446054768, 6446063040, @@ -218001,7 +218003,7 @@ }, { "type_name": "CNetMessagePB<281,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6461032400, + "vtable_address": 6461032384, "methods": [ 6445976304, 6445995488, @@ -218092,22 +218094,22 @@ }, { "type_name": "CNetMessagePB<281,class CBaseCmdKeyValues,14,1,1>", - "vtable_address": 6461032448, + "vtable_address": 6461032432, "methods": [ 6445975332, - 6455181760, + 6455181776, 6446103984, 6447665840, 6447665952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447665968, 6446048032, 6447666128, 6443766512, 6447666624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447667072, 6447668320, 6447668304 @@ -218195,7 +218197,7 @@ }, { "type_name": "CNetMessagePB<281,class CBaseCmdKeyValues,14,1,1>::CProtobufBinding", - "vtable_address": 6461033552, + "vtable_address": 6461033536, "methods": [ 6446055952, 6446063056, @@ -218314,19 +218316,19 @@ "vtable_address": 6460492760, "methods": [ 6443735612, - 6455181760, + 6455181776, 6443765680, 6447682832, 6447682944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447682960, 6443746592, 6447683344, 6443766512, 6447684288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447684736, 6447685088, 6447685056 @@ -218439,7 +218441,7 @@ }, { "type_name": "CNetMessagePB<286,class CClientMsg_ListenForResponseFound,14,1,1>", - "vtable_address": 6462170912, + "vtable_address": 6462170944, "methods": [ 6450309104, 6450331360, @@ -218516,22 +218518,22 @@ }, { "type_name": "CNetMessagePB<286,class CClientMsg_ListenForResponseFound,14,1,1>", - "vtable_address": 6462170960, + "vtable_address": 6462170992, "methods": [ 6450308000, - 6455181760, + 6455181776, 6447752592, 6447753728, 6447754512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447754768, 6447756368, 6447755136, 6443766512, 6447756192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447756736, 6447756864, 6447756848 @@ -218605,7 +218607,7 @@ }, { "type_name": "CNetMessagePB<286,class CClientMsg_ListenForResponseFound,14,1,1>::CProtobufBinding", - "vtable_address": 6462179848, + "vtable_address": 6462179880, "methods": [ 6450394752, 6450401984, @@ -218644,7 +218646,7 @@ }, { "type_name": "CNetMessagePB<301,class CCSUsrMsg_VGUIMenu,13,1,1>", - "vtable_address": 6461649808, + "vtable_address": 6461649792, "methods": [ 6448672176, 6448670176, @@ -218721,22 +218723,22 @@ }, { "type_name": "CNetMessagePB<301,class CCSUsrMsg_VGUIMenu,13,1,1>", - "vtable_address": 6461649856, + "vtable_address": 6461649840, "methods": [ 6448684188, - 6455181760, + 6455181776, 6447306960, 6447308512, 6447308944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447308960, 6447310464, 6447309456, 6443766512, 6447310224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447310560, 6447311520, 6447311104 @@ -218810,7 +218812,7 @@ }, { "type_name": "CNetMessagePB<301,class CCSUsrMsg_VGUIMenu,13,1,1>::CProtobufBinding", - "vtable_address": 6461655760, + "vtable_address": 6461655744, "methods": [ 6448695632, 6448695520, @@ -218929,19 +218931,19 @@ "vtable_address": 6460590928, "methods": [ 6444102196, - 6455181760, + 6455181776, 6444295024, 6447540912, 6447541168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447541184, 6444204736, 6447541248, 6443766512, 6447541616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447541872, 6447542080, 6447542064 @@ -219134,19 +219136,19 @@ "vtable_address": 6460696720, "methods": [ 6444611608, - 6455181760, + 6455181776, 6444730000, 6447559008, 6447559088, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447559104, 6444678928, 6447559280, 6443766512, 6447560256, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447560960, 6447561360, 6447561296 @@ -219259,7 +219261,7 @@ }, { "type_name": "CNetMessagePB<321,class CCSUsrMsg_Damage,13,1,1>", - "vtable_address": 6461651248, + "vtable_address": 6461651232, "methods": [ 6448682816, 6448682544, @@ -219336,22 +219338,22 @@ }, { "type_name": "CNetMessagePB<321,class CCSUsrMsg_Damage,13,1,1>", - "vtable_address": 6461651296, + "vtable_address": 6461651280, "methods": [ 6448682456, - 6455181760, + 6455181776, 6447626800, 6447627008, 6447627104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447627120, 6447628368, 6447627440, 6443766512, 6447628032, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447628384, 6447628560, 6447628544 @@ -219425,7 +219427,7 @@ }, { "type_name": "CNetMessagePB<321,class CCSUsrMsg_Damage,13,1,1>::CProtobufBinding", - "vtable_address": 6461650784, + "vtable_address": 6461650768, "methods": [ 6448680272, 6448680256, @@ -219544,19 +219546,19 @@ "vtable_address": 6460590544, "methods": [ 6444102208, - 6455181760, + 6455181776, 6444295008, 6447639824, 6447639936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447640112, 6444204720, 6447641712, 6443766512, 6447643056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447643568, 6447643776, 6447643760 @@ -219669,7 +219671,7 @@ }, { "type_name": "CNetMessagePB<323,class CCSUsrMsg_HintText,13,1,1>", - "vtable_address": 6461658112, + "vtable_address": 6461658096, "methods": [ 6448724032, 6448723776, @@ -219746,22 +219748,22 @@ }, { "type_name": "CNetMessagePB<323,class CCSUsrMsg_HintText,13,1,1>", - "vtable_address": 6461658160, + "vtable_address": 6461658144, "methods": [ 6448684164, - 6455181760, + 6455181776, 6447668864, 6447669040, 6447669104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447669120, 6447669808, 6447669328, 6443766512, 6447669696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447669984, 6447671552, 6447671200 @@ -219835,7 +219837,7 @@ }, { "type_name": "CNetMessagePB<323,class CCSUsrMsg_HintText,13,1,1>::CProtobufBinding", - "vtable_address": 6461656112, + "vtable_address": 6461656096, "methods": [ 6448699136, 6448699120, @@ -219874,7 +219876,7 @@ }, { "type_name": "CNetMessagePB<324,class CCSUsrMsg_KeyHintText,13,1,1>", - "vtable_address": 6461658384, + "vtable_address": 6461658368, "methods": [ 6448727888, 6448727600, @@ -219951,22 +219953,22 @@ }, { "type_name": "CNetMessagePB<324,class CCSUsrMsg_KeyHintText,13,1,1>", - "vtable_address": 6461658432, + "vtable_address": 6461658416, "methods": [ 6448684176, - 6455181760, + 6455181776, 6447684752, 6447685008, 6447685072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447685152, 6447686144, 6447685392, 6443766512, 6447685888, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447686848, 6447686896, 6447686880 @@ -220040,7 +220042,7 @@ }, { "type_name": "CNetMessagePB<324,class CCSUsrMsg_KeyHintText,13,1,1>::CProtobufBinding", - "vtable_address": 6461655840, + "vtable_address": 6461655824, "methods": [ 6448697392, 6448697376, @@ -220159,19 +220161,19 @@ "vtable_address": 6460590160, "methods": [ 6444102220, - 6455181760, + 6455181776, 6444294992, 6447723248, 6447724080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447724112, 6444204704, 6447725008, 6443766512, 6447726112, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447726576, 6447726896, 6447726864 @@ -220284,7 +220286,7 @@ }, { "type_name": "CNetMessagePB<327,class CCSUsrMsg_AdjustMoney,13,1,1>", - "vtable_address": 6461651440, + "vtable_address": 6461651424, "methods": [ 6448683200, 6448682944, @@ -220361,22 +220363,22 @@ }, { "type_name": "CNetMessagePB<327,class CCSUsrMsg_AdjustMoney,13,1,1>", - "vtable_address": 6461651488, + "vtable_address": 6461651472, "methods": [ 6448682468, - 6455181760, + 6455181776, 6447077904, 6447078320, 6447078352, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447078368, 6447079072, 6447078416, 6443766512, 6447078896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447079424, 6447081648, 6447081632 @@ -220450,7 +220452,7 @@ }, { "type_name": "CNetMessagePB<327,class CCSUsrMsg_AdjustMoney,13,1,1>::CProtobufBinding", - "vtable_address": 6461650704, + "vtable_address": 6461650688, "methods": [ 6448678528, 6448678512, @@ -220489,7 +220491,7 @@ }, { "type_name": "CNetMessagePB<330,class CCSUsrMsg_KillCam,13,1,1>", - "vtable_address": 6461651824, + "vtable_address": 6461651808, "methods": [ 6448684064, 6448683808, @@ -220566,22 +220568,22 @@ }, { "type_name": "CNetMessagePB<330,class CCSUsrMsg_KillCam,13,1,1>", - "vtable_address": 6461651872, + "vtable_address": 6461651856, "methods": [ 6448682492, - 6455181760, + 6455181776, 6447117584, 6447118144, 6447118208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447118448, 6447120320, 6447119008, 6443766512, 6447119920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447120352, 6447120704, 6447120624 @@ -220655,7 +220657,7 @@ }, { "type_name": "CNetMessagePB<330,class CCSUsrMsg_KillCam,13,1,1>::CProtobufBinding", - "vtable_address": 6461650160, + "vtable_address": 6461650144, "methods": [ 6448674304, 6448674288, @@ -220694,7 +220696,7 @@ }, { "type_name": "CNetMessagePB<334,class CCSUsrMsg_MatchEndConditions,13,1,1>", - "vtable_address": 6461656272, + "vtable_address": 6461656256, "methods": [ 6448702976, 6448702720, @@ -220771,22 +220773,22 @@ }, { "type_name": "CNetMessagePB<334,class CCSUsrMsg_MatchEndConditions,13,1,1>", - "vtable_address": 6461656320, + "vtable_address": 6461656304, "methods": [ 6448683648, - 6455181760, + 6455181776, 6447172016, 6447172304, 6447172336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447172352, 6447174016, 6447172496, 6443766512, 6447173504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447174544, 6447175872, 6447175296 @@ -220860,7 +220862,7 @@ }, { "type_name": "CNetMessagePB<334,class CCSUsrMsg_MatchEndConditions,13,1,1>::CProtobufBinding", - "vtable_address": 6461656896, + "vtable_address": 6461656880, "methods": [ 6448708976, 6448708960, @@ -220979,19 +220981,19 @@ "vtable_address": 6460530152, "methods": [ 6443886372, - 6455181760, + 6455181776, 6443917120, 6447386816, 6447387376, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447387392, 6443899696, 6447388736, 6443766512, 6447390016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447392016, 6447392224, 6447392208 @@ -221184,19 +221186,19 @@ "vtable_address": 6460557832, "methods": [ 6443956900, - 6455181760, + 6455181776, 6444021296, 6447203648, 6447203824, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447204336, 6443995904, 6447204864, 6443766512, 6447205600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447206240, 6447207248, 6447207232 @@ -221389,19 +221391,19 @@ "vtable_address": 6460650112, "methods": [ 6444435012, - 6455181760, + 6455181776, 6444539632, 6447331408, 6447331440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447331456, 6444484624, 6447331568, 6443766512, 6447332368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447332896, 6447333664, 6447333648 @@ -221594,19 +221596,19 @@ "vtable_address": 6460650496, "methods": [ 6444435024, - 6455181760, + 6455181776, 6444539728, 6447343792, 6447343968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447344000, 6444484720, 6447344512, 6443766512, 6447346160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447346992, 6447347520, 6447347488 @@ -221799,19 +221801,19 @@ "vtable_address": 6460650880, "methods": [ 6444435036, - 6455181760, + 6455181776, 6444539696, 6447370016, 6447370144, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447370160, 6444484688, 6447370352, 6443766512, 6447370960, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447373904, 6447375856, 6447375600 @@ -222004,19 +222006,19 @@ "vtable_address": 6460651264, "methods": [ 6444435048, - 6455181760, + 6455181776, 6444539680, 6447401376, 6447401408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447401424, 6444484672, 6447401520, 6443766512, 6447402352, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447403536, 6447404256, 6447404192 @@ -222209,19 +222211,19 @@ "vtable_address": 6460651648, "methods": [ 6444435060, - 6455181760, + 6455181776, 6444539712, 6447419152, 6447419200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447419216, 6444484704, 6447419456, 6443766512, 6447419840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447420416, 6447421328, 6447421312 @@ -222334,7 +222336,7 @@ }, { "type_name": "CNetMessagePB<350,class CCSUsrMsg_ServerRankRevealAll,13,1,1>", - "vtable_address": 6461652400, + "vtable_address": 6461652384, "methods": [ 6448685280, 6448685024, @@ -222411,22 +222413,22 @@ }, { "type_name": "CNetMessagePB<350,class CCSUsrMsg_ServerRankRevealAll,13,1,1>", - "vtable_address": 6461652448, + "vtable_address": 6461652432, "methods": [ 6448682800, - 6455181760, + 6455181776, 6447419824, 6447420352, 6447420432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447420448, 6447421296, 6447420576, 6443766512, 6447421072, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447421536, 6447423328, 6447423312 @@ -222500,7 +222502,7 @@ }, { "type_name": "CNetMessagePB<350,class CCSUsrMsg_ServerRankRevealAll,13,1,1>::CProtobufBinding", - "vtable_address": 6461658656, + "vtable_address": 6461658640, "methods": [ 6448728272, 6448728256, @@ -222539,7 +222541,7 @@ }, { "type_name": "CNetMessagePB<351,class CCSUsrMsg_SendLastKillerDamageToClient,13,1,1>", - "vtable_address": 6461651632, + "vtable_address": 6461651616, "methods": [ 6448683664, 6448683392, @@ -222616,22 +222618,22 @@ }, { "type_name": "CNetMessagePB<351,class CCSUsrMsg_SendLastKillerDamageToClient,13,1,1>", - "vtable_address": 6461651680, + "vtable_address": 6461651664, "methods": [ 6448682480, - 6455181760, + 6455181776, 6447434096, 6447434912, 6447434960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447435568, 6447437680, 6447436064, 6443766512, 6447436976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447437888, 6447438720, 6447438704 @@ -222705,7 +222707,7 @@ }, { "type_name": "CNetMessagePB<351,class CCSUsrMsg_SendLastKillerDamageToClient,13,1,1>::CProtobufBinding", - "vtable_address": 6461650432, + "vtable_address": 6461650416, "methods": [ 6448676320, 6448676304, @@ -222744,7 +222746,7 @@ }, { "type_name": "CNetMessagePB<352,class CCSUsrMsg_ServerRankUpdate,13,1,1>", - "vtable_address": 6461654480, + "vtable_address": 6461654464, "methods": [ 6448686752, 6448686496, @@ -222821,22 +222823,22 @@ }, { "type_name": "CNetMessagePB<352,class CCSUsrMsg_ServerRankUpdate,13,1,1>", - "vtable_address": 6461654528, + "vtable_address": 6461654512, "methods": [ 6448683300, - 6455181760, + 6455181776, 6447497056, 6447497312, 6447497472, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447497488, 6447499600, 6447497968, 6443766512, 6447499424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447501456, 6447502176, 6447502144 @@ -222910,7 +222912,7 @@ }, { "type_name": "CNetMessagePB<352,class CCSUsrMsg_ServerRankUpdate,13,1,1>::CProtobufBinding", - "vtable_address": 6461657760, + "vtable_address": 6461657744, "methods": [ 6448720192, 6448720176, @@ -222949,7 +222951,7 @@ }, { "type_name": "CNetMessagePB<361,class CCSUsrMsg_SendPlayerItemDrops,13,1,1>", - "vtable_address": 6461652592, + "vtable_address": 6461652576, "methods": [ 6448685648, 6448685392, @@ -223026,22 +223028,22 @@ }, { "type_name": "CNetMessagePB<361,class CCSUsrMsg_SendPlayerItemDrops,13,1,1>", - "vtable_address": 6461652640, + "vtable_address": 6461652624, "methods": [ 6448682904, - 6455181760, + 6455181776, 6447757168, 6447757840, 6447757984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447758176, 6447761440, 6447759360, 6443766512, 6447761296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447762832, 6447762960, 6447762880 @@ -223115,7 +223117,7 @@ }, { "type_name": "CNetMessagePB<361,class CCSUsrMsg_SendPlayerItemDrops,13,1,1>::CProtobufBinding", - "vtable_address": 6461658576, + "vtable_address": 6461658560, "methods": [ 6448726160, 6448726144, @@ -223154,7 +223156,7 @@ }, { "type_name": "CNetMessagePB<362,class CCSUsrMsg_RoundBackupFilenames,13,1,1>", - "vtable_address": 6461652968, + "vtable_address": 6461652952, "methods": [ 6448686016, 6448685760, @@ -223231,22 +223233,22 @@ }, { "type_name": "CNetMessagePB<362,class CCSUsrMsg_RoundBackupFilenames,13,1,1>", - "vtable_address": 6461653016, + "vtable_address": 6461653000, "methods": [ 6448682916, - 6455181760, + 6455181776, 6447667056, 6447667296, 6447667408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447667424, 6447668752, 6447667696, 6443766512, 6447668384, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447668768, 6447668880, 6447668784 @@ -223320,7 +223322,7 @@ }, { "type_name": "CNetMessagePB<362,class CCSUsrMsg_RoundBackupFilenames,13,1,1>::CProtobufBinding", - "vtable_address": 6461658304, + "vtable_address": 6461658288, "methods": [ 6448724416, 6448724400, @@ -223439,19 +223441,19 @@ "vtable_address": 6460529768, "methods": [ 6443886384, - 6455181760, + 6455181776, 6443917152, 6447779440, 6447779536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447779552, 6443899728, 6447779696, 6443766512, 6447780192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447781280, 6447782176, 6447782144 @@ -223564,7 +223566,7 @@ }, { "type_name": "CNetMessagePB<364,class CCSUsrMsg_ReportHit,13,1,1>", - "vtable_address": 6461652208, + "vtable_address": 6461652192, "methods": [ 6448684896, 6448684624, @@ -223641,22 +223643,22 @@ }, { "type_name": "CNetMessagePB<364,class CCSUsrMsg_ReportHit,13,1,1>", - "vtable_address": 6461652256, + "vtable_address": 6461652240, "methods": [ 6448682516, - 6455181760, + 6455181776, 6447096016, 6447096128, 6447096160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447096176, 6447096944, 6447096272, 6443766512, 6447096704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447097392, 6447098960, 6447098944 @@ -223730,7 +223732,7 @@ }, { "type_name": "CNetMessagePB<364,class CCSUsrMsg_ReportHit,13,1,1>::CProtobufBinding", - "vtable_address": 6461650000, + "vtable_address": 6461649984, "methods": [ 6448670720, 6448670544, @@ -223769,7 +223771,7 @@ }, { "type_name": "CNetMessagePB<365,class CCSUsrMsg_XpUpdate,13,1,1>", - "vtable_address": 6461654672, + "vtable_address": 6461654656, "methods": [ 6448687120, 6448686864, @@ -223846,22 +223848,22 @@ }, { "type_name": "CNetMessagePB<365,class CCSUsrMsg_XpUpdate,13,1,1>", - "vtable_address": 6461654720, + "vtable_address": 6461654704, "methods": [ 6448683312, - 6455181760, + 6455181776, 6447523408, 6447523904, 6447524128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447524144, 6447524752, 6447524224, 6443766512, 6447524624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447524960, 6447528096, 6447527792 @@ -223935,7 +223937,7 @@ }, { "type_name": "CNetMessagePB<365,class CCSUsrMsg_XpUpdate,13,1,1>::CProtobufBinding", - "vtable_address": 6461657680, + "vtable_address": 6461657664, "methods": [ 6448718448, 6448718432, @@ -223974,7 +223976,7 @@ }, { "type_name": "CNetMessagePB<366,class CCSUsrMsg_QuestProgress,13,1,1>", - "vtable_address": 6461652016, + "vtable_address": 6461652000, "methods": [ 6448684496, 6448684224, @@ -224051,22 +224053,22 @@ }, { "type_name": "CNetMessagePB<366,class CCSUsrMsg_QuestProgress,13,1,1>", - "vtable_address": 6461652064, + "vtable_address": 6461652048, "methods": [ 6448682504, - 6455181760, + 6455181776, 6447238688, 6447238880, 6447238928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447238976, 6447241008, 6447239472, 6443766512, 6447240528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447243312, 6447244528, 6447244512 @@ -224140,7 +224142,7 @@ }, { "type_name": "CNetMessagePB<366,class CCSUsrMsg_QuestProgress,13,1,1>::CProtobufBinding", - "vtable_address": 6461650080, + "vtable_address": 6461650064, "methods": [ 6448672560, 6448672544, @@ -224179,7 +224181,7 @@ }, { "type_name": "CNetMessagePB<367,class CCSUsrMsg_ScoreLeaderboardData,13,1,1>", - "vtable_address": 6461655920, + "vtable_address": 6461655904, "methods": [ 6448700864, 6448700608, @@ -224256,22 +224258,22 @@ }, { "type_name": "CNetMessagePB<367,class CCSUsrMsg_ScoreLeaderboardData,13,1,1>", - "vtable_address": 6461655968, + "vtable_address": 6461655952, "methods": [ 6448683360, - 6455181760, + 6455181776, 6447252832, 6447254080, 6447254576, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447255056, 6447256928, 6447255664, 6443766512, 6447256736, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447257968, 6447262560, 6447262160 @@ -224345,7 +224347,7 @@ }, { "type_name": "CNetMessagePB<367,class CCSUsrMsg_ScoreLeaderboardData,13,1,1>::CProtobufBinding", - "vtable_address": 6461656976, + "vtable_address": 6461656960, "methods": [ 6448710720, 6448710704, @@ -224464,19 +224466,19 @@ "vtable_address": 6460530536, "methods": [ 6443886396, - 6455181760, + 6455181776, 6443917136, 6447267264, 6447268912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447269008, 6443899712, 6447270336, 6443766512, 6447271456, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447272896, 6447275584, 6447274848 @@ -224589,7 +224591,7 @@ }, { "type_name": "CNetMessagePB<369,class CCSUsrMsg_WeaponSound,13,1,1>", - "vtable_address": 6461655568, + "vtable_address": 6461655552, "methods": [ 6448695536, 6448694992, @@ -224666,22 +224668,22 @@ }, { "type_name": "CNetMessagePB<369,class CCSUsrMsg_WeaponSound,13,1,1>", - "vtable_address": 6461655616, + "vtable_address": 6461655600, "methods": [ 6448683348, - 6455181760, + 6455181776, 6447804592, 6447809872, 6447809952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447809968, 6447811312, 6447810192, 6443766512, 6447810880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447811632, 6447811664, 6447811648 @@ -224755,7 +224757,7 @@ }, { "type_name": "CNetMessagePB<369,class CCSUsrMsg_WeaponSound,13,1,1>::CProtobufBinding", - "vtable_address": 6461657248, + "vtable_address": 6461657232, "methods": [ 6448712736, 6448712720, @@ -224794,7 +224796,7 @@ }, { "type_name": "CNetMessagePB<370,class CCSUsrMsg_UpdateScreenHealthBar,13,1,1>", - "vtable_address": 6461657056, + "vtable_address": 6461657040, "methods": [ 6448713840, 6448712192, @@ -224871,22 +224873,22 @@ }, { "type_name": "CNetMessagePB<370,class CCSUsrMsg_UpdateScreenHealthBar,13,1,1>", - "vtable_address": 6461657104, + "vtable_address": 6461657088, "methods": [ 6448683764, - 6455181760, + 6455181776, 6447835600, 6447837648, 6447838800, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447838832, 6447840048, 6447839024, 6443766512, 6447839680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447840064, 6447840176, 6447840160 @@ -224960,7 +224962,7 @@ }, { "type_name": "CNetMessagePB<370,class CCSUsrMsg_UpdateScreenHealthBar,13,1,1>::CProtobufBinding", - "vtable_address": 6461656544, + "vtable_address": 6461656528, "methods": [ 6448705104, 6448705088, @@ -224999,7 +225001,7 @@ }, { "type_name": "CNetMessagePB<371,class CCSUsrMsg_EntityOutlineHighlight,13,1,1>", - "vtable_address": 6461655216, + "vtable_address": 6461655200, "methods": [ 6448691360, 6448691104, @@ -225076,22 +225078,22 @@ }, { "type_name": "CNetMessagePB<371,class CCSUsrMsg_EntityOutlineHighlight,13,1,1>", - "vtable_address": 6461655264, + "vtable_address": 6461655248, "methods": [ 6448683336, - 6455181760, + 6455181776, 6447846512, 6447846688, 6447846736, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447846752, 6447847536, 6447846816, 6443766512, 6447847312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447847696, 6447848112, 6447848000 @@ -225165,7 +225167,7 @@ }, { "type_name": "CNetMessagePB<371,class CCSUsrMsg_EntityOutlineHighlight,13,1,1>::CProtobufBinding", - "vtable_address": 6461657328, + "vtable_address": 6461657312, "methods": [ 6448714592, 6448714576, @@ -225204,7 +225206,7 @@ }, { "type_name": "CNetMessagePB<372,class CCSUsrMsg_SSUI,13,1,1>", - "vtable_address": 6461657408, + "vtable_address": 6461657392, "methods": [ 6448716320, 6448716064, @@ -225281,22 +225283,22 @@ }, { "type_name": "CNetMessagePB<372,class CCSUsrMsg_SSUI,13,1,1>", - "vtable_address": 6461657456, + "vtable_address": 6461657440, "methods": [ 6448683776, - 6455181760, + 6455181776, 6447684912, 6447685760, 6447685808, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447685824, 6447686832, 6447686160, 6443766512, 6447686624, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447686864, 6447686992, 6447686976 @@ -225370,7 +225372,7 @@ }, { "type_name": "CNetMessagePB<372,class CCSUsrMsg_SSUI,13,1,1>::CProtobufBinding", - "vtable_address": 6461656464, + "vtable_address": 6461656448, "methods": [ 6448703360, 6448703344, @@ -225409,7 +225411,7 @@ }, { "type_name": "CNetMessagePB<373,class CCSUsrMsg_SurvivalStats,13,1,1>", - "vtable_address": 6461654288, + "vtable_address": 6461654272, "methods": [ 6448686384, 6448686128, @@ -225486,22 +225488,22 @@ }, { "type_name": "CNetMessagePB<373,class CCSUsrMsg_SurvivalStats,13,1,1>", - "vtable_address": 6461654336, + "vtable_address": 6461654320, "methods": [ 6448683288, - 6455181760, + 6455181776, 6447757184, 6447759776, 6447760128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447760400, 6447762816, 6447761456, 6443766512, 6447762320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447762848, 6447763040, 6447763024 @@ -225575,7 +225577,7 @@ }, { "type_name": "CNetMessagePB<373,class CCSUsrMsg_SurvivalStats,13,1,1>::CProtobufBinding", - "vtable_address": 6461657840, + "vtable_address": 6461657824, "methods": [ 6448721936, 6448721920, @@ -225614,7 +225616,7 @@ }, { "type_name": "CNetMessagePB<374,class CCSUsrMsg_DisconnectToLobby,13,1,1>", - "vtable_address": 6461654864, + "vtable_address": 6461654848, "methods": [ 6448687488, 6448687232, @@ -225691,22 +225693,22 @@ }, { "type_name": "CNetMessagePB<374,class CCSUsrMsg_DisconnectToLobby,13,1,1>", - "vtable_address": 6461654912, + "vtable_address": 6461654896, "methods": [ 6448683324, - 6455181760, + 6455181776, 6443917120, 6447386816, 6447387376, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447387392, 6443899696, 6447388736, 6443766512, 6447390016, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447392016, 6447392224, 6447392208 @@ -225780,7 +225782,7 @@ }, { "type_name": "CNetMessagePB<374,class CCSUsrMsg_DisconnectToLobby,13,1,1>::CProtobufBinding", - "vtable_address": 6461657600, + "vtable_address": 6461657584, "methods": [ 6448716704, 6448716688, @@ -225819,7 +225821,7 @@ }, { "type_name": "CNetMessagePB<375,class CCSUsrMsg_EndOfMatchAllPlayersData,13,1,1>", - "vtable_address": 6461656624, + "vtable_address": 6461656608, "methods": [ 6448708592, 6448706576, @@ -225896,22 +225898,22 @@ }, { "type_name": "CNetMessagePB<375,class CCSUsrMsg_EndOfMatchAllPlayersData,13,1,1>", - "vtable_address": 6461656672, + "vtable_address": 6461656656, "methods": [ 6448683752, - 6455181760, + 6455181776, 6447845024, 6447845232, 6447845360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447845376, 6447846320, 6447845568, 6443766512, 6447846064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447846496, 6447846544, 6447846528 @@ -225985,7 +225987,7 @@ }, { "type_name": "CNetMessagePB<375,class CCSUsrMsg_EndOfMatchAllPlayersData,13,1,1>::CProtobufBinding", - "vtable_address": 6461656816, + "vtable_address": 6461656800, "methods": [ 6448707120, 6448707104, @@ -226024,7 +226026,7 @@ }, { "type_name": "CNetMessagePB<376,class CCSUsrMsg_PostRoundDamageReport,13,1,1>", - "vtable_address": 6461650240, + "vtable_address": 6461650224, "methods": [ 6448677584, 6448675776, @@ -226101,22 +226103,22 @@ }, { "type_name": "CNetMessagePB<376,class CCSUsrMsg_PostRoundDamageReport,13,1,1>", - "vtable_address": 6461650288, + "vtable_address": 6461650272, "methods": [ 6448684480, - 6455181760, + 6455181776, 6447218368, 6447218736, 6447218784, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447218800, 6447220896, 6447219072, 6443766512, 6447220080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447220912, 6447221552, 6447221536 @@ -226190,7 +226192,7 @@ }, { "type_name": "CNetMessagePB<376,class CCSUsrMsg_PostRoundDamageReport,13,1,1>::CProtobufBinding", - "vtable_address": 6461655488, + "vtable_address": 6461655472, "methods": [ 6448693504, 6448693488, @@ -226309,19 +226311,19 @@ "vtable_address": 6460652032, "methods": [ 6444435072, - 6455181760, + 6455181776, 6444539664, 6447194288, 6447194480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447194496, 6444484656, 6447194832, 6443766512, 6447195328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447195744, 6447196160, 6447196032 @@ -226514,19 +226516,19 @@ "vtable_address": 6460652416, "methods": [ 6444435084, - 6455181760, + 6455181776, 6444539648, 6447247824, 6447247856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447247872, 6444484640, 6447248016, 6443766512, 6447248400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447248800, 6447248832, 6447248816 @@ -226639,7 +226641,7 @@ }, { "type_name": "CNetMessagePB<381,class CCSUsrMsg_DeepStats,13,1,1>", - "vtable_address": 6461657920, + "vtable_address": 6461657904, "methods": [ 6448723664, 6448723408, @@ -226716,22 +226718,22 @@ }, { "type_name": "CNetMessagePB<381,class CCSUsrMsg_DeepStats,13,1,1>", - "vtable_address": 6461657968, + "vtable_address": 6461657952, "methods": [ 6448684152, - 6455181760, + 6455181776, 6447257456, 6447261248, 6447261536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447262080, 6447262848, 6447262176, 6443766512, 6447262720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447262880, 6447263056, 6447263040 @@ -226805,7 +226807,7 @@ }, { "type_name": "CNetMessagePB<381,class CCSUsrMsg_DeepStats,13,1,1>::CProtobufBinding", - "vtable_address": 6461656192, + "vtable_address": 6461656176, "methods": [ 6448701248, 6448701232, @@ -226844,7 +226846,7 @@ }, { "type_name": "CNetMessagePB<383,class CCSUsrMsg_ShootInfo,13,1,1>", - "vtable_address": 6461650512, + "vtable_address": 6461650496, "methods": [ 6448678144, 6448677888, @@ -226921,22 +226923,22 @@ }, { "type_name": "CNetMessagePB<383,class CCSUsrMsg_ShootInfo,13,1,1>", - "vtable_address": 6461650560, + "vtable_address": 6461650544, "methods": [ 6448684584, - 6455181760, + 6455181776, 6447272576, 6447273440, 6447273840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447273872, 6447276544, 6447274880, 6443766512, 6447276224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447277376, 6447281104, 6447280528 @@ -227010,7 +227012,7 @@ }, { "type_name": "CNetMessagePB<383,class CCSUsrMsg_ShootInfo,13,1,1>::CProtobufBinding", - "vtable_address": 6461655408, + "vtable_address": 6461655392, "methods": [ 6448691744, 6448691728, @@ -227129,19 +227131,19 @@ "vtable_address": 6460530920, "methods": [ 6443886408, - 6455181760, + 6455181776, 6443917104, 6447454256, 6447454320, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447454336, 6443899680, 6447454432, 6443766512, 6447455856, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447463024, 6447467440, 6447466768 @@ -227254,7 +227256,7 @@ }, { "type_name": "CNetMessagePB<387,class CCSUsrMsg_RecurringMissionSchema,13,1,1>", - "vtable_address": 6461650864, + "vtable_address": 6461650848, "methods": [ 6448682000, 6448681744, @@ -227331,22 +227333,22 @@ }, { "type_name": "CNetMessagePB<387,class CCSUsrMsg_RecurringMissionSchema,13,1,1>", - "vtable_address": 6461650912, + "vtable_address": 6461650896, "methods": [ 6448684640, - 6455181760, + 6455181776, 6447511408, 6447511584, 6447511648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447511664, 6447513504, 6447512240, 6443766512, 6447513280, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447515872, 6447516768, 6447516256 @@ -227420,7 +227422,7 @@ }, { "type_name": "CNetMessagePB<387,class CCSUsrMsg_RecurringMissionSchema,13,1,1>::CProtobufBinding", - "vtable_address": 6461655136, + "vtable_address": 6461655120, "methods": [ 6448689632, 6448689616, @@ -227459,7 +227461,7 @@ }, { "type_name": "CNetMessagePB<388,class CCSUsrMsg_SendPlayerLoadout,13,1,1>", - "vtable_address": 6461651056, + "vtable_address": 6461651040, "methods": [ 6448682368, 6448682112, @@ -227536,22 +227538,22 @@ }, { "type_name": "CNetMessagePB<388,class CCSUsrMsg_SendPlayerLoadout,13,1,1>", - "vtable_address": 6461651104, + "vtable_address": 6461651088, "methods": [ 6448684984, - 6455181760, + 6455181776, 6447554816, 6447555696, 6447555904, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447555920, 6447557136, 6447556304, 6443766512, 6447556880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447557392, 6447557424, 6447557408 @@ -227625,7 +227627,7 @@ }, { "type_name": "CNetMessagePB<388,class CCSUsrMsg_SendPlayerLoadout,13,1,1>::CProtobufBinding", - "vtable_address": 6461655056, + "vtable_address": 6461655040, "methods": [ 6448687872, 6448687856, @@ -227664,13 +227666,13 @@ }, { "type_name": "CNetMessagePB<400,class CMsgTEEffectDispatch,5,0,1>", - "vtable_address": 6463132888, + "vtable_address": 6463132920, "methods": [ - 6455054304, - 6455054048, - 6455054032, + 6455054320, 6455054064, - 6455054144 + 6455054048, + 6455054080, + 6455054160 ], "bases": [ { @@ -227741,22 +227743,22 @@ }, { "type_name": "CNetMessagePB<400,class CMsgTEEffectDispatch,5,0,1>", - "vtable_address": 6463132936, + "vtable_address": 6463132968, "methods": [ - 6455054764, - 6455181760, + 6455054780, + 6455181776, 6448110048, 6448110608, 6448110672, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448110688, 6448111456, 6448110928, 6443766512, 6448111328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448111856, 6448113776, 6448113760 @@ -227830,17 +227832,17 @@ }, { "type_name": "CNetMessagePB<400,class CMsgTEEffectDispatch,5,0,1>::CProtobufBinding", - "vtable_address": 6463139280, + "vtable_address": 6463139312, "methods": [ - 6455070544, - 6455082560, - 6455086368, - 6455068784, - 6455068960, - 6455068608, - 6455065248, - 6455082912, - 6455082736 + 6455070560, + 6455082576, + 6455086384, + 6455068800, + 6455068976, + 6455068624, + 6455065264, + 6455082928, + 6455082752 ], "bases": [ { @@ -227869,13 +227871,13 @@ }, { "type_name": "CNetMessagePB<401,class CMsgTEArmorRicochet,5,0,1>", - "vtable_address": 6463129328, + "vtable_address": 6463129360, "methods": [ - 6455026256, - 6455026000, - 6455025984, + 6455026272, 6455026016, - 6455026096 + 6455026000, + 6455026032, + 6455026112 ], "bases": [ { @@ -227946,22 +227948,22 @@ }, { "type_name": "CNetMessagePB<401,class CMsgTEArmorRicochet,5,0,1>", - "vtable_address": 6463129376, + "vtable_address": 6463129408, "methods": [ - 6455025720, - 6455181760, + 6455025736, + 6455181776, 6448549488, 6448549904, 6448550048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448550064, 6448551024, 6448550368, 6443766512, 6448550848, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448551040, 6448551072, 6448551056 @@ -228035,17 +228037,17 @@ }, { "type_name": "CNetMessagePB<401,class CMsgTEArmorRicochet,5,0,1>::CProtobufBinding", - "vtable_address": 6463132808, + "vtable_address": 6463132840, "methods": [ - 6455035376, - 6455044080, - 6455051856, - 6455034096, - 6455034224, - 6455033968, - 6455032304, - 6455044416, - 6455044288 + 6455035392, + 6455044096, + 6455051872, + 6455034112, + 6455034240, + 6455033984, + 6455032320, + 6455044432, + 6455044304 ], "bases": [ { @@ -228074,13 +228076,13 @@ }, { "type_name": "CNetMessagePB<402,class CMsgTEBeamEntPoint,5,0,1>", - "vtable_address": 6463131592, + "vtable_address": 6463131624, "methods": [ - 6455032000, + 6455032016, + 6455033664, 6455033648, - 6455033632, - 6455044208, - 6455033664 + 6455044224, + 6455033680 ], "bases": [ { @@ -228151,22 +228153,22 @@ }, { "type_name": "CNetMessagePB<402,class CMsgTEBeamEntPoint,5,0,1>", - "vtable_address": 6463131640, + "vtable_address": 6463131672, "methods": [ - 6455031976, - 6455181760, + 6455031992, + 6455181776, 6447979216, 6447979760, 6447979984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447980144, 6447981888, 6447980544, 6443766512, 6447981488, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447981904, 6447982096, 6447982080 @@ -228240,17 +228242,17 @@ }, { "type_name": "CNetMessagePB<402,class CMsgTEBeamEntPoint,5,0,1>::CProtobufBinding", - "vtable_address": 6463132728, + "vtable_address": 6463132760, "methods": [ - 6455036464, - 6455044096, - 6455052128, - 6455034112, - 6455034368, - 6455033984, - 6455032464, - 6455044432, - 6455044304 + 6455036480, + 6455044112, + 6455052144, + 6455034128, + 6455034384, + 6455034000, + 6455032480, + 6455044448, + 6455044320 ], "bases": [ { @@ -228279,13 +228281,13 @@ }, { "type_name": "CNetMessagePB<403,class CMsgTEBeamEnts,5,0,1>", - "vtable_address": 6463129816, + "vtable_address": 6463129848, "methods": [ - 6455027024, - 6455026768, - 6455026752, + 6455027040, 6455026784, - 6455026864 + 6455026768, + 6455026800, + 6455026880 ], "bases": [ { @@ -228356,22 +228358,22 @@ }, { "type_name": "CNetMessagePB<403,class CMsgTEBeamEnts,5,0,1>", - "vtable_address": 6463129864, + "vtable_address": 6463129896, "methods": [ - 6455025744, - 6455181760, + 6455025760, + 6455181776, 6447997840, 6447998048, 6447998176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447998192, 6447999264, 6447998352, 6443766512, 6447998944, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447999280, 6447999648, 6447999632 @@ -228445,17 +228447,17 @@ }, { "type_name": "CNetMessagePB<403,class CMsgTEBeamEnts,5,0,1>::CProtobufBinding", - "vtable_address": 6463132648, + "vtable_address": 6463132680, "methods": [ - 6455037552, - 6455044112, - 6455052400, - 6455034128, - 6455034512, - 6455034000, - 6455032640, - 6455044448, - 6455044320 + 6455037568, + 6455044128, + 6455052416, + 6455034144, + 6455034528, + 6455034016, + 6455032656, + 6455044464, + 6455044336 ], "bases": [ { @@ -228484,13 +228486,13 @@ }, { "type_name": "CNetMessagePB<404,class CMsgTEBeamPoints,5,0,1>", - "vtable_address": 6463130264, + "vtable_address": 6463130296, "methods": [ - 6455027760, - 6455027504, - 6455027488, + 6455027776, 6455027520, - 6455027600 + 6455027504, + 6455027536, + 6455027616 ], "bases": [ { @@ -228561,25 +228563,25 @@ }, { "type_name": "CNetMessagePB<404,class CMsgTEBeamPoints,5,0,1>", - "vtable_address": 6463130312, + "vtable_address": 6463130344, "methods": [ - 6455025768, - 6455181760, + 6455025784, + 6455181776, 6448010144, 6448010656, 6448011024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448011040, 6448012160, 6448011376, 6443766512, 6448011952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448012352, - 6448012544, - 6448012496 + 6448012624, + 6448012512 ], "bases": [ { @@ -228650,17 +228652,17 @@ }, { "type_name": "CNetMessagePB<404,class CMsgTEBeamPoints,5,0,1>::CProtobufBinding", - "vtable_address": 6463132568, + "vtable_address": 6463132600, "methods": [ - 6455038640, - 6455044128, - 6455052672, - 6455034144, - 6455034656, - 6455034016, - 6455032800, - 6455044464, - 6455044336 + 6455038656, + 6455044144, + 6455052688, + 6455034160, + 6455034672, + 6455034032, + 6455032816, + 6455044480, + 6455044352 ], "bases": [ { @@ -228689,13 +228691,13 @@ }, { "type_name": "CNetMessagePB<405,class CMsgTEBeamRing,5,0,1>", - "vtable_address": 6463130720, + "vtable_address": 6463130752, "methods": [ - 6455028496, - 6455028240, - 6455028224, + 6455028512, 6455028256, - 6455028336 + 6455028240, + 6455028272, + 6455028352 ], "bases": [ { @@ -228766,25 +228768,25 @@ }, { "type_name": "CNetMessagePB<405,class CMsgTEBeamRing,5,0,1>", - "vtable_address": 6463130768, + "vtable_address": 6463130800, "methods": [ - 6455025936, - 6455181760, + 6455025952, + 6455181776, 6448020576, 6448020784, 6448020912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448020928, 6448022160, 6448021088, 6443766512, 6448021840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448022192, 6448023312, - 6448022800 + 6448023104 ], "bases": [ { @@ -228855,17 +228857,17 @@ }, { "type_name": "CNetMessagePB<405,class CMsgTEBeamRing,5,0,1>::CProtobufBinding", - "vtable_address": 6463132488, + "vtable_address": 6463132520, "methods": [ - 6455039728, - 6455044144, - 6455052944, - 6455034160, - 6455034800, - 6455034032, - 6455032960, - 6455044480, - 6455044352 + 6455039744, + 6455044160, + 6455052960, + 6455034176, + 6455034816, + 6455034048, + 6455032976, + 6455044496, + 6455044368 ], "bases": [ { @@ -228894,13 +228896,13 @@ }, { "type_name": "CNetMessagePB<408,class CMsgTEBubbles,5,0,1>", - "vtable_address": 6463128392, + "vtable_address": 6463128424, "methods": [ - 6455024512, - 6455024256, - 6455024240, + 6455024528, 6455024272, - 6455024352 + 6455024256, + 6455024288, + 6455024368 ], "bases": [ { @@ -228971,24 +228973,24 @@ }, { "type_name": "CNetMessagePB<408,class CMsgTEBubbles,5,0,1>", - "vtable_address": 6463128440, + "vtable_address": 6463128472, "methods": [ - 6455026356, - 6455181760, + 6455026372, + 6455181776, 6448040864, 6448041328, 6448041488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448041504, 6448042880, 6448041856, 6443766512, 6448042528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448042896, - 6448042944, + 6448043040, 6448042928 ], "bases": [ @@ -229060,17 +229062,17 @@ }, { "type_name": "CNetMessagePB<408,class CMsgTEBubbles,5,0,1>::CProtobufBinding", - "vtable_address": 6463132328, + "vtable_address": 6463132360, "methods": [ - 6455040816, - 6455044160, - 6455053216, - 6455034176, - 6455034944, - 6455034048, - 6455033120, - 6455044496, - 6455044368 + 6455040832, + 6455044176, + 6455053232, + 6455034192, + 6455034960, + 6455034064, + 6455033136, + 6455044512, + 6455044384 ], "bases": [ { @@ -229099,13 +229101,13 @@ }, { "type_name": "CNetMessagePB<409,class CMsgTEBubbleTrail,5,0,1>", - "vtable_address": 6463128840, + "vtable_address": 6463128872, "methods": [ - 6455025248, - 6455024992, - 6455024976, + 6455025264, 6455025008, - 6455025088 + 6455024992, + 6455025024, + 6455025104 ], "bases": [ { @@ -229176,23 +229178,23 @@ }, { "type_name": "CNetMessagePB<409,class CMsgTEBubbleTrail,5,0,1>", - "vtable_address": 6463128888, + "vtable_address": 6463128920, "methods": [ - 6455026624, - 6455181760, + 6455026640, + 6455181776, 6448048656, 6448049312, 6448049488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448049568, - 6448051232, + 6448051392, 6448049920, 6443766512, - 6448050864, - 6455183120, - 6455184944, - 6448052208, + 6448050880, + 6455183136, + 6455184960, + 6448052608, 6448052656, 6448052640 ], @@ -229265,17 +229267,17 @@ }, { "type_name": "CNetMessagePB<409,class CMsgTEBubbleTrail,5,0,1>::CProtobufBinding", - "vtable_address": 6463132248, + "vtable_address": 6463132280, "methods": [ - 6455041904, - 6455044176, - 6455053488, - 6455034192, - 6455035088, - 6455034064, - 6455033296, - 6455044512, - 6455044384 + 6455041920, + 6455044192, + 6455053504, + 6455034208, + 6455035104, + 6455034080, + 6455033312, + 6455044528, + 6455044400 ], "bases": [ { @@ -229304,7 +229306,7 @@ }, { "type_name": "CNetMessagePB<410,class CMsgTEDecal,5,0,1>", - "vtable_address": 6461024016, + "vtable_address": 6461024000, "methods": [ 6445896560, 6445896304, @@ -229381,25 +229383,25 @@ }, { "type_name": "CNetMessagePB<410,class CMsgTEDecal,5,0,1>", - "vtable_address": 6461024064, + "vtable_address": 6461024048, "methods": [ 6445892544, - 6455181760, + 6455181776, 6445896256, 6448063872, 6448064048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448064064, 6445896272, 6448064464, 6443766512, 6448065264, - 6455183120, - 6455184944, - 6448065808, + 6455183136, + 6455184960, + 6448065856, 6448066624, - 6448066416 + 6448066608 ], "bases": [ { @@ -229470,7 +229472,7 @@ }, { "type_name": "CNetMessagePB<410,class CMsgTEDecal,5,0,1>::CProtobufBinding", - "vtable_address": 6461026696, + "vtable_address": 6461026680, "methods": [ 6445899456, 6445899440, @@ -229509,7 +229511,7 @@ }, { "type_name": "CNetMessagePB<411,class CMsgTEWorldDecal,5,0,1>", - "vtable_address": 6461024208, + "vtable_address": 6461024192, "methods": [ 6445896928, 6445896672, @@ -229586,22 +229588,22 @@ }, { "type_name": "CNetMessagePB<411,class CMsgTEWorldDecal,5,0,1>", - "vtable_address": 6461024256, + "vtable_address": 6461024240, "methods": [ 6445892932, - 6455181760, + 6455181776, 6445901328, 6448380672, 6448380816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448380832, 6445901344, 6448381152, 6443766512, 6448381968, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448383104, 6448383408, 6448383392 @@ -229675,7 +229677,7 @@ }, { "type_name": "CNetMessagePB<411,class CMsgTEWorldDecal,5,0,1>::CProtobufBinding", - "vtable_address": 6461026616, + "vtable_address": 6461026600, "methods": [ 6445897712, 6445897696, @@ -229714,13 +229716,13 @@ }, { "type_name": "CNetMessagePB<412,class CMsgTEEnergySplash,5,0,1>", - "vtable_address": 6463133344, + "vtable_address": 6463133376, "methods": [ - 6455055296, - 6455055040, - 6455055024, + 6455055312, 6455055056, - 6455055136 + 6455055040, + 6455055072, + 6455055152 ], "bases": [ { @@ -229791,22 +229793,22 @@ }, { "type_name": "CNetMessagePB<412,class CMsgTEEnergySplash,5,0,1>", - "vtable_address": 6463133392, + "vtable_address": 6463133424, "methods": [ - 6455054788, - 6455181760, + 6455054804, + 6455181776, 6448123920, 6448124352, 6448124496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448124512, 6448125792, 6448124816, 6443766512, 6448125584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448126304, 6448127616, 6448127600 @@ -229880,17 +229882,17 @@ }, { "type_name": "CNetMessagePB<412,class CMsgTEEnergySplash,5,0,1>::CProtobufBinding", - "vtable_address": 6463139200, + "vtable_address": 6463139232, "methods": [ - 6455071632, - 6455082576, - 6455086640, - 6455068800, - 6455069104, - 6455068624, - 6455065408, - 6455082928, - 6455082752 + 6455071648, + 6455082592, + 6455086656, + 6455068816, + 6455069120, + 6455068640, + 6455065424, + 6455082944, + 6455082768 ], "bases": [ { @@ -229919,13 +229921,13 @@ }, { "type_name": "CNetMessagePB<413,class CMsgTEFizz,5,0,1>", - "vtable_address": 6463133824, + "vtable_address": 6463133856, "methods": [ - 6455056016, - 6455055760, - 6455055744, + 6455056032, 6455055776, - 6455055856 + 6455055760, + 6455055792, + 6455055872 ], "bases": [ { @@ -229996,22 +229998,22 @@ }, { "type_name": "CNetMessagePB<413,class CMsgTEFizz,5,0,1>", - "vtable_address": 6463133872, + "vtable_address": 6463133904, "methods": [ - 6455054812, - 6455181760, + 6455054828, + 6455181776, 6448142192, 6448142368, 6448142416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448142432, 6448143600, 6448142576, 6443766512, 6448143200, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448144608, 6448150592, 6448149968 @@ -230085,17 +230087,17 @@ }, { "type_name": "CNetMessagePB<413,class CMsgTEFizz,5,0,1>::CProtobufBinding", - "vtable_address": 6463139120, + "vtable_address": 6463139152, "methods": [ - 6455072720, - 6455082592, - 6455086912, - 6455068816, - 6455069248, - 6455068640, - 6455065568, - 6455082944, - 6455082768 + 6455072736, + 6455082608, + 6455086928, + 6455068832, + 6455069264, + 6455068656, + 6455065584, + 6455082960, + 6455082784 ], "bases": [ { @@ -230124,13 +230126,13 @@ }, { "type_name": "CNetMessagePB<415,class CMsgTEGlowSprite,5,0,1>", - "vtable_address": 6463134720, + "vtable_address": 6463134752, "methods": [ - 6455057456, - 6455057200, - 6455057184, + 6455057472, 6455057216, - 6455057296 + 6455057200, + 6455057232, + 6455057312 ], "bases": [ { @@ -230201,22 +230203,22 @@ }, { "type_name": "CNetMessagePB<415,class CMsgTEGlowSprite,5,0,1>", - "vtable_address": 6463134768, + "vtable_address": 6463134800, "methods": [ - 6455054860, - 6455181760, + 6455054876, + 6455181776, 6448184416, 6448185232, 6448185344, - 6455181808, - 6455178784, - 6448185360, + 6455181824, + 6455178800, + 6448185744, 6448186944, - 6448185952, + 6448186080, 6443766512, 6448186640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448187120, 6448187248, 6448187232 @@ -230290,17 +230292,17 @@ }, { "type_name": "CNetMessagePB<415,class CMsgTEGlowSprite,5,0,1>::CProtobufBinding", - "vtable_address": 6463138960, + "vtable_address": 6463138992, "methods": [ - 6455073808, - 6455082608, - 6455087184, - 6455068832, - 6455069392, - 6455068656, - 6455065728, - 6455082960, - 6455082784 + 6455073824, + 6455082624, + 6455087200, + 6455068848, + 6455069408, + 6455068672, + 6455065744, + 6455082976, + 6455082800 ], "bases": [ { @@ -230329,13 +230331,13 @@ }, { "type_name": "CNetMessagePB<416,class CMsgTEImpact,5,0,1>", - "vtable_address": 6463135176, + "vtable_address": 6463135208, "methods": [ - 6455058176, - 6455057920, - 6455057904, + 6455058192, 6455057936, - 6455058016 + 6455057920, + 6455057952, + 6455058032 ], "bases": [ { @@ -230406,22 +230408,22 @@ }, { "type_name": "CNetMessagePB<416,class CMsgTEImpact,5,0,1>", - "vtable_address": 6463135224, + "vtable_address": 6463135256, "methods": [ - 6455054884, - 6455181760, + 6455054900, + 6455181776, 6448197360, 6448198736, 6448199056, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448199088, 6448200256, 6448199408, 6443766512, 6448200000, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448200272, 6448201088, 6448200784 @@ -230495,17 +230497,17 @@ }, { "type_name": "CNetMessagePB<416,class CMsgTEImpact,5,0,1>::CProtobufBinding", - "vtable_address": 6463138880, + "vtable_address": 6463138912, "methods": [ - 6455074896, - 6455082624, - 6455087456, - 6455068848, - 6455069536, - 6455068672, - 6455065888, - 6455082976, - 6455082800 + 6455074912, + 6455082640, + 6455087472, + 6455068864, + 6455069552, + 6455068688, + 6455065904, + 6455082992, + 6455082816 ], "bases": [ { @@ -230534,13 +230536,13 @@ }, { "type_name": "CNetMessagePB<417,class CMsgTEMuzzleFlash,5,0,1>", - "vtable_address": 6463136096, + "vtable_address": 6463136128, "methods": [ - 6455059648, - 6455059392, - 6455059376, + 6455059664, 6455059408, - 6455059488 + 6455059392, + 6455059424, + 6455059504 ], "bases": [ { @@ -230611,22 +230613,22 @@ }, { "type_name": "CNetMessagePB<417,class CMsgTEMuzzleFlash,5,0,1>", - "vtable_address": 6463136144, + "vtable_address": 6463136176, "methods": [ - 6455054932, - 6455181760, + 6455054948, + 6455181776, 6448225712, 6448226304, 6448226464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448226496, 6448227824, 6448226896, 6443766512, 6448227520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448227840, 6448227872, 6448227856 @@ -230700,17 +230702,17 @@ }, { "type_name": "CNetMessagePB<417,class CMsgTEMuzzleFlash,5,0,1>::CProtobufBinding", - "vtable_address": 6463138720, + "vtable_address": 6463138752, "methods": [ - 6455075984, - 6455082640, - 6455087728, - 6455068864, - 6455069680, - 6455068688, - 6455066048, - 6455082992, - 6455082816 + 6455076000, + 6455082656, + 6455087744, + 6455068880, + 6455069696, + 6455068704, + 6455066064, + 6455083008, + 6455082832 ], "bases": [ { @@ -230739,13 +230741,13 @@ }, { "type_name": "CNetMessagePB<418,class CMsgTEBloodStream,5,0,1>", - "vtable_address": 6463131168, + "vtable_address": 6463131200, "methods": [ - 6455029232, - 6455028976, - 6455028960, + 6455029248, 6455028992, - 6455029072 + 6455028976, + 6455029008, + 6455029088 ], "bases": [ { @@ -230816,22 +230818,22 @@ }, { "type_name": "CNetMessagePB<418,class CMsgTEBloodStream,5,0,1>", - "vtable_address": 6463131216, + "vtable_address": 6463131248, "methods": [ - 6455025960, - 6455181760, + 6455025976, + 6455181776, 6448240784, 6448241264, 6448241424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448241440, 6448243168, 6448241888, 6443766512, 6448242864, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448244080, 6448244128, 6448244112 @@ -230905,17 +230907,17 @@ }, { "type_name": "CNetMessagePB<418,class CMsgTEBloodStream,5,0,1>::CProtobufBinding", - "vtable_address": 6463132408, + "vtable_address": 6463132440, "methods": [ - 6455042992, - 6455044192, - 6455053760, - 6455034208, - 6455035232, - 6455034080, - 6455033472, - 6455044528, - 6455044400 + 6455043008, + 6455044208, + 6455053776, + 6455034224, + 6455035248, + 6455034096, + 6455033488, + 6455044544, + 6455044416 ], "bases": [ { @@ -230944,7 +230946,7 @@ }, { "type_name": "CNetMessagePB<419,class CMsgTEExplosion,5,0,1>", - "vtable_address": 6461734896, + "vtable_address": 6461734912, "methods": [ 6448892432, 6448906832, @@ -231021,22 +231023,22 @@ }, { "type_name": "CNetMessagePB<419,class CMsgTEExplosion,5,0,1>", - "vtable_address": 6461734944, + "vtable_address": 6461734960, "methods": [ 6448892248, - 6455181760, + 6455181776, 6448252512, 6448253392, 6448253648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448253664, 6448256368, 6448254272, 6443766512, 6448255616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448256496, 6448257872, 6448257856 @@ -231110,7 +231112,7 @@ }, { "type_name": "CNetMessagePB<419,class CMsgTEExplosion,5,0,1>::CProtobufBinding", - "vtable_address": 6461764096, + "vtable_address": 6461764112, "methods": [ 6448999984, 6449009440, @@ -231149,13 +231151,13 @@ }, { "type_name": "CNetMessagePB<420,class CMsgTEDust,5,0,1>", - "vtable_address": 6463134272, + "vtable_address": 6463134304, "methods": [ - 6455056736, - 6455056480, - 6455056464, + 6455056752, 6455056496, - 6455056576 + 6455056480, + 6455056512, + 6455056592 ], "bases": [ { @@ -231226,22 +231228,22 @@ }, { "type_name": "CNetMessagePB<420,class CMsgTEDust,5,0,1>", - "vtable_address": 6463134320, + "vtable_address": 6463134352, "methods": [ - 6455054836, - 6455181760, + 6455054852, + 6455181776, 6448269520, 6448269968, 6448270128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448270160, 6448271296, 6448270496, 6443766512, 6448271056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448272128, 6448274080, 6448273904 @@ -231315,17 +231317,17 @@ }, { "type_name": "CNetMessagePB<420,class CMsgTEDust,5,0,1>::CProtobufBinding", - "vtable_address": 6463139040, + "vtable_address": 6463139072, "methods": [ - 6455077072, - 6455082656, - 6455088000, - 6455068880, - 6455069824, - 6455068704, - 6455066208, - 6455083008, - 6455082832 + 6455077088, + 6455082672, + 6455088016, + 6455068896, + 6455069840, + 6455068720, + 6455066224, + 6455083024, + 6455082848 ], "bases": [ { @@ -231354,13 +231356,13 @@ }, { "type_name": "CNetMessagePB<421,class CMsgTELargeFunnel,5,0,1>", - "vtable_address": 6463135640, + "vtable_address": 6463135672, "methods": [ - 6455058928, - 6455058672, - 6455058656, + 6455058944, 6455058688, - 6455058768 + 6455058672, + 6455058704, + 6455058784 ], "bases": [ { @@ -231431,22 +231433,22 @@ }, { "type_name": "CNetMessagePB<421,class CMsgTELargeFunnel,5,0,1>", - "vtable_address": 6463135688, + "vtable_address": 6463135720, "methods": [ - 6455054908, - 6455181760, + 6455054924, + 6455181776, 6448291296, 6448291872, 6448291968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448291984, 6448293104, 6448292176, 6443766512, 6448292880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448293120, 6448293152, 6448293136 @@ -231520,17 +231522,17 @@ }, { "type_name": "CNetMessagePB<421,class CMsgTELargeFunnel,5,0,1>::CProtobufBinding", - "vtable_address": 6463138800, + "vtable_address": 6463138832, "methods": [ - 6455078160, - 6455082672, - 6455088272, - 6455068896, - 6455069968, - 6455068720, - 6455066368, - 6455083024, - 6455082848 + 6455078176, + 6455082688, + 6455088288, + 6455068912, + 6455069984, + 6455068736, + 6455066384, + 6455083040, + 6455082864 ], "bases": [ { @@ -231559,13 +231561,13 @@ }, { "type_name": "CNetMessagePB<422,class CMsgTESparks,5,0,1>", - "vtable_address": 6463137456, + "vtable_address": 6463137488, "methods": [ - 6455061824, - 6455061568, - 6455061552, + 6455061840, 6455061584, - 6455061664 + 6455061568, + 6455061600, + 6455061680 ], "bases": [ { @@ -231636,22 +231638,22 @@ }, { "type_name": "CNetMessagePB<422,class CMsgTESparks,5,0,1>", - "vtable_address": 6463137504, + "vtable_address": 6463137536, "methods": [ - 6455055004, - 6455181760, + 6455055020, + 6455181776, 6448305984, 6448307536, 6448307696, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448307712, 6448309296, 6448308064, 6443766512, 6448308928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448309328, 6448309568, 6448309408 @@ -231725,17 +231727,17 @@ }, { "type_name": "CNetMessagePB<422,class CMsgTESparks,5,0,1>::CProtobufBinding", - "vtable_address": 6463138480, + "vtable_address": 6463138512, "methods": [ - 6455079248, - 6455082688, - 6455088544, - 6455068912, - 6455070112, - 6455068736, - 6455066528, - 6455083040, - 6455082864 + 6455079264, + 6455082704, + 6455088560, + 6455068928, + 6455070128, + 6455068752, + 6455066544, + 6455083056, + 6455082880 ], "bases": [ { @@ -231764,13 +231766,13 @@ }, { "type_name": "CNetMessagePB<423,class CMsgTEPhysicsProp,5,0,1>", - "vtable_address": 6463136552, + "vtable_address": 6463136584, "methods": [ - 6455060368, - 6455060112, - 6455060096, + 6455060384, 6455060128, - 6455060208 + 6455060112, + 6455060144, + 6455060224 ], "bases": [ { @@ -231841,22 +231843,22 @@ }, { "type_name": "CNetMessagePB<423,class CMsgTEPhysicsProp,5,0,1>", - "vtable_address": 6463136600, + "vtable_address": 6463136632, "methods": [ - 6455054956, - 6455181760, + 6455054972, + 6455181776, 6448323312, 6448325376, 6448325840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448326224, 6448329280, 6448327024, 6443766512, 6448328432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448329296, 6448329936, 6448329776 @@ -231930,17 +231932,17 @@ }, { "type_name": "CNetMessagePB<423,class CMsgTEPhysicsProp,5,0,1>::CProtobufBinding", - "vtable_address": 6463138640, + "vtable_address": 6463138672, "methods": [ - 6455080336, - 6455082704, - 6455088816, - 6455068928, - 6455070256, - 6455068752, - 6455066688, - 6455083056, - 6455082880 + 6455080352, + 6455082720, + 6455088832, + 6455068944, + 6455070272, + 6455068768, + 6455066704, + 6455083072, + 6455082896 ], "bases": [ { @@ -231969,13 +231971,13 @@ }, { "type_name": "CNetMessagePB<426,class CMsgTESmoke,5,0,1>", - "vtable_address": 6463137008, + "vtable_address": 6463137040, "methods": [ - 6455061104, - 6455060848, - 6455060832, + 6455061120, 6455060864, - 6455060944 + 6455060848, + 6455060880, + 6455060960 ], "bases": [ { @@ -232046,22 +232048,22 @@ }, { "type_name": "CNetMessagePB<426,class CMsgTESmoke,5,0,1>", - "vtable_address": 6463137056, + "vtable_address": 6463137088, "methods": [ - 6455054980, - 6455181760, + 6455054996, + 6455181776, 6448351616, 6448351904, 6448352000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448352016, 6448353104, 6448352320, 6443766512, 6448352928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448353856, 6448355456, 6448355440 @@ -232135,17 +232137,17 @@ }, { "type_name": "CNetMessagePB<426,class CMsgTESmoke,5,0,1>::CProtobufBinding", - "vtable_address": 6463138560, + "vtable_address": 6463138592, "methods": [ - 6455081424, - 6455082720, - 6455089088, - 6455068944, - 6455070400, - 6455068768, - 6455066880, - 6455083072, - 6455082896 + 6455081440, + 6455082736, + 6455089104, + 6455068960, + 6455070416, + 6455068784, + 6455066896, + 6455083088, + 6455082912 ], "bases": [ { @@ -232174,7 +232176,7 @@ }, { "type_name": "CNetMessagePB<452,class CMsgTEFireBullets,5,0,1>", - "vtable_address": 6461735544, + "vtable_address": 6461735560, "methods": [ 6448892528, 6448906864, @@ -232251,22 +232253,22 @@ }, { "type_name": "CNetMessagePB<452,class CMsgTEFireBullets,5,0,1>", - "vtable_address": 6461735592, + "vtable_address": 6461735608, "methods": [ 6448892260, - 6455181760, + 6455181776, 6447085968, 6447086896, 6447087424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447087440, 6447093056, 6447089056, 6443766512, 6447091744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447093168, 6447093296, 6447093280 @@ -232340,7 +232342,7 @@ }, { "type_name": "CNetMessagePB<452,class CMsgTEFireBullets,5,0,1>::CProtobufBinding", - "vtable_address": 6461764016, + "vtable_address": 6461764032, "methods": [ 6449001072, 6449009456, @@ -232379,7 +232381,7 @@ }, { "type_name": "CNetMessagePB<453,class CMsgPlayerBulletHit,5,0,1>", - "vtable_address": 6461735736, + "vtable_address": 6461735752, "methods": [ 6448892624, 6448906896, @@ -232456,22 +232458,22 @@ }, { "type_name": "CNetMessagePB<453,class CMsgPlayerBulletHit,5,0,1>", - "vtable_address": 6461735784, + "vtable_address": 6461735800, "methods": [ 6448892272, - 6455181760, + 6455181776, 6447122592, 6447122912, 6447123008, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447123024, 6447124976, 6447123296, 6443766512, 6447124304, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447124992, 6447125200, 6447125184 @@ -232545,7 +232547,7 @@ }, { "type_name": "CNetMessagePB<453,class CMsgPlayerBulletHit,5,0,1>::CProtobufBinding", - "vtable_address": 6461763936, + "vtable_address": 6461763952, "methods": [ 6449002160, 6449009472, @@ -232584,7 +232586,7 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>", - "vtable_address": 6462551080, + "vtable_address": 6462551112, "methods": [ 6452386608, 6452397280, @@ -232652,7 +232654,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464455624, + "complete_object_locator": 6464455632, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -232661,22 +232663,22 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>", - "vtable_address": 6462551128, + "vtable_address": 6462551160, "methods": [ 6452386488, - 6455181760, + 6455181776, 6448486384, 6448486736, 6448486816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448486832, 6448488128, 6448487008, 6443766512, 6448487696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448488144, 6448488176, 6448488160 @@ -232741,7 +232743,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464455816, + "complete_object_locator": 6464455824, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -232750,7 +232752,7 @@ }, { "type_name": "CNetMessagePB<62,class CSVCMsg_HLTVStatus,0,1,1>::CProtobufBinding", - "vtable_address": 6462553528, + "vtable_address": 6462553560, "methods": [ 6452447392, 6452451264, @@ -232780,7 +232782,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464455856, + "complete_object_locator": 6464455864, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -232789,7 +232791,7 @@ }, { "type_name": "CNetMessagePB<76,class CSVCMsg_UserCommands,17,1,0>", - "vtable_address": 6462778648, + "vtable_address": 6462778680, "methods": [ 6452929360, 6452944640, @@ -232866,22 +232868,22 @@ }, { "type_name": "CNetMessagePB<76,class CSVCMsg_UserCommands,17,1,0>", - "vtable_address": 6462778696, + "vtable_address": 6462778728, "methods": [ 6452929280, - 6455181760, + 6455181776, 6448332944, 6448333392, 6448333600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448333632, 6448334592, 6448334016, 6443766512, 6448334432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448335520, 6448336624, 6448336560 @@ -232955,7 +232957,7 @@ }, { "type_name": "CNetMessagePB<76,class CSVCMsg_UserCommands,17,1,0>::CProtobufBinding", - "vtable_address": 6462779464, + "vtable_address": 6462779496, "methods": [ 6452977472, 6452980352, @@ -232994,13 +232996,13 @@ }, { "type_name": "CNetworkFieldScratchData", - "vtable_address": 6463256424, + "vtable_address": 6463256456, "methods": [ - 6456763792, - 6456813280, - 6456770496, - 6456827360, - 6456824032 + 6456763808, + 6456813296, + 6456770512, + 6456827376, + 6456824048 ], "bases": [ { @@ -233029,7 +233031,7 @@ }, { "type_name": "CNetworkPVSModifierEntityManager", - "vtable_address": 6462364168, + "vtable_address": 6462364200, "methods": [ 6443752688, 6443767152, @@ -233134,13 +233136,13 @@ }, { "type_name": "CNetworkSerializerBindingBuildFilter", - "vtable_address": 6463267696, + "vtable_address": 6463267728, "methods": [ - 6456899088, + 6456899104, + 6456899984, 6456899968, - 6456899952, - 6456900432, - 6456900144 + 6456900448, + 6456900160 ], "bases": [ { @@ -233202,7 +233204,7 @@ }, { "type_name": "CNextLevelIssue", - "vtable_address": 6461738544, + "vtable_address": 6461738560, "methods": [ 6444557600, 6448895728, @@ -233279,22 +233281,22 @@ }, { "type_name": "CNmAdditiveBlendTask", - "vtable_address": 6463222416, + "vtable_address": 6463222448, "methods": [ - 6456190592, - 6456190160, - 6456468848, - 6456468080, + 6456190608, + 6456190176, + 6456468864, + 6456468096, 6448827696, 6448821856, - 6456190480, - 6456473888, - 6456468160, - 6456190512, - 6456473600, 6456190496, - 6456190576, - 6456468512 + 6456473904, + 6456468176, + 6456190528, + 6456473616, + 6456190512, + 6456190592, + 6456468528 ], "bases": [ { @@ -233337,7 +233339,7 @@ }, { "type_name": "CNmAimCSNode", - "vtable_address": 6461676880, + "vtable_address": 6461676864, "methods": [ 6448811520, 6448825248, @@ -233347,7 +233349,7 @@ 6448827232, 6448822832, 6448828576, - 6455925152, + 6455925168, 6448822640, 6448829600, 6448817504 @@ -233407,7 +233409,7 @@ }, { "type_name": "CNmAimCSNode::CDefinition", - "vtable_address": 6461676816, + "vtable_address": 6461676800, "methods": [ 6448827712, 6448825920, @@ -233472,12 +233474,12 @@ }, { "type_name": "CNmAimCSTask", - "vtable_address": 6461676688, + "vtable_address": 6461676672, "methods": [ 6448827856, 6448811584, 6448818272, - 6455923600, + 6455923616, 6448827696, 6448821856, 6448811904, @@ -233516,19 +233518,19 @@ }, { "type_name": "CNmAndNode", - "vtable_address": 6463241184, + "vtable_address": 6463241216, "methods": [ - 6456530288, + 6456530304, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456531584, - 6456532720, - 6456404384, - 6456531056, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456531600, + 6456532736, + 6456404400, + 6456531072, + 6456405568 ], "bases": [ { @@ -233585,15 +233587,15 @@ }, { "type_name": "CNmAndNode::CDefinition", - "vtable_address": 6463227616, + "vtable_address": 6463227648, "methods": [ - 6456263296, - 6456260864, - 6456259600, - 6456260816, - 6456258816, - 6456531936, - 6456259536 + 6456263312, + 6456260880, + 6456259616, + 6456260832, + 6456258832, + 6456531952, + 6456259552 ], "bases": [ { @@ -233650,19 +233652,19 @@ }, { "type_name": "CNmAnimationPoseNode", - "vtable_address": 6463244424, + "vtable_address": 6463244456, "methods": [ - 6456557088, - 6456558240, + 6456557104, + 6456558256, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6456558272, - 6456557280, - 6456557328, - 6456558336, + 6456558288, + 6456557296, + 6456557344, + 6456558352, 6448817504 ], "bases": [ @@ -233706,15 +233708,15 @@ }, { "type_name": "CNmAnimationPoseNode::CDefinition", - "vtable_address": 6463231288, + "vtable_address": 6463231320, "methods": [ - 6456310736, - 6456307776, - 6456306688, - 6456307728, - 6456306496, - 6456557504, - 6456306640 + 6456310752, + 6456307792, + 6456306704, + 6456307744, + 6456306512, + 6456557520, + 6456306656 ], "bases": [ { @@ -233757,19 +233759,19 @@ }, { "type_name": "CNmBlend1DNode", - "vtable_address": 6463240448, + "vtable_address": 6463240480, "methods": [ - 6456509104, - 6456512704, + 6456509120, + 6456512720, 6448821872, 6448822608, - 6456512736, - 6456512992, + 6456512752, + 6456513008, 6448822832, - 6456513424, - 6456511264, + 6456513440, 6456511280, - 6456513568, + 6456511296, + 6456513584, 6448817504 ], "bases": [ @@ -233827,15 +233829,15 @@ }, { "type_name": "CNmBlend1DNode::CDefinition", - "vtable_address": 6463226240, + "vtable_address": 6463226272, "methods": [ - 6456234544, - 6456229104, - 6456227840, - 6456228896, - 6456226448, - 6456512000, - 6456227424 + 6456234560, + 6456229120, + 6456227856, + 6456228912, + 6456226464, + 6456512016, + 6456227440 ], "bases": [ { @@ -233892,19 +233894,19 @@ }, { "type_name": "CNmBlend2DNode", - "vtable_address": 6463240656, + "vtable_address": 6463240688, "methods": [ - 6456518208, - 6456521904, + 6456518224, + 6456521920, 6448821872, 6448822608, - 6456522016, - 6456522160, + 6456522032, + 6456522176, 6448822832, - 6456522352, - 6456521040, + 6456522368, 6456521056, - 6456522560, + 6456521072, + 6456522576, 6448817504 ], "bases": [ @@ -233948,15 +233950,15 @@ }, { "type_name": "CNmBlend2DNode::CDefinition", - "vtable_address": 6463226728, + "vtable_address": 6463226760, "methods": [ - 6456243008, + 6456243024, + 6456240848, + 6456239568, 6456240832, - 6456239552, - 6456240816, - 6456237488, - 6456521248, - 6456238560 + 6456237504, + 6456521264, + 6456238576 ], "bases": [ { @@ -233999,22 +234001,22 @@ }, { "type_name": "CNmBlendTask", - "vtable_address": 6463222160, + "vtable_address": 6463222192, "methods": [ - 6456190640, - 6456190224, - 6456470976, - 6456468080, + 6456190656, + 6456190240, + 6456470992, + 6456468096, 6448827696, 6448821856, - 6456190480, - 6456473888, - 6456468160, - 6456190528, - 6456473696, 6456190496, - 6456190576, - 6456468512 + 6456473904, + 6456468176, + 6456190544, + 6456473712, + 6456190512, + 6456190592, + 6456468528 ], "bases": [ { @@ -234057,22 +234059,22 @@ }, { "type_name": "CNmBlendTaskBase", - "vtable_address": 6463222040, + "vtable_address": 6463222072, "methods": [ - 6456190688, - 6456190288, - 6459886716, - 6456468080, + 6456190704, + 6456190304, + 6459886732, + 6456468096, 6448827696, 6448821856, - 6456190480, - 6456473888, - 6456468160, + 6456190496, + 6456473904, + 6456468176, 6448821728, 6448821776, - 6456190496, - 6456190576, - 6456468512 + 6456190512, + 6456190592, + 6456468528 ], "bases": [ { @@ -234101,15 +234103,15 @@ }, { "type_name": "CNmBodyGroupEvent", - "vtable_address": 6463224376, + "vtable_address": 6463224408, "methods": [ - 6456197328, + 6456197344, + 6456197120, + 6456196784, 6456197104, - 6456196768, - 6456197088, - 6456196624, + 6456196640, 6450013904, - 6456196688 + 6456196704 ], "bases": [ { @@ -234138,19 +234140,19 @@ }, { "type_name": "CNmBoneMaskBlendNode", - "vtable_address": 6463240952, + "vtable_address": 6463240984, "methods": [ - 6456526000, + 6456526016, 6448825232, - 6456527776, - 6455907152, - 6455907744, - 6455908368, 6456527792, - 6456530048, - 6456404544, - 6456526672, - 6456405552 + 6455907168, + 6455907760, + 6455908384, + 6456527808, + 6456530064, + 6456404560, + 6456526688, + 6456405568 ], "bases": [ { @@ -234207,15 +234209,15 @@ }, { "type_name": "CNmBoneMaskBlendNode::CDefinition", - "vtable_address": 6463227368, + "vtable_address": 6463227400, "methods": [ - 6456254304, - 6456251296, - 6456249136, - 6456251232, - 6456247632, - 6456528128, - 6456248560 + 6456254320, + 6456251312, + 6456249152, + 6456251248, + 6456247648, + 6456528144, + 6456248576 ], "bases": [ { @@ -234272,19 +234274,19 @@ }, { "type_name": "CNmBoneMaskNode", - "vtable_address": 6463240760, + "vtable_address": 6463240792, "methods": [ - 6456526128, + 6456526144, 6448825232, - 6456527776, - 6455907152, - 6455907744, - 6455908368, - 6456527872, - 6455908528, - 6456404544, - 6456526880, - 6456405552 + 6456527792, + 6455907168, + 6455907760, + 6455908384, + 6456527888, + 6455908544, + 6456404560, + 6456526896, + 6456405568 ], "bases": [ { @@ -234341,15 +234343,15 @@ }, { "type_name": "CNmBoneMaskNode::CDefinition", - "vtable_address": 6463227240, + "vtable_address": 6463227272, "methods": [ - 6456254352, - 6456251456, - 6456249376, - 6456251248, - 6456247680, - 6456528336, - 6456248576 + 6456254368, + 6456251472, + 6456249392, + 6456251264, + 6456247696, + 6456528352, + 6456248592 ], "bases": [ { @@ -234406,19 +234408,19 @@ }, { "type_name": "CNmBoneMaskSelectorNode", - "vtable_address": 6463241048, + "vtable_address": 6463241080, "methods": [ - 6456526256, + 6456526272, 6448825232, - 6456527776, - 6455907152, - 6456529536, - 6456529728, - 6456527888, - 6456530128, - 6456404544, - 6456526960, - 6456405552 + 6456527792, + 6455907168, + 6456529552, + 6456529744, + 6456527904, + 6456530144, + 6456404560, + 6456526976, + 6456405568 ], "bases": [ { @@ -234475,15 +234477,15 @@ }, { "type_name": "CNmBoneMaskSelectorNode::CDefinition", - "vtable_address": 6463227432, + "vtable_address": 6463227464, "methods": [ - 6456254400, - 6456251664, - 6456249392, - 6456251264, - 6456247728, - 6456528672, - 6456248592 + 6456254416, + 6456251680, + 6456249408, + 6456251280, + 6456247744, + 6456528688, + 6456248608 ], "bases": [ { @@ -234540,19 +234542,19 @@ }, { "type_name": "CNmCachedBoolNode", - "vtable_address": 6463235432, + "vtable_address": 6463235464, "methods": [ - 6456400688, + 6456400704, 6448825232, - 6456402096, - 6455907152, - 6456403408, - 6456404576, - 6456402176, - 6456405568, - 6456404384, - 6456401248, - 6456405552 + 6456402112, + 6455907168, + 6456403424, + 6456404592, + 6456402192, + 6456405584, + 6456404400, + 6456401264, + 6456405568 ], "bases": [ { @@ -234609,15 +234611,15 @@ }, { "type_name": "CNmCachedBoolNode::CDefinition", - "vtable_address": 6463205560, + "vtable_address": 6463205592, "methods": [ - 6455991968, - 6455986448, - 6455985008, - 6455986368, - 6455984688, - 6456402832, - 6455984928 + 6455991984, + 6455986464, + 6455985024, + 6455986384, + 6455984704, + 6456402848, + 6455984944 ], "bases": [ { @@ -234674,19 +234676,19 @@ }, { "type_name": "CNmCachedFloatNode", - "vtable_address": 6463235624, + "vtable_address": 6463235656, "methods": [ - 6456400752, + 6456400768, 6448825232, - 6456402112, - 6455907152, - 6456403680, - 6456404672, - 6456402288, - 6456405616, - 6456404416, - 6456401392, - 6456405552 + 6456402128, + 6455907168, + 6456403696, + 6456404688, + 6456402304, + 6456405632, + 6456404432, + 6456401408, + 6456405568 ], "bases": [ { @@ -234743,15 +234745,15 @@ }, { "type_name": "CNmCachedFloatNode::CDefinition", - "vtable_address": 6463205688, + "vtable_address": 6463205720, "methods": [ - 6455992016, - 6455986576, - 6455985280, - 6455986384, - 6455984736, - 6456402928, - 6455984944 + 6455992032, + 6455986592, + 6455985296, + 6455986400, + 6455984752, + 6456402944, + 6455984960 ], "bases": [ { @@ -234808,19 +234810,19 @@ }, { "type_name": "CNmCachedIDNode", - "vtable_address": 6463235528, + "vtable_address": 6463235560, "methods": [ - 6456400816, + 6456400832, 6448825232, - 6456402128, - 6455907152, - 6456403840, - 6456404768, - 6456402400, - 6456405664, - 6456404448, - 6456401552, - 6456405552 + 6456402144, + 6455907168, + 6456403856, + 6456404784, + 6456402416, + 6456405680, + 6456404464, + 6456401568, + 6456405568 ], "bases": [ { @@ -234877,15 +234879,15 @@ }, { "type_name": "CNmCachedIDNode::CDefinition", - "vtable_address": 6463205624, + "vtable_address": 6463205656, "methods": [ - 6455992064, - 6455986704, - 6455985552, - 6455986400, - 6455984784, - 6456403040, - 6455984960 + 6455992080, + 6455986720, + 6455985568, + 6455986416, + 6455984800, + 6456403056, + 6455984976 ], "bases": [ { @@ -234942,22 +234944,22 @@ }, { "type_name": "CNmCachedPoseReadTask", - "vtable_address": 6463222880, + "vtable_address": 6463222912, "methods": [ - 6456191760, - 6456191536, - 6456475648, - 6455923600, + 6456191776, + 6456191552, + 6456475664, + 6455923616, 6448827696, 6448821856, - 6456191664, - 6456476048, - 6456474880, - 6456191728, + 6456191680, + 6456476064, + 6456474896, + 6456191744, 6448821776, - 6456191696, + 6456191712, 6448821760, - 6455923664 + 6455923680 ], "bases": [ { @@ -234986,22 +234988,22 @@ }, { "type_name": "CNmCachedPoseWriteTask", - "vtable_address": 6463222736, + "vtable_address": 6463222768, "methods": [ - 6456191808, - 6456191600, - 6456475872, - 6455923600, + 6456191824, + 6456191616, + 6456475888, + 6455923616, 6448827696, 6448821856, - 6456191680, - 6456476432, - 6456475200, - 6456191744, + 6456191696, + 6456476448, + 6456475216, + 6456191760, 6448821776, - 6456191712, + 6456191728, 6448821760, - 6455923664 + 6455923680 ], "bases": [ { @@ -235030,19 +235032,19 @@ }, { "type_name": "CNmCachedTargetNode", - "vtable_address": 6463235816, + "vtable_address": 6463235848, "methods": [ - 6456400880, + 6456400896, 6448825232, - 6456402144, - 6455907152, - 6456404016, - 6456404960, - 6456402512, - 6456405712, - 6456404480, - 6456401712, - 6456405552 + 6456402160, + 6455907168, + 6456404032, + 6456404976, + 6456402528, + 6456405728, + 6456404496, + 6456401728, + 6456405568 ], "bases": [ { @@ -235099,15 +235101,15 @@ }, { "type_name": "CNmCachedTargetNode::CDefinition", - "vtable_address": 6463205816, + "vtable_address": 6463205848, "methods": [ - 6455992112, - 6455986832, - 6455985824, - 6455986416, - 6455984832, - 6456403152, - 6455984976 + 6455992128, + 6455986848, + 6455985840, + 6455986432, + 6455984848, + 6456403168, + 6455984992 ], "bases": [ { @@ -235164,19 +235166,19 @@ }, { "type_name": "CNmCachedVectorNode", - "vtable_address": 6463235720, + "vtable_address": 6463235752, "methods": [ - 6456400944, + 6456400960, 6448825232, - 6456402160, - 6455907152, - 6456404192, - 6456405440, - 6456402720, - 6456405760, - 6456404560, - 6456401968, - 6456405552 + 6456402176, + 6455907168, + 6456404208, + 6456405456, + 6456402736, + 6456405776, + 6456404576, + 6456401984, + 6456405568 ], "bases": [ { @@ -235233,15 +235235,15 @@ }, { "type_name": "CNmCachedVectorNode::CDefinition", - "vtable_address": 6463205752, + "vtable_address": 6463205784, "methods": [ - 6455992160, - 6455986960, - 6455986096, - 6455986432, - 6455984880, - 6456403296, - 6455984992 + 6455992176, + 6455986976, + 6455986112, + 6455986448, + 6455984896, + 6456403312, + 6455985008 ], "bases": [ { @@ -235298,19 +235300,19 @@ }, { "type_name": "CNmChainLookatNode", - "vtable_address": 6463241472, + "vtable_address": 6463241504, "methods": [ - 6456533184, + 6456533200, 6448825248, 6448821872, 6448822608, - 6456533744, - 6456534320, + 6456533760, + 6456534336, 6448822832, - 6456534448, - 6455925152, - 6456533248, - 6456534528, + 6456534464, + 6455925168, + 6456533264, + 6456534544, 6448817504 ], "bases": [ @@ -235368,15 +235370,15 @@ }, { "type_name": "CNmChainLookatNode::CDefinition", - "vtable_address": 6463228056, + "vtable_address": 6463228088, "methods": [ - 6456266976, + 6456266992, + 6456265296, + 6456264048, 6456265280, - 6456264032, - 6456265264, - 6456263968, - 6456533520, - 6456264016 + 6456263984, + 6456533536, + 6456264032 ], "bases": [ { @@ -235433,22 +235435,22 @@ }, { "type_name": "CNmChainLookatTask", - "vtable_address": 6463223328, + "vtable_address": 6463223360, "methods": [ - 6456192400, - 6456192288, - 6456478480, - 6455923600, + 6456192416, + 6456192304, + 6456478496, + 6455923616, 6448827696, 6448821856, - 6456192352, - 6456482912, - 6456477552, - 6456192384, - 6448821776, 6456192368, + 6456482928, + 6456477568, + 6456192400, + 6448821776, + 6456192384, 6448821760, - 6456477968 + 6456477984 ], "bases": [ { @@ -235477,22 +235479,22 @@ }, { "type_name": "CNmChainSolverTask", - "vtable_address": 6463223704, + "vtable_address": 6463223736, "methods": [ - 6456193168, - 6456193056, - 6456486080, - 6455923600, + 6456193184, + 6456193072, + 6456486096, + 6455923616, 6448827696, 6448821856, - 6456193120, - 6456492320, - 6456484720, - 6456193152, - 6456489312, 6456193136, + 6456492336, + 6456484736, + 6456193168, + 6456489328, + 6456193152, 6448821760, - 6456485536 + 6456485552 ], "bases": [ { @@ -235521,24 +235523,24 @@ }, { "type_name": "CNmClipNode", - "vtable_address": 6463241752, + "vtable_address": 6463241784, "methods": [ - 6456535872, - 6456541792, + 6456535888, + 6456541808, 6448821872, 6448822608, - 6456542128, - 6456542384, + 6456542144, + 6456542400, 6448822832, - 6456542464, - 6456539824, - 6456540736, - 6456542768, + 6456542480, + 6456539840, + 6456540752, + 6456542784, 6448817504, - 6456540656, + 6456540672, + 6456539344, 6456539328, - 6456539312, - 6456541776 + 6456541792 ], "bases": [ { @@ -235595,15 +235597,15 @@ }, { "type_name": "CNmClipNode::CDefinition", - "vtable_address": 6463228376, + "vtable_address": 6463228408, "methods": [ - 6456269760, + 6456269776, + 6456268416, + 6456267504, 6456268400, - 6456267488, - 6456268384, - 6456267424, - 6456540992, - 6456267472 + 6456267440, + 6456541008, + 6456267488 ], "bases": [ { @@ -235660,24 +235662,24 @@ }, { "type_name": "CNmClipSelectorNode", - "vtable_address": 6463244944, + "vtable_address": 6463244976, "methods": [ - 6456564704, - 6456569792, + 6456564720, + 6456569808, 6448821872, 6448822608, - 6456570352, - 6456570544, + 6456570368, + 6456570560, 6448822832, - 6456575376, - 6456566848, - 6456567040, - 6456575664, + 6456575392, + 6456566864, + 6456567056, + 6456575680, 6448817504, - 6456566976, - 6456566784, - 6456565376, - 6456569728 + 6456566992, + 6456566800, + 6456565392, + 6456569744 ], "bases": [ { @@ -235734,15 +235736,15 @@ }, { "type_name": "CNmClipSelectorNode::CDefinition", - "vtable_address": 6463232080, + "vtable_address": 6463232112, "methods": [ - 6456329232, - 6456324560, - 6456323152, - 6456324496, - 6456321408, - 6456568032, - 6456323056 + 6456329248, + 6456324576, + 6456323168, + 6456324512, + 6456321424, + 6456568048, + 6456323072 ], "bases": [ { @@ -235799,19 +235801,19 @@ }, { "type_name": "CNmConstBoolNode", - "vtable_address": 6463242080, + "vtable_address": 6463242112, "methods": [ - 6456543520, + 6456543536, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6455907216, - 6455908528, - 6456404384, - 6456543840, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6455907232, + 6455908544, + 6456404400, + 6456543856, + 6456405568 ], "bases": [ { @@ -235868,15 +235870,15 @@ }, { "type_name": "CNmConstBoolNode::CDefinition", - "vtable_address": 6463228696, + "vtable_address": 6463228728, "methods": [ - 6456281312, - 6456280064, - 6456276576, - 6456279984, - 6456276256, - 6456544192, - 6456276496 + 6456281328, + 6456280080, + 6456276592, + 6456280000, + 6456276272, + 6456544208, + 6456276512 ], "bases": [ { @@ -235933,19 +235935,19 @@ }, { "type_name": "CNmConstFloatNode", - "vtable_address": 6463242272, + "vtable_address": 6463242304, "methods": [ - 6456543584, + 6456543600, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6455907216, - 6455908528, - 6456404416, - 6456543904, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6455907232, + 6455908544, + 6456404432, + 6456543920, + 6456405568 ], "bases": [ { @@ -236002,15 +236004,15 @@ }, { "type_name": "CNmConstFloatNode::CDefinition", - "vtable_address": 6463228824, + "vtable_address": 6463228856, "methods": [ - 6456281360, - 6456280288, - 6456276592, - 6456280000, - 6456276304, - 6456544240, - 6456276512 + 6456281376, + 6456280304, + 6456276608, + 6456280016, + 6456276320, + 6456544256, + 6456276528 ], "bases": [ { @@ -236067,19 +236069,19 @@ }, { "type_name": "CNmConstIDNode", - "vtable_address": 6463242176, + "vtable_address": 6463242208, "methods": [ - 6456543648, + 6456543664, 6448825232, - 6456402128, - 6455907152, - 6455907744, - 6455908368, - 6455907216, - 6455908528, - 6456404448, - 6456543968, - 6456405552 + 6456402144, + 6455907168, + 6455907760, + 6455908384, + 6455907232, + 6455908544, + 6456404464, + 6456543984, + 6456405568 ], "bases": [ { @@ -236136,15 +236138,15 @@ }, { "type_name": "CNmConstIDNode::CDefinition", - "vtable_address": 6463228760, + "vtable_address": 6463228792, "methods": [ - 6456281408, - 6456280528, - 6456276608, - 6456280016, - 6456276352, - 6456544288, - 6456276528 + 6456281424, + 6456280544, + 6456276624, + 6456280032, + 6456276368, + 6456544304, + 6456276544 ], "bases": [ { @@ -236201,19 +236203,19 @@ }, { "type_name": "CNmConstTargetNode", - "vtable_address": 6463242464, + "vtable_address": 6463242496, "methods": [ - 6456543712, + 6456543728, 6448825232, - 6456402144, - 6455907152, - 6455907744, - 6455908368, - 6455907216, - 6455908528, - 6456404480, - 6456544032, - 6456405552 + 6456402160, + 6455907168, + 6455907760, + 6455908384, + 6455907232, + 6455908544, + 6456404496, + 6456544048, + 6456405568 ], "bases": [ { @@ -236270,15 +236272,15 @@ }, { "type_name": "CNmConstTargetNode::CDefinition", - "vtable_address": 6463228952, + "vtable_address": 6463228984, "methods": [ - 6456281456, - 6456280736, - 6456276624, - 6456280032, - 6456276400, - 6456544336, - 6456276544 + 6456281472, + 6456280752, + 6456276640, + 6456280048, + 6456276416, + 6456544352, + 6456276560 ], "bases": [ { @@ -236335,19 +236337,19 @@ }, { "type_name": "CNmConstVectorNode", - "vtable_address": 6463242368, + "vtable_address": 6463242400, "methods": [ - 6456543776, + 6456543792, 6448825232, - 6456402160, - 6455907152, - 6455907744, - 6455908368, - 6455907216, - 6455908528, - 6456404560, - 6456544128, - 6456405552 + 6456402176, + 6455907168, + 6455907760, + 6455908384, + 6455907232, + 6455908544, + 6456404576, + 6456544144, + 6456405568 ], "bases": [ { @@ -236404,15 +236406,15 @@ }, { "type_name": "CNmConstVectorNode::CDefinition", - "vtable_address": 6463228888, + "vtable_address": 6463228920, "methods": [ - 6456281504, - 6456281120, - 6456276960, - 6456280048, - 6456276448, - 6456544384, - 6456276560 + 6456281520, + 6456281136, + 6456276976, + 6456280064, + 6456276464, + 6456544400, + 6456276576 ], "bases": [ { @@ -236469,19 +236471,19 @@ }, { "type_name": "CNmControlParameterBoolNode", - "vtable_address": 6463242560, + "vtable_address": 6463242592, "methods": [ - 6456544432, + 6456544448, 6448825232, - 6456402096, - 6455907152, - 6456547760, - 6456548144, - 6455907216, - 6455908528, - 6456404384, - 6456545200, - 6456549008 + 6456402112, + 6455907168, + 6456547776, + 6456548160, + 6455907232, + 6455908544, + 6456404400, + 6456545216, + 6456549024 ], "bases": [ { @@ -236538,15 +236540,15 @@ }, { "type_name": "CNmControlParameterBoolNode::CDefinition", - "vtable_address": 6463229704, + "vtable_address": 6463229736, "methods": [ - 6456297056, - 6456287408, - 6456285344, - 6456287232, - 6456284640, - 6456546688, - 6456285168 + 6456297072, + 6456287424, + 6456285360, + 6456287248, + 6456284656, + 6456546704, + 6456285184 ], "bases": [ { @@ -236603,19 +236605,19 @@ }, { "type_name": "CNmControlParameterFloatNode", - "vtable_address": 6463242752, + "vtable_address": 6463242784, "methods": [ - 6456544496, + 6456544512, 6448825232, - 6456402112, - 6455907152, - 6456547904, - 6456548208, - 6455907216, - 6455908528, - 6456404416, - 6456545264, - 6456549024 + 6456402128, + 6455907168, + 6456547920, + 6456548224, + 6455907232, + 6455908544, + 6456404432, + 6456545280, + 6456549040 ], "bases": [ { @@ -236672,15 +236674,15 @@ }, { "type_name": "CNmControlParameterFloatNode::CDefinition", - "vtable_address": 6463229832, + "vtable_address": 6463229864, "methods": [ - 6456297104, - 6456287424, - 6456285472, - 6456287248, - 6456284688, - 6456546752, - 6456285184 + 6456297120, + 6456287440, + 6456285488, + 6456287264, + 6456284704, + 6456546768, + 6456285200 ], "bases": [ { @@ -236737,19 +236739,19 @@ }, { "type_name": "CNmControlParameterIDNode", - "vtable_address": 6463242656, + "vtable_address": 6463242688, "methods": [ - 6456544560, + 6456544576, 6448825232, - 6456402128, - 6455907152, - 6456547952, - 6456548288, - 6455907216, - 6455908528, - 6456404448, - 6456545328, - 6456549040 + 6456402144, + 6455907168, + 6456547968, + 6456548304, + 6455907232, + 6455908544, + 6456404464, + 6456545344, + 6456549056 ], "bases": [ { @@ -236806,15 +236808,15 @@ }, { "type_name": "CNmControlParameterIDNode::CDefinition", - "vtable_address": 6463229768, + "vtable_address": 6463229800, "methods": [ - 6456297152, - 6456287440, - 6456285600, - 6456287264, - 6456284736, - 6456546816, - 6456285200 + 6456297168, + 6456287456, + 6456285616, + 6456287280, + 6456284752, + 6456546832, + 6456285216 ], "bases": [ { @@ -236871,19 +236873,19 @@ }, { "type_name": "CNmControlParameterTargetNode", - "vtable_address": 6463242944, + "vtable_address": 6463242976, "methods": [ - 6456544624, + 6456544640, 6448825232, - 6456402144, - 6455907152, - 6456548016, - 6456548448, - 6455907216, - 6455908528, - 6456404480, - 6456545408, - 6456549056 + 6456402160, + 6455907168, + 6456548032, + 6456548464, + 6455907232, + 6455908544, + 6456404496, + 6456545424, + 6456549072 ], "bases": [ { @@ -236940,15 +236942,15 @@ }, { "type_name": "CNmControlParameterTargetNode::CDefinition", - "vtable_address": 6463229960, + "vtable_address": 6463229992, "methods": [ - 6456297200, - 6456287456, - 6456285728, - 6456287280, - 6456284784, - 6456546880, - 6456285216 + 6456297216, + 6456287472, + 6456285744, + 6456287296, + 6456284800, + 6456546896, + 6456285232 ], "bases": [ { @@ -237005,19 +237007,19 @@ }, { "type_name": "CNmControlParameterVectorNode", - "vtable_address": 6463242848, + "vtable_address": 6463242880, "methods": [ - 6456544688, + 6456544704, 6448825232, - 6456402160, - 6455907152, - 6456548064, - 6456548912, - 6455907216, - 6455908528, - 6456404560, - 6456545504, - 6456549120 + 6456402176, + 6455907168, + 6456548080, + 6456548928, + 6455907232, + 6455908544, + 6456404576, + 6456545520, + 6456549136 ], "bases": [ { @@ -237074,15 +237076,15 @@ }, { "type_name": "CNmControlParameterVectorNode::CDefinition", - "vtable_address": 6463229896, + "vtable_address": 6463229928, "methods": [ - 6456297248, - 6456287472, - 6456285856, - 6456287296, - 6456284832, - 6456547008, - 6456285232 + 6456297264, + 6456287488, + 6456285872, + 6456287312, + 6456284848, + 6456547024, + 6456285248 ], "bases": [ { @@ -237139,19 +237141,19 @@ }, { "type_name": "CNmCurrentSyncEventIDNode", - "vtable_address": 6463236680, + "vtable_address": 6463236712, "methods": [ - 6456406352, + 6456406368, 6448825232, - 6456402128, - 6455907152, - 6455907744, - 6455908368, - 6456411008, - 6455908528, - 6456404448, - 6456407120, - 6456405552 + 6456402144, + 6455907168, + 6455907760, + 6455908384, + 6456411024, + 6455908544, + 6456404464, + 6456407136, + 6456405568 ], "bases": [ { @@ -237208,15 +237210,15 @@ }, { "type_name": "CNmCurrentSyncEventIDNode::CDefinition", - "vtable_address": 6463208392, + "vtable_address": 6463208424, "methods": [ - 6456027152, - 6456012608, - 6456007216, - 6456012416, - 6456004736, - 6456411424, - 6456006304 + 6456027168, + 6456012624, + 6456007232, + 6456012432, + 6456004752, + 6456411440, + 6456006320 ], "bases": [ { @@ -237273,19 +237275,19 @@ }, { "type_name": "CNmCurrentSyncEventNode", - "vtable_address": 6463236776, + "vtable_address": 6463236808, "methods": [ - 6456406416, + 6456406432, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456411040, - 6455908528, - 6456404416, - 6456407328, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456411056, + 6455908544, + 6456404432, + 6456407344, + 6456405568 ], "bases": [ { @@ -237342,15 +237344,15 @@ }, { "type_name": "CNmCurrentSyncEventNode::CDefinition", - "vtable_address": 6463208456, + "vtable_address": 6463208488, "methods": [ - 6456027200, - 6456012688, - 6456007424, - 6456012432, - 6456004784, - 6456411520, - 6456006320 + 6456027216, + 6456012704, + 6456007440, + 6456012448, + 6456004800, + 6456411536, + 6456006336 ], "bases": [ { @@ -237407,21 +237409,21 @@ }, { "type_name": "CNmDurationScaleNode", - "vtable_address": 6463245472, + "vtable_address": 6463245504, "methods": [ - 6456576560, + 6456576576, 6448825248, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6456577936, - 6455925152, - 6456577312, - 6456578128, + 6456577952, + 6455925168, + 6456577328, + 6456578144, 6448817504, - 6456576752 + 6456576768 ], "bases": [ { @@ -237492,15 +237494,15 @@ }, { "type_name": "CNmDurationScaleNode::CDefinition", - "vtable_address": 6463232928, + "vtable_address": 6463232960, "methods": [ - 6456335632, - 6456332128, - 6456331024, - 6456332064, - 6456330768, - 6456577504, - 6456330960 + 6456335648, + 6456332144, + 6456331040, + 6456332080, + 6456330784, + 6456577520, + 6456330976 ], "bases": [ { @@ -237571,15 +237573,15 @@ }, { "type_name": "CNmEntityAttributeEventBase", - "vtable_address": 6463225312, + "vtable_address": 6463225344, "methods": [ - 6456217712, - 6456215296, - 6456214000, - 6456215248, - 6456213568, + 6456217728, + 6456215312, + 6456214016, + 6456215264, + 6456213584, 6450013904, - 6456213760 + 6456213776 ], "bases": [ { @@ -237608,15 +237610,15 @@ }, { "type_name": "CNmEntityAttributeFloatEvent", - "vtable_address": 6463225488, + "vtable_address": 6463225520, "methods": [ - 6456217760, - 6456215312, - 6456214016, - 6456215264, - 6456213632, + 6456217776, + 6456215328, + 6456214032, + 6456215280, + 6456213648, 6450013904, - 6456213840 + 6456213856 ], "bases": [ { @@ -237659,15 +237661,15 @@ }, { "type_name": "CNmEntityAttributeIntEvent", - "vtable_address": 6463225400, + "vtable_address": 6463225432, "methods": [ - 6456217808, - 6456215696, - 6456214032, - 6456215280, - 6456213696, + 6456217824, + 6456215712, + 6456214048, + 6456215296, + 6456213712, 6450013904, - 6456213920 + 6456213936 ], "bases": [ { @@ -237710,15 +237712,15 @@ }, { "type_name": "CNmEvent", - "vtable_address": 6462125232, + "vtable_address": 6462125248, "methods": [ 6450064704, - 6455940496, - 6455939760, + 6455940512, + 6455939776, 6450014352, 6449949984, 6450013904, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -237732,7 +237734,7 @@ }, { "type_name": "CNmEventConsumerAttributes", - "vtable_address": 6461307160, + "vtable_address": 6461307128, "methods": [ 6447036368, 6447032704, @@ -237769,7 +237771,7 @@ }, { "type_name": "CNmEventConsumerLegacy", - "vtable_address": 6461307224, + "vtable_address": 6461307192, "methods": [ 6447036416, 6447032720, @@ -237805,7 +237807,7 @@ }, { "type_name": "CNmEventConsumerParticle", - "vtable_address": 6461307280, + "vtable_address": 6461307248, "methods": [ 6447036464, 6447032736, @@ -237841,7 +237843,7 @@ }, { "type_name": "CNmEventConsumerSound", - "vtable_address": 6461307336, + "vtable_address": 6461307304, "methods": [ 6447036512, 6447032752, @@ -237877,19 +237879,19 @@ }, { "type_name": "CNmExternalGraphNode", - "vtable_address": 6463243616, + "vtable_address": 6463243648, "methods": [ - 6456549424, + 6456549440, 6448825232, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6455908528, - 6456549488, - 6456549520, - 6456549696, + 6455908544, + 6456549504, + 6456549536, + 6456549712, 6448817504 ], "bases": [ @@ -237933,15 +237935,15 @@ }, { "type_name": "CNmExternalGraphNode::CDefinition", - "vtable_address": 6463230464, + "vtable_address": 6463230496, "methods": [ - 6456298784, + 6456298800, + 6456298080, + 6456297936, 6456298064, - 6456297920, - 6456298048, - 6456297856, - 6456549616, - 6456297904 + 6456297872, + 6456549632, + 6456297920 ], "bases": [ { @@ -237984,19 +237986,19 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode", - "vtable_address": 6463240856, + "vtable_address": 6463240888, "methods": [ - 6456526544, + 6456526560, 6448825232, - 6456527776, - 6455907152, - 6455907744, - 6455908368, - 6456528112, - 6455908528, - 6456404544, - 6456527696, - 6456405552 + 6456527792, + 6455907168, + 6455907760, + 6455908384, + 6456528128, + 6455908544, + 6456404560, + 6456527712, + 6456405568 ], "bases": [ { @@ -238053,15 +238055,15 @@ }, { "type_name": "CNmFixedWeightBoneMaskNode::CDefinition", - "vtable_address": 6463227304, + "vtable_address": 6463227336, "methods": [ - 6456254448, - 6456251680, - 6456249408, - 6456251280, - 6456247792, - 6456529216, - 6456248608 + 6456254464, + 6456251696, + 6456249424, + 6456251296, + 6456247808, + 6456529232, + 6456248624 ], "bases": [ { @@ -238118,19 +238120,19 @@ }, { "type_name": "CNmFloatAngleMathNode", - "vtable_address": 6463237832, + "vtable_address": 6463237864, "methods": [ - 6456413712, + 6456413728, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456420016, - 6456422864, - 6456404416, - 6456414672, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456420032, + 6456422880, + 6456404432, + 6456414688, + 6456405568 ], "bases": [ { @@ -238187,15 +238189,15 @@ }, { "type_name": "CNmFloatAngleMathNode::CDefinition", - "vtable_address": 6463211368, + "vtable_address": 6463211400, "methods": [ - 6456060288, - 6456051824, - 6456046592, - 6456051664, - 6456044544, - 6456420752, - 6456045936 + 6456060304, + 6456051840, + 6456046608, + 6456051680, + 6456044560, + 6456420768, + 6456045952 ], "bases": [ { @@ -238252,19 +238254,19 @@ }, { "type_name": "CNmFloatClampNode", - "vtable_address": 6463237160, + "vtable_address": 6463237192, "methods": [ - 6456413776, + 6456413792, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456420064, - 6456422912, - 6456404416, - 6456415168, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456420080, + 6456422928, + 6456404432, + 6456415184, + 6456405568 ], "bases": [ { @@ -238321,15 +238323,15 @@ }, { "type_name": "CNmFloatClampNode::CDefinition", - "vtable_address": 6463210920, + "vtable_address": 6463210952, "methods": [ - 6456060336, - 6456052240, - 6456046608, - 6456051680, - 6456044592, - 6456420848, - 6456045952 + 6456060352, + 6456052256, + 6456046624, + 6456051696, + 6456044608, + 6456420864, + 6456045968 ], "bases": [ { @@ -238386,19 +238388,19 @@ }, { "type_name": "CNmFloatComparisonNode", - "vtable_address": 6463237544, + "vtable_address": 6463237576, "methods": [ - 6456413840, + 6456413856, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456420112, - 6456422960, - 6456404384, - 6456415296, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456420128, + 6456422976, + 6456404400, + 6456415312, + 6456405568 ], "bases": [ { @@ -238455,15 +238457,15 @@ }, { "type_name": "CNmFloatComparisonNode::CDefinition", - "vtable_address": 6463211176, + "vtable_address": 6463211208, "methods": [ - 6456060384, - 6456052352, - 6456046864, - 6456051696, - 6456044640, - 6456420944, - 6456045968 + 6456060400, + 6456052368, + 6456046880, + 6456051712, + 6456044656, + 6456420960, + 6456045984 ], "bases": [ { @@ -238520,15 +238522,15 @@ }, { "type_name": "CNmFloatCurveEvent", - "vtable_address": 6463224496, + "vtable_address": 6463224528, "methods": [ - 6456200400, + 6456200416, + 6456198928, + 6456198176, 6456198912, - 6456198160, - 6456198896, - 6456197840, + 6456197856, 6450013904, - 6456198080 + 6456198096 ], "bases": [ { @@ -238557,19 +238559,19 @@ }, { "type_name": "CNmFloatCurveEventNode", - "vtable_address": 6463236968, + "vtable_address": 6463237000, "methods": [ - 6456406480, + 6456406496, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456411072, - 6456412832, - 6456404416, - 6456407488, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456411088, + 6456412848, + 6456404432, + 6456407504, + 6456405568 ], "bases": [ { @@ -238626,15 +238628,15 @@ }, { "type_name": "CNmFloatCurveEventNode::CDefinition", - "vtable_address": 6463208584, + "vtable_address": 6463208616, "methods": [ - 6456027248, - 6456013120, - 6456007440, - 6456012448, - 6456004832, - 6456411616, - 6456006336 + 6456027264, + 6456013136, + 6456007456, + 6456012464, + 6456004848, + 6456411632, + 6456006352 ], "bases": [ { @@ -238691,19 +238693,19 @@ }, { "type_name": "CNmFloatCurveNode", - "vtable_address": 6463237352, + "vtable_address": 6463237384, "methods": [ - 6456413904, + 6456413920, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456420192, - 6456423024, - 6456404416, - 6456415520, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456420208, + 6456423040, + 6456404432, + 6456415536, + 6456405568 ], "bases": [ { @@ -238760,15 +238762,15 @@ }, { "type_name": "CNmFloatCurveNode::CDefinition", - "vtable_address": 6463211048, + "vtable_address": 6463211080, "methods": [ - 6456060432, - 6456052368, - 6456046880, - 6456051712, - 6456044688, - 6456421120, - 6456045984 + 6456060448, + 6456052384, + 6456046896, + 6456051728, + 6456044704, + 6456421136, + 6456046000 ], "bases": [ { @@ -238825,19 +238827,19 @@ }, { "type_name": "CNmFloatEaseNode", - "vtable_address": 6463237256, + "vtable_address": 6463237288, "methods": [ - 6456414144, + 6456414160, 6448825232, - 6456402112, - 6455907152, - 6456422448, - 6456422640, - 6456420240, - 6456423072, - 6456404416, - 6456415648, - 6456405552 + 6456402128, + 6455907168, + 6456422464, + 6456422656, + 6456420256, + 6456423088, + 6456404432, + 6456415664, + 6456405568 ], "bases": [ { @@ -238894,15 +238896,15 @@ }, { "type_name": "CNmFloatEaseNode::CDefinition", - "vtable_address": 6463210984, + "vtable_address": 6463211016, "methods": [ - 6456060480, - 6456052800, - 6456046896, - 6456051728, - 6456044928, - 6456421280, - 6456046000 + 6456060496, + 6456052816, + 6456046912, + 6456051744, + 6456044944, + 6456421296, + 6456046016 ], "bases": [ { @@ -238959,19 +238961,19 @@ }, { "type_name": "CNmFloatMathNode", - "vtable_address": 6463237448, + "vtable_address": 6463237480, "methods": [ - 6456414208, + 6456414224, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456420384, - 6456423120, - 6456404416, - 6456417200, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456420400, + 6456423136, + 6456404432, + 6456417216, + 6456405568 ], "bases": [ { @@ -239028,15 +239030,15 @@ }, { "type_name": "CNmFloatMathNode::CDefinition", - "vtable_address": 6463211112, + "vtable_address": 6463211144, "methods": [ - 6456060528, - 6456053056, - 6456047216, - 6456051744, - 6456044976, - 6456421376, - 6456046016 + 6456060544, + 6456053072, + 6456047232, + 6456051760, + 6456044992, + 6456421392, + 6456046032 ], "bases": [ { @@ -239093,19 +239095,19 @@ }, { "type_name": "CNmFloatRangeComparisonNode", - "vtable_address": 6463237640, + "vtable_address": 6463237672, "methods": [ - 6456414272, + 6456414288, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456420448, - 6456423184, - 6456404384, - 6456417856, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456420464, + 6456423200, + 6456404400, + 6456417872, + 6456405568 ], "bases": [ { @@ -239162,15 +239164,15 @@ }, { "type_name": "CNmFloatRangeComparisonNode::CDefinition", - "vtable_address": 6463211240, + "vtable_address": 6463211272, "methods": [ - 6456060576, - 6456053072, - 6456047232, - 6456051760, - 6456045024, - 6456421536, - 6456046032 + 6456060592, + 6456053088, + 6456047248, + 6456051776, + 6456045040, + 6456421552, + 6456046048 ], "bases": [ { @@ -239227,19 +239229,19 @@ }, { "type_name": "CNmFloatRemapNode", - "vtable_address": 6463237064, + "vtable_address": 6463237096, "methods": [ - 6456414336, + 6456414352, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456420512, - 6456423232, - 6456404416, - 6456418016, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456420528, + 6456423248, + 6456404432, + 6456418032, + 6456405568 ], "bases": [ { @@ -239296,15 +239298,15 @@ }, { "type_name": "CNmFloatRemapNode::CDefinition", - "vtable_address": 6463210856, + "vtable_address": 6463210888, "methods": [ - 6456060624, - 6456053232, - 6456047248, - 6456051776, - 6456045072, - 6456421648, - 6456046048 + 6456060640, + 6456053248, + 6456047264, + 6456051792, + 6456045088, + 6456421664, + 6456046064 ], "bases": [ { @@ -239361,19 +239363,19 @@ }, { "type_name": "CNmFloatSelectorNode", - "vtable_address": 6463237928, + "vtable_address": 6463237960, "methods": [ - 6456414400, + 6456414416, 6448825232, - 6456402112, - 6455907152, - 6456422544, - 6456422752, - 6456420560, - 6456423280, - 6456404416, - 6456418224, - 6456405552 + 6456402128, + 6455907168, + 6456422560, + 6456422768, + 6456420576, + 6456423296, + 6456404432, + 6456418240, + 6456405568 ], "bases": [ { @@ -239430,15 +239432,15 @@ }, { "type_name": "CNmFloatSelectorNode::CDefinition", - "vtable_address": 6463211432, + "vtable_address": 6463211464, "methods": [ - 6456060672, - 6456053392, - 6456047472, - 6456051792, - 6456045120, - 6456421744, - 6456046064 + 6456060688, + 6456053408, + 6456047488, + 6456051808, + 6456045136, + 6456421760, + 6456046080 ], "bases": [ { @@ -239495,19 +239497,19 @@ }, { "type_name": "CNmFloatSwitchNode", - "vtable_address": 6463237736, + "vtable_address": 6463237768, "methods": [ - 6456414608, + 6456414624, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456420656, - 6456423392, - 6456404416, - 6456419840, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456420672, + 6456423408, + 6456404432, + 6456419856, + 6456405568 ], "bases": [ { @@ -239564,15 +239566,15 @@ }, { "type_name": "CNmFloatSwitchNode::CDefinition", - "vtable_address": 6463211304, + "vtable_address": 6463211336, "methods": [ - 6456060720, - 6456053408, - 6456047888, - 6456051808, - 6456045184, - 6456422224, - 6456046080 + 6456060736, + 6456053424, + 6456047904, + 6456051824, + 6456045200, + 6456422240, + 6456046096 ], "bases": [ { @@ -239629,19 +239631,19 @@ }, { "type_name": "CNmFollowBoneNode", - "vtable_address": 6463243720, + "vtable_address": 6463243752, "methods": [ - 6456550192, - 6456550528, + 6456550208, + 6456550544, 6448821872, 6448822608, - 6456550592, - 6456550656, + 6456550608, + 6456550672, 6448822832, - 6456550768, - 6455925152, - 6456550256, - 6456550832, + 6456550784, + 6455925168, + 6456550272, + 6456550848, 6448817504 ], "bases": [ @@ -239699,15 +239701,15 @@ }, { "type_name": "CNmFollowBoneNode::CDefinition", - "vtable_address": 6463230608, + "vtable_address": 6463230640, "methods": [ - 6456302432, + 6456302448, + 6456300800, + 6456300032, 6456300784, - 6456300016, - 6456300768, - 6456299952, - 6456550352, - 6456300000 + 6456299968, + 6456550368, + 6456300016 ], "bases": [ { @@ -239764,22 +239766,22 @@ }, { "type_name": "CNmFollowBoneTask", - "vtable_address": 6463202400, + "vtable_address": 6463202432, "methods": [ - 6455960352, - 6455960240, - 6456398896, - 6455923600, + 6455960368, + 6455960256, + 6456398912, + 6455923616, 6448827696, 6448821856, - 6455960304, - 6456399520, - 6456398592, - 6455960336, - 6456399440, 6455960320, + 6456399536, + 6456398608, + 6455960352, + 6456399456, + 6455960336, 6448821760, - 6455923664 + 6455923680 ], "bases": [ { @@ -239808,15 +239810,15 @@ }, { "type_name": "CNmFootEvent", - "vtable_address": 6463203056, + "vtable_address": 6463203088, "methods": [ - 6455963248, + 6455963264, + 6455962064, + 6455961632, 6455962048, - 6455961616, - 6455962032, - 6455961488, + 6455961504, 6450013904, - 6455961536 + 6455961552 ], "bases": [ { @@ -239845,19 +239847,19 @@ }, { "type_name": "CNmFootEventConditionNode", - "vtable_address": 6463236296, + "vtable_address": 6463236328, "methods": [ - 6456406544, + 6456406560, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456411136, - 6455908528, - 6456404384, - 6456408048, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456411152, + 6455908544, + 6456404400, + 6456408064, + 6456405568 ], "bases": [ { @@ -239914,15 +239916,15 @@ }, { "type_name": "CNmFootEventConditionNode::CDefinition", - "vtable_address": 6463208136, + "vtable_address": 6463208168, "methods": [ - 6456027296, - 6456013552, - 6456007456, - 6456012464, - 6456004880, - 6456411728, - 6456006352 + 6456027312, + 6456013568, + 6456007472, + 6456012480, + 6456004896, + 6456411744, + 6456006368 ], "bases": [ { @@ -239979,19 +239981,19 @@ }, { "type_name": "CNmFootstepEventIDNode", - "vtable_address": 6463236488, + "vtable_address": 6463236520, "methods": [ - 6456406608, + 6456406624, 6448825232, - 6456402128, - 6455907152, - 6455907744, - 6455908368, - 6456411168, - 6455908528, - 6456404448, - 6456408416, - 6456405552 + 6456402144, + 6455907168, + 6455907760, + 6455908384, + 6456411184, + 6455908544, + 6456404464, + 6456408432, + 6456405568 ], "bases": [ { @@ -240048,15 +240050,15 @@ }, { "type_name": "CNmFootstepEventIDNode::CDefinition", - "vtable_address": 6463208264, + "vtable_address": 6463208296, "methods": [ - 6456027344, - 6456013712, - 6456007776, - 6456012480, - 6456004928, - 6456411856, - 6456006368 + 6456027360, + 6456013728, + 6456007792, + 6456012496, + 6456004944, + 6456411872, + 6456006384 ], "bases": [ { @@ -240113,19 +240115,19 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode", - "vtable_address": 6463236392, + "vtable_address": 6463236424, "methods": [ - 6456406672, + 6456406688, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456411200, - 6455908528, - 6456404416, - 6456408832, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456411216, + 6455908544, + 6456404432, + 6456408848, + 6456405568 ], "bases": [ { @@ -240182,15 +240184,15 @@ }, { "type_name": "CNmFootstepEventPercentageThroughNode::CDefinition", - "vtable_address": 6463208200, + "vtable_address": 6463208232, "methods": [ - 6456027392, - 6456013840, - 6456008048, - 6456012496, - 6456004976, - 6456411968, - 6456006384 + 6456027408, + 6456013856, + 6456008064, + 6456012512, + 6456004992, + 6456411984, + 6456006400 ], "bases": [ { @@ -240247,15 +240249,15 @@ }, { "type_name": "CNmFrameSnapEvent", - "vtable_address": 6463203288, + "vtable_address": 6463203320, "methods": [ - 6455966048, + 6455966064, + 6455964896, + 6455964496, 6455964880, - 6455964480, - 6455964864, - 6455964336, + 6455964352, 6450013904, - 6455964384 + 6455964400 ], "bases": [ { @@ -240284,19 +240286,19 @@ }, { "type_name": "CNmGraphEventConditionNode", - "vtable_address": 6463236200, + "vtable_address": 6463236232, "methods": [ - 6456406736, + 6456406752, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456411232, - 6455908528, - 6456404384, - 6456409376, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456411248, + 6455908544, + 6456404400, + 6456409392, + 6456405568 ], "bases": [ { @@ -240353,15 +240355,15 @@ }, { "type_name": "CNmGraphEventConditionNode::CDefinition", - "vtable_address": 6463208072, + "vtable_address": 6463208104, "methods": [ - 6456027440, - 6456014000, - 6456008368, - 6456012512, - 6456005024, - 6456412096, - 6456006400 + 6456027456, + 6456014016, + 6456008384, + 6456012528, + 6456005040, + 6456412112, + 6456006416 ], "bases": [ { @@ -240418,16 +240420,16 @@ }, { "type_name": "CNmGraphNode", - "vtable_address": 6461676368, + "vtable_address": 6461676352, "methods": [ 6448811648, 6448825232, - 6459886716, - 6455907152, - 6455907744, - 6455908368, - 6455907216, - 6455908528 + 6459886732, + 6455907168, + 6455907760, + 6455908384, + 6455907232, + 6455908544 ], "bases": [], "model": { @@ -240441,19 +240443,19 @@ }, { "type_name": "CNmIDComparisonNode", - "vtable_address": 6463238096, + "vtable_address": 6463238128, "methods": [ - 6456423472, + 6456423488, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456424784, - 6456426240, - 6456404384, - 6456423872, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456424800, + 6456426256, + 6456404400, + 6456423888, + 6456405568 ], "bases": [ { @@ -240510,15 +240512,15 @@ }, { "type_name": "CNmIDComparisonNode::CDefinition", - "vtable_address": 6463211888, + "vtable_address": 6463211920, "methods": [ - 6456078272, - 6456072448, - 6456070160, - 6456072384, - 6456068240, - 6456425088, - 6456070048 + 6456078288, + 6456072464, + 6456070176, + 6456072400, + 6456068256, + 6456425104, + 6456070064 ], "bases": [ { @@ -240575,15 +240577,15 @@ }, { "type_name": "CNmIDEvent", - "vtable_address": 6463224624, + "vtable_address": 6463224656, "methods": [ - 6456202480, + 6456202496, + 6456201328, + 6456201040, 6456201312, - 6456201024, - 6456201296, - 6456200832, + 6456200848, 6450013904, - 6456200880 + 6456200896 ], "bases": [ { @@ -240612,19 +240614,19 @@ }, { "type_name": "CNmIDEventConditionNode", - "vtable_address": 6463235912, + "vtable_address": 6463235944, "methods": [ - 6456406800, + 6456406816, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456411264, - 6456412896, - 6456404384, - 6456409472, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456411280, + 6456412912, + 6456404400, + 6456409488, + 6456405568 ], "bases": [ { @@ -240681,15 +240683,15 @@ }, { "type_name": "CNmIDEventConditionNode::CDefinition", - "vtable_address": 6463207880, + "vtable_address": 6463207912, "methods": [ - 6456027488, - 6456014176, - 6456008384, - 6456012528, - 6456005216, - 6456412224, - 6456006416 + 6456027504, + 6456014192, + 6456008400, + 6456012544, + 6456005232, + 6456412240, + 6456006432 ], "bases": [ { @@ -240746,19 +240748,19 @@ }, { "type_name": "CNmIDEventNode", - "vtable_address": 6463236008, + "vtable_address": 6463236040, "methods": [ - 6456406864, + 6456406880, 6448825232, - 6456402128, - 6455907152, - 6455907744, - 6455908368, - 6456411296, - 6456412912, - 6456404448, - 6456409568, - 6456405552 + 6456402144, + 6455907168, + 6455907760, + 6455908384, + 6456411312, + 6456412928, + 6456404464, + 6456409584, + 6456405568 ], "bases": [ { @@ -240815,15 +240817,15 @@ }, { "type_name": "CNmIDEventNode::CDefinition", - "vtable_address": 6463207944, + "vtable_address": 6463207976, "methods": [ - 6456027536, - 6456014576, - 6456008400, - 6456012544, - 6456005408, - 6456412352, - 6456006432 + 6456027552, + 6456014592, + 6456008416, + 6456012560, + 6456005424, + 6456412368, + 6456006448 ], "bases": [ { @@ -240880,19 +240882,19 @@ }, { "type_name": "CNmIDEventPercentageThroughNode", - "vtable_address": 6463236104, + "vtable_address": 6463236136, "methods": [ - 6456406928, + 6456406944, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456411328, - 6455908528, - 6456404416, - 6456410032, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456411344, + 6455908544, + 6456404432, + 6456410048, + 6456405568 ], "bases": [ { @@ -240949,15 +240951,15 @@ }, { "type_name": "CNmIDEventPercentageThroughNode::CDefinition", - "vtable_address": 6463208008, + "vtable_address": 6463208040, "methods": [ - 6456027584, - 6456014880, - 6456008736, - 6456012560, - 6456005456, - 6456412464, - 6456006448 + 6456027600, + 6456014896, + 6456008752, + 6456012576, + 6456005472, + 6456412480, + 6456006464 ], "bases": [ { @@ -241014,19 +241016,19 @@ }, { "type_name": "CNmIDSelectorNode", - "vtable_address": 6463238384, + "vtable_address": 6463238416, "methods": [ - 6456423536, + 6456423552, 6448825232, - 6456402128, - 6455907152, - 6456426016, - 6456426080, - 6456424848, - 6456426288, - 6456404448, - 6456424160, - 6456405552 + 6456402144, + 6455907168, + 6456426032, + 6456426096, + 6456424864, + 6456426304, + 6456404464, + 6456424176, + 6456405568 ], "bases": [ { @@ -241083,15 +241085,15 @@ }, { "type_name": "CNmIDSelectorNode::CDefinition", - "vtable_address": 6463212080, + "vtable_address": 6463212112, "methods": [ - 6456078320, - 6456072464, - 6456070176, - 6456072400, - 6456068352, - 6456425200, - 6456070064 + 6456078336, + 6456072480, + 6456070192, + 6456072416, + 6456068368, + 6456425216, + 6456070080 ], "bases": [ { @@ -241148,19 +241150,19 @@ }, { "type_name": "CNmIDSwitchNode", - "vtable_address": 6463238288, + "vtable_address": 6463238320, "methods": [ - 6456423744, + 6456423760, 6448825232, - 6456402128, - 6455907152, - 6455907744, - 6455908368, - 6456424944, - 6456426400, - 6456404448, - 6456424368, - 6456405552 + 6456402144, + 6455907168, + 6455907760, + 6455908384, + 6456424960, + 6456426416, + 6456404464, + 6456424384, + 6456405568 ], "bases": [ { @@ -241217,15 +241219,15 @@ }, { "type_name": "CNmIDSwitchNode::CDefinition", - "vtable_address": 6463212016, + "vtable_address": 6463212048, "methods": [ - 6456078368, - 6456072480, - 6456070192, - 6456072416, - 6456068416, - 6456425696, - 6456070080 + 6456078384, + 6456072496, + 6456070208, + 6456072432, + 6456068432, + 6456425712, + 6456070096 ], "bases": [ { @@ -241282,19 +241284,19 @@ }, { "type_name": "CNmIDToFloatNode", - "vtable_address": 6463238192, + "vtable_address": 6463238224, "methods": [ - 6456423808, + 6456423824, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456425040, - 6456426496, - 6456404416, - 6456424560, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456425056, + 6456426512, + 6456404432, + 6456424576, + 6456405568 ], "bases": [ { @@ -241351,15 +241353,15 @@ }, { "type_name": "CNmIDToFloatNode::CDefinition", - "vtable_address": 6463211952, + "vtable_address": 6463211984, "methods": [ - 6456078416, - 6456072496, - 6456070608, - 6456072432, - 6456068464, - 6456425920, - 6456070096 + 6456078432, + 6456072512, + 6456070624, + 6456072448, + 6456068480, + 6456425936, + 6456070112 ], "bases": [ { @@ -241416,15 +241418,15 @@ }, { "type_name": "CNmIsInactiveBranchConditionNode::CDefinition", - "vtable_address": 6463215712, + "vtable_address": 6463215744, "methods": [ - 6456108528, - 6456105200, - 6456103904, - 6456105152, - 6456103712, - 6456444784, - 6456103856 + 6456108544, + 6456105216, + 6456103920, + 6456105168, + 6456103728, + 6456444800, + 6456103872 ], "bases": [ { @@ -241481,19 +241483,19 @@ }, { "type_name": "CNmIsTargetSetNode", - "vtable_address": 6463239104, + "vtable_address": 6463239136, "methods": [ - 6456445280, + 6456445296, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456447280, - 6456447984, - 6456404384, - 6456445536, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456447296, + 6456448000, + 6456404400, + 6456445552, + 6456405568 ], "bases": [ { @@ -241550,15 +241552,15 @@ }, { "type_name": "CNmIsTargetSetNode::CDefinition", - "vtable_address": 6463216584, + "vtable_address": 6463216616, "methods": [ - 6456118144, - 6456114352, - 6456112080, - 6456114288, - 6456111824, - 6456447488, - 6456112016 + 6456118160, + 6456114368, + 6456112096, + 6456114304, + 6456111840, + 6456447504, + 6456112032 ], "bases": [ { @@ -241615,19 +241617,19 @@ }, { "type_name": "CNmLayerBlendNode", - "vtable_address": 6463238480, + "vtable_address": 6463238512, "methods": [ - 6456428448, - 6456432288, + 6456428464, + 6456432304, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6456432320, - 6456430512, - 6456431072, - 6456432512, + 6456432336, + 6456430528, + 6456431088, + 6456432528, 6448817504 ], "bases": [ @@ -241671,15 +241673,15 @@ }, { "type_name": "CNmLayerBlendNode::CDefinition", - "vtable_address": 6463213192, + "vtable_address": 6463213224, "methods": [ - 6456086240, + 6456086256, + 6456083952, + 6456082640, 6456083936, - 6456082624, - 6456083920, - 6456081600, - 6456431744, - 6456082240 + 6456081616, + 6456431760, + 6456082256 ], "bases": [ { @@ -241722,15 +241724,15 @@ }, { "type_name": "CNmLegacyEvent", - "vtable_address": 6463224776, + "vtable_address": 6463224808, "methods": [ - 6456204960, + 6456204976, + 6456203776, + 6456203088, 6456203760, - 6456203072, - 6456203744, - 6456202992, + 6456203008, 6450013904, - 6456503760 + 6456503776 ], "bases": [ { @@ -241759,15 +241761,15 @@ }, { "type_name": "CNmMaterialAttributeEvent", - "vtable_address": 6463224992, + "vtable_address": 6463225024, "methods": [ - 6456210064, + 6456210080, + 6456208768, + 6456208048, 6456208752, - 6456208032, - 6456208736, - 6456207888, + 6456207904, 6450013904, - 6456207952 + 6456207968 ], "bases": [ { @@ -241796,22 +241798,22 @@ }, { "type_name": "CNmModelSpaceBlendTask", - "vtable_address": 6463222552, + "vtable_address": 6463222584, "methods": [ - 6456190736, - 6456190352, - 6456471808, - 6456468080, + 6456190752, + 6456190368, + 6456471824, + 6456468096, 6448827696, 6448821856, - 6456190480, - 6456473888, - 6456468160, - 6456190544, - 6448821776, 6456190496, - 6456190576, - 6456468512 + 6456473904, + 6456468176, + 6456190560, + 6448821776, + 6456190512, + 6456190592, + 6456468528 ], "bases": [ { @@ -241854,19 +241856,19 @@ }, { "type_name": "CNmNotNode", - "vtable_address": 6463241376, + "vtable_address": 6463241408, "methods": [ - 6456530416, + 6456530432, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456531728, - 6456532864, - 6456404384, - 6456531264, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456531744, + 6456532880, + 6456404400, + 6456531280, + 6456405568 ], "bases": [ { @@ -241923,15 +241925,15 @@ }, { "type_name": "CNmNotNode::CDefinition", - "vtable_address": 6463227744, + "vtable_address": 6463227776, "methods": [ - 6456263344, - 6456260944, - 6456259808, - 6456260832, - 6456258928, - 6456532272, - 6456259552 + 6456263360, + 6456260960, + 6456259824, + 6456260848, + 6456258944, + 6456532288, + 6456259568 ], "bases": [ { @@ -241988,19 +241990,19 @@ }, { "type_name": "CNmOrNode", - "vtable_address": 6463241280, + "vtable_address": 6463241312, "methods": [ - 6456530480, + 6456530496, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456531792, - 6456532912, - 6456404384, - 6456531376, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456531808, + 6456532928, + 6456404400, + 6456531392, + 6456405568 ], "bases": [ { @@ -242057,15 +242059,15 @@ }, { "type_name": "CNmOrNode::CDefinition", - "vtable_address": 6463227680, + "vtable_address": 6463227712, "methods": [ - 6456263392, - 6456261168, - 6456259824, - 6456260848, - 6456258976, - 6456532384, - 6456259568 + 6456263408, + 6456261184, + 6456259840, + 6456260864, + 6456258992, + 6456532400, + 6456259584 ], "bases": [ { @@ -242122,15 +242124,15 @@ }, { "type_name": "CNmOrientationWarpEvent", - "vtable_address": 6463205040, + "vtable_address": 6463205072, "methods": [ - 6455981392, - 6455979136, - 6455978304, - 6455979104, - 6455978128, + 6455981408, + 6455979152, + 6455978320, + 6455979120, + 6455978144, 6450013904, - 6455978224 + 6455978240 ], "bases": [ { @@ -242159,20 +242161,20 @@ }, { "type_name": "CNmOrientationWarpNode", - "vtable_address": 6463243824, + "vtable_address": 6463243856, "methods": [ - 6456551344, - 6456552448, + 6456551360, + 6456552464, 6448821872, 6448822608, - 6456555072, - 6456555264, + 6456555088, + 6456555280, 6448822832, - 6456556512, - 6456551920, + 6456556528, 6456551936, - 6456556592, - 6456551504 + 6456551952, + 6456556608, + 6456551520 ], "bases": [ { @@ -242215,15 +242217,15 @@ }, { "type_name": "CNmOrientationWarpNode::CDefinition", - "vtable_address": 6463230840, + "vtable_address": 6463230872, "methods": [ - 6456305456, + 6456305472, + 6456304176, + 6456303568, 6456304160, - 6456303552, - 6456304144, - 6456303488, - 6456552144, - 6456303536 + 6456303504, + 6456552160, + 6456303552 ], "bases": [ { @@ -242266,22 +242268,22 @@ }, { "type_name": "CNmOverlayBlendTask", - "vtable_address": 6463222280, + "vtable_address": 6463222312, "methods": [ - 6456190784, - 6456190416, - 6456472752, - 6456468080, + 6456190800, + 6456190432, + 6456472768, + 6456468096, 6448827696, 6448821856, - 6456190480, - 6456473888, - 6456468160, - 6456190560, - 6456473792, 6456190496, + 6456473904, + 6456468176, 6456190576, - 6456468512 + 6456473808, + 6456190512, + 6456190592, + 6456468528 ], "bases": [ { @@ -242324,19 +242326,19 @@ }, { "type_name": "CNmParameterizedBlendNode", - "vtable_address": 6463240344, + "vtable_address": 6463240376, "methods": [ - 6456509168, - 6456512704, + 6456509184, + 6456512720, 6448821872, 6448822608, - 6456512736, - 6456512992, + 6456512752, + 6456513008, 6448822832, - 6456513424, - 6456511264, + 6456513440, 6456511280, - 6456513568, + 6456511296, + 6456513584, 6448817504 ], "bases": [ @@ -242380,15 +242382,15 @@ }, { "type_name": "CNmParameterizedBlendNode::CDefinition", - "vtable_address": 6463226176, + "vtable_address": 6463226208, "methods": [ - 6456234592, - 6456229568, - 6456228256, - 6456228912, - 6456226512, - 6456512144, - 6456227440 + 6456234608, + 6456229584, + 6456228272, + 6456228928, + 6456226528, + 6456512160, + 6456227456 ], "bases": [ { @@ -242431,24 +242433,24 @@ }, { "type_name": "CNmParameterizedClipSelectorNode", - "vtable_address": 6463245184, + "vtable_address": 6463245216, "methods": [ - 6456564912, - 6456569808, + 6456564928, + 6456569824, 6448821872, 6448822608, - 6456570400, - 6456570672, + 6456570416, + 6456570688, 6448822832, - 6456575456, - 6456566880, - 6456567296, - 6456575888, + 6456575472, + 6456566896, + 6456567312, + 6456575904, 6448817504, - 6456567008, - 6456566816, - 6456565408, - 6456569760 + 6456567024, + 6456566832, + 6456565424, + 6456569776 ], "bases": [ { @@ -242505,15 +242507,15 @@ }, { "type_name": "CNmParameterizedClipSelectorNode::CDefinition", - "vtable_address": 6463232208, + "vtable_address": 6463232240, "methods": [ - 6456329280, - 6456324688, - 6456323424, - 6456324512, - 6456321600, - 6456568528, - 6456323072 + 6456329296, + 6456324704, + 6456323440, + 6456324528, + 6456321616, + 6456568544, + 6456323088 ], "bases": [ { @@ -242570,19 +242572,19 @@ }, { "type_name": "CNmParameterizedSelectorNode", - "vtable_address": 6463245080, + "vtable_address": 6463245112, "methods": [ - 6456565040, - 6456569824, + 6456565056, + 6456569840, 6448821872, 6448822608, - 6456570448, - 6456570832, + 6456570464, + 6456570848, 6448822832, - 6456575520, - 6456566912, - 6456567536, - 6456576112, + 6456575536, + 6456566928, + 6456567552, + 6456576128, 6448817504 ], "bases": [ @@ -242626,15 +242628,15 @@ }, { "type_name": "CNmParameterizedSelectorNode::CDefinition", - "vtable_address": 6463232144, + "vtable_address": 6463232176, "methods": [ - 6456329328, - 6456324928, - 6456323824, - 6456324528, - 6456321792, - 6456568880, - 6456323088 + 6456329344, + 6456324944, + 6456323840, + 6456324544, + 6456321808, + 6456568896, + 6456323104 ], "bases": [ { @@ -242677,15 +242679,15 @@ }, { "type_name": "CNmParticleEvent", - "vtable_address": 6463203768, + "vtable_address": 6463203800, "methods": [ - 6455972880, + 6455972896, + 6455969920, + 6455968736, 6455969904, - 6455968720, - 6455969888, - 6455968432, + 6455968448, 6450013904, - 6455968640 + 6455968656 ], "bases": [ { @@ -242714,14 +242716,14 @@ }, { "type_name": "CNmPassthroughNode::CDefinition", - "vtable_address": 6461676592, + "vtable_address": 6461676576, "methods": [ 6448827760, - 6455903776, - 6455902944, + 6455903792, + 6455902960, 6448825888, 6448811424, - 6455925344, + 6455925360, 6448821824 ], "bases": [ @@ -242765,12 +242767,12 @@ }, { "type_name": "CNmPoseTask", - "vtable_address": 6461676472, + "vtable_address": 6461676456, "methods": [ 6448827904, 6448811712, - 6459886716, - 6455923600, + 6459886732, + 6455923616, 6448827696, 6448821856, 6448811920, @@ -242780,7 +242782,7 @@ 6448821776, 6448821680, 6448821760, - 6455923664 + 6455923680 ], "bases": [], "model": { @@ -242794,19 +242796,19 @@ }, { "type_name": "CNmReferencePoseNode", - "vtable_address": 6463244320, + "vtable_address": 6463244352, "methods": [ - 6456557152, + 6456557168, 6448825232, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6455908528, - 6456557296, - 6456557408, - 6456559056, + 6455908544, + 6456557312, + 6456557424, + 6456559072, 6448817504 ], "bases": [ @@ -242850,15 +242852,15 @@ }, { "type_name": "CNmReferencePoseNode::CDefinition", - "vtable_address": 6463231224, + "vtable_address": 6463231256, "methods": [ - 6456310784, - 6456307792, - 6456306704, - 6456307744, - 6456306544, - 6456558112, - 6456306656 + 6456310800, + 6456307808, + 6456306720, + 6456307760, + 6456306560, + 6456558128, + 6456306672 ], "bases": [ { @@ -242901,22 +242903,22 @@ }, { "type_name": "CNmReferencePoseTask", - "vtable_address": 6463200136, + "vtable_address": 6463200168, "methods": [ - 6455956416, - 6455955088, - 6456398048, - 6455923600, + 6455956432, + 6455955104, + 6456398064, + 6455923616, 6448827696, 6448821856, - 6455955152, - 6455956464, - 6455955200, - 6455955264, + 6455955168, + 6455956480, + 6455955216, + 6455955280, 6448821776, - 6455955248, + 6455955264, 6448821760, - 6455923664 + 6455923680 ], "bases": [ { @@ -242945,19 +242947,19 @@ }, { "type_name": "CNmReferencedGraphNode", - "vtable_address": 6463244528, + "vtable_address": 6463244560, "methods": [ - 6456560176, - 6456562096, + 6456560192, + 6456562112, 6448821872, 6448822608, - 6456562176, - 6456562944, + 6456562192, + 6456562960, 6448822832, - 6456563072, - 6456560752, - 6456560848, - 6456563152, + 6456563088, + 6456560768, + 6456560864, + 6456563168, 6448817504 ], "bases": [ @@ -243001,15 +243003,15 @@ }, { "type_name": "CNmReferencedGraphNode::CDefinition", - "vtable_address": 6463231456, + "vtable_address": 6463231488, "methods": [ - 6456312720, + 6456312736, + 6456311536, + 6456311264, 6456311520, - 6456311248, - 6456311504, - 6456311184, - 6456561152, - 6456311232 + 6456311200, + 6456561168, + 6456311248 ], "bases": [ { @@ -243052,15 +243054,15 @@ }, { "type_name": "CNmRootMotionEvent", - "vtable_address": 6463225616, + "vtable_address": 6463225648, "methods": [ - 6456220336, + 6456220352, + 6456220112, + 6456219264, 6456220096, - 6456219248, - 6456220080, - 6456219136, + 6456219152, 6450013904, - 6456219184 + 6456219200 ], "bases": [ { @@ -243089,19 +243091,19 @@ }, { "type_name": "CNmRootMotionOverrideNode", - "vtable_address": 6463238704, + "vtable_address": 6463238736, "methods": [ - 6456436736, + 6456436752, 6448825248, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6456439536, - 6455925152, - 6456437312, - 6456439648, + 6456439552, + 6455925168, + 6456437328, + 6456439664, 6448817504 ], "bases": [ @@ -243159,15 +243161,15 @@ }, { "type_name": "CNmRootMotionOverrideNode::CDefinition", - "vtable_address": 6463214024, + "vtable_address": 6463214056, "methods": [ - 6456089008, + 6456089024, + 6456087600, + 6456086832, 6456087584, - 6456086816, - 6456087568, - 6456086752, - 6456437440, - 6456086800 + 6456086768, + 6456437456, + 6456086816 ], "bases": [ { @@ -243224,22 +243226,22 @@ }, { "type_name": "CNmSampleTask", - "vtable_address": 6463224040, + "vtable_address": 6463224072, "methods": [ - 6456194624, - 6456194496, - 6456499408, - 6455923600, - 6456500944, + 6456194640, + 6456194512, + 6456499424, + 6455923616, + 6456500960, 6448821856, - 6456194560, - 6456502096, - 6456497920, - 6456194592, - 6456500032, 6456194576, + 6456502112, + 6456497936, 6456194608, - 6455923664 + 6456500048, + 6456194592, + 6456194624, + 6455923680 ], "bases": [ { @@ -243268,19 +243270,19 @@ }, { "type_name": "CNmScaleNode", - "vtable_address": 6463244736, + "vtable_address": 6463244768, "methods": [ - 6456563760, + 6456563776, 6448825248, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6456564096, - 6455925152, - 6456563824, - 6456564160, + 6456564112, + 6455925168, + 6456563840, + 6456564176, 6448817504 ], "bases": [ @@ -243338,15 +243340,15 @@ }, { "type_name": "CNmScaleNode::CDefinition", - "vtable_address": 6463231608, + "vtable_address": 6463231640, "methods": [ - 6456314592, + 6456314608, + 6456313424, + 6456313152, 6456313408, - 6456313136, - 6456313392, - 6456313072, - 6456563888, - 6456313120 + 6456313088, + 6456563904, + 6456313136 ], "bases": [ { @@ -243403,22 +243405,22 @@ }, { "type_name": "CNmScaleTask", - "vtable_address": 6463224184, + "vtable_address": 6463224216, "methods": [ - 6456195216, - 6456195040, - 6456502816, - 6455923600, + 6456195232, + 6456195056, + 6456502832, + 6455923616, 6448827696, 6448821856, - 6456195168, - 6456503536, - 6456502608, - 6456195200, - 6448821776, 6456195184, + 6456503552, + 6456502624, + 6456195216, + 6448821776, + 6456195200, 6448821760, - 6455923664 + 6455923680 ], "bases": [ { @@ -243447,19 +243449,19 @@ }, { "type_name": "CNmSelectorNode", - "vtable_address": 6463244840, + "vtable_address": 6463244872, "methods": [ - 6456565168, - 6456569840, + 6456565184, + 6456569856, 6448821872, 6448822608, - 6456570496, - 6456570992, + 6456570512, + 6456571008, 6448822832, - 6456575584, - 6456566944, - 6456567776, - 6456576336, + 6456575600, + 6456566960, + 6456567792, + 6456576352, 6448817504 ], "bases": [ @@ -243503,15 +243505,15 @@ }, { "type_name": "CNmSelectorNode::CDefinition", - "vtable_address": 6463232016, + "vtable_address": 6463232048, "methods": [ - 6456329376, - 6456325168, - 6456324224, - 6456324544, - 6456321984, - 6456569232, - 6456323104 + 6456329392, + 6456325184, + 6456324240, + 6456324560, + 6456322000, + 6456569248, + 6456323120 ], "bases": [ { @@ -243554,7 +243556,7 @@ }, { "type_name": "CNmSnapWeaponNode", - "vtable_address": 6461677048, + "vtable_address": 6461677032, "methods": [ 6448811776, 6448825280, @@ -243564,7 +243566,7 @@ 6448827344, 6448822832, 6448828672, - 6455925152, + 6455925168, 6448822864, 6448830336, 6448817504 @@ -243624,7 +243626,7 @@ }, { "type_name": "CNmSnapWeaponNode::CDefinition", - "vtable_address": 6461676984, + "vtable_address": 6461676968, "methods": [ 6448827808, 6448826160, @@ -243689,12 +243691,12 @@ }, { "type_name": "CNmSnapWeaponTask", - "vtable_address": 6461677152, + "vtable_address": 6461677136, "methods": [ 6448827952, 6448811840, 6448818848, - 6455923600, + 6455923616, 6448827696, 6448821856, 6448811936, @@ -243704,7 +243706,7 @@ 6448821776, 6448821696, 6448821760, - 6455923664 + 6455923680 ], "bases": [ { @@ -243733,11 +243735,11 @@ }, { "type_name": "CNmSoundEvent", - "vtable_address": 6462125312, + "vtable_address": 6462125328, "methods": [ 6450064752, - 6455944432, - 6455943200, + 6455944448, + 6455943216, 6450014368, 6449950032, 6450013904, @@ -243770,15 +243772,15 @@ }, { "type_name": "CNmSpeedScaleBaseNode::CDefinition", - "vtable_address": 6463232800, + "vtable_address": 6463232832, "methods": [ - 6456335680, - 6456332144, - 6456331152, - 6456332080, - 6456330816, - 6455925344, - 6456330976 + 6456335696, + 6456332160, + 6456331168, + 6456332096, + 6456330832, + 6455925360, + 6456330992 ], "bases": [ { @@ -243835,21 +243837,21 @@ }, { "type_name": "CNmSpeedScaleNode", - "vtable_address": 6463245360, + "vtable_address": 6463245392, "methods": [ - 6456576624, + 6456576640, 6448825248, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6456578000, - 6455925152, - 6456577376, - 6456578128, + 6456578016, + 6455925168, + 6456577392, + 6456578144, 6448817504, - 6456576976 + 6456576992 ], "bases": [ { @@ -243920,15 +243922,15 @@ }, { "type_name": "CNmSpeedScaleNode::CDefinition", - "vtable_address": 6463232864, + "vtable_address": 6463232896, "methods": [ - 6456335728, - 6456332160, - 6456331168, - 6456332096, - 6456330864, - 6456577648, - 6456330992 + 6456335744, + 6456332176, + 6456331184, + 6456332112, + 6456330880, + 6456577664, + 6456331008 ], "bases": [ { @@ -243999,19 +244001,19 @@ }, { "type_name": "CNmStateCompletedConditionNode", - "vtable_address": 6463238912, + "vtable_address": 6463238944, "methods": [ - 6456443968, + 6456443984, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456444688, - 6456445216, - 6456404384, - 6456444096, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456444704, + 6456445232, + 6456404400, + 6456444112, + 6456405568 ], "bases": [ { @@ -244068,15 +244070,15 @@ }, { "type_name": "CNmStateCompletedConditionNode::CDefinition", - "vtable_address": 6463215648, + "vtable_address": 6463215680, "methods": [ - 6456108576, - 6456105216, - 6456104032, - 6456105168, - 6456103760, - 6456444864, - 6456103872 + 6456108592, + 6456105232, + 6456104048, + 6456105184, + 6456103776, + 6456444880, + 6456103888 ], "bases": [ { @@ -244133,19 +244135,19 @@ }, { "type_name": "CNmStateMachineNode", - "vtable_address": 6463245832, + "vtable_address": 6463245864, "methods": [ - 6456579600, - 6456583856, + 6456579616, + 6456583872, 6448821872, 6448822608, - 6456584160, - 6456584736, + 6456584176, + 6456584752, 6448822832, - 6456585584, - 6456582752, - 6456582832, - 6456585872, + 6456585600, + 6456582768, + 6456582848, + 6456585888, 6448817504 ], "bases": [ @@ -244189,15 +244191,15 @@ }, { "type_name": "CNmStateMachineNode::CDefinition", - "vtable_address": 6463233440, + "vtable_address": 6463233472, "methods": [ - 6456348144, + 6456348160, + 6456344976, + 6456343648, 6456344960, - 6456343632, - 6456344944, - 6456342128, - 6456583152, - 6456343248 + 6456342144, + 6456583168, + 6456343264 ], "bases": [ { @@ -244240,19 +244242,19 @@ }, { "type_name": "CNmStateNode", - "vtable_address": 6463238808, + "vtable_address": 6463238840, "methods": [ - 6456439728, - 6456440880, + 6456439744, + 6456440896, 6448821872, 6448822608, - 6456440928, - 6456441360, + 6456440944, + 6456441376, 6448822832, - 6456442960, - 6456439792, - 6456440352, - 6456443296, + 6456442976, + 6456439808, + 6456440368, + 6456443312, 6448817504 ], "bases": [ @@ -244296,15 +244298,15 @@ }, { "type_name": "CNmStateNode::CDefinition", - "vtable_address": 6463214584, + "vtable_address": 6463214616, "methods": [ - 6456101216, + 6456101232, + 6456098544, + 6456097088, 6456098528, - 6456097072, - 6456098512, - 6456095984, - 6456440544, - 6456097024 + 6456096000, + 6456440560, + 6456097040 ], "bases": [ { @@ -244347,19 +244349,19 @@ }, { "type_name": "CNmSyncEventIndexConditionNode", - "vtable_address": 6463236584, + "vtable_address": 6463236616, "methods": [ - 6456406992, + 6456407008, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456411360, - 6455908528, - 6456404384, - 6456410464, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456411376, + 6455908544, + 6456404400, + 6456410480, + 6456405568 ], "bases": [ { @@ -244416,15 +244418,15 @@ }, { "type_name": "CNmSyncEventIndexConditionNode::CDefinition", - "vtable_address": 6463208328, + "vtable_address": 6463208360, "methods": [ - 6456027632, - 6456015168, - 6456009056, - 6456012576, - 6456005504, - 6456412592, - 6456006464 + 6456027648, + 6456015184, + 6456009072, + 6456012592, + 6456005520, + 6456412608, + 6456006480 ], "bases": [ { @@ -244481,19 +244483,19 @@ }, { "type_name": "CNmTargetInfoNode", - "vtable_address": 6463239200, + "vtable_address": 6463239232, "methods": [ - 6456445344, + 6456445360, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456447344, - 6456448032, - 6456404416, - 6456445696, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456447360, + 6456448048, + 6456404432, + 6456445712, + 6456405568 ], "bases": [ { @@ -244550,15 +244552,15 @@ }, { "type_name": "CNmTargetInfoNode::CDefinition", - "vtable_address": 6463216648, + "vtable_address": 6463216680, "methods": [ - 6456118192, - 6456114432, - 6456112288, - 6456114304, - 6456111872, - 6456447600, - 6456112032 + 6456118208, + 6456114448, + 6456112304, + 6456114320, + 6456111888, + 6456447616, + 6456112048 ], "bases": [ { @@ -244615,19 +244617,19 @@ }, { "type_name": "CNmTargetOffsetNode", - "vtable_address": 6463239392, + "vtable_address": 6463239424, "methods": [ - 6456445408, + 6456445424, 6448825232, - 6456402144, - 6455907152, - 6455907744, - 6455908368, - 6456447392, - 6456448080, - 6456404480, - 6456446688, - 6456405552 + 6456402160, + 6455907168, + 6455907760, + 6455908384, + 6456447408, + 6456448096, + 6456404496, + 6456446704, + 6456405568 ], "bases": [ { @@ -244684,15 +244686,15 @@ }, { "type_name": "CNmTargetOffsetNode::CDefinition", - "vtable_address": 6463216776, + "vtable_address": 6463216808, "methods": [ - 6456118240, - 6456114448, - 6456112304, - 6456114320, - 6456111920, - 6456447696, - 6456112048 + 6456118256, + 6456114464, + 6456112320, + 6456114336, + 6456111936, + 6456447712, + 6456112064 ], "bases": [ { @@ -244749,19 +244751,19 @@ }, { "type_name": "CNmTargetPointNode", - "vtable_address": 6463239296, + "vtable_address": 6463239328, "methods": [ - 6456445472, + 6456445488, 6448825232, - 6456402160, - 6455907152, - 6455907744, - 6455908368, - 6456447440, - 6456448128, - 6456404560, - 6456446992, - 6456405552 + 6456402176, + 6455907168, + 6455907760, + 6455908384, + 6456447456, + 6456448144, + 6456404576, + 6456447008, + 6456405568 ], "bases": [ { @@ -244818,15 +244820,15 @@ }, { "type_name": "CNmTargetPointNode::CDefinition", - "vtable_address": 6463216712, + "vtable_address": 6463216744, "methods": [ - 6456118288, - 6456114832, - 6456112320, - 6456114336, - 6456111968, - 6456447856, - 6456112064 + 6456118304, + 6456114848, + 6456112336, + 6456114352, + 6456111984, + 6456447872, + 6456112080 ], "bases": [ { @@ -244883,15 +244885,15 @@ }, { "type_name": "CNmTargetWarpEvent", - "vtable_address": 6463205112, + "vtable_address": 6463205144, "methods": [ - 6455981440, - 6455979152, - 6455978432, - 6455979120, - 6455978176, + 6455981456, + 6455979168, + 6455978448, + 6455979136, + 6455978192, 6450013904, - 6456400608 + 6456400624 ], "bases": [ { @@ -244920,20 +244922,20 @@ }, { "type_name": "CNmTargetWarpNode", - "vtable_address": 6463245936, + "vtable_address": 6463245968, "methods": [ - 6456587024, - 6456587440, + 6456587040, + 6456587456, 6448821872, 6448822608, - 6456587472, - 6456587856, + 6456587488, + 6456587872, 6448822832, - 6456588528, - 6456587104, + 6456588544, 6456587120, - 6456588800, - 6456587088 + 6456587136, + 6456588816, + 6456587104 ], "bases": [ { @@ -244976,15 +244978,15 @@ }, { "type_name": "CNmTargetWarpNode::CDefinition", - "vtable_address": 6463234192, + "vtable_address": 6463234224, "methods": [ - 6456351664, + 6456351680, + 6456350080, + 6456349104, 6456350064, - 6456349088, - 6456350048, - 6456349024, - 6456587296, - 6456349072 + 6456349040, + 6456587312, + 6456349088 ], "bases": [ { @@ -245027,19 +245029,19 @@ }, { "type_name": "CNmTimeConditionNode", - "vtable_address": 6463239008, + "vtable_address": 6463239040, "methods": [ - 6456444032, + 6456444048, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456444752, - 6455908528, - 6456404384, - 6456444368, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456444768, + 6455908544, + 6456404400, + 6456444384, + 6456405568 ], "bases": [ { @@ -245096,15 +245098,15 @@ }, { "type_name": "CNmTimeConditionNode::CDefinition", - "vtable_address": 6463215776, + "vtable_address": 6463215808, "methods": [ - 6456108624, - 6456105376, - 6456104352, - 6456105184, - 6456103808, - 6456445040, - 6456103888 + 6456108640, + 6456105392, + 6456104368, + 6456105200, + 6456103824, + 6456445056, + 6456103904 ], "bases": [ { @@ -245161,15 +245163,15 @@ }, { "type_name": "CNmTransitionEvent", - "vtable_address": 6463204488, + "vtable_address": 6463204520, "methods": [ - 6455976144, + 6455976160, + 6455974800, + 6455974080, 6455974784, - 6455974064, - 6455974768, - 6455974016, + 6455974032, 6450013904, - 6456400240 + 6456400256 ], "bases": [ { @@ -245198,19 +245200,19 @@ }, { "type_name": "CNmTransitionEventConditionNode", - "vtable_address": 6463236872, + "vtable_address": 6463236904, "methods": [ - 6456407056, + 6456407072, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456411392, - 6455908528, - 6456404384, - 6456410624, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456411408, + 6455908544, + 6456404400, + 6456410640, + 6456405568 ], "bases": [ { @@ -245267,15 +245269,15 @@ }, { "type_name": "CNmTransitionEventConditionNode::CDefinition", - "vtable_address": 6463208520, + "vtable_address": 6463208552, "methods": [ - 6456027680, - 6456015184, - 6456009072, - 6456012592, - 6456005552, - 6456412704, - 6456006480 + 6456027696, + 6456015200, + 6456009088, + 6456012608, + 6456005568, + 6456412720, + 6456006496 ], "bases": [ { @@ -245332,19 +245334,19 @@ }, { "type_name": "CNmTransitionNode", - "vtable_address": 6463239560, + "vtable_address": 6463239592, "methods": [ - 6456448896, + 6456448912, 6448825232, 6448821872, 6448822608, - 6456455680, - 6456458032, + 6456455696, + 6456458048, 6448822832, - 6456458288, - 6456450528, - 6456450768, - 6456458480, + 6456458304, + 6456450544, + 6456450784, + 6456458496, 6448817504 ], "bases": [ @@ -245388,15 +245390,15 @@ }, { "type_name": "CNmTransitionNode::CDefinition", - "vtable_address": 6463217736, + "vtable_address": 6463217768, "methods": [ - 6456123712, + 6456123728, + 6456121152, + 6456119648, 6456121136, - 6456119632, - 6456121120, - 6456119568, - 6456454400, - 6456119616 + 6456119584, + 6456454416, + 6456119632 ], "bases": [ { @@ -245439,19 +245441,19 @@ }, { "type_name": "CNmTwoBoneIKNode", - "vtable_address": 6463246176, + "vtable_address": 6463246208, "methods": [ - 6456589792, + 6456589808, 6448825248, 6448821872, 6448822608, - 6456590464, - 6456591040, + 6456590480, + 6456591056, 6448822832, - 6456591168, - 6455925152, - 6456589856, - 6456591248, + 6456591184, + 6455925168, + 6456589872, + 6456591264, 6448817504 ], "bases": [ @@ -245509,15 +245511,15 @@ }, { "type_name": "CNmTwoBoneIKNode::CDefinition", - "vtable_address": 6463234384, + "vtable_address": 6463234416, "methods": [ - 6456355632, + 6456355648, + 6456353936, + 6456352896, 6456353920, - 6456352880, - 6456353904, - 6456352816, - 6456590208, - 6456352864 + 6456352832, + 6456590224, + 6456352880 ], "bases": [ { @@ -245574,19 +245576,19 @@ }, { "type_name": "CNmVectorCreateNode", - "vtable_address": 6463239760, + "vtable_address": 6463239792, "methods": [ - 6456461472, + 6456461488, 6448825232, - 6456402160, - 6455907152, - 6455907744, - 6455908368, - 6456463120, - 6456463856, - 6456404560, - 6456461664, - 6456405552 + 6456402176, + 6455907168, + 6455907760, + 6455908384, + 6456463136, + 6456463872, + 6456404576, + 6456461680, + 6456405568 ], "bases": [ { @@ -245643,15 +245645,15 @@ }, { "type_name": "CNmVectorCreateNode::CDefinition", - "vtable_address": 6463218376, + "vtable_address": 6463218408, "methods": [ - 6456130672, - 6456129072, - 6456127648, - 6456129024, - 6456127456, - 6456463328, - 6456127600 + 6456130688, + 6456129088, + 6456127664, + 6456129040, + 6456127472, + 6456463344, + 6456127616 ], "bases": [ { @@ -245708,19 +245710,19 @@ }, { "type_name": "CNmVectorInfoNode", - "vtable_address": 6463239664, + "vtable_address": 6463239696, "methods": [ - 6456461536, + 6456461552, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456463232, - 6456463968, - 6456404416, - 6456461904, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456463248, + 6456463984, + 6456404432, + 6456461920, + 6456405568 ], "bases": [ { @@ -245777,15 +245779,15 @@ }, { "type_name": "CNmVectorInfoNode::CDefinition", - "vtable_address": 6463218312, + "vtable_address": 6463218344, "methods": [ - 6456130720, - 6456129264, - 6456127920, - 6456129040, - 6456127504, - 6456463632, - 6456127616 + 6456130736, + 6456129280, + 6456127936, + 6456129056, + 6456127520, + 6456463648, + 6456127632 ], "bases": [ { @@ -245842,19 +245844,19 @@ }, { "type_name": "CNmVectorNegateNode", - "vtable_address": 6463239856, + "vtable_address": 6463239888, "methods": [ - 6456461600, + 6456461616, 6448825232, - 6456402160, - 6455907152, - 6455907744, - 6455908368, - 6456463280, - 6456464016, - 6456404560, - 6456462944, - 6456405552 + 6456402176, + 6455907168, + 6455907760, + 6455908384, + 6456463296, + 6456464032, + 6456404576, + 6456462960, + 6456405568 ], "bases": [ { @@ -245911,15 +245913,15 @@ }, { "type_name": "CNmVectorNegateNode::CDefinition", - "vtable_address": 6463218440, + "vtable_address": 6463218472, "methods": [ - 6456130768, - 6456129680, - 6456127936, - 6456129056, - 6456127552, - 6456463728, - 6456127632 + 6456130784, + 6456129696, + 6456127952, + 6456129072, + 6456127568, + 6456463744, + 6456127648 ], "bases": [ { @@ -245976,21 +245978,21 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode", - "vtable_address": 6463245584, + "vtable_address": 6463245616, "methods": [ - 6456576688, + 6456576704, 6448825248, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6456578064, - 6455925152, - 6456577440, - 6456578128, + 6456578080, + 6455925168, + 6456577456, + 6456578144, 6448817504, - 6456577104 + 6456577120 ], "bases": [ { @@ -246061,15 +246063,15 @@ }, { "type_name": "CNmVelocityBasedSpeedScaleNode::CDefinition", - "vtable_address": 6463232992, + "vtable_address": 6463233024, "methods": [ - 6456335776, - 6456332176, - 6456331296, - 6456332112, - 6456330912, - 6456577792, - 6456331008 + 6456335792, + 6456332192, + 6456331312, + 6456332128, + 6456330928, + 6456577808, + 6456331024 ], "bases": [ { @@ -246140,19 +246142,19 @@ }, { "type_name": "CNmVelocityBlendNode", - "vtable_address": 6463240552, + "vtable_address": 6463240584, "methods": [ - 6456509232, - 6456512704, + 6456509248, + 6456512720, 6448821872, 6448822608, - 6456512736, - 6456513200, + 6456512752, + 6456513216, 6448822832, - 6456513424, - 6456511264, - 6456511456, - 6456513568, + 6456513440, + 6456511280, + 6456511472, + 6456513584, 6448817504 ], "bases": [ @@ -246210,15 +246212,15 @@ }, { "type_name": "CNmVelocityBlendNode::CDefinition", - "vtable_address": 6463226304, + "vtable_address": 6463226336, "methods": [ - 6456234640, - 6456229584, - 6456228272, - 6456228928, - 6456226704, - 6456512592, - 6456227456 + 6456234656, + 6456229600, + 6456228288, + 6456228944, + 6456226720, + 6456512608, + 6456227472 ], "bases": [ { @@ -246275,19 +246277,19 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode", - "vtable_address": 6463243520, + "vtable_address": 6463243552, "methods": [ - 6456544752, + 6456544768, 6448825232, - 6456527776, - 6455907152, - 6455907744, - 6455908368, - 6456546400, - 6456549136, - 6456404544, - 6456545568, - 6456405552 + 6456527792, + 6455907168, + 6455907760, + 6455908384, + 6456546416, + 6456549152, + 6456404560, + 6456545584, + 6456405568 ], "bases": [ { @@ -246344,15 +246346,15 @@ }, { "type_name": "CNmVirtualParameterBoneMaskNode::CDefinition", - "vtable_address": 6463230344, + "vtable_address": 6463230376, "methods": [ - 6456297296, - 6456287488, - 6456285984, - 6456287312, - 6456284880, - 6456547072, - 6456285248 + 6456297312, + 6456287504, + 6456286000, + 6456287328, + 6456284896, + 6456547088, + 6456285264 ], "bases": [ { @@ -246409,19 +246411,19 @@ }, { "type_name": "CNmVirtualParameterBoolNode", - "vtable_address": 6463243040, + "vtable_address": 6463243072, "methods": [ - 6456544880, + 6456544896, 6448825232, - 6456402096, - 6455907152, - 6455907744, - 6455908368, - 6456546448, - 6456549184, - 6456404384, - 6456545680, - 6456405552 + 6456402112, + 6455907168, + 6455907760, + 6455908384, + 6456546464, + 6456549200, + 6456404400, + 6456545696, + 6456405568 ], "bases": [ { @@ -246478,15 +246480,15 @@ }, { "type_name": "CNmVirtualParameterBoolNode::CDefinition", - "vtable_address": 6463230024, + "vtable_address": 6463230056, "methods": [ - 6456297344, - 6456287568, - 6456286192, - 6456287328, - 6456284928, - 6456547200, - 6456285264 + 6456297360, + 6456287584, + 6456286208, + 6456287344, + 6456284944, + 6456547216, + 6456285280 ], "bases": [ { @@ -246543,19 +246545,19 @@ }, { "type_name": "CNmVirtualParameterFloatNode", - "vtable_address": 6463243232, + "vtable_address": 6463243264, "methods": [ - 6456544944, + 6456544960, 6448825232, - 6456402112, - 6455907152, - 6455907744, - 6455908368, - 6456546496, - 6456549232, - 6456404416, - 6456545792, - 6456405552 + 6456402128, + 6455907168, + 6455907760, + 6455908384, + 6456546512, + 6456549248, + 6456404432, + 6456545808, + 6456405568 ], "bases": [ { @@ -246612,15 +246614,15 @@ }, { "type_name": "CNmVirtualParameterFloatNode::CDefinition", - "vtable_address": 6463230152, + "vtable_address": 6463230184, "methods": [ - 6456297392, - 6456287648, - 6456286400, - 6456287344, - 6456284976, - 6456547312, - 6456285280 + 6456297408, + 6456287664, + 6456286416, + 6456287360, + 6456284992, + 6456547328, + 6456285296 ], "bases": [ { @@ -246677,19 +246679,19 @@ }, { "type_name": "CNmVirtualParameterIDNode", - "vtable_address": 6463243136, + "vtable_address": 6463243168, "methods": [ - 6456545008, + 6456545024, 6448825232, - 6456402128, - 6455907152, - 6455907744, - 6455908368, - 6456546544, - 6456549280, - 6456404448, - 6456545904, - 6456405552 + 6456402144, + 6455907168, + 6455907760, + 6455908384, + 6456546560, + 6456549296, + 6456404464, + 6456545920, + 6456405568 ], "bases": [ { @@ -246746,15 +246748,15 @@ }, { "type_name": "CNmVirtualParameterIDNode::CDefinition", - "vtable_address": 6463230088, + "vtable_address": 6463230120, "methods": [ - 6456297440, - 6456287728, - 6456286608, - 6456287360, - 6456285024, - 6456547408, - 6456285296 + 6456297456, + 6456287744, + 6456286624, + 6456287376, + 6456285040, + 6456547424, + 6456285312 ], "bases": [ { @@ -246811,19 +246813,19 @@ }, { "type_name": "CNmVirtualParameterTargetNode", - "vtable_address": 6463243424, + "vtable_address": 6463243456, "methods": [ - 6456545072, + 6456545088, 6448825232, - 6456402144, - 6455907152, - 6455907744, - 6455908368, - 6456546592, - 6456549328, - 6456404480, - 6456546032, - 6456405552 + 6456402160, + 6455907168, + 6455907760, + 6455908384, + 6456546608, + 6456549344, + 6456404496, + 6456546048, + 6456405568 ], "bases": [ { @@ -246880,15 +246882,15 @@ }, { "type_name": "CNmVirtualParameterTargetNode::CDefinition", - "vtable_address": 6463230280, + "vtable_address": 6463230312, "methods": [ - 6456297488, - 6456287808, - 6456286816, - 6456287376, - 6456285072, - 6456547504, - 6456285312 + 6456297504, + 6456287824, + 6456286832, + 6456287392, + 6456285088, + 6456547520, + 6456285328 ], "bases": [ { @@ -246945,19 +246947,19 @@ }, { "type_name": "CNmVirtualParameterVectorNode", - "vtable_address": 6463243328, + "vtable_address": 6463243360, "methods": [ - 6456545136, + 6456545152, 6448825232, - 6456402160, - 6455907152, - 6455907744, - 6455908368, - 6456546640, - 6456549376, - 6456404560, - 6456546272, - 6456405552 + 6456402176, + 6455907168, + 6455907760, + 6455908384, + 6456546656, + 6456549392, + 6456404576, + 6456546288, + 6456405568 ], "bases": [ { @@ -247014,15 +247016,15 @@ }, { "type_name": "CNmVirtualParameterVectorNode::CDefinition", - "vtable_address": 6463230216, + "vtable_address": 6463230248, "methods": [ - 6456297536, - 6456287888, - 6456287024, - 6456287392, - 6456285120, - 6456547664, - 6456285328 + 6456297552, + 6456287904, + 6456287040, + 6456287408, + 6456285136, + 6456547680, + 6456285344 ], "bases": [ { @@ -247079,19 +247081,19 @@ }, { "type_name": "CNmZeroPoseNode", - "vtable_address": 6463244216, + "vtable_address": 6463244248, "methods": [ - 6456557216, + 6456557232, 6448825232, 6448821872, 6448822608, - 6455908048, - 6455908416, + 6455908064, + 6455908432, 6448822832, - 6455908528, - 6456557312, - 6456557456, - 6456559616, + 6455908544, + 6456557328, + 6456557472, + 6456559632, 6448817504 ], "bases": [ @@ -247135,15 +247137,15 @@ }, { "type_name": "CNmZeroPoseNode::CDefinition", - "vtable_address": 6463231160, + "vtable_address": 6463231192, "methods": [ - 6456310832, - 6456307808, - 6456306832, - 6456307760, - 6456306592, - 6456558176, - 6456306672 + 6456310848, + 6456307824, + 6456306848, + 6456307776, + 6456306608, + 6456558192, + 6456306688 ], "bases": [ { @@ -247186,22 +247188,22 @@ }, { "type_name": "CNmZeroPoseTask", - "vtable_address": 6463223888, + "vtable_address": 6463223920, "methods": [ - 6456194048, - 6456193920, - 6456398176, - 6455923600, + 6456194064, + 6456193936, + 6456398192, + 6455923616, 6448827696, 6448821856, - 6456193984, - 6456194112, 6456194000, - 6456194032, - 6448821776, + 6456194128, 6456194016, + 6456194048, + 6448821776, + 6456194032, 6448821760, - 6455923664 + 6455923680 ], "bases": [ { @@ -247247,7 +247249,7 @@ }, { "type_name": "CNotReadyForMatchIssue", - "vtable_address": 6461740240, + "vtable_address": 6461740256, "methods": [ 6444557600, 6448895920, @@ -247324,7 +247326,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 6461014520, + "vtable_address": 6461014504, "methods": [ 6443752688, 6443767152, @@ -247457,7 +247459,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 6461015016, + "vtable_address": 6461015000, "methods": [ 6445903536, 6445903872, @@ -247534,7 +247536,7 @@ }, { "type_name": "CNotifyManager", - "vtable_address": 6461015064, + "vtable_address": 6461015048, "methods": [ 6445904512, 6444023696, @@ -247610,18 +247612,18 @@ }, { "type_name": "CNullEntity", - "vtable_address": 6462935296, + "vtable_address": 6462935312, "methods": [ 6446805888, 6453711728, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453822080, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -247651,7 +247653,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758432, 6453807440, 6453810144, @@ -247897,7 +247899,7 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 6462267304, + "vtable_address": 6462267336, "methods": [ 6450891504, 6450888128, @@ -247991,7 +247993,7 @@ }, { "type_name": "CNullGameJournal", - "vtable_address": 6462267376, + "vtable_address": 6462267408, "methods": [ 6443752688, 6443767152, @@ -248143,13 +248145,13 @@ 6446805920, 6445267120, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445306064, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445267248, 6445316352, 6450455600, @@ -248179,7 +248181,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445275552, 6445293136, 6445300976, @@ -248484,7 +248486,7 @@ }, { "type_name": "COrnamentProp", - "vtable_address": 6462853096, + "vtable_address": 6462853112, "methods": [ 6446805696, 6453196176, @@ -248493,9 +248495,9 @@ 6450464656, 6450317360, 6453326048, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6453198672, 6450870512, 6450455584, @@ -248525,7 +248527,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453235536, 6453303152, 6453322656, @@ -248943,7 +248945,7 @@ }, { "type_name": "COrnamentProp", - "vtable_address": 6462855640, + "vtable_address": 6462855656, "methods": [ 6445170480, 6445186928 @@ -249087,7 +249089,7 @@ }, { "type_name": "CPASAttenuationFilter", - "vtable_address": 6461861688, + "vtable_address": 6461861704, "methods": [ 6449384880, 6451409088, @@ -249150,7 +249152,7 @@ }, { "type_name": "CPASFilter", - "vtable_address": 6461062664, + "vtable_address": 6461062648, "methods": [ 6446324256, 6451409088, @@ -249199,7 +249201,7 @@ }, { "type_name": "CPVSFilter", - "vtable_address": 6461723776, + "vtable_address": 6461723792, "methods": [ 6448895984, 6451409088, @@ -249248,7 +249250,7 @@ }, { "type_name": "CPVSManager", - "vtable_address": 6462843224, + "vtable_address": 6462843304, "methods": [ 6443752688, 6443767152, @@ -249367,7 +249369,7 @@ }, { "type_name": "CPVSManager", - "vtable_address": 6462843720, + "vtable_address": 6462843800, "methods": [ 6453149584, 6453149648, @@ -249435,7 +249437,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6461117112, + "vtable_address": 6461117096, "methods": [ 6446322672, 6446592704 @@ -249467,7 +249469,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob const &)'::`29':: >", - "vtable_address": 6461046320, + "vtable_address": 6461046304, "methods": [ 6445977024, 6446174016 @@ -249499,7 +249501,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >", - "vtable_address": 6461117136, + "vtable_address": 6461117120, "methods": [ 6446322624, 6446592560 @@ -249563,7 +249565,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob &,class CBitVec<16384> &,struct Entity2Networkable_t const * *,unsigned short const *,int)'::`50':: >", - "vtable_address": 6462575392, + "vtable_address": 6462575424, "methods": [ 6452386704, 6452518816 @@ -249595,7 +249597,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayAIEventFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260104, + "vtable_address": 6462260136, "methods": [ 6450639088, 6450836368 @@ -249627,7 +249629,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayCombinedFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260008, + "vtable_address": 6462260040, "methods": [ 6450639520, 6450837424 @@ -249659,7 +249661,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayEntityFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462259984, + "vtable_address": 6462260016, "methods": [ 6450639136, 6450836384 @@ -249691,7 +249693,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayPathfindingFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260128, + "vtable_address": 6462260160, "methods": [ 6450639184, 6450836400 @@ -249723,7 +249725,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayScheduleFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260056, + "vtable_address": 6462260088, "methods": [ 6450639232, 6450836416 @@ -249755,7 +249757,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayTacticalFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260032, + "vtable_address": 6462260064, "methods": [ 6450639280, 6450836432 @@ -249787,7 +249789,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayTaskFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260080, + "vtable_address": 6462260112, "methods": [ 6450639328, 6450836720 @@ -249819,7 +249821,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: virtual void __cdecl CDebugOverlayTextFilter::FindAllMatchingSnapshots(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462259960, + "vtable_address": 6462259992, "methods": [ 6450639376, 6450836736 @@ -249851,7 +249853,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob const &)'::`22':: >(int,int,char const *,class `private: void __cdecl CAnimGraphGameSystem::UpdateAnimGraphAnimations(enum AnimationAdvanceType_t,class CUtlVectorFixedGrowable const &)'::`22':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6461048088, + "vtable_address": 6461048072, "methods": [ 6445976976, 6446173840 @@ -249883,7 +249885,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: void __cdecl CDirtySpatialPartitionEntityList::ParallelUpdateSurroundingBoundsForDirtyEntities(struct RnQueryAttr_t const *)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462488928, + "vtable_address": 6462488960, "methods": [ 6451977296, 6452083840 @@ -249915,10 +249917,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `private: void __cdecl CNavDynamicConnectionsManager::UpdateVolumes(void)'::`7':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6463104184, + "vtable_address": 6463104216, "methods": [ - 6454359696, - 6454482032 + 6454359712, + 6454482048 ], "bases": [ { @@ -249947,10 +249949,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `protected: void __cdecl CNavObstacleAvoidMgr::UpdateAvoidanceObstacleAreas(void)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6463118072, + "vtable_address": 6463118104, "methods": [ - 6454612288, - 6454841264 + 6454612304, + 6454841280 ], "bases": [ { @@ -249981,8 +249983,8 @@ "type_name": "CParallelProcessLauncher::CParallelLambdaJob > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2'::::operator()(int) const'::`2':: >(int,int,char const *,class `public: __cdecl `public: void __cdecl CNavMovableMeshesManager::UpdateMovableMeshTransforms(class CUtlVector > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2'::::operator()(int) const'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", "vtable_address": 6463613896, "methods": [ - 6458212784, - 6458225184 + 6458212800, + 6458225200 ], "bases": [ { @@ -250013,8 +250015,8 @@ "type_name": "CParallelProcessLauncher::CParallelLambdaJob > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2'::::operator()(int) const'::`2':: >(int,int,char const *,class `public: __cdecl `public: void __cdecl CNavMovableMeshesManager::UpdateMovableMeshTransforms(class CUtlVector > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2'::::operator()(int) const'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", "vtable_address": 6463613944, "methods": [ - 6458212640, - 6458224848 + 6458212656, + 6458224864 ], "bases": [ { @@ -250043,7 +250045,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: static void __cdecl CGameSceneNode::BatchCallsToInvalidatePhysicsRecursive(bool)'::`23':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462296912, + "vtable_address": 6462296944, "methods": [ 6450981312, 6451198448 @@ -250075,7 +250077,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: virtual void __cdecl CEntitySaveRestoreBlockHandler::Save(class ISave *)'::`5':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260712, + "vtable_address": 6462260744, "methods": [ 6450639424, 6450836752 @@ -250107,7 +250109,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: virtual void __cdecl CEntitySaveRestoreBlockHandler::WriteSaveHeaders(class ISave *)'::`5':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462260736, + "vtable_address": 6462260768, "methods": [ 6450639472, 6450837104 @@ -250139,10 +250141,10 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob > const &)'::`2':: >(int,int,char const *,class `public: virtual void __cdecl CNavObstacleSplitMgr::AddOverlaps(class CUtlVector > const &)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6463117656, + "vtable_address": 6463117688, "methods": [ - 6454612240, - 6454841152 + 6454612256, + 6454841168 ], "bases": [ { @@ -250171,7 +250173,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: virtual void __cdecl CPhysSaveRestoreBlockHandler::Save(class ISave *)'::`7':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462687576, + "vtable_address": 6462687608, "methods": [ 6452689120, 6452689104 @@ -250203,7 +250205,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: void __cdecl CGamePhysicsQueryInterface::TraceRotatedBody(class IPhysicsBody const *,class Quaternion const &,class VectorWS const &,class VectorWS const &,class CTraceFilter &,class CGameTrace *,bool,int *) const'::`11':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462296888, + "vtable_address": 6462296920, "methods": [ 6450981360, 6451198624 @@ -250237,8 +250239,8 @@ "type_name": "CParallelProcessLauncher::CParallelLambdaJob > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2':: >(int,int,char const *,class `public: void __cdecl CNavMovableMeshesManager::UpdateMovableMeshTransforms(class CUtlVector > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", "vtable_address": 6463613920, "methods": [ - 6458212688, - 6458225152 + 6458212704, + 6458225168 ], "bases": [ { @@ -250269,8 +250271,8 @@ "type_name": "CParallelProcessLauncher::CParallelLambdaJob > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2':: >(int,int,char const *,class `public: void __cdecl CNavMovableMeshesManager::UpdateMovableMeshTransforms(class CUtlVector > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2':: &&,int,int,enum JobPriority_t)'::`12':: >", "vtable_address": 6463613968, "methods": [ - 6458212736, - 6458225168 + 6458212752, + 6458225184 ], "bases": [ { @@ -250299,7 +250301,7 @@ }, { "type_name": "CParallelProcessLauncher::CParallelLambdaJob >(int,int,char const *,class `public: void __cdecl CRagdollPoseControlSystem::OnPreSolve(float)'::`11':: &&,int,int,enum JobPriority_t)'::`12':: >", - "vtable_address": 6462194056, + "vtable_address": 6462194088, "methods": [ 6450309296, 6450489168 @@ -250331,7 +250333,7 @@ }, { "type_name": "CParallelProcessorAbstract,1> >", - "vtable_address": 6462863200, + "vtable_address": 6462863216, "methods": [ 6453196000, 6453312624 @@ -250377,18 +250379,18 @@ }, { "type_name": "CParticleSystem", - "vtable_address": 6462304784, + "vtable_address": 6462304816, "methods": [ 6451327168, 6451285040, 6450347280, - 6456889008, + 6456889024, 6451359616, 6450317376, 6451379904, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451286432, 6451386832, 6450455600, @@ -250418,7 +250420,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451321008, 6451362640, 6451371344, @@ -250706,7 +250708,7 @@ }, { "type_name": "CParticleSystemQuery", - "vtable_address": 6462310040, + "vtable_address": 6462310072, "methods": [ 6451363696, 6451296864, @@ -250842,7 +250844,7 @@ }, { "type_name": "CParticleSystemQueryGameSystem", - "vtable_address": 6462302520, + "vtable_address": 6462302552, "methods": [ 6443752688, 6443767152, @@ -250950,10 +250952,10 @@ "vtable_address": 6460699600, "methods": [ 6444614320, - 6454749904, + 6454749920, 6444753120, - 6454704304, - 6454729376 + 6454704320, + 6454729392 ], "bases": [ { @@ -250982,18 +250984,18 @@ }, { "type_name": "CPathCorner", - "vtable_address": 6462707176, + "vtable_address": 6462707208, "methods": [ 6445499872, 6452730656, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452867968, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -251023,7 +251025,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789152, 6452842672, 6452856544, @@ -251283,18 +251285,18 @@ }, { "type_name": "CPathCornerCrash", - "vtable_address": 6462709128, + "vtable_address": 6462709160, "methods": [ 6445499872, 6452730800, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452867968, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -251324,7 +251326,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789168, 6452842688, 6452856592, @@ -251598,18 +251600,18 @@ }, { "type_name": "CPathKeyFrame", - "vtable_address": 6462702840, + "vtable_address": 6462702872, "methods": [ 6446805888, 6452730944, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452867984, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735152, 6451932368, 6451865168, @@ -251639,7 +251641,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789184, 6452842704, 6452856640, @@ -251913,18 +251915,18 @@ }, { "type_name": "CPathMover", - "vtable_address": 6461214592, + "vtable_address": 6461214560, "methods": [ 6446805888, 6446876224, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452295712, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451287120, 6451932368, 6451865168, @@ -251954,7 +251956,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208208, 6446896640, 6446898336, @@ -252230,7 +252232,7 @@ }, { "type_name": "CPathMover", - "vtable_address": 6461216560, + "vtable_address": 6461216528, "methods": [ 6446874580, 6451304960, @@ -252327,9 +252329,9 @@ "type_name": "CPathOptimizerNavmesh", "vtable_address": 6460699672, "methods": [ - 6454785520, + 6454785536, 6444614544, - 6454722480 + 6454722496 ], "bases": [ { @@ -252372,18 +252374,18 @@ }, { "type_name": "CPathParticleRope", - "vtable_address": 6462310784, + "vtable_address": 6462310816, "methods": [ 6446805888, 6451285184, 6445463120, - 6456889008, + 6456889024, 6451359968, 6451753984, 6451380656, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451286720, 6451932368, 6451865168, @@ -252413,7 +252415,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451321024, 6447001504, 6451371392, @@ -252673,7 +252675,7 @@ }, { "type_name": "CPathParticleRope", - "vtable_address": 6462312736, + "vtable_address": 6462312768, "methods": [ 6451284620, 6451304944, @@ -252737,18 +252739,18 @@ }, { "type_name": "CPathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 6461267736, + "vtable_address": 6461267704, "methods": [ 6446805888, 6446986256, 6445463120, - 6456889008, + 6456889024, 6451359968, 6451753984, 6451380656, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451286720, 6451932368, 6451865168, @@ -252778,7 +252780,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446993248, 6447001520, 6447005888, @@ -253052,7 +253054,7 @@ }, { "type_name": "CPathParticleRopeAlias_path_particle_rope_clientside", - "vtable_address": 6461269688, + "vtable_address": 6461269656, "methods": [ 6446985516, 6451304944, @@ -253130,7 +253132,7 @@ }, { "type_name": "CPathQueryComponent", - "vtable_address": 6462313072, + "vtable_address": 6462313104, "methods": [ 6451371440, 6451321040, @@ -253177,18 +253179,18 @@ }, { "type_name": "CPathSimple", - "vtable_address": 6462313232, + "vtable_address": 6462313264, "methods": [ 6446805888, 6451285248, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451382160, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451287120, 6451932368, 6451865168, @@ -253218,7 +253220,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451321056, 6447001536, 6451371488, @@ -253480,7 +253482,7 @@ }, { "type_name": "CPathSimple", - "vtable_address": 6462315200, + "vtable_address": 6462315232, "methods": [ 6451284632, 6451304960, @@ -253544,18 +253546,18 @@ }, { "type_name": "CPathTrack", - "vtable_address": 6462711176, + "vtable_address": 6462711208, "methods": [ 6445499872, 6452731008, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452868096, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735296, 6451932368, 6451865168, @@ -253585,7 +253587,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789200, 6447001552, 6452856688, @@ -253845,14 +253847,14 @@ }, { "type_name": "CPathfindGenericTest", - "vtable_address": 6463122448, + "vtable_address": 6463122480, "methods": [ - 6454973168, - 6455009920, - 6455009840, - 6455009872, - 6454973296, - 6455006368 + 6454973184, + 6455009936, + 6455009856, + 6455009888, + 6454973312, + 6455006384 ], "bases": [ { @@ -253881,7 +253883,7 @@ }, { "type_name": "CPauseMatchIssue", - "vtable_address": 6461739376, + "vtable_address": 6461739392, "methods": [ 6444557600, 6448896032, @@ -253958,7 +253960,7 @@ }, { "type_name": "CPawnListGameSystem", - "vtable_address": 6462317840, + "vtable_address": 6462317872, "methods": [ 6443752688, 6443767152, @@ -254063,7 +254065,7 @@ }, { "type_name": "CPerFrameConCommandSystem", - "vtable_address": 6462315272, + "vtable_address": 6462315304, "methods": [ 6449302512, 6449303248, @@ -254228,18 +254230,18 @@ }, { "type_name": "CPhysBallSocket", - "vtable_address": 6462732408, + "vtable_address": 6462732440, "methods": [ 6446805888, 6452731152, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735344, 6452885488, 6451865168, @@ -254269,7 +254271,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789216, 6452842720, 6452856736, @@ -254560,18 +254562,18 @@ }, { "type_name": "CPhysBox", - "vtable_address": 6461274704, + "vtable_address": 6461274672, "methods": [ 6446805920, 6446986320, 6450347280, - 6456889008, + 6456889024, 6452260336, 6450317376, 6453039200, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -254601,7 +254603,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975504, 6447001568, 6447005936, @@ -254932,7 +254934,7 @@ }, { "type_name": "CPhysBox", - "vtable_address": 6461276888, + "vtable_address": 6461276856, "methods": [ 6443908752, 6443918000 @@ -255034,18 +255036,18 @@ }, { "type_name": "CPhysConstraint", - "vtable_address": 6462724776, + "vtable_address": 6462724808, "methods": [ 6446805888, 6452731312, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735344, 6452885488, 6451865168, @@ -255075,7 +255077,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789232, 6452842736, 6452856784, @@ -255281,7 +255283,7 @@ 6451826192, 6452772496, 6452820928, - 6459886716 + 6459886732 ], "bases": [ { @@ -255352,18 +255354,18 @@ }, { "type_name": "CPhysExplosion", - "vtable_address": 6461276912, + "vtable_address": 6461276880, "methods": [ 6445499872, 6446986384, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453039728, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452932832, 6451932368, 6451865168, @@ -255393,7 +255395,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975520, 6447001584, 6447005984, @@ -255653,18 +255655,18 @@ }, { "type_name": "CPhysFixed", - "vtable_address": 6462736656, + "vtable_address": 6462736688, "methods": [ 6446805888, 6452731472, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735344, 6452885488, 6451865168, @@ -255694,7 +255696,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789248, 6452842752, 6452856832, @@ -255985,18 +255987,18 @@ }, { "type_name": "CPhysForce", - "vtable_address": 6462713624, + "vtable_address": 6462713656, "methods": [ 6445499872, 6452731632, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452868144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735408, 6452885568, 6451865168, @@ -256026,7 +256028,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789264, 6452842768, 6452856880, @@ -256230,7 +256232,7 @@ 6443756992, 6443778016, 6451826192, - 6459886716, + 6459886732, 6452822224 ], "bases": [ @@ -256288,18 +256290,18 @@ }, { "type_name": "CPhysHinge", - "vtable_address": 6462727744, + "vtable_address": 6462727776, "methods": [ 6446805888, 6452731696, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452868192, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735760, 6452885488, 6451865168, @@ -256329,7 +256331,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789280, 6452842784, 6452856928, @@ -256648,7 +256650,7 @@ }, { "type_name": "CPhysHinge", - "vtable_address": 6462729720, + "vtable_address": 6462729752, "methods": [ 6452729612, 6452817584, @@ -256765,18 +256767,18 @@ }, { "type_name": "CPhysHingeAlias_phys_hinge_local", - "vtable_address": 6462730272, + "vtable_address": 6462730304, "methods": [ 6446805888, 6452731760, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452868192, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735760, 6452885488, 6451865168, @@ -256806,7 +256808,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789296, 6452842800, 6452856976, @@ -257139,7 +257141,7 @@ }, { "type_name": "CPhysHingeAlias_phys_hinge_local", - "vtable_address": 6462732248, + "vtable_address": 6462732280, "methods": [ 6452729624, 6452817584, @@ -257270,18 +257272,18 @@ }, { "type_name": "CPhysImpact", - "vtable_address": 6461278864, + "vtable_address": 6461278832, "methods": [ 6445499872, 6446986528, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453039824, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452932896, 6451932368, 6451865168, @@ -257311,7 +257313,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975536, 6447001600, 6447006032, @@ -257571,18 +257573,18 @@ }, { "type_name": "CPhysLength", - "vtable_address": 6462741008, + "vtable_address": 6462741040, "methods": [ 6446805888, 6452731824, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735344, 6452885488, 6451865168, @@ -257612,7 +257614,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789312, 6452842816, 6452857024, @@ -257903,7 +257905,7 @@ }, { "type_name": "CPhysMagnet", - "vtable_address": 6462786400, + "vtable_address": 6462786432, "methods": [ 6446805696, 6452929744, @@ -257912,9 +257914,9 @@ 6453015856, 6450317360, 6453039888, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6453059776, 6450455584, @@ -257944,7 +257946,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975552, 6447001616, 6453036784, @@ -258283,18 +258285,18 @@ }, { "type_name": "CPhysMotor", - "vtable_address": 6461269808, + "vtable_address": 6461269776, "methods": [ 6446805888, 6446986592, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452869520, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452737072, 6452885648, 6451865168, @@ -258324,7 +258326,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789328, 6447001632, 6447006080, @@ -258598,7 +258600,7 @@ }, { "type_name": "CPhysObjSaveRestoreOps", - "vtable_address": 6462683944, + "vtable_address": 6462683976, "methods": [ 6452684992, 6452685072, @@ -258648,18 +258650,18 @@ }, { "type_name": "CPhysPulley", - "vtable_address": 6462738984, + "vtable_address": 6462739016, "methods": [ 6446805888, 6452731984, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735344, 6452885488, 6451865168, @@ -258689,7 +258691,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789344, 6452842832, 6452857072, @@ -258980,7 +258982,7 @@ }, { "type_name": "CPhysSaveRestoreBlockHandler", - "vtable_address": 6462683432, + "vtable_address": 6462683464, "methods": [ 6452680000, 6452680016, @@ -259047,7 +259049,7 @@ }, { "type_name": "CPhysSaveRestoreBlockHandler", - "vtable_address": 6462683512, + "vtable_address": 6462683544, "methods": [ 6452682336, 6444023696, @@ -259109,18 +259111,18 @@ }, { "type_name": "CPhysSlideConstraint", - "vtable_address": 6462734512, + "vtable_address": 6462734544, "methods": [ 6446805888, 6452732144, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452737232, 6452885488, 6451865168, @@ -259150,7 +259152,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789360, 6452842848, 6452857120, @@ -259469,7 +259471,7 @@ }, { "type_name": "CPhysSlideConstraint", - "vtable_address": 6462736488, + "vtable_address": 6462736520, "methods": [ 6452729636, 6452818576, @@ -259586,18 +259588,18 @@ }, { "type_name": "CPhysThruster", - "vtable_address": 6462715672, + "vtable_address": 6462715704, "methods": [ 6445499872, 6452732352, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452868144, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735408, 6452885568, 6451865168, @@ -259627,7 +259629,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789376, 6452842864, 6452857168, @@ -259903,18 +259905,18 @@ }, { "type_name": "CPhysTorque", - "vtable_address": 6462717640, + "vtable_address": 6462717672, "methods": [ 6445499872, 6452732416, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452869744, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735408, 6452885568, 6451865168, @@ -259944,7 +259946,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789392, 6452842880, 6452857216, @@ -260220,18 +260222,18 @@ }, { "type_name": "CPhysWheelConstraint", - "vtable_address": 6462751328, + "vtable_address": 6462751360, "methods": [ 6446805888, 6452732480, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735344, 6452885488, 6451865168, @@ -260261,7 +260263,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789408, 6452842896, 6452857264, @@ -260552,18 +260554,18 @@ }, { "type_name": "CPhysicalButton", - "vtable_address": 6461162584, + "vtable_address": 6461162552, "methods": [ 6446805920, 6446776704, 6450347280, - 6456889008, + 6456889024, 6451873232, 6450317376, 6451917552, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -260593,7 +260595,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818256, 6446826848, 6446838960, @@ -260919,18 +260921,18 @@ }, { "type_name": "CPhysicsEntitySolver", - "vtable_address": 6462758296, + "vtable_address": 6462758328, "methods": [ 6446805888, 6452732640, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452869920, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6452885856, 6451865168, @@ -260960,7 +260962,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789424, 6452842912, 6452857312, @@ -261248,7 +261250,7 @@ }, { "type_name": "CPhysicsEntitySolver", - "vtable_address": 6462760248, + "vtable_address": 6462760280, "methods": [ 6452729648 ], @@ -261335,7 +261337,7 @@ }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 6461067272, + "vtable_address": 6461067256, "methods": [ 6443752688, 6443767152, @@ -261440,7 +261442,7 @@ }, { "type_name": "CPhysicsGameSystem", - "vtable_address": 6461067768, + "vtable_address": 6461067752, "methods": [ 6446531664 ], @@ -261485,7 +261487,7 @@ }, { "type_name": "CPhysicsGameSystem::PhysicsWorld_t", - "vtable_address": 6461067256, + "vtable_address": 6461067240, "methods": [ 6446327520 ], @@ -261501,7 +261503,7 @@ }, { "type_name": "CPhysicsGrab", - "vtable_address": 6462954440, + "vtable_address": 6462954456, "methods": [ 6453867168, 6453748048 @@ -261533,7 +261535,7 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 6462779544, + "vtable_address": 6462779576, "methods": [ 6446995328, 6452930096, @@ -261542,9 +261544,9 @@ 6453015904, 6450317360, 6453040160, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452932912, 6453059968, 6450455584, @@ -261574,7 +261576,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975568, 6447001648, 6453036832, @@ -261992,7 +261994,7 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 6462782088, + "vtable_address": 6462782120, "methods": [ 6445170480, 6445186928 @@ -262136,7 +262138,7 @@ }, { "type_name": "CPhysicsProp", - "vtable_address": 6462782112, + "vtable_address": 6462782144, "methods": [ 6452929304, 6446995248, @@ -262292,7 +262294,7 @@ }, { "type_name": "CPhysicsPropMultiplayer", - "vtable_address": 6461846968, + "vtable_address": 6461846984, "methods": [ 6446995328, 6449325920, @@ -262301,9 +262303,9 @@ 6453015904, 6450317360, 6453040160, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449326240, 6453059968, 6450455584, @@ -262333,7 +262335,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331616, 6449342656, 6449344000, @@ -262765,7 +262767,7 @@ }, { "type_name": "CPhysicsPropMultiplayer", - "vtable_address": 6461849512, + "vtable_address": 6461849528, "methods": [ 6445170480, 6445186928 @@ -262923,7 +262925,7 @@ }, { "type_name": "CPhysicsPropMultiplayer", - "vtable_address": 6461849536, + "vtable_address": 6461849552, "methods": [ 6449324628, 6446995248, @@ -263093,7 +263095,7 @@ }, { "type_name": "CPhysicsPropOverride", - "vtable_address": 6461271880, + "vtable_address": 6461271848, "methods": [ 6446995328, 6446986656, @@ -263102,9 +263104,9 @@ 6453015904, 6450317360, 6453040160, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452932912, 6453059968, 6450455584, @@ -263134,7 +263136,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446993264, 6447001664, 6447006128, @@ -263566,7 +263568,7 @@ }, { "type_name": "CPhysicsPropOverride", - "vtable_address": 6461274424, + "vtable_address": 6461274392, "methods": [ 6445170480, 6445186928 @@ -263724,7 +263726,7 @@ }, { "type_name": "CPhysicsPropOverride", - "vtable_address": 6461274448, + "vtable_address": 6461274416, "methods": [ 6446985528, 6446995248, @@ -263894,7 +263896,7 @@ }, { "type_name": "CPhysicsPropRespawnable", - "vtable_address": 6462782232, + "vtable_address": 6462782264, "methods": [ 6446995328, 6452930160, @@ -263903,9 +263905,9 @@ 6453015904, 6450317360, 6453041072, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452932912, 6453059968, 6450455584, @@ -263935,7 +263937,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975584, 6447001680, 6453036880, @@ -264367,7 +264369,7 @@ }, { "type_name": "CPhysicsPropRespawnable", - "vtable_address": 6462784776, + "vtable_address": 6462784808, "methods": [ 6445170480, 6445186928 @@ -264525,7 +264527,7 @@ }, { "type_name": "CPhysicsPropRespawnable", - "vtable_address": 6462784800, + "vtable_address": 6462784832, "methods": [ 6452929316, 6446995248, @@ -264695,7 +264697,7 @@ }, { "type_name": "CPhysicsPushedEntities", - "vtable_address": 6462757928, + "vtable_address": 6462757960, "methods": [ 6452874496, 6452872512, @@ -264713,7 +264715,7 @@ }, { "type_name": "CPhysicsShake", - "vtable_address": 6462510712, + "vtable_address": 6462510744, "methods": [ 6449326432, 6452282432, @@ -264748,18 +264750,18 @@ }, { "type_name": "CPhysicsSpring", - "vtable_address": 6462788872, + "vtable_address": 6462788904, "methods": [ 6446805888, 6452930224, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453041280, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452933008, 6453060096, 6451865168, @@ -264789,7 +264791,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975600, 6453026416, 6453036928, @@ -265035,18 +265037,18 @@ }, { "type_name": "CPhysicsWire", - "vtable_address": 6462466456, + "vtable_address": 6462466488, "methods": [ 6446805888, 6451979328, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -265076,7 +265078,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035616, 6452082176, 6452085824, @@ -265322,7 +265324,7 @@ }, { "type_name": "CPlantedC4", - "vtable_address": 6461904168, + "vtable_address": 6461904184, "methods": [ 6446805696, 6449543376, @@ -265331,9 +265333,9 @@ 6449635648, 6450317360, 6449657712, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -265363,7 +265365,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570656, 6449644416, 6449650944, @@ -265720,7 +265722,7 @@ }, { "type_name": "CPlantedC4", - "vtable_address": 6461906672, + "vtable_address": 6461906688, "methods": [ 6449650980, 6449570496, @@ -265812,15 +265814,15 @@ }, { "type_name": "CPlantedC4::NetworkVar_m_AttributeManager", - "vtable_address": 6461904048, + "vtable_address": 6461904064, "methods": [ 6445191936, - 6454110304, + 6454110320, 6449606656, 6445184928, 6449624816, 6449545488, - 6454143680, + 6454143696, 6453963104, 6453964368 ], @@ -265865,7 +265867,7 @@ }, { "type_name": "CPlantedC4::NetworkVar_m_entitySpottedState", - "vtable_address": 6461904128, + "vtable_address": 6461904144, "methods": [ 6443919568, 6449613856, @@ -265899,18 +265901,18 @@ }, { "type_name": "CPlatTrigger", - "vtable_address": 6462959136, + "vtable_address": 6462959152, "methods": [ 6446805920, 6453711792, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6453822112, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -265940,7 +265942,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758448, 6453807456, 6453810192, @@ -266228,7 +266230,7 @@ }, { "type_name": "CPlayerCommandQueue", - "vtable_address": 6462797304, + "vtable_address": 6462797336, "methods": [ 6453027600, 6453018784, @@ -266266,7 +266268,7 @@ }, { "type_name": "CPlayerControllerComponent", - "vtable_address": 6462144960, + "vtable_address": 6462144976, "methods": [ 6450207760, 6451408656, @@ -266291,32 +266293,32 @@ }, { "type_name": "CPlayerInventory", - "vtable_address": 6463037464, + "vtable_address": 6463037480, "methods": [ - 6454276592, - 6454277008, - 6454276784, - 6454275888, - 6454276320, + 6454276608, + 6454277024, + 6454276800, + 6454275904, + 6454276336, 6453955488, 6449706912, - 6454120160, - 6454113920, + 6454120176, + 6454113936, 6449713936, - 6454081312, - 6454096944, - 6454120960, - 6454276352, - 6454213200, - 6454230432, - 6459886716, - 6454277440, + 6454081328, + 6454096960, + 6454120976, + 6454276368, + 6454213216, + 6454230448, + 6459886732, + 6454277456, 6449714720, 6449714736, - 6454284496, - 6454188224, + 6454284512, + 6454188240, 6449713920, - 6454202288 + 6454202304 ], "bases": [ { @@ -266378,18 +266380,18 @@ }, { "type_name": "CPlayerPing", - "vtable_address": 6462130240, + "vtable_address": 6462130256, "methods": [ 6446805888, 6449950144, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6450073664, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -266419,7 +266421,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450002096, 6450060752, 6450064800, @@ -266670,13 +266672,13 @@ 6446805920, 6444438192, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -266706,7 +266708,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444485056, 6444544688, 6444558080, @@ -267013,13 +267015,13 @@ 6446805888, 6445618304, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445654080, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619696, 6451932368, 6451865168, @@ -267049,7 +267051,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623360, 6445647712, 6445652464, @@ -267295,7 +267297,7 @@ }, { "type_name": "CPlayerVoiceListener", - "vtable_address": 6462796680, + "vtable_address": 6462796712, "methods": [ 6443752688, 6443767152, @@ -267400,7 +267402,7 @@ }, { "type_name": "CPlayer_CameraServices", - "vtable_address": 6462315576, + "vtable_address": 6462315608, "methods": [ 6451371536, 6451321072, @@ -267458,7 +267460,7 @@ }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_PlayerFog", - "vtable_address": 6462315496, + "vtable_address": 6462315528, "methods": [ 6451371776, 6451342976, @@ -267492,7 +267494,7 @@ }, { "type_name": "CPlayer_CameraServices::NetworkVar_m_audio", - "vtable_address": 6462315536, + "vtable_address": 6462315568, "methods": [ 6451371728, 6451343680, @@ -267526,7 +267528,7 @@ }, { "type_name": "CPlayer_ItemServices", - "vtable_address": 6462316344, + "vtable_address": 6462316376, "methods": [ 6451371584, 6451321088, @@ -267579,7 +267581,7 @@ }, { "type_name": "CPlayer_MovementServices", - "vtable_address": 6462303784, + "vtable_address": 6462303816, "methods": [ 6451371632, 6451321104, @@ -267652,7 +267654,7 @@ }, { "type_name": "CPlayer_MovementServices_Humanoid", - "vtable_address": 6462304136, + "vtable_address": 6462304168, "methods": [ 6451371680, 6451321120, @@ -267749,7 +267751,7 @@ }, { "type_name": "CPlayer_ObserverServices", - "vtable_address": 6462320808, + "vtable_address": 6462320840, "methods": [ 6451421520, 6451408688, @@ -267812,7 +267814,7 @@ }, { "type_name": "CPlayer_UseServices", - "vtable_address": 6462321448, + "vtable_address": 6462321480, "methods": [ 6451421568, 6451408704, @@ -267864,7 +267866,7 @@ }, { "type_name": "CPlayer_WaterServices", - "vtable_address": 6462321632, + "vtable_address": 6462321664, "methods": [ 6451421616, 6451408720, @@ -267915,7 +267917,7 @@ }, { "type_name": "CPlayer_WeaponServices", - "vtable_address": 6462321080, + "vtable_address": 6462321112, "methods": [ 6451421664, 6451408736, @@ -267981,18 +267983,18 @@ }, { "type_name": "CPointAngleSensor", - "vtable_address": 6462809712, + "vtable_address": 6462809744, "methods": [ 6445499872, 6452930352, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453041536, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452933744, 6451932368, 6451865168, @@ -268022,7 +268024,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975616, 6453026432, 6453036976, @@ -268282,18 +268284,18 @@ }, { "type_name": "CPointAngularVelocitySensor", - "vtable_address": 6462813920, + "vtable_address": 6462813952, "methods": [ 6445499872, 6452930688, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453041696, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452934432, 6451932368, 6451865168, @@ -268323,7 +268325,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975632, 6453026448, 6453037024, @@ -268583,18 +268585,18 @@ }, { "type_name": "CPointBroadcastClientCommand", - "vtable_address": 6462426520, + "vtable_address": 6462426552, "methods": [ 6445499872, 6451979392, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -268624,7 +268626,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035632, 6452082192, 6452085872, @@ -268889,13 +268891,13 @@ 6446805888, 6445685744, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445741888, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6445744144, 6451865168, @@ -268925,7 +268927,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700816, 6445732128, 6445737760, @@ -269176,13 +269178,13 @@ 6446805888, 6445685808, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445742032, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6445744144, 6451865168, @@ -269212,7 +269214,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700832, 6445732144, 6445737808, @@ -269477,13 +269479,13 @@ 6445499872, 6445685872, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6445744256, 6451865168, @@ -269513,7 +269515,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700848, 6445732160, 6445737856, @@ -269773,18 +269775,18 @@ }, { "type_name": "CPointClientCommand", - "vtable_address": 6462422592, + "vtable_address": 6462422624, "methods": [ 6445499872, 6451979456, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -269814,7 +269816,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035648, 6452082208, 6452085920, @@ -270079,13 +270081,13 @@ 6446805920, 6443736080, 6450347280, - 6456889008, + 6456889024, 6443767376, 6450317376, 6443774960, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -270115,7 +270117,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443746992, 6443768160, 6443774032, @@ -270425,13 +270427,13 @@ 6443750832, 6443736144, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6443775152, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6443777776, 6450455600, @@ -270461,7 +270463,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443747008, 6443768176, 6443774080, @@ -270772,13 +270774,13 @@ 6443750832, 6443736336, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6443775152, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6443777776, 6450455600, @@ -270808,7 +270810,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6443747024, 6443768192, 6443774128, @@ -271128,7 +271130,7 @@ }, { "type_name": "CPointCommentaryNode", - "vtable_address": 6462434040, + "vtable_address": 6462434072, "methods": [ 6446805696, 6451979520, @@ -271137,9 +271139,9 @@ 6452081584, 6450317360, 6452102560, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451981632, 6450537728, 6450455584, @@ -271169,7 +271171,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035664, 6452082224, 6452085968, @@ -271513,13 +271515,13 @@ 6445499872, 6443736528, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -271549,7 +271551,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445495168, 6445552416, 6443774176, @@ -271795,18 +271797,18 @@ }, { "type_name": "CPointEntityFinder", - "vtable_address": 6462798336, + "vtable_address": 6462798368, "methods": [ 6446805888, 6452930752, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452934704, 6451932368, 6451865168, @@ -271836,7 +271838,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975648, 6453026464, 6453037072, @@ -272082,18 +272084,18 @@ }, { "type_name": "CPointGamestatsCounter", - "vtable_address": 6462286872, + "vtable_address": 6462286904, "methods": [ 6445499872, 6450982576, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -272123,7 +272125,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451064416, 6451170464, 6451200000, @@ -272383,18 +272385,18 @@ }, { "type_name": "CPointGiveAmmo", - "vtable_address": 6461747072, + "vtable_address": 6461747088, "methods": [ 6445499872, 6448896096, 6445463120, - 6456889008, + 6456889024, 6449125984, 6451753984, 6449180448, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -272424,7 +272426,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448991536, 6449135424, 6449169312, @@ -272684,18 +272686,18 @@ }, { "type_name": "CPointHurt", - "vtable_address": 6462818016, + "vtable_address": 6462818048, "methods": [ 6445499872, 6452930896, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453041792, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -272725,7 +272727,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975664, 6453026480, 6453037120, @@ -272990,13 +272992,13 @@ 6446805888, 6445685936, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445688304, 6451932368, 6451865168, @@ -273026,7 +273028,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700864, 6445732176, 6445737904, @@ -273272,18 +273274,18 @@ }, { "type_name": "CPointPrefab", - "vtable_address": 6462800384, + "vtable_address": 6462800416, "methods": [ 6446805888, 6452930960, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453042016, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -273313,7 +273315,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975680, 6447001696, 6453037168, @@ -273587,7 +273589,7 @@ }, { "type_name": "CPointPrefabDynamicIOSignature", - "vtable_address": 6462802384, + "vtable_address": 6462802416, "methods": [ 6452931088 ], @@ -273618,18 +273620,18 @@ }, { "type_name": "CPointProximitySensor", - "vtable_address": 6462811952, + "vtable_address": 6462811984, "methods": [ 6445499872, 6452931152, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452934912, 6451932368, 6451865168, @@ -273659,7 +273661,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975696, 6453026496, 6453037216, @@ -273919,18 +273921,18 @@ }, { "type_name": "CPointPulse", - "vtable_address": 6462802496, + "vtable_address": 6462802528, "methods": [ 6446805888, 6452931296, 6445463120, - 6456889008, + 6456889024, 6453015920, 6451753984, 6453042560, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -273960,7 +273962,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975712, 6453026512, 6453037264, @@ -274206,18 +274208,18 @@ }, { "type_name": "CPointPush", - "vtable_address": 6462791688, + "vtable_address": 6462791720, "methods": [ 6445499872, 6452931360, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452935296, 6451932368, 6451865168, @@ -274247,7 +274249,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975728, 6453026528, 6453037312, @@ -274507,18 +274509,18 @@ }, { "type_name": "CPointServerCommand", - "vtable_address": 6462424568, + "vtable_address": 6462424600, "methods": [ 6445499872, 6451979744, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -274548,7 +274550,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035680, 6452082240, 6452086016, @@ -274808,18 +274810,18 @@ }, { "type_name": "CPointTeleport", - "vtable_address": 6462820056, + "vtable_address": 6462820088, "methods": [ 6446805888, 6452931424, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452935600, 6451932368, 6451865168, @@ -274849,7 +274851,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975744, 6453026544, 6453037360, @@ -275128,13 +275130,13 @@ 6445704176, 6445686000, 6445463120, - 6456889008, + 6456889024, 6445729936, 6451753984, 6445742240, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6445744576, 6451865168, @@ -275164,7 +275166,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445700880, 6445732192, 6445737952, @@ -275440,18 +275442,18 @@ }, { "type_name": "CPointValueRemapper", - "vtable_address": 6462804552, + "vtable_address": 6462804584, "methods": [ 6446805888, 6452931488, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453042944, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452936064, 6451932368, 6451865168, @@ -275481,7 +275483,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975760, 6453026560, 6453037408, @@ -275727,18 +275729,18 @@ }, { "type_name": "CPointVelocitySensor", - "vtable_address": 6462816032, + "vtable_address": 6462816064, "methods": [ 6445499872, 6452931552, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453043040, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452936896, 6451932368, 6451865168, @@ -275768,7 +275770,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975776, 6453026576, 6453037456, @@ -276028,18 +276030,18 @@ }, { "type_name": "CPointWorldText", - "vtable_address": 6462807192, + "vtable_address": 6462807224, "methods": [ 6452980336, 6452931696, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6453043232, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -276069,7 +276071,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452975792, 6453026592, 6453037504, @@ -276373,7 +276375,7 @@ "type_name": "CPostConnectCallback", "vtable_address": 6463707040, "methods": [ - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -276392,13 +276394,13 @@ 6445499856, 6445763264, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6445832320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766128, 6445840208, 6450455600, @@ -276428,7 +276430,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781360, 6445814608, 6445824784, @@ -276896,26 +276898,26 @@ }, { "type_name": "CPreMatchInfoData", - "vtable_address": 6461472752, + "vtable_address": 6461472736, "methods": [ 6447638080, - 6455181760, + 6455181776, 6447616560, 6447617008, 6447617248, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447617264, 6447619232, 6447617840, 6443766512, 6447618784, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447619264, 6447621488, 6447621008, - 6455179744, + 6455179760, 6447637040 ], "bases": [ @@ -276959,26 +276961,26 @@ }, { "type_name": "CPreMatchInfoData_TeamStats", - "vtable_address": 6461468728, + "vtable_address": 6461468712, "methods": [ 6447609120, - 6455181760, + 6455181776, 6447594928, 6447597200, 6447597568, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447597584, 6447599776, 6447598368, 6443766512, 6447599408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447600416, 6447600720, 6447600704, - 6455179744, + 6455179760, 6447608384 ], "bases": [ @@ -277022,7 +277024,7 @@ }, { "type_name": "CPrecacheRegister", - "vtable_address": 6462772584, + "vtable_address": 6462772616, "methods": [ 6443752688, 6443767152, @@ -277127,18 +277129,18 @@ }, { "type_name": "CPrecipitation", - "vtable_address": 6462460048, + "vtable_address": 6462460080, "methods": [ 6445499856, 6451979808, 6450347280, - 6456889008, + 6456889024, 6452081696, 6450317376, 6452102960, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -277168,7 +277170,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035696, 6452082256, 6452086064, @@ -277492,18 +277494,18 @@ }, { "type_name": "CPrecipitationBlocker", - "vtable_address": 6462462288, + "vtable_address": 6462462320, "methods": [ 6446805920, 6451979872, 6450347280, - 6456889008, + 6456889024, 6452081744, 6450317376, 6452103184, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -277533,7 +277535,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035712, 6452082272, 6452086112, @@ -277821,7 +277823,7 @@ }, { "type_name": "CPrecipitationVData", - "vtable_address": 6461001712, + "vtable_address": 6461001696, "methods": [ 6445875104, 6445891296, @@ -277871,27 +277873,27 @@ }, { "type_name": "CPredictionEvent_Diagnostic", - "vtable_address": 6461618784, + "vtable_address": 6461618768, "methods": [ 6448511456, - 6455181760, + 6455181776, 6448501552, 6448504400, 6448504464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448505168, 6448506656, 6448505360, 6443766512, 6448506128, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448506672, 6448506960, 6448506944, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -277934,26 +277936,26 @@ }, { "type_name": "CPredictionEvent_StringCommand", - "vtable_address": 6461617520, + "vtable_address": 6461617504, "methods": [ 6448499728, - 6455181760, + 6455181776, 6448497024, 6448497216, 6448497280, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448497296, 6448497840, 6448497360, 6443766512, 6448497728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448497856, 6448497904, 6448497872, - 6455179744, + 6455179760, 6448498720 ], "bases": [ @@ -277997,22 +277999,22 @@ }, { "type_name": "CPredictionEvent_StringCommand_t", - "vtable_address": 6462187360, + "vtable_address": 6462187392, "methods": [ 6450310080, - 6455181760, + 6455181776, 6448497024, 6448497216, 6448497280, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448497296, 6448497840, 6448497360, 6443766512, 6448497728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448497856, 6448497904, 6448497872 @@ -278086,26 +278088,26 @@ }, { "type_name": "CPredictionEvent_Teleport", - "vtable_address": 6461616704, + "vtable_address": 6461616688, "methods": [ 6448489728, - 6455181760, + 6455181776, 6448483840, 6448484400, 6448484560, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448484576, 6448486336, 6448485264, 6443766512, 6448485968, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448486368, 6448486672, 6448486480, - 6455179744, + 6455179760, 6448489920 ], "bases": [ @@ -278149,22 +278151,22 @@ }, { "type_name": "CPredictionEvent_Teleport_t", - "vtable_address": 6462422232, + "vtable_address": 6462422264, "methods": [ 6451979936, - 6455181760, + 6455181776, 6448483840, 6448484400, 6448484560, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448484576, 6448486336, 6448485264, 6443766512, 6448485968, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448486368, 6448486672, 6448486480 @@ -278238,7 +278240,7 @@ }, { "type_name": "CPredictionSuppressEffects", - "vtable_address": 6462318880, + "vtable_address": 6462318912, "methods": [ 6451392256, 6451392272, @@ -278274,7 +278276,7 @@ }, { "type_name": "CPreloaderGameSystem", - "vtable_address": 6462918880, + "vtable_address": 6462918896, "methods": [ 6443752688, 6443767152, @@ -278379,30 +278381,30 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request", - "vtable_address": 6461578088, + "vtable_address": 6461578072, "methods": [ 6448242704, - 6455181760, + 6455181776, 6448205840, 6448206064, 6448206208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448206224, 6448207440, 6448206464, 6443766512, 6448207088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448218608, 6448225504, 6448225488, - 6455179744, + 6455179760, 6448239568, - 6455179744, + 6455179760, 6448240832, - 6455179744, + 6455179760, 6448241776 ], "bases": [ @@ -278446,22 +278448,22 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_LanguageSection", - "vtable_address": 6461576024, + "vtable_address": 6461576008, "methods": [ 6448202688, - 6455181760, + 6455181776, 6448187136, 6448187536, 6448187792, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448187808, 6448188816, 6448188144, 6443766512, 6448188640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448188832, 6448189312, 6448188864 @@ -278507,27 +278509,27 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Request_Token", - "vtable_address": 6461562224, + "vtable_address": 6461562208, "methods": [ 6448179024, - 6455181760, + 6455181776, 6448176272, - 6448177072, + 6448177136, 6448177232, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448177248, 6448178080, 6448177376, 6443766512, 6448177920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448178176, 6448178208, 6448178192, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -278570,22 +278572,22 @@ }, { "type_name": "CProductInfo_SetRichPresenceLocalization_Response", - "vtable_address": 6461578904, + "vtable_address": 6461578888, "methods": [ 6448248096, - 6455181760, - 6448247712, + 6455181776, + 6448247728, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448247840, 6448247824 @@ -278825,7 +278827,7 @@ }, { "type_name": "CPropDataComponent", - "vtable_address": 6461194192, + "vtable_address": 6461194160, "methods": [ 6446898384, 6445781376, @@ -278858,7 +278860,7 @@ }, { "type_name": "CPropDoorRotating", - "vtable_address": 6462844840, + "vtable_address": 6462844856, "methods": [ 6446805696, 6453196240, @@ -278867,9 +278869,9 @@ 6451873376, 6450317360, 6453326128, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451746592, 6450870512, 6450455584, @@ -278899,7 +278901,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453235552, 6453303168, 6453322704, @@ -279391,7 +279393,7 @@ }, { "type_name": "CPropDoorRotating", - "vtable_address": 6462847640, + "vtable_address": 6462847656, "methods": [ 6445170480, 6445186928 @@ -279577,7 +279579,7 @@ }, { "type_name": "CPropDoorRotating", - "vtable_address": 6462847664, + "vtable_address": 6462847680, "methods": [ 6453195964, 6451814656 @@ -279763,7 +279765,7 @@ }, { "type_name": "CPropDoorRotatingBreakable", - "vtable_address": 6462847688, + "vtable_address": 6462847704, "methods": [ 6446805696, 6453196448, @@ -279772,9 +279774,9 @@ 6453293296, 6450317360, 6453326432, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6451746592, 6450870512, 6450455584, @@ -279804,7 +279806,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453235568, 6453303184, 6453322752, @@ -280310,7 +280312,7 @@ }, { "type_name": "CPropDoorRotatingBreakable", - "vtable_address": 6462850488, + "vtable_address": 6462850504, "methods": [ 6445170480, 6445186928 @@ -280510,7 +280512,7 @@ }, { "type_name": "CPropDoorRotatingBreakable", - "vtable_address": 6462850512, + "vtable_address": 6462850528, "methods": [ 6453195976, 6451814656 @@ -280745,12 +280747,12 @@ "vtable_address": 6460915752, "methods": [ 6445738000, - 6458915600, - 6458906944, + 6458915616, + 6458906960, 6445711760, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -280772,12 +280774,12 @@ "vtable_address": 6460915872, "methods": [ 6445738048, - 6458915616, - 6458906960, + 6458915632, + 6458906976, 6445711776, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -280814,20 +280816,20 @@ "vtable_address": 6460916032, "methods": [ 6445738096, - 6458915632, - 6458907088, + 6458915648, + 6458907104, 6445711792, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459010672, + 6459010688, 6445729216, - 6459009872, + 6459009888, 6445729200, 6445729168, 6445688672, @@ -280836,7 +280838,7 @@ 6445714720, 6445729184, 6445745184, - 6459886716, + 6459886732, 6445714688 ], "bases": [ @@ -280896,21 +280898,21 @@ "type_name": "CPulseCell_BaseRequirement", "vtable_address": 6463647024, "methods": [ - 6458947264, - 6458915712, - 6458907296, - 6458915296, - 6459006192, - 6459012896, - 6459005200, + 6458947280, + 6458915728, + 6458907312, + 6458915312, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6458905456, - 6458906576, - 6458905920 + 6458905472, + 6458906592, + 6458905936 ], "bases": [ { @@ -280941,13 +280943,13 @@ "type_name": "CPulseCell_BaseValue", "vtable_address": 6463647776, "methods": [ - 6458947312, - 6458915728, - 6458907424, - 6458915312, - 6459006192, - 6459012896, - 6459005200, + 6458947328, + 6458915744, + 6458907440, + 6458915328, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -280983,27 +280985,27 @@ "type_name": "CPulseCell_BooleanSwitchState", "vtable_address": 6463680224, "methods": [ - 6459336048, - 6459329632, - 6459328048, - 6459329600, - 6459006192, - 6459012896, - 6459005200, - 6459327264, - 6459327232, + 6459336064, + 6459329648, + 6459328064, + 6459329616, + 6459006208, + 6459012912, + 6459005216, + 6459327280, 6459327248, - 6459333456, - 6459335648, - 6459374016, + 6459327264, + 6459333472, + 6459335664, + 6459374032, 6445729216, 6445728992, - 6459372880, + 6459372896, 6445729168, 6445688720, 6445694016, - 6459336016, - 6459333664, + 6459336032, + 6459333680, 6445729184 ], "bases": [ @@ -281077,30 +281079,30 @@ "type_name": "CPulseCell_CursorQueue", "vtable_address": 6463684896, "methods": [ - 6459357424, - 6459347952, - 6459346480, - 6459347904, - 6459006192, - 6459012896, - 6459005200, + 6459357440, + 6459347968, + 6459346496, + 6459347920, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459376240, - 6459376048, + 6459376256, + 6459376064, 6445728992, 6445729200, 6445729168, - 6459346352, - 6459346432, - 6459376304, - 6459375440, + 6459346368, + 6459346448, + 6459376320, + 6459375456, 6445729184, - 6459375264, - 6459376880 + 6459375280, + 6459376896 ], "bases": [ { @@ -281173,27 +281175,27 @@ "type_name": "CPulseCell_FireCursors", "vtable_address": 6463676120, "methods": [ - 6459300352, + 6459300368, + 6459299152, + 6459298368, 6459299136, - 6459298352, - 6459299120, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459367376, - 6459367344, + 6459367392, + 6459367360, 6445728992, 6445729200, 6445729168, 6445688720, 6445694016, + 6459300352, 6459300336, - 6459300320, 6445729184 ], "bases": [ @@ -281253,13 +281255,13 @@ "type_name": "CPulseCell_Inflow_BaseEntrypoint", "vtable_address": 6463647152, "methods": [ - 6458947360, - 6458915744, - 6458907552, - 6458915328, - 6459006192, - 6459012896, - 6459005200, + 6458947376, + 6458915760, + 6458907568, + 6458915344, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -281309,13 +281311,13 @@ "type_name": "CPulseCell_Inflow_EntOutputHandler", "vtable_address": 6463647568, "methods": [ - 6458947408, - 6458915760, - 6458907568, - 6458915344, - 6459006288, - 6459012896, - 6459005216, + 6458947424, + 6458915776, + 6458907584, + 6458915360, + 6459006304, + 6459012912, + 6459005232, 6445700560, 6445691296, 6445694384, @@ -281379,13 +281381,13 @@ "type_name": "CPulseCell_Inflow_EventHandler", "vtable_address": 6463647360, "methods": [ - 6458947456, - 6458916144, - 6458907904, - 6458915360, - 6459006496, - 6459012896, - 6459005200, + 6458947472, + 6458916160, + 6458907920, + 6458915376, + 6459006512, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -281449,13 +281451,13 @@ "type_name": "CPulseCell_Inflow_GraphHook", "vtable_address": 6463647464, "methods": [ - 6458947504, - 6458916352, - 6458908144, - 6458915376, - 6459006672, - 6459012896, - 6459005200, + 6458947520, + 6458916368, + 6458908160, + 6458915392, + 6459006688, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -281519,13 +281521,13 @@ "type_name": "CPulseCell_Inflow_Method", "vtable_address": 6463647256, "methods": [ - 6458947552, - 6458916560, - 6458908368, - 6458915392, - 6459006848, - 6459012896, - 6459005488, + 6458947568, + 6458916576, + 6458908384, + 6458915408, + 6459006864, + 6459012912, + 6459005504, 6445700560, 6445691296, 6445694384, @@ -281589,13 +281591,13 @@ "type_name": "CPulseCell_Inflow_ObservableVariableListener", "vtable_address": 6463647672, "methods": [ - 6458947600, - 6458916576, - 6458908384, - 6458915408, - 6459007024, - 6459012896, - 6459005200, + 6458947616, + 6458916592, + 6458908400, + 6458915424, + 6459007040, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -281659,27 +281661,27 @@ "type_name": "CPulseCell_Inflow_Wait", "vtable_address": 6463648168, "methods": [ - 6458947648, - 6458916864, - 6458908864, - 6458915424, - 6459007280, - 6459012896, - 6459005200, + 6458947664, + 6458916880, + 6458908880, + 6458915440, + 6459007296, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459010704, + 6459010720, 6445729216, - 6459010192, + 6459010208, 6445729200, 6445729168, 6445688720, 6445694016, - 6459012480, - 6459009168, + 6459012496, + 6459009184, 6445729184 ], "bases": [ @@ -281739,27 +281741,27 @@ "type_name": "CPulseCell_Inflow_Yield", "vtable_address": 6463647984, "methods": [ - 6458947696, - 6458916944, - 6458909152, - 6458915440, - 6459007392, - 6459012896, - 6459005200, + 6458947712, + 6458916960, + 6458909168, + 6458915456, + 6459007408, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459010736, + 6459010752, 6445729216, 6445728992, 6445729200, 6445729168, 6445688720, 6445694016, - 6458947248, - 6458941984, + 6458947264, + 6458942000, 6445729184 ], "bases": [ @@ -281819,13 +281821,13 @@ "type_name": "CPulseCell_InlineNodeSkipSelector", "vtable_address": 6463665816, "methods": [ - 6459237936, - 6459224944, - 6459222928, - 6459224880, - 6459006192, - 6459012896, - 6459005200, + 6459237952, + 6459224960, + 6459222944, + 6459224896, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -281875,27 +281877,27 @@ "type_name": "CPulseCell_IntervalTimer", "vtable_address": 6463678032, "methods": [ - 6459313312, + 6459313328, + 6459308960, + 6459307648, 6459308944, - 6459307632, - 6459308928, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459368880, + 6459368896, 6445729216, - 6459368480, + 6459368496, 6445729200, 6445729168, - 6459307568, - 6459307616, - 6459312896, - 6459311504, + 6459307584, + 6459307632, + 6459312912, + 6459311520, 6445729184 ], "bases": [ @@ -281955,21 +281957,21 @@ "type_name": "CPulseCell_IsRequirementValid", "vtable_address": 6463665688, "methods": [ - 6459237984, - 6459225408, - 6459222944, - 6459224896, - 6459006192, - 6459012896, - 6459005200, + 6459238000, + 6459225424, + 6459222960, + 6459224912, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459221824, - 6459222336, - 6459222256 + 6459221840, + 6459222352, + 6459222272 ], "bases": [ { @@ -282018,17 +282020,17 @@ 6445711824, 6445711424, 6445711808, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459010672, + 6459010688, 6445729216, - 6459009872, + 6459009888, 6445729200, 6445729168, 6445688736, @@ -282111,21 +282113,21 @@ "type_name": "CPulseCell_LimitCount", "vtable_address": 6463665560, "methods": [ - 6459238032, - 6459225424, - 6459223072, - 6459224912, - 6459006192, - 6459012896, - 6459005200, + 6459238048, + 6459225440, + 6459223088, + 6459224928, + 6459006208, + 6459012912, + 6459005216, + 6459222320, + 6459222256, 6459222304, - 6459222240, - 6459222288, - 6459232960, - 6459237568, - 6459221856, - 6459222384, - 6459222272 + 6459232976, + 6459237584, + 6459221872, + 6459222400, + 6459222288 ], "bases": [ { @@ -282170,18 +282172,18 @@ "type_name": "CPulseCell_Outflow_CycleOrdered", "vtable_address": 6463648352, "methods": [ - 6458947744, - 6458917024, - 6458909440, - 6458915456, - 6459006192, - 6459012896, - 6459005200, - 6458906512, - 6458905872, - 6458905952, - 6458941824, - 6458946512 + 6458947760, + 6458917040, + 6458909456, + 6458915472, + 6459006208, + 6459012912, + 6459005216, + 6458906528, + 6458905888, + 6458905968, + 6458941840, + 6458946528 ], "bases": [ { @@ -282226,13 +282228,13 @@ "type_name": "CPulseCell_Outflow_CycleRandom", "vtable_address": 6463648456, "methods": [ - 6458947792, - 6458917104, - 6458909728, - 6458915472, - 6459006192, - 6459012896, - 6459005200, + 6458947808, + 6458917120, + 6458909744, + 6458915488, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282282,18 +282284,18 @@ "type_name": "CPulseCell_Outflow_CycleShuffled", "vtable_address": 6463648560, "methods": [ - 6458947840, - 6458917184, - 6458910016, - 6458915488, - 6459006192, - 6459012896, - 6459005200, - 6458906544, - 6458905888, - 6458905968, - 6458941840, - 6458946880 + 6458947856, + 6458917200, + 6458910032, + 6458915504, + 6459006208, + 6459012912, + 6459005216, + 6458906560, + 6458905904, + 6458905984, + 6458941856, + 6458946896 ], "bases": [ { @@ -282336,15 +282338,15 @@ }, { "type_name": "CPulseCell_Outflow_ListenForAnimgraphTag", - "vtable_address": 6462858752, + "vtable_address": 6462858768, "methods": [ 6453322800, 6453263168, 6453257456, 6453263024, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282416,7 +282418,7 @@ }, { "type_name": "CPulseCell_Outflow_ListenForAnimgraphTag::CursorState_t", - "vtable_address": 6462858728, + "vtable_address": 6462858744, "methods": [ 6453198064, 6453285008 @@ -282448,15 +282450,15 @@ }, { "type_name": "CPulseCell_Outflow_ListenForEntityOutput", - "vtable_address": 6462858440, + "vtable_address": 6462858456, "methods": [ 6453322848, 6453263504, 6453257824, 6453263040, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282528,15 +282530,15 @@ }, { "type_name": "CPulseCell_Outflow_PlaySceneBase", - "vtable_address": 6462859048, + "vtable_address": 6462859064, "methods": [ 6453322896, 6453263520, 6453257840, 6453263056, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282608,15 +282610,15 @@ }, { "type_name": "CPulseCell_Outflow_PlaySequence", - "vtable_address": 6462859416, + "vtable_address": 6462859432, "methods": [ 6453322944, 6453263696, 6453257856, 6453263072, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282702,15 +282704,15 @@ }, { "type_name": "CPulseCell_Outflow_PlayVCD", - "vtable_address": 6462859232, + "vtable_address": 6462859248, "methods": [ 6453322992, 6453264032, 6453258064, 6453263088, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282796,15 +282798,15 @@ }, { "type_name": "CPulseCell_Outflow_ScriptedSequence", - "vtable_address": 6462859600, + "vtable_address": 6462859616, "methods": [ 6453323040, 6453264512, 6453258288, 6453263104, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282878,13 +282880,13 @@ "type_name": "CPulseCell_PickBestOutflowSelector", "vtable_address": 6463665920, "methods": [ - 6459238080, - 6459225648, - 6459223280, - 6459224928, - 6459006192, - 6459012896, - 6459005200, + 6459238096, + 6459225664, + 6459223296, + 6459224944, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -282932,15 +282934,15 @@ }, { "type_name": "CPulseCell_PlaySequence", - "vtable_address": 6461671560, + "vtable_address": 6461671544, "methods": [ 6448800816, 6448786304, 6448784288, 6448786272, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283012,15 +283014,15 @@ }, { "type_name": "CPulseCell_SoundEventStart", - "vtable_address": 6462858624, + "vtable_address": 6462858640, "methods": [ 6453323088, 6453264528, 6453258304, 6453263120, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283070,27 +283072,27 @@ "type_name": "CPulseCell_Step_CallExternalMethod", "vtable_address": 6463648976, "methods": [ - 6458947888, - 6458917264, - 6458910304, - 6458915504, - 6459007504, - 6459012896, - 6459005200, + 6458947904, + 6458917280, + 6458910320, + 6458915520, + 6459007520, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459010768, - 6459010224, + 6459010784, + 6459010240, 6445728992, 6445729200, 6445729168, - 6458905472, - 6458905936, - 6459012496, - 6459009184, + 6458905488, + 6458905952, + 6459012512, + 6459009200, 6445729184 ], "bases": [ @@ -283150,13 +283152,13 @@ "type_name": "CPulseCell_Step_DebugLog", "vtable_address": 6463648872, "methods": [ - 6458947936, - 6458917280, - 6458910320, - 6458915520, - 6459006192, - 6459012896, - 6459005200, + 6458947952, + 6458917296, + 6458910336, + 6458915536, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283204,15 +283206,15 @@ }, { "type_name": "CPulseCell_Step_EntFire", - "vtable_address": 6461671456, + "vtable_address": 6461671440, "methods": [ 6448800864, 6448786320, 6448784304, 6448786288, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283260,15 +283262,15 @@ }, { "type_name": "CPulseCell_Step_FollowEntity", - "vtable_address": 6462858232, + "vtable_address": 6462858248, "methods": [ 6453323136, 6453264912, 6453258688, 6453263136, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283318,13 +283320,13 @@ "type_name": "CPulseCell_Step_PublicOutput", "vtable_address": 6463647880, "methods": [ - 6458947984, - 6458917296, - 6458910544, - 6458915536, - 6459006192, - 6459012896, - 6459005200, + 6458948000, + 6458917312, + 6458910560, + 6458915552, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283372,15 +283374,15 @@ }, { "type_name": "CPulseCell_Step_SetAnimGraphParam", - "vtable_address": 6462858336, + "vtable_address": 6462858352, "methods": [ 6453323184, 6453265264, 6453258944, 6453263152, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283430,27 +283432,27 @@ "type_name": "CPulseCell_Timeline", "vtable_address": 6463678560, "methods": [ - 6459321536, + 6459321552, + 6459319072, + 6459317808, 6459319056, - 6459317792, - 6459319040, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459370912, + 6459370928, + 6459370832, 6459370816, - 6459370800, 6445729200, 6445729168, - 6459317248, - 6459317312, - 6459371616, - 6459370720, + 6459317264, + 6459317328, + 6459371632, + 6459370736, 6445729184 ], "bases": [ @@ -283510,13 +283512,13 @@ "type_name": "CPulseCell_Unknown", "vtable_address": 6463649160, "methods": [ - 6458948032, - 6459009120, - 6459008960, - 6458915552, - 6459006192, - 6459012896, - 6459005200, + 6458948048, + 6459009136, + 6459008976, + 6458915568, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283552,13 +283554,13 @@ "type_name": "CPulseCell_Value_Curve", "vtable_address": 6463675872, "methods": [ - 6459296960, + 6459296976, + 6459294416, + 6459293920, 6459294400, - 6459293904, - 6459294384, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283608,13 +283610,13 @@ "type_name": "CPulseCell_Value_Gradient", "vtable_address": 6463676488, "methods": [ - 6459304720, + 6459304736, + 6459302160, + 6459301664, 6459302144, - 6459301648, - 6459302128, - 6459006192, - 6459012896, - 6459005200, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283664,13 +283666,13 @@ "type_name": "CPulseCell_Value_RandomFloat", "vtable_address": 6463648768, "methods": [ - 6458948080, - 6458917520, - 6458910560, - 6458915568, - 6459006192, - 6459012896, - 6459005200, + 6458948096, + 6458917536, + 6458910576, + 6458915584, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283720,13 +283722,13 @@ "type_name": "CPulseCell_Value_RandomInt", "vtable_address": 6463648664, "methods": [ - 6458948128, - 6458917536, - 6458910784, - 6458915584, - 6459006192, - 6459012896, - 6459005200, + 6458948144, + 6458917552, + 6458910800, + 6458915600, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, @@ -283776,30 +283778,30 @@ "type_name": "CPulseCell_WaitForCursorsWithTag", "vtable_address": 6463684696, "methods": [ - 6459357472, - 6459348192, - 6459346704, - 6459347920, - 6459006192, - 6459012896, - 6459005200, + 6459357488, + 6459348208, + 6459346720, + 6459347936, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459376240, - 6459376048, + 6459376256, + 6459376064, 6445728992, 6445729200, 6445729168, - 6459346352, - 6459346432, - 6459376304, - 6459375440, + 6459346368, + 6459346448, + 6459376320, + 6459375456, 6445729184, - 6459375280, - 6459376896 + 6459375296, + 6459376912 ], "bases": [ { @@ -283872,30 +283874,30 @@ "type_name": "CPulseCell_WaitForCursorsWithTagBase", "vtable_address": 6463684496, "methods": [ - 6459357520, - 6459348560, - 6459346720, - 6459347936, - 6459006192, - 6459012896, - 6459005200, + 6459357536, + 6459348576, + 6459346736, + 6459347952, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459376240, - 6459376048, + 6459376256, + 6459376064, 6445728992, 6445729200, 6445729168, - 6459346352, - 6459346432, - 6459376304, - 6459375440, + 6459346368, + 6459346448, + 6459376320, + 6459375456, 6445729184, - 6459375280, - 6459376912 + 6459375296, + 6459376928 ], "bases": [ { @@ -283954,27 +283956,27 @@ "type_name": "CPulseCell_WaitForObservable", "vtable_address": 6463680040, "methods": [ - 6459336096, - 6459329840, - 6459328416, - 6459329616, - 6459006192, - 6459012896, - 6459005200, + 6459336112, + 6459329856, + 6459328432, + 6459329632, + 6459006208, + 6459012912, + 6459005216, 6445700560, 6445691296, 6445694384, 6445714704, 6445736240, - 6459374384, + 6459374400, 6445729216, 6445728992, - 6459373600, + 6459373616, 6445729168, 6445688720, 6445694016, - 6459336032, - 6459333680, + 6459336048, + 6459333696, 6445729184 ], "bases": [ @@ -284034,25 +284036,25 @@ "type_name": "CPulseDomainScopeLoader", "vtable_address": 6463630976, "methods": [ - 6458812512, - 6458807408, - 6458807344, + 6458812528, + 6458807424, 6458807360, - 6458807296, - 6458811344, - 6458811472, - 6458802656, - 6458802768, - 6458803136, - 6458804256, - 6458804128, - 6458804192, - 6458811280, - 6458807168, - 6458804496, - 6458813024, - 6458814128, - 6458813696 + 6458807376, + 6458807312, + 6458811360, + 6458811488, + 6458802672, + 6458802784, + 6458803152, + 6458804272, + 6458804144, + 6458804208, + 6458811296, + 6458807184, + 6458804512, + 6458813040, + 6458814144, + 6458813712 ], "bases": [ { @@ -284128,16 +284130,16 @@ "type_name": "CPulseExecCursor", "vtable_address": 6463651024, "methods": [ - 6458982128, - 6458982784, - 6459000480, - 6458970768, - 6458999344, - 6458993408, - 6458981632, - 6458981840, - 6458981808, - 6458981568 + 6458982144, + 6458982800, + 6459000496, + 6458970784, + 6458999360, + 6458993424, + 6458981648, + 6458981856, + 6458981824, + 6458981584 ], "bases": [ { @@ -284287,21 +284289,21 @@ "type_name": "CPulseExecCursor", "vtable_address": 6463651160, "methods": [ - 6458972224, - 6458987232, - 6458970832, - 6458987424, - 6458997168, - 6458990432, - 6458974544, + 6458972240, + 6458987248, + 6458970848, + 6458987440, + 6458997184, + 6458990448, + 6458974560, 6453301408, 6453301424, 6453301536, 6453301552, - 6458983808, - 6458971856, - 6458987648, - 6459003056 + 6458983824, + 6458971872, + 6458987664, + 6459003072 ], "bases": [ { @@ -284372,18 +284374,18 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 6461672440, + "vtable_address": 6461672424, "methods": [ 6446805888, 6448772480, 6445463120, - 6456889008, + 6456889024, 6448793728, 6451753984, 6448801696, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6448772768, 6448802400, 6451865168, @@ -284413,7 +284415,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448780080, 6448798336, 6448800912, @@ -284673,7 +284675,7 @@ }, { "type_name": "CPulseGameBlackboard", - "vtable_address": 6461674392, + "vtable_address": 6461674376, "methods": [ 6448793616 ], @@ -284734,29 +284736,29 @@ "type_name": "CPulseGraphDef", "vtable_address": 6463656568, "methods": [ - 6459062480, - 6459062512, - 6459065536, - 6459062928, + 6459062496, + 6459062528, + 6459065552, + 6459062944, + 6459064368, + 6459062608, + 6459065504, 6459064352, - 6459062592, + 6459051408, 6459065488, - 6459064336, - 6459051392, - 6459065472, - 6459061632, - 6459061488, - 6459065600, - 6459065728, - 6459065776, - 6459065664, - 6459065824, - 6459066496, - 6459066544, - 6459065888, - 6459049568, - 6459071632, - 6459061328 + 6459061648, + 6459061504, + 6459065616, + 6459065744, + 6459065792, + 6459065680, + 6459065840, + 6459066512, + 6459066560, + 6459065904, + 6459049584, + 6459071648, + 6459061344 ], "bases": [ { @@ -284785,7 +284787,7 @@ }, { "type_name": "CPulseGraphIOSignature", - "vtable_address": 6462860136, + "vtable_address": 6462860152, "methods": [ 6453197696 ], @@ -284830,7 +284832,7 @@ }, { "type_name": "CPulseGraphIOSignature", - "vtable_address": 6462860152, + "vtable_address": 6462860168, "methods": [ 6443778400, 6453284656 @@ -284876,7 +284878,7 @@ }, { "type_name": "CPulseGraphInstance_GameBlackboard", - "vtable_address": 6461672056, + "vtable_address": 6461672040, "methods": [ 6448795808, 6448795840, @@ -284890,28 +284892,28 @@ 6453201920, 6448772576, 6453248336, - 6459033056, + 6459033072, 6453327504, 6453225472, - 6459028880, + 6459028896, 6453239472, - 6459039744, + 6459039760, 6453307696, 6453308016, 6453235680, 6453319728, 6453281712, - 6459036672, - 6459036960, + 6459036688, + 6459036976, 6453221040, 6453221408, 6453306976, 6448781216, 6453246944, 6453225552, - 6459030112, - 6459029632, - 6459029568 + 6459030128, + 6459029648, + 6459029584 ], "bases": [ { @@ -285010,7 +285012,7 @@ }, { "type_name": "CPulseGraphInstance_GameBlackboard", - "vtable_address": 6461672336, + "vtable_address": 6461672320, "methods": [ 6453301440, 6453300816, @@ -285113,14 +285115,14 @@ }, { "type_name": "CPulseGraphInstance_GameBlackboard", - "vtable_address": 6461672368, + "vtable_address": 6461672352, "methods": [ 6448772284, - 6459045728, - 6459045904, + 6459045744, 6459045920, - 6459045712, - 6459046144, + 6459045936, + 6459045728, + 6459046160, 6448791888, 6448793712 ], @@ -285221,7 +285223,7 @@ }, { "type_name": "CPulseGraphInstance_ServerEntity", - "vtable_address": 6461671744, + "vtable_address": 6461671728, "methods": [ 6448795808, 6448795840, @@ -285235,28 +285237,28 @@ 6453201920, 6448772656, 6453248336, - 6459033056, + 6459033072, 6453327504, 6453225472, - 6459028880, + 6459028896, 6453239472, - 6459039744, + 6459039760, 6453307696, 6453308016, 6453235680, 6453319728, 6453281712, - 6459036672, - 6459036960, + 6459036688, + 6459036976, 6453221040, 6453221408, 6453306976, 6448781232, 6453246944, 6453225552, - 6459030112, - 6459029632, - 6459029568 + 6459030128, + 6459029648, + 6459029584 ], "bases": [ { @@ -285313,7 +285315,7 @@ }, { "type_name": "CPulseGraphInstance_ServerEntity", - "vtable_address": 6461672024, + "vtable_address": 6461672008, "methods": [ 6453301440, 6453300816, @@ -285406,7 +285408,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 6462203208, + "vtable_address": 6462203240, "methods": [ 6448791200 ], @@ -285493,7 +285495,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 6462203224, + "vtable_address": 6462203256, "methods": [ 6448791248 ], @@ -285580,7 +285582,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 6462203240, + "vtable_address": 6462203272, "methods": [ 6448790928 ], @@ -285667,7 +285669,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 6462203256, + "vtable_address": 6462203288, "methods": [ 6448797680, 6448797456 @@ -285755,7 +285757,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_RestoreGame", - "vtable_address": 6462203280, + "vtable_address": 6462203312, "methods": [ 6450557920 ], @@ -285842,7 +285844,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6462857856, + "vtable_address": 6462857872, "methods": [ 6448791232 ], @@ -285929,7 +285931,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6462857872, + "vtable_address": 6462857888, "methods": [ 6448791280 ], @@ -286016,7 +286018,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6462857888, + "vtable_address": 6462857904, "methods": [ 6448791104 ], @@ -286103,7 +286105,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6462857904, + "vtable_address": 6462857920, "methods": [ 6448797808, 6448797584 @@ -286191,7 +286193,7 @@ }, { "type_name": "CPulseInstanceLoadAPI_Spawn", - "vtable_address": 6462857928, + "vtable_address": 6462857944, "methods": [ 6453201216 ], @@ -286278,7 +286280,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_Blackboard", - "vtable_address": 6461674424, + "vtable_address": 6461674408, "methods": [ 6448800384 ], @@ -286337,7 +286339,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_Blackboard", - "vtable_address": 6461674440, + "vtable_address": 6461674424, "methods": [ 6448799824 ], @@ -286396,7 +286398,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_Blackboard", - "vtable_address": 6461674456, + "vtable_address": 6461674440, "methods": [ 6448797840, 6448797616 @@ -286456,7 +286458,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 6462202992, + "vtable_address": 6462203024, "methods": [ 6448800352 ], @@ -286529,7 +286531,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 6462203008, + "vtable_address": 6462203040, "methods": [ 6450557888 ], @@ -286602,7 +286604,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 6462203104, + "vtable_address": 6462203136, "methods": [ 6448799936 ], @@ -286675,7 +286677,7 @@ }, { "type_name": "CPulseInstanceSaveAPI_SaveGame", - "vtable_address": 6462203120, + "vtable_address": 6462203184, "methods": [ 6448797872, 6448797648 @@ -286749,7 +286751,7 @@ }, { "type_name": "CPulseInstanceSaveRestoreOps", - "vtable_address": 6462364952, + "vtable_address": 6462364984, "methods": [ 6451702816, 6451702832, @@ -286801,7 +286803,7 @@ "type_name": "CPulseInterfaceHelpers_Load_NoOp", "vtable_address": 6463631256, "methods": [ - 6458811456 + 6458811472 ], "bases": [ { @@ -286958,7 +286960,7 @@ "type_name": "CPulseInterfaceHelpers_Load_NoOp", "vtable_address": 6463631272, "methods": [ - 6458812496 + 6458812512 ], "bases": [ { @@ -287272,8 +287274,8 @@ "type_name": "CPulseInterfaceHelpers_Load_NoOp", "vtable_address": 6463631304, "methods": [ - 6458812992, - 6458812960 + 6458813008, + 6458812976 ], "bases": [ { @@ -287585,7 +287587,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6462277048, + "vtable_address": 6462277080, "methods": [ 6451199488 ], @@ -287700,7 +287702,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6462277064, + "vtable_address": 6462277096, "methods": [ 6451199680 ], @@ -287815,7 +287817,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6462277080, + "vtable_address": 6462277112, "methods": [ 6448800016 ], @@ -287930,7 +287932,7 @@ }, { "type_name": "CPulseInterfaceHelpers_Save_EntText", - "vtable_address": 6462277096, + "vtable_address": 6462277128, "methods": [ 6451162080, 6451161888 @@ -288565,14 +288567,14 @@ "type_name": "CPulseScopeEnumeratingTypeService", "vtable_address": 6463631344, "methods": [ - 6458807328, - 6458811264, - 6458804176, - 6458804240, - 6458811328, - 6458807248, - 6458804576, - 6458813072 + 6458807344, + 6458811280, + 6458804192, + 6458804256, + 6458811344, + 6458807264, + 6458804592, + 6458813088 ], "bases": [ { @@ -288615,18 +288617,18 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 6462857944, + "vtable_address": 6462857960, "methods": [ - 6458982128, - 6458982784, + 6458982144, + 6458982800, 6453323232, 6453197904, 6453322416, 6453282704, - 6458981632, - 6458981840, - 6458981808, - 6458981568 + 6458981648, + 6458981856, + 6458981824, + 6458981584 ], "bases": [ { @@ -288725,7 +288727,7 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 6462858032, + "vtable_address": 6462858048, "methods": [ 6453300448, 6453300464, @@ -288830,23 +288832,23 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 6462858080, - "methods": [ - 6458972224, - 6458987232, - 6458970832, - 6458987424, - 6458997168, - 6458990432, - 6458974544, + "vtable_address": 6462858096, + "methods": [ + 6458972240, + 6458987248, + 6458970848, + 6458987440, + 6458997184, + 6458990448, + 6458974560, 6453301408, 6453301424, 6453301536, 6453301552, - 6458983808, - 6458971856, - 6458987648, - 6459003056 + 6458983824, + 6458971872, + 6458987664, + 6459003072 ], "bases": [ { @@ -288945,7 +288947,7 @@ }, { "type_name": "CPulseServerCursor", - "vtable_address": 6462858208, + "vtable_address": 6462858224, "methods": [ 6453234384, 6453234960 @@ -289047,7 +289049,7 @@ }, { "type_name": "CPulseSharedEHandleService", - "vtable_address": 6461670232, + "vtable_address": 6461670216, "methods": [ 6448757360, 6448757376, @@ -289099,7 +289101,7 @@ }, { "type_name": "CPulseSharedSaveRestoreBlockHandler", - "vtable_address": 6461669144, + "vtable_address": 6461669128, "methods": [ 6448752064, 6448752080, @@ -289154,7 +289156,7 @@ "type_name": "CPulseTypeQueriesModuleMetadataProvider", "vtable_address": 6463653720, "methods": [ - 6459013632 + 6459013648 ], "bases": [ { @@ -289183,18 +289185,18 @@ }, { "type_name": "CPushable", - "vtable_address": 6462528208, + "vtable_address": 6462528240, "methods": [ 6446805920, 6452170912, 6450347280, - 6456889008, + 6456889024, 6452260336, 6450317376, 6452296608, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -289224,7 +289226,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208224, 6452268176, 6452273168, @@ -289555,7 +289557,7 @@ }, { "type_name": "CPushable", - "vtable_address": 6462530392, + "vtable_address": 6462530424, "methods": [ 6443908752, 6443918000 @@ -289657,26 +289659,26 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request", - "vtable_address": 6461606784, + "vtable_address": 6461606768, "methods": [ 6448456080, - 6455181760, + 6455181776, 6448433680, 6448434944, 6448435200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448435232, 6448437360, 6448435728, 6443766512, 6448436752, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448437456, 6448437488, 6448437472, - 6455179744, + 6455179760, 6448451632 ], "bases": [ @@ -289720,22 +289722,22 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute", - "vtable_address": 6461604880, + "vtable_address": 6461604864, "methods": [ 6448427776, - 6455181760, + 6455181776, 6448424080, 6448424176, 6448424224, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448424240, 6448425120, 6448424336, 6443766512, 6448424832, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448425136, 6448425328, 6448425312 @@ -289781,22 +289783,22 @@ }, { "type_name": "CQuest_PublisherAddCommunityItemsToPlayer_Response", - "vtable_address": 6461607328, + "vtable_address": 6461607312, "methods": [ 6448466208, - 6455181760, + 6455181776, 6448460944, 6448463440, 6448463472, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448463712, 6448464608, 6448463824, 6443766512, 6448464320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448464720, 6448465696, 6448465680 @@ -289842,7 +289844,7 @@ }, { "type_name": "CRadiusDamageInfo", - "vtable_address": 6461723824, + "vtable_address": 6461723840, "methods": [ 6444349056, 6445882224, @@ -289875,18 +289877,18 @@ }, { "type_name": "CRagdollConstraint", - "vtable_address": 6462743032, + "vtable_address": 6462743064, "methods": [ 6446805888, 6452732848, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452735344, 6452885488, 6451865168, @@ -289916,7 +289918,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789440, 6452842928, 6452857360, @@ -290207,7 +290209,7 @@ }, { "type_name": "CRagdollGameSystem", - "vtable_address": 6462868184, + "vtable_address": 6462868232, "methods": [ 6443752688, 6443767152, @@ -290312,7 +290314,7 @@ }, { "type_name": "CRagdollLRURetirement", - "vtable_address": 6462866920, + "vtable_address": 6462866968, "methods": [ 6443752688, 6443767152, @@ -290417,18 +290419,18 @@ }, { "type_name": "CRagdollMagnet", - "vtable_address": 6461169352, + "vtable_address": 6461169320, "methods": [ 6445499872, 6446776928, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -290458,7 +290460,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035728, 6446826864, 6446839008, @@ -290723,13 +290725,13 @@ 6446805888, 6445763568, 6445463120, - 6456889008, + 6456889024, 6445541280, 6445768608, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766592, 6445840624, 6451865168, @@ -290759,7 +290761,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781392, 6445814624, 6445824832, @@ -291005,7 +291007,7 @@ }, { "type_name": "CRagdollPoseControlSystem", - "vtable_address": 6462152728, + "vtable_address": 6462152776, "methods": [ 6443752688, 6443767152, @@ -291110,7 +291112,7 @@ }, { "type_name": "CRagdollProp", - "vtable_address": 6462755064, + "vtable_address": 6462755096, "methods": [ 6446805696, 6452733008, @@ -291119,9 +291121,9 @@ 6452840800, 6450317360, 6452870416, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452738112, 6452886336, 6450455584, @@ -291151,7 +291153,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789456, 6447001712, 6452857408, @@ -291534,7 +291536,7 @@ }, { "type_name": "CRagdollProp", - "vtable_address": 6462757552, + "vtable_address": 6462757584, "methods": [ 6443908752, 6443918000 @@ -291650,7 +291652,7 @@ }, { "type_name": "CRagdollProp", - "vtable_address": 6462757576, + "vtable_address": 6462757608, "methods": [ 6452787744, 6452863712, @@ -291768,7 +291770,7 @@ }, { "type_name": "CRagdollPropAlias_physics_prop_ragdoll", - "vtable_address": 6462760336, + "vtable_address": 6462760368, "methods": [ 6446805696, 6452733072, @@ -291777,9 +291779,9 @@ 6452840800, 6450317360, 6452870416, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452738112, 6452886336, 6450455584, @@ -291809,7 +291811,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789472, 6452842944, 6452857456, @@ -292206,7 +292208,7 @@ }, { "type_name": "CRagdollPropAlias_physics_prop_ragdoll", - "vtable_address": 6462762824, + "vtable_address": 6462762856, "methods": [ 6443908752, 6443918000 @@ -292336,7 +292338,7 @@ }, { "type_name": "CRagdollPropAlias_physics_prop_ragdoll", - "vtable_address": 6462762848, + "vtable_address": 6462762880, "methods": [ 6452787744, 6452863712, @@ -292468,7 +292470,7 @@ }, { "type_name": "CRagdollPropAttached", - "vtable_address": 6462763288, + "vtable_address": 6462763320, "methods": [ 6446805696, 6452733136, @@ -292477,9 +292479,9 @@ 6452840800, 6450317360, 6452872208, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452738256, 6452886336, 6450455584, @@ -292509,7 +292511,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789488, 6452842960, 6452857504, @@ -292906,7 +292908,7 @@ }, { "type_name": "CRagdollPropAttached", - "vtable_address": 6462765776, + "vtable_address": 6462765808, "methods": [ 6443908752, 6443918000 @@ -293036,7 +293038,7 @@ }, { "type_name": "CRagdollPropAttached", - "vtable_address": 6462765800, + "vtable_address": 6462765832, "methods": [ 6452787744, 6452863712, @@ -293168,7 +293170,7 @@ }, { "type_name": "CReadyForMatchIssue", - "vtable_address": 6461739952, + "vtable_address": 6461739968, "methods": [ 6444557600, 6448896160, @@ -293285,13 +293287,13 @@ 6446805920, 6445267184, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6445306064, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445267248, 6445316352, 6450455600, @@ -293321,7 +293323,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445275568, 6445293152, 6445301024, @@ -293689,7 +293691,7 @@ }, { "type_name": "CReliableSingleUserRecipientFilter", - "vtable_address": 6461723728, + "vtable_address": 6461723744, "methods": [ 6448896224, 6451409088, @@ -293752,7 +293754,7 @@ }, { "type_name": "CReloadMatchFilter", - "vtable_address": 6461038248, + "vtable_address": 6461038232, "methods": [ 6446199968 ], @@ -293783,7 +293785,7 @@ }, { "type_name": "CRender", - "vtable_address": 6461071168, + "vtable_address": 6461071152, "methods": [ 6446368240, 6446595408, @@ -293868,7 +293870,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 6461070584, + "vtable_address": 6461070568, "methods": [ 6443752688, 6443767152, @@ -293992,7 +293994,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 6461071120, + "vtable_address": 6461071104, "methods": [ 6446340080 ], @@ -294051,7 +294053,7 @@ }, { "type_name": "CRenderGameSystem", - "vtable_address": 6461071136, + "vtable_address": 6461071120, "methods": [ 6446337168, 6446367168, @@ -294112,7 +294114,7 @@ }, { "type_name": "CResourceManifestPrerequisite", - "vtable_address": 6461029144, + "vtable_address": 6461029128, "methods": [ 6445978224, 6445982464, @@ -294255,7 +294257,7 @@ "type_name": "CResponseCriteriaSet", "vtable_address": 6463690336, "methods": [ - 6459523616 + 6459523632 ], "bases": [], "model": { @@ -294269,7 +294271,7 @@ }, { "type_name": "CResponseQueueManager", - "vtable_address": 6462365080, + "vtable_address": 6462365112, "methods": [ 6443752688, 6443767152, @@ -294374,7 +294376,7 @@ }, { "type_name": "CRestartGameIssue", - "vtable_address": 6461737440, + "vtable_address": 6461737456, "methods": [ 6444557600, 6448896272, @@ -294451,7 +294453,7 @@ }, { "type_name": "CRestore", - "vtable_address": 6462273440, + "vtable_address": 6462273472, "methods": [ 6450982640 ], @@ -294524,7 +294526,7 @@ }, { "type_name": "CRestore", - "vtable_address": 6462273456, + "vtable_address": 6462273488, "methods": [ 6450980556, 6451221264, @@ -294674,7 +294676,7 @@ }, { "type_name": "CRetakeGameRules", - "vtable_address": 6461782736, + "vtable_address": 6461782752, "methods": [ 6449227056, 6449235808, @@ -294724,18 +294726,18 @@ }, { "type_name": "CRevertSaved", - "vtable_address": 6462874808, + "vtable_address": 6462874824, "methods": [ 6446805920, 6453417744, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -294765,7 +294767,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488512, 6453560032, 6453583280, @@ -295067,18 +295069,18 @@ }, { "type_name": "CRopeKeyframe", - "vtable_address": 6462877040, + "vtable_address": 6462877056, "methods": [ 6446805920, 6453417808, 6450347280, - 6456889008, + 6456889024, 6453546208, 6450317376, 6453616928, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453419760, 6453636768, 6450455600, @@ -295108,7 +295110,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488528, 6447028176, 6453583328, @@ -295425,7 +295427,7 @@ }, { "type_name": "CRopeKeyframe", - "vtable_address": 6462879224, + "vtable_address": 6462879240, "methods": [ 6453417324, 6453538640 @@ -295513,18 +295515,18 @@ }, { "type_name": "CRopeKeyframeAlias_move_rope", - "vtable_address": 6462879248, + "vtable_address": 6462879264, "methods": [ 6446805920, 6453417968, 6450347280, - 6456889008, + 6456889024, 6453546208, 6450317376, 6453616928, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453419760, 6453636768, 6450455600, @@ -295554,7 +295556,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488544, 6453560048, 6453583376, @@ -295885,7 +295887,7 @@ }, { "type_name": "CRopeKeyframeAlias_move_rope", - "vtable_address": 6462881432, + "vtable_address": 6462881448, "methods": [ 6453417336, 6453538640 @@ -295987,18 +295989,18 @@ }, { "type_name": "CRotButton", - "vtable_address": 6461164840, + "vtable_address": 6461164808, "methods": [ 6446805920, 6446776992, 6450347280, - 6456889008, + 6456889024, 6451873232, 6450317376, 6451917696, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -296028,7 +296030,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818272, 6446826880, 6446839056, @@ -296354,18 +296356,18 @@ }, { "type_name": "CRotDoor", - "vtable_address": 6462444992, + "vtable_address": 6462445024, "methods": [ 6446805920, 6451980000, 6450347280, - 6456889008, + 6456889024, 6452080912, 6450317376, 6452103408, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451980640, 6452116368, 6450455600, @@ -296395,7 +296397,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035744, 6452082288, 6452086160, @@ -296742,7 +296744,7 @@ }, { "type_name": "CRotDoor", - "vtable_address": 6462447192, + "vtable_address": 6462447224, "methods": [ 6451977284, 6452032240 @@ -296858,18 +296860,18 @@ }, { "type_name": "CRotatorTarget", - "vtable_address": 6461236832, + "vtable_address": 6461236792, "methods": [ 6445499872, 6446938912, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -296899,7 +296901,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452445424, 6446952640, 6446952992, @@ -297205,18 +297207,18 @@ }, { "type_name": "CRuleBrushEntity", - "vtable_address": 6462660680, + "vtable_address": 6462660712, "methods": [ 6446805920, 6452598720, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452671472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -297246,7 +297248,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624096, 6452653792, 6452658272, @@ -297553,13 +297555,13 @@ 6446805920, 6444438560, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452671552, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -297589,7 +297591,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624112, 6447001728, 6444558128, @@ -297882,13 +297884,13 @@ 6446805920, 6444438624, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452671600, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -297918,7 +297920,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624128, 6447001744, 6444558176, @@ -298220,26 +298222,26 @@ }, { "type_name": "CSGOInputHistoryEntryPB", - "vtable_address": 6461855160, + "vtable_address": 6461855176, "methods": [ 6449355408, - 6455181760, + 6455181776, 6449350128, 6449351296, 6449351648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6449351664, 6449355296, 6449352640, 6443766512, 6449354368, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6449355312, 6449355344, 6449355328, - 6455179744, + 6455179760, 6449355744 ], "bases": [ @@ -298283,26 +298285,26 @@ }, { "type_name": "CSGOInterpolationInfoPB", - "vtable_address": 6461853568, + "vtable_address": 6461853584, "methods": [ 6449349152, - 6455181760, + 6455181776, 6449347904, 6449348000, 6449348048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6449348064, 6449349040, 6449348176, 6443766512, 6449348704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6449349056, 6449349088, 6449349072, - 6455179744, + 6455179760, 6449349312 ], "bases": [ @@ -298346,22 +298348,22 @@ }, { "type_name": "CSGOInterpolationInfoPB_CL", - "vtable_address": 6461853728, + "vtable_address": 6461853744, "methods": [ 6449349984, - 6455181760, + 6455181776, 6449349296, 6449349360, 6449349392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6449349408, 6449349872, 6449349440, 6443766512, 6449349760, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6449349888, 6449349920, 6449349904 @@ -298407,22 +298409,22 @@ }, { "type_name": "CSGOUserCmdPB", - "vtable_address": 6461855320, + "vtable_address": 6461855336, "methods": [ 6449358368, - 6455181760, + 6455181776, 6444730016, 6449356048, 6449356208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6449356224, 6444678944, 6449356544, 6443766512, 6449357728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6449358272, 6449358304, 6449358288 @@ -298484,7 +298486,7 @@ }, { "type_name": "CSMatchStats_t", - "vtable_address": 6461809328, + "vtable_address": 6461809344, "methods": [ 6449314464, 6449306736, @@ -298526,11 +298528,11 @@ 6445356800, 6445335696, 6445336720, - 6457966976, - 6458014416, + 6457966992, + 6458014432, 6445354464, - 6457996768, - 6457996896, + 6457996784, + 6457996912, 6445358768, 6445350800, 6445353680, @@ -298540,14 +298542,14 @@ 6445348496, 6445355120, 6445348832, - 6457959456, - 6457996704, - 6457996672, + 6457959472, + 6457996720, + 6457996688, 6445320848, - 6457958080, + 6457958096, 6445354096, - 6457998688, - 6458002704, + 6457998704, + 6458002720, 6445355168, 6445350848, 6445355136, @@ -298583,22 +298585,22 @@ }, { "type_name": "CSOAccountItemPersonalStore", - "vtable_address": 6461376736, + "vtable_address": 6461376720, "methods": [ 6447248896, - 6455181760, + 6455181776, 6447230592, 6447234400, 6447234464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447234720, 6447237296, 6447235248, 6443766512, 6447236768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447238704, 6447239104, 6447238944 @@ -298644,22 +298646,22 @@ }, { "type_name": "CSOAccountKeychainRemoveToolCharges", - "vtable_address": 6461391096, + "vtable_address": 6461391080, "methods": [ 6447344368, - 6455181760, + 6455181776, 6447335920, 6447337632, 6447337936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447337952, 6447338608, 6447338016, 6443766512, 6447338432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447339040, 6447340944, 6447340368 @@ -298705,22 +298707,22 @@ }, { "type_name": "CSOAccountRecurringMission", - "vtable_address": 6461457592, + "vtable_address": 6461457576, "methods": [ 6447482352, - 6455181760, + 6455181776, 6447473120, 6447473312, 6447473344, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447473360, 6447474704, 6447473536, 6443766512, 6447474240, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447474976, 6447476144, 6447476128 @@ -298766,26 +298768,26 @@ }, { "type_name": "CSOAccountRecurringSubscription", - "vtable_address": 6461440448, + "vtable_address": 6461440432, "methods": [ 6447416592, - 6455181760, + 6455181776, 6447405568, 6447408336, 6447408368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447410016, 6447412496, 6447411632, 6443766512, 6447412224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447413104, 6447413472, 6447413456, - 6455179744, + 6455179760, 6447414144 ], "bases": [ @@ -298829,22 +298831,22 @@ }, { "type_name": "CSOAccountSeasonalOperation", - "vtable_address": 6461434712, + "vtable_address": 6461434696, "methods": [ 6447398272, - 6455181760, + 6455181776, 6447375120, 6447376432, 6447376848, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447376864, 6447379984, 6447377840, 6443766512, 6447379168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447380496, 6447383984, 6447383024 @@ -298890,22 +298892,22 @@ }, { "type_name": "CSOAccountXpShop", - "vtable_address": 6461378768, + "vtable_address": 6461378752, "methods": [ 6447264512, - 6455181760, + 6455181776, 6447250224, 6447250576, 6447250752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447250848, 6447252816, 6447251488, 6443766512, 6447252400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447253920, 6447256864, 6447256128 @@ -298951,22 +298953,22 @@ }, { "type_name": "CSOAccountXpShopBids", - "vtable_address": 6461382272, + "vtable_address": 6461382256, "methods": [ 6447286336, - 6455181760, + 6455181776, 6447271664, 6447273024, 6447273408, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447273616, 6447276128, 6447274144, 6443766512, 6447275648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447277024, 6447280448, 6447280368 @@ -299012,22 +299014,22 @@ }, { "type_name": "CSOEconClaimCode", - "vtable_address": 6461386288, + "vtable_address": 6461386272, "methods": [ 6447332064, - 6455181760, + 6455181776, 6447319568, 6447320240, 6447320336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447320512, 6447323200, 6447321424, 6443766512, 6447322784, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447323344, 6447325200, 6447324752 @@ -299073,22 +299075,22 @@ }, { "type_name": "CSOEconCoupon", - "vtable_address": 6461374264, + "vtable_address": 6461374248, "methods": [ 6447226928, - 6455181760, + 6455181776, 6447214800, 6447215264, 6447215392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447215520, 6447218288, 6447216224, 6443766512, 6447217616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447218320, 6447218480, 6447218384 @@ -299134,26 +299136,26 @@ }, { "type_name": "CSOEconEquipSlot", - "vtable_address": 6461455784, + "vtable_address": 6461455768, "methods": [ 6447451840, - 6455181760, + 6455181776, 6447441856, 6447442544, 6447442656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447442672, 6447444240, 6447442864, 6443766512, 6447443680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447444496, 6447444528, 6447444512, - 6455179744, + 6455179760, 6447450560 ], "bases": [ @@ -299197,28 +299199,28 @@ }, { "type_name": "CSOEconGameAccountClient", - "vtable_address": 6461483768, + "vtable_address": 6461483752, "methods": [ 6447739552, - 6455181760, + 6455181776, 6447727184, 6447727584, 6447728224, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447728240, 6447730192, 6447728848, 6443766512, 6447729664, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447730528, 6447731824, 6447731808, - 6455179744, + 6455179760, 6447739696, - 6455179744, + 6455179760, 6447741088 ], "bases": [ @@ -299262,22 +299264,22 @@ }, { "type_name": "CSOEconItem", - "vtable_address": 6461382720, + "vtable_address": 6461382704, "methods": [ 6447287984, - 6455181760, + 6455181776, 6447228368, 6447229136, 6447229536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447229552, 6447234256, 6447230608, 6443766512, 6447232704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447234976, 6447238304, 6447238288 @@ -299323,22 +299325,22 @@ }, { "type_name": "CSOEconItemAttribute", - "vtable_address": 6461368584, + "vtable_address": 6461368568, "methods": [ 6447208640, - 6455181760, + 6455181776, 6447199520, 6447199712, 6447199792, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447199808, 6447200928, 6447200032, 6443766512, 6447200608, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447200960, 6447201888, 6447201872 @@ -299384,22 +299386,22 @@ }, { "type_name": "CSOEconItemDropRateBonus", - "vtable_address": 6461484936, + "vtable_address": 6461484920, "methods": [ 6447763120, - 6455181760, + 6455181776, 6447752288, 6447752608, 6447752656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447752688, 6447754304, 6447752880, 6443766512, 6447753760, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447755520, 6447756768, 6447756752 @@ -299445,22 +299447,22 @@ }, { "type_name": "CSOEconItemEquipped", - "vtable_address": 6461374120, + "vtable_address": 6461374104, "methods": [ 6447224960, - 6455181760, + 6455181776, 6447214768, 6447215232, 6447215376, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447215424, 6447217600, 6447215728, 6443766512, 6447217328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447218304, 6447218416, 6447218352 @@ -299506,26 +299508,26 @@ }, { "type_name": "CSOEconItemEventTicket", - "vtable_address": 6461489344, + "vtable_address": 6461489328, "methods": [ 6447785280, - 6455181760, + 6455181776, 6447781616, 6447782320, 6447782352, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447782384, 6447783568, 6447782512, 6443766512, 6447783184, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447783664, 6447783696, 6447783680, - 6455179744, + 6455179760, 6447784256 ], "bases": [ @@ -299569,26 +299571,26 @@ }, { "type_name": "CSOEconItemLeagueViewPass", - "vtable_address": 6461488528, + "vtable_address": 6461488512, "methods": [ 6447775936, - 6455181760, + 6455181776, 6447764880, 6447765344, 6447765584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447765616, 6447767584, 6447765920, 6443766512, 6447767120, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447769024, 6447771408, 6447771376, - 6455179744, + 6455179760, 6447774512 ], "bases": [ @@ -299632,28 +299634,28 @@ }, { "type_name": "CSOEconRentalHistory", - "vtable_address": 6461464232, + "vtable_address": 6461464216, "methods": [ 6447564784, - 6455181760, + 6455181776, 6447550800, 6447552768, 6447552816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447553008, 6447554736, 6447553280, 6443766512, 6447554176, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447555296, 6447556816, 6447556800, - 6455179744, + 6455179760, 6447560992, - 6455179744, + 6455179760, 6447562704 ], "bases": [ @@ -299697,22 +299699,22 @@ }, { "type_name": "CSOGameAccountSteamChina", - "vtable_address": 6461443400, + "vtable_address": 6461443384, "methods": [ 6447429456, - 6455181760, + 6455181776, 6447423296, 6447424416, 6447424464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447424496, 6447425904, 6447424704, 6443766512, 6447425536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447426000, 6447426096, 6447426080 @@ -299758,22 +299760,22 @@ }, { "type_name": "CSOItemCriteria", - "vtable_address": 6461489648, + "vtable_address": 6461489632, "methods": [ 6447785744, - 6455181760, + 6455181776, 6447765776, 6447768160, 6447768432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447768448, 6447771360, 6447769056, 6443766512, 6447770512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447771536, 6447771568, 6447771552 @@ -299819,26 +299821,26 @@ }, { "type_name": "CSOItemCriteriaCondition", - "vtable_address": 6461485224, + "vtable_address": 6461485208, "methods": [ 6447763680, - 6455181760, + 6455181776, 6447752672, 6447754816, 6447754928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447754944, 6447756720, 6447755536, 6443766512, 6447756384, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447756832, 6447756944, 6447756928, - 6455179744, + 6455179760, 6447763456 ], "bases": [ @@ -299882,22 +299884,22 @@ }, { "type_name": "CSOItemRecipe", - "vtable_address": 6461505184, + "vtable_address": 6461505168, "methods": [ 6447844816, - 6455181760, + 6455181776, 6447790992, 6447792000, 6447792560, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447792960, 6447797104, 6447794112, 6443766512, 6447795872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447798304, 6447799328, 6447799312 @@ -299943,28 +299945,28 @@ }, { "type_name": "CSOLobbyInvite", - "vtable_address": 6461467912, + "vtable_address": 6461467896, "methods": [ 6447600784, - 6455181760, + 6455181776, 6447591920, 6447592096, 6447592176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447592192, 6447593104, 6447592320, 6443766512, 6447592832, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447593120, 6447593312, 6447593296, - 6455179744, + 6455179760, 6447598912, - 6455179744, + 6455179760, 6447601040 ], "bases": [ @@ -300008,28 +300010,28 @@ }, { "type_name": "CSOPartyInvite", - "vtable_address": 6461466152, + "vtable_address": 6461466136, "methods": [ 6447583536, - 6455181760, + 6455181776, 6447574016, 6447575904, 6447575984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447576000, 6447577168, 6447576160, 6443766512, 6447576896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447577424, 6447577520, 6447577456, - 6455179744, + 6455179760, 6447582240, - 6455179744, + 6455179760, 6447583696 ], "bases": [ @@ -300073,22 +300075,22 @@ }, { "type_name": "CSOPersonaDataPublic", - "vtable_address": 6461455640, + "vtable_address": 6461455624, "methods": [ 6447450384, - 6455181760, + 6455181776, 6447439248, 6447440576, 6447440688, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447440704, 6447442384, 6447441024, 6443766512, 6447441936, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447442512, 6447444272, 6447444256 @@ -300134,26 +300136,26 @@ }, { "type_name": "CSOQuestProgress", - "vtable_address": 6461429464, + "vtable_address": 6461429448, "methods": [ 6447368576, - 6455181760, + 6455181776, 6447351856, 6447351984, 6447352032, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447352288, 6447354688, 6447352976, 6443766512, 6447354320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447356048, 6447359632, 6447358816, - 6455179744, + 6455179760, 6447367024 ], "bases": [ @@ -300197,26 +300199,26 @@ }, { "type_name": "CSOVolatileItemClaimedRewards", - "vtable_address": 6461386592, + "vtable_address": 6461386576, "methods": [ 6447332912, - 6455181760, + 6455181776, 6447319584, 6447320176, 6447320320, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447320352, 6447323216, 6447320688, 6443766512, 6447322304, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447323328, 6447325136, 6447324736, - 6455179744, + 6455179760, 6447331312 ], "bases": [ @@ -300260,26 +300262,26 @@ }, { "type_name": "CSOVolatileItemOffer", - "vtable_address": 6461384784, + "vtable_address": 6461384768, "methods": [ 6447310800, - 6455181760, + 6455181776, 6447293024, 6447293664, 6447293728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447293744, 6447295136, 6447293904, 6443766512, 6447294672, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447295168, 6447296000, 6447295984, - 6455179744, + 6455179760, 6447308208 ], "bases": [ @@ -300323,7 +300325,7 @@ }, { "type_name": "CSPerRoundStats_t", - "vtable_address": 6461809280, + "vtable_address": 6461809296, "methods": [ 6449314512, 6449306736, @@ -300343,30 +300345,30 @@ }, { "type_name": "CSVCMsgList_GameEvents", - "vtable_address": 6461583352, + "vtable_address": 6461583336, "methods": [ 6448296192, - 6455181760, + 6455181776, 6448281616, 6448281808, 6448281936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448281952, 6448282880, 6448282112, 6443766512, 6448282736, - 6455183120, - 6455184944, - 6448283472, - 6448288336, - 6448287824, - 6455179744, + 6455183136, + 6455184960, + 6448283216, + 6448287840, + 6448287040, + 6455179760, 6448294432, - 6455179744, + 6455179760, 6448296352, - 6455179744, + 6455179760, 6448297488 ], "bases": [ @@ -300410,25 +300412,25 @@ }, { "type_name": "CSVCMsgList_GameEvents_event_t", - "vtable_address": 6461580984, + "vtable_address": 6461580968, "methods": [ - 6448271488, - 6455181760, + 6448271312, + 6455181776, 6448264144, 6448264336, 6448264624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448264640, 6448265872, 6448265168, 6443766512, 6448265648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448265920, 6448267728, - 6448267712 + 6448266736 ], "bases": [ { @@ -300471,26 +300473,26 @@ }, { "type_name": "CSVCMsg_BSPDecal", - "vtable_address": 6461556320, + "vtable_address": 6461556304, "methods": [ 6448107984, - 6455181760, + 6455181776, 6448100496, 6448100880, 6448100992, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448101008, 6448102736, 6448101472, 6443766512, 6448102272, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448102752, 6448102784, 6448102768, - 6455179744, + 6455179760, 6448105424 ], "bases": [ @@ -300537,29 +300539,27 @@ "vtable_address": 6461580776, "methods": [ 6448267808, - 6455181760, + 6455181776, 6448262800, 6448262928, 6448262992, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448263024, 6448263632, 6448263152, 6443766512, 6448263520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448263648, 6448263680, 6448263664, - 6455179744, - 6448264160, - 6455179744, + 6455179760, 6448265936, - 6455179744, + 6455179760, 6448266016, - 6455179744, + 6455179760, 6448268528 ], "bases": [ @@ -300603,22 +300603,22 @@ }, { "type_name": "CSVCMsg_ClassInfo", - "vtable_address": 6461633568, + "vtable_address": 6461633552, "methods": [ 6448552928, - 6455181760, + 6455181776, 6448543392, 6448544080, 6448544272, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448544288, 6448545520, 6448544592, 6443766512, 6448545296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448546176, 6448546256, 6448546240 @@ -300664,22 +300664,22 @@ }, { "type_name": "CSVCMsg_ClassInfo_class_t", - "vtable_address": 6461623336, + "vtable_address": 6461623320, "methods": [ 6448537376, - 6455181760, + 6455181776, 6448532736, 6448534544, 6448534672, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448534688, 6448535616, 6448534912, 6443766512, 6448535392, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448535952, 6448536784, 6448536768 @@ -300725,22 +300725,22 @@ }, { "type_name": "CSVCMsg_ClearAllStringTables", - "vtable_address": 6461506880, + "vtable_address": 6461506864, "methods": [ 6447971680, - 6455181760, + 6455181776, 6448562400, 6448563200, 6448563440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448563472, 6448564304, 6448563568, 6443766512, 6448564144, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448564448, 6448565440, 6448565424 @@ -300786,22 +300786,22 @@ }, { "type_name": "CSVCMsg_CmdKeyValues", - "vtable_address": 6461618496, + "vtable_address": 6461618480, "methods": [ 6448511056, - 6455181760, + 6455181776, 6448506704, 6448507120, 6448507184, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448507216, 6448507936, 6448507280, 6443766512, 6448507648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448508400, 6448510624, 6448510608 @@ -300847,22 +300847,22 @@ }, { "type_name": "CSVCMsg_CreateStringTable", - "vtable_address": 6461604736, + "vtable_address": 6461604720, "methods": [ 6448427616, - 6455181760, + 6455181776, 6448413616, 6448414032, 6448414160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448414176, 6448417088, 6448414528, 6443766512, 6448416272, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448418912, 6448420048, 6448420032 @@ -300908,37 +300908,37 @@ }, { "type_name": "CSVCMsg_CrosshairAngle", - "vtable_address": 6461555008, + "vtable_address": 6461554992, "methods": [ 6448091360, - 6455181760, + 6455181776, 6448087248, 6448087488, 6448087584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448087600, 6448088304, 6448087728, 6443766512, 6448088192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448088480, 6448088512, 6448088496, - 6455179744, + 6455179760, 6448088912, - 6455179744, + 6455179760, 6448090416, - 6455179744, + 6455179760, 6448093808, - 6455179744, + 6455179760, 6448094320, - 6455179744, + 6455179760, 6448097888, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -300981,28 +300981,28 @@ }, { "type_name": "CSVCMsg_FixAngle", - "vtable_address": 6461547128, + "vtable_address": 6461547112, "methods": [ 6448074064, - 6455181760, + 6455181776, 6448068064, 6448068320, 6448068416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448068432, 6448069408, 6448068736, 6443766512, 6448069232, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448069424, 6448069696, 6448069680, - 6455179744, + 6455179760, 6448071344, - 6455179744, + 6455179760, 6448072336 ], "bases": [ @@ -301046,28 +301046,28 @@ }, { "type_name": "CSVCMsg_FlattenedSerializer", - "vtable_address": 6461544592, + "vtable_address": 6461544576, "methods": [ 6448061440, - 6455181760, + 6455181776, 6448034112, 6448035648, 6448036032, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448036048, 6448040496, 6448038144, 6443766512, 6448040144, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448040528, 6448040800, 6448040784, - 6455179744, + 6455179760, 6448058448, - 6455179744, + 6455179760, 6448058736 ], "bases": [ @@ -301111,22 +301111,22 @@ }, { "type_name": "CSVCMsg_FullFrameSplit", - "vtable_address": 6461609096, + "vtable_address": 6461609080, "methods": [ 6448481744, - 6455181760, + 6455181776, 6448473712, 6448474064, 6448474144, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448474160, 6448475520, 6448474336, 6443766512, 6448475088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448475536, 6448475568, 6448475552 @@ -301172,23 +301172,23 @@ }, { "type_name": "CSVCMsg_GameEvent", - "vtable_address": 6461579736, + "vtable_address": 6461579720, "methods": [ 6448261376, - 6455181760, - 6448244704, + 6455181776, + 6448244544, 6448246080, 6448246320, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448246336, - 6448247616, + 6448247472, 6448246592, 6443766512, 6448247184, - 6455183120, - 6455184944, - 6448247728, + 6455183136, + 6455184960, + 6448247712, 6448247760, 6448247744 ], @@ -301233,22 +301233,22 @@ }, { "type_name": "CSVCMsg_GameEventList", - "vtable_address": 6461582472, + "vtable_address": 6461582456, "methods": [ 6448293216, - 6455181760, + 6455181776, 6448270144, 6448271664, 6448271792, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448271856, 6448273088, 6448272144, 6443766512, 6448272944, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448274144, 6448277760, 6448277744 @@ -301294,22 +301294,22 @@ }, { "type_name": "CSVCMsg_GameEventList_descriptor_t", - "vtable_address": 6461580488, + "vtable_address": 6461580472, "methods": [ 6448263968, - 6455181760, + 6455181776, 6448248320, 6448248576, 6448248912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448248976, 6448251120, 6448249632, 6443766512, 6448250832, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448251568, 6448252224, 6448252208 @@ -301355,22 +301355,22 @@ }, { "type_name": "CSVCMsg_GameEventList_key_t", - "vtable_address": 6461578280, + "vtable_address": 6461578264, "methods": [ - 6448244544, - 6455181760, + 6448244560, + 6455181776, 6448239552, - 6448239712, + 6448239872, 6448239936, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448239952, 6448240768, 6448240064, 6443766512, 6448240544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448240816, 6448242544, 6448242512 @@ -301416,22 +301416,22 @@ }, { "type_name": "CSVCMsg_GameEvent_key_t", - "vtable_address": 6461577944, + "vtable_address": 6461577928, "methods": [ - 6448239776, - 6455181760, + 6448239712, + 6455181776, 6448227936, - 6448228368, + 6448228176, 6448228448, - 6455181808, - 6455178784, - 6448228480, + 6455181824, + 6455178800, + 6448228464, 6448230496, 6448228752, 6443766512, 6448229792, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448230640, 6448231200, 6448231184 @@ -301477,26 +301477,26 @@ }, { "type_name": "CSVCMsg_GameSessionConfiguration", - "vtable_address": 6461605024, + "vtable_address": 6461605008, "methods": [ - 6448431040, - 6455181760, + 6448431024, + 6455181776, 6448407520, 6448408208, 6448408512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448408528, 6448411856, - 6448409168, + 6448409152, 6443766512, 6448410896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448411872, 6448412048, 6448412032, - 6455179744, + 6455179760, 6448427936 ], "bases": [ @@ -301540,38 +301540,38 @@ }, { "type_name": "CSVCMsg_GetCvarValue", - "vtable_address": 6461559344, + "vtable_address": 6461559328, "methods": [ 6448140160, - 6455181760, + 6455181776, 6448130752, - 6448131008, + 6448131072, 6448131136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448131152, 6448132128, 6448131264, 6443766512, 6448131904, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448132144, 6448132176, 6448132160, - 6455179744, + 6455179760, 6448140336, - 6455179744, + 6455179760, 6448142288, - 6455179744, + 6455179760, 6448143616, - 6455179744, - 6448143984, - 6455179744, + 6455179760, + 6448144368, + 6455179760, 6448144624, - 6455179744, - 6448144944, - 6455179744, + 6455179760, + 6448146224, + 6455179760, 6448151232 ], "bases": [ @@ -301615,22 +301615,22 @@ }, { "type_name": "CSVCMsg_HLTVStatus", - "vtable_address": 6461616864, + "vtable_address": 6461616848, "methods": [ 6448490752, - 6455181760, + 6455181776, 6448486384, 6448486736, 6448486816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448486832, 6448488128, 6448487008, 6443766512, 6448487696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448488144, 6448488176, 6448488160 @@ -301676,7 +301676,7 @@ }, { "type_name": "CSVCMsg_HLTVStatus_t", - "vtable_address": 6462551272, + "vtable_address": 6462551304, "methods": [ 6452387760, 6452397280, @@ -301758,7 +301758,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464456152, + "complete_object_locator": 6464456160, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -301767,22 +301767,22 @@ }, { "type_name": "CSVCMsg_HLTVStatus_t", - "vtable_address": 6462551320, + "vtable_address": 6462551352, "methods": [ 6452386536, - 6455181760, + 6455181776, 6448486384, 6448486736, 6448486816, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448486832, 6448488128, 6448487008, 6443766512, 6448487696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448488144, 6448488176, 6448488160 @@ -301861,7 +301861,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464456312, + "complete_object_locator": 6464456320, "offset": 48, "constructor_displacement": 0, "class_attributes": 1 @@ -301870,26 +301870,26 @@ }, { "type_name": "CSVCMsg_HltvFixupOperatorStatus", - "vtable_address": 6461583720, + "vtable_address": 6461583704, "methods": [ 6448308768, - 6455181760, + 6455181776, 6448294272, 6448294960, 6448295024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448295040, 6448296048, 6448295344, 6443766512, 6448295824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448296096, 6448296496, 6448296464, - 6455179744, + 6455179760, 6448305840 ], "bases": [ @@ -301933,22 +301933,22 @@ }, { "type_name": "CSVCMsg_HltvReplay", - "vtable_address": 6461578424, + "vtable_address": 6461578408, "methods": [ 6448245376, - 6455181760, + 6455181776, 6448236928, 6448237088, 6448237136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448237152, 6448239296, 6448237440, 6443766512, 6448238464, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448239312, 6448239344, 6448239328 @@ -301994,22 +301994,22 @@ }, { "type_name": "CSVCMsg_Menu", - "vtable_address": 6461560176, + "vtable_address": 6461560160, "methods": [ 6448153008, - 6455181760, + 6455181776, 6448151216, 6448151376, 6448151440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448151456, 6448152272, 6448151568, 6443766512, 6448152048, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448152288, 6448152320, 6448152304 @@ -302055,28 +302055,28 @@ }, { "type_name": "CSVCMsg_NextMsgPredicted", - "vtable_address": 6461589704, + "vtable_address": 6461589688, "methods": [ 6448382368, - 6455181760, + 6455181776, 6448361216, 6448361312, 6448361360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448361376, 6448362240, 6448361472, 6443766512, 6448361952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448362256, - 6448362384, - 6448362288, - 6455179744, + 6448362432, + 6448362368, + 6455179760, 6448380048, - 6455179744, + 6455179760, 6448381728 ], "bases": [ @@ -302120,28 +302120,28 @@ }, { "type_name": "CSVCMsg_PacketEntities", - "vtable_address": 6461591432, + "vtable_address": 6461591416, "methods": [ 6448394928, - 6455181760, - 6448343728, + 6455181776, + 6448344000, 6448345168, 6448345648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448345664, - 6448351440, + 6448351504, 6448346896, 6443766512, - 6448349552, - 6455183120, - 6455184944, + 6448349616, + 6455183136, + 6455184960, 6448351520, 6448351552, 6448351536, - 6455179744, + 6455179760, 6448392384, - 6455179744, + 6455179760, 6448392624 ], "bases": [ @@ -302185,26 +302185,26 @@ }, { "type_name": "CSVCMsg_PacketEntities_alternate_baseline_t", - "vtable_address": 6461583880, + "vtable_address": 6461583864, "methods": [ 6448309424, - 6455181760, + 6455181776, 6448296080, 6448296432, 6448296480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448296560, 6448297456, 6448296656, 6443766512, 6448297152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448297920, 6448300080, 6448299440, - 6455179744, + 6455179760, 6448307088 ], "bases": [ @@ -302248,26 +302248,26 @@ }, { "type_name": "CSVCMsg_PacketEntities_non_transmitted_entities_t", - "vtable_address": 6461585688, + "vtable_address": 6461585672, "methods": [ 6448325680, - 6455181760, + 6455181776, 6448317728, 6448318096, 6448318160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448318176, 6448319072, 6448318288, 6443766512, 6448318848, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448319088, 6448319456, 6448319408, - 6455179744, + 6455179760, 6448321872 ], "bases": [ @@ -302311,26 +302311,26 @@ }, { "type_name": "CSVCMsg_PacketEntities_outofpvs_entity_updates_t", - "vtable_address": 6461586984, + "vtable_address": 6461586968, "methods": [ 6448340016, - 6455181760, + 6455181776, 6448331792, 6448332112, 6448332176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448332192, 6448333184, 6448332304, 6443766512, 6448332960, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448333376, 6448334608, 6448334576, - 6455179744, + 6455179760, 6448340176 ], "bases": [ @@ -302374,26 +302374,26 @@ }, { "type_name": "CSVCMsg_PacketReliable", - "vtable_address": 6461607616, + "vtable_address": 6461607600, "methods": [ 6448467600, - 6455181760, + 6455181776, 6448464624, 6448464832, 6448464944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448464960, 6448466096, 6448465072, 6443766512, 6448465760, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448466112, 6448466144, 6448466128, - 6455179744, + 6455179760, 6448466368 ], "bases": [ @@ -302437,22 +302437,22 @@ }, { "type_name": "CSVCMsg_PeerList", - "vtable_address": 6461649264, + "vtable_address": 6461649248, "methods": [ 6448553264, - 6455181760, + 6455181776, 6448546224, 6448546896, 6448547152, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448547344, 6448548832, 6448548016, 6443766512, 6448548688, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448548864, 6448549120, 6448549040 @@ -302498,26 +302498,26 @@ }, { "type_name": "CSVCMsg_Prefetch", - "vtable_address": 6461523576, + "vtable_address": 6461523560, "methods": [ 6448052736, - 6455181760, + 6455181776, 6448046208, 6448046448, 6448046480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448046496, 6448047472, 6448046592, 6443766512, 6448047168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448047488, 6448047536, 6448047520, - 6455179744, + 6455179760, 6448050592 ], "bases": [ @@ -302561,22 +302561,22 @@ }, { "type_name": "CSVCMsg_Print", - "vtable_address": 6461508832, + "vtable_address": 6461508816, "methods": [ 6447997504, - 6455181760, + 6455181776, 6447983440, 6447984672, 6447984752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447984768, 6447985744, 6447985072, 6443766512, 6447985632, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447987040, 6447990480, 6447990464 @@ -302622,22 +302622,22 @@ }, { "type_name": "CSVCMsg_RconServerDetails", - "vtable_address": 6461619760, + "vtable_address": 6461619744, "methods": [ 6448521424, - 6455181760, + 6455181776, 6448513648, 6448513872, 6448513968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448513984, 6448516192, 6448515008, 6443766512, 6448516032, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448518752, 6448518928, 6448518880 @@ -302683,26 +302683,26 @@ }, { "type_name": "CSVCMsg_SendTable", - "vtable_address": 6461577320, + "vtable_address": 6461577304, "methods": [ 6448234384, - 6455181760, + 6455181776, 6448200288, 6448200800, 6448201152, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448201168, 6448202576, 6448201408, 6443766512, 6448202320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448202592, 6448202624, 6448202608, - 6455179744, + 6455179760, 6448231376 ], "bases": [ @@ -302746,26 +302746,26 @@ }, { "type_name": "CSVCMsg_SendTable_sendprop_t", - "vtable_address": 6461563664, + "vtable_address": 6461563648, "methods": [ 6448193504, - 6455181760, + 6455181776, 6448180192, 6448180608, 6448180720, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448180736, 6448183232, 6448181072, 6443766512, 6448182480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448183856, 6448184336, 6448184320, - 6455179744, + 6455179760, 6448192496 ], "bases": [ @@ -302809,22 +302809,22 @@ }, { "type_name": "CSVCMsg_ServerInfo", - "vtable_address": 6461620848, + "vtable_address": 6461620832, "methods": [ 6448528608, - 6455181760, + 6455181776, 6448513664, 6448514704, 6448515392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448515408, 6448518720, 6448516208, 6443766512, 6448517680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448518768, 6448519328, 6448519312 @@ -302870,26 +302870,26 @@ }, { "type_name": "CSVCMsg_ServerSteamID", - "vtable_address": 6461617680, + "vtable_address": 6461617664, "methods": [ 6448501120, - 6455181760, + 6455181776, 6448497888, 6448498016, 6448498048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448498064, 6448498672, 6448498112, 6443766512, 6448498496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448498704, 6448499264, 6448499248, - 6455179744, + 6455179760, 6448499888 ], "bases": [ @@ -302933,22 +302933,22 @@ }, { "type_name": "CSVCMsg_SetPause", - "vtable_address": 6461649664, + "vtable_address": 6461649648, "methods": [ 6447971248, - 6455181760, + 6455181776, 6448560608, 6448561760, 6448561792, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448561824, 6448562384, 6448561872, 6443766512, 6448562272, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448562640, 6448564064, 6448564048 @@ -302994,30 +302994,30 @@ }, { "type_name": "CSVCMsg_SetView", - "vtable_address": 6461544768, + "vtable_address": 6461544752, "methods": [ 6448062464, - 6455181760, + 6455181776, 6448056672, 6448056960, 6448057008, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448057024, 6448057920, 6448057120, 6443766512, 6448057616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448058320, 6448058384, 6448058368, - 6455179744, + 6455179760, 6448062160, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6448063424 ], "bases": [ @@ -303061,26 +303061,26 @@ }, { "type_name": "CSVCMsg_Sounds", - "vtable_address": 6461521072, + "vtable_address": 6461521056, "methods": [ 6448044656, - 6455181760, + 6455181776, 6448022208, 6448023376, - 6448023584, - 6455181808, - 6455178784, + 6448024096, + 6455181824, + 6455178800, 6448024112, 6448025216, - 6448024496, + 6448024512, 6443766512, 6448025040, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448026976, 6448028224, 6448028208, - 6455179744, + 6455179760, 6448044816 ], "bases": [ @@ -303124,26 +303124,26 @@ }, { "type_name": "CSVCMsg_Sounds_sounddata_t", - "vtable_address": 6461517144, + "vtable_address": 6461517128, "methods": [ 6448018464, - 6455181760, + 6455181776, 6448000544, 6448000976, 6448001072, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448001088, 6448006352, 6448002288, 6443766512, 6448004640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448007216, 6448007264, 6448007248, - 6455179744, + 6455179760, 6448017056 ], "bases": [ @@ -303187,22 +303187,22 @@ }, { "type_name": "CSVCMsg_SplitScreen", - "vtable_address": 6461557920, + "vtable_address": 6461557904, "methods": [ 6448123776, - 6455181760, + 6455181776, 6448114112, 6448114288, 6448114336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448114352, 6448115536, 6448114480, 6443766512, 6448115136, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448115552, 6448115600, 6448115584 @@ -303248,22 +303248,22 @@ }, { "type_name": "CSVCMsg_StopSound", - "vtable_address": 6461545872, + "vtable_address": 6461545856, "methods": [ 6448069760, - 6455181760, - 6448066688, - 6448066832, - 6448066880, - 6455181808, - 6455178784, + 6455181776, + 6448066704, + 6448066848, + 6448066944, + 6455181824, + 6455178800, 6448066960, 6448067424, 6448066992, 6443766512, 6448067312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448067632, 6448067824, 6448067808 @@ -303309,22 +303309,22 @@ }, { "type_name": "CSVCMsg_TempEntities", - "vtable_address": 6461602960, + "vtable_address": 6461602944, "methods": [ 6448405840, - 6455181760, + 6455181776, 6448398384, 6448398688, 6448398768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448398784, 6448400224, 6448399232, 6443766512, 6448399952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448400416, 6448401072, 6448401056 @@ -303370,26 +303370,26 @@ }, { "type_name": "CSVCMsg_UpdateStringTable", - "vtable_address": 6461605696, + "vtable_address": 6461605680, "methods": [ 6448443072, - 6455181760, + 6455181776, 6448431600, 6448433088, 6448433168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448433520, 6448434608, 6448433696, 6443766512, 6448434272, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448435216, 6448437392, 6448437376, - 6455179744, + 6455179760, 6448441408 ], "bases": [ @@ -303433,28 +303433,28 @@ }, { "type_name": "CSVCMsg_UserCommands", - "vtable_address": 6461588056, + "vtable_address": 6461588040, "methods": [ 6448353872, - 6455181760, + 6455181776, 6448332944, 6448333392, 6448333600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448333632, 6448334592, 6448334016, 6443766512, 6448334432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448335520, 6448336624, 6448336560, - 6455179744, + 6455179760, 6448351648, - 6455179744, + 6455179760, 6448352176 ], "bases": [ @@ -303498,7 +303498,7 @@ }, { "type_name": "CSVCMsg_UserCommands_t", - "vtable_address": 6462778840, + "vtable_address": 6462778872, "methods": [ 6452931760, 6452944640, @@ -303589,22 +303589,22 @@ }, { "type_name": "CSVCMsg_UserCommands_t", - "vtable_address": 6462778888, + "vtable_address": 6462778920, "methods": [ 6452929328, - 6455181760, + 6455181776, 6448332944, 6448333392, 6448333600, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448333632, 6448334592, 6448334016, 6443766512, 6448334432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448335520, 6448336624, 6448336560 @@ -303692,22 +303692,22 @@ }, { "type_name": "CSVCMsg_UserMessage", - "vtable_address": 6461561648, + "vtable_address": 6461561632, "methods": [ 6448178272, - 6455181760, + 6455181776, 6448160656, 6448160912, 6448160992, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448161008, 6448162064, 6448161152, 6443766512, 6448161728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448162096, 6448164528, 6448163936 @@ -303753,28 +303753,28 @@ }, { "type_name": "CSVCMsg_VoiceData", - "vtable_address": 6461606944, + "vtable_address": 6461606928, "methods": [ 6448459936, - 6455181760, + 6455181776, 6448447392, 6448447648, 6448448000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448448016, 6448449856, 6448448256, 6443766512, 6448449248, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448450128, 6448451152, 6448451136, - 6455179744, + 6455179760, 6448456288, - 6455179744, + 6455179760, 6448457104 ], "bases": [ @@ -303818,22 +303818,22 @@ }, { "type_name": "CSVCMsg_VoiceInit", - "vtable_address": 6461507696, + "vtable_address": 6461507680, "methods": [ 6447981328, - 6455181760, + 6455181776, 6447973008, 6447973328, 6447973424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447973440, 6447974672, 6447973600, 6443766512, 6447974336, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447975696, 6447976752, 6447976736 @@ -303879,7 +303879,7 @@ }, { "type_name": "CSave", - "vtable_address": 6462208200, + "vtable_address": 6462208232, "methods": [ 6450642672 ], @@ -303952,7 +303952,7 @@ }, { "type_name": "CSave", - "vtable_address": 6462208216, + "vtable_address": 6462208248, "methods": [ 6450638860, 6451221312, @@ -304104,7 +304104,7 @@ }, { "type_name": "CSaveRestoreBlockSet", - "vtable_address": 6462203624, + "vtable_address": 6462203656, "methods": [ 6450554592, 6450554624, @@ -304160,7 +304160,7 @@ }, { "type_name": "CSaveRestoreFileData", - "vtable_address": 6462208864, + "vtable_address": 6462208896, "methods": [ 6450753872, 6450760176, @@ -304198,7 +304198,7 @@ }, { "type_name": "CSaveRestoreFileSystemPassthrough", - "vtable_address": 6462268632, + "vtable_address": 6462268664, "methods": [ 6450896208, 6450896256, @@ -304246,7 +304246,7 @@ }, { "type_name": "CSaveRestoreShared", - "vtable_address": 6462273424, + "vtable_address": 6462273456, "methods": [ 6450982912 ], @@ -304262,18 +304262,18 @@ }, { "type_name": "CSceneEntity", - "vtable_address": 6462883968, + "vtable_address": 6462883984, "methods": [ 6453490672, 6453418128, 6445463120, - 6456889008, + 6456889024, 6453546768, 6451753984, 6453618320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453420016, 6453636832, 6451865168, @@ -304303,7 +304303,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488560, 6453560064, 6453583424, @@ -304627,7 +304627,7 @@ }, { "type_name": "CSceneEntity", - "vtable_address": 6462886320, + "vtable_address": 6462886336, "methods": [ 6453622784, 6453467776, @@ -304702,18 +304702,18 @@ }, { "type_name": "CSceneEntityAlias_logic_choreographed_scene", - "vtable_address": 6462886352, + "vtable_address": 6462886368, "methods": [ 6453490672, 6453418192, 6445463120, - 6456889008, + 6456889024, 6453546768, 6451753984, 6453618320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453420016, 6453636832, 6451865168, @@ -304743,7 +304743,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488576, 6453560080, 6453583472, @@ -305081,7 +305081,7 @@ }, { "type_name": "CSceneEntityAlias_logic_choreographed_scene", - "vtable_address": 6462888704, + "vtable_address": 6462888720, "methods": [ 6453622784, 6453467776, @@ -305170,7 +305170,7 @@ }, { "type_name": "CSceneFindMarkFilter", - "vtable_address": 6462893072, + "vtable_address": 6462893088, "methods": [ 6453613216 ], @@ -305201,18 +305201,18 @@ }, { "type_name": "CSceneListManager", - "vtable_address": 6462882016, + "vtable_address": 6462882032, "methods": [ 6446805888, 6453418256, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453420384, 6451932368, 6451865168, @@ -305242,7 +305242,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488592, 6453560096, 6453583520, @@ -305516,7 +305516,7 @@ }, { "type_name": "CSceneManager", - "vtable_address": 6462872824, + "vtable_address": 6462872872, "methods": [ 6443752688, 6443767152, @@ -305635,7 +305635,7 @@ }, { "type_name": "CSceneManager", - "vtable_address": 6462873320, + "vtable_address": 6462873368, "methods": [ 6453354496, 6453354848, @@ -305709,7 +305709,7 @@ }, { "type_name": "CScenePrecacheSystem", - "vtable_address": 6462157456, + "vtable_address": 6462157504, "methods": [ 6443752688, 6443767152, @@ -305814,21 +305814,21 @@ }, { "type_name": "CSchemaAttributeType_Default", - "vtable_address": 6463049520, + "vtable_address": 6463049536, "methods": [ 6453955760, - 6454130608, - 6454202144, - 6454072304, + 6454130624, + 6454202160, + 6454072320, 6453965200, - 6454072368, - 6454201824, - 6454144080, - 6454283968, - 6454213408, - 6454070288, - 6454073296, - 6454072176 + 6454072384, + 6454201840, + 6454144096, + 6454283984, + 6454213424, + 6454070304, + 6454073312, + 6454072192 ], "bases": [ { @@ -305885,21 +305885,21 @@ }, { "type_name": "CSchemaAttributeType_Float", - "vtable_address": 6463049408, + "vtable_address": 6463049424, "methods": [ 6453955808, - 6454130720, - 6454202176, - 6454072320, + 6454130736, + 6454202192, + 6454072336, 6453965328, - 6454072832, - 6454201888, - 6454144096, - 6454283984, - 6454214272, - 6454070304, - 6454073504, - 6454072208 + 6454072848, + 6454201904, + 6454144112, + 6454284000, + 6454214288, + 6454070320, + 6454073520, + 6454072224 ], "bases": [ { @@ -305956,21 +305956,21 @@ }, { "type_name": "CSchemaAttributeType_String", - "vtable_address": 6463048736, + "vtable_address": 6463048752, "methods": [ 6453955856, - 6454130944, - 6454202240, - 6454072352, + 6454130960, + 6454202256, + 6454072368, 6453965376, - 6454072960, - 6454202016, - 6454144160, - 6454284048, - 6454213504, - 6454070336, - 6454073280, - 6454072160 + 6454072976, + 6454202032, + 6454144176, + 6454284064, + 6454213520, + 6454070352, + 6454073296, + 6454072176 ], "bases": [ { @@ -306041,21 +306041,21 @@ }, { "type_name": "CSchemaAttributeType_Uint32", - "vtable_address": 6463049184, + "vtable_address": 6463049200, "methods": [ 6453955904, - 6454130608, - 6454202144, - 6454072304, + 6454130624, + 6454202160, + 6454072320, 6453965632, - 6454073024, - 6454201824, - 6454144080, - 6454283968, - 6454213408, - 6454070320, - 6454073712, - 6454072240 + 6454073040, + 6454201840, + 6454144096, + 6454283984, + 6454213424, + 6454070336, + 6454073728, + 6454072256 ], "bases": [ { @@ -306112,21 +306112,21 @@ }, { "type_name": "CSchemaAttributeType_Vector", - "vtable_address": 6463048960, + "vtable_address": 6463048976, "methods": [ 6453955952, - 6454130832, - 6454202208, - 6454072336, + 6454130848, + 6454202224, + 6454072352, 6453965664, - 6454073152, - 6454201952, - 6454144112, - 6454284000, - 6454213472, - 6454070336, - 6454073920, - 6454072272 + 6454073168, + 6454201968, + 6454144128, + 6454284016, + 6454213488, + 6454070352, + 6454073936, + 6454072288 ], "bases": [ { @@ -306185,7 +306185,7 @@ "type_name": "CSchemaInstallCallback", "vtable_address": 6463713472, "methods": [ - 6459870144 + 6459870160 ], "bases": [ { @@ -306214,9 +306214,9 @@ }, { "type_name": "CSchemaRegistration_animlib", - "vtable_address": 6463198888, + "vtable_address": 6463198920, "methods": [ - 6455895408 + 6455895424 ], "bases": [ { @@ -306245,9 +306245,9 @@ }, { "type_name": "CSchemaRegistration_entity2", - "vtable_address": 6463271776, + "vtable_address": 6463271808, "methods": [ - 6456954992 + 6456955008 ], "bases": [ { @@ -306278,7 +306278,7 @@ "type_name": "CSchemaRegistration_mathlib_extended", "vtable_address": 6463595344, "methods": [ - 6457786464 + 6457786480 ], "bases": [ { @@ -306309,7 +306309,7 @@ "type_name": "CSchemaRegistration_navlib", "vtable_address": 6463614936, "methods": [ - 6458227728 + 6458227744 ], "bases": [ { @@ -306340,7 +306340,7 @@ "type_name": "CSchemaRegistration_pulse_runtime_lib", "vtable_address": 6463655056, "methods": [ - 6459020800 + 6459020816 ], "bases": [ { @@ -306369,9 +306369,9 @@ }, { "type_name": "CSchemaRegistration_server", - "vtable_address": 6463150008, + "vtable_address": 6463150040, "methods": [ - 6455168048 + 6455168064 ], "bases": [ { @@ -306402,7 +306402,7 @@ "type_name": "CSchemaRegistration_tier2", "vtable_address": 6463713512, "methods": [ - 6459872144 + 6459872160 ], "bases": [ { @@ -306431,7 +306431,7 @@ }, { "type_name": "CScrambleTeams", - "vtable_address": 6461738832, + "vtable_address": 6461738848, "methods": [ 6444557600, 6448896336, @@ -306508,11 +306508,11 @@ }, { "type_name": "CScriptComponent", - "vtable_address": 6463268808, + "vtable_address": 6463268840, "methods": [ - 6456950816, - 6456954960, - 6456945632 + 6456950832, + 6456954976, + 6456945648 ], "bases": [ { @@ -306583,7 +306583,7 @@ }, { "type_name": "CScriptConsoleCommand", - "vtable_address": 6461092768, + "vtable_address": 6461092752, "methods": [ 6446369824, 6446324688 @@ -306615,7 +306615,7 @@ }, { "type_name": "CScriptItem", - "vtable_address": 6462598128, + "vtable_address": 6462598160, "methods": [ 6446805696, 6452598784, @@ -306624,9 +306624,9 @@ 6452652416, 6450317360, 6452671680, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -306656,7 +306656,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624144, 6452653808, 6452658320, @@ -307045,7 +307045,7 @@ }, { "type_name": "CScriptItem", - "vtable_address": 6462600664, + "vtable_address": 6462600696, "methods": [ 6443908752, 6443918000 @@ -307161,26 +307161,26 @@ }, { "type_name": "CScriptNavBlocker", - "vtable_address": 6463097480, + "vtable_address": 6463097512, "methods": [ 6446805920, - 6454360832, + 6454360848, 6450347280, - 6456889008, - 6454473280, + 6456889024, + 6454473296, 6450317376, - 6454490768, - 6456887568, - 6456894000, + 6454490784, + 6456887584, 6456894016, - 6454361792, - 6454498704, + 6456894032, + 6454361808, + 6454498720, 6450455600, 6451818320, 6451744928, 6443767248, 6450373856, - 6454418272, + 6454418288, 6450498736, 6451886672, 6445536336, @@ -307202,10 +307202,10 @@ 6443746624, 6443745952, 6443746320, - 6456895856, - 6454439264, - 6454475216, - 6454487136, + 6456895872, + 6454439280, + 6454475232, + 6454487152, 6443738704, 6446805328, 6445582096, @@ -307532,10 +307532,10 @@ }, { "type_name": "CScriptNavBlocker", - "vtable_address": 6463099656, + "vtable_address": 6463099688, "methods": [ - 6454359680, - 6454463488 + 6454359696, + 6454463504 ], "bases": [ { @@ -307634,7 +307634,7 @@ }, { "type_name": "CScriptSpawnGroupEntityFilterProxy", - "vtable_address": 6461098128, + "vtable_address": 6461098112, "methods": [ 6446324864, 6446407520 @@ -307666,18 +307666,18 @@ }, { "type_name": "CScriptTriggerHurt", - "vtable_address": 6462978712, + "vtable_address": 6462978728, "methods": [ 6445499856, 6453711856, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453822176, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -307707,7 +307707,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758464, 6453807472, 6453810240, @@ -308047,18 +308047,18 @@ }, { "type_name": "CScriptTriggerMultiple", - "vtable_address": 6462981144, + "vtable_address": 6462981160, "methods": [ 6445499856, 6453711920, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453822320, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -308088,7 +308088,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758480, 6453807488, 6453810288, @@ -308426,18 +308426,18 @@ }, { "type_name": "CScriptTriggerOnce", - "vtable_address": 6462985624, + "vtable_address": 6462985640, "methods": [ 6445499856, 6453712064, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453822464, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -308467,7 +308467,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758496, 6453807504, 6453810336, @@ -308819,18 +308819,18 @@ }, { "type_name": "CScriptTriggerPush", - "vtable_address": 6462995856, + "vtable_address": 6462995872, "methods": [ 6445499856, 6453712208, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453822608, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -308860,7 +308860,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758512, 6453807520, 6453810384, @@ -309198,7 +309198,7 @@ }, { "type_name": "CScriptUniformRandomStream", - "vtable_address": 6461091280, + "vtable_address": 6461091264, "methods": [ 6446595312, 6446324912, @@ -309216,18 +309216,18 @@ }, { "type_name": "CScriptedSequence", - "vtable_address": 6462896584, + "vtable_address": 6462896600, "methods": [ 6446805888, 6453418448, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453618544, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453421200, 6453636896, 6451865168, @@ -309257,7 +309257,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488608, 6453560112, 6453583568, @@ -309503,7 +309503,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 6461068304, + "vtable_address": 6461068288, "methods": [ 6443752688, 6443767152, @@ -309636,7 +309636,7 @@ }, { "type_name": "CScrubEntityGameSystem", - "vtable_address": 6461068800, + "vtable_address": 6461068784, "methods": [ 6446521280, 6446521968 @@ -309710,7 +309710,7 @@ }, { "type_name": "CScrubSystemEventListener", - "vtable_address": 6461068280, + "vtable_address": 6461068264, "methods": [ 6446521952, 6446521984 @@ -309742,7 +309742,7 @@ }, { "type_name": "CSendPlayerLoadoutHelper", - "vtable_address": 6462089552, + "vtable_address": 6462089568, "methods": [ 6443752688, 6443767152, @@ -309847,7 +309847,7 @@ }, { "type_name": "CServerEntitySubclassUtils", - "vtable_address": 6461015712, + "vtable_address": 6461015696, "methods": [ 6445893632, 6445893728, @@ -310098,13 +310098,13 @@ 6446805888, 6444438960, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -310134,7 +310134,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818288, 6446826896, 6444558224, @@ -310385,13 +310385,13 @@ 6446805920, 6443958480, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -310421,7 +310421,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450389680, 6446826912, 6444052704, @@ -310714,13 +310714,13 @@ 6446805888, 6445686304, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -310750,7 +310750,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451818304, 6446826928, 6445738192, @@ -311010,7 +311010,7 @@ }, { "type_name": "CServerPulseGameSystem", - "vtable_address": 6461668488, + "vtable_address": 6461668472, "methods": [ 6443752688, 6443767152, @@ -311157,7 +311157,7 @@ }, { "type_name": "CServerPulseGameSystem", - "vtable_address": 6461668984, + "vtable_address": 6461668968, "methods": [ 6448760752, 6448760768, @@ -311247,7 +311247,7 @@ }, { "type_name": "CServerPulseGameSystem", - "vtable_address": 6461669024, + "vtable_address": 6461669008, "methods": [ 6448764752, 6448761408, @@ -311337,18 +311337,18 @@ }, { "type_name": "CServerRagdollTrigger", - "vtable_address": 6463015640, + "vtable_address": 6463015656, "methods": [ 6445499856, 6453712272, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453822752, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -311378,7 +311378,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758528, 6453807536, 6453810432, @@ -311702,20 +311702,20 @@ }, { "type_name": "CServerToolsInfo", - "vtable_address": 6462548568, + "vtable_address": 6462548600, "methods": [ - 6452340288, - 6452340640, + 6452340832, + 6452340928, 6452334320, - 6452342848, - 6452342928, + 6452342912, + 6452342976, 6452334336, - 6452342944, - 6452340128, - 6452340960, + 6452343024, + 6452340816, + 6452340992, 6452334352, 6452334368, - 6452343280 + 6452343456 ], "bases": [ { @@ -311833,7 +311833,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464453592, + "complete_object_locator": 6464453656, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -311842,7 +311842,7 @@ }, { "type_name": "CServerViewAngleChangeSystem", - "vtable_address": 6462161800, + "vtable_address": 6462161864, "methods": [ 6443752688, 6443767152, @@ -311947,7 +311947,7 @@ }, { "type_name": "CShadowCastingLightTracker", - "vtable_address": 6462831328, + "vtable_address": 6462831408, "methods": [ 6453075136, 6453075888 @@ -311979,7 +311979,7 @@ }, { "type_name": "CSharedEnvironmentEntityFilter", - "vtable_address": 6462581656, + "vtable_address": 6462581720, "methods": [ 6452564240, 6452563440, @@ -312012,7 +312012,7 @@ }, { "type_name": "CSharedEnvironmentEntityFilter_PreviewLighting", - "vtable_address": 6462581952, + "vtable_address": 6462582016, "methods": [ 6452564976, 6452563440, @@ -312059,7 +312059,7 @@ }, { "type_name": "CSharedMapManager", - "vtable_address": 6462580536, + "vtable_address": 6462580600, "methods": [ 6443752688, 6443767152, @@ -312164,7 +312164,7 @@ }, { "type_name": "CShatterGlassBreakableSystem", - "vtable_address": 6462560416, + "vtable_address": 6462560448, "methods": [ 6452387856, 6452495712 @@ -312196,7 +312196,7 @@ }, { "type_name": "CShatterGlassGameSystem", - "vtable_address": 6462550320, + "vtable_address": 6462550352, "methods": [ 6443752688, 6443767152, @@ -312292,7 +312292,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464453048, + "complete_object_locator": 6464453112, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -312301,7 +312301,7 @@ }, { "type_name": "CShatterGlassShard", - "vtable_address": 6462556960, + "vtable_address": 6462556992, "methods": [ 6452547744, 6452521888, @@ -312334,7 +312334,7 @@ }, { "type_name": "CShatterGlassShardMgr", - "vtable_address": 6462548424, + "vtable_address": 6462548456, "methods": [ 6452334816, 6445901264, @@ -312392,7 +312392,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464452824, + "complete_object_locator": 6464452888, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -312401,7 +312401,7 @@ }, { "type_name": "CShatterGlassShardMgr", - "vtable_address": 6462548504, + "vtable_address": 6462548536, "methods": [ 6452334384, 6452334496, @@ -312455,7 +312455,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464453008, + "complete_object_locator": 6464453072, "offset": 8, "constructor_displacement": 0, "class_attributes": 1 @@ -312464,7 +312464,7 @@ }, { "type_name": "CShatterGlassShardPhysics", - "vtable_address": 6462554272, + "vtable_address": 6462554304, "methods": [ 6446995328, 6452387920, @@ -312473,9 +312473,9 @@ 6452495024, 6450317360, 6452532592, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6452932912, 6453059968, 6450455584, @@ -312505,7 +312505,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452445456, 6445854016, 6452521936, @@ -312937,7 +312937,7 @@ }, { "type_name": "CShatterGlassShardPhysics", - "vtable_address": 6462556816, + "vtable_address": 6462556848, "methods": [ 6445170480, 6445186928 @@ -313095,7 +313095,7 @@ }, { "type_name": "CShatterGlassShardPhysics", - "vtable_address": 6462556840, + "vtable_address": 6462556872, "methods": [ 6452386548, 6446995248, @@ -313265,7 +313265,7 @@ }, { "type_name": "CShatterGlassShardPhysics::NetworkVar_m_ShardDesc", - "vtable_address": 6462554224, + "vtable_address": 6462554256, "methods": [ 6452521984, 6452481392, @@ -313300,18 +313300,18 @@ }, { "type_name": "CShower", - "vtable_address": 6462518528, + "vtable_address": 6462518560, "methods": [ 6446805920, 6452171136, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452296736, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -313341,7 +313341,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452208240, 6452268192, 6452273216, @@ -313643,7 +313643,7 @@ }, { "type_name": "CSimSequenceSetup", - "vtable_address": 6462344192, + "vtable_address": 6462344224, "methods": [ 6451541936, 6451541808 @@ -313675,7 +313675,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 6461071376, + "vtable_address": 6461071360, "methods": [ 6443752688, 6443767152, @@ -313794,7 +313794,7 @@ }, { "type_name": "CSimThinkManager", - "vtable_address": 6461071872, + "vtable_address": 6461071856, "methods": [ 6446593136, 6446446320, @@ -313858,18 +313858,18 @@ }, { "type_name": "CSimpleMarkupVolumeTagged", - "vtable_address": 6462671960, + "vtable_address": 6462671992, "methods": [ 6446995312, 6452598864, 6450347280, - 6456889008, + 6456889024, 6452652368, 6452606048, 6452672224, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452601680, 6452677296, 6450455600, @@ -313899,7 +313899,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624160, 6452653824, 6452658368, @@ -314220,7 +314220,7 @@ }, { "type_name": "CSingleUserPlusObserversFilter", - "vtable_address": 6462320760, + "vtable_address": 6462320792, "methods": [ 6451398816, 6451409088, @@ -314318,36 +314318,36 @@ }, { "type_name": "CSkeletonAnimationController", - "vtable_address": 6462343000, + "vtable_address": 6462343032, "methods": [ 6451620240, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6451543792, 6451543760, 6450329168, 6451543776, 6450328864, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6451581376, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6451573344, 6451626912, 6451564816, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732 ], "bases": [ { @@ -314376,7 +314376,7 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 6462342752, + "vtable_address": 6462342784, "methods": [ 6451540032, 6451543472, @@ -314448,7 +314448,7 @@ }, { "type_name": "CSkeletonInstance", - "vtable_address": 6462342984, + "vtable_address": 6462343016, "methods": [ 6451621040 ], @@ -314493,7 +314493,7 @@ }, { "type_name": "CSkeletonInstance::NetworkVar_m_modelState", - "vtable_address": 6462342712, + "vtable_address": 6462342744, "methods": [ 6451605072, 6451606816, @@ -314527,18 +314527,18 @@ }, { "type_name": "CSkyCamera", - "vtable_address": 6462901144, + "vtable_address": 6462901160, "methods": [ 6446805888, 6453418512, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453618912, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453421392, 6451932368, 6451865168, @@ -314568,7 +314568,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488624, 6447028192, 6453583616, @@ -314814,7 +314814,7 @@ }, { "type_name": "CSkyCamera::NetworkVar_m_skyboxData", - "vtable_address": 6462901104, + "vtable_address": 6462901120, "methods": [ 6451893808, 6453535184, @@ -314848,18 +314848,18 @@ }, { "type_name": "CSkyboxReference", - "vtable_address": 6462903096, + "vtable_address": 6462903112, "methods": [ 6446805888, 6453418640, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453619216, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453421632, 6453636928, 6451865168, @@ -314889,7 +314889,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488640, 6447028208, 6453583664, @@ -315135,7 +315135,7 @@ }, { "type_name": "CSmokeGrenade", - "vtable_address": 6462076128, + "vtable_address": 6462076144, "methods": [ 6446805904, 6449673408, @@ -315144,9 +315144,9 @@ 6449458272, 6450317360, 6449686048, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -315176,7 +315176,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681456, 6449685024, 6449685360, @@ -315237,7 +315237,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -315460,14 +315460,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449407632, @@ -315761,14 +315761,14 @@ }, { "type_name": "CSmokeGrenade", - "vtable_address": 6462079784, + "vtable_address": 6462079800, "methods": [ 6449685396, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -315937,7 +315937,7 @@ }, { "type_name": "CSmokeGrenade", - "vtable_address": 6462079840, + "vtable_address": 6462079856, "methods": [ 6449606576, 6449574480 @@ -316109,7 +316109,7 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 6461879560, + "vtable_address": 6461879576, "methods": [ 6446805904, 6449384928, @@ -316118,9 +316118,9 @@ 6449125920, 6450317360, 6449484640, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -316150,7 +316150,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449428496, 6449461600, 6449471664, @@ -316631,7 +316631,7 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 6461882272, + "vtable_address": 6461882288, "methods": [ 6443908752, 6443918000 @@ -316817,7 +316817,7 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 6461882296, + "vtable_address": 6461882312, "methods": [ 6449383596, 6449424240 @@ -317003,7 +317003,7 @@ }, { "type_name": "CSmokeGrenadeProjectile", - "vtable_address": 6461882320, + "vtable_address": 6461882336, "methods": [ 6449383608 ], @@ -317188,7 +317188,7 @@ }, { "type_name": "CSmokeVolumeSystem", - "vtable_address": 6461810432, + "vtable_address": 6461810448, "methods": [ 6443752688, 6443767152, @@ -317293,7 +317293,7 @@ }, { "type_name": "CSosCopyRecipientFilter", - "vtable_address": 6461062712, + "vtable_address": 6461062696, "methods": [ 6446325168, 6446440864, @@ -317329,7 +317329,7 @@ }, { "type_name": "CSosEventInfoWithFieldData_t", - "vtable_address": 6461062152, + "vtable_address": 6461062136, "methods": [ 6446325216 ], @@ -317360,7 +317360,7 @@ }, { "type_name": "CSosEventInfo_t", - "vtable_address": 6461062136, + "vtable_address": 6461062120, "methods": [ 6446325408 ], @@ -317376,7 +317376,7 @@ }, { "type_name": "CSosFilterSetLibraryStackFieldsInfo_t", - "vtable_address": 6461064752, + "vtable_address": 6461064736, "methods": [ 6446325456 ], @@ -317449,7 +317449,7 @@ }, { "type_name": "CSosFilterSetSoundEventFieldsInfo_t", - "vtable_address": 6461064736, + "vtable_address": 6461064720, "methods": [ 6446325664 ], @@ -317522,7 +317522,7 @@ }, { "type_name": "CSosFilterStartSoundEventInfo_t", - "vtable_address": 6461064688, + "vtable_address": 6461064672, "methods": [ 6446325872 ], @@ -317595,7 +317595,7 @@ }, { "type_name": "CSosFilterStopSoundEventHashInfo_t", - "vtable_address": 6461064720, + "vtable_address": 6461064704, "methods": [ 6446326080 ], @@ -317654,7 +317654,7 @@ }, { "type_name": "CSosFilterStopSoundEventInfo_t", - "vtable_address": 6461064704, + "vtable_address": 6461064688, "methods": [ 6446326144 ], @@ -317713,7 +317713,7 @@ }, { "type_name": "CSosSetLibraryStackFieldsInfo_t", - "vtable_address": 6461062232, + "vtable_address": 6461062216, "methods": [ 6446326208 ], @@ -317758,7 +317758,7 @@ }, { "type_name": "CSosSetSoundEventFieldsInfo_t", - "vtable_address": 6461062216, + "vtable_address": 6461062200, "methods": [ 6446326400 ], @@ -317803,7 +317803,7 @@ }, { "type_name": "CSosStartSoundEventInfo_t", - "vtable_address": 6461062168, + "vtable_address": 6461062152, "methods": [ 6446326592 ], @@ -317848,7 +317848,7 @@ }, { "type_name": "CSosStopSoundEventHashInfo_t", - "vtable_address": 6461062200, + "vtable_address": 6461062184, "methods": [ 6446326784 ], @@ -317879,7 +317879,7 @@ }, { "type_name": "CSosStopSoundEventInfo_t", - "vtable_address": 6461062184, + "vtable_address": 6461062168, "methods": [ 6446326832 ], @@ -317915,13 +317915,13 @@ 6446805888, 6445763632, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -317951,7 +317951,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781408, 6445814640, 6445824880, @@ -318216,13 +318216,13 @@ 6446805888, 6445763696, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -318252,7 +318252,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781424, 6445814656, 6445824928, @@ -318512,7 +318512,7 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 6462872144, + "vtable_address": 6462872192, "methods": [ 6453349328, 6453349488, @@ -318592,7 +318592,7 @@ }, { "type_name": "CSoundControllerImp", - "vtable_address": 6462872328, + "vtable_address": 6462872376, "methods": [ 6443752688, 6443767152, @@ -318711,7 +318711,7 @@ }, { "type_name": "CSoundEmitterSystem", - "vtable_address": 6462867632, + "vtable_address": 6462867680, "methods": [ 6453345664, 6443767152, @@ -318807,13 +318807,13 @@ 6446805888, 6445763760, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445832400, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766704, 6451932368, 6451865168, @@ -318843,7 +318843,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781440, 6445814672, 6445824976, @@ -319109,13 +319109,13 @@ 6446805888, 6445764000, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445832400, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766704, 6451932368, 6451865168, @@ -319145,7 +319145,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781456, 6445814688, 6445825024, @@ -319397,13 +319397,13 @@ 6446805888, 6445764240, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445832400, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766704, 6451932368, 6451865168, @@ -319433,7 +319433,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781472, 6445814704, 6445825072, @@ -319699,13 +319699,13 @@ 6446805888, 6445764480, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445832416, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766704, 6451932368, 6451865168, @@ -319735,7 +319735,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781488, 6445814720, 6445825120, @@ -320001,13 +320001,13 @@ 6446805888, 6445764720, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766928, 6451932368, 6451865168, @@ -320037,7 +320037,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781504, 6445814736, 6445825168, @@ -320288,13 +320288,13 @@ 6446805888, 6445764784, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445832528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766704, 6451932368, 6451865168, @@ -320324,7 +320324,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781520, 6445814752, 6445825216, @@ -320591,13 +320591,13 @@ 6446805888, 6445764848, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445832688, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766704, 6451932368, 6451865168, @@ -320627,7 +320627,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781536, 6445814768, 6445825264, @@ -320888,7 +320888,7 @@ }, { "type_name": "CSoundOpGameSystem", - "vtable_address": 6461064800, + "vtable_address": 6461064784, "methods": [ 6446452512, 6443767152, @@ -321007,18 +321007,18 @@ }, { "type_name": "CSoundOpvarSetAABBEntity", - "vtable_address": 6461001768, + "vtable_address": 6461001752, "methods": [ 6446805888, 6445875248, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453619808, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -321048,7 +321048,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488656, 6445890656, 6445891344, @@ -321328,18 +321328,18 @@ }, { "type_name": "CSoundOpvarSetAutoRoomEntity", - "vtable_address": 6461007728, + "vtable_address": 6461007712, "methods": [ 6446805888, 6445875312, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453620160, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453421744, 6451932368, 6451865168, @@ -321369,7 +321369,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488672, 6445890672, 6445891392, @@ -321644,18 +321644,18 @@ }, { "type_name": "CSoundOpvarSetEntity", - "vtable_address": 6462905472, + "vtable_address": 6462905488, "methods": [ 6446805888, 6453418928, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453620512, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -321685,7 +321685,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488688, 6453560128, 6453583712, @@ -321931,18 +321931,18 @@ }, { "type_name": "CSoundOpvarSetOBBEntity", - "vtable_address": 6461003768, + "vtable_address": 6461003752, "methods": [ 6446805888, 6445875616, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453620624, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -321972,7 +321972,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488704, 6445890688, 6445891440, @@ -322266,18 +322266,18 @@ }, { "type_name": "CSoundOpvarSetOBBWindEntity", - "vtable_address": 6461009688, + "vtable_address": 6461009672, "methods": [ 6446805888, 6445875680, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453621168, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453421760, 6451932368, 6451865168, @@ -322307,7 +322307,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488720, 6445890704, 6445891488, @@ -322571,18 +322571,18 @@ }, { "type_name": "CSoundOpvarSetPathCornerEntity", - "vtable_address": 6461005768, + "vtable_address": 6461005752, "methods": [ 6446805888, 6445875744, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453621424, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -322612,7 +322612,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488736, 6445890720, 6445891536, @@ -322887,18 +322887,18 @@ }, { "type_name": "CSoundOpvarSetPointBase", - "vtable_address": 6462908376, + "vtable_address": 6462908392, "methods": [ 6446805888, 6453418992, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453621680, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -322928,7 +322928,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488752, 6445890736, 6453583760, @@ -323175,18 +323175,18 @@ }, { "type_name": "CSoundOpvarSetPointEntity", - "vtable_address": 6462910336, + "vtable_address": 6462910352, "methods": [ 6446805888, 6453419056, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453622368, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -323216,7 +323216,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453488768, 6445890752, 6453583808, @@ -323477,7 +323477,7 @@ }, { "type_name": "CSoundOpvarSetPointManager", - "vtable_address": 6462907880, + "vtable_address": 6462907896, "methods": [ 6443752688, 6443767152, @@ -323582,7 +323582,7 @@ }, { "type_name": "CSoundOpvarSetPointManager_MP", - "vtable_address": 6462869456, + "vtable_address": 6462869504, "methods": [ 6443752688, 6443767152, @@ -323687,7 +323687,7 @@ }, { "type_name": "CSoundPatch", - "vtable_address": 6462915368, + "vtable_address": 6462915384, "methods": [ 6453583856, 6453488784 @@ -323704,7 +323704,7 @@ }, { "type_name": "CSoundPatchSaveRestoreOps", - "vtable_address": 6462873584, + "vtable_address": 6462873632, "methods": [ 6453362096, 6453362672, @@ -323773,13 +323773,13 @@ 6446805888, 6445765088, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -323809,7 +323809,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781552, 6445814784, 6445825312, @@ -324083,7 +324083,7 @@ }, { "type_name": "CSoundscapeSystem", - "vtable_address": 6461071928, + "vtable_address": 6461071912, "methods": [ 6443752688, 6443767152, @@ -324188,7 +324188,7 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem", - "vtable_address": 6462270536, + "vtable_address": 6462270568, "methods": [ 6443752688, 6443767152, @@ -324307,7 +324307,7 @@ }, { "type_name": "CSource1LegacyGameEventGameSystem::CServerSideClient_GameEventLegacyProxy", - "vtable_address": 6462269640, + "vtable_address": 6462269672, "methods": [ 6450901216, 6450900784 @@ -324339,7 +324339,7 @@ }, { "type_name": "CSource2EntitySystem", - "vtable_address": 6462279456, + "vtable_address": 6462279488, "methods": [ 6443752688, 6443767152, @@ -324444,7 +324444,7 @@ }, { "type_name": "CSource2EntitySystemDeallocator", - "vtable_address": 6462268784, + "vtable_address": 6462268816, "methods": [ 6443752688, 6443767152, @@ -324549,7 +324549,7 @@ }, { "type_name": "CSource2GameClients", - "vtable_address": 6462552400, + "vtable_address": 6462552432, "methods": [ 6452415120, 6452425696, @@ -324712,7 +324712,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464456392, + "complete_object_locator": 6464456400, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -324721,7 +324721,7 @@ }, { "type_name": "CSource2GameEntities", - "vtable_address": 6462545392, + "vtable_address": 6462545424, "methods": [ 6452326784, 6452326880, @@ -324871,7 +324871,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464450672, + "complete_object_locator": 6464450728, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -324880,7 +324880,7 @@ }, { "type_name": "CSource2GameEntities", - "vtable_address": 6462545536, + "vtable_address": 6462545568, "methods": [ 6444023440, 6452329728, @@ -325017,7 +325017,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464451600, + "complete_object_locator": 6464451664, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -325026,22 +325026,22 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification", - "vtable_address": 6461618640, + "vtable_address": 6461618624, "methods": [ 6448511216, - 6455181760, + 6455181776, 6448491552, 6448494432, 6448494672, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448494688, 6448496656, 6448495232, 6443766512, 6448496160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448496928, 6448497056, 6448497040 @@ -325087,26 +325087,26 @@ }, { "type_name": "CSource2Metrics_MatchPerfSummary_Notification_Client", - "vtable_address": 6461616544, + "vtable_address": 6461616528, "methods": [ 6448489552, - 6455181760, + 6455181776, 6448478416, 6448479152, 6448479856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448479872, 6448481712, 6448480304, 6443766512, 6448481264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448481728, 6448481920, 6448481904, - 6455179744, + 6455179760, 6448488256 ], "bases": [ @@ -325150,7 +325150,7 @@ }, { "type_name": "CSource2Server", - "vtable_address": 6462548888, + "vtable_address": 6462548920, "methods": [ 6452338048, 6452339184, @@ -325165,26 +325165,26 @@ 6452334304, 6443914672, 6452340064, - 6452340144, - 6452340384, - 6452340704, - 6452340928, - 6452341056, + 6452340128, + 6452340272, + 6452340528, + 6452340752, + 6452340784, 6443890320, 6452341264, - 6452342912, - 6452343072, - 6452343088, - 6452343104, + 6452342848, + 6452342864, + 6452342880, + 6452342896, 6443902976, - 6452343120, + 6452342992, 6452343152, 6452343184, + 6452343280, + 6452343312, + 6452343344, + 6452343408, 6452343440, - 6452343472, - 6452343504, - 6452343568, - 6452343600, 6452343616, 6452343632, 6452343648, @@ -325380,7 +325380,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464451768, + "complete_object_locator": 6464451832, "offset": 0, "constructor_displacement": 0, "class_attributes": 1 @@ -325389,7 +325389,7 @@ }, { "type_name": "CSource2Server", - "vtable_address": 6462549672, + "vtable_address": 6462549704, "methods": [ 6452350176 ], @@ -325523,7 +325523,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464452704, + "complete_object_locator": 6464452768, "offset": 40, "constructor_displacement": 0, "class_attributes": 1 @@ -325532,17 +325532,17 @@ }, { "type_name": "CSpaceAgnosticBoneAccessor", - "vtable_address": 6463247872, - "methods": [ - 6456626320, - 6456626688, - 6456626800, - 6456627600, - 6456626832, - 6456627504, + "vtable_address": 6463247904, + "methods": [ + 6456626336, 6456626704, - 6456627712, - 6456626880 + 6456626816, + 6456627616, + 6456626848, + 6456627520, + 6456626720, + 6456627728, + 6456626896 ], "bases": [ { @@ -325571,7 +325571,7 @@ }, { "type_name": "CSpawnGroupCompletionCallbackGameSystem", - "vtable_address": 6462269664, + "vtable_address": 6462269696, "methods": [ 6443752688, 6443767152, @@ -325676,7 +325676,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 6461065520, + "vtable_address": 6461065504, "methods": [ 6446338736, 6446565968, @@ -325756,7 +325756,7 @@ }, { "type_name": "CSpawnGroupMgrGameSystem", - "vtable_address": 6461065704, + "vtable_address": 6461065688, "methods": [ 6443752688, 6443767152, @@ -325875,18 +325875,18 @@ }, { "type_name": "CSplineConstraint", - "vtable_address": 6462748984, + "vtable_address": 6462749016, "methods": [ 6446805888, 6452733280, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6452738464, 6452886352, 6451865168, @@ -325916,7 +325916,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789504, 6452842976, 6452857552, @@ -326235,7 +326235,7 @@ }, { "type_name": "CSplineConstraint", - "vtable_address": 6462750960, + "vtable_address": 6462750992, "methods": [ 6452729660, 6452814272 @@ -326351,18 +326351,18 @@ }, { "type_name": "CSpotlightEnd", - "vtable_address": 6461288840, + "vtable_address": 6461288808, "methods": [ 6446805920, 6447018048, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6453822816, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -326392,7 +326392,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758544, 6447028224, 6447028864, @@ -326680,18 +326680,18 @@ }, { "type_name": "CSprite", - "vtable_address": 6462930344, + "vtable_address": 6462930360, "methods": [ 6446805920, 6453712336, 6450347280, - 6456889008, + 6456889024, 6453805408, 6450317376, 6453822944, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -326721,7 +326721,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758560, 6445890768, 6453810480, @@ -327009,18 +327009,18 @@ }, { "type_name": "CSpriteAlias_env_glow", - "vtable_address": 6462932520, + "vtable_address": 6462932536, "methods": [ 6446805920, 6453712480, 6450347280, - 6456889008, + 6456889024, 6453805408, 6450317376, 6453822944, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -327050,7 +327050,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758576, 6453807552, 6453810528, @@ -327352,18 +327352,18 @@ }, { "type_name": "CSpriteOriented", - "vtable_address": 6461011672, + "vtable_address": 6461011656, "methods": [ 6446805920, 6445875936, 6450347280, - 6456889008, + 6456889024, 6453805408, 6450317376, 6453824528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -327393,7 +327393,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445880656, 6445890784, 6445891584, @@ -327695,7 +327695,7 @@ }, { "type_name": "CStartTimeOutIssue", - "vtable_address": 6461740536, + "vtable_address": 6461740552, "methods": [ 6444557600, 6448896400, @@ -327772,7 +327772,7 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 6462343232, + "vtable_address": 6462343264, "methods": [ 6451540384 ], @@ -327831,7 +327831,7 @@ }, { "type_name": "CStatusTagProxy", - "vtable_address": 6462343248, + "vtable_address": 6462343280, "methods": [ 6451539712, 6451608144 @@ -327893,13 +327893,13 @@ "type_name": "CStdFunctionJob", "vtable_address": 6463615200, "methods": [ - 6458355552, - 6454366656, - 6454476304, - 6454395872, - 6454487440, - 6458372288, - 6454398384 + 6458355568, + 6454366672, + 6454476320, + 6454395888, + 6454487456, + 6458372304, + 6454398400 ], "bases": [ { @@ -328032,7 +328032,7 @@ 6443774720, 6443743152, 6444439024, - 6459886716, + 6459886732, 6449328448, 6444583312, 6443934752, @@ -328212,7 +328212,7 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 6461851992, + "vtable_address": 6461852008, "methods": [ 6449334064, 6443934688, @@ -328274,13 +328274,13 @@ 6443774720, 6443743152, 6449325984, - 6459886716, + 6459886732, 6449328448, 6449347728, 6443934752, 6443934768, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6449343104 ], "bases": [ @@ -328352,7 +328352,7 @@ }, { "type_name": "CSteamWorksGameStatsUploader", - "vtable_address": 6461852544, + "vtable_address": 6461852560, "methods": [ 6449324640, 6449329184 @@ -328426,7 +328426,7 @@ }, { "type_name": "CStressDamageSystem", - "vtable_address": 6462359432, + "vtable_address": 6462359464, "methods": [ 6443752688, 6443767152, @@ -328531,7 +328531,7 @@ }, { "type_name": "CStringTableSaveRestoreOps", - "vtable_address": 6462546448, + "vtable_address": 6462546480, "methods": [ 6452331456, 6452331632, @@ -328572,7 +328572,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464453456, + "complete_object_locator": 6464453520, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -328581,7 +328581,7 @@ }, { "type_name": "CStructuredReport,class Vec3D,float,float,class Vec3D,float,bool,bool,bool,bool,float,float,float>", - "vtable_address": 6462122688, + "vtable_address": 6462122704, "methods": [ 6449940256 ], @@ -328597,7 +328597,7 @@ }, { "type_name": "CStructuredReport,class Vec3D,class Vec3D,class Vec3D,float,float,float,float,bool,bool>", - "vtable_address": 6462115520, + "vtable_address": 6462115536, "methods": [ 6449940544 ], @@ -328613,26 +328613,26 @@ }, { "type_name": "CSubtickMoveStep", - "vtable_address": 6461316736, + "vtable_address": 6461316720, "methods": [ 6447052736, - 6455181760, + 6455181776, 6447051120, 6447051280, 6447051328, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447051344, 6447052624, 6447051472, 6443766512, 6447052192, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447052640, 6447052672, 6447052656, - 6455179744, + 6455179760, 6447052896 ], "bases": [ @@ -328678,10 +328678,10 @@ "type_name": "CSurfacePropReloadableDataTableBase", "vtable_address": 6463630856, "methods": [ - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [ { @@ -328710,7 +328710,7 @@ }, { "type_name": "CSurrender", - "vtable_address": 6461740856, + "vtable_address": 6461740872, "methods": [ 6444557600, 6448896464, @@ -328787,7 +328787,7 @@ }, { "type_name": "CSwapTeams", - "vtable_address": 6461739104, + "vtable_address": 6461739120, "methods": [ 6444557600, 6448896528, @@ -328864,11 +328864,11 @@ }, { "type_name": "CTEArmorRicochet", - "vtable_address": 6463129712, + "vtable_address": 6463129744, "methods": [ - 6455026640, - 6455026464, - 6455026608, + 6455026656, + 6455026480, + 6455026624, 6449318384 ], "bases": [ @@ -328912,11 +328912,11 @@ }, { "type_name": "CTEBeamEntPoint", - "vtable_address": 6463131976, + "vtable_address": 6463132008, "methods": [ - 6455032096, - 6455033824, - 6455044544, + 6455032112, + 6455033840, + 6455044560, 6449318384 ], "bases": [ @@ -328974,11 +328974,11 @@ }, { "type_name": "CTEBeamEnts", - "vtable_address": 6463130200, + "vtable_address": 6463130232, "methods": [ + 6455027392, + 6455027232, 6455027376, - 6455027216, - 6455027360, 6449318384 ], "bases": [ @@ -329036,11 +329036,11 @@ }, { "type_name": "CTEBeamPoints", - "vtable_address": 6463130648, + "vtable_address": 6463130680, "methods": [ + 6455028128, + 6455027968, 6455028112, - 6455027952, - 6455028096, 6449318384 ], "bases": [ @@ -329098,11 +329098,11 @@ }, { "type_name": "CTEBeamRing", - "vtable_address": 6463131104, + "vtable_address": 6463131136, "methods": [ + 6455028864, + 6455028704, 6455028848, - 6455028688, - 6455028832, 6449318384 ], "bases": [ @@ -329160,11 +329160,11 @@ }, { "type_name": "CTEBloodStream", - "vtable_address": 6463131552, + "vtable_address": 6463131584, "methods": [ + 6455029600, + 6455029440, 6455029584, - 6455029424, - 6455029568, 6449318384 ], "bases": [ @@ -329208,11 +329208,11 @@ }, { "type_name": "CTEBubbleTrail", - "vtable_address": 6463129224, + "vtable_address": 6463129256, "methods": [ + 6455025616, + 6455025456, 6455025600, - 6455025440, - 6455025584, 6449318384 ], "bases": [ @@ -329256,11 +329256,11 @@ }, { "type_name": "CTEBubbles", - "vtable_address": 6463128776, + "vtable_address": 6463128808, "methods": [ + 6455024880, + 6455024720, 6455024864, - 6455024704, - 6455024848, 6449318384 ], "bases": [ @@ -329304,11 +329304,11 @@ }, { "type_name": "CTEDust", - "vtable_address": 6463134656, + "vtable_address": 6463134688, "methods": [ + 6455057104, + 6455056944, 6455057088, - 6455056928, - 6455057072, 6449318384 ], "bases": [ @@ -329352,11 +329352,11 @@ }, { "type_name": "CTEEffectDispatch", - "vtable_address": 6463133272, + "vtable_address": 6463133304, "methods": [ + 6455054672, + 6455054512, 6455054656, - 6455054496, - 6455054640, 6449318384 ], "bases": [ @@ -329400,11 +329400,11 @@ }, { "type_name": "CTEEnergySplash", - "vtable_address": 6463133728, + "vtable_address": 6463133760, "methods": [ + 6455055664, + 6455055504, 6455055648, - 6455055488, - 6455055632, 6449318384 ], "bases": [ @@ -329448,13 +329448,13 @@ }, { "type_name": "CTEExplosion", - "vtable_address": 6463138024, + "vtable_address": 6463138056, "methods": [ - 6455065152, - 6455067792, - 6455083728, + 6455065168, + 6455067808, + 6455083744, 6449318384, - 6455083088 + 6455083104 ], "bases": [ { @@ -329497,7 +329497,7 @@ }, { "type_name": "CTEFireBullets", - "vtable_address": 6461826392, + "vtable_address": 6461826408, "methods": [ 6449317424, 6449317264, @@ -329545,11 +329545,11 @@ }, { "type_name": "CTEFizz", - "vtable_address": 6463134208, + "vtable_address": 6463134240, "methods": [ + 6455056384, + 6455056224, 6455056368, - 6455056208, - 6455056352, 6449318384 ], "bases": [ @@ -329593,11 +329593,11 @@ }, { "type_name": "CTEGlowSprite", - "vtable_address": 6463135104, + "vtable_address": 6463135136, "methods": [ + 6455057824, + 6455057664, 6455057808, - 6455057648, - 6455057792, 6449318384 ], "bases": [ @@ -329641,14 +329641,14 @@ }, { "type_name": "CTEImpact", - "vtable_address": 6463135560, + "vtable_address": 6463135592, "methods": [ - 6455058560, - 6455058368, - 6455058512, - 6449318384, + 6455058576, + 6455058384, 6455058528, - 6455058544 + 6449318384, + 6455058544, + 6455058560 ], "bases": [ { @@ -329691,11 +329691,11 @@ }, { "type_name": "CTELargeFunnel", - "vtable_address": 6463136024, + "vtable_address": 6463136056, "methods": [ + 6455059296, + 6455059136, 6455059280, - 6455059120, - 6455059264, 6449318384 ], "bases": [ @@ -329739,11 +329739,11 @@ }, { "type_name": "CTEMuzzleFlash", - "vtable_address": 6463136480, + "vtable_address": 6463136512, "methods": [ + 6455060016, + 6455059856, 6455060000, - 6455059840, - 6455059984, 6449318384 ], "bases": [ @@ -329787,12 +329787,12 @@ }, { "type_name": "CTEPhysicsProp", - "vtable_address": 6463136936, + "vtable_address": 6463136968, "methods": [ - 6455060736, - 6455060560, - 6455060704, - 6455060720 + 6455060752, + 6455060576, + 6455060720, + 6455060736 ], "bases": [ { @@ -329835,11 +329835,11 @@ }, { "type_name": "CTESmoke", - "vtable_address": 6463137392, + "vtable_address": 6463137424, "methods": [ + 6455061472, + 6455061312, 6455061456, - 6455061296, - 6455061440, 6449318384 ], "bases": [ @@ -329883,11 +329883,11 @@ }, { "type_name": "CTESparks", - "vtable_address": 6463137840, + "vtable_address": 6463137872, "methods": [ + 6455062192, + 6455062032, 6455062176, - 6455062016, - 6455062160, 6449318384 ], "bases": [ @@ -329949,18 +329949,18 @@ }, { "type_name": "CTankTargetChange", - "vtable_address": 6462946064, + "vtable_address": 6462946080, "methods": [ 6445499872, 6453712624, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6453824640, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -329990,7 +329990,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758592, 6453807568, 6453810576, @@ -330250,18 +330250,18 @@ }, { "type_name": "CTankTrainAI", - "vtable_address": 6462948048, + "vtable_address": 6462948064, "methods": [ 6445499872, 6453712752, 6445463120, - 6456889008, + 6456889024, 6453805760, 6451753984, 6453824736, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453717600, 6451932368, 6451865168, @@ -330291,7 +330291,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758608, 6453807584, 6453810624, @@ -330556,13 +330556,13 @@ 6446805888, 6445765152, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445766944, 6445840672, 6451865168, @@ -330592,7 +330592,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781568, 6445814800, 6445825360, @@ -330840,7 +330840,7 @@ }, { "type_name": "CTeamColorsAssignedSystem", - "vtable_address": 6462100968, + "vtable_address": 6462100984, "methods": [ 6443752688, 6443767152, @@ -330945,7 +330945,7 @@ }, { "type_name": "CTeamRecipientFilter", - "vtable_address": 6462320712, + "vtable_address": 6462320744, "methods": [ 6451398864, 6451409088, @@ -330994,7 +330994,7 @@ }, { "type_name": "CTeamplayRules", - "vtable_address": 6462929392, + "vtable_address": 6462929408, "methods": [ 6453810672, 6449123088, @@ -331045,7 +331045,7 @@ 6448997600, 6449051568, 6452507424, - 6459886716, + 6459886732, 6452427904, 6449046096, 6449009504, @@ -331170,11 +331170,11 @@ }, { "type_name": "CTempEntsSystem", - "vtable_address": 6463129296, + "vtable_address": 6463129328, "methods": [ - 6455025792, - 6455025904, - 6455025920 + 6455025808, + 6455025920, + 6455025936 ], "bases": [ { @@ -331203,18 +331203,18 @@ }, { "type_name": "CTestEffect", - "vtable_address": 6462451520, + "vtable_address": 6462451552, "methods": [ 6446805888, 6451980064, 6445463120, - 6456889008, + 6456889024, 6452081792, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -331244,7 +331244,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452035760, 6452082304, 6452086208, @@ -331490,18 +331490,18 @@ }, { "type_name": "CTestPulseIO", - "vtable_address": 6461246056, + "vtable_address": 6461246016, "methods": [ 6446805888, 6446939056, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -331531,7 +331531,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624176, 6446952656, 6446953040, @@ -331805,18 +331805,18 @@ }, { "type_name": "CTextureBasedAnimatable", - "vtable_address": 6462345416, + "vtable_address": 6462345448, "methods": [ 6446805920, 6451540576, 6450347280, - 6456889008, + 6456889024, 6451613472, 6450317376, 6451629504, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451541648, 6450537872, 6450455600, @@ -331846,7 +331846,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451573360, 6451615744, 6451620288, @@ -332134,7 +332134,7 @@ }, { "type_name": "CThinkContextsSaveDataOps", - "vtable_address": 6462364856, + "vtable_address": 6462364888, "methods": [ 6451701088, 6451701792, @@ -332184,15 +332184,15 @@ }, { "type_name": "CThreadedJob", - "vtable_address": 6463094688, + "vtable_address": 6463094720, "methods": [ - 6454360960, - 6454366656, - 6454476304, - 6454395872, - 6454487440, - 6459886716, - 6454398384 + 6454360976, + 6454366672, + 6454476320, + 6454395888, + 6454487456, + 6459886732, + 6454398400 ], "bases": [ { @@ -332249,18 +332249,18 @@ }, { "type_name": "CTimerEntity", - "vtable_address": 6462626880, + "vtable_address": 6462626912, "methods": [ 6446805888, 6452598928, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6452672352, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -332290,7 +332290,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624192, 6452653840, 6452658416, @@ -332569,13 +332569,13 @@ 6446805888, 6445618368, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445654192, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619792, 6445655728, 6451865168, @@ -332605,7 +332605,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623376, 6445647728, 6445652512, @@ -332856,13 +332856,13 @@ 6446805888, 6445618432, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6445654192, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445619792, 6445655728, 6451865168, @@ -332892,7 +332892,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623392, 6445647744, 6445652560, @@ -333157,13 +333157,13 @@ 6445499856, 6445618496, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6445654304, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -333193,7 +333193,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445623408, 6445647760, 6445652608, @@ -333517,7 +333517,7 @@ }, { "type_name": "CToolGameSimulationAPI", - "vtable_address": 6462920248, + "vtable_address": 6462920264, "methods": [ 6443752688, 6443767152, @@ -333650,7 +333650,7 @@ }, { "type_name": "CToolGameSimulationAPI", - "vtable_address": 6462920744, + "vtable_address": 6462920760, "methods": [ 6453642784, 6453643296, @@ -333766,7 +333766,7 @@ }, { "type_name": "CToolGameSimulationAPI", - "vtable_address": 6462921104, + "vtable_address": 6462921120, "methods": [ 6444023440, 6453655200, @@ -333842,11 +333842,11 @@ }, { "type_name": "CTouchExpansionComponent", - "vtable_address": 6463084480, + "vtable_address": 6463084512, "methods": [ - 6454333712, - 6454333520, - 6454333536 + 6454333728, + 6454333536, + 6454333552 ], "bases": [ { @@ -333921,7 +333921,7 @@ }, { "type_name": "CTraceFilterDoor", - "vtable_address": 6462850536, + "vtable_address": 6462850552, "methods": [ 6453197968, 6453325184 @@ -333995,7 +333995,7 @@ }, { "type_name": "CTraceFilterEntityPush", - "vtable_address": 6462274416, + "vtable_address": 6462274448, "methods": [ 6450983200, 6451213520 @@ -334069,7 +334069,7 @@ }, { "type_name": "CTraceFilterEntitySweep", - "vtable_address": 6462274392, + "vtable_address": 6462274424, "methods": [ 6450983248, 6451213536 @@ -334143,7 +334143,7 @@ }, { "type_name": "CTraceFilterForPlayerHeadCollision", - "vtable_address": 6462128592, + "vtable_address": 6462128608, "methods": [ 6449950208, 6450069792 @@ -334217,10 +334217,10 @@ }, { "type_name": "CTraceFilterGroundEntities", - "vtable_address": 6463108752, + "vtable_address": 6463108784, "methods": [ - 6454612432, - 6454846944 + 6454612448, + 6454846960 ], "bases": [ { @@ -334305,7 +334305,7 @@ }, { "type_name": "CTraceFilterIngnoreGrenades", - "vtable_address": 6461879264, + "vtable_address": 6461879280, "methods": [ 6449384992, 6449473632 @@ -334379,7 +334379,7 @@ }, { "type_name": "CTraceFilterKnifeIgnoreTeammates", - "vtable_address": 6462068224, + "vtable_address": 6462068240, "methods": [ 6449673472, 6449685632 @@ -334453,7 +334453,7 @@ }, { "type_name": "CTraceFilterLOS", - "vtable_address": 6462274368, + "vtable_address": 6462274400, "methods": [ 6450983296, 6444054944 @@ -334513,7 +334513,7 @@ }, { "type_name": "CTraceFilterList", - "vtable_address": 6462274344, + "vtable_address": 6462274376, "methods": [ 6450983344, 6451213552 @@ -334735,7 +334735,7 @@ }, { "type_name": "CTraceFilterPlayerMovementCS", - "vtable_address": 6462125712, + "vtable_address": 6462125728, "methods": [ 6449950256, 6450070080 @@ -334809,7 +334809,7 @@ }, { "type_name": "CTraceFilterPushFinal", - "vtable_address": 6462757984, + "vtable_address": 6462758016, "methods": [ 6452733344, 6452863376 @@ -334883,7 +334883,7 @@ }, { "type_name": "CTraceFilterPushMove", - "vtable_address": 6462757960, + "vtable_address": 6462757992, "methods": [ 6452733392, 6452863616 @@ -334957,7 +334957,7 @@ }, { "type_name": "CTraceFilterQueryCache", - "vtable_address": 6462863128, + "vtable_address": 6462863144, "methods": [ 6453198016, 6453325328 @@ -335031,7 +335031,7 @@ }, { "type_name": "CTraceFilterTaserIgnoreTeammates", - "vtable_address": 6462083808, + "vtable_address": 6462083824, "methods": [ 6449673520, 6449685776 @@ -335108,7 +335108,7 @@ "vtable_address": 6460742184, "methods": [ 6445050224, - 6454489664 + 6454489680 ], "bases": [ { @@ -335179,18 +335179,18 @@ }, { "type_name": "CTriggerActiveWeaponDetect", - "vtable_address": 6463017880, + "vtable_address": 6463017896, "methods": [ 6445499856, 6453712976, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453824784, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -335220,7 +335220,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758624, 6453807600, 6453810720, @@ -335544,7 +335544,7 @@ }, { "type_name": "CTriggerAsyncQueryComponent", - "vtable_address": 6462973976, + "vtable_address": 6462973992, "methods": [ 6453713120, 6453790704 @@ -335590,7 +335590,7 @@ }, { "type_name": "CTriggerAsyncQuerySystem", - "vtable_address": 6462925504, + "vtable_address": 6462925520, "methods": [ 6443752688, 6443767152, @@ -335700,13 +335700,13 @@ 6445499856, 6444103952, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6444383424, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -335736,7 +335736,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444206832, 6444341136, 6444349104, @@ -336060,18 +336060,18 @@ }, { "type_name": "CTriggerBrush", - "vtable_address": 6462700616, + "vtable_address": 6462700648, "methods": [ 6446805920, 6452733440, 6450347280, - 6456889008, + 6456889024, 6450464560, 6450317376, 6452872400, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6450537872, 6450455600, @@ -336101,7 +336101,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452789520, 6452842992, 6452857600, @@ -336389,18 +336389,18 @@ }, { "type_name": "CTriggerBuoyancy", - "vtable_address": 6461842416, + "vtable_address": 6461842432, "methods": [ 6445499856, 6449326048, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6449345072, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6449326336, 6449347488, 6450455600, @@ -336430,7 +336430,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449331632, 6449342672, 6449344048, @@ -336754,18 +336754,18 @@ }, { "type_name": "CTriggerCallback", - "vtable_address": 6461295512, + "vtable_address": 6461295480, "methods": [ 6445499856, 6447018112, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453824848, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -336795,7 +336795,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758640, 6447028240, 6447028912, @@ -337119,18 +337119,18 @@ }, { "type_name": "CTriggerDetectBulletFire", - "vtable_address": 6463022944, + "vtable_address": 6463022960, "methods": [ 6445499856, 6453713184, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453825056, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -337160,7 +337160,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758656, 6453807616, 6453810768, @@ -337484,18 +337484,18 @@ }, { "type_name": "CTriggerDetectExplosion", - "vtable_address": 6463025232, + "vtable_address": 6463025248, "methods": [ 6445499856, 6453713328, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453825136, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453718176, 6453863424, 6450455600, @@ -337525,7 +337525,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758672, 6453807632, 6453810816, @@ -337868,13 +337868,13 @@ 6445499856, 6445765456, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6445832800, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -337904,7 +337904,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6445781584, 6445814816, 6445825408, @@ -338262,18 +338262,18 @@ }, { "type_name": "CTriggerGameEvent", - "vtable_address": 6462604744, + "vtable_address": 6462604776, "methods": [ 6445499856, 6452599216, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6452672608, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -338303,7 +338303,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6452624208, 6452653856, 6452658464, @@ -338627,18 +338627,18 @@ }, { "type_name": "CTriggerGravity", - "vtable_address": 6463004680, + "vtable_address": 6463004696, "methods": [ 6445499856, 6453713488, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453825200, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -338668,7 +338668,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758688, 6453807648, 6453810864, @@ -338997,13 +338997,13 @@ 6445499856, 6444104016, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6444383552, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -339033,7 +339033,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444206848, 6444341152, 6444349152, @@ -339357,18 +339357,18 @@ }, { "type_name": "CTriggerHurt", - "vtable_address": 6461293256, + "vtable_address": 6461293224, "methods": [ 6445499856, 6447018176, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453825296, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -339398,7 +339398,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758704, 6447028256, 6447028960, @@ -339724,18 +339724,18 @@ }, { "type_name": "CTriggerImpact", - "vtable_address": 6463013304, + "vtable_address": 6463013320, "methods": [ 6445499856, 6453713552, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453825664, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -339765,7 +339765,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758720, 6453807664, 6453810912, @@ -340103,18 +340103,18 @@ }, { "type_name": "CTriggerLerpObject", - "vtable_address": 6461297752, + "vtable_address": 6461297720, "methods": [ 6445499856, 6447018512, 6450347280, - 6456889008, + 6456889024, 6453805776, 6450317376, 6453825904, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453718272, 6445591936, 6450455600, @@ -340144,7 +340144,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758736, 6447028272, 6447029008, @@ -340468,18 +340468,18 @@ }, { "type_name": "CTriggerLook", - "vtable_address": 6462987864, + "vtable_address": 6462987880, "methods": [ 6445499856, 6453713776, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453825968, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -340509,7 +340509,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758752, 6453807680, 6453810960, @@ -340861,18 +340861,18 @@ }, { "type_name": "CTriggerMultiple", - "vtable_address": 6462974048, + "vtable_address": 6462974064, "methods": [ 6445499856, 6453714112, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453826240, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -340902,7 +340902,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758768, 6447028288, 6453811008, @@ -341226,18 +341226,18 @@ }, { "type_name": "CTriggerOnce", - "vtable_address": 6462983384, + "vtable_address": 6462983400, "methods": [ 6445499856, 6453714256, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453826352, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -341267,7 +341267,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758784, 6453807696, 6453811056, @@ -341605,18 +341605,18 @@ }, { "type_name": "CTriggerPhysics", - "vtable_address": 6463020184, + "vtable_address": 6463020200, "methods": [ 6445499856, 6453714400, 6450347280, - 6456889008, + 6456889024, 6453805840, 6450317376, 6453826448, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6453863520, 6450455600, @@ -341646,7 +341646,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758800, 6453807712, 6453811104, @@ -341984,7 +341984,7 @@ }, { "type_name": "CTriggerPhysics", - "vtable_address": 6463022424, + "vtable_address": 6463022440, "methods": [ 6449326432, 6453815440, @@ -342088,18 +342088,18 @@ }, { "type_name": "CTriggerProximity", - "vtable_address": 6463008992, + "vtable_address": 6463009008, "methods": [ 6445499856, 6453714464, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453826944, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453718752, 6445591936, 6450455600, @@ -342129,7 +342129,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758816, 6453807728, 6453811152, @@ -342453,18 +342453,18 @@ }, { "type_name": "CTriggerPush", - "vtable_address": 6462993448, + "vtable_address": 6462993464, "methods": [ 6445499856, 6453714608, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453827024, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -342494,7 +342494,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758832, 6453807744, 6453811200, @@ -342818,18 +342818,18 @@ }, { "type_name": "CTriggerRemove", - "vtable_address": 6462976288, + "vtable_address": 6462976304, "methods": [ 6445499856, 6453714672, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453827296, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -342859,7 +342859,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758848, 6453807760, 6453811248, @@ -343183,18 +343183,18 @@ }, { "type_name": "CTriggerSave", - "vtable_address": 6463002424, + "vtable_address": 6463002440, "methods": [ 6445499856, 6453714816, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453827360, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -343224,7 +343224,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758864, 6453807776, 6453811296, @@ -343548,18 +343548,18 @@ }, { "type_name": "CTriggerSndSosOpvar", - "vtable_address": 6461291016, + "vtable_address": 6461290984, "methods": [ 6445499856, 6447018576, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453827568, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -343589,7 +343589,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758880, 6447028304, 6447029056, @@ -343913,18 +343913,18 @@ }, { "type_name": "CTriggerSoundscape", - "vtable_address": 6461085376, + "vtable_address": 6461085360, "methods": [ 6445499856, 6446327072, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6446638176, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6446329072, 6445591936, 6450455600, @@ -343954,7 +343954,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6446427232, 6446565776, 6446595360, @@ -344278,18 +344278,18 @@ }, { "type_name": "CTriggerTeleport", - "vtable_address": 6461302232, + "vtable_address": 6461302200, "methods": [ 6445499856, 6447018768, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453828096, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -344319,7 +344319,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758896, 6447028320, 6447029104, @@ -344643,18 +344643,18 @@ }, { "type_name": "CTriggerToggleSave", - "vtable_address": 6463000184, + "vtable_address": 6463000200, "methods": [ 6445499856, 6453714880, 6450347280, - 6456889008, + 6456889024, 6451873552, 6450317376, 6453828160, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6445410928, 6445591936, 6450455600, @@ -344684,7 +344684,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758912, 6453807792, 6453811344, @@ -345008,18 +345008,18 @@ }, { "type_name": "CTriggerVolume", - "vtable_address": 6462990248, + "vtable_address": 6462990264, "methods": [ 6446805920, 6453714992, 6450347280, - 6456889008, + 6456889024, 6453805856, 6450317376, 6453828256, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6453719024, 6450537872, 6450455600, @@ -345049,7 +345049,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758928, 6453807808, 6453811392, @@ -345384,7 +345384,7 @@ }, { "type_name": "CUnpauseMatchIssue", - "vtable_address": 6461739664, + "vtable_address": 6461739680, "methods": [ 6444557600, 6448896592, @@ -345574,19 +345574,19 @@ "vtable_address": 6460696440, "methods": [ 6444611656, - 6455181760, + 6455181776, 6444730016, 6449356048, 6449356208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6449356224, 6444678944, 6449356544, 6443766512, 6449357728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6449358272, 6449358304, 6449358288 @@ -345691,13 +345691,13 @@ "vtable_address": 6460695816, "methods": [ 6444614880, - 6459886716, + 6459886732, 6451616560, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -345796,19 +345796,19 @@ "vtable_address": 6460695976, "methods": [ 6444611620, - 6455181760, + 6455181776, 6444730016, 6449356048, 6449356208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6449356224, 6444678944, 6449356544, 6443766512, 6449357728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6449358272, 6449358304, 6449358288 @@ -345882,22 +345882,22 @@ }, { "type_name": "CUserCmdBasePB", - "vtable_address": 6461317056, + "vtable_address": 6461317040, "methods": [ 6447059664, - 6455181760, + 6455181776, 6447058736, 6447058896, 6447058960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447058976, 6447059552, 6447059056, 6443766512, 6447059440, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447059568, 6447059600, 6447059584 @@ -345943,7 +345943,7 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 6462151952, + "vtable_address": 6462152000, "methods": [ 6450247520, 6450247872 @@ -346003,7 +346003,7 @@ }, { "type_name": "CUserInfoConvarList", - "vtable_address": 6462151976, + "vtable_address": 6462152024, "methods": [ 6450247440, 6443767152, @@ -346122,22 +346122,22 @@ }, { "type_name": "CUserMessageAchievementEvent", - "vtable_address": 6461581784, + "vtable_address": 6461581768, "methods": [ 6448281472, - 6455181760, + 6455181776, 6448270480, 6448272016, 6448272048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448272080, 6448273280, 6448272560, 6443766512, 6448273104, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448274720, 6448277856, 6448277824 @@ -346183,7 +346183,7 @@ }, { "type_name": "CUserMessageAchievementEvent_t", - "vtable_address": 6462174416, + "vtable_address": 6462174448, "methods": [ 6450310304, 6450331392, @@ -346288,22 +346288,22 @@ }, { "type_name": "CUserMessageAchievementEvent_t", - "vtable_address": 6462174464, + "vtable_address": 6462174496, "methods": [ 6450308024, - 6455181760, + 6455181776, 6448270480, 6448272016, 6448272048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448272080, 6448273280, 6448272560, 6443766512, 6448273104, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448274720, 6448277856, 6448277824 @@ -346405,26 +346405,26 @@ }, { "type_name": "CUserMessageAmmoDenied", - "vtable_address": 6461517448, + "vtable_address": 6461517432, "methods": [ 6448020352, - 6455181760, + 6455181776, 6448016096, 6448016160, 6448016192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448016208, 6448017040, 6448016272, 6443766512, 6448016656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448017424, 6448018240, 6448018224, - 6455179744, + 6455179760, 6448018848 ], "bases": [ @@ -346468,26 +346468,26 @@ }, { "type_name": "CUserMessageAnimStateGraphState", - "vtable_address": 6461588920, + "vtable_address": 6461588904, "methods": [ 6448361056, - 6455181760, + 6455181776, 6448351632, 6448352736, 6448352800, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448352816, 6448353840, 6448353120, 6443766512, 6448353616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448354640, 6448357328, 6448357312, - 6455179744, + 6455179760, 6448361232 ], "bases": [ @@ -346531,22 +346531,22 @@ }, { "type_name": "CUserMessageAudioParameter", - "vtable_address": 6461623192, + "vtable_address": 6461623176, "methods": [ 6448537232, - 6455181760, + 6455181776, 6448529008, 6448529136, 6448529168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448529184, 6448530512, 6448529344, 6443766512, 6448530096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448531408, 6448533008, 6448532752 @@ -346592,7 +346592,7 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 6462928816, + "vtable_address": 6462928832, "methods": [ 6453715056, 6451507520, @@ -346697,22 +346697,22 @@ }, { "type_name": "CUserMessageAudioParameter_t", - "vtable_address": 6462928864, + "vtable_address": 6462928880, "methods": [ 6453710184, - 6455181760, + 6455181776, 6448529008, 6448529136, 6448529168, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448529184, 6448530512, 6448529344, 6443766512, 6448530096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448531408, 6448533008, 6448532752 @@ -346814,26 +346814,26 @@ }, { "type_name": "CUserMessageCameraTransition", - "vtable_address": 6461561312, + "vtable_address": 6461561296, "methods": [ 6448176672, - 6455181760, + 6455181776, 6448157648, 6448159200, 6448159344, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448159424, 6448160544, 6448159760, 6443766512, 6448160288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448160576, 6448160688, 6448160672, - 6455179744, + 6455179760, 6448172224 ], "bases": [ @@ -346877,22 +346877,22 @@ }, { "type_name": "CUserMessageCameraTransition_Transition_DataDriven", - "vtable_address": 6461560032, + "vtable_address": 6461560016, "methods": [ 6448152848, - 6455181760, + 6455181776, 6448143168, 6448144528, 6448144848, - 6455181808, - 6455178784, - 6448145024, + 6455181824, + 6455178800, + 6448146304, 6448149952, - 6448146816, + 6448147808, 6443766512, 6448149680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448150848, 6448150992, 6448150976 @@ -346938,22 +346938,22 @@ }, { "type_name": "CUserMessageCloseCaption", - "vtable_address": 6461583048, + "vtable_address": 6461583032, "methods": [ 6448293936, - 6455181760, + 6455181776, 6448289360, 6448289616, 6448289664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448289680, 6448291248, 6448290160, 6443766512, 6448290928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448291280, 6448291408, 6448291392 @@ -346999,22 +346999,22 @@ }, { "type_name": "CUserMessageCloseCaptionDirect", - "vtable_address": 6461584360, + "vtable_address": 6461584344, "methods": [ 6448315664, - 6455181760, + 6455181776, 6448305584, 6448305936, 6448306000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448306016, 6448307520, 6448306192, 6443766512, 6448306768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448308752, 6448309344, 6448309312 @@ -347060,22 +347060,22 @@ }, { "type_name": "CUserMessageCloseCaptionPlaceholder", - "vtable_address": 6461586472, + "vtable_address": 6461586456, "methods": [ 6448331808, - 6455181760, + 6455181776, 6448321840, 6448322048, 6448322128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448322160, 6448323328, 6448322368, 6443766512, 6448322992, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448323776, 6448328368, 6448328352 @@ -347121,7 +347121,7 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 6462874160, + "vtable_address": 6462874176, "methods": [ 6453419600, 6451506048, @@ -347226,22 +347226,22 @@ }, { "type_name": "CUserMessageCloseCaption_t", - "vtable_address": 6462874208, + "vtable_address": 6462874224, "methods": [ 6453417348, - 6455181760, + 6455181776, 6448289360, 6448289616, 6448289664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448289680, 6448291248, 6448290160, 6443766512, 6448290928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448291280, 6448291408, 6448291392 @@ -347343,26 +347343,26 @@ }, { "type_name": "CUserMessageColoredText", - "vtable_address": 6461509264, + "vtable_address": 6461509248, "methods": [ 6447999312, - 6455181760, + 6455181776, 6447984736, 6447985760, 6447985856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447985888, 6447987616, 6447986112, 6443766512, 6447987056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447988864, 6447994768, 6447994592, - 6455179744, + 6455179760, 6447997856 ], "bases": [ @@ -347406,7 +347406,7 @@ }, { "type_name": "CUserMessageColoredText_t", - "vtable_address": 6462927856, + "vtable_address": 6462927872, "methods": [ 6453715152, 6451502736, @@ -347511,22 +347511,22 @@ }, { "type_name": "CUserMessageColoredText_t", - "vtable_address": 6462927904, + "vtable_address": 6462927920, "methods": [ 6453710196, - 6455181760, + 6455181776, 6447984736, 6447985760, 6447985856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447985888, 6447987616, 6447986112, 6443766512, 6447987056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447988864, 6447994768, 6447994592 @@ -347628,26 +347628,26 @@ }, { "type_name": "CUserMessageCreditsMsg", - "vtable_address": 6461521520, + "vtable_address": 6461521504, "methods": [ 6448046224, - 6455181760, + 6455181776, 6448044640, 6448044896, 6448044944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448044960, 6448045760, 6448045040, 6443766512, 6448045536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448045776, 6448045808, 6448045792, - 6455179744, + 6455179760, 6448046368 ], "bases": [ @@ -347691,7 +347691,7 @@ }, { "type_name": "CUserMessageCreditsMsg_t", - "vtable_address": 6462494384, + "vtable_address": 6462494416, "methods": [ 6452171200, 6451508992, @@ -347796,22 +347796,22 @@ }, { "type_name": "CUserMessageCreditsMsg_t", - "vtable_address": 6462494432, + "vtable_address": 6462494464, "methods": [ 6452168528, - 6455181760, + 6455181776, 6448044640, 6448044896, 6448044944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448044960, 6448045760, 6448045040, 6443766512, 6448045536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448045776, 6448045808, 6448045792 @@ -347913,22 +347913,22 @@ }, { "type_name": "CUserMessageCurrentTimescale", - "vtable_address": 6461587592, + "vtable_address": 6461587576, "methods": [ 6448342624, - 6455181760, + 6455181776, 6448340000, 6448340224, 6448340256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448340288, 6448340752, 6448340320, 6443766512, 6448340640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448341104, 6448341856, 6448341840 @@ -347974,7 +347974,7 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 6462552760, + "vtable_address": 6462552792, "methods": [ 6452388000, 6451499664, @@ -348079,22 +348079,22 @@ }, { "type_name": "CUserMessageCurrentTimescale_t", - "vtable_address": 6462552808, + "vtable_address": 6462552840, "methods": [ 6452386560, - 6455181760, + 6455181776, 6448340000, 6448340224, 6448340256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448340288, 6448340752, 6448340320, 6443766512, 6448340640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448341104, 6448341856, 6448341840 @@ -348196,22 +348196,22 @@ }, { "type_name": "CUserMessageDesiredTimescale", - "vtable_address": 6461589080, + "vtable_address": 6461589064, "methods": [ - 6448362512, - 6455181760, + 6448362528, + 6455181776, 6448356640, 6448357488, 6448357536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448357552, 6448358464, 6448357632, 6443766512, 6448358224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448358560, 6448358816, 6448358800 @@ -348257,7 +348257,7 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 6462552952, + "vtable_address": 6462552984, "methods": [ 6452388096, 6451500032, @@ -348362,22 +348362,22 @@ }, { "type_name": "CUserMessageDesiredTimescale_t", - "vtable_address": 6462553000, + "vtable_address": 6462553032, "methods": [ 6452386572, - 6455181760, + 6455181776, 6448356640, 6448357488, 6448357536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448357552, 6448358464, 6448357632, 6443766512, 6448358224, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448358560, 6448358816, 6448358800 @@ -348479,22 +348479,22 @@ }, { "type_name": "CUserMessageFade", - "vtable_address": 6461590520, + "vtable_address": 6461590504, "methods": [ 6448390144, - 6455181760, + 6455181776, 6448383552, 6448383824, 6448383856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448383872, 6448385184, 6448384048, 6443766512, 6448384768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448385648, 6448387216, 6448386768 @@ -348540,7 +348540,7 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 6462928432, + "vtable_address": 6462928448, "methods": [ 6453715248, 6451504576, @@ -348645,22 +348645,22 @@ }, { "type_name": "CUserMessageFade_t", - "vtable_address": 6462928480, + "vtable_address": 6462928496, "methods": [ 6453710208, - 6455181760, + 6455181776, 6448383552, 6448383824, 6448383856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448383872, 6448385184, 6448384048, 6443766512, 6448384768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448385648, 6448387216, 6448386768 @@ -348762,26 +348762,26 @@ }, { "type_name": "CUserMessageGameTitle", - "vtable_address": 6461619088, + "vtable_address": 6461619072, "methods": [ 6448513344, - 6455181760, + 6455181776, 6448511424, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448511616, 6448511440, - 6455179744, + 6455179760, 6448511840 ], "bases": [ @@ -348839,22 +348839,22 @@ }, { "type_name": "CUserMessageHapticsManagerEffect", - "vtable_address": 6461587304, + "vtable_address": 6461587288, "methods": [ 6448342272, - 6455181760, + 6455181776, 6448336144, 6448336576, 6448336704, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448336720, 6448338256, 6448336832, 6443766512, 6448337920, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448339248, 6448339584, 6448339568 @@ -348900,22 +348900,22 @@ }, { "type_name": "CUserMessageHapticsManagerPulse", - "vtable_address": 6461586168, + "vtable_address": 6461586152, "methods": [ 6448331392, - 6455181760, + 6455181776, 6448319296, 6448319424, 6448319520, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448319536, 6448320432, 6448319632, 6443766512, 6448320128, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448320448, 6448320752, 6448320480 @@ -348961,30 +348961,30 @@ }, { "type_name": "CUserMessageHudMsg", - "vtable_address": 6461616064, + "vtable_address": 6461616048, "methods": [ 6448486176, - 6455181760, + 6455181776, 6448475824, 6448476032, 6448476112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448476128, 6448477552, 6448476320, 6443766512, 6448477088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448477584, 6448477856, 6448477840, - 6455179744, + 6455179760, 6448483856, - 6455179744, + 6455179760, 6448483952, - 6455179744, + 6455179760, 6448486496 ], "bases": [ @@ -349028,7 +349028,7 @@ }, { "type_name": "CUserMessageHudMsg_t", - "vtable_address": 6462929008, + "vtable_address": 6462929024, "methods": [ 6453715344, 6451507888, @@ -349133,22 +349133,22 @@ }, { "type_name": "CUserMessageHudMsg_t", - "vtable_address": 6462929056, + "vtable_address": 6462929072, "methods": [ 6453710220, - 6455181760, + 6455181776, 6448475824, 6448476032, 6448476112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448476128, 6448477552, 6448476320, 6443766512, 6448477088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448477584, 6448477856, 6448477840 @@ -349250,34 +349250,34 @@ }, { "type_name": "CUserMessageHudText", - "vtable_address": 6461617152, + "vtable_address": 6461617136, "methods": [ 6448496688, - 6455181760, + 6455181776, 6448489712, 6448490016, 6448490080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448490096, 6448490640, 6448490160, 6443766512, 6448490528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448490656, 6448490688, 6448490672, - 6455179744, + 6455179760, 6448491104, - 6455179744, + 6455179760, 6448491568, - 6455179744, + 6455179760, 6448493600, - 6455179744, + 6455179760, 6448497120, - 6455179744, + 6455179760, 6448497968 ], "bases": [ @@ -349321,7 +349321,7 @@ }, { "type_name": "CUserMessageHudText_t", - "vtable_address": 6462929200, + "vtable_address": 6462929216, "methods": [ 6453715440, 6451508256, @@ -349426,22 +349426,22 @@ }, { "type_name": "CUserMessageHudText_t", - "vtable_address": 6462929248, + "vtable_address": 6462929264, "methods": [ 6453710232, - 6455181760, + 6455181776, 6448489712, 6448490016, 6448490080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448490096, 6448490640, 6448490160, 6443766512, 6448490528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448490656, 6448490688, 6448490672 @@ -349543,22 +349543,22 @@ }, { "type_name": "CUserMessageItemPickup", - "vtable_address": 6461516344, + "vtable_address": 6461516328, "methods": [ 6448010864, - 6455181760, + 6455181776, 6448007600, 6448007872, 6448008000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448008032, 6448009568, 6448008352, 6443766512, 6448009200, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448009760, 6448009824, 6448009792 @@ -349604,22 +349604,22 @@ }, { "type_name": "CUserMessageLagCompensationError", - "vtable_address": 6461592568, + "vtable_address": 6461592552, "methods": [ 6448402112, - 6455181760, + 6455181776, 6448398368, 6448398448, 6448398480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448398656, 6448399936, 6448398912, 6443766512, 6448399824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448400256, 6448400992, 6448400784 @@ -349665,7 +349665,7 @@ }, { "type_name": "CUserMessageLagCompensationError_t", - "vtable_address": 6462779080, + "vtable_address": 6462779112, "methods": [ 6452931856, 6451512816, @@ -349770,22 +349770,22 @@ }, { "type_name": "CUserMessageLagCompensationError_t", - "vtable_address": 6462779128, + "vtable_address": 6462779160, "methods": [ 6452929340, - 6455181760, + 6455181776, 6448398368, 6448398448, 6448398480, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448398656, 6448399936, 6448398912, 6443766512, 6448399824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448400256, 6448400992, 6448400784 @@ -349887,23 +349887,23 @@ }, { "type_name": "CUserMessageRequestDiagnostic", - "vtable_address": 6461520240, + "vtable_address": 6461520224, "methods": [ 6448028320, - 6455181760, - 6448012528, + 6455181776, + 6448012608, 6448013552, 6448013856, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448013872, 6448014608, - 6448014032, + 6448014048, 6443766512, 6448014464, - 6455183120, - 6455184944, - 6448014640, + 6455183136, + 6455184960, + 6448014704, 6448014912, 6448014896 ], @@ -349948,28 +349948,28 @@ }, { "type_name": "CUserMessageRequestDiagnostic_Diagnostic", - "vtable_address": 6461516024, + "vtable_address": 6461516008, "methods": [ 6448009584, - 6455181760, + 6455181776, 6447988160, 6447992160, 6447992336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447992352, 6447996688, 6447993152, 6443766512, 6447994848, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447997088, 6447997360, 6447997344, - 6455179744, + 6455179760, 6448007712, - 6455179744, + 6455179760, 6448007616 ], "bases": [ @@ -350013,30 +350013,30 @@ }, { "type_name": "CUserMessageRequestDllStatus", - "vtable_address": 6461604080, + "vtable_address": 6461604064, "methods": [ 6448421280, - 6455181760, + 6455181776, 6448412112, 6448412592, 6448412656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448412672, 6448413584, 6448412752, 6443766512, 6448413424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448413600, 6448413648, 6448413632, - 6455179744, + 6455179760, 6448420208, - 6455179744, + 6455179760, 6448421456, - 6455179744, + 6455179760, 6448422832 ], "bases": [ @@ -350080,22 +350080,22 @@ }, { "type_name": "CUserMessageRequestInventory", - "vtable_address": 6461623048, + "vtable_address": 6461623032, "methods": [ 6448537088, - 6455181760, + 6455181776, 6448529120, 6448530048, 6448530528, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448530544, 6448532144, 6448530768, 6443766512, 6448531424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448532704, 6448534608, 6448534528 @@ -350141,22 +350141,22 @@ }, { "type_name": "CUserMessageRequestState", - "vtable_address": 6461633424, + "vtable_address": 6461633408, "methods": [ 6448552864, - 6455181760, + 6455181776, 6448552576, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448552608, 6448552592 @@ -350216,7 +350216,7 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 6462927088, + "vtable_address": 6462927104, "methods": [ 6453715536, 6451500400, @@ -350335,22 +350335,22 @@ }, { "type_name": "CUserMessageRequestState_t", - "vtable_address": 6462927136, + "vtable_address": 6462927152, "methods": [ 6453710244, - 6455181760, + 6455181776, 6448552576, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448552608, 6448552592 @@ -350466,32 +350466,32 @@ }, { "type_name": "CUserMessageRequestUtilAction", - "vtable_address": 6461605184, + "vtable_address": 6461605168, "methods": [ 6448431392, - 6455181760, + 6455181776, 6448425392, 6448425696, 6448425744, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448425760, 6448427360, 6448425968, 6443766512, 6448426768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448427376, 6448427552, 6448427536, - 6455179744, + 6455179760, 6448429888, - 6455179744, + 6455179760, 6448431616, - 6455179744, + 6455179760, 6448432928, - 6455179744, + 6455179760, 6448434640 ], "bases": [ @@ -350535,26 +350535,26 @@ }, { "type_name": "CUserMessageResetHUD", - "vtable_address": 6461619600, + "vtable_address": 6461619584, "methods": [ 6448520256, - 6455181760, + 6455181776, 6448519392, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448519568, 6448519552, - 6455179744, + 6455179760, 6448519888 ], "bases": [ @@ -350612,7 +350612,7 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 6462377264, + "vtable_address": 6462377296, "methods": [ 6451744432, 6451508624, @@ -350731,22 +350731,22 @@ }, { "type_name": "CUserMessageResetHUD_t", - "vtable_address": 6462377312, + "vtable_address": 6462377344, "methods": [ 6451742820, - 6455181760, + 6455181776, 6448519392, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448519568, 6448519552 @@ -350862,22 +350862,22 @@ }, { "type_name": "CUserMessageRumble", - "vtable_address": 6461506592, + "vtable_address": 6461506576, "methods": [ 6447971392, - 6455181760, + 6455181776, 6448560304, 6448560416, 6448560464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448560480, 6448561696, 6448560624, 6443766512, 6448561232, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448561808, 6448562512, 6448562464 @@ -350923,22 +350923,22 @@ }, { "type_name": "CUserMessageSayText", - "vtable_address": 6461606496, + "vtable_address": 6461606480, "methods": [ 6448455632, - 6455181760, + 6455181776, 6448449232, 6448450032, 6448450112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448450144, 6448451120, 6448450272, 6443766512, 6448450864, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448451216, 6448451552, 6448451536 @@ -350984,22 +350984,22 @@ }, { "type_name": "CUserMessageSayText2", - "vtable_address": 6461607776, + "vtable_address": 6461607760, "methods": [ 6448467824, - 6455181760, + 6455181776, 6448460304, 6448460720, 6448460928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448460960, 6448463344, 6448461536, 6443766512, 6448462512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448463808, 6448464656, 6448464640 @@ -351045,7 +351045,7 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 6462927664, + "vtable_address": 6462927680, "methods": [ 6453715632, 6450882096, @@ -351150,22 +351150,22 @@ }, { "type_name": "CUserMessageSayText2_t", - "vtable_address": 6462927712, + "vtable_address": 6462927728, "methods": [ 6453710256, - 6455181760, + 6455181776, 6448460304, 6448460720, 6448460928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448460960, 6448463344, 6448461536, 6443766512, 6448462512, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448463808, 6448464656, 6448464640 @@ -351267,22 +351267,22 @@ }, { "type_name": "CUserMessageSayTextChannel", - "vtable_address": 6461507840, + "vtable_address": 6461507824, "methods": [ 6447981920, - 6455181760, + 6455181776, 6447973408, 6447974688, 6447974768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447974864, 6447976464, 6447975120, 6443766512, 6447976128, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447976720, 6447976864, 6447976848 @@ -351328,7 +351328,7 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 6462927472, + "vtable_address": 6462927488, "methods": [ 6453715728, 6451502128, @@ -351433,22 +351433,22 @@ }, { "type_name": "CUserMessageSayText_t", - "vtable_address": 6462927520, + "vtable_address": 6462927536, "methods": [ 6453710268, - 6455181760, + 6455181776, 6448449232, 6448450032, 6448450112, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448450144, 6448451120, 6448450272, 6443766512, 6448450864, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448451216, 6448451552, 6448451536 @@ -351550,28 +351550,28 @@ }, { "type_name": "CUserMessageScreenTilt", - "vtable_address": 6461605856, + "vtable_address": 6461605840, "methods": [ 6448443328, - 6455181760, + 6455181776, 6448431360, 6448431904, 6448432016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448432032, 6448433664, 6448432256, 6443766512, 6448433184, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448434624, 6448436688, 6448435712, - 6455179744, + 6455179760, 6448443520, - 6455179744, + 6455179760, 6448446544 ], "bases": [ @@ -351615,7 +351615,7 @@ }, { "type_name": "CUserMessageScreenTilt_t", - "vtable_address": 6462928624, + "vtable_address": 6462928640, "methods": [ 6453715824, 6451505312, @@ -351720,22 +351720,22 @@ }, { "type_name": "CUserMessageScreenTilt_t", - "vtable_address": 6462928672, + "vtable_address": 6462928688, "methods": [ 6453710280, - 6455181760, + 6455181776, 6448431360, 6448431904, 6448432016, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448432032, 6448433664, 6448432256, 6443766512, 6448433184, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448434624, 6448436688, 6448435712 @@ -351837,22 +351837,22 @@ }, { "type_name": "CUserMessageSendAudio", - "vtable_address": 6461620256, + "vtable_address": 6461620240, "methods": [ 6448526368, - 6455181760, + 6455181776, 6448523248, 6448523600, 6448523664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448523680, 6448524480, 6448523760, 6443766512, 6448524320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448524496, 6448524560, 6448524544 @@ -351898,7 +351898,7 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 6461724048, + "vtable_address": 6461724064, "methods": [ 6448896656, 6448906928, @@ -352003,22 +352003,22 @@ }, { "type_name": "CUserMessageSendAudio_t", - "vtable_address": 6461724096, + "vtable_address": 6461724112, "methods": [ 6448892332, - 6455181760, + 6455181776, 6448523248, 6448523600, 6448523664, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448523680, 6448524480, 6448523760, 6443766512, 6448524320, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448524496, 6448524560, 6448524544 @@ -352120,22 +352120,22 @@ }, { "type_name": "CUserMessageServerFrameTime", - "vtable_address": 6461591288, + "vtable_address": 6461591272, "methods": [ 6448394736, - 6455181760, + 6455181776, 6448390832, 6448390896, 6448390928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448390944, 6448391408, 6448390976, 6443766512, 6448391296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448391440, 6448391600, 6448391552 @@ -352181,7 +352181,7 @@ }, { "type_name": "CUserMessageServerFrameTime_t", - "vtable_address": 6462553144, + "vtable_address": 6462553176, "methods": [ 6452388192, 6451512448, @@ -352286,22 +352286,22 @@ }, { "type_name": "CUserMessageServerFrameTime_t", - "vtable_address": 6462553192, + "vtable_address": 6462553224, "methods": [ 6452386584, - 6455181760, + 6455181776, 6448390832, 6448390896, 6448390928, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448390944, 6448391408, 6448390976, 6443766512, 6448391296, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448391440, 6448391600, 6448391552 @@ -352403,26 +352403,26 @@ }, { "type_name": "CUserMessageShake", - "vtable_address": 6461592072, + "vtable_address": 6461592056, "methods": [ 6448398144, - 6455181760, + 6455181776, 6448392272, 6448392480, 6448392512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448392528, 6448394304, 6448392880, 6443766512, 6448393504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448394608, 6448395408, 6448394992, - 6455179744, + 6455179760, 6448397104 ], "bases": [ @@ -352466,26 +352466,26 @@ }, { "type_name": "CUserMessageShakeDir", - "vtable_address": 6461603744, + "vtable_address": 6461603728, "methods": [ 6448413232, - 6455181760, + 6455181776, 6448402416, 6448404000, 6448404208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448404240, 6448405712, 6448404928, 6443766512, 6448405536, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448405824, 6448406288, 6448406096, - 6455179744, + 6455179760, 6448412432 ], "bases": [ @@ -352529,7 +352529,7 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 6462928048, + "vtable_address": 6462928064, "methods": [ 6453715920, 6451503472, @@ -352634,22 +352634,22 @@ }, { "type_name": "CUserMessageShake_t", - "vtable_address": 6462928096, + "vtable_address": 6462928112, "methods": [ 6453710292, - 6455181760, + 6455181776, 6448392272, 6448392480, 6448392512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448392528, 6448394304, 6448392880, 6443766512, 6448393504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448394608, 6448395408, 6448394992 @@ -352751,33 +352751,33 @@ }, { "type_name": "CUserMessageShowMenu", - "vtable_address": 6461520864, + "vtable_address": 6461520848, "methods": [ 6448040544, - 6455181760, + 6455181776, 6448028304, 6448028896, 6448028976, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448028992, 6448030176, 6448029136, 6443766512, 6448029824, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448030192, 6448030224, 6448030208, - 6455179744, + 6455179760, 6448034128, - 6455179744, + 6455179760, 6448034784, - 6455179744, + 6455179760, 6448040880, - 6455179744, - 6448043008 + 6455179760, + 6448042944 ], "bases": [ { @@ -352820,26 +352820,26 @@ }, { "type_name": "CUserMessageTextMsg", - "vtable_address": 6461618144, + "vtable_address": 6461618128, "methods": [ 6448506784, - 6455181760, + 6455181776, 6448499632, 6448499984, 6448500048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448500064, 6448501072, 6448500256, 6443766512, 6448500720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448501088, 6448501264, 6448501104, - 6455179744, + 6455179760, 6448504288 ], "bases": [ @@ -352883,7 +352883,7 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 6462343504, + "vtable_address": 6462343536, "methods": [ 6451540800, 6451543824, @@ -352988,22 +352988,22 @@ }, { "type_name": "CUserMessageTextMsg_t", - "vtable_address": 6462343552, + "vtable_address": 6462343584, "methods": [ 6451539724, - 6455181760, + 6455181776, 6448499632, 6448499984, 6448500048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448500064, 6448501072, 6448500256, 6443766512, 6448500720, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448501088, 6448501264, 6448501104 @@ -353105,26 +353105,26 @@ }, { "type_name": "CUserMessageUpdateCssClasses", - "vtable_address": 6461590216, + "vtable_address": 6461590200, "methods": [ 6448388464, - 6455181760, + 6455181776, 6443765696, 6448381888, 6448382224, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448382240, 6443746608, 6448382512, 6443766512, 6448383120, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448383376, 6448383488, 6448383472, - 6455179744, + 6455179760, 6448387408 ], "bases": [ @@ -353276,19 +353276,19 @@ "vtable_address": 6460493192, "methods": [ 6443735636, - 6455181760, + 6455181776, 6443765696, 6448381888, 6448382224, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448382240, 6443746608, 6448382512, 6443766512, 6448383120, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448383376, 6448383488, 6448383472 @@ -353390,26 +353390,26 @@ }, { "type_name": "CUserMessageVoiceMask", - "vtable_address": 6461630024, + "vtable_address": 6461630008, "methods": [ 6448549328, - 6455181760, + 6455181776, 6448539104, 6448540128, 6448540192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448541456, 6448543824, 6448542640, 6443766512, 6448543408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448543872, 6448545536, 6448545280, - 6455179744, + 6455179760, 6448549504 ], "bases": [ @@ -353453,7 +353453,7 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 6462927280, + "vtable_address": 6462927296, "methods": [ 6453716016, 6451500768, @@ -353558,22 +353558,22 @@ }, { "type_name": "CUserMessageVoiceMask_t", - "vtable_address": 6462927328, + "vtable_address": 6462927344, "methods": [ 6453710304, - 6455181760, + 6455181776, 6448539104, 6448540128, 6448540192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448541456, 6448543824, 6448542640, 6443766512, 6448543408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448543872, 6448545536, 6448545280 @@ -353675,26 +353675,26 @@ }, { "type_name": "CUserMessageWaterShake", - "vtable_address": 6461604576, + "vtable_address": 6461604560, "methods": [ 6448427392, - 6455181760, + 6455181776, 6448421824, 6448422928, 6448422960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448422976, 6448423888, 6448423088, 6443766512, 6448423584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448423984, 6448424016, 6448424000, - 6455179744, + 6455179760, 6448425584 ], "bases": [ @@ -353738,7 +353738,7 @@ }, { "type_name": "CUserMessageWaterShake_t", - "vtable_address": 6462928240, + "vtable_address": 6462928256, "methods": [ 6453716112, 6451504208, @@ -353843,22 +353843,22 @@ }, { "type_name": "CUserMessageWaterShake_t", - "vtable_address": 6462928288, + "vtable_address": 6462928304, "methods": [ 6453710316, - 6455181760, + 6455181776, 6448421824, 6448422928, 6448422960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448422976, 6448423888, 6448423088, 6443766512, 6448423584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448423984, 6448424016, 6448424000 @@ -353960,26 +353960,26 @@ }, { "type_name": "CUserMessage_Diagnostic_Response", - "vtable_address": 6461546968, + "vtable_address": 6461546952, "methods": [ 6448071696, - 6455181760, + 6455181776, 6448054096, 6448054352, 6448054432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448054448, 6448056384, 6448054784, 6443766512, 6448055728, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448056400, 6448056608, 6448056592, - 6455179744, + 6455179760, 6448070112 ], "bases": [ @@ -354023,22 +354023,22 @@ }, { "type_name": "CUserMessage_Diagnostic_Response_Diagnostic", - "vtable_address": 6461521680, + "vtable_address": 6461521664, "methods": [ 6448048672, - 6455181760, + 6455181776, 6448034096, 6448034576, 6448034768, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448035040, 6448040128, 6448036544, 6443766512, 6448038768, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448040512, 6448040720, 6448040704 @@ -354084,22 +354084,22 @@ }, { "type_name": "CUserMessage_DllStatus", - "vtable_address": 6461620400, + "vtable_address": 6461620384, "methods": [ 6448527328, - 6455181760, + 6455181776, 6448501536, 6448501952, 6448502352, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448502368, 6448505344, 6448503216, 6443766512, 6448504480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448506640, 6448506720, 6448506688 @@ -354145,22 +354145,22 @@ }, { "type_name": "CUserMessage_DllStatus_CModule", - "vtable_address": 6461617376, + "vtable_address": 6461617360, "methods": [ 6448499472, - 6455181760, + 6455181776, 6448490912, 6448491280, 6448491360, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448491376, 6448493584, 6448491792, 6443766512, 6448493168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448495216, 6448496864, 6448496848 @@ -354206,22 +354206,22 @@ }, { "type_name": "CUserMessage_DllStatus_CVDiagnostic", - "vtable_address": 6461616256, + "vtable_address": 6461616240, "methods": [ 6448488688, - 6455181760, + 6455181776, 6448481984, 6448482176, 6448482256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448482272, 6448483552, 6448482448, 6443766512, 6448483136, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448483728, 6448483760, 6448483744 @@ -354267,26 +354267,26 @@ }, { "type_name": "CUserMessage_ExtraUserData", - "vtable_address": 6461555392, + "vtable_address": 6461555376, "methods": [ 6448100336, - 6455181760, + 6455181776, 6448084640, 6448085024, 6448085104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448085120, 6448087072, 6448085472, 6443766512, 6448086400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448087264, 6448088128, 6448088112, - 6455179744, + 6455179760, 6448099536 ], "bases": [ @@ -354330,22 +354330,22 @@ }, { "type_name": "CUserMessage_Inventory_Response", - "vtable_address": 6461508144, + "vtable_address": 6461508128, "methods": [ 6447982304, - 6455181760, + 6455181776, 6448553248, 6448553888, 6448554000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448554016, 6448557520, 6448554704, 6443766512, 6448556288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448557696, 6448557728, 6448557712 @@ -354391,22 +354391,22 @@ }, { "type_name": "CUserMessage_Inventory_Response_InventoryDetail", - "vtable_address": 6461631496, + "vtable_address": 6461631480, "methods": [ 6448552320, - 6455181760, + 6455181776, 6448539088, 6448539456, 6448539584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448539600, 6448543376, 6448540208, 6443766512, 6448541664, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448543840, 6448545168, 6448544576 @@ -354452,23 +354452,23 @@ }, { "type_name": "CUserMessage_NotifyResponseFound", - "vtable_address": 6461560320, + "vtable_address": 6461560304, "methods": [ 6448153168, - 6455181760, + 6455181776, 6448117520, 6448118800, 6448119200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448119440, 6448123344, 6448120256, 6443766512, 6448121776, - 6455183120, - 6455184944, - 6448123552, + 6455183136, + 6455184960, + 6448123616, 6448123712, 6448123696 ], @@ -354513,32 +354513,32 @@ }, { "type_name": "CUserMessage_NotifyResponseFound_Criteria", - "vtable_address": 6461556928, + "vtable_address": 6461556912, "methods": [ 6448110768, - 6455181760, + 6455181776, 6448103232, 6448103408, 6448103568, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448103648, 6448105232, 6448104000, 6443766512, 6448105008, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448105392, 6448107280, 6448107264, - 6455179744, + 6455179760, 6448110464, - 6455179744, + 6455179760, 6448111472, - 6455179744, + 6455179760, 6448112032, - 6455179744, + 6455179760, 6448114208 ], "bases": [ @@ -354582,22 +354582,22 @@ }, { "type_name": "CUserMessage_PlayResponseConditional", - "vtable_address": 6461562384, + "vtable_address": 6461562368, "methods": [ 6448179280, - 6455181760, + 6455181776, 6448162080, 6448162480, 6448162640, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448162656, 6448164592, 6448163008, 6443766512, 6448163952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448166912, 6448172144, 6448172128 @@ -354643,7 +354643,7 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 6462377648, + "vtable_address": 6462377680, "methods": [ 6451744528, 6451515168, @@ -354748,22 +354748,22 @@ }, { "type_name": "CUserMessage_PlayResponseConditional_t", - "vtable_address": 6462377696, + "vtable_address": 6462377728, "methods": [ 6451742832, - 6455181760, + 6455181776, 6448162080, 6448162480, 6448162640, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448162656, 6448164592, 6448163008, 6443766512, 6448163952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448166912, 6448172144, 6448172128 @@ -354865,26 +354865,26 @@ }, { "type_name": "CUserMessage_UtilMsg_Response", - "vtable_address": 6461608400, + "vtable_address": 6461608384, "methods": [ 6448475632, - 6455181760, + 6455181776, 6448451616, 6448451952, 6448452192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448452208, 6448455600, 6448452880, 6443766512, 6448454352, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448455616, 6448456016, 6448456000, - 6455179744, + 6455179760, 6448475840 ], "bases": [ @@ -354928,26 +354928,26 @@ }, { "type_name": "CUserMessage_UtilMsg_Response_ItemDetail", - "vtable_address": 6461606032, + "vtable_address": 6461606016, "methods": [ 6448447840, - 6455181760, + 6455181776, 6448440576, - 6448441584, + 6448441600, 6448441680, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448441696, - 6448442976, + 6448442992, 6448441872, 6443766512, 6448442544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448443232, 6448443264, 6448443248, - 6455179744, + 6455179760, 6448447408 ], "bases": [ @@ -354991,26 +354991,26 @@ }, { "type_name": "CUserMsg_CustomGameEvent", - "vtable_address": 6461584040, + "vtable_address": 6461584024, "methods": [ 6448315104, - 6455181760, + 6455181776, 6446104096, 6448297680, 6448297776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448297792, 6446048144, 6448297952, 6443766512, 6448298928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448300624, 6448305520, 6448305504, - 6455179744, + 6455179760, 6448309648 ], "bases": [ @@ -355054,7 +355054,7 @@ }, { "type_name": "CUserMsg_CustomGameEvent_t", - "vtable_address": 6461032928, + "vtable_address": 6461032912, "methods": [ 6445978528, 6445995520, @@ -355173,22 +355173,22 @@ }, { "type_name": "CUserMsg_CustomGameEvent_t", - "vtable_address": 6461032976, + "vtable_address": 6461032960, "methods": [ 6445975416, - 6455181760, + 6455181776, 6446104096, 6448297680, 6448297776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448297792, 6446048144, 6448297952, 6443766512, 6448298928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448300624, 6448305520, 6448305504 @@ -355304,22 +355304,22 @@ }, { "type_name": "CUserMsg_HudError", - "vtable_address": 6461582616, + "vtable_address": 6461582600, "methods": [ 6448293376, - 6455181760, + 6455181776, 6448289344, 6448289424, 6448289456, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448289568, 6448290912, 6448289776, 6443766512, 6448290736, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448291264, 6448291328, 6448291312 @@ -355365,26 +355365,26 @@ }, { "type_name": "CUserMsg_ParticleManager", - "vtable_address": 6461581624, + "vtable_address": 6461581608, "methods": [ 6448281232, - 6455181760, + 6455181776, 6448206448, 6448212224, 6448214400, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448214464, 6448225472, 6448218624, 6443766512, 6448223424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448225728, 6448226832, 6448226480, - 6455179744, + 6455179760, 6448277936 ], "bases": [ @@ -355428,22 +355428,22 @@ }, { "type_name": "CUserMsg_ParticleManager_AddFan", - "vtable_address": 6461560912, + "vtable_address": 6461560896, "methods": [ 6448157040, - 6455181760, + 6455181776, 6448132240, 6448133600, 6448134000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448134016, 6448137520, 6448134912, 6443766512, 6448136608, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448138560, 6448140000, 6448139984 @@ -355489,22 +355489,22 @@ }, { "type_name": "CUserMsg_ParticleManager_AddModellistOverrideElement", - "vtable_address": 6461649120, + "vtable_address": 6461649104, "methods": [ 6448553088, - 6455181760, + 6455181776, 6448551136, 6448551312, 6448551392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448551408, 6448552304, 6448551536, 6443766512, 6448552048, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448552480, 6448552512, 6448552496 @@ -355550,22 +355550,22 @@ }, { "type_name": "CUserMsg_ParticleManager_ChangeControlPointAttachment", - "vtable_address": 6461603600, + "vtable_address": 6461603584, "methods": [ 6448412288, - 6455181760, + 6455181776, 6448401968, 6448402064, 6448402256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448402272, 6448403408, 6448402432, 6443766512, 6448403024, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448404224, 6448405744, 6448405728 @@ -355611,22 +355611,22 @@ }, { "type_name": "CUserMsg_ParticleManager_ClearModellistOverride", - "vtable_address": 6461506736, + "vtable_address": 6461506720, "methods": [ 6447971536, - 6455181760, + 6455181776, 6448561856, 6448562480, 6448562576, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448562592, 6448563456, 6448562656, 6443766512, 6448563264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448564128, 6448564576, 6448564560 @@ -355672,22 +355672,22 @@ }, { "type_name": "CUserMsg_ParticleManager_CreateParticle", - "vtable_address": 6461571120, + "vtable_address": 6461571104, "methods": [ 6448202128, - 6455181760, + 6455181776, 6448188848, 6448189376, 6448189728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448189744, 6448192032, 6448190144, 6443766512, 6448191312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448192064, 6448192352, 6448192272 @@ -355733,22 +355733,22 @@ }, { "type_name": "CUserMsg_ParticleManager_CreatePhysicsSim", - "vtable_address": 6461554720, + "vtable_address": 6461554704, "methods": [ 6448088576, - 6455181760, + 6455181776, 6448076320, 6448076528, 6448076608, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448076624, 6448078720, - 6448076928, + 6448076992, 6443766512, 6448077744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448079184, 6448084320, 6448083024 @@ -355794,28 +355794,28 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticle", - "vtable_address": 6461576968, + "vtable_address": 6461576952, "methods": [ 6448226160, - 6455181760, + 6455181776, 6448204176, 6448204720, 6448204752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448204768, 6448205328, 6448204800, 6443766512, 6448205216, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448205536, 6448205776, 6448205760, - 6455179744, + 6455179760, 6448207456, - 6455179744, + 6455179760, 6448225744 ], "bases": [ @@ -355859,22 +355859,22 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleInvolving", - "vtable_address": 6461577800, + "vtable_address": 6461577784, "methods": [ 6448239408, - 6455181760, + 6455181776, 6448231872, 6448235536, 6448235584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448235600, 6448236400, 6448235664, 6443766512, 6448236176, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448236432, 6448236864, 6448236848 @@ -355920,34 +355920,34 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyParticleNamed", - "vtable_address": 6461579192, + "vtable_address": 6461579176, "methods": [ 6448249488, - 6455181760, + 6455181776, 6448244272, 6448244384, 6448244432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448244448, 6448245840, 6448244720, 6443766512, 6448245520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448246576, 6448247648, 6448247632, - 6455179744, + 6455179760, 6448248352, - 6455179744, + 6455179760, 6448248800, - 6455179744, + 6455179760, 6448251584, - 6455179744, + 6455179760, 6448252544, - 6455179744, + 6455179760, 6448256384 ], "bases": [ @@ -355991,22 +355991,22 @@ }, { "type_name": "CUserMsg_ParticleManager_DestroyPhysicsSim", - "vtable_address": 6461555248, + "vtable_address": 6461555232, "methods": [ 6448100256, - 6455181760, + 6455181776, 6448099344, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448099472, 6448099456 @@ -356066,28 +356066,28 @@ }, { "type_name": "CUserMsg_ParticleManager_FreezeParticleInvolving", - "vtable_address": 6461629704, + "vtable_address": 6461629688, "methods": [ 6448548880, - 6455181760, + 6455181776, 6448538032, 6448538128, 6448538176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448538192, 6448539072, 6448538272, 6443766512, 6448538816, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448539120, 6448541600, 6448541440, - 6455179744, + 6455179760, 6448546336, - 6455179744, + 6455179760, 6448546528 ], "bases": [ @@ -356131,22 +356131,22 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleCanFreeze", - "vtable_address": 6461620544, + "vtable_address": 6461620528, "methods": [ 6448528032, - 6455181760, + 6455181776, 6448524528, 6448524752, 6448524832, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448524864, 6448526144, 6448524976, 6443766512, 6448525792, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448526160, 6448526224, 6448526192 @@ -356192,22 +356192,22 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleFreezeTransitionOverride", - "vtable_address": 6461621232, + "vtable_address": 6461621216, "methods": [ 6448536944, - 6455181760, + 6455181776, 6448529328, 6448530720, 6448530752, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448531360, 6448532272, 6448531824, 6443766512, 6448532160, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448533072, 6448534832, 6448534800 @@ -356253,22 +356253,22 @@ }, { "type_name": "CUserMsg_ParticleManager_ParticleSkipToTime", - "vtable_address": 6461619904, + "vtable_address": 6461619888, "methods": [ 6448521280, - 6455181760, + 6455181776, 6448518736, 6448518832, 6448518864, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448518896, 6448519520, 6448518992, 6443766512, 6448519408, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448519536, 6448519808, 6448519632 @@ -356314,26 +356314,26 @@ }, { "type_name": "CUserMsg_ParticleManager_ReleaseParticleIndex", - "vtable_address": 6461562528, + "vtable_address": 6461562512, "methods": [ 6448180208, - 6455181760, + 6455181776, 6448179008, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448179216, 6448179200, - 6455179744, + 6455179760, 6448179472 ], "bases": [ @@ -356391,22 +356391,22 @@ }, { "type_name": "CUserMsg_ParticleManager_RemoveFan", - "vtable_address": 6461563376, + "vtable_address": 6461563360, "methods": [ 6448192432, - 6455181760, + 6455181776, 6448192048, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448192288, 6448192256 @@ -356466,32 +356466,32 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointModel", - "vtable_address": 6461607120, + "vtable_address": 6461607104, "methods": [ 6448462256, - 6455181760, + 6455181776, 6448455984, 6448456432, 6448456496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448456512, 6448458512, 6448456624, 6443766512, 6448458272, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448459632, 6448460160, 6448460144, - 6455179744, + 6455179760, 6448460336, - 6455179744, + 6455179760, 6448461280, - 6455179744, + 6455179760, 6448463360, - 6455179744, + 6455179760, 6448464736 ], "bases": [ @@ -356535,22 +356535,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetControlPointSnapshot", - "vtable_address": 6461608064, + "vtable_address": 6461608048, "methods": [ 6448468640, - 6455181760, + 6455181776, 6448466352, 6448466512, 6448466576, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448466752, 6448467568, 6448466864, 6443766512, 6448467344, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448467584, 6448467760, 6448467744 @@ -356596,24 +356596,24 @@ }, { "type_name": "CUserMsg_ParticleManager_SetMaterialOverride", - "vtable_address": 6461558064, + "vtable_address": 6461558048, "methods": [ 6448125424, - 6455181760, - 6448116672, + 6455181776, + 6448116688, 6448117232, 6448117488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448117536, 6448118336, - 6448117632, + 6448117696, 6443766512, 6448118176, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448121760, - 6448123568, + 6448123632, 6448123536 ], "bases": [ @@ -356657,22 +356657,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleClusterGrowth", - "vtable_address": 6461576184, + "vtable_address": 6461576168, "methods": [ 6448203024, - 6455181760, + 6455181776, 6448197264, 6448197632, 6448197728, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448197744, 6448199072, 6448197904, 6443766512, 6448198880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448199984, 6448200320, 6448200304 @@ -356718,26 +356718,26 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleFoWProperties", - "vtable_address": 6461605536, + "vtable_address": 6461605520, "methods": [ 6448437712, - 6455181760, + 6455181776, 6448429440, 6448429968, 6448430032, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448430048, - 6448431024, + 6448431248, 6448430160, 6443766512, 6448430688, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448431344, 6448431536, 6448431376, - 6455179744, + 6455179760, 6448437872 ], "bases": [ @@ -356781,26 +356781,26 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext", - "vtable_address": 6461545712, + "vtable_address": 6461545696, "methods": [ 6448069440, - 6455181760, + 6455181776, 6448024272, - 6448025632, + 6448025648, 6448026192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448026208, - 6448028112, + 6448028128, 6448026992, 6443766512, 6448027808, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448028288, 6448028832, 6448028640, - 6455179744, + 6455179760, 6448068080 ], "bases": [ @@ -356844,22 +356844,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext", - "vtable_address": 6461517304, + "vtable_address": 6461517288, "methods": [ 6448018704, - 6455181760, + 6455181776, 6448014720, 6448015056, 6448015104, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448015120, 6448015984, 6448015216, 6443766512, 6448015712, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448016000, 6448016032, 6448016016 @@ -356905,22 +356905,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue", - "vtable_address": 6461507552, + "vtable_address": 6461507536, "methods": [ 6447980000, - 6455181760, + 6455181776, 6447973584, 6447975008, 6447975040, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447975056, 6447976704, 6447975712, 6443766512, 6447976480, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447976816, 6447977072, 6447977024 @@ -356966,22 +356966,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue", - "vtable_address": 6461516200, + "vtable_address": 6461516184, "methods": [ 6448009952, - 6455181760, + 6455181776, 6448000560, 6448002112, 6448002272, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448004320, 6448007200, 6448006368, 6443766512, 6448006944, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448007232, 6448007344, 6448007328 @@ -357027,22 +357027,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue", - "vtable_address": 6461508976, + "vtable_address": 6461508960, "methods": [ 6447997664, - 6455181760, + 6455181776, 6447983424, - 6447983728, + 6447983792, 6447983888, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447983904, 6447985056, 6447984192, 6443766512, 6447984832, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447985840, 6447988176, 6447987952 @@ -357088,22 +357088,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleShouldCheckFoW", - "vtable_address": 6461606192, + "vtable_address": 6461606176, "methods": [ 6448451232, - 6455181760, + 6455181776, 6448445808, 6448446608, 6448446640, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448446656, 6448447216, 6448446688, 6443766512, 6448447088, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448447296, 6448447328, 6448447312 @@ -357149,26 +357149,26 @@ }, { "type_name": "CUserMsg_ParticleManager_SetParticleText", - "vtable_address": 6461615904, + "vtable_address": 6461615888, "methods": [ 6448483568, - 6455181760, + 6455181776, 6448477568, 6448477696, 6448477760, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448477776, 6448478400, 6448477920, 6443766512, 6448478288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448478608, 6448480240, 6448480224, - 6455179744, + 6455179760, 6448482000 ], "bases": [ @@ -357212,26 +357212,26 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectGenericFlag", - "vtable_address": 6461617984, + "vtable_address": 6461617968, "methods": [ 6448501392, - 6455181760, + 6455181776, 6448498688, 6448498768, 6448498800, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448498816, 6448499440, 6448498848, 6443766512, 6448499328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448499456, 6448499664, 6448499648, - 6455179744, + 6455179760, 6448501568 ], "bases": [ @@ -357275,22 +357275,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetSceneObjectTintAndDesat", - "vtable_address": 6461618944, + "vtable_address": 6461618928, "methods": [ 6448511696, - 6455181760, + 6455181776, 6448508080, 6448509472, 6448510192, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448510208, 6448510864, 6448510256, 6443766512, 6448510704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448510880, 6448510992, 6448510976 @@ -357336,22 +357336,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetTextureAttribute", - "vtable_address": 6461617008, + "vtable_address": 6461616992, "methods": [ 6448490928, - 6455181760, + 6455181776, 6448488240, 6448488448, 6448488544, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448488560, 6448489536, 6448488848, 6443766512, 6448489232, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448489616, 6448489648, 6448489632 @@ -357397,22 +357397,22 @@ }, { "type_name": "CUserMsg_ParticleManager_SetVData", - "vtable_address": 6461556624, + "vtable_address": 6461556608, "methods": [ 6448110064, - 6455181760, + 6455181776, 6448103248, 6448103584, 6448103760, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448103936, 6448105376, 6448104640, 6443766512, 6448105264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448105408, 6448107904, 6448107344 @@ -357458,22 +357458,22 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateEntityPosition", - "vtable_address": 6461604432, + "vtable_address": 6461604416, "methods": [ 6448425408, - 6455181760, + 6455181776, 6448421264, 6448421712, 6448421808, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448421840, 6448422816, 6448422032, 6443766512, 6448422528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448423072, 6448423920, 6448423904 @@ -357519,28 +357519,28 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateFan", - "vtable_address": 6461562688, + "vtable_address": 6461562672, "methods": [ 6448184048, - 6455181760, - 6448172448, + 6455181776, + 6448172464, 6448174304, 6448174656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448174672, 6448176656, 6448175312, 6443766512, 6448176288, - 6455183120, - 6455184944, - 6448177040, + 6455183136, + 6455184960, + 6448177056, 6448178112, 6448178096, - 6455179744, + 6455179760, 6448180304, - 6455179744, + 6455179760, 6448182144 ], "bases": [ @@ -357584,22 +357584,22 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleEnt", - "vtable_address": 6461589560, + "vtable_address": 6461589544, "methods": [ 6448380464, - 6455181760, + 6455181776, 6448353600, 6448354656, 6448354880, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448354896, 6448357296, 6448355520, 6443766512, 6448356656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448357520, 6448358496, 6448358480 @@ -357645,26 +357645,26 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFallback", - "vtable_address": 6461586312, + "vtable_address": 6461586296, "methods": [ 6448331536, - 6455181760, + 6455181776, 6448320464, 6448320816, 6448320912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448320928, 6448321824, 6448321120, 6443766512, 6448321600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448321856, 6448322304, 6448322288, - 6455179744, + 6455179760, 6448329568 ], "bases": [ @@ -357708,30 +357708,30 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE", - "vtable_address": 6461581432, + "vtable_address": 6461581416, "methods": [ 6448276240, - 6455181760, + 6455181776, 6448265904, 6448266320, 6448266432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448266544, 6448268496, - 6448267232, + 6448267248, 6443766512, 6448268272, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448268576, 6448269360, 6448269280, - 6455179744, - 6448271312, - 6455179744, + 6455179760, + 6448271488, + 6455179760, 6448271808, - 6455179744, + 6455179760, 6448273296 ], "bases": [ @@ -357775,22 +357775,22 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOffset", - "vtable_address": 6461587448, + "vtable_address": 6461587432, "methods": [ 6448342416, - 6455181760, + 6455181776, 6448336464, 6448337760, 6448338240, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448338272, 6448339536, 6448338672, 6443766512, 6448339264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448339552, 6448339936, 6448339920 @@ -357836,22 +357836,22 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE", - "vtable_address": 6461582760, + "vtable_address": 6461582744, "methods": [ 6448293520, - 6455181760, + 6455181776, 6448282912, 6448284944, 6448285952, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448285984, 6448289024, - 6448287040, + 6448287056, 6443766512, 6448288400, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448289072, 6448289216, 6448289184 @@ -357897,22 +357897,22 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleSetFrozen", - "vtable_address": 6461590824, + "vtable_address": 6461590808, "methods": [ 6448390544, - 6455181760, + 6455181776, 6448387376, 6448387552, 6448387584, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448387600, 6448388448, 6448387648, 6443766512, 6448388272, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448388624, 6448388656, 6448388640 @@ -357958,22 +357958,22 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleShouldDraw", - "vtable_address": 6461591784, + "vtable_address": 6461591768, "methods": [ 6448397824, - 6455181760, + 6455181776, 6448394592, 6448394704, 6448394880, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448394896, 6448395824, 6448395008, 6443766512, 6448395632, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448396432, 6448396944, 6448396928 @@ -358019,27 +358019,27 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticleTransform", - "vtable_address": 6461584200, + "vtable_address": 6461584184, "methods": [ 6448315376, - 6455181760, + 6455181776, 6448297472, 6448298768, 6448299088, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448299104, 6448301616, 6448299456, 6443766512, 6448300640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448305488, 6448305776, 6448305760, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -358082,22 +358082,22 @@ }, { "type_name": "CUserMsg_ParticleManager_UpdateParticle_OBSOLETE", - "vtable_address": 6461580024, + "vtable_address": 6461580008, "methods": [ 6448261728, - 6455181760, + 6455181776, 6448259600, 6448260112, 6448260208, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448260224, 6448261120, 6448260416, 6443766512, 6448260896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448261136, 6448261312, 6448261296 @@ -358143,7 +358143,7 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 6462209296, + "vtable_address": 6462209328, "methods": [ 6450642832, 6450658608, @@ -358248,22 +358248,22 @@ }, { "type_name": "CUserMsg_ParticleManager_t", - "vtable_address": 6462209344, + "vtable_address": 6462209376, "methods": [ 6450638872, - 6455181760, + 6455181776, 6448206448, 6448212224, 6448214400, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448214464, 6448225472, 6448218624, 6443766512, 6448223424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448225728, 6448226832, 6448226480 @@ -358397,7 +358397,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6461866712, + "vtable_address": 6461866728, "methods": [ 6449383792 ], @@ -358413,7 +358413,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6461782792, + "vtable_address": 6461782808, "methods": [ 6449226560 ], @@ -358429,7 +358429,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6461838144, + "vtable_address": 6461838160, "methods": [ 6449324656 ], @@ -358445,7 +358445,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6462758280, + "vtable_address": 6462758312, "methods": [ 6452729680 ], @@ -358461,7 +358461,7 @@ }, { "type_name": "CUtlAutoList", - "vtable_address": 6461879544, + "vtable_address": 6461879560, "methods": [ 6449383952 ], @@ -358477,7 +358477,7 @@ }, { "type_name": "CUtlMapDataOps,int>,79,5>", - "vtable_address": 6462192728, + "vtable_address": 6462192760, "methods": [ 6450497040, 6450483040, @@ -358527,7 +358527,7 @@ }, { "type_name": "CUtlMultiJobProcessor", - "vtable_address": 6461070568, + "vtable_address": 6461070552, "methods": [ 6446340080 ], @@ -358543,7 +358543,7 @@ }, { "type_name": "CUtlSymbolDataOps", - "vtable_address": 6462261304, + "vtable_address": 6462261336, "methods": [ 6450877904, 6450878080, @@ -358593,11 +358593,11 @@ }, { "type_name": "CUtlVectorAbstract > >", - "vtable_address": 6463118632, + "vtable_address": 6463118664, "methods": [ - 6454618736, - 6454806480, - 6454832400 + 6454618752, + 6454806496, + 6454832416 ], "bases": [ { @@ -358626,11 +358626,11 @@ }, { "type_name": "CUtlVectorAbstract >", - "vtable_address": 6463118664, + "vtable_address": 6463118696, "methods": [ - 6454618992, - 6454806496, - 6454832480 + 6454619008, + 6454806512, + 6454832496 ], "bases": [ { @@ -358659,11 +358659,11 @@ }, { "type_name": "CUtlVectorAbstract >", - "vtable_address": 6463118600, + "vtable_address": 6463118632, "methods": [ - 6454619296, - 6454806512, - 6454832688 + 6454619312, + 6454806528, + 6454832704 ], "bases": [ { @@ -358692,7 +358692,7 @@ }, { "type_name": "CUtlVectorDataOps,6,0>", - "vtable_address": 6462317488, + "vtable_address": 6462317520, "methods": [ 6451370208, 6451366064, @@ -358742,7 +358742,7 @@ }, { "type_name": "CUtlVectorDataOps,6,0>", - "vtable_address": 6462766712, + "vtable_address": 6462766744, "methods": [ 6452854448, 6452849536, @@ -358792,7 +358792,7 @@ }, { "type_name": "CUtlVectorDataOps,79,0>", - "vtable_address": 6461047408, + "vtable_address": 6461047392, "methods": [ 6446177920, 6446166896, @@ -358842,7 +358842,7 @@ }, { "type_name": "CUtlVectorDataOps,79,0>", - "vtable_address": 6461046848, + "vtable_address": 6461046832, "methods": [ 6446178192, 6446167184, @@ -358942,7 +358942,7 @@ }, { "type_name": "CUtlVectorDataOps,class CSceneEntity::NetworkVar_m_hActorList,-1,int>,13,0>", - "vtable_address": 6462916544, + "vtable_address": 6462916560, "methods": [ 6453577984, 6453564256, @@ -358992,7 +358992,7 @@ }, { "type_name": "CUtlVectorDataOps,class ActiveModelConfig_t::NetworkVar_m_AssociatedEntities,-1,int>,13,0>", - "vtable_address": 6462192504, + "vtable_address": 6462192536, "methods": [ 6450497552, 6450483584, @@ -359092,7 +359092,7 @@ }, { "type_name": "CUtlVectorDataOps,class CBaseModelEntity::NetworkVar_m_ConfigEntitiesToPropagateMaterialDecalsTo,-1,int>,13,0>", - "vtable_address": 6462192784, + "vtable_address": 6462192816, "methods": [ 6450497824, 6450483952, @@ -359292,7 +359292,7 @@ }, { "type_name": "CUtlVectorDataOps,class CPlayer_WeaponServices::NetworkVar_m_hMyWeapons,-1,int>,13,0>", - "vtable_address": 6462321944, + "vtable_address": 6462321976, "methods": [ 6451421248, 6451420800, @@ -359342,7 +359342,7 @@ }, { "type_name": "CUtlVectorDataOps,class CPlayer_CameraServices::NetworkVar_m_PostProcessingVolumes,-1,int>,13,0>", - "vtable_address": 6462317712, + "vtable_address": 6462317744, "methods": [ 6451368848, 6451364208, @@ -359392,7 +359392,7 @@ }, { "type_name": "CUtlVectorDataOps,59,0>", - "vtable_address": 6462916472, + "vtable_address": 6462916488, "methods": [ 6453578256, 6453564624, @@ -359542,7 +359542,7 @@ }, { "type_name": "CUtlVectorDataOps,2,0>", - "vtable_address": 6462192560, + "vtable_address": 6462192592, "methods": [ 6450498096, 6450484320, @@ -359692,7 +359692,7 @@ }, { "type_name": "CUtlVectorDataOps,46,0>", - "vtable_address": 6462766656, + "vtable_address": 6462766688, "methods": [ 6452854176, 6452849168, @@ -359742,7 +359742,7 @@ }, { "type_name": "CUtlVectorDataOps,4,0>", - "vtable_address": 6461047352, + "vtable_address": 6461047336, "methods": [ 6446178464, 6446167472, @@ -359792,7 +359792,7 @@ }, { "type_name": "CUtlVectorDataOps,4,0>", - "vtable_address": 6461046792, + "vtable_address": 6461046776, "methods": [ 6446178736, 6446167840, @@ -359842,7 +359842,7 @@ }, { "type_name": "CUtlVectorDataOps,class shard_model_desc_t::NetworkVar_m_vecPanelVertices,-1,int>,25,0>", - "vtable_address": 6462574920, + "vtable_address": 6462574952, "methods": [ 6452518960, 6452511232, @@ -359892,7 +359892,7 @@ }, { "type_name": "CUtlVectorDataOps,class CAnimGraphNetworkedVariables::NetworkVar_m_OwnerOnlyPredNetVectorVariables,-1,int>,3,0>", - "vtable_address": 6461047296, + "vtable_address": 6461047280, "methods": [ 6446177376, 6446166192, @@ -359942,7 +359942,7 @@ }, { "type_name": "CUtlVectorDataOps,class CAnimGraphNetworkedVariables::NetworkVar_m_PredNetVectorVariables,-1,int>,3,0>", - "vtable_address": 6461046736, + "vtable_address": 6461046720, "methods": [ 6446177648, 6446166544, @@ -359992,7 +359992,7 @@ }, { "type_name": "CUtlVectorDataOps,class CPathParticleRope::NetworkVar_m_PathNodes_Color,-1,int>,3,0>", - "vtable_address": 6462317432, + "vtable_address": 6462317464, "methods": [ 6451369120, 6451364656, @@ -360042,7 +360042,7 @@ }, { "type_name": "CUtlVectorDataOps,class CPathParticleRope::NetworkVar_m_PathNodes_Position,-1,int>,3,0>", - "vtable_address": 6462317264, + "vtable_address": 6462317296, "methods": [ 6451369392, 6451365008, @@ -360092,7 +360092,7 @@ }, { "type_name": "CUtlVectorDataOps,class CPathParticleRope::NetworkVar_m_PathNodes_TangentIn,-1,int>,3,0>", - "vtable_address": 6462317320, + "vtable_address": 6462317352, "methods": [ 6451369664, 6451365360, @@ -360142,7 +360142,7 @@ }, { "type_name": "CUtlVectorDataOps,class CPathParticleRope::NetworkVar_m_PathNodes_TangentOut,-1,int>,3,0>", - "vtable_address": 6462317376, + "vtable_address": 6462317408, "methods": [ 6451369936, 6451365712, @@ -360192,7 +360192,7 @@ }, { "type_name": "CUtlVectorDataOps,class CRagdollProp::NetworkVar_m_ragPos,-1,int>,14,0>", - "vtable_address": 6462766600, + "vtable_address": 6462766632, "methods": [ 6452853904, 6452848816, @@ -360242,7 +360242,7 @@ }, { "type_name": "CUtlVectorDataOps,class shard_model_desc_t::NetworkVar_m_vInitialPanelVertices,-1,int>,27,0>", - "vtable_address": 6462574976, + "vtable_address": 6462575008, "methods": [ 6452519232, 6452511600, @@ -360292,7 +360292,7 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6461047240, + "vtable_address": 6461047224, "methods": [ 6446176832, 6446165456, @@ -360342,7 +360342,7 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6461046680, + "vtable_address": 6461046664, "methods": [ 6446177104, 6446165824, @@ -360392,7 +360392,7 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6462411256, + "vtable_address": 6462411288, "methods": [ 6451891424, 6451884512, @@ -360442,7 +360442,7 @@ }, { "type_name": "CUtlVectorDataOps,1,0>", - "vtable_address": 6462317544, + "vtable_address": 6462317576, "methods": [ 6451368576, 6451363840, @@ -360492,7 +360492,7 @@ }, { "type_name": "CUtlVectorDataOps,5,0>", - "vtable_address": 6461047072, + "vtable_address": 6461047056, "methods": [ 6446175200, 6446163248, @@ -360542,7 +360542,7 @@ }, { "type_name": "CUtlVectorDataOps,5,0>", - "vtable_address": 6461046512, + "vtable_address": 6461046496, "methods": [ 6446175472, 6446163616, @@ -360592,7 +360592,7 @@ }, { "type_name": "CUtlVectorDataOps,5,0>", - "vtable_address": 6462352856, + "vtable_address": 6462352888, "methods": [ 6451619872, 6451616688, @@ -360642,7 +360642,7 @@ }, { "type_name": "CUtlVectorDataOps,33,0>", - "vtable_address": 6461047184, + "vtable_address": 6461047168, "methods": [ 6446179008, 6446168208, @@ -360692,7 +360692,7 @@ }, { "type_name": "CUtlVectorDataOps,33,0>", - "vtable_address": 6461046624, + "vtable_address": 6461046608, "methods": [ 6446179280, 6446168576, @@ -360742,7 +360742,7 @@ }, { "type_name": "CUtlVectorDataOps,8,0>", - "vtable_address": 6461046960, + "vtable_address": 6461046944, "methods": [ 6446174112, 6446161840, @@ -360792,7 +360792,7 @@ }, { "type_name": "CUtlVectorDataOps,8,0>", - "vtable_address": 6461046400, + "vtable_address": 6461046384, "methods": [ 6446174384, 6446162192, @@ -360842,7 +360842,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6461046904, + "vtable_address": 6461046888, "methods": [ 6446175744, 6446163984, @@ -360892,7 +360892,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6461047128, + "vtable_address": 6461047112, "methods": [ 6446176016, 6446164352, @@ -360942,7 +360942,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6461046344, + "vtable_address": 6461046328, "methods": [ 6446176288, 6446164720, @@ -360992,7 +360992,7 @@ }, { "type_name": "CUtlVectorDataOps,37,0>", - "vtable_address": 6461046568, + "vtable_address": 6461046552, "methods": [ 6446176560, 6446165088, @@ -361042,7 +361042,7 @@ }, { "type_name": "CUtlVectorDataOps,58,0>", - "vtable_address": 6461047016, + "vtable_address": 6461047000, "methods": [ 6446174656, 6446162544, @@ -361092,7 +361092,7 @@ }, { "type_name": "CUtlVectorDataOps,58,0>", - "vtable_address": 6461046456, + "vtable_address": 6461046440, "methods": [ 6446174928, 6446162896, @@ -361242,7 +361242,7 @@ }, { "type_name": "CUtlVectorDataOps >,79,0>", - "vtable_address": 6462680976, + "vtable_address": 6462681008, "methods": [ 6452655280, 6452654896, @@ -361392,7 +361392,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6461118816, + "vtable_address": 6461118800, "methods": [ 6446594016, 6446578848, @@ -361442,7 +361442,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6462317768, + "vtable_address": 6462317800, "methods": [ 6451370480, 6451366416, @@ -361492,7 +361492,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6462543376, + "vtable_address": 6462543408, "methods": [ 6452271488, 6452269488, @@ -361542,7 +361542,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6462543488, + "vtable_address": 6462543520, "methods": [ 6452271760, 6452269856, @@ -361642,7 +361642,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6462543432, + "vtable_address": 6462543464, "methods": [ 6452272032, 6452270224, @@ -361692,7 +361692,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6462488672, + "vtable_address": 6462488704, "methods": [ 6452084224, 6452082816, @@ -361742,7 +361742,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6462916600, + "vtable_address": 6462916616, "methods": [ 6453579264, 6453565872, @@ -361792,7 +361792,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,13,0>", - "vtable_address": 6462916656, + "vtable_address": 6462916672, "methods": [ 6453579536, 6453566240, @@ -361842,7 +361842,7 @@ }, { "type_name": "CUtlVectorDataOps >,5,0>", - "vtable_address": 6462917056, + "vtable_address": 6462917072, "methods": [ 6453579808, 6453566608, @@ -361892,7 +361892,7 @@ }, { "type_name": "CUtlVectorDataOps >,2,0>", - "vtable_address": 6462317208, + "vtable_address": 6462317240, "methods": [ 6451371024, 6451367136, @@ -361942,7 +361942,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,3,0>", - "vtable_address": 6462317600, + "vtable_address": 6462317632, "methods": [ 6451370752, 6451366832, @@ -361992,7 +361992,7 @@ }, { "type_name": "CUtlVectorDataOps,int,class CUtlVectorMemory_Growable,int,0> >,27,0>", - "vtable_address": 6462574864, + "vtable_address": 6462574896, "methods": [ 6452520240, 6452512832, @@ -362092,7 +362092,7 @@ }, { "type_name": "CUtlVectorDataOps >,5,0>", - "vtable_address": 6462296552, + "vtable_address": 6462296584, "methods": [ 6451198640, 6451184144, @@ -362142,7 +362142,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462917000, + "vtable_address": 6462917016, "methods": [ 6453578528, 6453564992, @@ -362192,7 +362192,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6463028008, + "vtable_address": 6463028024, "methods": [ 6453808640, 6453807824, @@ -362242,7 +362242,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462766528, + "vtable_address": 6462766560, "methods": [ 6452854720, 6452849888, @@ -362292,7 +362292,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462411144, + "vtable_address": 6462411176, "methods": [ 6451891696, 6451884880, @@ -362342,7 +362342,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462574752, + "vtable_address": 6462574784, "methods": [ 6452519504, 6452511952, @@ -362392,7 +362392,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462574808, + "vtable_address": 6462574840, "methods": [ 6452519872, 6452512400, @@ -362442,7 +362442,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462916944, + "vtable_address": 6462916960, "methods": [ 6453578896, 6453565424, @@ -362492,7 +362492,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462296608, + "vtable_address": 6462296640, "methods": [ 6451198912, 6451184448, @@ -362542,7 +362542,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6463028208, + "vtable_address": 6463028224, "methods": [ 6453809008, 6453808240, @@ -362592,7 +362592,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462822640, + "vtable_address": 6462822672, "methods": [ 6453035760, 6453032096, @@ -362642,7 +362642,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462488616, + "vtable_address": 6462488648, "methods": [ 6452083856, 6452082384, @@ -362692,7 +362692,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462766768, + "vtable_address": 6462766800, "methods": [ 6452855088, 6452850416, @@ -362742,7 +362742,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462766824, + "vtable_address": 6462766856, "methods": [ 6452855456, 6452850832, @@ -362792,7 +362792,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462411312, + "vtable_address": 6462411344, "methods": [ 6451892064, 6451885328, @@ -362842,7 +362842,7 @@ }, { "type_name": "CUtlVectorDataOps >,10,0>", - "vtable_address": 6462365008, + "vtable_address": 6462365040, "methods": [ 6451702992, 6451703360, @@ -362942,7 +362942,7 @@ }, { "type_name": "CUtlVectorDataOps >,58,0>", - "vtable_address": 6462258480, + "vtable_address": 6462258512, "methods": [ 6450837744, 6450826768, @@ -362992,7 +362992,7 @@ }, { "type_name": "CUtlVectorDataOps,10,0>", - "vtable_address": 6462192672, + "vtable_address": 6462192704, "methods": [ 6450498368, 6450484688, @@ -363042,7 +363042,7 @@ }, { "type_name": "CUtlVectorDataOps,10,0>", - "vtable_address": 6462114448, + "vtable_address": 6462114464, "methods": [ 6449921104, 6449920432, @@ -363092,7 +363092,7 @@ }, { "type_name": "CUtlVectorDataOps,10,0>", - "vtable_address": 6462096552, + "vtable_address": 6462096568, "methods": [ 6449773200, 6449771568, @@ -363142,7 +363142,7 @@ }, { "type_name": "CUtlVectorPtrDataOps >,10,0>", - "vtable_address": 6462411032, + "vtable_address": 6462411064, "methods": [ 6451892432, 6451885744, @@ -363192,7 +363192,7 @@ }, { "type_name": "CVCDIOSignature", - "vtable_address": 6462892360, + "vtable_address": 6462892376, "methods": [ 6453419696 ], @@ -363223,10 +363223,10 @@ }, { "type_name": "CVDataFileManager", - "vtable_address": 6462205400, + "vtable_address": 6462205432, "methods": [ 6445800160, - 6459504336, + 6459504352, 6445800528, 6450559216, 6450552640, @@ -363290,22 +363290,22 @@ }, { "type_name": "CVDiagnostic", - "vtable_address": 6461456840, + "vtable_address": 6461456824, "methods": [ 6447480688, - 6455181760, + 6455181776, 6447463040, 6447466784, 6447467504, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447467520, 6447470976, 6447468976, 6443766512, 6447470544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447472848, 6447473056, 6447473040 @@ -363351,7 +363351,7 @@ }, { "type_name": "CVScriptGameEventListener", - "vtable_address": 6461056560, + "vtable_address": 6461056544, "methods": [ 6446236832, 6446235888 @@ -363397,7 +363397,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 6461090600, + "vtable_address": 6461090584, "methods": [ 6443752688, 6443767152, @@ -363505,7 +363505,7 @@ }, { "type_name": "CVScriptGameSystem", - "vtable_address": 6461091120, + "vtable_address": 6461091104, "methods": [ 6446669648, 6446670704, @@ -363566,12 +363566,12 @@ }, { "type_name": "CVariantSaveDataOps", - "vtable_address": 6463255808, + "vtable_address": 6463255840, "methods": [ - 6456747936, - 6456748752, - 6456749584, - 6456749632, + 6456747952, + 6456748768, + 6456749600, + 6456749648, 6443767104, 6443738720 ], @@ -363616,7 +363616,7 @@ }, { "type_name": "CVisibilityMonitor", - "vtable_address": 6462414280, + "vtable_address": 6462414312, "methods": [ 6451942800, 6443767152, @@ -363722,7 +363722,7 @@ }, { "type_name": "CVoiceGameMgr", - "vtable_address": 6463027680, + "vtable_address": 6463027696, "methods": [ 6453716208 ], @@ -363738,7 +363738,7 @@ }, { "type_name": "CVoiceGameMgrHelper", - "vtable_address": 6461696016, + "vtable_address": 6461696192, "methods": [ 6448832352, 6448832336, @@ -363778,13 +363778,13 @@ 6446805888, 6444439328, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6444566128, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -363814,7 +363814,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6444485072, 6444544704, 6444558272, @@ -364060,7 +364060,7 @@ }, { "type_name": "CWaterBullet", - "vtable_address": 6461304472, + "vtable_address": 6461304440, "methods": [ 6446805696, 6447018832, @@ -364069,9 +364069,9 @@ 6453805904, 6450317360, 6453828368, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6450314880, 6450537728, 6450455584, @@ -364101,7 +364101,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6453758944, 6447028336, 6447029152, @@ -364440,7 +364440,7 @@ }, { "type_name": "CWeaponAWP", - "vtable_address": 6461924896, + "vtable_address": 6461924912, "methods": [ 6446805904, 6449543440, @@ -364449,9 +364449,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -364481,7 +364481,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570672, 6449644432, 6449650992, @@ -364542,7 +364542,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -364765,14 +364765,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -365062,14 +365062,14 @@ }, { "type_name": "CWeaponAWP", - "vtable_address": 6461928520, + "vtable_address": 6461928536, "methods": [ 6449651028, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -365238,7 +365238,7 @@ }, { "type_name": "CWeaponAWP", - "vtable_address": 6461928576, + "vtable_address": 6461928592, "methods": [ 6449606576, 6449574480 @@ -365410,7 +365410,7 @@ }, { "type_name": "CWeaponAug", - "vtable_address": 6461921144, + "vtable_address": 6461921160, "methods": [ 6446805904, 6449543504, @@ -365419,9 +365419,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -365451,7 +365451,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570688, 6449644448, 6449651040, @@ -365512,7 +365512,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -365735,14 +365735,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -366032,14 +366032,14 @@ }, { "type_name": "CWeaponAug", - "vtable_address": 6461924768, + "vtable_address": 6461924784, "methods": [ 6449651076, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -366208,7 +366208,7 @@ }, { "type_name": "CWeaponAug", - "vtable_address": 6461924824, + "vtable_address": 6461924840, "methods": [ 6449606576, 6449574480 @@ -366380,7 +366380,7 @@ }, { "type_name": "CWeaponBaseItem", - "vtable_address": 6461900320, + "vtable_address": 6461900336, "methods": [ 6446805904, 6449543568, @@ -366389,9 +366389,9 @@ 6449635056, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449547232, 6449662208, 6450455584, @@ -366421,7 +366421,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570704, 6449644464, 6449651088, @@ -366482,7 +366482,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -366705,14 +366705,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -366991,14 +366991,14 @@ }, { "type_name": "CWeaponBaseItem", - "vtable_address": 6461903968, + "vtable_address": 6461903984, "methods": [ 6449651124, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -367153,7 +367153,7 @@ }, { "type_name": "CWeaponBaseItem", - "vtable_address": 6461904024, + "vtable_address": 6461904040, "methods": [ 6449606576, 6449574480 @@ -367311,7 +367311,7 @@ }, { "type_name": "CWeaponBizon", - "vtable_address": 6461928648, + "vtable_address": 6461928664, "methods": [ 6446805904, 6449543632, @@ -367320,9 +367320,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -367352,7 +367352,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570720, 6449644480, 6449651136, @@ -367413,7 +367413,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -367636,14 +367636,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -367933,14 +367933,14 @@ }, { "type_name": "CWeaponBizon", - "vtable_address": 6461932272, + "vtable_address": 6461932288, "methods": [ 6449651172, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -368109,7 +368109,7 @@ }, { "type_name": "CWeaponBizon", - "vtable_address": 6461932328, + "vtable_address": 6461932344, "methods": [ 6449606576, 6449574480 @@ -368281,7 +368281,7 @@ }, { "type_name": "CWeaponCZ75a", - "vtable_address": 6462038072, + "vtable_address": 6462038088, "methods": [ 6446805904, 6449543696, @@ -368290,9 +368290,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -368322,7 +368322,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570736, 6449644496, 6449651184, @@ -368383,7 +368383,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -368606,14 +368606,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -368903,14 +368903,14 @@ }, { "type_name": "CWeaponCZ75a", - "vtable_address": 6462041696, + "vtable_address": 6462041712, "methods": [ 6449651220, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -369079,7 +369079,7 @@ }, { "type_name": "CWeaponCZ75a", - "vtable_address": 6462041752, + "vtable_address": 6462041768, "methods": [ 6449606576, 6449574480 @@ -369251,7 +369251,7 @@ }, { "type_name": "CWeaponEconData", - "vtable_address": 6461861672, + "vtable_address": 6461861688, "methods": [ 6449422640 ], @@ -369282,7 +369282,7 @@ }, { "type_name": "CWeaponElite", - "vtable_address": 6462052552, + "vtable_address": 6462052568, "methods": [ 6446805904, 6449673568, @@ -369291,9 +369291,9 @@ 6449684480, 6450317360, 6449686640, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -369323,7 +369323,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681472, 6449685040, 6449685408, @@ -369384,7 +369384,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -369607,14 +369607,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -369904,14 +369904,14 @@ }, { "type_name": "CWeaponElite", - "vtable_address": 6462056176, + "vtable_address": 6462056192, "methods": [ 6449685444, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -370080,7 +370080,7 @@ }, { "type_name": "CWeaponElite", - "vtable_address": 6462056232, + "vtable_address": 6462056248, "methods": [ 6449606576, 6449574480 @@ -370252,7 +370252,7 @@ }, { "type_name": "CWeaponFamas", - "vtable_address": 6461932400, + "vtable_address": 6461932416, "methods": [ 6446805904, 6449543760, @@ -370261,9 +370261,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -370293,7 +370293,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570752, 6449644512, 6449651232, @@ -370354,7 +370354,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -370577,14 +370577,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -370874,14 +370874,14 @@ }, { "type_name": "CWeaponFamas", - "vtable_address": 6461936024, + "vtable_address": 6461936040, "methods": [ 6449651268, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -371050,7 +371050,7 @@ }, { "type_name": "CWeaponFamas", - "vtable_address": 6461936080, + "vtable_address": 6461936096, "methods": [ 6449606576, 6449574480 @@ -371222,7 +371222,7 @@ }, { "type_name": "CWeaponFiveSeven", - "vtable_address": 6461936152, + "vtable_address": 6461936168, "methods": [ 6446805904, 6449543824, @@ -371231,9 +371231,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -371263,7 +371263,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570768, 6449644528, 6449651280, @@ -371324,7 +371324,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -371547,14 +371547,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -371844,14 +371844,14 @@ }, { "type_name": "CWeaponFiveSeven", - "vtable_address": 6461939776, + "vtable_address": 6461939792, "methods": [ 6449651316, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -372020,7 +372020,7 @@ }, { "type_name": "CWeaponFiveSeven", - "vtable_address": 6461939832, + "vtable_address": 6461939848, "methods": [ 6449606576, 6449574480 @@ -372192,7 +372192,7 @@ }, { "type_name": "CWeaponG3SG1", - "vtable_address": 6461939904, + "vtable_address": 6461939920, "methods": [ 6446805904, 6449543888, @@ -372201,9 +372201,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -372233,7 +372233,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570784, 6449644544, 6449651328, @@ -372294,7 +372294,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -372517,14 +372517,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -372814,14 +372814,14 @@ }, { "type_name": "CWeaponG3SG1", - "vtable_address": 6461943528, + "vtable_address": 6461943544, "methods": [ 6449651364, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -372990,7 +372990,7 @@ }, { "type_name": "CWeaponG3SG1", - "vtable_address": 6461943584, + "vtable_address": 6461943600, "methods": [ 6449606576, 6449574480 @@ -373162,7 +373162,7 @@ }, { "type_name": "CWeaponGalilAR", - "vtable_address": 6461943656, + "vtable_address": 6461943672, "methods": [ 6446805904, 6449543952, @@ -373171,9 +373171,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -373203,7 +373203,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570800, 6449644560, 6449651376, @@ -373264,7 +373264,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -373487,14 +373487,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -373784,14 +373784,14 @@ }, { "type_name": "CWeaponGalilAR", - "vtable_address": 6461947280, + "vtable_address": 6461947296, "methods": [ 6449651412, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -373960,7 +373960,7 @@ }, { "type_name": "CWeaponGalilAR", - "vtable_address": 6461947336, + "vtable_address": 6461947352, "methods": [ 6449606576, 6449574480 @@ -374132,7 +374132,7 @@ }, { "type_name": "CWeaponGlock", - "vtable_address": 6461947408, + "vtable_address": 6461947424, "methods": [ 6446805904, 6449544016, @@ -374141,9 +374141,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -374173,7 +374173,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570816, 6449644576, 6449651424, @@ -374234,7 +374234,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -374457,14 +374457,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -374754,14 +374754,14 @@ }, { "type_name": "CWeaponGlock", - "vtable_address": 6461951032, + "vtable_address": 6461951048, "methods": [ 6449651460, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -374930,7 +374930,7 @@ }, { "type_name": "CWeaponGlock", - "vtable_address": 6461951088, + "vtable_address": 6461951104, "methods": [ 6449606576, 6449574480 @@ -375102,7 +375102,7 @@ }, { "type_name": "CWeaponHKP2000", - "vtable_address": 6461951160, + "vtable_address": 6461951176, "methods": [ 6446805904, 6449544080, @@ -375111,9 +375111,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -375143,7 +375143,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570832, 6449644592, 6449651472, @@ -375204,7 +375204,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -375427,14 +375427,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -375724,14 +375724,14 @@ }, { "type_name": "CWeaponHKP2000", - "vtable_address": 6461954784, + "vtable_address": 6461954800, "methods": [ 6449651508, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -375900,7 +375900,7 @@ }, { "type_name": "CWeaponHKP2000", - "vtable_address": 6461954840, + "vtable_address": 6461954856, "methods": [ 6449606576, 6449574480 @@ -376072,7 +376072,7 @@ }, { "type_name": "CWeaponM249", - "vtable_address": 6462014976, + "vtable_address": 6462014992, "methods": [ 6446805904, 6449544144, @@ -376081,9 +376081,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -376113,7 +376113,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570848, 6449644608, 6449651520, @@ -376174,7 +376174,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -376397,14 +376397,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -376694,14 +376694,14 @@ }, { "type_name": "CWeaponM249", - "vtable_address": 6462018600, + "vtable_address": 6462018616, "methods": [ 6449651556, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -376870,7 +376870,7 @@ }, { "type_name": "CWeaponM249", - "vtable_address": 6462018656, + "vtable_address": 6462018672, "methods": [ 6449606576, 6449574480 @@ -377042,7 +377042,7 @@ }, { "type_name": "CWeaponM4A1", - "vtable_address": 6461958680, + "vtable_address": 6461958696, "methods": [ 6446805904, 6449544208, @@ -377051,9 +377051,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -377083,7 +377083,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570864, 6449644624, 6449651568, @@ -377144,7 +377144,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -377367,14 +377367,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -377664,14 +377664,14 @@ }, { "type_name": "CWeaponM4A1", - "vtable_address": 6461962304, + "vtable_address": 6461962320, "methods": [ 6449651604, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -377840,7 +377840,7 @@ }, { "type_name": "CWeaponM4A1", - "vtable_address": 6461962360, + "vtable_address": 6461962376, "methods": [ 6449606576, 6449574480 @@ -378012,7 +378012,7 @@ }, { "type_name": "CWeaponM4A1Silencer", - "vtable_address": 6461962432, + "vtable_address": 6461962448, "methods": [ 6446805904, 6449544272, @@ -378021,9 +378021,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -378053,7 +378053,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570880, 6449644640, 6449651616, @@ -378114,7 +378114,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -378337,14 +378337,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -378634,14 +378634,14 @@ }, { "type_name": "CWeaponM4A1Silencer", - "vtable_address": 6461966056, + "vtable_address": 6461966072, "methods": [ 6449651652, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -378810,7 +378810,7 @@ }, { "type_name": "CWeaponM4A1Silencer", - "vtable_address": 6461966112, + "vtable_address": 6461966128, "methods": [ 6449606576, 6449574480 @@ -378982,7 +378982,7 @@ }, { "type_name": "CWeaponMAC10", - "vtable_address": 6461966200, + "vtable_address": 6461966216, "methods": [ 6446805904, 6449544336, @@ -378991,9 +378991,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -379023,7 +379023,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570896, 6449644656, 6449651664, @@ -379084,7 +379084,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -379307,14 +379307,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -379604,14 +379604,14 @@ }, { "type_name": "CWeaponMAC10", - "vtable_address": 6461969824, + "vtable_address": 6461969840, "methods": [ 6449651700, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -379780,7 +379780,7 @@ }, { "type_name": "CWeaponMAC10", - "vtable_address": 6461969880, + "vtable_address": 6461969896, "methods": [ 6449606576, 6449574480 @@ -379952,7 +379952,7 @@ }, { "type_name": "CWeaponMP5SD", - "vtable_address": 6461973704, + "vtable_address": 6461973720, "methods": [ 6446805904, 6449544400, @@ -379961,9 +379961,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -379993,7 +379993,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570912, 6449644672, 6449651712, @@ -380054,7 +380054,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -380277,14 +380277,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -380574,14 +380574,14 @@ }, { "type_name": "CWeaponMP5SD", - "vtable_address": 6461977328, + "vtable_address": 6461977344, "methods": [ 6449651748, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -380750,7 +380750,7 @@ }, { "type_name": "CWeaponMP5SD", - "vtable_address": 6461977384, + "vtable_address": 6461977400, "methods": [ 6449606576, 6449574480 @@ -380922,7 +380922,7 @@ }, { "type_name": "CWeaponMP7", - "vtable_address": 6461977456, + "vtable_address": 6461977472, "methods": [ 6446805904, 6449544464, @@ -380931,9 +380931,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -380963,7 +380963,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570928, 6449644688, 6449651760, @@ -381024,7 +381024,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -381247,14 +381247,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -381544,14 +381544,14 @@ }, { "type_name": "CWeaponMP7", - "vtable_address": 6461981080, + "vtable_address": 6461981096, "methods": [ 6449651796, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -381720,7 +381720,7 @@ }, { "type_name": "CWeaponMP7", - "vtable_address": 6461981136, + "vtable_address": 6461981152, "methods": [ 6449606576, 6449574480 @@ -381892,7 +381892,7 @@ }, { "type_name": "CWeaponMP9", - "vtable_address": 6461981208, + "vtable_address": 6461981224, "methods": [ 6446805904, 6449544528, @@ -381901,9 +381901,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -381933,7 +381933,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570944, 6449644704, 6449651808, @@ -381994,7 +381994,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -382217,14 +382217,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -382514,14 +382514,14 @@ }, { "type_name": "CWeaponMP9", - "vtable_address": 6461984832, + "vtable_address": 6461984848, "methods": [ 6449651844, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -382690,7 +382690,7 @@ }, { "type_name": "CWeaponMP9", - "vtable_address": 6461984888, + "vtable_address": 6461984904, "methods": [ 6449606576, 6449574480 @@ -382862,7 +382862,7 @@ }, { "type_name": "CWeaponMag7", - "vtable_address": 6461969952, + "vtable_address": 6461969968, "methods": [ 6446805904, 6449544592, @@ -382871,9 +382871,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -382903,7 +382903,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570960, 6449644720, 6449651856, @@ -382964,7 +382964,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -383187,14 +383187,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -383484,14 +383484,14 @@ }, { "type_name": "CWeaponMag7", - "vtable_address": 6461973576, + "vtable_address": 6461973592, "methods": [ 6449651892, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -383660,7 +383660,7 @@ }, { "type_name": "CWeaponMag7", - "vtable_address": 6461973632, + "vtable_address": 6461973648, "methods": [ 6449606576, 6449574480 @@ -383832,7 +383832,7 @@ }, { "type_name": "CWeaponNOVA", - "vtable_address": 6462026768, + "vtable_address": 6462026784, "methods": [ 6446805904, 6449544656, @@ -383841,9 +383841,9 @@ 6449635056, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -383873,7 +383873,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570976, 6449644736, 6449651904, @@ -383934,7 +383934,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -384157,14 +384157,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -384452,14 +384452,14 @@ }, { "type_name": "CWeaponNOVA", - "vtable_address": 6462030376, + "vtable_address": 6462030392, "methods": [ 6449651940, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -384628,7 +384628,7 @@ }, { "type_name": "CWeaponNOVA", - "vtable_address": 6462030432, + "vtable_address": 6462030448, "methods": [ 6449606576, 6449574480 @@ -384800,7 +384800,7 @@ }, { "type_name": "CWeaponNegev", - "vtable_address": 6461984960, + "vtable_address": 6461984976, "methods": [ 6446805904, 6449544720, @@ -384809,9 +384809,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -384841,7 +384841,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449570992, 6449644752, 6449651952, @@ -384902,7 +384902,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -385125,14 +385125,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -385422,14 +385422,14 @@ }, { "type_name": "CWeaponNegev", - "vtable_address": 6461988584, + "vtable_address": 6461988600, "methods": [ 6449651988, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -385598,7 +385598,7 @@ }, { "type_name": "CWeaponNegev", - "vtable_address": 6461988640, + "vtable_address": 6461988656, "methods": [ 6449606576, 6449574480 @@ -385770,7 +385770,7 @@ }, { "type_name": "CWeaponP250", - "vtable_address": 6461988712, + "vtable_address": 6461988728, "methods": [ 6446805904, 6449544784, @@ -385779,9 +385779,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -385811,7 +385811,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571008, 6449644768, 6449652000, @@ -385872,7 +385872,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -386095,14 +386095,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -386392,14 +386392,14 @@ }, { "type_name": "CWeaponP250", - "vtable_address": 6461992336, + "vtable_address": 6461992352, "methods": [ 6449652036, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -386568,7 +386568,7 @@ }, { "type_name": "CWeaponP250", - "vtable_address": 6461992392, + "vtable_address": 6461992408, "methods": [ 6449606576, 6449574480 @@ -386740,7 +386740,7 @@ }, { "type_name": "CWeaponP90", - "vtable_address": 6461992464, + "vtable_address": 6461992480, "methods": [ 6446805904, 6449544848, @@ -386749,9 +386749,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -386781,7 +386781,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571024, 6449644784, 6449652048, @@ -386842,7 +386842,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -387065,14 +387065,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -387362,14 +387362,14 @@ }, { "type_name": "CWeaponP90", - "vtable_address": 6461996088, + "vtable_address": 6461996104, "methods": [ 6449652084, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -387538,7 +387538,7 @@ }, { "type_name": "CWeaponP90", - "vtable_address": 6461996144, + "vtable_address": 6461996160, "methods": [ 6449606576, 6449574480 @@ -387710,7 +387710,7 @@ }, { "type_name": "CWeaponRevolver", - "vtable_address": 6462018728, + "vtable_address": 6462018744, "methods": [ 6446805904, 6449544912, @@ -387719,9 +387719,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -387751,7 +387751,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571040, 6449644800, 6449652096, @@ -387812,7 +387812,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -388035,14 +388035,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -388332,14 +388332,14 @@ }, { "type_name": "CWeaponRevolver", - "vtable_address": 6462022352, + "vtable_address": 6462022368, "methods": [ 6449652132, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -388508,7 +388508,7 @@ }, { "type_name": "CWeaponRevolver", - "vtable_address": 6462022408, + "vtable_address": 6462022424, "methods": [ 6449606576, 6449574480 @@ -388680,7 +388680,7 @@ }, { "type_name": "CWeaponSCAR20", - "vtable_address": 6461996216, + "vtable_address": 6461996232, "methods": [ 6446805904, 6449544976, @@ -388689,9 +388689,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -388721,7 +388721,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571056, 6449644816, 6449652144, @@ -388782,7 +388782,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -389005,14 +389005,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -389302,14 +389302,14 @@ }, { "type_name": "CWeaponSCAR20", - "vtable_address": 6461999840, + "vtable_address": 6461999856, "methods": [ 6449652180, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -389478,7 +389478,7 @@ }, { "type_name": "CWeaponSCAR20", - "vtable_address": 6461999896, + "vtable_address": 6461999912, "methods": [ 6449606576, 6449574480 @@ -389650,7 +389650,7 @@ }, { "type_name": "CWeaponSG556", - "vtable_address": 6461999968, + "vtable_address": 6461999984, "methods": [ 6446805904, 6449545040, @@ -389659,9 +389659,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -389691,7 +389691,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571072, 6449644832, 6449652192, @@ -389752,7 +389752,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -389975,14 +389975,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -390272,14 +390272,14 @@ }, { "type_name": "CWeaponSG556", - "vtable_address": 6462003592, + "vtable_address": 6462003608, "methods": [ 6449652228, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -390448,7 +390448,7 @@ }, { "type_name": "CWeaponSG556", - "vtable_address": 6462003648, + "vtable_address": 6462003664, "methods": [ 6449606576, 6449574480 @@ -390620,7 +390620,7 @@ }, { "type_name": "CWeaponSSG08", - "vtable_address": 6462003720, + "vtable_address": 6462003736, "methods": [ 6446805904, 6449545104, @@ -390629,9 +390629,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -390661,7 +390661,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571088, 6449644848, 6449652240, @@ -390722,7 +390722,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -390945,14 +390945,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -391242,14 +391242,14 @@ }, { "type_name": "CWeaponSSG08", - "vtable_address": 6462007344, + "vtable_address": 6462007360, "methods": [ 6449652276, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -391418,7 +391418,7 @@ }, { "type_name": "CWeaponSSG08", - "vtable_address": 6462007400, + "vtable_address": 6462007416, "methods": [ 6449606576, 6449574480 @@ -391590,7 +391590,7 @@ }, { "type_name": "CWeaponSawedoff", - "vtable_address": 6462030600, + "vtable_address": 6462030616, "methods": [ 6446805904, 6449545168, @@ -391599,9 +391599,9 @@ 6449635056, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -391631,7 +391631,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571104, 6449644864, 6449652288, @@ -391692,7 +391692,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -391915,14 +391915,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -392210,14 +392210,14 @@ }, { "type_name": "CWeaponSawedoff", - "vtable_address": 6462034208, + "vtable_address": 6462034224, "methods": [ 6449652324, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -392386,7 +392386,7 @@ }, { "type_name": "CWeaponSawedoff", - "vtable_address": 6462034264, + "vtable_address": 6462034280, "methods": [ 6449606576, 6449574480 @@ -392558,7 +392558,7 @@ }, { "type_name": "CWeaponTaser", - "vtable_address": 6462079864, + "vtable_address": 6462079880, "methods": [ 6446805904, 6449673632, @@ -392567,9 +392567,9 @@ 6449684544, 6450317360, 6449686656, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -392599,7 +392599,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449681488, 6449685056, 6449685456, @@ -392660,7 +392660,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -392883,14 +392883,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -393180,14 +393180,14 @@ }, { "type_name": "CWeaponTaser", - "vtable_address": 6462083488, + "vtable_address": 6462083504, "methods": [ 6449685492, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -393356,7 +393356,7 @@ }, { "type_name": "CWeaponTaser", - "vtable_address": 6462083544, + "vtable_address": 6462083560, "methods": [ 6449606576, 6449574480 @@ -393528,7 +393528,7 @@ }, { "type_name": "CWeaponTec9", - "vtable_address": 6462007472, + "vtable_address": 6462007488, "methods": [ 6446805904, 6449545232, @@ -393537,9 +393537,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -393569,7 +393569,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571120, 6449644880, 6449652336, @@ -393630,7 +393630,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -393853,14 +393853,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -394150,14 +394150,14 @@ }, { "type_name": "CWeaponTec9", - "vtable_address": 6462011096, + "vtable_address": 6462011112, "methods": [ 6449652372, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -394326,7 +394326,7 @@ }, { "type_name": "CWeaponTec9", - "vtable_address": 6462011152, + "vtable_address": 6462011168, "methods": [ 6449606576, 6449574480 @@ -394498,7 +394498,7 @@ }, { "type_name": "CWeaponUMP45", - "vtable_address": 6462011224, + "vtable_address": 6462011240, "methods": [ 6446805904, 6449545296, @@ -394507,9 +394507,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -394539,7 +394539,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571136, 6449644896, 6449652384, @@ -394600,7 +394600,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -394823,14 +394823,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -395120,14 +395120,14 @@ }, { "type_name": "CWeaponUMP45", - "vtable_address": 6462014848, + "vtable_address": 6462014864, "methods": [ 6449652420, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -395296,7 +395296,7 @@ }, { "type_name": "CWeaponUMP45", - "vtable_address": 6462014904, + "vtable_address": 6462014920, "methods": [ 6449606576, 6449574480 @@ -395468,7 +395468,7 @@ }, { "type_name": "CWeaponUSPSilencer", - "vtable_address": 6461954912, + "vtable_address": 6461954928, "methods": [ 6446805904, 6449545360, @@ -395477,9 +395477,9 @@ 6449635056, 6450317360, 6449657488, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -395509,7 +395509,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571152, 6449644912, 6449652432, @@ -395570,7 +395570,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -395793,14 +395793,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449565200, @@ -396090,14 +396090,14 @@ }, { "type_name": "CWeaponUSPSilencer", - "vtable_address": 6461958536, + "vtable_address": 6461958552, "methods": [ 6449652468, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -396266,7 +396266,7 @@ }, { "type_name": "CWeaponUSPSilencer", - "vtable_address": 6461958592, + "vtable_address": 6461958608, "methods": [ 6449606576, 6449574480 @@ -396438,7 +396438,7 @@ }, { "type_name": "CWeaponXM1014", - "vtable_address": 6462034336, + "vtable_address": 6462034352, "methods": [ 6446805904, 6449545424, @@ -396447,9 +396447,9 @@ 6449635056, 6450317360, 6449656448, - 6456887568, + 6456887584, 6450463168, - 6456894016, + 6456894032, 6449546800, 6449662208, 6450455584, @@ -396479,7 +396479,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6449571168, 6449644928, 6449652480, @@ -396540,7 +396540,7 @@ 6450516816, 6445499744, 6450540208, - 6454278560, + 6454278576, 6451906816, 6443748256, 6443748272, @@ -396763,14 +396763,14 @@ 6443967696, 6444054976, 6449434848, - 6454071632, + 6454071648, 6449473280, - 6454120256, + 6454120272, 6449428992, 6449429008, 6449429040, 6449429024, - 6454284096, + 6454284112, 6449584640, 6449567360, 6449563952, @@ -397058,14 +397058,14 @@ }, { "type_name": "CWeaponXM1014", - "vtable_address": 6462037944, + "vtable_address": 6462037960, "methods": [ 6449652516, 6449427872, 6449427840, 6449427888, 6449427856, - 6454223888 + 6454223904 ], "bases": [ { @@ -397234,7 +397234,7 @@ }, { "type_name": "CWeaponXM1014", - "vtable_address": 6462038000, + "vtable_address": 6462038016, "methods": [ 6449606576, 6449574480 @@ -397406,22 +397406,22 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Request", - "vtable_address": 6461559600, + "vtable_address": 6461559584, "methods": [ 6448152384, - 6455181760, + 6455181776, 6448140320, 6448140544, 6448140624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448140640, 6448142160, 6448140848, 6443766512, 6448141648, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448142176, 6448142224, 6448142208 @@ -397467,38 +397467,38 @@ }, { "type_name": "CWorkshop_AddSpecialPayment_Response", - "vtable_address": 6461561056, + "vtable_address": 6461561040, "methods": [ 6448159360, - 6455181760, + 6455181776, 6448153584, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, 6448155440, 6448154832, - 6455179744, + 6455179760, 6448153616, - 6455179744, + 6455179760, 6448157312, - 6455179744, + 6455179760, 6448158864, - 6455179744, + 6455179760, 6448160752, - 6455179744, + 6455179760, 6448162112, - 6455179744, + 6455179760, 6448164608, - 6455179744, + 6455179760, 6448165616 ], "bases": [ @@ -397556,26 +397556,26 @@ }, { "type_name": "CWorkshop_GetContributors_Request", - "vtable_address": 6461507024, + "vtable_address": 6461507008, "methods": [ 6447971840, - 6455181760, + 6455181776, 6448563552, 6448564400, 6448564432, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448564464, 6448565408, 6448564640, 6443766512, 6448565136, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448565504, 6448565536, 6448565520, - 6455179744, + 6455179760, 6447972000 ], "bases": [ @@ -397619,29 +397619,29 @@ }, { "type_name": "CWorkshop_GetContributors_Response", - "vtable_address": 6461508288, + "vtable_address": 6461508272, "methods": [ 6447982512, - 6455181760, + 6455181776, 6447976928, 6447977824, 6447978176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447978208, 6447978880, 6447978288, 6443766512, 6447978704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447978896, 6447979152, 6447979136, - 6455179744, + 6455179760, 6447982688, - 6455179744, - 6447983456 + 6455179760, + 6447983472 ], "bases": [ { @@ -397684,38 +397684,38 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request", - "vtable_address": 6461649408, + "vtable_address": 6461649392, "methods": [ 6448557536, - 6455181760, + 6455181776, 6448546208, 6448546768, 6448547136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448547168, 6448548672, 6448547504, 6443766512, 6448548432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448548848, 6448549056, 6448549024, - 6455179744, + 6455179760, 6448553424, - 6455179744, + 6455179760, 6448557808, - 6455179744, + 6455179760, 6448560336, - 6455179744, + 6455179760, 6448561712, - 6455179744, + 6455179760, 6448562416, - 6455179744, + 6455179760, 6448563040, - 6455179744, + 6455179760, 6448564320 ], "bases": [ @@ -397759,22 +397759,22 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock", - "vtable_address": 6461624056, + "vtable_address": 6461624040, "methods": [ 6448537680, - 6455181760, + 6455181776, 6448526352, 6448526752, 6448526992, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448527008, 6448528352, 6448527536, 6443766512, 6448528176, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448528368, 6448528544, 6448528528 @@ -397820,32 +397820,32 @@ }, { "type_name": "CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription", - "vtable_address": 6461620048, + "vtable_address": 6461620032, "methods": [ 6448523280, - 6455181760, + 6455181776, 6448519872, 6448520048, 6448520128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448520144, 6448521168, 6448520320, 6443766512, 6448520912, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448521184, 6448521216, 6448521200, - 6455179744, + 6455179760, 6448521600, - 6455179744, + 6455179760, 6448523440, - 6455179744, + 6455179760, 6448524672, - 6455179744, + 6455179760, 6448524624 ], "bases": [ @@ -397889,22 +397889,22 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request", - "vtable_address": 6461544288, + "vtable_address": 6461544272, "methods": [ 6448057936, - 6455181760, + 6455181776, 6448030288, 6448030992, 6448031392, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448031408, 6448033792, 6448032192, 6443766512, 6448033264, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448033808, 6448034032, 6448034016 @@ -397950,30 +397950,30 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule", - "vtable_address": 6461520048, + "vtable_address": 6461520032, "methods": [ 6448021680, - 6455181760, + 6455181776, 6448016256, 6448017216, 6448017296, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448017312, 6448018208, 6448017440, 6443766512, 6448017952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448018304, 6448018624, 6448018608, - 6455179744, + 6455179760, 6448020592, - 6455179744, + 6455179760, 6448022224, - 6455179744, + 6455179760, 6448023120 ], "bases": [ @@ -398017,28 +398017,28 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule", - "vtable_address": 6461516488, + "vtable_address": 6461516472, "methods": [ 6448012176, - 6455181760, + 6455181776, 6448007584, 6448007936, 6448008016, - 6455181808, - 6455178784, - 6448008096, + 6455181824, + 6455178800, + 6448008240, 6448009552, 6448008720, 6443766512, 6448009312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448009776, 6448009888, 6448009808, - 6455179744, + 6455179760, 6448010160, - 6455179744, + 6455179760, 6448012368 ], "bases": [ @@ -398082,22 +398082,22 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule", - "vtable_address": 6461509120, + "vtable_address": 6461509104, "methods": [ 6447999472, - 6455181760, + 6455181776, 6447988848, 6447993056, 6447993136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447994608, 6447997072, 6447996064, 6443766512, 6447996704, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447997184, 6447997440, 6447997424 @@ -398143,27 +398143,27 @@ }, { "type_name": "CWorkshop_SetItemPaymentRules_Response", - "vtable_address": 6461544960, + "vtable_address": 6461544944, "methods": [ 6448066720, - 6455181760, + 6455181776, 6448064448, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, - 6448065872, - 6448065792, - 6455179744, - 6448065824 + 6448065904, + 6448065840, + 6455179760, + 6448065792 ], "bases": [ { @@ -398220,18 +398220,18 @@ }, { "type_name": "CWorld", - "vtable_address": 6462350392, + "vtable_address": 6462350424, "methods": [ 6446805920, 6451540896, 6450347280, - 6456889008, + 6456889024, 6450464560, 6451543504, 6451629552, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6450315056, 6451642880, 6450455600, @@ -398261,7 +398261,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6451573376, 6451615760, 6451620336, @@ -398549,7 +398549,7 @@ }, { "type_name": "CWorldGameSystem", - "vtable_address": 6461067784, + "vtable_address": 6461067768, "methods": [ 6443752688, 6443767152, @@ -398764,14 +398764,14 @@ 6445145520, 6445176640, 6444685088, - 6458122208, + 6458122224, 6444619648, - 6458123984, - 6458124256, + 6458124000, + 6458124272, 6444673408, - 6458122304, + 6458122320, 6445149648, - 6458121920 + 6458121936 ], "bases": [ { @@ -398864,7 +398864,7 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification", - "vtable_address": 6461762352, + "vtable_address": 6461762368, "methods": [ 6448896752, 6443894128, @@ -398914,7 +398914,7 @@ }, { "type_name": "ClientJob_EMsgGCCStrike15_v2_ServerNotificationForUserPenalty", - "vtable_address": 6461762216, + "vtable_address": 6461762232, "methods": [ 6448896816, 6443894128, @@ -399014,7 +399014,7 @@ }, { "type_name": "ConstraintSoundInfo", - "vtable_address": 6462722256, + "vtable_address": 6462722288, "methods": [ 6452857648 ], @@ -399030,7 +399030,7 @@ }, { "type_name": "CountdownTimer", - "vtable_address": 6462343272, + "vtable_address": 6462343304, "methods": [ 6445233696, 6451603136, @@ -399051,10 +399051,10 @@ "type_name": "DNameStatusNode", "vtable_address": 6463726568, "methods": [ - 6459941076, - 6459941484, - 6459926584, - 6459933852 + 6459941092, + 6459941500, + 6459926600, + 6459933868 ], "bases": [ { @@ -399083,22 +399083,22 @@ }, { "type_name": "DataCenterPing", - "vtable_address": 6461378480, + "vtable_address": 6461378464, "methods": [ 6447263472, - 6455181760, + 6455181776, 6447250992, 6447253296, 6447253328, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447253360, 6447255456, 6447254144, 6443766512, 6447255232, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447257152, 6447261472, 6447261232 @@ -399144,22 +399144,22 @@ }, { "type_name": "DeepPlayerMatchEvent", - "vtable_address": 6461375176, + "vtable_address": 6461375160, "methods": [ 6447228048, - 6455181760, + 6455181776, 6447209376, 6447210192, 6447210256, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447210272, 6447214048, 6447210976, 6443766512, 6447212656, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447214144, 6447214336, 6447214320 @@ -399205,32 +399205,32 @@ }, { "type_name": "DeepPlayerStatsEntry", - "vtable_address": 6461368376, + "vtable_address": 6461368360, "methods": [ 6447202256, - 6455181760, + 6455181776, 6447162272, 6447163712, 6447163888, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447163920, 6447171872, 6447165040, 6443766512, 6447168752, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447171984, 6447172064, 6447172032, - 6455179744, + 6455179760, 6447200976, - 6455179744, + 6455179760, 6447202528, - 6455179744, + 6455179760, 6447203424, - 6455179744, + 6455179760, 6447206064 ], "bases": [ @@ -399308,22 +399308,22 @@ }, { "type_name": "DetailedSearchStatistic", - "vtable_address": 6461380368, + "vtable_address": 6461380352, "methods": [ 6447284256, - 6455181760, + 6455181776, 6447265824, 6447269088, 6447269136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447270208, 6447272048, 6447270864, 6443766512, 6447271680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447273008, 6447276144, 6447276112 @@ -399369,7 +399369,7 @@ }, { "type_name": "EntityRenderAttribute_t", - "vtable_address": 6461143592, + "vtable_address": 6461143568, "methods": [ 6446839104, 6446819568, @@ -399510,18 +399510,18 @@ }, { "type_name": "FilterDamageType", - "vtable_address": 6462242128, + "vtable_address": 6462242160, "methods": [ 6446805888, 6450642928, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -399551,7 +399551,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758816, 6450823888, 6450848832, @@ -399841,18 +399841,18 @@ }, { "type_name": "FilterHealth", - "vtable_address": 6462244096, + "vtable_address": 6462244128, "methods": [ 6446805888, 6450643152, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6451913472, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -399882,7 +399882,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6450758832, 6450823904, 6450848880, @@ -400209,7 +400209,7 @@ "vtable_address": 6460631928, "methods": [ 6444409936, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -400223,11 +400223,11 @@ }, { "type_name": "GCSDK::CGCClient", - "vtable_address": 6463281264, + "vtable_address": 6463281296, "methods": [ - 6457047104, - 6457075600, - 6457075616 + 6457047120, + 6457075616, + 6457075632 ], "bases": [], "model": { @@ -400241,17 +400241,17 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectCache", - "vtable_address": 6463287200, - "methods": [ - 6457105664, - 6457110720, - 6457083744, - 6457084144, - 6457086032, + "vtable_address": 6463287232, + "methods": [ + 6457105680, + 6457110736, + 6457083760, + 6457084160, + 6457086048, + 6457085904, 6457085888, - 6457085872, - 6457084896, - 6457105792 + 6457084912, + 6457105808 ], "bases": [ { @@ -400280,15 +400280,15 @@ }, { "type_name": "GCSDK::CGCClientSharedObjectTypeCache", - "vtable_address": 6463287136, + "vtable_address": 6463287168, "methods": [ - 6457105728, - 6457083840, - 6457084208, - 6457086224, - 6457086016, - 6457085200, - 6457085072 + 6457105744, + 6457083856, + 6457084224, + 6457086240, + 6457086032, + 6457085216, + 6457085088 ], "bases": [ { @@ -400317,14 +400317,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscribedJob", - "vtable_address": 6463282704, + "vtable_address": 6463282736, "methods": [ - 6457047168, + 6457047184, 6443894128, 6443894176, 6443896464, 6443893056, - 6457049312 + 6457049328 ], "bases": [ { @@ -400367,14 +400367,14 @@ }, { "type_name": "GCSDK::CGCSOCacheSubscriptionCheck", - "vtable_address": 6463282864, + "vtable_address": 6463282896, "methods": [ - 6457047232, + 6457047248, 6443894128, 6443894176, 6443896464, 6443893056, - 6457049792 + 6457049808 ], "bases": [ { @@ -400417,14 +400417,14 @@ }, { "type_name": "GCSDK::CGCSOCacheUnsubscribedJob", - "vtable_address": 6463282784, + "vtable_address": 6463282816, "methods": [ - 6457047296, + 6457047312, 6443894128, 6443894176, 6443896464, 6443893056, - 6457050272 + 6457050288 ], "bases": [ { @@ -400467,14 +400467,14 @@ }, { "type_name": "GCSDK::CGCSOCreateJob", - "vtable_address": 6463282432, + "vtable_address": 6463282464, "methods": [ - 6457047360, + 6457047376, 6443894128, 6443894176, 6443896464, 6443893056, - 6457050800 + 6457050816 ], "bases": [ { @@ -400517,14 +400517,14 @@ }, { "type_name": "GCSDK::CGCSODestroyJob", - "vtable_address": 6463282512, + "vtable_address": 6463282544, "methods": [ - 6457047424, + 6457047440, 6443894128, 6443894176, 6443896464, 6443893056, - 6457051296 + 6457051312 ], "bases": [ { @@ -400567,14 +400567,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateJob", - "vtable_address": 6463282568, + "vtable_address": 6463282600, "methods": [ - 6457047488, + 6457047504, 6443894128, 6443894176, 6443896464, 6443893056, - 6457051696 + 6457051712 ], "bases": [ { @@ -400617,14 +400617,14 @@ }, { "type_name": "GCSDK::CGCSOUpdateMultipleJob", - "vtable_address": 6463282624, + "vtable_address": 6463282656, "methods": [ - 6457047552, + 6457047568, 6443894128, 6443894176, 6443896464, 6443893056, - 6457052192 + 6457052208 ], "bases": [ { @@ -400667,12 +400667,12 @@ }, { "type_name": "GCSDK::CJob", - "vtable_address": 6463276472, + "vtable_address": 6463276504, "methods": [ - 6456994464, - 6456995040, + 6456994480, 6456995056, - 6456995104 + 6456995072, + 6456995120 ], "bases": [], "model": { @@ -400686,9 +400686,9 @@ }, { "type_name": "GCSDK::CProtoBufGCClientSendHandler", - "vtable_address": 6463281400, + "vtable_address": 6463281432, "methods": [ - 6457048144 + 6457048160 ], "bases": [ { @@ -400717,10 +400717,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463078520, + "vtable_address": 6463078552, "methods": [ - 6454286032, - 6454286016 + 6454286048, + 6454286032 ], "bases": [ { @@ -400781,10 +400781,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463281568, + "vtable_address": 6463281600, "methods": [ - 6457045056, - 6457056128 + 6457045072, + 6457056144 ], "bases": [ { @@ -400845,7 +400845,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6461762408, + "vtable_address": 6461762424, "methods": [ 6448892816, 6448995824 @@ -400877,7 +400877,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6461754528, + "vtable_address": 6461754544, "methods": [ 6448892912, 6448995840 @@ -400941,7 +400941,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6461762272, + "vtable_address": 6461762288, "methods": [ 6448893008, 6448995856 @@ -401005,7 +401005,7 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6461751912, + "vtable_address": 6461751928, "methods": [ 6448893104, 6448995872 @@ -401069,10 +401069,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463282760, + "vtable_address": 6463282792, "methods": [ - 6457045152, - 6457056144 + 6457045168, + 6457056160 ], "bases": [ { @@ -401101,10 +401101,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463282920, + "vtable_address": 6463282952, "methods": [ - 6457045248, - 6457056160 + 6457045264, + 6457056176 ], "bases": [ { @@ -401133,10 +401133,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463282384, + "vtable_address": 6463282416, "methods": [ - 6457045344, - 6457056176 + 6457045360, + 6457056192 ], "bases": [ { @@ -401165,10 +401165,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463282840, + "vtable_address": 6463282872, "methods": [ - 6457045440, - 6457056192 + 6457045456, + 6457056208 ], "bases": [ { @@ -401197,10 +401197,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463282680, + "vtable_address": 6463282712, "methods": [ - 6457045536, - 6457056208 + 6457045552, + 6457056224 ], "bases": [ { @@ -401229,10 +401229,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463282488, + "vtable_address": 6463282520, "methods": [ - 6457045632, - 6457056224 + 6457045648, + 6457056240 ], "bases": [ { @@ -401261,10 +401261,10 @@ }, { "type_name": "GCSDK::CProtoBufMsg", - "vtable_address": 6463282040, + "vtable_address": 6463282072, "methods": [ - 6457045728, - 6457056240 + 6457045744, + 6457056256 ], "bases": [ { @@ -401293,10 +401293,10 @@ }, { "type_name": "GCSDK::CProtoBufMsgBase", - "vtable_address": 6463276080, + "vtable_address": 6463276112, "methods": [ - 6456989664, - 6459886716 + 6456989680, + 6459886732 ], "bases": [], "model": { @@ -401310,12 +401310,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463077168, + "vtable_address": 6463077200, "methods": [ - 6454284784, - 6454284528, - 6454284672, - 6454284736 + 6454284800, + 6454284544, + 6454284688, + 6454284752 ], "bases": [ { @@ -401378,12 +401378,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463283224, + "vtable_address": 6463283256, "methods": [ - 6457045824, - 6457056272, - 6457059760, - 6457060272 + 6457045840, + 6457056288, + 6457059776, + 6457060288 ], "bases": [ { @@ -401446,7 +401446,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6461762848, + "vtable_address": 6461762864, "methods": [ 6448893200, 6448999408, @@ -401480,7 +401480,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6461762928, + "vtable_address": 6461762944, "methods": [ 6448893360, 6448999552, @@ -401548,7 +401548,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6461762888, + "vtable_address": 6461762904, "methods": [ 6448893520, 6448999696, @@ -401616,7 +401616,7 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6461762968, + "vtable_address": 6461762984, "methods": [ 6448893680, 6448999840, @@ -401684,12 +401684,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463276144, + "vtable_address": 6463276176, "methods": [ - 6456989600, - 6456991536, - 6456992064, - 6456992128 + 6456989616, + 6456991552, + 6456992080, + 6456992144 ], "bases": [ { @@ -401718,12 +401718,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463283024, + "vtable_address": 6463283056, "methods": [ - 6457045984, - 6457056416, - 6457059824, - 6457060320 + 6457046000, + 6457056432, + 6457059840, + 6457060336 ], "bases": [ { @@ -401752,12 +401752,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463282944, + "vtable_address": 6463282976, "methods": [ - 6457046144, - 6457056560, - 6457059888, - 6457060368 + 6457046160, + 6457056576, + 6457059904, + 6457060384 ], "bases": [ { @@ -401786,12 +401786,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463283144, + "vtable_address": 6463283176, "methods": [ - 6457046304, - 6457056704, - 6457059952, - 6457060416 + 6457046320, + 6457056720, + 6457059968, + 6457060432 ], "bases": [ { @@ -401820,12 +401820,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463282984, + "vtable_address": 6463283016, "methods": [ - 6457046464, - 6457056848, - 6457060016, - 6457060464 + 6457046480, + 6457056864, + 6457060032, + 6457060480 ], "bases": [ { @@ -401854,12 +401854,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463283064, + "vtable_address": 6463283096, "methods": [ - 6457046624, - 6457056992, - 6457060080, - 6457060512 + 6457046640, + 6457057008, + 6457060096, + 6457060528 ], "bases": [ { @@ -401888,12 +401888,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463283104, + "vtable_address": 6463283136, "methods": [ - 6457046784, - 6457057136, - 6457060144, - 6457060560 + 6457046800, + 6457057152, + 6457060160, + 6457060576 ], "bases": [ { @@ -401922,12 +401922,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPool", - "vtable_address": 6463283184, + "vtable_address": 6463283216, "methods": [ - 6457046944, - 6457057280, - 6457060208, - 6457060608 + 6457046960, + 6457057296, + 6457060224, + 6457060624 ], "bases": [ { @@ -401956,12 +401956,12 @@ }, { "type_name": "GCSDK::CProtoBufMsgMemoryPoolBase", - "vtable_address": 6463276104, + "vtable_address": 6463276136, "methods": [ - 6456990000, - 6459886716, - 6459886716, - 6459886716 + 6456990016, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -401975,24 +401975,24 @@ }, { "type_name": "GCSDK::CProtoBufNetPacket", - "vtable_address": 6463275944, + "vtable_address": 6463275976, "methods": [ - 6456990144, + 6456990160, + 6456991248, + 6456991536, + 6456991504, + 6456992560, 6456991232, 6456991520, - 6456991488, - 6456992544, - 6456991216, - 6456991504, - 6456991696, + 6456991712, + 6456991744, + 6456993504, 6456991728, 6456993488, - 6456991712, + 6456991696, 6456993472, - 6456991680, - 6456993456, - 6456991200, - 6456991744 + 6456991216, + 6456991760 ], "bases": [ { @@ -402035,18 +402035,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6463040144, + "vtable_address": 6463040160, "methods": [ 6453949152, - 6454130512, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120304 + 6454130528, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120320 ], "bases": [ { @@ -402089,18 +402089,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6463040496, + "vtable_address": 6463040512, "methods": [ 6453949232, - 6454130528, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120320 + 6454130544, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120336 ], "bases": [ { @@ -402143,18 +402143,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6463034056, + "vtable_address": 6463034072, "methods": [ 6453949312, - 6454130544, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120336 + 6454130560, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120352 ], "bases": [ { @@ -402197,18 +402197,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6463040320, + "vtable_address": 6463040336, "methods": [ 6453949392, - 6454130560, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120352 + 6454130576, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120368 ], "bases": [ { @@ -402251,17 +402251,17 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6462147536, + "vtable_address": 6462147552, "methods": [ 6450118928, 6450162320, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, 6450161888 ], "bases": [ @@ -402305,18 +402305,18 @@ }, { "type_name": "GCSDK::CProtoBufSharedObject", - "vtable_address": 6463039968, + "vtable_address": 6463039984, "methods": [ 6453949472, - 6454130576, - 6457086992, - 6457087056, - 6457086784, - 6457087120, - 6457090976, - 6457086752, - 6457086512, - 6454120368 + 6454130592, + 6457087008, + 6457087072, + 6457086800, + 6457087136, + 6457090992, + 6457086768, + 6457086528, + 6454120384 ], "bases": [ { @@ -402359,10 +402359,10 @@ }, { "type_name": "GCSDK::CRefCount", - "vtable_address": 6463275920, + "vtable_address": 6463275952, "methods": [ - 6456990416, - 6456991232 + 6456990432, + 6456991248 ], "bases": [], "model": { @@ -402376,17 +402376,17 @@ }, { "type_name": "GCSDK::CSharedObject", - "vtable_address": 6462144304, + "vtable_address": 6462144320, "methods": [ 6450120448, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -402400,17 +402400,17 @@ }, { "type_name": "GCSDK::CSharedObjectCache", - "vtable_address": 6463285016, - "methods": [ - 6457083088, - 6459886716, - 6457083744, - 6457084144, - 6457086032, + "vtable_address": 6463285048, + "methods": [ + 6457083104, + 6459886732, + 6457083760, + 6457084160, + 6457086048, + 6457085904, 6457085888, - 6457085872, - 6457084896, - 6459886716 + 6457084912, + 6459886732 ], "bases": [], "model": { @@ -402424,15 +402424,15 @@ }, { "type_name": "GCSDK::CSharedObjectTypeCache", - "vtable_address": 6463284952, + "vtable_address": 6463284984, "methods": [ - 6457083392, - 6457083840, - 6457084208, - 6457086224, - 6457086016, - 6457085200, - 6457085072 + 6457083408, + 6457083856, + 6457084224, + 6457086240, + 6457086032, + 6457085216, + 6457085088 ], "bases": [], "model": { @@ -402446,24 +402446,24 @@ }, { "type_name": "GCSDK::CStructNetPacket", - "vtable_address": 6463288656, + "vtable_address": 6463288688, "methods": [ - 6457123664, - 6456991232, - 6457123808, - 6457123776, - 6457124400, - 6457123760, + 6457123680, + 6456991248, + 6457123824, 6457123792, - 6457123840, + 6457124416, + 6457123776, + 6457123808, + 6457123856, + 6457123888, + 6457124464, 6457123872, 6457124448, - 6457123856, + 6457123840, 6457124432, - 6457123824, - 6457124416, - 6457123744, - 6457123888 + 6457123760, + 6457123904 ], "bases": [ { @@ -402506,16 +402506,16 @@ }, { "type_name": "GCSDK::CWorkThread", - "vtable_address": 6463287904, - "methods": [ - 6457119232, - 6459712561, - 6457121792, + "vtable_address": 6463287936, + "methods": [ + 6457119248, + 6459712577, + 6457121808, + 6457120544, + 6459712583, + 6459712589, 6457120528, - 6459712567, - 6459712573, - 6457120512, - 6457120544 + 6457120560 ], "bases": [ { @@ -402544,10 +402544,10 @@ }, { "type_name": "GCSDK::CWorkThreadPool", - "vtable_address": 6463287976, + "vtable_address": 6463288008, "methods": [ - 6457119296, - 6457120560 + 6457119312, + 6457120576 ], "bases": [], "model": { @@ -402561,7 +402561,7 @@ }, { "type_name": "GameAmmoTypeInfo_t", - "vtable_address": 6461731352, + "vtable_address": 6461731368, "methods": [ 6449169408, 6449048960, @@ -402595,7 +402595,7 @@ }, { "type_name": "GameEvent_RegisterHookupGameSystem", - "vtable_address": 6462264160, + "vtable_address": 6462264192, "methods": [ 6443752688, 6443767152, @@ -402700,22 +402700,22 @@ }, { "type_name": "GameServerPing", - "vtable_address": 6461377024, + "vtable_address": 6461377008, "methods": [ 6447249200, - 6455181760, + 6455181776, 6447238752, 6447240192, 6447240368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447240384, 6447243296, 6447241776, 6443766512, 6447242928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447244480, 6447245040, 6447244688 @@ -402761,22 +402761,22 @@ }, { "type_name": "GameSessionConfiguration_t", - "vtable_address": 6462276360, + "vtable_address": 6462276392, "methods": [ 6450983504, - 6455181760, + 6455181776, 6448407520, 6448408208, 6448408512, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448408528, 6448411856, - 6448409168, + 6448409152, 6443766512, 6448410896, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448411872, 6448412048, 6448412032 @@ -402850,22 +402850,22 @@ }, { "type_name": "GlobalStatistics", - "vtable_address": 6461443256, + "vtable_address": 6461443240, "methods": [ 6447429280, - 6455181760, + 6455181776, 6447392912, 6447393296, 6447393536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447393552, 6447397696, 6447394320, 6443766512, 6447396256, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447397712, 6447398064, 6447398048 @@ -402945,17 +402945,17 @@ }, { "type_name": "HostagePathCost", - "vtable_address": 6461789424, + "vtable_address": 6461789440, "methods": [ 6449227120, 6444708928, 6444685088, - 6458122208, + 6458122224, 6444619648, - 6458123984, - 6458124256, + 6458124000, + 6458124272, 6444673408, - 6458122304, + 6458122320, 6449232960, 6449233200 ], @@ -403037,7 +403037,7 @@ "vtable_address": 6460590000, "methods": [ 6444104080, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -403051,16 +403051,16 @@ }, { "type_name": "IAnimationDebugRenderer", - "vtable_address": 6463247528, + "vtable_address": 6463247560, "methods": [ - 6456614928, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6456614944, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403074,7 +403074,7 @@ }, { "type_name": "IBaseInterface", - "vtable_address": 6462272816, + "vtable_address": 6462272848, "methods": [ 6450983616 ], @@ -403093,7 +403093,7 @@ "vtable_address": 6460816040, "methods": [ 6445410160, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -403110,111 +403110,111 @@ "vtable_address": 6460723128, "methods": [ 6444911344, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403228,20 +403228,20 @@ }, { "type_name": "IChoreoServices", - "vtable_address": 6462181744, + "vtable_address": 6462181776, "methods": [ 6450499392, 6446943472, 6450310400, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6450537136, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6450501712 ], "bases": [], @@ -403256,17 +403256,17 @@ }, { "type_name": "ICompressorService", - "vtable_address": 6463249264, - "methods": [ - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6456639472 + "vtable_address": 6463249296, + "methods": [ + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6456639488 ], "bases": [], "model": { @@ -403280,12 +403280,12 @@ }, { "type_name": "IDebugVisualizer", - "vtable_address": 6462209048, + "vtable_address": 6462209080, "methods": [ 6450643376, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, 6450811008, 6450694256 ], @@ -403301,14 +403301,14 @@ }, { "type_name": "IDemoMessage", - "vtable_address": 6461034408, + "vtable_address": 6461034392, "methods": [ 6445978672, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403322,13 +403322,13 @@ }, { "type_name": "IEconItemAttributeIterator", - "vtable_address": 6461723624, + "vtable_address": 6461723640, "methods": [ 6448896880, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403342,35 +403342,35 @@ }, { "type_name": "IEconItemInterface", - "vtable_address": 6463033496, + "vtable_address": 6463033512, "methods": [ - 6454277376, + 6454277392, 6453956000, - 6454108688, - 6454109040, - 6454109392, - 6454126176, - 6454126624, - 6454186880, - 6454184288, - 6454183536, - 6454187488, - 6454184224, - 6454111584, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6454108704, + 6454109056, + 6454109408, + 6454126192, + 6454126640, + 6454186896, + 6454184304, + 6454183552, + 6454187504, + 6454184240, + 6454111600, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403384,14 +403384,14 @@ }, { "type_name": "IEconTool", - "vtable_address": 6463032432, + "vtable_address": 6463032448, "methods": [ 6453956048, - 6454071648, - 6454330656, - 6454234720, - 6454188192, - 6454074176 + 6454071664, + 6454330672, + 6454234736, + 6454188208, + 6454074192 ], "bases": [], "model": { @@ -403405,30 +403405,30 @@ }, { "type_name": "IEngineService", - "vtable_address": 6461809088, - "methods": [ - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + "vtable_address": 6461809104, + "methods": [ + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6449297120 ], "bases": [ @@ -403458,14 +403458,14 @@ }, { "type_name": "IEntity2Networkables", - "vtable_address": 6462274088, + "vtable_address": 6462274120, "methods": [ 6450983664, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403479,12 +403479,12 @@ }, { "type_name": "IEntityDataInstantiator", - "vtable_address": 6462276992, + "vtable_address": 6462277024, "methods": [ 6450983712, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403520,7 +403520,7 @@ "vtable_address": 6460514152, "methods": [ 6443802224, - 6459886716, + 6459886732, 6443863280 ], "bases": [], @@ -403535,42 +403535,42 @@ }, { "type_name": "IGameEvent", - "vtable_address": 6462272840, + "vtable_address": 6462272872, "methods": [ 6450983760, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403587,7 +403587,7 @@ "vtable_address": 6460555392, "methods": [ 6443958640, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -403663,7 +403663,7 @@ 6443774720, 6443743152, 6443736688, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -403677,32 +403677,32 @@ }, { "type_name": "IHLTVDirector", - "vtable_address": 6462563432, + "vtable_address": 6462563464, "methods": [ 6452388288, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { "Msvc": { - "complete_object_locator": 6464456072, + "complete_object_locator": 6464456080, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -403714,36 +403714,36 @@ "vtable_address": 6460514312, "methods": [ 6443802272, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403757,12 +403757,12 @@ }, { "type_name": "IMobileEventListener", - "vtable_address": 6463082288, + "vtable_address": 6463082320, "methods": [ - 6454294784, - 6454323072, - 6454323104, - 6454324352 + 6454294800, + 6454323088, + 6454323120, + 6454324368 ], "bases": [], "model": { @@ -403779,7 +403779,7 @@ "vtable_address": 6460740488, "methods": [ 6445050272, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -403793,12 +403793,12 @@ }, { "type_name": "INavDynamicConnectionsManager", - "vtable_address": 6463094792, + "vtable_address": 6463094824, "methods": [ - 6454361072, - 6459886716, - 6459886716, - 6459886716 + 6454361088, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403812,11 +403812,11 @@ }, { "type_name": "INavMarkupManager", - "vtable_address": 6463094760, + "vtable_address": 6463094792, "methods": [ - 6454361120, - 6459886716, - 6459886716 + 6454361136, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403830,21 +403830,21 @@ }, { "type_name": "INavObstacle", - "vtable_address": 6461271760, + "vtable_address": 6461271728, "methods": [ 6446986720, 6446995280, 6447001312, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6446989760, - 6459886716, + 6459886732, 6446998272, 6446998240, 6446986832, 6446998256, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6446995232 ], "bases": [], @@ -403862,7 +403862,7 @@ "vtable_address": 6460697056, "methods": [ 6444615696, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -403876,13 +403876,13 @@ }, { "type_name": "INetworkFieldScratchData", - "vtable_address": 6463255968, + "vtable_address": 6463256000, "methods": [ - 6456763856, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6456763872, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403896,13 +403896,13 @@ }, { "type_name": "INetworkSerializerBindingBuildFilter", - "vtable_address": 6463267648, + "vtable_address": 6463267680, "methods": [ - 6456899136, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6456899152, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403916,17 +403916,17 @@ }, { "type_name": "IPoseAccessor", - "vtable_address": 6462343816, + "vtable_address": 6462343848, "methods": [ 6451540960, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403940,13 +403940,13 @@ }, { "type_name": "IPrerequisite", - "vtable_address": 6461029064, + "vtable_address": 6461029048, "methods": [ 6445978720, 6445982464, 6446145984, - 6459886716, - 6459886716, + 6459886732, + 6459886732, 6446013424 ], "bases": [], @@ -403961,16 +403961,16 @@ }, { "type_name": "IPulseBlackboardView", - "vtable_address": 6461671384, + "vtable_address": 6461671368, "methods": [ 6448772720, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -403987,10 +403987,10 @@ "vtable_address": 6460492904, "methods": [ 6443736752, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -404004,16 +404004,16 @@ }, { "type_name": "IResponseSystem", - "vtable_address": 6462170840, + "vtable_address": 6462170872, "methods": [ 6450310448, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -404027,86 +404027,86 @@ }, { "type_name": "IRestore", - "vtable_address": 6462271920, + "vtable_address": 6462271952, "methods": [ 6450983808, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [ { @@ -404149,88 +404149,88 @@ }, { "type_name": "ISave", - "vtable_address": 6462207280, + "vtable_address": 6462207312, "methods": [ 6450643424, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [ { @@ -404273,19 +404273,19 @@ }, { "type_name": "ISchemaAttributeType", - "vtable_address": 6463032896, + "vtable_address": 6463032912, "methods": [ 6453956208, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6454070336 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6454070352 ], "bases": [], "model": { @@ -404299,21 +404299,21 @@ }, { "type_name": "ISchemaAttributeTypeBase", - "vtable_address": 6463048624, + "vtable_address": 6463048640, "methods": [ 6453949696, - 6454130944, - 6454202240, - 6454072352, - 6459886716, - 6459886716, - 6454202016, - 6454144160, - 6454284048, - 6454213504, - 6454070336, - 6459886716, - 6459886716 + 6454130960, + 6454202256, + 6454072368, + 6459886732, + 6459886732, + 6454202032, + 6454144176, + 6454284064, + 6454213520, + 6454070352, + 6459886732, + 6459886732 ], "bases": [ { @@ -404342,21 +404342,21 @@ }, { "type_name": "ISchemaAttributeTypeBase >", - "vtable_address": 6463048848, + "vtable_address": 6463048864, "methods": [ 6453949648, - 6454130832, - 6454202208, - 6454072336, - 6459886716, - 6459886716, - 6454201952, - 6454144112, - 6454284000, - 6454213472, - 6454070336, - 6459886716, - 6459886716 + 6454130848, + 6454202224, + 6454072352, + 6459886732, + 6459886732, + 6454201968, + 6454144128, + 6454284016, + 6454213488, + 6454070352, + 6459886732, + 6459886732 ], "bases": [ { @@ -404385,21 +404385,21 @@ }, { "type_name": "ISchemaAttributeTypeBase", - "vtable_address": 6463049296, + "vtable_address": 6463049312, "methods": [ 6453949600, - 6454130720, - 6454202176, - 6454072320, - 6459886716, - 6459886716, - 6454201888, - 6454144096, - 6454283984, - 6454213440, - 6454070336, - 6459886716, - 6459886716 + 6454130736, + 6454202192, + 6454072336, + 6459886732, + 6459886732, + 6454201904, + 6454144112, + 6454284000, + 6454213456, + 6454070352, + 6459886732, + 6459886732 ], "bases": [ { @@ -404428,21 +404428,21 @@ }, { "type_name": "ISchemaAttributeTypeBase", - "vtable_address": 6463049072, + "vtable_address": 6463049088, "methods": [ 6453949552, - 6454130608, - 6454202144, - 6454072304, - 6459886716, - 6459886716, - 6454201824, - 6454144080, - 6454283968, - 6454213408, - 6454070336, - 6459886716, - 6459886716 + 6454130624, + 6454202160, + 6454072320, + 6459886732, + 6459886732, + 6454201840, + 6454144096, + 6454283984, + 6454213424, + 6454070352, + 6459886732, + 6459886732 ], "bases": [ { @@ -404473,17 +404473,17 @@ "type_name": "IServerToolsInfo", "vtable_address": 6462547832, "methods": [ - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6452333904 ], "bases": [ @@ -404504,7 +404504,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464455328, + "complete_object_locator": 6464455392, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -404513,25 +404513,25 @@ }, { "type_name": "ISource2GameEntities", - "vtable_address": 6462548024, - "methods": [ - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, + "vtable_address": 6462548056, + "methods": [ + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, 6452333952, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [ { @@ -404551,7 +404551,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464455200, + "complete_object_locator": 6464455264, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -404560,10 +404560,10 @@ }, { "type_name": "ISpawnGroupEntityFilter", - "vtable_address": 6461062248, + "vtable_address": 6461062232, "methods": [ 6446327472, - 6459886716 + 6459886732 ], "bases": [], "model": { @@ -404600,7 +404600,7 @@ }, { "type_name": "IVTableIndexCalculator", - "vtable_address": 6461029368, + "vtable_address": 6461029352, "methods": [ 6446050192, 6446050368, @@ -404680,10 +404680,10 @@ }, { "type_name": "IVoiceGameMgrHelper", - "vtable_address": 6461701016, + "vtable_address": 6461701192, "methods": [ 6448833248, - 6459886716, + 6459886732, 6448833200, 6448833216, 6448833232 @@ -404700,7 +404700,7 @@ }, { "type_name": "IWatcherCallback", - "vtable_address": 6461259016, + "vtable_address": 6461258984, "methods": [ 6446986768 ], @@ -404803,26 +404803,26 @@ }, { "type_name": "IpAddressMask", - "vtable_address": 6461483000, + "vtable_address": 6461482984, "methods": [ 6447732752, - 6455181760, + 6455181776, 6447719200, 6447720656, 6447720704, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447720736, 6447722528, 6447720960, 6443766512, 6447721872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447722720, 6447726048, 6447724976, - 6455179744, + 6455179760, 6447732304 ], "bases": [ @@ -404866,22 +404866,22 @@ }, { "type_name": "MLDemoHeader", - "vtable_address": 6461440160, + "vtable_address": 6461440144, "methods": [ 6447414816, - 6455181760, + 6455181776, 6447401360, 6447402272, 6447402656, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447402672, 6447403968, 6447402848, 6443766512, 6447403552, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447404176, 6447404848, 6447404832 @@ -404927,22 +404927,22 @@ }, { "type_name": "MLDict", - "vtable_address": 6461367624, + "vtable_address": 6461367608, "methods": [ 6447197200, - 6455181760, + 6455181776, 6447186176, 6447186720, 6447186848, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447186944, 6447187984, 6447187120, 6443766512, 6447187680, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447188144, 6447189248, 6447189216 @@ -404988,22 +404988,22 @@ }, { "type_name": "MLEvent", - "vtable_address": 6461374408, + "vtable_address": 6461374392, "methods": [ 6447227072, - 6455181760, + 6455181776, 6447202432, 6447202752, 6447203024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447203040, 6447205568, 6447203840, 6443766512, 6447204688, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447206048, 6447207008, 6447206976 @@ -405049,22 +405049,22 @@ }, { "type_name": "MLGameState", - "vtable_address": 6461433976, + "vtable_address": 6461433960, "methods": [ 6447392688, - 6455181760, + 6455181776, 6447358176, 6447362176, 6447363312, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447363344, 6447364864, 6447363760, 6443766512, 6447364528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447366144, 6447366848, 6447366832 @@ -405110,22 +405110,22 @@ }, { "type_name": "MLMatchState", - "vtable_address": 6461377312, + "vtable_address": 6461377296, "methods": [ 6447249488, - 6455181760, + 6455181776, 6447232688, 6447234864, 6447234992, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447235008, 6447238272, 6447236064, 6443766512, 6447237312, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447238720, 6447239408, 6447239264 @@ -405171,22 +405171,22 @@ }, { "type_name": "MLPlayerState", - "vtable_address": 6461392136, + "vtable_address": 6461392120, "methods": [ 6447349744, - 6455181760, + 6455181776, 6447299520, 6447300544, 6447300976, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447301008, 6447305728, 6447301920, 6443766512, 6447304064, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447306944, 6447308448, 6447308192 @@ -405232,22 +405232,22 @@ }, { "type_name": "MLRoundState", - "vtable_address": 6461379072, + "vtable_address": 6461379056, "methods": [ 6447264944, - 6455181760, + 6455181776, 6447253168, 6447255136, 6447255472, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447255504, 6447257472, 6447256144, 6443766512, 6447257168, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447259376, 6447262656, 6447262640 @@ -405293,22 +405293,22 @@ }, { "type_name": "MLTick", - "vtable_address": 6461454440, + "vtable_address": 6461454424, "methods": [ 6447444608, - 6455181760, + 6455181776, 6447421392, 6447422528, 6447422688, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447423056, 6447424320, 6447423392, 6443766512, 6447424000, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447424688, 6447425936, 6447425920 @@ -405354,26 +405354,26 @@ }, { "type_name": "MLWeaponState", - "vtable_address": 6461383008, + "vtable_address": 6461382992, "methods": [ 6447291312, - 6455181760, + 6455181776, 6447274864, 6447276912, 6447277056, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447277072, 6447280352, 6447277552, 6443766512, 6447278816, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447281552, 6447281744, 6447281712, - 6455179744, + 6455179760, 6447287872 ], "bases": [ @@ -405417,34 +405417,34 @@ }, { "type_name": "MatchEndItemUpdates", - "vtable_address": 6461488688, + "vtable_address": 6461488672, "methods": [ 6447780480, - 6455181760, + 6455181776, 6447774320, 6447774592, 6447774624, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447774640, 6447775904, 6447774928, 6443766512, 6447775520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447775920, 6447776096, 6447776080, - 6455179744, + 6455179760, 6447776176, - 6455179744, + 6455179760, 6447778528, - 6455179744, + 6455179760, 6447780432, - 6455179744, + 6455179760, 6447780720, - 6455179744, + 6455179760, 6447782240 ], "bases": [ @@ -405590,26 +405590,26 @@ }, { "type_name": "OperationalStatisticDescription", - "vtable_address": 6461455016, + "vtable_address": 6461455000, "methods": [ 6447448256, - 6455181760, + 6455181776, 6447438032, 6447439184, 6447439424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447439440, 6447440560, 6447439552, 6443766512, 6447440336, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447441840, 6447442592, 6447442528, - 6455179744, + 6455179760, 6447444800 ], "bases": [ @@ -405653,26 +405653,26 @@ }, { "type_name": "OperationalStatisticElement", - "vtable_address": 6461456680, + "vtable_address": 6461456664, "methods": [ 6447479968, - 6455181760, + 6455181776, 6447458240, 6447466000, 6447466176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447466240, 6447468832, 6447466880, 6443766512, 6447468496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447471136, 6447472880, 6447472864, - 6455179744, + 6455179760, 6447476320 ], "bases": [ @@ -405716,29 +405716,29 @@ }, { "type_name": "OperationalStatisticsPacket", - "vtable_address": 6461459528, + "vtable_address": 6461459512, "methods": [ 6447516832, - 6455181760, + 6455181776, 6447487600, 6447487888, 6447488080, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447488096, 6447489408, 6447488432, 6443766512, 6447489056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447489984, 6447496544, 6447496512, - 6455179744, + 6455179760, 6447511776, - 6455430064, - 6455430144 + 6455430080, + 6455430160 ], "bases": [ { @@ -405781,22 +405781,22 @@ }, { "type_name": "OperationalVarValue", - "vtable_address": 6461461768, + "vtable_address": 6461461752, "methods": [ 6447540656, - 6455181760, + 6455181776, 6447522208, 6447522576, 6447522688, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447522704, 6447523728, 6447522880, 6443766512, 6447523424, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447523888, 6447524768, 6447524736 @@ -405847,14 +405847,14 @@ 6444615936, 6444708960, 6444685088, - 6458122208, + 6458122224, 6444619648, - 6458123984, - 6458124256, + 6458124000, + 6458124272, 6444673424, - 6458122304, - 6458121488, - 6458121920 + 6458122320, + 6458121504, + 6458121936 ], "bases": [ { @@ -405897,7 +405897,7 @@ }, { "type_name": "PhysicsRagdollPose_t", - "vtable_address": 6461001672, + "vtable_address": 6461001656, "methods": [ 6445891632, 6445890496, @@ -405950,7 +405950,7 @@ }, { "type_name": "PlaceDecalEvent_t", - "vtable_address": 6461041616, + "vtable_address": 6461041600, "methods": [ 6445978768, 6445995552, @@ -406041,22 +406041,22 @@ }, { "type_name": "PlaceDecalEvent_t", - "vtable_address": 6461041664, + "vtable_address": 6461041648, "methods": [ 6445975428, - 6455181760, + 6455181776, 6446104080, 6447266304, 6447266448, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447266480, 6446048128, 6447267472, 6443766512, 6447269152, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447272064, 6447273776, 6447273424 @@ -406178,28 +406178,28 @@ }, { "type_name": "PlayerCommendationInfo", - "vtable_address": 6461470248, + "vtable_address": 6461470232, "methods": [ 6447625360, - 6455181760, + 6455181776, 6447611904, 6447613360, 6447613424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447613600, 6447615872, 6447614448, 6443766512, 6447615504, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447616416, 6447616688, 6447616672, - 6455179744, + 6455179760, 6447621936, - 6455179744, + 6455179760, 6447625504 ], "bases": [ @@ -406243,22 +406243,22 @@ }, { "type_name": "PlayerDecalDigitalSignature", - "vtable_address": 6461485080, + "vtable_address": 6461485064, "methods": [ 6447763264, - 6455181760, + 6455181776, 6447733024, 6447733360, 6447733536, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447733552, 6447737120, 6447734128, 6443766512, 6447735856, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447738224, 6447739104, 6447739088 @@ -406304,22 +406304,22 @@ }, { "type_name": "PlayerMedalsInfo", - "vtable_address": 6461472608, + "vtable_address": 6461472592, "methods": [ 6447637168, - 6455181760, + 6455181776, 6447628880, 6447631024, 6447631200, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447631376, 6447633008, 6447632096, 6443766512, 6447632688, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447633040, 6447633232, 6447633216 @@ -406365,26 +406365,26 @@ }, { "type_name": "PlayerQuestData", - "vtable_address": 6461351032, + "vtable_address": 6461351016, "methods": [ 6447159200, - 6455181760, + 6455181776, 6447103152, 6447107600, 6447108048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447108080, 6447111520, 6447108976, 6443766512, 6447110576, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447113904, 6447114864, 6447114848, - 6455179744, + 6455179760, 6447158192 ], "bases": [ @@ -406428,22 +406428,22 @@ }, { "type_name": "PlayerQuestData_QuestItemData", - "vtable_address": 6461332672, + "vtable_address": 6461332656, "methods": [ 6447095344, - 6455181760, + 6455181776, 6447075040, 6447075360, 6447075456, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447075472, 6447077888, 6447075792, 6443766512, 6447076976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447077920, 6447078832, 6447078816 @@ -406489,26 +406489,26 @@ }, { "type_name": "PlayerRankingInfo", - "vtable_address": 6461468424, + "vtable_address": 6461468408, "methods": [ 6447607984, - 6455181760, + 6455181776, 6447567456, 6447568112, 6447568336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447568400, 6447573520, 6447569248, 6443766512, 6447572080, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447575504, 6447576832, 6447576672, - 6455179744, + 6455179760, 6447605296 ], "bases": [ @@ -406552,26 +406552,26 @@ }, { "type_name": "PlayerRankingInfo_PerMapRank", - "vtable_address": 6461463480, + "vtable_address": 6461463464, "methods": [ 6447559888, - 6455181760, + 6455181776, 6447548064, 6447548896, 6447548944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447548960, 6447550080, 6447549104, 6443766512, 6447549696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447550816, 6447553200, 6447552832, - 6455179744, + 6455179760, 6447557488 ], "bases": [ @@ -406635,28 +406635,28 @@ }, { "type_name": "ProtoFlattenedSerializerField_t", - "vtable_address": 6461516664, + "vtable_address": 6461516648, "methods": [ 6448014736, - 6455181760, + 6455181776, 6447985872, 6447987968, 6447988240, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447988256, 6447992144, 6447989088, 6443766512, 6447990928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447994832, 6447997120, 6447997104, - 6455179744, + 6455179760, 6448013376, - 6455179744, + 6455179760, 6448014976 ], "bases": [ @@ -406700,26 +406700,26 @@ }, { "type_name": "ProtoFlattenedSerializerField_t_polymorphic_field_t", - "vtable_address": 6461507984, + "vtable_address": 6461507968, "methods": [ 6447982160, - 6455181760, + 6455181776, 6447976832, 6447977040, 6447977136, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447977152, 6447978192, 6447977248, 6443766512, 6447977872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447978688, 6447978928, 6447978912, - 6455179744, + 6455179760, 6447979232 ], "bases": [ @@ -406763,28 +406763,28 @@ }, { "type_name": "ProtoFlattenedSerializer_t", - "vtable_address": 6461520384, + "vtable_address": 6461520368, "methods": [ 6448028480, - 6455181760, + 6455181776, 6448018688, 6448018960, 6448019024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448019040, 6448020320, 6448019200, 6443766512, 6448019872, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448020336, 6448020512, 6448020496, - 6455179744, + 6455179760, 6448025232, - 6455179744, + 6455179760, 6448028656 ], "bases": [ @@ -406828,7 +406828,7 @@ }, { "type_name": "RR::CApplyContextOperator", - "vtable_address": 6462355944, + "vtable_address": 6462355976, "methods": [ 6451674528 ], @@ -406844,7 +406844,7 @@ }, { "type_name": "RR::CDecrementOperator", - "vtable_address": 6462355976, + "vtable_address": 6462356008, "methods": [ 6451674688 ], @@ -406875,7 +406875,7 @@ }, { "type_name": "RR::CIncrementOperator", - "vtable_address": 6462355960, + "vtable_address": 6462355992, "methods": [ 6451674576 ], @@ -406906,7 +406906,7 @@ }, { "type_name": "RR::CToggleOperator", - "vtable_address": 6462355992, + "vtable_address": 6462356024, "methods": [ 6451674800 ], @@ -406937,7 +406937,7 @@ }, { "type_name": "RotationTrack_t", - "vtable_address": 6461034360, + "vtable_address": 6461034344, "methods": [ 6451647232 ], @@ -406968,7 +406968,7 @@ }, { "type_name": "ScaleTrack_t", - "vtable_address": 6461034392, + "vtable_address": 6461034376, "methods": [ 6451647648 ], @@ -406999,26 +406999,26 @@ }, { "type_name": "ScoreLeaderboardData", - "vtable_address": 6461505984, + "vtable_address": 6461505968, "methods": [ 6447854576, - 6455181760, + 6455181776, 6447829648, 6447831760, 6447832160, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447832192, 6447835296, 6447833888, 6443766512, 6447834848, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447837536, 6447839616, 6447839584, - 6455179744, + 6455179760, 6447853136 ], "bases": [ @@ -407062,26 +407062,26 @@ }, { "type_name": "ScoreLeaderboardData_AccountEntries", - "vtable_address": 6461503728, + "vtable_address": 6461503712, "methods": [ 6447824976, - 6455181760, + 6455181776, 6447793920, 6447797488, 6447797648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447797664, 6447799216, 6447798464, 6443766512, 6447798976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447799536, 6447799568, 6447799552, - 6455179744, + 6455179760, 6447823680 ], "bases": [ @@ -407125,22 +407125,22 @@ }, { "type_name": "ScoreLeaderboardData_Entry", - "vtable_address": 6461489792, + "vtable_address": 6461489776, "methods": [ 6447787696, - 6455181760, + 6455181776, 6447784240, 6447784336, 6447784368, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447784384, 6447785248, 6447784480, 6443766512, 6447784976, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447785264, 6447785440, 6447785424 @@ -407186,7 +407186,7 @@ }, { "type_name": "SellbackPurchaseEntry_t", - "vtable_address": 6462109880, + "vtable_address": 6462109896, "methods": [ 6449921808, 6449884368, @@ -407206,7 +407206,7 @@ }, { "type_name": "ServerAuthoritativeWeaponSlot_t", - "vtable_address": 6462147712, + "vtable_address": 6462147728, "methods": [ 6450207808, 6450181936, @@ -407226,22 +407226,22 @@ }, { "type_name": "ServerHltvInfo", - "vtable_address": 6461480920, + "vtable_address": 6461480904, "methods": [ 6447712672, - 6455181760, + 6455181776, 6447687424, 6447688736, 6447688896, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447688912, 6447693744, 6447689664, 6443766512, 6447691856, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447693792, 6447694416, 6447694400 @@ -407287,7 +407287,7 @@ }, { "type_name": "SimpleConstraintSoundProfile", - "vtable_address": 6462722240, + "vtable_address": 6462722272, "methods": [ 6452857696 ], @@ -407303,7 +407303,7 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 6462563240, + "vtable_address": 6462563272, "methods": [ 6452388336, 6450880896, @@ -407394,22 +407394,22 @@ }, { "type_name": "Source1LegacyGameEventList_t", - "vtable_address": 6462563288, + "vtable_address": 6462563320, "methods": [ 6452386596, - 6455181760, + 6455181776, 6447416848, 6447417648, 6447417776, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447417792, 6447418864, 6447418080, 6443766512, 6447418496, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447419136, 6447420112, 6447420096 @@ -407497,7 +407497,7 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 6462263776, + "vtable_address": 6462263808, "methods": [ 6450881984, 6450881632, @@ -407588,22 +407588,22 @@ }, { "type_name": "Source1LegacyGameEvent_t", - "vtable_address": 6462263824, + "vtable_address": 6462263856, "methods": [ 6450891912, - 6455181760, + 6455181776, 6447506288, 6447506704, 6447506960, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447506976, 6447508576, 6447507296, 6443766512, 6447508096, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447508848, 6447508896, 6447508880 @@ -407691,18 +407691,18 @@ }, { "type_name": "SpawnPoint", - "vtable_address": 6461725760, + "vtable_address": 6461725776, "methods": [ 6446805888, 6448897344, 6445463120, - 6456889008, + 6456889024, 6445541280, 6451753984, 6449180528, - 6456887568, - 6456894000, + 6456887584, 6456894016, + 6456894032, 6451745840, 6451932368, 6451865168, @@ -407732,7 +407732,7 @@ 6443746624, 6443745952, 6443746320, - 6456895856, + 6456895872, 6448991552, 6449135440, 6449169456, @@ -408006,11 +408006,11 @@ }, { "type_name": "SplitObs_t", - "vtable_address": 6463109544, + "vtable_address": 6463109576, "methods": [ - 6454732208, - 6454730256, - 6454677712 + 6454732224, + 6454730272, + 6454677728 ], "bases": [ { @@ -408039,13 +408039,13 @@ }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 6463129520, + "vtable_address": 6463129552, "methods": [ - 6455026368, - 6455026000, - 6455025984, + 6455026384, 6455026016, - 6455026096 + 6455026000, + 6455026032, + 6455026112 ], "bases": [ { @@ -408130,22 +408130,22 @@ }, { "type_name": "TEArmorRicochet_GameEvent_t", - "vtable_address": 6463129568, + "vtable_address": 6463129600, "methods": [ - 6455025708, - 6455181760, + 6455025724, + 6455181776, 6448549488, 6448549904, 6448550048, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448550064, 6448551024, 6448550368, 6443766512, 6448550848, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448551040, 6448551072, 6448551056 @@ -408233,13 +408233,13 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 6463131784, + "vtable_address": 6463131816, "methods": [ - 6455032208, + 6455032224, + 6455033664, 6455033648, - 6455033632, - 6455044208, - 6455033664 + 6455044224, + 6455033680 ], "bases": [ { @@ -408324,22 +408324,22 @@ }, { "type_name": "TEBeamEntPoint_GameEvent_t", - "vtable_address": 6463131832, + "vtable_address": 6463131864, "methods": [ - 6455031988, - 6455181760, + 6455032004, + 6455181776, 6447979216, 6447979760, 6447979984, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447980144, 6447981888, 6447980544, 6443766512, 6447981488, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447981904, 6447982096, 6447982080 @@ -408427,13 +408427,13 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 6463130008, + "vtable_address": 6463130040, "methods": [ - 6455027120, - 6455026768, - 6455026752, + 6455027136, 6455026784, - 6455026864 + 6455026768, + 6455026800, + 6455026880 ], "bases": [ { @@ -408518,22 +408518,22 @@ }, { "type_name": "TEBeamEnts_GameEvent_t", - "vtable_address": 6463130056, + "vtable_address": 6463130088, "methods": [ - 6455025732, - 6455181760, + 6455025748, + 6455181776, 6447997840, 6447998048, 6447998176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447998192, 6447999264, 6447998352, 6443766512, 6447998944, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447999280, 6447999648, 6447999632 @@ -408621,13 +408621,13 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 6463130456, + "vtable_address": 6463130488, "methods": [ - 6455027856, - 6455027504, - 6455027488, + 6455027872, 6455027520, - 6455027600 + 6455027504, + 6455027536, + 6455027616 ], "bases": [ { @@ -408712,25 +408712,25 @@ }, { "type_name": "TEBeamPoints_GameEvent_t", - "vtable_address": 6463130504, + "vtable_address": 6463130536, "methods": [ - 6455025756, - 6455181760, + 6455025772, + 6455181776, 6448010144, 6448010656, 6448011024, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448011040, 6448012160, 6448011376, 6443766512, 6448011952, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448012352, - 6448012544, - 6448012496 + 6448012624, + 6448012512 ], "bases": [ { @@ -408815,13 +408815,13 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 6463130912, + "vtable_address": 6463130944, "methods": [ - 6455028592, - 6455028240, - 6455028224, + 6455028608, 6455028256, - 6455028336 + 6455028240, + 6455028272, + 6455028352 ], "bases": [ { @@ -408906,25 +408906,25 @@ }, { "type_name": "TEBeamRing_GameEvent_t", - "vtable_address": 6463130960, + "vtable_address": 6463130992, "methods": [ - 6455025924, - 6455181760, + 6455025940, + 6455181776, 6448020576, 6448020784, 6448020912, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448020928, 6448022160, 6448021088, 6443766512, 6448021840, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448022192, 6448023312, - 6448022800 + 6448023104 ], "bases": [ { @@ -409009,13 +409009,13 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 6463131360, + "vtable_address": 6463131392, "methods": [ - 6455029328, - 6455028976, - 6455028960, + 6455029344, 6455028992, - 6455029072 + 6455028976, + 6455029008, + 6455029088 ], "bases": [ { @@ -409100,22 +409100,22 @@ }, { "type_name": "TEBloodStream_GameEvent_t", - "vtable_address": 6463131408, + "vtable_address": 6463131440, "methods": [ - 6455025948, - 6455181760, + 6455025964, + 6455181776, 6448240784, 6448241264, 6448241424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448241440, 6448243168, 6448241888, 6443766512, 6448242864, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448244080, 6448244128, 6448244112 @@ -409203,13 +409203,13 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 6463129032, + "vtable_address": 6463129064, "methods": [ - 6455025344, - 6455024992, - 6455024976, + 6455025360, 6455025008, - 6455025088 + 6455024992, + 6455025024, + 6455025104 ], "bases": [ { @@ -409294,23 +409294,23 @@ }, { "type_name": "TEBubbleTrail_GameEvent_t", - "vtable_address": 6463129080, + "vtable_address": 6463129112, "methods": [ - 6455026612, - 6455181760, + 6455026628, + 6455181776, 6448048656, 6448049312, 6448049488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448049568, - 6448051232, + 6448051392, 6448049920, 6443766512, - 6448050864, - 6455183120, - 6455184944, - 6448052208, + 6448050880, + 6455183136, + 6455184960, + 6448052608, 6448052656, 6448052640 ], @@ -409397,13 +409397,13 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 6463128584, + "vtable_address": 6463128616, "methods": [ - 6455024608, - 6455024256, - 6455024240, + 6455024624, 6455024272, - 6455024352 + 6455024256, + 6455024288, + 6455024368 ], "bases": [ { @@ -409488,24 +409488,24 @@ }, { "type_name": "TEBubbles_GameEvent_t", - "vtable_address": 6463128632, + "vtable_address": 6463128664, "methods": [ - 6455026344, - 6455181760, + 6455026360, + 6455181776, 6448040864, 6448041328, 6448041488, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448041504, 6448042880, 6448041856, 6443766512, 6448042528, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448042896, - 6448042944, + 6448043040, 6448042928 ], "bases": [ @@ -409591,13 +409591,13 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 6463134464, + "vtable_address": 6463134496, "methods": [ - 6455056832, - 6455056480, - 6455056464, + 6455056848, 6455056496, - 6455056576 + 6455056480, + 6455056512, + 6455056592 ], "bases": [ { @@ -409682,22 +409682,22 @@ }, { "type_name": "TEDust_GameEvent_t", - "vtable_address": 6463134512, + "vtable_address": 6463134544, "methods": [ - 6455054824, - 6455181760, + 6455054840, + 6455181776, 6448269520, 6448269968, 6448270128, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448270160, 6448271296, 6448270496, 6443766512, 6448271056, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448272128, 6448274080, 6448273904 @@ -409785,13 +409785,13 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 6463133080, + "vtable_address": 6463133112, "methods": [ - 6455054400, - 6455054048, - 6455054032, + 6455054416, 6455054064, - 6455054144 + 6455054048, + 6455054080, + 6455054160 ], "bases": [ { @@ -409876,22 +409876,22 @@ }, { "type_name": "TEEffectDispatch_GameEvent_t", - "vtable_address": 6463133128, + "vtable_address": 6463133160, "methods": [ - 6455054752, - 6455181760, + 6455054768, + 6455181776, 6448110048, 6448110608, 6448110672, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448110688, 6448111456, 6448110928, 6443766512, 6448111328, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448111856, 6448113776, 6448113760 @@ -409979,13 +409979,13 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 6463133536, + "vtable_address": 6463133568, "methods": [ - 6455055392, - 6455055040, - 6455055024, + 6455055408, 6455055056, - 6455055136 + 6455055040, + 6455055072, + 6455055152 ], "bases": [ { @@ -410070,22 +410070,22 @@ }, { "type_name": "TEEnergySplash_GameEvent_t", - "vtable_address": 6463133584, + "vtable_address": 6463133616, "methods": [ - 6455054776, - 6455181760, + 6455054792, + 6455181776, 6448123920, 6448124352, 6448124496, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448124512, 6448125792, 6448124816, 6443766512, 6448125584, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448126304, 6448127616, 6448127600 @@ -410173,7 +410173,7 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 6461735088, + "vtable_address": 6461735104, "methods": [ 6448897408, 6448906832, @@ -410264,22 +410264,22 @@ }, { "type_name": "TEExplosion_GameEvent_t", - "vtable_address": 6461735136, + "vtable_address": 6461735152, "methods": [ 6448892344, - 6455181760, + 6455181776, 6448252512, 6448253392, 6448253648, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448253664, 6448256368, 6448254272, 6443766512, 6448255616, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448256496, 6448257872, 6448257856 @@ -410367,7 +410367,7 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 6461826200, + "vtable_address": 6461826216, "methods": [ 6449316928, 6448906864, @@ -410458,22 +410458,22 @@ }, { "type_name": "TEFirebullets_GameEvent_t", - "vtable_address": 6461826248, + "vtable_address": 6461826264, "methods": [ 6449317520, - 6455181760, + 6455181776, 6447085968, 6447086896, 6447087424, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447087440, 6447093056, 6447089056, 6443766512, 6447091744, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447093168, 6447093296, 6447093280 @@ -410561,13 +410561,13 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 6463134016, + "vtable_address": 6463134048, "methods": [ - 6455056112, - 6455055760, - 6455055744, + 6455056128, 6455055776, - 6455055856 + 6455055760, + 6455055792, + 6455055872 ], "bases": [ { @@ -410652,22 +410652,22 @@ }, { "type_name": "TEFizz_GameEvent_t", - "vtable_address": 6463134064, + "vtable_address": 6463134096, "methods": [ - 6455054800, - 6455181760, + 6455054816, + 6455181776, 6448142192, 6448142368, 6448142416, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448142432, 6448143600, 6448142576, 6443766512, 6448143200, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448144608, 6448150592, 6448149968 @@ -410755,13 +410755,13 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 6463134912, + "vtable_address": 6463134944, "methods": [ - 6455057552, - 6455057200, - 6455057184, + 6455057568, 6455057216, - 6455057296 + 6455057200, + 6455057232, + 6455057312 ], "bases": [ { @@ -410846,22 +410846,22 @@ }, { "type_name": "TEGlowSprite_GameEvent_t", - "vtable_address": 6463134960, + "vtable_address": 6463134992, "methods": [ - 6455054848, - 6455181760, + 6455054864, + 6455181776, 6448184416, 6448185232, 6448185344, - 6455181808, - 6455178784, - 6448185360, + 6455181824, + 6455178800, + 6448185744, 6448186944, - 6448185952, + 6448186080, 6443766512, 6448186640, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448187120, 6448187248, 6448187232 @@ -410949,13 +410949,13 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 6463135368, + "vtable_address": 6463135400, "methods": [ - 6455058272, - 6455057920, - 6455057904, + 6455058288, 6455057936, - 6455058016 + 6455057920, + 6455057952, + 6455058032 ], "bases": [ { @@ -411040,22 +411040,22 @@ }, { "type_name": "TEImpact_GameEvent_t", - "vtable_address": 6463135416, + "vtable_address": 6463135448, "methods": [ - 6455054872, - 6455181760, + 6455054888, + 6455181776, 6448197360, 6448198736, 6448199056, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448199088, 6448200256, 6448199408, 6443766512, 6448200000, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448200272, 6448201088, 6448200784 @@ -411143,13 +411143,13 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 6463135832, + "vtable_address": 6463135864, "methods": [ - 6455059024, - 6455058672, - 6455058656, + 6455059040, 6455058688, - 6455058768 + 6455058672, + 6455058704, + 6455058784 ], "bases": [ { @@ -411234,22 +411234,22 @@ }, { "type_name": "TELargeFunnel_GameEvent_t", - "vtable_address": 6463135880, + "vtable_address": 6463135912, "methods": [ - 6455054896, - 6455181760, + 6455054912, + 6455181776, 6448291296, 6448291872, 6448291968, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448291984, 6448293104, 6448292176, 6443766512, 6448292880, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448293120, 6448293152, 6448293136 @@ -411337,13 +411337,13 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 6463136288, + "vtable_address": 6463136320, "methods": [ - 6455059744, - 6455059392, - 6455059376, + 6455059760, 6455059408, - 6455059488 + 6455059392, + 6455059424, + 6455059504 ], "bases": [ { @@ -411428,22 +411428,22 @@ }, { "type_name": "TEMuzzleFlash_GameEvent_t", - "vtable_address": 6463136336, + "vtable_address": 6463136368, "methods": [ - 6455054920, - 6455181760, + 6455054936, + 6455181776, 6448225712, 6448226304, 6448226464, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448226496, 6448227824, 6448226896, 6443766512, 6448227520, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448227840, 6448227872, 6448227856 @@ -411531,13 +411531,13 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 6463136744, + "vtable_address": 6463136776, "methods": [ - 6455060464, - 6455060112, - 6455060096, + 6455060480, 6455060128, - 6455060208 + 6455060112, + 6455060144, + 6455060224 ], "bases": [ { @@ -411622,22 +411622,22 @@ }, { "type_name": "TEPhysicsProp_GameEvent_t", - "vtable_address": 6463136792, + "vtable_address": 6463136824, "methods": [ - 6455054944, - 6455181760, + 6455054960, + 6455181776, 6448323312, 6448325376, 6448325840, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448326224, 6448329280, 6448327024, 6443766512, 6448328432, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448329296, 6448329936, 6448329776 @@ -411725,13 +411725,13 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 6463137200, + "vtable_address": 6463137232, "methods": [ - 6455061200, - 6455060848, - 6455060832, + 6455061216, 6455060864, - 6455060944 + 6455060848, + 6455060880, + 6455060960 ], "bases": [ { @@ -411816,22 +411816,22 @@ }, { "type_name": "TESmoke_GameEvent_t", - "vtable_address": 6463137248, + "vtable_address": 6463137280, "methods": [ - 6455054968, - 6455181760, + 6455054984, + 6455181776, 6448351616, 6448351904, 6448352000, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448352016, 6448353104, 6448352320, 6443766512, 6448352928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448353856, 6448355456, 6448355440 @@ -411919,13 +411919,13 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 6463137648, + "vtable_address": 6463137680, "methods": [ - 6455061920, - 6455061568, - 6455061552, + 6455061936, 6455061584, - 6455061664 + 6455061568, + 6455061600, + 6455061680 ], "bases": [ { @@ -412010,22 +412010,22 @@ }, { "type_name": "TESparks_GameEvent_t", - "vtable_address": 6463137696, + "vtable_address": 6463137728, "methods": [ - 6455054992, - 6455181760, + 6455055008, + 6455181776, 6448305984, 6448307536, 6448307696, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6448307712, 6448309296, 6448308064, 6443766512, 6448308928, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6448309328, 6448309568, 6448309408 @@ -412113,40 +412113,40 @@ }, { "type_name": "TournamentEvent", - "vtable_address": 6461433384, + "vtable_address": 6461433368, "methods": [ 6447380032, - 6455181760, + 6455181776, 6447356032, 6447358672, 6447359440, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447359696, 6447363296, 6447360768, 6443766512, 6447362544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447364512, 6447366224, 6447366208, - 6455179744, + 6455179760, 6447375136, - 6455179744, + 6455179760, 6447375376, - 6455179744, + 6455179760, 6447375920, - 6455179744, + 6455179760, 6447380224, - 6455179744, + 6455179760, 6447380656, - 6455179744, + 6455179760, 6447382320, - 6455179744, + 6455179760, 6447385280, - 6455179744, + 6455179760, 6447385744 ], "bases": [ @@ -412190,30 +412190,30 @@ }, { "type_name": "TournamentMatchSetup", - "vtable_address": 6461476288, + "vtable_address": 6461476272, "methods": [ 6447680816, - 6455181760, + 6455181776, 6447669824, 6447670112, 6447670144, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447670160, 6447672192, 6447670496, 6443766512, 6447671696, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447673056, 6447674288, 6447673632, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6447677888, - 6455179744, + 6455179760, 6447678384 ], "bases": [ @@ -412257,26 +412257,26 @@ }, { "type_name": "TournamentPlayer", - "vtable_address": 6461384944, + "vtable_address": 6461384928, "methods": [ 6447313104, - 6455181760, + 6455181776, 6447289328, 6447290464, 6447290944, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447290976, 6447292720, 6447291552, 6443766512, 6447292288, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447292928, 6447293344, 6447293264, - 6455179744, + 6455179760, 6447310656 ], "bases": [ @@ -412320,26 +412320,26 @@ }, { "type_name": "TournamentTeam", - "vtable_address": 6461391976, + "vtable_address": 6461391960, "methods": [ 6447347888, - 6455181760, + 6455181776, 6447323296, 6447323808, 6447324176, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447324384, 6447326896, 6447325264, 6443766512, 6447326544, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447327296, 6447327872, 6447327472, - 6455179744, + 6455179760, 6447343744 ], "bases": [ @@ -412383,7 +412383,7 @@ }, { "type_name": "TranslationTrack_t", - "vtable_address": 6461034376, + "vtable_address": 6461034360, "methods": [ 6451647872 ], @@ -412495,9 +412495,9 @@ }, { "type_name": "VDataInitInfo_t", - "vtable_address": 6462200176, + "vtable_address": 6462200208, "methods": [ - 6459503616, + 6459503632, 6450564032, 6450564384, 6450564400, @@ -412531,7 +412531,7 @@ }, { "type_name": "VPhysicsCollisionAttribute_t", - "vtable_address": 6462422112, + "vtable_address": 6462422144, "methods": [ 6452086256, 6452074720, @@ -412550,22 +412550,22 @@ }, { "type_name": "VacNetShot", - "vtable_address": 6461457144, + "vtable_address": 6461457128, "methods": [ 6447481968, - 6455181760, + 6455181776, 6447452000, 6447452256, 6447452336, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447452352, 6447454304, 6447452624, 6443766512, 6447453600, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447455104, 6447464912, 6447463056 @@ -412611,7 +412611,7 @@ }, { "type_name": "ViewAngleServerChange_t", - "vtable_address": 6461143848, + "vtable_address": 6461143824, "methods": [ 6446839152, 6446823088, @@ -412631,32 +412631,32 @@ }, { "type_name": "WatchableMatchInfo", - "vtable_address": 6461435016, + "vtable_address": 6461435000, "methods": [ 6447404000, - 6455181760, + 6455181776, 6447370128, 6447371712, 6447371888, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447371904, 6447375104, 6447372448, 6443766512, 6447373936, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447375616, 6447379920, 6447379136, - 6455179744, + 6455179760, 6447401280, - 6455179744, + 6455179760, 6447402032, - 6455430064, - 6455430144, - 6455179744, + 6455430080, + 6455430160, + 6455179760, 6447404208 ], "bases": [ @@ -412700,7 +412700,7 @@ }, { "type_name": "WeaponPurchaseCount_t", - "vtable_address": 6462094432, + "vtable_address": 6462094448, "methods": [ 6449773904, 6449757136, @@ -412720,7 +412720,7 @@ }, { "type_name": "WeaponPurchaseTracker_t", - "vtable_address": 6462094480, + "vtable_address": 6462094496, "methods": [ 6449773952, 6449757152, @@ -412739,30 +412739,30 @@ }, { "type_name": "XpProgressData", - "vtable_address": 6461487744, + "vtable_address": 6461487728, "methods": [ 6447764912, - 6455181760, + 6455181776, 6447763104, 6447763536, 6447763568, - 6455181808, - 6455178784, + 6455181824, + 6455178800, 6447763584, 6447764624, 6447763840, 6443766512, 6447764336, - 6455183120, - 6455184944, + 6455183136, + 6455184960, 6447764640, 6447764672, 6447764656, - 6455179744, + 6455179760, 6447765056, - 6455179744, + 6455179760, 6447765152, - 6455179744, + 6455179760, 6447767856 ], "bases": [ @@ -412808,21 +412808,21 @@ "type_name": "`anonymous namespace'::CPathfindRecorderDummy", "vtable_address": 6463609480, "methods": [ - 6458071392, - 6458071248, + 6458071408, + 6458071264, + 6458071168, 6458071152, - 6458071136, - 6458071360, 6458071376, - 6458071344, - 6458071168, - 6458071216, + 6458071392, + 6458071360, 6458071184, - 6458071200, 6458071232, + 6458071200, + 6458071216, + 6458071248, + 6458071456, 6458071440, - 6458071424, - 6458071408 + 6458071424 ], "bases": [ { @@ -412851,7 +412851,7 @@ }, { "type_name": "`private: void __cdecl CTriggerAsyncQueryComponent::UpdateAsync(void)'::`2'::CTriggerTraceFilter", - "vtable_address": 6462974024, + "vtable_address": 6462974040, "methods": [ 6453714944, 6453815408 @@ -412925,7 +412925,7 @@ }, { "type_name": "`protected: virtual void __cdecl CPlantedC4::OnDefuse(class CCSPlayerPawn *)'::`2'::CPlantedC4DefusedMVP", - "vtable_address": 6461911192, + "vtable_address": 6461911208, "methods": [ 6449554416 ], @@ -412956,7 +412956,7 @@ }, { "type_name": "`protected: virtual void __cdecl CPlantedC4::OnExplode(class CGameTrace *)'::`2'::CPlantedC4ExplodedMVP", - "vtable_address": 6461911248, + "vtable_address": 6461911264, "methods": [ 6449555536 ], @@ -412987,13 +412987,13 @@ }, { "type_name": "`public: virtual void __cdecl CEconItemView::IterateAttributes(class IEconItemAttributeIterator *) const'::`2'::CEconItemAttributeIterator_EconItemViewWrapper", - "vtable_address": 6463082216, + "vtable_address": 6463082248, "methods": [ - 6454293680, - 6454323120, - 6454323328, - 6454323744, - 6454323536 + 6454293696, + 6454323136, + 6454323344, + 6454323760, + 6454323552 ], "bases": [ { @@ -413053,10 +413053,10 @@ }, { "type_name": "`public: void __cdecl CNavEditor::CommandNavTestLevelHull(class CCommandContext const &,class CCommand const &)'::`2'::CTestNavHullFilter", - "vtable_address": 6463097120, + "vtable_address": 6463097152, "methods": [ - 6454360912, - 6454489632 + 6454360928, + 6454489648 ], "bases": [ { @@ -413129,10 +413129,10 @@ "type_name": "charNode", "vtable_address": 6463726448, "methods": [ - 6459941080, - 6459941488, - 6459926596, - 6459933924 + 6459941096, + 6459941504, + 6459926612, + 6459933940 ], "bases": [ { @@ -413180,13 +413180,13 @@ }, { "type_name": "google::protobuf::DescriptorBuilder::OptionInterpreter::AggregateOptionFinder", - "vtable_address": 6463186704, + "vtable_address": 6463186736, "methods": [ - 6455592368, - 6455689296, - 6455285744, - 6455686704, - 6455285760 + 6455592384, + 6455689312, + 6455285760, + 6455686720, + 6455285776 ], "bases": [ { @@ -413215,14 +413215,14 @@ }, { "type_name": "google::protobuf::DescriptorDatabase", - "vtable_address": 6463196688, + "vtable_address": 6463196720, "methods": [ - 6455886928, - 6459886716, - 6459886716, - 6459886716, - 6455889104, - 6455889472 + 6455886944, + 6459886732, + 6459886732, + 6459886732, + 6455889120, + 6455889488 ], "bases": [], "model": { @@ -413236,25 +413236,25 @@ }, { "type_name": "google::protobuf::DescriptorProto", - "vtable_address": 6463171344, - "methods": [ - 6455452928, - 6455181760, - 6455478272, - 6455464592, - 6455472992, - 6455181808, - 6455178784, - 6455454784, - 6455470400, - 6455479376, + "vtable_address": 6463171376, + "methods": [ + 6455452944, + 6455181776, + 6455478288, + 6455464608, + 6455473008, + 6455181824, + 6455178800, + 6455454800, + 6455470416, + 6455479392, 6443766512, - 6455501664, - 6455183120, - 6455184944, - 6455478704, - 6455471264, - 6455470832 + 6455501680, + 6455183136, + 6455184960, + 6455478720, + 6455471280, + 6455470848 ], "bases": [ { @@ -413297,25 +413297,25 @@ }, { "type_name": "google::protobuf::DescriptorProto_ExtensionRange", - "vtable_address": 6463171056, + "vtable_address": 6463171088, "methods": [ - 6455452992, - 6455181760, - 6455478288, - 6455465232, - 6455473312, - 6455181808, - 6455178784, - 6455455968, - 6455470416, - 6455480816, + 6455453008, + 6455181776, + 6455478304, + 6455465248, + 6455473328, + 6455181824, + 6455178800, + 6455455984, + 6455470432, + 6455480832, 6443766512, - 6455502432, - 6455183120, - 6455184944, - 6455478720, - 6455471328, - 6455470848 + 6455502448, + 6455183136, + 6455184960, + 6455478736, + 6455471344, + 6455470864 ], "bases": [ { @@ -413358,25 +413358,25 @@ }, { "type_name": "google::protobuf::DescriptorProto_ReservedRange", - "vtable_address": 6463171200, + "vtable_address": 6463171232, "methods": [ - 6455453056, - 6455181760, - 6455478304, - 6455465312, - 6455473376, - 6455181808, - 6455178784, - 6455456288, - 6455470432, - 6455481408, + 6455453072, + 6455181776, + 6455478320, + 6455465328, + 6455473392, + 6455181824, + 6455178800, + 6455456304, + 6455470448, + 6455481424, 6443766512, - 6455502768, - 6455183120, - 6455184944, - 6455478736, - 6455471392, - 6455470864 + 6455502784, + 6455183136, + 6455184960, + 6455478752, + 6455471408, + 6455470880 ], "bases": [ { @@ -413419,24 +413419,24 @@ }, { "type_name": "google::protobuf::DynamicMessage", - "vtable_address": 6463193240, - "methods": [ - 6455860624, - 6455181760, - 6455863328, - 6455178976, - 6455183008, - 6455181808, - 6455178784, - 6455178736, - 6455860912, - 6455189360, - 6443766512, - 6455189376, - 6455183120, - 6455184944, - 6455863568, + "vtable_address": 6463193272, + "methods": [ + 6455860640, + 6455181776, + 6455863344, + 6455178992, + 6455183024, + 6455181824, + 6455178800, + 6455178752, 6455860928, + 6455189376, + 6443766512, + 6455189392, + 6455183136, + 6455184960, + 6455863584, + 6455860944, 6447061360 ], "bases": [ @@ -413480,10 +413480,10 @@ }, { "type_name": "google::protobuf::DynamicMessageFactory", - "vtable_address": 6463193120, + "vtable_address": 6463193152, "methods": [ - 6455860688, - 6455860960 + 6455860704, + 6455860976 ], "bases": [ { @@ -413512,14 +413512,14 @@ }, { "type_name": "google::protobuf::EncodedDescriptorDatabase", - "vtable_address": 6463196744, + "vtable_address": 6463196776, "methods": [ - 6455886976, - 6455890240, - 6455891008, - 6455890656, - 6455889120, - 6455890208 + 6455886992, + 6455890256, + 6455891024, + 6455890672, + 6455889136, + 6455890224 ], "bases": [ { @@ -413548,25 +413548,25 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto", - "vtable_address": 6463172064, + "vtable_address": 6463172096, "methods": [ - 6455453184, - 6455181760, - 6455478320, - 6455465344, - 6455473392, - 6455181808, - 6455178784, - 6455456384, - 6455470448, - 6455481904, + 6455453200, + 6455181776, + 6455478336, + 6455465360, + 6455473408, + 6455181824, + 6455178800, + 6455456400, + 6455470464, + 6455481920, 6443766512, - 6455503072, - 6455183120, - 6455184944, - 6455478752, - 6455471456, - 6455470880 + 6455503088, + 6455183136, + 6455184960, + 6455478768, + 6455471472, + 6455470896 ], "bases": [ { @@ -413609,25 +413609,25 @@ }, { "type_name": "google::protobuf::EnumDescriptorProto_EnumReservedRange", - "vtable_address": 6463171920, + "vtable_address": 6463171952, "methods": [ - 6455453248, - 6455181760, - 6455478336, - 6455465696, - 6455473568, - 6455181808, - 6455178784, - 6455457072, - 6455470464, - 6455482688, + 6455453264, + 6455181776, + 6455478352, + 6455465712, + 6455473584, + 6455181824, + 6455178800, + 6455457088, + 6455470480, + 6455482704, 6443766512, - 6455503488, - 6455183120, - 6455184944, - 6455478768, - 6455471520, - 6455470896 + 6455503504, + 6455183136, + 6455184960, + 6455478784, + 6455471536, + 6455470912 ], "bases": [ { @@ -413670,25 +413670,25 @@ }, { "type_name": "google::protobuf::EnumOptions", - "vtable_address": 6463173216, + "vtable_address": 6463173248, "methods": [ - 6455453376, - 6455181760, - 6455478352, - 6455465728, - 6455473584, - 6455181808, - 6455178784, - 6455457168, - 6455470480, - 6455483184, + 6455453392, + 6455181776, + 6455478368, + 6455465744, + 6455473600, + 6455181824, + 6455178800, + 6455457184, + 6455470496, + 6455483200, 6443766512, - 6455503792, - 6455183120, - 6455184944, - 6455478784, - 6455471584, - 6455470912 + 6455503808, + 6455183136, + 6455184960, + 6455478800, + 6455471600, + 6455470928 ], "bases": [ { @@ -413731,25 +413731,25 @@ }, { "type_name": "google::protobuf::EnumValueDescriptorProto", - "vtable_address": 6463172208, + "vtable_address": 6463172240, "methods": [ - 6455453440, - 6455181760, - 6455478368, - 6455465872, - 6455473648, - 6455181808, - 6455178784, - 6455457360, - 6455470496, - 6455483904, + 6455453456, + 6455181776, + 6455478384, + 6455465888, + 6455473664, + 6455181824, + 6455178800, + 6455457376, + 6455470512, + 6455483920, 6443766512, - 6455504080, - 6455183120, - 6455184944, - 6455478800, - 6455471648, - 6455470928 + 6455504096, + 6455183136, + 6455184960, + 6455478816, + 6455471664, + 6455470944 ], "bases": [ { @@ -413792,25 +413792,25 @@ }, { "type_name": "google::protobuf::EnumValueOptions", - "vtable_address": 6463173360, + "vtable_address": 6463173392, "methods": [ - 6455453504, - 6455181760, - 6455478384, - 6455465984, - 6455473712, - 6455181808, - 6455178784, - 6455457696, - 6455470512, - 6455484480, + 6455453520, + 6455181776, + 6455478400, + 6455466000, + 6455473728, + 6455181824, + 6455178800, + 6455457712, + 6455470528, + 6455484496, 6443766512, - 6455504352, - 6455183120, - 6455184944, - 6455478816, - 6455471712, - 6455470944 + 6455504368, + 6455183136, + 6455184960, + 6455478832, + 6455471728, + 6455470960 ], "bases": [ { @@ -413853,25 +413853,25 @@ }, { "type_name": "google::protobuf::ExtensionRangeOptions", - "vtable_address": 6463171488, + "vtable_address": 6463171520, "methods": [ - 6455453568, - 6455181760, - 6455478400, - 6455466128, - 6455473776, - 6455181808, - 6455178784, - 6455457872, - 6455470528, - 6455485072, + 6455453584, + 6455181776, + 6455478416, + 6455466144, + 6455473792, + 6455181824, + 6455178800, + 6455457888, + 6455470544, + 6455485088, 6443766512, - 6455504592, - 6455183120, - 6455184944, - 6455478832, - 6455471776, - 6455470960 + 6455504608, + 6455183136, + 6455184960, + 6455478848, + 6455471792, + 6455470976 ], "bases": [ { @@ -413914,10 +413914,10 @@ }, { "type_name": "google::protobuf::FatalException", - "vtable_address": 6463175408, + "vtable_address": 6463175440, "methods": [ - 6455523648, - 6455527376 + 6455523664, + 6455527392 ], "bases": [ { @@ -413946,85 +413946,24 @@ }, { "type_name": "google::protobuf::FieldDescriptorProto", - "vtable_address": 6463171632, + "vtable_address": 6463171664, "methods": [ - 6455453632, - 6455181760, - 6455478416, - 6455466256, - 6455473840, - 6455181808, - 6455178784, - 6455458032, - 6455470544, - 6455485600, - 6443766512, - 6455504784, - 6455183120, - 6455184944, - 6455478848, - 6455471840, - 6455470976 - ], - "bases": [ - { - "type_name": "google::protobuf::Message", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 1 - } - } - }, - { - "type_name": "google::protobuf::MessageLite", - "details": { - "Msvc": { - "attributes": 64, - "displacement": { - "mdisp": 0, - "pdisp": -1, - "vdisp": 0 - }, - "num_contained_bases": 0 - } - } - } - ], - "model": { - "Msvc": { - "complete_object_locator": 6464565744, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "google::protobuf::FieldOptions", - "vtable_address": 6463172928, - "methods": [ - 6455453696, - 6455181760, + 6455453648, + 6455181776, 6455478432, - 6455466528, - 6455473904, - 6455181808, - 6455178784, - 6455458528, + 6455466272, + 6455473856, + 6455181824, + 6455178800, + 6455458048, 6455470560, - 6455487056, + 6455485616, 6443766512, - 6455505520, - 6455183120, - 6455184944, + 6455504800, + 6455183136, + 6455184960, 6455478864, - 6455471904, + 6455471856, 6455470992 ], "bases": [ @@ -414059,7 +413998,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464566832, + "complete_object_locator": 6464565744, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414067,25 +414006,25 @@ } }, { - "type_name": "google::protobuf::FileDescriptorProto", - "vtable_address": 6463170912, + "type_name": "google::protobuf::FieldOptions", + "vtable_address": 6463172960, "methods": [ - 6455453760, - 6455181760, + 6455453712, + 6455181776, 6455478448, - 6455466752, - 6455473968, - 6455181808, - 6455178784, - 6455458912, + 6455466544, + 6455473920, + 6455181824, + 6455178800, + 6455458544, 6455470576, - 6455488592, + 6455487072, 6443766512, - 6455506192, - 6455183120, - 6455184944, + 6455505536, + 6455183136, + 6455184960, 6455478880, - 6455471968, + 6455471920, 6455471008 ], "bases": [ @@ -414120,7 +414059,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464566560, + "complete_object_locator": 6464566832, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414128,25 +414067,25 @@ } }, { - "type_name": "google::protobuf::FileDescriptorSet", - "vtable_address": 6463170768, + "type_name": "google::protobuf::FileDescriptorProto", + "vtable_address": 6463170944, "methods": [ - 6455453824, - 6455181760, + 6455453776, + 6455181776, 6455478464, - 6455467216, - 6455474144, - 6455181808, - 6455178784, - 6455459856, + 6455466768, + 6455473984, + 6455181824, + 6455178800, + 6455458928, 6455470592, - 6455490192, + 6455488608, 6443766512, - 6455507168, - 6455183120, - 6455184944, + 6455506208, + 6455183136, + 6455184960, 6455478896, - 6455472032, + 6455471984, 6455471024 ], "bases": [ @@ -414181,7 +414120,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464568464, + "complete_object_locator": 6464566560, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414189,25 +414128,25 @@ } }, { - "type_name": "google::protobuf::FileOptions", - "vtable_address": 6463172640, + "type_name": "google::protobuf::FileDescriptorSet", + "vtable_address": 6463170800, "methods": [ - 6455453888, - 6455181760, + 6455453840, + 6455181776, 6455478480, - 6455467344, - 6455474368, - 6455181808, - 6455178784, - 6455460000, + 6455467232, + 6455474160, + 6455181824, + 6455178800, + 6455459872, 6455470608, - 6455490624, + 6455490208, 6443766512, - 6455507312, - 6455183120, - 6455184944, + 6455507184, + 6455183136, + 6455184960, 6455478912, - 6455472096, + 6455472048, 6455471040 ], "bases": [ @@ -414242,7 +414181,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464567784, + "complete_object_locator": 6464568464, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414250,25 +414189,25 @@ } }, { - "type_name": "google::protobuf::GeneratedCodeInfo", - "vtable_address": 6463174512, + "type_name": "google::protobuf::FileOptions", + "vtable_address": 6463172672, "methods": [ - 6455453952, - 6455181760, + 6455453904, + 6455181776, 6455478496, - 6455467888, - 6455474432, - 6455181808, - 6455178784, - 6455460912, + 6455467360, + 6455474384, + 6455181824, + 6455178800, + 6455460016, 6455470624, - 6455493184, + 6455490640, 6443766512, - 6455508544, - 6455183120, - 6455184944, + 6455507328, + 6455183136, + 6455184960, 6455478928, - 6455472160, + 6455472112, 6455471056 ], "bases": [ @@ -414303,7 +414242,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464568600, + "complete_object_locator": 6464567784, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414311,25 +414250,25 @@ } }, { - "type_name": "google::protobuf::GeneratedCodeInfo_Annotation", - "vtable_address": 6463174368, + "type_name": "google::protobuf::GeneratedCodeInfo", + "vtable_address": 6463174544, "methods": [ - 6455454016, - 6455181760, + 6455453968, + 6455181776, 6455478512, - 6455468096, + 6455467904, 6455474448, - 6455181808, - 6455178784, - 6455461296, + 6455181824, + 6455178800, + 6455460928, 6455470640, - 6455493616, + 6455493200, 6443766512, - 6455508688, - 6455183120, - 6455184944, + 6455508560, + 6455183136, + 6455184960, 6455478944, - 6455472224, + 6455472176, 6455471072 ], "bases": [ @@ -414364,24 +414303,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464568736, - "offset": 0, - "constructor_displacement": 0, - "class_attributes": 0 - } - } - }, - { - "type_name": "google::protobuf::MessageFactory", - "vtable_address": 6463150312, - "methods": [ - 6455177920, - 6459886716 - ], - "bases": [], - "model": { - "Msvc": { - "complete_object_locator": 6464561600, + "complete_object_locator": 6464568600, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414389,25 +414311,25 @@ } }, { - "type_name": "google::protobuf::MessageOptions", - "vtable_address": 6463172784, + "type_name": "google::protobuf::GeneratedCodeInfo_Annotation", + "vtable_address": 6463174400, "methods": [ - 6455454080, - 6455181760, + 6455454032, + 6455181776, 6455478528, - 6455468192, + 6455468112, 6455474464, - 6455181808, - 6455178784, - 6455461520, + 6455181824, + 6455178800, + 6455461312, 6455470656, - 6455494368, + 6455493632, 6443766512, - 6455509248, - 6455183120, - 6455184944, + 6455508704, + 6455183136, + 6455184960, 6455478960, - 6455472288, + 6455472240, 6455471088 ], "bases": [ @@ -414442,7 +414364,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464566696, + "complete_object_locator": 6464568736, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414450,25 +414372,42 @@ } }, { - "type_name": "google::protobuf::MethodDescriptorProto", - "vtable_address": 6463172496, + "type_name": "google::protobuf::MessageFactory", + "vtable_address": 6463150344, + "methods": [ + 6455177936, + 6459886732 + ], + "bases": [], + "model": { + "Msvc": { + "complete_object_locator": 6464561600, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "google::protobuf::MessageOptions", + "vtable_address": 6463172816, "methods": [ - 6455454144, - 6455181760, + 6455454096, + 6455181776, 6455478544, - 6455468336, - 6455474528, - 6455181808, - 6455178784, - 6455461728, + 6455468208, + 6455474480, + 6455181824, + 6455178800, + 6455461536, 6455470672, - 6455495328, + 6455494384, 6443766512, - 6455509616, - 6455183120, - 6455184944, + 6455509264, + 6455183136, + 6455184960, 6455478976, - 6455472352, + 6455472304, 6455471104 ], "bases": [ @@ -414503,7 +414442,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464566424, + "complete_object_locator": 6464566696, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414511,25 +414450,25 @@ } }, { - "type_name": "google::protobuf::MethodOptions", - "vtable_address": 6463173648, + "type_name": "google::protobuf::MethodDescriptorProto", + "vtable_address": 6463172528, "methods": [ - 6455454208, - 6455181760, + 6455454160, + 6455181776, 6455478560, - 6455468496, - 6455474592, - 6455181808, - 6455178784, - 6455462192, + 6455468352, + 6455474544, + 6455181824, + 6455178800, + 6455461744, 6455470688, - 6455496144, + 6455495344, 6443766512, - 6455509920, - 6455183120, - 6455184944, + 6455509632, + 6455183136, + 6455184960, 6455478992, - 6455472416, + 6455472368, 6455471120 ], "bases": [ @@ -414564,7 +414503,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464567648, + "complete_object_locator": 6464566424, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414572,25 +414511,25 @@ } }, { - "type_name": "google::protobuf::OneofDescriptorProto", - "vtable_address": 6463171776, + "type_name": "google::protobuf::MethodOptions", + "vtable_address": 6463173680, "methods": [ - 6455454272, - 6455181760, + 6455454224, + 6455181776, 6455478576, - 6455468640, - 6455474656, - 6455181808, - 6455178784, - 6455462416, + 6455468512, + 6455474608, + 6455181824, + 6455178800, + 6455462208, 6455470704, - 6455496928, + 6455496160, 6443766512, - 6455510256, - 6455183120, - 6455184944, + 6455509936, + 6455183136, + 6455184960, 6455479008, - 6455472480, + 6455472432, 6455471136 ], "bases": [ @@ -414625,7 +414564,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464565880, + "complete_object_locator": 6464567648, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414633,25 +414572,25 @@ } }, { - "type_name": "google::protobuf::OneofOptions", - "vtable_address": 6463173072, + "type_name": "google::protobuf::OneofDescriptorProto", + "vtable_address": 6463171808, "methods": [ - 6455454336, - 6455181760, + 6455454288, + 6455181776, 6455478592, - 6455468736, - 6455474720, - 6455181808, - 6455178784, - 6455462720, + 6455468656, + 6455474672, + 6455181824, + 6455178800, + 6455462432, 6455470720, - 6455497392, + 6455496944, 6443766512, - 6455510416, - 6455183120, - 6455184944, + 6455510272, + 6455183136, + 6455184960, 6455479024, - 6455472544, + 6455472496, 6455471152 ], "bases": [ @@ -414686,7 +414625,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464566968, + "complete_object_locator": 6464565880, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414694,25 +414633,25 @@ } }, { - "type_name": "google::protobuf::ServiceDescriptorProto", - "vtable_address": 6463172352, + "type_name": "google::protobuf::OneofOptions", + "vtable_address": 6463173104, "methods": [ - 6455454400, - 6455181760, + 6455454352, + 6455181776, 6455478608, - 6455468864, - 6455474784, - 6455181808, - 6455178784, - 6455462880, + 6455468752, + 6455474736, + 6455181824, + 6455178800, + 6455462736, 6455470736, - 6455497920, + 6455497408, 6443766512, - 6455510608, - 6455183120, - 6455184944, + 6455510432, + 6455183136, + 6455184960, 6455479040, - 6455472608, + 6455472560, 6455471168 ], "bases": [ @@ -414747,7 +414686,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464566288, + "complete_object_locator": 6464566968, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414755,25 +414694,25 @@ } }, { - "type_name": "google::protobuf::ServiceOptions", - "vtable_address": 6463173504, + "type_name": "google::protobuf::ServiceDescriptorProto", + "vtable_address": 6463172384, "methods": [ - 6455454464, - 6455181760, + 6455454416, + 6455181776, 6455478624, - 6455469056, - 6455474960, - 6455181808, - 6455178784, - 6455463264, + 6455468880, + 6455474800, + 6455181824, + 6455178800, + 6455462896, 6455470752, - 6455498496, + 6455497936, 6443766512, - 6455510816, - 6455183120, - 6455184944, + 6455510624, + 6455183136, + 6455184960, 6455479056, - 6455472672, + 6455472624, 6455471184 ], "bases": [ @@ -414808,7 +414747,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464567512, + "complete_object_locator": 6464566288, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414816,25 +414755,25 @@ } }, { - "type_name": "google::protobuf::SourceCodeInfo", - "vtable_address": 6463174224, + "type_name": "google::protobuf::ServiceOptions", + "vtable_address": 6463173536, "methods": [ - 6455454528, - 6455181760, + 6455454480, + 6455181776, 6455478640, - 6455469200, - 6455475024, - 6455181808, - 6455178784, - 6455463440, + 6455469072, + 6455474976, + 6455181824, + 6455178800, + 6455463280, 6455470768, - 6455499088, + 6455498512, 6443766512, - 6455511056, - 6455183120, - 6455184944, + 6455510832, + 6455183136, + 6455184960, 6455479072, - 6455472736, + 6455472688, 6455471200 ], "bases": [ @@ -414869,7 +414808,7 @@ ], "model": { "Msvc": { - "complete_object_locator": 6464568056, + "complete_object_locator": 6464567512, "offset": 0, "constructor_displacement": 0, "class_attributes": 0 @@ -414877,25 +414816,25 @@ } }, { - "type_name": "google::protobuf::SourceCodeInfo_Location", - "vtable_address": 6463174080, + "type_name": "google::protobuf::SourceCodeInfo", + "vtable_address": 6463174256, "methods": [ - 6455454592, - 6455181760, + 6455454544, + 6455181776, 6455478656, - 6455469328, + 6455469216, 6455475040, - 6455181808, - 6455178784, - 6455463584, + 6455181824, + 6455178800, + 6455463456, 6455470784, - 6455499520, + 6455499104, 6443766512, - 6455511200, - 6455183120, - 6455184944, + 6455511072, + 6455183136, + 6455184960, 6455479088, - 6455472800, + 6455472752, 6455471216 ], "bases": [ @@ -414928,6 +414867,67 @@ } } ], + "model": { + "Msvc": { + "complete_object_locator": 6464568056, + "offset": 0, + "constructor_displacement": 0, + "class_attributes": 0 + } + } + }, + { + "type_name": "google::protobuf::SourceCodeInfo_Location", + "vtable_address": 6463174112, + "methods": [ + 6455454608, + 6455181776, + 6455478672, + 6455469344, + 6455475056, + 6455181824, + 6455178800, + 6455463600, + 6455470800, + 6455499536, + 6443766512, + 6455511216, + 6455183136, + 6455184960, + 6455479104, + 6455472816, + 6455471232 + ], + "bases": [ + { + "type_name": "google::protobuf::Message", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 1 + } + } + }, + { + "type_name": "google::protobuf::MessageLite", + "details": { + "Msvc": { + "attributes": 64, + "displacement": { + "mdisp": 0, + "pdisp": -1, + "vdisp": 0 + }, + "num_contained_bases": 0 + } + } + } + ], "model": { "Msvc": { "complete_object_locator": 6464568872, @@ -414939,13 +414939,13 @@ }, { "type_name": "google::protobuf::TextFormat::BaseTextGenerator", - "vtable_address": 6463154016, + "vtable_address": 6463154048, "methods": [ - 6455260688, - 6455286176, - 6455287328, - 6455285776, - 6459886716 + 6455260704, + 6455286192, + 6455287344, + 6455285792, + 6459886732 ], "bases": [], "model": { @@ -414959,24 +414959,24 @@ }, { "type_name": "google::protobuf::TextFormat::FastFieldValuePrinter", - "vtable_address": 6463154064, - "methods": [ - 6455260784, - 6455290672, - 6455295552, - 6455296688, - 6455295792, - 6455296928, - 6455295200, + "vtable_address": 6463154096, + "methods": [ + 6455260800, + 6455290688, + 6455295568, + 6455296704, + 6455295808, + 6455296944, + 6455295216, + 6455290752, + 6455296304, 6455290736, - 6455296288, - 6455290720, - 6455291088, - 6455292336, - 6455292304, - 6455296240, - 6455296032, - 6455296048 + 6455291104, + 6455292352, + 6455292320, + 6455296256, + 6455296048, + 6455296064 ], "bases": [], "model": { @@ -414990,13 +414990,13 @@ }, { "type_name": "google::protobuf::TextFormat::Finder", - "vtable_address": 6463154200, + "vtable_address": 6463154232, "methods": [ - 6455260832, - 6455285696, - 6455285744, - 6455285664, - 6455285760 + 6455260848, + 6455285712, + 6455285760, + 6455285680, + 6455285776 ], "bases": [], "model": { @@ -415010,11 +415010,11 @@ }, { "type_name": "google::protobuf::TextFormat::Parser::ParserImpl::ParserErrorCollector", - "vtable_address": 6463155216, + "vtable_address": 6463155248, "methods": [ - 6455260880, - 6455261040, - 6455261056 + 6455260896, + 6455261056, + 6455261072 ], "bases": [ { @@ -415043,24 +415043,24 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::DebugStringFieldValuePrinter", - "vtable_address": 6463156616, - "methods": [ - 6455260736, - 6455290672, - 6455295552, - 6455296688, - 6455295792, - 6455296928, - 6455295200, + "vtable_address": 6463156648, + "methods": [ + 6455260752, + 6455290688, + 6455295568, + 6455296704, + 6455295808, + 6455296944, + 6455295216, + 6455290752, + 6455296304, 6455290736, - 6455296288, - 6455290720, - 6455291088, - 6455292336, - 6455292304, - 6455296096, - 6455296032, - 6455296048 + 6455291104, + 6455292352, + 6455292320, + 6455296112, + 6455296048, + 6455296064 ], "bases": [ { @@ -415089,13 +415089,13 @@ }, { "type_name": "google::protobuf::TextFormat::Printer::TextGenerator", - "vtable_address": 6463156528, + "vtable_address": 6463156560, "methods": [ - 6455260944, - 6455286192, - 6455287344, - 6455285792, - 6455288864 + 6455260960, + 6455286208, + 6455287360, + 6455285808, + 6455288880 ], "bases": [ { @@ -415124,25 +415124,25 @@ }, { "type_name": "google::protobuf::UninterpretedOption", - "vtable_address": 6463173936, + "vtable_address": 6463173968, "methods": [ - 6455454656, - 6455181760, - 6455478672, - 6455469472, - 6455475056, - 6455181808, - 6455178784, - 6455463936, - 6455470800, - 6455500272, + 6455454672, + 6455181776, + 6455478688, + 6455469488, + 6455475072, + 6455181824, + 6455178800, + 6455463952, + 6455470816, + 6455500288, 6443766512, - 6455511904, - 6455183120, - 6455184944, - 6455479104, - 6455472864, - 6455471232 + 6455511920, + 6455183136, + 6455184960, + 6455479120, + 6455472880, + 6455471248 ], "bases": [ { @@ -415185,25 +415185,25 @@ }, { "type_name": "google::protobuf::UninterpretedOption_NamePart", - "vtable_address": 6463173792, + "vtable_address": 6463173824, "methods": [ - 6455454720, - 6455181760, - 6455478688, - 6455469776, - 6455475120, - 6455181808, - 6455178784, - 6455464448, - 6455470816, - 6455501168, + 6455454736, + 6455181776, + 6455478704, + 6455469792, + 6455475136, + 6455181824, + 6455178800, + 6455464464, + 6455470832, + 6455501184, 6443766512, - 6455512400, - 6455183120, - 6455184944, - 6455479120, - 6455472928, - 6455471248 + 6455512416, + 6455183136, + 6455184960, + 6455479136, + 6455472944, + 6455471264 ], "bases": [ { @@ -415246,13 +415246,13 @@ }, { "type_name": "google::protobuf::ZeroCopyCodedInputStream", - "vtable_address": 6463152960, + "vtable_address": 6463152992, "methods": [ - 6455191328, - 6455193344, - 6455192112, - 6455195408, - 6455192128 + 6455191344, + 6455193360, + 6455192128, + 6455195424, + 6455192144 ], "bases": [ { @@ -415281,11 +415281,11 @@ }, { "type_name": "google::protobuf::`anonymous namespace'::AggregateErrorCollector", - "vtable_address": 6463186752, + "vtable_address": 6463186784, "methods": [ - 6455592304, - 6455592624, - 6455606064 + 6455592320, + 6455592640, + 6455606080 ], "bases": [ { @@ -415314,10 +415314,10 @@ }, { "type_name": "google::protobuf::`anonymous namespace'::GeneratedMessageFactory", - "vtable_address": 6463151192, + "vtable_address": 6463151224, "methods": [ - 6455177776, - 6455180784 + 6455177792, + 6455180800 ], "bases": [ { @@ -415346,31 +415346,31 @@ }, { "type_name": "google::protobuf::internal::DynamicMapField", - "vtable_address": 6463191552, - "methods": [ - 6455835168, - 6455837648, - 6455838496, + "vtable_address": 6463191584, + "methods": [ + 6455835184, + 6455837664, + 6455838512, + 6455836032, + 6455836304, + 6455838608, + 6455838800, + 6455838864, + 6455843936, + 6455851536, + 6455854784, + 6455834752, + 6455843488, + 6455848176, + 6455844624, + 6455837472, 6455836016, - 6455836288, - 6455838592, - 6455838784, - 6455838848, - 6455843920, - 6455851520, - 6455854768, - 6455834736, - 6455843472, - 6455848160, - 6455844608, - 6455837456, - 6455836000, - 6455835232, - 6455837392, - 6455837264, - 6455842400, - 6455843216, - 6455833952 + 6455835248, + 6455837408, + 6455837280, + 6455842416, + 6455843232, + 6455833968 ], "bases": [ { @@ -415413,20 +415413,20 @@ }, { "type_name": "google::protobuf::internal::ImplicitWeakMessage", - "vtable_address": 6463153704, + "vtable_address": 6463153736, "methods": [ - 6455243776, - 6455244464, + 6455243792, + 6455244480, + 6455244800, + 6455244176, 6455244784, - 6455244160, - 6455244768, - 6455192944, + 6455192960, + 6455244128, 6455244112, - 6455244096, - 6455244448, - 6455857200, + 6455244464, + 6455857216, 6443766512, - 6455245056 + 6455245072 ], "bases": [ { @@ -415455,28 +415455,28 @@ }, { "type_name": "google::protobuf::internal::MapFieldAccessor", - "vtable_address": 6463150336, - "methods": [ - 6455182976, - 6455184912, - 6455180704, - 6455178944, - 6455184704, - 6455178496, - 6455183520, - 6455187520, - 6455186352, + "vtable_address": 6463150368, + "methods": [ + 6455182992, + 6455184928, + 6455180720, + 6455178960, + 6455184720, + 6455178512, + 6455183536, + 6455187536, + 6455186368, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455177872, - 6455183248, - 6455179152, - 6455178992 + 6455180752, + 6455177888, + 6455183264, + 6455179168, + 6455179008 ], "bases": [ { @@ -415519,27 +415519,27 @@ }, { "type_name": "google::protobuf::internal::MapFieldBase", - "vtable_address": 6463191392, - "methods": [ - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6459886716, - 6455844000, - 6455851536, - 6459886716, - 6459886716, - 6455843904, - 6455849856, - 6455847888, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + "vtable_address": 6463191424, + "methods": [ + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6459886732, + 6455844016, + 6455851552, + 6459886732, + 6459886732, + 6455843920, + 6455849872, + 6455847904, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -415553,26 +415553,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6463152328, + "vtable_address": 6463152360, "methods": [ - 6455182928, - 6455184864, - 6455180496, - 6455178896, - 6455184512, - 6455178256, - 6455183456, - 6455187440, - 6455186048, + 6455182944, + 6455184880, + 6455180512, + 6455178912, + 6455184528, + 6455178272, + 6455183472, + 6455187456, + 6455186064, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455179264, - 6455179104 + 6455180752, + 6455179280, + 6455179120 ], "bases": [ { @@ -415629,26 +415629,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6463152176, + "vtable_address": 6463152208, "methods": [ - 6455182880, - 6455184816, - 6455180256, - 6455178848, - 6455184320, - 6455178112, - 6455183408, - 6455187392, - 6455185520, + 6455182896, + 6455184832, + 6455180272, + 6455178864, + 6455184336, + 6455178128, + 6455183424, + 6455187408, + 6455185536, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455179216, - 6455179056 + 6455180752, + 6455179232, + 6455179072 ], "bases": [ { @@ -415705,26 +415705,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6463152024, + "vtable_address": 6463152056, "methods": [ - 6455182864, - 6455184800, - 6455180176, - 6455178832, - 6455184256, - 6455178064, - 6455183392, - 6455187376, - 6455185344, + 6455182880, + 6455184816, + 6455180192, + 6455178848, + 6455184272, + 6455178080, + 6455183408, + 6455187392, + 6455185360, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455179200, - 6455179040 + 6455180752, + 6455179216, + 6455179056 ], "bases": [ { @@ -415781,26 +415781,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6463151720, + "vtable_address": 6463151752, "methods": [ - 6455182896, - 6455184832, - 6455180336, - 6455178864, - 6455184384, - 6455178160, - 6455183424, - 6455187408, - 6455185696, + 6455182912, + 6455184848, + 6455180352, + 6455178880, + 6455184400, + 6455178176, + 6455183440, + 6455187424, + 6455185712, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455179232, - 6455179072 + 6455180752, + 6455179248, + 6455179088 ], "bases": [ { @@ -415857,26 +415857,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6463151416, + "vtable_address": 6463151448, "methods": [ - 6455182832, - 6455184768, - 6455180016, - 6455178800, - 6455184128, - 6455177968, - 6455183360, - 6455187344, - 6455184992, + 6455182848, + 6455184784, + 6455180032, + 6455178816, + 6455184144, + 6455177984, + 6455183376, + 6455187360, + 6455185008, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455179168, - 6455179008 + 6455180752, + 6455179184, + 6455179024 ], "bases": [ { @@ -415933,26 +415933,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6463151872, + "vtable_address": 6463151904, "methods": [ - 6455182912, - 6455184848, - 6455180416, - 6455178880, - 6455184448, - 6455178208, - 6455183440, - 6455187424, - 6455185872, + 6455182928, + 6455184864, + 6455180432, + 6455178896, + 6455184464, + 6455178224, + 6455183456, + 6455187440, + 6455185888, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455179248, - 6455179088 + 6455180752, + 6455179264, + 6455179104 ], "bases": [ { @@ -416009,26 +416009,26 @@ }, { "type_name": "google::protobuf::internal::RepeatedFieldPrimitiveAccessor", - "vtable_address": 6463151568, + "vtable_address": 6463151600, "methods": [ - 6455182848, - 6455184784, - 6455180096, - 6455178816, - 6455184192, - 6455178016, - 6455183376, - 6455187360, - 6455185168, + 6455182864, + 6455184800, + 6455180112, + 6455178832, + 6455184208, + 6455178032, + 6455183392, + 6455187376, + 6455185184, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455179184, - 6455179024 + 6455180752, + 6455179200, + 6455179040 ], "bases": [ { @@ -416085,27 +416085,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldMessageAccessor", - "vtable_address": 6463150800, + "vtable_address": 6463150832, "methods": [ - 6455182960, - 6455184896, - 6455180656, - 6455178928, - 6455184656, - 6455178400, - 6455183488, - 6455187472, - 6455186544, + 6455182976, + 6455184912, + 6455180672, + 6455178944, + 6455184672, + 6455178416, + 6455183504, + 6455187488, + 6455186560, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455183264, - 6455179280, - 6455179120 + 6455180752, + 6455183280, + 6455179296, + 6455179136 ], "bases": [ { @@ -416162,27 +416162,27 @@ }, { "type_name": "google::protobuf::internal::RepeatedPtrFieldStringAccessor", - "vtable_address": 6463150640, + "vtable_address": 6463150672, "methods": [ - 6455182944, - 6455184880, - 6455180576, - 6455178912, - 6455184576, - 6455178304, - 6455183472, - 6455187456, - 6455186720, + 6455182960, + 6455184896, + 6455180592, + 6455178928, + 6455184592, + 6455178320, + 6455183488, + 6455187472, + 6455186736, + 6455178736, + 6455179840, + 6455179744, 6455178720, + 6455179872, 6455179824, - 6455179728, - 6455178704, - 6455179856, - 6455179808, - 6455180736, - 6455183280, - 6455179296, - 6455179136 + 6455180752, + 6455183296, + 6455179312, + 6455179152 ], "bases": [ { @@ -416239,24 +416239,24 @@ }, { "type_name": "google::protobuf::internal::ZeroFieldsBase", - "vtable_address": 6461506448, + "vtable_address": 6461506432, "methods": [ 6447960384, - 6455181760, - 6459886716, + 6455181776, + 6459886732, + 6455430064, + 6447161840, + 6455181824, + 6455178800, 6455430048, - 6447162064, - 6455181808, - 6455178784, - 6455430032, 6447162080, - 6455430176, + 6455430192, 6443766512, - 6455430496, - 6455183120, - 6455184944, + 6455430512, + 6455183136, + 6455184960, 6447162096, - 6459886716, + 6459886732, 6447061360 ], "bases": [ @@ -416300,13 +416300,13 @@ }, { "type_name": "google::protobuf::io::ArrayInputStream", - "vtable_address": 6463192504, + "vtable_address": 6463192536, "methods": [ - 6455855568, - 6455856672, - 6455855664, - 6455857008, - 6455856496 + 6455855584, + 6455856688, + 6455855680, + 6455857024, + 6455856512 ], "bases": [ { @@ -416335,11 +416335,11 @@ }, { "type_name": "google::protobuf::io::ErrorCollector", - "vtable_address": 6463139520, + "vtable_address": 6463139552, "methods": [ - 6455098864, - 6459886716, - 6455099184 + 6455098880, + 6459886732, + 6455099200 ], "bases": [], "model": { @@ -416353,14 +416353,14 @@ }, { "type_name": "google::protobuf::io::StringOutputStream", - "vtable_address": 6463192552, + "vtable_address": 6463192584, "methods": [ - 6455855616, - 6455856752, - 6455856032, - 6455856512, - 6455855376, - 6455191472 + 6455855632, + 6455856768, + 6455856048, + 6455856528, + 6455855392, + 6455191488 ], "bases": [ { @@ -416389,13 +416389,13 @@ }, { "type_name": "google::protobuf::io::ZeroCopyInputStream", - "vtable_address": 6463152608, + "vtable_address": 6463152640, "methods": [ - 6455191376, - 6459886716, - 6459886716, - 6459886716, - 6459886716 + 6455191392, + 6459886732, + 6459886732, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -416409,14 +416409,14 @@ }, { "type_name": "google::protobuf::io::ZeroCopyOutputStream", - "vtable_address": 6463152656, + "vtable_address": 6463152688, "methods": [ - 6455191424, - 6459886716, - 6459886716, - 6459886716, - 6455855376, - 6455191472 + 6455191440, + 6459886732, + 6459886732, + 6459886732, + 6455855392, + 6455191488 ], "bases": [], "model": { @@ -416430,7 +416430,7 @@ }, { "type_name": "locksound_t", - "vtable_address": 6461160296, + "vtable_address": 6461160264, "methods": [ 6446839200 ], @@ -416448,10 +416448,10 @@ "type_name": "pDNameNode", "vtable_address": 6463726528, "methods": [ - 6459941088, - 6459941496, - 6459926600, - 6459933944 + 6459941104, + 6459941512, + 6459926616, + 6459933960 ], "bases": [ { @@ -416482,10 +416482,10 @@ "type_name": "pairNode", "vtable_address": 6463726608, "methods": [ - 6459941128, - 6459941500, - 6459926644, - 6459933992 + 6459941144, + 6459941516, + 6459926660, + 6459934008 ], "bases": [ { @@ -416516,10 +416516,10 @@ "type_name": "pcharNode", "vtable_address": 6463726488, "methods": [ - 6459941200, - 6459941504, - 6459926700, - 6459934068 + 6459941216, + 6459941520, + 6459926716, + 6459934084 ], "bases": [ { @@ -416550,13 +416550,13 @@ "type_name": "rcContext", "vtable_address": 6463626840, "methods": [ - 6458616192, - 6458635424, - 6458635392, + 6458616208, 6458635440, + 6458635408, 6458635456, 6458635472, - 6458635376 + 6458635488, + 6458635392 ], "bases": [], "model": { @@ -416570,7 +416570,7 @@ }, { "type_name": "shard_model_desc_t", - "vtable_address": 6462554176, + "vtable_address": 6462554208, "methods": [ 6452521984, 6452487888, @@ -416590,7 +416590,7 @@ }, { "type_name": "sky3dparams_t", - "vtable_address": 6462373808, + "vtable_address": 6462373840, "methods": [ 6451893808, 6451859744, @@ -416609,7 +416609,7 @@ }, { "type_name": "sky3dparams_t::NetworkVar_fog", - "vtable_address": 6462373768, + "vtable_address": 6462373800, "methods": [ 6445738240, 6451849696, @@ -416643,7 +416643,7 @@ }, { "type_name": "sndopvarlatchdata_t", - "vtable_address": 6461143808, + "vtable_address": 6461143784, "methods": [ 6446839248, 6446823104, @@ -416662,11 +416662,11 @@ }, { "type_name": "std::_Facet_base", - "vtable_address": 6463175152, + "vtable_address": 6463175184, "methods": [ - 6455523808, - 6459886716, - 6459886716 + 6455523824, + 6459886732, + 6459886732 ], "bases": [], "model": { @@ -416716,14 +416716,14 @@ }, { "type_name": "std::_Func_impl_no_alloc >::,class CPulseValueFullType>", - "vtable_address": 6463128136, + "vtable_address": 6463128168, "methods": [ - 6455023760, 6455023776, 6455023792, - 6455023856, - 6455023888, - 6455023872 + 6455023808, + 6455023872, + 6455023904, + 6455023888 ], "bases": [ { @@ -416752,14 +416752,14 @@ }, { "type_name": "std::_Func_impl_no_alloc >::,unsigned int>", - "vtable_address": 6463128192, + "vtable_address": 6463128224, "methods": [ - 6455023904, 6455023920, 6455023936, 6455023952, - 6455023984, - 6455023968 + 6455023968, + 6455024000, + 6455023984 ], "bases": [ { @@ -416788,14 +416788,14 @@ }, { "type_name": "std::_Func_impl_no_alloc >::,class CPulseValueFullType>", - "vtable_address": 6463128248, + "vtable_address": 6463128280, "methods": [ - 6455024000, 6455024016, 6455024032, - 6455024096, - 6455024128, - 6455024112 + 6455024048, + 6455024112, + 6455024144, + 6455024128 ], "bases": [ { @@ -416824,14 +416824,14 @@ }, { "type_name": "std::_Func_impl_no_alloc >::,unsigned int>", - "vtable_address": 6463128304, + "vtable_address": 6463128336, "methods": [ - 6455024144, 6455024160, 6455024176, 6455024192, - 6455024224, - 6455024208 + 6455024208, + 6455024240, + 6455024224 ], "bases": [ { @@ -417004,14 +417004,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461175576, + "vtable_address": 6461175624, "methods": [ - 6446846864, - 6446846880, - 6446846896, + 6446846928, 6446846944, - 6446846976, - 6446846960 + 6446846960, + 6446847008, + 6446847040, + 6446847024 ], "bases": [ { @@ -417040,14 +417040,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461175888, + "vtable_address": 6461175936, "methods": [ - 6446846992, - 6446847008, - 6446847024, - 6446847040, + 6446847056, 6446847072, - 6446847056 + 6446847088, + 6446847104, + 6446847136, + 6446847120 ], "bases": [ { @@ -417076,14 +417076,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461193720, + "vtable_address": 6461193768, "methods": [ - 6446856624, - 6446856640, - 6446856656, + 6446856688, 6446856704, - 6446856736, - 6446856720 + 6446856720, + 6446856768, + 6446856800, + 6446856784 ], "bases": [ { @@ -417112,14 +417112,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461193824, + "vtable_address": 6461193872, "methods": [ - 6446857248, - 6446857264, - 6446857280, 6446857312, + 6446857328, 6446857344, - 6446857328 + 6446857376, + 6446857408, + 6446857392 ], "bases": [ { @@ -417148,14 +417148,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461193912, + "vtable_address": 6461193960, "methods": [ - 6446858080, - 6446858096, - 6446858112, + 6446858144, 6446858160, - 6446858192, - 6446858176 + 6446858176, + 6446858224, + 6446858256, + 6446858240 ], "bases": [ { @@ -417184,14 +417184,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461173832, + "vtable_address": 6461173880, "methods": [ - 6446858320, - 6446858336, - 6446858352, 6446858384, + 6446858400, 6446846320, - 6446858400 + 6446846352, + 6446846384, + 6446846368 ], "bases": [ { @@ -417220,7 +417220,7 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6462917768, + "vtable_address": 6462917784, "methods": [ 6453639280, 6453639296, @@ -417256,7 +417256,7 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6462917824, + "vtable_address": 6462917840, "methods": [ 6453639616, 6453639632, @@ -417292,14 +417292,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6463127912, + "vtable_address": 6463127944, "methods": [ - 6455023296, 6455023312, 6455023328, - 6455023376, - 6455023408, - 6455023392 + 6455023344, + 6455023392, + 6455023424, + 6455023408 ], "bases": [ { @@ -417328,14 +417328,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6463127968, + "vtable_address": 6463128000, "methods": [ - 6455023424, 6455023440, 6455023456, - 6455023488, - 6455023520, - 6455023504 + 6455023472, + 6455023504, + 6455023536, + 6455023520 ], "bases": [ { @@ -417364,14 +417364,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461175944, + "vtable_address": 6461175992, "methods": [ - 6446847088, - 6446847104, - 6446847120, + 6446847152, 6446847168, - 6446847200, - 6446847184 + 6446847184, + 6446847232, + 6446847264, + 6446847248 ], "bases": [ { @@ -417400,14 +417400,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461176016, + "vtable_address": 6461176064, "methods": [ - 6446847216, - 6446847232, - 6446847248, 6446847280, + 6446847296, 6446847312, - 6446847296 + 6446847344, + 6446847376, + 6446847360 ], "bases": [ { @@ -417508,14 +417508,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461176424, + "vtable_address": 6461176472, "methods": [ - 6446849360, - 6446849376, - 6446849392, + 6446849424, 6446849440, - 6446849472, - 6446849456 + 6446849456, + 6446849504, + 6446849536, + 6446849520 ], "bases": [ { @@ -417544,14 +417544,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461176480, + "vtable_address": 6461176528, "methods": [ - 6446849488, - 6446849504, - 6446849520, 6446849552, + 6446849568, 6446849584, - 6446849568 + 6446849616, + 6446849648, + 6446849632 ], "bases": [ { @@ -417616,7 +417616,7 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6460589096, + "vtable_address": 6460589120, "methods": [ 6444076592, 6444076608, @@ -417652,14 +417652,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461176160, + "vtable_address": 6461176208, "methods": [ - 6446847568, - 6446847584, - 6446847600, + 6446847632, 6446847648, - 6446847680, - 6446847664 + 6446847664, + 6446847712, + 6446847744, + 6446847728 ], "bases": [ { @@ -417688,14 +417688,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461176216, + "vtable_address": 6461176264, "methods": [ - 6446848128, - 6446848144, - 6446848160, 6446848192, + 6446848208, 6446848224, - 6446848208 + 6446848256, + 6446848288, + 6446848272 ], "bases": [ { @@ -417724,14 +417724,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461176272, + "vtable_address": 6461176320, "methods": [ - 6446848240, - 6446848256, - 6446848272, + 6446848304, 6446848320, - 6446848352, - 6446848336 + 6446848336, + 6446848384, + 6446848416, + 6446848400 ], "bases": [ { @@ -417760,14 +417760,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461176336, + "vtable_address": 6461176384, "methods": [ - 6446848672, - 6446848688, - 6446848704, 6446848736, + 6446848752, 6446848768, - 6446848752 + 6446848800, + 6446848832, + 6446848816 ], "bases": [ { @@ -417796,14 +417796,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461173920, + "vtable_address": 6461173968, "methods": [ - 6446846384, - 6446846400, - 6446846416, + 6446846448, 6446846464, - 6446846496, - 6446846480 + 6446846480, + 6446846528, + 6446846560, + 6446846544 ], "bases": [ { @@ -417832,14 +417832,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461174016, + "vtable_address": 6461174064, "methods": [ - 6446846512, - 6446846528, - 6446846544, 6446846576, + 6446846592, 6446846608, - 6446846592 + 6446846640, + 6446846672, + 6446846656 ], "bases": [ { @@ -417868,14 +417868,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461174152, + "vtable_address": 6461174200, "methods": [ - 6446846624, - 6446846640, - 6446846656, + 6446846688, 6446846704, - 6446846736, - 6446846720 + 6446846720, + 6446846768, + 6446846800, + 6446846784 ], "bases": [ { @@ -417904,14 +417904,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461175032, + "vtable_address": 6461175080, "methods": [ - 6446846752, - 6446846768, - 6446846784, 6446846816, + 6446846832, 6446846848, - 6446846832 + 6446846880, + 6446846912, + 6446846896 ], "bases": [ { @@ -417940,7 +417940,7 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6461235776, + "vtable_address": 6461235888, "methods": [ 6446914528, 6446914544, @@ -417976,7 +417976,7 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6461235832, + "vtable_address": 6461235944, "methods": [ 6446915680, 6446915696, @@ -418012,14 +418012,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,class CPulseValueFullType>", - "vtable_address": 6463128024, + "vtable_address": 6463128056, "methods": [ - 6455023536, 6455023552, 6455023568, - 6455023616, - 6455023648, - 6455023632 + 6455023584, + 6455023632, + 6455023664, + 6455023648 ], "bases": [ { @@ -418048,14 +418048,14 @@ }, { "type_name": "std::_Func_impl_no_alloc::,unsigned int>", - "vtable_address": 6463128080, + "vtable_address": 6463128112, "methods": [ - 6455023664, 6455023680, 6455023696, 6455023712, - 6455023744, - 6455023728 + 6455023728, + 6455023760, + 6455023744 ], "bases": [ { @@ -418156,14 +418156,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class CNavArea const *,class Vec3D const &,struct NavHull_t,struct NavTraceResult_t *,class CNavTestRayParams *,class std::function const &,class Vec3D const &,bool)> *)'::`2'::,bool,class CNavArea const *,struct NavAreaAdj_t const *,class Vec3D const &,class Vec3D const &,bool>", - "vtable_address": 6463124568, + "vtable_address": 6463124600, "methods": [ - 6455016496, - 6455022688, - 6455017440, - 6455023120, - 6455016928, - 6455021072 + 6455016512, + 6455022704, + 6455017456, + 6455023136, + 6455016944, + 6455021088 ], "bases": [ { @@ -418192,14 +418192,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463124512, + "vtable_address": 6463124544, "methods": [ - 6455016432, - 6455022624, - 6455017408, - 6455023088, - 6455016896, - 6455021040 + 6455016448, + 6455022640, + 6455017424, + 6455023104, + 6455016912, + 6455021056 ], "bases": [ { @@ -418228,14 +418228,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class CNavArea &,class Vec2D const &,class CNavPathCost const &)'::`2'::,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463124624, + "vtable_address": 6463124656, "methods": [ - 6455016368, - 6455022560, - 6455017136, - 6455023056, - 6455016864, - 6455021008 + 6455016384, + 6455022576, + 6455017152, + 6455023072, + 6455016880, + 6455021024 ], "bases": [ { @@ -418264,14 +418264,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463104208, + "vtable_address": 6463104240, "methods": [ - 6454515552, - 6454522304, - 6454517840, - 6454522880, - 6454516512, - 6454520624 + 6454515568, + 6454522320, + 6454517856, + 6454522896, + 6454516528, + 6454520640 ], "bases": [ { @@ -418300,14 +418300,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec2D const &,float,class CNavPathCost const &,class CUtlVectorFixedGrowable *)'::`2'::,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463124680, + "vtable_address": 6463124712, "methods": [ - 6455016400, - 6455022592, - 6455017152, - 6455023072, - 6455016880, - 6455021024 + 6455016416, + 6455022608, + 6455017168, + 6455023088, + 6455016896, + 6455021040 ], "bases": [ { @@ -418336,14 +418336,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec2D const &,float,class CNavPathCost const &,class CUtlVectorFixedGrowable *)'::`2'::,enum NavIncludeResult_t,class CNavArea &,struct NavIncludeInfo_t const &>", - "vtable_address": 6463124736, + "vtable_address": 6463124768, "methods": [ - 6455016720, - 6455022912, - 6455017856, - 6455023232, - 6455017040, - 6455021184 + 6455016736, + 6455022928, + 6455017872, + 6455023248, + 6455017056, + 6455021200 ], "bases": [ { @@ -418408,7 +418408,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260208, + "vtable_address": 6462260240, "methods": [ 6450871296, 6450874208, @@ -418444,7 +418444,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260264, + "vtable_address": 6462260296, "methods": [ 6450871888, 6450874336, @@ -418482,12 +418482,12 @@ "type_name": "std::_Func_impl_no_alloc,bool,class Vec3D const &>", "vtable_address": 6463628736, "methods": [ - 6458751552, - 6458752544, - 6458751936, - 6458752688, - 6458751776, - 6458752464 + 6458751568, + 6458752560, + 6458751952, + 6458752704, + 6458751792, + 6458752480 ], "bases": [ { @@ -418518,12 +418518,12 @@ "type_name": "std::_Func_impl_no_alloc > &)'::`2'::,bool,int,int,int,bool &>", "vtable_address": 6463628792, "methods": [ - 6458751616, - 6458752608, - 6458752352, - 6458752720, - 6458751808, - 6458752496 + 6458751632, + 6458752624, + 6458752368, + 6458752736, + 6458751824, + 6458752512 ], "bases": [ { @@ -418554,12 +418554,12 @@ "type_name": "std::_Func_impl_no_alloc __cdecl CNavOrientedMesh::NearestSurfacePos(class Vec3D const &,class Vec3D const &)'::`2'::,bool,class Vec3D >", "vtable_address": 6463628848, "methods": [ - 6458751584, - 6458752576, - 6458752112, - 6458752704, - 6458751792, - 6458752480 + 6458751600, + 6458752592, + 6458752128, + 6458752720, + 6458751808, + 6458752496 ], "bases": [ { @@ -418588,7 +418588,7 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec3D const &,class Vec3D *)'::`2'::,bool,class Vec3D const &,unsigned int>", - "vtable_address": 6461884088, + "vtable_address": 6461884104, "methods": [ 6449502400, 6449503328, @@ -418696,7 +418696,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,int,int>", - "vtable_address": 6461048032, + "vtable_address": 6461048016, "methods": [ 6446223472, 6446223856, @@ -418732,7 +418732,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6461049152, + "vtable_address": 6461049136, "methods": [ 6446223440, 6446223824, @@ -418768,7 +418768,7 @@ }, { "type_name": "std::_Func_impl_no_alloc const &)'::`2'::,void>", - "vtable_address": 6461048992, + "vtable_address": 6461048976, "methods": [ 6446223408, 6446223792, @@ -418804,7 +418804,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,void (__cdecl *)(class ConVarRefAbstract *,class CSplitScreenSlot,void const *,class ConVarRefAbstract *,class ConVarUserInfoSet_t,void *),void *>", - "vtable_address": 6462194080, + "vtable_address": 6462194112, "methods": [ 6450541184, 6450541472, @@ -418840,7 +418840,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260152, + "vtable_address": 6462260184, "methods": [ 6450871488, 6450874256, @@ -418876,7 +418876,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260320, + "vtable_address": 6462260352, "methods": [ 6450871712, 6450874320, @@ -418914,12 +418914,12 @@ "type_name": "std::_Func_impl_no_alloc,int,class CUtlVectorMemory_Growable,int,0> > &,class CUtlVector > &,class CUtlVector > &,class CNavGenDebugData &,bool,int,class std::shared_ptr *,int,class std::shared_ptr *)'::`10'::,class VecDouble3,class VecDouble3const &>", "vtable_address": 6463620880, "methods": [ - 6458448896, - 6458454896, - 6458452736, - 6458455696, - 6458450848, - 6458454480 + 6458448912, + 6458454912, + 6458452752, + 6458455712, + 6458450864, + 6458454496 ], "bases": [ { @@ -418950,12 +418950,12 @@ "type_name": "std::_Func_impl_no_alloc,int,class CUtlVectorMemory_Growable,int,0> > &,class CUtlVector > &,class CUtlVector > &,class CNavGenDebugData &,bool,int,class std::shared_ptr *,int,class std::shared_ptr *)'::`10'::,class VecDouble3,class VecDouble3const &>", "vtable_address": 6463620936, "methods": [ - 6458448928, - 6458454928, - 6458452896, - 6458455712, - 6458450864, - 6458454496 + 6458448944, + 6458454944, + 6458452912, + 6458455728, + 6458450880, + 6458454512 ], "bases": [ { @@ -418986,12 +418986,12 @@ "type_name": "std::_Func_impl_no_alloc,int,class CUtlVectorMemory_Growable,int,0> > &,class CUtlVector > &,class CUtlVector > &,class CNavGenDebugData &,bool,int,class std::shared_ptr *,int,class std::shared_ptr *)'::`12'::,class VecDouble3,class VecDouble3const &>", "vtable_address": 6463620992, "methods": [ - 6458448960, - 6458454960, - 6458453008, - 6458455728, - 6458450880, - 6458454512 + 6458448976, + 6458454976, + 6458453024, + 6458455744, + 6458450896, + 6458454528 ], "bases": [ { @@ -419022,12 +419022,12 @@ "type_name": "std::_Func_impl_no_alloc,int,class CUtlVectorMemory_Growable,int,0> > &,class CUtlVector > &,class CUtlVector > &,class CNavGenDebugData &,bool,int,class std::shared_ptr *,int,class std::shared_ptr *)'::`12'::,class VecDouble3,class VecDouble3const &>", "vtable_address": 6463621048, "methods": [ - 6458448992, - 6458454992, - 6458453280, - 6458455744, - 6458450896, - 6458454528 + 6458449008, + 6458455008, + 6458453296, + 6458455760, + 6458450912, + 6458454544 ], "bases": [ { @@ -419058,12 +419058,12 @@ "type_name": "std::_Func_impl_no_alloc &)'::`2'::,enum NavSearchResult_t,class CNavArea &>", "vtable_address": 6463607376, "methods": [ - 6458015504, - 6458015600, + 6458015520, + 6458015616, + 6458015584, + 6458015664, 6458015568, - 6458015648, - 6458015552, - 6458015584 + 6458015600 ], "bases": [ { @@ -419094,12 +419094,12 @@ "type_name": "std::_Func_impl_no_alloc >,int,class CUtlVectorMemory_Growable >,int,0> > *,class CUtlVector > *)'::`2'::,void,class CNavArea &>", "vtable_address": 6463621104, "methods": [ - 6458468624, - 6458468816, + 6458468640, + 6458468832, + 6458468688, + 6458468864, 6458468672, - 6458468848, - 6458468656, - 6458468800 + 6458468816 ], "bases": [ { @@ -419128,14 +419128,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > *)'::`10'::,enum NavSearchResult_t,class CNavBlock &>", - "vtable_address": 6463117432, + "vtable_address": 6463117464, "methods": [ - 6454900848, - 6454905760, - 6454903936, - 6454906272, - 6454901520, - 6454904896 + 6454900864, + 6454905776, + 6454903952, + 6454906288, + 6454901536, + 6454904912 ], "bases": [ { @@ -419164,14 +419164,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > *)'::`7'::,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463117376, + "vtable_address": 6463117408, "methods": [ - 6454900624, - 6454905536, - 6454903312, - 6454906176, - 6454901424, - 6454904800 + 6454900640, + 6454905552, + 6454903328, + 6454906192, + 6454901440, + 6454904816 ], "bases": [ { @@ -419202,12 +419202,12 @@ "type_name": "std::_Func_impl_no_alloc,bool,int,class Vec3D const *>", "vtable_address": 6463622360, "methods": [ - 6458551040, - 6458551728, - 6458551232, - 6458551760, - 6458551200, - 6458551696 + 6458551056, + 6458551744, + 6458551248, + 6458551776, + 6458551216, + 6458551712 ], "bases": [ { @@ -419238,12 +419238,12 @@ "type_name": "std::_Func_impl_no_alloc,bool,struct AABB_t const &>", "vtable_address": 6463622416, "methods": [ - 6458551120, - 6458551744, - 6458551456, - 6458551776, - 6458551216, - 6458551712 + 6458551136, + 6458551760, + 6458551472, + 6458551792, + 6458551232, + 6458551728 ], "bases": [ { @@ -419272,7 +419272,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462767320, + "vtable_address": 6462767352, "methods": [ 6452894368, 6452896944, @@ -419308,7 +419308,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462297048, + "vtable_address": 6462297080, "methods": [ 6451258640, 6451258880, @@ -419344,7 +419344,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462296992, + "vtable_address": 6462297024, "methods": [ 6451258672, 6451258912, @@ -419380,7 +419380,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462296936, + "vtable_address": 6462296968, "methods": [ 6451258704, 6451258944, @@ -419452,7 +419452,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CSosEventInfo_t *>", - "vtable_address": 6461121000, + "vtable_address": 6461120984, "methods": [ 6446672592, 6446673440, @@ -419488,7 +419488,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CSosEventInfo_t *>", - "vtable_address": 6461120944, + "vtable_address": 6461120928, "methods": [ 6446672624, 6446673472, @@ -419524,7 +419524,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6463028264, + "vtable_address": 6463028280, "methods": [ 6453873328, 6453873504, @@ -419560,14 +419560,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,float,class CUtlVector > &,struct NavBoundaryZoneExpandSettings_t const &)'::`2'::,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463124904, + "vtable_address": 6463124936, "methods": [ - 6455016192, - 6455022448, - 6455017088, - 6455023008, - 6455016816, - 6455020960 + 6455016208, + 6455022464, + 6455017104, + 6455023024, + 6455016832, + 6455020976 ], "bases": [ { @@ -419596,14 +419596,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,float,class CUtlVector > &,struct NavBoundaryZoneExpandSettings_t const &)'::`2'::,enum NavIncludeResult_t,class CNavArea &,struct NavIncludeInfo_t const &>", - "vtable_address": 6463124960, + "vtable_address": 6463124992, "methods": [ - 6455016624, - 6455022816, - 6455017808, - 6455023184, - 6455016992, - 6455021136 + 6455016640, + 6455022832, + 6455017824, + 6455023200, + 6455017008, + 6455021152 ], "bases": [ { @@ -419632,14 +419632,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,int,class Vec2D const *,float,class CUtlVector > &,struct NavBoundaryZoneExpandSettings_t const &)'::`2'::,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463124792, + "vtable_address": 6463124824, "methods": [ - 6455016240, - 6455022496, - 6455017104, - 6455023024, - 6455016832, - 6455020976 + 6455016256, + 6455022512, + 6455017120, + 6455023040, + 6455016848, + 6455020992 ], "bases": [ { @@ -419668,14 +419668,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,int,class Vec2D const *,float,class CUtlVector > &,struct NavBoundaryZoneExpandSettings_t const &)'::`2'::,enum NavIncludeResult_t,class CNavArea &,struct NavIncludeInfo_t const &>", - "vtable_address": 6463124848, + "vtable_address": 6463124880, "methods": [ - 6455016656, - 6455022848, - 6455017824, - 6455023200, - 6455017008, - 6455021152 + 6455016672, + 6455022864, + 6455017840, + 6455023216, + 6455017024, + 6455021168 ], "bases": [ { @@ -419704,14 +419704,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,float,class CUtlVector > &,struct NavBoundaryZoneExpandSettings_t const &)'::`2'::,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463125016, + "vtable_address": 6463125048, "methods": [ - 6455016320, - 6455022512, - 6455017120, - 6455023040, - 6455016848, - 6455020992 + 6455016336, + 6455022528, + 6455017136, + 6455023056, + 6455016864, + 6455021008 ], "bases": [ { @@ -419740,14 +419740,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,float,class CUtlVector > &,struct NavBoundaryZoneExpandSettings_t const &)'::`2'::,enum NavIncludeResult_t,class CNavArea &,struct NavIncludeInfo_t const &>", - "vtable_address": 6463125072, + "vtable_address": 6463125104, "methods": [ - 6455016688, - 6455022880, - 6455017840, - 6455023216, - 6455017024, - 6455021168 + 6455016704, + 6455022896, + 6455017856, + 6455023232, + 6455017040, + 6455021184 ], "bases": [ { @@ -419776,14 +419776,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec3D const &,unsigned int *,bool,class CUtlVectorFixedGrowable *)'::`2'::,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463104880, + "vtable_address": 6463104912, "methods": [ - 6454515680, - 6454522432, - 6454518064, - 6454522944, - 6454516576, - 6454520688 + 6454515696, + 6454522448, + 6454518080, + 6454522960, + 6454516592, + 6454520704 ], "bases": [ { @@ -419812,14 +419812,14 @@ }, { "type_name": "std::_Func_impl_no_alloc *)'::`13'::,bool,class CNavArea const *,struct NavAreaAdj_t const *,class Vec3D const &,class Vec3D const &,bool>", - "vtable_address": 6463118488, + "vtable_address": 6463118520, "methods": [ - 6454900768, - 6454905680, - 6454903680, - 6454906240, - 6454901488, - 6454904864 + 6454900784, + 6454905696, + 6454903696, + 6454906256, + 6454901504, + 6454904880 ], "bases": [ { @@ -419848,14 +419848,14 @@ }, { "type_name": "std::_Func_impl_no_alloc *)'::`13'::,bool,class CNavArea const *,struct NavAreaAdj_t const *,class Vec3D const &,class Vec3D const &,bool>", - "vtable_address": 6463118544, + "vtable_address": 6463118576, "methods": [ - 6454900912, - 6454905824, - 6454904208, - 6454906304, - 6454901552, - 6454904928 + 6454900928, + 6454905840, + 6454904224, + 6454906320, + 6454901568, + 6454904944 ], "bases": [ { @@ -419884,14 +419884,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &)'::`8'::,enum NavSearchResult_t,class CNavBlock &>", - "vtable_address": 6463117904, + "vtable_address": 6463117936, "methods": [ - 6454900656, - 6454905568, - 6454903568, - 6454906192, - 6454901440, - 6454904816 + 6454900672, + 6454905584, + 6454903584, + 6454906208, + 6454901456, + 6454904832 ], "bases": [ { @@ -419920,7 +419920,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CBaseEntity const *>", - "vtable_address": 6462488952, + "vtable_address": 6462488984, "methods": [ 6452124096, 6452124176, @@ -419992,14 +419992,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,struct CNavSpace::SpaceCell_t const &,int>", - "vtable_address": 6463104264, + "vtable_address": 6463104296, "methods": [ - 6454515808, - 6454522560, - 6454518816, - 6454523024, - 6454516656, - 6454520768 + 6454515824, + 6454522576, + 6454518832, + 6454523040, + 6454516672, + 6454520784 ], "bases": [ { @@ -420028,14 +420028,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,class Vec3D,class Vec3D const &,class Vec3D const &>", - "vtable_address": 6463104320, + "vtable_address": 6463104352, "methods": [ - 6454515872, - 6454522624, - 6454518864, - 6454523072, - 6454516704, - 6454520816 + 6454515888, + 6454522640, + 6454518880, + 6454523088, + 6454516720, + 6454520832 ], "bases": [ { @@ -420064,14 +420064,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CNavMesh *>", - "vtable_address": 6463104824, + "vtable_address": 6463104856, "methods": [ - 6454515712, - 6454522464, - 6454518160, - 6454522960, - 6454516592, - 6454520704 + 6454515728, + 6454522480, + 6454518176, + 6454522976, + 6454516608, + 6454520720 ], "bases": [ { @@ -420100,14 +420100,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CNavArea const *>", - "vtable_address": 6463104936, + "vtable_address": 6463104968, "methods": [ - 6454515824, - 6454522576, - 6454518832, - 6454523040, - 6454516672, - 6454520784 + 6454515840, + 6454522592, + 6454518848, + 6454523056, + 6454516688, + 6454520800 ], "bases": [ { @@ -420136,14 +420136,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &,bool)'::`10'::,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463105048, + "vtable_address": 6463105080, "methods": [ - 6454515920, - 6454522672, - 6454518944, - 6454523104, - 6454516736, - 6454520848 + 6454515936, + 6454522688, + 6454518960, + 6454523120, + 6454516752, + 6454520864 ], "bases": [ { @@ -420172,14 +420172,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &,bool)'::`12'::,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463105104, + "vtable_address": 6463105136, "methods": [ - 6454516160, - 6454522720, - 6454519088, - 6454523152, - 6454516912, - 6454520896 + 6454516176, + 6454522736, + 6454519104, + 6454523168, + 6454516928, + 6454520912 ], "bases": [ { @@ -420208,14 +420208,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &,bool)'::`7'::,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463104992, + "vtable_address": 6463105024, "methods": [ - 6454515776, - 6454522528, - 6454518560, - 6454523008, - 6454516640, - 6454520752 + 6454515792, + 6454522544, + 6454518576, + 6454523024, + 6454516656, + 6454520768 ], "bases": [ { @@ -420246,12 +420246,12 @@ "type_name": "std::_Func_impl_no_alloc *) const'::`14'::,void,class CNavArea *>", "vtable_address": 6463621960, "methods": [ - 6458535440, - 6458536384, - 6458535968, - 6458536496, - 6458535600, - 6458536272 + 6458535456, + 6458536400, + 6458535984, + 6458536512, + 6458535616, + 6458536288 ], "bases": [ { @@ -420282,12 +420282,12 @@ "type_name": "std::_Func_impl_no_alloc *) const'::`18'::,void,class CNavArea *>", "vtable_address": 6463622016, "methods": [ - 6458535472, - 6458536416, - 6458536096, - 6458536512, - 6458535616, - 6458536288 + 6458535488, + 6458536432, + 6458536112, + 6458536528, + 6458535632, + 6458536304 ], "bases": [ { @@ -420318,12 +420318,12 @@ "type_name": "std::_Func_impl_no_alloc *) const'::`2'::,void,struct NavIndirectDst_t const &>", "vtable_address": 6463621904, "methods": [ - 6458535296, - 6458536304, - 6458535632, - 6458536448, - 6458535504, - 6458536224 + 6458535312, + 6458536320, + 6458535648, + 6458536464, + 6458535520, + 6458536240 ], "bases": [ { @@ -420354,12 +420354,12 @@ "type_name": "std::_Func_impl_no_alloc *) const'::`2'::,void,struct NavIndirectDst_t const &>", "vtable_address": 6463622072, "methods": [ - 6458535376, - 6458536320, - 6458535744, - 6458536464, - 6458535568, - 6458536240 + 6458535392, + 6458536336, + 6458535760, + 6458536480, + 6458535584, + 6458536256 ], "bases": [ { @@ -420390,12 +420390,12 @@ "type_name": "std::_Func_impl_no_alloc *) const'::`2'::,void,struct NavIndirectDst_t const &>", "vtable_address": 6463622128, "methods": [ - 6458535408, - 6458536352, - 6458535856, - 6458536480, - 6458535584, - 6458536256 + 6458535424, + 6458536368, + 6458535872, + 6458536496, + 6458535600, + 6458536272 ], "bases": [ { @@ -420424,14 +420424,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463118264, + "vtable_address": 6463118296, "methods": [ - 6454900128, - 6454905040, - 6454902224, - 6454905920, - 6454901168, - 6454904544 + 6454900144, + 6454905056, + 6454902240, + 6454905936, + 6454901184, + 6454904560 ], "bases": [ { @@ -420460,14 +420460,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class CNavBlock const *>", - "vtable_address": 6463117960, + "vtable_address": 6463117992, "methods": [ - 6454900192, - 6454905104, - 6454902272, - 6454905952, - 6454901200, - 6454904576 + 6454900208, + 6454905120, + 6454902288, + 6454905968, + 6454901216, + 6454904592 ], "bases": [ { @@ -420496,14 +420496,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class CNavArea * const &,class CNavArea * const &>", - "vtable_address": 6463117792, + "vtable_address": 6463117824, "methods": [ - 6454900160, - 6454905072, - 6454902256, - 6454905936, - 6454901184, - 6454904560 + 6454900176, + 6454905088, + 6454902272, + 6454905952, + 6454901200, + 6454904576 ], "bases": [ { @@ -420532,14 +420532,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,unsigned int const &>", - "vtable_address": 6463118432, + "vtable_address": 6463118464, "methods": [ - 6454900544, - 6454905456, - 6454903264, - 6454906144, - 6454901392, - 6454904768 + 6454900560, + 6454905472, + 6454903280, + 6454906160, + 6454901408, + 6454904784 ], "bases": [ { @@ -420604,14 +420604,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class CNavArea *,class std::function const &)> &,float,float)'::`2'::,enum NavSearchPosResult_t,class Vec3D const &>", - "vtable_address": 6463118696, + "vtable_address": 6463118728, "methods": [ - 6454899952, - 6454904960, - 6454901664, - 6454905872, - 6454901040, - 6454904496 + 6454899968, + 6454904976, + 6454901680, + 6454905888, + 6454901056, + 6454904512 ], "bases": [ { @@ -420640,14 +420640,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &)'::`2'::::operator()(int) const'::`10'::,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463117544, + "vtable_address": 6463117576, "methods": [ - 6454900736, - 6454905648, - 6454903664, - 6454906224, - 6454901472, - 6454904848 + 6454900752, + 6454905664, + 6454903680, + 6454906240, + 6454901488, + 6454904864 ], "bases": [ { @@ -420676,14 +420676,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &)'::`2'::::operator()(int) const'::`12'::,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463117600, + "vtable_address": 6463117632, "methods": [ - 6454900880, - 6454905792, - 6454904112, - 6454906288, - 6454901536, - 6454904912 + 6454900896, + 6454905808, + 6454904128, + 6454906304, + 6454901552, + 6454904928 ], "bases": [ { @@ -420714,12 +420714,12 @@ "type_name": "std::_Func_impl_no_alloc > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2'::::operator()(int) const'::`2'::,void,class CNavArea &>", "vtable_address": 6463613784, "methods": [ - 6458227456, - 6458227632, - 6458227552, - 6458227696, - 6458227520, - 6458227600 + 6458227472, + 6458227648, + 6458227568, + 6458227712, + 6458227536, + 6458227616 ], "bases": [ { @@ -420750,12 +420750,12 @@ "type_name": "std::_Func_impl_no_alloc > const &,class CNavGeometryManager &,class CNavGrid &,bool)'::`2'::::operator()(int) const'::`2'::,void,class std::span >", "vtable_address": 6463613840, "methods": [ - 6458227488, - 6458227664, - 6458227568, - 6458227712, - 6458227536, - 6458227616 + 6458227504, + 6458227680, + 6458227584, + 6458227728, + 6458227552, + 6458227632 ], "bases": [ { @@ -420820,14 +420820,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchPosResult_t,class Vec3D const &,class CNavArea const &>", - "vtable_address": 6463104544, + "vtable_address": 6463104576, "methods": [ - 6454516368, - 6454522736, - 6454519200, - 6454523168, - 6454517056, - 6454520912 + 6454516384, + 6454522752, + 6454519216, + 6454523184, + 6454517072, + 6454520928 ], "bases": [ { @@ -420856,14 +420856,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463104376, + "vtable_address": 6463104408, "methods": [ - 6454515888, - 6454522640, - 6454518928, - 6454523088, - 6454516720, - 6454520832 + 6454515904, + 6454522656, + 6454518944, + 6454523104, + 6454516736, + 6454520848 ], "bases": [ { @@ -420892,14 +420892,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchPosResult_t,class Vec3D const &,class CNavArea const &>", - "vtable_address": 6463104432, + "vtable_address": 6463104464, "methods": [ - 6454516128, - 6454522688, - 6454519056, - 6454523120, - 6454516880, - 6454520864 + 6454516144, + 6454522704, + 6454519072, + 6454523136, + 6454516896, + 6454520880 ], "bases": [ { @@ -420928,14 +420928,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchPosResult_t,class Vec3D const &>", - "vtable_address": 6463104488, + "vtable_address": 6463104520, "methods": [ - 6454516144, - 6454522704, - 6454519072, - 6454523136, - 6454516896, - 6454520880 + 6454516160, + 6454522720, + 6454519088, + 6454523152, + 6454516912, + 6454520896 ], "bases": [ { @@ -420964,7 +420964,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,struct AABB_t const &>", - "vtable_address": 6461884032, + "vtable_address": 6461884048, "methods": [ 6449502464, 6449503392, @@ -421038,12 +421038,12 @@ "type_name": "std::_Func_impl_no_alloc const &,class Vec3D const &,class VPlane const &,float,int *,bool) const'::`2'::,void,int,struct NavBoundarySeg_t const &>", "vtable_address": 6463621360, "methods": [ - 6458490320, - 6458490448, - 6458490416, + 6458490336, 6458490464, - 6458490400, - 6458490432 + 6458490432, + 6458490480, + 6458490416, + 6458490448 ], "bases": [ { @@ -421072,7 +421072,7 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec3D const &,class Vec3D *)'::`2'::,bool,class Vec3D const &,unsigned int>", - "vtable_address": 6461884144, + "vtable_address": 6461884160, "methods": [ 6449502368, 6449503296, @@ -421110,12 +421110,12 @@ "type_name": "std::_Func_impl_no_alloc const &,class CNavPathCost const &,bool,class CUtlVector > *) const'::`2'::,enum NavSearchResult_t,class CNavBlock &>", "vtable_address": 6463613352, "methods": [ - 6458200800, - 6458202576, - 6458202080, - 6458202688, - 6458200912, - 6458202416 + 6458200816, + 6458202592, + 6458202096, + 6458202704, + 6458200928, + 6458202432 ], "bases": [ { @@ -421146,12 +421146,12 @@ "type_name": "std::_Func_impl_no_alloc > *) const'::`2'::,enum NavSearchResult_t,class CNavBlock &>", "vtable_address": 6463613408, "methods": [ - 6458200768, - 6458202544, - 6458201744, - 6458202672, - 6458200896, - 6458202400 + 6458200784, + 6458202560, + 6458201760, + 6458202688, + 6458200912, + 6458202416 ], "bases": [ { @@ -421180,14 +421180,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class CNavArea *,struct NavHull_t,class Vec3D *,class CBaseEntity const *,int,float)'::`6'::,enum NavSearchPosResult_t,class Vec3D const &>", - "vtable_address": 6463118752, + "vtable_address": 6463118784, "methods": [ - 6454900576, - 6454905488, - 6454903296, - 6454906160, - 6454901408, - 6454904784 + 6454900592, + 6454905504, + 6454903312, + 6454906176, + 6454901424, + 6454904800 ], "bases": [ { @@ -421216,14 +421216,14 @@ }, { "type_name": "std::_Func_impl_no_alloc __cdecl CNavQuery::FindRandomConnectedPoint(class Vec3D const &,class CNavArea *,struct NavHull_t,float,float)'::`2'::,enum NavSearchPosResult_t,class Vec3D const &>", - "vtable_address": 6463118808, + "vtable_address": 6463118840, "methods": [ - 6454900288, - 6454905200, - 6454902752, - 6454906016, - 6454901264, - 6454904640 + 6454900304, + 6454905216, + 6454902768, + 6454906032, + 6454901280, + 6454904656 ], "bases": [ { @@ -421252,14 +421252,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463104128, + "vtable_address": 6463104160, "methods": [ - 6454515600, - 6454522352, - 6454517856, - 6454522896, - 6454516528, - 6454520640 + 6454515616, + 6454522368, + 6454517872, + 6454522912, + 6454516544, + 6454520656 ], "bases": [ { @@ -421288,14 +421288,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavBlock &>", - "vtable_address": 6463125296, + "vtable_address": 6463125328, "methods": [ - 6455016608, - 6455022800, - 6455017696, - 6455023168, - 6455016976, - 6455021120 + 6455016624, + 6455022816, + 6455017712, + 6455023184, + 6455016992, + 6455021136 ], "bases": [ { @@ -421326,12 +421326,12 @@ "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavBlock &>", "vtable_address": 6463613128, "methods": [ - 6458200592, - 6458202432, - 6458200928, - 6458202608, - 6458200832, - 6458202336 + 6458200608, + 6458202448, + 6458200944, + 6458202624, + 6458200848, + 6458202352 ], "bases": [ { @@ -421360,7 +421360,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260488, + "vtable_address": 6462260520, "methods": [ 6450872144, 6450874400, @@ -421396,7 +421396,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260432, + "vtable_address": 6462260464, "methods": [ 6450872048, 6450874384, @@ -421432,7 +421432,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class QAngle,class Vec3D,class RotationVector,class CCSPlayerPawn *)'::`2'::,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6462050096, + "vtable_address": 6462050112, "methods": [ 6449666736, 6449666992, @@ -421468,7 +421468,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class QAngle,class Vec3D,class RotationVector,class CCSPlayerPawn *)'::`2'::,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6462083888, + "vtable_address": 6462083904, "methods": [ 6449694448, 6449695616, @@ -421504,7 +421504,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class QAngle,class Vec3D,class RotationVector,class CCSPlayerPawn *)'::`2'::,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6462083944, + "vtable_address": 6462083960, "methods": [ 6449694528, 6449695632, @@ -421540,7 +421540,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class QAngle,class Vec3D,class RotationVector,class CCSPlayerPawn *)'::`2'::,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6462084056, + "vtable_address": 6462084072, "methods": [ 6449694608, 6449695648, @@ -421576,7 +421576,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class QAngle,class Vec3D,class RotationVector,class CCSPlayerPawn *)'::`2'::,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6462084000, + "vtable_address": 6462084016, "methods": [ 6449694688, 6449695664, @@ -421612,7 +421612,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class QAngle,class Vec3D,class RotationVector,class CCSPlayerPawn *)'::`2'::,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6462084112, + "vtable_address": 6462084128, "methods": [ 6449694768, 6449695680, @@ -421650,12 +421650,12 @@ "type_name": "std::_Func_impl_no_alloc > const * __cdecl CNavVolume::GetOrFindAreasOverlapping(class CUtlVector > &) const'::`2'::,enum NavSearchResult_t,class CNavArea &>", "vtable_address": 6463621248, "methods": [ - 6458472080, - 6458472320, - 6458472240, - 6458472368, - 6458472128, - 6458472272 + 6458472096, + 6458472336, + 6458472256, + 6458472384, + 6458472144, + 6458472288 ], "bases": [ { @@ -421684,7 +421684,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260544, + "vtable_address": 6462260576, "methods": [ 6450871616, 6450874304, @@ -421720,7 +421720,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260376, + "vtable_address": 6462260408, "methods": [ 6450871520, 6450874288, @@ -421756,7 +421756,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CTeam *>", - "vtable_address": 6461763880, + "vtable_address": 6461763896, "methods": [ 6449213824, 6449214000, @@ -421792,7 +421792,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CTeam *>", - "vtable_address": 6462114616, + "vtable_address": 6462114632, "methods": [ 6449936816, 6449937104, @@ -421864,7 +421864,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260600, + "vtable_address": 6462260632, "methods": [ 6450871456, 6450874224, @@ -421900,7 +421900,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462260656, + "vtable_address": 6462260688, "methods": [ 6450872016, 6450874352, @@ -421936,7 +421936,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class CNavArea &>", - "vtable_address": 6462543688, + "vtable_address": 6462543720, "methods": [ 6452323888, 6452324016, @@ -421972,7 +421972,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class CNavArea &>", - "vtable_address": 6462543744, + "vtable_address": 6462543776, "methods": [ 6452323904, 6452324032, @@ -422008,7 +422008,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,int,int>", - "vtable_address": 6462490824, + "vtable_address": 6462490856, "methods": [ 6452147280, 6452147312, @@ -422044,14 +422044,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463104768, + "vtable_address": 6463104800, "methods": [ - 6454515760, - 6454522512, - 6454518528, - 6454522992, - 6454516624, - 6454520736 + 6454515776, + 6454522528, + 6454518544, + 6454523008, + 6454516640, + 6454520752 ], "bases": [ { @@ -422080,14 +422080,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,uint64_t>", - "vtable_address": 6463118152, + "vtable_address": 6463118184, "methods": [ - 6454900208, - 6454905120, - 6454902288, - 6454905968, - 6454901216, - 6454904592 + 6454900224, + 6454905136, + 6454902304, + 6454905984, + 6454901232, + 6454904608 ], "bases": [ { @@ -422116,14 +422116,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,uint64_t,float,float>", - "vtable_address": 6463118208, + "vtable_address": 6463118240, "methods": [ - 6454900816, - 6454905728, - 6454903904, - 6454906256, - 6454901504, - 6454904880 + 6454900832, + 6454905744, + 6454903920, + 6454906272, + 6454901520, + 6454904896 ], "bases": [ { @@ -422152,14 +422152,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463117680, + "vtable_address": 6463117712, "methods": [ - 6454900480, - 6454905392, - 6454903232, - 6454906112, - 6454901360, - 6454904736 + 6454900496, + 6454905408, + 6454903248, + 6454906128, + 6454901376, + 6454904752 ], "bases": [ { @@ -422188,14 +422188,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,unsigned int const &,struct TS_Annotation_t * const &>", - "vtable_address": 6463118320, + "vtable_address": 6463118352, "methods": [ - 6454900272, - 6454905184, - 6454902320, - 6454906000, - 6454901248, - 6454904624 + 6454900288, + 6454905200, + 6454902336, + 6454906016, + 6454901264, + 6454904640 ], "bases": [ { @@ -422224,14 +422224,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &)'::`9'::,void,struct TS_Annotation_t * const &>", - "vtable_address": 6463118376, + "vtable_address": 6463118408, "methods": [ - 6454900688, - 6454905600, - 6454903648, - 6454906208, - 6454901456, - 6454904832 + 6454900704, + 6454905616, + 6454903664, + 6454906224, + 6454901472, + 6454904848 ], "bases": [ { @@ -422262,12 +422262,12 @@ "type_name": "std::_Func_impl_no_alloc &) const'::`2'::,enum NavSearchResult_t,class CNavArea &>", "vtable_address": 6463621304, "methods": [ - 6458472048, - 6458472288, - 6458472144, - 6458472352, - 6458472112, - 6458472256 + 6458472064, + 6458472304, + 6458472160, + 6458472368, + 6458472128, + 6458472272 ], "bases": [ { @@ -422296,7 +422296,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CPlayerSlot const &>", - "vtable_address": 6462917168, + "vtable_address": 6462917184, "methods": [ 6453637968, 6453638528, @@ -422332,7 +422332,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CBasePlayerController const *>", - "vtable_address": 6462917224, + "vtable_address": 6462917240, "methods": [ 6453638000, 6453638560, @@ -422368,7 +422368,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CBasePlayerController const *>", - "vtable_address": 6462917280, + "vtable_address": 6462917296, "methods": [ 6453638016, 6453638576, @@ -422404,7 +422404,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,struct SoundOpvarManagerSettableData_t,class CSoundOpvarSetPointStackCollection *>", - "vtable_address": 6462917336, + "vtable_address": 6462917352, "methods": [ 6453637936, 6453638496, @@ -422440,7 +422440,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462194136, + "vtable_address": 6462194168, "methods": [ 6450541152, 6450541440, @@ -422476,7 +422476,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CTeam *>", - "vtable_address": 6461763824, + "vtable_address": 6461763840, "methods": [ 6449213776, 6449213952, @@ -422512,7 +422512,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6462767208, + "vtable_address": 6462767240, "methods": [ 6452894400, 6452896976, @@ -422548,7 +422548,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6462767264, + "vtable_address": 6462767296, "methods": [ 6452894432, 6452897008, @@ -422586,12 +422586,12 @@ "type_name": "std::_Func_impl_no_alloc::CollectAdjacentNodes(class CNavArea const &,unsigned int)'::`24'::,void,class CNavArea *>", "vtable_address": 6463612600, "methods": [ - 6458160416, - 6458166016, - 6458160560, - 6458166112, - 6458160512, - 6458164752 + 6458160432, + 6458166032, + 6458160576, + 6458166128, + 6458160528, + 6458164768 ], "bases": [ { @@ -422622,12 +422622,12 @@ "type_name": "std::_Func_impl_no_alloc::CollectAdjacentNodes(class CNavArea const &,unsigned int)'::`28'::,void,class CNavArea *>", "vtable_address": 6463612656, "methods": [ - 6458160448, - 6458166048, - 6458160640, - 6458166128, - 6458160528, - 6458164768 + 6458160464, + 6458166064, + 6458160656, + 6458166144, + 6458160544, + 6458164784 ], "bases": [ { @@ -422658,12 +422658,12 @@ "type_name": "std::_Func_impl_no_alloc::CollectAdjacentNodes(class CNavArea const &,unsigned int)'::`69'::,void,struct NavIndirectDst_t const &>", "vtable_address": 6463612712, "methods": [ - 6458160480, - 6458166080, - 6458160720, - 6458166144, - 6458160544, - 6458164784 + 6458160496, + 6458166096, + 6458160736, + 6458166160, + 6458160560, + 6458164800 ], "bases": [ { @@ -422692,14 +422692,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463104656, + "vtable_address": 6463104688, "methods": [ - 6454515632, - 6454522384, - 6454517872, - 6454522912, - 6454516544, - 6454520656 + 6454515648, + 6454522400, + 6454517888, + 6454522928, + 6454516560, + 6454520672 ], "bases": [ { @@ -422728,14 +422728,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,float) const'::`2'::,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463104600, + "vtable_address": 6463104632, "methods": [ - 6454515648, - 6454522400, - 6454517888, - 6454522928, - 6454516560, - 6454520672 + 6454515664, + 6454522416, + 6454517904, + 6454522944, + 6454516576, + 6454520688 ], "bases": [ { @@ -422764,14 +422764,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum CNavSpace::SearchBlockResult_t,class CNavBlock const &>", - "vtable_address": 6463104712, + "vtable_address": 6463104744, "methods": [ - 6454515840, - 6454522592, - 6454518848, - 6454523056, - 6454516688, - 6454520800 + 6454515856, + 6454522608, + 6454518864, + 6454523072, + 6454516704, + 6454520816 ], "bases": [ { @@ -422802,12 +422802,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > *)'::`2'::,void,int,int,int,struct CNavOrientedMesh::VoxelSparseIndex_t const &,unsigned char,unsigned char,bool>", "vtable_address": 6463628392, "methods": [ - 6458642656, - 6458643792, - 6458642896, - 6458643952, - 6458642816, - 6458643712 + 6458642672, + 6458643808, + 6458642912, + 6458643968, + 6458642832, + 6458643728 ], "bases": [ { @@ -422838,12 +422838,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > *)'::`2'::,void,int,int,int,struct CNavOrientedMesh::VoxelSparseIndex_t const &,enum OrientedMeshSparseVoxelState_t const &>", "vtable_address": 6463628448, "methods": [ - 6458642688, - 6458643824, - 6458643072, - 6458643968, - 6458642832, - 6458643728 + 6458642704, + 6458643840, + 6458643088, + 6458643984, + 6458642848, + 6458643744 ], "bases": [ { @@ -422874,12 +422874,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > *)'::`2'::,void,int,int,int,struct CNavOrientedMesh::VoxelSparseIndex_t const &,unsigned char,unsigned char,bool>", "vtable_address": 6463628504, "methods": [ - 6458642720, - 6458643856, - 6458643264, - 6458643984, - 6458642848, - 6458643744 + 6458642736, + 6458643872, + 6458643280, + 6458644000, + 6458642864, + 6458643760 ], "bases": [ { @@ -422910,12 +422910,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > *)'::`2'::,void,int,int,int,struct CNavOrientedMesh::VoxelSparseIndex_t const &,unsigned char,unsigned short>", "vtable_address": 6463628560, "methods": [ - 6458642752, - 6458643888, - 6458643392, - 6458644000, - 6458642864, - 6458643760 + 6458642768, + 6458643904, + 6458643408, + 6458644016, + 6458642880, + 6458643776 ], "bases": [ { @@ -422946,12 +422946,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > *)'::`2'::,void,int,int,int,int,unsigned char,unsigned int>", "vtable_address": 6463628616, "methods": [ - 6458642784, - 6458643920, - 6458643568, - 6458644016, - 6458642880, - 6458643776 + 6458642800, + 6458643936, + 6458643584, + 6458644032, + 6458642896, + 6458643792 ], "bases": [ { @@ -422982,12 +422982,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CNavGenParams const &,double,double,double,double,bool,double,bool)'::`4'::,void>", "vtable_address": 6463616088, "methods": [ - 6458418864, - 6458420256, - 6458419728, - 6458420416, - 6458419088, - 6458420112 + 6458418880, + 6458420272, + 6458419744, + 6458420432, + 6458419104, + 6458420128 ], "bases": [ { @@ -423018,12 +423018,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > &,bool,class CNavGenParams const &)'::`2'::,void,int>", "vtable_address": 6463616864, "methods": [ - 6458418720, - 6458420176, - 6458419664, - 6458420368, - 6458419040, - 6458420064 + 6458418736, + 6458420192, + 6458419680, + 6458420384, + 6458419056, + 6458420080 ], "bases": [ { @@ -423054,12 +423054,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > &,class CNavGenParams const &,double,double,double,bool)'::`12'::,bool,class CNavGenPoly const &>", "vtable_address": 6463616976, "methods": [ - 6458418976, - 6458420304, - 6458420016, - 6458420448, - 6458419120, - 6458420144 + 6458418992, + 6458420320, + 6458420032, + 6458420464, + 6458419136, + 6458420160 ], "bases": [ { @@ -423090,12 +423090,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > &,class CNavGenParams const &,double,double,double,bool)'::`2'::,void,class CUtlVector > &,class ObjectTree::CObjectTree &>", "vtable_address": 6463616920, "methods": [ - 6458418752, - 6458420208, - 6458419696, - 6458420384, - 6458419056, - 6458420080 + 6458418768, + 6458420224, + 6458419712, + 6458420400, + 6458419072, + 6458420096 ], "bases": [ { @@ -423126,12 +423126,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > &,class CNavGenParams const &,double,double,double)'::`20'::,bool,class CNavGenPoly const &>", "vtable_address": 6463617088, "methods": [ - 6458418944, - 6458420272, - 6458419824, - 6458420432, - 6458419104, - 6458420128 + 6458418960, + 6458420288, + 6458419840, + 6458420448, + 6458419120, + 6458420144 ], "bases": [ { @@ -423162,12 +423162,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > const *,double,class std::function &,class CNavGenFatPlane const &,int *,int *,class CUtlVector > *)'::`2'::,void,int>", "vtable_address": 6463617032, "methods": [ - 6458418784, - 6458420240, - 6458419712, - 6458420400, - 6458419072, - 6458420096 + 6458418800, + 6458420256, + 6458419728, + 6458420416, + 6458419088, + 6458420112 ], "bases": [ { @@ -423196,14 +423196,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,int,class CUtlVectorMemory_Growable,int,0> > >(class CNavArea const *,class CUtlVector,int,class CUtlVectorMemory_Growable,int,0> > *)'::`2'::,void,struct NavIndirectDst_t const &>", - "vtable_address": 6463105216, + "vtable_address": 6463105248, "methods": [ - 6454515424, - 6454522176, - 6454517104, - 6454522816, - 6454516448, - 6454520560 + 6454515440, + 6454522192, + 6454517120, + 6454522832, + 6454516464, + 6454520576 ], "bases": [ { @@ -423232,14 +423232,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > >(class CNavArea const *,class CUtlVector > *)'::`2'::,void,class CNavArea *>", - "vtable_address": 6463105384, + "vtable_address": 6463105416, "methods": [ - 6454515456, - 6454522208, - 6454517440, - 6454522832, - 6454516464, - 6454520576 + 6454515472, + 6454522224, + 6454517456, + 6454522848, + 6454516480, + 6454520592 ], "bases": [ { @@ -423268,14 +423268,14 @@ }, { "type_name": "std::_Func_impl_no_alloc > >(class CNavArea const *,class CUtlVector > *)'::`2'::,void,class CNavArea *>", - "vtable_address": 6463105328, + "vtable_address": 6463105360, "methods": [ - 6454515488, - 6454522240, - 6454517472, - 6454522848, - 6454516480, - 6454520592 + 6454515504, + 6454522256, + 6454517488, + 6454522864, + 6454516496, + 6454520608 ], "bases": [ { @@ -423304,14 +423304,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,int,class CUtlVectorMemory_Growable,int,0> > >(class CNavBlock const *,class CUtlVector,int,class CUtlVectorMemory_Growable,int,0> > *)'::`2'::,void,struct NavIndirectDst_t const &>", - "vtable_address": 6463105272, + "vtable_address": 6463105304, "methods": [ - 6454515520, - 6454522272, - 6454517504, - 6454522864, - 6454516496, - 6454520608 + 6454515536, + 6454522288, + 6454517520, + 6454522880, + 6454516512, + 6454520624 ], "bases": [ { @@ -423340,14 +423340,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463118096, + "vtable_address": 6463118128, "methods": [ - 6454900416, - 6454905328, - 6454902960, - 6454906080, - 6454901328, - 6454904704 + 6454900432, + 6454905344, + 6454902976, + 6454906096, + 6454901344, + 6454904720 ], "bases": [ { @@ -423376,14 +423376,14 @@ }, { "type_name": "std::_Func_impl_no_alloc *) const'::`2'::,void,unsigned int const &>", - "vtable_address": 6463117096, + "vtable_address": 6463117128, "methods": [ - 6454900064, - 6454904976, - 6454901680, - 6454905888, - 6454901136, - 6454904512 + 6454900080, + 6454904992, + 6454901696, + 6454905904, + 6454901152, + 6454904528 ], "bases": [ { @@ -423412,14 +423412,14 @@ }, { "type_name": "std::_Func_impl_no_alloc *) const'::`2'::,void,uint64_t const &>", - "vtable_address": 6463117152, + "vtable_address": 6463117184, "methods": [ - 6454900096, - 6454905008, - 6454901952, - 6454905904, - 6454901152, - 6454904528 + 6454900112, + 6454905024, + 6454901968, + 6454905920, + 6454901168, + 6454904544 ], "bases": [ { @@ -423448,14 +423448,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,class IOverlapObs_t *>", - "vtable_address": 6463117488, + "vtable_address": 6463117520, "methods": [ - 6454900448, - 6454905360, - 6454902976, - 6454906096, - 6454901344, - 6454904720 + 6454900464, + 6454905376, + 6454902992, + 6454906112, + 6454901360, + 6454904736 ], "bases": [ { @@ -423484,14 +423484,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,uint64_t const &>", - "vtable_address": 6463117264, + "vtable_address": 6463117296, "methods": [ - 6454900320, - 6454905232, - 6454902864, - 6454906032, - 6454901280, - 6454904656 + 6454900336, + 6454905248, + 6454902880, + 6454906048, + 6454901296, + 6454904672 ], "bases": [ { @@ -423520,14 +423520,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,uint64_t const &>", - "vtable_address": 6463117320, + "vtable_address": 6463117352, "methods": [ - 6454900352, - 6454905264, - 6454902896, - 6454906048, - 6454901296, - 6454904672 + 6454900368, + 6454905280, + 6454902912, + 6454906064, + 6454901312, + 6454904688 ], "bases": [ { @@ -423556,14 +423556,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,unsigned int const &>", - "vtable_address": 6463117208, + "vtable_address": 6463117240, "methods": [ - 6454900384, - 6454905296, - 6454902928, - 6454906064, - 6454901312, - 6454904688 + 6454900400, + 6454905312, + 6454902944, + 6454906080, + 6454901328, + 6454904704 ], "bases": [ { @@ -423594,12 +423594,12 @@ "type_name": "std::_Func_impl_no_alloc,bool,class Vec3D const &>", "vtable_address": 6463628680, "methods": [ - 6458751648, - 6458752640, - 6458752384, - 6458752736, - 6458751824, - 6458752512 + 6458751664, + 6458752656, + 6458752400, + 6458752752, + 6458751840, + 6458752528 ], "bases": [ { @@ -423630,12 +423630,12 @@ "type_name": "std::_Func_impl_no_alloc &)'::`2'::,enum NavSearchResult_t,struct CNavSpace::SpaceCell_t const &,int>", "vtable_address": 6463613184, "methods": [ - 6458200624, - 6458202464, - 6458201008, - 6458202624, - 6458200848, - 6458202352 + 6458200640, + 6458202480, + 6458201024, + 6458202640, + 6458200864, + 6458202368 ], "bases": [ { @@ -423666,12 +423666,12 @@ "type_name": "std::_Func_impl_no_alloc &,class CNavQueryShapeList const &,class CNavPathCost const *,bool) const'::`2'::,enum NavSearchResult_t,struct CNavSpace::SpaceCell_t const &,int>", "vtable_address": 6463613296, "methods": [ - 6458200736, - 6458202512, - 6458201504, - 6458202656, - 6458200880, - 6458202384 + 6458200752, + 6458202528, + 6458201520, + 6458202672, + 6458200896, + 6458202400 ], "bases": [ { @@ -423702,12 +423702,12 @@ "type_name": "std::_Func_impl_no_alloc &,struct AABB_t const &,class CNavPathCost const *,bool) const'::`2'::,enum NavSearchResult_t,struct CNavSpace::SpaceCell_t const &,int>", "vtable_address": 6463613240, "methods": [ - 6458200656, - 6458202496, - 6458201136, - 6458202640, - 6458200864, - 6458202368 + 6458200672, + 6458202512, + 6458201152, + 6458202656, + 6458200880, + 6458202384 ], "bases": [ { @@ -423736,14 +423736,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class Vec3D const &,class CNavPathCost const &,struct GenericShape_t const &,class CTraceFilter &,struct SpaceTraceResult_t *) const'::`2'::,enum NavSearchResult_t,class CNavBlock &>", - "vtable_address": 6463125240, + "vtable_address": 6463125272, "methods": [ - 6455016528, - 6455022720, - 6455017472, - 6455023136, - 6455016944, - 6455021088 + 6455016544, + 6455022736, + 6455017488, + 6455023152, + 6455016960, + 6455021104 ], "bases": [ { @@ -423772,14 +423772,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class CNavArea * const &>", - "vtable_address": 6463117848, + "vtable_address": 6463117880, "methods": [ - 6454900512, - 6454905424, - 6454903248, - 6454906128, - 6454901376, - 6454904752 + 6454900528, + 6454905440, + 6454903264, + 6454906144, + 6454901392, + 6454904768 ], "bases": [ { @@ -423808,14 +423808,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const *,float) const'::`2'::,void,class CNavArea * const &,class CNavArea * const &>", - "vtable_address": 6463117736, + "vtable_address": 6463117768, "methods": [ - 6454900240, - 6454905152, - 6454902304, - 6454905984, - 6454901232, - 6454904608 + 6454900256, + 6454905168, + 6454902320, + 6454906000, + 6454901248, + 6454904624 ], "bases": [ { @@ -423846,12 +423846,12 @@ "type_name": "std::_Func_impl_no_alloc,void,struct CNavTree::TreeIter_t const &>", "vtable_address": 6463625192, "methods": [ - 6458610880, - 6458611312, - 6458611136, - 6458611360, - 6458611024, - 6458611280 + 6458610896, + 6458611328, + 6458611152, + 6458611376, + 6458611040, + 6458611296 ], "bases": [ { @@ -423880,7 +423880,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,class CBasePlayerController const *>", - "vtable_address": 6462322168, + "vtable_address": 6462322200, "methods": [ 6451428064, 6451428128, @@ -423952,7 +423952,7 @@ }, { "type_name": "std::_Func_impl_no_alloc > const &)'::`2'::,void,class CBasePulseGraphInstance *>", - "vtable_address": 6461675616, + "vtable_address": 6461675600, "methods": [ 6448803440, 6448803952, @@ -423988,7 +423988,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,void>", - "vtable_address": 6462576376, + "vtable_address": 6462576408, "methods": [ 6452554816, 6452555024, @@ -424024,7 +424024,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463028320, + "vtable_address": 6463028336, "methods": [ 6453873296, 6453873472, @@ -424168,7 +424168,7 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class CFixedSizeCircularBuffer,16,int> &,float)'::`2'::,bool,struct AABB_t const &>", - "vtable_address": 6461884200, + "vtable_address": 6461884216, "methods": [ 6449502336, 6449503264, @@ -424204,7 +424204,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,bool,struct AABB_t const &>", - "vtable_address": 6461884256, + "vtable_address": 6461884272, "methods": [ 6449502432, 6449503360, @@ -424314,12 +424314,12 @@ "type_name": "std::_Func_impl_no_alloc const &)'::`5'::,bool,struct AABB_t const &>", "vtable_address": 6463625136, "methods": [ - 6458610912, - 6458611344, - 6458611152, - 6458611376, - 6458611040, - 6458611296 + 6458610928, + 6458611360, + 6458611168, + 6458611392, + 6458611056, + 6458611312 ], "bases": [ { @@ -424456,14 +424456,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &)'::`2'::,void,class PulseMethodBindingInfo_t const *>", - "vtable_address": 6463268680, + "vtable_address": 6463268712, "methods": [ - 6456932640, - 6456933120, - 6456932736, - 6456933184, - 6456932704, - 6456933088 + 6456932656, + 6456933136, + 6456932752, + 6456933200, + 6456932720, + 6456933104 ], "bases": [ { @@ -424492,14 +424492,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &)'::`2'::,void,class PulseEventBindingInfo_t const *>", - "vtable_address": 6463268736, + "vtable_address": 6463268768, "methods": [ - 6456932672, - 6456933152, - 6456932784, - 6456933200, - 6456932720, - 6456933104 + 6456932688, + 6456933168, + 6456932800, + 6456933216, + 6456932736, + 6456933120 ], "bases": [ { @@ -424528,14 +424528,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463125128, + "vtable_address": 6463125160, "methods": [ - 6455016576, - 6455022768, - 6455017488, - 6455023152, - 6455016960, - 6455021104 + 6455016592, + 6455022784, + 6455017504, + 6455023168, + 6455016976, + 6455021120 ], "bases": [ { @@ -424564,14 +424564,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463125184, + "vtable_address": 6463125216, "methods": [ - 6455016464, - 6455022656, - 6455017424, - 6455023104, - 6455016912, - 6455021056 + 6455016480, + 6455022672, + 6455017440, + 6455023120, + 6455016928, + 6455021072 ], "bases": [ { @@ -424600,14 +424600,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class CNavArea *>", - "vtable_address": 6463104072, + "vtable_address": 6463104104, "methods": [ - 6454515728, - 6454522480, - 6454518176, - 6454522976, - 6454516608, - 6454520720 + 6454515744, + 6454522496, + 6454518192, + 6454522992, + 6454516624, + 6454520736 ], "bases": [ { @@ -424744,14 +424744,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &>", - "vtable_address": 6463085360, + "vtable_address": 6463085392, "methods": [ - 6454334256, - 6454334288, - 6454334320, + 6454334272, + 6454334304, 6454334336, - 6454334368, - 6454334352 + 6454334352, + 6454334384, + 6454334368 ], "bases": [ { @@ -424780,7 +424780,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6461858168, + "vtable_address": 6461858184, "methods": [ 6449363072, 6449363104, @@ -424816,7 +424816,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6461858224, + "vtable_address": 6461858240, "methods": [ 6449363248, 6449363280, @@ -424852,7 +424852,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6461859064, + "vtable_address": 6461859080, "methods": [ 6449363616, 6449363648, @@ -424888,7 +424888,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6461858560, + "vtable_address": 6461858576, "methods": [ 6449363424, 6449363504, @@ -424924,7 +424924,7 @@ }, { "type_name": "std::_Func_impl_no_alloc,class CBaseCSGrenadeProjectile *>", - "vtable_address": 6461859120, + "vtable_address": 6461859136, "methods": [ 6449363792, 6449363872, @@ -424962,12 +424962,12 @@ "type_name": "std::_Func_impl_no_alloc > &) const,class CNavGenPolyProcessor *,struct std::_Ph<1> const &>,void,class CUtlVector > &>", "vtable_address": 6463619816, "methods": [ - 6458450800, - 6458455648, - 6458454464, - 6458456048, - 6458452656, - 6458454832 + 6458450816, + 6458455664, + 6458454480, + 6458456064, + 6458452672, + 6458454848 ], "bases": [ { @@ -424998,12 +424998,12 @@ "type_name": "std::_Func_impl_no_alloc (__cdecl CNavGenPolyProcessor::*)(class Vec3D const &),class CNavGenPolyProcessor *,struct std::_Ph<1> const &>,class Vec3D,class Vec3D const &>", "vtable_address": 6463616032, "methods": [ - 6458418992, - 6458420320, - 6458420032, - 6458420464, - 6458419136, - 6458420160 + 6458419008, + 6458420336, + 6458420048, + 6458420480, + 6458419152, + 6458420176 ], "bases": [ { @@ -425034,12 +425034,12 @@ "type_name": "std::_Func_impl_no_alloc > &),class CNavGenPolyProcessor *,struct std::_Ph<1> const &>,void,class CUtlVector > &>", "vtable_address": 6463620768, "methods": [ - 6458450128, - 6458455312, - 6458454128, - 6458455920, - 6458452032, - 6458454704 + 6458450144, + 6458455328, + 6458454144, + 6458455936, + 6458452048, + 6458454720 ], "bases": [ { @@ -425070,12 +425070,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CNavGenParams const &),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,class CNavGenParams const &>,void,class CUtlVector > &>", "vtable_address": 6463620656, "methods": [ - 6458450304, - 6458455488, - 6458454240, - 6458455968, - 6458452080, - 6458454752 + 6458450320, + 6458455504, + 6458454256, + 6458455984, + 6458452096, + 6458454768 ], "bases": [ { @@ -425106,12 +425106,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CNavGenParams const &,class CUtlVector > *),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,class CNavGenParams const &,class CUtlVector > * &>,void,class CUtlVector > &>", "vtable_address": 6463620040, "methods": [ - 6458450576, - 6458455520, - 6458454368, - 6458456000, - 6458452448, - 6458454784 + 6458450592, + 6458455536, + 6458454384, + 6458456016, + 6458452464, + 6458454800 ], "bases": [ { @@ -425142,12 +425142,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CNavGenParams const &,double,double,double,double,bool,double,class CNavGenParams const &),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,class CNavGenParams const &,float,float,float,float,bool,float,bool>,void,class CUtlVector > &>", "vtable_address": 6463620432, "methods": [ - 6458450400, - 6458455504, - 6458454256, - 6458455984, - 6458452256, - 6458454768 + 6458450416, + 6458455520, + 6458454272, + 6458456000, + 6458452272, + 6458454784 ], "bases": [ { @@ -425178,12 +425178,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > const &,double) const,class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,float>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620096, "methods": [ - 6458450736, - 6458455584, - 6458454432, - 6458456032, - 6458452640, - 6458454816 + 6458450752, + 6458455600, + 6458454448, + 6458456048, + 6458452656, + 6458454832 ], "bases": [ { @@ -425214,12 +425214,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > const &,double,double),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,float,float>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620264, "methods": [ - 6458450240, - 6458455424, - 6458454192, - 6458455952, - 6458452064, - 6458454736 + 6458450256, + 6458455440, + 6458454208, + 6458455968, + 6458452080, + 6458454752 ], "bases": [ { @@ -425250,12 +425250,12 @@ "type_name": "std::_Func_impl_no_alloc > &,class CUtlVector > const &,int,double),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,int,float>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620208, "methods": [ - 6458450176, - 6458455360, - 6458454144, - 6458455936, - 6458452048, - 6458454720 + 6458450192, + 6458455376, + 6458454160, + 6458455952, + 6458452064, + 6458454736 ], "bases": [ { @@ -425286,12 +425286,12 @@ "type_name": "std::_Func_impl_no_alloc > &,double),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,float>,void,class CUtlVector > &>", "vtable_address": 6463620488, "methods": [ - 6458450688, - 6458455536, - 6458454400, - 6458456016, - 6458452624, - 6458454800 + 6458450704, + 6458455552, + 6458454416, + 6458456032, + 6458452640, + 6458454816 ], "bases": [ { @@ -425322,12 +425322,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620600, "methods": [ - 6458449024, - 6458455024, - 6458453584, - 6458455760, - 6458450912, - 6458454544 + 6458449040, + 6458455040, + 6458453600, + 6458455776, + 6458450928, + 6458454560 ], "bases": [ { @@ -425358,12 +425358,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,bool,class CNavGenParams const &),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,bool,class CNavGenParams const &>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620824, "methods": [ - 6458450000, - 6458455296, - 6458454080, - 6458455904, - 6458451856, - 6458454688 + 6458450016, + 6458455312, + 6458454096, + 6458455920, + 6458451872, + 6458454704 ], "bases": [ { @@ -425394,12 +425394,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,class CNavGenParams const &),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,class CNavGenParams const &>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620712, "methods": [ - 6458449072, - 6458455072, - 6458453600, - 6458455776, - 6458450928, - 6458454560 + 6458449088, + 6458455088, + 6458453616, + 6458455792, + 6458450944, + 6458454576 ], "bases": [ { @@ -425430,12 +425430,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,class CNavGenParams const &,bool),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,class CNavGenParams const &,bool>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620376, "methods": [ - 6458449616, - 6458455136, - 6458453840, - 6458455840, - 6458451632, - 6458454624 + 6458449632, + 6458455152, + 6458453856, + 6458455856, + 6458451648, + 6458454640 ], "bases": [ { @@ -425466,12 +425466,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,class CNavGenParams const &,double),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,class CNavGenParams const &,float>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620544, "methods": [ - 6458449184, - 6458455088, - 6458453632, - 6458455792, - 6458451104, - 6458454576 + 6458449200, + 6458455104, + 6458453648, + 6458455808, + 6458451120, + 6458454592 ], "bases": [ { @@ -425502,12 +425502,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,class CNavGenParams const &,double,double,double),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,class CNavGenParams const &,float,float,float>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620320, "methods": [ - 6458449312, - 6458455104, - 6458453680, - 6458455808, - 6458451280, - 6458454592 + 6458449328, + 6458455120, + 6458453696, + 6458455824, + 6458451296, + 6458454608 ], "bases": [ { @@ -425538,12 +425538,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,class CNavGenParams const &,double,double,double,bool),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,class CNavGenParams const &,float,float,float,bool>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463619984, "methods": [ - 6458449456, - 6458455120, - 6458453760, - 6458455824, - 6458451456, - 6458454608 + 6458449472, + 6458455136, + 6458453776, + 6458455840, + 6458451472, + 6458454624 ], "bases": [ { @@ -425574,12 +425574,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,double),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,float>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463619928, "methods": [ - 6458449728, - 6458455152, - 6458453888, - 6458455856, - 6458451808, - 6458454640 + 6458449744, + 6458455168, + 6458453904, + 6458455872, + 6458451824, + 6458454656 ], "bases": [ { @@ -425610,12 +425610,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,double,double),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,float,float>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463619872, "methods": [ - 6458449792, - 6458455216, - 6458453920, - 6458455872, - 6458451824, - 6458454656 + 6458449808, + 6458455232, + 6458453936, + 6458455888, + 6458451840, + 6458454672 ], "bases": [ { @@ -425646,12 +425646,12 @@ "type_name": "std::_Func_impl_no_alloc > &,struct std::_Unforced,double,double,double,double,double,double,int),class CNavGenPolyProcessor *,struct std::_Ph<1> const &,struct std::_Ph<2> const &,float,float,float,float,float,float,int>,void,class CUtlVector > &,class CUtlVector > &>", "vtable_address": 6463620152, "methods": [ - 6458449856, - 6458455280, - 6458453968, - 6458455888, - 6458451840, - 6458454672 + 6458449872, + 6458455296, + 6458453984, + 6458455904, + 6458451856, + 6458454688 ], "bases": [ { @@ -425682,12 +425682,12 @@ "type_name": "std::_Func_impl_no_alloc)>,bool,class Vec3D const &>", "vtable_address": 6463628904, "methods": [ - 6458751680, - 6458752672, - 6458752400, - 6458752752, - 6458751840, - 6458752528 + 6458751696, + 6458752688, + 6458752416, + 6458752768, + 6458751856, + 6458752544 ], "bases": [ { @@ -425716,14 +425716,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,void,class CNavBlock * const &>", - "vtable_address": 6463118016, + "vtable_address": 6463118048, "methods": [ - 6454900944, - 6454905856, - 6454904448, - 6454906320, - 6454901568, - 6454904944 + 6454900960, + 6454905872, + 6454904464, + 6454906336, + 6454901584, + 6454904960 ], "bases": [ { @@ -425752,14 +425752,14 @@ }, { "type_name": "std::_Func_impl_no_alloc >,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463105440, + "vtable_address": 6463105472, "methods": [ - 6454516384, - 6454522752, - 6454519216, - 6454523184, - 6454517072, - 6454520928 + 6454516400, + 6454522768, + 6454519232, + 6454523200, + 6454517088, + 6454520944 ], "bases": [ { @@ -425788,14 +425788,14 @@ }, { "type_name": "std::_Func_impl_no_alloc,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463125408, + "vtable_address": 6463125440, "methods": [ - 6455016784, - 6455022976, - 6455017920, - 6455023264, - 6455017072, - 6455021216 + 6455016800, + 6455022992, + 6455017936, + 6455023280, + 6455017088, + 6455021232 ], "bases": [ { @@ -426112,14 +426112,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const &,class CNavArea const &)> >,enum NavSearchPosResult_t,class Vec3D const &,class CNavArea const &>", - "vtable_address": 6463105160, + "vtable_address": 6463105192, "methods": [ - 6454516416, - 6454522784, - 6454519232, - 6454523200, - 6454517088, - 6454520944 + 6454516432, + 6454522800, + 6454519248, + 6454523216, + 6454517104, + 6454520960 ], "bases": [ { @@ -426148,14 +426148,14 @@ }, { "type_name": "std::_Func_impl_no_alloc const *)> >,enum NavSearchResult_t,class CNavArea &,struct NavSearchInfo_t const *>", - "vtable_address": 6463125352, + "vtable_address": 6463125384, "methods": [ - 6455016752, - 6455022944, - 6455017872, - 6455023248, - 6455017056, - 6455021200 + 6455016768, + 6455022960, + 6455017888, + 6455023264, + 6455017072, + 6455021216 ], "bases": [ { @@ -426184,7 +426184,7 @@ }, { "type_name": "std::_Func_impl_no_alloc", - "vtable_address": 6462917392, + "vtable_address": 6462917408, "methods": [ 6453637904, 6453638464, @@ -426220,14 +426220,14 @@ }, { "type_name": "std::_Generic_error_category", - "vtable_address": 6463272320, + "vtable_address": 6463272352, "methods": [ - 6456961360, - 6456962688, - 6456962592, - 6455525264, - 6455525568, - 6455525600 + 6456961376, + 6456962704, + 6456962608, + 6455525280, + 6455525584, + 6455525616 ], "bases": [ { @@ -426256,14 +426256,14 @@ }, { "type_name": "std::_Iostream_error_category2", - "vtable_address": 6463175016, + "vtable_address": 6463175048, "methods": [ - 6455523856, - 6455525888, - 6455525760, - 6455525264, - 6455525568, - 6455525600 + 6455523872, + 6455525904, + 6455525776, + 6455525280, + 6455525584, + 6455525616 ], "bases": [ { @@ -426294,9 +426294,9 @@ "type_name": "std::_Ref_count > >", "vtable_address": 6463615832, "methods": [ - 6458419616, - 6458419216, - 6458355504, + 6458419632, + 6458419232, + 6458355520, 6450874192 ], "bases": [ @@ -426328,9 +426328,9 @@ "type_name": "std::_Ref_count > >", "vtable_address": 6463615872, "methods": [ - 6458419472, - 6458419184, - 6458355456, + 6458419488, + 6458419200, + 6458355472, 6450874192 ], "bases": [ @@ -426362,9 +426362,9 @@ "type_name": "std::_Ref_count", "vtable_address": 6463615792, "methods": [ - 6458419248, - 6458419152, - 6458355408, + 6458419264, + 6458419168, + 6458355424, 6450874192 ], "bases": [ @@ -426394,7 +426394,7 @@ }, { "type_name": "std::_Ref_count_obj2", - "vtable_address": 6462258744, + "vtable_address": 6462258776, "methods": [ 6450873056, 6450873024, @@ -426430,10 +426430,10 @@ "type_name": "std::_Ref_count_resource >", "vtable_address": 6463619776, "methods": [ - 6458452704, - 6458452672, - 6458426992, - 6458454848 + 6458452720, + 6458452688, + 6458427008, + 6458454864 ], "bases": [ { @@ -426462,9 +426462,9 @@ }, { "type_name": "std::_System_error", - "vtable_address": 6463174968, + "vtable_address": 6463175000, "methods": [ - 6455523904, + 6455523920, 6443778368 ], "bases": [ @@ -426510,7 +426510,7 @@ "type_name": "std::__non_rtti_object", "vtable_address": 6463721448, "methods": [ - 6459887268, + 6459887284, 6443778368 ], "bases": [ @@ -426632,9 +426632,9 @@ }, { "type_name": "std::bad_cast", - "vtable_address": 6463175112, + "vtable_address": 6463175144, "methods": [ - 6455523984, + 6455524000, 6443778368 ], "bases": [ @@ -426666,7 +426666,7 @@ "type_name": "std::bad_exception", "vtable_address": 6463720808, "methods": [ - 6459880456, + 6459880472, 6443778368 ], "bases": [ @@ -426698,8 +426698,8 @@ "type_name": "std::bad_function_call", "vtable_address": 6463716808, "methods": [ - 6459874324, - 6459874768 + 6459874340, + 6459874784 ], "bases": [ { @@ -426730,7 +426730,7 @@ "type_name": "std::bad_typeid", "vtable_address": 6463721424, "methods": [ - 6459887336, + 6459887352, 6443778368 ], "bases": [ @@ -426792,9 +426792,9 @@ }, { "type_name": "std::basic_ios >", - "vtable_address": 6463175496, + "vtable_address": 6463175528, "methods": [ - 6455523168 + 6455523184 ], "bases": [ { @@ -426837,9 +426837,9 @@ }, { "type_name": "std::basic_iostream >", - "vtable_address": 6463182584, + "vtable_address": 6463182616, "methods": [ - 6455591772 + 6455591788 ], "bases": [ { @@ -426966,9 +426966,9 @@ }, { "type_name": "std::basic_istream >", - "vtable_address": 6463182560, + "vtable_address": 6463182592, "methods": [ - 6455591784 + 6455591800 ], "bases": [ { @@ -427025,9 +427025,9 @@ }, { "type_name": "std::basic_ostream >", - "vtable_address": 6463175512, + "vtable_address": 6463175544, "methods": [ - 6455523152 + 6455523168 ], "bases": [ { @@ -427084,23 +427084,23 @@ }, { "type_name": "std::basic_streambuf >", - "vtable_address": 6463175528, + "vtable_address": 6463175560, "methods": [ - 6455523344, - 6455524944, - 6455525024, - 6455525904, - 6455526368, + 6455523360, + 6455524960, + 6455525040, + 6455525920, + 6455526384, + 6455527168, + 6455527264, + 6455527200, + 6455527408, + 6455527584, + 6455526496, + 6455526880, 6455527152, - 6455527248, 6455527184, - 6455527392, - 6455527568, - 6455526480, - 6455526864, - 6455527136, - 6455527168, - 6455525712 + 6455525728 ], "bases": [], "model": { @@ -427114,23 +427114,23 @@ }, { "type_name": "std::basic_stringbuf,class std::allocator >", - "vtable_address": 6463175656, + "vtable_address": 6463175688, "methods": [ - 6455523472, - 6455524944, - 6455525024, - 6455525920, - 6455526384, + 6455523488, + 6455524960, + 6455525040, + 6455525936, + 6455526400, + 6455527168, + 6455527280, + 6455527200, + 6455527408, + 6455527584, + 6455526528, + 6455526912, 6455527152, - 6455527264, 6455527184, - 6455527392, - 6455527568, - 6455526512, - 6455526896, - 6455527136, - 6455527168, - 6455525712 + 6455525728 ], "bases": [ { @@ -427159,9 +427159,9 @@ }, { "type_name": "std::basic_stringstream,class std::allocator >", - "vtable_address": 6463182600, + "vtable_address": 6463182632, "methods": [ - 6455591796 + 6455591812 ], "bases": [ { @@ -427302,19 +427302,19 @@ }, { "type_name": "std::ctype", - "vtable_address": 6463175200, + "vtable_address": 6463175232, "methods": [ - 6455523536, - 6455524928, - 6455524432, + 6455523552, + 6455524944, + 6455524448, + 6455525360, 6455525344, - 6455525328, + 6455525456, 6455525440, - 6455525424, + 6455525552, 6455525536, - 6455525520, - 6455525296, - 6455525280 + 6455525312, + 6455525296 ], "bases": [ { @@ -427385,14 +427385,14 @@ }, { "type_name": "std::error_category", - "vtable_address": 6463272264, + "vtable_address": 6463272296, "methods": [ - 6456961408, - 6459886716, - 6459886716, - 6455525264, - 6455525568, - 6455525600 + 6456961424, + 6459886732, + 6459886732, + 6455525280, + 6455525584, + 6455525616 ], "bases": [], "model": { @@ -427423,9 +427423,9 @@ }, { "type_name": "std::ios_base", - "vtable_address": 6463175320, + "vtable_address": 6463175352, "methods": [ - 6455524144 + 6455524160 ], "bases": [ { @@ -427454,9 +427454,9 @@ }, { "type_name": "std::ios_base::failure", - "vtable_address": 6463175296, + "vtable_address": 6463175328, "methods": [ - 6455524064, + 6455524080, 6443778368 ], "bases": [ @@ -427530,7 +427530,7 @@ "type_name": "std::length_error", "vtable_address": 6463716880, "methods": [ - 6459874392, + 6459874408, 6443778368 ], "bases": [ @@ -427576,9 +427576,9 @@ "type_name": "std::locale::_Locimp", "vtable_address": 6463720760, "methods": [ - 6459878084, - 6455524928, - 6455524432 + 6459878100, + 6455524944, + 6455524448 ], "bases": [ { @@ -427637,7 +427637,7 @@ "type_name": "std::logic_error", "vtable_address": 6463716856, "methods": [ - 6459874460, + 6459874476, 6443778368 ], "bases": [ @@ -427667,19 +427667,19 @@ }, { "type_name": "std::num_put > >", - "vtable_address": 6463187736, + "vtable_address": 6463187768, "methods": [ - 6455592160, - 6455524928, - 6455524432, - 6455789728, - 6455788992, - 6455788272, - 6455790176, - 6455789888, - 6455787984, - 6455787696, - 6455790464 + 6455592176, + 6455524944, + 6455524448, + 6455789744, + 6455789008, + 6455788288, + 6455790192, + 6455789904, + 6455788000, + 6455787712, + 6455790480 ], "bases": [ { @@ -427736,16 +427736,16 @@ }, { "type_name": "std::numpunct", - "vtable_address": 6463187904, - "methods": [ - 6455592208, - 6455524928, - 6455524432, - 6455787520, - 6455791136, - 6455787616, + "vtable_address": 6463187936, + "methods": [ + 6455592224, + 6455524944, + 6455524448, 6455787536, - 6455791152 + 6455791152, + 6455787632, + 6455787552, + 6455791168 ], "bases": [ { @@ -427804,7 +427804,7 @@ "type_name": "std::out_of_range", "vtable_address": 6463716904, "methods": [ - 6459874528, + 6459874544, 6443778368 ], "bases": [ @@ -427848,9 +427848,9 @@ }, { "type_name": "std::runtime_error", - "vtable_address": 6463174944, + "vtable_address": 6463174976, "methods": [ - 6455524208, + 6455524224, 6443778368 ], "bases": [ @@ -427880,9 +427880,9 @@ }, { "type_name": "std::system_error", - "vtable_address": 6463174992, + "vtable_address": 6463175024, "methods": [ - 6455524288, + 6455524304, 6443778368 ], "bases": [ @@ -427942,8 +427942,8 @@ "type_name": "type_info", "vtable_address": 6463721384, "methods": [ - 6459882156, - 6459883080 + 6459882172, + 6459883096 ], "bases": [], "model": { diff --git a/dump/windows/vtables/server_short.txt b/dump/windows/vtables/server_short.txt index c8d68fc..4abb638 100644 --- a/dump/windows/vtables/server_short.txt +++ b/dump/windows/vtables/server_short.txt @@ -253,7 +253,7 @@ CCLCMsg_HltvReplay [19] CCLCMsg_ListenEvents [17] CCLCMsg_LoadingProgress [21] CCLCMsg_Move [19] -CCLCMsg_RconServerDetails [17] +CCLCMsg_RconServerDetails [19] CCLCMsg_RequestPause [23] CCLCMsg_RespondCvarValue [21] CCLCMsg_ServerStatus [21] @@ -2494,7 +2494,7 @@ CSPerRoundStats_t [5] CSVCMsgList_GameEvents [23] CSVCMsgList_GameEvents_event_t [17] CSVCMsg_BSPDecal [19] -CSVCMsg_Broadcast_Command [25] +CSVCMsg_Broadcast_Command [23] CSVCMsg_ClassInfo [17] CSVCMsg_ClassInfo_class_t [17] CSVCMsg_ClearAllStringTables [17] diff --git a/headers/s2binlib001.h b/headers/s2binlib001.h new file mode 100644 index 0000000..9f524d3 --- /dev/null +++ b/headers/s2binlib001.h @@ -0,0 +1,387 @@ +/************************************************************************************ + * S2BinLib - A static library that helps resolving memory from binary file + * and map to absolute memory address, targeting source 2 game engine. + * Copyright (C) 2025 samyyc + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + ***********************************************************************************/ + +#ifndef _s2binlib_s2binlib001_h +#define _s2binlib_s2binlib001_h + +#pragma once + +#include +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +#define S2BINLIB_INTERFACE_NAME "S2BINLIB001" + + /// Forward declaration + struct S2BinLib001; + + /// Callback function type for pattern_scan_all functions + /// @param index The index of the current match (0-based) + /// @param address The found address (RVA or memory address depending on the function) + /// @param user_data User-provided data pointer + /// @return true to stop searching, false to continue searching for more matches + typedef bool (*PatternScanCallback)(size_t index, void *address, void *user_data); + + /// Create a new S2BinLib001 instance + /// @param interface_name Interface name to create + /// @return Pointer to the created instance, or nullptr on failure + typedef S2BinLib001 *(*S2CreateInterfaceFn)(const char *interface_name); + +#ifdef __cplusplus +} + +/// S2BinLib001 class - Interface version 001 +/// This class provides access to S2BinLib functionality through a virtual table interface +class S2BinLib001 +{ +public: + /// Initialize with auto-detected operating system + /// @param game_path Path to the game directory (null-terminated C string) + /// @param game_type Game type identifier (null-terminated C string) + /// @return 0 on success, negative error code on failure + virtual int Initialize(const char *game_path, const char *game_type) = 0; + + /// Initialize with explicit operating system parameter + /// @param game_path Path to the game directory (null-terminated C string) + /// @param game_type Game type identifier (null-terminated C string) + /// @param os Operating system ("windows" or "linux") (null-terminated C string) + /// @return 0 on success, negative error code on failure + virtual int InitializeWithOs(const char *game_path, const char *game_type, const char *os) = 0; + + /// Scan for a pattern in the specified binary and return its memory address + /// @param binary_name Name of the binary to scan (e.g., "server", "client") + /// @param pattern Pattern string with wildcards (e.g., "48 89 5C 24 ? 48 89 74 24 ?") + /// @param result Pointer to store the resulting address + /// @return 0 on success, negative error code on failure + virtual int PatternScan(const char *binary_name, const char *pattern, void **result) = 0; + + /// Find a vtable by class name and return its memory address + /// @param binary_name Name of the binary to search (e.g., "server", "client") + /// @param vtable_name Class name to search for + /// @param result Pointer to store the resulting vtable address + /// @return 0 on success, negative error code on failure + virtual int FindVtable(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a symbol by name and return its memory address + /// @param binary_name Name of the binary to search + /// @param symbol_name Symbol name to search for + /// @param result Pointer to store the resulting symbol address + /// @return 0 on success, negative error code on failure + virtual int FindSymbol(const char *binary_name, const char *symbol_name, void **result) = 0; + + /// Set module base address from a pointer inside the module + /// @param binary_name Name of the binary + /// @param pointer Pointer inside the specified module + /// @return 0 on success, negative error code on failure + virtual int SetModuleBaseFromPointer(const char *binary_name, void *pointer) = 0; + + /// Clear manually set base address for a module + /// @param binary_name Name of the binary + /// @return 0 on success, negative error code on failure + virtual int ClearModuleBaseAddress(const char *binary_name) = 0; + + /// Set a custom binary path for a specific binary and operating system + /// @param binary_name Name of the binary + /// @param path The custom file path to the binary + /// @param os Operating system identifier ("windows" or "linux") + /// @return 0 on success, negative error code on failure + virtual int SetCustomBinaryPath(const char *binary_name, const char *path, const char *os) = 0; + + /// Get the module base address + /// @param binary_name Name of the binary + /// @param result Pointer to store the resulting base address + /// @return 0 on success, negative error code on failure + virtual int GetModuleBaseAddress(const char *binary_name, void **result) const = 0; + + /// Check if a binary is already loaded + /// @param binary_name Name of the binary to check + /// @return 1 if loaded, 0 if not loaded, negative error code on failure + virtual int IsBinaryLoaded(const char *binary_name) const = 0; + + /// Load a binary into memory + /// @param binary_name Name of the binary to load + /// @return 0 on success, negative error code on failure + virtual int LoadBinary(const char *binary_name) = 0; + + /// Get the full path to a binary file + /// @param binary_name Name of the binary + /// @param buffer Buffer to store the path string + /// @param buffer_size Size of the buffer + /// @return 0 on success, negative error code on failure + virtual int GetBinaryPath(const char *binary_name, char *buffer, size_t buffer_size) const = 0; + + /// Find a vtable by class name and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param vtable_name Class name to search for + /// @param result Pointer to store the resulting vtable RVA + /// @return 0 on success, negative error code on failure + virtual int FindVtableRva(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a vtable by mangled name and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param vtable_name Mangled RTTI name to search for + /// @param result Pointer to store the resulting vtable RVA + /// @return 0 on success, negative error code on failure + virtual int FindVtableMangledRva(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a vtable by mangled name and return its runtime memory address + /// @param binary_name Name of the binary to search + /// @param vtable_name Mangled RTTI name to search for + /// @param result Pointer to store the resulting vtable memory address + /// @return 0 on success, negative error code on failure + virtual int FindVtableMangled(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a nested vtable (2 levels) by class names and return its RVA + /// @param binary_name Name of the binary to search + /// @param class1_name Outer class name + /// @param class2_name Inner/nested class name + /// @param result Pointer to store the resulting vtable RVA + /// @return 0 on success, negative error code on failure + virtual int FindVtableNested2Rva(const char *binary_name, const char *class1_name, const char *class2_name, void **result) = 0; + + /// Find a nested vtable (2 levels) by class names and return its memory address + /// @param binary_name Name of the binary to search + /// @param class1_name Outer class name + /// @param class2_name Inner/nested class name + /// @param result Pointer to store the resulting vtable memory address + /// @return 0 on success, negative error code on failure + virtual int FindVtableNested2(const char *binary_name, const char *class1_name, const char *class2_name, void **result) = 0; + + /// Get the number of virtual functions in a vtable + /// @param binary_name Name of the binary to search + /// @param vtable_name Name of the vtable/class + /// @param result Pointer to store the resulting vfunc count + /// @return 0 on success, negative error code on failure + virtual int GetVtableVfuncCount(const char *binary_name, const char *vtable_name, size_t *result) = 0; + + /// Get the number of virtual functions in a vtable by RVA + /// @param binary_name Name of the binary + /// @param vtable_rva Virtual address of the vtable + /// @param result Pointer to store the resulting vfunc count + /// @return 0 on success, negative error code on failure + virtual int GetVtableVfuncCountByRva(const char *binary_name, uint64_t vtable_rva, size_t *result) = 0; + + /// Scan for a pattern and return its relative virtual address + /// @param binary_name Name of the binary to scan + /// @param pattern Pattern string with wildcards + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int PatternScanRva(const char *binary_name, const char *pattern, void **result) = 0; + + /// Find all occurrences of a pattern and return their RVAs via callback + /// @param binary_name Name of the binary to scan + /// @param pattern Byte pattern to search for + /// @param callback Function pointer that will be called for each match + /// @param user_data User-provided pointer passed to each callback invocation + /// @return 0 on success, negative error code on failure + virtual int PatternScanAllRva(const char *binary_name, const char *pattern, PatternScanCallback callback, void *user_data) = 0; + + /// Find all occurrences of a pattern and return their memory addresses via callback + /// @param binary_name Name of the binary to scan + /// @param pattern Byte pattern to search for + /// @param callback Function pointer that will be called for each match + /// @param user_data User-provided pointer passed to each callback invocation + /// @return 0 on success, negative error code on failure + virtual int PatternScanAll(const char *binary_name, const char *pattern, PatternScanCallback callback, void *user_data) = 0; + + /// Find an exported symbol and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param export_name Export name to search for + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindExportRva(const char *binary_name, const char *export_name, void **result) = 0; + + /// Find an exported symbol and return its runtime memory address + /// @param binary_name Name of the binary to search + /// @param export_name Export name to search for + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindExport(const char *binary_name, const char *export_name, void **result) = 0; + + /// Find a symbol and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param symbol_name Symbol name to search for + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindSymbolRva(const char *binary_name, const char *symbol_name, void **result) = 0; + + /// Read bytes from binary at a file offset + /// @param binary_name Name of the binary to read from + /// @param file_offset File offset to read from + /// @param buffer Buffer to store the read bytes + /// @param buffer_size Size of the buffer (number of bytes to read) + /// @return 0 on success, negative error code on failure + virtual int ReadByFileOffset(const char *binary_name, uint64_t file_offset, uint8_t *buffer, size_t buffer_size) = 0; + + /// Read bytes from binary at a relative virtual address + /// @param binary_name Name of the binary to read from + /// @param rva Virtual address to read from + /// @param buffer Buffer to store the read bytes + /// @param buffer_size Size of the buffer (number of bytes to read) + /// @return 0 on success, negative error code on failure + virtual int ReadByRva(const char *binary_name, uint64_t rva, uint8_t *buffer, size_t buffer_size) = 0; + + /// Read bytes from binary at a runtime memory address + /// @param binary_name Name of the binary to read from + /// @param mem_address Runtime memory address to read from + /// @param buffer Buffer to store the read bytes + /// @param buffer_size Size of the buffer (number of bytes to read) + /// @return 0 on success, negative error code on failure + virtual int ReadByMemAddress(const char *binary_name, uint64_t mem_address, uint8_t *buffer, size_t buffer_size) = 0; + + /// Find a virtual function by vtable name and index, return RVA + /// @param binary_name Name of the binary to search + /// @param vtable_name Class name whose vtable to search for + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbnameRva(const char *binary_name, const char *vtable_name, size_t vfunc_index, void **result) = 0; + + /// Find a virtual function by vtable name and index, return memory address + /// @param binary_name Name of the binary to search + /// @param vtable_name Class name whose vtable to search for + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbname(const char *binary_name, const char *vtable_name, size_t vfunc_index, void **result) = 0; + + /// Find a virtual function by vtable pointer and index, return RVA + /// @param vtable_ptr Runtime pointer to the vtable + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbptrRva(void *vtable_ptr, size_t vfunc_index, void **result) const = 0; + + /// Find a virtual function by vtable pointer and index, return memory address + /// @param vtable_ptr Runtime pointer to the vtable + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbptr(void *vtable_ptr, size_t vfunc_index, void **result) const = 0; + + /// Get the vtable name from an object pointer + /// @param object_ptr Pointer to the object + /// @param buffer Buffer to store the vtable name + /// @param buffer_size Size of the buffer + /// @return 0 on success, negative error code on failure + virtual int GetObjectPtrVtableName(const void *object_ptr, char *buffer, size_t buffer_size) const = 0; + + /// Check if an object pointer has a valid vtable + /// @param object_ptr Pointer to the object + /// @return 1 if has vtable, 0 if not, negative error code on failure + virtual int ObjectPtrHasVtable(const void *object_ptr) const = 0; + + /// Check if an object has a specific base class + /// @param object_ptr Pointer to the object + /// @param base_class_name Name of the base class to check + /// @return 1 if has base class, 0 if not, negative error code on failure + virtual int ObjectPtrHasBaseClass(const void *object_ptr, const char *base_class_name) const = 0; + + /// Find a string in the binary and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param string String to search for + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindStringRva(const char *binary_name, const char *string, void **result) = 0; + + /// Find a string in the binary and return its runtime memory address + /// @param binary_name Name of the binary to search + /// @param string String to search for + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindString(const char *binary_name, const char *string, void **result) = 0; + + /// Dump and cache all cross-references in a binary + /// @param binary_name Name of the binary to analyze + /// @return 0 on success, negative error code on failure + virtual int DumpXrefs(const char *binary_name) = 0; + + /// Get the count of cached cross-references for a target RVA + /// @param binary_name Name of the binary + /// @param target_rva The target relative virtual address + /// @return Non-negative count of xrefs, negative error code on failure + virtual int GetXrefsCount(const char *binary_name, void *target_rva) const = 0; + + /// Get cached cross-references for a target RVA into a buffer + /// @param binary_name Name of the binary + /// @param target_rva The target relative virtual address + /// @param buffer Buffer to store the xref addresses + /// @param buffer_size Size of the buffer (number of void* elements) + /// @return Non-negative count of xrefs written, negative error code on failure + virtual int GetXrefsCached(const char *binary_name, void *target_rva, void **buffer, size_t buffer_size) const = 0; + + /// Unload a specific binary from memory + /// @param binary_name Name of the binary to unload + /// @return 0 on success, negative error code on failure + virtual int UnloadBinary(const char *binary_name) = 0; + + /// Unload all binaries from memory + /// @return 0 on success, negative error code on failure + virtual int UnloadAllBinaries() = 0; + + /// Install a JIT trampoline at a memory address + /// @param mem_address Runtime memory address where to install the trampoline + /// @param trampoline_address_out Pointer to store the trampoline address + /// @return 0 on success, negative error code on failure + virtual int InstallTrampoline(void *mem_address, void **trampoline_address_out) = 0; + + /// Follow cross-reference from memory address to memory address + /// @param mem_address Runtime memory address to analyze + /// @param target_address_out Pointer to store the target address + /// @return 0 on success, negative error code on failure + virtual int FollowXrefMemToMem(const void *mem_address, void **target_address_out) const = 0; + + /// Follow cross-reference from RVA to memory address + /// @param binary_name Name of the binary + /// @param rva Virtual address to analyze + /// @param target_address_out Pointer to store the target memory address + /// @return 0 on success, negative error code on failure + virtual int FollowXrefRvaToMem(const char *binary_name, uint64_t rva, void **target_address_out) = 0; + + /// Follow cross-reference from RVA to RVA + /// @param binary_name Name of the binary + /// @param rva Virtual address to analyze + /// @param target_rva_out Pointer to store the target RVA + /// @return 0 on success, negative error code on failure + virtual int FollowXrefRvaToRva(const char *binary_name, uint64_t rva, uint64_t *target_rva_out) = 0; + + /// Find the NetworkVar_StateChanged vtable index by RVA + /// @param vtable_rva Virtual address of the vtable to analyze + /// @param result Pointer to store the resulting index + /// @return 0 on success, negative error code on failure + virtual int FindNetworkvarVtableStatechangedRva(uint64_t vtable_rva, uint64_t *result) const = 0; + + /// Find the NetworkVar_StateChanged vtable index by memory address + /// @param vtable_mem_address Runtime memory address of the vtable + /// @param result Pointer to store the resulting index + /// @return 0 on success, negative error code on failure + virtual int FindNetworkvarVtableStatechanged(uint64_t vtable_mem_address, uint64_t *result) const = 0; + + /// Destroy the S2BinLib001 instance + /// @return 0 on success, negative error code on failure + virtual int Destroy() = 0; +}; + +#endif // __cplusplus + +#endif // _s2binlib_s2binlib001_h \ No newline at end of file diff --git a/headers/s2binlib_static.h b/headers/s2binlib_static.h new file mode 100644 index 0000000..af16549 --- /dev/null +++ b/headers/s2binlib_static.h @@ -0,0 +1,436 @@ +/************************************************************************************ + * S2BinLib - A static library that helps resolving memory from binary file + * and map to absolute memory address, targeting source 2 game engine. + * Copyright (C) 2025 samyyc + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + ***********************************************************************************/ + +#pragma once + +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @file s2binlib.h + * @brief S2BinLib Global Singleton C API + * + * This header provides a thread-safe global singleton interface to S2BinLib. + * All functions use snake_case naming and are prefixed with s2binlib_. + * + * @note Error Codes: + * 0: Success + * -1: Not initialized + * -2: Invalid parameter + * -3: Operation failed + * -4: Not found + * -99: Mutex poisoned (internal error) + */ + +// ============================================================================ +// Type Definitions +// ============================================================================ + +/// Callback function type for pattern_scan_all functions +/// @param index The index of the current match (0-based) +/// @param address The found address (RVA or memory address depending on the function) +/// @param user_data User-provided data pointer +typedef void (*PatternScanCallback)(size_t index, void* address, void* user_data); + +// ============================================================================ +// Lifecycle Functions +// ============================================================================ + +/// Initialize the global S2BinLib001 instance with auto-detected OS +/// @param game_path Path to the game directory (null-terminated C string) +/// @param game_type Game type identifier (null-terminated C string) +/// @return 0 on success, negative error code on failure +int s2binlib_initialize(const char* game_path, const char* game_type); + +/// Initialize the global S2BinLib001 instance with explicit OS +/// @param game_path Path to the game directory (null-terminated C string) +/// @param game_type Game type identifier (null-terminated C string) +/// @param os Operating system ("windows" or "linux") (null-terminated C string) +/// @return 0 on success, negative error code on failure +int s2binlib_initialize_with_os(const char* game_path, const char* game_type, const char* os); + +/// Destroy the global S2BinLib001 instance +/// @return 0 on success, negative error code on failure +int s2binlib_destroy(void); + +// ============================================================================ +// Pattern Scanning Functions +// ============================================================================ + +/// Scan for a pattern in the specified binary and return its memory address +/// @param binary_name Name of the binary to scan (e.g., "server", "client") +/// @param pattern Pattern string with wildcards (e.g., "48 89 5C 24 ? 48 89 74 24 ?") +/// @param result Pointer to store the resulting address +/// @return 0 on success, negative error code on failure +int s2binlib_pattern_scan(const char* binary_name, const char* pattern, void** result); + +/// Scan for a pattern and return its relative virtual address +/// @param binary_name Name of the binary to scan +/// @param pattern Pattern string with wildcards +/// @param result Pointer to store the resulting RVA +/// @return 0 on success, negative error code on failure +int s2binlib_pattern_scan_rva(const char* binary_name, const char* pattern, void** result); + +/// Find all occurrences of a pattern and return their RVAs via callback +/// @param binary_name Name of the binary to scan +/// @param pattern Byte pattern to search for +/// @param callback Function pointer that will be called for each match +/// @param user_data User-provided pointer passed to each callback invocation +/// @return 0 on success, negative error code on failure +int s2binlib_pattern_scan_all_rva(const char* binary_name, const char* pattern, PatternScanCallback callback, void* user_data); + +/// Find all occurrences of a pattern and return their memory addresses via callback +/// @param binary_name Name of the binary to scan +/// @param pattern Byte pattern to search for +/// @param callback Function pointer that will be called for each match +/// @param user_data User-provided pointer passed to each callback invocation +/// @return 0 on success, negative error code on failure +int s2binlib_pattern_scan_all(const char* binary_name, const char* pattern, PatternScanCallback callback, void* user_data); + +// ============================================================================ +// VTable Functions +// ============================================================================ + +/// Find a vtable by class name and return its memory address +/// @param binary_name Name of the binary to search (e.g., "server", "client") +/// @param vtable_name Class name to search for +/// @param result Pointer to store the resulting vtable address +/// @return 0 on success, negative error code on failure +int s2binlib_find_vtable(const char* binary_name, const char* vtable_name, void** result); + +/// Find a vtable by class name and return its relative virtual address +/// @param binary_name Name of the binary to search +/// @param vtable_name Class name to search for +/// @param result Pointer to store the resulting vtable RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_vtable_rva(const char* binary_name, const char* vtable_name, void** result); + +/// Find a vtable by mangled name and return its relative virtual address +/// @param binary_name Name of the binary to search +/// @param vtable_name Mangled RTTI name to search for +/// @param result Pointer to store the resulting vtable RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_vtable_mangled_rva(const char* binary_name, const char* vtable_name, void** result); + +/// Find a vtable by mangled name and return its runtime memory address +/// @param binary_name Name of the binary to search +/// @param vtable_name Mangled RTTI name to search for +/// @param result Pointer to store the resulting vtable memory address +/// @return 0 on success, negative error code on failure +int s2binlib_find_vtable_mangled(const char* binary_name, const char* vtable_name, void** result); + +/// Find a nested vtable (2 levels) by class names and return its RVA +/// @param binary_name Name of the binary to search +/// @param class1_name Outer class name +/// @param class2_name Inner/nested class name +/// @param result Pointer to store the resulting vtable RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_vtable_nested_2_rva(const char* binary_name, const char* class1_name, const char* class2_name, void** result); + +/// Find a nested vtable (2 levels) by class names and return its memory address +/// @param binary_name Name of the binary to search +/// @param class1_name Outer class name +/// @param class2_name Inner/nested class name +/// @param result Pointer to store the resulting vtable memory address +/// @return 0 on success, negative error code on failure +int s2binlib_find_vtable_nested_2(const char* binary_name, const char* class1_name, const char* class2_name, void** result); + +/// Get the number of virtual functions in a vtable +/// @param binary_name Name of the binary to search +/// @param vtable_name Name of the vtable/class +/// @param result Pointer to store the resulting vfunc count +/// @return 0 on success, negative error code on failure +int s2binlib_get_vtable_vfunc_count(const char* binary_name, const char* vtable_name, size_t* result); + +/// Get the number of virtual functions in a vtable by RVA +/// @param binary_name Name of the binary +/// @param vtable_rva Virtual address of the vtable +/// @param result Pointer to store the resulting vfunc count +/// @return 0 on success, negative error code on failure +int s2binlib_get_vtable_vfunc_count_by_rva(const char* binary_name, uint64_t vtable_rva, size_t* result); + +// ============================================================================ +// Virtual Function Functions +// ============================================================================ + +/// Find a virtual function by vtable name and index, return RVA +/// @param binary_name Name of the binary to search +/// @param vtable_name Class name whose vtable to search for +/// @param vfunc_index Index of the virtual function in the vtable (0-based) +/// @param result Pointer to store the resulting RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_vfunc_by_vtbname_rva(const char* binary_name, const char* vtable_name, size_t vfunc_index, void** result); + +/// Find a virtual function by vtable name and index, return memory address +/// @param binary_name Name of the binary to search +/// @param vtable_name Class name whose vtable to search for +/// @param vfunc_index Index of the virtual function in the vtable (0-based) +/// @param result Pointer to store the resulting memory address +/// @return 0 on success, negative error code on failure +int s2binlib_find_vfunc_by_vtbname(const char* binary_name, const char* vtable_name, size_t vfunc_index, void** result); + +/// Find a virtual function by vtable pointer and index, return RVA +/// @param vtable_ptr Runtime pointer to the vtable +/// @param vfunc_index Index of the virtual function in the vtable (0-based) +/// @param result Pointer to store the resulting RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_vfunc_by_vtbptr_rva(void* vtable_ptr, size_t vfunc_index, void** result); + +/// Find a virtual function by vtable pointer and index, return memory address +/// @param vtable_ptr Runtime pointer to the vtable +/// @param vfunc_index Index of the virtual function in the vtable (0-based) +/// @param result Pointer to store the resulting memory address +/// @return 0 on success, negative error code on failure +int s2binlib_find_vfunc_by_vtbptr(void* vtable_ptr, size_t vfunc_index, void** result); + +// ============================================================================ +// Symbol and Export Functions +// ============================================================================ + +/// Find a symbol by name and return its memory address +/// @param binary_name Name of the binary to search +/// @param symbol_name Symbol name to search for +/// @param result Pointer to store the resulting symbol address +/// @return 0 on success, negative error code on failure +int s2binlib_find_symbol(const char* binary_name, const char* symbol_name, void** result); + +/// Find a symbol and return its relative virtual address +/// @param binary_name Name of the binary to search +/// @param symbol_name Symbol name to search for +/// @param result Pointer to store the resulting RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_symbol_rva(const char* binary_name, const char* symbol_name, void** result); + +/// Find an exported symbol and return its relative virtual address +/// @param binary_name Name of the binary to search +/// @param export_name Export name to search for +/// @param result Pointer to store the resulting RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_export_rva(const char* binary_name, const char* export_name, void** result); + +/// Find an exported symbol and return its runtime memory address +/// @param binary_name Name of the binary to search +/// @param export_name Export name to search for +/// @param result Pointer to store the resulting memory address +/// @return 0 on success, negative error code on failure +int s2binlib_find_export(const char* binary_name, const char* export_name, void** result); + +// ============================================================================ +// String Search Functions +// ============================================================================ + +/// Find a string in the binary and return its relative virtual address +/// @param binary_name Name of the binary to search +/// @param string String to search for +/// @param result Pointer to store the resulting RVA +/// @return 0 on success, negative error code on failure +int s2binlib_find_string_rva(const char* binary_name, const char* string, void** result); + +/// Find a string in the binary and return its runtime memory address +/// @param binary_name Name of the binary to search +/// @param string String to search for +/// @param result Pointer to store the resulting memory address +/// @return 0 on success, negative error code on failure +int s2binlib_find_string(const char* binary_name, const char* string, void** result); + +// ============================================================================ +// Module Base Address Functions +// ============================================================================ + +/// Set module base address from a pointer inside the module +/// @param binary_name Name of the binary +/// @param pointer Pointer inside the specified module +/// @return 0 on success, negative error code on failure +int s2binlib_set_module_base_from_pointer(const char* binary_name, void* pointer); + +/// Clear manually set base address for a module +/// @param binary_name Name of the binary +/// @return 0 on success, negative error code on failure +int s2binlib_clear_module_base_address(const char* binary_name); + +/// Get the module base address +/// @param binary_name Name of the binary +/// @param result Pointer to store the resulting base address +/// @return 0 on success, negative error code on failure +int s2binlib_get_module_base_address(const char* binary_name, void** result); + +// ============================================================================ +// Binary Loading Functions +// ============================================================================ + +/// Check if a binary is already loaded +/// @param binary_name Name of the binary to check +/// @return 1 if loaded, 0 if not loaded, negative error code on failure +int s2binlib_is_binary_loaded(const char* binary_name); + +/// Load a binary into memory +/// @param binary_name Name of the binary to load +/// @return 0 on success, negative error code on failure +int s2binlib_load_binary(const char* binary_name); + +/// Get the full path to a binary file +/// @param binary_name Name of the binary +/// @param buffer Buffer to store the path string +/// @param buffer_size Size of the buffer +/// @return 0 on success, negative error code on failure +int s2binlib_get_binary_path(const char* binary_name, char* buffer, size_t buffer_size); + +/// Set a custom binary path for a specific binary and operating system +/// @param binary_name Name of the binary +/// @param path The custom file path to the binary +/// @param os Operating system identifier ("windows" or "linux") +/// @return 0 on success, negative error code on failure +int s2binlib_set_custom_binary_path(const char* binary_name, const char* path, const char* os); + +/// Unload a specific binary from memory +/// @param binary_name Name of the binary to unload +/// @return 0 on success, negative error code on failure +int s2binlib_unload_binary(const char* binary_name); + +/// Unload all binaries from memory +/// @return 0 on success, negative error code on failure +int s2binlib_unload_all_binaries(void); + +// ============================================================================ +// Memory Read Functions +// ============================================================================ + +/// Read bytes from binary at a file offset +/// @param binary_name Name of the binary to read from +/// @param file_offset File offset to read from +/// @param buffer Buffer to store the read bytes +/// @param buffer_size Size of the buffer (number of bytes to read) +/// @return 0 on success, negative error code on failure +int s2binlib_read_by_file_offset(const char* binary_name, uint64_t file_offset, uint8_t* buffer, size_t buffer_size); + +/// Read bytes from binary at a relative virtual address +/// @param binary_name Name of the binary to read from +/// @param rva Virtual address to read from +/// @param buffer Buffer to store the read bytes +/// @param buffer_size Size of the buffer (number of bytes to read) +/// @return 0 on success, negative error code on failure +int s2binlib_read_by_rva(const char* binary_name, uint64_t rva, uint8_t* buffer, size_t buffer_size); + +/// Read bytes from binary at a runtime memory address +/// @param binary_name Name of the binary to read from +/// @param mem_address Runtime memory address to read from +/// @param buffer Buffer to store the read bytes +/// @param buffer_size Size of the buffer (number of bytes to read) +/// @return 0 on success, negative error code on failure +int s2binlib_read_by_mem_address(const char* binary_name, uint64_t mem_address, uint8_t* buffer, size_t buffer_size); + +// ============================================================================ +// Object Pointer Functions +// ============================================================================ + +/// Get the vtable name from an object pointer +/// @param object_ptr Pointer to the object +/// @param buffer Buffer to store the vtable name +/// @param buffer_size Size of the buffer +/// @return 0 on success, negative error code on failure +int s2binlib_get_object_ptr_vtable_name(const void* object_ptr, char* buffer, size_t buffer_size); + +/// Check if an object pointer has a valid vtable +/// @param object_ptr Pointer to the object +/// @return 1 if has vtable, 0 if not, negative error code on failure +int s2binlib_object_ptr_has_vtable(const void* object_ptr); + +/// Check if an object has a specific base class +/// @param object_ptr Pointer to the object +/// @param base_class_name Name of the base class to check +/// @return 1 if has base class, 0 if not, negative error code on failure +int s2binlib_object_ptr_has_base_class(const void* object_ptr, const char* base_class_name); + +// ============================================================================ +// Cross-Reference Functions +// ============================================================================ + +/// Dump and cache all cross-references in a binary +/// @param binary_name Name of the binary to analyze +/// @return 0 on success, negative error code on failure +int s2binlib_dump_xrefs(const char* binary_name); + +/// Get the count of cached cross-references for a target RVA +/// @param binary_name Name of the binary +/// @param target_rva The target relative virtual address +/// @return Non-negative count of xrefs, negative error code on failure +int s2binlib_get_xrefs_count(const char* binary_name, void* target_rva); + +/// Get cached cross-references for a target RVA into a buffer +/// @param binary_name Name of the binary +/// @param target_rva The target relative virtual address +/// @param buffer Buffer to store the xref addresses +/// @param buffer_size Size of the buffer (number of void* elements) +/// @return Non-negative count of xrefs written, negative error code on failure +int s2binlib_get_xrefs_cached(const char* binary_name, void* target_rva, void** buffer, size_t buffer_size); + +/// Follow cross-reference from memory address to memory address +/// @param mem_address Runtime memory address to analyze +/// @param target_address_out Pointer to store the target address +/// @return 0 on success, negative error code on failure +int s2binlib_follow_xref_mem_to_mem(const void* mem_address, void** target_address_out); + +/// Follow cross-reference from RVA to memory address +/// @param binary_name Name of the binary +/// @param rva Virtual address to analyze +/// @param target_address_out Pointer to store the target memory address +/// @return 0 on success, negative error code on failure +int s2binlib_follow_xref_rva_to_mem(const char* binary_name, uint64_t rva, void** target_address_out); + +/// Follow cross-reference from RVA to RVA +/// @param binary_name Name of the binary +/// @param rva Virtual address to analyze +/// @param target_rva_out Pointer to store the target RVA +/// @return 0 on success, negative error code on failure +int s2binlib_follow_xref_rva_to_rva(const char* binary_name, uint64_t rva, uint64_t* target_rva_out); + +// ============================================================================ +// JIT and Trampoline Functions +// ============================================================================ + +/// Install a JIT trampoline at a memory address +/// @param mem_address Runtime memory address where to install the trampoline +/// @param trampoline_address_out Pointer to store the trampoline address +/// @return 0 on success, negative error code on failure +int s2binlib_install_trampoline(void* mem_address, void** trampoline_address_out); + +// ============================================================================ +// NetworkVar Functions +// ============================================================================ + +/// Find the NetworkVar_StateChanged vtable index by RVA +/// @param vtable_rva Virtual address of the vtable to analyze +/// @param result Pointer to store the resulting index +/// @return 0 on success, negative error code on failure +int s2binlib_find_networkvar_vtable_statechanged_rva(uint64_t vtable_rva, uint64_t* result); + +/// Find the NetworkVar_StateChanged vtable index by memory address +/// @param vtable_mem_address Runtime memory address of the vtable +/// @param result Pointer to store the resulting index +/// @return 0 on success, negative error code on failure +int s2binlib_find_networkvar_vtable_statechanged(uint64_t vtable_mem_address, uint64_t* result); + +#ifdef __cplusplus +} +#endif diff --git a/hello/src/main.cpp b/hello/src/main.cpp index 0c2e0a5..d89d179 100644 --- a/hello/src/main.cpp +++ b/hello/src/main.cpp @@ -1,10 +1,26 @@ #include -#include "s2binlib.h" +#include +#include "s2binlib001.h" + int main(int argc, char** argv) { - s2binlib_initialize("F:/cs2server/game", "csgo"); + + HMODULE hDll = LoadLibrary(TEXT("s2binlib.dll")); + + S2CreateInterfaceFn createInterface = (S2CreateInterfaceFn)GetProcAddress(hDll, "S2BinLib_CreateInterface"); + auto s2binlib = createInterface(S2BINLIB_INTERFACE_NAME); + + s2binlib->InitializeWithOs("F:/cs2server/game", "csgo", "windows"); + printf("%p\n", s2binlib); + s2binlib->LoadBinary("server"); + + void* createInterfaceRva; + s2binlib->FindSymbolRva("server", "CreateInterface", &createInterfaceRva); void* vtable; - s2binlib_find_vtable_va("engine2", "CServerSideClient", &vtable); - printf("%p\n", vtable); + s2binlib->FindVtableRva("server", "CBaseEntity", &vtable); + printf("%p\n", createInterfaceRva); + + s2binlib->Destroy(); + return 0; } diff --git a/hello/src/s2binlib.h b/hello/src/s2binlib.h deleted file mode 100644 index 274bbc5..0000000 --- a/hello/src/s2binlib.h +++ /dev/null @@ -1,990 +0,0 @@ -#ifndef S2BINLIB_H -#define S2BINLIB_H - -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Initialize the global S2BinLib instance - * - * The operating system is automatically detected at runtime. - * - * @param game_path Path to the game directory (null-terminated C string) - * @param game_type Game type identifier (null-terminated C string) - * - * @return 0 on success - * -1 if already initialized - * -2 if invalid parameters or unsupported OS - * - * @example - * int result = s2binlib_initialize("C:/Games/MyGame", "csgo"); - * if (result != 0) { - * // Handle error - * } - */ -int s2binlib_initialize(const char* game_path, const char* game_type); - -/** - * Scan for a pattern in the specified binary - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan (e.g., "server", "client") (null-terminated C string) - * @param pattern Pattern string with wildcards (e.g., "48 89 5C 24 ? 48 89 74 24 ?") (null-terminated C string) - * @param result Pointer to store the resulting runtime memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @example - * void* address; - * int result = s2binlib_pattern_scan("server", "48 89 5C 24 ? 48 89 74", &address); - * if (result == 0) { - * printf("Found at: %p\n", address); - * } - */ -int s2binlib_pattern_scan(const char* binary_name, const char* pattern, void** result); - -/** - * Pattern scan and return the virtual address - * - * Scans for a byte pattern in the specified binary and returns the virtual address (VA). - * Pattern format: hex bytes separated by spaces, use '?' for wildcards - * Example: "48 89 5C 24 ? 48 89 74 24 ?" - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan (null-terminated C string) - * @param pattern Pattern string with wildcards (null-terminated C string) - * @param result Pointer to store the resulting virtual address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @example - * void* va; - * int result = s2binlib_pattern_scan_va("server", "48 89 5C 24 ?", &va); - * if (result == 0) { - * printf("Pattern found at VA: %p\n", va); - * } - */ -int s2binlib_pattern_scan_va(const char* binary_name, const char* pattern, void** result); - -/** - * Callback function type for pattern_scan_all functions - * - * @param index The index of the current match (0-based) - * @param address The found address (VA or memory address depending on the function) - * @param user_data User-provided data pointer - * @return true to stop searching (found what you need), false to continue searching - */ -typedef bool (*s2binlib_pattern_scan_callback)(size_t index, void* address, void* user_data); - -/** - * Find all occurrences of a pattern in a binary and return their virtual addresses - * - * Scans the binary for all occurrences of the specified byte pattern and calls - * the callback function for each match found. The callback receives virtual addresses (VA). - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan - * @param pattern Byte pattern with wildcards (e.g., "48 89 5C 24 ? 48 89 74") - * @param callback Function pointer that will be called for each match - * @param user_data User-provided pointer passed to each callback invocation - * - * @return 0 on success (at least one match found) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @note The callback should return true to stop searching, false to continue - * - * @example - * bool my_callback(size_t index, void* address, void* user_data) { - * printf("Match #%zu found at VA: %p\n", index, address); - * int* count = (int*)user_data; - * (*count)++; - * return false; // Continue searching - * } - * - * int count = 0; - * int result = s2binlib_pattern_scan_all_va("server", "48 89 5C 24 ?", my_callback, &count); - * if (result == 0) { - * printf("Found %d matches\n", count); - * } - */ -int s2binlib_pattern_scan_all_va(const char* binary_name, const char* pattern, - s2binlib_pattern_scan_callback callback, void* user_data); - -/** - * Find all occurrences of a pattern in a binary and return their memory addresses - * - * Scans the binary for all occurrences of the specified byte pattern and calls - * the callback function for each match found. The callback receives memory addresses - * (adjusted with module base address). - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan - * @param pattern Byte pattern with wildcards (e.g., "48 89 5C 24 ? 48 89 74") - * @param callback Function pointer that will be called for each match - * @param user_data User-provided pointer passed to each callback invocation - * - * @return 0 on success (at least one match found) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @note The callback should return true to stop searching, false to continue - * - * @example - * bool my_callback(size_t index, void* address, void* user_data) { - * printf("Match #%zu found at memory address: %p\n", index, address); - * int* count = (int*)user_data; - * (*count)++; - * return false; // Continue searching - * } - * - * int count = 0; - * int result = s2binlib_pattern_scan_all("server", "48 89 5C 24 ?", my_callback, &count); - * if (result == 0) { - * printf("Found %d matches\n", count); - * } - */ -int s2binlib_pattern_scan_all(const char* binary_name, const char* pattern, - s2binlib_pattern_scan_callback callback, void* user_data); - -/** - * Find a vtable by class name in the specified binary - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (e.g., "server", "client") (null-terminated C string) - * @param vtable_name Class name to search for (null-terminated C string) - * @param result Pointer to store the resulting vtable runtime memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * void* vtable_addr; - * int result = s2binlib_find_vtable("server", "CBaseEntity", &vtable_addr); - * if (result == 0) { - * printf("VTable at: %p\n", vtable_addr); - * } - */ -int s2binlib_find_vtable(const char* binary_name, const char* vtable_name, void** result); - -/** - * Find a vtable by class name and return its virtual address - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Class name to search for (null-terminated C string) - * @param result Pointer to store the resulting vtable virtual address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * void* vtable_va; - * int result = s2binlib_find_vtable_va("server", "CBaseEntity", &vtable_va); - * if (result == 0) { - * printf("VTable VA: %p\n", vtable_va); - * } - */ -int s2binlib_find_vtable_va(const char* binary_name, const char* vtable_name, void** result); - -/** - * Get the number of virtual functions in a vtable - * - * Returns the count of virtual functions (vfuncs) in the specified vtable. - * This counts valid function pointers in the vtable until it encounters a null - * or invalid pointer. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (e.g., "server", "client") (null-terminated C string) - * @param vtable_name Name of the vtable/class to search for (null-terminated C string) - * @param result Pointer to store the resulting count of virtual functions - * - * @return 0 on success (count written to result) - * -1 if S2BinLib not initialized - * -2 if invalid input (null pointer or invalid UTF-8) - * -4 if operation failed (vtable not found or other error) - * -5 if failed to acquire lock - * - * @example - * size_t vfunc_count; - * int result = s2binlib_get_vtable_vfunc_count("server", "CBaseEntity", &vfunc_count); - * if (result == 0) { - * printf("VTable has %zu virtual functions\n", vfunc_count); - * } - */ -int s2binlib_get_vtable_vfunc_count(const char* binary_name, const char* vtable_name, size_t* result); - -/** - * Find a symbol by name in the specified binary - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (e.g., "server", "client") (null-terminated C string) - * @param symbol_name Symbol name to search for (null-terminated C string) - * @param result Pointer to store the resulting symbol runtime memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if symbol not found - * -5 if internal error - * - * @example - * void* symbol_addr; - * int result = s2binlib_find_symbol("server", "CreateInterface", &symbol_addr); - * if (result == 0) { - * printf("Symbol at: %p\n", symbol_addr); - * } - */ -int s2binlib_find_symbol(const char* binary_name, const char* symbol_name, void** result); - -/** - * Find a symbol by name and return its virtual address - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param symbol_name Symbol name to search for (null-terminated C string) - * @param result Pointer to store the resulting virtual address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if symbol not found - * -5 if internal error - * - * @example - * void* symbol_va; - * int result = s2binlib_find_symbol_va("server", "_Z13CreateInterfacev", &symbol_va); - * if (result == 0) { - * printf("Symbol VA: %p\n", symbol_va); - * } - */ -int s2binlib_find_symbol_va(const char* binary_name, const char* symbol_name, void** result); - -/** - * Manually set the base address for a module from a pointer - * - * This allows overriding the automatic base address detection for a module. - * The function will automatically detect the module base from the provided pointer. - * - * @param binary_name Name of the binary (e.g., "server", "client") (null-terminated C string) - * @param pointer The pointer inside the specified module - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int result = s2binlib_set_module_base_from_pointer("server", 0x140001000); - * if (result == 0) { - * printf("Server base address set successfully\n"); - * } - */ -int s2binlib_set_module_base_from_pointer(const char* binary_name, void* pointer); - -/** - * Clear manually set base address for a module - * - * After calling this, the module will use automatic base address detection again. - * - * @param binary_name Name of the binary (e.g., "server", "client") (null-terminated C string) - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int result = s2binlib_clear_module_base_address("server"); - * if (result == 0) { - * printf("Server base address cleared\n"); - * } - */ -int s2binlib_clear_module_base_address(const char* binary_name); - -/** - * Get the module base address - * - * Returns the base address of a loaded module. If a manual base address was set, - * that value will be returned. Otherwise, attempts to find the base address from - * the running process. - * - * @param binary_name Name of the binary (e.g., "server", "client") (null-terminated C string) - * @param result Pointer to store the resulting base address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if module not found or not loaded - * -5 if internal error - * - * @example - * void* base_addr; - * int result = s2binlib_get_module_base_address("server", &base_addr); - * if (result == 0) { - * printf("Module base: %p\n", base_addr); - * } - */ -int s2binlib_get_module_base_address(const char* binary_name, void** result); - -/** - * Check if a binary is already loaded - * - * @param binary_name Name of the binary to check (null-terminated C string) - * - * @return 1 if loaded - * 0 if not loaded - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int loaded = s2binlib_is_binary_loaded("server"); - * if (loaded == 1) { - * printf("Server is loaded\n"); - * } - */ -int s2binlib_is_binary_loaded(const char* binary_name); - -/** - * Load a binary into memory - * - * Loads the specified binary file into memory for analysis. - * If the binary is already loaded, this function does nothing. - * - * @param binary_name Name of the binary to load (null-terminated C string) - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int result = s2binlib_load_binary("server"); - * if (result == 0) { - * printf("Server loaded successfully\n"); - * } - */ -int s2binlib_load_binary(const char* binary_name); - -/** - * Get the full path to a binary file - * - * Returns the full filesystem path where the binary file is expected to be located. - * - * @param binary_name Name of the binary (null-terminated C string) - * @param buffer Buffer to store the path string - * @param buffer_size Size of the buffer - * - * @return 0 on success (path written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if buffer too small - * -5 if internal error - * - * @example - * char path[512]; - * int result = s2binlib_get_binary_path("server", path, sizeof(path)); - * if (result == 0) { - * printf("Binary path: %s\n", path); - * } - */ -int s2binlib_get_binary_path(const char* binary_name, char* buffer, size_t buffer_size); - -/** - * Find an exported symbol by name and return its virtual address - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param export_name Export name to search for (null-terminated C string) - * @param result Pointer to store the resulting virtual address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if export not found - * -5 if internal error - * - * @example - * void* export_va; - * int result = s2binlib_find_export_va("server", "CreateInterface", &export_va); - * if (result == 0) { - * printf("Export VA: %p\n", export_va); - * } - */ -int s2binlib_find_export_va(const char* binary_name, const char* export_name, void** result); - -/** - * Find an exported symbol by name and return its runtime memory address - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param export_name Export name to search for (null-terminated C string) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or get base address - * -4 if export not found - * -5 if internal error - * - * @example - * void* export_addr; - * int result = s2binlib_find_export("server", "CreateInterface", &export_addr); - * if (result == 0) { - * printf("Export at: %p\n", export_addr); - * } - */ -int s2binlib_find_export(const char* binary_name, const char* export_name, void** result); - -/** - * Read bytes from binary at a file offset - * - * Reads raw bytes from the binary file at the specified file offset into the provided buffer. - * - * @param binary_name Name of the binary to read from (null-terminated C string) - * @param file_offset File offset to read from - * @param buffer Buffer to store the read bytes - * @param buffer_size Size of the buffer (number of bytes to read) - * - * @return 0 on success (bytes written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to read - * -5 if internal error - * - * @example - * uint8_t buffer[16]; - * int result = s2binlib_read_by_file_offset("server", 0x1000, buffer, sizeof(buffer)); - * if (result == 0) { - * // Use buffer - * } - */ -int s2binlib_read_by_file_offset(const char* binary_name, uint64_t file_offset, uint8_t* buffer, size_t buffer_size); - -/** - * Read bytes from binary at a virtual address - * - * Reads raw bytes from the binary at the specified virtual address (VA) into the provided buffer. - * - * @param binary_name Name of the binary to read from (null-terminated C string) - * @param va Virtual address to read from - * @param buffer Buffer to store the read bytes - * @param buffer_size Size of the buffer (number of bytes to read) - * - * @return 0 on success (bytes written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to read - * -5 if internal error - * - * @example - * uint8_t buffer[16]; - * int result = s2binlib_read_by_va("server", 0x140001000, buffer, sizeof(buffer)); - * if (result == 0) { - * // Use buffer - * } - */ -int s2binlib_read_by_va(const char* binary_name, uint64_t va, uint8_t* buffer, size_t buffer_size); - -/** - * Read bytes from binary at a runtime memory address - * - * Reads raw bytes from the binary at the specified runtime memory address into the provided buffer. - * - * @param binary_name Name of the binary to read from (null-terminated C string) - * @param mem_address Runtime memory address to read from - * @param buffer Buffer to store the read bytes - * @param buffer_size Size of the buffer (number of bytes to read) - * - * @return 0 on success (bytes written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to read - * -5 if internal error - * - * @example - * uint8_t buffer[16]; - * int result = s2binlib_read_by_mem_address("server", mem_addr, buffer, sizeof(buffer)); - * if (result == 0) { - * // Use buffer - * } - */ -int s2binlib_read_by_mem_address(const char* binary_name, uint64_t mem_address, uint8_t* buffer, size_t buffer_size); - -/** - * Find a virtual function by vtable name and index, return virtual address - * - * Locates a vtable by its class name, then reads the virtual function pointer - * at the specified index. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Class name whose vtable to search for (null-terminated C string) - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting virtual address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable or vfunc not found - * -5 if internal error - * - * @example - * void* vfunc_va; - * int result = s2binlib_find_vfunc_by_vtbname_va("server", "CBaseEntity", 5, &vfunc_va); - * if (result == 0) { - * printf("VFunc VA: %p\n", vfunc_va); - * } - */ -int s2binlib_find_vfunc_by_vtbname_va(const char* binary_name, const char* vtable_name, size_t vfunc_index, void** result); - -/** - * Find a virtual function by vtable name and index, return runtime address - * - * Locates a vtable by its class name, then reads the virtual function pointer - * at the specified index and returns its runtime memory address. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Class name whose vtable to search for (null-terminated C string) - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or get base address - * -4 if vtable or vfunc not found - * -5 if internal error - * - * @example - * void* vfunc_addr; - * int result = s2binlib_find_vfunc_by_vtbname("server", "CBaseEntity", 5, &vfunc_addr); - * if (result == 0) { - * printf("VFunc at: %p\n", vfunc_addr); - * } - */ -int s2binlib_find_vfunc_by_vtbname(const char* binary_name, const char* vtable_name, size_t vfunc_index, void** result); - -/** - * Find a virtual function by vtable pointer and index, return virtual address - * - * Given a runtime pointer to a vtable, reads the virtual function pointer - * at the specified index. The appropriate binary is automatically detected. - * - * @param vtable_ptr Runtime pointer to the vtable - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting virtual address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not found for pointer - * -4 if failed to read vfunc - * -5 if internal error - * - * @example - * void* vfunc_va; - * int result = s2binlib_find_vfunc_by_vtbptr_va(vtable_ptr, 5, &vfunc_va); - * if (result == 0) { - * printf("VFunc VA: %p\n", vfunc_va); - * } - */ -int s2binlib_find_vfunc_by_vtbptr_va(void* vtable_ptr, size_t vfunc_index, void** result); - -/** - * Find a virtual function by vtable pointer and index, return runtime address - * - * Given a runtime pointer to a vtable, reads the virtual function pointer - * at the specified index. The appropriate binary is automatically detected. - * - * @param vtable_ptr Runtime pointer to the vtable - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not found for pointer - * -4 if failed to read vfunc - * -5 if internal error - * - * @example - * void* vfunc_addr; - * int result = s2binlib_find_vfunc_by_vtbptr(vtable_ptr, 5, &vfunc_addr); - * if (result == 0) { - * printf("VFunc at: %p\n", vfunc_addr); - * } - */ -int s2binlib_find_vfunc_by_vtbptr(void* vtable_ptr, size_t vfunc_index, void** result); - -/** - * Find a string in the binary and return its virtual address - * - * Searches for an exact string match in the binary (case-sensitive). - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param string String to search for (null-terminated C string) - * @param result Pointer to store the resulting virtual address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if string not found - * -5 if internal error - * - * @example - * void* string_va; - * int result = s2binlib_find_string_va("server", "CBaseEntity", &string_va); - * if (result == 0) { - * printf("String VA: %p\n", string_va); - * } - */ -int s2binlib_find_string_va(const char* binary_name, const char* string, void** result); - -/** - * Find a string in the binary and return its runtime memory address - * - * Searches for an exact string match in the binary (case-sensitive). - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param string String to search for (null-terminated C string) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or get base address - * -4 if string not found - * -5 if internal error - * - * @example - * void* string_addr; - * int result = s2binlib_find_string("server", "CBaseEntity", &string_addr); - * if (result == 0) { - * printf("String at: %p\n", string_addr); - * } - */ -int s2binlib_find_string(const char* binary_name, const char* string, void** result); - -/** - * Dump and cache all cross-references in a binary - * - * This function disassembles all executable sections of the binary once and builds - * a complete cross-reference (xref) database. Subsequent queries are very fast. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to analyze (null-terminated C string) - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if failed to dump xrefs - * -5 if internal error - * - * @example - * int result = s2binlib_dump_xrefs("server"); - * if (result == 0) { - * printf("Xrefs cached successfully\n"); - * } - */ -int s2binlib_dump_xrefs(const char* binary_name); - -/** - * Get the count of cached cross-references for a target virtual address - * - * Returns the number of code locations that reference the specified target address. - * The binary must have been analyzed with s2binlib_dump_xrefs() first. - * - * Use this function to determine the buffer size needed for s2binlib_get_xrefs_cached(). - * - * @param binary_name Name of the binary (null-terminated C string) - * @param target_va The target virtual address to find references to - * - * @return Non-negative: Number of xrefs found - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not analyzed (call s2binlib_dump_xrefs first) - * -5 if internal error - * - * @example - * // First, dump xrefs - * s2binlib_dump_xrefs("server"); - * - * // Get xref count - * int count = s2binlib_get_xrefs_count("server", (void*)0x140001000); - * if (count > 0) { - * void** xrefs = malloc(count * sizeof(void*)); - * s2binlib_get_xrefs_cached("server", (void*)0x140001000, xrefs, count); - * // Use xrefs - * free(xrefs); - * } - */ -int s2binlib_get_xrefs_count(const char* binary_name, void* target_va); - -/** - * Get cached cross-references for a target virtual address into a buffer - * - * Returns all code locations that reference the specified target address into the provided buffer. - * The binary must have been analyzed with s2binlib_dump_xrefs() first. - * - * Use s2binlib_get_xrefs_count() to determine the required buffer size. - * - * @param binary_name Name of the binary (null-terminated C string) - * @param target_va The target virtual address to find references to - * @param buffer Buffer to store the xref addresses (array of uint64_t) - * @param buffer_size Size of the buffer (number of uint64_t elements it can hold) - * - * @return Non-negative: Number of xrefs written to buffer - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not analyzed (call s2binlib_dump_xrefs first) - * -4 if buffer too small - * -5 if internal error - * - * @example - * // First, dump xrefs - * s2binlib_dump_xrefs("server"); - * - * // Get xref count - * int count = s2binlib_get_xrefs_count("server", (void*)0x140001000); - * if (count > 0) { - * void** xrefs = malloc(count * sizeof(void*)); - * int result = s2binlib_get_xrefs_cached("server", (void*)0x140001000, xrefs, count); - * if (result > 0) { - * for (int i = 0; i < result; i++) { - * printf("Xref at: %p\n", xrefs[i]); - * } - * } - * free(xrefs); - * } - */ -int s2binlib_get_xrefs_cached(const char* binary_name, void* target_va, void** buffer, size_t buffer_size); - -/** - * Unload a specific binary from memory - * - * Removes the specified binary from the internal cache, freeing up memory. - * This is useful when you no longer need a particular binary. - * - * @param binary_name Name of the binary to unload (e.g., "server", "client") - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error (mutex lock failed) - * - * @example - * int result = s2binlib_unload_binary("server"); - * if (result == 0) { - * printf("Binary unloaded successfully\n"); - * } - */ -int s2binlib_unload_binary(const char* binary_name); - -/** - * Unload all binaries from memory - * - * Removes all loaded binaries from the internal cache, freeing up memory. - * This is useful for cleanup operations or when you need to start fresh. - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -5 if internal error (mutex lock failed) - * - * @example - * int result = s2binlib_unload_all_binaries(); - * if (result == 0) { - * printf("All binaries unloaded successfully\n"); - * } - */ -int s2binlib_unload_all_binaries(void); - -/** - * Install a JIT trampoline at a memory address - * - * Creates a JIT trampoline that can be used to hook or intercept function calls. - * This function reads the original function pointer at the specified memory address, - * creates a trampoline, and replaces the original pointer with the trampoline address. - * - * If a trampoline is already installed at the same address, this function does nothing - * and returns success. - * - * @param mem_address Runtime memory address where to install the trampoline - * @param trampoline_address_out Pointer to store the resulting trampoline address - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to install trampoline - * -5 if internal error - * - * @warning This function modifies memory at the specified address and changes - * memory protection flags. The caller must ensure that: - * - The memory address is valid and writable - * - The address points to an 8-byte function pointer - * - No other threads are accessing the memory during the operation - * - * @example - * void* vtable_ptr = ...; // Get vtable pointer - * void* trampoline_address; - * int result = s2binlib_install_trampoline(vtable_ptr, &trampoline_address); - * if (result == 0) { - * printf("Trampoline installed successfully\n"); - * } - */ -int s2binlib_install_trampoline(void* mem_address, void** trampoline_address_out); - -/** - * @brief Follow cross-reference from memory address to memory address - * - * This function reads the instruction at the given memory address, - * decodes it using iced-x86, and returns the target address if the - * instruction contains a valid cross-reference. - * - * Valid xrefs include: - * - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) - * - Near branches (call, jmp, jcc) - * - Absolute memory operands - * - * @param mem_address Runtime memory address to analyze - * @param target_address_out Pointer to store the target address - * - * @return 0 on success (target address written to target_address_out) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if no valid xref found or invalid instruction - * -5 if internal error - * - * @warning This function reads memory at the specified address. - * The caller must ensure that: - * - The memory address is valid and readable - * - The address points to executable code - * - * @example - * void* instruction_addr = ...; // Address of an instruction - * void* target_addr; - * int result = s2binlib_follow_xref_mem_to_mem(instruction_addr, &target_addr); - * if (result == 0) { - * printf("Xref target: %p\n", target_addr); - * } - */ -int s2binlib_follow_xref_mem_to_mem(const void* mem_address, void** target_address_out); - -/** - * @brief Follow cross-reference from virtual address to memory address - * - * This function reads the instruction at the given virtual address from the file, - * decodes it using iced-x86, and returns the target memory address if the - * instruction contains a valid cross-reference. - * - * Valid xrefs include: - * - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) - * - Near branches (call, jmp, jcc) - * - Absolute memory operands - * - * @param binary_name Name of the binary (e.g., "server", "client") - * @param va Virtual address to analyze - * @param target_address_out Pointer to store the target memory address - * - * @return 0 on success (target address written to target_address_out) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or no valid xref found - * -5 if internal error - * - * @example - * void* target_addr; - * int result = s2binlib_follow_xref_va_to_mem("server", 0x140001000, &target_addr); - * if (result == 0) { - * printf("Xref target: %p\n", target_addr); - * } - */ -int s2binlib_follow_xref_va_to_mem(const char* binary_name, uint64_t va, void** target_address_out); - -/** - * @brief Follow cross-reference from virtual address to virtual address - * - * This function reads the instruction at the given virtual address from the file, - * decodes it using iced-x86, and returns the target virtual address if the - * instruction contains a valid cross-reference. - * - * Valid xrefs include: - * - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) - * - Near branches (call, jmp, jcc) - * - Absolute memory operands - * - * @param binary_name Name of the binary (e.g., "server", "client") - * @param va Virtual address to analyze - * @param target_va_out Pointer to store the target virtual address - * - * @return 0 on success (target VA written to target_va_out) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or no valid xref found - * -5 if internal error - * - * @example - * uint64_t target_va; - * int result = s2binlib_follow_xref_va_to_va("server", 0x140001000, &target_va); - * if (result == 0) { - * printf("Xref target VA: 0x%llX\n", target_va); - * } - */ -int s2binlib_follow_xref_va_to_va(const char* binary_name, uint64_t va, uint64_t* target_va_out); - -#ifdef __cplusplus -} -#endif - -#endif // S2BINLIB_H \ No newline at end of file diff --git a/hello/src/s2binlib001.h b/hello/src/s2binlib001.h new file mode 100644 index 0000000..9f524d3 --- /dev/null +++ b/hello/src/s2binlib001.h @@ -0,0 +1,387 @@ +/************************************************************************************ + * S2BinLib - A static library that helps resolving memory from binary file + * and map to absolute memory address, targeting source 2 game engine. + * Copyright (C) 2025 samyyc + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + ***********************************************************************************/ + +#ifndef _s2binlib_s2binlib001_h +#define _s2binlib_s2binlib001_h + +#pragma once + +#include +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +#define S2BINLIB_INTERFACE_NAME "S2BINLIB001" + + /// Forward declaration + struct S2BinLib001; + + /// Callback function type for pattern_scan_all functions + /// @param index The index of the current match (0-based) + /// @param address The found address (RVA or memory address depending on the function) + /// @param user_data User-provided data pointer + /// @return true to stop searching, false to continue searching for more matches + typedef bool (*PatternScanCallback)(size_t index, void *address, void *user_data); + + /// Create a new S2BinLib001 instance + /// @param interface_name Interface name to create + /// @return Pointer to the created instance, or nullptr on failure + typedef S2BinLib001 *(*S2CreateInterfaceFn)(const char *interface_name); + +#ifdef __cplusplus +} + +/// S2BinLib001 class - Interface version 001 +/// This class provides access to S2BinLib functionality through a virtual table interface +class S2BinLib001 +{ +public: + /// Initialize with auto-detected operating system + /// @param game_path Path to the game directory (null-terminated C string) + /// @param game_type Game type identifier (null-terminated C string) + /// @return 0 on success, negative error code on failure + virtual int Initialize(const char *game_path, const char *game_type) = 0; + + /// Initialize with explicit operating system parameter + /// @param game_path Path to the game directory (null-terminated C string) + /// @param game_type Game type identifier (null-terminated C string) + /// @param os Operating system ("windows" or "linux") (null-terminated C string) + /// @return 0 on success, negative error code on failure + virtual int InitializeWithOs(const char *game_path, const char *game_type, const char *os) = 0; + + /// Scan for a pattern in the specified binary and return its memory address + /// @param binary_name Name of the binary to scan (e.g., "server", "client") + /// @param pattern Pattern string with wildcards (e.g., "48 89 5C 24 ? 48 89 74 24 ?") + /// @param result Pointer to store the resulting address + /// @return 0 on success, negative error code on failure + virtual int PatternScan(const char *binary_name, const char *pattern, void **result) = 0; + + /// Find a vtable by class name and return its memory address + /// @param binary_name Name of the binary to search (e.g., "server", "client") + /// @param vtable_name Class name to search for + /// @param result Pointer to store the resulting vtable address + /// @return 0 on success, negative error code on failure + virtual int FindVtable(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a symbol by name and return its memory address + /// @param binary_name Name of the binary to search + /// @param symbol_name Symbol name to search for + /// @param result Pointer to store the resulting symbol address + /// @return 0 on success, negative error code on failure + virtual int FindSymbol(const char *binary_name, const char *symbol_name, void **result) = 0; + + /// Set module base address from a pointer inside the module + /// @param binary_name Name of the binary + /// @param pointer Pointer inside the specified module + /// @return 0 on success, negative error code on failure + virtual int SetModuleBaseFromPointer(const char *binary_name, void *pointer) = 0; + + /// Clear manually set base address for a module + /// @param binary_name Name of the binary + /// @return 0 on success, negative error code on failure + virtual int ClearModuleBaseAddress(const char *binary_name) = 0; + + /// Set a custom binary path for a specific binary and operating system + /// @param binary_name Name of the binary + /// @param path The custom file path to the binary + /// @param os Operating system identifier ("windows" or "linux") + /// @return 0 on success, negative error code on failure + virtual int SetCustomBinaryPath(const char *binary_name, const char *path, const char *os) = 0; + + /// Get the module base address + /// @param binary_name Name of the binary + /// @param result Pointer to store the resulting base address + /// @return 0 on success, negative error code on failure + virtual int GetModuleBaseAddress(const char *binary_name, void **result) const = 0; + + /// Check if a binary is already loaded + /// @param binary_name Name of the binary to check + /// @return 1 if loaded, 0 if not loaded, negative error code on failure + virtual int IsBinaryLoaded(const char *binary_name) const = 0; + + /// Load a binary into memory + /// @param binary_name Name of the binary to load + /// @return 0 on success, negative error code on failure + virtual int LoadBinary(const char *binary_name) = 0; + + /// Get the full path to a binary file + /// @param binary_name Name of the binary + /// @param buffer Buffer to store the path string + /// @param buffer_size Size of the buffer + /// @return 0 on success, negative error code on failure + virtual int GetBinaryPath(const char *binary_name, char *buffer, size_t buffer_size) const = 0; + + /// Find a vtable by class name and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param vtable_name Class name to search for + /// @param result Pointer to store the resulting vtable RVA + /// @return 0 on success, negative error code on failure + virtual int FindVtableRva(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a vtable by mangled name and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param vtable_name Mangled RTTI name to search for + /// @param result Pointer to store the resulting vtable RVA + /// @return 0 on success, negative error code on failure + virtual int FindVtableMangledRva(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a vtable by mangled name and return its runtime memory address + /// @param binary_name Name of the binary to search + /// @param vtable_name Mangled RTTI name to search for + /// @param result Pointer to store the resulting vtable memory address + /// @return 0 on success, negative error code on failure + virtual int FindVtableMangled(const char *binary_name, const char *vtable_name, void **result) = 0; + + /// Find a nested vtable (2 levels) by class names and return its RVA + /// @param binary_name Name of the binary to search + /// @param class1_name Outer class name + /// @param class2_name Inner/nested class name + /// @param result Pointer to store the resulting vtable RVA + /// @return 0 on success, negative error code on failure + virtual int FindVtableNested2Rva(const char *binary_name, const char *class1_name, const char *class2_name, void **result) = 0; + + /// Find a nested vtable (2 levels) by class names and return its memory address + /// @param binary_name Name of the binary to search + /// @param class1_name Outer class name + /// @param class2_name Inner/nested class name + /// @param result Pointer to store the resulting vtable memory address + /// @return 0 on success, negative error code on failure + virtual int FindVtableNested2(const char *binary_name, const char *class1_name, const char *class2_name, void **result) = 0; + + /// Get the number of virtual functions in a vtable + /// @param binary_name Name of the binary to search + /// @param vtable_name Name of the vtable/class + /// @param result Pointer to store the resulting vfunc count + /// @return 0 on success, negative error code on failure + virtual int GetVtableVfuncCount(const char *binary_name, const char *vtable_name, size_t *result) = 0; + + /// Get the number of virtual functions in a vtable by RVA + /// @param binary_name Name of the binary + /// @param vtable_rva Virtual address of the vtable + /// @param result Pointer to store the resulting vfunc count + /// @return 0 on success, negative error code on failure + virtual int GetVtableVfuncCountByRva(const char *binary_name, uint64_t vtable_rva, size_t *result) = 0; + + /// Scan for a pattern and return its relative virtual address + /// @param binary_name Name of the binary to scan + /// @param pattern Pattern string with wildcards + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int PatternScanRva(const char *binary_name, const char *pattern, void **result) = 0; + + /// Find all occurrences of a pattern and return their RVAs via callback + /// @param binary_name Name of the binary to scan + /// @param pattern Byte pattern to search for + /// @param callback Function pointer that will be called for each match + /// @param user_data User-provided pointer passed to each callback invocation + /// @return 0 on success, negative error code on failure + virtual int PatternScanAllRva(const char *binary_name, const char *pattern, PatternScanCallback callback, void *user_data) = 0; + + /// Find all occurrences of a pattern and return their memory addresses via callback + /// @param binary_name Name of the binary to scan + /// @param pattern Byte pattern to search for + /// @param callback Function pointer that will be called for each match + /// @param user_data User-provided pointer passed to each callback invocation + /// @return 0 on success, negative error code on failure + virtual int PatternScanAll(const char *binary_name, const char *pattern, PatternScanCallback callback, void *user_data) = 0; + + /// Find an exported symbol and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param export_name Export name to search for + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindExportRva(const char *binary_name, const char *export_name, void **result) = 0; + + /// Find an exported symbol and return its runtime memory address + /// @param binary_name Name of the binary to search + /// @param export_name Export name to search for + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindExport(const char *binary_name, const char *export_name, void **result) = 0; + + /// Find a symbol and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param symbol_name Symbol name to search for + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindSymbolRva(const char *binary_name, const char *symbol_name, void **result) = 0; + + /// Read bytes from binary at a file offset + /// @param binary_name Name of the binary to read from + /// @param file_offset File offset to read from + /// @param buffer Buffer to store the read bytes + /// @param buffer_size Size of the buffer (number of bytes to read) + /// @return 0 on success, negative error code on failure + virtual int ReadByFileOffset(const char *binary_name, uint64_t file_offset, uint8_t *buffer, size_t buffer_size) = 0; + + /// Read bytes from binary at a relative virtual address + /// @param binary_name Name of the binary to read from + /// @param rva Virtual address to read from + /// @param buffer Buffer to store the read bytes + /// @param buffer_size Size of the buffer (number of bytes to read) + /// @return 0 on success, negative error code on failure + virtual int ReadByRva(const char *binary_name, uint64_t rva, uint8_t *buffer, size_t buffer_size) = 0; + + /// Read bytes from binary at a runtime memory address + /// @param binary_name Name of the binary to read from + /// @param mem_address Runtime memory address to read from + /// @param buffer Buffer to store the read bytes + /// @param buffer_size Size of the buffer (number of bytes to read) + /// @return 0 on success, negative error code on failure + virtual int ReadByMemAddress(const char *binary_name, uint64_t mem_address, uint8_t *buffer, size_t buffer_size) = 0; + + /// Find a virtual function by vtable name and index, return RVA + /// @param binary_name Name of the binary to search + /// @param vtable_name Class name whose vtable to search for + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbnameRva(const char *binary_name, const char *vtable_name, size_t vfunc_index, void **result) = 0; + + /// Find a virtual function by vtable name and index, return memory address + /// @param binary_name Name of the binary to search + /// @param vtable_name Class name whose vtable to search for + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbname(const char *binary_name, const char *vtable_name, size_t vfunc_index, void **result) = 0; + + /// Find a virtual function by vtable pointer and index, return RVA + /// @param vtable_ptr Runtime pointer to the vtable + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbptrRva(void *vtable_ptr, size_t vfunc_index, void **result) const = 0; + + /// Find a virtual function by vtable pointer and index, return memory address + /// @param vtable_ptr Runtime pointer to the vtable + /// @param vfunc_index Index of the virtual function in the vtable (0-based) + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindVfuncByVtbptr(void *vtable_ptr, size_t vfunc_index, void **result) const = 0; + + /// Get the vtable name from an object pointer + /// @param object_ptr Pointer to the object + /// @param buffer Buffer to store the vtable name + /// @param buffer_size Size of the buffer + /// @return 0 on success, negative error code on failure + virtual int GetObjectPtrVtableName(const void *object_ptr, char *buffer, size_t buffer_size) const = 0; + + /// Check if an object pointer has a valid vtable + /// @param object_ptr Pointer to the object + /// @return 1 if has vtable, 0 if not, negative error code on failure + virtual int ObjectPtrHasVtable(const void *object_ptr) const = 0; + + /// Check if an object has a specific base class + /// @param object_ptr Pointer to the object + /// @param base_class_name Name of the base class to check + /// @return 1 if has base class, 0 if not, negative error code on failure + virtual int ObjectPtrHasBaseClass(const void *object_ptr, const char *base_class_name) const = 0; + + /// Find a string in the binary and return its relative virtual address + /// @param binary_name Name of the binary to search + /// @param string String to search for + /// @param result Pointer to store the resulting RVA + /// @return 0 on success, negative error code on failure + virtual int FindStringRva(const char *binary_name, const char *string, void **result) = 0; + + /// Find a string in the binary and return its runtime memory address + /// @param binary_name Name of the binary to search + /// @param string String to search for + /// @param result Pointer to store the resulting memory address + /// @return 0 on success, negative error code on failure + virtual int FindString(const char *binary_name, const char *string, void **result) = 0; + + /// Dump and cache all cross-references in a binary + /// @param binary_name Name of the binary to analyze + /// @return 0 on success, negative error code on failure + virtual int DumpXrefs(const char *binary_name) = 0; + + /// Get the count of cached cross-references for a target RVA + /// @param binary_name Name of the binary + /// @param target_rva The target relative virtual address + /// @return Non-negative count of xrefs, negative error code on failure + virtual int GetXrefsCount(const char *binary_name, void *target_rva) const = 0; + + /// Get cached cross-references for a target RVA into a buffer + /// @param binary_name Name of the binary + /// @param target_rva The target relative virtual address + /// @param buffer Buffer to store the xref addresses + /// @param buffer_size Size of the buffer (number of void* elements) + /// @return Non-negative count of xrefs written, negative error code on failure + virtual int GetXrefsCached(const char *binary_name, void *target_rva, void **buffer, size_t buffer_size) const = 0; + + /// Unload a specific binary from memory + /// @param binary_name Name of the binary to unload + /// @return 0 on success, negative error code on failure + virtual int UnloadBinary(const char *binary_name) = 0; + + /// Unload all binaries from memory + /// @return 0 on success, negative error code on failure + virtual int UnloadAllBinaries() = 0; + + /// Install a JIT trampoline at a memory address + /// @param mem_address Runtime memory address where to install the trampoline + /// @param trampoline_address_out Pointer to store the trampoline address + /// @return 0 on success, negative error code on failure + virtual int InstallTrampoline(void *mem_address, void **trampoline_address_out) = 0; + + /// Follow cross-reference from memory address to memory address + /// @param mem_address Runtime memory address to analyze + /// @param target_address_out Pointer to store the target address + /// @return 0 on success, negative error code on failure + virtual int FollowXrefMemToMem(const void *mem_address, void **target_address_out) const = 0; + + /// Follow cross-reference from RVA to memory address + /// @param binary_name Name of the binary + /// @param rva Virtual address to analyze + /// @param target_address_out Pointer to store the target memory address + /// @return 0 on success, negative error code on failure + virtual int FollowXrefRvaToMem(const char *binary_name, uint64_t rva, void **target_address_out) = 0; + + /// Follow cross-reference from RVA to RVA + /// @param binary_name Name of the binary + /// @param rva Virtual address to analyze + /// @param target_rva_out Pointer to store the target RVA + /// @return 0 on success, negative error code on failure + virtual int FollowXrefRvaToRva(const char *binary_name, uint64_t rva, uint64_t *target_rva_out) = 0; + + /// Find the NetworkVar_StateChanged vtable index by RVA + /// @param vtable_rva Virtual address of the vtable to analyze + /// @param result Pointer to store the resulting index + /// @return 0 on success, negative error code on failure + virtual int FindNetworkvarVtableStatechangedRva(uint64_t vtable_rva, uint64_t *result) const = 0; + + /// Find the NetworkVar_StateChanged vtable index by memory address + /// @param vtable_mem_address Runtime memory address of the vtable + /// @param result Pointer to store the resulting index + /// @return 0 on success, negative error code on failure + virtual int FindNetworkvarVtableStatechanged(uint64_t vtable_mem_address, uint64_t *result) const = 0; + + /// Destroy the S2BinLib001 instance + /// @return 0 on success, negative error code on failure + virtual int Destroy() = 0; +}; + +#endif // __cplusplus + +#endif // _s2binlib_s2binlib001_h \ No newline at end of file diff --git a/hello/vendor/libs2binlib.a b/hello/vendor/libs2binlib.a deleted file mode 100644 index 90d1bff..0000000 Binary files a/hello/vendor/libs2binlib.a and /dev/null differ diff --git a/hello/vendor/s2binlib.lib b/hello/vendor/s2binlib.lib deleted file mode 100644 index 27e971f..0000000 Binary files a/hello/vendor/s2binlib.lib and /dev/null differ diff --git a/hello/xmake.lua b/hello/xmake.lua index 4b7e375..cc96903 100644 --- a/hello/xmake.lua +++ b/hello/xmake.lua @@ -7,6 +7,10 @@ target("hello") set_runtimes("MT") + add_includedirs("vendor") + + + -- add_links( -- "ntdll", -- "kernel32", @@ -14,10 +18,6 @@ target("hello") -- "userenv", -- "vendor/s2binlib.lib" -- ) - - add_links( - "vendor/libs2binlib.a" - ) -- -- If you want to known more usage about xmake, please see https://xmake.io -- diff --git a/s2binlib.h b/s2binlib.h deleted file mode 100644 index 0d453cd..0000000 --- a/s2binlib.h +++ /dev/null @@ -1,1344 +0,0 @@ -/************************************************************************************ - * S2BinLib - A static library that helps resolving memory from binary file - * and map to absolute memory address, targeting source 2 game engine. - * Copyright (C) 2025 samyyc - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - ***********************************************************************************/ - -#ifndef S2BINLIB_H -#define S2BINLIB_H - -#ifdef _WIN32 -#define S2BINLIB_API -#else -#define S2BINLIB_API __attribute__((visibility("hidden"))) -#endif - -#include -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - - /** - * Initialize the global S2BinLib instance - * - * The operating system is automatically detected at runtime. - * Can be called multiple times to reinitialize with different parameters. - * - * @param game_path Path to the game directory (null-terminated C string) - * @param game_type Game type identifier (null-terminated C string) - * - * @return 0 on success - * -2 if invalid parameters or unsupported OS - * -5 if internal error - * - * @example - * int result = s2binlib_initialize("C:/Games/MyGame", "csgo"); - * if (result != 0) { - * // Handle error - * } - */ - S2BINLIB_API int s2binlib_initialize(const char *game_path, const char *game_type); - - /** - * Initialize the global S2BinLib instance with a specific operating system - * - * Can be called multiple times to reinitialize with different parameters. - * - * @param game_path Path to the game directory (null-terminated C string) - * @param game_type Game type identifier (null-terminated C string) - * @param os Operating system identifier ("windows" or "linux") (null-terminated C string) - * - * @return 0 on success - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int result = s2binlib_initialize_with_os("C:/Games/MyGame", "csgo", "windows"); - * if (result != 0) { - * // Handle error - * } - */ - S2BINLIB_API int s2binlib_initialize_with_os(const char *game_path, const char *game_type, const char *os); - - /** - * Scan for a pattern in the specified binary - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan (e.g., "server", "client") (null-terminated C string) - * @param pattern Pattern string with wildcards (e.g., "48 89 5C 24 ? 48 89 74 24 ?") (null-terminated C string) - * @param result Pointer to store the resulting runtime memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @example - * void* address; - * int result = s2binlib_pattern_scan("server", "48 89 5C 24 ? 48 89 74", &address); - * if (result == 0) { - * printf("Found at: %p\n", address); - * } - */ - S2BINLIB_API int s2binlib_pattern_scan(const char *binary_name, const char *pattern, void **result); - - /** - * Pattern scan and return the relative virtual address (RVA) - * - * Scans for a byte pattern in the specified binary and returns the relative virtual address (RVA). - * Pattern format: hex bytes separated by spaces, use '?' for wildcards - * Example: "48 89 5C 24 ? 48 89 74 24 ?" - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan (null-terminated C string) - * @param pattern Pattern string with wildcards (null-terminated C string) - * @param result Pointer to store the resulting relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @example - * void* rva; - * int result = s2binlib_pattern_scan_rva("server", "48 89 5C 24 ?", &rva); - * if (result == 0) { - * printf("Pattern found at RVA: %p\n", rva); - * } - */ - S2BINLIB_API int s2binlib_pattern_scan_rva(const char *binary_name, const char *pattern, void **result); - - /** - * Callback function type for pattern_scan_all functions - * - * @param index The index of the current match (0-based) - * @param address The found address (RVA or memory address depending on the function) - * @param user_data User-provided data pointer - * @return true to stop searching (found what you need), false to continue searching - */ - typedef bool (*s2binlib_pattern_scan_callback)(size_t index, void *address, void *user_data); - - /** - * Find all occurrences of a pattern in a binary and return their relative virtual addresses (RVAs) - * - * Scans the binary for all occurrences of the specified byte pattern and calls - * the callback function for each match found. The callback receives relative virtual addresses (RVA). - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan - * @param pattern Byte pattern with wildcards (e.g., "48 89 5C 24 ? 48 89 74") - * @param callback Function pointer that will be called for each match - * @param user_data User-provided pointer passed to each callback invocation - * - * @return 0 on success (at least one match found) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @note The callback should return true to stop searching, false to continue - * - * @example - * bool my_callback(size_t index, void* address, void* user_data) { - * printf("Match #%zu found at RVA: %p\n", index, address); - * int* count = (int*)user_data; - * (*count)++; - * return false; // Continue searching - * } - * - * int count = 0; - * int result = s2binlib_pattern_scan_all_rva("server", "48 89 5C 24 ?", my_callback, &count); - * if (result == 0) { - * printf("Found %d matches\n", count); - * } - */ - S2BINLIB_API int s2binlib_pattern_scan_all_rva(const char *binary_name, const char *pattern, - s2binlib_pattern_scan_callback callback, void *user_data); - - /** - * Find all occurrences of a pattern in a binary and return their memory addresses - * - * Scans the binary for all occurrences of the specified byte pattern and calls - * the callback function for each match found. The callback receives memory addresses - * (adjusted with module base address). - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to scan - * @param pattern Byte pattern with wildcards (e.g., "48 89 5C 24 ? 48 89 74") - * @param callback Function pointer that will be called for each match - * @param user_data User-provided pointer passed to each callback invocation - * - * @return 0 on success (at least one match found) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if pattern not found - * -5 if internal error - * - * @note The callback should return true to stop searching, false to continue - * - * @example - * bool my_callback(size_t index, void* address, void* user_data) { - * printf("Match #%zu found at memory address: %p\n", index, address); - * int* count = (int*)user_data; - * (*count)++; - * return false; // Continue searching - * } - * - * int count = 0; - * int result = s2binlib_pattern_scan_all("server", "48 89 5C 24 ?", my_callback, &count); - * if (result == 0) { - * printf("Found %d matches\n", count); - * } - */ - S2BINLIB_API int s2binlib_pattern_scan_all(const char *binary_name, const char *pattern, - s2binlib_pattern_scan_callback callback, void *user_data); - - /** - * Find a vtable by class name in the specified binary - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (e.g., "server", "client") (null-terminated C string) - * @param vtable_name Class name to search for (null-terminated C string) - * @param result Pointer to store the resulting vtable runtime memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * void* vtable_addr; - * int result = s2binlib_find_vtable("server", "CBaseEntity", &vtable_addr); - * if (result == 0) { - * printf("VTable at: %p\n", vtable_addr); - * } - */ - S2BINLIB_API int s2binlib_find_vtable(const char *binary_name, const char *vtable_name, void **result); - - /** - * Find a vtable by class name and return its relative virtual address (RVA) - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Class name to search for (null-terminated C string) - * @param result Pointer to store the resulting vtable relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * void* vtable_rva; - * int result = s2binlib_find_vtable_rva("server", "CBaseEntity", &vtable_rva); - * if (result == 0) { - * printf("VTable RVA: %p\n", vtable_rva); - * } - */ - S2BINLIB_API int s2binlib_find_vtable_rva(const char *binary_name, const char *vtable_name, void **result); - - /** - * Find a vtable by mangled name and return its relative virtual address (RVA) - * - * Searches for a vtable using the mangled/decorated RTTI name directly. - * Unlike s2binlib_find_vtable_rva which auto-decorates the name, this function - * uses the provided name as-is. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Mangled RTTI name to search for (null-terminated C string) - * - Windows: ".?AVClassName@@" format - * - Linux: "{length}ClassName" format - * @param result Pointer to store the resulting vtable relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * // Windows mangled name example - * void* vtable_rva; - * int result = s2binlib_find_vtable_mangled_rva("server", ".?AVCBaseEntity@@", &vtable_rva); - * if (result == 0) { - * printf("VTable RVA: %p\n", vtable_rva); - * } - * - * // Linux mangled name example - * int result = s2binlib_find_vtable_mangled_rva("server", "11CBaseEntity", &vtable_rva); - */ - S2BINLIB_API int s2binlib_find_vtable_mangled_rva(const char *binary_name, const char *vtable_name, void **result); - - /** - * Find a vtable by mangled name and return its runtime memory address - * - * Searches for a vtable using the mangled/decorated RTTI name directly and - * returns its runtime memory address. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Mangled RTTI name to search for (null-terminated C string) - * - Windows: ".?AVClassName@@" format - * - Linux: "{length}ClassName" format - * @param result Pointer to store the resulting vtable memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * void* vtable_addr; - * int result = s2binlib_find_vtable_mangled("server", ".?AVCBaseEntity@@", &vtable_addr); - * if (result == 0) { - * printf("VTable at: %p\n", vtable_addr); - * } - */ - S2BINLIB_API int s2binlib_find_vtable_mangled(const char *binary_name, const char *vtable_name, void **result); - - /** - * Find a nested vtable (2 levels) by class names and return its relative virtual address (RVA) - * - * Searches for a vtable of a nested class (e.g., Class1::Class2). - * The function automatically decorates the names according to the platform's - * RTTI name mangling scheme: - * - Windows: ".?AVClass2@Class1@@" - * - Linux: "N{len1}Class1{len2}Class2E" - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param class1_name Outer class name (null-terminated C string) - * @param class2_name Inner/nested class name (null-terminated C string) - * @param result Pointer to store the resulting vtable relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * void* vtable_rva; - * int result = s2binlib_find_vtable_nested_2_rva("server", "CEntitySystem", "CEntitySubsystem", &vtable_rva); - * if (result == 0) { - * printf("Nested VTable RVA: %p\n", vtable_rva); - * } - */ - S2BINLIB_API int s2binlib_find_vtable_nested_2_rva(const char *binary_name, const char *class1_name, const char *class2_name, void **result); - - /** - * Find a nested vtable (2 levels) by class names and return its runtime memory address - * - * Searches for a vtable of a nested class (e.g., Class1::Class2) and returns - * its runtime memory address. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param class1_name Outer class name (null-terminated C string) - * @param class2_name Inner/nested class name (null-terminated C string) - * @param result Pointer to store the resulting vtable memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable not found - * -5 if internal error - * - * @example - * void* vtable_addr; - * int result = s2binlib_find_vtable_nested_2("server", "CEntitySystem", "CEntitySubsystem", &vtable_addr); - * if (result == 0) { - * printf("Nested VTable at: %p\n", vtable_addr); - * } - */ - S2BINLIB_API int s2binlib_find_vtable_nested_2(const char *binary_name, const char *class1_name, const char *class2_name, void **result); - - /** - * Get the number of virtual functions in a vtable - * - * Returns the count of virtual functions (vfuncs) in the specified vtable. - * This counts valid function pointers in the vtable until it encounters a null - * or invalid pointer. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (e.g., "server", "client") - * @param vtable_name Name of the vtable/class to search for - * @param result Pointer to store the resulting count of virtual functions - * - * @return 0 - Success, result contains the vfunc count - * -1 - S2BinLib not initialized - * -2 - Invalid input (null pointer or invalid UTF-8) - * -4 - Operation failed (vtable not found or other error) - * -5 - Failed to acquire lock - * - * @example - * size_t vfunc_count; - * int result = s2binlib_get_vtable_vfunc_count("server", "CBaseEntity", &vfunc_count); - * if (result == 0) { - * printf("VTable has %zu virtual functions\n", vfunc_count); - * } - */ - S2BINLIB_API int s2binlib_get_vtable_vfunc_count(const char *binary_name, const char *vtable_name, size_t *result); - - /** - * Get the number of virtual functions in a vtable by relative virtual address (RVA) - * - * Returns the count of virtual functions (vfuncs) in a vtable at the specified - * relative virtual address. This counts valid function pointers in the vtable until it - * encounters a null or invalid pointer. - * - * Unlike s2binlib_get_vtable_vfunc_count, this function takes a relative virtual address - * directly instead of looking up the vtable by name. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary (e.g., "server", "client") - * @param vtable_rva Relative virtual address of the vtable - * @param result Pointer to store the resulting count of virtual functions - * - * @return 0 - Success, result contains the vfunc count - * -1 - S2BinLib not initialized - * -2 - Invalid input (null pointer or invalid UTF-8) - * -4 - Operation failed (invalid address or other error) - * -5 - Failed to acquire lock - * - * @example - * void* vtable_rva; - * // First get the vtable relative virtual address - * s2binlib_find_vtable_rva("server", "CBaseEntity", &vtable_rva); - * - * // Then count its virtual functions - * size_t vfunc_count; - * int result = s2binlib_get_vtable_vfunc_count_by_rva("server", (uint64_t)vtable_rva, &vfunc_count); - * if (result == 0) { - * printf("VTable has %zu virtual functions\n", vfunc_count); - * } - */ - S2BINLIB_API int s2binlib_get_vtable_vfunc_count_by_rva(const char *binary_name, uint64_t vtable_rva, size_t *result); - - /** - * Find a symbol by name in the specified binary - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (e.g., "server", "client") (null-terminated C string) - * @param symbol_name Symbol name to search for (null-terminated C string) - * @param result Pointer to store the resulting symbol runtime memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if symbol not found - * -5 if internal error - * - * @example - * void* symbol_addr; - * int result = s2binlib_find_symbol("server", "CreateInterface", &symbol_addr); - * if (result == 0) { - * printf("Symbol at: %p\n", symbol_addr); - * } - */ - S2BINLIB_API int s2binlib_find_symbol(const char *binary_name, const char *symbol_name, void **result); - - /** - * Find a symbol by name and return its relative virtual address (RVA) - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param symbol_name Symbol name to search for (null-terminated C string) - * @param result Pointer to store the resulting relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if symbol not found - * -5 if internal error - * - * @example - * void* symbol_rva; - * int result = s2binlib_find_symbol_rva("server", "_Z13CreateInterfacev", &symbol_rva); - * if (result == 0) { - * printf("Symbol RVA: %p\n", symbol_rva); - * } - */ - S2BINLIB_API int s2binlib_find_symbol_rva(const char *binary_name, const char *symbol_name, void **result); - - /** - * Manually set the base address for a module from a pointer - * - * This allows overriding the automatic base address detection for a module. - * The function will automatically detect the module base from the provided pointer. - * - * @param binary_name Name of the binary (e.g., "server", "client") (null-terminated C string) - * @param pointer The pointer inside the specified module - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int result = s2binlib_set_module_base_from_pointer("server", 0x140001000); - * if (result == 0) { - * printf("Server base address set successfully\n"); - * } - */ - S2BINLIB_API int s2binlib_set_module_base_from_pointer(const char *binary_name, void *pointer); - - /** - * Clear manually set base address for a module - * - * After calling this, the module will use automatic base address detection again. - * - * @param binary_name Name of the binary (e.g., "server", "client") (null-terminated C string) - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int result = s2binlib_clear_module_base_address("server"); - * if (result == 0) { - * printf("Server base address cleared\n"); - * } - */ - S2BINLIB_API int s2binlib_clear_module_base_address(const char *binary_name); - - /** - * Set a custom binary path for a specific binary and operating system - * - * This allows overriding the default binary path resolution for a specific binary. - * You can specify different paths for Windows and Linux builds. - * - * @param binary_name Name of the binary (e.g., "server", "client") (null-terminated C string) - * @param path The custom file path to the binary (null-terminated C string) - * @param os Operating system identifier ("windows" or "linux") (null-terminated C string) - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -4 if unsupported OS specified - * -5 if internal error - * - * @example - * int result = s2binlib_set_custom_binary_path("server", "/custom/path/server.dll", "windows"); - * if (result == 0) { - * printf("Custom binary path set successfully\n"); - * } - */ - S2BINLIB_API int s2binlib_set_custom_binary_path(const char *binary_name, const char *path, const char *os); - - /** - * Get the module base address - * - * Returns the base address of a loaded module. If a manual base address was set, - * that value will be returned. Otherwise, attempts to find the base address from - * the running process. - * - * @param binary_name Name of the binary (e.g., "server", "client") (null-terminated C string) - * @param result Pointer to store the resulting base address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if module not found or not loaded - * -5 if internal error - * - * @example - * void* base_addr; - * int result = s2binlib_get_module_base_address("server", &base_addr); - * if (result == 0) { - * printf("Module base: %p\n", base_addr); - * } - */ - S2BINLIB_API int s2binlib_get_module_base_address(const char *binary_name, void **result); - - /** - * Check if a binary is already loaded - * - * @param binary_name Name of the binary to check (null-terminated C string) - * - * @return 1 if loaded - * 0 if not loaded - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int loaded = s2binlib_is_binary_loaded("server"); - * if (loaded == 1) { - * printf("Server is loaded\n"); - * } - */ - S2BINLIB_API int s2binlib_is_binary_loaded(const char *binary_name); - - /** - * Load a binary into memory - * - * Loads the specified binary file into memory for analysis. - * If the binary is already loaded, this function does nothing. - * - * @param binary_name Name of the binary to load (null-terminated C string) - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int result = s2binlib_load_binary("server"); - * if (result == 0) { - * printf("Server loaded successfully\n"); - * } - */ - S2BINLIB_API int s2binlib_load_binary(const char *binary_name); - - /** - * Get the full path to a binary file - * - * Returns the full filesystem path where the binary file is expected to be located. - * - * @param binary_name Name of the binary (null-terminated C string) - * @param buffer Buffer to store the path string - * @param buffer_size Size of the buffer - * - * @return 0 on success (path written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if buffer too small - * -5 if internal error - * - * @example - * char path[512]; - * int result = s2binlib_get_binary_path("server", path, sizeof(path)); - * if (result == 0) { - * printf("Binary path: %s\n", path); - * } - */ - S2BINLIB_API int s2binlib_get_binary_path(const char *binary_name, char *buffer, size_t buffer_size); - - /** - * Find an exported symbol by name and return its relative virtual address (RVA) - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param export_name Export name to search for (null-terminated C string) - * @param result Pointer to store the resulting relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if export not found - * -5 if internal error - * - * @example - * void* export_rva; - * int result = s2binlib_find_export_rva("server", "CreateInterface", &export_rva); - * if (result == 0) { - * printf("Export RVA: %p\n", export_rva); - * } - */ - S2BINLIB_API int s2binlib_find_export_rva(const char *binary_name, const char *export_name, void **result); - - /** - * Find an exported symbol by name and return its runtime memory address - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param export_name Export name to search for (null-terminated C string) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or get base address - * -4 if export not found - * -5 if internal error - * - * @example - * void* export_addr; - * int result = s2binlib_find_export("server", "CreateInterface", &export_addr); - * if (result == 0) { - * printf("Export at: %p\n", export_addr); - * } - */ - S2BINLIB_API int s2binlib_find_export(const char *binary_name, const char *export_name, void **result); - - /** - * Read bytes from binary at a file offset - * - * Reads raw bytes from the binary file at the specified file offset into the provided buffer. - * - * @param binary_name Name of the binary to read from (null-terminated C string) - * @param file_offset File offset to read from - * @param buffer Buffer to store the read bytes - * @param buffer_size Size of the buffer (number of bytes to read) - * - * @return 0 on success (bytes written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to read - * -5 if internal error - * - * @example - * uint8_t buffer[16]; - * int result = s2binlib_read_by_file_offset("server", 0x1000, buffer, sizeof(buffer)); - * if (result == 0) { - * // Use buffer - * } - */ - S2BINLIB_API int s2binlib_read_by_file_offset(const char *binary_name, uint64_t file_offset, uint8_t *buffer, size_t buffer_size); - - /** - * Read bytes from binary at a relative virtual address (RVA) - * - * Reads raw bytes from the binary at the specified relative virtual address (RVA) into the provided buffer. - * - * @param binary_name Name of the binary to read from (null-terminated C string) - * @param rva Relative virtual address to read from - * @param buffer Buffer to store the read bytes - * @param buffer_size Size of the buffer (number of bytes to read) - * - * @return 0 on success (bytes written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to read - * -5 if internal error - * - * @example - * uint8_t buffer[16]; - * int result = s2binlib_read_by_rva("server", 0x140001000, buffer, sizeof(buffer)); - * if (result == 0) { - * // Use buffer - * } - */ - S2BINLIB_API int s2binlib_read_by_rva(const char *binary_name, uint64_t rva, uint8_t *buffer, size_t buffer_size); - - /** - * Read bytes from binary at a runtime memory address - * - * Reads raw bytes from the binary at the specified runtime memory address into the provided buffer. - * - * @param binary_name Name of the binary to read from (null-terminated C string) - * @param mem_address Runtime memory address to read from - * @param buffer Buffer to store the read bytes - * @param buffer_size Size of the buffer (number of bytes to read) - * - * @return 0 on success (bytes written to buffer) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to read - * -5 if internal error - * - * @example - * uint8_t buffer[16]; - * int result = s2binlib_read_by_mem_address("server", mem_addr, buffer, sizeof(buffer)); - * if (result == 0) { - * // Use buffer - * } - */ - S2BINLIB_API int s2binlib_read_by_mem_address(const char *binary_name, uint64_t mem_address, uint8_t *buffer, size_t buffer_size); - - /** - * Find a virtual function by vtable name and index, return relative virtual address (RVA) - * - * Locates a vtable by its class name, then reads the virtual function pointer - * at the specified index. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Class name whose vtable to search for (null-terminated C string) - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if vtable or vfunc not found - * -5 if internal error - * - * @example - * void* vfunc_rva; - * int result = s2binlib_find_vfunc_by_vtbname_rva("server", "CBaseEntity", 5, &vfunc_rva); - * if (result == 0) { - * printf("VFunc RVA: %p\n", vfunc_rva); - * } - */ - S2BINLIB_API int s2binlib_find_vfunc_by_vtbname_rva(const char *binary_name, const char *vtable_name, size_t vfunc_index, void **result); - - /** - * Find a virtual function by vtable name and index, return runtime address - * - * Locates a vtable by its class name, then reads the virtual function pointer - * at the specified index and returns its runtime memory address. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param vtable_name Class name whose vtable to search for (null-terminated C string) - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or get base address - * -4 if vtable or vfunc not found - * -5 if internal error - * - * @example - * void* vfunc_addr; - * int result = s2binlib_find_vfunc_by_vtbname("server", "CBaseEntity", 5, &vfunc_addr); - * if (result == 0) { - * printf("VFunc at: %p\n", vfunc_addr); - * } - */ - S2BINLIB_API int s2binlib_find_vfunc_by_vtbname(const char *binary_name, const char *vtable_name, size_t vfunc_index, void **result); - - /** - * Find a virtual function by vtable pointer and index, return relative virtual address (RVA) - * - * Given a runtime pointer to a vtable, reads the virtual function pointer - * at the specified index. The appropriate binary is automatically detected. - * - * @param vtable_ptr Runtime pointer to the vtable - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not found for pointer - * -4 if failed to read vfunc - * -5 if internal error - * - * @example - * void* vfunc_rva; - * int result = s2binlib_find_vfunc_by_vtbptr_rva(vtable_ptr, 5, &vfunc_rva); - * if (result == 0) { - * printf("VFunc RVA: %p\n", vfunc_rva); - * } - */ - S2BINLIB_API int s2binlib_find_vfunc_by_vtbptr_rva(void *vtable_ptr, size_t vfunc_index, void **result); - - /** - * Find a virtual function by vtable pointer and index, return runtime address - * - * Given a runtime pointer to a vtable, reads the virtual function pointer - * at the specified index. The appropriate binary is automatically detected. - * - * @param vtable_ptr Runtime pointer to the vtable - * @param vfunc_index Index of the virtual function in the vtable (0-based) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not found for pointer - * -4 if failed to read vfunc - * -5 if internal error - * - * @example - * void* vfunc_addr; - * int result = s2binlib_find_vfunc_by_vtbptr(vtable_ptr, 5, &vfunc_addr); - * if (result == 0) { - * printf("VFunc at: %p\n", vfunc_addr); - * } - */ - S2BINLIB_API int s2binlib_find_vfunc_by_vtbptr(void *vtable_ptr, size_t vfunc_index, void **result); - - /** - * Get the RTTI type name for an object pointer - * - * Reads the vtable pointer from the provided object pointer and resolves the - * RTTI type name associated with it. The resulting string is written into the - * provided buffer as a null-terminated UTF-8 string. - * - * @param object_ptr Pointer to the object whose vtable to inspect - * @param buffer Buffer to store the resulting type name - * @param buffer_size Size of the buffer in bytes - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters or conversion error - * -3 if buffer too small - * -4 if vtable info could not be resolved - * -5 if internal error - * - * @example - * char name[128]; - * int result = s2binlib_get_object_ptr_vtable_name(object_ptr, name, sizeof(name)); - * if (result == 0) { - * printf("Object type: %s\n", name); - * } - */ - S2BINLIB_API int s2binlib_get_object_ptr_vtable_name(const void *object_ptr, char *buffer, size_t buffer_size); - - /** - * Check whether an object pointer has a resolvable vtable - * - * @param object_ptr Pointer to the object to check - * - * @return 1 if a vtable is detected - * 0 if no vtable is detected - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error - * - * @example - * int has_vtable = s2binlib_object_ptr_has_vtable(object_ptr); - * if (has_vtable == 1) { - * printf("Object has a vtable\n"); - * } - */ - S2BINLIB_API int s2binlib_object_ptr_has_vtable(const void *object_ptr); - - /** - * Check whether an object's vtable inherits from a specific base class - * - * @param object_ptr Pointer to the object to inspect - * @param base_class_name Name of the base class to search for (UTF-8, null-terminated) - * - * @return 1 if the base class is present - * 0 if the base class is not present - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -4 if vtable info could not be resolved - * -5 if internal error - * - * @example - * int has_base = s2binlib_object_ptr_has_base_class(object_ptr, "CBaseEntity"); - * if (has_base == 1) { - * printf("Object derives from CBaseEntity\n"); - * } - */ - S2BINLIB_API int s2binlib_object_ptr_has_base_class(const void *object_ptr, const char *base_class_name); - - /** - * Find a string in the binary and return its relative virtual address (RVA) - * - * Searches for an exact string match in the binary (case-sensitive). - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param string String to search for (null-terminated C string) - * @param result Pointer to store the resulting relative virtual address (RVA) - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if string not found - * -5 if internal error - * - * @example - * void* string_rva; - * int result = s2binlib_find_string_rva("server", "CBaseEntity", &string_rva); - * if (result == 0) { - * printf("String RVA: %p\n", string_rva); - * } - */ - S2BINLIB_API int s2binlib_find_string_rva(const char *binary_name, const char *string, void **result); - - /** - * Find a string in the binary and return its runtime memory address - * - * Searches for an exact string match in the binary (case-sensitive). - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to search (null-terminated C string) - * @param string String to search for (null-terminated C string) - * @param result Pointer to store the resulting memory address - * - * @return 0 on success (address written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or get base address - * -4 if string not found - * -5 if internal error - * - * @example - * void* string_addr; - * int result = s2binlib_find_string("server", "CBaseEntity", &string_addr); - * if (result == 0) { - * printf("String at: %p\n", string_addr); - * } - */ - S2BINLIB_API int s2binlib_find_string(const char *binary_name, const char *string, void **result); - - /** - * Dump and cache all cross-references in a binary - * - * This function disassembles all executable sections of the binary once and builds - * a complete cross-reference (xref) database. Subsequent queries are very fast. - * - * If the binary is not yet loaded, it will be loaded automatically. - * - * @param binary_name Name of the binary to analyze (null-terminated C string) - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary - * -4 if failed to dump xrefs - * -5 if internal error - * - * @example - * int result = s2binlib_dump_xrefs("server"); - * if (result == 0) { - * printf("Xrefs cached successfully\n"); - * } - */ - S2BINLIB_API int s2binlib_dump_xrefs(const char *binary_name); - - /** - * Get the count of cached cross-references for a target relative virtual address (RVA) - * - * Returns the number of code locations that reference the specified target address. - * The binary must have been analyzed with s2binlib_dump_xrefs() first. - * - * Use this function to determine the buffer size needed for s2binlib_get_xrefs_cached(). - * - * @param binary_name Name of the binary (null-terminated C string) - * @param target_rva The target relative virtual address (RVA) to find references to - * - * @return Non-negative: Number of xrefs found - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not analyzed (call s2binlib_dump_xrefs first) - * -5 if internal error - * - * @example - * // First, dump xrefs - * s2binlib_dump_xrefs("server"); - * - * // Get xref count - * int count = s2binlib_get_xrefs_count("server", (void*)0x140001000); - * if (count > 0) { - * void** xrefs = malloc(count * sizeof(void*)); - * s2binlib_get_xrefs_cached("server", (void*)0x140001000, xrefs, count); - * // Use xrefs - * free(xrefs); - * } - */ - S2BINLIB_API int s2binlib_get_xrefs_count(const char *binary_name, void *target_rva); - - /** - * Get cached cross-references for a target relative virtual address (RVA) into a buffer - * - * Returns all code locations that reference the specified target address into the provided buffer. - * The binary must have been analyzed with s2binlib_dump_xrefs() first. - * - * Use s2binlib_get_xrefs_count() to determine the required buffer size. - * - * @param binary_name Name of the binary (null-terminated C string) - * @param target_rva The target relative virtual address (RVA) to find references to - * @param buffer Buffer to store the xref addresses (array of uint64_t) - * @param buffer_size Size of the buffer (number of uint64_t elements it can hold) - * - * @return Non-negative: Number of xrefs written to buffer - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if binary not analyzed (call s2binlib_dump_xrefs first) - * -4 if buffer too small - * -5 if internal error - * - * @example - * // First, dump xrefs - * s2binlib_dump_xrefs("server"); - * - * // Get xref count - * int count = s2binlib_get_xrefs_count("server", (void*)0x140001000); - * if (count > 0) { - * void** xrefs = malloc(count * sizeof(void*)); - * int result = s2binlib_get_xrefs_cached("server", (void*)0x140001000, xrefs, count); - * if (result > 0) { - * for (int i = 0; i < result; i++) { - * printf("Xref at: %p\n", xrefs[i]); - * } - * } - * free(xrefs); - * } - */ - S2BINLIB_API int s2binlib_get_xrefs_cached(const char *binary_name, void *target_rva, void **buffer, size_t buffer_size); - - /** - * Unload a specific binary from memory - * - * Removes the specified binary from the internal cache, freeing up memory. - * This is useful when you no longer need a particular binary. - * - * @param binary_name Name of the binary to unload (e.g., "server", "client") - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -5 if internal error (mutex lock failed) - * - * @example - * int result = s2binlib_unload_binary("server"); - * if (result == 0) { - * printf("Binary unloaded successfully\n"); - * } - */ - S2BINLIB_API int s2binlib_unload_binary(const char *binary_name); - - /** - * Unload all binaries from memory - * - * Removes all loaded binaries from the internal cache, freeing up memory. - * This is useful for cleanup operations or when you need to start fresh. - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -5 if internal error (mutex lock failed) - * - * @example - * int result = s2binlib_unload_all_binaries(); - * if (result == 0) { - * printf("All binaries unloaded successfully\n"); - * } - */ - S2BINLIB_API int s2binlib_unload_all_binaries(void); - - /** - * Install a JIT trampoline at a memory address - * - * Creates a JIT trampoline that can be used to hook or intercept function calls. - * This function reads the original function pointer at the specified memory address, - * creates a trampoline, and replaces the original pointer with the trampoline address. - * - * If a trampoline is already installed at the same address, this function does nothing - * and returns success. - * - * @param mem_address Runtime memory address where to install the trampoline - * @param trampoline_address_out Pointer to store the resulting trampoline address - * - * @return 0 on success - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to install trampoline - * -5 if internal error - * - * @warning This function modifies memory at the specified address and changes - * memory protection flags. The caller must ensure that: - * - The memory address is valid and writable - * - The address points to an 8-byte function pointer - * - No other threads are accessing the memory during the operation - * - * @example - * void* vtable_ptr = ...; // Get vtable pointer - * void* trampoline_address; - * int result = s2binlib_install_trampoline(vtable_ptr, &trampoline_address); - * if (result == 0) { - * printf("Trampoline installed successfully\n"); - * } - */ - S2BINLIB_API int s2binlib_install_trampoline(void *mem_address, void **trampoline_address_out); - - /** - * @brief Follow cross-reference from memory address to memory address - * - * This function reads the instruction at the given memory address, - * decodes it using iced-x86, and returns the target address if the - * instruction contains a valid cross-reference. - * - * Valid xrefs include: - * - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) - * - Near branches (call, jmp, jcc) - * - Absolute memory operands - * - * @param mem_address Runtime memory address to analyze - * @param target_address_out Pointer to store the target address - * - * @return 0 on success (target address written to target_address_out) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if no valid xref found or invalid instruction - * -5 if internal error - * - * @warning This function reads memory at the specified address. - * The caller must ensure that: - * - The memory address is valid and readable - * - The address points to executable code - * - * @example - * void* instruction_addr = ...; // Address of an instruction - * void* target_addr; - * int result = s2binlib_follow_xref_mem_to_mem(instruction_addr, &target_addr); - * if (result == 0) { - * printf("Xref target: %p\n", target_addr); - * } - */ - S2BINLIB_API int s2binlib_follow_xref_mem_to_mem(const void *mem_address, void **target_address_out); - - /** - * @brief Follow cross-reference from relative virtual address (RVA) to memory address - * - * This function reads the instruction at the given relative virtual address from the file, - * decodes it using iced-x86, and returns the target memory address if the - * instruction contains a valid cross-reference. - * - * Valid xrefs include: - * - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) - * - Near branches (call, jmp, jcc) - * - Absolute memory operands - * - * @param binary_name Name of the binary (e.g., "server", "client") - * @param rva Relative virtual address (RVA) to analyze - * @param target_address_out Pointer to store the target memory address - * - * @return 0 on success (target address written to target_address_out) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or no valid xref found - * -5 if internal error - * - * @example - * void* target_addr; - * int result = s2binlib_follow_xref_rva_to_mem("server", 0x140001000, &target_addr); - * if (result == 0) { - * printf("Xref target: %p\n", target_addr); - * } - */ - S2BINLIB_API int s2binlib_follow_xref_rva_to_mem(const char *binary_name, uint64_t rva, void **target_address_out); - - /** - * @brief Follow cross-reference from relative virtual address (RVA) to relative virtual address (RVA) - * - * This function reads the instruction at the given relative virtual address from the file, - * decodes it using iced-x86, and returns the target relative virtual address if the - * instruction contains a valid cross-reference. - * - * Valid xrefs include: - * - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) - * - Near branches (call, jmp, jcc) - * - Absolute memory operands - * - * @param binary_name Name of the binary (e.g., "server", "client") - * @param rva Relative virtual address (RVA) to analyze - * @param target_rva_out Pointer to store the target relative virtual address (RVA) - * - * @return 0 on success (target RVA written to target_rva_out) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if failed to load binary or no valid xref found - * -5 if internal error - * - * @example - * uint64_t target_rva; - * int result = s2binlib_follow_xref_rva_to_rva("server", 0x140001000, &target_rva); - * if (result == 0) { - * printf("Xref target RVA: 0x%llX\n", target_rva); - * } - */ - S2BINLIB_API int s2binlib_follow_xref_rva_to_rva(const char *binary_name, uint64_t rva, uint64_t *target_rva_out); - - /** - * @brief Find the NetworkVar_StateChanged vtable index by relative virtual address (RVA) - * - * This function scans the vtable at the given relative virtual address to find the - * index of the NetworkVar_StateChanged virtual function. It analyzes each - * virtual function in the vtable looking for the specific instruction pattern - * that identifies the StateChanged function (cmp dword ptr [reg+56], 0xFF). - * - * @param vtable_rva Relative virtual address (RVA) of the vtable to analyze - * @param result Pointer to store the resulting index (as uint64_t) - * - * @return 0 on success (index written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -4 if NetworkVar_StateChanged not found in vtable - * -5 if internal error - * - * @example - * uint64_t index; - * int result = s2binlib_find_networkvar_vtable_statechanged_rva(0x140001000, &index); - * if (result == 0) { - * printf("StateChanged index: %llu\n", index); - * } - */ - S2BINLIB_API int s2binlib_find_networkvar_vtable_statechanged_rva(uint64_t vtable_rva, uint64_t *result); - - /** - * @brief Find the NetworkVar_StateChanged vtable index by memory address - * - * This function converts the runtime memory address to a relative virtual address (RVA), - * then scans the vtable to find the index of the NetworkVar_StateChanged - * virtual function. It analyzes each virtual function in the vtable looking - * for the specific instruction pattern that identifies the StateChanged function. - * - * @param vtable_mem_address Runtime memory address of the vtable - * @param result Pointer to store the resulting index (as uint64_t) - * - * @return 0 on success (index written to result) - * -1 if S2BinLib not initialized - * -2 if invalid parameters - * -3 if address conversion failed - * -4 if NetworkVar_StateChanged not found in vtable - * -5 if internal error - * - * @example - * uint64_t index; - * int result = s2binlib_find_networkvar_vtable_statechanged(vtable_ptr, &index); - * if (result == 0) { - * printf("StateChanged index: %llu\n", index); - * } - */ - S2BINLIB_API int s2binlib_find_networkvar_vtable_statechanged(uint64_t vtable_mem_address, uint64_t *result); - -#ifdef __cplusplus -} -#endif - -#endif // S2BINLIB_H \ No newline at end of file diff --git a/s2binlib/Cargo.toml b/s2binlib/Cargo.toml index 8d532e5..6ac91f3 100644 --- a/s2binlib/Cargo.toml +++ b/s2binlib/Cargo.toml @@ -15,6 +15,7 @@ region = "3.0" cpp_demangle = "0.4" msvc-demangler = "0.10" serde = { version = "1.0", optional = true, features = ["derive"] } +hashbrown = "0.16.0" [target.'cfg(target_os = "windows")'.dependencies] diff --git a/s2binlib/src/lib.rs b/s2binlib/src/lib.rs index 5b61b92..b77ffa5 100644 --- a/s2binlib/src/lib.rs +++ b/s2binlib/src/lib.rs @@ -63,7 +63,15 @@ mod tests { s2binlib.dump_strings("server")?; - println!("{:?}", s2binlib.strings_cache.get("server").unwrap().get("nullptr Ent in GiveNamedItem: %s!").unwrap()); + println!( + "{:?}", + s2binlib + .strings_cache + .get("server") + .unwrap() + .get("nullptr Ent in GiveNamedItem: %s!") + .unwrap() + ); // println!("lib: {:?}", ""); // let lib = unsafe { Library::new("F:/cs2server/game/bin/win64/tier0.dll")? }; diff --git a/s2binlib/src/memory.rs b/s2binlib/src/memory.rs index b96d7dd..1ff40a8 100644 --- a/s2binlib/src/memory.rs +++ b/s2binlib/src/memory.rs @@ -18,7 +18,7 @@ ***********************************************************************************/ use anyhow::Result; -use object::{BinaryFormat, Object, ObjectSection}; +use object::{Object, ObjectSection}; use crate::is_executable; diff --git a/s2binlib/src/s2binlib.rs b/s2binlib/src/s2binlib.rs index 0eaea04..98f8cab 100644 --- a/s2binlib/src/s2binlib.rs +++ b/s2binlib/src/s2binlib.rs @@ -17,8 +17,8 @@ * along with this program. If not, see . ***********************************************************************************/ -use std::{cell::Cell, collections::HashMap, fs, path::PathBuf}; - +use std::{cell::Cell, fs, path::PathBuf}; +use hashbrown::HashMap; use anyhow::{Result, bail}; use iced_x86::{Code, Decoder, DecoderOptions, Instruction, Mnemonic, OpKind, Register}; use object::{Object, ObjectSection, ObjectSymbol, read::pe::ImageOptionalHeader}; @@ -229,7 +229,7 @@ impl<'a> S2BinLib<'a> { let (module_name, module_base) = module.unwrap(); // respect custom module base - for (manual_module_name, manual_module_base) in &self.manual_base_addresses { + for (manual_module_name, manual_module_base) in &self.manual_base_addresses { let lib_name = self.get_os_lib_name(&manual_module_name); if module_name.contains(&lib_name) { return Ok(*manual_module_base); @@ -580,7 +580,7 @@ impl<'a> S2BinLib<'a> { Err(anyhow::anyhow!("Vtable not found.")) } - fn is_rvalid_rva(&self, binary_name: &str, rva: u64) -> Result { + fn is_valid_rva(&self, binary_name: &str, rva: u64) -> Result { let Ok(file_offset) = self.rva_to_file_offset(binary_name, rva) else { return Ok(false); }; @@ -588,8 +588,8 @@ impl<'a> S2BinLib<'a> { Ok(file_offset > 0 && file_offset < self.get_binary(binary_name)?.len() as u64) } - fn is_rvalid_executable_rva(&self, binary_name: &str, rva: u64) -> Result { - if !self.is_rvalid_rva(binary_name, rva)? { + fn is_valid_executable_rva(&self, binary_name: &str, rva: u64) -> Result { + if !self.is_valid_rva(binary_name, rva)? { return Ok(false); } @@ -651,11 +651,11 @@ impl<'a> S2BinLib<'a> { let vfunc_rva = self.read_by_rva(binary_name, vtable_rva + offset, 8)?; let vfunc_rva = u64::from_le_bytes(vfunc_rva.try_into().unwrap()); - if vfunc_rva == 0 || !self.is_rvalid_executable_rva(binary_name, vfunc_rva)? { + if vfunc_rva == 0 || !self.is_valid_executable_rva(binary_name, vfunc_rva)? { break; } - // check if its a rvalid function + // check if its a valid function offset += 8; } Ok(offset as usize / 8) @@ -903,7 +903,7 @@ impl<'a> S2BinLib<'a> { while decoder.can_decode() { decoder.decode_out(&mut instruction); - // Skip inrvalid instructions + // Skip invalid instructions if instruction.is_invalid() { continue; } @@ -955,7 +955,7 @@ impl<'a> S2BinLib<'a> { instruction.immediate(i) as u32 as u64 }; - // Only consider rvalues that look like rvalid virtual addresses + // Only consider rvalues that look like valid virtual addresses // For PE files, check if it's near the image base // For ELF files, check if it's in a reasonable range let is_likely_address = if bitness == 64 { @@ -991,9 +991,8 @@ impl<'a> S2BinLib<'a> { let mut section_ranges = vec![]; if self.get_os() == "windows" { - section_ranges.push(self.get_section_range(binary_name, ".data")?); - section_ranges.push(self.get_section_range(binary_name, ".rdata")?); - + section_ranges.push(self.get_section_range(binary_name, ".data")?); + section_ranges.push(self.get_section_range(binary_name, ".rdata")?); } else if self.get_os() == "linux" { section_ranges.push(self.get_section_range(binary_name, ".rodata")?); section_ranges.push(self.get_section_range(binary_name, ".data")?); @@ -1096,7 +1095,7 @@ impl<'a> S2BinLib<'a> { if instruction.is_invalid() { return Err(anyhow::anyhow!( - "Inrvalid instruction at address 0x{:X}", + "Invalid instruction at address 0x{:X}", mem_address )); } @@ -1129,7 +1128,7 @@ impl<'a> S2BinLib<'a> { } Err(anyhow::anyhow!( - "No rvalid xref found in instruction at address 0x{:X}", + "No valid xref found in instruction at address 0x{:X}", mem_address )) } @@ -1161,7 +1160,7 @@ impl<'a> S2BinLib<'a> { decoder.decode_out(&mut instruction); if instruction.is_invalid() { - return Err(anyhow::anyhow!("Inrvalid instruction at rva 0x{:X}", rva)); + return Err(anyhow::anyhow!("Invalid instruction at rva 0x{:X}", rva)); } for i in 0..instruction.op_count() { @@ -1192,7 +1191,7 @@ impl<'a> S2BinLib<'a> { } Err(anyhow::anyhow!( - "No rvalid xref found in instruction at rva 0x{:X}", + "No valid xref found in instruction at rva 0x{:X}", rva )) } diff --git a/s2binlib/src/schema.rs b/s2binlib/src/schema.rs new file mode 100644 index 0000000..319af87 --- /dev/null +++ b/s2binlib/src/schema.rs @@ -0,0 +1,79 @@ +use std::ffi::{CStr, c_char, c_void}; + +use crate::view::BinaryView; + +#[repr(C)] +#[derive(Debug, Clone)] +pub struct SchemaClassInfo { + pub recursive_ptr: *const SchemaClassInfo, + pub name_ptr: *const c_char, + __unk001: [u8; 8], + pub size: u16, + __pad001: [u8; 2], + pub field_count: u16, + __pad002: [u8; 2], + pub enums_ptr: *const SchemaFieldInfo, + pub fields_ptr: *const SchemaFieldInfo +} + +impl SchemaClassInfo { + + pub fn get_enum_info(&self, index: u16) -> Option<*const SchemaFieldInfo> { + if index >= self.field_count { + return None; + } + Some(unsafe { self.enums_ptr.add(index as usize * std::mem::size_of::()) }) + } + + pub fn get_field_info(&self, index: u16) -> Option<*const SchemaFieldInfo> { + if index >= self.field_count { + return None; + } + Some(unsafe { self.fields_ptr.add(index as usize * std::mem::size_of::()) }) + } +} + +pub struct SchemaFieldInfo { + pub name_ptr: *const c_char, + pub type_ptr: *const SchemaTypeInfo, + pub offset: u16, + __pad001: [u8; 2], + pub metadata_count: u16, + __pad002: [u8; 2], + pub metadata_ptr: *const c_void +} + +pub struct SchemaTypeInfo { + __unk001: [u8; 8], + pub name_ptr: *const c_char, +} +macro_rules! impl_cstr_access { + ($class_name:ident, $field_name:ident) => { + impl $class_name { + pub fn $field_name(&self) -> String { + unsafe { + let ptr = self.$field_name; + if ptr.is_null() { + String::new() + } else { + CStr::from_ptr(ptr).to_string_lossy().into_owned() + } + } + } + } + }; +} + +impl_cstr_access!(SchemaTypeInfo, name_ptr); +impl_cstr_access!(SchemaClassInfo, name_ptr); +impl_cstr_access!(SchemaFieldInfo, name_ptr); + +struct SchemaParser<'a, V: BinaryView<'a>> { + view: &'a V, +} + +impl<'a, V: BinaryView<'a>> SchemaParser<'a, V> { + pub fn new(view: &'a V) -> Self { + Self { view } + } +} \ No newline at end of file diff --git a/s2binlib/src/view.rs b/s2binlib/src/view.rs index ea404c7..f834bfb 100644 --- a/s2binlib/src/view.rs +++ b/s2binlib/src/view.rs @@ -1,4 +1,4 @@ -use std::collections::HashMap; +use hashbrown::HashMap; use anyhow::{Result, bail}; use object::{BinaryFormat, Object, ObjectSection, read::pe::ImageOptionalHeader}; @@ -182,7 +182,6 @@ pub trait BinaryView<'a> { pub struct FileBinaryView<'a> { sections: Vec>, section_map: HashMap, - format: BinaryFormat, image_base: u64, } @@ -224,7 +223,6 @@ impl<'a> FileBinaryView<'a> { Ok(Self { sections, section_map, - format: file.format(), image_base, }) } diff --git a/s2binlib/src/vtable.rs b/s2binlib/src/vtable.rs index 3a2b671..e70cd3b 100644 --- a/s2binlib/src/vtable.rs +++ b/s2binlib/src/vtable.rs @@ -17,7 +17,7 @@ * along with this program. If not, see . ***********************************************************************************/ -use std::collections::{HashMap, HashSet}; +use hashbrown::{HashMap, HashSet}; use anyhow::{Result, anyhow, bail}; use cpp_demangle::Symbol; @@ -168,7 +168,11 @@ impl<'a> S2BinLib<'a> { let memory_view = self.get_memory_view_from_ptr(vtable_ptr)?; if !memory_view.contains(vtable_ptr - 8) { - bail!("Vtable pointer {:X} is not in the memory view {:X}.", vtable_ptr - 8, memory_view.image_base()); + bail!( + "Vtable pointer {:X} is not in the memory view {:X}.", + vtable_ptr - 8, + memory_view.image_base() + ); }; let rtti_ptr = memory_view.read::(vtable_ptr - 8); if rtti_ptr.is_none() { diff --git a/s2binlib_binding/Cargo.toml b/s2binlib_binding/Cargo.toml index fb8a059..ae0867f 100644 --- a/s2binlib_binding/Cargo.toml +++ b/s2binlib_binding/Cargo.toml @@ -13,5 +13,4 @@ debug_c_bindings = [] [dependencies] once_cell = "1.20" -s2binlib = { path = "../s2binlib" } - +s2binlib = { path = "../s2binlib" } \ No newline at end of file diff --git a/s2binlib_binding/src/c_bindings.rs b/s2binlib_binding/src/c_bindings.rs index 5ad69f4..bbc30f4 100644 --- a/s2binlib_binding/src/c_bindings.rs +++ b/s2binlib_binding/src/c_bindings.rs @@ -1,6 +1,5 @@ /************************************************************************************ - * S2BinLib - A static library that helps resolving memory from binary file - * and map to absolute memory address, targeting source 2 game engine. + * S2BinLib - C Bindings with Global Singleton * Copyright (C) 2025 samyyc * * This program is free software: you can redistribute it and/or modify @@ -17,3400 +16,554 @@ * along with this program. If not, see . ***********************************************************************************/ -use once_cell::sync::Lazy; -use std::ffi::{CStr, c_char, c_void}; +use crate::compat::s2binlib001::{PatternScanCallback, S2BinLib001}; +use std::ffi::{c_char, c_void}; use std::sync::Mutex; -use s2binlib::S2BinLib; +// Safety: S2BinLib001 contains a raw pointer to a vtable, but the vtable is static +// and immutable. The vtable functions are designed to be called from any thread. +// The internal S2BinLib state is not shared across threads (each instance is independent). +unsafe impl Send for S2BinLib001 {} -/// Macro for debug logging in C bindings when the debug_c_bindings feature is enabled -#[cfg(feature = "debug_c_bindings")] -macro_rules! c_debug { - ($($arg:tt)*) => { - println!("[S2BinLib C Binding Debug] {}", format!($($arg)*)); - }; -} - -#[cfg(not(feature = "debug_c_bindings"))] -macro_rules! c_debug { - ($($arg:tt)*) => {}; -} - -/// Macro to return an error code with optional debug message -macro_rules! return_error { - ($code:expr, $msg:expr) => {{ - c_debug!("Error {}: {} (at {}:{})", $code, $msg, file!(), line!()); - return $code; - }}; - ($code:expr) => {{ - c_debug!("Error {} (at {}:{})", $code, file!(), line!()); - return $code; - }}; -} - -/// Global S2BinLib instance -static S2BINLIB: Lazy>>> = Lazy::new(|| Mutex::new(None)); - -/// Initialize the global S2BinLib instance -/// -/// The operating system is automatically detected at runtime. -/// Can be called multiple times to reinitialize with different parameters. -/// -/// # Parameters -/// * `game_path` - Path to the game directory (null-terminated C string) -/// * `game_type` - Game type identifier (null-terminated C string) -/// -/// # Returns -/// * 0 on success -/// * -2 if invalid parameters -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid and point to null-terminated C strings. -/// -/// # Example -/// ```c -/// int result = s2binlib_initialize("C:/Games/MyGame", "dota2"); -/// if (result != 0) { -/// // Handle error -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_initialize(game_path: *const c_char, game_type: *const c_char) -> i32 { - unsafe { - // validate input pointers - if game_path.is_null() || game_type.is_null() { - return_error!(-2, "invalid parameters: game_path or game_type is null"); - } - - // Convert C strings to Rust strings - let game_path_str = match CStr::from_ptr(game_path).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert game_path to UTF-8 string"), - }; - - let game_type_str = match CStr::from_ptr(game_type).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert game_type to UTF-8 string"), - }; - - // Automatically detect the operating system - let os_str = if cfg!(target_os = "windows") { - "windows" - } else if cfg!(target_os = "linux") { - "linux" - } else { - return_error!(-2, "Unsupported operating system"); - }; - - // Initialize the global instance - let mut s2binlib = match S2BINLIB.lock() { - Ok(lib) => lib, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - *s2binlib = Some(S2BinLib::new(game_path_str, game_type_str, os_str)); - 0 - } -} - -/// Initialize the global S2BinLib instance with explicit OS parameter -/// -/// Can be called multiple times to reinitialize with different parameters. -/// -/// # Parameters -/// * `game_path` - Path to the game directory (null-terminated C string) -/// * `game_type` - Game type identifier (null-terminated C string) -/// * `os` - Operating system ("windows" or "linux") (null-terminated C string) -/// -/// # Returns -/// * 0 on success -/// * -2 if invalid parameters -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid and point to null-terminated C strings. -/// -/// # Example -/// ```c -/// int result = s2binlib_initialize_with_os("C:/Games/MyGame", "dota2", "windows"); -/// if (result != 0) { -/// // Handle error -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_initialize_with_os( - game_path: *const c_char, - game_type: *const c_char, - os: *const c_char, -) -> i32 { - unsafe { - // validate input pointers - if game_path.is_null() || game_type.is_null() || os.is_null() { - return_error!(-2, "invalid parameters: game_path, game_type or os is null"); - } - - // Convert C strings to Rust strings - let game_path_str = match CStr::from_ptr(game_path).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert game_path to UTF-8 string"), - }; - - let game_type_str = match CStr::from_ptr(game_type).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert game_type to UTF-8 string"), - }; - - let os_str = match CStr::from_ptr(os).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert os to UTF-8 string"), - }; - - // Initialize the global instance - let mut s2binlib = match S2BINLIB.lock() { - Ok(lib) => lib, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - *s2binlib = Some(S2BinLib::new(game_path_str, game_type_str, os_str)); - 0 - } -} - -/// Scan for a pattern in the specified binary -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to scan (e.g., "server", "client") (null-terminated C string) -/// * `pattern` - Pattern string with wildcards (e.g., "48 89 5C 24 ? 48 89 74 24 ?") (null-terminated C string) -/// * `result` - Pointer to store the resulting address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if pattern not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid. -/// -/// # Example -/// ```c -/// void* address; -/// int result = s2binlib_pattern_scan("server", "48 89 5C 24 ? 48 89 74", &address); -/// if (result == 0) { -/// printf("Found at: %p\n", address); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_pattern_scan( - binary_name: *const c_char, - pattern: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - // validate input pointers - if binary_name.is_null() || pattern.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, pattern or result is null" - ); - } - - // Convert C strings to Rust strings - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let pattern_str = match CStr::from_ptr(pattern).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - // Get the global instance - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - // Load binary if not already loaded - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - // Perform pattern scan - match s2binlib.pattern_scan(binary_name_str, pattern_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a vtable by class name in the specified binary -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (e.g., "server", "client") (null-terminated C string) -/// * `vtable_name` - Class name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting vtable address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if vtable not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid. -/// -/// # Example -/// ```c -/// void* vtable_addr; -/// int result = s2binlib_find_vtable("server", "CBaseEntity", &vtable_addr); -/// if (result == 0) { -/// printf("VTable at: %p\n", vtable_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vtable( - binary_name: *const c_char, - vtable_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - // validate input pointers - if binary_name.is_null() || vtable_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, vtable_name or result is null" - ); - } - - // Convert C strings to Rust strings - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let vtable_name_str = match CStr::from_ptr(vtable_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - // Get the global instance - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - // Load binary if not already loaded - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - // Find vtable - match s2binlib.find_vtable(binary_name_str, vtable_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a symbol by name in the specified binary -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (e.g., "server", "client") (null-terminated C string) -/// * `symbol_name` - Symbol name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting symbol address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if symbol not found -/// * -4 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid. -/// -/// # Example -/// ```c -/// void* symbol_addr; -/// int result = s2binlib_find_symbol("server", "CreateInterface", &symbol_addr); -/// if (result == 0) { -/// printf("Symbol at: %p\n", symbol_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_symbol( - binary_name: *const c_char, - symbol_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - // validate input pointers - if binary_name.is_null() || symbol_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, symbol_name or result is null" - ); - } - - // Convert C strings to Rust strings - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let symbol_name_str = match CStr::from_ptr(symbol_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - // Get the global instance - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - // Load binary if not already loaded - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - // Find symbol - match s2binlib.find_symbol(binary_name_str, symbol_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} - -/// Manually set the base address for a module from a pointer -/// -/// This allows overriding the automatic base address detection for a module. -/// Useful when you need to force a specific base address or when the module is loaded -/// in a non-standard way. The function will automatically detect the module base from -/// the provided pointer. -/// -/// # Parameters -/// * `binary_name` - Name of the binary (e.g., "server", "client") (null-terminated C string) -/// * `pointer` - The pointer inside the specified module -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// int result = s2binlib_set_module_base_from_pointer("server", 0x140001000); -/// if (result == 0) { -/// printf("Server base address set successfully\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_set_module_base_from_pointer( - binary_name: *const c_char, - pointer: *mut c_void, -) -> i32 { - unsafe { - // validate input pointers - if binary_name.is_null() { - return_error!(-2, "invalid parameter: binary_name is null"); - } - - // Convert C strings to Rust strings - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - // Get the global instance - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - // Set the base address for the module - s2binlib.set_module_base_from_pointer(binary_name_str, pointer as u64); - 0 - } -} - -/// Clear manually set base address for a module -/// -/// After calling this, the module will use automatic base address detection again. -/// -/// # Parameters -/// * `binary_name` - Name of the binary (e.g., "server", "client") (null-terminated C string) -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// int result = s2binlib_clear_module_base_address("server"); -/// if (result == 0) { -/// printf("Server base address cleared\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_clear_module_base_address(binary_name: *const c_char) -> i32 { - unsafe { - if binary_name.is_null() { - return_error!(-2, "invalid parameter: binary_name is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - s2binlib.clear_module_base_address(binary_name_str); - 0 - } -} - -/// Set a custom binary path for a specific binary and operating system -/// -/// This allows overriding the default binary path resolution for a specific binary. -/// You can specify different paths for Windows and Linux builds. -/// -/// # Parameters -/// * `binary_name` - Name of the binary (e.g., "server", "client") (null-terminated C string) -/// * `path` - The custom file path to the binary (null-terminated C string) -/// * `os` - Operating system identifier ("windows" or "linux") (null-terminated C string) -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -4 if unsupported OS specified -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// int result = s2binlib_set_custom_binary_path("server", "/custom/path/server.dll", "windows"); -/// if (result == 0) { -/// printf("Custom binary path set successfully\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_set_custom_binary_path( - binary_name: *const c_char, - path: *const c_char, - os: *const c_char, -) -> i32 { - unsafe { - // validate input pointers - if binary_name.is_null() || path.is_null() || os.is_null() { - return_error!(-2, "invalid parameters: binary_name, path or os is null"); - } - - // Convert C strings to Rust strings - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let path_str = match CStr::from_ptr(path).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let os_str = match CStr::from_ptr(os).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - // Get the global instance - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - // Set the custom binary path - match s2binlib.set_custom_binary_path(binary_name_str, path_str, os_str) { - Ok(_) => 0, - Err(_) => return_error!(-4, "Pattern not found or operation failed"), // Unsupported OS - } - } -} - -/// Get the module base address -/// -/// Returns the base address of a loaded module. If a manual base address was set -/// using set_module_base_from_pointer, that value will be returned. Otherwise, -/// the function attempts to find the base address from the running process. -/// -/// # Parameters -/// * `binary_name` - Name of the binary (e.g., "server", "client") (null-terminated C string) -/// * `result` - Pointer to store the resulting base address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if module not found or not loaded -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* base_addr; -/// int result = s2binlib_get_module_base_address("server", &base_addr); -/// if (result == 0) { -/// printf("Module base: %p\n", base_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_get_module_base_address( - binary_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || result.is_null() { - return_error!(-2, "invalid parameters: binary_name or result is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - match s2binlib.get_module_base_address(binary_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} - -/// Check if a binary is already loaded -/// -/// # Parameters -/// * `binary_name` - Name of the binary to check (null-terminated C string) -/// -/// # Returns -/// * 1 if loaded -/// * 0 if not loaded -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// int loaded = s2binlib_is_binary_loaded("server"); -/// if (loaded == 1) { -/// printf("Server is loaded\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_is_binary_loaded(binary_name: *const c_char) -> i32 { - unsafe { - if binary_name.is_null() { - return_error!(-2, "invalid parameter: binary_name is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if s2binlib.is_binary_loaded(binary_name_str) { - 1 - } else { - 0 - } - } -} - -/// Load a binary into memory -/// -/// Loads the specified binary file into memory for analysis. The binary path -/// is automatically determined based on the game path and type set during initialization. -/// If the binary is already loaded, this function does nothing. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to load (null-terminated C string) -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// int result = s2binlib_load_binary("server"); -/// if (result == 0) { -/// printf("Server loaded successfully\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_load_binary(binary_name: *const c_char) -> i32 { - unsafe { - if binary_name.is_null() { - return_error!(-2, "invalid parameter: binary_name is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - s2binlib.load_binary(binary_name_str); - 0 - } -} - -/// Get the full path to a binary file -/// -/// Returns the full filesystem path where the binary file is expected to be located, -/// based on the game path, game type, and operating system. -/// -/// # Parameters -/// * `binary_name` - Name of the binary (null-terminated C string) -/// * `buffer` - Buffer to store the path string -/// * `buffer_size` - Size of the buffer -/// -/// # Returns -/// * 0 on success (path written to buffer) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if buffer too small -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// char path[512]; -/// int result = s2binlib_get_binary_path("server", path, sizeof(path)); -/// if (result == 0) { -/// printf("Binary path: %s\n", path); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_get_binary_path( - binary_name: *const c_char, - buffer: *mut c_char, - buffer_size: usize, -) -> i32 { - unsafe { - if binary_name.is_null() || buffer.is_null() || buffer_size == 0 { - return -2; - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - let path = s2binlib.get_binary_path(binary_name_str); - let path_bytes = path.as_bytes(); - - if path_bytes.len() + 1 > buffer_size { - return -3; // Buffer too small - } - - std::ptr::copy_nonoverlapping(path_bytes.as_ptr(), buffer as *mut u8, path_bytes.len()); - *(buffer.add(path_bytes.len())) = 0; // Null terminator - - 0 - } -} - -/// Find a vtable by class name and return its relative virtual address -/// -/// Searches for a vtable (virtual function table) by the class name and returns -/// its relative virtual address (RVA) in the binary. This is the address as it appears in -/// the binary file, not the runtime memory address. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `vtable_name` - Class name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting vtable relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if vtable not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vtable_rva; -/// int result = s2binlib_find_vtable_rva("server", "CBaseEntity", &vtable_rva); -/// if (result == 0) { -/// printf("VTable RVA: %p\n", vtable_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vtable_rva( - binary_name: *const c_char, - vtable_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || vtable_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, vtable_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let vtable_name_str = match CStr::from_ptr(vtable_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_vtable_rva(binary_name_str, vtable_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a vtable by mangled name and return its relative virtual address -/// -/// Searches for a vtable using the mangled/decorated RTTI name directly. -/// Unlike find_vtable_rva which auto-decorates the name, this function uses -/// the provided name as-is. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `vtable_name` - Mangled RTTI name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting vtable relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if vtable not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vtable_rva; -/// int result = s2binlib_find_vtable_mangled_rva("server", ".?AVCBaseEntity@@", &vtable_rva); -/// if (result == 0) { -/// printf("VTable RVA: %p\n", vtable_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vtable_mangled_rva( - binary_name: *const c_char, - vtable_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || vtable_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, vtable_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let vtable_name_str = match CStr::from_ptr(vtable_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_vtable_mangled_rva(binary_name_str, vtable_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a vtable by mangled name and return its runtime memory address -/// -/// Searches for a vtable using the mangled/decorated RTTI name directly and -/// returns its runtime memory address. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `vtable_name` - Mangled RTTI name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting vtable memory address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if vtable not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vtable_addr; -/// int result = s2binlib_find_vtable_mangled("server", ".?AVCBaseEntity@@", &vtable_addr); -/// if (result == 0) { -/// printf("VTable at: %p\n", vtable_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vtable_mangled( - binary_name: *const c_char, - vtable_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || vtable_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, vtable_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let vtable_name_str = match CStr::from_ptr(vtable_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_vtable_mangled(binary_name_str, vtable_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a nested vtable (2 levels) by class names and return its relative virtual address -/// -/// Searches for a vtable of a nested class (e.g., Class1::Class2). -/// The function automatically decorates the names according to the platform's -/// RTTI name mangling scheme. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `class1_name` - Outer class name (null-terminated C string) -/// * `class2_name` - Inner/nested class name (null-terminated C string) -/// * `result` - Pointer to store the resulting vtable relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if vtable not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vtable_rva; -/// int result = s2binlib_find_vtable_nested_2_rva("server", "CEntitySystem", "CEntitySubsystem", &vtable_rva); -/// if (result == 0) { -/// printf("Nested VTable RVA: %p\n", vtable_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vtable_nested_2_rva( - binary_name: *const c_char, - class1_name: *const c_char, - class2_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() - || class1_name.is_null() - || class2_name.is_null() - || result.is_null() - { - return_error!( - -2, - "invalid parameters: binary_name, class names or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let class1_name_str = match CStr::from_ptr(class1_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let class2_name_str = match CStr::from_ptr(class2_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_vtable_nested_2_rva(binary_name_str, class1_name_str, class2_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a nested vtable (2 levels) by class names and return its runtime memory address -/// -/// Searches for a vtable of a nested class (e.g., Class1::Class2) and returns -/// its runtime memory address. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `class1_name` - Outer class name (null-terminated C string) -/// * `class2_name` - Inner/nested class name (null-terminated C string) -/// * `result` - Pointer to store the resulting vtable memory address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if vtable not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vtable_addr; -/// int result = s2binlib_find_vtable_nested_2("server", "CEntitySystem", "CEntitySubsystem", &vtable_addr); -/// if (result == 0) { -/// printf("Nested VTable at: %p\n", vtable_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vtable_nested_2( - binary_name: *const c_char, - class1_name: *const c_char, - class2_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() - || class1_name.is_null() - || class2_name.is_null() - || result.is_null() - { - return_error!( - -2, - "invalid parameters: binary_name, class names or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let class1_name_str = match CStr::from_ptr(class1_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let class2_name_str = match CStr::from_ptr(class2_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_vtable_nested_2(binary_name_str, class1_name_str, class2_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Get the number of virtual functions in a vtable -/// -/// Returns the count of virtual functions (vfuncs) in the specified vtable. -/// This counts valid function pointers in the vtable until it encounters a null -/// or invalid pointer. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (e.g., "server", "client") (null-terminated C string) -/// * `vtable_name` - Name of the vtable/class to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting count of virtual functions -/// -/// # Returns -/// * `0` - Success, result contains the vfunc count -/// * `-1` - S2BinLib not initialized -/// * `-2` - invalid input (null pointer or invalid UTF-8) -/// * `-4` - Operation failed (vtable not found or other error) -/// * `-5` - Failed to acquire lock -/// -/// # Example -/// ```c -/// size_t vfunc_count; -/// int result = s2binlib_get_vtable_vfunc_count("server", "CBaseEntity", &vfunc_count); -/// if (result == 0) { -/// printf("VTable has %zu virtual functions\n", vfunc_count); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_get_vtable_vfunc_count( - binary_name: *const c_char, - vtable_name: *const c_char, - result: *mut usize, -) -> i32 { - unsafe { - if binary_name.is_null() || vtable_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, vtable_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let vtable_name_str = match CStr::from_ptr(vtable_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.get_vtable_vfunc_count(binary_name_str, vtable_name_str) { - Ok(count) => { - *result = count; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Get the number of virtual functions in a vtable by relative virtual address -/// -/// Returns the count of virtual functions (vfuncs) in a vtable at the specified -/// relative virtual address. This counts valid function pointers in the vtable until it -/// encounters a null or invalid pointer. -/// -/// Unlike get_vtable_vfunc_count, this function takes a relative virtual address directly -/// instead of looking up the vtable by name. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary (e.g., "server", "client") (null-terminated C string) -/// * `vtable_rva` - Virtual address of the vtable -/// * `result` - Pointer to store the resulting count of virtual functions -/// -/// # Returns -/// * `0` - Success, result contains the vfunc count -/// * `-1` - S2BinLib not initialized -/// * `-2` - invalid input (null pointer or invalid UTF-8) -/// * `-4` - Operation failed (invalid address or other error) -/// * `-5` - Failed to acquire lock -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid. -/// -/// # Example -/// ```c -/// void* vtable_rva; -/// // First get the vtable relative virtual address -/// s2binlib_find_vtable_rva("server", "CBaseEntity", &vtable_rva); -/// -/// // Then count its virtual functions -/// size_t vfunc_count; -/// int result = s2binlib_get_vtable_vfunc_count_by_rva("server", (uint64_t)vtable_rva, &vfunc_count); -/// if (result == 0) { -/// printf("VTable has %zu virtual functions\n", vfunc_count); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_get_vtable_vfunc_count_by_rva( - binary_name: *const c_char, - vtable_rva: u64, - result: *mut usize, -) -> i32 { - unsafe { - if binary_name.is_null() || result.is_null() { - return_error!(-2, "invalid parameters: binary_name or result is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.get_vtable_vfunc_count_by_rva(binary_name_str, vtable_rva) { - Ok(count) => { - *result = count; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Pattern scan and return the relative virtual address -/// -/// Scans for a byte pattern in the specified binary and returns the relative virtual address (RVA) -/// where the pattern was found. The RVA is the address as it appears in the binary file, -/// not the runtime memory address. -/// -/// Pattern format: hex bytes separated by spaces, use '?' for wildcards -/// Example: "48 89 5C 24 ? 48 89 74 24 ?" -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to scan (null-terminated C string) -/// * `pattern` - Pattern string with wildcards (null-terminated C string) -/// * `result` - Pointer to store the resulting relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if pattern not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* rva; -/// int result = s2binlib_pattern_scan_rva("server", "48 89 5C 24 ?", &rva); -/// if (result == 0) { -/// printf("Pattern found at RVA: %p\n", rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_pattern_scan_rva( - binary_name: *const c_char, - pattern: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || pattern.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, pattern or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let pattern_str = match CStr::from_ptr(pattern).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.pattern_scan_rva(binary_name_str, pattern_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Callback function type for pattern_scan_all functions -/// -/// # Parameters -/// * `index` - The index of the current match (0-based) -/// * `address` - The found address (RVA or memory address depending on the function) -/// * `user_data` - User-provided data pointer -/// -/// # Returns -/// * `true` to stop searching (found what you need) -/// * `false` to continue searching for more matches -pub type PatternScanCallback = - extern "C" fn(index: usize, address: *mut c_void, user_data: *mut c_void) -> bool; - -/// Find all occurrences of a pattern in a binary and return their relative virtual addresses -/// -/// Scans the binary for all occurrences of the specified byte pattern and calls -/// the callback function for each match found. The callback receives the match index -/// and relative virtual addresses (RVA). -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to scan (null-terminated C string) -/// * `pattern` - Byte pattern to search for, with wildcards (e.g., "48 89 5C 24 ? 48 89 74") -/// * `callback` - Function pointer that will be called for each match -/// * `user_data` - User-provided pointer that will be passed to each callback invocation -/// -/// # Returns -/// * 0 on success (at least one match found) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if pattern not found -/// * -5 if internal error -/// -/// # Callback Return value -/// The callback should return: -/// * `true` to stop searching (if you found what you need) -/// * `false` to continue searching for more matches -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers and calls the callback function. -/// -/// # Example -/// ```c -/// bool my_callback(size_t index, void* address, void* user_data) { -/// printf("Match #%zu found at RVA: %p\n", index, address); -/// int* count = (int*)user_data; -/// (*count)++; -/// return false; // Continue searching -/// } -/// -/// int count = 0; -/// int result = s2binlib_pattern_scan_all_rva("server", "48 89 5C 24 ?", my_callback, &count); -/// if (result == 0) { -/// printf("Found %d matches\n", count); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_pattern_scan_all_rva( - binary_name: *const c_char, - pattern: *const c_char, - callback: PatternScanCallback, - user_data: *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || pattern.is_null() { - return_error!(-2, "invalid parameters: binary_name or pattern is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let pattern_str = match CStr::from_ptr(pattern).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.pattern_scan_all_rva(binary_name_str, pattern_str, |index, addr| { - // Call the C callback function - callback(index, addr as *mut c_void, user_data) - }) { - Ok(_) => 0, - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find all occurrences of a pattern in a binary and return their memory addresses -/// -/// Scans the binary for all occurrences of the specified byte pattern and calls -/// the callback function for each match found. The callback receives the match index -/// and memory addresses (adjusted with module base address). -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to scan (null-terminated C string) -/// * `pattern` - Byte pattern to search for, with wildcards (e.g., "48 89 5C 24 ? 48 89 74") -/// * `callback` - Function pointer that will be called for each match -/// * `user_data` - User-provided pointer that will be passed to each callback invocation -/// -/// # Returns -/// * 0 on success (at least one match found) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if pattern not found -/// * -5 if internal error -/// -/// # Callback Return value -/// The callback should return: -/// * `true` to stop searching (if you found what you need) -/// * `false` to continue searching for more matches -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers and calls the callback function. -/// -/// # Example -/// ```c -/// bool my_callback(size_t index, void* address, void* user_data) { -/// printf("Match #%zu found at memory address: %p\n", index, address); -/// int* count = (int*)user_data; -/// (*count)++; -/// return false; // Continue searching -/// } -/// -/// int count = 0; -/// int result = s2binlib_pattern_scan_all("server", "48 89 5C 24 ?", my_callback, &count); -/// if (result == 0) { -/// printf("Found %d matches\n", count); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_pattern_scan_all( - binary_name: *const c_char, - pattern: *const c_char, - callback: PatternScanCallback, - user_data: *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || pattern.is_null() { - return_error!(-2, "invalid parameters: binary_name or pattern is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let pattern_str = match CStr::from_ptr(pattern).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.pattern_scan_all(binary_name_str, pattern_str, |index, addr| { - // Call the C callback function - callback(index, addr as *mut c_void, user_data) - }) { - Ok(_) => 0, - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find an exported symbol by name and return its relative virtual address -/// -/// Searches for an exported symbol in the binary's export table and returns -/// its relative virtual address (RVA). This works for PE exports on Windows. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `export_name` - Export name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if export not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* export_rva; -/// int result = s2binlib_find_export_rva("server", "CreateInterface", &export_rva); -/// if (result == 0) { -/// printf("Export RVA: %p\n", export_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_export_rva( - binary_name: *const c_char, - export_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || export_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, export_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let export_name_str = match CStr::from_ptr(export_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_export_rva(binary_name_str, export_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find an exported symbol by name and return its runtime memory address -/// -/// Searches for an exported symbol and returns its runtime memory address, -/// adjusted for the module's base address in the running process. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `export_name` - Export name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting memory address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary or get base address -/// * -4 if export not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* export_addr; -/// int result = s2binlib_find_export("server", "CreateInterface", &export_addr); -/// if (result == 0) { -/// printf("Export at: %p\n", export_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_export( - binary_name: *const c_char, - export_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || export_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, export_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let export_name_str = match CStr::from_ptr(export_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_export(binary_name_str, export_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a symbol by name and return its relative virtual address -/// -/// Searches for a symbol in the binary's dynamic symbol table and returns -/// its relative virtual address (RVA). This works for ELF dynamic symbols on Linux. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `symbol_name` - Symbol name to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if symbol not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* symbol_rva; -/// int result = s2binlib_find_symbol_rva("server", "_Z13CreateInterfacev", &symbol_rva); -/// if (result == 0) { -/// printf("Symbol RVA: %p\n", symbol_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_symbol_rva( - binary_name: *const c_char, - symbol_name: *const c_char, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || symbol_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, symbol_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let symbol_name_str = match CStr::from_ptr(symbol_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_symbol_rva(binary_name_str, symbol_name_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} - -/// Read bytes from binary at a file offset -/// -/// Reads raw bytes from the binary file at the specified file offset into the provided buffer. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to read from (null-terminated C string) -/// * `file_offset` - File offset to read from -/// * `buffer` - Buffer to store the read bytes -/// * `buffer_size` - Size of the buffer (number of bytes to read) -/// -/// # Returns -/// * 0 on success (bytes written to buffer) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to read -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// uint8_t buffer[16]; -/// int result = s2binlib_read_by_file_offset("server", 0x1000, buffer, sizeof(buffer)); -/// if (result == 0) { -/// // Use buffer -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_read_by_file_offset( - binary_name: *const c_char, - file_offset: u64, - buffer: *mut u8, - buffer_size: usize, -) -> i32 { - unsafe { - if binary_name.is_null() || buffer.is_null() || buffer_size == 0 { - return -2; - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.read_by_file_offset(binary_name_str, file_offset, buffer_size) { - Ok(bytes) => { - let copy_size = bytes.len().min(buffer_size); - std::ptr::copy_nonoverlapping(bytes.as_ptr(), buffer, copy_size); - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} - -/// Read bytes from binary at a relative virtual address -/// -/// Reads raw bytes from the binary at the specified relative virtual address (RVA) into the provided buffer. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to read from (null-terminated C string) -/// * `rva` - Virtual address to read from -/// * `buffer` - Buffer to store the read bytes -/// * `buffer_size` - Size of the buffer (number of bytes to read) -/// -/// # Returns -/// * 0 on success (bytes written to buffer) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to read -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// uint8_t buffer[16]; -/// int result = s2binlib_read_by_rva("server", 0x140001000, buffer, sizeof(buffer)); -/// if (result == 0) { -/// // Use buffer -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_read_by_rva( - binary_name: *const c_char, - rva: u64, - buffer: *mut u8, - buffer_size: usize, -) -> i32 { - unsafe { - if binary_name.is_null() || buffer.is_null() || buffer_size == 0 { - return -2; - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.read_by_rva(binary_name_str, rva, buffer_size) { - Ok(bytes) => { - let copy_size = bytes.len().min(buffer_size); - std::ptr::copy_nonoverlapping(bytes.as_ptr(), buffer, copy_size); - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} - -/// Read bytes from binary at a runtime memory address -/// -/// Reads raw bytes from the binary at the specified runtime memory address into the provided buffer. -/// The address is automatically converted to a relative virtual address. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to read from (null-terminated C string) -/// * `mem_address` - Runtime memory address to read from -/// * `buffer` - Buffer to store the read bytes -/// * `buffer_size` - Size of the buffer (number of bytes to read) -/// -/// # Returns -/// * 0 on success (bytes written to buffer) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to read -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// uint8_t buffer[16]; -/// int result = s2binlib_read_by_mem_address("server", mem_addr, buffer, sizeof(buffer)); -/// if (result == 0) { -/// // Use buffer -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_read_by_mem_address( - binary_name: *const c_char, - mem_address: u64, - buffer: *mut u8, - buffer_size: usize, -) -> i32 { - unsafe { - if binary_name.is_null() || buffer.is_null() || buffer_size == 0 { - return -2; - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.read_by_mem_address(binary_name_str, mem_address, buffer_size) { - Ok(bytes) => { - let copy_size = bytes.len().min(buffer_size); - std::ptr::copy_nonoverlapping(bytes.as_ptr(), buffer, copy_size); - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} - -/// Find a virtual function by vtable name and index, return relative virtual address -/// -/// Locates a vtable by its class name, then reads the virtual function pointer -/// at the specified index. Returns the relative virtual address of the function. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `vtable_name` - Class name whose vtable to search for (null-terminated C string) -/// * `vfunc_index` - Index of the virtual function in the vtable (0-based) -/// * `result` - Pointer to store the resulting relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if vtable or vfunc not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vfunc_rva; -/// int result = s2binlib_find_vfunc_by_vtbname_rva("server", "CBaseEntity", 5, &vfunc_rva); -/// if (result == 0) { -/// printf("VFunc RVA: %p\n", vfunc_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vfunc_by_vtbname_rva( - binary_name: *const c_char, - vtable_name: *const c_char, - vfunc_index: usize, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || vtable_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, vtable_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let vtable_name_str = match CStr::from_ptr(vtable_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_vfunc_by_vtbname_rva(binary_name_str, vtable_name_str, vfunc_index) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a virtual function by vtable name and index, return runtime address -/// -/// Locates a vtable by its class name, then reads the virtual function pointer -/// at the specified index. Returns the runtime memory address of the function. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `vtable_name` - Class name whose vtable to search for (null-terminated C string) -/// * `vfunc_index` - Index of the virtual function in the vtable (0-based) -/// * `result` - Pointer to store the resulting memory address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary or get base address -/// * -4 if vtable or vfunc not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vfunc_addr; -/// int result = s2binlib_find_vfunc_by_vtbname("server", "CBaseEntity", 5, &vfunc_addr); -/// if (result == 0) { -/// printf("VFunc at: %p\n", vfunc_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vfunc_by_vtbname( - binary_name: *const c_char, - vtable_name: *const c_char, - vfunc_index: usize, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || vtable_name.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, vtable_name or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let vtable_name_str = match CStr::from_ptr(vtable_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_vfunc_by_vtbname(binary_name_str, vtable_name_str, vfunc_index) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} - -/// Find a virtual function by vtable pointer and index, return relative virtual address -/// -/// Given a runtime pointer to a vtable, reads the virtual function pointer -/// at the specified index. Returns the relative virtual address of the function. -/// The appropriate binary is automatically detected from the vtable pointer. -/// -/// # Parameters -/// * `vtable_ptr` - Runtime pointer to the vtable -/// * `vfunc_index` - Index of the virtual function in the vtable (0-based) -/// * `result` - Pointer to store the resulting relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if binary not found for pointer -/// * -4 if failed to read vfunc -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vfunc_rva; -/// int result = s2binlib_find_vfunc_by_vtbptr_rva(vtable_ptr, 5, &vfunc_rva); -/// if (result == 0) { -/// printf("VFunc RVA: %p\n", vfunc_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vfunc_by_vtbptr_rva( - vtable_ptr: *mut c_void, - vfunc_index: usize, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if result.is_null() { - return_error!(-2, "invalid parameter: result pointer is null"); - } - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +/// Thread-safe global singleton instance of S2BinLib001 +static GLOBAL_INSTANCE: Mutex>> = Mutex::new(None); - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), +/// Macro to get the global instance with error handling +macro_rules! with_global_instance { + ($op:expr) => {{ + let mut guard = match GLOBAL_INSTANCE.lock() { + Ok(g) => g, + Err(_) => return -99, // Mutex poisoned error }; - match s2binlib.find_vfunc_by_vtbptr_rva(vtable_ptr as u64, vfunc_index) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), + match guard.as_mut() { + Some(instance) => $op(instance.as_mut()), + None => -1, // Not initialized } - } + }}; } -/// Find a virtual function by vtable pointer and index, return runtime address -/// -/// Given a runtime pointer to a vtable, reads the virtual function pointer -/// at the specified index. Returns the runtime memory address of the function. -/// The appropriate binary is automatically detected from the vtable pointer. -/// -/// # Parameters -/// * `vtable_ptr` - Runtime pointer to the vtable -/// * `vfunc_index` - Index of the virtual function in the vtable (0-based) -/// * `result` - Pointer to store the resulting memory address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if binary not found for pointer -/// * -4 if failed to read vfunc -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* vfunc_addr; -/// int result = s2binlib_find_vfunc_by_vtbptr(vtable_ptr, 5, &vfunc_addr); -/// if (result == 0) { -/// printf("VFunc at: %p\n", vfunc_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_vfunc_by_vtbptr( - vtable_ptr: *mut c_void, - vfunc_index: usize, - result: *mut *mut c_void, -) -> i32 { - unsafe { - if result.is_null() { - return_error!(-2, "invalid parameter: result pointer is null"); - } - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), +/// Macro to get the global instance (const ref) with error handling +macro_rules! with_global_instance_const { + ($op:expr) => {{ + let guard = match GLOBAL_INSTANCE.lock() { + Ok(g) => g, + Err(_) => return -99, // Mutex poisoned error }; - match s2binlib.find_vfunc_by_vtbptr(vtable_ptr as u64, vfunc_index) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), + match guard.as_ref() { + Some(instance) => $op(instance.as_ref()), + None => -1, // Not initialized } - } + }}; } -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_get_object_ptr_vtable_name( - object_ptr: *const c_void, - buffer: *mut c_char, - buffer_size: usize, -) -> i32 { - unsafe { - if object_ptr.is_null() || buffer.is_null() || buffer_size == 0 { - return_error!( - -2, - "invalid parameters: object_ptr, buffer or buffer_size is invalid" - ); - } - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; - - match s2binlib.get_object_ptr_vtable_name(object_ptr as u64) { - Ok(name) => { - let name_bytes = name.as_bytes(); - if name_bytes.len() + 1 > buffer_size { - return_error!(-3, "buffer too small to store vtable name"); - } - - std::ptr::copy_nonoverlapping( - name_bytes.as_ptr(), - buffer as *mut u8, - name_bytes.len(), - ); - *buffer.add(name_bytes.len()) = 0; - - 0 - } - Err(err) => return_error!(-4, format!("Failed to get vtable info: {:?}", err)), +/// Macro to generate wrapper functions that take mutable instance with no extra parameters +macro_rules! wrap_method_mut_no_params { + ($func_name:ident, $method_name:ident) => { + #[unsafe(no_mangle)] + pub unsafe extern "C" fn $func_name() -> i32 { + with_global_instance!(|instance: &mut S2BinLib001| unsafe { + let vtable = (*instance.vtable).$method_name; + vtable(instance) + }) } - } + }; } -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_object_ptr_has_vtable(object_ptr: *const c_void) -> i32 { - if object_ptr.is_null() { - return_error!(-2, "invalid parameter: object_ptr is null"); - } - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), +/// Macro to generate wrapper functions that take mutable instance +macro_rules! wrap_method_mut { + ($func_name:ident, $method_name:ident, $($param:ident: $param_type:ty),*) => { + #[unsafe(no_mangle)] + pub unsafe extern "C" fn $func_name($($param: $param_type),*) -> i32 { + with_global_instance!(|instance: &mut S2BinLib001| unsafe { + let vtable = (*instance.vtable).$method_name; + vtable(instance, $($param),*) + }) + } }; +} - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), +/// Macro to generate wrapper functions that take const instance +macro_rules! wrap_method_const { + ($func_name:ident, $method_name:ident, $($param:ident: $param_type:ty),*) => { + #[unsafe(no_mangle)] + pub unsafe extern "C" fn $func_name($($param: $param_type),*) -> i32 { + with_global_instance_const!(|instance: &S2BinLib001| unsafe { + let vtable = (*instance.vtable).$method_name; + vtable(instance, $($param),*) + }) + } }; - - if s2binlib.object_ptr_has_vtable(object_ptr as u64) { - 1 - } else { - 0 - } } +// ============================================================================ +// Lifecycle Functions +// ============================================================================ + +/// Initialize the global S2BinLib001 instance with auto-detected OS #[unsafe(no_mangle)] -pub extern "C" fn s2binlib_object_ptr_has_base_class( - object_ptr: *const c_void, - base_class_name: *const c_char, +pub unsafe extern "C" fn s2binlib_initialize( + game_path: *const c_char, + game_type: *const c_char, ) -> i32 { unsafe { - if object_ptr.is_null() || base_class_name.is_null() { - return_error!( - -2, - "invalid parameters: object_ptr or base_class_name is null" - ); - } - - let base_class_name_str = match CStr::from_ptr(base_class_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert base_class_name to UTF-8 string"), - }; - - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), + let mut guard = match GLOBAL_INSTANCE.lock() { + Ok(g) => g, + Err(_) => return -99, }; - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; + let mut instance = Box::new(S2BinLib001::new()); + let vtable = (*instance.vtable).initialize; + let result = vtable(instance.as_mut(), game_path, game_type); - match s2binlib.object_ptr_has_base_class(object_ptr as u64, base_class_name_str) { - Ok(true) => 1, - Ok(false) => 0, - Err(_) => return_error!(-4, "Failed to get vtable info"), + if result == 0 { + *guard = Some(instance); } + + result } } -/// Find a string in the binary and return its relative virtual address -/// -/// Searches for an exact string match in the binary and returns its relative virtual address. -/// The string must match exactly (case-sensitive). -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `string` - String to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting relative virtual address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if string not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* string_rva; -/// int result = s2binlib_find_string_rva("server", "CBaseEntity", &string_rva); -/// if (result == 0) { -/// printf("String RVA: %p\n", string_rva); -/// } -/// ``` +/// Initialize the global S2BinLib001 instance with explicit OS #[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_string_rva( - binary_name: *const c_char, - string: *const c_char, - result: *mut *mut c_void, +pub unsafe extern "C" fn s2binlib_initialize_with_os( + game_path: *const c_char, + game_type: *const c_char, + os: *const c_char, ) -> i32 { unsafe { - if binary_name.is_null() || string.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, string or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let string_str = match CStr::from_ptr(string).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), + let mut guard = match GLOBAL_INSTANCE.lock() { + Ok(g) => g, + Err(_) => return -99, }; - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; + let mut instance = Box::new(S2BinLib001::new()); + let vtable = (*instance.vtable).initialize_with_os; + let result = vtable(instance.as_mut(), game_path, game_type, os); - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); + if result == 0 { + *guard = Some(instance); } - match s2binlib.find_string_rva(binary_name_str, string_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } + result } } -/// Find a string in the binary and return its runtime memory address -/// -/// Searches for an exact string match in the binary and returns its runtime memory address. -/// The string must match exactly (case-sensitive). -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to search (null-terminated C string) -/// * `string` - String to search for (null-terminated C string) -/// * `result` - Pointer to store the resulting memory address -/// -/// # Returns -/// * 0 on success (address written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary or get base address -/// * -4 if string not found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// void* string_addr; -/// int result = s2binlib_find_string("server", "CBaseEntity", &string_addr); -/// if (result == 0) { -/// printf("String at: %p\n", string_addr); -/// } -/// ``` +/// Destroy the global S2BinLib001 instance #[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_string( - binary_name: *const c_char, - string: *const c_char, - result: *mut *mut c_void, -) -> i32 { +pub unsafe extern "C" fn s2binlib_destroy() -> i32 { unsafe { - if binary_name.is_null() || string.is_null() || result.is_null() { - return_error!( - -2, - "invalid parameters: binary_name, string or result is null" - ); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let string_str = match CStr::from_ptr(string).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), + let mut guard = match GLOBAL_INSTANCE.lock() { + Ok(g) => g, + Err(_) => return -99, }; - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } - - match s2binlib.find_string(binary_name_str, string_str) { - Ok(addr) => { - *result = addr as *mut c_void; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), + if let Some(mut instance) = guard.take() { + let vtable = (*instance.vtable).destroy; + vtable(instance.as_mut()) + } else { + -1 // Not initialized } } } -/// Dump and cache all cross-references in a binary -/// -/// This function disassembles all executable sections of the binary once and builds -/// a complete cross-reference (xref) database. The results are cached internally and -/// can be quickly queried using s2binlib_find_xrefs_cached(). -/// -/// This is useful when you need to find all code locations that reference a particular -/// address. The operation may take some time for large binaries, but subsequent queries -/// are very fast. -/// -/// If the binary is not yet loaded, it will be loaded automatically. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to analyze (null-terminated C string) -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary -/// * -4 if failed to dump xrefs -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// int result = s2binlib_dump_xrefs("server"); -/// if (result == 0) { -/// printf("Xrefs cached successfully\n"); -/// // Now you can quickly query xrefs -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_dump_xrefs(binary_name: *const c_char) -> i32 { - unsafe { - if binary_name.is_null() { - return_error!(-2, "invalid parameter: binary_name is null"); - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; - - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; - - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +// ============================================================================ +// Pattern Scanning Functions +// ============================================================================ - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } +wrap_method_mut!( + s2binlib_pattern_scan, + pattern_scan, + binary_name: *const c_char, + pattern: *const c_char, + result: *mut *mut c_void +); - match s2binlib.dump_xrefs(binary_name_str) { - Ok(_) => 0, - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} +wrap_method_mut!( + s2binlib_pattern_scan_rva, + pattern_scan_rva, + binary_name: *const c_char, + pattern: *const c_char, + result: *mut *mut c_void +); -/// Get the count of cached cross-references for a target relative virtual address -/// -/// Returns the number of code locations that reference the specified target address. -/// The binary must have been analyzed with s2binlib_dump_xrefs() first. -/// -/// Use this function to determine the buffer size needed for s2binlib_get_xrefs_cached(). -/// -/// # Parameters -/// * `binary_name` - Name of the binary (null-terminated C string) -/// * `target_rva` - The target relative virtual address to find references to -/// -/// # Returns -/// * Non-negative: Number of xrefs found -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if binary not analyzed (call s2binlib_dump_xrefs first) -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// // First, dump xrefs -/// s2binlib_dump_xrefs("server"); -/// -/// // Get xref count -/// int count = s2binlib_get_xrefs_count("server", (void*)0x140001000); -/// if (count > 0) { -/// void** xrefs = malloc(count * sizeof(void*)); -/// s2binlib_get_xrefs_cached("server", (void*)0x140001000, xrefs, count); -/// // Use xrefs -/// free(xrefs); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_get_xrefs_count( +wrap_method_mut!( + s2binlib_pattern_scan_all_rva, + pattern_scan_all_rva, binary_name: *const c_char, - target_rva: *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() { - return_error!(-2, "invalid parameter: binary_name is null"); - } + pattern: *const c_char, + callback: PatternScanCallback, + user_data: *mut c_void +); - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; +wrap_method_mut!( + s2binlib_pattern_scan_all, + pattern_scan_all, + binary_name: *const c_char, + pattern: *const c_char, + callback: PatternScanCallback, + user_data: *mut c_void +); - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +// ============================================================================ +// VTable Functions +// ============================================================================ - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_mut!( + s2binlib_find_vtable, + find_vtable, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void +); - match s2binlib.find_xrefs_cached(binary_name_str, target_rva as u64) { - Some(xrefs) => xrefs.len() as i32, - None => -3, - } - } -} +wrap_method_mut!( + s2binlib_find_vtable_rva, + find_vtable_rva, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void +); -/// Get cached cross-references for a target relative virtual address into a buffer -/// -/// Returns all code locations (relative virtual addresses) that reference the specified target address -/// into the provided buffer. The binary must have been analyzed with s2binlib_dump_xrefs() first. -/// -/// Use s2binlib_get_xrefs_count() to determine the required buffer size. -/// -/// # Parameters -/// * `binary_name` - Name of the binary (null-terminated C string) -/// * `target_rva` - The target relative virtual address to find references to -/// * `buffer` - Buffer to store the xref addresses (array of uint64_t) -/// * `buffer_size` - Size of the buffer (number of uint64_t elements it can hold) -/// -/// # Returns -/// * Non-negative: Number of xrefs written to buffer -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if binary not analyzed (call s2binlib_dump_xrefs first) -/// * -4 if buffer too small -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// // First, dump xrefs -/// s2binlib_dump_xrefs("server"); -/// -/// // Get xref count -/// int count = s2binlib_get_xrefs_count("server", (void*)0x140001000); -/// if (count > 0) { -/// void** xrefs = malloc(count * sizeof(void*)); -/// int result = s2binlib_get_xrefs_cached("server", (void*)0x140001000, xrefs, count); -/// if (result > 0) { -/// for (int i = 0; i < result; i++) { -/// printf("Xref at: %p\n", xrefs[i]); -/// } -/// } -/// free(xrefs); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_get_xrefs_cached( +wrap_method_mut!( + s2binlib_find_vtable_mangled_rva, + find_vtable_mangled_rva, binary_name: *const c_char, - target_rva: *mut c_void, - buffer: *mut *mut c_void, - buffer_size: usize, -) -> i32 { - unsafe { - if binary_name.is_null() || buffer.is_null() || buffer_size == 0 { - return -2; - } + vtable_name: *const c_char, + result: *mut *mut c_void +); - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; +wrap_method_mut!( + s2binlib_find_vtable_mangled, + find_vtable_mangled, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void +); - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_mut!( + s2binlib_find_vtable_nested_2_rva, + find_vtable_nested_2_rva, + binary_name: *const c_char, + class1_name: *const c_char, + class2_name: *const c_char, + result: *mut *mut c_void +); - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_mut!( + s2binlib_find_vtable_nested_2, + find_vtable_nested_2, + binary_name: *const c_char, + class1_name: *const c_char, + class2_name: *const c_char, + result: *mut *mut c_void +); - match s2binlib.find_xrefs_cached(binary_name_str, target_rva as u64) { - Some(xrefs) => { - if xrefs.len() * std::mem::size_of::<*mut c_void>() > buffer_size { - return -4; // Buffer too small - } - - let copy_count = xrefs.len(); - for (i, addr) in xrefs.iter().enumerate() { - *buffer.add(i) = *addr as *mut c_void; - } - copy_count as i32 - } - None => -3, - } - } -} +wrap_method_mut!( + s2binlib_get_vtable_vfunc_count, + get_vtable_vfunc_count, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut usize +); -/// Unload a specific binary from memory -/// -/// Removes the specified binary from the internal cache, freeing up memory. -/// This is useful when you no longer need a particular binary. -/// -/// # Parameters -/// * `binary_name` - Name of the binary to unload (e.g., "server", "client") (null-terminated C string) -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -5 if internal error (mutex lock failed) -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointer is valid and points to a null-terminated C string. -/// -/// # Example -/// ```c -/// int result = s2binlib_unload_binary("server"); -/// if (result == 0) { -/// printf("Binary unloaded successfully\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_unload_binary(binary_name: *const c_char) -> i32 { - unsafe { - if binary_name.is_null() { - return_error!(-2, "invalid parameter: binary_name is null"); - } +wrap_method_mut!( + s2binlib_get_vtable_vfunc_count_by_rva, + get_vtable_vfunc_count_by_rva, + binary_name: *const c_char, + vtable_rva: u64, + result: *mut usize +); - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; +// ============================================================================ +// Virtual Function Functions +// ============================================================================ - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_mut!( + s2binlib_find_vfunc_by_vtbname_rva, + find_vfunc_by_vtbname_rva, + binary_name: *const c_char, + vtable_name: *const c_char, + vfunc_index: usize, + result: *mut *mut c_void +); - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_mut!( + s2binlib_find_vfunc_by_vtbname, + find_vfunc_by_vtbname, + binary_name: *const c_char, + vtable_name: *const c_char, + vfunc_index: usize, + result: *mut *mut c_void +); - s2binlib.unload_binary(binary_name_str); - 0 - } -} +wrap_method_const!( + s2binlib_find_vfunc_by_vtbptr_rva, + find_vfunc_by_vtbptr_rva, + vtable_ptr: *mut c_void, + vfunc_index: usize, + result: *mut *mut c_void +); -/// Unload all binaries from memory -/// -/// Removes all loaded binaries from the internal cache, freeing up memory. -/// This is useful for cleanup operations or when you need to start fresh. -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -5 if internal error (mutex lock failed) -/// -/// # Safety -/// This function is safe to call at any time after initialization. -/// -/// # Example -/// ```c -/// int result = s2binlib_unload_all_binaries(); -/// if (result == 0) { -/// printf("All binaries unloaded successfully\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_unload_all_binaries() -> i32 { - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_const!( + s2binlib_find_vfunc_by_vtbptr, + find_vfunc_by_vtbptr, + vtable_ptr: *mut c_void, + vfunc_index: usize, + result: *mut *mut c_void +); - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +// ============================================================================ +// Symbol and Export Functions +// ============================================================================ - s2binlib.unload_all_binaries(); - 0 -} +wrap_method_mut!( + s2binlib_find_symbol, + find_symbol, + binary_name: *const c_char, + symbol_name: *const c_char, + result: *mut *mut c_void +); -/// Install a JIT trampoline at a memory address -/// -/// Creates a JIT trampoline that can be used to hook or intercept function calls. -/// This function reads the original function pointer at the specified memory address, -/// creates a trampoline, and replaces the original pointer with the trampoline address. -/// -/// If a trampoline is already installed at the same address, this function does nothing -/// and returns success. -/// -/// # Parameters -/// * `mem_address` - Runtime memory address where to install the trampoline -/// -/// # Returns -/// * 0 on success -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to install trampoline -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it: -/// - Dereferences raw pointers -/// - Modifies memory at the specified address -/// - Changes memory protection flags -/// -/// The caller must ensure that: -/// - The memory address is valid and writable -/// - The address points to an 8-byte function pointer -/// - No other threads are accessing the memory during the operation -/// -/// # Example -/// ```c -/// void* vtable_ptr = ...; // Get vtable pointer -/// void* trampoline_address; -/// int result = s2binlib_install_trampoline(vtable_ptr, &trampoline_address); -/// if (result == 0) { -/// printf("Trampoline installed successfully\n"); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_install_trampoline( - mem_address: *mut c_void, - trampoline_address_out: *mut *mut c_void, -) -> i32 { - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_mut!( + s2binlib_find_symbol_rva, + find_symbol_rva, + binary_name: *const c_char, + symbol_name: *const c_char, + result: *mut *mut c_void +); - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_mut!( + s2binlib_find_export_rva, + find_export_rva, + binary_name: *const c_char, + export_name: *const c_char, + result: *mut *mut c_void +); - match s2binlib.install_trampoline(mem_address as u64) { - Ok(address) => { - unsafe { - *trampoline_address_out = address as *mut c_void; - } - 0 - } - Err(_) => return_error!(-3, "Failed to install trampoline"), - } -} +wrap_method_mut!( + s2binlib_find_export, + find_export, + binary_name: *const c_char, + export_name: *const c_char, + result: *mut *mut c_void +); -/// Follow cross-reference from memory address to memory address -/// -/// This function reads the instruction at the given memory address, -/// decodes it using iced-x86, and returns the target address if the -/// instruction contains a valid cross-reference. -/// -/// valid xrefs include: -/// - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) -/// - Near branches (call, jmp, jcc) -/// - Absolute memory operands -/// -/// # Parameters -/// * `mem_address` - Runtime memory address to analyze -/// * `target_address_out` - Pointer to store the target address -/// -/// # Returns -/// * 0 on success (target address written to target_address_out) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if no valid xref found or invalid instruction -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it: -/// - Dereferences raw pointers -/// - Reads memory at the specified address -/// -/// The caller must ensure that: -/// - The memory address is valid and readable -/// - The address points to executable code -/// -/// # Example -/// ```c -/// void* instruction_addr = ...; // Address of an instruction -/// void* target_addr; -/// int result = s2binlib_follow_xref_mem_to_mem(instruction_addr, &target_addr); -/// if (result == 0) { -/// printf("Xref target: %p\n", target_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_follow_xref_mem_to_mem( - mem_address: *const c_void, - target_address_out: *mut *mut c_void, -) -> i32 { - if mem_address.is_null() || target_address_out.is_null() { - return_error!( - -2, - "invalid parameters: mem_address or target_address_out is null" - ); - } +// ============================================================================ +// String Search Functions +// ============================================================================ - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_mut!( + s2binlib_find_string_rva, + find_string_rva, + binary_name: *const c_char, + string: *const c_char, + result: *mut *mut c_void +); - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_mut!( + s2binlib_find_string, + find_string, + binary_name: *const c_char, + string: *const c_char, + result: *mut *mut c_void +); - match s2binlib.follow_xref_mem_to_mem(mem_address as u64) { - Ok(target) => { - unsafe { - *target_address_out = target as *mut c_void; - } - 0 - } - Err(_) => return_error!(-3, "No valid xref found or invalid instruction"), - } -} +// ============================================================================ +// Module Base Address Functions +// ============================================================================ -/// Follow cross-reference from relative virtual address to memory address -/// -/// This function reads the instruction at the given relative virtual address from the file, -/// decodes it using iced-x86, and returns the target memory address if the -/// instruction contains a valid cross-reference. -/// -/// valid xrefs include: -/// - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) -/// - Near branches (call, jmp, jcc) -/// - Absolute memory operands -/// -/// # Parameters -/// * `binary_name` - Name of the binary (null-terminated C string) -/// * `rva` - Virtual address to analyze -/// * `target_address_out` - Pointer to store the target memory address -/// -/// # Returns -/// * 0 on success (target address written to target_address_out) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary or no valid xref found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid. -/// -/// # Example -/// ```c -/// void* target_addr; -/// int result = s2binlib_follow_xref_rva_to_mem("server", 0x140001000, &target_addr); -/// if (result == 0) { -/// printf("Xref target: %p\n", target_addr); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_follow_xref_rva_to_mem( +wrap_method_mut!( + s2binlib_set_module_base_from_pointer, + set_module_base_from_pointer, binary_name: *const c_char, - rva: u64, - target_address_out: *mut *mut c_void, -) -> i32 { - unsafe { - if binary_name.is_null() || target_address_out.is_null() { - return_error!( - -2, - "invalid parameters: binary_name or target_address_out is null" - ); - } + pointer: *mut c_void +); + +wrap_method_mut!( + s2binlib_clear_module_base_address, + clear_module_base_address, + binary_name: *const c_char +); + +wrap_method_const!( + s2binlib_get_module_base_address, + get_module_base_address, + binary_name: *const c_char, + result: *mut *mut c_void +); + +// ============================================================================ +// Binary Loading Functions +// ============================================================================ + +wrap_method_const!( + s2binlib_is_binary_loaded, + is_binary_loaded, + binary_name: *const c_char +); + +wrap_method_mut!( + s2binlib_load_binary, + load_binary, + binary_name: *const c_char +); + +wrap_method_const!( + s2binlib_get_binary_path, + get_binary_path, + binary_name: *const c_char, + buffer: *mut c_char, + buffer_size: usize +); - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; +wrap_method_mut!( + s2binlib_set_custom_binary_path, + set_custom_binary_path, + binary_name: *const c_char, + path: *const c_char, + os: *const c_char +); - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_mut!( + s2binlib_unload_binary, + unload_binary, + binary_name: *const c_char +); - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_mut_no_params!(s2binlib_unload_all_binaries, unload_all_binaries); - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } +// ============================================================================ +// Memory Read Functions +// ============================================================================ - match s2binlib.follow_xref_rva_to_mem(binary_name_str, rva) { - Ok(target) => { - *target_address_out = target as *mut c_void; - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} +wrap_method_mut!( + s2binlib_read_by_file_offset, + read_by_file_offset, + binary_name: *const c_char, + file_offset: u64, + buffer: *mut u8, + buffer_size: usize +); -/// Follow cross-reference from relative virtual address to relative virtual address -/// -/// This function reads the instruction at the given relative virtual address from the file, -/// decodes it using iced-x86, and returns the target relative virtual address if the -/// instruction contains a valid cross-reference. -/// -/// valid xrefs include: -/// - RIP-relative memory operands (e.g., lea rax, [rip+0x1000]) -/// - Near branches (call, jmp, jcc) -/// - Absolute memory operands -/// -/// # Parameters -/// * `binary_name` - Name of the binary (null-terminated C string) -/// * `rva` - Virtual address to analyze -/// * `target_rva_out` - Pointer to store the target relative virtual address -/// -/// # Returns -/// * 0 on success (target RVA written to target_rva_out) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if failed to load binary or no valid xref found -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// The caller must ensure that the pointers are valid. -/// -/// # Example -/// ```c -/// uint64_t target_rva; -/// int result = s2binlib_follow_xref_rva_to_rva("server", 0x140001000, &target_rva); -/// if (result == 0) { -/// printf("Xref target RVA: 0x%llX\n", target_rva); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_follow_xref_rva_to_rva( +wrap_method_mut!( + s2binlib_read_by_rva, + read_by_rva, binary_name: *const c_char, rva: u64, - target_rva_out: *mut u64, -) -> i32 { - unsafe { - if binary_name.is_null() || target_rva_out.is_null() { - return -2; - } - - let binary_name_str = match CStr::from_ptr(binary_name).to_str() { - Ok(s) => s, - Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), - }; + buffer: *mut u8, + buffer_size: usize +); - let mut s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_mut!( + s2binlib_read_by_mem_address, + read_by_mem_address, + binary_name: *const c_char, + mem_address: u64, + buffer: *mut u8, + buffer_size: usize +); - let s2binlib = match s2binlib_guard.as_mut() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +// ============================================================================ +// Object Pointer Functions +// ============================================================================ - if !s2binlib.is_binary_loaded(binary_name_str) { - s2binlib.load_binary(binary_name_str); - } +wrap_method_const!( + s2binlib_get_object_ptr_vtable_name, + get_object_ptr_vtable_name, + object_ptr: *const c_void, + buffer: *mut c_char, + buffer_size: usize +); + +wrap_method_const!( + s2binlib_object_ptr_has_vtable, + object_ptr_has_vtable, + object_ptr: *const c_void +); + +wrap_method_const!( + s2binlib_object_ptr_has_base_class, + object_ptr_has_base_class, + object_ptr: *const c_void, + base_class_name: *const c_char +); + +// ============================================================================ +// Cross-Reference Functions +// ============================================================================ + +wrap_method_mut!( + s2binlib_dump_xrefs, + dump_xrefs, + binary_name: *const c_char +); + +wrap_method_const!( + s2binlib_get_xrefs_count, + get_xrefs_count, + binary_name: *const c_char, + target_rva: *mut c_void +); - match s2binlib.follow_xref_rva_to_rva(binary_name_str, rva) { - Ok(target) => { - *target_rva_out = target; - 0 - } - Err(_) => return_error!(-3, "Failed to load binary or operation failed"), - } - } -} +wrap_method_const!( + s2binlib_get_xrefs_cached, + get_xrefs_cached, + binary_name: *const c_char, + target_rva: *mut c_void, + buffer: *mut *mut c_void, + buffer_size: usize +); -/// Find the NetworkVar_StateChanged vtable index by relative virtual address -/// -/// This function scans the vtable at the given relative virtual address to find the -/// index of the NetworkVar_StateChanged virtual function. It analyzes each -/// virtual function in the vtable looking for the specific instruction pattern -/// that identifies the StateChanged function (cmp dword ptr [reg+56], 0xFF). -/// -/// # Parameters -/// * `vtable_rva` - Virtual address of the vtable to analyze -/// * `result` - Pointer to store the resulting index (as u64) -/// -/// # Returns -/// * 0 on success (index written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -4 if NetworkVar_StateChanged not found in vtable -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// uint64_t index; -/// int result = s2binlib_find_networkvar_vtable_statechanged_rva(0x140001000, &index); -/// if (result == 0) { -/// printf("StateChanged index: %llu\n", index); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_networkvar_vtable_statechanged_rva( - vtable_rva: u64, - result: *mut u64, -) -> i32 { - unsafe { - if result.is_null() { - return_error!(-2, "invalid parameter: result pointer is null"); - } +wrap_method_const!( + s2binlib_follow_xref_mem_to_mem, + follow_xref_mem_to_mem, + mem_address: *const c_void, + target_address_out: *mut *mut c_void +); - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +wrap_method_mut!( + s2binlib_follow_xref_rva_to_mem, + follow_xref_rva_to_mem, + binary_name: *const c_char, + rva: u64, + target_address_out: *mut *mut c_void +); - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_mut!( + s2binlib_follow_xref_rva_to_rva, + follow_xref_rva_to_rva, + binary_name: *const c_char, + rva: u64, + target_rva_out: *mut u64 +); - match s2binlib.find_networkvar_vtable_statechanged_rva(vtable_rva) { - Ok(index) => { - *result = index; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} +// ============================================================================ +// JIT and Trampoline Functions +// ============================================================================ -/// Find the NetworkVar_StateChanged vtable index by memory address -/// -/// This function converts the runtime memory address to a relative virtual address, -/// then scans the vtable to find the index of the NetworkVar_StateChanged -/// virtual function. It analyzes each virtual function in the vtable looking -/// for the specific instruction pattern that identifies the StateChanged function. -/// -/// # Parameters -/// * `vtable_mem_address` - Runtime memory address of the vtable -/// * `result` - Pointer to store the resulting index (as u64) -/// -/// # Returns -/// * 0 on success (index written to result) -/// * -1 if S2BinLib not initialized -/// * -2 if invalid parameters -/// * -3 if address conversion failed -/// * -4 if NetworkVar_StateChanged not found in vtable -/// * -5 if internal error -/// -/// # Safety -/// This function is unsafe because it dereferences raw pointers. -/// -/// # Example -/// ```c -/// uint64_t index; -/// int result = s2binlib_find_networkvar_vtable_statechanged(vtable_ptr, &index); -/// if (result == 0) { -/// printf("StateChanged index: %llu\n", index); -/// } -/// ``` -#[unsafe(no_mangle)] -pub extern "C" fn s2binlib_find_networkvar_vtable_statechanged( - vtable_mem_address: u64, - result: *mut u64, -) -> i32 { - unsafe { - if result.is_null() { - return_error!(-2, "invalid parameter: result pointer is null"); - } +wrap_method_mut!( + s2binlib_install_trampoline, + install_trampoline, + mem_address: *mut c_void, + trampoline_address_out: *mut *mut c_void +); - let s2binlib_guard = match S2BINLIB.lock() { - Ok(guard) => guard, - Err(_) => return_error!(-5, "Failed to acquire global S2BinLib lock"), - }; +// ============================================================================ +// NetworkVar Functions +// ============================================================================ - let s2binlib = match s2binlib_guard.as_ref() { - Some(lib) => lib, - None => return_error!(-1, "S2BinLib not initialized"), - }; +wrap_method_const!( + s2binlib_find_networkvar_vtable_statechanged_rva, + find_networkvar_vtable_statechanged_rva, + vtable_rva: u64, + result: *mut u64 +); - match s2binlib.find_networkvar_vtable_statechanged(vtable_mem_address) { - Ok(index) => { - *result = index; - 0 - } - Err(_) => return_error!(-4, "Pattern not found or operation failed"), - } - } -} +wrap_method_const!( + s2binlib_find_networkvar_vtable_statechanged, + find_networkvar_vtable_statechanged, + vtable_mem_address: u64, + result: *mut u64 +); diff --git a/s2binlib_binding/src/compat/mod.rs b/s2binlib_binding/src/compat/mod.rs new file mode 100644 index 0000000..a0b4451 --- /dev/null +++ b/s2binlib_binding/src/compat/mod.rs @@ -0,0 +1 @@ +pub mod s2binlib001; diff --git a/s2binlib_binding/src/compat/s2binlib001.rs b/s2binlib_binding/src/compat/s2binlib001.rs new file mode 100644 index 0000000..59b993b --- /dev/null +++ b/s2binlib_binding/src/compat/s2binlib001.rs @@ -0,0 +1,1458 @@ +/************************************************************************************ + * S2BinLib - A static library that helps resolving memory from binary file + * and map to absolute memory address, targeting source 2 game engine. + * Copyright (C) 2025 samyyc + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + ***********************************************************************************/ + +use s2binlib::S2BinLib; +use std::ffi::{CStr, c_char, c_void}; + +pub type PatternScanCallback = + unsafe extern "C" fn(index: usize, address: *mut c_void, user_data: *mut c_void); + +#[cfg(feature = "debug_c_bindings")] +macro_rules! c_debug { + ($($arg:tt)*) => { + println!("[S2BinLib001 Debug] {}", format!($($arg)*)); + }; +} + +#[cfg(not(feature = "debug_c_bindings"))] +macro_rules! c_debug { + ($($arg:tt)*) => {}; +} + +macro_rules! return_error { + ($code:expr, $msg:expr) => {{ + c_debug!("Error {}: {} (at {}:{})", $code, $msg, file!(), line!()); + return $code; + }}; + ($code:expr) => {{ + c_debug!("Error {} (at {}:{})", $code, file!(), line!()); + return $code; + }}; +} + +macro_rules! get_s2binlib_mut { + ($this:expr) => {{ + let s2binlib = unsafe { (*$this).s2binlib.as_mut() }; + if s2binlib.is_none() { + return_error!(-1, "S2BinLib001 is not initialized"); + } + s2binlib.unwrap() + }}; +} + +macro_rules! get_s2binlib { + ($this:expr) => {{ + let s2binlib = unsafe { (*$this).s2binlib.as_ref() }; + if s2binlib.is_none() { + return_error!(-1, "S2BinLib001 is not initialized"); + } + s2binlib.unwrap() + }}; +} + +macro_rules! cstr_to_str { + ($cstr:expr) => {{ + unsafe { + match CStr::from_ptr($cstr).to_str() { + Ok(s) => s, + Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), + } + } + }}; +} + +macro_rules! ensure_binary_loaded { + ($s2binlib:expr, $binary_name:expr) => {{ + if !$s2binlib.is_binary_loaded($binary_name) { + $s2binlib.load_binary($binary_name); + } + }}; +} + +macro_rules! check_null { + ($($ptr:expr),+) => {{ + $( + if $ptr.is_null() { + return_error!(-2, "invalid parameter: null pointer"); + } + )+ + }}; +} + +#[repr(C)] +pub struct S2BinLib001 { + pub vtable: *const S2BinLib001VTable, + s2binlib: Option>, +} + +impl S2BinLib001 { + pub fn new() -> Self { + Self { + vtable: &VTABLE, + s2binlib: None, + } + } +} + +#[repr(C)] +pub struct S2BinLib001VTable { + pub initialize: unsafe extern "C" fn( + this: *mut S2BinLib001, + game_path: *const c_char, + game_type: *const c_char, + ) -> i32, + pub initialize_with_os: unsafe extern "C" fn( + this: *mut S2BinLib001, + game_path: *const c_char, + game_type: *const c_char, + os: *const c_char, + ) -> i32, + pub pattern_scan: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_vtable: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_symbol: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + symbol_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub set_module_base_from_pointer: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + pointer: *mut c_void, + ) -> i32, + pub clear_module_base_address: + unsafe extern "C" fn(this: *mut S2BinLib001, binary_name: *const c_char) -> i32, + pub set_custom_binary_path: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + path: *const c_char, + os: *const c_char, + ) -> i32, + pub get_module_base_address: unsafe extern "C" fn( + this: *const S2BinLib001, + binary_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub is_binary_loaded: + unsafe extern "C" fn(this: *const S2BinLib001, binary_name: *const c_char) -> i32, + pub load_binary: + unsafe extern "C" fn(this: *mut S2BinLib001, binary_name: *const c_char) -> i32, + pub get_binary_path: unsafe extern "C" fn( + this: *const S2BinLib001, + binary_name: *const c_char, + buffer: *mut c_char, + buffer_size: usize, + ) -> i32, + pub find_vtable_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_vtable_mangled_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_vtable_mangled: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_vtable_nested_2_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + class1_name: *const c_char, + class2_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_vtable_nested_2: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + class1_name: *const c_char, + class2_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub get_vtable_vfunc_count: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut usize, + ) -> i32, + pub get_vtable_vfunc_count_by_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_rva: u64, + result: *mut usize, + ) -> i32, + pub pattern_scan_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub pattern_scan_all_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + callback: PatternScanCallback, + user_data: *mut c_void, + ) -> i32, + pub pattern_scan_all: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + callback: PatternScanCallback, + user_data: *mut c_void, + ) -> i32, + pub find_export_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + export_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_export: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + export_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_symbol_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + symbol_name: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub read_by_file_offset: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + file_offset: u64, + buffer: *mut u8, + buffer_size: usize, + ) -> i32, + pub read_by_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + rva: u64, + buffer: *mut u8, + buffer_size: usize, + ) -> i32, + pub read_by_mem_address: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + mem_address: u64, + buffer: *mut u8, + buffer_size: usize, + ) -> i32, + pub find_vfunc_by_vtbname_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + vfunc_index: usize, + result: *mut *mut c_void, + ) -> i32, + pub find_vfunc_by_vtbname: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + vfunc_index: usize, + result: *mut *mut c_void, + ) -> i32, + pub find_vfunc_by_vtbptr_rva: unsafe extern "C" fn( + this: *const S2BinLib001, + vtable_ptr: *mut c_void, + vfunc_index: usize, + result: *mut *mut c_void, + ) -> i32, + pub find_vfunc_by_vtbptr: unsafe extern "C" fn( + this: *const S2BinLib001, + vtable_ptr: *mut c_void, + vfunc_index: usize, + result: *mut *mut c_void, + ) -> i32, + pub get_object_ptr_vtable_name: unsafe extern "C" fn( + this: *const S2BinLib001, + object_ptr: *const c_void, + buffer: *mut c_char, + buffer_size: usize, + ) -> i32, + pub object_ptr_has_vtable: + unsafe extern "C" fn(this: *const S2BinLib001, object_ptr: *const c_void) -> i32, + pub object_ptr_has_base_class: unsafe extern "C" fn( + this: *const S2BinLib001, + object_ptr: *const c_void, + base_class_name: *const c_char, + ) -> i32, + pub find_string_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + string: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub find_string: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + string: *const c_char, + result: *mut *mut c_void, + ) -> i32, + pub dump_xrefs: unsafe extern "C" fn(this: *mut S2BinLib001, binary_name: *const c_char) -> i32, + pub get_xrefs_count: unsafe extern "C" fn( + this: *const S2BinLib001, + binary_name: *const c_char, + target_rva: *mut c_void, + ) -> i32, + pub get_xrefs_cached: unsafe extern "C" fn( + this: *const S2BinLib001, + binary_name: *const c_char, + target_rva: *mut c_void, + buffer: *mut *mut c_void, + buffer_size: usize, + ) -> i32, + pub unload_binary: + unsafe extern "C" fn(this: *mut S2BinLib001, binary_name: *const c_char) -> i32, + pub unload_all_binaries: unsafe extern "C" fn(this: *mut S2BinLib001) -> i32, + pub install_trampoline: unsafe extern "C" fn( + this: *mut S2BinLib001, + mem_address: *mut c_void, + trampoline_address_out: *mut *mut c_void, + ) -> i32, + pub follow_xref_mem_to_mem: unsafe extern "C" fn( + this: *const S2BinLib001, + mem_address: *const c_void, + target_address_out: *mut *mut c_void, + ) -> i32, + pub follow_xref_rva_to_mem: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + rva: u64, + target_address_out: *mut *mut c_void, + ) -> i32, + pub follow_xref_rva_to_rva: unsafe extern "C" fn( + this: *mut S2BinLib001, + binary_name: *const c_char, + rva: u64, + target_rva_out: *mut u64, + ) -> i32, + pub find_networkvar_vtable_statechanged_rva: + unsafe extern "C" fn(this: *const S2BinLib001, vtable_rva: u64, result: *mut u64) -> i32, + pub find_networkvar_vtable_statechanged: unsafe extern "C" fn( + this: *const S2BinLib001, + vtable_mem_address: u64, + result: *mut u64, + ) -> i32, + pub destroy: unsafe extern "C" fn(this: *mut S2BinLib001) -> i32, +} + +static VTABLE: S2BinLib001VTable = S2BinLib001VTable { + initialize: Initialize, + initialize_with_os: InitializeWithOs, + pattern_scan: PatternScan, + find_vtable: FindVtable, + find_symbol: FindSymbol, + set_module_base_from_pointer: SetModuleBaseFromPointer, + clear_module_base_address: ClearModuleBaseAddress, + set_custom_binary_path: SetCustomBinaryPath, + get_module_base_address: GetModuleBaseAddress, + is_binary_loaded: IsBinaryLoaded, + load_binary: LoadBinary, + get_binary_path: GetBinaryPath, + find_vtable_rva: FindVtableRva, + find_vtable_mangled_rva: FindVtableMangledRva, + find_vtable_mangled: FindVtableMangled, + find_vtable_nested_2_rva: FindVtableNested2Rva, + find_vtable_nested_2: FindVtableNested2, + get_vtable_vfunc_count: GetVtableVfuncCount, + get_vtable_vfunc_count_by_rva: GetVtableVfuncCountByRva, + pattern_scan_rva: PatternScanRva, + pattern_scan_all_rva: PatternScanAllRva, + pattern_scan_all: PatternScanAll, + find_export_rva: FindExportRva, + find_export: FindExport, + find_symbol_rva: FindSymbolRva, + read_by_file_offset: ReadByFileOffset, + read_by_rva: ReadByRva, + read_by_mem_address: ReadByMemAddress, + find_vfunc_by_vtbname_rva: FindVfuncByVtbnameRva, + find_vfunc_by_vtbname: FindVfuncByVtbname, + find_vfunc_by_vtbptr_rva: FindVfuncByVtbptrRva, + find_vfunc_by_vtbptr: FindVfuncByVtbptr, + get_object_ptr_vtable_name: GetObjectPtrVtableName, + object_ptr_has_vtable: ObjectPtrHasVtable, + object_ptr_has_base_class: ObjectPtrHasBaseClass, + find_string_rva: FindStringRva, + find_string: FindString, + dump_xrefs: DumpXrefs, + get_xrefs_count: GetXrefsCount, + get_xrefs_cached: GetXrefsCached, + unload_binary: UnloadBinary, + unload_all_binaries: UnloadAllBinaries, + install_trampoline: InstallTrampoline, + follow_xref_mem_to_mem: FollowXrefMemToMem, + follow_xref_rva_to_mem: FollowXrefRvaToMem, + follow_xref_rva_to_rva: FollowXrefRvaToRva, + find_networkvar_vtable_statechanged_rva: FindNetworkvarVtableStatechangedRva, + find_networkvar_vtable_statechanged: FindNetworkvarVtableStatechanged, + destroy: Destroy, +}; + +unsafe extern "C" fn Initialize( + this: *mut S2BinLib001, + game_path: *const c_char, + game_type: *const c_char, +) -> i32 { + check_null!(this, game_path, game_type); + + let game_path_str = cstr_to_str!(game_path); + let game_type_str = cstr_to_str!(game_type); + + let os_str = if cfg!(target_os = "windows") { + "windows" + } else if cfg!(target_os = "linux") { + "linux" + } else { + return_error!(-2, "Unsupported operating system"); + }; + + (*this).s2binlib = Some(S2BinLib::new(game_path_str, game_type_str, os_str)); + 0 +} + +unsafe extern "C" fn InitializeWithOs( + this: *mut S2BinLib001, + game_path: *const c_char, + game_type: *const c_char, + os: *const c_char, +) -> i32 { + check_null!(this, game_path, game_type, os); + + let game_path_str = cstr_to_str!(game_path); + let game_type_str = cstr_to_str!(game_type); + let os_str = cstr_to_str!(os); + + (*this).s2binlib = Some(S2BinLib::new(game_path_str, game_type_str, os_str)); + 0 +} + +unsafe extern "C" fn PatternScan( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, pattern, result); + + let binary_name_str = cstr_to_str!(binary_name); + let pattern_str = cstr_to_str!(pattern); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.pattern_scan(binary_name_str, pattern_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVtable( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, vtable_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let vtable_name_str = cstr_to_str!(vtable_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vtable(binary_name_str, vtable_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindSymbol( + this: *mut S2BinLib001, + binary_name: *const c_char, + symbol_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, symbol_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let symbol_name_str = cstr_to_str!(symbol_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_symbol(binary_name_str, symbol_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn SetModuleBaseFromPointer( + this: *mut S2BinLib001, + binary_name: *const c_char, + pointer: *mut c_void, +) -> i32 { + check_null!(this, binary_name); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + s2binlib.set_module_base_from_pointer(binary_name_str, pointer as u64); + 0 +} + +unsafe extern "C" fn ClearModuleBaseAddress( + this: *mut S2BinLib001, + binary_name: *const c_char, +) -> i32 { + check_null!(this, binary_name); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + s2binlib.clear_module_base_address(binary_name_str); + 0 +} + +unsafe extern "C" fn SetCustomBinaryPath( + this: *mut S2BinLib001, + binary_name: *const c_char, + path: *const c_char, + os: *const c_char, +) -> i32 { + check_null!(this, binary_name, path, os); + + let binary_name_str = cstr_to_str!(binary_name); + let path_str = cstr_to_str!(path); + let os_str = cstr_to_str!(os); + let s2binlib = get_s2binlib_mut!(this); + + match s2binlib.set_custom_binary_path(binary_name_str, path_str, os_str) { + Ok(_) => 0, + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn GetModuleBaseAddress( + this: *const S2BinLib001, + binary_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib!(this); + + match s2binlib.get_module_base_address(binary_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn IsBinaryLoaded(this: *const S2BinLib001, binary_name: *const c_char) -> i32 { + check_null!(this, binary_name); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib!(this); + + if s2binlib.is_binary_loaded(binary_name_str) { + 1 + } else { + 0 + } +} + +unsafe extern "C" fn LoadBinary(this: *mut S2BinLib001, binary_name: *const c_char) -> i32 { + check_null!(this, binary_name); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + s2binlib.load_binary(binary_name_str); + 0 +} + +unsafe extern "C" fn GetBinaryPath( + this: *const S2BinLib001, + binary_name: *const c_char, + buffer: *mut c_char, + buffer_size: usize, +) -> i32 { + if this.is_null() || binary_name.is_null() || buffer.is_null() || buffer_size == 0 { + return -2; + } + + let binary_name_str = match CStr::from_ptr(binary_name).to_str() { + Ok(s) => s, + Err(_) => return_error!(-2, "Failed to convert C string to UTF-8"), + }; + + let s2binlib = get_s2binlib!(this); + + let path = s2binlib.get_binary_path(binary_name_str); + let path_bytes = path.as_bytes(); + + if path_bytes.len() + 1 > buffer_size { + return -3; + } + + std::ptr::copy_nonoverlapping(path_bytes.as_ptr(), buffer as *mut u8, path_bytes.len()); + *(buffer.add(path_bytes.len())) = 0; + + 0 +} + +unsafe extern "C" fn FindVtableRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, vtable_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let vtable_name_str = cstr_to_str!(vtable_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vtable_rva(binary_name_str, vtable_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVtableMangledRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, vtable_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let vtable_name_str = cstr_to_str!(vtable_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vtable_mangled_rva(binary_name_str, vtable_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVtableMangled( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, vtable_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let vtable_name_str = cstr_to_str!(vtable_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vtable_mangled(binary_name_str, vtable_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVtableNested2Rva( + this: *mut S2BinLib001, + binary_name: *const c_char, + class1_name: *const c_char, + class2_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, class1_name, class2_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let class1_name_str = cstr_to_str!(class1_name); + let class2_name_str = cstr_to_str!(class2_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vtable_nested_2_rva(binary_name_str, class1_name_str, class2_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVtableNested2( + this: *mut S2BinLib001, + binary_name: *const c_char, + class1_name: *const c_char, + class2_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, class1_name, class2_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let class1_name_str = cstr_to_str!(class1_name); + let class2_name_str = cstr_to_str!(class2_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vtable_nested_2(binary_name_str, class1_name_str, class2_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn GetVtableVfuncCount( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + result: *mut usize, +) -> i32 { + check_null!(this, binary_name, vtable_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let vtable_name_str = cstr_to_str!(vtable_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.get_vtable_vfunc_count(binary_name_str, vtable_name_str) { + Ok(count) => { + *result = count; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn GetVtableVfuncCountByRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_rva: u64, + result: *mut usize, +) -> i32 { + check_null!(this, binary_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.get_vtable_vfunc_count_by_rva(binary_name_str, vtable_rva) { + Ok(count) => { + *result = count; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn PatternScanRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, pattern, result); + + let binary_name_str = cstr_to_str!(binary_name); + let pattern_str = cstr_to_str!(pattern); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.pattern_scan_rva(binary_name_str, pattern_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn PatternScanAllRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + callback: PatternScanCallback, + user_data: *mut c_void, +) -> i32 { + check_null!(this, binary_name, pattern); + + let binary_name_str = cstr_to_str!(binary_name); + let pattern_str = cstr_to_str!(pattern); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.pattern_scan_all_rva(binary_name_str, pattern_str, |index, addr| { + callback(index, addr as *mut c_void, user_data); + true + }) { + Ok(_) => 0, + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn PatternScanAll( + this: *mut S2BinLib001, + binary_name: *const c_char, + pattern: *const c_char, + callback: PatternScanCallback, + user_data: *mut c_void, +) -> i32 { + check_null!(this, binary_name, pattern); + + let binary_name_str = cstr_to_str!(binary_name); + let pattern_str = cstr_to_str!(pattern); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.pattern_scan_all(binary_name_str, pattern_str, |index, addr| { + callback(index, addr as *mut c_void, user_data); + true + }) { + Ok(_) => 0, + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindExportRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + export_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, export_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let export_name_str = cstr_to_str!(export_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_export_rva(binary_name_str, export_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindExport( + this: *mut S2BinLib001, + binary_name: *const c_char, + export_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, export_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let export_name_str = cstr_to_str!(export_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_export(binary_name_str, export_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindSymbolRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + symbol_name: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, symbol_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let symbol_name_str = cstr_to_str!(symbol_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_symbol_rva(binary_name_str, symbol_name_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn ReadByFileOffset( + this: *mut S2BinLib001, + binary_name: *const c_char, + file_offset: u64, + buffer: *mut u8, + buffer_size: usize, +) -> i32 { + check_null!(this, binary_name, buffer); + if buffer_size == 0 { + return -2; + } + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.read_by_file_offset(binary_name_str, file_offset, buffer_size) { + Ok(bytes) => { + let copy_size = bytes.len().min(buffer_size); + unsafe { + std::ptr::copy_nonoverlapping(bytes.as_ptr(), buffer, copy_size); + } + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn ReadByRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + rva: u64, + buffer: *mut u8, + buffer_size: usize, +) -> i32 { + check_null!(this, binary_name, buffer); + if buffer_size == 0 { + return -2; + } + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.read_by_rva(binary_name_str, rva, buffer_size) { + Ok(bytes) => { + let copy_size = bytes.len().min(buffer_size); + unsafe { + std::ptr::copy_nonoverlapping(bytes.as_ptr(), buffer, copy_size); + } + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn ReadByMemAddress( + this: *mut S2BinLib001, + binary_name: *const c_char, + mem_address: u64, + buffer: *mut u8, + buffer_size: usize, +) -> i32 { + check_null!(this, binary_name, buffer); + if buffer_size == 0 { + return -2; + } + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.read_by_mem_address(binary_name_str, mem_address, buffer_size) { + Ok(bytes) => { + let copy_size = bytes.len().min(buffer_size); + unsafe { + std::ptr::copy_nonoverlapping(bytes.as_ptr(), buffer, copy_size); + } + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn FindVfuncByVtbnameRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + vfunc_index: usize, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, vtable_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let vtable_name_str = cstr_to_str!(vtable_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vfunc_by_vtbname_rva(binary_name_str, vtable_name_str, vfunc_index) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVfuncByVtbname( + this: *mut S2BinLib001, + binary_name: *const c_char, + vtable_name: *const c_char, + vfunc_index: usize, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, vtable_name, result); + + let binary_name_str = cstr_to_str!(binary_name); + let vtable_name_str = cstr_to_str!(vtable_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_vfunc_by_vtbname(binary_name_str, vtable_name_str, vfunc_index) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVfuncByVtbptrRva( + this: *const S2BinLib001, + vtable_ptr: *mut c_void, + vfunc_index: usize, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, result); + + let s2binlib = get_s2binlib!(this); + + match s2binlib.find_vfunc_by_vtbptr_rva(vtable_ptr as u64, vfunc_index) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindVfuncByVtbptr( + this: *const S2BinLib001, + vtable_ptr: *mut c_void, + vfunc_index: usize, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, result); + + let s2binlib = get_s2binlib!(this); + + match s2binlib.find_vfunc_by_vtbptr(vtable_ptr as u64, vfunc_index) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn GetObjectPtrVtableName( + this: *const S2BinLib001, + object_ptr: *const c_void, + buffer: *mut c_char, + buffer_size: usize, +) -> i32 { + check_null!(this, object_ptr, buffer); + if buffer_size == 0 { + return_error!(-2, "invalid parameter: buffer_size is zero"); + } + + let s2binlib = get_s2binlib!(this); + + match s2binlib.get_object_ptr_vtable_name(object_ptr as u64) { + Ok(name) => { + let name_bytes = name.as_bytes(); + if name_bytes.len() + 1 > buffer_size { + return_error!(-3, "buffer too small to store vtable name"); + } + + unsafe { + std::ptr::copy_nonoverlapping( + name_bytes.as_ptr(), + buffer as *mut u8, + name_bytes.len(), + ); + *buffer.add(name_bytes.len()) = 0; + } + + 0 + } + Err(_err) => return_error!(-4, "Failed to get vtable info"), + } +} + +unsafe extern "C" fn ObjectPtrHasVtable( + this: *const S2BinLib001, + object_ptr: *const c_void, +) -> i32 { + check_null!(this, object_ptr); + + let s2binlib = get_s2binlib!(this); + + if s2binlib.object_ptr_has_vtable(object_ptr as u64) { + 1 + } else { + 0 + } +} + +unsafe extern "C" fn ObjectPtrHasBaseClass( + this: *const S2BinLib001, + object_ptr: *const c_void, + base_class_name: *const c_char, +) -> i32 { + check_null!(this, object_ptr, base_class_name); + + let base_class_name_str = cstr_to_str!(base_class_name); + let s2binlib = get_s2binlib!(this); + + match s2binlib.object_ptr_has_base_class(object_ptr as u64, base_class_name_str) { + Ok(true) => 1, + Ok(false) => 0, + Err(_) => return_error!(-4, "Failed to get vtable info"), + } +} + +unsafe extern "C" fn FindStringRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + string: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, string, result); + + let binary_name_str = cstr_to_str!(binary_name); + let string_str = cstr_to_str!(string); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_string_rva(binary_name_str, string_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindString( + this: *mut S2BinLib001, + binary_name: *const c_char, + string: *const c_char, + result: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, string, result); + + let binary_name_str = cstr_to_str!(binary_name); + let string_str = cstr_to_str!(string); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.find_string(binary_name_str, string_str) { + Ok(addr) => { + *result = addr as *mut c_void; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn DumpXrefs(this: *mut S2BinLib001, binary_name: *const c_char) -> i32 { + check_null!(this, binary_name); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.dump_xrefs(binary_name_str) { + Ok(_) => 0, + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn GetXrefsCount( + this: *const S2BinLib001, + binary_name: *const c_char, + target_rva: *mut c_void, +) -> i32 { + check_null!(this, binary_name); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib!(this); + + match s2binlib.find_xrefs_cached(binary_name_str, target_rva as u64) { + Some(xrefs) => xrefs.len() as i32, + None => -3, + } +} + +unsafe extern "C" fn GetXrefsCached( + this: *const S2BinLib001, + binary_name: *const c_char, + target_rva: *mut c_void, + buffer: *mut *mut c_void, + buffer_size: usize, +) -> i32 { + check_null!(this, binary_name, buffer); + if buffer_size == 0 { + return -2; + } + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib!(this); + + match s2binlib.find_xrefs_cached(binary_name_str, target_rva as u64) { + Some(xrefs) => { + if xrefs.len() * std::mem::size_of::<*mut c_void>() > buffer_size { + return -4; + } + + let copy_count = xrefs.len(); + unsafe { + for (i, addr) in xrefs.iter().enumerate() { + *buffer.add(i) = *addr as *mut c_void; + } + } + copy_count as i32 + } + None => -3, + } +} + +unsafe extern "C" fn UnloadBinary(this: *mut S2BinLib001, binary_name: *const c_char) -> i32 { + check_null!(this, binary_name); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + s2binlib.unload_binary(binary_name_str); + 0 +} + +unsafe extern "C" fn UnloadAllBinaries(this: *mut S2BinLib001) -> i32 { + check_null!(this); + + let s2binlib = get_s2binlib_mut!(this); + + s2binlib.unload_all_binaries(); + 0 +} + +unsafe extern "C" fn InstallTrampoline( + this: *mut S2BinLib001, + mem_address: *mut c_void, + trampoline_address_out: *mut *mut c_void, +) -> i32 { + check_null!(this); + + let s2binlib = get_s2binlib_mut!(this); + + match s2binlib.install_trampoline(mem_address as u64) { + Ok(address) => { + *trampoline_address_out = address as *mut c_void; + 0 + } + Err(_) => return_error!(-3, "Failed to install trampoline"), + } +} + +unsafe extern "C" fn FollowXrefMemToMem( + this: *const S2BinLib001, + mem_address: *const c_void, + target_address_out: *mut *mut c_void, +) -> i32 { + check_null!(this, mem_address, target_address_out); + + let s2binlib = get_s2binlib!(this); + + match s2binlib.follow_xref_mem_to_mem(mem_address as u64) { + Ok(target) => { + *target_address_out = target as *mut c_void; + 0 + } + Err(_) => return_error!(-3, "No valid xref found or invalid instruction"), + } +} + +unsafe extern "C" fn FollowXrefRvaToMem( + this: *mut S2BinLib001, + binary_name: *const c_char, + rva: u64, + target_address_out: *mut *mut c_void, +) -> i32 { + check_null!(this, binary_name, target_address_out); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.follow_xref_rva_to_mem(binary_name_str, rva) { + Ok(target) => { + *target_address_out = target as *mut c_void; + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn FollowXrefRvaToRva( + this: *mut S2BinLib001, + binary_name: *const c_char, + rva: u64, + target_rva_out: *mut u64, +) -> i32 { + check_null!(this, binary_name, target_rva_out); + + let binary_name_str = cstr_to_str!(binary_name); + let s2binlib = get_s2binlib_mut!(this); + + ensure_binary_loaded!(s2binlib, binary_name_str); + + match s2binlib.follow_xref_rva_to_rva(binary_name_str, rva) { + Ok(target) => { + *target_rva_out = target; + 0 + } + Err(_) => return_error!(-3, "Failed to load binary or operation failed"), + } +} + +unsafe extern "C" fn FindNetworkvarVtableStatechangedRva( + this: *const S2BinLib001, + vtable_rva: u64, + result: *mut u64, +) -> i32 { + check_null!(this, result); + + let s2binlib = get_s2binlib!(this); + + match s2binlib.find_networkvar_vtable_statechanged_rva(vtable_rva) { + Ok(index) => { + *result = index; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn FindNetworkvarVtableStatechanged( + this: *const S2BinLib001, + vtable_mem_address: u64, + result: *mut u64, +) -> i32 { + check_null!(this, result); + + let s2binlib = get_s2binlib!(this); + + match s2binlib.find_networkvar_vtable_statechanged(vtable_mem_address) { + Ok(index) => { + *result = index; + 0 + } + Err(_) => return_error!(-4, "Pattern not found or operation failed"), + } +} + +unsafe extern "C" fn Destroy(this: *mut S2BinLib001) -> i32 { + check_null!(this); + + s2binlib001_destroy(this as *mut c_void); + 0 +} + +#[unsafe(no_mangle)] +pub extern "C" fn s2binlib001_create() -> *mut c_void { + let s2binlib001 = Box::new(S2BinLib001::new()); + Box::into_raw(s2binlib001) as *mut c_void +} + +fn s2binlib001_destroy(ptr: *mut c_void) { + if !ptr.is_null() { + unsafe { + let _ = Box::from_raw(ptr as *mut S2BinLib001); + } + } +} diff --git a/s2binlib_binding/src/interface.rs b/s2binlib_binding/src/interface.rs new file mode 100644 index 0000000..6f58777 --- /dev/null +++ b/s2binlib_binding/src/interface.rs @@ -0,0 +1,21 @@ +use std::ffi::CStr; +use std::ffi::{c_char, c_void}; + +use crate::compat::s2binlib001::s2binlib001_create; + +#[unsafe(no_mangle)] +pub unsafe extern "C" fn S2BinLib_CreateInterface(name: *const c_char) -> *mut c_void { + if name.is_null() { + return std::ptr::null_mut(); + } + + let name_str = match CStr::from_ptr(name).to_str() { + Ok(s) => s, + Err(_) => return std::ptr::null_mut(), + }; + + match name_str { + "S2BINLIB001" => s2binlib001_create(), + _ => std::ptr::null_mut(), + } +} diff --git a/s2binlib_binding/src/lib.rs b/s2binlib_binding/src/lib.rs index 34039d3..3c8d4ba 100644 --- a/s2binlib_binding/src/lib.rs +++ b/s2binlib_binding/src/lib.rs @@ -16,6 +16,8 @@ * along with this program. If not, see . ***********************************************************************************/ -mod c_bindings; +pub mod c_bindings; +pub mod compat; +pub mod interface; pub use c_bindings::*; diff --git a/s2binlib_dumper/src/dumpers/strings_dumper.rs b/s2binlib_dumper/src/dumpers/strings_dumper.rs index b4e5cf7..84eeb93 100644 --- a/s2binlib_dumper/src/dumpers/strings_dumper.rs +++ b/s2binlib_dumper/src/dumpers/strings_dumper.rs @@ -1,10 +1,17 @@ -use std::{fs::{self, File}, io::Write}; +use std::{ + fs::{self, File}, + io::Write, +}; use anyhow::Result; use log::info; use s2binlib::S2BinLib; -pub fn dump_strings(s2binlib: &S2BinLib, dump_dir: &str, tracked_binaries: &[String]) -> Result<()> { +pub fn dump_strings( + s2binlib: &S2BinLib, + dump_dir: &str, + tracked_binaries: &[String], +) -> Result<()> { fs::create_dir_all(format!("{}/strings", dump_dir))?; for binary in tracked_binaries { info!("Dumping strings for {}", binary); @@ -18,4 +25,4 @@ pub fn dump_strings(s2binlib: &S2BinLib, dump_dir: &str, tracked_binaries: &[Str file.flush()?; } Ok(()) -} \ No newline at end of file +} diff --git a/s2binlib_dumper/src/main.rs b/s2binlib_dumper/src/main.rs index 5d45562..029ba3f 100644 --- a/s2binlib_dumper/src/main.rs +++ b/s2binlib_dumper/src/main.rs @@ -30,8 +30,8 @@ mod dumpers { pub mod entity_dumper; pub mod gamesystem_dumper; pub mod networkvar_dumper; - pub mod vtable_dumper; pub mod strings_dumper; + pub mod vtable_dumper; } #[derive(Parser)]